authfd.c revision 76262
11541Srgrimes/*
21541Srgrimes * Author: Tatu Ylonen <ylo@cs.hut.fi>
31541Srgrimes * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
41541Srgrimes *                    All rights reserved
51541Srgrimes * Functions for connecting the local authentication agent.
61541Srgrimes *
71541Srgrimes * As far as I am concerned, the code I have written for this software
81541Srgrimes * can be used freely for any purpose.  Any derived versions of this
91541Srgrimes * software must be clearly marked as such, and if the derived work is
101541Srgrimes * incompatible with the protocol description in the RFC file, it must be
111541Srgrimes * called by a name other than "ssh" or "Secure Shell".
121541Srgrimes *
131541Srgrimes * SSH2 implementation,
141541Srgrimes * Copyright (c) 2000 Markus Friedl.  All rights reserved.
151541Srgrimes *
161541Srgrimes * Redistribution and use in source and binary forms, with or without
171541Srgrimes * modification, are permitted provided that the following conditions
181541Srgrimes * are met:
191541Srgrimes * 1. Redistributions of source code must retain the above copyright
201541Srgrimes *    notice, this list of conditions and the following disclaimer.
211541Srgrimes * 2. Redistributions in binary form must reproduce the above copyright
221541Srgrimes *    notice, this list of conditions and the following disclaimer in the
231541Srgrimes *    documentation and/or other materials provided with the distribution.
241541Srgrimes *
251541Srgrimes * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
261541Srgrimes * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
271541Srgrimes * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
281541Srgrimes * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
291541Srgrimes * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
301541Srgrimes * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
311541Srgrimes * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
321541Srgrimes * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
3314482Shsu * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
3450477Speter * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
351541Srgrimes */
361541Srgrimes
372165Spaul#include "includes.h"
382165SpaulRCSID("$OpenBSD: authfd.c,v 1.39 2001/04/05 10:42:48 markus Exp $");
392165SpaulRCSID("$FreeBSD: head/crypto/openssh/authfd.c 76262 2001-05-04 04:14:23Z green $");
4034319Sdufault
4134319Sdufault#include <openssl/evp.h>
421541Srgrimes
431541Srgrimes#include "ssh.h"
441541Srgrimes#include "rsa.h"
4514482Shsu#include "buffer.h"
461541Srgrimes#include "bufaux.h"
471541Srgrimes#include "xmalloc.h"
481541Srgrimes#include "getput.h"
491541Srgrimes#include "key.h"
501541Srgrimes#include "authfd.h"
511541Srgrimes#include "cipher.h"
521541Srgrimes#include "kex.h"
531541Srgrimes#include "compat.h"
549507Sdg#include "log.h"
559507Sdg#include "atomicio.h"
569507Sdg
571541Srgrimes/* helper */
581541Srgrimesint	decode_reply(int type);
591541Srgrimes
601541Srgrimes/* macro to check for "agent failure" message */
611541Srgrimes#define agent_failed(x) \
621541Srgrimes    ((x == SSH_AGENT_FAILURE) || (x == SSH_COM_AGENT2_FAILURE))
631541Srgrimes
641541Srgrimes/* Returns the number of the authentication fd, or -1 if there is none. */
6582285Sdillon
661541Srgrimesint
6742360Sjulianssh_get_authentication_socket(void)
6857550Sps{
691541Srgrimes	const char *authsocket;
7057550Sps	int sock, len;
7157550Sps	struct sockaddr_un sunaddr;
7257550Sps
7357550Sps	authsocket = getenv(SSH_AUTHSOCKET_ENV_NAME);
7457550Sps	if (!authsocket)
7534925Sdufault		return -1;
761541Srgrimes
7734030Sdufault	sunaddr.sun_family = AF_UNIX;
7834030Sdufault	strlcpy(sunaddr.sun_path, authsocket, sizeof(sunaddr.sun_path));
7934030Sdufault	len = SUN_LEN(&sunaddr)+1;
8034030Sdufault	sunaddr.sun_len = len;
8134030Sdufault
8234925Sdufault	sock = socket(AF_UNIX, SOCK_STREAM, 0);
8334030Sdufault	if (sock < 0)
8434030Sdufault		return -1;
8520346Salex
8620346Salex	/* close on exec */
8732131Salex	if (fcntl(sock, F_SETFD, 1) == -1) {
8820346Salex		close(sock);
8920346Salex		return -1;
907358Sdg	}
917358Sdg	if (connect(sock, (struct sockaddr *) & sunaddr, len) < 0) {
9231497Sdyson		close(sock);
937358Sdg		return -1;
947358Sdg	}
957358Sdg	return sock;
9634030Sdufault}
977358Sdg
9814482Shsuint
991541Srgrimesssh_request_reply(AuthenticationConnection *auth, Buffer *request, Buffer *reply)
10014482Shsu{
1011541Srgrimes	int l, len;
1021541Srgrimes	char buf[1024];
1031541Srgrimes
1041541Srgrimes	/* Get the length of the message, and format it in the buffer. */
1051541Srgrimes	len = buffer_len(request);
1061541Srgrimes	PUT_32BIT(buf, len);
1071541Srgrimes
1081541Srgrimes	/* Send the length and then the packet to the agent. */
1091541Srgrimes	if (atomicio(write, auth->fd, buf, 4) != 4 ||
1101541Srgrimes	    atomicio(write, auth->fd, buffer_ptr(request),
11115873Sdyson	    buffer_len(request)) != buffer_len(request)) {
11254467Sdillon		error("Error writing to authentication socket.");
11354467Sdillon		return 0;
11457550Sps	}
11557550Sps	/*
1161541Srgrimes	 * Wait for response from the agent.  First read the length of the
11715819Sdyson	 * response packet.
11815819Sdyson	 */
11915819Sdyson	len = 4;
12015819Sdyson	while (len > 0) {
12115819Sdyson		l = read(auth->fd, buf + 4 - len, len);
12215819Sdyson		if (l == -1 && (errno == EAGAIN || errno == EINTR))
12315819Sdyson			continue;
12415819Sdyson		if (l <= 0) {
12515819Sdyson			error("Error reading response length from authentication socket.");
12655205Speter			return 0;
1271541Srgrimes		}
1281541Srgrimes		len -= l;
1291541Srgrimes	}
1301541Srgrimes
13134925Sdufault	/* Extract the length, and check it for sanity. */
13234030Sdufault	len = GET_32BIT(buf);
13334030Sdufault	if (len > 256 * 1024)
13434030Sdufault		fatal("Authentication response too long: %d", len);
13534030Sdufault
13634925Sdufault	/* Read the rest of the response in to the buffer. */
13732131Salex	buffer_clear(reply);
13824896Sbde	while (len > 0) {
13924896Sbde		l = len;
14032131Salex		if (l > sizeof(buf))
14124896Sbde			l = sizeof(buf);
14232131Salex		l = read(auth->fd, buf, l);
14332131Salex		if (l == -1 && (errno == EAGAIN || errno == EINTR))
14432131Salex			continue;
14532131Salex		if (l <= 0) {
14634030Sdufault			error("Error reading response from authentication socket.");
14734030Sdufault			return 0;
14834030Sdufault		}
14934030Sdufault		buffer_append(reply, (char *) buf, l);
15034030Sdufault		len -= l;
1511541Srgrimes	}
1521541Srgrimes	return 1;
15355205Speter}
1542165Spaul
1552165Spaul/*
156 * Closes the agent socket if it should be closed (depends on how it was
157 * obtained).  The argument must have been returned by
158 * ssh_get_authentication_socket().
159 */
160
161void
162ssh_close_authentication_socket(int sock)
163{
164	if (getenv(SSH_AUTHSOCKET_ENV_NAME))
165		close(sock);
166}
167
168/*
169 * Opens and connects a private socket for communication with the
170 * authentication agent.  Returns the file descriptor (which must be
171 * shut down and closed by the caller when no longer needed).
172 * Returns NULL if an error occurred and the connection could not be
173 * opened.
174 */
175
176AuthenticationConnection *
177ssh_get_authentication_connection(void)
178{
179	AuthenticationConnection *auth;
180	int sock;
181
182	sock = ssh_get_authentication_socket();
183
184	/*
185	 * Fail if we couldn't obtain a connection.  This happens if we
186	 * exited due to a timeout.
187	 */
188	if (sock < 0)
189		return NULL;
190
191	auth = xmalloc(sizeof(*auth));
192	auth->fd = sock;
193	buffer_init(&auth->identities);
194	auth->howmany = 0;
195
196	return auth;
197}
198
199/*
200 * Closes the connection to the authentication agent and frees any associated
201 * memory.
202 */
203
204void
205ssh_close_authentication_connection(AuthenticationConnection *auth)
206{
207	buffer_free(&auth->identities);
208	close(auth->fd);
209	xfree(auth);
210}
211
212/*
213 * Returns the first authentication identity held by the agent.
214 */
215
216int
217ssh_get_num_identities(AuthenticationConnection *auth, int version)
218{
219	int type, code1 = 0, code2 = 0;
220	Buffer request;
221
222	switch(version){
223	case 1:
224		code1 = SSH_AGENTC_REQUEST_RSA_IDENTITIES;
225		code2 = SSH_AGENT_RSA_IDENTITIES_ANSWER;
226		break;
227	case 2:
228		code1 = SSH2_AGENTC_REQUEST_IDENTITIES;
229		code2 = SSH2_AGENT_IDENTITIES_ANSWER;
230		break;
231	default:
232		return 0;
233	}
234
235	/*
236	 * Send a message to the agent requesting for a list of the
237	 * identities it can represent.
238	 */
239	buffer_init(&request);
240	buffer_put_char(&request, code1);
241
242	buffer_clear(&auth->identities);
243	if (ssh_request_reply(auth, &request, &auth->identities) == 0) {
244		buffer_free(&request);
245		return 0;
246	}
247	buffer_free(&request);
248
249	/* Get message type, and verify that we got a proper answer. */
250	type = buffer_get_char(&auth->identities);
251	if (agent_failed(type)) {
252		return 0;
253	} else if (type != code2) {
254		fatal("Bad authentication reply message type: %d", type);
255	}
256
257	/* Get the number of entries in the response and check it for sanity. */
258	auth->howmany = buffer_get_int(&auth->identities);
259	if (auth->howmany > 1024)
260		fatal("Too many identities in authentication reply: %d",
261		    auth->howmany);
262
263	return auth->howmany;
264}
265
266Key *
267ssh_get_first_identity(AuthenticationConnection *auth, char **comment, int version)
268{
269	/* get number of identities and return the first entry (if any). */
270	if (ssh_get_num_identities(auth, version) > 0)
271		return ssh_get_next_identity(auth, comment, version);
272	return NULL;
273}
274
275Key *
276ssh_get_next_identity(AuthenticationConnection *auth, char **comment, int version)
277{
278	u_int bits;
279	u_char *blob;
280	u_int blen;
281	Key *key = NULL;
282
283	/* Return failure if no more entries. */
284	if (auth->howmany <= 0)
285		return NULL;
286
287	/*
288	 * Get the next entry from the packet.  These will abort with a fatal
289	 * error if the packet is too short or contains corrupt data.
290	 */
291	switch(version){
292	case 1:
293		key = key_new(KEY_RSA1);
294		bits = buffer_get_int(&auth->identities);
295		buffer_get_bignum(&auth->identities, key->rsa->e);
296		buffer_get_bignum(&auth->identities, key->rsa->n);
297		*comment = buffer_get_string(&auth->identities, NULL);
298		if (bits != BN_num_bits(key->rsa->n))
299			log("Warning: identity keysize mismatch: actual %d, announced %u",
300			    BN_num_bits(key->rsa->n), bits);
301		break;
302	case 2:
303		blob = buffer_get_string(&auth->identities, &blen);
304		*comment = buffer_get_string(&auth->identities, NULL);
305		key = key_from_blob(blob, blen);
306		xfree(blob);
307		break;
308	default:
309		return NULL;
310		break;
311	}
312	/* Decrement the number of remaining entries. */
313	auth->howmany--;
314	return key;
315}
316
317/*
318 * Generates a random challenge, sends it to the agent, and waits for
319 * response from the agent.  Returns true (non-zero) if the agent gave the
320 * correct answer, zero otherwise.  Response type selects the style of
321 * response desired, with 0 corresponding to protocol version 1.0 (no longer
322 * supported) and 1 corresponding to protocol version 1.1.
323 */
324
325int
326ssh_decrypt_challenge(AuthenticationConnection *auth,
327    Key* key, BIGNUM *challenge,
328    u_char session_id[16],
329    u_int response_type,
330    u_char response[16])
331{
332	Buffer buffer;
333	int success = 0;
334	int i;
335	int type;
336
337	if (key->type != KEY_RSA1)
338		return 0;
339	if (response_type == 0) {
340		log("Compatibility with ssh protocol version 1.0 no longer supported.");
341		return 0;
342	}
343	buffer_init(&buffer);
344	buffer_put_char(&buffer, SSH_AGENTC_RSA_CHALLENGE);
345	buffer_put_int(&buffer, BN_num_bits(key->rsa->n));
346	buffer_put_bignum(&buffer, key->rsa->e);
347	buffer_put_bignum(&buffer, key->rsa->n);
348	buffer_put_bignum(&buffer, challenge);
349	buffer_append(&buffer, (char *) session_id, 16);
350	buffer_put_int(&buffer, response_type);
351
352	if (ssh_request_reply(auth, &buffer, &buffer) == 0) {
353		buffer_free(&buffer);
354		return 0;
355	}
356	type = buffer_get_char(&buffer);
357
358	if (agent_failed(type)) {
359		log("Agent admitted failure to authenticate using the key.");
360	} else if (type != SSH_AGENT_RSA_RESPONSE) {
361		fatal("Bad authentication response: %d", type);
362	} else {
363		success = 1;
364		/*
365		 * Get the response from the packet.  This will abort with a
366		 * fatal error if the packet is corrupt.
367		 */
368		for (i = 0; i < 16; i++)
369			response[i] = buffer_get_char(&buffer);
370	}
371	buffer_free(&buffer);
372	return success;
373}
374
375/* ask agent to sign data, returns -1 on error, 0 on success */
376int
377ssh_agent_sign(AuthenticationConnection *auth,
378    Key *key,
379    u_char **sigp, int *lenp,
380    u_char *data, int datalen)
381{
382	extern int datafellows;
383	Buffer msg;
384	u_char *blob;
385	u_int blen;
386	int type, flags = 0;
387	int ret = -1;
388
389	if (key_to_blob(key, &blob, &blen) == 0)
390		return -1;
391
392	if (datafellows & SSH_BUG_SIGBLOB)
393		flags = SSH_AGENT_OLD_SIGNATURE;
394
395	buffer_init(&msg);
396	buffer_put_char(&msg, SSH2_AGENTC_SIGN_REQUEST);
397	buffer_put_string(&msg, blob, blen);
398	buffer_put_string(&msg, data, datalen);
399	buffer_put_int(&msg, flags);
400	xfree(blob);
401
402	if (ssh_request_reply(auth, &msg, &msg) == 0) {
403		buffer_free(&msg);
404		return -1;
405	}
406	type = buffer_get_char(&msg);
407	if (agent_failed(type)) {
408		log("Agent admitted failure to sign using the key.");
409	} else if (type != SSH2_AGENT_SIGN_RESPONSE) {
410		fatal("Bad authentication response: %d", type);
411	} else {
412		ret = 0;
413		*sigp = buffer_get_string(&msg, lenp);
414	}
415	buffer_free(&msg);
416	return ret;
417}
418
419/* Encode key for a message to the agent. */
420
421void
422ssh_encode_identity_rsa1(Buffer *b, RSA *key, const char *comment)
423{
424	buffer_clear(b);
425	buffer_put_char(b, SSH_AGENTC_ADD_RSA_IDENTITY);
426	buffer_put_int(b, BN_num_bits(key->n));
427	buffer_put_bignum(b, key->n);
428	buffer_put_bignum(b, key->e);
429	buffer_put_bignum(b, key->d);
430	/* To keep within the protocol: p < q for ssh. in SSL p > q */
431	buffer_put_bignum(b, key->iqmp);	/* ssh key->u */
432	buffer_put_bignum(b, key->q);	/* ssh key->p, SSL key->q */
433	buffer_put_bignum(b, key->p);	/* ssh key->q, SSL key->p */
434	buffer_put_string(b, comment, strlen(comment));
435}
436
437void
438ssh_encode_identity_ssh2(Buffer *b, Key *key, const char *comment)
439{
440	buffer_clear(b);
441	buffer_put_char(b, SSH2_AGENTC_ADD_IDENTITY);
442	buffer_put_cstring(b, key_ssh_name(key));
443	switch(key->type){
444	case KEY_RSA:
445		buffer_put_bignum2(b, key->rsa->n);
446		buffer_put_bignum2(b, key->rsa->e);
447		buffer_put_bignum2(b, key->rsa->d);
448		buffer_put_bignum2(b, key->rsa->iqmp);
449		buffer_put_bignum2(b, key->rsa->p);
450		buffer_put_bignum2(b, key->rsa->q);
451		break;
452	case KEY_DSA:
453		buffer_put_bignum2(b, key->dsa->p);
454		buffer_put_bignum2(b, key->dsa->q);
455		buffer_put_bignum2(b, key->dsa->g);
456		buffer_put_bignum2(b, key->dsa->pub_key);
457		buffer_put_bignum2(b, key->dsa->priv_key);
458		break;
459	}
460	buffer_put_cstring(b, comment);
461}
462
463/*
464 * Adds an identity to the authentication server.  This call is not meant to
465 * be used by normal applications.
466 */
467
468int
469ssh_add_identity(AuthenticationConnection *auth, Key *key, const char *comment)
470{
471	Buffer msg;
472	int type;
473
474	buffer_init(&msg);
475
476	switch (key->type) {
477	case KEY_RSA1:
478		ssh_encode_identity_rsa1(&msg, key->rsa, comment);
479		break;
480	case KEY_RSA:
481	case KEY_DSA:
482		ssh_encode_identity_ssh2(&msg, key, comment);
483		break;
484	default:
485		buffer_free(&msg);
486		return 0;
487		break;
488	}
489	if (ssh_request_reply(auth, &msg, &msg) == 0) {
490		buffer_free(&msg);
491		return 0;
492	}
493	type = buffer_get_char(&msg);
494	buffer_free(&msg);
495	return decode_reply(type);
496}
497
498/*
499 * Removes an identity from the authentication server.  This call is not
500 * meant to be used by normal applications.
501 */
502
503int
504ssh_remove_identity(AuthenticationConnection *auth, Key *key)
505{
506	Buffer msg;
507	int type;
508	u_char *blob;
509	u_int blen;
510
511	buffer_init(&msg);
512
513	if (key->type == KEY_RSA1) {
514		buffer_put_char(&msg, SSH_AGENTC_REMOVE_RSA_IDENTITY);
515		buffer_put_int(&msg, BN_num_bits(key->rsa->n));
516		buffer_put_bignum(&msg, key->rsa->e);
517		buffer_put_bignum(&msg, key->rsa->n);
518	} else if (key->type == KEY_DSA || key->type == KEY_RSA) {
519		key_to_blob(key, &blob, &blen);
520		buffer_put_char(&msg, SSH2_AGENTC_REMOVE_IDENTITY);
521		buffer_put_string(&msg, blob, blen);
522		xfree(blob);
523	} else {
524		buffer_free(&msg);
525		return 0;
526	}
527	if (ssh_request_reply(auth, &msg, &msg) == 0) {
528		buffer_free(&msg);
529		return 0;
530	}
531	type = buffer_get_char(&msg);
532	buffer_free(&msg);
533	return decode_reply(type);
534}
535
536/*
537 * Removes all identities from the agent.  This call is not meant to be used
538 * by normal applications.
539 */
540
541int
542ssh_remove_all_identities(AuthenticationConnection *auth, int version)
543{
544	Buffer msg;
545	int type;
546	int code = (version==1) ?
547		SSH_AGENTC_REMOVE_ALL_RSA_IDENTITIES :
548		SSH2_AGENTC_REMOVE_ALL_IDENTITIES;
549
550	buffer_init(&msg);
551	buffer_put_char(&msg, code);
552
553	if (ssh_request_reply(auth, &msg, &msg) == 0) {
554		buffer_free(&msg);
555		return 0;
556	}
557	type = buffer_get_char(&msg);
558	buffer_free(&msg);
559	return decode_reply(type);
560}
561
562int
563decode_reply(int type)
564{
565	switch (type) {
566	case SSH_AGENT_FAILURE:
567	case SSH_COM_AGENT2_FAILURE:
568		log("SSH_AGENT_FAILURE");
569		return 0;
570	case SSH_AGENT_SUCCESS:
571		return 1;
572	default:
573		fatal("Bad response from authentication agent: %d", type);
574	}
575	/* NOTREACHED */
576	return 0;
577}
578