blob: 991774aae29e030a6d85e27436859bef76ff4ffe [file] [log] [blame]
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001/*
Damien Miller95def091999-11-25 00:26:21 +11002 * Author: Tatu Ylonen <ylo@cs.hut.fi>
3 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4 * All rights reserved
Damien Miller95def091999-11-25 00:26:21 +11005 * The authentication agent program.
Damien Millerad833b32000-08-23 10:46:23 +10006 *
Damien Millere4340be2000-09-16 13:29:08 +11007 * As far as I am concerned, the code I have written for this software
8 * can be used freely for any purpose. Any derived versions of this
9 * software must be clearly marked as such, and if the derived work is
10 * incompatible with the protocol description in the RFC file, it must be
11 * called by a name other than "ssh" or "Secure Shell".
12 *
Ben Lindstrom44697232001-07-04 03:32:30 +000013 * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved.
Damien Millere4340be2000-09-16 13:29:08 +110014 *
15 * Redistribution and use in source and binary forms, with or without
16 * modification, are permitted provided that the following conditions
17 * are met:
18 * 1. Redistributions of source code must retain the above copyright
19 * notice, this list of conditions and the following disclaimer.
20 * 2. Redistributions in binary form must reproduce the above copyright
21 * notice, this list of conditions and the following disclaimer in the
22 * documentation and/or other materials provided with the distribution.
23 *
24 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
25 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
26 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
27 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
28 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
29 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
30 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
31 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
32 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
33 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Damien Miller95def091999-11-25 00:26:21 +110034 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100035
36#include "includes.h"
Damien Millerec52d7c2002-01-22 23:52:17 +110037#include "openbsd-compat/fake-queue.h"
Ben Lindstromc90f8a92002-06-21 00:06:54 +000038RCSID("$OpenBSD: ssh-agent.c,v 1.93 2002/06/15 00:07:38 markus Exp $");
Damien Millerec52d7c2002-01-22 23:52:17 +110039
Ben Lindstrom226cfa02001-01-22 05:34:40 +000040#include <openssl/evp.h>
41#include <openssl/md5.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100042
43#include "ssh.h"
44#include "rsa.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100045#include "buffer.h"
46#include "bufaux.h"
47#include "xmalloc.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100048#include "getput.h"
Damien Miller994cf142000-07-21 10:19:44 +100049#include "key.h"
50#include "authfd.h"
Damien Miller62cee002000-09-23 17:15:56 +110051#include "compat.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000052#include "log.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100053
Ben Lindstrom3f471632001-07-04 03:53:15 +000054#ifdef SMARTCARD
Ben Lindstrom3f471632001-07-04 03:53:15 +000055#include "scard.h"
Ben Lindstrombcc18082001-08-06 21:59:25 +000056#endif
Ben Lindstrom3f471632001-07-04 03:53:15 +000057
Ben Lindstrom65366a82001-12-06 16:32:47 +000058typedef enum {
59 AUTH_UNUSED,
60 AUTH_SOCKET,
61 AUTH_CONNECTION
62} sock_type;
63
Damien Miller95def091999-11-25 00:26:21 +110064typedef struct {
65 int fd;
Ben Lindstrom65366a82001-12-06 16:32:47 +000066 sock_type type;
Damien Miller95def091999-11-25 00:26:21 +110067 Buffer input;
68 Buffer output;
Ben Lindstrom21d1ed82002-06-06 21:48:57 +000069 Buffer request;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100070} SocketEntry;
71
Ben Lindstrom46c16222000-12-22 01:43:59 +000072u_int sockets_alloc = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100073SocketEntry *sockets = NULL;
74
Damien Miller1a534ae2002-01-22 23:26:13 +110075typedef struct identity {
76 TAILQ_ENTRY(identity) next;
Damien Millerad833b32000-08-23 10:46:23 +100077 Key *key;
Damien Miller95def091999-11-25 00:26:21 +110078 char *comment;
Ben Lindstrom61d328a2002-06-06 21:54:57 +000079 u_int death;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100080} Identity;
81
Damien Millerad833b32000-08-23 10:46:23 +100082typedef struct {
83 int nentries;
Damien Miller1a534ae2002-01-22 23:26:13 +110084 TAILQ_HEAD(idqueue, identity) idlist;
Damien Millerad833b32000-08-23 10:46:23 +100085} Idtab;
86
87/* private key table, one per protocol version */
88Idtab idtable[3];
Damien Millerd4a8b7e1999-10-27 13:42:43 +100089
90int max_fd = 0;
91
92/* pid of shell == parent of agent */
Damien Miller166fca82000-04-20 07:42:21 +100093pid_t parent_pid = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100094
95/* pathname and directory for AUTH_SOCKET */
96char socket_name[1024];
97char socket_dir[1024];
98
Ben Lindstrom2f717042002-06-06 21:52:03 +000099/* locking */
100int locked = 0;
101char *lock_passwd = NULL;
102
Damien Miller95def091999-11-25 00:26:21 +1100103#ifdef HAVE___PROGNAME
104extern char *__progname;
Ben Lindstrom49a79c02000-11-17 03:47:20 +0000105#else
106char *__progname;
107#endif
Damien Miller95def091999-11-25 00:26:21 +1100108
Ben Lindstrombba81212001-06-25 05:01:22 +0000109static void
Damien Millerad833b32000-08-23 10:46:23 +1000110idtab_init(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000111{
Damien Millerad833b32000-08-23 10:46:23 +1000112 int i;
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +0000113 for (i = 0; i <=2; i++) {
Damien Miller1a534ae2002-01-22 23:26:13 +1100114 TAILQ_INIT(&idtable[i].idlist);
Damien Millerad833b32000-08-23 10:46:23 +1000115 idtable[i].nentries = 0;
116 }
117}
118
119/* return private key table for requested protocol version */
Ben Lindstrombba81212001-06-25 05:01:22 +0000120static Idtab *
Damien Millerad833b32000-08-23 10:46:23 +1000121idtab_lookup(int version)
122{
123 if (version < 1 || version > 2)
124 fatal("internal error, bad protocol version %d", version);
125 return &idtable[version];
126}
127
Ben Lindstrom61d328a2002-06-06 21:54:57 +0000128static void
129free_identity(Identity *id)
130{
131 key_free(id->key);
132 xfree(id->comment);
133 xfree(id);
134}
135
Damien Millerad833b32000-08-23 10:46:23 +1000136/* return matching private key for given public key */
Damien Miller1a534ae2002-01-22 23:26:13 +1100137static Identity *
138lookup_identity(Key *key, int version)
Damien Millerad833b32000-08-23 10:46:23 +1000139{
Damien Miller1a534ae2002-01-22 23:26:13 +1100140 Identity *id;
141
Damien Millerad833b32000-08-23 10:46:23 +1000142 Idtab *tab = idtab_lookup(version);
Damien Miller1a534ae2002-01-22 23:26:13 +1100143 TAILQ_FOREACH(id, &tab->idlist, next) {
144 if (key_equal(key, id->key))
145 return (id);
Damien Millerad833b32000-08-23 10:46:23 +1000146 }
Damien Miller1a534ae2002-01-22 23:26:13 +1100147 return (NULL);
148}
149
Damien Millerad833b32000-08-23 10:46:23 +1000150/* send list of supported public keys to 'client' */
Ben Lindstrombba81212001-06-25 05:01:22 +0000151static void
Damien Millerad833b32000-08-23 10:46:23 +1000152process_request_identities(SocketEntry *e, int version)
153{
154 Idtab *tab = idtab_lookup(version);
Damien Miller95def091999-11-25 00:26:21 +1100155 Buffer msg;
Damien Miller1a534ae2002-01-22 23:26:13 +1100156 Identity *id;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000157
Damien Miller95def091999-11-25 00:26:21 +1100158 buffer_init(&msg);
Damien Millerad833b32000-08-23 10:46:23 +1000159 buffer_put_char(&msg, (version == 1) ?
160 SSH_AGENT_RSA_IDENTITIES_ANSWER : SSH2_AGENT_IDENTITIES_ANSWER);
161 buffer_put_int(&msg, tab->nentries);
Damien Miller1a534ae2002-01-22 23:26:13 +1100162 TAILQ_FOREACH(id, &tab->idlist, next) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100163 if (id->key->type == KEY_RSA1) {
Damien Millerad833b32000-08-23 10:46:23 +1000164 buffer_put_int(&msg, BN_num_bits(id->key->rsa->n));
165 buffer_put_bignum(&msg, id->key->rsa->e);
166 buffer_put_bignum(&msg, id->key->rsa->n);
167 } else {
Ben Lindstrom46c16222000-12-22 01:43:59 +0000168 u_char *blob;
169 u_int blen;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100170 key_to_blob(id->key, &blob, &blen);
Damien Millerad833b32000-08-23 10:46:23 +1000171 buffer_put_string(&msg, blob, blen);
172 xfree(blob);
173 }
174 buffer_put_cstring(&msg, id->comment);
Damien Miller95def091999-11-25 00:26:21 +1100175 }
176 buffer_put_int(&e->output, buffer_len(&msg));
177 buffer_append(&e->output, buffer_ptr(&msg), buffer_len(&msg));
178 buffer_free(&msg);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000179}
180
Damien Millerad833b32000-08-23 10:46:23 +1000181/* ssh1 only */
Ben Lindstrombba81212001-06-25 05:01:22 +0000182static void
Damien Millerad833b32000-08-23 10:46:23 +1000183process_authentication_challenge1(SocketEntry *e)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000184{
Damien Miller1a534ae2002-01-22 23:26:13 +1100185 Identity *id;
186 Key *key;
Damien Millerad833b32000-08-23 10:46:23 +1000187 BIGNUM *challenge;
188 int i, len;
Damien Miller95def091999-11-25 00:26:21 +1100189 Buffer msg;
190 MD5_CTX md;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000191 u_char buf[32], mdbuf[16], session_id[16];
192 u_int response_type;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000193
Damien Miller95def091999-11-25 00:26:21 +1100194 buffer_init(&msg);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100195 key = key_new(KEY_RSA1);
Damien Millerda755162002-01-22 23:09:22 +1100196 if ((challenge = BN_new()) == NULL)
197 fatal("process_authentication_challenge1: BN_new failed");
Damien Millerad833b32000-08-23 10:46:23 +1000198
Ben Lindstrom21d1ed82002-06-06 21:48:57 +0000199 buffer_get_int(&e->request); /* ignored */
200 buffer_get_bignum(&e->request, key->rsa->e);
201 buffer_get_bignum(&e->request, key->rsa->n);
202 buffer_get_bignum(&e->request, challenge);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000203
Damien Millerad833b32000-08-23 10:46:23 +1000204 /* Only protocol 1.1 is supported */
Ben Lindstrom21d1ed82002-06-06 21:48:57 +0000205 if (buffer_len(&e->request) == 0)
Damien Millerad833b32000-08-23 10:46:23 +1000206 goto failure;
Ben Lindstrom21d1ed82002-06-06 21:48:57 +0000207 buffer_get(&e->request, session_id, 16);
208 response_type = buffer_get_int(&e->request);
Damien Millerad833b32000-08-23 10:46:23 +1000209 if (response_type != 1)
210 goto failure;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000211
Damien Miller1a534ae2002-01-22 23:26:13 +1100212 id = lookup_identity(key, 1);
213 if (id != NULL) {
214 Key *private = id->key;
Damien Millerad833b32000-08-23 10:46:23 +1000215 /* Decrypt the challenge using the private key. */
Damien Miller7650bc62001-01-30 09:27:26 +1100216 if (rsa_private_decrypt(challenge, challenge, private->rsa) <= 0)
217 goto failure;
Damien Millerfd7c9111999-11-08 16:15:55 +1100218
Damien Millerad833b32000-08-23 10:46:23 +1000219 /* The response is MD5 of decrypted challenge plus session id. */
220 len = BN_num_bytes(challenge);
221 if (len <= 0 || len > 32) {
222 log("process_authentication_challenge: bad challenge length %d", len);
223 goto failure;
Damien Miller95def091999-11-25 00:26:21 +1100224 }
Damien Millerad833b32000-08-23 10:46:23 +1000225 memset(buf, 0, 32);
226 BN_bn2bin(challenge, buf + 32 - len);
227 MD5_Init(&md);
228 MD5_Update(&md, buf, 32);
229 MD5_Update(&md, session_id, 16);
230 MD5_Final(mdbuf, &md);
231
232 /* Send the response. */
233 buffer_put_char(&msg, SSH_AGENT_RSA_RESPONSE);
234 for (i = 0; i < 16; i++)
235 buffer_put_char(&msg, mdbuf[i]);
236 goto send;
237 }
238
239failure:
240 /* Unknown identity or protocol error. Send failure. */
Damien Miller95def091999-11-25 00:26:21 +1100241 buffer_put_char(&msg, SSH_AGENT_FAILURE);
242send:
243 buffer_put_int(&e->output, buffer_len(&msg));
Damien Millerad833b32000-08-23 10:46:23 +1000244 buffer_append(&e->output, buffer_ptr(&msg), buffer_len(&msg));
245 key_free(key);
Damien Miller95def091999-11-25 00:26:21 +1100246 BN_clear_free(challenge);
Damien Millerad833b32000-08-23 10:46:23 +1000247 buffer_free(&msg);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000248}
249
Damien Millerad833b32000-08-23 10:46:23 +1000250/* ssh2 only */
Ben Lindstrombba81212001-06-25 05:01:22 +0000251static void
Damien Millerad833b32000-08-23 10:46:23 +1000252process_sign_request2(SocketEntry *e)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000253{
Damien Millerad833b32000-08-23 10:46:23 +1000254 extern int datafellows;
Damien Miller1a534ae2002-01-22 23:26:13 +1100255 Key *key;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000256 u_char *blob, *data, *signature = NULL;
257 u_int blen, dlen, slen = 0;
Damien Miller62cee002000-09-23 17:15:56 +1100258 int flags;
Damien Millerad833b32000-08-23 10:46:23 +1000259 Buffer msg;
260 int ok = -1;
261
262 datafellows = 0;
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000263
Ben Lindstrom21d1ed82002-06-06 21:48:57 +0000264 blob = buffer_get_string(&e->request, &blen);
265 data = buffer_get_string(&e->request, &dlen);
Damien Miller62cee002000-09-23 17:15:56 +1100266
Ben Lindstrom21d1ed82002-06-06 21:48:57 +0000267 flags = buffer_get_int(&e->request);
Damien Miller62cee002000-09-23 17:15:56 +1100268 if (flags & SSH_AGENT_OLD_SIGNATURE)
269 datafellows = SSH_BUG_SIGBLOB;
Damien Millerad833b32000-08-23 10:46:23 +1000270
Damien Miller0bc1bd82000-11-13 22:57:25 +1100271 key = key_from_blob(blob, blen);
Damien Millerad833b32000-08-23 10:46:23 +1000272 if (key != NULL) {
Damien Miller1a534ae2002-01-22 23:26:13 +1100273 Identity *id = lookup_identity(key, 2);
274 if (id != NULL)
275 ok = key_sign(id->key, &signature, &slen, data, dlen);
Damien Millerad833b32000-08-23 10:46:23 +1000276 }
277 key_free(key);
278 buffer_init(&msg);
279 if (ok == 0) {
280 buffer_put_char(&msg, SSH2_AGENT_SIGN_RESPONSE);
281 buffer_put_string(&msg, signature, slen);
282 } else {
283 buffer_put_char(&msg, SSH_AGENT_FAILURE);
284 }
285 buffer_put_int(&e->output, buffer_len(&msg));
286 buffer_append(&e->output, buffer_ptr(&msg),
287 buffer_len(&msg));
288 buffer_free(&msg);
289 xfree(data);
290 xfree(blob);
291 if (signature != NULL)
292 xfree(signature);
293}
294
295/* shared */
Ben Lindstrombba81212001-06-25 05:01:22 +0000296static void
Damien Millerad833b32000-08-23 10:46:23 +1000297process_remove_identity(SocketEntry *e, int version)
298{
Damien Miller1a534ae2002-01-22 23:26:13 +1100299 Key *key = NULL;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000300 u_char *blob;
301 u_int blen;
302 u_int bits;
Damien Millerad833b32000-08-23 10:46:23 +1000303 int success = 0;
Damien Miller7e8e8201999-11-16 13:37:16 +1100304
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +0000305 switch (version) {
Damien Millerad833b32000-08-23 10:46:23 +1000306 case 1:
Damien Miller0bc1bd82000-11-13 22:57:25 +1100307 key = key_new(KEY_RSA1);
Ben Lindstrom21d1ed82002-06-06 21:48:57 +0000308 bits = buffer_get_int(&e->request);
309 buffer_get_bignum(&e->request, key->rsa->e);
310 buffer_get_bignum(&e->request, key->rsa->n);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000311
Damien Millerad833b32000-08-23 10:46:23 +1000312 if (bits != key_size(key))
313 log("Warning: identity keysize mismatch: actual %d, announced %d",
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000314 key_size(key), bits);
Damien Millerad833b32000-08-23 10:46:23 +1000315 break;
316 case 2:
Ben Lindstrom21d1ed82002-06-06 21:48:57 +0000317 blob = buffer_get_string(&e->request, &blen);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100318 key = key_from_blob(blob, blen);
Damien Millerad833b32000-08-23 10:46:23 +1000319 xfree(blob);
320 break;
321 }
322 if (key != NULL) {
Damien Miller1a534ae2002-01-22 23:26:13 +1100323 Identity *id = lookup_identity(key, version);
324 if (id != NULL) {
Damien Miller5428f641999-11-25 11:54:57 +1100325 /*
326 * We have this key. Free the old key. Since we
327 * don\'t want to leave empty slots in the middle of
Ben Lindstrom14920292000-11-21 21:24:55 +0000328 * the array, we actually free the key there and move
329 * all the entries between the empty slot and the end
330 * of the array.
Damien Miller5428f641999-11-25 11:54:57 +1100331 */
Damien Millerad833b32000-08-23 10:46:23 +1000332 Idtab *tab = idtab_lookup(version);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100333 if (tab->nentries < 1)
334 fatal("process_remove_identity: "
335 "internal error: tab->nentries %d",
336 tab->nentries);
Damien Miller1a534ae2002-01-22 23:26:13 +1100337 TAILQ_REMOVE(&tab->idlist, id, next);
338 free_identity(id);
Damien Millerad833b32000-08-23 10:46:23 +1000339 tab->nentries--;
340 success = 1;
Damien Miller95def091999-11-25 00:26:21 +1100341 }
Damien Millerad833b32000-08-23 10:46:23 +1000342 key_free(key);
343 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000344 buffer_put_int(&e->output, 1);
Damien Millerad833b32000-08-23 10:46:23 +1000345 buffer_put_char(&e->output,
346 success ? SSH_AGENT_SUCCESS : SSH_AGENT_FAILURE);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000347}
348
Ben Lindstrombba81212001-06-25 05:01:22 +0000349static void
Damien Millerad833b32000-08-23 10:46:23 +1000350process_remove_all_identities(SocketEntry *e, int version)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000351{
Damien Millerad833b32000-08-23 10:46:23 +1000352 Idtab *tab = idtab_lookup(version);
Damien Miller1a534ae2002-01-22 23:26:13 +1100353 Identity *id;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000354
Damien Miller95def091999-11-25 00:26:21 +1100355 /* Loop over all identities and clear the keys. */
Damien Miller1a534ae2002-01-22 23:26:13 +1100356 for (id = TAILQ_FIRST(&tab->idlist); id;
357 id = TAILQ_FIRST(&tab->idlist)) {
358 TAILQ_REMOVE(&tab->idlist, id, next);
359 free_identity(id);
Damien Miller95def091999-11-25 00:26:21 +1100360 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000361
Damien Miller95def091999-11-25 00:26:21 +1100362 /* Mark that there are no identities. */
Damien Millerad833b32000-08-23 10:46:23 +1000363 tab->nentries = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000364
365 /* Send success. */
366 buffer_put_int(&e->output, 1);
367 buffer_put_char(&e->output, SSH_AGENT_SUCCESS);
368 return;
Damien Miller95def091999-11-25 00:26:21 +1100369}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000370
Ben Lindstrombba81212001-06-25 05:01:22 +0000371static void
Ben Lindstrom61d328a2002-06-06 21:54:57 +0000372reaper(void)
373{
374 Idtab *tab;
375 Identity *id, *nxt;
376 int version;
377 u_int now = time(NULL);
378
379 for (version = 1; version < 3; version++) {
380 tab = idtab_lookup(version);
381 for (id = TAILQ_FIRST(&tab->idlist); id; id = nxt) {
382 nxt = TAILQ_NEXT(id, next);
383 if (id->death != 0 && now >= id->death) {
384 TAILQ_REMOVE(&tab->idlist, id, next);
385 free_identity(id);
386 tab->nentries--;
387 }
388 }
389 }
390}
391
392static void
Damien Millerad833b32000-08-23 10:46:23 +1000393process_add_identity(SocketEntry *e, int version)
Damien Miller95def091999-11-25 00:26:21 +1100394{
Damien Millerad833b32000-08-23 10:46:23 +1000395 Key *k = NULL;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100396 char *type_name;
Damien Millerad833b32000-08-23 10:46:23 +1000397 char *comment;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100398 int type, success = 0;
Damien Millerad833b32000-08-23 10:46:23 +1000399 Idtab *tab = idtab_lookup(version);
Damien Miller95def091999-11-25 00:26:21 +1100400
Damien Millerad833b32000-08-23 10:46:23 +1000401 switch (version) {
402 case 1:
Damien Miller0bc1bd82000-11-13 22:57:25 +1100403 k = key_new_private(KEY_RSA1);
Ben Lindstrom21d1ed82002-06-06 21:48:57 +0000404 buffer_get_int(&e->request); /* ignored */
405 buffer_get_bignum(&e->request, k->rsa->n);
406 buffer_get_bignum(&e->request, k->rsa->e);
407 buffer_get_bignum(&e->request, k->rsa->d);
408 buffer_get_bignum(&e->request, k->rsa->iqmp);
Damien Miller95def091999-11-25 00:26:21 +1100409
Damien Millerad833b32000-08-23 10:46:23 +1000410 /* SSH and SSL have p and q swapped */
Ben Lindstrom21d1ed82002-06-06 21:48:57 +0000411 buffer_get_bignum(&e->request, k->rsa->q); /* p */
412 buffer_get_bignum(&e->request, k->rsa->p); /* q */
Damien Miller95def091999-11-25 00:26:21 +1100413
Damien Millerad833b32000-08-23 10:46:23 +1000414 /* Generate additional parameters */
Ben Lindstromf7297dd2001-07-04 05:02:23 +0000415 rsa_generate_additional_parameters(k->rsa);
Damien Millerad833b32000-08-23 10:46:23 +1000416 break;
417 case 2:
Ben Lindstrom21d1ed82002-06-06 21:48:57 +0000418 type_name = buffer_get_string(&e->request, NULL);
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000419 type = key_type_from_name(type_name);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100420 xfree(type_name);
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +0000421 switch (type) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100422 case KEY_DSA:
423 k = key_new_private(type);
Ben Lindstrom21d1ed82002-06-06 21:48:57 +0000424 buffer_get_bignum2(&e->request, k->dsa->p);
425 buffer_get_bignum2(&e->request, k->dsa->q);
426 buffer_get_bignum2(&e->request, k->dsa->g);
427 buffer_get_bignum2(&e->request, k->dsa->pub_key);
428 buffer_get_bignum2(&e->request, k->dsa->priv_key);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100429 break;
430 case KEY_RSA:
431 k = key_new_private(type);
Ben Lindstrom21d1ed82002-06-06 21:48:57 +0000432 buffer_get_bignum2(&e->request, k->rsa->n);
433 buffer_get_bignum2(&e->request, k->rsa->e);
434 buffer_get_bignum2(&e->request, k->rsa->d);
435 buffer_get_bignum2(&e->request, k->rsa->iqmp);
436 buffer_get_bignum2(&e->request, k->rsa->p);
437 buffer_get_bignum2(&e->request, k->rsa->q);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100438
439 /* Generate additional parameters */
Ben Lindstromf7297dd2001-07-04 05:02:23 +0000440 rsa_generate_additional_parameters(k->rsa);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100441 break;
442 default:
Ben Lindstrom21d1ed82002-06-06 21:48:57 +0000443 buffer_clear(&e->request);
Damien Millerad833b32000-08-23 10:46:23 +1000444 goto send;
Damien Miller95def091999-11-25 00:26:21 +1100445 }
Damien Millerad833b32000-08-23 10:46:23 +1000446 break;
447 }
Ben Lindstrom21d1ed82002-06-06 21:48:57 +0000448 comment = buffer_get_string(&e->request, NULL);
Damien Millerad833b32000-08-23 10:46:23 +1000449 if (k == NULL) {
450 xfree(comment);
451 goto send;
452 }
453 success = 1;
Damien Miller1a534ae2002-01-22 23:26:13 +1100454 if (lookup_identity(k, version) == NULL) {
455 Identity *id = xmalloc(sizeof(Identity));
456 id->key = k;
457 id->comment = comment;
Ben Lindstrom61d328a2002-06-06 21:54:57 +0000458 id->death = 0;
Damien Miller1a534ae2002-01-22 23:26:13 +1100459 TAILQ_INSERT_TAIL(&tab->idlist, id, next);
Damien Millerad833b32000-08-23 10:46:23 +1000460 /* Increment the number of identities. */
461 tab->nentries++;
462 } else {
463 key_free(k);
464 xfree(comment);
465 }
466send:
Damien Miller95def091999-11-25 00:26:21 +1100467 buffer_put_int(&e->output, 1);
Damien Millerad833b32000-08-23 10:46:23 +1000468 buffer_put_char(&e->output,
469 success ? SSH_AGENT_SUCCESS : SSH_AGENT_FAILURE);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000470}
471
Ben Lindstrom61d328a2002-06-06 21:54:57 +0000472static void
Ben Lindstromc90f8a92002-06-21 00:06:54 +0000473process_constrain_identity(SocketEntry *e, int version)
Ben Lindstrom61d328a2002-06-06 21:54:57 +0000474{
475 Key *key = NULL;
476 u_char *blob;
Ben Lindstrom4eb4c4e2002-06-21 00:04:48 +0000477 u_int blen, bits, death = 0;
Ben Lindstrom61d328a2002-06-06 21:54:57 +0000478 int success = 0;
479
Ben Lindstrom61d328a2002-06-06 21:54:57 +0000480 switch (version) {
481 case 1:
482 key = key_new(KEY_RSA1);
483 bits = buffer_get_int(&e->request);
484 buffer_get_bignum(&e->request, key->rsa->e);
485 buffer_get_bignum(&e->request, key->rsa->n);
486
487 break;
488 case 2:
489 blob = buffer_get_string(&e->request, &blen);
490 key = key_from_blob(blob, blen);
491 xfree(blob);
492 break;
493 }
Ben Lindstrom4eb4c4e2002-06-21 00:04:48 +0000494 while (buffer_len(&e->request)) {
495 switch (buffer_get_char(&e->request)) {
Ben Lindstromc90f8a92002-06-21 00:06:54 +0000496 case SSH_AGENT_CONSTRAIN_LIFETIME:
Ben Lindstrom4eb4c4e2002-06-21 00:04:48 +0000497 death = time(NULL) + buffer_get_int(&e->request);
498 break;
499 default:
500 break;
501 }
502 }
Ben Lindstrom61d328a2002-06-06 21:54:57 +0000503 if (key != NULL) {
504 Identity *id = lookup_identity(key, version);
Ben Lindstrom4eb4c4e2002-06-21 00:04:48 +0000505 if (id != NULL && id->death == 0 && death != 0) {
Ben Lindstrom61d328a2002-06-06 21:54:57 +0000506 id->death = death;
507 success = 1;
508 }
509 key_free(key);
510 }
511 buffer_put_int(&e->output, 1);
512 buffer_put_char(&e->output,
513 success ? SSH_AGENT_SUCCESS : SSH_AGENT_FAILURE);
514}
515
Ben Lindstrom2f717042002-06-06 21:52:03 +0000516/* XXX todo: encrypt sensitive data with passphrase */
517static void
518process_lock_agent(SocketEntry *e, int lock)
519{
520 char *passwd;
521 int success = 0;
522
523 passwd = buffer_get_string(&e->request, NULL);
524 if (locked && !lock && strcmp(passwd, lock_passwd) == 0) {
525 locked = 0;
526 memset(lock_passwd, 0, strlen(lock_passwd));
527 xfree(lock_passwd);
528 lock_passwd = NULL;
529 success = 1;
530 } else if (!locked && lock) {
531 locked = 1;
532 lock_passwd = xstrdup(passwd);
533 success = 1;
534 }
535 memset(passwd, 0, strlen(passwd));
536 xfree(passwd);
537
538 buffer_put_int(&e->output, 1);
539 buffer_put_char(&e->output,
540 success ? SSH_AGENT_SUCCESS : SSH_AGENT_FAILURE);
541 return;
542}
543
544static void
545no_identities(SocketEntry *e, u_int type)
546{
547 Buffer msg;
548
549 buffer_init(&msg);
550 buffer_put_char(&msg,
551 (type == SSH_AGENTC_REQUEST_RSA_IDENTITIES) ?
552 SSH_AGENT_RSA_IDENTITIES_ANSWER : SSH2_AGENT_IDENTITIES_ANSWER);
553 buffer_put_int(&msg, 0);
554 buffer_put_int(&e->output, buffer_len(&msg));
555 buffer_append(&e->output, buffer_ptr(&msg), buffer_len(&msg));
556 buffer_free(&msg);
557}
Ben Lindstrom3f471632001-07-04 03:53:15 +0000558
559#ifdef SMARTCARD
560static void
561process_add_smartcard_key (SocketEntry *e)
562{
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000563 Identity *id;
Ben Lindstrom3f471632001-07-04 03:53:15 +0000564 Idtab *tab;
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000565 Key **keys, *k;
Ben Lindstromba72d302002-03-22 03:51:06 +0000566 char *sc_reader_id = NULL, *pin;
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000567 int i, version, success = 0;
Damien Miller9f0f5c62001-12-21 14:45:46 +1100568
Ben Lindstrom21d1ed82002-06-06 21:48:57 +0000569 sc_reader_id = buffer_get_string(&e->request, NULL);
570 pin = buffer_get_string(&e->request, NULL);
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000571 keys = sc_get_keys(sc_reader_id, pin);
Ben Lindstromf7db3bb2001-08-06 21:35:51 +0000572 xfree(sc_reader_id);
Ben Lindstromba72d302002-03-22 03:51:06 +0000573 xfree(pin);
Ben Lindstrom3f471632001-07-04 03:53:15 +0000574
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000575 if (keys == NULL || keys[0] == NULL) {
576 error("sc_get_keys failed");
Ben Lindstrom3f471632001-07-04 03:53:15 +0000577 goto send;
578 }
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000579 for (i = 0; keys[i] != NULL; i++) {
580 k = keys[i];
581 version = k->type == KEY_RSA1 ? 1 : 2;
582 tab = idtab_lookup(version);
583 if (lookup_identity(k, version) == NULL) {
584 id = xmalloc(sizeof(Identity));
585 id->key = k;
586 id->comment = xstrdup("smartcard key");
Ben Lindstrom61d328a2002-06-06 21:54:57 +0000587 id->death = 0;
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000588 TAILQ_INSERT_TAIL(&tab->idlist, id, next);
589 tab->nentries++;
590 success = 1;
591 } else {
592 key_free(k);
593 }
594 keys[i] = NULL;
Ben Lindstrom3f471632001-07-04 03:53:15 +0000595 }
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000596 xfree(keys);
Ben Lindstrom3f471632001-07-04 03:53:15 +0000597send:
598 buffer_put_int(&e->output, 1);
599 buffer_put_char(&e->output,
600 success ? SSH_AGENT_SUCCESS : SSH_AGENT_FAILURE);
601}
602
603static void
604process_remove_smartcard_key(SocketEntry *e)
605{
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000606 Identity *id;
607 Idtab *tab;
608 Key **keys, *k = NULL;
Ben Lindstromba72d302002-03-22 03:51:06 +0000609 char *sc_reader_id = NULL, *pin;
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000610 int i, version, success = 0;
Ben Lindstrom3f471632001-07-04 03:53:15 +0000611
Ben Lindstrom21d1ed82002-06-06 21:48:57 +0000612 sc_reader_id = buffer_get_string(&e->request, NULL);
613 pin = buffer_get_string(&e->request, NULL);
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000614 keys = sc_get_keys(sc_reader_id, pin);
Ben Lindstromf7db3bb2001-08-06 21:35:51 +0000615 xfree(sc_reader_id);
Ben Lindstromba72d302002-03-22 03:51:06 +0000616 xfree(pin);
Ben Lindstrom3f471632001-07-04 03:53:15 +0000617
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000618 if (keys == NULL || keys[0] == NULL) {
619 error("sc_get_keys failed");
620 goto send;
621 }
622 for (i = 0; keys[i] != NULL; i++) {
623 k = keys[i];
624 version = k->type == KEY_RSA1 ? 1 : 2;
625 if ((id = lookup_identity(k, version)) != NULL) {
626 tab = idtab_lookup(version);
Ben Lindstrom5a6abda2002-06-09 19:41:48 +0000627 TAILQ_REMOVE(&tab->idlist, id, next);
Ben Lindstrom3f471632001-07-04 03:53:15 +0000628 tab->nentries--;
Damien Miller1a534ae2002-01-22 23:26:13 +1100629 free_identity(id);
Ben Lindstrom3f471632001-07-04 03:53:15 +0000630 success = 1;
631 }
632 key_free(k);
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000633 keys[i] = NULL;
Ben Lindstrom3f471632001-07-04 03:53:15 +0000634 }
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000635 xfree(keys);
636send:
Ben Lindstrom3f471632001-07-04 03:53:15 +0000637 buffer_put_int(&e->output, 1);
638 buffer_put_char(&e->output,
639 success ? SSH_AGENT_SUCCESS : SSH_AGENT_FAILURE);
640}
Ben Lindstromffce1472001-08-06 21:57:31 +0000641#endif /* SMARTCARD */
Ben Lindstrom3f471632001-07-04 03:53:15 +0000642
Damien Millerad833b32000-08-23 10:46:23 +1000643/* dispatch incoming messages */
644
Ben Lindstrombba81212001-06-25 05:01:22 +0000645static void
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000646process_message(SocketEntry *e)
647{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000648 u_int msg_len;
649 u_int type;
650 u_char *cp;
Ben Lindstrom61d328a2002-06-06 21:54:57 +0000651
652 /* kill dead keys */
653 reaper();
654
Damien Miller95def091999-11-25 00:26:21 +1100655 if (buffer_len(&e->input) < 5)
656 return; /* Incomplete message. */
Damien Miller708d21c2002-01-22 23:18:15 +1100657 cp = buffer_ptr(&e->input);
Damien Miller95def091999-11-25 00:26:21 +1100658 msg_len = GET_32BIT(cp);
659 if (msg_len > 256 * 1024) {
660 shutdown(e->fd, SHUT_RDWR);
661 close(e->fd);
662 e->type = AUTH_UNUSED;
Ben Lindstrom21d1ed82002-06-06 21:48:57 +0000663 buffer_free(&e->input);
664 buffer_free(&e->output);
665 buffer_free(&e->request);
Damien Miller95def091999-11-25 00:26:21 +1100666 return;
667 }
668 if (buffer_len(&e->input) < msg_len + 4)
669 return;
Ben Lindstrom21d1ed82002-06-06 21:48:57 +0000670
671 /* move the current input to e->request */
Damien Miller95def091999-11-25 00:26:21 +1100672 buffer_consume(&e->input, 4);
Ben Lindstrom21d1ed82002-06-06 21:48:57 +0000673 buffer_clear(&e->request);
674 buffer_append(&e->request, buffer_ptr(&e->input), msg_len);
675 buffer_consume(&e->input, msg_len);
676 type = buffer_get_char(&e->request);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000677
Ben Lindstrom2f717042002-06-06 21:52:03 +0000678 /* check wheter agent is locked */
679 if (locked && type != SSH_AGENTC_UNLOCK) {
680 buffer_clear(&e->request);
681 switch (type) {
682 case SSH_AGENTC_REQUEST_RSA_IDENTITIES:
683 case SSH2_AGENTC_REQUEST_IDENTITIES:
684 /* send empty lists */
685 no_identities(e, type);
686 break;
687 default:
688 /* send a fail message for all other request types */
689 buffer_put_int(&e->output, 1);
690 buffer_put_char(&e->output, SSH_AGENT_FAILURE);
691 }
692 return;
693 }
694
Ben Lindstrom3f471632001-07-04 03:53:15 +0000695 debug("type %d", type);
Damien Miller95def091999-11-25 00:26:21 +1100696 switch (type) {
Ben Lindstrom2f717042002-06-06 21:52:03 +0000697 case SSH_AGENTC_LOCK:
698 case SSH_AGENTC_UNLOCK:
699 process_lock_agent(e, type == SSH_AGENTC_LOCK);
700 break;
Damien Millerad833b32000-08-23 10:46:23 +1000701 /* ssh1 */
Damien Miller95def091999-11-25 00:26:21 +1100702 case SSH_AGENTC_RSA_CHALLENGE:
Damien Millerad833b32000-08-23 10:46:23 +1000703 process_authentication_challenge1(e);
704 break;
705 case SSH_AGENTC_REQUEST_RSA_IDENTITIES:
706 process_request_identities(e, 1);
Damien Miller95def091999-11-25 00:26:21 +1100707 break;
708 case SSH_AGENTC_ADD_RSA_IDENTITY:
Damien Millerad833b32000-08-23 10:46:23 +1000709 process_add_identity(e, 1);
Damien Miller95def091999-11-25 00:26:21 +1100710 break;
711 case SSH_AGENTC_REMOVE_RSA_IDENTITY:
Damien Millerad833b32000-08-23 10:46:23 +1000712 process_remove_identity(e, 1);
Damien Miller95def091999-11-25 00:26:21 +1100713 break;
714 case SSH_AGENTC_REMOVE_ALL_RSA_IDENTITIES:
Damien Millerad833b32000-08-23 10:46:23 +1000715 process_remove_all_identities(e, 1);
716 break;
Ben Lindstromc90f8a92002-06-21 00:06:54 +0000717 case SSH_AGENTC_CONSTRAIN_IDENTITY1:
718 process_constrain_identity(e, 1);
Ben Lindstrom61d328a2002-06-06 21:54:57 +0000719 break;
Damien Millerad833b32000-08-23 10:46:23 +1000720 /* ssh2 */
721 case SSH2_AGENTC_SIGN_REQUEST:
722 process_sign_request2(e);
723 break;
724 case SSH2_AGENTC_REQUEST_IDENTITIES:
725 process_request_identities(e, 2);
726 break;
727 case SSH2_AGENTC_ADD_IDENTITY:
728 process_add_identity(e, 2);
729 break;
730 case SSH2_AGENTC_REMOVE_IDENTITY:
731 process_remove_identity(e, 2);
732 break;
733 case SSH2_AGENTC_REMOVE_ALL_IDENTITIES:
734 process_remove_all_identities(e, 2);
Damien Miller95def091999-11-25 00:26:21 +1100735 break;
Ben Lindstromc90f8a92002-06-21 00:06:54 +0000736 case SSH_AGENTC_CONSTRAIN_IDENTITY:
737 process_constrain_identity(e, 2);
Ben Lindstrom61d328a2002-06-06 21:54:57 +0000738 break;
Ben Lindstrom3f471632001-07-04 03:53:15 +0000739#ifdef SMARTCARD
740 case SSH_AGENTC_ADD_SMARTCARD_KEY:
741 process_add_smartcard_key(e);
Damien Miller9f0f5c62001-12-21 14:45:46 +1100742 break;
Ben Lindstrom3f471632001-07-04 03:53:15 +0000743 case SSH_AGENTC_REMOVE_SMARTCARD_KEY:
744 process_remove_smartcard_key(e);
Damien Miller9f0f5c62001-12-21 14:45:46 +1100745 break;
Ben Lindstromffce1472001-08-06 21:57:31 +0000746#endif /* SMARTCARD */
Damien Miller95def091999-11-25 00:26:21 +1100747 default:
748 /* Unknown message. Respond with failure. */
749 error("Unknown message %d", type);
Ben Lindstrom21d1ed82002-06-06 21:48:57 +0000750 buffer_clear(&e->request);
Damien Miller95def091999-11-25 00:26:21 +1100751 buffer_put_int(&e->output, 1);
752 buffer_put_char(&e->output, SSH_AGENT_FAILURE);
753 break;
754 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000755}
756
Ben Lindstrombba81212001-06-25 05:01:22 +0000757static void
Ben Lindstrom65366a82001-12-06 16:32:47 +0000758new_socket(sock_type type, int fd)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000759{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000760 u_int i, old_alloc;
Damien Miller95def091999-11-25 00:26:21 +1100761 if (fcntl(fd, F_SETFL, O_NONBLOCK) < 0)
762 error("fcntl O_NONBLOCK: %s", strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000763
Damien Miller95def091999-11-25 00:26:21 +1100764 if (fd > max_fd)
765 max_fd = fd;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000766
Damien Miller95def091999-11-25 00:26:21 +1100767 for (i = 0; i < sockets_alloc; i++)
768 if (sockets[i].type == AUTH_UNUSED) {
769 sockets[i].fd = fd;
770 sockets[i].type = type;
771 buffer_init(&sockets[i].input);
772 buffer_init(&sockets[i].output);
Ben Lindstrom21d1ed82002-06-06 21:48:57 +0000773 buffer_init(&sockets[i].request);
Damien Miller95def091999-11-25 00:26:21 +1100774 return;
775 }
776 old_alloc = sockets_alloc;
777 sockets_alloc += 10;
778 if (sockets)
779 sockets = xrealloc(sockets, sockets_alloc * sizeof(sockets[0]));
780 else
781 sockets = xmalloc(sockets_alloc * sizeof(sockets[0]));
782 for (i = old_alloc; i < sockets_alloc; i++)
783 sockets[i].type = AUTH_UNUSED;
784 sockets[old_alloc].type = type;
785 sockets[old_alloc].fd = fd;
786 buffer_init(&sockets[old_alloc].input);
787 buffer_init(&sockets[old_alloc].output);
Ben Lindstrom21d1ed82002-06-06 21:48:57 +0000788 buffer_init(&sockets[old_alloc].request);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000789}
790
Ben Lindstrombba81212001-06-25 05:01:22 +0000791static int
Ben Lindstroma3d5a4c2001-07-18 15:58:08 +0000792prepare_select(fd_set **fdrp, fd_set **fdwp, int *fdl, int *nallocp)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000793{
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000794 u_int i, sz;
795 int n = 0;
796
797 for (i = 0; i < sockets_alloc; i++) {
Damien Miller95def091999-11-25 00:26:21 +1100798 switch (sockets[i].type) {
799 case AUTH_SOCKET:
800 case AUTH_CONNECTION:
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000801 n = MAX(n, sockets[i].fd);
Damien Miller95def091999-11-25 00:26:21 +1100802 break;
803 case AUTH_UNUSED:
804 break;
805 default:
806 fatal("Unknown socket type %d", sockets[i].type);
807 break;
808 }
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000809 }
810
811 sz = howmany(n+1, NFDBITS) * sizeof(fd_mask);
Ben Lindstroma3d5a4c2001-07-18 15:58:08 +0000812 if (*fdrp == NULL || sz > *nallocp) {
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000813 if (*fdrp)
Ben Lindstrom86ebcb62001-04-04 01:53:20 +0000814 xfree(*fdrp);
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000815 if (*fdwp)
Ben Lindstrom86ebcb62001-04-04 01:53:20 +0000816 xfree(*fdwp);
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000817 *fdrp = xmalloc(sz);
818 *fdwp = xmalloc(sz);
Ben Lindstroma3d5a4c2001-07-18 15:58:08 +0000819 *nallocp = sz;
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000820 }
Ben Lindstroma3d5a4c2001-07-18 15:58:08 +0000821 if (n < *fdl)
822 debug("XXX shrink: %d < %d", n, *fdl);
823 *fdl = n;
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000824 memset(*fdrp, 0, sz);
825 memset(*fdwp, 0, sz);
826
827 for (i = 0; i < sockets_alloc; i++) {
828 switch (sockets[i].type) {
829 case AUTH_SOCKET:
830 case AUTH_CONNECTION:
831 FD_SET(sockets[i].fd, *fdrp);
832 if (buffer_len(&sockets[i].output) > 0)
833 FD_SET(sockets[i].fd, *fdwp);
834 break;
835 default:
836 break;
837 }
838 }
839 return (1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000840}
841
Ben Lindstrombba81212001-06-25 05:01:22 +0000842static void
Damien Miller95def091999-11-25 00:26:21 +1100843after_select(fd_set *readset, fd_set *writeset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000844{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000845 u_int i;
Damien Miller95def091999-11-25 00:26:21 +1100846 int len, sock;
Damien Miller7684ee12000-03-17 23:40:15 +1100847 socklen_t slen;
Damien Miller95def091999-11-25 00:26:21 +1100848 char buf[1024];
849 struct sockaddr_un sunaddr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000850
Damien Miller95def091999-11-25 00:26:21 +1100851 for (i = 0; i < sockets_alloc; i++)
852 switch (sockets[i].type) {
853 case AUTH_UNUSED:
854 break;
855 case AUTH_SOCKET:
856 if (FD_ISSET(sockets[i].fd, readset)) {
Damien Miller7684ee12000-03-17 23:40:15 +1100857 slen = sizeof(sunaddr);
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000858 sock = accept(sockets[i].fd,
859 (struct sockaddr *) &sunaddr, &slen);
Damien Miller95def091999-11-25 00:26:21 +1100860 if (sock < 0) {
Damien Millerc653b892002-02-08 22:05:41 +1100861 error("accept from AUTH_SOCKET: %s",
862 strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +1100863 break;
864 }
865 new_socket(AUTH_CONNECTION, sock);
866 }
867 break;
868 case AUTH_CONNECTION:
869 if (buffer_len(&sockets[i].output) > 0 &&
870 FD_ISSET(sockets[i].fd, writeset)) {
Ben Lindstromb3144e52001-03-06 03:31:34 +0000871 do {
872 len = write(sockets[i].fd,
873 buffer_ptr(&sockets[i].output),
874 buffer_len(&sockets[i].output));
875 if (len == -1 && (errno == EAGAIN ||
876 errno == EINTR))
877 continue;
878 break;
879 } while (1);
Damien Miller95def091999-11-25 00:26:21 +1100880 if (len <= 0) {
881 shutdown(sockets[i].fd, SHUT_RDWR);
882 close(sockets[i].fd);
883 sockets[i].type = AUTH_UNUSED;
Damien Millera552faf2000-04-21 15:55:20 +1000884 buffer_free(&sockets[i].input);
885 buffer_free(&sockets[i].output);
Ben Lindstrom21d1ed82002-06-06 21:48:57 +0000886 buffer_free(&sockets[i].request);
Damien Miller95def091999-11-25 00:26:21 +1100887 break;
888 }
889 buffer_consume(&sockets[i].output, len);
890 }
891 if (FD_ISSET(sockets[i].fd, readset)) {
Ben Lindstromb3144e52001-03-06 03:31:34 +0000892 do {
893 len = read(sockets[i].fd, buf, sizeof(buf));
894 if (len == -1 && (errno == EAGAIN ||
895 errno == EINTR))
896 continue;
897 break;
898 } while (1);
Damien Miller95def091999-11-25 00:26:21 +1100899 if (len <= 0) {
900 shutdown(sockets[i].fd, SHUT_RDWR);
901 close(sockets[i].fd);
902 sockets[i].type = AUTH_UNUSED;
Damien Millera552faf2000-04-21 15:55:20 +1000903 buffer_free(&sockets[i].input);
904 buffer_free(&sockets[i].output);
Ben Lindstrom21d1ed82002-06-06 21:48:57 +0000905 buffer_free(&sockets[i].request);
Damien Miller95def091999-11-25 00:26:21 +1100906 break;
907 }
908 buffer_append(&sockets[i].input, buf, len);
909 process_message(&sockets[i]);
910 }
911 break;
912 default:
913 fatal("Unknown type %d", sockets[i].type);
914 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000915}
916
Ben Lindstrombba81212001-06-25 05:01:22 +0000917static void
Damien Millerc653b892002-02-08 22:05:41 +1100918cleanup_socket(void *p)
Damien Miller792c5111999-10-29 09:47:09 +1000919{
Ben Lindstrom77808ab2001-01-26 05:10:34 +0000920 if (socket_name[0])
921 unlink(socket_name);
922 if (socket_dir[0])
923 rmdir(socket_dir);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000924}
925
Ben Lindstrombba81212001-06-25 05:01:22 +0000926static void
Damien Miller792c5111999-10-29 09:47:09 +1000927cleanup_exit(int i)
928{
Damien Millerc653b892002-02-08 22:05:41 +1100929 cleanup_socket(NULL);
Damien Miller95def091999-11-25 00:26:21 +1100930 exit(i);
Damien Miller792c5111999-10-29 09:47:09 +1000931}
932
Ben Lindstrombba81212001-06-25 05:01:22 +0000933static void
Ben Lindstrom77808ab2001-01-26 05:10:34 +0000934cleanup_handler(int sig)
935{
Damien Millerc653b892002-02-08 22:05:41 +1100936 cleanup_socket(NULL);
Ben Lindstrom77808ab2001-01-26 05:10:34 +0000937 _exit(2);
938}
939
Ben Lindstrombba81212001-06-25 05:01:22 +0000940static void
Ben Lindstrom0250da02001-07-22 20:44:00 +0000941check_parent_exists(int sig)
942{
943 int save_errno = errno;
944
945 if (parent_pid != -1 && kill(parent_pid, 0) < 0) {
946 /* printf("Parent has died - Authentication agent exiting.\n"); */
947 cleanup_handler(sig); /* safe */
948 }
949 signal(SIGALRM, check_parent_exists);
950 alarm(10);
951 errno = save_errno;
952}
953
954static void
Ben Lindstrom28072eb2001-02-10 23:13:41 +0000955usage(void)
Damien Miller792c5111999-10-29 09:47:09 +1000956{
Ben Lindstromddfb1e32001-08-06 22:06:35 +0000957 fprintf(stderr, "Usage: %s [options] [command [args ...]]\n",
Kevin Steves29265862001-01-24 14:06:28 +0000958 __progname);
Ben Lindstromddfb1e32001-08-06 22:06:35 +0000959 fprintf(stderr, "Options:\n");
960 fprintf(stderr, " -c Generate C-shell commands on stdout.\n");
961 fprintf(stderr, " -s Generate Bourne shell commands on stdout.\n");
962 fprintf(stderr, " -k Kill the current agent.\n");
963 fprintf(stderr, " -d Debug mode.\n");
Ben Lindstromb7788f32002-06-06 21:46:08 +0000964 fprintf(stderr, " -a socket Bind agent socket to given name.\n");
Damien Miller95def091999-11-25 00:26:21 +1100965 exit(1);
Damien Miller792c5111999-10-29 09:47:09 +1000966}
967
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000968int
969main(int ac, char **av)
970{
Ben Lindstroma3d5a4c2001-07-18 15:58:08 +0000971 int sock, c_flag = 0, d_flag = 0, k_flag = 0, s_flag = 0, ch, nalloc;
Damien Miller95def091999-11-25 00:26:21 +1100972 struct sockaddr_un sunaddr;
Ben Lindstrom2c467a22000-12-27 04:57:41 +0000973#ifdef HAVE_SETRLIMIT
Ben Lindstromc72745a2000-12-02 19:03:54 +0000974 struct rlimit rlim;
Ben Lindstrom2c467a22000-12-27 04:57:41 +0000975#endif
Ben Lindstrom3524d692001-05-03 22:59:24 +0000976#ifdef HAVE_CYGWIN
977 int prev_mask;
978#endif
Damien Miller95def091999-11-25 00:26:21 +1100979 pid_t pid;
980 char *shell, *format, *pidstr, pidstrbuf[1 + 3 * sizeof pid];
Ben Lindstromb7788f32002-06-06 21:46:08 +0000981 char *agentsocket = NULL;
Damien Miller615f9392000-05-17 22:53:33 +1000982 extern int optind;
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000983 fd_set *readsetp = NULL, *writesetp = NULL;
Kevin Stevesde41bc62000-12-14 00:04:08 +0000984
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000985 SSLeay_add_all_algorithms();
986
Ben Lindstrom49a79c02000-11-17 03:47:20 +0000987 __progname = get_progname(av[0]);
Damien Millerf9b625c2000-07-09 22:42:32 +1000988 init_rng();
Damien Miller60bc5172001-03-19 09:38:15 +1100989 seed_rng();
Kevin Stevesef4eea92001-02-05 12:42:17 +0000990
Damien Millerd0cff3e2000-04-20 23:12:58 +1000991#ifdef __GNU_LIBRARY__
Ben Lindstromb7788f32002-06-06 21:46:08 +0000992 while ((ch = getopt(ac, av, "+cdksa:")) != -1) {
Damien Millerd0cff3e2000-04-20 23:12:58 +1000993#else /* __GNU_LIBRARY__ */
Ben Lindstromb7788f32002-06-06 21:46:08 +0000994 while ((ch = getopt(ac, av, "cdksa:")) != -1) {
Damien Millerd0cff3e2000-04-20 23:12:58 +1000995#endif /* __GNU_LIBRARY__ */
Damien Miller95def091999-11-25 00:26:21 +1100996 switch (ch) {
997 case 'c':
998 if (s_flag)
999 usage();
1000 c_flag++;
1001 break;
1002 case 'k':
1003 k_flag++;
1004 break;
1005 case 's':
1006 if (c_flag)
1007 usage();
1008 s_flag++;
1009 break;
Ben Lindstromd94580c2001-07-04 03:48:02 +00001010 case 'd':
1011 if (d_flag)
1012 usage();
1013 d_flag++;
1014 break;
Ben Lindstromb7788f32002-06-06 21:46:08 +00001015 case 'a':
1016 agentsocket = optarg;
1017 break;
Damien Miller95def091999-11-25 00:26:21 +11001018 default:
1019 usage();
1020 }
Damien Miller792c5111999-10-29 09:47:09 +10001021 }
Damien Miller95def091999-11-25 00:26:21 +11001022 ac -= optind;
1023 av += optind;
Damien Miller792c5111999-10-29 09:47:09 +10001024
Ben Lindstromd94580c2001-07-04 03:48:02 +00001025 if (ac > 0 && (c_flag || k_flag || s_flag || d_flag))
Damien Miller95def091999-11-25 00:26:21 +11001026 usage();
Damien Miller792c5111999-10-29 09:47:09 +10001027
Ben Lindstromeecdf232002-04-02 21:03:51 +00001028 if (ac == 0 && !c_flag && !s_flag) {
Damien Miller95def091999-11-25 00:26:21 +11001029 shell = getenv("SHELL");
1030 if (shell != NULL && strncmp(shell + strlen(shell) - 3, "csh", 3) == 0)
1031 c_flag = 1;
Damien Miller792c5111999-10-29 09:47:09 +10001032 }
Damien Miller95def091999-11-25 00:26:21 +11001033 if (k_flag) {
1034 pidstr = getenv(SSH_AGENTPID_ENV_NAME);
1035 if (pidstr == NULL) {
1036 fprintf(stderr, "%s not set, cannot kill agent\n",
Ben Lindstrom226cfa02001-01-22 05:34:40 +00001037 SSH_AGENTPID_ENV_NAME);
Damien Miller95def091999-11-25 00:26:21 +11001038 exit(1);
1039 }
1040 pid = atoi(pidstr);
Ben Lindstrom226cfa02001-01-22 05:34:40 +00001041 if (pid < 1) {
Damien Miller95def091999-11-25 00:26:21 +11001042 fprintf(stderr, "%s=\"%s\", which is not a good PID\n",
Ben Lindstrom226cfa02001-01-22 05:34:40 +00001043 SSH_AGENTPID_ENV_NAME, pidstr);
Damien Miller95def091999-11-25 00:26:21 +11001044 exit(1);
1045 }
1046 if (kill(pid, SIGTERM) == -1) {
1047 perror("kill");
1048 exit(1);
1049 }
1050 format = c_flag ? "unsetenv %s;\n" : "unset %s;\n";
1051 printf(format, SSH_AUTHSOCKET_ENV_NAME);
1052 printf(format, SSH_AGENTPID_ENV_NAME);
Ben Lindstromce0f6342002-06-11 16:42:49 +00001053 printf("echo Agent pid %ld killed;\n", (long)pid);
Damien Miller95def091999-11-25 00:26:21 +11001054 exit(0);
Damien Miller792c5111999-10-29 09:47:09 +10001055 }
Damien Miller95def091999-11-25 00:26:21 +11001056 parent_pid = getpid();
1057
Ben Lindstromb7788f32002-06-06 21:46:08 +00001058 if (agentsocket == NULL) {
1059 /* Create private directory for agent socket */
1060 strlcpy(socket_dir, "/tmp/ssh-XXXXXXXX", sizeof socket_dir);
1061 if (mkdtemp(socket_dir) == NULL) {
1062 perror("mkdtemp: private socket dir");
1063 exit(1);
1064 }
Ben Lindstromce0f6342002-06-11 16:42:49 +00001065 snprintf(socket_name, sizeof socket_name, "%s/agent.%ld", socket_dir,
1066 (long)parent_pid);
Ben Lindstromb7788f32002-06-06 21:46:08 +00001067 } else {
1068 /* Try to use specified agent socket */
1069 socket_dir[0] = '\0';
1070 strlcpy(socket_name, agentsocket, sizeof socket_name);
Damien Miller792c5111999-10-29 09:47:09 +10001071 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001072
Damien Miller5428f641999-11-25 11:54:57 +11001073 /*
1074 * Create socket early so it will exist before command gets run from
1075 * the parent.
1076 */
Damien Miller95def091999-11-25 00:26:21 +11001077 sock = socket(AF_UNIX, SOCK_STREAM, 0);
1078 if (sock < 0) {
1079 perror("socket");
1080 cleanup_exit(1);
Damien Miller792c5111999-10-29 09:47:09 +10001081 }
Damien Miller95def091999-11-25 00:26:21 +11001082 memset(&sunaddr, 0, sizeof(sunaddr));
1083 sunaddr.sun_family = AF_UNIX;
1084 strlcpy(sunaddr.sun_path, socket_name, sizeof(sunaddr.sun_path));
Ben Lindstrom3524d692001-05-03 22:59:24 +00001085#ifdef HAVE_CYGWIN
1086 prev_mask = umask(0177);
1087#endif
Damien Miller95def091999-11-25 00:26:21 +11001088 if (bind(sock, (struct sockaddr *) & sunaddr, sizeof(sunaddr)) < 0) {
1089 perror("bind");
Ben Lindstrom3524d692001-05-03 22:59:24 +00001090#ifdef HAVE_CYGWIN
1091 umask(prev_mask);
1092#endif
Damien Miller95def091999-11-25 00:26:21 +11001093 cleanup_exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001094 }
Ben Lindstrom3524d692001-05-03 22:59:24 +00001095#ifdef HAVE_CYGWIN
1096 umask(prev_mask);
1097#endif
Damien Miller95def091999-11-25 00:26:21 +11001098 if (listen(sock, 5) < 0) {
1099 perror("listen");
1100 cleanup_exit(1);
1101 }
Ben Lindstrom226cfa02001-01-22 05:34:40 +00001102
Damien Miller5428f641999-11-25 11:54:57 +11001103 /*
1104 * Fork, and have the parent execute the command, if any, or present
1105 * the socket data. The child continues as the authentication agent.
1106 */
Ben Lindstromd94580c2001-07-04 03:48:02 +00001107 if (d_flag) {
1108 log_init(__progname, SYSLOG_LEVEL_DEBUG1, SYSLOG_FACILITY_AUTH, 1);
1109 format = c_flag ? "setenv %s %s;\n" : "%s=%s; export %s;\n";
1110 printf(format, SSH_AUTHSOCKET_ENV_NAME, socket_name,
1111 SSH_AUTHSOCKET_ENV_NAME);
Ben Lindstromce0f6342002-06-11 16:42:49 +00001112 printf("echo Agent pid %ld;\n", (long)parent_pid);
Ben Lindstromd94580c2001-07-04 03:48:02 +00001113 goto skip;
1114 }
Damien Miller95def091999-11-25 00:26:21 +11001115 pid = fork();
1116 if (pid == -1) {
1117 perror("fork");
Damien Millerc653b892002-02-08 22:05:41 +11001118 cleanup_exit(1);
Damien Miller95def091999-11-25 00:26:21 +11001119 }
1120 if (pid != 0) { /* Parent - execute the given command. */
1121 close(sock);
Ben Lindstromce0f6342002-06-11 16:42:49 +00001122 snprintf(pidstrbuf, sizeof pidstrbuf, "%ld", (long)pid);
Damien Miller95def091999-11-25 00:26:21 +11001123 if (ac == 0) {
1124 format = c_flag ? "setenv %s %s;\n" : "%s=%s; export %s;\n";
1125 printf(format, SSH_AUTHSOCKET_ENV_NAME, socket_name,
Ben Lindstrom226cfa02001-01-22 05:34:40 +00001126 SSH_AUTHSOCKET_ENV_NAME);
Damien Miller95def091999-11-25 00:26:21 +11001127 printf(format, SSH_AGENTPID_ENV_NAME, pidstrbuf,
Ben Lindstrom226cfa02001-01-22 05:34:40 +00001128 SSH_AGENTPID_ENV_NAME);
Ben Lindstromce0f6342002-06-11 16:42:49 +00001129 printf("echo Agent pid %ld;\n", (long)pid);
Damien Miller95def091999-11-25 00:26:21 +11001130 exit(0);
1131 }
Damien Millere4340be2000-09-16 13:29:08 +11001132 if (setenv(SSH_AUTHSOCKET_ENV_NAME, socket_name, 1) == -1 ||
1133 setenv(SSH_AGENTPID_ENV_NAME, pidstrbuf, 1) == -1) {
1134 perror("setenv");
1135 exit(1);
1136 }
Damien Miller95def091999-11-25 00:26:21 +11001137 execvp(av[0], av);
1138 perror(av[0]);
1139 exit(1);
1140 }
Damien Millerc653b892002-02-08 22:05:41 +11001141 /* child */
1142 log_init(__progname, SYSLOG_LEVEL_INFO, SYSLOG_FACILITY_AUTH, 0);
Ben Lindstrom3fdf8762001-07-22 20:40:24 +00001143
1144 if (setsid() == -1) {
Damien Millerc653b892002-02-08 22:05:41 +11001145 error("setsid: %s", strerror(errno));
Ben Lindstrom3fdf8762001-07-22 20:40:24 +00001146 cleanup_exit(1);
1147 }
1148
1149 (void)chdir("/");
Damien Miller95def091999-11-25 00:26:21 +11001150 close(0);
1151 close(1);
1152 close(2);
1153
Ben Lindstrom2c467a22000-12-27 04:57:41 +00001154#ifdef HAVE_SETRLIMIT
Ben Lindstromc72745a2000-12-02 19:03:54 +00001155 /* deny core dumps, since memory contains unencrypted private keys */
1156 rlim.rlim_cur = rlim.rlim_max = 0;
1157 if (setrlimit(RLIMIT_CORE, &rlim) < 0) {
Damien Millerc653b892002-02-08 22:05:41 +11001158 error("setrlimit RLIMIT_CORE: %s", strerror(errno));
Ben Lindstromc72745a2000-12-02 19:03:54 +00001159 cleanup_exit(1);
1160 }
Ben Lindstrom2c467a22000-12-27 04:57:41 +00001161#endif
Ben Lindstromd94580c2001-07-04 03:48:02 +00001162
1163skip:
Damien Millerc653b892002-02-08 22:05:41 +11001164 fatal_add_cleanup(cleanup_socket, NULL);
Damien Miller95def091999-11-25 00:26:21 +11001165 new_socket(AUTH_SOCKET, sock);
1166 if (ac > 0) {
1167 signal(SIGALRM, check_parent_exists);
1168 alarm(10);
1169 }
Damien Millerad833b32000-08-23 10:46:23 +10001170 idtab_init();
Damien Miller48bfa9c2001-07-14 12:12:55 +10001171 if (!d_flag)
Ben Lindstromd94580c2001-07-04 03:48:02 +00001172 signal(SIGINT, SIG_IGN);
Damien Miller48bfa9c2001-07-14 12:12:55 +10001173 signal(SIGPIPE, SIG_IGN);
Ben Lindstrom77808ab2001-01-26 05:10:34 +00001174 signal(SIGHUP, cleanup_handler);
1175 signal(SIGTERM, cleanup_handler);
Ben Lindstroma3d5a4c2001-07-18 15:58:08 +00001176 nalloc = 0;
1177
Damien Miller95def091999-11-25 00:26:21 +11001178 while (1) {
Ben Lindstroma3d5a4c2001-07-18 15:58:08 +00001179 prepare_select(&readsetp, &writesetp, &max_fd, &nalloc);
Ben Lindstrom226cfa02001-01-22 05:34:40 +00001180 if (select(max_fd + 1, readsetp, writesetp, NULL, NULL) < 0) {
Damien Miller95def091999-11-25 00:26:21 +11001181 if (errno == EINTR)
1182 continue;
Damien Millerc653b892002-02-08 22:05:41 +11001183 fatal("select: %s", strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +11001184 }
Ben Lindstrom226cfa02001-01-22 05:34:40 +00001185 after_select(readsetp, writesetp);
Damien Miller95def091999-11-25 00:26:21 +11001186 }
1187 /* NOTREACHED */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001188}