]> andersk Git - openssh.git/blame - ssh-agent.c
- (stevesk) OpenSSH CVS update:
[openssh.git] / ssh-agent.c
CommitLineData
6b523bae 1/* $OpenBSD: ssh-agent.c,v 1.42 2000/12/09 14:06:54 markus Exp $ */
dae3fa13 2
8efc0c15 3/*
5260325f 4 * Author: Tatu Ylonen <ylo@cs.hut.fi>
5 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
6 * All rights reserved
5260325f 7 * The authentication agent program.
2e73a022 8 *
bcbf86ec 9 * As far as I am concerned, the code I have written for this software
10 * can be used freely for any purpose. Any derived versions of this
11 * software must be clearly marked as such, and if the derived work is
12 * incompatible with the protocol description in the RFC file, it must be
13 * called by a name other than "ssh" or "Secure Shell".
14 *
2e73a022 15 * SSH2 implementation,
16 * Copyright (c) 2000 Markus Friedl. All rights reserved.
bcbf86ec 17 *
18 * Redistribution and use in source and binary forms, with or without
19 * modification, are permitted provided that the following conditions
20 * are met:
21 * 1. Redistributions of source code must retain the above copyright
22 * notice, this list of conditions and the following disclaimer.
23 * 2. Redistributions in binary form must reproduce the above copyright
24 * notice, this list of conditions and the following disclaimer in the
25 * documentation and/or other materials provided with the distribution.
26 *
27 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
28 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
29 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
30 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
31 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
32 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
33 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
34 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
35 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
36 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
5260325f 37 */
8efc0c15 38
39#include "includes.h"
6b523bae 40RCSID("$OpenBSD: ssh-agent.c,v 1.42 2000/12/09 14:06:54 markus Exp $");
8efc0c15 41
42#include "ssh.h"
43#include "rsa.h"
8efc0c15 44#include "buffer.h"
45#include "bufaux.h"
46#include "xmalloc.h"
47#include "packet.h"
48#include "getput.h"
49#include "mpaux.h"
50
2e73a022 51#include <openssl/evp.h>
8efc0c15 52#include <openssl/md5.h>
4c8722d9 53#include <openssl/dsa.h>
54#include <openssl/rsa.h>
55#include "key.h"
56#include "authfd.h"
2e73a022 57#include "kex.h"
188adeb2 58#include "compat.h"
8efc0c15 59
5260325f 60typedef struct {
61 int fd;
62 enum {
63 AUTH_UNUSED, AUTH_SOCKET, AUTH_CONNECTION
64 } type;
65 Buffer input;
66 Buffer output;
8efc0c15 67} SocketEntry;
68
69unsigned int sockets_alloc = 0;
70SocketEntry *sockets = NULL;
71
5260325f 72typedef struct {
2e73a022 73 Key *key;
5260325f 74 char *comment;
8efc0c15 75} Identity;
76
2e73a022 77typedef struct {
78 int nentries;
79 Identity *identities;
80} Idtab;
81
82/* private key table, one per protocol version */
83Idtab idtable[3];
8efc0c15 84
85int max_fd = 0;
86
87/* pid of shell == parent of agent */
9da5c3c9 88pid_t parent_pid = -1;
8efc0c15 89
90/* pathname and directory for AUTH_SOCKET */
91char socket_name[1024];
92char socket_dir[1024];
93
5260325f 94#ifdef HAVE___PROGNAME
95extern char *__progname;
260d427b 96#else
97char *__progname;
98#endif
5260325f 99
8efc0c15 100void
2e73a022 101idtab_init(void)
102{
103 int i;
104 for (i = 0; i <=2; i++){
105 idtable[i].identities = NULL;
106 idtable[i].nentries = 0;
107 }
108}
109
110/* return private key table for requested protocol version */
111Idtab *
112idtab_lookup(int version)
113{
114 if (version < 1 || version > 2)
115 fatal("internal error, bad protocol version %d", version);
116 return &idtable[version];
117}
118
119/* return matching private key for given public key */
120Key *
121lookup_private_key(Key *key, int *idx, int version)
122{
123 int i;
124 Idtab *tab = idtab_lookup(version);
125 for (i = 0; i < tab->nentries; i++) {
126 if (key_equal(key, tab->identities[i].key)) {
127 if (idx != NULL)
128 *idx = i;
129 return tab->identities[i].key;
130 }
131 }
132 return NULL;
133}
134
135/* send list of supported public keys to 'client' */
136void
137process_request_identities(SocketEntry *e, int version)
8efc0c15 138{
2e73a022 139 Idtab *tab = idtab_lookup(version);
5260325f 140 Buffer msg;
141 int i;
142
143 buffer_init(&msg);
2e73a022 144 buffer_put_char(&msg, (version == 1) ?
145 SSH_AGENT_RSA_IDENTITIES_ANSWER : SSH2_AGENT_IDENTITIES_ANSWER);
146 buffer_put_int(&msg, tab->nentries);
147 for (i = 0; i < tab->nentries; i++) {
148 Identity *id = &tab->identities[i];
fa08c86b 149 if (id->key->type == KEY_RSA1) {
2e73a022 150 buffer_put_int(&msg, BN_num_bits(id->key->rsa->n));
151 buffer_put_bignum(&msg, id->key->rsa->e);
152 buffer_put_bignum(&msg, id->key->rsa->n);
153 } else {
154 unsigned char *blob;
155 unsigned int blen;
fa08c86b 156 key_to_blob(id->key, &blob, &blen);
2e73a022 157 buffer_put_string(&msg, blob, blen);
158 xfree(blob);
159 }
160 buffer_put_cstring(&msg, id->comment);
5260325f 161 }
162 buffer_put_int(&e->output, buffer_len(&msg));
163 buffer_append(&e->output, buffer_ptr(&msg), buffer_len(&msg));
164 buffer_free(&msg);
8efc0c15 165}
166
2e73a022 167/* ssh1 only */
8efc0c15 168void
2e73a022 169process_authentication_challenge1(SocketEntry *e)
8efc0c15 170{
2e73a022 171 Key *key, *private;
172 BIGNUM *challenge;
173 int i, len;
5260325f 174 Buffer msg;
175 MD5_CTX md;
176 unsigned char buf[32], mdbuf[16], session_id[16];
177 unsigned int response_type;
178
179 buffer_init(&msg);
fa08c86b 180 key = key_new(KEY_RSA1);
5260325f 181 challenge = BN_new();
5260325f 182
2e73a022 183 buffer_get_int(&e->input); /* ignored */
184 buffer_get_bignum(&e->input, key->rsa->e);
185 buffer_get_bignum(&e->input, key->rsa->n);
186 buffer_get_bignum(&e->input, challenge);
5260325f 187
2e73a022 188 /* Only protocol 1.1 is supported */
189 if (buffer_len(&e->input) == 0)
190 goto failure;
191 buffer_get(&e->input, (char *) session_id, 16);
192 response_type = buffer_get_int(&e->input);
193 if (response_type != 1)
194 goto failure;
195
196 private = lookup_private_key(key, NULL, 1);
197 if (private != NULL) {
198 /* Decrypt the challenge using the private key. */
199 rsa_private_decrypt(challenge, challenge, private->rsa);
200
201 /* The response is MD5 of decrypted challenge plus session id. */
202 len = BN_num_bytes(challenge);
203 if (len <= 0 || len > 32) {
204 log("process_authentication_challenge: bad challenge length %d", len);
205 goto failure;
5260325f 206 }
2e73a022 207 memset(buf, 0, 32);
208 BN_bn2bin(challenge, buf + 32 - len);
209 MD5_Init(&md);
210 MD5_Update(&md, buf, 32);
211 MD5_Update(&md, session_id, 16);
212 MD5_Final(mdbuf, &md);
213
214 /* Send the response. */
215 buffer_put_char(&msg, SSH_AGENT_RSA_RESPONSE);
216 for (i = 0; i < 16; i++)
217 buffer_put_char(&msg, mdbuf[i]);
218 goto send;
219 }
220
221failure:
222 /* Unknown identity or protocol error. Send failure. */
5260325f 223 buffer_put_char(&msg, SSH_AGENT_FAILURE);
224send:
2e73a022 225 buffer_put_int(&e->output, buffer_len(&msg));
226 buffer_append(&e->output, buffer_ptr(&msg), buffer_len(&msg));
227 key_free(key);
228 BN_clear_free(challenge);
229 buffer_free(&msg);
230}
231
232/* ssh2 only */
233void
234process_sign_request2(SocketEntry *e)
235{
236 extern int datafellows;
237 Key *key, *private;
238 unsigned char *blob, *data, *signature = NULL;
239 unsigned int blen, dlen, slen = 0;
188adeb2 240 int flags;
2e73a022 241 Buffer msg;
242 int ok = -1;
243
244 datafellows = 0;
245
246 blob = buffer_get_string(&e->input, &blen);
247 data = buffer_get_string(&e->input, &dlen);
188adeb2 248
249 flags = buffer_get_int(&e->input);
250 if (flags & SSH_AGENT_OLD_SIGNATURE)
251 datafellows = SSH_BUG_SIGBLOB;
2e73a022 252
fa08c86b 253 key = key_from_blob(blob, blen);
2e73a022 254 if (key != NULL) {
255 private = lookup_private_key(key, NULL, 2);
256 if (private != NULL)
fa08c86b 257 ok = key_sign(private, &signature, &slen, data, dlen);
2e73a022 258 }
259 key_free(key);
260 buffer_init(&msg);
261 if (ok == 0) {
262 buffer_put_char(&msg, SSH2_AGENT_SIGN_RESPONSE);
263 buffer_put_string(&msg, signature, slen);
264 } else {
265 buffer_put_char(&msg, SSH_AGENT_FAILURE);
266 }
5260325f 267 buffer_put_int(&e->output, buffer_len(&msg));
268 buffer_append(&e->output, buffer_ptr(&msg),
2e73a022 269 buffer_len(&msg));
5260325f 270 buffer_free(&msg);
2e73a022 271 xfree(data);
272 xfree(blob);
273 if (signature != NULL)
274 xfree(signature);
8efc0c15 275}
276
2e73a022 277/* shared */
8efc0c15 278void
2e73a022 279process_remove_identity(SocketEntry *e, int version)
8efc0c15 280{
2e73a022 281 Key *key = NULL, *private;
282 unsigned char *blob;
283 unsigned int blen;
5260325f 284 unsigned int bits;
2e73a022 285 int success = 0;
286
287 switch(version){
288 case 1:
fa08c86b 289 key = key_new(KEY_RSA1);
2e73a022 290 bits = buffer_get_int(&e->input);
291 buffer_get_bignum(&e->input, key->rsa->e);
292 buffer_get_bignum(&e->input, key->rsa->n);
293
294 if (bits != key_size(key))
295 log("Warning: identity keysize mismatch: actual %d, announced %d",
296 key_size(key), bits);
297 break;
298 case 2:
299 blob = buffer_get_string(&e->input, &blen);
fa08c86b 300 key = key_from_blob(blob, blen);
2e73a022 301 xfree(blob);
302 break;
303 }
304 if (key != NULL) {
305 int idx;
306 private = lookup_private_key(key, &idx, version);
307 if (private != NULL) {
aa3378df 308 /*
309 * We have this key. Free the old key. Since we
310 * don\'t want to leave empty slots in the middle of
d343d900 311 * the array, we actually free the key there and move
312 * all the entries between the empty slot and the end
313 * of the array.
aa3378df 314 */
2e73a022 315 Idtab *tab = idtab_lookup(version);
316 key_free(tab->identities[idx].key);
317 xfree(tab->identities[idx].comment);
fa08c86b 318 if (tab->nentries < 1)
319 fatal("process_remove_identity: "
320 "internal error: tab->nentries %d",
321 tab->nentries);
d343d900 322 if (idx != tab->nentries - 1) {
323 int i;
324 for (i = idx; i < tab->nentries - 1; i++)
325 tab->identities[i] = tab->identities[i+1];
326 }
327 tab->identities[tab->nentries - 1].key = NULL;
328 tab->identities[tab->nentries - 1].comment = NULL;
2e73a022 329 tab->nentries--;
330 success = 1;
5260325f 331 }
2e73a022 332 key_free(key);
333 }
8efc0c15 334 buffer_put_int(&e->output, 1);
2e73a022 335 buffer_put_char(&e->output,
336 success ? SSH_AGENT_SUCCESS : SSH_AGENT_FAILURE);
8efc0c15 337}
338
8efc0c15 339void
2e73a022 340process_remove_all_identities(SocketEntry *e, int version)
8efc0c15 341{
5260325f 342 unsigned int i;
2e73a022 343 Idtab *tab = idtab_lookup(version);
8efc0c15 344
5260325f 345 /* Loop over all identities and clear the keys. */
2e73a022 346 for (i = 0; i < tab->nentries; i++) {
347 key_free(tab->identities[i].key);
348 xfree(tab->identities[i].comment);
5260325f 349 }
8efc0c15 350
5260325f 351 /* Mark that there are no identities. */
2e73a022 352 tab->nentries = 0;
8efc0c15 353
354 /* Send success. */
355 buffer_put_int(&e->output, 1);
356 buffer_put_char(&e->output, SSH_AGENT_SUCCESS);
357 return;
5260325f 358}
359
5260325f 360void
fa08c86b 361generate_additional_parameters(RSA *rsa)
5260325f 362{
5260325f 363 BIGNUM *aux;
364 BN_CTX *ctx;
fa08c86b 365 /* Generate additional parameters */
366 aux = BN_new();
367 ctx = BN_CTX_new();
368
369 BN_sub(aux, rsa->q, BN_value_one());
370 BN_mod(rsa->dmq1, rsa->d, aux, ctx);
371
372 BN_sub(aux, rsa->p, BN_value_one());
373 BN_mod(rsa->dmp1, rsa->d, aux, ctx);
374
375 BN_clear_free(aux);
376 BN_CTX_free(ctx);
377}
378
379void
380process_add_identity(SocketEntry *e, int version)
381{
382 Key *k = NULL;
383 char *type_name;
2e73a022 384 char *comment;
fa08c86b 385 int type, success = 0;
2e73a022 386 Idtab *tab = idtab_lookup(version);
5260325f 387
2e73a022 388 switch (version) {
389 case 1:
fa08c86b 390 k = key_new_private(KEY_RSA1);
391 buffer_get_int(&e->input); /* ignored */
392 buffer_get_bignum(&e->input, k->rsa->n);
393 buffer_get_bignum(&e->input, k->rsa->e);
394 buffer_get_bignum(&e->input, k->rsa->d);
395 buffer_get_bignum(&e->input, k->rsa->iqmp);
2e73a022 396
397 /* SSH and SSL have p and q swapped */
fa08c86b 398 buffer_get_bignum(&e->input, k->rsa->q); /* p */
399 buffer_get_bignum(&e->input, k->rsa->p); /* q */
2e73a022 400
401 /* Generate additional parameters */
fa08c86b 402 generate_additional_parameters(k->rsa);
2e73a022 403 break;
404 case 2:
fa08c86b 405 type_name = buffer_get_string(&e->input, NULL);
406 type = key_type_from_name(type_name);
407 xfree(type_name);
408 switch(type) {
409 case KEY_DSA:
410 k = key_new_private(type);
411 buffer_get_bignum2(&e->input, k->dsa->p);
412 buffer_get_bignum2(&e->input, k->dsa->q);
413 buffer_get_bignum2(&e->input, k->dsa->g);
414 buffer_get_bignum2(&e->input, k->dsa->pub_key);
415 buffer_get_bignum2(&e->input, k->dsa->priv_key);
416 break;
417 case KEY_RSA:
418 k = key_new_private(type);
419 buffer_get_bignum2(&e->input, k->rsa->n);
420 buffer_get_bignum2(&e->input, k->rsa->e);
421 buffer_get_bignum2(&e->input, k->rsa->d);
422 buffer_get_bignum2(&e->input, k->rsa->iqmp);
423 buffer_get_bignum2(&e->input, k->rsa->p);
424 buffer_get_bignum2(&e->input, k->rsa->q);
425
426 /* Generate additional parameters */
427 generate_additional_parameters(k->rsa);
428 break;
429 default:
2e73a022 430 buffer_clear(&e->input);
2e73a022 431 goto send;
5260325f 432 }
2e73a022 433 break;
434 }
2e73a022 435 comment = buffer_get_string(&e->input, NULL);
436 if (k == NULL) {
437 xfree(comment);
438 goto send;
439 }
440 success = 1;
441 if (lookup_private_key(k, NULL, version) == NULL) {
442 if (tab->nentries == 0)
443 tab->identities = xmalloc(sizeof(Identity));
444 else
445 tab->identities = xrealloc(tab->identities,
446 (tab->nentries + 1) * sizeof(Identity));
447 tab->identities[tab->nentries].key = k;
448 tab->identities[tab->nentries].comment = comment;
449 /* Increment the number of identities. */
450 tab->nentries++;
451 } else {
452 key_free(k);
453 xfree(comment);
454 }
455send:
5260325f 456 buffer_put_int(&e->output, 1);
2e73a022 457 buffer_put_char(&e->output,
458 success ? SSH_AGENT_SUCCESS : SSH_AGENT_FAILURE);
8efc0c15 459}
460
2e73a022 461/* dispatch incoming messages */
462
8efc0c15 463void
464process_message(SocketEntry *e)
465{
5260325f 466 unsigned int msg_len;
467 unsigned int type;
468 unsigned char *cp;
469 if (buffer_len(&e->input) < 5)
470 return; /* Incomplete message. */
471 cp = (unsigned char *) buffer_ptr(&e->input);
472 msg_len = GET_32BIT(cp);
473 if (msg_len > 256 * 1024) {
474 shutdown(e->fd, SHUT_RDWR);
475 close(e->fd);
476 e->type = AUTH_UNUSED;
477 return;
478 }
479 if (buffer_len(&e->input) < msg_len + 4)
480 return;
481 buffer_consume(&e->input, 4);
482 type = buffer_get_char(&e->input);
483
484 switch (type) {
2e73a022 485 /* ssh1 */
5260325f 486 case SSH_AGENTC_RSA_CHALLENGE:
2e73a022 487 process_authentication_challenge1(e);
488 break;
489 case SSH_AGENTC_REQUEST_RSA_IDENTITIES:
490 process_request_identities(e, 1);
5260325f 491 break;
492 case SSH_AGENTC_ADD_RSA_IDENTITY:
2e73a022 493 process_add_identity(e, 1);
5260325f 494 break;
495 case SSH_AGENTC_REMOVE_RSA_IDENTITY:
2e73a022 496 process_remove_identity(e, 1);
5260325f 497 break;
498 case SSH_AGENTC_REMOVE_ALL_RSA_IDENTITIES:
2e73a022 499 process_remove_all_identities(e, 1);
500 break;
501 /* ssh2 */
502 case SSH2_AGENTC_SIGN_REQUEST:
503 process_sign_request2(e);
504 break;
505 case SSH2_AGENTC_REQUEST_IDENTITIES:
506 process_request_identities(e, 2);
507 break;
508 case SSH2_AGENTC_ADD_IDENTITY:
509 process_add_identity(e, 2);
510 break;
511 case SSH2_AGENTC_REMOVE_IDENTITY:
512 process_remove_identity(e, 2);
513 break;
514 case SSH2_AGENTC_REMOVE_ALL_IDENTITIES:
515 process_remove_all_identities(e, 2);
5260325f 516 break;
517 default:
518 /* Unknown message. Respond with failure. */
519 error("Unknown message %d", type);
520 buffer_clear(&e->input);
521 buffer_put_int(&e->output, 1);
522 buffer_put_char(&e->output, SSH_AGENT_FAILURE);
523 break;
524 }
8efc0c15 525}
526
527void
528new_socket(int type, int fd)
529{
5260325f 530 unsigned int i, old_alloc;
531 if (fcntl(fd, F_SETFL, O_NONBLOCK) < 0)
532 error("fcntl O_NONBLOCK: %s", strerror(errno));
533
534 if (fd > max_fd)
535 max_fd = fd;
536
537 for (i = 0; i < sockets_alloc; i++)
538 if (sockets[i].type == AUTH_UNUSED) {
539 sockets[i].fd = fd;
540 sockets[i].type = type;
541 buffer_init(&sockets[i].input);
542 buffer_init(&sockets[i].output);
543 return;
544 }
545 old_alloc = sockets_alloc;
546 sockets_alloc += 10;
547 if (sockets)
548 sockets = xrealloc(sockets, sockets_alloc * sizeof(sockets[0]));
549 else
550 sockets = xmalloc(sockets_alloc * sizeof(sockets[0]));
551 for (i = old_alloc; i < sockets_alloc; i++)
552 sockets[i].type = AUTH_UNUSED;
553 sockets[old_alloc].type = type;
554 sockets[old_alloc].fd = fd;
555 buffer_init(&sockets[old_alloc].input);
556 buffer_init(&sockets[old_alloc].output);
8efc0c15 557}
558
559void
560prepare_select(fd_set *readset, fd_set *writeset)
561{
5260325f 562 unsigned int i;
563 for (i = 0; i < sockets_alloc; i++)
564 switch (sockets[i].type) {
565 case AUTH_SOCKET:
566 case AUTH_CONNECTION:
567 FD_SET(sockets[i].fd, readset);
568 if (buffer_len(&sockets[i].output) > 0)
569 FD_SET(sockets[i].fd, writeset);
570 break;
571 case AUTH_UNUSED:
572 break;
573 default:
574 fatal("Unknown socket type %d", sockets[i].type);
575 break;
576 }
8efc0c15 577}
578
6ae2364d 579void
5260325f 580after_select(fd_set *readset, fd_set *writeset)
8efc0c15 581{
5260325f 582 unsigned int i;
583 int len, sock;
610cd5c6 584 socklen_t slen;
5260325f 585 char buf[1024];
586 struct sockaddr_un sunaddr;
587
588 for (i = 0; i < sockets_alloc; i++)
589 switch (sockets[i].type) {
590 case AUTH_UNUSED:
591 break;
592 case AUTH_SOCKET:
593 if (FD_ISSET(sockets[i].fd, readset)) {
610cd5c6 594 slen = sizeof(sunaddr);
595 sock = accept(sockets[i].fd, (struct sockaddr *) & sunaddr, &slen);
5260325f 596 if (sock < 0) {
597 perror("accept from AUTH_SOCKET");
598 break;
599 }
600 new_socket(AUTH_CONNECTION, sock);
601 }
602 break;
603 case AUTH_CONNECTION:
604 if (buffer_len(&sockets[i].output) > 0 &&
605 FD_ISSET(sockets[i].fd, writeset)) {
606 len = write(sockets[i].fd, buffer_ptr(&sockets[i].output),
607 buffer_len(&sockets[i].output));
608 if (len <= 0) {
609 shutdown(sockets[i].fd, SHUT_RDWR);
610 close(sockets[i].fd);
611 sockets[i].type = AUTH_UNUSED;
0ac7199f 612 buffer_free(&sockets[i].input);
613 buffer_free(&sockets[i].output);
5260325f 614 break;
615 }
616 buffer_consume(&sockets[i].output, len);
617 }
618 if (FD_ISSET(sockets[i].fd, readset)) {
619 len = read(sockets[i].fd, buf, sizeof(buf));
620 if (len <= 0) {
621 shutdown(sockets[i].fd, SHUT_RDWR);
622 close(sockets[i].fd);
623 sockets[i].type = AUTH_UNUSED;
0ac7199f 624 buffer_free(&sockets[i].input);
625 buffer_free(&sockets[i].output);
5260325f 626 break;
627 }
628 buffer_append(&sockets[i].input, buf, len);
629 process_message(&sockets[i]);
630 }
631 break;
632 default:
633 fatal("Unknown type %d", sockets[i].type);
634 }
8efc0c15 635}
636
637void
638check_parent_exists(int sig)
639{
9da5c3c9 640 if (parent_pid != -1 && kill(parent_pid, 0) < 0) {
5260325f 641 /* printf("Parent has died - Authentication agent exiting.\n"); */
642 exit(1);
643 }
644 signal(SIGALRM, check_parent_exists);
645 alarm(10);
8efc0c15 646}
647
dae3fa13 648void
649cleanup_socket(void)
650{
77bb0bca 651 unlink(socket_name);
5260325f 652 rmdir(socket_dir);
8efc0c15 653}
654
dae3fa13 655void
656cleanup_exit(int i)
657{
5260325f 658 cleanup_socket();
659 exit(i);
dae3fa13 660}
661
662void
663usage()
664{
5260325f 665 fprintf(stderr, "ssh-agent version %s\n", SSH_VERSION);
666 fprintf(stderr, "Usage: %s [-c | -s] [-k] [command {args...]]\n",
667 __progname);
668 exit(1);
dae3fa13 669}
670
8efc0c15 671int
672main(int ac, char **av)
673{
5260325f 674 fd_set readset, writeset;
675 int sock, c_flag = 0, k_flag = 0, s_flag = 0, ch;
676 struct sockaddr_un sunaddr;
0b6fbf03 677 struct rlimit rlim;
5260325f 678 pid_t pid;
679 char *shell, *format, *pidstr, pidstrbuf[1 + 3 * sizeof pid];
c04f75f1 680 extern int optind;
2e73a022 681
260d427b 682 __progname = get_progname(av[0]);
264dce47 683 init_rng();
2e73a022 684
4e577b89 685#ifdef __GNU_LIBRARY__
686 while ((ch = getopt(ac, av, "+cks")) != -1) {
687#else /* __GNU_LIBRARY__ */
5260325f 688 while ((ch = getopt(ac, av, "cks")) != -1) {
4e577b89 689#endif /* __GNU_LIBRARY__ */
5260325f 690 switch (ch) {
691 case 'c':
692 if (s_flag)
693 usage();
694 c_flag++;
695 break;
696 case 'k':
697 k_flag++;
698 break;
699 case 's':
700 if (c_flag)
701 usage();
702 s_flag++;
703 break;
704 default:
705 usage();
706 }
dae3fa13 707 }
5260325f 708 ac -= optind;
709 av += optind;
710
711 if (ac > 0 && (c_flag || k_flag || s_flag))
712 usage();
713
714 if (ac == 0 && !c_flag && !k_flag && !s_flag) {
715 shell = getenv("SHELL");
716 if (shell != NULL && strncmp(shell + strlen(shell) - 3, "csh", 3) == 0)
717 c_flag = 1;
dae3fa13 718 }
5260325f 719 if (k_flag) {
720 pidstr = getenv(SSH_AGENTPID_ENV_NAME);
721 if (pidstr == NULL) {
722 fprintf(stderr, "%s not set, cannot kill agent\n",
723 SSH_AGENTPID_ENV_NAME);
724 exit(1);
725 }
726 pid = atoi(pidstr);
727 if (pid < 1) { /* XXX PID_MAX check too */
9da5c3c9 728 /* Yes, PID_MAX check please */
5260325f 729 fprintf(stderr, "%s=\"%s\", which is not a good PID\n",
730 SSH_AGENTPID_ENV_NAME, pidstr);
731 exit(1);
732 }
733 if (kill(pid, SIGTERM) == -1) {
734 perror("kill");
735 exit(1);
736 }
737 format = c_flag ? "unsetenv %s;\n" : "unset %s;\n";
738 printf(format, SSH_AUTHSOCKET_ENV_NAME);
739 printf(format, SSH_AGENTPID_ENV_NAME);
740 printf("echo Agent pid %d killed;\n", pid);
741 exit(0);
dae3fa13 742 }
5260325f 743 parent_pid = getpid();
744
745 /* Create private directory for agent socket */
746 strlcpy(socket_dir, "/tmp/ssh-XXXXXXXX", sizeof socket_dir);
747 if (mkdtemp(socket_dir) == NULL) {
748 perror("mkdtemp: private socket dir");
749 exit(1);
750 }
751 snprintf(socket_name, sizeof socket_name, "%s/agent.%d", socket_dir,
752 parent_pid);
753
aa3378df 754 /*
755 * Create socket early so it will exist before command gets run from
756 * the parent.
757 */
5260325f 758 sock = socket(AF_UNIX, SOCK_STREAM, 0);
759 if (sock < 0) {
760 perror("socket");
761 cleanup_exit(1);
762 }
763 memset(&sunaddr, 0, sizeof(sunaddr));
764 sunaddr.sun_family = AF_UNIX;
765 strlcpy(sunaddr.sun_path, socket_name, sizeof(sunaddr.sun_path));
766 if (bind(sock, (struct sockaddr *) & sunaddr, sizeof(sunaddr)) < 0) {
767 perror("bind");
768 cleanup_exit(1);
769 }
770 if (listen(sock, 5) < 0) {
771 perror("listen");
772 cleanup_exit(1);
dae3fa13 773 }
aa3378df 774 /*
775 * Fork, and have the parent execute the command, if any, or present
776 * the socket data. The child continues as the authentication agent.
777 */
5260325f 778 pid = fork();
779 if (pid == -1) {
780 perror("fork");
781 exit(1);
dae3fa13 782 }
5260325f 783 if (pid != 0) { /* Parent - execute the given command. */
784 close(sock);
785 snprintf(pidstrbuf, sizeof pidstrbuf, "%d", pid);
786 if (ac == 0) {
787 format = c_flag ? "setenv %s %s;\n" : "%s=%s; export %s;\n";
788 printf(format, SSH_AUTHSOCKET_ENV_NAME, socket_name,
789 SSH_AUTHSOCKET_ENV_NAME);
790 printf(format, SSH_AGENTPID_ENV_NAME, pidstrbuf,
791 SSH_AGENTPID_ENV_NAME);
792 printf("echo Agent pid %d;\n", pid);
793 exit(0);
794 }
bcbf86ec 795 if (setenv(SSH_AUTHSOCKET_ENV_NAME, socket_name, 1) == -1 ||
796 setenv(SSH_AGENTPID_ENV_NAME, pidstrbuf, 1) == -1) {
797 perror("setenv");
798 exit(1);
799 }
5260325f 800 execvp(av[0], av);
801 perror(av[0]);
802 exit(1);
803 }
804 close(0);
805 close(1);
806 close(2);
dae3fa13 807
0b6fbf03 808 /* deny core dumps, since memory contains unencrypted private keys */
809 rlim.rlim_cur = rlim.rlim_max = 0;
810 if (setrlimit(RLIMIT_CORE, &rlim) < 0) {
811 perror("setrlimit rlimit_core failed");
812 cleanup_exit(1);
813 }
5260325f 814 if (setsid() == -1) {
815 perror("setsid");
816 cleanup_exit(1);
817 }
818 if (atexit(cleanup_socket) < 0) {
819 perror("atexit");
820 cleanup_exit(1);
821 }
822 new_socket(AUTH_SOCKET, sock);
823 if (ac > 0) {
824 signal(SIGALRM, check_parent_exists);
825 alarm(10);
826 }
2e73a022 827 idtab_init();
5260325f 828 signal(SIGINT, SIG_IGN);
829 signal(SIGPIPE, SIG_IGN);
6ae2364d 830 signal(SIGHUP, cleanup_exit);
831 signal(SIGTERM, cleanup_exit);
5260325f 832 while (1) {
833 FD_ZERO(&readset);
834 FD_ZERO(&writeset);
835 prepare_select(&readset, &writeset);
836 if (select(max_fd + 1, &readset, &writeset, NULL, NULL) < 0) {
837 if (errno == EINTR)
838 continue;
839 exit(1);
840 }
841 after_select(&readset, &writeset);
8efc0c15 842 }
5260325f 843 /* NOTREACHED */
8efc0c15 844}
This page took 0.396082 seconds and 5 git commands to generate.