blob: 8f9e2e8cec53a6bcc1365d5db82c2fa517d1259c [file] [log] [blame]
Damien Miller1cfadab2008-06-30 00:05:21 +10001/* $OpenBSD: ssh-agent.c,v 1.158 2008/06/28 13:58:23 djm 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>
Darren Tuckerbfaaf962008-02-28 19:13:52 +110054#include "openbsd-compat/openssl-compat.h"
Damien Millere3476ed2006-07-24 14:13:33 +100055
Darren Tucker39972492006-07-12 22:22:46 +100056#include <errno.h>
Damien Miller57cf6382006-07-10 21:13:46 +100057#include <fcntl.h>
Damien Miller03e20032006-03-15 11:16:59 +110058#ifdef HAVE_PATHS_H
Damien Millera9263d02006-03-15 11:18:26 +110059# include <paths.h>
Damien Miller03e20032006-03-15 11:16:59 +110060#endif
Damien Miller6ff3cad2006-03-15 11:52:09 +110061#include <signal.h>
Damien Millerded319c2006-09-01 15:38:36 +100062#include <stdarg.h>
Damien Millera7a73ee2006-08-05 11:37:59 +100063#include <stdio.h>
Damien Millere7a1e5c2006-08-05 11:34:19 +100064#include <stdlib.h>
Damien Miller5598b4f2006-07-24 14:09:40 +100065#include <time.h>
Damien Millere3476ed2006-07-24 14:13:33 +100066#include <string.h>
Damien Millere6b3b612006-07-24 14:01:23 +100067#include <unistd.h>
Damien Miller6ff3cad2006-03-15 11:52:09 +110068
Damien Millerd7834352006-08-05 12:39:39 +100069#include "xmalloc.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100070#include "ssh.h"
71#include "rsa.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100072#include "buffer.h"
Damien Miller994cf142000-07-21 10:19:44 +100073#include "key.h"
74#include "authfd.h"
Damien Miller62cee002000-09-23 17:15:56 +110075#include "compat.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000076#include "log.h"
Damien Miller6c711792003-01-24 11:36:23 +110077#include "misc.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100078
Ben Lindstrom3f471632001-07-04 03:53:15 +000079#ifdef SMARTCARD
Ben Lindstrom3f471632001-07-04 03:53:15 +000080#include "scard.h"
Ben Lindstrombcc18082001-08-06 21:59:25 +000081#endif
Ben Lindstrom3f471632001-07-04 03:53:15 +000082
Damien Miller6c4914a2004-03-03 11:08:59 +110083#if defined(HAVE_SYS_PRCTL_H)
84#include <sys/prctl.h> /* For prctl() and PR_SET_DUMPABLE */
85#endif
86
Ben Lindstrom65366a82001-12-06 16:32:47 +000087typedef enum {
88 AUTH_UNUSED,
89 AUTH_SOCKET,
90 AUTH_CONNECTION
91} sock_type;
92
Damien Miller95def091999-11-25 00:26:21 +110093typedef struct {
94 int fd;
Ben Lindstrom65366a82001-12-06 16:32:47 +000095 sock_type type;
Damien Miller95def091999-11-25 00:26:21 +110096 Buffer input;
97 Buffer output;
Ben Lindstrom21d1ed82002-06-06 21:48:57 +000098 Buffer request;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100099} SocketEntry;
100
Ben Lindstrom46c16222000-12-22 01:43:59 +0000101u_int sockets_alloc = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000102SocketEntry *sockets = NULL;
103
Damien Miller1a534ae2002-01-22 23:26:13 +1100104typedef struct identity {
105 TAILQ_ENTRY(identity) next;
Damien Millerad833b32000-08-23 10:46:23 +1000106 Key *key;
Damien Miller95def091999-11-25 00:26:21 +1100107 char *comment;
Ben Lindstrom61d328a2002-06-06 21:54:57 +0000108 u_int death;
Damien Miller6c711792003-01-24 11:36:23 +1100109 u_int confirm;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000110} Identity;
111
Damien Millerad833b32000-08-23 10:46:23 +1000112typedef struct {
113 int nentries;
Damien Miller1a534ae2002-01-22 23:26:13 +1100114 TAILQ_HEAD(idqueue, identity) idlist;
Damien Millerad833b32000-08-23 10:46:23 +1000115} Idtab;
116
117/* private key table, one per protocol version */
118Idtab idtable[3];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000119
120int max_fd = 0;
121
122/* pid of shell == parent of agent */
Damien Miller166fca82000-04-20 07:42:21 +1000123pid_t parent_pid = -1;
Darren Tucker2812dc92007-03-21 20:45:06 +1100124u_int parent_alive_interval = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000125
126/* pathname and directory for AUTH_SOCKET */
Damien Miller07d86be2006-03-26 14:19:21 +1100127char socket_name[MAXPATHLEN];
128char socket_dir[MAXPATHLEN];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000129
Ben Lindstrom2f717042002-06-06 21:52:03 +0000130/* locking */
131int locked = 0;
132char *lock_passwd = NULL;
133
Damien Miller95def091999-11-25 00:26:21 +1100134extern char *__progname;
Damien Miller95def091999-11-25 00:26:21 +1100135
Damien Miller53d81482003-01-22 11:47:19 +1100136/* Default lifetime (0 == forever) */
137static int lifetime = 0;
138
Ben Lindstrombba81212001-06-25 05:01:22 +0000139static void
Damien Miller58f34862002-09-04 16:31:21 +1000140close_socket(SocketEntry *e)
141{
Damien Miller58f34862002-09-04 16:31:21 +1000142 close(e->fd);
143 e->fd = -1;
144 e->type = AUTH_UNUSED;
145 buffer_free(&e->input);
146 buffer_free(&e->output);
147 buffer_free(&e->request);
148}
149
150static void
Damien Millerad833b32000-08-23 10:46:23 +1000151idtab_init(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000152{
Damien Millerad833b32000-08-23 10:46:23 +1000153 int i;
Ben Lindstrom822b6342002-06-23 21:38:49 +0000154
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +0000155 for (i = 0; i <=2; i++) {
Damien Miller1a534ae2002-01-22 23:26:13 +1100156 TAILQ_INIT(&idtable[i].idlist);
Damien Millerad833b32000-08-23 10:46:23 +1000157 idtable[i].nentries = 0;
158 }
159}
160
161/* return private key table for requested protocol version */
Ben Lindstrombba81212001-06-25 05:01:22 +0000162static Idtab *
Damien Millerad833b32000-08-23 10:46:23 +1000163idtab_lookup(int version)
164{
165 if (version < 1 || version > 2)
166 fatal("internal error, bad protocol version %d", version);
167 return &idtable[version];
168}
169
Ben Lindstrom61d328a2002-06-06 21:54:57 +0000170static void
171free_identity(Identity *id)
172{
173 key_free(id->key);
174 xfree(id->comment);
175 xfree(id);
176}
177
Damien Millerad833b32000-08-23 10:46:23 +1000178/* return matching private key for given public key */
Damien Miller1a534ae2002-01-22 23:26:13 +1100179static Identity *
180lookup_identity(Key *key, int version)
Damien Millerad833b32000-08-23 10:46:23 +1000181{
Damien Miller1a534ae2002-01-22 23:26:13 +1100182 Identity *id;
183
Damien Millerad833b32000-08-23 10:46:23 +1000184 Idtab *tab = idtab_lookup(version);
Damien Miller1a534ae2002-01-22 23:26:13 +1100185 TAILQ_FOREACH(id, &tab->idlist, next) {
186 if (key_equal(key, id->key))
187 return (id);
Damien Millerad833b32000-08-23 10:46:23 +1000188 }
Damien Miller1a534ae2002-01-22 23:26:13 +1100189 return (NULL);
190}
191
Damien Miller6c711792003-01-24 11:36:23 +1100192/* Check confirmation of keysign request */
193static int
194confirm_key(Identity *id)
195{
Darren Tuckerce327b62004-11-05 20:38:03 +1100196 char *p;
Damien Miller6c711792003-01-24 11:36:23 +1100197 int ret = -1;
198
199 p = key_fingerprint(id->key, SSH_FP_MD5, SSH_FP_HEX);
Darren Tuckerce327b62004-11-05 20:38:03 +1100200 if (ask_permission("Allow use of key %s?\nKey fingerprint %s.",
201 id->comment, p))
202 ret = 0;
Damien Miller6c711792003-01-24 11:36:23 +1100203 xfree(p);
Darren Tuckerce327b62004-11-05 20:38:03 +1100204
Damien Miller6c711792003-01-24 11:36:23 +1100205 return (ret);
206}
207
Damien Millerad833b32000-08-23 10:46:23 +1000208/* send list of supported public keys to 'client' */
Ben Lindstrombba81212001-06-25 05:01:22 +0000209static void
Damien Millerad833b32000-08-23 10:46:23 +1000210process_request_identities(SocketEntry *e, int version)
211{
212 Idtab *tab = idtab_lookup(version);
Damien Miller1a534ae2002-01-22 23:26:13 +1100213 Identity *id;
Ben Lindstrom822b6342002-06-23 21:38:49 +0000214 Buffer msg;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000215
Damien Miller95def091999-11-25 00:26:21 +1100216 buffer_init(&msg);
Damien Millerad833b32000-08-23 10:46:23 +1000217 buffer_put_char(&msg, (version == 1) ?
218 SSH_AGENT_RSA_IDENTITIES_ANSWER : SSH2_AGENT_IDENTITIES_ANSWER);
219 buffer_put_int(&msg, tab->nentries);
Damien Miller1a534ae2002-01-22 23:26:13 +1100220 TAILQ_FOREACH(id, &tab->idlist, next) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100221 if (id->key->type == KEY_RSA1) {
Damien Millerad833b32000-08-23 10:46:23 +1000222 buffer_put_int(&msg, BN_num_bits(id->key->rsa->n));
223 buffer_put_bignum(&msg, id->key->rsa->e);
224 buffer_put_bignum(&msg, id->key->rsa->n);
225 } else {
Ben Lindstrom46c16222000-12-22 01:43:59 +0000226 u_char *blob;
227 u_int blen;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100228 key_to_blob(id->key, &blob, &blen);
Damien Millerad833b32000-08-23 10:46:23 +1000229 buffer_put_string(&msg, blob, blen);
230 xfree(blob);
231 }
232 buffer_put_cstring(&msg, id->comment);
Damien Miller95def091999-11-25 00:26:21 +1100233 }
234 buffer_put_int(&e->output, buffer_len(&msg));
235 buffer_append(&e->output, buffer_ptr(&msg), buffer_len(&msg));
236 buffer_free(&msg);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000237}
238
Damien Millerad833b32000-08-23 10:46:23 +1000239/* ssh1 only */
Ben Lindstrombba81212001-06-25 05:01:22 +0000240static void
Damien Millerad833b32000-08-23 10:46:23 +1000241process_authentication_challenge1(SocketEntry *e)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000242{
Ben Lindstrom822b6342002-06-23 21:38:49 +0000243 u_char buf[32], mdbuf[16], session_id[16];
244 u_int response_type;
Damien Millerad833b32000-08-23 10:46:23 +1000245 BIGNUM *challenge;
Ben Lindstrom822b6342002-06-23 21:38:49 +0000246 Identity *id;
Damien Millerad833b32000-08-23 10:46:23 +1000247 int i, len;
Damien Miller95def091999-11-25 00:26:21 +1100248 Buffer msg;
249 MD5_CTX md;
Ben Lindstrom822b6342002-06-23 21:38:49 +0000250 Key *key;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000251
Damien Miller95def091999-11-25 00:26:21 +1100252 buffer_init(&msg);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100253 key = key_new(KEY_RSA1);
Damien Millerda755162002-01-22 23:09:22 +1100254 if ((challenge = BN_new()) == NULL)
255 fatal("process_authentication_challenge1: BN_new failed");
Damien Millerad833b32000-08-23 10:46:23 +1000256
Ben Lindstromc5a7f4f2002-06-25 23:19:13 +0000257 (void) buffer_get_int(&e->request); /* ignored */
Ben Lindstrom21d1ed82002-06-06 21:48:57 +0000258 buffer_get_bignum(&e->request, key->rsa->e);
259 buffer_get_bignum(&e->request, key->rsa->n);
260 buffer_get_bignum(&e->request, challenge);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000261
Damien Millerad833b32000-08-23 10:46:23 +1000262 /* Only protocol 1.1 is supported */
Ben Lindstrom21d1ed82002-06-06 21:48:57 +0000263 if (buffer_len(&e->request) == 0)
Damien Millerad833b32000-08-23 10:46:23 +1000264 goto failure;
Ben Lindstrom21d1ed82002-06-06 21:48:57 +0000265 buffer_get(&e->request, session_id, 16);
266 response_type = buffer_get_int(&e->request);
Damien Millerad833b32000-08-23 10:46:23 +1000267 if (response_type != 1)
268 goto failure;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000269
Damien Miller1a534ae2002-01-22 23:26:13 +1100270 id = lookup_identity(key, 1);
Damien Miller6c711792003-01-24 11:36:23 +1100271 if (id != NULL && (!id->confirm || confirm_key(id) == 0)) {
Damien Miller1a534ae2002-01-22 23:26:13 +1100272 Key *private = id->key;
Damien Millerad833b32000-08-23 10:46:23 +1000273 /* Decrypt the challenge using the private key. */
Damien Miller7650bc62001-01-30 09:27:26 +1100274 if (rsa_private_decrypt(challenge, challenge, private->rsa) <= 0)
275 goto failure;
Damien Millerfd7c9111999-11-08 16:15:55 +1100276
Damien Millerad833b32000-08-23 10:46:23 +1000277 /* The response is MD5 of decrypted challenge plus session id. */
278 len = BN_num_bytes(challenge);
279 if (len <= 0 || len > 32) {
Damien Miller996acd22003-04-09 20:59:48 +1000280 logit("process_authentication_challenge: bad challenge length %d", len);
Damien Millerad833b32000-08-23 10:46:23 +1000281 goto failure;
Damien Miller95def091999-11-25 00:26:21 +1100282 }
Damien Millerad833b32000-08-23 10:46:23 +1000283 memset(buf, 0, 32);
284 BN_bn2bin(challenge, buf + 32 - len);
285 MD5_Init(&md);
286 MD5_Update(&md, buf, 32);
287 MD5_Update(&md, session_id, 16);
288 MD5_Final(mdbuf, &md);
289
290 /* Send the response. */
291 buffer_put_char(&msg, SSH_AGENT_RSA_RESPONSE);
292 for (i = 0; i < 16; i++)
293 buffer_put_char(&msg, mdbuf[i]);
294 goto send;
295 }
296
297failure:
298 /* Unknown identity or protocol error. Send failure. */
Damien Miller95def091999-11-25 00:26:21 +1100299 buffer_put_char(&msg, SSH_AGENT_FAILURE);
300send:
301 buffer_put_int(&e->output, buffer_len(&msg));
Damien Millerad833b32000-08-23 10:46:23 +1000302 buffer_append(&e->output, buffer_ptr(&msg), buffer_len(&msg));
303 key_free(key);
Damien Miller95def091999-11-25 00:26:21 +1100304 BN_clear_free(challenge);
Damien Millerad833b32000-08-23 10:46:23 +1000305 buffer_free(&msg);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000306}
307
Damien Millerad833b32000-08-23 10:46:23 +1000308/* ssh2 only */
Ben Lindstrombba81212001-06-25 05:01:22 +0000309static void
Damien Millerad833b32000-08-23 10:46:23 +1000310process_sign_request2(SocketEntry *e)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000311{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000312 u_char *blob, *data, *signature = NULL;
313 u_int blen, dlen, slen = 0;
Ben Lindstrom822b6342002-06-23 21:38:49 +0000314 extern int datafellows;
315 int ok = -1, flags;
Damien Millerad833b32000-08-23 10:46:23 +1000316 Buffer msg;
Ben Lindstrom822b6342002-06-23 21:38:49 +0000317 Key *key;
Damien Millerad833b32000-08-23 10:46:23 +1000318
319 datafellows = 0;
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000320
Ben Lindstrom21d1ed82002-06-06 21:48:57 +0000321 blob = buffer_get_string(&e->request, &blen);
322 data = buffer_get_string(&e->request, &dlen);
Damien Miller62cee002000-09-23 17:15:56 +1100323
Ben Lindstrom21d1ed82002-06-06 21:48:57 +0000324 flags = buffer_get_int(&e->request);
Damien Miller62cee002000-09-23 17:15:56 +1100325 if (flags & SSH_AGENT_OLD_SIGNATURE)
326 datafellows = SSH_BUG_SIGBLOB;
Damien Millerad833b32000-08-23 10:46:23 +1000327
Damien Miller0bc1bd82000-11-13 22:57:25 +1100328 key = key_from_blob(blob, blen);
Damien Millerad833b32000-08-23 10:46:23 +1000329 if (key != NULL) {
Damien Miller1a534ae2002-01-22 23:26:13 +1100330 Identity *id = lookup_identity(key, 2);
Damien Miller6c711792003-01-24 11:36:23 +1100331 if (id != NULL && (!id->confirm || confirm_key(id) == 0))
Damien Miller1a534ae2002-01-22 23:26:13 +1100332 ok = key_sign(id->key, &signature, &slen, data, dlen);
Damien Miller40b59852006-06-13 13:00:25 +1000333 key_free(key);
Damien Millerad833b32000-08-23 10:46:23 +1000334 }
Damien Millerad833b32000-08-23 10:46:23 +1000335 buffer_init(&msg);
336 if (ok == 0) {
337 buffer_put_char(&msg, SSH2_AGENT_SIGN_RESPONSE);
338 buffer_put_string(&msg, signature, slen);
339 } else {
340 buffer_put_char(&msg, SSH_AGENT_FAILURE);
341 }
342 buffer_put_int(&e->output, buffer_len(&msg));
343 buffer_append(&e->output, buffer_ptr(&msg),
344 buffer_len(&msg));
345 buffer_free(&msg);
346 xfree(data);
347 xfree(blob);
348 if (signature != NULL)
349 xfree(signature);
350}
351
352/* shared */
Ben Lindstrombba81212001-06-25 05:01:22 +0000353static void
Damien Millerad833b32000-08-23 10:46:23 +1000354process_remove_identity(SocketEntry *e, int version)
355{
Ben Lindstrom822b6342002-06-23 21:38:49 +0000356 u_int blen, bits;
357 int success = 0;
Damien Miller1a534ae2002-01-22 23:26:13 +1100358 Key *key = NULL;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000359 u_char *blob;
Damien Miller7e8e8201999-11-16 13:37:16 +1100360
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +0000361 switch (version) {
Damien Millerad833b32000-08-23 10:46:23 +1000362 case 1:
Damien Miller0bc1bd82000-11-13 22:57:25 +1100363 key = key_new(KEY_RSA1);
Ben Lindstrom21d1ed82002-06-06 21:48:57 +0000364 bits = buffer_get_int(&e->request);
365 buffer_get_bignum(&e->request, key->rsa->e);
366 buffer_get_bignum(&e->request, key->rsa->n);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000367
Damien Millerad833b32000-08-23 10:46:23 +1000368 if (bits != key_size(key))
Damien Miller996acd22003-04-09 20:59:48 +1000369 logit("Warning: identity keysize mismatch: actual %u, announced %u",
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000370 key_size(key), bits);
Damien Millerad833b32000-08-23 10:46:23 +1000371 break;
372 case 2:
Ben Lindstrom21d1ed82002-06-06 21:48:57 +0000373 blob = buffer_get_string(&e->request, &blen);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100374 key = key_from_blob(blob, blen);
Damien Millerad833b32000-08-23 10:46:23 +1000375 xfree(blob);
376 break;
377 }
378 if (key != NULL) {
Damien Miller1a534ae2002-01-22 23:26:13 +1100379 Identity *id = lookup_identity(key, version);
380 if (id != NULL) {
Damien Miller5428f641999-11-25 11:54:57 +1100381 /*
382 * We have this key. Free the old key. Since we
Damien Miller788f2122005-11-05 15:14:59 +1100383 * don't want to leave empty slots in the middle of
Ben Lindstrom14920292000-11-21 21:24:55 +0000384 * the array, we actually free the key there and move
385 * all the entries between the empty slot and the end
386 * of the array.
Damien Miller5428f641999-11-25 11:54:57 +1100387 */
Damien Millerad833b32000-08-23 10:46:23 +1000388 Idtab *tab = idtab_lookup(version);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100389 if (tab->nentries < 1)
390 fatal("process_remove_identity: "
391 "internal error: tab->nentries %d",
392 tab->nentries);
Damien Miller1a534ae2002-01-22 23:26:13 +1100393 TAILQ_REMOVE(&tab->idlist, id, next);
394 free_identity(id);
Damien Millerad833b32000-08-23 10:46:23 +1000395 tab->nentries--;
396 success = 1;
Damien Miller95def091999-11-25 00:26:21 +1100397 }
Damien Millerad833b32000-08-23 10:46:23 +1000398 key_free(key);
399 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000400 buffer_put_int(&e->output, 1);
Damien Millerad833b32000-08-23 10:46:23 +1000401 buffer_put_char(&e->output,
402 success ? SSH_AGENT_SUCCESS : SSH_AGENT_FAILURE);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000403}
404
Ben Lindstrombba81212001-06-25 05:01:22 +0000405static void
Damien Millerad833b32000-08-23 10:46:23 +1000406process_remove_all_identities(SocketEntry *e, int version)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000407{
Damien Millerad833b32000-08-23 10:46:23 +1000408 Idtab *tab = idtab_lookup(version);
Damien Miller1a534ae2002-01-22 23:26:13 +1100409 Identity *id;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000410
Damien Miller95def091999-11-25 00:26:21 +1100411 /* Loop over all identities and clear the keys. */
Damien Miller1a534ae2002-01-22 23:26:13 +1100412 for (id = TAILQ_FIRST(&tab->idlist); id;
413 id = TAILQ_FIRST(&tab->idlist)) {
414 TAILQ_REMOVE(&tab->idlist, id, next);
415 free_identity(id);
Damien Miller95def091999-11-25 00:26:21 +1100416 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000417
Damien Miller95def091999-11-25 00:26:21 +1100418 /* Mark that there are no identities. */
Damien Millerad833b32000-08-23 10:46:23 +1000419 tab->nentries = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000420
421 /* Send success. */
422 buffer_put_int(&e->output, 1);
423 buffer_put_char(&e->output, SSH_AGENT_SUCCESS);
Damien Miller95def091999-11-25 00:26:21 +1100424}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000425
Darren Tucker2812dc92007-03-21 20:45:06 +1100426/* removes expired keys and returns number of seconds until the next expiry */
427static u_int
Ben Lindstrom61d328a2002-06-06 21:54:57 +0000428reaper(void)
429{
Darren Tucker2812dc92007-03-21 20:45:06 +1100430 u_int deadline = 0, now = time(NULL);
Ben Lindstrom61d328a2002-06-06 21:54:57 +0000431 Identity *id, *nxt;
432 int version;
Ben Lindstrom822b6342002-06-23 21:38:49 +0000433 Idtab *tab;
Ben Lindstrom61d328a2002-06-06 21:54:57 +0000434
435 for (version = 1; version < 3; version++) {
436 tab = idtab_lookup(version);
437 for (id = TAILQ_FIRST(&tab->idlist); id; id = nxt) {
438 nxt = TAILQ_NEXT(id, next);
Darren Tucker2812dc92007-03-21 20:45:06 +1100439 if (id->death == 0)
440 continue;
441 if (now >= id->death) {
Darren Tuckercf0d2db2007-02-28 21:19:58 +1100442 debug("expiring key '%s'", id->comment);
Ben Lindstrom61d328a2002-06-06 21:54:57 +0000443 TAILQ_REMOVE(&tab->idlist, id, next);
444 free_identity(id);
445 tab->nentries--;
Darren Tucker2812dc92007-03-21 20:45:06 +1100446 } else
447 deadline = (deadline == 0) ? id->death :
448 MIN(deadline, id->death);
Ben Lindstrom61d328a2002-06-06 21:54:57 +0000449 }
450 }
Darren Tucker2812dc92007-03-21 20:45:06 +1100451 if (deadline == 0 || deadline <= now)
452 return 0;
453 else
454 return (deadline - now);
Ben Lindstrom61d328a2002-06-06 21:54:57 +0000455}
456
457static void
Damien Millerad833b32000-08-23 10:46:23 +1000458process_add_identity(SocketEntry *e, int version)
Damien Miller95def091999-11-25 00:26:21 +1100459{
Damien Millerad833b32000-08-23 10:46:23 +1000460 Idtab *tab = idtab_lookup(version);
Damien Miller4c7728c2007-10-26 14:25:31 +1000461 Identity *id;
Damien Miller6c711792003-01-24 11:36:23 +1100462 int type, success = 0, death = 0, confirm = 0;
Ben Lindstrom822b6342002-06-23 21:38:49 +0000463 char *type_name, *comment;
464 Key *k = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100465
Damien Millerad833b32000-08-23 10:46:23 +1000466 switch (version) {
467 case 1:
Damien Miller0bc1bd82000-11-13 22:57:25 +1100468 k = key_new_private(KEY_RSA1);
Ben Lindstromc5a7f4f2002-06-25 23:19:13 +0000469 (void) buffer_get_int(&e->request); /* ignored */
Ben Lindstrom21d1ed82002-06-06 21:48:57 +0000470 buffer_get_bignum(&e->request, k->rsa->n);
471 buffer_get_bignum(&e->request, k->rsa->e);
472 buffer_get_bignum(&e->request, k->rsa->d);
473 buffer_get_bignum(&e->request, k->rsa->iqmp);
Damien Miller95def091999-11-25 00:26:21 +1100474
Damien Millerad833b32000-08-23 10:46:23 +1000475 /* SSH and SSL have p and q swapped */
Ben Lindstrom21d1ed82002-06-06 21:48:57 +0000476 buffer_get_bignum(&e->request, k->rsa->q); /* p */
477 buffer_get_bignum(&e->request, k->rsa->p); /* q */
Damien Miller95def091999-11-25 00:26:21 +1100478
Damien Millerad833b32000-08-23 10:46:23 +1000479 /* Generate additional parameters */
Ben Lindstromf7297dd2001-07-04 05:02:23 +0000480 rsa_generate_additional_parameters(k->rsa);
Damien Millerad833b32000-08-23 10:46:23 +1000481 break;
482 case 2:
Ben Lindstrom21d1ed82002-06-06 21:48:57 +0000483 type_name = buffer_get_string(&e->request, NULL);
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000484 type = key_type_from_name(type_name);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100485 xfree(type_name);
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +0000486 switch (type) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100487 case KEY_DSA:
488 k = key_new_private(type);
Ben Lindstrom21d1ed82002-06-06 21:48:57 +0000489 buffer_get_bignum2(&e->request, k->dsa->p);
490 buffer_get_bignum2(&e->request, k->dsa->q);
491 buffer_get_bignum2(&e->request, k->dsa->g);
492 buffer_get_bignum2(&e->request, k->dsa->pub_key);
493 buffer_get_bignum2(&e->request, k->dsa->priv_key);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100494 break;
495 case KEY_RSA:
496 k = key_new_private(type);
Ben Lindstrom21d1ed82002-06-06 21:48:57 +0000497 buffer_get_bignum2(&e->request, k->rsa->n);
498 buffer_get_bignum2(&e->request, k->rsa->e);
499 buffer_get_bignum2(&e->request, k->rsa->d);
500 buffer_get_bignum2(&e->request, k->rsa->iqmp);
501 buffer_get_bignum2(&e->request, k->rsa->p);
502 buffer_get_bignum2(&e->request, k->rsa->q);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100503
504 /* Generate additional parameters */
Ben Lindstromf7297dd2001-07-04 05:02:23 +0000505 rsa_generate_additional_parameters(k->rsa);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100506 break;
507 default:
Ben Lindstrom21d1ed82002-06-06 21:48:57 +0000508 buffer_clear(&e->request);
Damien Millerad833b32000-08-23 10:46:23 +1000509 goto send;
Damien Miller95def091999-11-25 00:26:21 +1100510 }
Damien Millerad833b32000-08-23 10:46:23 +1000511 break;
512 }
Damien Millerc51d0732003-03-15 11:37:09 +1100513 /* enable blinding */
514 switch (k->type) {
515 case KEY_RSA:
516 case KEY_RSA1:
517 if (RSA_blinding_on(k->rsa, NULL) != 1) {
518 error("process_add_identity: RSA_blinding_on failed");
519 key_free(k);
520 goto send;
521 }
522 break;
523 }
Ben Lindstrom21d1ed82002-06-06 21:48:57 +0000524 comment = buffer_get_string(&e->request, NULL);
Damien Millerad833b32000-08-23 10:46:23 +1000525 if (k == NULL) {
526 xfree(comment);
527 goto send;
528 }
Ben Lindstrom4eb4c4e2002-06-21 00:04:48 +0000529 while (buffer_len(&e->request)) {
Damien Miller1cfadab2008-06-30 00:05:21 +1000530 switch ((type = 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:
Damien Miller1cfadab2008-06-30 00:05:21 +1000538 error("process_add_identity: "
539 "Unknown constraint type %d", type);
540 xfree(comment);
541 key_free(k);
542 goto send;
Ben Lindstrom4eb4c4e2002-06-21 00:04:48 +0000543 }
544 }
Damien Miller1cfadab2008-06-30 00:05:21 +1000545 success = 1;
Damien Miller53d81482003-01-22 11:47:19 +1100546 if (lifetime && !death)
547 death = time(NULL) + lifetime;
Damien Miller4c7728c2007-10-26 14:25:31 +1000548 if ((id = lookup_identity(k, version)) == NULL) {
549 id = xmalloc(sizeof(Identity));
Ben Lindstrom2b266b72002-06-21 00:08:39 +0000550 id->key = k;
Ben Lindstrom2b266b72002-06-21 00:08:39 +0000551 TAILQ_INSERT_TAIL(&tab->idlist, id, next);
552 /* Increment the number of identities. */
553 tab->nentries++;
554 } else {
555 key_free(k);
Damien Miller4c7728c2007-10-26 14:25:31 +1000556 xfree(id->comment);
Ben Lindstrom61d328a2002-06-06 21:54:57 +0000557 }
Damien Miller4c7728c2007-10-26 14:25:31 +1000558 id->comment = comment;
559 id->death = death;
560 id->confirm = confirm;
Ben Lindstrom2b266b72002-06-21 00:08:39 +0000561send:
Ben Lindstrom61d328a2002-06-06 21:54:57 +0000562 buffer_put_int(&e->output, 1);
563 buffer_put_char(&e->output,
564 success ? SSH_AGENT_SUCCESS : SSH_AGENT_FAILURE);
565}
566
Ben Lindstrom2f717042002-06-06 21:52:03 +0000567/* XXX todo: encrypt sensitive data with passphrase */
568static void
569process_lock_agent(SocketEntry *e, int lock)
570{
Ben Lindstrom2f717042002-06-06 21:52:03 +0000571 int success = 0;
Ben Lindstrom822b6342002-06-23 21:38:49 +0000572 char *passwd;
Ben Lindstrom2f717042002-06-06 21:52:03 +0000573
574 passwd = buffer_get_string(&e->request, NULL);
575 if (locked && !lock && strcmp(passwd, lock_passwd) == 0) {
576 locked = 0;
577 memset(lock_passwd, 0, strlen(lock_passwd));
578 xfree(lock_passwd);
579 lock_passwd = NULL;
580 success = 1;
581 } else if (!locked && lock) {
582 locked = 1;
583 lock_passwd = xstrdup(passwd);
584 success = 1;
585 }
586 memset(passwd, 0, strlen(passwd));
587 xfree(passwd);
Ben Lindstromcb72e4f2002-06-21 00:41:51 +0000588
Ben Lindstrom2f717042002-06-06 21:52:03 +0000589 buffer_put_int(&e->output, 1);
590 buffer_put_char(&e->output,
591 success ? SSH_AGENT_SUCCESS : SSH_AGENT_FAILURE);
Ben Lindstrom2f717042002-06-06 21:52:03 +0000592}
593
594static void
595no_identities(SocketEntry *e, u_int type)
596{
597 Buffer msg;
598
599 buffer_init(&msg);
600 buffer_put_char(&msg,
601 (type == SSH_AGENTC_REQUEST_RSA_IDENTITIES) ?
602 SSH_AGENT_RSA_IDENTITIES_ANSWER : SSH2_AGENT_IDENTITIES_ANSWER);
603 buffer_put_int(&msg, 0);
604 buffer_put_int(&e->output, buffer_len(&msg));
605 buffer_append(&e->output, buffer_ptr(&msg), buffer_len(&msg));
606 buffer_free(&msg);
607}
Ben Lindstrom3f471632001-07-04 03:53:15 +0000608
609#ifdef SMARTCARD
610static void
Damien Miller1cfadab2008-06-30 00:05:21 +1000611process_add_smartcard_key(SocketEntry *e)
Ben Lindstrom3f471632001-07-04 03:53:15 +0000612{
Ben Lindstromba72d302002-03-22 03:51:06 +0000613 char *sc_reader_id = NULL, *pin;
Damien Miller1cfadab2008-06-30 00:05:21 +1000614 int i, type, version, success = 0, death = 0, confirm = 0;
Ben Lindstrom822b6342002-06-23 21:38:49 +0000615 Key **keys, *k;
616 Identity *id;
617 Idtab *tab;
Damien Miller9f0f5c62001-12-21 14:45:46 +1100618
Ben Lindstrom21d1ed82002-06-06 21:48:57 +0000619 sc_reader_id = buffer_get_string(&e->request, NULL);
620 pin = buffer_get_string(&e->request, NULL);
Damien Millerd94f20d2003-06-11 22:06:33 +1000621
622 while (buffer_len(&e->request)) {
Damien Miller1cfadab2008-06-30 00:05:21 +1000623 switch ((type = buffer_get_char(&e->request))) {
Damien Millerd94f20d2003-06-11 22:06:33 +1000624 case SSH_AGENT_CONSTRAIN_LIFETIME:
625 death = time(NULL) + buffer_get_int(&e->request);
626 break;
627 case SSH_AGENT_CONSTRAIN_CONFIRM:
628 confirm = 1;
629 break;
630 default:
Damien Miller1cfadab2008-06-30 00:05:21 +1000631 error("process_add_smartcard_key: "
632 "Unknown constraint type %d", type);
633 xfree(sc_reader_id);
634 xfree(pin);
635 goto send;
Damien Millerd94f20d2003-06-11 22:06:33 +1000636 }
637 }
638 if (lifetime && !death)
639 death = time(NULL) + lifetime;
640
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000641 keys = sc_get_keys(sc_reader_id, pin);
Ben Lindstromf7db3bb2001-08-06 21:35:51 +0000642 xfree(sc_reader_id);
Ben Lindstromba72d302002-03-22 03:51:06 +0000643 xfree(pin);
Ben Lindstrom3f471632001-07-04 03:53:15 +0000644
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000645 if (keys == NULL || keys[0] == NULL) {
646 error("sc_get_keys failed");
Ben Lindstrom3f471632001-07-04 03:53:15 +0000647 goto send;
648 }
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000649 for (i = 0; keys[i] != NULL; i++) {
650 k = keys[i];
651 version = k->type == KEY_RSA1 ? 1 : 2;
652 tab = idtab_lookup(version);
653 if (lookup_identity(k, version) == NULL) {
654 id = xmalloc(sizeof(Identity));
655 id->key = k;
Damien Miller56a0bb02003-06-18 20:28:40 +1000656 id->comment = sc_get_key_label(k);
Damien Millerd94f20d2003-06-11 22:06:33 +1000657 id->death = death;
658 id->confirm = confirm;
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000659 TAILQ_INSERT_TAIL(&tab->idlist, id, next);
660 tab->nentries++;
661 success = 1;
662 } else {
663 key_free(k);
664 }
665 keys[i] = NULL;
Ben Lindstrom3f471632001-07-04 03:53:15 +0000666 }
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000667 xfree(keys);
Ben Lindstrom3f471632001-07-04 03:53:15 +0000668send:
669 buffer_put_int(&e->output, 1);
670 buffer_put_char(&e->output,
671 success ? SSH_AGENT_SUCCESS : SSH_AGENT_FAILURE);
672}
673
674static void
675process_remove_smartcard_key(SocketEntry *e)
676{
Ben Lindstromba72d302002-03-22 03:51:06 +0000677 char *sc_reader_id = NULL, *pin;
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000678 int i, version, success = 0;
Ben Lindstrom822b6342002-06-23 21:38:49 +0000679 Key **keys, *k = NULL;
680 Identity *id;
681 Idtab *tab;
Ben Lindstrom3f471632001-07-04 03:53:15 +0000682
Ben Lindstrom21d1ed82002-06-06 21:48:57 +0000683 sc_reader_id = buffer_get_string(&e->request, NULL);
684 pin = buffer_get_string(&e->request, NULL);
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000685 keys = sc_get_keys(sc_reader_id, pin);
Ben Lindstromf7db3bb2001-08-06 21:35:51 +0000686 xfree(sc_reader_id);
Ben Lindstromba72d302002-03-22 03:51:06 +0000687 xfree(pin);
Ben Lindstrom3f471632001-07-04 03:53:15 +0000688
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000689 if (keys == NULL || keys[0] == NULL) {
690 error("sc_get_keys failed");
691 goto send;
692 }
693 for (i = 0; keys[i] != NULL; i++) {
694 k = keys[i];
695 version = k->type == KEY_RSA1 ? 1 : 2;
696 if ((id = lookup_identity(k, version)) != NULL) {
697 tab = idtab_lookup(version);
Ben Lindstrom5a6abda2002-06-09 19:41:48 +0000698 TAILQ_REMOVE(&tab->idlist, id, next);
Ben Lindstrom3f471632001-07-04 03:53:15 +0000699 tab->nentries--;
Damien Miller1a534ae2002-01-22 23:26:13 +1100700 free_identity(id);
Ben Lindstrom3f471632001-07-04 03:53:15 +0000701 success = 1;
702 }
703 key_free(k);
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000704 keys[i] = NULL;
Ben Lindstrom3f471632001-07-04 03:53:15 +0000705 }
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000706 xfree(keys);
707send:
Ben Lindstrom3f471632001-07-04 03:53:15 +0000708 buffer_put_int(&e->output, 1);
709 buffer_put_char(&e->output,
710 success ? SSH_AGENT_SUCCESS : SSH_AGENT_FAILURE);
711}
Ben Lindstromffce1472001-08-06 21:57:31 +0000712#endif /* SMARTCARD */
Ben Lindstrom3f471632001-07-04 03:53:15 +0000713
Damien Millerad833b32000-08-23 10:46:23 +1000714/* dispatch incoming messages */
715
Ben Lindstrombba81212001-06-25 05:01:22 +0000716static void
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000717process_message(SocketEntry *e)
718{
Ben Lindstrom822b6342002-06-23 21:38:49 +0000719 u_int msg_len, type;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000720 u_char *cp;
Ben Lindstrom61d328a2002-06-06 21:54:57 +0000721
Damien Miller95def091999-11-25 00:26:21 +1100722 if (buffer_len(&e->input) < 5)
723 return; /* Incomplete message. */
Damien Miller708d21c2002-01-22 23:18:15 +1100724 cp = buffer_ptr(&e->input);
Damien Miller3f941882006-03-31 23:13:02 +1100725 msg_len = get_u32(cp);
Damien Miller95def091999-11-25 00:26:21 +1100726 if (msg_len > 256 * 1024) {
Damien Miller58f34862002-09-04 16:31:21 +1000727 close_socket(e);
Damien Miller95def091999-11-25 00:26:21 +1100728 return;
729 }
730 if (buffer_len(&e->input) < msg_len + 4)
731 return;
Ben Lindstrom21d1ed82002-06-06 21:48:57 +0000732
733 /* move the current input to e->request */
Damien Miller95def091999-11-25 00:26:21 +1100734 buffer_consume(&e->input, 4);
Ben Lindstrom21d1ed82002-06-06 21:48:57 +0000735 buffer_clear(&e->request);
736 buffer_append(&e->request, buffer_ptr(&e->input), msg_len);
737 buffer_consume(&e->input, msg_len);
738 type = buffer_get_char(&e->request);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000739
Ben Lindstrom2f717042002-06-06 21:52:03 +0000740 /* check wheter agent is locked */
741 if (locked && type != SSH_AGENTC_UNLOCK) {
742 buffer_clear(&e->request);
743 switch (type) {
744 case SSH_AGENTC_REQUEST_RSA_IDENTITIES:
745 case SSH2_AGENTC_REQUEST_IDENTITIES:
746 /* send empty lists */
747 no_identities(e, type);
748 break;
749 default:
750 /* send a fail message for all other request types */
751 buffer_put_int(&e->output, 1);
752 buffer_put_char(&e->output, SSH_AGENT_FAILURE);
753 }
754 return;
755 }
756
Ben Lindstrom3f471632001-07-04 03:53:15 +0000757 debug("type %d", type);
Damien Miller95def091999-11-25 00:26:21 +1100758 switch (type) {
Ben Lindstrom2f717042002-06-06 21:52:03 +0000759 case SSH_AGENTC_LOCK:
760 case SSH_AGENTC_UNLOCK:
761 process_lock_agent(e, type == SSH_AGENTC_LOCK);
762 break;
Damien Millerad833b32000-08-23 10:46:23 +1000763 /* ssh1 */
Damien Miller95def091999-11-25 00:26:21 +1100764 case SSH_AGENTC_RSA_CHALLENGE:
Damien Millerad833b32000-08-23 10:46:23 +1000765 process_authentication_challenge1(e);
766 break;
767 case SSH_AGENTC_REQUEST_RSA_IDENTITIES:
768 process_request_identities(e, 1);
Damien Miller95def091999-11-25 00:26:21 +1100769 break;
770 case SSH_AGENTC_ADD_RSA_IDENTITY:
Ben Lindstrom2b266b72002-06-21 00:08:39 +0000771 case SSH_AGENTC_ADD_RSA_ID_CONSTRAINED:
Damien Millerad833b32000-08-23 10:46:23 +1000772 process_add_identity(e, 1);
Damien Miller95def091999-11-25 00:26:21 +1100773 break;
774 case SSH_AGENTC_REMOVE_RSA_IDENTITY:
Damien Millerad833b32000-08-23 10:46:23 +1000775 process_remove_identity(e, 1);
Damien Miller95def091999-11-25 00:26:21 +1100776 break;
777 case SSH_AGENTC_REMOVE_ALL_RSA_IDENTITIES:
Damien Millerad833b32000-08-23 10:46:23 +1000778 process_remove_all_identities(e, 1);
779 break;
780 /* ssh2 */
781 case SSH2_AGENTC_SIGN_REQUEST:
782 process_sign_request2(e);
783 break;
784 case SSH2_AGENTC_REQUEST_IDENTITIES:
785 process_request_identities(e, 2);
786 break;
787 case SSH2_AGENTC_ADD_IDENTITY:
Ben Lindstrom2b266b72002-06-21 00:08:39 +0000788 case SSH2_AGENTC_ADD_ID_CONSTRAINED:
Damien Millerad833b32000-08-23 10:46:23 +1000789 process_add_identity(e, 2);
790 break;
791 case SSH2_AGENTC_REMOVE_IDENTITY:
792 process_remove_identity(e, 2);
793 break;
794 case SSH2_AGENTC_REMOVE_ALL_IDENTITIES:
795 process_remove_all_identities(e, 2);
Damien Miller95def091999-11-25 00:26:21 +1100796 break;
Ben Lindstrom3f471632001-07-04 03:53:15 +0000797#ifdef SMARTCARD
798 case SSH_AGENTC_ADD_SMARTCARD_KEY:
Damien Millerd94f20d2003-06-11 22:06:33 +1000799 case SSH_AGENTC_ADD_SMARTCARD_KEY_CONSTRAINED:
Ben Lindstrom3f471632001-07-04 03:53:15 +0000800 process_add_smartcard_key(e);
Damien Miller9f0f5c62001-12-21 14:45:46 +1100801 break;
Ben Lindstrom3f471632001-07-04 03:53:15 +0000802 case SSH_AGENTC_REMOVE_SMARTCARD_KEY:
803 process_remove_smartcard_key(e);
Damien Miller9f0f5c62001-12-21 14:45:46 +1100804 break;
Ben Lindstromffce1472001-08-06 21:57:31 +0000805#endif /* SMARTCARD */
Damien Miller95def091999-11-25 00:26:21 +1100806 default:
807 /* Unknown message. Respond with failure. */
808 error("Unknown message %d", type);
Ben Lindstrom21d1ed82002-06-06 21:48:57 +0000809 buffer_clear(&e->request);
Damien Miller95def091999-11-25 00:26:21 +1100810 buffer_put_int(&e->output, 1);
811 buffer_put_char(&e->output, SSH_AGENT_FAILURE);
812 break;
813 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000814}
815
Ben Lindstrombba81212001-06-25 05:01:22 +0000816static void
Ben Lindstrom65366a82001-12-06 16:32:47 +0000817new_socket(sock_type type, int fd)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000818{
Darren Tuckerfb16b242003-09-22 21:04:23 +1000819 u_int i, old_alloc, new_alloc;
Ben Lindstrom822b6342002-06-23 21:38:49 +0000820
Damien Miller232711f2004-06-15 10:35:30 +1000821 set_nonblock(fd);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000822
Damien Miller95def091999-11-25 00:26:21 +1100823 if (fd > max_fd)
824 max_fd = fd;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000825
Damien Miller95def091999-11-25 00:26:21 +1100826 for (i = 0; i < sockets_alloc; i++)
827 if (sockets[i].type == AUTH_UNUSED) {
828 sockets[i].fd = fd;
Damien Miller95def091999-11-25 00:26:21 +1100829 buffer_init(&sockets[i].input);
830 buffer_init(&sockets[i].output);
Ben Lindstrom21d1ed82002-06-06 21:48:57 +0000831 buffer_init(&sockets[i].request);
Darren Tuckerfb16b242003-09-22 21:04:23 +1000832 sockets[i].type = type;
Damien Miller95def091999-11-25 00:26:21 +1100833 return;
834 }
835 old_alloc = sockets_alloc;
Darren Tuckerfb16b242003-09-22 21:04:23 +1000836 new_alloc = sockets_alloc + 10;
Damien Miller36812092006-03-26 14:22:47 +1100837 sockets = xrealloc(sockets, new_alloc, sizeof(sockets[0]));
Darren Tuckerfb16b242003-09-22 21:04:23 +1000838 for (i = old_alloc; i < new_alloc; i++)
Damien Miller95def091999-11-25 00:26:21 +1100839 sockets[i].type = AUTH_UNUSED;
Darren Tuckerfb16b242003-09-22 21:04:23 +1000840 sockets_alloc = new_alloc;
Damien Miller95def091999-11-25 00:26:21 +1100841 sockets[old_alloc].fd = fd;
842 buffer_init(&sockets[old_alloc].input);
843 buffer_init(&sockets[old_alloc].output);
Ben Lindstrom21d1ed82002-06-06 21:48:57 +0000844 buffer_init(&sockets[old_alloc].request);
Darren Tuckerfb16b242003-09-22 21:04:23 +1000845 sockets[old_alloc].type = type;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000846}
847
Ben Lindstrombba81212001-06-25 05:01:22 +0000848static int
Darren Tucker2812dc92007-03-21 20:45:06 +1100849prepare_select(fd_set **fdrp, fd_set **fdwp, int *fdl, u_int *nallocp,
850 struct timeval **tvpp)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000851{
Darren Tucker2812dc92007-03-21 20:45:06 +1100852 u_int i, sz, deadline;
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000853 int n = 0;
Darren Tucker2812dc92007-03-21 20:45:06 +1100854 static struct timeval tv;
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000855
856 for (i = 0; i < sockets_alloc; i++) {
Damien Miller95def091999-11-25 00:26:21 +1100857 switch (sockets[i].type) {
858 case AUTH_SOCKET:
859 case AUTH_CONNECTION:
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000860 n = MAX(n, sockets[i].fd);
Damien Miller95def091999-11-25 00:26:21 +1100861 break;
862 case AUTH_UNUSED:
863 break;
864 default:
865 fatal("Unknown socket type %d", sockets[i].type);
866 break;
867 }
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000868 }
869
870 sz = howmany(n+1, NFDBITS) * sizeof(fd_mask);
Ben Lindstroma3d5a4c2001-07-18 15:58:08 +0000871 if (*fdrp == NULL || sz > *nallocp) {
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000872 if (*fdrp)
Ben Lindstrom86ebcb62001-04-04 01:53:20 +0000873 xfree(*fdrp);
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000874 if (*fdwp)
Ben Lindstrom86ebcb62001-04-04 01:53:20 +0000875 xfree(*fdwp);
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000876 *fdrp = xmalloc(sz);
877 *fdwp = xmalloc(sz);
Ben Lindstroma3d5a4c2001-07-18 15:58:08 +0000878 *nallocp = sz;
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000879 }
Ben Lindstroma3d5a4c2001-07-18 15:58:08 +0000880 if (n < *fdl)
881 debug("XXX shrink: %d < %d", n, *fdl);
882 *fdl = n;
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000883 memset(*fdrp, 0, sz);
884 memset(*fdwp, 0, sz);
885
886 for (i = 0; i < sockets_alloc; i++) {
887 switch (sockets[i].type) {
888 case AUTH_SOCKET:
889 case AUTH_CONNECTION:
890 FD_SET(sockets[i].fd, *fdrp);
891 if (buffer_len(&sockets[i].output) > 0)
892 FD_SET(sockets[i].fd, *fdwp);
893 break;
894 default:
895 break;
896 }
897 }
Darren Tucker2812dc92007-03-21 20:45:06 +1100898 deadline = reaper();
899 if (parent_alive_interval != 0)
900 deadline = (deadline == 0) ? parent_alive_interval :
901 MIN(deadline, parent_alive_interval);
902 if (deadline == 0) {
903 *tvpp = NULL;
904 } else {
905 tv.tv_sec = deadline;
906 tv.tv_usec = 0;
907 *tvpp = &tv;
908 }
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000909 return (1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000910}
911
Ben Lindstrombba81212001-06-25 05:01:22 +0000912static void
Damien Miller95def091999-11-25 00:26:21 +1100913after_select(fd_set *readset, fd_set *writeset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000914{
Ben Lindstrom822b6342002-06-23 21:38:49 +0000915 struct sockaddr_un sunaddr;
Damien Miller7684ee12000-03-17 23:40:15 +1100916 socklen_t slen;
Damien Miller95def091999-11-25 00:26:21 +1100917 char buf[1024];
Ben Lindstrom822b6342002-06-23 21:38:49 +0000918 int len, sock;
919 u_int i;
Damien Miller538f1812002-09-12 09:51:10 +1000920 uid_t euid;
921 gid_t egid;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000922
Damien Miller95def091999-11-25 00:26:21 +1100923 for (i = 0; i < sockets_alloc; i++)
924 switch (sockets[i].type) {
925 case AUTH_UNUSED:
926 break;
927 case AUTH_SOCKET:
928 if (FD_ISSET(sockets[i].fd, readset)) {
Damien Miller7684ee12000-03-17 23:40:15 +1100929 slen = sizeof(sunaddr);
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000930 sock = accept(sockets[i].fd,
Damien Miller90967402006-03-26 14:07:26 +1100931 (struct sockaddr *)&sunaddr, &slen);
Damien Miller95def091999-11-25 00:26:21 +1100932 if (sock < 0) {
Damien Millerc653b892002-02-08 22:05:41 +1100933 error("accept from AUTH_SOCKET: %s",
934 strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +1100935 break;
936 }
Damien Miller538f1812002-09-12 09:51:10 +1000937 if (getpeereid(sock, &euid, &egid) < 0) {
938 error("getpeereid %d failed: %s",
939 sock, strerror(errno));
940 close(sock);
941 break;
942 }
Damien Milleraf9de382002-10-03 11:54:35 +1000943 if ((euid != 0) && (getuid() != euid)) {
Damien Miller538f1812002-09-12 09:51:10 +1000944 error("uid mismatch: "
Damien Millerdb30b122002-09-19 11:46:58 +1000945 "peer euid %u != uid %u",
946 (u_int) euid, (u_int) getuid());
Damien Miller538f1812002-09-12 09:51:10 +1000947 close(sock);
948 break;
949 }
Damien Miller95def091999-11-25 00:26:21 +1100950 new_socket(AUTH_CONNECTION, sock);
951 }
952 break;
953 case AUTH_CONNECTION:
954 if (buffer_len(&sockets[i].output) > 0 &&
955 FD_ISSET(sockets[i].fd, writeset)) {
Ben Lindstromb3144e52001-03-06 03:31:34 +0000956 do {
957 len = write(sockets[i].fd,
958 buffer_ptr(&sockets[i].output),
959 buffer_len(&sockets[i].output));
960 if (len == -1 && (errno == EAGAIN ||
961 errno == EINTR))
962 continue;
963 break;
964 } while (1);
Damien Miller95def091999-11-25 00:26:21 +1100965 if (len <= 0) {
Damien Miller58f34862002-09-04 16:31:21 +1000966 close_socket(&sockets[i]);
Damien Miller95def091999-11-25 00:26:21 +1100967 break;
968 }
969 buffer_consume(&sockets[i].output, len);
970 }
971 if (FD_ISSET(sockets[i].fd, readset)) {
Ben Lindstromb3144e52001-03-06 03:31:34 +0000972 do {
973 len = read(sockets[i].fd, buf, sizeof(buf));
974 if (len == -1 && (errno == EAGAIN ||
975 errno == EINTR))
976 continue;
977 break;
978 } while (1);
Damien Miller95def091999-11-25 00:26:21 +1100979 if (len <= 0) {
Damien Miller58f34862002-09-04 16:31:21 +1000980 close_socket(&sockets[i]);
Damien Miller95def091999-11-25 00:26:21 +1100981 break;
982 }
983 buffer_append(&sockets[i].input, buf, len);
984 process_message(&sockets[i]);
985 }
986 break;
987 default:
988 fatal("Unknown type %d", sockets[i].type);
989 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000990}
991
Ben Lindstrombba81212001-06-25 05:01:22 +0000992static void
Darren Tucker6fa8abd2003-09-22 21:10:21 +1000993cleanup_socket(void)
Damien Miller792c5111999-10-29 09:47:09 +1000994{
Ben Lindstrom77808ab2001-01-26 05:10:34 +0000995 if (socket_name[0])
996 unlink(socket_name);
997 if (socket_dir[0])
998 rmdir(socket_dir);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000999}
1000
Darren Tucker3e33cec2003-10-02 16:12:36 +10001001void
Damien Miller792c5111999-10-29 09:47:09 +10001002cleanup_exit(int i)
1003{
Darren Tucker6fa8abd2003-09-22 21:10:21 +10001004 cleanup_socket();
1005 _exit(i);
Damien Miller792c5111999-10-29 09:47:09 +10001006}
1007
Damien Miller1c13bd82006-03-26 14:28:14 +11001008/*ARGSUSED*/
Ben Lindstrombba81212001-06-25 05:01:22 +00001009static void
Ben Lindstrom77808ab2001-01-26 05:10:34 +00001010cleanup_handler(int sig)
1011{
Darren Tucker6fa8abd2003-09-22 21:10:21 +10001012 cleanup_socket();
Ben Lindstrom77808ab2001-01-26 05:10:34 +00001013 _exit(2);
1014}
1015
Ben Lindstrombba81212001-06-25 05:01:22 +00001016static void
Darren Tucker2812dc92007-03-21 20:45:06 +11001017check_parent_exists(void)
Ben Lindstrom0250da02001-07-22 20:44:00 +00001018{
Ben Lindstrom0250da02001-07-22 20:44:00 +00001019 if (parent_pid != -1 && kill(parent_pid, 0) < 0) {
1020 /* printf("Parent has died - Authentication agent exiting.\n"); */
Darren Tucker2812dc92007-03-21 20:45:06 +11001021 cleanup_socket();
1022 _exit(2);
Ben Lindstrom0250da02001-07-22 20:44:00 +00001023 }
Ben Lindstrom0250da02001-07-22 20:44:00 +00001024}
1025
1026static void
Ben Lindstrom28072eb2001-02-10 23:13:41 +00001027usage(void)
Damien Miller792c5111999-10-29 09:47:09 +10001028{
Damien Miller5cbe7ca2007-09-17 16:05:50 +10001029 fprintf(stderr, "usage: %s [options] [command [arg ...]]\n",
Kevin Steves29265862001-01-24 14:06:28 +00001030 __progname);
Ben Lindstromddfb1e32001-08-06 22:06:35 +00001031 fprintf(stderr, "Options:\n");
1032 fprintf(stderr, " -c Generate C-shell commands on stdout.\n");
1033 fprintf(stderr, " -s Generate Bourne shell commands on stdout.\n");
1034 fprintf(stderr, " -k Kill the current agent.\n");
1035 fprintf(stderr, " -d Debug mode.\n");
Ben Lindstromb7788f32002-06-06 21:46:08 +00001036 fprintf(stderr, " -a socket Bind agent socket to given name.\n");
Damien Miller53d81482003-01-22 11:47:19 +11001037 fprintf(stderr, " -t life Default identity lifetime (seconds).\n");
Damien Miller95def091999-11-25 00:26:21 +11001038 exit(1);
Damien Miller792c5111999-10-29 09:47:09 +10001039}
1040
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001041int
1042main(int ac, char **av)
1043{
Damien Miller6c711792003-01-24 11:36:23 +11001044 int c_flag = 0, d_flag = 0, k_flag = 0, s_flag = 0;
Darren Tuckercf0d2db2007-02-28 21:19:58 +11001045 int sock, fd, ch, result, saved_errno;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10001046 u_int nalloc;
Ben Lindstrom822b6342002-06-23 21:38:49 +00001047 char *shell, *format, *pidstr, *agentsocket = NULL;
1048 fd_set *readsetp = NULL, *writesetp = NULL;
Damien Miller95def091999-11-25 00:26:21 +11001049 struct sockaddr_un sunaddr;
Ben Lindstrom2c467a22000-12-27 04:57:41 +00001050#ifdef HAVE_SETRLIMIT
Ben Lindstromc72745a2000-12-02 19:03:54 +00001051 struct rlimit rlim;
Ben Lindstrom2c467a22000-12-27 04:57:41 +00001052#endif
Ben Lindstrom3524d692001-05-03 22:59:24 +00001053 int prev_mask;
Damien Miller615f9392000-05-17 22:53:33 +10001054 extern int optind;
Ben Lindstrom883844d2002-06-23 00:20:50 +00001055 extern char *optarg;
Ben Lindstrom822b6342002-06-23 21:38:49 +00001056 pid_t pid;
1057 char pidstrbuf[1 + 3 * sizeof pid];
Darren Tucker2812dc92007-03-21 20:45:06 +11001058 struct timeval *tvp = NULL;
Kevin Stevesde41bc62000-12-14 00:04:08 +00001059
Darren Tuckerce321d82005-10-03 18:11:24 +10001060 /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
1061 sanitise_stdfd();
1062
Damien Miller6cffb9a2002-09-04 16:20:26 +10001063 /* drop */
1064 setegid(getgid());
1065 setgid(getgid());
1066
Damien Miller6c4914a2004-03-03 11:08:59 +11001067#if defined(HAVE_PRCTL) && defined(PR_SET_DUMPABLE)
1068 /* Disable ptrace on Linux without sgid bit */
1069 prctl(PR_SET_DUMPABLE, 0);
1070#endif
1071
Ben Lindstromd09fcf52001-03-29 00:29:54 +00001072 SSLeay_add_all_algorithms();
1073
Damien Miller59d3d5b2003-08-22 09:34:41 +10001074 __progname = ssh_get_progname(av[0]);
Damien Millerf9b625c2000-07-09 22:42:32 +10001075 init_rng();
Damien Miller60bc5172001-03-19 09:38:15 +11001076 seed_rng();
Kevin Stevesef4eea92001-02-05 12:42:17 +00001077
Damien Miller53d81482003-01-22 11:47:19 +11001078 while ((ch = getopt(ac, av, "cdksa:t:")) != -1) {
Damien Miller95def091999-11-25 00:26:21 +11001079 switch (ch) {
1080 case 'c':
1081 if (s_flag)
1082 usage();
1083 c_flag++;
1084 break;
1085 case 'k':
1086 k_flag++;
1087 break;
1088 case 's':
1089 if (c_flag)
1090 usage();
1091 s_flag++;
1092 break;
Ben Lindstromd94580c2001-07-04 03:48:02 +00001093 case 'd':
1094 if (d_flag)
1095 usage();
1096 d_flag++;
1097 break;
Ben Lindstromb7788f32002-06-06 21:46:08 +00001098 case 'a':
1099 agentsocket = optarg;
1100 break;
Damien Miller53d81482003-01-22 11:47:19 +11001101 case 't':
1102 if ((lifetime = convtime(optarg)) == -1) {
1103 fprintf(stderr, "Invalid lifetime\n");
1104 usage();
1105 }
1106 break;
Damien Miller95def091999-11-25 00:26:21 +11001107 default:
1108 usage();
1109 }
Damien Miller792c5111999-10-29 09:47:09 +10001110 }
Damien Miller95def091999-11-25 00:26:21 +11001111 ac -= optind;
1112 av += optind;
Damien Miller792c5111999-10-29 09:47:09 +10001113
Ben Lindstromd94580c2001-07-04 03:48:02 +00001114 if (ac > 0 && (c_flag || k_flag || s_flag || d_flag))
Damien Miller95def091999-11-25 00:26:21 +11001115 usage();
Damien Miller792c5111999-10-29 09:47:09 +10001116
Ben Lindstromeecdf232002-04-02 21:03:51 +00001117 if (ac == 0 && !c_flag && !s_flag) {
Damien Miller95def091999-11-25 00:26:21 +11001118 shell = getenv("SHELL");
Damien Miller89c3fe42006-03-31 23:11:28 +11001119 if (shell != NULL &&
1120 strncmp(shell + strlen(shell) - 3, "csh", 3) == 0)
Damien Miller95def091999-11-25 00:26:21 +11001121 c_flag = 1;
Damien Miller792c5111999-10-29 09:47:09 +10001122 }
Damien Miller95def091999-11-25 00:26:21 +11001123 if (k_flag) {
Damien Miller89c3fe42006-03-31 23:11:28 +11001124 const char *errstr = NULL;
1125
Damien Miller95def091999-11-25 00:26:21 +11001126 pidstr = getenv(SSH_AGENTPID_ENV_NAME);
1127 if (pidstr == NULL) {
1128 fprintf(stderr, "%s not set, cannot kill agent\n",
Ben Lindstrom226cfa02001-01-22 05:34:40 +00001129 SSH_AGENTPID_ENV_NAME);
Damien Miller95def091999-11-25 00:26:21 +11001130 exit(1);
1131 }
Damien Miller89c3fe42006-03-31 23:11:28 +11001132 pid = (int)strtonum(pidstr, 2, INT_MAX, &errstr);
1133 if (errstr) {
1134 fprintf(stderr,
1135 "%s=\"%s\", which is not a good PID: %s\n",
1136 SSH_AGENTPID_ENV_NAME, pidstr, errstr);
Damien Miller95def091999-11-25 00:26:21 +11001137 exit(1);
1138 }
1139 if (kill(pid, SIGTERM) == -1) {
1140 perror("kill");
1141 exit(1);
1142 }
1143 format = c_flag ? "unsetenv %s;\n" : "unset %s;\n";
1144 printf(format, SSH_AUTHSOCKET_ENV_NAME);
1145 printf(format, SSH_AGENTPID_ENV_NAME);
Ben Lindstromce0f6342002-06-11 16:42:49 +00001146 printf("echo Agent pid %ld killed;\n", (long)pid);
Damien Miller95def091999-11-25 00:26:21 +11001147 exit(0);
Damien Miller792c5111999-10-29 09:47:09 +10001148 }
Damien Miller95def091999-11-25 00:26:21 +11001149 parent_pid = getpid();
1150
Ben Lindstromb7788f32002-06-06 21:46:08 +00001151 if (agentsocket == NULL) {
1152 /* Create private directory for agent socket */
Darren Tucker072a7b12003-10-15 16:10:25 +10001153 strlcpy(socket_dir, "/tmp/ssh-XXXXXXXXXX", sizeof socket_dir);
Ben Lindstromb7788f32002-06-06 21:46:08 +00001154 if (mkdtemp(socket_dir) == NULL) {
1155 perror("mkdtemp: private socket dir");
1156 exit(1);
1157 }
Ben Lindstromce0f6342002-06-11 16:42:49 +00001158 snprintf(socket_name, sizeof socket_name, "%s/agent.%ld", socket_dir,
1159 (long)parent_pid);
Ben Lindstromb7788f32002-06-06 21:46:08 +00001160 } else {
1161 /* Try to use specified agent socket */
1162 socket_dir[0] = '\0';
1163 strlcpy(socket_name, agentsocket, sizeof socket_name);
Damien Miller792c5111999-10-29 09:47:09 +10001164 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001165
Damien Miller5428f641999-11-25 11:54:57 +11001166 /*
1167 * Create socket early so it will exist before command gets run from
1168 * the parent.
1169 */
Damien Miller95def091999-11-25 00:26:21 +11001170 sock = socket(AF_UNIX, SOCK_STREAM, 0);
1171 if (sock < 0) {
1172 perror("socket");
Darren Tucker1dee8682004-11-05 20:26:49 +11001173 *socket_name = '\0'; /* Don't unlink any existing file */
Damien Miller95def091999-11-25 00:26:21 +11001174 cleanup_exit(1);
Damien Miller792c5111999-10-29 09:47:09 +10001175 }
Damien Miller95def091999-11-25 00:26:21 +11001176 memset(&sunaddr, 0, sizeof(sunaddr));
1177 sunaddr.sun_family = AF_UNIX;
1178 strlcpy(sunaddr.sun_path, socket_name, sizeof(sunaddr.sun_path));
Ben Lindstrom3524d692001-05-03 22:59:24 +00001179 prev_mask = umask(0177);
Damien Miller90967402006-03-26 14:07:26 +11001180 if (bind(sock, (struct sockaddr *) &sunaddr, sizeof(sunaddr)) < 0) {
Damien Miller95def091999-11-25 00:26:21 +11001181 perror("bind");
Darren Tucker1dee8682004-11-05 20:26:49 +11001182 *socket_name = '\0'; /* Don't unlink any existing file */
Ben Lindstrom3524d692001-05-03 22:59:24 +00001183 umask(prev_mask);
Damien Miller95def091999-11-25 00:26:21 +11001184 cleanup_exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001185 }
Ben Lindstrom3524d692001-05-03 22:59:24 +00001186 umask(prev_mask);
Darren Tucker3175eb92003-12-09 19:15:11 +11001187 if (listen(sock, SSH_LISTEN_BACKLOG) < 0) {
Damien Miller95def091999-11-25 00:26:21 +11001188 perror("listen");
1189 cleanup_exit(1);
1190 }
Ben Lindstrom226cfa02001-01-22 05:34:40 +00001191
Damien Miller5428f641999-11-25 11:54:57 +11001192 /*
1193 * Fork, and have the parent execute the command, if any, or present
1194 * the socket data. The child continues as the authentication agent.
1195 */
Ben Lindstromd94580c2001-07-04 03:48:02 +00001196 if (d_flag) {
1197 log_init(__progname, SYSLOG_LEVEL_DEBUG1, SYSLOG_FACILITY_AUTH, 1);
1198 format = c_flag ? "setenv %s %s;\n" : "%s=%s; export %s;\n";
1199 printf(format, SSH_AUTHSOCKET_ENV_NAME, socket_name,
1200 SSH_AUTHSOCKET_ENV_NAME);
Ben Lindstromce0f6342002-06-11 16:42:49 +00001201 printf("echo Agent pid %ld;\n", (long)parent_pid);
Ben Lindstromd94580c2001-07-04 03:48:02 +00001202 goto skip;
1203 }
Damien Miller95def091999-11-25 00:26:21 +11001204 pid = fork();
1205 if (pid == -1) {
1206 perror("fork");
Damien Millerc653b892002-02-08 22:05:41 +11001207 cleanup_exit(1);
Damien Miller95def091999-11-25 00:26:21 +11001208 }
1209 if (pid != 0) { /* Parent - execute the given command. */
1210 close(sock);
Ben Lindstromce0f6342002-06-11 16:42:49 +00001211 snprintf(pidstrbuf, sizeof pidstrbuf, "%ld", (long)pid);
Damien Miller95def091999-11-25 00:26:21 +11001212 if (ac == 0) {
1213 format = c_flag ? "setenv %s %s;\n" : "%s=%s; export %s;\n";
1214 printf(format, SSH_AUTHSOCKET_ENV_NAME, socket_name,
Ben Lindstrom226cfa02001-01-22 05:34:40 +00001215 SSH_AUTHSOCKET_ENV_NAME);
Damien Miller95def091999-11-25 00:26:21 +11001216 printf(format, SSH_AGENTPID_ENV_NAME, pidstrbuf,
Ben Lindstrom226cfa02001-01-22 05:34:40 +00001217 SSH_AGENTPID_ENV_NAME);
Ben Lindstromce0f6342002-06-11 16:42:49 +00001218 printf("echo Agent pid %ld;\n", (long)pid);
Damien Miller95def091999-11-25 00:26:21 +11001219 exit(0);
1220 }
Damien Millere4340be2000-09-16 13:29:08 +11001221 if (setenv(SSH_AUTHSOCKET_ENV_NAME, socket_name, 1) == -1 ||
1222 setenv(SSH_AGENTPID_ENV_NAME, pidstrbuf, 1) == -1) {
1223 perror("setenv");
1224 exit(1);
1225 }
Damien Miller95def091999-11-25 00:26:21 +11001226 execvp(av[0], av);
1227 perror(av[0]);
1228 exit(1);
1229 }
Damien Millerc653b892002-02-08 22:05:41 +11001230 /* child */
1231 log_init(__progname, SYSLOG_LEVEL_INFO, SYSLOG_FACILITY_AUTH, 0);
Ben Lindstrom3fdf8762001-07-22 20:40:24 +00001232
1233 if (setsid() == -1) {
Damien Millerc653b892002-02-08 22:05:41 +11001234 error("setsid: %s", strerror(errno));
Ben Lindstrom3fdf8762001-07-22 20:40:24 +00001235 cleanup_exit(1);
1236 }
1237
1238 (void)chdir("/");
Damien Miller6c711792003-01-24 11:36:23 +11001239 if ((fd = open(_PATH_DEVNULL, O_RDWR, 0)) != -1) {
1240 /* XXX might close listen socket */
1241 (void)dup2(fd, STDIN_FILENO);
1242 (void)dup2(fd, STDOUT_FILENO);
1243 (void)dup2(fd, STDERR_FILENO);
1244 if (fd > 2)
1245 close(fd);
1246 }
Damien Miller95def091999-11-25 00:26:21 +11001247
Ben Lindstrom2c467a22000-12-27 04:57:41 +00001248#ifdef HAVE_SETRLIMIT
Ben Lindstromc72745a2000-12-02 19:03:54 +00001249 /* deny core dumps, since memory contains unencrypted private keys */
1250 rlim.rlim_cur = rlim.rlim_max = 0;
1251 if (setrlimit(RLIMIT_CORE, &rlim) < 0) {
Damien Millerc653b892002-02-08 22:05:41 +11001252 error("setrlimit RLIMIT_CORE: %s", strerror(errno));
Ben Lindstromc72745a2000-12-02 19:03:54 +00001253 cleanup_exit(1);
1254 }
Ben Lindstrom2c467a22000-12-27 04:57:41 +00001255#endif
Ben Lindstromd94580c2001-07-04 03:48:02 +00001256
1257skip:
Damien Miller95def091999-11-25 00:26:21 +11001258 new_socket(AUTH_SOCKET, sock);
Darren Tucker2812dc92007-03-21 20:45:06 +11001259 if (ac > 0)
1260 parent_alive_interval = 10;
Damien Millerad833b32000-08-23 10:46:23 +10001261 idtab_init();
Damien Miller48bfa9c2001-07-14 12:12:55 +10001262 if (!d_flag)
Ben Lindstromd94580c2001-07-04 03:48:02 +00001263 signal(SIGINT, SIG_IGN);
Damien Miller48bfa9c2001-07-14 12:12:55 +10001264 signal(SIGPIPE, SIG_IGN);
Ben Lindstrom77808ab2001-01-26 05:10:34 +00001265 signal(SIGHUP, cleanup_handler);
1266 signal(SIGTERM, cleanup_handler);
Ben Lindstroma3d5a4c2001-07-18 15:58:08 +00001267 nalloc = 0;
1268
Damien Miller95def091999-11-25 00:26:21 +11001269 while (1) {
Darren Tucker2812dc92007-03-21 20:45:06 +11001270 prepare_select(&readsetp, &writesetp, &max_fd, &nalloc, &tvp);
1271 result = select(max_fd + 1, readsetp, writesetp, NULL, tvp);
Darren Tuckercf0d2db2007-02-28 21:19:58 +11001272 saved_errno = errno;
Darren Tucker2812dc92007-03-21 20:45:06 +11001273 if (parent_alive_interval != 0)
1274 check_parent_exists();
1275 (void) reaper(); /* remove expired keys */
Darren Tuckercf0d2db2007-02-28 21:19:58 +11001276 if (result < 0) {
1277 if (saved_errno == EINTR)
Damien Miller95def091999-11-25 00:26:21 +11001278 continue;
Darren Tuckercf0d2db2007-02-28 21:19:58 +11001279 fatal("select: %s", strerror(saved_errno));
1280 } else if (result > 0)
1281 after_select(readsetp, writesetp);
Damien Miller95def091999-11-25 00:26:21 +11001282 }
1283 /* NOTREACHED */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001284}