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