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