blob: f8183b40032eb73f41c0f03115f4f7ca4dd142e3 [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 Lindstrom0936a5b2002-03-26 03:17:42 +000037RCSID("$OpenBSD: ssh-agent.c,v 1.84 2002/03/25 17:34:27 markus 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
Ben Lindstrom3f471632001-07-04 03:53:15 +000060#include "scard.h"
Ben Lindstrombcc18082001-08-06 21:59:25 +000061#endif
Ben Lindstrom3f471632001-07-04 03:53:15 +000062
Ben Lindstrom65366a82001-12-06 16:32:47 +000063typedef enum {
64 AUTH_UNUSED,
65 AUTH_SOCKET,
66 AUTH_CONNECTION
67} sock_type;
68
Damien Miller95def091999-11-25 00:26:21 +110069typedef struct {
70 int fd;
Ben Lindstrom65366a82001-12-06 16:32:47 +000071 sock_type type;
Damien Miller95def091999-11-25 00:26:21 +110072 Buffer input;
73 Buffer output;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100074} SocketEntry;
75
Ben Lindstrom46c16222000-12-22 01:43:59 +000076u_int sockets_alloc = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100077SocketEntry *sockets = NULL;
78
Damien Miller1a534ae2002-01-22 23:26:13 +110079typedef struct identity {
80 TAILQ_ENTRY(identity) next;
Damien Millerad833b32000-08-23 10:46:23 +100081 Key *key;
Damien Miller95def091999-11-25 00:26:21 +110082 char *comment;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100083} Identity;
84
Damien Millerad833b32000-08-23 10:46:23 +100085typedef struct {
86 int nentries;
Damien Miller1a534ae2002-01-22 23:26:13 +110087 TAILQ_HEAD(idqueue, identity) idlist;
Damien Millerad833b32000-08-23 10:46:23 +100088} Idtab;
89
90/* private key table, one per protocol version */
91Idtab idtable[3];
Damien Millerd4a8b7e1999-10-27 13:42:43 +100092
93int max_fd = 0;
94
95/* pid of shell == parent of agent */
Damien Miller166fca82000-04-20 07:42:21 +100096pid_t parent_pid = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100097
98/* pathname and directory for AUTH_SOCKET */
99char socket_name[1024];
100char socket_dir[1024];
101
Damien Miller95def091999-11-25 00:26:21 +1100102#ifdef HAVE___PROGNAME
103extern char *__progname;
Ben Lindstrom49a79c02000-11-17 03:47:20 +0000104#else
105char *__progname;
106#endif
Damien Miller95def091999-11-25 00:26:21 +1100107
Ben Lindstrombba81212001-06-25 05:01:22 +0000108static void
Damien Millerad833b32000-08-23 10:46:23 +1000109idtab_init(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000110{
Damien Millerad833b32000-08-23 10:46:23 +1000111 int i;
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +0000112 for (i = 0; i <=2; i++) {
Damien Miller1a534ae2002-01-22 23:26:13 +1100113 TAILQ_INIT(&idtable[i].idlist);
Damien Millerad833b32000-08-23 10:46:23 +1000114 idtable[i].nentries = 0;
115 }
116}
117
118/* return private key table for requested protocol version */
Ben Lindstrombba81212001-06-25 05:01:22 +0000119static Idtab *
Damien Millerad833b32000-08-23 10:46:23 +1000120idtab_lookup(int version)
121{
122 if (version < 1 || version > 2)
123 fatal("internal error, bad protocol version %d", version);
124 return &idtable[version];
125}
126
127/* return matching private key for given public key */
Damien Miller1a534ae2002-01-22 23:26:13 +1100128static Identity *
129lookup_identity(Key *key, int version)
Damien Millerad833b32000-08-23 10:46:23 +1000130{
Damien Miller1a534ae2002-01-22 23:26:13 +1100131 Identity *id;
132
Damien Millerad833b32000-08-23 10:46:23 +1000133 Idtab *tab = idtab_lookup(version);
Damien Miller1a534ae2002-01-22 23:26:13 +1100134 TAILQ_FOREACH(id, &tab->idlist, next) {
135 if (key_equal(key, id->key))
136 return (id);
Damien Millerad833b32000-08-23 10:46:23 +1000137 }
Damien Miller1a534ae2002-01-22 23:26:13 +1100138 return (NULL);
139}
140
141static void
142free_identity(Identity *id)
143{
144 key_free(id->key);
145 xfree(id->comment);
146 xfree(id);
Damien Millerad833b32000-08-23 10:46:23 +1000147}
148
149/* send list of supported public keys to 'client' */
Ben Lindstrombba81212001-06-25 05:01:22 +0000150static void
Damien Millerad833b32000-08-23 10:46:23 +1000151process_request_identities(SocketEntry *e, int version)
152{
153 Idtab *tab = idtab_lookup(version);
Damien Miller95def091999-11-25 00:26:21 +1100154 Buffer msg;
Damien Miller1a534ae2002-01-22 23:26:13 +1100155 Identity *id;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000156
Damien Miller95def091999-11-25 00:26:21 +1100157 buffer_init(&msg);
Damien Millerad833b32000-08-23 10:46:23 +1000158 buffer_put_char(&msg, (version == 1) ?
159 SSH_AGENT_RSA_IDENTITIES_ANSWER : SSH2_AGENT_IDENTITIES_ANSWER);
160 buffer_put_int(&msg, tab->nentries);
Damien Miller1a534ae2002-01-22 23:26:13 +1100161 TAILQ_FOREACH(id, &tab->idlist, next) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100162 if (id->key->type == KEY_RSA1) {
Damien Millerad833b32000-08-23 10:46:23 +1000163 buffer_put_int(&msg, BN_num_bits(id->key->rsa->n));
164 buffer_put_bignum(&msg, id->key->rsa->e);
165 buffer_put_bignum(&msg, id->key->rsa->n);
166 } else {
Ben Lindstrom46c16222000-12-22 01:43:59 +0000167 u_char *blob;
168 u_int blen;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100169 key_to_blob(id->key, &blob, &blen);
Damien Millerad833b32000-08-23 10:46:23 +1000170 buffer_put_string(&msg, blob, blen);
171 xfree(blob);
172 }
173 buffer_put_cstring(&msg, id->comment);
Damien Miller95def091999-11-25 00:26:21 +1100174 }
175 buffer_put_int(&e->output, buffer_len(&msg));
176 buffer_append(&e->output, buffer_ptr(&msg), buffer_len(&msg));
177 buffer_free(&msg);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000178}
179
Damien Millerad833b32000-08-23 10:46:23 +1000180/* ssh1 only */
Ben Lindstrombba81212001-06-25 05:01:22 +0000181static void
Damien Millerad833b32000-08-23 10:46:23 +1000182process_authentication_challenge1(SocketEntry *e)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000183{
Damien Miller1a534ae2002-01-22 23:26:13 +1100184 Identity *id;
185 Key *key;
Damien Millerad833b32000-08-23 10:46:23 +1000186 BIGNUM *challenge;
187 int i, len;
Damien Miller95def091999-11-25 00:26:21 +1100188 Buffer msg;
189 MD5_CTX md;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000190 u_char buf[32], mdbuf[16], session_id[16];
191 u_int response_type;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000192
Damien Miller95def091999-11-25 00:26:21 +1100193 buffer_init(&msg);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100194 key = key_new(KEY_RSA1);
Damien Millerda755162002-01-22 23:09:22 +1100195 if ((challenge = BN_new()) == NULL)
196 fatal("process_authentication_challenge1: BN_new failed");
Damien Millerad833b32000-08-23 10:46:23 +1000197
198 buffer_get_int(&e->input); /* ignored */
199 buffer_get_bignum(&e->input, key->rsa->e);
200 buffer_get_bignum(&e->input, key->rsa->n);
Damien Miller95def091999-11-25 00:26:21 +1100201 buffer_get_bignum(&e->input, challenge);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000202
Damien Millerad833b32000-08-23 10:46:23 +1000203 /* Only protocol 1.1 is supported */
204 if (buffer_len(&e->input) == 0)
205 goto failure;
Damien Miller4a8ed542002-01-22 23:33:31 +1100206 buffer_get(&e->input, session_id, 16);
Damien Millerad833b32000-08-23 10:46:23 +1000207 response_type = buffer_get_int(&e->input);
208 if (response_type != 1)
209 goto failure;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000210
Damien Miller1a534ae2002-01-22 23:26:13 +1100211 id = lookup_identity(key, 1);
212 if (id != NULL) {
213 Key *private = id->key;
Damien Millerad833b32000-08-23 10:46:23 +1000214 /* Decrypt the challenge using the private key. */
Damien Miller7650bc62001-01-30 09:27:26 +1100215 if (rsa_private_decrypt(challenge, challenge, private->rsa) <= 0)
216 goto failure;
Damien Millerfd7c9111999-11-08 16:15:55 +1100217
Damien Millerad833b32000-08-23 10:46:23 +1000218 /* The response is MD5 of decrypted challenge plus session id. */
219 len = BN_num_bytes(challenge);
220 if (len <= 0 || len > 32) {
221 log("process_authentication_challenge: bad challenge length %d", len);
222 goto failure;
Damien Miller95def091999-11-25 00:26:21 +1100223 }
Damien Millerad833b32000-08-23 10:46:23 +1000224 memset(buf, 0, 32);
225 BN_bn2bin(challenge, buf + 32 - len);
226 MD5_Init(&md);
227 MD5_Update(&md, buf, 32);
228 MD5_Update(&md, session_id, 16);
229 MD5_Final(mdbuf, &md);
230
231 /* Send the response. */
232 buffer_put_char(&msg, SSH_AGENT_RSA_RESPONSE);
233 for (i = 0; i < 16; i++)
234 buffer_put_char(&msg, mdbuf[i]);
235 goto send;
236 }
237
238failure:
239 /* Unknown identity or protocol error. Send failure. */
Damien Miller95def091999-11-25 00:26:21 +1100240 buffer_put_char(&msg, SSH_AGENT_FAILURE);
241send:
242 buffer_put_int(&e->output, buffer_len(&msg));
Damien Millerad833b32000-08-23 10:46:23 +1000243 buffer_append(&e->output, buffer_ptr(&msg), buffer_len(&msg));
244 key_free(key);
Damien Miller95def091999-11-25 00:26:21 +1100245 BN_clear_free(challenge);
Damien Millerad833b32000-08-23 10:46:23 +1000246 buffer_free(&msg);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000247}
248
Damien Millerad833b32000-08-23 10:46:23 +1000249/* ssh2 only */
Ben Lindstrombba81212001-06-25 05:01:22 +0000250static void
Damien Millerad833b32000-08-23 10:46:23 +1000251process_sign_request2(SocketEntry *e)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000252{
Damien Millerad833b32000-08-23 10:46:23 +1000253 extern int datafellows;
Damien Miller1a534ae2002-01-22 23:26:13 +1100254 Key *key;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000255 u_char *blob, *data, *signature = NULL;
256 u_int blen, dlen, slen = 0;
Damien Miller62cee002000-09-23 17:15:56 +1100257 int flags;
Damien Millerad833b32000-08-23 10:46:23 +1000258 Buffer msg;
259 int ok = -1;
260
261 datafellows = 0;
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000262
Damien Millerad833b32000-08-23 10:46:23 +1000263 blob = buffer_get_string(&e->input, &blen);
264 data = buffer_get_string(&e->input, &dlen);
Damien Miller62cee002000-09-23 17:15:56 +1100265
266 flags = buffer_get_int(&e->input);
267 if (flags & SSH_AGENT_OLD_SIGNATURE)
268 datafellows = SSH_BUG_SIGBLOB;
Damien Millerad833b32000-08-23 10:46:23 +1000269
Damien Miller0bc1bd82000-11-13 22:57:25 +1100270 key = key_from_blob(blob, blen);
Damien Millerad833b32000-08-23 10:46:23 +1000271 if (key != NULL) {
Damien Miller1a534ae2002-01-22 23:26:13 +1100272 Identity *id = lookup_identity(key, 2);
273 if (id != NULL)
274 ok = key_sign(id->key, &signature, &slen, data, dlen);
Damien Millerad833b32000-08-23 10:46:23 +1000275 }
276 key_free(key);
277 buffer_init(&msg);
278 if (ok == 0) {
279 buffer_put_char(&msg, SSH2_AGENT_SIGN_RESPONSE);
280 buffer_put_string(&msg, signature, slen);
281 } else {
282 buffer_put_char(&msg, SSH_AGENT_FAILURE);
283 }
284 buffer_put_int(&e->output, buffer_len(&msg));
285 buffer_append(&e->output, buffer_ptr(&msg),
286 buffer_len(&msg));
287 buffer_free(&msg);
288 xfree(data);
289 xfree(blob);
290 if (signature != NULL)
291 xfree(signature);
292}
293
294/* shared */
Ben Lindstrombba81212001-06-25 05:01:22 +0000295static void
Damien Millerad833b32000-08-23 10:46:23 +1000296process_remove_identity(SocketEntry *e, int version)
297{
Damien Miller1a534ae2002-01-22 23:26:13 +1100298 Key *key = NULL;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000299 u_char *blob;
300 u_int blen;
301 u_int bits;
Damien Millerad833b32000-08-23 10:46:23 +1000302 int success = 0;
Damien Miller7e8e8201999-11-16 13:37:16 +1100303
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +0000304 switch (version) {
Damien Millerad833b32000-08-23 10:46:23 +1000305 case 1:
Damien Miller0bc1bd82000-11-13 22:57:25 +1100306 key = key_new(KEY_RSA1);
Damien Millerad833b32000-08-23 10:46:23 +1000307 bits = buffer_get_int(&e->input);
308 buffer_get_bignum(&e->input, key->rsa->e);
309 buffer_get_bignum(&e->input, key->rsa->n);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000310
Damien Millerad833b32000-08-23 10:46:23 +1000311 if (bits != key_size(key))
312 log("Warning: identity keysize mismatch: actual %d, announced %d",
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000313 key_size(key), bits);
Damien Millerad833b32000-08-23 10:46:23 +1000314 break;
315 case 2:
316 blob = buffer_get_string(&e->input, &blen);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100317 key = key_from_blob(blob, blen);
Damien Millerad833b32000-08-23 10:46:23 +1000318 xfree(blob);
319 break;
320 }
321 if (key != NULL) {
Damien Miller1a534ae2002-01-22 23:26:13 +1100322 Identity *id = lookup_identity(key, version);
323 if (id != NULL) {
Damien Miller5428f641999-11-25 11:54:57 +1100324 /*
325 * We have this key. Free the old key. Since we
326 * don\'t want to leave empty slots in the middle of
Ben Lindstrom14920292000-11-21 21:24:55 +0000327 * the array, we actually free the key there and move
328 * all the entries between the empty slot and the end
329 * of the array.
Damien Miller5428f641999-11-25 11:54:57 +1100330 */
Damien Millerad833b32000-08-23 10:46:23 +1000331 Idtab *tab = idtab_lookup(version);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100332 if (tab->nentries < 1)
333 fatal("process_remove_identity: "
334 "internal error: tab->nentries %d",
335 tab->nentries);
Damien Miller1a534ae2002-01-22 23:26:13 +1100336 TAILQ_REMOVE(&tab->idlist, id, next);
337 free_identity(id);
Damien Millerad833b32000-08-23 10:46:23 +1000338 tab->nentries--;
339 success = 1;
Damien Miller95def091999-11-25 00:26:21 +1100340 }
Damien Millerad833b32000-08-23 10:46:23 +1000341 key_free(key);
342 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000343 buffer_put_int(&e->output, 1);
Damien Millerad833b32000-08-23 10:46:23 +1000344 buffer_put_char(&e->output,
345 success ? SSH_AGENT_SUCCESS : SSH_AGENT_FAILURE);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000346}
347
Ben Lindstrombba81212001-06-25 05:01:22 +0000348static void
Damien Millerad833b32000-08-23 10:46:23 +1000349process_remove_all_identities(SocketEntry *e, int version)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000350{
Damien Millerad833b32000-08-23 10:46:23 +1000351 Idtab *tab = idtab_lookup(version);
Damien Miller1a534ae2002-01-22 23:26:13 +1100352 Identity *id;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000353
Damien Miller95def091999-11-25 00:26:21 +1100354 /* Loop over all identities and clear the keys. */
Damien Miller1a534ae2002-01-22 23:26:13 +1100355 for (id = TAILQ_FIRST(&tab->idlist); id;
356 id = TAILQ_FIRST(&tab->idlist)) {
357 TAILQ_REMOVE(&tab->idlist, id, next);
358 free_identity(id);
Damien Miller95def091999-11-25 00:26:21 +1100359 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000360
Damien Miller95def091999-11-25 00:26:21 +1100361 /* Mark that there are no identities. */
Damien Millerad833b32000-08-23 10:46:23 +1000362 tab->nentries = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000363
364 /* Send success. */
365 buffer_put_int(&e->output, 1);
366 buffer_put_char(&e->output, SSH_AGENT_SUCCESS);
367 return;
Damien Miller95def091999-11-25 00:26:21 +1100368}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000369
Ben Lindstrombba81212001-06-25 05:01:22 +0000370static void
Damien Millerad833b32000-08-23 10:46:23 +1000371process_add_identity(SocketEntry *e, int version)
Damien Miller95def091999-11-25 00:26:21 +1100372{
Damien Millerad833b32000-08-23 10:46:23 +1000373 Key *k = NULL;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100374 char *type_name;
Damien Millerad833b32000-08-23 10:46:23 +1000375 char *comment;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100376 int type, success = 0;
Damien Millerad833b32000-08-23 10:46:23 +1000377 Idtab *tab = idtab_lookup(version);
Damien Miller95def091999-11-25 00:26:21 +1100378
Damien Millerad833b32000-08-23 10:46:23 +1000379 switch (version) {
380 case 1:
Damien Miller0bc1bd82000-11-13 22:57:25 +1100381 k = key_new_private(KEY_RSA1);
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000382 buffer_get_int(&e->input); /* ignored */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100383 buffer_get_bignum(&e->input, k->rsa->n);
384 buffer_get_bignum(&e->input, k->rsa->e);
385 buffer_get_bignum(&e->input, k->rsa->d);
386 buffer_get_bignum(&e->input, k->rsa->iqmp);
Damien Miller95def091999-11-25 00:26:21 +1100387
Damien Millerad833b32000-08-23 10:46:23 +1000388 /* SSH and SSL have p and q swapped */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100389 buffer_get_bignum(&e->input, k->rsa->q); /* p */
390 buffer_get_bignum(&e->input, k->rsa->p); /* q */
Damien Miller95def091999-11-25 00:26:21 +1100391
Damien Millerad833b32000-08-23 10:46:23 +1000392 /* Generate additional parameters */
Ben Lindstromf7297dd2001-07-04 05:02:23 +0000393 rsa_generate_additional_parameters(k->rsa);
Damien Millerad833b32000-08-23 10:46:23 +1000394 break;
395 case 2:
Damien Miller0bc1bd82000-11-13 22:57:25 +1100396 type_name = buffer_get_string(&e->input, NULL);
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000397 type = key_type_from_name(type_name);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100398 xfree(type_name);
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +0000399 switch (type) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100400 case KEY_DSA:
401 k = key_new_private(type);
402 buffer_get_bignum2(&e->input, k->dsa->p);
403 buffer_get_bignum2(&e->input, k->dsa->q);
404 buffer_get_bignum2(&e->input, k->dsa->g);
405 buffer_get_bignum2(&e->input, k->dsa->pub_key);
406 buffer_get_bignum2(&e->input, k->dsa->priv_key);
407 break;
408 case KEY_RSA:
409 k = key_new_private(type);
410 buffer_get_bignum2(&e->input, k->rsa->n);
411 buffer_get_bignum2(&e->input, k->rsa->e);
412 buffer_get_bignum2(&e->input, k->rsa->d);
413 buffer_get_bignum2(&e->input, k->rsa->iqmp);
414 buffer_get_bignum2(&e->input, k->rsa->p);
415 buffer_get_bignum2(&e->input, k->rsa->q);
416
417 /* Generate additional parameters */
Ben Lindstromf7297dd2001-07-04 05:02:23 +0000418 rsa_generate_additional_parameters(k->rsa);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100419 break;
420 default:
Damien Millerad833b32000-08-23 10:46:23 +1000421 buffer_clear(&e->input);
Damien Millerad833b32000-08-23 10:46:23 +1000422 goto send;
Damien Miller95def091999-11-25 00:26:21 +1100423 }
Damien Millerad833b32000-08-23 10:46:23 +1000424 break;
425 }
Damien Millerad833b32000-08-23 10:46:23 +1000426 comment = buffer_get_string(&e->input, NULL);
427 if (k == NULL) {
428 xfree(comment);
429 goto send;
430 }
431 success = 1;
Damien Miller1a534ae2002-01-22 23:26:13 +1100432 if (lookup_identity(k, version) == NULL) {
433 Identity *id = xmalloc(sizeof(Identity));
434 id->key = k;
435 id->comment = comment;
436 TAILQ_INSERT_TAIL(&tab->idlist, id, next);
Damien Millerad833b32000-08-23 10:46:23 +1000437 /* Increment the number of identities. */
438 tab->nentries++;
439 } else {
440 key_free(k);
441 xfree(comment);
442 }
443send:
Damien Miller95def091999-11-25 00:26:21 +1100444 buffer_put_int(&e->output, 1);
Damien Millerad833b32000-08-23 10:46:23 +1000445 buffer_put_char(&e->output,
446 success ? SSH_AGENT_SUCCESS : SSH_AGENT_FAILURE);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000447}
448
Ben Lindstrom3f471632001-07-04 03:53:15 +0000449
450#ifdef SMARTCARD
451static void
452process_add_smartcard_key (SocketEntry *e)
453{
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000454 Identity *id;
Ben Lindstrom3f471632001-07-04 03:53:15 +0000455 Idtab *tab;
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000456 Key **keys, *k;
Ben Lindstromba72d302002-03-22 03:51:06 +0000457 char *sc_reader_id = NULL, *pin;
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000458 int i, version, 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);
Ben Lindstromba72d302002-03-22 03:51:06 +0000461 pin = buffer_get_string(&e->input, NULL);
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000462 keys = sc_get_keys(sc_reader_id, pin);
Ben Lindstromf7db3bb2001-08-06 21:35:51 +0000463 xfree(sc_reader_id);
Ben Lindstromba72d302002-03-22 03:51:06 +0000464 xfree(pin);
Ben Lindstrom3f471632001-07-04 03:53:15 +0000465
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000466 if (keys == NULL || keys[0] == NULL) {
467 error("sc_get_keys failed");
Ben Lindstrom3f471632001-07-04 03:53:15 +0000468 goto send;
469 }
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000470 for (i = 0; keys[i] != NULL; i++) {
471 k = keys[i];
472 version = k->type == KEY_RSA1 ? 1 : 2;
473 tab = idtab_lookup(version);
474 if (lookup_identity(k, version) == NULL) {
475 id = xmalloc(sizeof(Identity));
476 id->key = k;
477 id->comment = xstrdup("smartcard key");
478 TAILQ_INSERT_TAIL(&tab->idlist, id, next);
479 tab->nentries++;
480 success = 1;
481 } else {
482 key_free(k);
483 }
484 keys[i] = NULL;
Ben Lindstrom3f471632001-07-04 03:53:15 +0000485 }
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000486 xfree(keys);
Ben Lindstrom3f471632001-07-04 03:53:15 +0000487send:
488 buffer_put_int(&e->output, 1);
489 buffer_put_char(&e->output,
490 success ? SSH_AGENT_SUCCESS : SSH_AGENT_FAILURE);
491}
492
493static void
494process_remove_smartcard_key(SocketEntry *e)
495{
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000496 Identity *id;
497 Idtab *tab;
498 Key **keys, *k = NULL;
Ben Lindstromba72d302002-03-22 03:51:06 +0000499 char *sc_reader_id = NULL, *pin;
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000500 int i, version, success = 0;
Ben Lindstrom3f471632001-07-04 03:53:15 +0000501
Ben Lindstromf7db3bb2001-08-06 21:35:51 +0000502 sc_reader_id = buffer_get_string(&e->input, NULL);
Ben Lindstromba72d302002-03-22 03:51:06 +0000503 pin = buffer_get_string(&e->input, NULL);
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000504 keys = sc_get_keys(sc_reader_id, pin);
Ben Lindstromf7db3bb2001-08-06 21:35:51 +0000505 xfree(sc_reader_id);
Ben Lindstromba72d302002-03-22 03:51:06 +0000506 xfree(pin);
Ben Lindstrom3f471632001-07-04 03:53:15 +0000507
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000508 if (keys == NULL || keys[0] == NULL) {
509 error("sc_get_keys failed");
510 goto send;
511 }
512 for (i = 0; keys[i] != NULL; i++) {
513 k = keys[i];
514 version = k->type == KEY_RSA1 ? 1 : 2;
515 if ((id = lookup_identity(k, version)) != NULL) {
516 tab = idtab_lookup(version);
517 TAILQ_REMOVE(&tab->idlist, id, next);
Ben Lindstrom3f471632001-07-04 03:53:15 +0000518 tab->nentries--;
Damien Miller1a534ae2002-01-22 23:26:13 +1100519 free_identity(id);
Ben Lindstrom3f471632001-07-04 03:53:15 +0000520 success = 1;
521 }
522 key_free(k);
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000523 keys[i] = NULL;
Ben Lindstrom3f471632001-07-04 03:53:15 +0000524 }
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000525 xfree(keys);
526send:
Ben Lindstrom3f471632001-07-04 03:53:15 +0000527 buffer_put_int(&e->output, 1);
528 buffer_put_char(&e->output,
529 success ? SSH_AGENT_SUCCESS : SSH_AGENT_FAILURE);
530}
Ben Lindstromffce1472001-08-06 21:57:31 +0000531#endif /* SMARTCARD */
Ben Lindstrom3f471632001-07-04 03:53:15 +0000532
Damien Millerad833b32000-08-23 10:46:23 +1000533/* dispatch incoming messages */
534
Ben Lindstrombba81212001-06-25 05:01:22 +0000535static void
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000536process_message(SocketEntry *e)
537{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000538 u_int msg_len;
539 u_int type;
540 u_char *cp;
Damien Miller95def091999-11-25 00:26:21 +1100541 if (buffer_len(&e->input) < 5)
542 return; /* Incomplete message. */
Damien Miller708d21c2002-01-22 23:18:15 +1100543 cp = buffer_ptr(&e->input);
Damien Miller95def091999-11-25 00:26:21 +1100544 msg_len = GET_32BIT(cp);
545 if (msg_len > 256 * 1024) {
546 shutdown(e->fd, SHUT_RDWR);
547 close(e->fd);
548 e->type = AUTH_UNUSED;
549 return;
550 }
551 if (buffer_len(&e->input) < msg_len + 4)
552 return;
553 buffer_consume(&e->input, 4);
554 type = buffer_get_char(&e->input);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000555
Ben Lindstrom3f471632001-07-04 03:53:15 +0000556 debug("type %d", type);
Damien Miller95def091999-11-25 00:26:21 +1100557 switch (type) {
Damien Millerad833b32000-08-23 10:46:23 +1000558 /* ssh1 */
Damien Miller95def091999-11-25 00:26:21 +1100559 case SSH_AGENTC_RSA_CHALLENGE:
Damien Millerad833b32000-08-23 10:46:23 +1000560 process_authentication_challenge1(e);
561 break;
562 case SSH_AGENTC_REQUEST_RSA_IDENTITIES:
563 process_request_identities(e, 1);
Damien Miller95def091999-11-25 00:26:21 +1100564 break;
565 case SSH_AGENTC_ADD_RSA_IDENTITY:
Damien Millerad833b32000-08-23 10:46:23 +1000566 process_add_identity(e, 1);
Damien Miller95def091999-11-25 00:26:21 +1100567 break;
568 case SSH_AGENTC_REMOVE_RSA_IDENTITY:
Damien Millerad833b32000-08-23 10:46:23 +1000569 process_remove_identity(e, 1);
Damien Miller95def091999-11-25 00:26:21 +1100570 break;
571 case SSH_AGENTC_REMOVE_ALL_RSA_IDENTITIES:
Damien Millerad833b32000-08-23 10:46:23 +1000572 process_remove_all_identities(e, 1);
573 break;
574 /* ssh2 */
575 case SSH2_AGENTC_SIGN_REQUEST:
576 process_sign_request2(e);
577 break;
578 case SSH2_AGENTC_REQUEST_IDENTITIES:
579 process_request_identities(e, 2);
580 break;
581 case SSH2_AGENTC_ADD_IDENTITY:
582 process_add_identity(e, 2);
583 break;
584 case SSH2_AGENTC_REMOVE_IDENTITY:
585 process_remove_identity(e, 2);
586 break;
587 case SSH2_AGENTC_REMOVE_ALL_IDENTITIES:
588 process_remove_all_identities(e, 2);
Damien Miller95def091999-11-25 00:26:21 +1100589 break;
Ben Lindstrom3f471632001-07-04 03:53:15 +0000590#ifdef SMARTCARD
591 case SSH_AGENTC_ADD_SMARTCARD_KEY:
592 process_add_smartcard_key(e);
Damien Miller9f0f5c62001-12-21 14:45:46 +1100593 break;
Ben Lindstrom3f471632001-07-04 03:53:15 +0000594 case SSH_AGENTC_REMOVE_SMARTCARD_KEY:
595 process_remove_smartcard_key(e);
Damien Miller9f0f5c62001-12-21 14:45:46 +1100596 break;
Ben Lindstromffce1472001-08-06 21:57:31 +0000597#endif /* SMARTCARD */
Damien Miller95def091999-11-25 00:26:21 +1100598 default:
599 /* Unknown message. Respond with failure. */
600 error("Unknown message %d", type);
601 buffer_clear(&e->input);
602 buffer_put_int(&e->output, 1);
603 buffer_put_char(&e->output, SSH_AGENT_FAILURE);
604 break;
605 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000606}
607
Ben Lindstrombba81212001-06-25 05:01:22 +0000608static void
Ben Lindstrom65366a82001-12-06 16:32:47 +0000609new_socket(sock_type type, int fd)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000610{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000611 u_int i, old_alloc;
Damien Miller95def091999-11-25 00:26:21 +1100612 if (fcntl(fd, F_SETFL, O_NONBLOCK) < 0)
613 error("fcntl O_NONBLOCK: %s", strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000614
Damien Miller95def091999-11-25 00:26:21 +1100615 if (fd > max_fd)
616 max_fd = fd;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000617
Damien Miller95def091999-11-25 00:26:21 +1100618 for (i = 0; i < sockets_alloc; i++)
619 if (sockets[i].type == AUTH_UNUSED) {
620 sockets[i].fd = fd;
621 sockets[i].type = type;
622 buffer_init(&sockets[i].input);
623 buffer_init(&sockets[i].output);
624 return;
625 }
626 old_alloc = sockets_alloc;
627 sockets_alloc += 10;
628 if (sockets)
629 sockets = xrealloc(sockets, sockets_alloc * sizeof(sockets[0]));
630 else
631 sockets = xmalloc(sockets_alloc * sizeof(sockets[0]));
632 for (i = old_alloc; i < sockets_alloc; i++)
633 sockets[i].type = AUTH_UNUSED;
634 sockets[old_alloc].type = type;
635 sockets[old_alloc].fd = fd;
636 buffer_init(&sockets[old_alloc].input);
637 buffer_init(&sockets[old_alloc].output);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000638}
639
Ben Lindstrombba81212001-06-25 05:01:22 +0000640static int
Ben Lindstroma3d5a4c2001-07-18 15:58:08 +0000641prepare_select(fd_set **fdrp, fd_set **fdwp, int *fdl, int *nallocp)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000642{
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000643 u_int i, sz;
644 int n = 0;
645
646 for (i = 0; i < sockets_alloc; i++) {
Damien Miller95def091999-11-25 00:26:21 +1100647 switch (sockets[i].type) {
648 case AUTH_SOCKET:
649 case AUTH_CONNECTION:
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000650 n = MAX(n, sockets[i].fd);
Damien Miller95def091999-11-25 00:26:21 +1100651 break;
652 case AUTH_UNUSED:
653 break;
654 default:
655 fatal("Unknown socket type %d", sockets[i].type);
656 break;
657 }
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000658 }
659
660 sz = howmany(n+1, NFDBITS) * sizeof(fd_mask);
Ben Lindstroma3d5a4c2001-07-18 15:58:08 +0000661 if (*fdrp == NULL || sz > *nallocp) {
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000662 if (*fdrp)
Ben Lindstrom86ebcb62001-04-04 01:53:20 +0000663 xfree(*fdrp);
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000664 if (*fdwp)
Ben Lindstrom86ebcb62001-04-04 01:53:20 +0000665 xfree(*fdwp);
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000666 *fdrp = xmalloc(sz);
667 *fdwp = xmalloc(sz);
Ben Lindstroma3d5a4c2001-07-18 15:58:08 +0000668 *nallocp = sz;
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000669 }
Ben Lindstroma3d5a4c2001-07-18 15:58:08 +0000670 if (n < *fdl)
671 debug("XXX shrink: %d < %d", n, *fdl);
672 *fdl = n;
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000673 memset(*fdrp, 0, sz);
674 memset(*fdwp, 0, sz);
675
676 for (i = 0; i < sockets_alloc; i++) {
677 switch (sockets[i].type) {
678 case AUTH_SOCKET:
679 case AUTH_CONNECTION:
680 FD_SET(sockets[i].fd, *fdrp);
681 if (buffer_len(&sockets[i].output) > 0)
682 FD_SET(sockets[i].fd, *fdwp);
683 break;
684 default:
685 break;
686 }
687 }
688 return (1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000689}
690
Ben Lindstrombba81212001-06-25 05:01:22 +0000691static void
Damien Miller95def091999-11-25 00:26:21 +1100692after_select(fd_set *readset, fd_set *writeset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000693{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000694 u_int i;
Damien Miller95def091999-11-25 00:26:21 +1100695 int len, sock;
Damien Miller7684ee12000-03-17 23:40:15 +1100696 socklen_t slen;
Damien Miller95def091999-11-25 00:26:21 +1100697 char buf[1024];
698 struct sockaddr_un sunaddr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000699
Damien Miller95def091999-11-25 00:26:21 +1100700 for (i = 0; i < sockets_alloc; i++)
701 switch (sockets[i].type) {
702 case AUTH_UNUSED:
703 break;
704 case AUTH_SOCKET:
705 if (FD_ISSET(sockets[i].fd, readset)) {
Damien Miller7684ee12000-03-17 23:40:15 +1100706 slen = sizeof(sunaddr);
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000707 sock = accept(sockets[i].fd,
708 (struct sockaddr *) &sunaddr, &slen);
Damien Miller95def091999-11-25 00:26:21 +1100709 if (sock < 0) {
Damien Millerc653b892002-02-08 22:05:41 +1100710 error("accept from AUTH_SOCKET: %s",
711 strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +1100712 break;
713 }
714 new_socket(AUTH_CONNECTION, sock);
715 }
716 break;
717 case AUTH_CONNECTION:
718 if (buffer_len(&sockets[i].output) > 0 &&
719 FD_ISSET(sockets[i].fd, writeset)) {
Ben Lindstromb3144e52001-03-06 03:31:34 +0000720 do {
721 len = write(sockets[i].fd,
722 buffer_ptr(&sockets[i].output),
723 buffer_len(&sockets[i].output));
724 if (len == -1 && (errno == EAGAIN ||
725 errno == EINTR))
726 continue;
727 break;
728 } while (1);
Damien Miller95def091999-11-25 00:26:21 +1100729 if (len <= 0) {
730 shutdown(sockets[i].fd, SHUT_RDWR);
731 close(sockets[i].fd);
732 sockets[i].type = AUTH_UNUSED;
Damien Millera552faf2000-04-21 15:55:20 +1000733 buffer_free(&sockets[i].input);
734 buffer_free(&sockets[i].output);
Damien Miller95def091999-11-25 00:26:21 +1100735 break;
736 }
737 buffer_consume(&sockets[i].output, len);
738 }
739 if (FD_ISSET(sockets[i].fd, readset)) {
Ben Lindstromb3144e52001-03-06 03:31:34 +0000740 do {
741 len = read(sockets[i].fd, buf, sizeof(buf));
742 if (len == -1 && (errno == EAGAIN ||
743 errno == EINTR))
744 continue;
745 break;
746 } while (1);
Damien Miller95def091999-11-25 00:26:21 +1100747 if (len <= 0) {
748 shutdown(sockets[i].fd, SHUT_RDWR);
749 close(sockets[i].fd);
750 sockets[i].type = AUTH_UNUSED;
Damien Millera552faf2000-04-21 15:55:20 +1000751 buffer_free(&sockets[i].input);
752 buffer_free(&sockets[i].output);
Damien Miller95def091999-11-25 00:26:21 +1100753 break;
754 }
755 buffer_append(&sockets[i].input, buf, len);
756 process_message(&sockets[i]);
757 }
758 break;
759 default:
760 fatal("Unknown type %d", sockets[i].type);
761 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000762}
763
Ben Lindstrombba81212001-06-25 05:01:22 +0000764static void
Damien Millerc653b892002-02-08 22:05:41 +1100765cleanup_socket(void *p)
Damien Miller792c5111999-10-29 09:47:09 +1000766{
Ben Lindstrom77808ab2001-01-26 05:10:34 +0000767 if (socket_name[0])
768 unlink(socket_name);
769 if (socket_dir[0])
770 rmdir(socket_dir);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000771}
772
Ben Lindstrombba81212001-06-25 05:01:22 +0000773static void
Damien Miller792c5111999-10-29 09:47:09 +1000774cleanup_exit(int i)
775{
Damien Millerc653b892002-02-08 22:05:41 +1100776 cleanup_socket(NULL);
Damien Miller95def091999-11-25 00:26:21 +1100777 exit(i);
Damien Miller792c5111999-10-29 09:47:09 +1000778}
779
Ben Lindstrombba81212001-06-25 05:01:22 +0000780static void
Ben Lindstrom77808ab2001-01-26 05:10:34 +0000781cleanup_handler(int sig)
782{
Damien Millerc653b892002-02-08 22:05:41 +1100783 cleanup_socket(NULL);
Ben Lindstrom77808ab2001-01-26 05:10:34 +0000784 _exit(2);
785}
786
Ben Lindstrombba81212001-06-25 05:01:22 +0000787static void
Ben Lindstrom0250da02001-07-22 20:44:00 +0000788check_parent_exists(int sig)
789{
790 int save_errno = errno;
791
792 if (parent_pid != -1 && kill(parent_pid, 0) < 0) {
793 /* printf("Parent has died - Authentication agent exiting.\n"); */
794 cleanup_handler(sig); /* safe */
795 }
796 signal(SIGALRM, check_parent_exists);
797 alarm(10);
798 errno = save_errno;
799}
800
801static void
Ben Lindstrom28072eb2001-02-10 23:13:41 +0000802usage(void)
Damien Miller792c5111999-10-29 09:47:09 +1000803{
Ben Lindstromddfb1e32001-08-06 22:06:35 +0000804 fprintf(stderr, "Usage: %s [options] [command [args ...]]\n",
Kevin Steves29265862001-01-24 14:06:28 +0000805 __progname);
Ben Lindstromddfb1e32001-08-06 22:06:35 +0000806 fprintf(stderr, "Options:\n");
807 fprintf(stderr, " -c Generate C-shell commands on stdout.\n");
808 fprintf(stderr, " -s Generate Bourne shell commands on stdout.\n");
809 fprintf(stderr, " -k Kill the current agent.\n");
810 fprintf(stderr, " -d Debug mode.\n");
Damien Miller95def091999-11-25 00:26:21 +1100811 exit(1);
Damien Miller792c5111999-10-29 09:47:09 +1000812}
813
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000814int
815main(int ac, char **av)
816{
Ben Lindstroma3d5a4c2001-07-18 15:58:08 +0000817 int sock, c_flag = 0, d_flag = 0, k_flag = 0, s_flag = 0, ch, nalloc;
Damien Miller95def091999-11-25 00:26:21 +1100818 struct sockaddr_un sunaddr;
Ben Lindstrom2c467a22000-12-27 04:57:41 +0000819#ifdef HAVE_SETRLIMIT
Ben Lindstromc72745a2000-12-02 19:03:54 +0000820 struct rlimit rlim;
Ben Lindstrom2c467a22000-12-27 04:57:41 +0000821#endif
Ben Lindstrom3524d692001-05-03 22:59:24 +0000822#ifdef HAVE_CYGWIN
823 int prev_mask;
824#endif
Damien Miller95def091999-11-25 00:26:21 +1100825 pid_t pid;
826 char *shell, *format, *pidstr, pidstrbuf[1 + 3 * sizeof pid];
Damien Miller615f9392000-05-17 22:53:33 +1000827 extern int optind;
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000828 fd_set *readsetp = NULL, *writesetp = NULL;
Kevin Stevesde41bc62000-12-14 00:04:08 +0000829
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000830 SSLeay_add_all_algorithms();
831
Ben Lindstrom49a79c02000-11-17 03:47:20 +0000832 __progname = get_progname(av[0]);
Damien Millerf9b625c2000-07-09 22:42:32 +1000833 init_rng();
Damien Miller60bc5172001-03-19 09:38:15 +1100834 seed_rng();
Kevin Stevesef4eea92001-02-05 12:42:17 +0000835
Damien Millerd0cff3e2000-04-20 23:12:58 +1000836#ifdef __GNU_LIBRARY__
Ben Lindstromd94580c2001-07-04 03:48:02 +0000837 while ((ch = getopt(ac, av, "+cdks")) != -1) {
Damien Millerd0cff3e2000-04-20 23:12:58 +1000838#else /* __GNU_LIBRARY__ */
Ben Lindstromd94580c2001-07-04 03:48:02 +0000839 while ((ch = getopt(ac, av, "cdks")) != -1) {
Damien Millerd0cff3e2000-04-20 23:12:58 +1000840#endif /* __GNU_LIBRARY__ */
Damien Miller95def091999-11-25 00:26:21 +1100841 switch (ch) {
842 case 'c':
843 if (s_flag)
844 usage();
845 c_flag++;
846 break;
847 case 'k':
848 k_flag++;
849 break;
850 case 's':
851 if (c_flag)
852 usage();
853 s_flag++;
854 break;
Ben Lindstromd94580c2001-07-04 03:48:02 +0000855 case 'd':
856 if (d_flag)
857 usage();
858 d_flag++;
859 break;
Damien Miller95def091999-11-25 00:26:21 +1100860 default:
861 usage();
862 }
Damien Miller792c5111999-10-29 09:47:09 +1000863 }
Damien Miller95def091999-11-25 00:26:21 +1100864 ac -= optind;
865 av += optind;
Damien Miller792c5111999-10-29 09:47:09 +1000866
Ben Lindstromd94580c2001-07-04 03:48:02 +0000867 if (ac > 0 && (c_flag || k_flag || s_flag || d_flag))
Damien Miller95def091999-11-25 00:26:21 +1100868 usage();
Damien Miller792c5111999-10-29 09:47:09 +1000869
Ben Lindstromd94580c2001-07-04 03:48:02 +0000870 if (ac == 0 && !c_flag && !k_flag && !s_flag && !d_flag) {
Damien Miller95def091999-11-25 00:26:21 +1100871 shell = getenv("SHELL");
872 if (shell != NULL && strncmp(shell + strlen(shell) - 3, "csh", 3) == 0)
873 c_flag = 1;
Damien Miller792c5111999-10-29 09:47:09 +1000874 }
Damien Miller95def091999-11-25 00:26:21 +1100875 if (k_flag) {
876 pidstr = getenv(SSH_AGENTPID_ENV_NAME);
877 if (pidstr == NULL) {
878 fprintf(stderr, "%s not set, cannot kill agent\n",
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000879 SSH_AGENTPID_ENV_NAME);
Damien Miller95def091999-11-25 00:26:21 +1100880 exit(1);
881 }
882 pid = atoi(pidstr);
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000883 if (pid < 1) {
Damien Miller95def091999-11-25 00:26:21 +1100884 fprintf(stderr, "%s=\"%s\", which is not a good PID\n",
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000885 SSH_AGENTPID_ENV_NAME, pidstr);
Damien Miller95def091999-11-25 00:26:21 +1100886 exit(1);
887 }
888 if (kill(pid, SIGTERM) == -1) {
889 perror("kill");
890 exit(1);
891 }
892 format = c_flag ? "unsetenv %s;\n" : "unset %s;\n";
893 printf(format, SSH_AUTHSOCKET_ENV_NAME);
894 printf(format, SSH_AGENTPID_ENV_NAME);
895 printf("echo Agent pid %d killed;\n", pid);
896 exit(0);
Damien Miller792c5111999-10-29 09:47:09 +1000897 }
Damien Miller95def091999-11-25 00:26:21 +1100898 parent_pid = getpid();
899
900 /* Create private directory for agent socket */
901 strlcpy(socket_dir, "/tmp/ssh-XXXXXXXX", sizeof socket_dir);
902 if (mkdtemp(socket_dir) == NULL) {
903 perror("mkdtemp: private socket dir");
904 exit(1);
Damien Miller792c5111999-10-29 09:47:09 +1000905 }
Damien Miller95def091999-11-25 00:26:21 +1100906 snprintf(socket_name, sizeof socket_name, "%s/agent.%d", socket_dir,
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000907 parent_pid);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000908
Damien Miller5428f641999-11-25 11:54:57 +1100909 /*
910 * Create socket early so it will exist before command gets run from
911 * the parent.
912 */
Damien Miller95def091999-11-25 00:26:21 +1100913 sock = socket(AF_UNIX, SOCK_STREAM, 0);
914 if (sock < 0) {
915 perror("socket");
916 cleanup_exit(1);
Damien Miller792c5111999-10-29 09:47:09 +1000917 }
Damien Miller95def091999-11-25 00:26:21 +1100918 memset(&sunaddr, 0, sizeof(sunaddr));
919 sunaddr.sun_family = AF_UNIX;
920 strlcpy(sunaddr.sun_path, socket_name, sizeof(sunaddr.sun_path));
Ben Lindstrom3524d692001-05-03 22:59:24 +0000921#ifdef HAVE_CYGWIN
922 prev_mask = umask(0177);
923#endif
Damien Miller95def091999-11-25 00:26:21 +1100924 if (bind(sock, (struct sockaddr *) & sunaddr, sizeof(sunaddr)) < 0) {
925 perror("bind");
Ben Lindstrom3524d692001-05-03 22:59:24 +0000926#ifdef HAVE_CYGWIN
927 umask(prev_mask);
928#endif
Damien Miller95def091999-11-25 00:26:21 +1100929 cleanup_exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000930 }
Ben Lindstrom3524d692001-05-03 22:59:24 +0000931#ifdef HAVE_CYGWIN
932 umask(prev_mask);
933#endif
Damien Miller95def091999-11-25 00:26:21 +1100934 if (listen(sock, 5) < 0) {
935 perror("listen");
936 cleanup_exit(1);
937 }
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000938
Damien Miller5428f641999-11-25 11:54:57 +1100939 /*
940 * Fork, and have the parent execute the command, if any, or present
941 * the socket data. The child continues as the authentication agent.
942 */
Ben Lindstromd94580c2001-07-04 03:48:02 +0000943 if (d_flag) {
944 log_init(__progname, SYSLOG_LEVEL_DEBUG1, SYSLOG_FACILITY_AUTH, 1);
945 format = c_flag ? "setenv %s %s;\n" : "%s=%s; export %s;\n";
946 printf(format, SSH_AUTHSOCKET_ENV_NAME, socket_name,
947 SSH_AUTHSOCKET_ENV_NAME);
948 printf("echo Agent pid %d;\n", parent_pid);
949 goto skip;
950 }
Damien Miller95def091999-11-25 00:26:21 +1100951 pid = fork();
952 if (pid == -1) {
953 perror("fork");
Damien Millerc653b892002-02-08 22:05:41 +1100954 cleanup_exit(1);
Damien Miller95def091999-11-25 00:26:21 +1100955 }
956 if (pid != 0) { /* Parent - execute the given command. */
957 close(sock);
958 snprintf(pidstrbuf, sizeof pidstrbuf, "%d", pid);
959 if (ac == 0) {
960 format = c_flag ? "setenv %s %s;\n" : "%s=%s; export %s;\n";
961 printf(format, SSH_AUTHSOCKET_ENV_NAME, socket_name,
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000962 SSH_AUTHSOCKET_ENV_NAME);
Damien Miller95def091999-11-25 00:26:21 +1100963 printf(format, SSH_AGENTPID_ENV_NAME, pidstrbuf,
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000964 SSH_AGENTPID_ENV_NAME);
Damien Miller95def091999-11-25 00:26:21 +1100965 printf("echo Agent pid %d;\n", pid);
966 exit(0);
967 }
Damien Millere4340be2000-09-16 13:29:08 +1100968 if (setenv(SSH_AUTHSOCKET_ENV_NAME, socket_name, 1) == -1 ||
969 setenv(SSH_AGENTPID_ENV_NAME, pidstrbuf, 1) == -1) {
970 perror("setenv");
971 exit(1);
972 }
Damien Miller95def091999-11-25 00:26:21 +1100973 execvp(av[0], av);
974 perror(av[0]);
975 exit(1);
976 }
Damien Millerc653b892002-02-08 22:05:41 +1100977 /* child */
978 log_init(__progname, SYSLOG_LEVEL_INFO, SYSLOG_FACILITY_AUTH, 0);
Ben Lindstrom3fdf8762001-07-22 20:40:24 +0000979
980 if (setsid() == -1) {
Damien Millerc653b892002-02-08 22:05:41 +1100981 error("setsid: %s", strerror(errno));
Ben Lindstrom3fdf8762001-07-22 20:40:24 +0000982 cleanup_exit(1);
983 }
984
985 (void)chdir("/");
Damien Miller95def091999-11-25 00:26:21 +1100986 close(0);
987 close(1);
988 close(2);
989
Ben Lindstrom2c467a22000-12-27 04:57:41 +0000990#ifdef HAVE_SETRLIMIT
Ben Lindstromc72745a2000-12-02 19:03:54 +0000991 /* deny core dumps, since memory contains unencrypted private keys */
992 rlim.rlim_cur = rlim.rlim_max = 0;
993 if (setrlimit(RLIMIT_CORE, &rlim) < 0) {
Damien Millerc653b892002-02-08 22:05:41 +1100994 error("setrlimit RLIMIT_CORE: %s", strerror(errno));
Ben Lindstromc72745a2000-12-02 19:03:54 +0000995 cleanup_exit(1);
996 }
Ben Lindstrom2c467a22000-12-27 04:57:41 +0000997#endif
Ben Lindstromd94580c2001-07-04 03:48:02 +0000998
999skip:
Damien Millerc653b892002-02-08 22:05:41 +11001000 fatal_add_cleanup(cleanup_socket, NULL);
Damien Miller95def091999-11-25 00:26:21 +11001001 new_socket(AUTH_SOCKET, sock);
1002 if (ac > 0) {
1003 signal(SIGALRM, check_parent_exists);
1004 alarm(10);
1005 }
Damien Millerad833b32000-08-23 10:46:23 +10001006 idtab_init();
Damien Miller48bfa9c2001-07-14 12:12:55 +10001007 if (!d_flag)
Ben Lindstromd94580c2001-07-04 03:48:02 +00001008 signal(SIGINT, SIG_IGN);
Damien Miller48bfa9c2001-07-14 12:12:55 +10001009 signal(SIGPIPE, SIG_IGN);
Ben Lindstrom77808ab2001-01-26 05:10:34 +00001010 signal(SIGHUP, cleanup_handler);
1011 signal(SIGTERM, cleanup_handler);
Ben Lindstroma3d5a4c2001-07-18 15:58:08 +00001012 nalloc = 0;
1013
Damien Miller95def091999-11-25 00:26:21 +11001014 while (1) {
Ben Lindstroma3d5a4c2001-07-18 15:58:08 +00001015 prepare_select(&readsetp, &writesetp, &max_fd, &nalloc);
Ben Lindstrom226cfa02001-01-22 05:34:40 +00001016 if (select(max_fd + 1, readsetp, writesetp, NULL, NULL) < 0) {
Damien Miller95def091999-11-25 00:26:21 +11001017 if (errno == EINTR)
1018 continue;
Damien Millerc653b892002-02-08 22:05:41 +11001019 fatal("select: %s", strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +11001020 }
Ben Lindstrom226cfa02001-01-22 05:34:40 +00001021 after_select(readsetp, writesetp);
Damien Miller95def091999-11-25 00:26:21 +11001022 }
1023 /* NOTREACHED */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001024}