blob: f179483494c11a00b58b94499f76615f905247c9 [file] [log] [blame]
Damien Miller4c7728c2007-10-26 14:25:31 +10001/* $OpenBSD: ssh-agent.c,v 1.157 2007/09/25 23:48:57 canacar Exp $ */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002/*
Damien Miller95def091999-11-25 00:26:21 +11003 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5 * All rights reserved
Damien Miller95def091999-11-25 00:26:21 +11006 * The authentication agent program.
Damien Millerad833b32000-08-23 10:46:23 +10007 *
Damien Millere4340be2000-09-16 13:29:08 +11008 * As far as I am concerned, the code I have written for this software
9 * can be used freely for any purpose. Any derived versions of this
10 * software must be clearly marked as such, and if the derived work is
11 * incompatible with the protocol description in the RFC file, it must be
12 * called by a name other than "ssh" or "Secure Shell".
13 *
Ben Lindstrom44697232001-07-04 03:32:30 +000014 * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved.
Damien Millere4340be2000-09-16 13:29:08 +110015 *
16 * Redistribution and use in source and binary forms, with or without
17 * modification, are permitted provided that the following conditions
18 * are met:
19 * 1. Redistributions of source code must retain the above copyright
20 * notice, this list of conditions and the following disclaimer.
21 * 2. Redistributions in binary form must reproduce the above copyright
22 * notice, this list of conditions and the following disclaimer in the
23 * documentation and/or other materials provided with the distribution.
24 *
25 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
26 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
27 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
28 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
29 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
30 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
31 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
32 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
33 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
34 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Damien Miller95def091999-11-25 00:26:21 +110035 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100036
37#include "includes.h"
Damien Miller574c41f2006-03-15 11:40:10 +110038
39#include <sys/types.h>
Damien Miller8dbffe72006-08-05 11:02:17 +100040#include <sys/param.h>
41#include <sys/resource.h>
Damien Miller42fb0682006-03-15 14:03:06 +110042#include <sys/stat.h>
Damien Millere3b60b52006-07-10 21:08:03 +100043#include <sys/socket.h>
Damien Miller9aec9192006-08-05 10:57:45 +100044#ifdef HAVE_SYS_TIME_H
45# include <sys/time.h>
46#endif
Damien Miller574c41f2006-03-15 11:40:10 +110047#ifdef HAVE_SYS_UN_H
48# include <sys/un.h>
49#endif
Damien Miller9b481512002-09-12 10:43:29 +100050#include "openbsd-compat/sys-queue.h"
Damien Millere3b60b52006-07-10 21:08:03 +100051
Damien Millere3476ed2006-07-24 14:13:33 +100052#include <openssl/evp.h>
53#include <openssl/md5.h>
54
Darren Tucker39972492006-07-12 22:22:46 +100055#include <errno.h>
Damien Miller57cf6382006-07-10 21:13:46 +100056#include <fcntl.h>
Damien Miller03e20032006-03-15 11:16:59 +110057#ifdef HAVE_PATHS_H
Damien Millera9263d02006-03-15 11:18:26 +110058# include <paths.h>
Damien Miller03e20032006-03-15 11:16:59 +110059#endif
Damien Miller6ff3cad2006-03-15 11:52:09 +110060#include <signal.h>
Damien Millerded319c2006-09-01 15:38:36 +100061#include <stdarg.h>
Damien Millera7a73ee2006-08-05 11:37:59 +100062#include <stdio.h>
Damien Millere7a1e5c2006-08-05 11:34:19 +100063#include <stdlib.h>
Damien Miller5598b4f2006-07-24 14:09:40 +100064#include <time.h>
Damien Millere3476ed2006-07-24 14:13:33 +100065#include <string.h>
Damien Millere6b3b612006-07-24 14:01:23 +100066#include <unistd.h>
Damien Miller6ff3cad2006-03-15 11:52:09 +110067
Damien Millerd7834352006-08-05 12:39:39 +100068#include "xmalloc.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100069#include "ssh.h"
70#include "rsa.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100071#include "buffer.h"
Damien Miller994cf142000-07-21 10:19:44 +100072#include "key.h"
73#include "authfd.h"
Damien Miller62cee002000-09-23 17:15:56 +110074#include "compat.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000075#include "log.h"
Damien Miller6c711792003-01-24 11:36:23 +110076#include "misc.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100077
Ben Lindstrom3f471632001-07-04 03:53:15 +000078#ifdef SMARTCARD
Ben Lindstrom3f471632001-07-04 03:53:15 +000079#include "scard.h"
Ben Lindstrombcc18082001-08-06 21:59:25 +000080#endif
Ben Lindstrom3f471632001-07-04 03:53:15 +000081
Damien Miller6c4914a2004-03-03 11:08:59 +110082#if defined(HAVE_SYS_PRCTL_H)
83#include <sys/prctl.h> /* For prctl() and PR_SET_DUMPABLE */
84#endif
85
Ben Lindstrom65366a82001-12-06 16:32:47 +000086typedef enum {
87 AUTH_UNUSED,
88 AUTH_SOCKET,
89 AUTH_CONNECTION
90} sock_type;
91
Damien Miller95def091999-11-25 00:26:21 +110092typedef struct {
93 int fd;
Ben Lindstrom65366a82001-12-06 16:32:47 +000094 sock_type type;
Damien Miller95def091999-11-25 00:26:21 +110095 Buffer input;
96 Buffer output;
Ben Lindstrom21d1ed82002-06-06 21:48:57 +000097 Buffer request;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100098} SocketEntry;
99
Ben Lindstrom46c16222000-12-22 01:43:59 +0000100u_int sockets_alloc = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000101SocketEntry *sockets = NULL;
102
Damien Miller1a534ae2002-01-22 23:26:13 +1100103typedef struct identity {
104 TAILQ_ENTRY(identity) next;
Damien Millerad833b32000-08-23 10:46:23 +1000105 Key *key;
Damien Miller95def091999-11-25 00:26:21 +1100106 char *comment;
Ben Lindstrom61d328a2002-06-06 21:54:57 +0000107 u_int death;
Damien Miller6c711792003-01-24 11:36:23 +1100108 u_int confirm;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000109} Identity;
110
Damien Millerad833b32000-08-23 10:46:23 +1000111typedef struct {
112 int nentries;
Damien Miller1a534ae2002-01-22 23:26:13 +1100113 TAILQ_HEAD(idqueue, identity) idlist;
Damien Millerad833b32000-08-23 10:46:23 +1000114} Idtab;
115
116/* private key table, one per protocol version */
117Idtab idtable[3];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000118
119int max_fd = 0;
120
121/* pid of shell == parent of agent */
Damien Miller166fca82000-04-20 07:42:21 +1000122pid_t parent_pid = -1;
Darren Tucker2812dc92007-03-21 20:45:06 +1100123u_int parent_alive_interval = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000124
125/* pathname and directory for AUTH_SOCKET */
Damien Miller07d86be2006-03-26 14:19:21 +1100126char socket_name[MAXPATHLEN];
127char socket_dir[MAXPATHLEN];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000128
Ben Lindstrom2f717042002-06-06 21:52:03 +0000129/* locking */
130int locked = 0;
131char *lock_passwd = NULL;
132
Damien Miller95def091999-11-25 00:26:21 +1100133extern char *__progname;
Damien Miller95def091999-11-25 00:26:21 +1100134
Damien Miller53d81482003-01-22 11:47:19 +1100135/* Default lifetime (0 == forever) */
136static int lifetime = 0;
137
Ben Lindstrombba81212001-06-25 05:01:22 +0000138static void
Damien Miller58f34862002-09-04 16:31:21 +1000139close_socket(SocketEntry *e)
140{
Damien Miller58f34862002-09-04 16:31:21 +1000141 close(e->fd);
142 e->fd = -1;
143 e->type = AUTH_UNUSED;
144 buffer_free(&e->input);
145 buffer_free(&e->output);
146 buffer_free(&e->request);
147}
148
149static void
Damien Millerad833b32000-08-23 10:46:23 +1000150idtab_init(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000151{
Damien Millerad833b32000-08-23 10:46:23 +1000152 int i;
Ben Lindstrom822b6342002-06-23 21:38:49 +0000153
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +0000154 for (i = 0; i <=2; i++) {
Damien Miller1a534ae2002-01-22 23:26:13 +1100155 TAILQ_INIT(&idtable[i].idlist);
Damien Millerad833b32000-08-23 10:46:23 +1000156 idtable[i].nentries = 0;
157 }
158}
159
160/* return private key table for requested protocol version */
Ben Lindstrombba81212001-06-25 05:01:22 +0000161static Idtab *
Damien Millerad833b32000-08-23 10:46:23 +1000162idtab_lookup(int version)
163{
164 if (version < 1 || version > 2)
165 fatal("internal error, bad protocol version %d", version);
166 return &idtable[version];
167}
168
Ben Lindstrom61d328a2002-06-06 21:54:57 +0000169static void
170free_identity(Identity *id)
171{
172 key_free(id->key);
173 xfree(id->comment);
174 xfree(id);
175}
176
Damien Millerad833b32000-08-23 10:46:23 +1000177/* return matching private key for given public key */
Damien Miller1a534ae2002-01-22 23:26:13 +1100178static Identity *
179lookup_identity(Key *key, int version)
Damien Millerad833b32000-08-23 10:46:23 +1000180{
Damien Miller1a534ae2002-01-22 23:26:13 +1100181 Identity *id;
182
Damien Millerad833b32000-08-23 10:46:23 +1000183 Idtab *tab = idtab_lookup(version);
Damien Miller1a534ae2002-01-22 23:26:13 +1100184 TAILQ_FOREACH(id, &tab->idlist, next) {
185 if (key_equal(key, id->key))
186 return (id);
Damien Millerad833b32000-08-23 10:46:23 +1000187 }
Damien Miller1a534ae2002-01-22 23:26:13 +1100188 return (NULL);
189}
190
Damien Miller6c711792003-01-24 11:36:23 +1100191/* Check confirmation of keysign request */
192static int
193confirm_key(Identity *id)
194{
Darren Tuckerce327b62004-11-05 20:38:03 +1100195 char *p;
Damien Miller6c711792003-01-24 11:36:23 +1100196 int ret = -1;
197
198 p = key_fingerprint(id->key, SSH_FP_MD5, SSH_FP_HEX);
Darren Tuckerce327b62004-11-05 20:38:03 +1100199 if (ask_permission("Allow use of key %s?\nKey fingerprint %s.",
200 id->comment, p))
201 ret = 0;
Damien Miller6c711792003-01-24 11:36:23 +1100202 xfree(p);
Darren Tuckerce327b62004-11-05 20:38:03 +1100203
Damien Miller6c711792003-01-24 11:36:23 +1100204 return (ret);
205}
206
Damien Millerad833b32000-08-23 10:46:23 +1000207/* send list of supported public keys to 'client' */
Ben Lindstrombba81212001-06-25 05:01:22 +0000208static void
Damien Millerad833b32000-08-23 10:46:23 +1000209process_request_identities(SocketEntry *e, int version)
210{
211 Idtab *tab = idtab_lookup(version);
Damien Miller1a534ae2002-01-22 23:26:13 +1100212 Identity *id;
Ben Lindstrom822b6342002-06-23 21:38:49 +0000213 Buffer msg;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000214
Damien Miller95def091999-11-25 00:26:21 +1100215 buffer_init(&msg);
Damien Millerad833b32000-08-23 10:46:23 +1000216 buffer_put_char(&msg, (version == 1) ?
217 SSH_AGENT_RSA_IDENTITIES_ANSWER : SSH2_AGENT_IDENTITIES_ANSWER);
218 buffer_put_int(&msg, tab->nentries);
Damien Miller1a534ae2002-01-22 23:26:13 +1100219 TAILQ_FOREACH(id, &tab->idlist, next) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100220 if (id->key->type == KEY_RSA1) {
Damien Millerad833b32000-08-23 10:46:23 +1000221 buffer_put_int(&msg, BN_num_bits(id->key->rsa->n));
222 buffer_put_bignum(&msg, id->key->rsa->e);
223 buffer_put_bignum(&msg, id->key->rsa->n);
224 } else {
Ben Lindstrom46c16222000-12-22 01:43:59 +0000225 u_char *blob;
226 u_int blen;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100227 key_to_blob(id->key, &blob, &blen);
Damien Millerad833b32000-08-23 10:46:23 +1000228 buffer_put_string(&msg, blob, blen);
229 xfree(blob);
230 }
231 buffer_put_cstring(&msg, id->comment);
Damien Miller95def091999-11-25 00:26:21 +1100232 }
233 buffer_put_int(&e->output, buffer_len(&msg));
234 buffer_append(&e->output, buffer_ptr(&msg), buffer_len(&msg));
235 buffer_free(&msg);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000236}
237
Damien Millerad833b32000-08-23 10:46:23 +1000238/* ssh1 only */
Ben Lindstrombba81212001-06-25 05:01:22 +0000239static void
Damien Millerad833b32000-08-23 10:46:23 +1000240process_authentication_challenge1(SocketEntry *e)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000241{
Ben Lindstrom822b6342002-06-23 21:38:49 +0000242 u_char buf[32], mdbuf[16], session_id[16];
243 u_int response_type;
Damien Millerad833b32000-08-23 10:46:23 +1000244 BIGNUM *challenge;
Ben Lindstrom822b6342002-06-23 21:38:49 +0000245 Identity *id;
Damien Millerad833b32000-08-23 10:46:23 +1000246 int i, len;
Damien Miller95def091999-11-25 00:26:21 +1100247 Buffer msg;
248 MD5_CTX md;
Ben Lindstrom822b6342002-06-23 21:38:49 +0000249 Key *key;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000250
Damien Miller95def091999-11-25 00:26:21 +1100251 buffer_init(&msg);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100252 key = key_new(KEY_RSA1);
Damien Millerda755162002-01-22 23:09:22 +1100253 if ((challenge = BN_new()) == NULL)
254 fatal("process_authentication_challenge1: BN_new failed");
Damien Millerad833b32000-08-23 10:46:23 +1000255
Ben Lindstromc5a7f4f2002-06-25 23:19:13 +0000256 (void) buffer_get_int(&e->request); /* ignored */
Ben Lindstrom21d1ed82002-06-06 21:48:57 +0000257 buffer_get_bignum(&e->request, key->rsa->e);
258 buffer_get_bignum(&e->request, key->rsa->n);
259 buffer_get_bignum(&e->request, challenge);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000260
Damien Millerad833b32000-08-23 10:46:23 +1000261 /* Only protocol 1.1 is supported */
Ben Lindstrom21d1ed82002-06-06 21:48:57 +0000262 if (buffer_len(&e->request) == 0)
Damien Millerad833b32000-08-23 10:46:23 +1000263 goto failure;
Ben Lindstrom21d1ed82002-06-06 21:48:57 +0000264 buffer_get(&e->request, session_id, 16);
265 response_type = buffer_get_int(&e->request);
Damien Millerad833b32000-08-23 10:46:23 +1000266 if (response_type != 1)
267 goto failure;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000268
Damien Miller1a534ae2002-01-22 23:26:13 +1100269 id = lookup_identity(key, 1);
Damien Miller6c711792003-01-24 11:36:23 +1100270 if (id != NULL && (!id->confirm || confirm_key(id) == 0)) {
Damien Miller1a534ae2002-01-22 23:26:13 +1100271 Key *private = id->key;
Damien Millerad833b32000-08-23 10:46:23 +1000272 /* Decrypt the challenge using the private key. */
Damien Miller7650bc62001-01-30 09:27:26 +1100273 if (rsa_private_decrypt(challenge, challenge, private->rsa) <= 0)
274 goto failure;
Damien Millerfd7c9111999-11-08 16:15:55 +1100275
Damien Millerad833b32000-08-23 10:46:23 +1000276 /* The response is MD5 of decrypted challenge plus session id. */
277 len = BN_num_bytes(challenge);
278 if (len <= 0 || len > 32) {
Damien Miller996acd22003-04-09 20:59:48 +1000279 logit("process_authentication_challenge: bad challenge length %d", len);
Damien Millerad833b32000-08-23 10:46:23 +1000280 goto failure;
Damien Miller95def091999-11-25 00:26:21 +1100281 }
Damien Millerad833b32000-08-23 10:46:23 +1000282 memset(buf, 0, 32);
283 BN_bn2bin(challenge, buf + 32 - len);
284 MD5_Init(&md);
285 MD5_Update(&md, buf, 32);
286 MD5_Update(&md, session_id, 16);
287 MD5_Final(mdbuf, &md);
288
289 /* Send the response. */
290 buffer_put_char(&msg, SSH_AGENT_RSA_RESPONSE);
291 for (i = 0; i < 16; i++)
292 buffer_put_char(&msg, mdbuf[i]);
293 goto send;
294 }
295
296failure:
297 /* Unknown identity or protocol error. Send failure. */
Damien Miller95def091999-11-25 00:26:21 +1100298 buffer_put_char(&msg, SSH_AGENT_FAILURE);
299send:
300 buffer_put_int(&e->output, buffer_len(&msg));
Damien Millerad833b32000-08-23 10:46:23 +1000301 buffer_append(&e->output, buffer_ptr(&msg), buffer_len(&msg));
302 key_free(key);
Damien Miller95def091999-11-25 00:26:21 +1100303 BN_clear_free(challenge);
Damien Millerad833b32000-08-23 10:46:23 +1000304 buffer_free(&msg);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000305}
306
Damien Millerad833b32000-08-23 10:46:23 +1000307/* ssh2 only */
Ben Lindstrombba81212001-06-25 05:01:22 +0000308static void
Damien Millerad833b32000-08-23 10:46:23 +1000309process_sign_request2(SocketEntry *e)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000310{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000311 u_char *blob, *data, *signature = NULL;
312 u_int blen, dlen, slen = 0;
Ben Lindstrom822b6342002-06-23 21:38:49 +0000313 extern int datafellows;
314 int ok = -1, flags;
Damien Millerad833b32000-08-23 10:46:23 +1000315 Buffer msg;
Ben Lindstrom822b6342002-06-23 21:38:49 +0000316 Key *key;
Damien Millerad833b32000-08-23 10:46:23 +1000317
318 datafellows = 0;
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000319
Ben Lindstrom21d1ed82002-06-06 21:48:57 +0000320 blob = buffer_get_string(&e->request, &blen);
321 data = buffer_get_string(&e->request, &dlen);
Damien Miller62cee002000-09-23 17:15:56 +1100322
Ben Lindstrom21d1ed82002-06-06 21:48:57 +0000323 flags = buffer_get_int(&e->request);
Damien Miller62cee002000-09-23 17:15:56 +1100324 if (flags & SSH_AGENT_OLD_SIGNATURE)
325 datafellows = SSH_BUG_SIGBLOB;
Damien Millerad833b32000-08-23 10:46:23 +1000326
Damien Miller0bc1bd82000-11-13 22:57:25 +1100327 key = key_from_blob(blob, blen);
Damien Millerad833b32000-08-23 10:46:23 +1000328 if (key != NULL) {
Damien Miller1a534ae2002-01-22 23:26:13 +1100329 Identity *id = lookup_identity(key, 2);
Damien Miller6c711792003-01-24 11:36:23 +1100330 if (id != NULL && (!id->confirm || confirm_key(id) == 0))
Damien Miller1a534ae2002-01-22 23:26:13 +1100331 ok = key_sign(id->key, &signature, &slen, data, dlen);
Damien Miller40b59852006-06-13 13:00:25 +1000332 key_free(key);
Damien Millerad833b32000-08-23 10:46:23 +1000333 }
Damien Millerad833b32000-08-23 10:46:23 +1000334 buffer_init(&msg);
335 if (ok == 0) {
336 buffer_put_char(&msg, SSH2_AGENT_SIGN_RESPONSE);
337 buffer_put_string(&msg, signature, slen);
338 } else {
339 buffer_put_char(&msg, SSH_AGENT_FAILURE);
340 }
341 buffer_put_int(&e->output, buffer_len(&msg));
342 buffer_append(&e->output, buffer_ptr(&msg),
343 buffer_len(&msg));
344 buffer_free(&msg);
345 xfree(data);
346 xfree(blob);
347 if (signature != NULL)
348 xfree(signature);
349}
350
351/* shared */
Ben Lindstrombba81212001-06-25 05:01:22 +0000352static void
Damien Millerad833b32000-08-23 10:46:23 +1000353process_remove_identity(SocketEntry *e, int version)
354{
Ben Lindstrom822b6342002-06-23 21:38:49 +0000355 u_int blen, bits;
356 int success = 0;
Damien Miller1a534ae2002-01-22 23:26:13 +1100357 Key *key = NULL;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000358 u_char *blob;
Damien Miller7e8e8201999-11-16 13:37:16 +1100359
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +0000360 switch (version) {
Damien Millerad833b32000-08-23 10:46:23 +1000361 case 1:
Damien Miller0bc1bd82000-11-13 22:57:25 +1100362 key = key_new(KEY_RSA1);
Ben Lindstrom21d1ed82002-06-06 21:48:57 +0000363 bits = buffer_get_int(&e->request);
364 buffer_get_bignum(&e->request, key->rsa->e);
365 buffer_get_bignum(&e->request, key->rsa->n);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000366
Damien Millerad833b32000-08-23 10:46:23 +1000367 if (bits != key_size(key))
Damien Miller996acd22003-04-09 20:59:48 +1000368 logit("Warning: identity keysize mismatch: actual %u, announced %u",
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000369 key_size(key), bits);
Damien Millerad833b32000-08-23 10:46:23 +1000370 break;
371 case 2:
Ben Lindstrom21d1ed82002-06-06 21:48:57 +0000372 blob = buffer_get_string(&e->request, &blen);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100373 key = key_from_blob(blob, blen);
Damien Millerad833b32000-08-23 10:46:23 +1000374 xfree(blob);
375 break;
376 }
377 if (key != NULL) {
Damien Miller1a534ae2002-01-22 23:26:13 +1100378 Identity *id = lookup_identity(key, version);
379 if (id != NULL) {
Damien Miller5428f641999-11-25 11:54:57 +1100380 /*
381 * We have this key. Free the old key. Since we
Damien Miller788f2122005-11-05 15:14:59 +1100382 * don't want to leave empty slots in the middle of
Ben Lindstrom14920292000-11-21 21:24:55 +0000383 * the array, we actually free the key there and move
384 * all the entries between the empty slot and the end
385 * of the array.
Damien Miller5428f641999-11-25 11:54:57 +1100386 */
Damien Millerad833b32000-08-23 10:46:23 +1000387 Idtab *tab = idtab_lookup(version);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100388 if (tab->nentries < 1)
389 fatal("process_remove_identity: "
390 "internal error: tab->nentries %d",
391 tab->nentries);
Damien Miller1a534ae2002-01-22 23:26:13 +1100392 TAILQ_REMOVE(&tab->idlist, id, next);
393 free_identity(id);
Damien Millerad833b32000-08-23 10:46:23 +1000394 tab->nentries--;
395 success = 1;
Damien Miller95def091999-11-25 00:26:21 +1100396 }
Damien Millerad833b32000-08-23 10:46:23 +1000397 key_free(key);
398 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000399 buffer_put_int(&e->output, 1);
Damien Millerad833b32000-08-23 10:46:23 +1000400 buffer_put_char(&e->output,
401 success ? SSH_AGENT_SUCCESS : SSH_AGENT_FAILURE);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000402}
403
Ben Lindstrombba81212001-06-25 05:01:22 +0000404static void
Damien Millerad833b32000-08-23 10:46:23 +1000405process_remove_all_identities(SocketEntry *e, int version)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000406{
Damien Millerad833b32000-08-23 10:46:23 +1000407 Idtab *tab = idtab_lookup(version);
Damien Miller1a534ae2002-01-22 23:26:13 +1100408 Identity *id;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000409
Damien Miller95def091999-11-25 00:26:21 +1100410 /* Loop over all identities and clear the keys. */
Damien Miller1a534ae2002-01-22 23:26:13 +1100411 for (id = TAILQ_FIRST(&tab->idlist); id;
412 id = TAILQ_FIRST(&tab->idlist)) {
413 TAILQ_REMOVE(&tab->idlist, id, next);
414 free_identity(id);
Damien Miller95def091999-11-25 00:26:21 +1100415 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000416
Damien Miller95def091999-11-25 00:26:21 +1100417 /* Mark that there are no identities. */
Damien Millerad833b32000-08-23 10:46:23 +1000418 tab->nentries = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000419
420 /* Send success. */
421 buffer_put_int(&e->output, 1);
422 buffer_put_char(&e->output, SSH_AGENT_SUCCESS);
Damien Miller95def091999-11-25 00:26:21 +1100423}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000424
Darren Tucker2812dc92007-03-21 20:45:06 +1100425/* removes expired keys and returns number of seconds until the next expiry */
426static u_int
Ben Lindstrom61d328a2002-06-06 21:54:57 +0000427reaper(void)
428{
Darren Tucker2812dc92007-03-21 20:45:06 +1100429 u_int deadline = 0, now = time(NULL);
Ben Lindstrom61d328a2002-06-06 21:54:57 +0000430 Identity *id, *nxt;
431 int version;
Ben Lindstrom822b6342002-06-23 21:38:49 +0000432 Idtab *tab;
Ben Lindstrom61d328a2002-06-06 21:54:57 +0000433
434 for (version = 1; version < 3; version++) {
435 tab = idtab_lookup(version);
436 for (id = TAILQ_FIRST(&tab->idlist); id; id = nxt) {
437 nxt = TAILQ_NEXT(id, next);
Darren Tucker2812dc92007-03-21 20:45:06 +1100438 if (id->death == 0)
439 continue;
440 if (now >= id->death) {
Darren Tuckercf0d2db2007-02-28 21:19:58 +1100441 debug("expiring key '%s'", id->comment);
Ben Lindstrom61d328a2002-06-06 21:54:57 +0000442 TAILQ_REMOVE(&tab->idlist, id, next);
443 free_identity(id);
444 tab->nentries--;
Darren Tucker2812dc92007-03-21 20:45:06 +1100445 } else
446 deadline = (deadline == 0) ? id->death :
447 MIN(deadline, id->death);
Ben Lindstrom61d328a2002-06-06 21:54:57 +0000448 }
449 }
Darren Tucker2812dc92007-03-21 20:45:06 +1100450 if (deadline == 0 || deadline <= now)
451 return 0;
452 else
453 return (deadline - now);
Ben Lindstrom61d328a2002-06-06 21:54:57 +0000454}
455
456static void
Damien Millerad833b32000-08-23 10:46:23 +1000457process_add_identity(SocketEntry *e, int version)
Damien Miller95def091999-11-25 00:26:21 +1100458{
Damien Millerad833b32000-08-23 10:46:23 +1000459 Idtab *tab = idtab_lookup(version);
Damien Miller4c7728c2007-10-26 14:25:31 +1000460 Identity *id;
Damien Miller6c711792003-01-24 11:36:23 +1100461 int type, success = 0, death = 0, confirm = 0;
Ben Lindstrom822b6342002-06-23 21:38:49 +0000462 char *type_name, *comment;
463 Key *k = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100464
Damien Millerad833b32000-08-23 10:46:23 +1000465 switch (version) {
466 case 1:
Damien Miller0bc1bd82000-11-13 22:57:25 +1100467 k = key_new_private(KEY_RSA1);
Ben Lindstromc5a7f4f2002-06-25 23:19:13 +0000468 (void) buffer_get_int(&e->request); /* ignored */
Ben Lindstrom21d1ed82002-06-06 21:48:57 +0000469 buffer_get_bignum(&e->request, k->rsa->n);
470 buffer_get_bignum(&e->request, k->rsa->e);
471 buffer_get_bignum(&e->request, k->rsa->d);
472 buffer_get_bignum(&e->request, k->rsa->iqmp);
Damien Miller95def091999-11-25 00:26:21 +1100473
Damien Millerad833b32000-08-23 10:46:23 +1000474 /* SSH and SSL have p and q swapped */
Ben Lindstrom21d1ed82002-06-06 21:48:57 +0000475 buffer_get_bignum(&e->request, k->rsa->q); /* p */
476 buffer_get_bignum(&e->request, k->rsa->p); /* q */
Damien Miller95def091999-11-25 00:26:21 +1100477
Damien Millerad833b32000-08-23 10:46:23 +1000478 /* Generate additional parameters */
Ben Lindstromf7297dd2001-07-04 05:02:23 +0000479 rsa_generate_additional_parameters(k->rsa);
Damien Millerad833b32000-08-23 10:46:23 +1000480 break;
481 case 2:
Ben Lindstrom21d1ed82002-06-06 21:48:57 +0000482 type_name = buffer_get_string(&e->request, NULL);
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000483 type = key_type_from_name(type_name);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100484 xfree(type_name);
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +0000485 switch (type) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100486 case KEY_DSA:
487 k = key_new_private(type);
Ben Lindstrom21d1ed82002-06-06 21:48:57 +0000488 buffer_get_bignum2(&e->request, k->dsa->p);
489 buffer_get_bignum2(&e->request, k->dsa->q);
490 buffer_get_bignum2(&e->request, k->dsa->g);
491 buffer_get_bignum2(&e->request, k->dsa->pub_key);
492 buffer_get_bignum2(&e->request, k->dsa->priv_key);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100493 break;
494 case KEY_RSA:
495 k = key_new_private(type);
Ben Lindstrom21d1ed82002-06-06 21:48:57 +0000496 buffer_get_bignum2(&e->request, k->rsa->n);
497 buffer_get_bignum2(&e->request, k->rsa->e);
498 buffer_get_bignum2(&e->request, k->rsa->d);
499 buffer_get_bignum2(&e->request, k->rsa->iqmp);
500 buffer_get_bignum2(&e->request, k->rsa->p);
501 buffer_get_bignum2(&e->request, k->rsa->q);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100502
503 /* Generate additional parameters */
Ben Lindstromf7297dd2001-07-04 05:02:23 +0000504 rsa_generate_additional_parameters(k->rsa);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100505 break;
506 default:
Ben Lindstrom21d1ed82002-06-06 21:48:57 +0000507 buffer_clear(&e->request);
Damien Millerad833b32000-08-23 10:46:23 +1000508 goto send;
Damien Miller95def091999-11-25 00:26:21 +1100509 }
Damien Millerad833b32000-08-23 10:46:23 +1000510 break;
511 }
Damien Millerc51d0732003-03-15 11:37:09 +1100512 /* enable blinding */
513 switch (k->type) {
514 case KEY_RSA:
515 case KEY_RSA1:
516 if (RSA_blinding_on(k->rsa, NULL) != 1) {
517 error("process_add_identity: RSA_blinding_on failed");
518 key_free(k);
519 goto send;
520 }
521 break;
522 }
Ben Lindstrom21d1ed82002-06-06 21:48:57 +0000523 comment = buffer_get_string(&e->request, NULL);
Damien Millerad833b32000-08-23 10:46:23 +1000524 if (k == NULL) {
525 xfree(comment);
526 goto send;
527 }
528 success = 1;
Ben Lindstrom4eb4c4e2002-06-21 00:04:48 +0000529 while (buffer_len(&e->request)) {
530 switch (buffer_get_char(&e->request)) {
Ben Lindstromc90f8a92002-06-21 00:06:54 +0000531 case SSH_AGENT_CONSTRAIN_LIFETIME:
Ben Lindstrom4eb4c4e2002-06-21 00:04:48 +0000532 death = time(NULL) + buffer_get_int(&e->request);
533 break;
Damien Miller6c711792003-01-24 11:36:23 +1100534 case SSH_AGENT_CONSTRAIN_CONFIRM:
535 confirm = 1;
536 break;
Ben Lindstrom4eb4c4e2002-06-21 00:04:48 +0000537 default:
538 break;
539 }
540 }
Damien Miller53d81482003-01-22 11:47:19 +1100541 if (lifetime && !death)
542 death = time(NULL) + lifetime;
Damien Miller4c7728c2007-10-26 14:25:31 +1000543 if ((id = lookup_identity(k, version)) == NULL) {
544 id = xmalloc(sizeof(Identity));
Ben Lindstrom2b266b72002-06-21 00:08:39 +0000545 id->key = k;
Ben Lindstrom2b266b72002-06-21 00:08:39 +0000546 TAILQ_INSERT_TAIL(&tab->idlist, id, next);
547 /* Increment the number of identities. */
548 tab->nentries++;
549 } else {
550 key_free(k);
Damien Miller4c7728c2007-10-26 14:25:31 +1000551 xfree(id->comment);
Ben Lindstrom61d328a2002-06-06 21:54:57 +0000552 }
Damien Miller4c7728c2007-10-26 14:25:31 +1000553 id->comment = comment;
554 id->death = death;
555 id->confirm = confirm;
Ben Lindstrom2b266b72002-06-21 00:08:39 +0000556send:
Ben Lindstrom61d328a2002-06-06 21:54:57 +0000557 buffer_put_int(&e->output, 1);
558 buffer_put_char(&e->output,
559 success ? SSH_AGENT_SUCCESS : SSH_AGENT_FAILURE);
560}
561
Ben Lindstrom2f717042002-06-06 21:52:03 +0000562/* XXX todo: encrypt sensitive data with passphrase */
563static void
564process_lock_agent(SocketEntry *e, int lock)
565{
Ben Lindstrom2f717042002-06-06 21:52:03 +0000566 int success = 0;
Ben Lindstrom822b6342002-06-23 21:38:49 +0000567 char *passwd;
Ben Lindstrom2f717042002-06-06 21:52:03 +0000568
569 passwd = buffer_get_string(&e->request, NULL);
570 if (locked && !lock && strcmp(passwd, lock_passwd) == 0) {
571 locked = 0;
572 memset(lock_passwd, 0, strlen(lock_passwd));
573 xfree(lock_passwd);
574 lock_passwd = NULL;
575 success = 1;
576 } else if (!locked && lock) {
577 locked = 1;
578 lock_passwd = xstrdup(passwd);
579 success = 1;
580 }
581 memset(passwd, 0, strlen(passwd));
582 xfree(passwd);
Ben Lindstromcb72e4f2002-06-21 00:41:51 +0000583
Ben Lindstrom2f717042002-06-06 21:52:03 +0000584 buffer_put_int(&e->output, 1);
585 buffer_put_char(&e->output,
586 success ? SSH_AGENT_SUCCESS : SSH_AGENT_FAILURE);
Ben Lindstrom2f717042002-06-06 21:52:03 +0000587}
588
589static void
590no_identities(SocketEntry *e, u_int type)
591{
592 Buffer msg;
593
594 buffer_init(&msg);
595 buffer_put_char(&msg,
596 (type == SSH_AGENTC_REQUEST_RSA_IDENTITIES) ?
597 SSH_AGENT_RSA_IDENTITIES_ANSWER : SSH2_AGENT_IDENTITIES_ANSWER);
598 buffer_put_int(&msg, 0);
599 buffer_put_int(&e->output, buffer_len(&msg));
600 buffer_append(&e->output, buffer_ptr(&msg), buffer_len(&msg));
601 buffer_free(&msg);
602}
Ben Lindstrom3f471632001-07-04 03:53:15 +0000603
604#ifdef SMARTCARD
605static void
606process_add_smartcard_key (SocketEntry *e)
607{
Ben Lindstromba72d302002-03-22 03:51:06 +0000608 char *sc_reader_id = NULL, *pin;
Damien Millerd94f20d2003-06-11 22:06:33 +1000609 int i, version, success = 0, death = 0, confirm = 0;
Ben Lindstrom822b6342002-06-23 21:38:49 +0000610 Key **keys, *k;
611 Identity *id;
612 Idtab *tab;
Damien Miller9f0f5c62001-12-21 14:45:46 +1100613
Ben Lindstrom21d1ed82002-06-06 21:48:57 +0000614 sc_reader_id = buffer_get_string(&e->request, NULL);
615 pin = buffer_get_string(&e->request, NULL);
Damien Millerd94f20d2003-06-11 22:06:33 +1000616
617 while (buffer_len(&e->request)) {
618 switch (buffer_get_char(&e->request)) {
619 case SSH_AGENT_CONSTRAIN_LIFETIME:
620 death = time(NULL) + buffer_get_int(&e->request);
621 break;
622 case SSH_AGENT_CONSTRAIN_CONFIRM:
623 confirm = 1;
624 break;
625 default:
626 break;
627 }
628 }
629 if (lifetime && !death)
630 death = time(NULL) + lifetime;
631
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000632 keys = sc_get_keys(sc_reader_id, pin);
Ben Lindstromf7db3bb2001-08-06 21:35:51 +0000633 xfree(sc_reader_id);
Ben Lindstromba72d302002-03-22 03:51:06 +0000634 xfree(pin);
Ben Lindstrom3f471632001-07-04 03:53:15 +0000635
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000636 if (keys == NULL || keys[0] == NULL) {
637 error("sc_get_keys failed");
Ben Lindstrom3f471632001-07-04 03:53:15 +0000638 goto send;
639 }
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000640 for (i = 0; keys[i] != NULL; i++) {
641 k = keys[i];
642 version = k->type == KEY_RSA1 ? 1 : 2;
643 tab = idtab_lookup(version);
644 if (lookup_identity(k, version) == NULL) {
645 id = xmalloc(sizeof(Identity));
646 id->key = k;
Damien Miller56a0bb02003-06-18 20:28:40 +1000647 id->comment = sc_get_key_label(k);
Damien Millerd94f20d2003-06-11 22:06:33 +1000648 id->death = death;
649 id->confirm = confirm;
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000650 TAILQ_INSERT_TAIL(&tab->idlist, id, next);
651 tab->nentries++;
652 success = 1;
653 } else {
654 key_free(k);
655 }
656 keys[i] = NULL;
Ben Lindstrom3f471632001-07-04 03:53:15 +0000657 }
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000658 xfree(keys);
Ben Lindstrom3f471632001-07-04 03:53:15 +0000659send:
660 buffer_put_int(&e->output, 1);
661 buffer_put_char(&e->output,
662 success ? SSH_AGENT_SUCCESS : SSH_AGENT_FAILURE);
663}
664
665static void
666process_remove_smartcard_key(SocketEntry *e)
667{
Ben Lindstromba72d302002-03-22 03:51:06 +0000668 char *sc_reader_id = NULL, *pin;
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000669 int i, version, success = 0;
Ben Lindstrom822b6342002-06-23 21:38:49 +0000670 Key **keys, *k = NULL;
671 Identity *id;
672 Idtab *tab;
Ben Lindstrom3f471632001-07-04 03:53:15 +0000673
Ben Lindstrom21d1ed82002-06-06 21:48:57 +0000674 sc_reader_id = buffer_get_string(&e->request, NULL);
675 pin = buffer_get_string(&e->request, NULL);
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000676 keys = sc_get_keys(sc_reader_id, pin);
Ben Lindstromf7db3bb2001-08-06 21:35:51 +0000677 xfree(sc_reader_id);
Ben Lindstromba72d302002-03-22 03:51:06 +0000678 xfree(pin);
Ben Lindstrom3f471632001-07-04 03:53:15 +0000679
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000680 if (keys == NULL || keys[0] == NULL) {
681 error("sc_get_keys failed");
682 goto send;
683 }
684 for (i = 0; keys[i] != NULL; i++) {
685 k = keys[i];
686 version = k->type == KEY_RSA1 ? 1 : 2;
687 if ((id = lookup_identity(k, version)) != NULL) {
688 tab = idtab_lookup(version);
Ben Lindstrom5a6abda2002-06-09 19:41:48 +0000689 TAILQ_REMOVE(&tab->idlist, id, next);
Ben Lindstrom3f471632001-07-04 03:53:15 +0000690 tab->nentries--;
Damien Miller1a534ae2002-01-22 23:26:13 +1100691 free_identity(id);
Ben Lindstrom3f471632001-07-04 03:53:15 +0000692 success = 1;
693 }
694 key_free(k);
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000695 keys[i] = NULL;
Ben Lindstrom3f471632001-07-04 03:53:15 +0000696 }
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000697 xfree(keys);
698send:
Ben Lindstrom3f471632001-07-04 03:53:15 +0000699 buffer_put_int(&e->output, 1);
700 buffer_put_char(&e->output,
701 success ? SSH_AGENT_SUCCESS : SSH_AGENT_FAILURE);
702}
Ben Lindstromffce1472001-08-06 21:57:31 +0000703#endif /* SMARTCARD */
Ben Lindstrom3f471632001-07-04 03:53:15 +0000704
Damien Millerad833b32000-08-23 10:46:23 +1000705/* dispatch incoming messages */
706
Ben Lindstrombba81212001-06-25 05:01:22 +0000707static void
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000708process_message(SocketEntry *e)
709{
Ben Lindstrom822b6342002-06-23 21:38:49 +0000710 u_int msg_len, type;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000711 u_char *cp;
Ben Lindstrom61d328a2002-06-06 21:54:57 +0000712
Damien Miller95def091999-11-25 00:26:21 +1100713 if (buffer_len(&e->input) < 5)
714 return; /* Incomplete message. */
Damien Miller708d21c2002-01-22 23:18:15 +1100715 cp = buffer_ptr(&e->input);
Damien Miller3f941882006-03-31 23:13:02 +1100716 msg_len = get_u32(cp);
Damien Miller95def091999-11-25 00:26:21 +1100717 if (msg_len > 256 * 1024) {
Damien Miller58f34862002-09-04 16:31:21 +1000718 close_socket(e);
Damien Miller95def091999-11-25 00:26:21 +1100719 return;
720 }
721 if (buffer_len(&e->input) < msg_len + 4)
722 return;
Ben Lindstrom21d1ed82002-06-06 21:48:57 +0000723
724 /* move the current input to e->request */
Damien Miller95def091999-11-25 00:26:21 +1100725 buffer_consume(&e->input, 4);
Ben Lindstrom21d1ed82002-06-06 21:48:57 +0000726 buffer_clear(&e->request);
727 buffer_append(&e->request, buffer_ptr(&e->input), msg_len);
728 buffer_consume(&e->input, msg_len);
729 type = buffer_get_char(&e->request);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000730
Ben Lindstrom2f717042002-06-06 21:52:03 +0000731 /* check wheter agent is locked */
732 if (locked && type != SSH_AGENTC_UNLOCK) {
733 buffer_clear(&e->request);
734 switch (type) {
735 case SSH_AGENTC_REQUEST_RSA_IDENTITIES:
736 case SSH2_AGENTC_REQUEST_IDENTITIES:
737 /* send empty lists */
738 no_identities(e, type);
739 break;
740 default:
741 /* send a fail message for all other request types */
742 buffer_put_int(&e->output, 1);
743 buffer_put_char(&e->output, SSH_AGENT_FAILURE);
744 }
745 return;
746 }
747
Ben Lindstrom3f471632001-07-04 03:53:15 +0000748 debug("type %d", type);
Damien Miller95def091999-11-25 00:26:21 +1100749 switch (type) {
Ben Lindstrom2f717042002-06-06 21:52:03 +0000750 case SSH_AGENTC_LOCK:
751 case SSH_AGENTC_UNLOCK:
752 process_lock_agent(e, type == SSH_AGENTC_LOCK);
753 break;
Damien Millerad833b32000-08-23 10:46:23 +1000754 /* ssh1 */
Damien Miller95def091999-11-25 00:26:21 +1100755 case SSH_AGENTC_RSA_CHALLENGE:
Damien Millerad833b32000-08-23 10:46:23 +1000756 process_authentication_challenge1(e);
757 break;
758 case SSH_AGENTC_REQUEST_RSA_IDENTITIES:
759 process_request_identities(e, 1);
Damien Miller95def091999-11-25 00:26:21 +1100760 break;
761 case SSH_AGENTC_ADD_RSA_IDENTITY:
Ben Lindstrom2b266b72002-06-21 00:08:39 +0000762 case SSH_AGENTC_ADD_RSA_ID_CONSTRAINED:
Damien Millerad833b32000-08-23 10:46:23 +1000763 process_add_identity(e, 1);
Damien Miller95def091999-11-25 00:26:21 +1100764 break;
765 case SSH_AGENTC_REMOVE_RSA_IDENTITY:
Damien Millerad833b32000-08-23 10:46:23 +1000766 process_remove_identity(e, 1);
Damien Miller95def091999-11-25 00:26:21 +1100767 break;
768 case SSH_AGENTC_REMOVE_ALL_RSA_IDENTITIES:
Damien Millerad833b32000-08-23 10:46:23 +1000769 process_remove_all_identities(e, 1);
770 break;
771 /* ssh2 */
772 case SSH2_AGENTC_SIGN_REQUEST:
773 process_sign_request2(e);
774 break;
775 case SSH2_AGENTC_REQUEST_IDENTITIES:
776 process_request_identities(e, 2);
777 break;
778 case SSH2_AGENTC_ADD_IDENTITY:
Ben Lindstrom2b266b72002-06-21 00:08:39 +0000779 case SSH2_AGENTC_ADD_ID_CONSTRAINED:
Damien Millerad833b32000-08-23 10:46:23 +1000780 process_add_identity(e, 2);
781 break;
782 case SSH2_AGENTC_REMOVE_IDENTITY:
783 process_remove_identity(e, 2);
784 break;
785 case SSH2_AGENTC_REMOVE_ALL_IDENTITIES:
786 process_remove_all_identities(e, 2);
Damien Miller95def091999-11-25 00:26:21 +1100787 break;
Ben Lindstrom3f471632001-07-04 03:53:15 +0000788#ifdef SMARTCARD
789 case SSH_AGENTC_ADD_SMARTCARD_KEY:
Damien Millerd94f20d2003-06-11 22:06:33 +1000790 case SSH_AGENTC_ADD_SMARTCARD_KEY_CONSTRAINED:
Ben Lindstrom3f471632001-07-04 03:53:15 +0000791 process_add_smartcard_key(e);
Damien Miller9f0f5c62001-12-21 14:45:46 +1100792 break;
Ben Lindstrom3f471632001-07-04 03:53:15 +0000793 case SSH_AGENTC_REMOVE_SMARTCARD_KEY:
794 process_remove_smartcard_key(e);
Damien Miller9f0f5c62001-12-21 14:45:46 +1100795 break;
Ben Lindstromffce1472001-08-06 21:57:31 +0000796#endif /* SMARTCARD */
Damien Miller95def091999-11-25 00:26:21 +1100797 default:
798 /* Unknown message. Respond with failure. */
799 error("Unknown message %d", type);
Ben Lindstrom21d1ed82002-06-06 21:48:57 +0000800 buffer_clear(&e->request);
Damien Miller95def091999-11-25 00:26:21 +1100801 buffer_put_int(&e->output, 1);
802 buffer_put_char(&e->output, SSH_AGENT_FAILURE);
803 break;
804 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000805}
806
Ben Lindstrombba81212001-06-25 05:01:22 +0000807static void
Ben Lindstrom65366a82001-12-06 16:32:47 +0000808new_socket(sock_type type, int fd)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000809{
Darren Tuckerfb16b242003-09-22 21:04:23 +1000810 u_int i, old_alloc, new_alloc;
Ben Lindstrom822b6342002-06-23 21:38:49 +0000811
Damien Miller232711f2004-06-15 10:35:30 +1000812 set_nonblock(fd);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000813
Damien Miller95def091999-11-25 00:26:21 +1100814 if (fd > max_fd)
815 max_fd = fd;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000816
Damien Miller95def091999-11-25 00:26:21 +1100817 for (i = 0; i < sockets_alloc; i++)
818 if (sockets[i].type == AUTH_UNUSED) {
819 sockets[i].fd = fd;
Damien Miller95def091999-11-25 00:26:21 +1100820 buffer_init(&sockets[i].input);
821 buffer_init(&sockets[i].output);
Ben Lindstrom21d1ed82002-06-06 21:48:57 +0000822 buffer_init(&sockets[i].request);
Darren Tuckerfb16b242003-09-22 21:04:23 +1000823 sockets[i].type = type;
Damien Miller95def091999-11-25 00:26:21 +1100824 return;
825 }
826 old_alloc = sockets_alloc;
Darren Tuckerfb16b242003-09-22 21:04:23 +1000827 new_alloc = sockets_alloc + 10;
Damien Miller36812092006-03-26 14:22:47 +1100828 sockets = xrealloc(sockets, new_alloc, sizeof(sockets[0]));
Darren Tuckerfb16b242003-09-22 21:04:23 +1000829 for (i = old_alloc; i < new_alloc; i++)
Damien Miller95def091999-11-25 00:26:21 +1100830 sockets[i].type = AUTH_UNUSED;
Darren Tuckerfb16b242003-09-22 21:04:23 +1000831 sockets_alloc = new_alloc;
Damien Miller95def091999-11-25 00:26:21 +1100832 sockets[old_alloc].fd = fd;
833 buffer_init(&sockets[old_alloc].input);
834 buffer_init(&sockets[old_alloc].output);
Ben Lindstrom21d1ed82002-06-06 21:48:57 +0000835 buffer_init(&sockets[old_alloc].request);
Darren Tuckerfb16b242003-09-22 21:04:23 +1000836 sockets[old_alloc].type = type;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000837}
838
Ben Lindstrombba81212001-06-25 05:01:22 +0000839static int
Darren Tucker2812dc92007-03-21 20:45:06 +1100840prepare_select(fd_set **fdrp, fd_set **fdwp, int *fdl, u_int *nallocp,
841 struct timeval **tvpp)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000842{
Darren Tucker2812dc92007-03-21 20:45:06 +1100843 u_int i, sz, deadline;
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000844 int n = 0;
Darren Tucker2812dc92007-03-21 20:45:06 +1100845 static struct timeval tv;
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000846
847 for (i = 0; i < sockets_alloc; i++) {
Damien Miller95def091999-11-25 00:26:21 +1100848 switch (sockets[i].type) {
849 case AUTH_SOCKET:
850 case AUTH_CONNECTION:
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000851 n = MAX(n, sockets[i].fd);
Damien Miller95def091999-11-25 00:26:21 +1100852 break;
853 case AUTH_UNUSED:
854 break;
855 default:
856 fatal("Unknown socket type %d", sockets[i].type);
857 break;
858 }
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000859 }
860
861 sz = howmany(n+1, NFDBITS) * sizeof(fd_mask);
Ben Lindstroma3d5a4c2001-07-18 15:58:08 +0000862 if (*fdrp == NULL || sz > *nallocp) {
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000863 if (*fdrp)
Ben Lindstrom86ebcb62001-04-04 01:53:20 +0000864 xfree(*fdrp);
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000865 if (*fdwp)
Ben Lindstrom86ebcb62001-04-04 01:53:20 +0000866 xfree(*fdwp);
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000867 *fdrp = xmalloc(sz);
868 *fdwp = xmalloc(sz);
Ben Lindstroma3d5a4c2001-07-18 15:58:08 +0000869 *nallocp = sz;
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000870 }
Ben Lindstroma3d5a4c2001-07-18 15:58:08 +0000871 if (n < *fdl)
872 debug("XXX shrink: %d < %d", n, *fdl);
873 *fdl = n;
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000874 memset(*fdrp, 0, sz);
875 memset(*fdwp, 0, sz);
876
877 for (i = 0; i < sockets_alloc; i++) {
878 switch (sockets[i].type) {
879 case AUTH_SOCKET:
880 case AUTH_CONNECTION:
881 FD_SET(sockets[i].fd, *fdrp);
882 if (buffer_len(&sockets[i].output) > 0)
883 FD_SET(sockets[i].fd, *fdwp);
884 break;
885 default:
886 break;
887 }
888 }
Darren Tucker2812dc92007-03-21 20:45:06 +1100889 deadline = reaper();
890 if (parent_alive_interval != 0)
891 deadline = (deadline == 0) ? parent_alive_interval :
892 MIN(deadline, parent_alive_interval);
893 if (deadline == 0) {
894 *tvpp = NULL;
895 } else {
896 tv.tv_sec = deadline;
897 tv.tv_usec = 0;
898 *tvpp = &tv;
899 }
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000900 return (1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000901}
902
Ben Lindstrombba81212001-06-25 05:01:22 +0000903static void
Damien Miller95def091999-11-25 00:26:21 +1100904after_select(fd_set *readset, fd_set *writeset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000905{
Ben Lindstrom822b6342002-06-23 21:38:49 +0000906 struct sockaddr_un sunaddr;
Damien Miller7684ee12000-03-17 23:40:15 +1100907 socklen_t slen;
Damien Miller95def091999-11-25 00:26:21 +1100908 char buf[1024];
Ben Lindstrom822b6342002-06-23 21:38:49 +0000909 int len, sock;
910 u_int i;
Damien Miller538f1812002-09-12 09:51:10 +1000911 uid_t euid;
912 gid_t egid;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000913
Damien Miller95def091999-11-25 00:26:21 +1100914 for (i = 0; i < sockets_alloc; i++)
915 switch (sockets[i].type) {
916 case AUTH_UNUSED:
917 break;
918 case AUTH_SOCKET:
919 if (FD_ISSET(sockets[i].fd, readset)) {
Damien Miller7684ee12000-03-17 23:40:15 +1100920 slen = sizeof(sunaddr);
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000921 sock = accept(sockets[i].fd,
Damien Miller90967402006-03-26 14:07:26 +1100922 (struct sockaddr *)&sunaddr, &slen);
Damien Miller95def091999-11-25 00:26:21 +1100923 if (sock < 0) {
Damien Millerc653b892002-02-08 22:05:41 +1100924 error("accept from AUTH_SOCKET: %s",
925 strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +1100926 break;
927 }
Damien Miller538f1812002-09-12 09:51:10 +1000928 if (getpeereid(sock, &euid, &egid) < 0) {
929 error("getpeereid %d failed: %s",
930 sock, strerror(errno));
931 close(sock);
932 break;
933 }
Damien Milleraf9de382002-10-03 11:54:35 +1000934 if ((euid != 0) && (getuid() != euid)) {
Damien Miller538f1812002-09-12 09:51:10 +1000935 error("uid mismatch: "
Damien Millerdb30b122002-09-19 11:46:58 +1000936 "peer euid %u != uid %u",
937 (u_int) euid, (u_int) getuid());
Damien Miller538f1812002-09-12 09:51:10 +1000938 close(sock);
939 break;
940 }
Damien Miller95def091999-11-25 00:26:21 +1100941 new_socket(AUTH_CONNECTION, sock);
942 }
943 break;
944 case AUTH_CONNECTION:
945 if (buffer_len(&sockets[i].output) > 0 &&
946 FD_ISSET(sockets[i].fd, writeset)) {
Ben Lindstromb3144e52001-03-06 03:31:34 +0000947 do {
948 len = write(sockets[i].fd,
949 buffer_ptr(&sockets[i].output),
950 buffer_len(&sockets[i].output));
951 if (len == -1 && (errno == EAGAIN ||
952 errno == EINTR))
953 continue;
954 break;
955 } while (1);
Damien Miller95def091999-11-25 00:26:21 +1100956 if (len <= 0) {
Damien Miller58f34862002-09-04 16:31:21 +1000957 close_socket(&sockets[i]);
Damien Miller95def091999-11-25 00:26:21 +1100958 break;
959 }
960 buffer_consume(&sockets[i].output, len);
961 }
962 if (FD_ISSET(sockets[i].fd, readset)) {
Ben Lindstromb3144e52001-03-06 03:31:34 +0000963 do {
964 len = read(sockets[i].fd, buf, sizeof(buf));
965 if (len == -1 && (errno == EAGAIN ||
966 errno == EINTR))
967 continue;
968 break;
969 } while (1);
Damien Miller95def091999-11-25 00:26:21 +1100970 if (len <= 0) {
Damien Miller58f34862002-09-04 16:31:21 +1000971 close_socket(&sockets[i]);
Damien Miller95def091999-11-25 00:26:21 +1100972 break;
973 }
974 buffer_append(&sockets[i].input, buf, len);
975 process_message(&sockets[i]);
976 }
977 break;
978 default:
979 fatal("Unknown type %d", sockets[i].type);
980 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000981}
982
Ben Lindstrombba81212001-06-25 05:01:22 +0000983static void
Darren Tucker6fa8abd2003-09-22 21:10:21 +1000984cleanup_socket(void)
Damien Miller792c5111999-10-29 09:47:09 +1000985{
Ben Lindstrom77808ab2001-01-26 05:10:34 +0000986 if (socket_name[0])
987 unlink(socket_name);
988 if (socket_dir[0])
989 rmdir(socket_dir);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000990}
991
Darren Tucker3e33cec2003-10-02 16:12:36 +1000992void
Damien Miller792c5111999-10-29 09:47:09 +1000993cleanup_exit(int i)
994{
Darren Tucker6fa8abd2003-09-22 21:10:21 +1000995 cleanup_socket();
996 _exit(i);
Damien Miller792c5111999-10-29 09:47:09 +1000997}
998
Damien Miller1c13bd82006-03-26 14:28:14 +1100999/*ARGSUSED*/
Ben Lindstrombba81212001-06-25 05:01:22 +00001000static void
Ben Lindstrom77808ab2001-01-26 05:10:34 +00001001cleanup_handler(int sig)
1002{
Darren Tucker6fa8abd2003-09-22 21:10:21 +10001003 cleanup_socket();
Ben Lindstrom77808ab2001-01-26 05:10:34 +00001004 _exit(2);
1005}
1006
Ben Lindstrombba81212001-06-25 05:01:22 +00001007static void
Darren Tucker2812dc92007-03-21 20:45:06 +11001008check_parent_exists(void)
Ben Lindstrom0250da02001-07-22 20:44:00 +00001009{
Ben Lindstrom0250da02001-07-22 20:44:00 +00001010 if (parent_pid != -1 && kill(parent_pid, 0) < 0) {
1011 /* printf("Parent has died - Authentication agent exiting.\n"); */
Darren Tucker2812dc92007-03-21 20:45:06 +11001012 cleanup_socket();
1013 _exit(2);
Ben Lindstrom0250da02001-07-22 20:44:00 +00001014 }
Ben Lindstrom0250da02001-07-22 20:44:00 +00001015}
1016
1017static void
Ben Lindstrom28072eb2001-02-10 23:13:41 +00001018usage(void)
Damien Miller792c5111999-10-29 09:47:09 +10001019{
Damien Miller5cbe7ca2007-09-17 16:05:50 +10001020 fprintf(stderr, "usage: %s [options] [command [arg ...]]\n",
Kevin Steves29265862001-01-24 14:06:28 +00001021 __progname);
Ben Lindstromddfb1e32001-08-06 22:06:35 +00001022 fprintf(stderr, "Options:\n");
1023 fprintf(stderr, " -c Generate C-shell commands on stdout.\n");
1024 fprintf(stderr, " -s Generate Bourne shell commands on stdout.\n");
1025 fprintf(stderr, " -k Kill the current agent.\n");
1026 fprintf(stderr, " -d Debug mode.\n");
Ben Lindstromb7788f32002-06-06 21:46:08 +00001027 fprintf(stderr, " -a socket Bind agent socket to given name.\n");
Damien Miller53d81482003-01-22 11:47:19 +11001028 fprintf(stderr, " -t life Default identity lifetime (seconds).\n");
Damien Miller95def091999-11-25 00:26:21 +11001029 exit(1);
Damien Miller792c5111999-10-29 09:47:09 +10001030}
1031
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001032int
1033main(int ac, char **av)
1034{
Damien Miller6c711792003-01-24 11:36:23 +11001035 int c_flag = 0, d_flag = 0, k_flag = 0, s_flag = 0;
Darren Tuckercf0d2db2007-02-28 21:19:58 +11001036 int sock, fd, ch, result, saved_errno;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10001037 u_int nalloc;
Ben Lindstrom822b6342002-06-23 21:38:49 +00001038 char *shell, *format, *pidstr, *agentsocket = NULL;
1039 fd_set *readsetp = NULL, *writesetp = NULL;
Damien Miller95def091999-11-25 00:26:21 +11001040 struct sockaddr_un sunaddr;
Ben Lindstrom2c467a22000-12-27 04:57:41 +00001041#ifdef HAVE_SETRLIMIT
Ben Lindstromc72745a2000-12-02 19:03:54 +00001042 struct rlimit rlim;
Ben Lindstrom2c467a22000-12-27 04:57:41 +00001043#endif
Ben Lindstrom3524d692001-05-03 22:59:24 +00001044 int prev_mask;
Damien Miller615f9392000-05-17 22:53:33 +10001045 extern int optind;
Ben Lindstrom883844d2002-06-23 00:20:50 +00001046 extern char *optarg;
Ben Lindstrom822b6342002-06-23 21:38:49 +00001047 pid_t pid;
1048 char pidstrbuf[1 + 3 * sizeof pid];
Darren Tucker2812dc92007-03-21 20:45:06 +11001049 struct timeval *tvp = NULL;
Kevin Stevesde41bc62000-12-14 00:04:08 +00001050
Darren Tuckerce321d82005-10-03 18:11:24 +10001051 /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
1052 sanitise_stdfd();
1053
Damien Miller6cffb9a2002-09-04 16:20:26 +10001054 /* drop */
1055 setegid(getgid());
1056 setgid(getgid());
1057
Damien Miller6c4914a2004-03-03 11:08:59 +11001058#if defined(HAVE_PRCTL) && defined(PR_SET_DUMPABLE)
1059 /* Disable ptrace on Linux without sgid bit */
1060 prctl(PR_SET_DUMPABLE, 0);
1061#endif
1062
Ben Lindstromd09fcf52001-03-29 00:29:54 +00001063 SSLeay_add_all_algorithms();
1064
Damien Miller59d3d5b2003-08-22 09:34:41 +10001065 __progname = ssh_get_progname(av[0]);
Damien Millerf9b625c2000-07-09 22:42:32 +10001066 init_rng();
Damien Miller60bc5172001-03-19 09:38:15 +11001067 seed_rng();
Kevin Stevesef4eea92001-02-05 12:42:17 +00001068
Damien Miller53d81482003-01-22 11:47:19 +11001069 while ((ch = getopt(ac, av, "cdksa:t:")) != -1) {
Damien Miller95def091999-11-25 00:26:21 +11001070 switch (ch) {
1071 case 'c':
1072 if (s_flag)
1073 usage();
1074 c_flag++;
1075 break;
1076 case 'k':
1077 k_flag++;
1078 break;
1079 case 's':
1080 if (c_flag)
1081 usage();
1082 s_flag++;
1083 break;
Ben Lindstromd94580c2001-07-04 03:48:02 +00001084 case 'd':
1085 if (d_flag)
1086 usage();
1087 d_flag++;
1088 break;
Ben Lindstromb7788f32002-06-06 21:46:08 +00001089 case 'a':
1090 agentsocket = optarg;
1091 break;
Damien Miller53d81482003-01-22 11:47:19 +11001092 case 't':
1093 if ((lifetime = convtime(optarg)) == -1) {
1094 fprintf(stderr, "Invalid lifetime\n");
1095 usage();
1096 }
1097 break;
Damien Miller95def091999-11-25 00:26:21 +11001098 default:
1099 usage();
1100 }
Damien Miller792c5111999-10-29 09:47:09 +10001101 }
Damien Miller95def091999-11-25 00:26:21 +11001102 ac -= optind;
1103 av += optind;
Damien Miller792c5111999-10-29 09:47:09 +10001104
Ben Lindstromd94580c2001-07-04 03:48:02 +00001105 if (ac > 0 && (c_flag || k_flag || s_flag || d_flag))
Damien Miller95def091999-11-25 00:26:21 +11001106 usage();
Damien Miller792c5111999-10-29 09:47:09 +10001107
Ben Lindstromeecdf232002-04-02 21:03:51 +00001108 if (ac == 0 && !c_flag && !s_flag) {
Damien Miller95def091999-11-25 00:26:21 +11001109 shell = getenv("SHELL");
Damien Miller89c3fe42006-03-31 23:11:28 +11001110 if (shell != NULL &&
1111 strncmp(shell + strlen(shell) - 3, "csh", 3) == 0)
Damien Miller95def091999-11-25 00:26:21 +11001112 c_flag = 1;
Damien Miller792c5111999-10-29 09:47:09 +10001113 }
Damien Miller95def091999-11-25 00:26:21 +11001114 if (k_flag) {
Damien Miller89c3fe42006-03-31 23:11:28 +11001115 const char *errstr = NULL;
1116
Damien Miller95def091999-11-25 00:26:21 +11001117 pidstr = getenv(SSH_AGENTPID_ENV_NAME);
1118 if (pidstr == NULL) {
1119 fprintf(stderr, "%s not set, cannot kill agent\n",
Ben Lindstrom226cfa02001-01-22 05:34:40 +00001120 SSH_AGENTPID_ENV_NAME);
Damien Miller95def091999-11-25 00:26:21 +11001121 exit(1);
1122 }
Damien Miller89c3fe42006-03-31 23:11:28 +11001123 pid = (int)strtonum(pidstr, 2, INT_MAX, &errstr);
1124 if (errstr) {
1125 fprintf(stderr,
1126 "%s=\"%s\", which is not a good PID: %s\n",
1127 SSH_AGENTPID_ENV_NAME, pidstr, errstr);
Damien Miller95def091999-11-25 00:26:21 +11001128 exit(1);
1129 }
1130 if (kill(pid, SIGTERM) == -1) {
1131 perror("kill");
1132 exit(1);
1133 }
1134 format = c_flag ? "unsetenv %s;\n" : "unset %s;\n";
1135 printf(format, SSH_AUTHSOCKET_ENV_NAME);
1136 printf(format, SSH_AGENTPID_ENV_NAME);
Ben Lindstromce0f6342002-06-11 16:42:49 +00001137 printf("echo Agent pid %ld killed;\n", (long)pid);
Damien Miller95def091999-11-25 00:26:21 +11001138 exit(0);
Damien Miller792c5111999-10-29 09:47:09 +10001139 }
Damien Miller95def091999-11-25 00:26:21 +11001140 parent_pid = getpid();
1141
Ben Lindstromb7788f32002-06-06 21:46:08 +00001142 if (agentsocket == NULL) {
1143 /* Create private directory for agent socket */
Darren Tucker072a7b12003-10-15 16:10:25 +10001144 strlcpy(socket_dir, "/tmp/ssh-XXXXXXXXXX", sizeof socket_dir);
Ben Lindstromb7788f32002-06-06 21:46:08 +00001145 if (mkdtemp(socket_dir) == NULL) {
1146 perror("mkdtemp: private socket dir");
1147 exit(1);
1148 }
Ben Lindstromce0f6342002-06-11 16:42:49 +00001149 snprintf(socket_name, sizeof socket_name, "%s/agent.%ld", socket_dir,
1150 (long)parent_pid);
Ben Lindstromb7788f32002-06-06 21:46:08 +00001151 } else {
1152 /* Try to use specified agent socket */
1153 socket_dir[0] = '\0';
1154 strlcpy(socket_name, agentsocket, sizeof socket_name);
Damien Miller792c5111999-10-29 09:47:09 +10001155 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001156
Damien Miller5428f641999-11-25 11:54:57 +11001157 /*
1158 * Create socket early so it will exist before command gets run from
1159 * the parent.
1160 */
Damien Miller95def091999-11-25 00:26:21 +11001161 sock = socket(AF_UNIX, SOCK_STREAM, 0);
1162 if (sock < 0) {
1163 perror("socket");
Darren Tucker1dee8682004-11-05 20:26:49 +11001164 *socket_name = '\0'; /* Don't unlink any existing file */
Damien Miller95def091999-11-25 00:26:21 +11001165 cleanup_exit(1);
Damien Miller792c5111999-10-29 09:47:09 +10001166 }
Damien Miller95def091999-11-25 00:26:21 +11001167 memset(&sunaddr, 0, sizeof(sunaddr));
1168 sunaddr.sun_family = AF_UNIX;
1169 strlcpy(sunaddr.sun_path, socket_name, sizeof(sunaddr.sun_path));
Ben Lindstrom3524d692001-05-03 22:59:24 +00001170 prev_mask = umask(0177);
Damien Miller90967402006-03-26 14:07:26 +11001171 if (bind(sock, (struct sockaddr *) &sunaddr, sizeof(sunaddr)) < 0) {
Damien Miller95def091999-11-25 00:26:21 +11001172 perror("bind");
Darren Tucker1dee8682004-11-05 20:26:49 +11001173 *socket_name = '\0'; /* Don't unlink any existing file */
Ben Lindstrom3524d692001-05-03 22:59:24 +00001174 umask(prev_mask);
Damien Miller95def091999-11-25 00:26:21 +11001175 cleanup_exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001176 }
Ben Lindstrom3524d692001-05-03 22:59:24 +00001177 umask(prev_mask);
Darren Tucker3175eb92003-12-09 19:15:11 +11001178 if (listen(sock, SSH_LISTEN_BACKLOG) < 0) {
Damien Miller95def091999-11-25 00:26:21 +11001179 perror("listen");
1180 cleanup_exit(1);
1181 }
Ben Lindstrom226cfa02001-01-22 05:34:40 +00001182
Damien Miller5428f641999-11-25 11:54:57 +11001183 /*
1184 * Fork, and have the parent execute the command, if any, or present
1185 * the socket data. The child continues as the authentication agent.
1186 */
Ben Lindstromd94580c2001-07-04 03:48:02 +00001187 if (d_flag) {
1188 log_init(__progname, SYSLOG_LEVEL_DEBUG1, SYSLOG_FACILITY_AUTH, 1);
1189 format = c_flag ? "setenv %s %s;\n" : "%s=%s; export %s;\n";
1190 printf(format, SSH_AUTHSOCKET_ENV_NAME, socket_name,
1191 SSH_AUTHSOCKET_ENV_NAME);
Ben Lindstromce0f6342002-06-11 16:42:49 +00001192 printf("echo Agent pid %ld;\n", (long)parent_pid);
Ben Lindstromd94580c2001-07-04 03:48:02 +00001193 goto skip;
1194 }
Damien Miller95def091999-11-25 00:26:21 +11001195 pid = fork();
1196 if (pid == -1) {
1197 perror("fork");
Damien Millerc653b892002-02-08 22:05:41 +11001198 cleanup_exit(1);
Damien Miller95def091999-11-25 00:26:21 +11001199 }
1200 if (pid != 0) { /* Parent - execute the given command. */
1201 close(sock);
Ben Lindstromce0f6342002-06-11 16:42:49 +00001202 snprintf(pidstrbuf, sizeof pidstrbuf, "%ld", (long)pid);
Damien Miller95def091999-11-25 00:26:21 +11001203 if (ac == 0) {
1204 format = c_flag ? "setenv %s %s;\n" : "%s=%s; export %s;\n";
1205 printf(format, SSH_AUTHSOCKET_ENV_NAME, socket_name,
Ben Lindstrom226cfa02001-01-22 05:34:40 +00001206 SSH_AUTHSOCKET_ENV_NAME);
Damien Miller95def091999-11-25 00:26:21 +11001207 printf(format, SSH_AGENTPID_ENV_NAME, pidstrbuf,
Ben Lindstrom226cfa02001-01-22 05:34:40 +00001208 SSH_AGENTPID_ENV_NAME);
Ben Lindstromce0f6342002-06-11 16:42:49 +00001209 printf("echo Agent pid %ld;\n", (long)pid);
Damien Miller95def091999-11-25 00:26:21 +11001210 exit(0);
1211 }
Damien Millere4340be2000-09-16 13:29:08 +11001212 if (setenv(SSH_AUTHSOCKET_ENV_NAME, socket_name, 1) == -1 ||
1213 setenv(SSH_AGENTPID_ENV_NAME, pidstrbuf, 1) == -1) {
1214 perror("setenv");
1215 exit(1);
1216 }
Damien Miller95def091999-11-25 00:26:21 +11001217 execvp(av[0], av);
1218 perror(av[0]);
1219 exit(1);
1220 }
Damien Millerc653b892002-02-08 22:05:41 +11001221 /* child */
1222 log_init(__progname, SYSLOG_LEVEL_INFO, SYSLOG_FACILITY_AUTH, 0);
Ben Lindstrom3fdf8762001-07-22 20:40:24 +00001223
1224 if (setsid() == -1) {
Damien Millerc653b892002-02-08 22:05:41 +11001225 error("setsid: %s", strerror(errno));
Ben Lindstrom3fdf8762001-07-22 20:40:24 +00001226 cleanup_exit(1);
1227 }
1228
1229 (void)chdir("/");
Damien Miller6c711792003-01-24 11:36:23 +11001230 if ((fd = open(_PATH_DEVNULL, O_RDWR, 0)) != -1) {
1231 /* XXX might close listen socket */
1232 (void)dup2(fd, STDIN_FILENO);
1233 (void)dup2(fd, STDOUT_FILENO);
1234 (void)dup2(fd, STDERR_FILENO);
1235 if (fd > 2)
1236 close(fd);
1237 }
Damien Miller95def091999-11-25 00:26:21 +11001238
Ben Lindstrom2c467a22000-12-27 04:57:41 +00001239#ifdef HAVE_SETRLIMIT
Ben Lindstromc72745a2000-12-02 19:03:54 +00001240 /* deny core dumps, since memory contains unencrypted private keys */
1241 rlim.rlim_cur = rlim.rlim_max = 0;
1242 if (setrlimit(RLIMIT_CORE, &rlim) < 0) {
Damien Millerc653b892002-02-08 22:05:41 +11001243 error("setrlimit RLIMIT_CORE: %s", strerror(errno));
Ben Lindstromc72745a2000-12-02 19:03:54 +00001244 cleanup_exit(1);
1245 }
Ben Lindstrom2c467a22000-12-27 04:57:41 +00001246#endif
Ben Lindstromd94580c2001-07-04 03:48:02 +00001247
1248skip:
Damien Miller95def091999-11-25 00:26:21 +11001249 new_socket(AUTH_SOCKET, sock);
Darren Tucker2812dc92007-03-21 20:45:06 +11001250 if (ac > 0)
1251 parent_alive_interval = 10;
Damien Millerad833b32000-08-23 10:46:23 +10001252 idtab_init();
Damien Miller48bfa9c2001-07-14 12:12:55 +10001253 if (!d_flag)
Ben Lindstromd94580c2001-07-04 03:48:02 +00001254 signal(SIGINT, SIG_IGN);
Damien Miller48bfa9c2001-07-14 12:12:55 +10001255 signal(SIGPIPE, SIG_IGN);
Ben Lindstrom77808ab2001-01-26 05:10:34 +00001256 signal(SIGHUP, cleanup_handler);
1257 signal(SIGTERM, cleanup_handler);
Ben Lindstroma3d5a4c2001-07-18 15:58:08 +00001258 nalloc = 0;
1259
Damien Miller95def091999-11-25 00:26:21 +11001260 while (1) {
Darren Tucker2812dc92007-03-21 20:45:06 +11001261 prepare_select(&readsetp, &writesetp, &max_fd, &nalloc, &tvp);
1262 result = select(max_fd + 1, readsetp, writesetp, NULL, tvp);
Darren Tuckercf0d2db2007-02-28 21:19:58 +11001263 saved_errno = errno;
Darren Tucker2812dc92007-03-21 20:45:06 +11001264 if (parent_alive_interval != 0)
1265 check_parent_exists();
1266 (void) reaper(); /* remove expired keys */
Darren Tuckercf0d2db2007-02-28 21:19:58 +11001267 if (result < 0) {
1268 if (saved_errno == EINTR)
Damien Miller95def091999-11-25 00:26:21 +11001269 continue;
Darren Tuckercf0d2db2007-02-28 21:19:58 +11001270 fatal("select: %s", strerror(saved_errno));
1271 } else if (result > 0)
1272 after_select(readsetp, writesetp);
Damien Miller95def091999-11-25 00:26:21 +11001273 }
1274 /* NOTREACHED */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001275}