blob: a004e32463816cbb51676c74ca4184c9d61b04a8 [file] [log] [blame]
Ben Lindstromddfb1e32001-08-06 22:06:35 +00001/* $OpenBSD: ssh-agent.c,v 1.72 2001/08/03 10:31:30 jakob Exp $ */
Damien Miller792c5111999-10-29 09:47:09 +10002
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003/*
Damien Miller95def091999-11-25 00:26:21 +11004 * Author: Tatu Ylonen <ylo@cs.hut.fi>
5 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
6 * All rights reserved
Damien Miller95def091999-11-25 00:26:21 +11007 * The authentication agent program.
Damien Millerad833b32000-08-23 10:46:23 +10008 *
Damien Millere4340be2000-09-16 13:29:08 +11009 * As far as I am concerned, the code I have written for this software
10 * can be used freely for any purpose. Any derived versions of this
11 * software must be clearly marked as such, and if the derived work is
12 * incompatible with the protocol description in the RFC file, it must be
13 * called by a name other than "ssh" or "Secure Shell".
14 *
Ben Lindstrom44697232001-07-04 03:32:30 +000015 * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved.
Damien Millere4340be2000-09-16 13:29:08 +110016 *
17 * Redistribution and use in source and binary forms, with or without
18 * modification, are permitted provided that the following conditions
19 * are met:
20 * 1. Redistributions of source code must retain the above copyright
21 * notice, this list of conditions and the following disclaimer.
22 * 2. Redistributions in binary form must reproduce the above copyright
23 * notice, this list of conditions and the following disclaimer in the
24 * documentation and/or other materials provided with the distribution.
25 *
26 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
27 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
28 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
29 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
30 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
31 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
32 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
33 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
35 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Damien Miller95def091999-11-25 00:26:21 +110036 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100037
38#include "includes.h"
Ben Lindstromddfb1e32001-08-06 22:06:35 +000039RCSID("$OpenBSD: ssh-agent.c,v 1.72 2001/08/03 10:31:30 jakob Exp $");
Ben Lindstrom226cfa02001-01-22 05:34:40 +000040
41#include <openssl/evp.h>
42#include <openssl/md5.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100043
44#include "ssh.h"
45#include "rsa.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100046#include "buffer.h"
47#include "bufaux.h"
48#include "xmalloc.h"
49#include "packet.h"
50#include "getput.h"
51#include "mpaux.h"
Damien Miller994cf142000-07-21 10:19:44 +100052#include "key.h"
53#include "authfd.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000054#include "cipher.h"
Damien Millerad833b32000-08-23 10:46:23 +100055#include "kex.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
Damien Miller95def091999-11-25 00:26:21 +110064typedef struct {
65 int fd;
66 enum {
67 AUTH_UNUSED, AUTH_SOCKET, AUTH_CONNECTION
68 } type;
69 Buffer input;
70 Buffer output;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100071} SocketEntry;
72
Ben Lindstrom46c16222000-12-22 01:43:59 +000073u_int sockets_alloc = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100074SocketEntry *sockets = NULL;
75
Damien Miller95def091999-11-25 00:26:21 +110076typedef struct {
Damien Millerad833b32000-08-23 10:46:23 +100077 Key *key;
Damien Miller95def091999-11-25 00:26:21 +110078 char *comment;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100079} Identity;
80
Damien Millerad833b32000-08-23 10:46:23 +100081typedef struct {
82 int nentries;
83 Identity *identities;
84} Idtab;
85
86/* private key table, one per protocol version */
87Idtab idtable[3];
Damien Millerd4a8b7e1999-10-27 13:42:43 +100088
89int max_fd = 0;
90
91/* pid of shell == parent of agent */
Damien Miller166fca82000-04-20 07:42:21 +100092pid_t parent_pid = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100093
94/* pathname and directory for AUTH_SOCKET */
95char socket_name[1024];
96char socket_dir[1024];
97
Damien Miller95def091999-11-25 00:26:21 +110098#ifdef HAVE___PROGNAME
99extern char *__progname;
Ben Lindstrom49a79c02000-11-17 03:47:20 +0000100#else
101char *__progname;
102#endif
Damien Miller95def091999-11-25 00:26:21 +1100103
Ben Lindstrombba81212001-06-25 05:01:22 +0000104static void
Damien Millerad833b32000-08-23 10:46:23 +1000105idtab_init(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000106{
Damien Millerad833b32000-08-23 10:46:23 +1000107 int i;
108 for (i = 0; i <=2; i++){
109 idtable[i].identities = NULL;
110 idtable[i].nentries = 0;
111 }
112}
113
114/* return private key table for requested protocol version */
Ben Lindstrombba81212001-06-25 05:01:22 +0000115static Idtab *
Damien Millerad833b32000-08-23 10:46:23 +1000116idtab_lookup(int version)
117{
118 if (version < 1 || version > 2)
119 fatal("internal error, bad protocol version %d", version);
120 return &idtable[version];
121}
122
123/* return matching private key for given public key */
Ben Lindstrombba81212001-06-25 05:01:22 +0000124static Key *
Damien Millerad833b32000-08-23 10:46:23 +1000125lookup_private_key(Key *key, int *idx, int version)
126{
127 int i;
128 Idtab *tab = idtab_lookup(version);
129 for (i = 0; i < tab->nentries; i++) {
130 if (key_equal(key, tab->identities[i].key)) {
131 if (idx != NULL)
132 *idx = i;
133 return tab->identities[i].key;
134 }
135 }
136 return NULL;
137}
138
139/* send list of supported public keys to 'client' */
Ben Lindstrombba81212001-06-25 05:01:22 +0000140static void
Damien Millerad833b32000-08-23 10:46:23 +1000141process_request_identities(SocketEntry *e, int version)
142{
143 Idtab *tab = idtab_lookup(version);
Damien Miller95def091999-11-25 00:26:21 +1100144 Buffer msg;
145 int i;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000146
Damien Miller95def091999-11-25 00:26:21 +1100147 buffer_init(&msg);
Damien Millerad833b32000-08-23 10:46:23 +1000148 buffer_put_char(&msg, (version == 1) ?
149 SSH_AGENT_RSA_IDENTITIES_ANSWER : SSH2_AGENT_IDENTITIES_ANSWER);
150 buffer_put_int(&msg, tab->nentries);
151 for (i = 0; i < tab->nentries; i++) {
152 Identity *id = &tab->identities[i];
Damien Miller0bc1bd82000-11-13 22:57:25 +1100153 if (id->key->type == KEY_RSA1) {
Damien Millerad833b32000-08-23 10:46:23 +1000154 buffer_put_int(&msg, BN_num_bits(id->key->rsa->n));
155 buffer_put_bignum(&msg, id->key->rsa->e);
156 buffer_put_bignum(&msg, id->key->rsa->n);
157 } else {
Ben Lindstrom46c16222000-12-22 01:43:59 +0000158 u_char *blob;
159 u_int blen;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100160 key_to_blob(id->key, &blob, &blen);
Damien Millerad833b32000-08-23 10:46:23 +1000161 buffer_put_string(&msg, blob, blen);
162 xfree(blob);
163 }
164 buffer_put_cstring(&msg, id->comment);
Damien Miller95def091999-11-25 00:26:21 +1100165 }
166 buffer_put_int(&e->output, buffer_len(&msg));
167 buffer_append(&e->output, buffer_ptr(&msg), buffer_len(&msg));
168 buffer_free(&msg);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000169}
170
Damien Millerad833b32000-08-23 10:46:23 +1000171/* ssh1 only */
Ben Lindstrombba81212001-06-25 05:01:22 +0000172static void
Damien Millerad833b32000-08-23 10:46:23 +1000173process_authentication_challenge1(SocketEntry *e)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000174{
Damien Millerad833b32000-08-23 10:46:23 +1000175 Key *key, *private;
176 BIGNUM *challenge;
177 int i, len;
Damien Miller95def091999-11-25 00:26:21 +1100178 Buffer msg;
179 MD5_CTX md;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000180 u_char buf[32], mdbuf[16], session_id[16];
181 u_int response_type;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000182
Damien Miller95def091999-11-25 00:26:21 +1100183 buffer_init(&msg);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100184 key = key_new(KEY_RSA1);
Damien Miller95def091999-11-25 00:26:21 +1100185 challenge = BN_new();
Damien Millerad833b32000-08-23 10:46:23 +1000186
187 buffer_get_int(&e->input); /* ignored */
188 buffer_get_bignum(&e->input, key->rsa->e);
189 buffer_get_bignum(&e->input, key->rsa->n);
Damien Miller95def091999-11-25 00:26:21 +1100190 buffer_get_bignum(&e->input, challenge);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000191
Damien Millerad833b32000-08-23 10:46:23 +1000192 /* Only protocol 1.1 is supported */
193 if (buffer_len(&e->input) == 0)
194 goto failure;
195 buffer_get(&e->input, (char *) session_id, 16);
196 response_type = buffer_get_int(&e->input);
197 if (response_type != 1)
198 goto failure;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000199
Damien Millerad833b32000-08-23 10:46:23 +1000200 private = lookup_private_key(key, NULL, 1);
201 if (private != NULL) {
202 /* Decrypt the challenge using the private key. */
Damien Miller7650bc62001-01-30 09:27:26 +1100203 if (rsa_private_decrypt(challenge, challenge, private->rsa) <= 0)
204 goto failure;
Damien Millerfd7c9111999-11-08 16:15:55 +1100205
Damien Millerad833b32000-08-23 10:46:23 +1000206 /* The response is MD5 of decrypted challenge plus session id. */
207 len = BN_num_bytes(challenge);
208 if (len <= 0 || len > 32) {
209 log("process_authentication_challenge: bad challenge length %d", len);
210 goto failure;
Damien Miller95def091999-11-25 00:26:21 +1100211 }
Damien Millerad833b32000-08-23 10:46:23 +1000212 memset(buf, 0, 32);
213 BN_bn2bin(challenge, buf + 32 - len);
214 MD5_Init(&md);
215 MD5_Update(&md, buf, 32);
216 MD5_Update(&md, session_id, 16);
217 MD5_Final(mdbuf, &md);
218
219 /* Send the response. */
220 buffer_put_char(&msg, SSH_AGENT_RSA_RESPONSE);
221 for (i = 0; i < 16; i++)
222 buffer_put_char(&msg, mdbuf[i]);
223 goto send;
224 }
225
226failure:
227 /* Unknown identity or protocol error. Send failure. */
Damien Miller95def091999-11-25 00:26:21 +1100228 buffer_put_char(&msg, SSH_AGENT_FAILURE);
229send:
230 buffer_put_int(&e->output, buffer_len(&msg));
Damien Millerad833b32000-08-23 10:46:23 +1000231 buffer_append(&e->output, buffer_ptr(&msg), buffer_len(&msg));
232 key_free(key);
Damien Miller95def091999-11-25 00:26:21 +1100233 BN_clear_free(challenge);
Damien Millerad833b32000-08-23 10:46:23 +1000234 buffer_free(&msg);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000235}
236
Damien Millerad833b32000-08-23 10:46:23 +1000237/* ssh2 only */
Ben Lindstrombba81212001-06-25 05:01:22 +0000238static void
Damien Millerad833b32000-08-23 10:46:23 +1000239process_sign_request2(SocketEntry *e)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000240{
Damien Millerad833b32000-08-23 10:46:23 +1000241 extern int datafellows;
242 Key *key, *private;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000243 u_char *blob, *data, *signature = NULL;
244 u_int blen, dlen, slen = 0;
Damien Miller62cee002000-09-23 17:15:56 +1100245 int flags;
Damien Millerad833b32000-08-23 10:46:23 +1000246 Buffer msg;
247 int ok = -1;
248
249 datafellows = 0;
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000250
Damien Millerad833b32000-08-23 10:46:23 +1000251 blob = buffer_get_string(&e->input, &blen);
252 data = buffer_get_string(&e->input, &dlen);
Damien Miller62cee002000-09-23 17:15:56 +1100253
254 flags = buffer_get_int(&e->input);
255 if (flags & SSH_AGENT_OLD_SIGNATURE)
256 datafellows = SSH_BUG_SIGBLOB;
Damien Millerad833b32000-08-23 10:46:23 +1000257
Damien Miller0bc1bd82000-11-13 22:57:25 +1100258 key = key_from_blob(blob, blen);
Damien Millerad833b32000-08-23 10:46:23 +1000259 if (key != NULL) {
260 private = lookup_private_key(key, NULL, 2);
261 if (private != NULL)
Damien Miller0bc1bd82000-11-13 22:57:25 +1100262 ok = key_sign(private, &signature, &slen, data, dlen);
Damien Millerad833b32000-08-23 10:46:23 +1000263 }
264 key_free(key);
265 buffer_init(&msg);
266 if (ok == 0) {
267 buffer_put_char(&msg, SSH2_AGENT_SIGN_RESPONSE);
268 buffer_put_string(&msg, signature, slen);
269 } else {
270 buffer_put_char(&msg, SSH_AGENT_FAILURE);
271 }
272 buffer_put_int(&e->output, buffer_len(&msg));
273 buffer_append(&e->output, buffer_ptr(&msg),
274 buffer_len(&msg));
275 buffer_free(&msg);
276 xfree(data);
277 xfree(blob);
278 if (signature != NULL)
279 xfree(signature);
280}
281
282/* shared */
Ben Lindstrombba81212001-06-25 05:01:22 +0000283static void
Damien Millerad833b32000-08-23 10:46:23 +1000284process_remove_identity(SocketEntry *e, int version)
285{
286 Key *key = NULL, *private;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000287 u_char *blob;
288 u_int blen;
289 u_int bits;
Damien Millerad833b32000-08-23 10:46:23 +1000290 int success = 0;
Damien Miller7e8e8201999-11-16 13:37:16 +1100291
Damien Millerad833b32000-08-23 10:46:23 +1000292 switch(version){
293 case 1:
Damien Miller0bc1bd82000-11-13 22:57:25 +1100294 key = key_new(KEY_RSA1);
Damien Millerad833b32000-08-23 10:46:23 +1000295 bits = buffer_get_int(&e->input);
296 buffer_get_bignum(&e->input, key->rsa->e);
297 buffer_get_bignum(&e->input, key->rsa->n);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000298
Damien Millerad833b32000-08-23 10:46:23 +1000299 if (bits != key_size(key))
300 log("Warning: identity keysize mismatch: actual %d, announced %d",
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000301 key_size(key), bits);
Damien Millerad833b32000-08-23 10:46:23 +1000302 break;
303 case 2:
304 blob = buffer_get_string(&e->input, &blen);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100305 key = key_from_blob(blob, blen);
Damien Millerad833b32000-08-23 10:46:23 +1000306 xfree(blob);
307 break;
308 }
309 if (key != NULL) {
310 int idx;
311 private = lookup_private_key(key, &idx, version);
312 if (private != NULL) {
Damien Miller5428f641999-11-25 11:54:57 +1100313 /*
314 * We have this key. Free the old key. Since we
315 * don\'t want to leave empty slots in the middle of
Ben Lindstrom14920292000-11-21 21:24:55 +0000316 * the array, we actually free the key there and move
317 * all the entries between the empty slot and the end
318 * of the array.
Damien Miller5428f641999-11-25 11:54:57 +1100319 */
Damien Millerad833b32000-08-23 10:46:23 +1000320 Idtab *tab = idtab_lookup(version);
321 key_free(tab->identities[idx].key);
322 xfree(tab->identities[idx].comment);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100323 if (tab->nentries < 1)
324 fatal("process_remove_identity: "
325 "internal error: tab->nentries %d",
326 tab->nentries);
Ben Lindstrom14920292000-11-21 21:24:55 +0000327 if (idx != tab->nentries - 1) {
328 int i;
329 for (i = idx; i < tab->nentries - 1; i++)
330 tab->identities[i] = tab->identities[i+1];
331 }
332 tab->identities[tab->nentries - 1].key = NULL;
333 tab->identities[tab->nentries - 1].comment = NULL;
Damien Millerad833b32000-08-23 10:46:23 +1000334 tab->nentries--;
335 success = 1;
Damien Miller95def091999-11-25 00:26:21 +1100336 }
Damien Millerad833b32000-08-23 10:46:23 +1000337 key_free(key);
338 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000339 buffer_put_int(&e->output, 1);
Damien Millerad833b32000-08-23 10:46:23 +1000340 buffer_put_char(&e->output,
341 success ? SSH_AGENT_SUCCESS : SSH_AGENT_FAILURE);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000342}
343
Ben Lindstrombba81212001-06-25 05:01:22 +0000344static void
Damien Millerad833b32000-08-23 10:46:23 +1000345process_remove_all_identities(SocketEntry *e, int version)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000346{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000347 u_int i;
Damien Millerad833b32000-08-23 10:46:23 +1000348 Idtab *tab = idtab_lookup(version);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000349
Damien Miller95def091999-11-25 00:26:21 +1100350 /* Loop over all identities and clear the keys. */
Damien Millerad833b32000-08-23 10:46:23 +1000351 for (i = 0; i < tab->nentries; i++) {
352 key_free(tab->identities[i].key);
353 xfree(tab->identities[i].comment);
Damien Miller95def091999-11-25 00:26:21 +1100354 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000355
Damien Miller95def091999-11-25 00:26:21 +1100356 /* Mark that there are no identities. */
Damien Millerad833b32000-08-23 10:46:23 +1000357 tab->nentries = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000358
359 /* Send success. */
360 buffer_put_int(&e->output, 1);
361 buffer_put_char(&e->output, SSH_AGENT_SUCCESS);
362 return;
Damien Miller95def091999-11-25 00:26:21 +1100363}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000364
Ben Lindstrombba81212001-06-25 05:01:22 +0000365static void
Damien Millerad833b32000-08-23 10:46:23 +1000366process_add_identity(SocketEntry *e, int version)
Damien Miller95def091999-11-25 00:26:21 +1100367{
Damien Millerad833b32000-08-23 10:46:23 +1000368 Key *k = NULL;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100369 char *type_name;
Damien Millerad833b32000-08-23 10:46:23 +1000370 char *comment;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100371 int type, success = 0;
Damien Millerad833b32000-08-23 10:46:23 +1000372 Idtab *tab = idtab_lookup(version);
Damien Miller95def091999-11-25 00:26:21 +1100373
Damien Millerad833b32000-08-23 10:46:23 +1000374 switch (version) {
375 case 1:
Damien Miller0bc1bd82000-11-13 22:57:25 +1100376 k = key_new_private(KEY_RSA1);
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000377 buffer_get_int(&e->input); /* ignored */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100378 buffer_get_bignum(&e->input, k->rsa->n);
379 buffer_get_bignum(&e->input, k->rsa->e);
380 buffer_get_bignum(&e->input, k->rsa->d);
381 buffer_get_bignum(&e->input, k->rsa->iqmp);
Damien Miller95def091999-11-25 00:26:21 +1100382
Damien Millerad833b32000-08-23 10:46:23 +1000383 /* SSH and SSL have p and q swapped */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100384 buffer_get_bignum(&e->input, k->rsa->q); /* p */
385 buffer_get_bignum(&e->input, k->rsa->p); /* q */
Damien Miller95def091999-11-25 00:26:21 +1100386
Damien Millerad833b32000-08-23 10:46:23 +1000387 /* Generate additional parameters */
Ben Lindstromf7297dd2001-07-04 05:02:23 +0000388 rsa_generate_additional_parameters(k->rsa);
Damien Millerad833b32000-08-23 10:46:23 +1000389 break;
390 case 2:
Damien Miller0bc1bd82000-11-13 22:57:25 +1100391 type_name = buffer_get_string(&e->input, NULL);
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000392 type = key_type_from_name(type_name);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100393 xfree(type_name);
394 switch(type) {
395 case KEY_DSA:
396 k = key_new_private(type);
397 buffer_get_bignum2(&e->input, k->dsa->p);
398 buffer_get_bignum2(&e->input, k->dsa->q);
399 buffer_get_bignum2(&e->input, k->dsa->g);
400 buffer_get_bignum2(&e->input, k->dsa->pub_key);
401 buffer_get_bignum2(&e->input, k->dsa->priv_key);
402 break;
403 case KEY_RSA:
404 k = key_new_private(type);
405 buffer_get_bignum2(&e->input, k->rsa->n);
406 buffer_get_bignum2(&e->input, k->rsa->e);
407 buffer_get_bignum2(&e->input, k->rsa->d);
408 buffer_get_bignum2(&e->input, k->rsa->iqmp);
409 buffer_get_bignum2(&e->input, k->rsa->p);
410 buffer_get_bignum2(&e->input, k->rsa->q);
411
412 /* Generate additional parameters */
Ben Lindstromf7297dd2001-07-04 05:02:23 +0000413 rsa_generate_additional_parameters(k->rsa);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100414 break;
415 default:
Damien Millerad833b32000-08-23 10:46:23 +1000416 buffer_clear(&e->input);
Damien Millerad833b32000-08-23 10:46:23 +1000417 goto send;
Damien Miller95def091999-11-25 00:26:21 +1100418 }
Damien Millerad833b32000-08-23 10:46:23 +1000419 break;
420 }
Damien Millerad833b32000-08-23 10:46:23 +1000421 comment = buffer_get_string(&e->input, NULL);
422 if (k == NULL) {
423 xfree(comment);
424 goto send;
425 }
426 success = 1;
427 if (lookup_private_key(k, NULL, version) == NULL) {
428 if (tab->nentries == 0)
429 tab->identities = xmalloc(sizeof(Identity));
430 else
431 tab->identities = xrealloc(tab->identities,
432 (tab->nentries + 1) * sizeof(Identity));
433 tab->identities[tab->nentries].key = k;
434 tab->identities[tab->nentries].comment = comment;
435 /* Increment the number of identities. */
436 tab->nentries++;
437 } else {
438 key_free(k);
439 xfree(comment);
440 }
441send:
Damien Miller95def091999-11-25 00:26:21 +1100442 buffer_put_int(&e->output, 1);
Damien Millerad833b32000-08-23 10:46:23 +1000443 buffer_put_char(&e->output,
444 success ? SSH_AGENT_SUCCESS : SSH_AGENT_FAILURE);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000445}
446
Ben Lindstrom3f471632001-07-04 03:53:15 +0000447
448#ifdef SMARTCARD
449static void
450process_add_smartcard_key (SocketEntry *e)
451{
452 Idtab *tab;
453 Key *n = NULL, *k = NULL;
Ben Lindstromf7db3bb2001-08-06 21:35:51 +0000454 char *sc_reader_id = NULL;
Ben Lindstrom3f471632001-07-04 03:53:15 +0000455 int success = 0;
Ben Lindstrom3f471632001-07-04 03:53:15 +0000456
Ben Lindstromf7db3bb2001-08-06 21:35:51 +0000457 sc_reader_id = buffer_get_string(&e->input, NULL);
458 k = sc_get_key(sc_reader_id);
459 xfree(sc_reader_id);
Ben Lindstrom3f471632001-07-04 03:53:15 +0000460
Ben Lindstrom3f471632001-07-04 03:53:15 +0000461 if (k == NULL) {
462 error("sc_get_pubkey failed");
463 goto send;
464 }
465 success = 1;
466
467 tab = idtab_lookup(1);
Damien Millerf3512d92001-07-14 12:14:27 +1000468 k->type = KEY_RSA1;
Ben Lindstrom3f471632001-07-04 03:53:15 +0000469 if (lookup_private_key(k, NULL, 1) == NULL) {
470 if (tab->nentries == 0)
471 tab->identities = xmalloc(sizeof(Identity));
472 else
473 tab->identities = xrealloc(tab->identities,
474 (tab->nentries + 1) * sizeof(Identity));
475 n = key_new(KEY_RSA1);
476 BN_copy(n->rsa->n, k->rsa->n);
477 BN_copy(n->rsa->e, k->rsa->e);
478 RSA_set_method(n->rsa, sc_get_engine());
479 tab->identities[tab->nentries].key = n;
480 tab->identities[tab->nentries].comment =
481 xstrdup("rsa1 smartcard");
482 tab->nentries++;
483 }
Damien Millerf3512d92001-07-14 12:14:27 +1000484 k->type = KEY_RSA;
Ben Lindstrom3f471632001-07-04 03:53:15 +0000485 tab = idtab_lookup(2);
486 if (lookup_private_key(k, NULL, 2) == NULL) {
487 if (tab->nentries == 0)
488 tab->identities = xmalloc(sizeof(Identity));
489 else
490 tab->identities = xrealloc(tab->identities,
491 (tab->nentries + 1) * sizeof(Identity));
492 n = key_new(KEY_RSA);
493 BN_copy(n->rsa->n, k->rsa->n);
494 BN_copy(n->rsa->e, k->rsa->e);
495 RSA_set_method(n->rsa, sc_get_engine());
496 tab->identities[tab->nentries].key = n;
497 tab->identities[tab->nentries].comment =
498 xstrdup("rsa smartcard");
499 tab->nentries++;
500 }
501 key_free(k);
502send:
503 buffer_put_int(&e->output, 1);
504 buffer_put_char(&e->output,
505 success ? SSH_AGENT_SUCCESS : SSH_AGENT_FAILURE);
506}
507
508static void
509process_remove_smartcard_key(SocketEntry *e)
510{
511 Key *k = NULL, *private;
512 int idx;
513 int success = 0;
Ben Lindstromf7db3bb2001-08-06 21:35:51 +0000514 char *sc_reader_id = NULL;
Ben Lindstrom3f471632001-07-04 03:53:15 +0000515
Ben Lindstromf7db3bb2001-08-06 21:35:51 +0000516 sc_reader_id = buffer_get_string(&e->input, NULL);
517 k = sc_get_key(sc_reader_id);
518 xfree(sc_reader_id);
Ben Lindstrom3f471632001-07-04 03:53:15 +0000519
Ben Lindstromf7db3bb2001-08-06 21:35:51 +0000520 if (k == NULL) {
Ben Lindstrom3f471632001-07-04 03:53:15 +0000521 error("sc_get_pubkey failed");
522 } else {
Damien Miller8d4bf172001-07-14 12:13:49 +1000523 k->type = KEY_RSA1;
Ben Lindstrom3f471632001-07-04 03:53:15 +0000524 private = lookup_private_key(k, &idx, 1);
525 if (private != NULL) {
526 Idtab *tab = idtab_lookup(1);
527 key_free(tab->identities[idx].key);
528 xfree(tab->identities[idx].comment);
529 if (idx != tab->nentries)
530 tab->identities[idx] = tab->identities[tab->nentries];
531 tab->nentries--;
532 success = 1;
533 }
Damien Miller8d4bf172001-07-14 12:13:49 +1000534 k->type = KEY_RSA;
Ben Lindstrom3f471632001-07-04 03:53:15 +0000535 private = lookup_private_key(k, &idx, 2);
536 if (private != NULL) {
537 Idtab *tab = idtab_lookup(2);
538 key_free(tab->identities[idx].key);
539 xfree(tab->identities[idx].comment);
540 if (idx != tab->nentries)
541 tab->identities[idx] = tab->identities[tab->nentries];
542 tab->nentries--;
543 success = 1;
544 }
545 key_free(k);
546 }
547
548 buffer_put_int(&e->output, 1);
549 buffer_put_char(&e->output,
550 success ? SSH_AGENT_SUCCESS : SSH_AGENT_FAILURE);
551}
Ben Lindstromffce1472001-08-06 21:57:31 +0000552#endif /* SMARTCARD */
Ben Lindstrom3f471632001-07-04 03:53:15 +0000553
Damien Millerad833b32000-08-23 10:46:23 +1000554/* dispatch incoming messages */
555
Ben Lindstrombba81212001-06-25 05:01:22 +0000556static void
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000557process_message(SocketEntry *e)
558{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000559 u_int msg_len;
560 u_int type;
561 u_char *cp;
Damien Miller95def091999-11-25 00:26:21 +1100562 if (buffer_len(&e->input) < 5)
563 return; /* Incomplete message. */
Ben Lindstrom46c16222000-12-22 01:43:59 +0000564 cp = (u_char *) buffer_ptr(&e->input);
Damien Miller95def091999-11-25 00:26:21 +1100565 msg_len = GET_32BIT(cp);
566 if (msg_len > 256 * 1024) {
567 shutdown(e->fd, SHUT_RDWR);
568 close(e->fd);
569 e->type = AUTH_UNUSED;
570 return;
571 }
572 if (buffer_len(&e->input) < msg_len + 4)
573 return;
574 buffer_consume(&e->input, 4);
575 type = buffer_get_char(&e->input);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000576
Ben Lindstrom3f471632001-07-04 03:53:15 +0000577 debug("type %d", type);
Damien Miller95def091999-11-25 00:26:21 +1100578 switch (type) {
Damien Millerad833b32000-08-23 10:46:23 +1000579 /* ssh1 */
Damien Miller95def091999-11-25 00:26:21 +1100580 case SSH_AGENTC_RSA_CHALLENGE:
Damien Millerad833b32000-08-23 10:46:23 +1000581 process_authentication_challenge1(e);
582 break;
583 case SSH_AGENTC_REQUEST_RSA_IDENTITIES:
584 process_request_identities(e, 1);
Damien Miller95def091999-11-25 00:26:21 +1100585 break;
586 case SSH_AGENTC_ADD_RSA_IDENTITY:
Damien Millerad833b32000-08-23 10:46:23 +1000587 process_add_identity(e, 1);
Damien Miller95def091999-11-25 00:26:21 +1100588 break;
589 case SSH_AGENTC_REMOVE_RSA_IDENTITY:
Damien Millerad833b32000-08-23 10:46:23 +1000590 process_remove_identity(e, 1);
Damien Miller95def091999-11-25 00:26:21 +1100591 break;
592 case SSH_AGENTC_REMOVE_ALL_RSA_IDENTITIES:
Damien Millerad833b32000-08-23 10:46:23 +1000593 process_remove_all_identities(e, 1);
594 break;
595 /* ssh2 */
596 case SSH2_AGENTC_SIGN_REQUEST:
597 process_sign_request2(e);
598 break;
599 case SSH2_AGENTC_REQUEST_IDENTITIES:
600 process_request_identities(e, 2);
601 break;
602 case SSH2_AGENTC_ADD_IDENTITY:
603 process_add_identity(e, 2);
604 break;
605 case SSH2_AGENTC_REMOVE_IDENTITY:
606 process_remove_identity(e, 2);
607 break;
608 case SSH2_AGENTC_REMOVE_ALL_IDENTITIES:
609 process_remove_all_identities(e, 2);
Damien Miller95def091999-11-25 00:26:21 +1100610 break;
Ben Lindstrom3f471632001-07-04 03:53:15 +0000611#ifdef SMARTCARD
612 case SSH_AGENTC_ADD_SMARTCARD_KEY:
613 process_add_smartcard_key(e);
614 break;
615 case SSH_AGENTC_REMOVE_SMARTCARD_KEY:
616 process_remove_smartcard_key(e);
617 break;
Ben Lindstromffce1472001-08-06 21:57:31 +0000618#endif /* SMARTCARD */
Damien Miller95def091999-11-25 00:26:21 +1100619 default:
620 /* Unknown message. Respond with failure. */
621 error("Unknown message %d", type);
622 buffer_clear(&e->input);
623 buffer_put_int(&e->output, 1);
624 buffer_put_char(&e->output, SSH_AGENT_FAILURE);
625 break;
626 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000627}
628
Ben Lindstrombba81212001-06-25 05:01:22 +0000629static void
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000630new_socket(int type, int fd)
631{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000632 u_int i, old_alloc;
Damien Miller95def091999-11-25 00:26:21 +1100633 if (fcntl(fd, F_SETFL, O_NONBLOCK) < 0)
634 error("fcntl O_NONBLOCK: %s", strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000635
Damien Miller95def091999-11-25 00:26:21 +1100636 if (fd > max_fd)
637 max_fd = fd;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000638
Damien Miller95def091999-11-25 00:26:21 +1100639 for (i = 0; i < sockets_alloc; i++)
640 if (sockets[i].type == AUTH_UNUSED) {
641 sockets[i].fd = fd;
642 sockets[i].type = type;
643 buffer_init(&sockets[i].input);
644 buffer_init(&sockets[i].output);
645 return;
646 }
647 old_alloc = sockets_alloc;
648 sockets_alloc += 10;
649 if (sockets)
650 sockets = xrealloc(sockets, sockets_alloc * sizeof(sockets[0]));
651 else
652 sockets = xmalloc(sockets_alloc * sizeof(sockets[0]));
653 for (i = old_alloc; i < sockets_alloc; i++)
654 sockets[i].type = AUTH_UNUSED;
655 sockets[old_alloc].type = type;
656 sockets[old_alloc].fd = fd;
657 buffer_init(&sockets[old_alloc].input);
658 buffer_init(&sockets[old_alloc].output);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000659}
660
Ben Lindstrombba81212001-06-25 05:01:22 +0000661static int
Ben Lindstroma3d5a4c2001-07-18 15:58:08 +0000662prepare_select(fd_set **fdrp, fd_set **fdwp, int *fdl, int *nallocp)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000663{
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000664 u_int i, sz;
665 int n = 0;
666
667 for (i = 0; i < sockets_alloc; i++) {
Damien Miller95def091999-11-25 00:26:21 +1100668 switch (sockets[i].type) {
669 case AUTH_SOCKET:
670 case AUTH_CONNECTION:
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000671 n = MAX(n, sockets[i].fd);
Damien Miller95def091999-11-25 00:26:21 +1100672 break;
673 case AUTH_UNUSED:
674 break;
675 default:
676 fatal("Unknown socket type %d", sockets[i].type);
677 break;
678 }
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000679 }
680
681 sz = howmany(n+1, NFDBITS) * sizeof(fd_mask);
Ben Lindstroma3d5a4c2001-07-18 15:58:08 +0000682 if (*fdrp == NULL || sz > *nallocp) {
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000683 if (*fdrp)
Ben Lindstrom86ebcb62001-04-04 01:53:20 +0000684 xfree(*fdrp);
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000685 if (*fdwp)
Ben Lindstrom86ebcb62001-04-04 01:53:20 +0000686 xfree(*fdwp);
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000687 *fdrp = xmalloc(sz);
688 *fdwp = xmalloc(sz);
Ben Lindstroma3d5a4c2001-07-18 15:58:08 +0000689 *nallocp = sz;
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000690 }
Ben Lindstroma3d5a4c2001-07-18 15:58:08 +0000691 if (n < *fdl)
692 debug("XXX shrink: %d < %d", n, *fdl);
693 *fdl = n;
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000694 memset(*fdrp, 0, sz);
695 memset(*fdwp, 0, sz);
696
697 for (i = 0; i < sockets_alloc; i++) {
698 switch (sockets[i].type) {
699 case AUTH_SOCKET:
700 case AUTH_CONNECTION:
701 FD_SET(sockets[i].fd, *fdrp);
702 if (buffer_len(&sockets[i].output) > 0)
703 FD_SET(sockets[i].fd, *fdwp);
704 break;
705 default:
706 break;
707 }
708 }
709 return (1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000710}
711
Ben Lindstrombba81212001-06-25 05:01:22 +0000712static void
Damien Miller95def091999-11-25 00:26:21 +1100713after_select(fd_set *readset, fd_set *writeset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000714{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000715 u_int i;
Damien Miller95def091999-11-25 00:26:21 +1100716 int len, sock;
Damien Miller7684ee12000-03-17 23:40:15 +1100717 socklen_t slen;
Damien Miller95def091999-11-25 00:26:21 +1100718 char buf[1024];
719 struct sockaddr_un sunaddr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000720
Damien Miller95def091999-11-25 00:26:21 +1100721 for (i = 0; i < sockets_alloc; i++)
722 switch (sockets[i].type) {
723 case AUTH_UNUSED:
724 break;
725 case AUTH_SOCKET:
726 if (FD_ISSET(sockets[i].fd, readset)) {
Damien Miller7684ee12000-03-17 23:40:15 +1100727 slen = sizeof(sunaddr);
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000728 sock = accept(sockets[i].fd,
729 (struct sockaddr *) &sunaddr, &slen);
Damien Miller95def091999-11-25 00:26:21 +1100730 if (sock < 0) {
731 perror("accept from AUTH_SOCKET");
732 break;
733 }
734 new_socket(AUTH_CONNECTION, sock);
735 }
736 break;
737 case AUTH_CONNECTION:
738 if (buffer_len(&sockets[i].output) > 0 &&
739 FD_ISSET(sockets[i].fd, writeset)) {
Ben Lindstromb3144e52001-03-06 03:31:34 +0000740 do {
741 len = write(sockets[i].fd,
742 buffer_ptr(&sockets[i].output),
743 buffer_len(&sockets[i].output));
744 if (len == -1 && (errno == EAGAIN ||
745 errno == EINTR))
746 continue;
747 break;
748 } while (1);
Damien Miller95def091999-11-25 00:26:21 +1100749 if (len <= 0) {
750 shutdown(sockets[i].fd, SHUT_RDWR);
751 close(sockets[i].fd);
752 sockets[i].type = AUTH_UNUSED;
Damien Millera552faf2000-04-21 15:55:20 +1000753 buffer_free(&sockets[i].input);
754 buffer_free(&sockets[i].output);
Damien Miller95def091999-11-25 00:26:21 +1100755 break;
756 }
757 buffer_consume(&sockets[i].output, len);
758 }
759 if (FD_ISSET(sockets[i].fd, readset)) {
Ben Lindstromb3144e52001-03-06 03:31:34 +0000760 do {
761 len = read(sockets[i].fd, buf, sizeof(buf));
762 if (len == -1 && (errno == EAGAIN ||
763 errno == EINTR))
764 continue;
765 break;
766 } while (1);
Damien Miller95def091999-11-25 00:26:21 +1100767 if (len <= 0) {
768 shutdown(sockets[i].fd, SHUT_RDWR);
769 close(sockets[i].fd);
770 sockets[i].type = AUTH_UNUSED;
Damien Millera552faf2000-04-21 15:55:20 +1000771 buffer_free(&sockets[i].input);
772 buffer_free(&sockets[i].output);
Damien Miller95def091999-11-25 00:26:21 +1100773 break;
774 }
775 buffer_append(&sockets[i].input, buf, len);
776 process_message(&sockets[i]);
777 }
778 break;
779 default:
780 fatal("Unknown type %d", sockets[i].type);
781 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000782}
783
Ben Lindstrombba81212001-06-25 05:01:22 +0000784static void
Damien Miller792c5111999-10-29 09:47:09 +1000785cleanup_socket(void)
786{
Ben Lindstrom77808ab2001-01-26 05:10:34 +0000787 if (socket_name[0])
788 unlink(socket_name);
789 if (socket_dir[0])
790 rmdir(socket_dir);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000791}
792
Ben Lindstrombba81212001-06-25 05:01:22 +0000793static void
Damien Miller792c5111999-10-29 09:47:09 +1000794cleanup_exit(int i)
795{
Damien Miller95def091999-11-25 00:26:21 +1100796 cleanup_socket();
797 exit(i);
Damien Miller792c5111999-10-29 09:47:09 +1000798}
799
Ben Lindstrombba81212001-06-25 05:01:22 +0000800static void
Ben Lindstrom77808ab2001-01-26 05:10:34 +0000801cleanup_handler(int sig)
802{
803 cleanup_socket();
804 _exit(2);
805}
806
Ben Lindstrombba81212001-06-25 05:01:22 +0000807static void
Ben Lindstrom0250da02001-07-22 20:44:00 +0000808check_parent_exists(int sig)
809{
810 int save_errno = errno;
811
812 if (parent_pid != -1 && kill(parent_pid, 0) < 0) {
813 /* printf("Parent has died - Authentication agent exiting.\n"); */
814 cleanup_handler(sig); /* safe */
815 }
816 signal(SIGALRM, check_parent_exists);
817 alarm(10);
818 errno = save_errno;
819}
820
821static void
Ben Lindstrom28072eb2001-02-10 23:13:41 +0000822usage(void)
Damien Miller792c5111999-10-29 09:47:09 +1000823{
Ben Lindstromddfb1e32001-08-06 22:06:35 +0000824 fprintf(stderr, "Usage: %s [options] [command [args ...]]\n",
Kevin Steves29265862001-01-24 14:06:28 +0000825 __progname);
Ben Lindstromddfb1e32001-08-06 22:06:35 +0000826 fprintf(stderr, "Options:\n");
827 fprintf(stderr, " -c Generate C-shell commands on stdout.\n");
828 fprintf(stderr, " -s Generate Bourne shell commands on stdout.\n");
829 fprintf(stderr, " -k Kill the current agent.\n");
830 fprintf(stderr, " -d Debug mode.\n");
Damien Miller95def091999-11-25 00:26:21 +1100831 exit(1);
Damien Miller792c5111999-10-29 09:47:09 +1000832}
833
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000834int
835main(int ac, char **av)
836{
Ben Lindstroma3d5a4c2001-07-18 15:58:08 +0000837 int sock, c_flag = 0, d_flag = 0, k_flag = 0, s_flag = 0, ch, nalloc;
Damien Miller95def091999-11-25 00:26:21 +1100838 struct sockaddr_un sunaddr;
Ben Lindstrom2c467a22000-12-27 04:57:41 +0000839#ifdef HAVE_SETRLIMIT
Ben Lindstromc72745a2000-12-02 19:03:54 +0000840 struct rlimit rlim;
Ben Lindstrom2c467a22000-12-27 04:57:41 +0000841#endif
Ben Lindstrom3524d692001-05-03 22:59:24 +0000842#ifdef HAVE_CYGWIN
843 int prev_mask;
844#endif
Damien Miller95def091999-11-25 00:26:21 +1100845 pid_t pid;
846 char *shell, *format, *pidstr, pidstrbuf[1 + 3 * sizeof pid];
Damien Miller615f9392000-05-17 22:53:33 +1000847 extern int optind;
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000848 fd_set *readsetp = NULL, *writesetp = NULL;
Kevin Stevesde41bc62000-12-14 00:04:08 +0000849
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000850 SSLeay_add_all_algorithms();
851
Ben Lindstrom49a79c02000-11-17 03:47:20 +0000852 __progname = get_progname(av[0]);
Damien Millerf9b625c2000-07-09 22:42:32 +1000853 init_rng();
Damien Miller60bc5172001-03-19 09:38:15 +1100854 seed_rng();
Kevin Stevesef4eea92001-02-05 12:42:17 +0000855
Damien Millerd0cff3e2000-04-20 23:12:58 +1000856#ifdef __GNU_LIBRARY__
Ben Lindstromd94580c2001-07-04 03:48:02 +0000857 while ((ch = getopt(ac, av, "+cdks")) != -1) {
Damien Millerd0cff3e2000-04-20 23:12:58 +1000858#else /* __GNU_LIBRARY__ */
Ben Lindstromd94580c2001-07-04 03:48:02 +0000859 while ((ch = getopt(ac, av, "cdks")) != -1) {
Damien Millerd0cff3e2000-04-20 23:12:58 +1000860#endif /* __GNU_LIBRARY__ */
Damien Miller95def091999-11-25 00:26:21 +1100861 switch (ch) {
862 case 'c':
863 if (s_flag)
864 usage();
865 c_flag++;
866 break;
867 case 'k':
868 k_flag++;
869 break;
870 case 's':
871 if (c_flag)
872 usage();
873 s_flag++;
874 break;
Ben Lindstromd94580c2001-07-04 03:48:02 +0000875 case 'd':
876 if (d_flag)
877 usage();
878 d_flag++;
879 break;
Damien Miller95def091999-11-25 00:26:21 +1100880 default:
881 usage();
882 }
Damien Miller792c5111999-10-29 09:47:09 +1000883 }
Damien Miller95def091999-11-25 00:26:21 +1100884 ac -= optind;
885 av += optind;
Damien Miller792c5111999-10-29 09:47:09 +1000886
Ben Lindstromd94580c2001-07-04 03:48:02 +0000887 if (ac > 0 && (c_flag || k_flag || s_flag || d_flag))
Damien Miller95def091999-11-25 00:26:21 +1100888 usage();
Damien Miller792c5111999-10-29 09:47:09 +1000889
Ben Lindstromd94580c2001-07-04 03:48:02 +0000890 if (ac == 0 && !c_flag && !k_flag && !s_flag && !d_flag) {
Damien Miller95def091999-11-25 00:26:21 +1100891 shell = getenv("SHELL");
892 if (shell != NULL && strncmp(shell + strlen(shell) - 3, "csh", 3) == 0)
893 c_flag = 1;
Damien Miller792c5111999-10-29 09:47:09 +1000894 }
Damien Miller95def091999-11-25 00:26:21 +1100895 if (k_flag) {
896 pidstr = getenv(SSH_AGENTPID_ENV_NAME);
897 if (pidstr == NULL) {
898 fprintf(stderr, "%s not set, cannot kill agent\n",
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000899 SSH_AGENTPID_ENV_NAME);
Damien Miller95def091999-11-25 00:26:21 +1100900 exit(1);
901 }
902 pid = atoi(pidstr);
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000903 if (pid < 1) {
Damien Miller95def091999-11-25 00:26:21 +1100904 fprintf(stderr, "%s=\"%s\", which is not a good PID\n",
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000905 SSH_AGENTPID_ENV_NAME, pidstr);
Damien Miller95def091999-11-25 00:26:21 +1100906 exit(1);
907 }
908 if (kill(pid, SIGTERM) == -1) {
909 perror("kill");
910 exit(1);
911 }
912 format = c_flag ? "unsetenv %s;\n" : "unset %s;\n";
913 printf(format, SSH_AUTHSOCKET_ENV_NAME);
914 printf(format, SSH_AGENTPID_ENV_NAME);
915 printf("echo Agent pid %d killed;\n", pid);
916 exit(0);
Damien Miller792c5111999-10-29 09:47:09 +1000917 }
Damien Miller95def091999-11-25 00:26:21 +1100918 parent_pid = getpid();
919
920 /* Create private directory for agent socket */
921 strlcpy(socket_dir, "/tmp/ssh-XXXXXXXX", sizeof socket_dir);
922 if (mkdtemp(socket_dir) == NULL) {
923 perror("mkdtemp: private socket dir");
924 exit(1);
Damien Miller792c5111999-10-29 09:47:09 +1000925 }
Damien Miller95def091999-11-25 00:26:21 +1100926 snprintf(socket_name, sizeof socket_name, "%s/agent.%d", socket_dir,
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000927 parent_pid);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000928
Damien Miller5428f641999-11-25 11:54:57 +1100929 /*
930 * Create socket early so it will exist before command gets run from
931 * the parent.
932 */
Damien Miller95def091999-11-25 00:26:21 +1100933 sock = socket(AF_UNIX, SOCK_STREAM, 0);
934 if (sock < 0) {
935 perror("socket");
936 cleanup_exit(1);
Damien Miller792c5111999-10-29 09:47:09 +1000937 }
Damien Miller95def091999-11-25 00:26:21 +1100938 memset(&sunaddr, 0, sizeof(sunaddr));
939 sunaddr.sun_family = AF_UNIX;
940 strlcpy(sunaddr.sun_path, socket_name, sizeof(sunaddr.sun_path));
Ben Lindstrom3524d692001-05-03 22:59:24 +0000941#ifdef HAVE_CYGWIN
942 prev_mask = umask(0177);
943#endif
Damien Miller95def091999-11-25 00:26:21 +1100944 if (bind(sock, (struct sockaddr *) & sunaddr, sizeof(sunaddr)) < 0) {
945 perror("bind");
Ben Lindstrom3524d692001-05-03 22:59:24 +0000946#ifdef HAVE_CYGWIN
947 umask(prev_mask);
948#endif
Damien Miller95def091999-11-25 00:26:21 +1100949 cleanup_exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000950 }
Ben Lindstrom3524d692001-05-03 22:59:24 +0000951#ifdef HAVE_CYGWIN
952 umask(prev_mask);
953#endif
Damien Miller95def091999-11-25 00:26:21 +1100954 if (listen(sock, 5) < 0) {
955 perror("listen");
956 cleanup_exit(1);
957 }
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000958
Damien Miller5428f641999-11-25 11:54:57 +1100959 /*
960 * Fork, and have the parent execute the command, if any, or present
961 * the socket data. The child continues as the authentication agent.
962 */
Ben Lindstromd94580c2001-07-04 03:48:02 +0000963 if (d_flag) {
964 log_init(__progname, SYSLOG_LEVEL_DEBUG1, SYSLOG_FACILITY_AUTH, 1);
965 format = c_flag ? "setenv %s %s;\n" : "%s=%s; export %s;\n";
966 printf(format, SSH_AUTHSOCKET_ENV_NAME, socket_name,
967 SSH_AUTHSOCKET_ENV_NAME);
968 printf("echo Agent pid %d;\n", parent_pid);
969 goto skip;
970 }
Damien Miller95def091999-11-25 00:26:21 +1100971 pid = fork();
972 if (pid == -1) {
973 perror("fork");
974 exit(1);
975 }
976 if (pid != 0) { /* Parent - execute the given command. */
977 close(sock);
978 snprintf(pidstrbuf, sizeof pidstrbuf, "%d", pid);
979 if (ac == 0) {
980 format = c_flag ? "setenv %s %s;\n" : "%s=%s; export %s;\n";
981 printf(format, SSH_AUTHSOCKET_ENV_NAME, socket_name,
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000982 SSH_AUTHSOCKET_ENV_NAME);
Damien Miller95def091999-11-25 00:26:21 +1100983 printf(format, SSH_AGENTPID_ENV_NAME, pidstrbuf,
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000984 SSH_AGENTPID_ENV_NAME);
Damien Miller95def091999-11-25 00:26:21 +1100985 printf("echo Agent pid %d;\n", pid);
986 exit(0);
987 }
Damien Millere4340be2000-09-16 13:29:08 +1100988 if (setenv(SSH_AUTHSOCKET_ENV_NAME, socket_name, 1) == -1 ||
989 setenv(SSH_AGENTPID_ENV_NAME, pidstrbuf, 1) == -1) {
990 perror("setenv");
991 exit(1);
992 }
Damien Miller95def091999-11-25 00:26:21 +1100993 execvp(av[0], av);
994 perror(av[0]);
995 exit(1);
996 }
Ben Lindstrom3fdf8762001-07-22 20:40:24 +0000997
998 if (setsid() == -1) {
999 perror("setsid");
1000 cleanup_exit(1);
1001 }
1002
1003 (void)chdir("/");
Damien Miller95def091999-11-25 00:26:21 +11001004 close(0);
1005 close(1);
1006 close(2);
1007
Ben Lindstrom2c467a22000-12-27 04:57:41 +00001008#ifdef HAVE_SETRLIMIT
Ben Lindstromc72745a2000-12-02 19:03:54 +00001009 /* deny core dumps, since memory contains unencrypted private keys */
1010 rlim.rlim_cur = rlim.rlim_max = 0;
1011 if (setrlimit(RLIMIT_CORE, &rlim) < 0) {
1012 perror("setrlimit rlimit_core failed");
1013 cleanup_exit(1);
1014 }
Ben Lindstrom2c467a22000-12-27 04:57:41 +00001015#endif
Ben Lindstromd94580c2001-07-04 03:48:02 +00001016
1017skip:
Damien Miller95def091999-11-25 00:26:21 +11001018 if (atexit(cleanup_socket) < 0) {
1019 perror("atexit");
1020 cleanup_exit(1);
1021 }
1022 new_socket(AUTH_SOCKET, sock);
1023 if (ac > 0) {
1024 signal(SIGALRM, check_parent_exists);
1025 alarm(10);
1026 }
Damien Millerad833b32000-08-23 10:46:23 +10001027 idtab_init();
Damien Miller48bfa9c2001-07-14 12:12:55 +10001028 if (!d_flag)
Ben Lindstromd94580c2001-07-04 03:48:02 +00001029 signal(SIGINT, SIG_IGN);
Damien Miller48bfa9c2001-07-14 12:12:55 +10001030 signal(SIGPIPE, SIG_IGN);
Ben Lindstrom77808ab2001-01-26 05:10:34 +00001031 signal(SIGHUP, cleanup_handler);
1032 signal(SIGTERM, cleanup_handler);
Ben Lindstroma3d5a4c2001-07-18 15:58:08 +00001033 nalloc = 0;
1034
Damien Miller95def091999-11-25 00:26:21 +11001035 while (1) {
Ben Lindstroma3d5a4c2001-07-18 15:58:08 +00001036 prepare_select(&readsetp, &writesetp, &max_fd, &nalloc);
Ben Lindstrom226cfa02001-01-22 05:34:40 +00001037 if (select(max_fd + 1, readsetp, writesetp, NULL, NULL) < 0) {
Damien Miller95def091999-11-25 00:26:21 +11001038 if (errno == EINTR)
1039 continue;
1040 exit(1);
1041 }
Ben Lindstrom226cfa02001-01-22 05:34:40 +00001042 after_select(readsetp, writesetp);
Damien Miller95def091999-11-25 00:26:21 +11001043 }
1044 /* NOTREACHED */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001045}