blob: 555396fc5e1503ad78d4930d5e1f762e23557823 [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"
Ben Lindstrom05764b92002-03-05 01:53:02 +000037RCSID("$OpenBSD: ssh-agent.c,v 1.82 2002/03/04 17:27:39 stevesk Exp $");
Ben Lindstrom226cfa02001-01-22 05:34:40 +000038
Damien Millerec52d7c2002-01-22 23:52:17 +110039#if defined(HAVE_SYS_QUEUE_H) && !defined(HAVE_BOGUS_SYS_QUEUE_H)
40#include <sys/queue.h>
41#else
42#include "openbsd-compat/fake-queue.h"
43#endif
44
Ben Lindstrom226cfa02001-01-22 05:34:40 +000045#include <openssl/evp.h>
46#include <openssl/md5.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100047
48#include "ssh.h"
49#include "rsa.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100050#include "buffer.h"
51#include "bufaux.h"
52#include "xmalloc.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100053#include "getput.h"
Damien Miller994cf142000-07-21 10:19:44 +100054#include "key.h"
55#include "authfd.h"
Damien Miller62cee002000-09-23 17:15:56 +110056#include "compat.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000057#include "log.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100058
Ben Lindstrom3f471632001-07-04 03:53:15 +000059#ifdef SMARTCARD
60#include <openssl/engine.h>
61#include "scard.h"
Ben Lindstrombcc18082001-08-06 21:59:25 +000062#endif
Ben Lindstrom3f471632001-07-04 03:53:15 +000063
Ben Lindstrom65366a82001-12-06 16:32:47 +000064typedef enum {
65 AUTH_UNUSED,
66 AUTH_SOCKET,
67 AUTH_CONNECTION
68} sock_type;
69
Damien Miller95def091999-11-25 00:26:21 +110070typedef struct {
71 int fd;
Ben Lindstrom65366a82001-12-06 16:32:47 +000072 sock_type type;
Damien Miller95def091999-11-25 00:26:21 +110073 Buffer input;
74 Buffer output;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100075} SocketEntry;
76
Ben Lindstrom46c16222000-12-22 01:43:59 +000077u_int sockets_alloc = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100078SocketEntry *sockets = NULL;
79
Damien Miller1a534ae2002-01-22 23:26:13 +110080typedef struct identity {
81 TAILQ_ENTRY(identity) next;
Damien Millerad833b32000-08-23 10:46:23 +100082 Key *key;
Damien Miller95def091999-11-25 00:26:21 +110083 char *comment;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100084} Identity;
85
Damien Millerad833b32000-08-23 10:46:23 +100086typedef struct {
87 int nentries;
Damien Miller1a534ae2002-01-22 23:26:13 +110088 TAILQ_HEAD(idqueue, identity) idlist;
Damien Millerad833b32000-08-23 10:46:23 +100089} Idtab;
90
91/* private key table, one per protocol version */
92Idtab idtable[3];
Damien Millerd4a8b7e1999-10-27 13:42:43 +100093
94int max_fd = 0;
95
96/* pid of shell == parent of agent */
Damien Miller166fca82000-04-20 07:42:21 +100097pid_t parent_pid = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100098
99/* pathname and directory for AUTH_SOCKET */
100char socket_name[1024];
101char socket_dir[1024];
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
128/* return matching private key for given public key */
Damien Miller1a534ae2002-01-22 23:26:13 +1100129static Identity *
130lookup_identity(Key *key, int version)
Damien Millerad833b32000-08-23 10:46:23 +1000131{
Damien Miller1a534ae2002-01-22 23:26:13 +1100132 Identity *id;
133
Damien Millerad833b32000-08-23 10:46:23 +1000134 Idtab *tab = idtab_lookup(version);
Damien Miller1a534ae2002-01-22 23:26:13 +1100135 TAILQ_FOREACH(id, &tab->idlist, next) {
136 if (key_equal(key, id->key))
137 return (id);
Damien Millerad833b32000-08-23 10:46:23 +1000138 }
Damien Miller1a534ae2002-01-22 23:26:13 +1100139 return (NULL);
140}
141
142static void
143free_identity(Identity *id)
144{
145 key_free(id->key);
146 xfree(id->comment);
147 xfree(id);
Damien Millerad833b32000-08-23 10:46:23 +1000148}
149
150/* 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
199 buffer_get_int(&e->input); /* ignored */
200 buffer_get_bignum(&e->input, key->rsa->e);
201 buffer_get_bignum(&e->input, key->rsa->n);
Damien Miller95def091999-11-25 00:26:21 +1100202 buffer_get_bignum(&e->input, challenge);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000203
Damien Millerad833b32000-08-23 10:46:23 +1000204 /* Only protocol 1.1 is supported */
205 if (buffer_len(&e->input) == 0)
206 goto failure;
Damien Miller4a8ed542002-01-22 23:33:31 +1100207 buffer_get(&e->input, session_id, 16);
Damien Millerad833b32000-08-23 10:46:23 +1000208 response_type = buffer_get_int(&e->input);
209 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
Damien Millerad833b32000-08-23 10:46:23 +1000264 blob = buffer_get_string(&e->input, &blen);
265 data = buffer_get_string(&e->input, &dlen);
Damien Miller62cee002000-09-23 17:15:56 +1100266
267 flags = buffer_get_int(&e->input);
268 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);
Damien Millerad833b32000-08-23 10:46:23 +1000308 bits = buffer_get_int(&e->input);
309 buffer_get_bignum(&e->input, key->rsa->e);
310 buffer_get_bignum(&e->input, 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:
317 blob = buffer_get_string(&e->input, &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
Damien Millerad833b32000-08-23 10:46:23 +1000372process_add_identity(SocketEntry *e, int version)
Damien Miller95def091999-11-25 00:26:21 +1100373{
Damien Millerad833b32000-08-23 10:46:23 +1000374 Key *k = NULL;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100375 char *type_name;
Damien Millerad833b32000-08-23 10:46:23 +1000376 char *comment;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100377 int type, success = 0;
Damien Millerad833b32000-08-23 10:46:23 +1000378 Idtab *tab = idtab_lookup(version);
Damien Miller95def091999-11-25 00:26:21 +1100379
Damien Millerad833b32000-08-23 10:46:23 +1000380 switch (version) {
381 case 1:
Damien Miller0bc1bd82000-11-13 22:57:25 +1100382 k = key_new_private(KEY_RSA1);
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000383 buffer_get_int(&e->input); /* ignored */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100384 buffer_get_bignum(&e->input, k->rsa->n);
385 buffer_get_bignum(&e->input, k->rsa->e);
386 buffer_get_bignum(&e->input, k->rsa->d);
387 buffer_get_bignum(&e->input, k->rsa->iqmp);
Damien Miller95def091999-11-25 00:26:21 +1100388
Damien Millerad833b32000-08-23 10:46:23 +1000389 /* SSH and SSL have p and q swapped */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100390 buffer_get_bignum(&e->input, k->rsa->q); /* p */
391 buffer_get_bignum(&e->input, k->rsa->p); /* q */
Damien Miller95def091999-11-25 00:26:21 +1100392
Damien Millerad833b32000-08-23 10:46:23 +1000393 /* Generate additional parameters */
Ben Lindstromf7297dd2001-07-04 05:02:23 +0000394 rsa_generate_additional_parameters(k->rsa);
Damien Millerad833b32000-08-23 10:46:23 +1000395 break;
396 case 2:
Damien Miller0bc1bd82000-11-13 22:57:25 +1100397 type_name = buffer_get_string(&e->input, NULL);
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000398 type = key_type_from_name(type_name);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100399 xfree(type_name);
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +0000400 switch (type) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100401 case KEY_DSA:
402 k = key_new_private(type);
403 buffer_get_bignum2(&e->input, k->dsa->p);
404 buffer_get_bignum2(&e->input, k->dsa->q);
405 buffer_get_bignum2(&e->input, k->dsa->g);
406 buffer_get_bignum2(&e->input, k->dsa->pub_key);
407 buffer_get_bignum2(&e->input, k->dsa->priv_key);
408 break;
409 case KEY_RSA:
410 k = key_new_private(type);
411 buffer_get_bignum2(&e->input, k->rsa->n);
412 buffer_get_bignum2(&e->input, k->rsa->e);
413 buffer_get_bignum2(&e->input, k->rsa->d);
414 buffer_get_bignum2(&e->input, k->rsa->iqmp);
415 buffer_get_bignum2(&e->input, k->rsa->p);
416 buffer_get_bignum2(&e->input, k->rsa->q);
417
418 /* Generate additional parameters */
Ben Lindstromf7297dd2001-07-04 05:02:23 +0000419 rsa_generate_additional_parameters(k->rsa);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100420 break;
421 default:
Damien Millerad833b32000-08-23 10:46:23 +1000422 buffer_clear(&e->input);
Damien Millerad833b32000-08-23 10:46:23 +1000423 goto send;
Damien Miller95def091999-11-25 00:26:21 +1100424 }
Damien Millerad833b32000-08-23 10:46:23 +1000425 break;
426 }
Damien Millerad833b32000-08-23 10:46:23 +1000427 comment = buffer_get_string(&e->input, NULL);
428 if (k == NULL) {
429 xfree(comment);
430 goto send;
431 }
432 success = 1;
Damien Miller1a534ae2002-01-22 23:26:13 +1100433 if (lookup_identity(k, version) == NULL) {
434 Identity *id = xmalloc(sizeof(Identity));
435 id->key = k;
436 id->comment = comment;
437 TAILQ_INSERT_TAIL(&tab->idlist, id, next);
Damien Millerad833b32000-08-23 10:46:23 +1000438 /* Increment the number of identities. */
439 tab->nentries++;
440 } else {
441 key_free(k);
442 xfree(comment);
443 }
444send:
Damien Miller95def091999-11-25 00:26:21 +1100445 buffer_put_int(&e->output, 1);
Damien Millerad833b32000-08-23 10:46:23 +1000446 buffer_put_char(&e->output,
447 success ? SSH_AGENT_SUCCESS : SSH_AGENT_FAILURE);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000448}
449
Ben Lindstrom3f471632001-07-04 03:53:15 +0000450
451#ifdef SMARTCARD
452static void
453process_add_smartcard_key (SocketEntry *e)
454{
455 Idtab *tab;
456 Key *n = NULL, *k = NULL;
Ben Lindstromf7db3bb2001-08-06 21:35:51 +0000457 char *sc_reader_id = NULL;
Ben Lindstrom3f471632001-07-04 03:53:15 +0000458 int success = 0;
Damien Miller9f0f5c62001-12-21 14:45:46 +1100459
Ben Lindstromf7db3bb2001-08-06 21:35:51 +0000460 sc_reader_id = buffer_get_string(&e->input, NULL);
461 k = sc_get_key(sc_reader_id);
462 xfree(sc_reader_id);
Ben Lindstrom3f471632001-07-04 03:53:15 +0000463
Ben Lindstrom3f471632001-07-04 03:53:15 +0000464 if (k == NULL) {
465 error("sc_get_pubkey failed");
466 goto send;
467 }
468 success = 1;
469
470 tab = idtab_lookup(1);
Damien Millerf3512d92001-07-14 12:14:27 +1000471 k->type = KEY_RSA1;
Damien Miller1a534ae2002-01-22 23:26:13 +1100472 if (lookup_identity(k, 1) == NULL) {
473 Identity *id = xmalloc(sizeof(Identity));
Ben Lindstrom3f471632001-07-04 03:53:15 +0000474 n = key_new(KEY_RSA1);
475 BN_copy(n->rsa->n, k->rsa->n);
476 BN_copy(n->rsa->e, k->rsa->e);
477 RSA_set_method(n->rsa, sc_get_engine());
Damien Miller1a534ae2002-01-22 23:26:13 +1100478 id->key = n;
479 id->comment = xstrdup("rsa1 smartcard");
480 TAILQ_INSERT_TAIL(&tab->idlist, id, next);
Ben Lindstrom3f471632001-07-04 03:53:15 +0000481 tab->nentries++;
482 }
Damien Millerf3512d92001-07-14 12:14:27 +1000483 k->type = KEY_RSA;
Ben Lindstrom3f471632001-07-04 03:53:15 +0000484 tab = idtab_lookup(2);
Damien Miller1a534ae2002-01-22 23:26:13 +1100485 if (lookup_identity(k, 2) == NULL) {
486 Identity *id = xmalloc(sizeof(Identity));
Ben Lindstrom3f471632001-07-04 03:53:15 +0000487 n = key_new(KEY_RSA);
488 BN_copy(n->rsa->n, k->rsa->n);
489 BN_copy(n->rsa->e, k->rsa->e);
490 RSA_set_method(n->rsa, sc_get_engine());
Damien Miller1a534ae2002-01-22 23:26:13 +1100491 id->key = n;
492 id->comment = xstrdup("rsa smartcard");
493 TAILQ_INSERT_TAIL(&tab->idlist, id, next);
Ben Lindstrom3f471632001-07-04 03:53:15 +0000494 tab->nentries++;
495 }
496 key_free(k);
497send:
498 buffer_put_int(&e->output, 1);
499 buffer_put_char(&e->output,
500 success ? SSH_AGENT_SUCCESS : SSH_AGENT_FAILURE);
501}
502
503static void
504process_remove_smartcard_key(SocketEntry *e)
505{
Damien Miller1a534ae2002-01-22 23:26:13 +1100506 Key *k = NULL;
Ben Lindstrom3f471632001-07-04 03:53:15 +0000507 int success = 0;
Ben Lindstromf7db3bb2001-08-06 21:35:51 +0000508 char *sc_reader_id = NULL;
Ben Lindstrom3f471632001-07-04 03:53:15 +0000509
Ben Lindstromf7db3bb2001-08-06 21:35:51 +0000510 sc_reader_id = buffer_get_string(&e->input, NULL);
511 k = sc_get_key(sc_reader_id);
512 xfree(sc_reader_id);
Ben Lindstrom3f471632001-07-04 03:53:15 +0000513
Ben Lindstromf7db3bb2001-08-06 21:35:51 +0000514 if (k == NULL) {
Ben Lindstrom3f471632001-07-04 03:53:15 +0000515 error("sc_get_pubkey failed");
516 } else {
Damien Miller1a534ae2002-01-22 23:26:13 +1100517 Identity *id;
Damien Miller8d4bf172001-07-14 12:13:49 +1000518 k->type = KEY_RSA1;
Damien Miller1a534ae2002-01-22 23:26:13 +1100519 id = lookup_identity(k, 1);
520 if (id != NULL) {
Ben Lindstrom3f471632001-07-04 03:53:15 +0000521 Idtab *tab = idtab_lookup(1);
Damien Miller1a534ae2002-01-22 23:26:13 +1100522 TAILQ_REMOVE(&tab->idlist, id, next);
523 free_identity(id);
Ben Lindstrom3f471632001-07-04 03:53:15 +0000524 tab->nentries--;
525 success = 1;
526 }
Damien Miller8d4bf172001-07-14 12:13:49 +1000527 k->type = KEY_RSA;
Damien Miller1a534ae2002-01-22 23:26:13 +1100528 id = lookup_identity(k, 2);
529 if (id != NULL) {
Ben Lindstrom3f471632001-07-04 03:53:15 +0000530 Idtab *tab = idtab_lookup(2);
Damien Miller1a534ae2002-01-22 23:26:13 +1100531 TAILQ_REMOVE(&tab->idlist, id, next);
532 free_identity(id);
Ben Lindstrom3f471632001-07-04 03:53:15 +0000533 tab->nentries--;
534 success = 1;
535 }
536 key_free(k);
537 }
538
539 buffer_put_int(&e->output, 1);
540 buffer_put_char(&e->output,
541 success ? SSH_AGENT_SUCCESS : SSH_AGENT_FAILURE);
542}
Ben Lindstromffce1472001-08-06 21:57:31 +0000543#endif /* SMARTCARD */
Ben Lindstrom3f471632001-07-04 03:53:15 +0000544
Damien Millerad833b32000-08-23 10:46:23 +1000545/* dispatch incoming messages */
546
Ben Lindstrombba81212001-06-25 05:01:22 +0000547static void
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000548process_message(SocketEntry *e)
549{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000550 u_int msg_len;
551 u_int type;
552 u_char *cp;
Damien Miller95def091999-11-25 00:26:21 +1100553 if (buffer_len(&e->input) < 5)
554 return; /* Incomplete message. */
Damien Miller708d21c2002-01-22 23:18:15 +1100555 cp = buffer_ptr(&e->input);
Damien Miller95def091999-11-25 00:26:21 +1100556 msg_len = GET_32BIT(cp);
557 if (msg_len > 256 * 1024) {
558 shutdown(e->fd, SHUT_RDWR);
559 close(e->fd);
560 e->type = AUTH_UNUSED;
561 return;
562 }
563 if (buffer_len(&e->input) < msg_len + 4)
564 return;
565 buffer_consume(&e->input, 4);
566 type = buffer_get_char(&e->input);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000567
Ben Lindstrom3f471632001-07-04 03:53:15 +0000568 debug("type %d", type);
Damien Miller95def091999-11-25 00:26:21 +1100569 switch (type) {
Damien Millerad833b32000-08-23 10:46:23 +1000570 /* ssh1 */
Damien Miller95def091999-11-25 00:26:21 +1100571 case SSH_AGENTC_RSA_CHALLENGE:
Damien Millerad833b32000-08-23 10:46:23 +1000572 process_authentication_challenge1(e);
573 break;
574 case SSH_AGENTC_REQUEST_RSA_IDENTITIES:
575 process_request_identities(e, 1);
Damien Miller95def091999-11-25 00:26:21 +1100576 break;
577 case SSH_AGENTC_ADD_RSA_IDENTITY:
Damien Millerad833b32000-08-23 10:46:23 +1000578 process_add_identity(e, 1);
Damien Miller95def091999-11-25 00:26:21 +1100579 break;
580 case SSH_AGENTC_REMOVE_RSA_IDENTITY:
Damien Millerad833b32000-08-23 10:46:23 +1000581 process_remove_identity(e, 1);
Damien Miller95def091999-11-25 00:26:21 +1100582 break;
583 case SSH_AGENTC_REMOVE_ALL_RSA_IDENTITIES:
Damien Millerad833b32000-08-23 10:46:23 +1000584 process_remove_all_identities(e, 1);
585 break;
586 /* ssh2 */
587 case SSH2_AGENTC_SIGN_REQUEST:
588 process_sign_request2(e);
589 break;
590 case SSH2_AGENTC_REQUEST_IDENTITIES:
591 process_request_identities(e, 2);
592 break;
593 case SSH2_AGENTC_ADD_IDENTITY:
594 process_add_identity(e, 2);
595 break;
596 case SSH2_AGENTC_REMOVE_IDENTITY:
597 process_remove_identity(e, 2);
598 break;
599 case SSH2_AGENTC_REMOVE_ALL_IDENTITIES:
600 process_remove_all_identities(e, 2);
Damien Miller95def091999-11-25 00:26:21 +1100601 break;
Ben Lindstrom3f471632001-07-04 03:53:15 +0000602#ifdef SMARTCARD
603 case SSH_AGENTC_ADD_SMARTCARD_KEY:
604 process_add_smartcard_key(e);
Damien Miller9f0f5c62001-12-21 14:45:46 +1100605 break;
Ben Lindstrom3f471632001-07-04 03:53:15 +0000606 case SSH_AGENTC_REMOVE_SMARTCARD_KEY:
607 process_remove_smartcard_key(e);
Damien Miller9f0f5c62001-12-21 14:45:46 +1100608 break;
Ben Lindstromffce1472001-08-06 21:57:31 +0000609#endif /* SMARTCARD */
Damien Miller95def091999-11-25 00:26:21 +1100610 default:
611 /* Unknown message. Respond with failure. */
612 error("Unknown message %d", type);
613 buffer_clear(&e->input);
614 buffer_put_int(&e->output, 1);
615 buffer_put_char(&e->output, SSH_AGENT_FAILURE);
616 break;
617 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000618}
619
Ben Lindstrombba81212001-06-25 05:01:22 +0000620static void
Ben Lindstrom65366a82001-12-06 16:32:47 +0000621new_socket(sock_type type, int fd)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000622{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000623 u_int i, old_alloc;
Damien Miller95def091999-11-25 00:26:21 +1100624 if (fcntl(fd, F_SETFL, O_NONBLOCK) < 0)
625 error("fcntl O_NONBLOCK: %s", strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000626
Damien Miller95def091999-11-25 00:26:21 +1100627 if (fd > max_fd)
628 max_fd = fd;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000629
Damien Miller95def091999-11-25 00:26:21 +1100630 for (i = 0; i < sockets_alloc; i++)
631 if (sockets[i].type == AUTH_UNUSED) {
632 sockets[i].fd = fd;
633 sockets[i].type = type;
634 buffer_init(&sockets[i].input);
635 buffer_init(&sockets[i].output);
636 return;
637 }
638 old_alloc = sockets_alloc;
639 sockets_alloc += 10;
640 if (sockets)
641 sockets = xrealloc(sockets, sockets_alloc * sizeof(sockets[0]));
642 else
643 sockets = xmalloc(sockets_alloc * sizeof(sockets[0]));
644 for (i = old_alloc; i < sockets_alloc; i++)
645 sockets[i].type = AUTH_UNUSED;
646 sockets[old_alloc].type = type;
647 sockets[old_alloc].fd = fd;
648 buffer_init(&sockets[old_alloc].input);
649 buffer_init(&sockets[old_alloc].output);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000650}
651
Ben Lindstrombba81212001-06-25 05:01:22 +0000652static int
Ben Lindstroma3d5a4c2001-07-18 15:58:08 +0000653prepare_select(fd_set **fdrp, fd_set **fdwp, int *fdl, int *nallocp)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000654{
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000655 u_int i, sz;
656 int n = 0;
657
658 for (i = 0; i < sockets_alloc; i++) {
Damien Miller95def091999-11-25 00:26:21 +1100659 switch (sockets[i].type) {
660 case AUTH_SOCKET:
661 case AUTH_CONNECTION:
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000662 n = MAX(n, sockets[i].fd);
Damien Miller95def091999-11-25 00:26:21 +1100663 break;
664 case AUTH_UNUSED:
665 break;
666 default:
667 fatal("Unknown socket type %d", sockets[i].type);
668 break;
669 }
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000670 }
671
672 sz = howmany(n+1, NFDBITS) * sizeof(fd_mask);
Ben Lindstroma3d5a4c2001-07-18 15:58:08 +0000673 if (*fdrp == NULL || sz > *nallocp) {
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000674 if (*fdrp)
Ben Lindstrom86ebcb62001-04-04 01:53:20 +0000675 xfree(*fdrp);
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000676 if (*fdwp)
Ben Lindstrom86ebcb62001-04-04 01:53:20 +0000677 xfree(*fdwp);
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000678 *fdrp = xmalloc(sz);
679 *fdwp = xmalloc(sz);
Ben Lindstroma3d5a4c2001-07-18 15:58:08 +0000680 *nallocp = sz;
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000681 }
Ben Lindstroma3d5a4c2001-07-18 15:58:08 +0000682 if (n < *fdl)
683 debug("XXX shrink: %d < %d", n, *fdl);
684 *fdl = n;
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000685 memset(*fdrp, 0, sz);
686 memset(*fdwp, 0, sz);
687
688 for (i = 0; i < sockets_alloc; i++) {
689 switch (sockets[i].type) {
690 case AUTH_SOCKET:
691 case AUTH_CONNECTION:
692 FD_SET(sockets[i].fd, *fdrp);
693 if (buffer_len(&sockets[i].output) > 0)
694 FD_SET(sockets[i].fd, *fdwp);
695 break;
696 default:
697 break;
698 }
699 }
700 return (1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000701}
702
Ben Lindstrombba81212001-06-25 05:01:22 +0000703static void
Damien Miller95def091999-11-25 00:26:21 +1100704after_select(fd_set *readset, fd_set *writeset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000705{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000706 u_int i;
Damien Miller95def091999-11-25 00:26:21 +1100707 int len, sock;
Damien Miller7684ee12000-03-17 23:40:15 +1100708 socklen_t slen;
Damien Miller95def091999-11-25 00:26:21 +1100709 char buf[1024];
710 struct sockaddr_un sunaddr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000711
Damien Miller95def091999-11-25 00:26:21 +1100712 for (i = 0; i < sockets_alloc; i++)
713 switch (sockets[i].type) {
714 case AUTH_UNUSED:
715 break;
716 case AUTH_SOCKET:
717 if (FD_ISSET(sockets[i].fd, readset)) {
Damien Miller7684ee12000-03-17 23:40:15 +1100718 slen = sizeof(sunaddr);
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000719 sock = accept(sockets[i].fd,
720 (struct sockaddr *) &sunaddr, &slen);
Damien Miller95def091999-11-25 00:26:21 +1100721 if (sock < 0) {
Damien Millerc653b892002-02-08 22:05:41 +1100722 error("accept from AUTH_SOCKET: %s",
723 strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +1100724 break;
725 }
726 new_socket(AUTH_CONNECTION, sock);
727 }
728 break;
729 case AUTH_CONNECTION:
730 if (buffer_len(&sockets[i].output) > 0 &&
731 FD_ISSET(sockets[i].fd, writeset)) {
Ben Lindstromb3144e52001-03-06 03:31:34 +0000732 do {
733 len = write(sockets[i].fd,
734 buffer_ptr(&sockets[i].output),
735 buffer_len(&sockets[i].output));
736 if (len == -1 && (errno == EAGAIN ||
737 errno == EINTR))
738 continue;
739 break;
740 } while (1);
Damien Miller95def091999-11-25 00:26:21 +1100741 if (len <= 0) {
742 shutdown(sockets[i].fd, SHUT_RDWR);
743 close(sockets[i].fd);
744 sockets[i].type = AUTH_UNUSED;
Damien Millera552faf2000-04-21 15:55:20 +1000745 buffer_free(&sockets[i].input);
746 buffer_free(&sockets[i].output);
Damien Miller95def091999-11-25 00:26:21 +1100747 break;
748 }
749 buffer_consume(&sockets[i].output, len);
750 }
751 if (FD_ISSET(sockets[i].fd, readset)) {
Ben Lindstromb3144e52001-03-06 03:31:34 +0000752 do {
753 len = read(sockets[i].fd, buf, sizeof(buf));
754 if (len == -1 && (errno == EAGAIN ||
755 errno == EINTR))
756 continue;
757 break;
758 } while (1);
Damien Miller95def091999-11-25 00:26:21 +1100759 if (len <= 0) {
760 shutdown(sockets[i].fd, SHUT_RDWR);
761 close(sockets[i].fd);
762 sockets[i].type = AUTH_UNUSED;
Damien Millera552faf2000-04-21 15:55:20 +1000763 buffer_free(&sockets[i].input);
764 buffer_free(&sockets[i].output);
Damien Miller95def091999-11-25 00:26:21 +1100765 break;
766 }
767 buffer_append(&sockets[i].input, buf, len);
768 process_message(&sockets[i]);
769 }
770 break;
771 default:
772 fatal("Unknown type %d", sockets[i].type);
773 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000774}
775
Ben Lindstrombba81212001-06-25 05:01:22 +0000776static void
Damien Millerc653b892002-02-08 22:05:41 +1100777cleanup_socket(void *p)
Damien Miller792c5111999-10-29 09:47:09 +1000778{
Ben Lindstrom77808ab2001-01-26 05:10:34 +0000779 if (socket_name[0])
780 unlink(socket_name);
781 if (socket_dir[0])
782 rmdir(socket_dir);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000783}
784
Ben Lindstrombba81212001-06-25 05:01:22 +0000785static void
Damien Miller792c5111999-10-29 09:47:09 +1000786cleanup_exit(int i)
787{
Damien Millerc653b892002-02-08 22:05:41 +1100788 cleanup_socket(NULL);
Damien Miller95def091999-11-25 00:26:21 +1100789 exit(i);
Damien Miller792c5111999-10-29 09:47:09 +1000790}
791
Ben Lindstrombba81212001-06-25 05:01:22 +0000792static void
Ben Lindstrom77808ab2001-01-26 05:10:34 +0000793cleanup_handler(int sig)
794{
Damien Millerc653b892002-02-08 22:05:41 +1100795 cleanup_socket(NULL);
Ben Lindstrom77808ab2001-01-26 05:10:34 +0000796 _exit(2);
797}
798
Ben Lindstrombba81212001-06-25 05:01:22 +0000799static void
Ben Lindstrom0250da02001-07-22 20:44:00 +0000800check_parent_exists(int sig)
801{
802 int save_errno = errno;
803
804 if (parent_pid != -1 && kill(parent_pid, 0) < 0) {
805 /* printf("Parent has died - Authentication agent exiting.\n"); */
806 cleanup_handler(sig); /* safe */
807 }
808 signal(SIGALRM, check_parent_exists);
809 alarm(10);
810 errno = save_errno;
811}
812
813static void
Ben Lindstrom28072eb2001-02-10 23:13:41 +0000814usage(void)
Damien Miller792c5111999-10-29 09:47:09 +1000815{
Ben Lindstromddfb1e32001-08-06 22:06:35 +0000816 fprintf(stderr, "Usage: %s [options] [command [args ...]]\n",
Kevin Steves29265862001-01-24 14:06:28 +0000817 __progname);
Ben Lindstromddfb1e32001-08-06 22:06:35 +0000818 fprintf(stderr, "Options:\n");
819 fprintf(stderr, " -c Generate C-shell commands on stdout.\n");
820 fprintf(stderr, " -s Generate Bourne shell commands on stdout.\n");
821 fprintf(stderr, " -k Kill the current agent.\n");
822 fprintf(stderr, " -d Debug mode.\n");
Damien Miller95def091999-11-25 00:26:21 +1100823 exit(1);
Damien Miller792c5111999-10-29 09:47:09 +1000824}
825
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000826int
827main(int ac, char **av)
828{
Ben Lindstroma3d5a4c2001-07-18 15:58:08 +0000829 int sock, c_flag = 0, d_flag = 0, k_flag = 0, s_flag = 0, ch, nalloc;
Damien Miller95def091999-11-25 00:26:21 +1100830 struct sockaddr_un sunaddr;
Ben Lindstrom2c467a22000-12-27 04:57:41 +0000831#ifdef HAVE_SETRLIMIT
Ben Lindstromc72745a2000-12-02 19:03:54 +0000832 struct rlimit rlim;
Ben Lindstrom2c467a22000-12-27 04:57:41 +0000833#endif
Ben Lindstrom3524d692001-05-03 22:59:24 +0000834#ifdef HAVE_CYGWIN
835 int prev_mask;
836#endif
Damien Miller95def091999-11-25 00:26:21 +1100837 pid_t pid;
838 char *shell, *format, *pidstr, pidstrbuf[1 + 3 * sizeof pid];
Damien Miller615f9392000-05-17 22:53:33 +1000839 extern int optind;
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000840 fd_set *readsetp = NULL, *writesetp = NULL;
Kevin Stevesde41bc62000-12-14 00:04:08 +0000841
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000842 SSLeay_add_all_algorithms();
843
Ben Lindstrom49a79c02000-11-17 03:47:20 +0000844 __progname = get_progname(av[0]);
Damien Millerf9b625c2000-07-09 22:42:32 +1000845 init_rng();
Damien Miller60bc5172001-03-19 09:38:15 +1100846 seed_rng();
Kevin Stevesef4eea92001-02-05 12:42:17 +0000847
Damien Millerd0cff3e2000-04-20 23:12:58 +1000848#ifdef __GNU_LIBRARY__
Ben Lindstromd94580c2001-07-04 03:48:02 +0000849 while ((ch = getopt(ac, av, "+cdks")) != -1) {
Damien Millerd0cff3e2000-04-20 23:12:58 +1000850#else /* __GNU_LIBRARY__ */
Ben Lindstromd94580c2001-07-04 03:48:02 +0000851 while ((ch = getopt(ac, av, "cdks")) != -1) {
Damien Millerd0cff3e2000-04-20 23:12:58 +1000852#endif /* __GNU_LIBRARY__ */
Damien Miller95def091999-11-25 00:26:21 +1100853 switch (ch) {
854 case 'c':
855 if (s_flag)
856 usage();
857 c_flag++;
858 break;
859 case 'k':
860 k_flag++;
861 break;
862 case 's':
863 if (c_flag)
864 usage();
865 s_flag++;
866 break;
Ben Lindstromd94580c2001-07-04 03:48:02 +0000867 case 'd':
868 if (d_flag)
869 usage();
870 d_flag++;
871 break;
Damien Miller95def091999-11-25 00:26:21 +1100872 default:
873 usage();
874 }
Damien Miller792c5111999-10-29 09:47:09 +1000875 }
Damien Miller95def091999-11-25 00:26:21 +1100876 ac -= optind;
877 av += optind;
Damien Miller792c5111999-10-29 09:47:09 +1000878
Ben Lindstromd94580c2001-07-04 03:48:02 +0000879 if (ac > 0 && (c_flag || k_flag || s_flag || d_flag))
Damien Miller95def091999-11-25 00:26:21 +1100880 usage();
Damien Miller792c5111999-10-29 09:47:09 +1000881
Ben Lindstromd94580c2001-07-04 03:48:02 +0000882 if (ac == 0 && !c_flag && !k_flag && !s_flag && !d_flag) {
Damien Miller95def091999-11-25 00:26:21 +1100883 shell = getenv("SHELL");
884 if (shell != NULL && strncmp(shell + strlen(shell) - 3, "csh", 3) == 0)
885 c_flag = 1;
Damien Miller792c5111999-10-29 09:47:09 +1000886 }
Damien Miller95def091999-11-25 00:26:21 +1100887 if (k_flag) {
888 pidstr = getenv(SSH_AGENTPID_ENV_NAME);
889 if (pidstr == NULL) {
890 fprintf(stderr, "%s not set, cannot kill agent\n",
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000891 SSH_AGENTPID_ENV_NAME);
Damien Miller95def091999-11-25 00:26:21 +1100892 exit(1);
893 }
894 pid = atoi(pidstr);
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000895 if (pid < 1) {
Damien Miller95def091999-11-25 00:26:21 +1100896 fprintf(stderr, "%s=\"%s\", which is not a good PID\n",
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000897 SSH_AGENTPID_ENV_NAME, pidstr);
Damien Miller95def091999-11-25 00:26:21 +1100898 exit(1);
899 }
900 if (kill(pid, SIGTERM) == -1) {
901 perror("kill");
902 exit(1);
903 }
904 format = c_flag ? "unsetenv %s;\n" : "unset %s;\n";
905 printf(format, SSH_AUTHSOCKET_ENV_NAME);
906 printf(format, SSH_AGENTPID_ENV_NAME);
907 printf("echo Agent pid %d killed;\n", pid);
908 exit(0);
Damien Miller792c5111999-10-29 09:47:09 +1000909 }
Damien Miller95def091999-11-25 00:26:21 +1100910 parent_pid = getpid();
911
912 /* Create private directory for agent socket */
913 strlcpy(socket_dir, "/tmp/ssh-XXXXXXXX", sizeof socket_dir);
914 if (mkdtemp(socket_dir) == NULL) {
915 perror("mkdtemp: private socket dir");
916 exit(1);
Damien Miller792c5111999-10-29 09:47:09 +1000917 }
Damien Miller95def091999-11-25 00:26:21 +1100918 snprintf(socket_name, sizeof socket_name, "%s/agent.%d", socket_dir,
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000919 parent_pid);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000920
Damien Miller5428f641999-11-25 11:54:57 +1100921 /*
922 * Create socket early so it will exist before command gets run from
923 * the parent.
924 */
Damien Miller95def091999-11-25 00:26:21 +1100925 sock = socket(AF_UNIX, SOCK_STREAM, 0);
926 if (sock < 0) {
927 perror("socket");
928 cleanup_exit(1);
Damien Miller792c5111999-10-29 09:47:09 +1000929 }
Damien Miller95def091999-11-25 00:26:21 +1100930 memset(&sunaddr, 0, sizeof(sunaddr));
931 sunaddr.sun_family = AF_UNIX;
932 strlcpy(sunaddr.sun_path, socket_name, sizeof(sunaddr.sun_path));
Ben Lindstrom3524d692001-05-03 22:59:24 +0000933#ifdef HAVE_CYGWIN
934 prev_mask = umask(0177);
935#endif
Damien Miller95def091999-11-25 00:26:21 +1100936 if (bind(sock, (struct sockaddr *) & sunaddr, sizeof(sunaddr)) < 0) {
937 perror("bind");
Ben Lindstrom3524d692001-05-03 22:59:24 +0000938#ifdef HAVE_CYGWIN
939 umask(prev_mask);
940#endif
Damien Miller95def091999-11-25 00:26:21 +1100941 cleanup_exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000942 }
Ben Lindstrom3524d692001-05-03 22:59:24 +0000943#ifdef HAVE_CYGWIN
944 umask(prev_mask);
945#endif
Damien Miller95def091999-11-25 00:26:21 +1100946 if (listen(sock, 5) < 0) {
947 perror("listen");
948 cleanup_exit(1);
949 }
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000950
Damien Miller5428f641999-11-25 11:54:57 +1100951 /*
952 * Fork, and have the parent execute the command, if any, or present
953 * the socket data. The child continues as the authentication agent.
954 */
Ben Lindstromd94580c2001-07-04 03:48:02 +0000955 if (d_flag) {
956 log_init(__progname, SYSLOG_LEVEL_DEBUG1, SYSLOG_FACILITY_AUTH, 1);
957 format = c_flag ? "setenv %s %s;\n" : "%s=%s; export %s;\n";
958 printf(format, SSH_AUTHSOCKET_ENV_NAME, socket_name,
959 SSH_AUTHSOCKET_ENV_NAME);
960 printf("echo Agent pid %d;\n", parent_pid);
961 goto skip;
962 }
Damien Miller95def091999-11-25 00:26:21 +1100963 pid = fork();
964 if (pid == -1) {
965 perror("fork");
Damien Millerc653b892002-02-08 22:05:41 +1100966 cleanup_exit(1);
Damien Miller95def091999-11-25 00:26:21 +1100967 }
968 if (pid != 0) { /* Parent - execute the given command. */
969 close(sock);
970 snprintf(pidstrbuf, sizeof pidstrbuf, "%d", pid);
971 if (ac == 0) {
972 format = c_flag ? "setenv %s %s;\n" : "%s=%s; export %s;\n";
973 printf(format, SSH_AUTHSOCKET_ENV_NAME, socket_name,
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000974 SSH_AUTHSOCKET_ENV_NAME);
Damien Miller95def091999-11-25 00:26:21 +1100975 printf(format, SSH_AGENTPID_ENV_NAME, pidstrbuf,
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000976 SSH_AGENTPID_ENV_NAME);
Damien Miller95def091999-11-25 00:26:21 +1100977 printf("echo Agent pid %d;\n", pid);
978 exit(0);
979 }
Damien Millere4340be2000-09-16 13:29:08 +1100980 if (setenv(SSH_AUTHSOCKET_ENV_NAME, socket_name, 1) == -1 ||
981 setenv(SSH_AGENTPID_ENV_NAME, pidstrbuf, 1) == -1) {
982 perror("setenv");
983 exit(1);
984 }
Damien Miller95def091999-11-25 00:26:21 +1100985 execvp(av[0], av);
986 perror(av[0]);
987 exit(1);
988 }
Damien Millerc653b892002-02-08 22:05:41 +1100989 /* child */
990 log_init(__progname, SYSLOG_LEVEL_INFO, SYSLOG_FACILITY_AUTH, 0);
Ben Lindstrom3fdf8762001-07-22 20:40:24 +0000991
992 if (setsid() == -1) {
Damien Millerc653b892002-02-08 22:05:41 +1100993 error("setsid: %s", strerror(errno));
Ben Lindstrom3fdf8762001-07-22 20:40:24 +0000994 cleanup_exit(1);
995 }
996
997 (void)chdir("/");
Damien Miller95def091999-11-25 00:26:21 +1100998 close(0);
999 close(1);
1000 close(2);
1001
Ben Lindstrom2c467a22000-12-27 04:57:41 +00001002#ifdef HAVE_SETRLIMIT
Ben Lindstromc72745a2000-12-02 19:03:54 +00001003 /* deny core dumps, since memory contains unencrypted private keys */
1004 rlim.rlim_cur = rlim.rlim_max = 0;
1005 if (setrlimit(RLIMIT_CORE, &rlim) < 0) {
Damien Millerc653b892002-02-08 22:05:41 +11001006 error("setrlimit RLIMIT_CORE: %s", strerror(errno));
Ben Lindstromc72745a2000-12-02 19:03:54 +00001007 cleanup_exit(1);
1008 }
Ben Lindstrom2c467a22000-12-27 04:57:41 +00001009#endif
Ben Lindstromd94580c2001-07-04 03:48:02 +00001010
1011skip:
Damien Millerc653b892002-02-08 22:05:41 +11001012 fatal_add_cleanup(cleanup_socket, NULL);
Damien Miller95def091999-11-25 00:26:21 +11001013 new_socket(AUTH_SOCKET, sock);
1014 if (ac > 0) {
1015 signal(SIGALRM, check_parent_exists);
1016 alarm(10);
1017 }
Damien Millerad833b32000-08-23 10:46:23 +10001018 idtab_init();
Damien Miller48bfa9c2001-07-14 12:12:55 +10001019 if (!d_flag)
Ben Lindstromd94580c2001-07-04 03:48:02 +00001020 signal(SIGINT, SIG_IGN);
Damien Miller48bfa9c2001-07-14 12:12:55 +10001021 signal(SIGPIPE, SIG_IGN);
Ben Lindstrom77808ab2001-01-26 05:10:34 +00001022 signal(SIGHUP, cleanup_handler);
1023 signal(SIGTERM, cleanup_handler);
Ben Lindstroma3d5a4c2001-07-18 15:58:08 +00001024 nalloc = 0;
1025
Damien Miller95def091999-11-25 00:26:21 +11001026 while (1) {
Ben Lindstroma3d5a4c2001-07-18 15:58:08 +00001027 prepare_select(&readsetp, &writesetp, &max_fd, &nalloc);
Ben Lindstrom226cfa02001-01-22 05:34:40 +00001028 if (select(max_fd + 1, readsetp, writesetp, NULL, NULL) < 0) {
Damien Miller95def091999-11-25 00:26:21 +11001029 if (errno == EINTR)
1030 continue;
Damien Millerc653b892002-02-08 22:05:41 +11001031 fatal("select: %s", strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +11001032 }
Ben Lindstrom226cfa02001-01-22 05:34:40 +00001033 after_select(readsetp, writesetp);
Damien Miller95def091999-11-25 00:26:21 +11001034 }
1035 /* NOTREACHED */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001036}