]> andersk Git - openssh.git/blame - ssh-agent.c
- markus@cvs.openbsd.org 2002/03/25 09:25:06
[openssh.git] / ssh-agent.c
CommitLineData
8efc0c15 1/*
5260325f 2 * Author: Tatu Ylonen <ylo@cs.hut.fi>
3 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4 * All rights reserved
5260325f 5 * The authentication agent program.
2e73a022 6 *
bcbf86ec 7 * As far as I am concerned, the code I have written for this software
8 * can be used freely for any purpose. Any derived versions of this
9 * software must be clearly marked as such, and if the derived work is
10 * incompatible with the protocol description in the RFC file, it must be
11 * called by a name other than "ssh" or "Secure Shell".
12 *
a96070d4 13 * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved.
bcbf86ec 14 *
15 * Redistribution and use in source and binary forms, with or without
16 * modification, are permitted provided that the following conditions
17 * are met:
18 * 1. Redistributions of source code must retain the above copyright
19 * notice, this list of conditions and the following disclaimer.
20 * 2. Redistributions in binary form must reproduce the above copyright
21 * notice, this list of conditions and the following disclaimer in the
22 * documentation and/or other materials provided with the distribution.
23 *
24 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
25 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
26 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
27 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
28 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
29 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
30 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
31 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
32 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
33 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
5260325f 34 */
8efc0c15 35
36#include "includes.h"
76139bd8 37RCSID("$OpenBSD: ssh-agent.c,v 1.83 2002/03/21 22:44:05 rees Exp $");
42f11eb2 38
187cd1fa 39#if defined(HAVE_SYS_QUEUE_H) && !defined(HAVE_BOGUS_SYS_QUEUE_H)
40#include <sys/queue.h>
41#else
42#include "openbsd-compat/fake-queue.h"
43#endif
44
42f11eb2 45#include <openssl/evp.h>
46#include <openssl/md5.h>
8efc0c15 47
48#include "ssh.h"
49#include "rsa.h"
8efc0c15 50#include "buffer.h"
51#include "bufaux.h"
52#include "xmalloc.h"
8efc0c15 53#include "getput.h"
4c8722d9 54#include "key.h"
55#include "authfd.h"
188adeb2 56#include "compat.h"
42f11eb2 57#include "log.h"
8efc0c15 58
2b5fe3b8 59#ifdef SMARTCARD
60#include <openssl/engine.h>
61#include "scard.h"
dd2495cb 62#endif
2b5fe3b8 63
17a3011c 64typedef enum {
65 AUTH_UNUSED,
66 AUTH_SOCKET,
67 AUTH_CONNECTION
68} sock_type;
69
5260325f 70typedef struct {
71 int fd;
17a3011c 72 sock_type type;
5260325f 73 Buffer input;
74 Buffer output;
8efc0c15 75} SocketEntry;
76
1e3b8b07 77u_int sockets_alloc = 0;
8efc0c15 78SocketEntry *sockets = NULL;
79
95f0a918 80typedef struct identity {
81 TAILQ_ENTRY(identity) next;
2e73a022 82 Key *key;
5260325f 83 char *comment;
8efc0c15 84} Identity;
85
2e73a022 86typedef struct {
87 int nentries;
95f0a918 88 TAILQ_HEAD(idqueue, identity) idlist;
2e73a022 89} Idtab;
90
91/* private key table, one per protocol version */
92Idtab idtable[3];
8efc0c15 93
94int max_fd = 0;
95
96/* pid of shell == parent of agent */
9da5c3c9 97pid_t parent_pid = -1;
8efc0c15 98
99/* pathname and directory for AUTH_SOCKET */
100char socket_name[1024];
101char socket_dir[1024];
102
5260325f 103#ifdef HAVE___PROGNAME
104extern char *__progname;
260d427b 105#else
106char *__progname;
107#endif
5260325f 108
396c147e 109static void
2e73a022 110idtab_init(void)
111{
112 int i;
6aacefa7 113 for (i = 0; i <=2; i++) {
95f0a918 114 TAILQ_INIT(&idtable[i].idlist);
2e73a022 115 idtable[i].nentries = 0;
116 }
117}
118
119/* return private key table for requested protocol version */
396c147e 120static Idtab *
2e73a022 121idtab_lookup(int version)
122{
123 if (version < 1 || version > 2)
124 fatal("internal error, bad protocol version %d", version);
125 return &idtable[version];
126}
127
128/* return matching private key for given public key */
95f0a918 129static Identity *
130lookup_identity(Key *key, int version)
2e73a022 131{
95f0a918 132 Identity *id;
133
2e73a022 134 Idtab *tab = idtab_lookup(version);
95f0a918 135 TAILQ_FOREACH(id, &tab->idlist, next) {
136 if (key_equal(key, id->key))
137 return (id);
2e73a022 138 }
95f0a918 139 return (NULL);
140}
141
142static void
143free_identity(Identity *id)
144{
145 key_free(id->key);
146 xfree(id->comment);
147 xfree(id);
2e73a022 148}
149
150/* send list of supported public keys to 'client' */
396c147e 151static void
2e73a022 152process_request_identities(SocketEntry *e, int version)
8efc0c15 153{
2e73a022 154 Idtab *tab = idtab_lookup(version);
5260325f 155 Buffer msg;
95f0a918 156 Identity *id;
5260325f 157
158 buffer_init(&msg);
2e73a022 159 buffer_put_char(&msg, (version == 1) ?
160 SSH_AGENT_RSA_IDENTITIES_ANSWER : SSH2_AGENT_IDENTITIES_ANSWER);
161 buffer_put_int(&msg, tab->nentries);
95f0a918 162 TAILQ_FOREACH(id, &tab->idlist, next) {
fa08c86b 163 if (id->key->type == KEY_RSA1) {
2e73a022 164 buffer_put_int(&msg, BN_num_bits(id->key->rsa->n));
165 buffer_put_bignum(&msg, id->key->rsa->e);
166 buffer_put_bignum(&msg, id->key->rsa->n);
167 } else {
1e3b8b07 168 u_char *blob;
169 u_int blen;
fa08c86b 170 key_to_blob(id->key, &blob, &blen);
2e73a022 171 buffer_put_string(&msg, blob, blen);
172 xfree(blob);
173 }
174 buffer_put_cstring(&msg, id->comment);
5260325f 175 }
176 buffer_put_int(&e->output, buffer_len(&msg));
177 buffer_append(&e->output, buffer_ptr(&msg), buffer_len(&msg));
178 buffer_free(&msg);
8efc0c15 179}
180
2e73a022 181/* ssh1 only */
396c147e 182static void
2e73a022 183process_authentication_challenge1(SocketEntry *e)
8efc0c15 184{
95f0a918 185 Identity *id;
186 Key *key;
2e73a022 187 BIGNUM *challenge;
188 int i, len;
5260325f 189 Buffer msg;
190 MD5_CTX md;
1e3b8b07 191 u_char buf[32], mdbuf[16], session_id[16];
192 u_int response_type;
5260325f 193
194 buffer_init(&msg);
fa08c86b 195 key = key_new(KEY_RSA1);
b775c6f2 196 if ((challenge = BN_new()) == NULL)
197 fatal("process_authentication_challenge1: BN_new failed");
5260325f 198
2e73a022 199 buffer_get_int(&e->input); /* ignored */
200 buffer_get_bignum(&e->input, key->rsa->e);
201 buffer_get_bignum(&e->input, key->rsa->n);
202 buffer_get_bignum(&e->input, challenge);
5260325f 203
2e73a022 204 /* Only protocol 1.1 is supported */
205 if (buffer_len(&e->input) == 0)
206 goto failure;
e6207598 207 buffer_get(&e->input, session_id, 16);
2e73a022 208 response_type = buffer_get_int(&e->input);
209 if (response_type != 1)
210 goto failure;
211
95f0a918 212 id = lookup_identity(key, 1);
213 if (id != NULL) {
214 Key *private = id->key;
2e73a022 215 /* Decrypt the challenge using the private key. */
46aa2d1f 216 if (rsa_private_decrypt(challenge, challenge, private->rsa) <= 0)
217 goto failure;
2e73a022 218
219 /* The response is MD5 of decrypted challenge plus session id. */
220 len = BN_num_bytes(challenge);
221 if (len <= 0 || len > 32) {
222 log("process_authentication_challenge: bad challenge length %d", len);
223 goto failure;
5260325f 224 }
2e73a022 225 memset(buf, 0, 32);
226 BN_bn2bin(challenge, buf + 32 - len);
227 MD5_Init(&md);
228 MD5_Update(&md, buf, 32);
229 MD5_Update(&md, session_id, 16);
230 MD5_Final(mdbuf, &md);
231
232 /* Send the response. */
233 buffer_put_char(&msg, SSH_AGENT_RSA_RESPONSE);
234 for (i = 0; i < 16; i++)
235 buffer_put_char(&msg, mdbuf[i]);
236 goto send;
237 }
238
239failure:
240 /* Unknown identity or protocol error. Send failure. */
5260325f 241 buffer_put_char(&msg, SSH_AGENT_FAILURE);
242send:
2e73a022 243 buffer_put_int(&e->output, buffer_len(&msg));
244 buffer_append(&e->output, buffer_ptr(&msg), buffer_len(&msg));
245 key_free(key);
246 BN_clear_free(challenge);
247 buffer_free(&msg);
248}
249
250/* ssh2 only */
396c147e 251static void
2e73a022 252process_sign_request2(SocketEntry *e)
253{
254 extern int datafellows;
95f0a918 255 Key *key;
1e3b8b07 256 u_char *blob, *data, *signature = NULL;
257 u_int blen, dlen, slen = 0;
188adeb2 258 int flags;
2e73a022 259 Buffer msg;
260 int ok = -1;
261
262 datafellows = 0;
227e8e86 263
2e73a022 264 blob = buffer_get_string(&e->input, &blen);
265 data = buffer_get_string(&e->input, &dlen);
188adeb2 266
267 flags = buffer_get_int(&e->input);
268 if (flags & SSH_AGENT_OLD_SIGNATURE)
269 datafellows = SSH_BUG_SIGBLOB;
2e73a022 270
fa08c86b 271 key = key_from_blob(blob, blen);
2e73a022 272 if (key != NULL) {
95f0a918 273 Identity *id = lookup_identity(key, 2);
274 if (id != NULL)
275 ok = key_sign(id->key, &signature, &slen, data, dlen);
2e73a022 276 }
277 key_free(key);
278 buffer_init(&msg);
279 if (ok == 0) {
280 buffer_put_char(&msg, SSH2_AGENT_SIGN_RESPONSE);
281 buffer_put_string(&msg, signature, slen);
282 } else {
283 buffer_put_char(&msg, SSH_AGENT_FAILURE);
284 }
5260325f 285 buffer_put_int(&e->output, buffer_len(&msg));
286 buffer_append(&e->output, buffer_ptr(&msg),
2e73a022 287 buffer_len(&msg));
5260325f 288 buffer_free(&msg);
2e73a022 289 xfree(data);
290 xfree(blob);
291 if (signature != NULL)
292 xfree(signature);
8efc0c15 293}
294
2e73a022 295/* shared */
396c147e 296static void
2e73a022 297process_remove_identity(SocketEntry *e, int version)
8efc0c15 298{
95f0a918 299 Key *key = NULL;
1e3b8b07 300 u_char *blob;
301 u_int blen;
302 u_int bits;
2e73a022 303 int success = 0;
304
6aacefa7 305 switch (version) {
2e73a022 306 case 1:
fa08c86b 307 key = key_new(KEY_RSA1);
2e73a022 308 bits = buffer_get_int(&e->input);
309 buffer_get_bignum(&e->input, key->rsa->e);
310 buffer_get_bignum(&e->input, key->rsa->n);
311
312 if (bits != key_size(key))
313 log("Warning: identity keysize mismatch: actual %d, announced %d",
42f11eb2 314 key_size(key), bits);
2e73a022 315 break;
316 case 2:
317 blob = buffer_get_string(&e->input, &blen);
fa08c86b 318 key = key_from_blob(blob, blen);
2e73a022 319 xfree(blob);
320 break;
321 }
322 if (key != NULL) {
95f0a918 323 Identity *id = lookup_identity(key, version);
324 if (id != NULL) {
aa3378df 325 /*
326 * We have this key. Free the old key. Since we
327 * don\'t want to leave empty slots in the middle of
d343d900 328 * the array, we actually free the key there and move
329 * all the entries between the empty slot and the end
330 * of the array.
aa3378df 331 */
2e73a022 332 Idtab *tab = idtab_lookup(version);
fa08c86b 333 if (tab->nentries < 1)
334 fatal("process_remove_identity: "
335 "internal error: tab->nentries %d",
336 tab->nentries);
95f0a918 337 TAILQ_REMOVE(&tab->idlist, id, next);
338 free_identity(id);
2e73a022 339 tab->nentries--;
340 success = 1;
5260325f 341 }
2e73a022 342 key_free(key);
343 }
8efc0c15 344 buffer_put_int(&e->output, 1);
2e73a022 345 buffer_put_char(&e->output,
346 success ? SSH_AGENT_SUCCESS : SSH_AGENT_FAILURE);
8efc0c15 347}
348
396c147e 349static void
2e73a022 350process_remove_all_identities(SocketEntry *e, int version)
8efc0c15 351{
2e73a022 352 Idtab *tab = idtab_lookup(version);
95f0a918 353 Identity *id;
8efc0c15 354
5260325f 355 /* Loop over all identities and clear the keys. */
95f0a918 356 for (id = TAILQ_FIRST(&tab->idlist); id;
357 id = TAILQ_FIRST(&tab->idlist)) {
358 TAILQ_REMOVE(&tab->idlist, id, next);
359 free_identity(id);
5260325f 360 }
8efc0c15 361
5260325f 362 /* Mark that there are no identities. */
2e73a022 363 tab->nentries = 0;
8efc0c15 364
365 /* Send success. */
366 buffer_put_int(&e->output, 1);
367 buffer_put_char(&e->output, SSH_AGENT_SUCCESS);
368 return;
5260325f 369}
370
396c147e 371static void
fa08c86b 372process_add_identity(SocketEntry *e, int version)
373{
374 Key *k = NULL;
375 char *type_name;
2e73a022 376 char *comment;
fa08c86b 377 int type, success = 0;
2e73a022 378 Idtab *tab = idtab_lookup(version);
5260325f 379
2e73a022 380 switch (version) {
381 case 1:
fa08c86b 382 k = key_new_private(KEY_RSA1);
42f11eb2 383 buffer_get_int(&e->input); /* ignored */
fa08c86b 384 buffer_get_bignum(&e->input, k->rsa->n);
385 buffer_get_bignum(&e->input, k->rsa->e);
386 buffer_get_bignum(&e->input, k->rsa->d);
387 buffer_get_bignum(&e->input, k->rsa->iqmp);
2e73a022 388
389 /* SSH and SSL have p and q swapped */
fa08c86b 390 buffer_get_bignum(&e->input, k->rsa->q); /* p */
391 buffer_get_bignum(&e->input, k->rsa->p); /* q */
2e73a022 392
393 /* Generate additional parameters */
2b63e803 394 rsa_generate_additional_parameters(k->rsa);
2e73a022 395 break;
396 case 2:
fa08c86b 397 type_name = buffer_get_string(&e->input, NULL);
42f11eb2 398 type = key_type_from_name(type_name);
fa08c86b 399 xfree(type_name);
6aacefa7 400 switch (type) {
fa08c86b 401 case KEY_DSA:
402 k = key_new_private(type);
403 buffer_get_bignum2(&e->input, k->dsa->p);
404 buffer_get_bignum2(&e->input, k->dsa->q);
405 buffer_get_bignum2(&e->input, k->dsa->g);
406 buffer_get_bignum2(&e->input, k->dsa->pub_key);
407 buffer_get_bignum2(&e->input, k->dsa->priv_key);
408 break;
409 case KEY_RSA:
410 k = key_new_private(type);
411 buffer_get_bignum2(&e->input, k->rsa->n);
412 buffer_get_bignum2(&e->input, k->rsa->e);
413 buffer_get_bignum2(&e->input, k->rsa->d);
414 buffer_get_bignum2(&e->input, k->rsa->iqmp);
415 buffer_get_bignum2(&e->input, k->rsa->p);
416 buffer_get_bignum2(&e->input, k->rsa->q);
417
418 /* Generate additional parameters */
2b63e803 419 rsa_generate_additional_parameters(k->rsa);
fa08c86b 420 break;
421 default:
2e73a022 422 buffer_clear(&e->input);
2e73a022 423 goto send;
5260325f 424 }
2e73a022 425 break;
426 }
2e73a022 427 comment = buffer_get_string(&e->input, NULL);
428 if (k == NULL) {
429 xfree(comment);
430 goto send;
431 }
432 success = 1;
95f0a918 433 if (lookup_identity(k, version) == NULL) {
434 Identity *id = xmalloc(sizeof(Identity));
435 id->key = k;
436 id->comment = comment;
437 TAILQ_INSERT_TAIL(&tab->idlist, id, next);
2e73a022 438 /* Increment the number of identities. */
439 tab->nentries++;
440 } else {
441 key_free(k);
442 xfree(comment);
443 }
444send:
5260325f 445 buffer_put_int(&e->output, 1);
2e73a022 446 buffer_put_char(&e->output,
447 success ? SSH_AGENT_SUCCESS : SSH_AGENT_FAILURE);
8efc0c15 448}
449
2b5fe3b8 450
451#ifdef SMARTCARD
452static void
453process_add_smartcard_key (SocketEntry *e)
454{
455 Idtab *tab;
456 Key *n = NULL, *k = NULL;
76139bd8 457 char *sc_reader_id = NULL, *pin;
2b5fe3b8 458 int success = 0;
184eed6a 459
9ff6f66f 460 sc_reader_id = buffer_get_string(&e->input, NULL);
76139bd8 461 pin = buffer_get_string(&e->input, NULL);
462 k = sc_get_key(sc_reader_id, pin);
9ff6f66f 463 xfree(sc_reader_id);
76139bd8 464 xfree(pin);
2b5fe3b8 465
2b5fe3b8 466 if (k == NULL) {
467 error("sc_get_pubkey failed");
468 goto send;
469 }
470 success = 1;
471
472 tab = idtab_lookup(1);
a0e0f486 473 k->type = KEY_RSA1;
95f0a918 474 if (lookup_identity(k, 1) == NULL) {
475 Identity *id = xmalloc(sizeof(Identity));
2b5fe3b8 476 n = key_new(KEY_RSA1);
477 BN_copy(n->rsa->n, k->rsa->n);
478 BN_copy(n->rsa->e, k->rsa->e);
479 RSA_set_method(n->rsa, sc_get_engine());
95f0a918 480 id->key = n;
481 id->comment = xstrdup("rsa1 smartcard");
482 TAILQ_INSERT_TAIL(&tab->idlist, id, next);
2b5fe3b8 483 tab->nentries++;
484 }
a0e0f486 485 k->type = KEY_RSA;
2b5fe3b8 486 tab = idtab_lookup(2);
95f0a918 487 if (lookup_identity(k, 2) == NULL) {
488 Identity *id = xmalloc(sizeof(Identity));
2b5fe3b8 489 n = key_new(KEY_RSA);
490 BN_copy(n->rsa->n, k->rsa->n);
491 BN_copy(n->rsa->e, k->rsa->e);
492 RSA_set_method(n->rsa, sc_get_engine());
95f0a918 493 id->key = n;
494 id->comment = xstrdup("rsa smartcard");
495 TAILQ_INSERT_TAIL(&tab->idlist, id, next);
2b5fe3b8 496 tab->nentries++;
497 }
498 key_free(k);
499send:
500 buffer_put_int(&e->output, 1);
501 buffer_put_char(&e->output,
502 success ? SSH_AGENT_SUCCESS : SSH_AGENT_FAILURE);
503}
504
505static void
506process_remove_smartcard_key(SocketEntry *e)
507{
95f0a918 508 Key *k = NULL;
2b5fe3b8 509 int success = 0;
76139bd8 510 char *sc_reader_id = NULL, *pin;
2b5fe3b8 511
9ff6f66f 512 sc_reader_id = buffer_get_string(&e->input, NULL);
76139bd8 513 pin = buffer_get_string(&e->input, NULL);
514 k = sc_get_key(sc_reader_id, pin);
9ff6f66f 515 xfree(sc_reader_id);
76139bd8 516 xfree(pin);
2b5fe3b8 517
9ff6f66f 518 if (k == NULL) {
2b5fe3b8 519 error("sc_get_pubkey failed");
520 } else {
95f0a918 521 Identity *id;
77261db4 522 k->type = KEY_RSA1;
95f0a918 523 id = lookup_identity(k, 1);
524 if (id != NULL) {
2b5fe3b8 525 Idtab *tab = idtab_lookup(1);
95f0a918 526 TAILQ_REMOVE(&tab->idlist, id, next);
527 free_identity(id);
2b5fe3b8 528 tab->nentries--;
529 success = 1;
530 }
77261db4 531 k->type = KEY_RSA;
95f0a918 532 id = lookup_identity(k, 2);
533 if (id != NULL) {
2b5fe3b8 534 Idtab *tab = idtab_lookup(2);
95f0a918 535 TAILQ_REMOVE(&tab->idlist, id, next);
536 free_identity(id);
2b5fe3b8 537 tab->nentries--;
538 success = 1;
539 }
540 key_free(k);
541 }
542
543 buffer_put_int(&e->output, 1);
544 buffer_put_char(&e->output,
545 success ? SSH_AGENT_SUCCESS : SSH_AGENT_FAILURE);
546}
3e984472 547#endif /* SMARTCARD */
2b5fe3b8 548
2e73a022 549/* dispatch incoming messages */
550
396c147e 551static void
8efc0c15 552process_message(SocketEntry *e)
553{
1e3b8b07 554 u_int msg_len;
555 u_int type;
556 u_char *cp;
5260325f 557 if (buffer_len(&e->input) < 5)
558 return; /* Incomplete message. */
20905a8e 559 cp = buffer_ptr(&e->input);
5260325f 560 msg_len = GET_32BIT(cp);
561 if (msg_len > 256 * 1024) {
562 shutdown(e->fd, SHUT_RDWR);
563 close(e->fd);
564 e->type = AUTH_UNUSED;
565 return;
566 }
567 if (buffer_len(&e->input) < msg_len + 4)
568 return;
569 buffer_consume(&e->input, 4);
570 type = buffer_get_char(&e->input);
571
2b5fe3b8 572 debug("type %d", type);
5260325f 573 switch (type) {
2e73a022 574 /* ssh1 */
5260325f 575 case SSH_AGENTC_RSA_CHALLENGE:
2e73a022 576 process_authentication_challenge1(e);
577 break;
578 case SSH_AGENTC_REQUEST_RSA_IDENTITIES:
579 process_request_identities(e, 1);
5260325f 580 break;
581 case SSH_AGENTC_ADD_RSA_IDENTITY:
2e73a022 582 process_add_identity(e, 1);
5260325f 583 break;
584 case SSH_AGENTC_REMOVE_RSA_IDENTITY:
2e73a022 585 process_remove_identity(e, 1);
5260325f 586 break;
587 case SSH_AGENTC_REMOVE_ALL_RSA_IDENTITIES:
2e73a022 588 process_remove_all_identities(e, 1);
589 break;
590 /* ssh2 */
591 case SSH2_AGENTC_SIGN_REQUEST:
592 process_sign_request2(e);
593 break;
594 case SSH2_AGENTC_REQUEST_IDENTITIES:
595 process_request_identities(e, 2);
596 break;
597 case SSH2_AGENTC_ADD_IDENTITY:
598 process_add_identity(e, 2);
599 break;
600 case SSH2_AGENTC_REMOVE_IDENTITY:
601 process_remove_identity(e, 2);
602 break;
603 case SSH2_AGENTC_REMOVE_ALL_IDENTITIES:
604 process_remove_all_identities(e, 2);
5260325f 605 break;
2b5fe3b8 606#ifdef SMARTCARD
607 case SSH_AGENTC_ADD_SMARTCARD_KEY:
608 process_add_smartcard_key(e);
184eed6a 609 break;
2b5fe3b8 610 case SSH_AGENTC_REMOVE_SMARTCARD_KEY:
611 process_remove_smartcard_key(e);
184eed6a 612 break;
3e984472 613#endif /* SMARTCARD */
5260325f 614 default:
615 /* Unknown message. Respond with failure. */
616 error("Unknown message %d", type);
617 buffer_clear(&e->input);
618 buffer_put_int(&e->output, 1);
619 buffer_put_char(&e->output, SSH_AGENT_FAILURE);
620 break;
621 }
8efc0c15 622}
623
396c147e 624static void
17a3011c 625new_socket(sock_type type, int fd)
8efc0c15 626{
1e3b8b07 627 u_int i, old_alloc;
5260325f 628 if (fcntl(fd, F_SETFL, O_NONBLOCK) < 0)
629 error("fcntl O_NONBLOCK: %s", strerror(errno));
630
631 if (fd > max_fd)
632 max_fd = fd;
633
634 for (i = 0; i < sockets_alloc; i++)
635 if (sockets[i].type == AUTH_UNUSED) {
636 sockets[i].fd = fd;
637 sockets[i].type = type;
638 buffer_init(&sockets[i].input);
639 buffer_init(&sockets[i].output);
640 return;
641 }
642 old_alloc = sockets_alloc;
643 sockets_alloc += 10;
644 if (sockets)
645 sockets = xrealloc(sockets, sockets_alloc * sizeof(sockets[0]));
646 else
647 sockets = xmalloc(sockets_alloc * sizeof(sockets[0]));
648 for (i = old_alloc; i < sockets_alloc; i++)
649 sockets[i].type = AUTH_UNUSED;
650 sockets[old_alloc].type = type;
651 sockets[old_alloc].fd = fd;
652 buffer_init(&sockets[old_alloc].input);
653 buffer_init(&sockets[old_alloc].output);
8efc0c15 654}
655
396c147e 656static int
e364646f 657prepare_select(fd_set **fdrp, fd_set **fdwp, int *fdl, int *nallocp)
8efc0c15 658{
42f11eb2 659 u_int i, sz;
660 int n = 0;
661
662 for (i = 0; i < sockets_alloc; i++) {
5260325f 663 switch (sockets[i].type) {
664 case AUTH_SOCKET:
665 case AUTH_CONNECTION:
42f11eb2 666 n = MAX(n, sockets[i].fd);
5260325f 667 break;
668 case AUTH_UNUSED:
669 break;
670 default:
671 fatal("Unknown socket type %d", sockets[i].type);
672 break;
673 }
42f11eb2 674 }
675
676 sz = howmany(n+1, NFDBITS) * sizeof(fd_mask);
e364646f 677 if (*fdrp == NULL || sz > *nallocp) {
42f11eb2 678 if (*fdrp)
894c5fa6 679 xfree(*fdrp);
42f11eb2 680 if (*fdwp)
894c5fa6 681 xfree(*fdwp);
42f11eb2 682 *fdrp = xmalloc(sz);
683 *fdwp = xmalloc(sz);
e364646f 684 *nallocp = sz;
42f11eb2 685 }
e364646f 686 if (n < *fdl)
687 debug("XXX shrink: %d < %d", n, *fdl);
688 *fdl = n;
42f11eb2 689 memset(*fdrp, 0, sz);
690 memset(*fdwp, 0, sz);
691
692 for (i = 0; i < sockets_alloc; i++) {
693 switch (sockets[i].type) {
694 case AUTH_SOCKET:
695 case AUTH_CONNECTION:
696 FD_SET(sockets[i].fd, *fdrp);
697 if (buffer_len(&sockets[i].output) > 0)
698 FD_SET(sockets[i].fd, *fdwp);
699 break;
700 default:
701 break;
702 }
703 }
704 return (1);
8efc0c15 705}
706
396c147e 707static void
5260325f 708after_select(fd_set *readset, fd_set *writeset)
8efc0c15 709{
1e3b8b07 710 u_int i;
5260325f 711 int len, sock;
610cd5c6 712 socklen_t slen;
5260325f 713 char buf[1024];
714 struct sockaddr_un sunaddr;
715
716 for (i = 0; i < sockets_alloc; i++)
717 switch (sockets[i].type) {
718 case AUTH_UNUSED:
719 break;
720 case AUTH_SOCKET:
721 if (FD_ISSET(sockets[i].fd, readset)) {
610cd5c6 722 slen = sizeof(sunaddr);
42f11eb2 723 sock = accept(sockets[i].fd,
724 (struct sockaddr *) &sunaddr, &slen);
5260325f 725 if (sock < 0) {
fccfbe3b 726 error("accept from AUTH_SOCKET: %s",
727 strerror(errno));
5260325f 728 break;
729 }
730 new_socket(AUTH_CONNECTION, sock);
731 }
732 break;
733 case AUTH_CONNECTION:
734 if (buffer_len(&sockets[i].output) > 0 &&
735 FD_ISSET(sockets[i].fd, writeset)) {
bbc62e59 736 do {
737 len = write(sockets[i].fd,
738 buffer_ptr(&sockets[i].output),
739 buffer_len(&sockets[i].output));
740 if (len == -1 && (errno == EAGAIN ||
741 errno == EINTR))
742 continue;
743 break;
744 } while (1);
5260325f 745 if (len <= 0) {
746 shutdown(sockets[i].fd, SHUT_RDWR);
747 close(sockets[i].fd);
748 sockets[i].type = AUTH_UNUSED;
0ac7199f 749 buffer_free(&sockets[i].input);
750 buffer_free(&sockets[i].output);
5260325f 751 break;
752 }
753 buffer_consume(&sockets[i].output, len);
754 }
755 if (FD_ISSET(sockets[i].fd, readset)) {
bbc62e59 756 do {
757 len = read(sockets[i].fd, buf, sizeof(buf));
758 if (len == -1 && (errno == EAGAIN ||
759 errno == EINTR))
760 continue;
761 break;
762 } while (1);
5260325f 763 if (len <= 0) {
764 shutdown(sockets[i].fd, SHUT_RDWR);
765 close(sockets[i].fd);
766 sockets[i].type = AUTH_UNUSED;
0ac7199f 767 buffer_free(&sockets[i].input);
768 buffer_free(&sockets[i].output);
5260325f 769 break;
770 }
771 buffer_append(&sockets[i].input, buf, len);
772 process_message(&sockets[i]);
773 }
774 break;
775 default:
776 fatal("Unknown type %d", sockets[i].type);
777 }
8efc0c15 778}
779
396c147e 780static void
fccfbe3b 781cleanup_socket(void *p)
dae3fa13 782{
2f4b2e38 783 if (socket_name[0])
784 unlink(socket_name);
785 if (socket_dir[0])
786 rmdir(socket_dir);
8efc0c15 787}
788
396c147e 789static void
dae3fa13 790cleanup_exit(int i)
791{
fccfbe3b 792 cleanup_socket(NULL);
5260325f 793 exit(i);
dae3fa13 794}
795
396c147e 796static void
2f4b2e38 797cleanup_handler(int sig)
798{
fccfbe3b 799 cleanup_socket(NULL);
2f4b2e38 800 _exit(2);
801}
802
7efa8482 803static void
804check_parent_exists(int sig)
805{
806 int save_errno = errno;
807
808 if (parent_pid != -1 && kill(parent_pid, 0) < 0) {
809 /* printf("Parent has died - Authentication agent exiting.\n"); */
810 cleanup_handler(sig); /* safe */
811 }
812 signal(SIGALRM, check_parent_exists);
813 alarm(10);
814 errno = save_errno;
815}
816
396c147e 817static void
cc8aca8a 818usage(void)
dae3fa13 819{
33e766d2 820 fprintf(stderr, "Usage: %s [options] [command [args ...]]\n",
0e3c1f95 821 __progname);
33e766d2 822 fprintf(stderr, "Options:\n");
823 fprintf(stderr, " -c Generate C-shell commands on stdout.\n");
824 fprintf(stderr, " -s Generate Bourne shell commands on stdout.\n");
825 fprintf(stderr, " -k Kill the current agent.\n");
826 fprintf(stderr, " -d Debug mode.\n");
5260325f 827 exit(1);
dae3fa13 828}
829
8efc0c15 830int
831main(int ac, char **av)
832{
e364646f 833 int sock, c_flag = 0, d_flag = 0, k_flag = 0, s_flag = 0, ch, nalloc;
5260325f 834 struct sockaddr_un sunaddr;
b03bd394 835#ifdef HAVE_SETRLIMIT
0b6fbf03 836 struct rlimit rlim;
c7ccfd39 837#endif
838#ifdef HAVE_CYGWIN
839 int prev_mask;
b03bd394 840#endif
5260325f 841 pid_t pid;
842 char *shell, *format, *pidstr, pidstrbuf[1 + 3 * sizeof pid];
c04f75f1 843 extern int optind;
42f11eb2 844 fd_set *readsetp = NULL, *writesetp = NULL;
fcb975eb 845
457fc0c6 846 SSLeay_add_all_algorithms();
847
260d427b 848 __progname = get_progname(av[0]);
264dce47 849 init_rng();
e339aa53 850 seed_rng();
2b87da3b 851
4e577b89 852#ifdef __GNU_LIBRARY__
ffdb5d70 853 while ((ch = getopt(ac, av, "+cdks")) != -1) {
4e577b89 854#else /* __GNU_LIBRARY__ */
ffdb5d70 855 while ((ch = getopt(ac, av, "cdks")) != -1) {
4e577b89 856#endif /* __GNU_LIBRARY__ */
5260325f 857 switch (ch) {
858 case 'c':
859 if (s_flag)
860 usage();
861 c_flag++;
862 break;
863 case 'k':
864 k_flag++;
865 break;
866 case 's':
867 if (c_flag)
868 usage();
869 s_flag++;
870 break;
ffdb5d70 871 case 'd':
872 if (d_flag)
873 usage();
874 d_flag++;
875 break;
5260325f 876 default:
877 usage();
878 }
dae3fa13 879 }
5260325f 880 ac -= optind;
881 av += optind;
882
ffdb5d70 883 if (ac > 0 && (c_flag || k_flag || s_flag || d_flag))
5260325f 884 usage();
885
ffdb5d70 886 if (ac == 0 && !c_flag && !k_flag && !s_flag && !d_flag) {
5260325f 887 shell = getenv("SHELL");
888 if (shell != NULL && strncmp(shell + strlen(shell) - 3, "csh", 3) == 0)
889 c_flag = 1;
dae3fa13 890 }
5260325f 891 if (k_flag) {
892 pidstr = getenv(SSH_AGENTPID_ENV_NAME);
893 if (pidstr == NULL) {
894 fprintf(stderr, "%s not set, cannot kill agent\n",
42f11eb2 895 SSH_AGENTPID_ENV_NAME);
5260325f 896 exit(1);
897 }
898 pid = atoi(pidstr);
42f11eb2 899 if (pid < 1) {
5260325f 900 fprintf(stderr, "%s=\"%s\", which is not a good PID\n",
42f11eb2 901 SSH_AGENTPID_ENV_NAME, pidstr);
5260325f 902 exit(1);
903 }
904 if (kill(pid, SIGTERM) == -1) {
905 perror("kill");
906 exit(1);
907 }
908 format = c_flag ? "unsetenv %s;\n" : "unset %s;\n";
909 printf(format, SSH_AUTHSOCKET_ENV_NAME);
910 printf(format, SSH_AGENTPID_ENV_NAME);
911 printf("echo Agent pid %d killed;\n", pid);
912 exit(0);
dae3fa13 913 }
5260325f 914 parent_pid = getpid();
915
916 /* Create private directory for agent socket */
917 strlcpy(socket_dir, "/tmp/ssh-XXXXXXXX", sizeof socket_dir);
918 if (mkdtemp(socket_dir) == NULL) {
919 perror("mkdtemp: private socket dir");
920 exit(1);
921 }
922 snprintf(socket_name, sizeof socket_name, "%s/agent.%d", socket_dir,
42f11eb2 923 parent_pid);
5260325f 924
aa3378df 925 /*
926 * Create socket early so it will exist before command gets run from
927 * the parent.
928 */
5260325f 929 sock = socket(AF_UNIX, SOCK_STREAM, 0);
930 if (sock < 0) {
931 perror("socket");
932 cleanup_exit(1);
933 }
934 memset(&sunaddr, 0, sizeof(sunaddr));
935 sunaddr.sun_family = AF_UNIX;
936 strlcpy(sunaddr.sun_path, socket_name, sizeof(sunaddr.sun_path));
c7ccfd39 937#ifdef HAVE_CYGWIN
938 prev_mask = umask(0177);
939#endif
5260325f 940 if (bind(sock, (struct sockaddr *) & sunaddr, sizeof(sunaddr)) < 0) {
941 perror("bind");
c7ccfd39 942#ifdef HAVE_CYGWIN
943 umask(prev_mask);
944#endif
5260325f 945 cleanup_exit(1);
946 }
c7ccfd39 947#ifdef HAVE_CYGWIN
948 umask(prev_mask);
949#endif
5260325f 950 if (listen(sock, 5) < 0) {
951 perror("listen");
952 cleanup_exit(1);
dae3fa13 953 }
42f11eb2 954
aa3378df 955 /*
956 * Fork, and have the parent execute the command, if any, or present
957 * the socket data. The child continues as the authentication agent.
958 */
ffdb5d70 959 if (d_flag) {
960 log_init(__progname, SYSLOG_LEVEL_DEBUG1, SYSLOG_FACILITY_AUTH, 1);
961 format = c_flag ? "setenv %s %s;\n" : "%s=%s; export %s;\n";
962 printf(format, SSH_AUTHSOCKET_ENV_NAME, socket_name,
963 SSH_AUTHSOCKET_ENV_NAME);
964 printf("echo Agent pid %d;\n", parent_pid);
965 goto skip;
966 }
5260325f 967 pid = fork();
968 if (pid == -1) {
969 perror("fork");
fccfbe3b 970 cleanup_exit(1);
dae3fa13 971 }
5260325f 972 if (pid != 0) { /* Parent - execute the given command. */
973 close(sock);
974 snprintf(pidstrbuf, sizeof pidstrbuf, "%d", pid);
975 if (ac == 0) {
976 format = c_flag ? "setenv %s %s;\n" : "%s=%s; export %s;\n";
977 printf(format, SSH_AUTHSOCKET_ENV_NAME, socket_name,
42f11eb2 978 SSH_AUTHSOCKET_ENV_NAME);
5260325f 979 printf(format, SSH_AGENTPID_ENV_NAME, pidstrbuf,
42f11eb2 980 SSH_AGENTPID_ENV_NAME);
5260325f 981 printf("echo Agent pid %d;\n", pid);
982 exit(0);
983 }
bcbf86ec 984 if (setenv(SSH_AUTHSOCKET_ENV_NAME, socket_name, 1) == -1 ||
985 setenv(SSH_AGENTPID_ENV_NAME, pidstrbuf, 1) == -1) {
986 perror("setenv");
987 exit(1);
988 }
5260325f 989 execvp(av[0], av);
990 perror(av[0]);
991 exit(1);
992 }
fccfbe3b 993 /* child */
994 log_init(__progname, SYSLOG_LEVEL_INFO, SYSLOG_FACILITY_AUTH, 0);
ec9f3450 995
996 if (setsid() == -1) {
fccfbe3b 997 error("setsid: %s", strerror(errno));
ec9f3450 998 cleanup_exit(1);
999 }
1000
1001 (void)chdir("/");
5260325f 1002 close(0);
1003 close(1);
1004 close(2);
dae3fa13 1005
b03bd394 1006#ifdef HAVE_SETRLIMIT
0b6fbf03 1007 /* deny core dumps, since memory contains unencrypted private keys */
1008 rlim.rlim_cur = rlim.rlim_max = 0;
1009 if (setrlimit(RLIMIT_CORE, &rlim) < 0) {
fccfbe3b 1010 error("setrlimit RLIMIT_CORE: %s", strerror(errno));
0b6fbf03 1011 cleanup_exit(1);
1012 }
b03bd394 1013#endif
ffdb5d70 1014
1015skip:
fccfbe3b 1016 fatal_add_cleanup(cleanup_socket, NULL);
5260325f 1017 new_socket(AUTH_SOCKET, sock);
1018 if (ac > 0) {
1019 signal(SIGALRM, check_parent_exists);
1020 alarm(10);
1021 }
2e73a022 1022 idtab_init();
1ee482c5 1023 if (!d_flag)
ffdb5d70 1024 signal(SIGINT, SIG_IGN);
1ee482c5 1025 signal(SIGPIPE, SIG_IGN);
2f4b2e38 1026 signal(SIGHUP, cleanup_handler);
1027 signal(SIGTERM, cleanup_handler);
e364646f 1028 nalloc = 0;
1029
5260325f 1030 while (1) {
e364646f 1031 prepare_select(&readsetp, &writesetp, &max_fd, &nalloc);
42f11eb2 1032 if (select(max_fd + 1, readsetp, writesetp, NULL, NULL) < 0) {
5260325f 1033 if (errno == EINTR)
1034 continue;
fccfbe3b 1035 fatal("select: %s", strerror(errno));
5260325f 1036 }
42f11eb2 1037 after_select(readsetp, writesetp);
8efc0c15 1038 }
5260325f 1039 /* NOTREACHED */
8efc0c15 1040}
This page took 1.824096 seconds and 5 git commands to generate.