]> andersk Git - openssh.git/blame - ssh-agent.c
- markus@cvs.openbsd.org 2001/06/25 08:25:41
[openssh.git] / ssh-agent.c
CommitLineData
a96070d4 1/* $OpenBSD: ssh-agent.c,v 1.56 2001/06/25 08:25:40 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 *
a96070d4 15 * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved.
bcbf86ec 16 *
17 * Redistribution and use in source and binary forms, with or without
18 * modification, are permitted provided that the following conditions
19 * are met:
20 * 1. Redistributions of source code must retain the above copyright
21 * notice, this list of conditions and the following disclaimer.
22 * 2. Redistributions in binary form must reproduce the above copyright
23 * notice, this list of conditions and the following disclaimer in the
24 * documentation and/or other materials provided with the distribution.
25 *
26 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
27 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
28 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
29 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
30 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
31 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
32 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
33 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
35 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
5260325f 36 */
8efc0c15 37
38#include "includes.h"
a96070d4 39RCSID("$OpenBSD: ssh-agent.c,v 1.56 2001/06/25 08:25:40 markus Exp $");
42f11eb2 40
41#include <openssl/evp.h>
42#include <openssl/md5.h>
8efc0c15 43
44#include "ssh.h"
45#include "rsa.h"
8efc0c15 46#include "buffer.h"
47#include "bufaux.h"
48#include "xmalloc.h"
49#include "packet.h"
50#include "getput.h"
51#include "mpaux.h"
4c8722d9 52#include "key.h"
53#include "authfd.h"
42f11eb2 54#include "cipher.h"
2e73a022 55#include "kex.h"
188adeb2 56#include "compat.h"
42f11eb2 57#include "log.h"
8efc0c15 58
5260325f 59typedef struct {
60 int fd;
61 enum {
62 AUTH_UNUSED, AUTH_SOCKET, AUTH_CONNECTION
63 } type;
64 Buffer input;
65 Buffer output;
8efc0c15 66} SocketEntry;
67
1e3b8b07 68u_int sockets_alloc = 0;
8efc0c15 69SocketEntry *sockets = NULL;
70
5260325f 71typedef struct {
2e73a022 72 Key *key;
5260325f 73 char *comment;
8efc0c15 74} Identity;
75
2e73a022 76typedef struct {
77 int nentries;
78 Identity *identities;
79} Idtab;
80
81/* private key table, one per protocol version */
82Idtab idtable[3];
8efc0c15 83
84int max_fd = 0;
85
86/* pid of shell == parent of agent */
9da5c3c9 87pid_t parent_pid = -1;
8efc0c15 88
89/* pathname and directory for AUTH_SOCKET */
90char socket_name[1024];
91char socket_dir[1024];
92
5260325f 93#ifdef HAVE___PROGNAME
94extern char *__progname;
260d427b 95#else
96char *__progname;
97#endif
5260325f 98
396c147e 99static void
2e73a022 100idtab_init(void)
101{
102 int i;
103 for (i = 0; i <=2; i++){
104 idtable[i].identities = NULL;
105 idtable[i].nentries = 0;
106 }
107}
108
109/* return private key table for requested protocol version */
396c147e 110static Idtab *
2e73a022 111idtab_lookup(int version)
112{
113 if (version < 1 || version > 2)
114 fatal("internal error, bad protocol version %d", version);
115 return &idtable[version];
116}
117
118/* return matching private key for given public key */
396c147e 119static Key *
2e73a022 120lookup_private_key(Key *key, int *idx, int version)
121{
122 int i;
123 Idtab *tab = idtab_lookup(version);
124 for (i = 0; i < tab->nentries; i++) {
125 if (key_equal(key, tab->identities[i].key)) {
126 if (idx != NULL)
127 *idx = i;
128 return tab->identities[i].key;
129 }
130 }
131 return NULL;
132}
133
134/* send list of supported public keys to 'client' */
396c147e 135static void
2e73a022 136process_request_identities(SocketEntry *e, int version)
8efc0c15 137{
2e73a022 138 Idtab *tab = idtab_lookup(version);
5260325f 139 Buffer msg;
140 int i;
141
142 buffer_init(&msg);
2e73a022 143 buffer_put_char(&msg, (version == 1) ?
144 SSH_AGENT_RSA_IDENTITIES_ANSWER : SSH2_AGENT_IDENTITIES_ANSWER);
145 buffer_put_int(&msg, tab->nentries);
146 for (i = 0; i < tab->nentries; i++) {
147 Identity *id = &tab->identities[i];
fa08c86b 148 if (id->key->type == KEY_RSA1) {
2e73a022 149 buffer_put_int(&msg, BN_num_bits(id->key->rsa->n));
150 buffer_put_bignum(&msg, id->key->rsa->e);
151 buffer_put_bignum(&msg, id->key->rsa->n);
152 } else {
1e3b8b07 153 u_char *blob;
154 u_int blen;
fa08c86b 155 key_to_blob(id->key, &blob, &blen);
2e73a022 156 buffer_put_string(&msg, blob, blen);
157 xfree(blob);
158 }
159 buffer_put_cstring(&msg, id->comment);
5260325f 160 }
161 buffer_put_int(&e->output, buffer_len(&msg));
162 buffer_append(&e->output, buffer_ptr(&msg), buffer_len(&msg));
163 buffer_free(&msg);
8efc0c15 164}
165
2e73a022 166/* ssh1 only */
396c147e 167static void
2e73a022 168process_authentication_challenge1(SocketEntry *e)
8efc0c15 169{
2e73a022 170 Key *key, *private;
171 BIGNUM *challenge;
172 int i, len;
5260325f 173 Buffer msg;
174 MD5_CTX md;
1e3b8b07 175 u_char buf[32], mdbuf[16], session_id[16];
176 u_int response_type;
5260325f 177
178 buffer_init(&msg);
fa08c86b 179 key = key_new(KEY_RSA1);
5260325f 180 challenge = BN_new();
5260325f 181
2e73a022 182 buffer_get_int(&e->input); /* ignored */
183 buffer_get_bignum(&e->input, key->rsa->e);
184 buffer_get_bignum(&e->input, key->rsa->n);
185 buffer_get_bignum(&e->input, challenge);
5260325f 186
2e73a022 187 /* Only protocol 1.1 is supported */
188 if (buffer_len(&e->input) == 0)
189 goto failure;
190 buffer_get(&e->input, (char *) session_id, 16);
191 response_type = buffer_get_int(&e->input);
192 if (response_type != 1)
193 goto failure;
194
195 private = lookup_private_key(key, NULL, 1);
196 if (private != NULL) {
197 /* Decrypt the challenge using the private key. */
46aa2d1f 198 if (rsa_private_decrypt(challenge, challenge, private->rsa) <= 0)
199 goto failure;
2e73a022 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 */
396c147e 233static void
2e73a022 234process_sign_request2(SocketEntry *e)
235{
236 extern int datafellows;
237 Key *key, *private;
1e3b8b07 238 u_char *blob, *data, *signature = NULL;
239 u_int blen, dlen, slen = 0;
188adeb2 240 int flags;
2e73a022 241 Buffer msg;
242 int ok = -1;
243
244 datafellows = 0;
227e8e86 245
2e73a022 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 */
396c147e 278static void
2e73a022 279process_remove_identity(SocketEntry *e, int version)
8efc0c15 280{
2e73a022 281 Key *key = NULL, *private;
1e3b8b07 282 u_char *blob;
283 u_int blen;
284 u_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",
42f11eb2 296 key_size(key), bits);
2e73a022 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
396c147e 339static void
2e73a022 340process_remove_all_identities(SocketEntry *e, int version)
8efc0c15 341{
1e3b8b07 342 u_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
396c147e 360static void
fa08c86b 361process_add_identity(SocketEntry *e, int version)
362{
363 Key *k = NULL;
364 char *type_name;
2e73a022 365 char *comment;
fa08c86b 366 int type, success = 0;
2e73a022 367 Idtab *tab = idtab_lookup(version);
5260325f 368
2e73a022 369 switch (version) {
370 case 1:
fa08c86b 371 k = key_new_private(KEY_RSA1);
42f11eb2 372 buffer_get_int(&e->input); /* ignored */
fa08c86b 373 buffer_get_bignum(&e->input, k->rsa->n);
374 buffer_get_bignum(&e->input, k->rsa->e);
375 buffer_get_bignum(&e->input, k->rsa->d);
376 buffer_get_bignum(&e->input, k->rsa->iqmp);
2e73a022 377
378 /* SSH and SSL have p and q swapped */
fa08c86b 379 buffer_get_bignum(&e->input, k->rsa->q); /* p */
380 buffer_get_bignum(&e->input, k->rsa->p); /* q */
2e73a022 381
382 /* Generate additional parameters */
fa08c86b 383 generate_additional_parameters(k->rsa);
2e73a022 384 break;
385 case 2:
fa08c86b 386 type_name = buffer_get_string(&e->input, NULL);
42f11eb2 387 type = key_type_from_name(type_name);
fa08c86b 388 xfree(type_name);
389 switch(type) {
390 case KEY_DSA:
391 k = key_new_private(type);
392 buffer_get_bignum2(&e->input, k->dsa->p);
393 buffer_get_bignum2(&e->input, k->dsa->q);
394 buffer_get_bignum2(&e->input, k->dsa->g);
395 buffer_get_bignum2(&e->input, k->dsa->pub_key);
396 buffer_get_bignum2(&e->input, k->dsa->priv_key);
397 break;
398 case KEY_RSA:
399 k = key_new_private(type);
400 buffer_get_bignum2(&e->input, k->rsa->n);
401 buffer_get_bignum2(&e->input, k->rsa->e);
402 buffer_get_bignum2(&e->input, k->rsa->d);
403 buffer_get_bignum2(&e->input, k->rsa->iqmp);
404 buffer_get_bignum2(&e->input, k->rsa->p);
405 buffer_get_bignum2(&e->input, k->rsa->q);
406
407 /* Generate additional parameters */
408 generate_additional_parameters(k->rsa);
409 break;
410 default:
2e73a022 411 buffer_clear(&e->input);
2e73a022 412 goto send;
5260325f 413 }
2e73a022 414 break;
415 }
2e73a022 416 comment = buffer_get_string(&e->input, NULL);
417 if (k == NULL) {
418 xfree(comment);
419 goto send;
420 }
421 success = 1;
422 if (lookup_private_key(k, NULL, version) == NULL) {
423 if (tab->nentries == 0)
424 tab->identities = xmalloc(sizeof(Identity));
425 else
426 tab->identities = xrealloc(tab->identities,
427 (tab->nentries + 1) * sizeof(Identity));
428 tab->identities[tab->nentries].key = k;
429 tab->identities[tab->nentries].comment = comment;
430 /* Increment the number of identities. */
431 tab->nentries++;
432 } else {
433 key_free(k);
434 xfree(comment);
435 }
436send:
5260325f 437 buffer_put_int(&e->output, 1);
2e73a022 438 buffer_put_char(&e->output,
439 success ? SSH_AGENT_SUCCESS : SSH_AGENT_FAILURE);
8efc0c15 440}
441
2e73a022 442/* dispatch incoming messages */
443
396c147e 444static void
8efc0c15 445process_message(SocketEntry *e)
446{
1e3b8b07 447 u_int msg_len;
448 u_int type;
449 u_char *cp;
5260325f 450 if (buffer_len(&e->input) < 5)
451 return; /* Incomplete message. */
1e3b8b07 452 cp = (u_char *) buffer_ptr(&e->input);
5260325f 453 msg_len = GET_32BIT(cp);
454 if (msg_len > 256 * 1024) {
455 shutdown(e->fd, SHUT_RDWR);
456 close(e->fd);
457 e->type = AUTH_UNUSED;
458 return;
459 }
460 if (buffer_len(&e->input) < msg_len + 4)
461 return;
462 buffer_consume(&e->input, 4);
463 type = buffer_get_char(&e->input);
464
465 switch (type) {
2e73a022 466 /* ssh1 */
5260325f 467 case SSH_AGENTC_RSA_CHALLENGE:
2e73a022 468 process_authentication_challenge1(e);
469 break;
470 case SSH_AGENTC_REQUEST_RSA_IDENTITIES:
471 process_request_identities(e, 1);
5260325f 472 break;
473 case SSH_AGENTC_ADD_RSA_IDENTITY:
2e73a022 474 process_add_identity(e, 1);
5260325f 475 break;
476 case SSH_AGENTC_REMOVE_RSA_IDENTITY:
2e73a022 477 process_remove_identity(e, 1);
5260325f 478 break;
479 case SSH_AGENTC_REMOVE_ALL_RSA_IDENTITIES:
2e73a022 480 process_remove_all_identities(e, 1);
481 break;
482 /* ssh2 */
483 case SSH2_AGENTC_SIGN_REQUEST:
484 process_sign_request2(e);
485 break;
486 case SSH2_AGENTC_REQUEST_IDENTITIES:
487 process_request_identities(e, 2);
488 break;
489 case SSH2_AGENTC_ADD_IDENTITY:
490 process_add_identity(e, 2);
491 break;
492 case SSH2_AGENTC_REMOVE_IDENTITY:
493 process_remove_identity(e, 2);
494 break;
495 case SSH2_AGENTC_REMOVE_ALL_IDENTITIES:
496 process_remove_all_identities(e, 2);
5260325f 497 break;
498 default:
499 /* Unknown message. Respond with failure. */
500 error("Unknown message %d", type);
501 buffer_clear(&e->input);
502 buffer_put_int(&e->output, 1);
503 buffer_put_char(&e->output, SSH_AGENT_FAILURE);
504 break;
505 }
8efc0c15 506}
507
396c147e 508static void
8efc0c15 509new_socket(int type, int fd)
510{
1e3b8b07 511 u_int i, old_alloc;
5260325f 512 if (fcntl(fd, F_SETFL, O_NONBLOCK) < 0)
513 error("fcntl O_NONBLOCK: %s", strerror(errno));
514
515 if (fd > max_fd)
516 max_fd = fd;
517
518 for (i = 0; i < sockets_alloc; i++)
519 if (sockets[i].type == AUTH_UNUSED) {
520 sockets[i].fd = fd;
521 sockets[i].type = type;
522 buffer_init(&sockets[i].input);
523 buffer_init(&sockets[i].output);
524 return;
525 }
526 old_alloc = sockets_alloc;
527 sockets_alloc += 10;
528 if (sockets)
529 sockets = xrealloc(sockets, sockets_alloc * sizeof(sockets[0]));
530 else
531 sockets = xmalloc(sockets_alloc * sizeof(sockets[0]));
532 for (i = old_alloc; i < sockets_alloc; i++)
533 sockets[i].type = AUTH_UNUSED;
534 sockets[old_alloc].type = type;
535 sockets[old_alloc].fd = fd;
536 buffer_init(&sockets[old_alloc].input);
537 buffer_init(&sockets[old_alloc].output);
8efc0c15 538}
539
396c147e 540static int
42f11eb2 541prepare_select(fd_set **fdrp, fd_set **fdwp, int *fdl)
8efc0c15 542{
42f11eb2 543 u_int i, sz;
544 int n = 0;
545
546 for (i = 0; i < sockets_alloc; i++) {
5260325f 547 switch (sockets[i].type) {
548 case AUTH_SOCKET:
549 case AUTH_CONNECTION:
42f11eb2 550 n = MAX(n, sockets[i].fd);
5260325f 551 break;
552 case AUTH_UNUSED:
553 break;
554 default:
555 fatal("Unknown socket type %d", sockets[i].type);
556 break;
557 }
42f11eb2 558 }
559
560 sz = howmany(n+1, NFDBITS) * sizeof(fd_mask);
561 if (*fdrp == NULL || n > *fdl) {
562 if (*fdrp)
894c5fa6 563 xfree(*fdrp);
42f11eb2 564 if (*fdwp)
894c5fa6 565 xfree(*fdwp);
42f11eb2 566 *fdrp = xmalloc(sz);
567 *fdwp = xmalloc(sz);
568 *fdl = n;
569 }
570 memset(*fdrp, 0, sz);
571 memset(*fdwp, 0, sz);
572
573 for (i = 0; i < sockets_alloc; i++) {
574 switch (sockets[i].type) {
575 case AUTH_SOCKET:
576 case AUTH_CONNECTION:
577 FD_SET(sockets[i].fd, *fdrp);
578 if (buffer_len(&sockets[i].output) > 0)
579 FD_SET(sockets[i].fd, *fdwp);
580 break;
581 default:
582 break;
583 }
584 }
585 return (1);
8efc0c15 586}
587
396c147e 588static void
5260325f 589after_select(fd_set *readset, fd_set *writeset)
8efc0c15 590{
1e3b8b07 591 u_int i;
5260325f 592 int len, sock;
610cd5c6 593 socklen_t slen;
5260325f 594 char buf[1024];
595 struct sockaddr_un sunaddr;
596
597 for (i = 0; i < sockets_alloc; i++)
598 switch (sockets[i].type) {
599 case AUTH_UNUSED:
600 break;
601 case AUTH_SOCKET:
602 if (FD_ISSET(sockets[i].fd, readset)) {
610cd5c6 603 slen = sizeof(sunaddr);
42f11eb2 604 sock = accept(sockets[i].fd,
605 (struct sockaddr *) &sunaddr, &slen);
5260325f 606 if (sock < 0) {
607 perror("accept from AUTH_SOCKET");
608 break;
609 }
610 new_socket(AUTH_CONNECTION, sock);
611 }
612 break;
613 case AUTH_CONNECTION:
614 if (buffer_len(&sockets[i].output) > 0 &&
615 FD_ISSET(sockets[i].fd, writeset)) {
bbc62e59 616 do {
617 len = write(sockets[i].fd,
618 buffer_ptr(&sockets[i].output),
619 buffer_len(&sockets[i].output));
620 if (len == -1 && (errno == EAGAIN ||
621 errno == EINTR))
622 continue;
623 break;
624 } while (1);
5260325f 625 if (len <= 0) {
626 shutdown(sockets[i].fd, SHUT_RDWR);
627 close(sockets[i].fd);
628 sockets[i].type = AUTH_UNUSED;
0ac7199f 629 buffer_free(&sockets[i].input);
630 buffer_free(&sockets[i].output);
5260325f 631 break;
632 }
633 buffer_consume(&sockets[i].output, len);
634 }
635 if (FD_ISSET(sockets[i].fd, readset)) {
bbc62e59 636 do {
637 len = read(sockets[i].fd, buf, sizeof(buf));
638 if (len == -1 && (errno == EAGAIN ||
639 errno == EINTR))
640 continue;
641 break;
642 } while (1);
5260325f 643 if (len <= 0) {
644 shutdown(sockets[i].fd, SHUT_RDWR);
645 close(sockets[i].fd);
646 sockets[i].type = AUTH_UNUSED;
0ac7199f 647 buffer_free(&sockets[i].input);
648 buffer_free(&sockets[i].output);
5260325f 649 break;
650 }
651 buffer_append(&sockets[i].input, buf, len);
652 process_message(&sockets[i]);
653 }
654 break;
655 default:
656 fatal("Unknown type %d", sockets[i].type);
657 }
8efc0c15 658}
659
396c147e 660static void
8efc0c15 661check_parent_exists(int sig)
662{
42f11eb2 663 int save_errno = errno;
664
9da5c3c9 665 if (parent_pid != -1 && kill(parent_pid, 0) < 0) {
5260325f 666 /* printf("Parent has died - Authentication agent exiting.\n"); */
667 exit(1);
668 }
669 signal(SIGALRM, check_parent_exists);
670 alarm(10);
42f11eb2 671 errno = save_errno;
8efc0c15 672}
673
396c147e 674static void
dae3fa13 675cleanup_socket(void)
676{
2f4b2e38 677 if (socket_name[0])
678 unlink(socket_name);
679 if (socket_dir[0])
680 rmdir(socket_dir);
8efc0c15 681}
682
396c147e 683static void
dae3fa13 684cleanup_exit(int i)
685{
5260325f 686 cleanup_socket();
687 exit(i);
dae3fa13 688}
689
396c147e 690static void
2f4b2e38 691cleanup_handler(int sig)
692{
693 cleanup_socket();
694 _exit(2);
695}
696
396c147e 697static void
cc8aca8a 698usage(void)
dae3fa13 699{
5260325f 700 fprintf(stderr, "ssh-agent version %s\n", SSH_VERSION);
701 fprintf(stderr, "Usage: %s [-c | -s] [-k] [command {args...]]\n",
0e3c1f95 702 __progname);
5260325f 703 exit(1);
dae3fa13 704}
705
8efc0c15 706int
707main(int ac, char **av)
708{
5260325f 709 int sock, c_flag = 0, k_flag = 0, s_flag = 0, ch;
710 struct sockaddr_un sunaddr;
b03bd394 711#ifdef HAVE_SETRLIMIT
0b6fbf03 712 struct rlimit rlim;
c7ccfd39 713#endif
714#ifdef HAVE_CYGWIN
715 int prev_mask;
b03bd394 716#endif
5260325f 717 pid_t pid;
718 char *shell, *format, *pidstr, pidstrbuf[1 + 3 * sizeof pid];
c04f75f1 719 extern int optind;
42f11eb2 720 fd_set *readsetp = NULL, *writesetp = NULL;
fcb975eb 721
457fc0c6 722 SSLeay_add_all_algorithms();
723
260d427b 724 __progname = get_progname(av[0]);
264dce47 725 init_rng();
e339aa53 726 seed_rng();
2b87da3b 727
4e577b89 728#ifdef __GNU_LIBRARY__
729 while ((ch = getopt(ac, av, "+cks")) != -1) {
730#else /* __GNU_LIBRARY__ */
5260325f 731 while ((ch = getopt(ac, av, "cks")) != -1) {
4e577b89 732#endif /* __GNU_LIBRARY__ */
5260325f 733 switch (ch) {
734 case 'c':
735 if (s_flag)
736 usage();
737 c_flag++;
738 break;
739 case 'k':
740 k_flag++;
741 break;
742 case 's':
743 if (c_flag)
744 usage();
745 s_flag++;
746 break;
747 default:
748 usage();
749 }
dae3fa13 750 }
5260325f 751 ac -= optind;
752 av += optind;
753
754 if (ac > 0 && (c_flag || k_flag || s_flag))
755 usage();
756
757 if (ac == 0 && !c_flag && !k_flag && !s_flag) {
758 shell = getenv("SHELL");
759 if (shell != NULL && strncmp(shell + strlen(shell) - 3, "csh", 3) == 0)
760 c_flag = 1;
dae3fa13 761 }
5260325f 762 if (k_flag) {
763 pidstr = getenv(SSH_AGENTPID_ENV_NAME);
764 if (pidstr == NULL) {
765 fprintf(stderr, "%s not set, cannot kill agent\n",
42f11eb2 766 SSH_AGENTPID_ENV_NAME);
5260325f 767 exit(1);
768 }
769 pid = atoi(pidstr);
42f11eb2 770 if (pid < 1) {
5260325f 771 fprintf(stderr, "%s=\"%s\", which is not a good PID\n",
42f11eb2 772 SSH_AGENTPID_ENV_NAME, pidstr);
5260325f 773 exit(1);
774 }
775 if (kill(pid, SIGTERM) == -1) {
776 perror("kill");
777 exit(1);
778 }
779 format = c_flag ? "unsetenv %s;\n" : "unset %s;\n";
780 printf(format, SSH_AUTHSOCKET_ENV_NAME);
781 printf(format, SSH_AGENTPID_ENV_NAME);
782 printf("echo Agent pid %d killed;\n", pid);
783 exit(0);
dae3fa13 784 }
5260325f 785 parent_pid = getpid();
786
787 /* Create private directory for agent socket */
788 strlcpy(socket_dir, "/tmp/ssh-XXXXXXXX", sizeof socket_dir);
789 if (mkdtemp(socket_dir) == NULL) {
790 perror("mkdtemp: private socket dir");
791 exit(1);
792 }
793 snprintf(socket_name, sizeof socket_name, "%s/agent.%d", socket_dir,
42f11eb2 794 parent_pid);
5260325f 795
aa3378df 796 /*
797 * Create socket early so it will exist before command gets run from
798 * the parent.
799 */
5260325f 800 sock = socket(AF_UNIX, SOCK_STREAM, 0);
801 if (sock < 0) {
802 perror("socket");
803 cleanup_exit(1);
804 }
805 memset(&sunaddr, 0, sizeof(sunaddr));
806 sunaddr.sun_family = AF_UNIX;
807 strlcpy(sunaddr.sun_path, socket_name, sizeof(sunaddr.sun_path));
c7ccfd39 808#ifdef HAVE_CYGWIN
809 prev_mask = umask(0177);
810#endif
5260325f 811 if (bind(sock, (struct sockaddr *) & sunaddr, sizeof(sunaddr)) < 0) {
812 perror("bind");
c7ccfd39 813#ifdef HAVE_CYGWIN
814 umask(prev_mask);
815#endif
5260325f 816 cleanup_exit(1);
817 }
c7ccfd39 818#ifdef HAVE_CYGWIN
819 umask(prev_mask);
820#endif
5260325f 821 if (listen(sock, 5) < 0) {
822 perror("listen");
823 cleanup_exit(1);
dae3fa13 824 }
42f11eb2 825
aa3378df 826 /*
827 * Fork, and have the parent execute the command, if any, or present
828 * the socket data. The child continues as the authentication agent.
829 */
5260325f 830 pid = fork();
831 if (pid == -1) {
832 perror("fork");
833 exit(1);
dae3fa13 834 }
5260325f 835 if (pid != 0) { /* Parent - execute the given command. */
836 close(sock);
837 snprintf(pidstrbuf, sizeof pidstrbuf, "%d", pid);
838 if (ac == 0) {
839 format = c_flag ? "setenv %s %s;\n" : "%s=%s; export %s;\n";
840 printf(format, SSH_AUTHSOCKET_ENV_NAME, socket_name,
42f11eb2 841 SSH_AUTHSOCKET_ENV_NAME);
5260325f 842 printf(format, SSH_AGENTPID_ENV_NAME, pidstrbuf,
42f11eb2 843 SSH_AGENTPID_ENV_NAME);
5260325f 844 printf("echo Agent pid %d;\n", pid);
845 exit(0);
846 }
bcbf86ec 847 if (setenv(SSH_AUTHSOCKET_ENV_NAME, socket_name, 1) == -1 ||
848 setenv(SSH_AGENTPID_ENV_NAME, pidstrbuf, 1) == -1) {
849 perror("setenv");
850 exit(1);
851 }
5260325f 852 execvp(av[0], av);
853 perror(av[0]);
854 exit(1);
855 }
856 close(0);
857 close(1);
858 close(2);
dae3fa13 859
b03bd394 860#ifdef HAVE_SETRLIMIT
0b6fbf03 861 /* deny core dumps, since memory contains unencrypted private keys */
862 rlim.rlim_cur = rlim.rlim_max = 0;
863 if (setrlimit(RLIMIT_CORE, &rlim) < 0) {
864 perror("setrlimit rlimit_core failed");
865 cleanup_exit(1);
866 }
b03bd394 867#endif
5260325f 868 if (setsid() == -1) {
869 perror("setsid");
870 cleanup_exit(1);
871 }
872 if (atexit(cleanup_socket) < 0) {
873 perror("atexit");
874 cleanup_exit(1);
875 }
876 new_socket(AUTH_SOCKET, sock);
877 if (ac > 0) {
878 signal(SIGALRM, check_parent_exists);
879 alarm(10);
880 }
2e73a022 881 idtab_init();
5260325f 882 signal(SIGINT, SIG_IGN);
883 signal(SIGPIPE, SIG_IGN);
2f4b2e38 884 signal(SIGHUP, cleanup_handler);
885 signal(SIGTERM, cleanup_handler);
5260325f 886 while (1) {
42f11eb2 887 prepare_select(&readsetp, &writesetp, &max_fd);
888 if (select(max_fd + 1, readsetp, writesetp, NULL, NULL) < 0) {
5260325f 889 if (errno == EINTR)
890 continue;
891 exit(1);
892 }
42f11eb2 893 after_select(readsetp, writesetp);
8efc0c15 894 }
5260325f 895 /* NOTREACHED */
8efc0c15 896}
This page took 5.23546 seconds and 5 git commands to generate.