blob: a335ea33d76fdc8881605c9d95b8d6771cc64362 [file] [log] [blame]
markus@openbsd.orgc355bf32015-07-08 20:24:02 +00001/* $OpenBSD: ssh-agent.c,v 1.204 2015/07/08 20:24:02 markus 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
deraadt@openbsd.org2ae4f332015-01-16 06:40:12 +000039#include <sys/param.h> /* MIN MAX */
Damien Miller574c41f2006-03-15 11:40:10 +110040#include <sys/types.h>
Damien Miller8dbffe72006-08-05 11:02:17 +100041#include <sys/param.h>
42#include <sys/resource.h>
Damien Miller42fb0682006-03-15 14:03:06 +110043#include <sys/stat.h>
Damien Millere3b60b52006-07-10 21:08:03 +100044#include <sys/socket.h>
Damien Miller9aec9192006-08-05 10:57:45 +100045#ifdef HAVE_SYS_TIME_H
46# include <sys/time.h>
47#endif
Damien Miller574c41f2006-03-15 11:40:10 +110048#ifdef HAVE_SYS_UN_H
49# include <sys/un.h>
50#endif
Damien Miller9b481512002-09-12 10:43:29 +100051#include "openbsd-compat/sys-queue.h"
Damien Millere3b60b52006-07-10 21:08:03 +100052
Damien Miller1f0311c2014-05-15 14:24:09 +100053#ifdef WITH_OPENSSL
Damien Millere3476ed2006-07-24 14:13:33 +100054#include <openssl/evp.h>
Darren Tuckerbfaaf962008-02-28 19:13:52 +110055#include "openbsd-compat/openssl-compat.h"
Damien Miller1f0311c2014-05-15 14:24:09 +100056#endif
Damien Millere3476ed2006-07-24 14:13:33 +100057
Darren Tucker39972492006-07-12 22:22:46 +100058#include <errno.h>
Damien Miller57cf6382006-07-10 21:13:46 +100059#include <fcntl.h>
deraadt@openbsd.org2ae4f332015-01-16 06:40:12 +000060#include <limits.h>
Damien Miller03e20032006-03-15 11:16:59 +110061#ifdef HAVE_PATHS_H
Damien Millera9263d02006-03-15 11:18:26 +110062# include <paths.h>
Damien Miller03e20032006-03-15 11:16:59 +110063#endif
Damien Miller6ff3cad2006-03-15 11:52:09 +110064#include <signal.h>
Damien Millerded319c2006-09-01 15:38:36 +100065#include <stdarg.h>
Damien Millera7a73ee2006-08-05 11:37:59 +100066#include <stdio.h>
Damien Millere7a1e5c2006-08-05 11:34:19 +100067#include <stdlib.h>
Damien Miller5598b4f2006-07-24 14:09:40 +100068#include <time.h>
Damien Millere3476ed2006-07-24 14:13:33 +100069#include <string.h>
Damien Millere6b3b612006-07-24 14:01:23 +100070#include <unistd.h>
Damien Millere97201f2015-05-21 17:55:15 +100071#ifdef HAVE_UTIL_H
72# include <util.h>
73#endif
Damien Miller6ff3cad2006-03-15 11:52:09 +110074
Damien Millerd7834352006-08-05 12:39:39 +100075#include "xmalloc.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100076#include "ssh.h"
77#include "rsa.h"
markus@openbsd.org139ca812015-01-14 13:09:09 +000078#include "sshbuf.h"
79#include "sshkey.h"
Damien Miller994cf142000-07-21 10:19:44 +100080#include "authfd.h"
Damien Miller62cee002000-09-23 17:15:56 +110081#include "compat.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000082#include "log.h"
Damien Miller6c711792003-01-24 11:36:23 +110083#include "misc.h"
Damien Miller4a1c7aa2014-02-04 11:03:36 +110084#include "digest.h"
markus@openbsd.org139ca812015-01-14 13:09:09 +000085#include "ssherr.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100086
Damien Miller7ea845e2010-02-12 09:21:02 +110087#ifdef ENABLE_PKCS11
88#include "ssh-pkcs11.h"
Ben Lindstrombcc18082001-08-06 21:59:25 +000089#endif
Ben Lindstrom3f471632001-07-04 03:53:15 +000090
Damien Miller6c4914a2004-03-03 11:08:59 +110091#if defined(HAVE_SYS_PRCTL_H)
92#include <sys/prctl.h> /* For prctl() and PR_SET_DUMPABLE */
93#endif
94
Ben Lindstrom65366a82001-12-06 16:32:47 +000095typedef enum {
96 AUTH_UNUSED,
97 AUTH_SOCKET,
98 AUTH_CONNECTION
99} sock_type;
100
Damien Miller95def091999-11-25 00:26:21 +1100101typedef struct {
102 int fd;
Ben Lindstrom65366a82001-12-06 16:32:47 +0000103 sock_type type;
markus@openbsd.org139ca812015-01-14 13:09:09 +0000104 struct sshbuf *input;
105 struct sshbuf *output;
106 struct sshbuf *request;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000107} SocketEntry;
108
Ben Lindstrom46c16222000-12-22 01:43:59 +0000109u_int sockets_alloc = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000110SocketEntry *sockets = NULL;
111
Damien Miller1a534ae2002-01-22 23:26:13 +1100112typedef struct identity {
113 TAILQ_ENTRY(identity) next;
markus@openbsd.org139ca812015-01-14 13:09:09 +0000114 struct sshkey *key;
Damien Miller95def091999-11-25 00:26:21 +1100115 char *comment;
Damien Miller7ea845e2010-02-12 09:21:02 +1100116 char *provider;
Darren Tucker55119252013-06-02 07:43:59 +1000117 time_t death;
Damien Miller6c711792003-01-24 11:36:23 +1100118 u_int confirm;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000119} Identity;
120
Damien Millerad833b32000-08-23 10:46:23 +1000121typedef struct {
122 int nentries;
Damien Miller1a534ae2002-01-22 23:26:13 +1100123 TAILQ_HEAD(idqueue, identity) idlist;
Damien Millerad833b32000-08-23 10:46:23 +1000124} Idtab;
125
126/* private key table, one per protocol version */
127Idtab idtable[3];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000128
129int max_fd = 0;
130
131/* pid of shell == parent of agent */
Damien Miller166fca82000-04-20 07:42:21 +1000132pid_t parent_pid = -1;
Darren Tucker073f7952013-06-02 23:47:11 +1000133time_t parent_alive_interval = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000134
Damien Millerb1e967c2014-07-03 21:22:40 +1000135/* pid of process for which cleanup_socket is applicable */
136pid_t cleanup_pid = 0;
137
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000138/* pathname and directory for AUTH_SOCKET */
deraadt@openbsd.org2ae4f332015-01-16 06:40:12 +0000139char socket_name[PATH_MAX];
140char socket_dir[PATH_MAX];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000141
Ben Lindstrom2f717042002-06-06 21:52:03 +0000142/* locking */
dtucker@openbsd.org9173d0f2015-05-15 05:44:21 +0000143#define LOCK_SIZE 32
144#define LOCK_SALT_SIZE 16
145#define LOCK_ROUNDS 1
Ben Lindstrom2f717042002-06-06 21:52:03 +0000146int locked = 0;
dtucker@openbsd.org9173d0f2015-05-15 05:44:21 +0000147char lock_passwd[LOCK_SIZE];
148char lock_salt[LOCK_SALT_SIZE];
Ben Lindstrom2f717042002-06-06 21:52:03 +0000149
Damien Miller95def091999-11-25 00:26:21 +1100150extern char *__progname;
Damien Miller95def091999-11-25 00:26:21 +1100151
Darren Tucker55119252013-06-02 07:43:59 +1000152/* Default lifetime in seconds (0 == forever) */
153static long lifetime = 0;
Damien Miller53d81482003-01-22 11:47:19 +1100154
djm@openbsd.org56d1c832014-12-21 22:27:55 +0000155static int fingerprint_hash = SSH_FP_HASH_DEFAULT;
156
Ben Lindstrombba81212001-06-25 05:01:22 +0000157static void
Damien Miller58f34862002-09-04 16:31:21 +1000158close_socket(SocketEntry *e)
159{
Damien Miller58f34862002-09-04 16:31:21 +1000160 close(e->fd);
161 e->fd = -1;
162 e->type = AUTH_UNUSED;
markus@openbsd.org139ca812015-01-14 13:09:09 +0000163 sshbuf_free(e->input);
164 sshbuf_free(e->output);
165 sshbuf_free(e->request);
Damien Miller58f34862002-09-04 16:31:21 +1000166}
167
168static void
Damien Millerad833b32000-08-23 10:46:23 +1000169idtab_init(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000170{
Damien Millerad833b32000-08-23 10:46:23 +1000171 int i;
Ben Lindstrom822b6342002-06-23 21:38:49 +0000172
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +0000173 for (i = 0; i <=2; i++) {
Damien Miller1a534ae2002-01-22 23:26:13 +1100174 TAILQ_INIT(&idtable[i].idlist);
Damien Millerad833b32000-08-23 10:46:23 +1000175 idtable[i].nentries = 0;
176 }
177}
178
179/* return private key table for requested protocol version */
Ben Lindstrombba81212001-06-25 05:01:22 +0000180static Idtab *
Damien Millerad833b32000-08-23 10:46:23 +1000181idtab_lookup(int version)
182{
183 if (version < 1 || version > 2)
184 fatal("internal error, bad protocol version %d", version);
185 return &idtable[version];
186}
187
Ben Lindstrom61d328a2002-06-06 21:54:57 +0000188static void
189free_identity(Identity *id)
190{
markus@openbsd.org139ca812015-01-14 13:09:09 +0000191 sshkey_free(id->key);
Darren Tuckera627d422013-06-02 07:31:17 +1000192 free(id->provider);
193 free(id->comment);
194 free(id);
Ben Lindstrom61d328a2002-06-06 21:54:57 +0000195}
196
Damien Millerad833b32000-08-23 10:46:23 +1000197/* return matching private key for given public key */
Damien Miller1a534ae2002-01-22 23:26:13 +1100198static Identity *
markus@openbsd.org139ca812015-01-14 13:09:09 +0000199lookup_identity(struct sshkey *key, int version)
Damien Millerad833b32000-08-23 10:46:23 +1000200{
Damien Miller1a534ae2002-01-22 23:26:13 +1100201 Identity *id;
202
Damien Millerad833b32000-08-23 10:46:23 +1000203 Idtab *tab = idtab_lookup(version);
Damien Miller1a534ae2002-01-22 23:26:13 +1100204 TAILQ_FOREACH(id, &tab->idlist, next) {
markus@openbsd.org139ca812015-01-14 13:09:09 +0000205 if (sshkey_equal(key, id->key))
Damien Miller1a534ae2002-01-22 23:26:13 +1100206 return (id);
Damien Millerad833b32000-08-23 10:46:23 +1000207 }
Damien Miller1a534ae2002-01-22 23:26:13 +1100208 return (NULL);
209}
210
Damien Miller6c711792003-01-24 11:36:23 +1100211/* Check confirmation of keysign request */
212static int
213confirm_key(Identity *id)
214{
Darren Tuckerce327b62004-11-05 20:38:03 +1100215 char *p;
Damien Miller6c711792003-01-24 11:36:23 +1100216 int ret = -1;
217
markus@openbsd.org139ca812015-01-14 13:09:09 +0000218 p = sshkey_fingerprint(id->key, fingerprint_hash, SSH_FP_DEFAULT);
djm@openbsd.org9ce86c92015-01-28 22:36:00 +0000219 if (p != NULL &&
220 ask_permission("Allow use of key %s?\nKey fingerprint %s.",
Darren Tuckerce327b62004-11-05 20:38:03 +1100221 id->comment, p))
222 ret = 0;
Darren Tuckera627d422013-06-02 07:31:17 +1000223 free(p);
Darren Tuckerce327b62004-11-05 20:38:03 +1100224
Damien Miller6c711792003-01-24 11:36:23 +1100225 return (ret);
226}
227
markus@openbsd.org139ca812015-01-14 13:09:09 +0000228static void
229send_status(SocketEntry *e, int success)
230{
231 int r;
232
233 if ((r = sshbuf_put_u32(e->output, 1)) != 0 ||
234 (r = sshbuf_put_u8(e->output, success ?
235 SSH_AGENT_SUCCESS : SSH_AGENT_FAILURE)) != 0)
236 fatal("%s: buffer error: %s", __func__, ssh_err(r));
237}
238
Damien Millerad833b32000-08-23 10:46:23 +1000239/* send list of supported public keys to 'client' */
Ben Lindstrombba81212001-06-25 05:01:22 +0000240static void
Damien Millerad833b32000-08-23 10:46:23 +1000241process_request_identities(SocketEntry *e, int version)
242{
243 Idtab *tab = idtab_lookup(version);
Damien Miller1a534ae2002-01-22 23:26:13 +1100244 Identity *id;
markus@openbsd.org139ca812015-01-14 13:09:09 +0000245 struct sshbuf *msg;
246 int r;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000247
markus@openbsd.org139ca812015-01-14 13:09:09 +0000248 if ((msg = sshbuf_new()) == NULL)
249 fatal("%s: sshbuf_new failed", __func__);
250 if ((r = sshbuf_put_u8(msg, (version == 1) ?
251 SSH_AGENT_RSA_IDENTITIES_ANSWER :
252 SSH2_AGENT_IDENTITIES_ANSWER)) != 0 ||
253 (r = sshbuf_put_u32(msg, tab->nentries)) != 0)
254 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Miller1a534ae2002-01-22 23:26:13 +1100255 TAILQ_FOREACH(id, &tab->idlist, next) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100256 if (id->key->type == KEY_RSA1) {
Damien Miller1f0311c2014-05-15 14:24:09 +1000257#ifdef WITH_SSH1
markus@openbsd.org139ca812015-01-14 13:09:09 +0000258 if ((r = sshbuf_put_u32(msg,
259 BN_num_bits(id->key->rsa->n))) != 0 ||
260 (r = sshbuf_put_bignum1(msg,
261 id->key->rsa->e)) != 0 ||
262 (r = sshbuf_put_bignum1(msg,
263 id->key->rsa->n)) != 0)
264 fatal("%s: buffer error: %s",
265 __func__, ssh_err(r));
Damien Miller1f0311c2014-05-15 14:24:09 +1000266#endif
Damien Millerad833b32000-08-23 10:46:23 +1000267 } else {
Ben Lindstrom46c16222000-12-22 01:43:59 +0000268 u_char *blob;
markus@openbsd.org139ca812015-01-14 13:09:09 +0000269 size_t blen;
270
271 if ((r = sshkey_to_blob(id->key, &blob, &blen)) != 0) {
272 error("%s: sshkey_to_blob: %s", __func__,
273 ssh_err(r));
274 continue;
275 }
276 if ((r = sshbuf_put_string(msg, blob, blen)) != 0)
277 fatal("%s: buffer error: %s",
278 __func__, ssh_err(r));
Darren Tuckera627d422013-06-02 07:31:17 +1000279 free(blob);
Damien Millerad833b32000-08-23 10:46:23 +1000280 }
markus@openbsd.org139ca812015-01-14 13:09:09 +0000281 if ((r = sshbuf_put_cstring(msg, id->comment)) != 0)
282 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Miller95def091999-11-25 00:26:21 +1100283 }
markus@openbsd.org139ca812015-01-14 13:09:09 +0000284 if ((r = sshbuf_put_stringb(e->output, msg)) != 0)
285 fatal("%s: buffer error: %s", __func__, ssh_err(r));
286 sshbuf_free(msg);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000287}
288
Damien Miller1f0311c2014-05-15 14:24:09 +1000289#ifdef WITH_SSH1
Damien Millerad833b32000-08-23 10:46:23 +1000290/* ssh1 only */
Ben Lindstrombba81212001-06-25 05:01:22 +0000291static void
Damien Millerad833b32000-08-23 10:46:23 +1000292process_authentication_challenge1(SocketEntry *e)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000293{
Ben Lindstrom822b6342002-06-23 21:38:49 +0000294 u_char buf[32], mdbuf[16], session_id[16];
295 u_int response_type;
Damien Millerad833b32000-08-23 10:46:23 +1000296 BIGNUM *challenge;
Ben Lindstrom822b6342002-06-23 21:38:49 +0000297 Identity *id;
markus@openbsd.org139ca812015-01-14 13:09:09 +0000298 int r, len;
299 struct sshbuf *msg;
Damien Miller4a1c7aa2014-02-04 11:03:36 +1100300 struct ssh_digest_ctx *md;
markus@openbsd.org139ca812015-01-14 13:09:09 +0000301 struct sshkey *key;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000302
markus@openbsd.org139ca812015-01-14 13:09:09 +0000303 if ((msg = sshbuf_new()) == NULL)
304 fatal("%s: sshbuf_new failed", __func__);
305 if ((key = sshkey_new(KEY_RSA1)) == NULL)
306 fatal("%s: sshkey_new failed", __func__);
Damien Millerda755162002-01-22 23:09:22 +1100307 if ((challenge = BN_new()) == NULL)
markus@openbsd.org139ca812015-01-14 13:09:09 +0000308 fatal("%s: BN_new failed", __func__);
Damien Millerad833b32000-08-23 10:46:23 +1000309
markus@openbsd.org139ca812015-01-14 13:09:09 +0000310 if ((r = sshbuf_get_u32(e->request, NULL)) != 0 || /* ignored */
311 (r = sshbuf_get_bignum1(e->request, key->rsa->e)) != 0 ||
312 (r = sshbuf_get_bignum1(e->request, key->rsa->n)) != 0 ||
313 (r = sshbuf_get_bignum1(e->request, challenge)))
314 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000315
Damien Millerad833b32000-08-23 10:46:23 +1000316 /* Only protocol 1.1 is supported */
markus@openbsd.org139ca812015-01-14 13:09:09 +0000317 if (sshbuf_len(e->request) == 0)
Damien Millerad833b32000-08-23 10:46:23 +1000318 goto failure;
markus@openbsd.org139ca812015-01-14 13:09:09 +0000319 if ((r = sshbuf_get(e->request, session_id, sizeof(session_id))) != 0 ||
320 (r = sshbuf_get_u32(e->request, &response_type)) != 0)
321 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Millerad833b32000-08-23 10:46:23 +1000322 if (response_type != 1)
323 goto failure;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000324
Damien Miller1a534ae2002-01-22 23:26:13 +1100325 id = lookup_identity(key, 1);
Damien Miller6c711792003-01-24 11:36:23 +1100326 if (id != NULL && (!id->confirm || confirm_key(id) == 0)) {
markus@openbsd.org139ca812015-01-14 13:09:09 +0000327 struct sshkey *private = id->key;
Damien Millerad833b32000-08-23 10:46:23 +1000328 /* Decrypt the challenge using the private key. */
markus@openbsd.org139ca812015-01-14 13:09:09 +0000329 if ((r = rsa_private_decrypt(challenge, challenge,
330 private->rsa) != 0)) {
331 fatal("%s: rsa_public_encrypt: %s", __func__,
332 ssh_err(r));
333 goto failure; /* XXX ? */
334 }
Damien Millerfd7c9111999-11-08 16:15:55 +1100335
markus@openbsd.org139ca812015-01-14 13:09:09 +0000336 /* The response is MD5 of decrypted challenge plus session id */
Damien Millerad833b32000-08-23 10:46:23 +1000337 len = BN_num_bytes(challenge);
338 if (len <= 0 || len > 32) {
markus@openbsd.org139ca812015-01-14 13:09:09 +0000339 logit("%s: bad challenge length %d", __func__, len);
Damien Millerad833b32000-08-23 10:46:23 +1000340 goto failure;
Damien Miller95def091999-11-25 00:26:21 +1100341 }
Damien Millerad833b32000-08-23 10:46:23 +1000342 memset(buf, 0, 32);
343 BN_bn2bin(challenge, buf + 32 - len);
Damien Miller4a1c7aa2014-02-04 11:03:36 +1100344 if ((md = ssh_digest_start(SSH_DIGEST_MD5)) == NULL ||
345 ssh_digest_update(md, buf, 32) < 0 ||
346 ssh_digest_update(md, session_id, 16) < 0 ||
347 ssh_digest_final(md, mdbuf, sizeof(mdbuf)) < 0)
348 fatal("%s: md5 failed", __func__);
349 ssh_digest_free(md);
Damien Millerad833b32000-08-23 10:46:23 +1000350
351 /* Send the response. */
markus@openbsd.org139ca812015-01-14 13:09:09 +0000352 if ((r = sshbuf_put_u8(msg, SSH_AGENT_RSA_RESPONSE)) != 0 ||
353 (r = sshbuf_put(msg, mdbuf, sizeof(mdbuf))) != 0)
354 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Millerad833b32000-08-23 10:46:23 +1000355 goto send;
356 }
357
markus@openbsd.org139ca812015-01-14 13:09:09 +0000358 failure:
Damien Millerad833b32000-08-23 10:46:23 +1000359 /* Unknown identity or protocol error. Send failure. */
markus@openbsd.org139ca812015-01-14 13:09:09 +0000360 if ((r = sshbuf_put_u8(msg, SSH_AGENT_FAILURE)) != 0)
361 fatal("%s: buffer error: %s", __func__, ssh_err(r));
362 send:
363 if ((r = sshbuf_put_stringb(e->output, msg)) != 0)
364 fatal("%s: buffer error: %s", __func__, ssh_err(r));
365 sshkey_free(key);
Damien Miller95def091999-11-25 00:26:21 +1100366 BN_clear_free(challenge);
markus@openbsd.org139ca812015-01-14 13:09:09 +0000367 sshbuf_free(msg);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000368}
Damien Miller1f0311c2014-05-15 14:24:09 +1000369#endif
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000370
Damien Millerad833b32000-08-23 10:46:23 +1000371/* ssh2 only */
Ben Lindstrombba81212001-06-25 05:01:22 +0000372static void
Damien Millerad833b32000-08-23 10:46:23 +1000373process_sign_request2(SocketEntry *e)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000374{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000375 u_char *blob, *data, *signature = NULL;
markus@openbsd.org139ca812015-01-14 13:09:09 +0000376 size_t blen, dlen, slen = 0;
377 u_int compat = 0, flags;
378 int r, ok = -1;
379 struct sshbuf *msg;
380 struct sshkey *key;
djm@openbsd.org0088c572015-01-14 19:33:41 +0000381 struct identity *id;
Damien Millerad833b32000-08-23 10:46:23 +1000382
djm@openbsd.org0088c572015-01-14 19:33:41 +0000383 if ((msg = sshbuf_new()) == NULL)
384 fatal("%s: sshbuf_new failed", __func__);
markus@openbsd.org139ca812015-01-14 13:09:09 +0000385 if ((r = sshbuf_get_string(e->request, &blob, &blen)) != 0 ||
386 (r = sshbuf_get_string(e->request, &data, &dlen)) != 0 ||
387 (r = sshbuf_get_u32(e->request, &flags)) != 0)
388 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Miller62cee002000-09-23 17:15:56 +1100389 if (flags & SSH_AGENT_OLD_SIGNATURE)
markus@openbsd.org139ca812015-01-14 13:09:09 +0000390 compat = SSH_BUG_SIGBLOB;
djm@openbsd.org0088c572015-01-14 19:33:41 +0000391 if ((r = sshkey_from_blob(blob, blen, &key)) != 0) {
markus@openbsd.org139ca812015-01-14 13:09:09 +0000392 error("%s: cannot parse key blob: %s", __func__, ssh_err(ok));
djm@openbsd.org0088c572015-01-14 19:33:41 +0000393 goto send;
Damien Millerad833b32000-08-23 10:46:23 +1000394 }
djm@openbsd.org0088c572015-01-14 19:33:41 +0000395 if ((id = lookup_identity(key, 2)) == NULL) {
396 verbose("%s: %s key not found", __func__, sshkey_type(key));
397 goto send;
398 }
399 if (id->confirm && confirm_key(id) != 0) {
400 verbose("%s: user refused key", __func__);
401 goto send;
402 }
403 if ((r = sshkey_sign(id->key, &signature, &slen,
404 data, dlen, compat)) != 0) {
405 error("%s: sshkey_sign: %s", __func__, ssh_err(ok));
406 goto send;
407 }
408 /* Success */
409 ok = 0;
410 send:
411 sshkey_free(key);
Damien Millerad833b32000-08-23 10:46:23 +1000412 if (ok == 0) {
markus@openbsd.org139ca812015-01-14 13:09:09 +0000413 if ((r = sshbuf_put_u8(msg, SSH2_AGENT_SIGN_RESPONSE)) != 0 ||
414 (r = sshbuf_put_string(msg, signature, slen)) != 0)
415 fatal("%s: buffer error: %s", __func__, ssh_err(r));
416 } else if ((r = sshbuf_put_u8(msg, SSH_AGENT_FAILURE)) != 0)
417 fatal("%s: buffer error: %s", __func__, ssh_err(r));
418
419 if ((r = sshbuf_put_stringb(e->output, msg)) != 0)
420 fatal("%s: buffer error: %s", __func__, ssh_err(r));
421
422 sshbuf_free(msg);
Darren Tuckera627d422013-06-02 07:31:17 +1000423 free(data);
424 free(blob);
425 free(signature);
Damien Millerad833b32000-08-23 10:46:23 +1000426}
427
428/* shared */
Ben Lindstrombba81212001-06-25 05:01:22 +0000429static void
Damien Millerad833b32000-08-23 10:46:23 +1000430process_remove_identity(SocketEntry *e, int version)
431{
markus@openbsd.org139ca812015-01-14 13:09:09 +0000432 size_t blen;
433 int r, success = 0;
434 struct sshkey *key = NULL;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000435 u_char *blob;
Damien Miller86687062014-07-02 15:28:02 +1000436#ifdef WITH_SSH1
437 u_int bits;
438#endif /* WITH_SSH1 */
Damien Miller7e8e8201999-11-16 13:37:16 +1100439
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +0000440 switch (version) {
Damien Miller86687062014-07-02 15:28:02 +1000441#ifdef WITH_SSH1
Damien Millerad833b32000-08-23 10:46:23 +1000442 case 1:
markus@openbsd.org139ca812015-01-14 13:09:09 +0000443 if ((key = sshkey_new(KEY_RSA1)) == NULL) {
444 error("%s: sshkey_new failed", __func__);
445 return;
446 }
447 if ((r = sshbuf_get_u32(e->request, &bits)) != 0 ||
448 (r = sshbuf_get_bignum1(e->request, key->rsa->e)) != 0 ||
449 (r = sshbuf_get_bignum1(e->request, key->rsa->n)) != 0)
450 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000451
markus@openbsd.org139ca812015-01-14 13:09:09 +0000452 if (bits != sshkey_size(key))
453 logit("Warning: identity keysize mismatch: "
454 "actual %u, announced %u",
455 sshkey_size(key), bits);
Damien Millerad833b32000-08-23 10:46:23 +1000456 break;
Damien Miller86687062014-07-02 15:28:02 +1000457#endif /* WITH_SSH1 */
Damien Millerad833b32000-08-23 10:46:23 +1000458 case 2:
markus@openbsd.org139ca812015-01-14 13:09:09 +0000459 if ((r = sshbuf_get_string(e->request, &blob, &blen)) != 0)
460 fatal("%s: buffer error: %s", __func__, ssh_err(r));
461 if ((r = sshkey_from_blob(blob, blen, &key)) != 0)
462 error("%s: sshkey_from_blob failed: %s",
463 __func__, ssh_err(r));
Darren Tuckera627d422013-06-02 07:31:17 +1000464 free(blob);
Damien Millerad833b32000-08-23 10:46:23 +1000465 break;
466 }
467 if (key != NULL) {
Damien Miller1a534ae2002-01-22 23:26:13 +1100468 Identity *id = lookup_identity(key, version);
469 if (id != NULL) {
Damien Miller5428f641999-11-25 11:54:57 +1100470 /*
471 * We have this key. Free the old key. Since we
Damien Miller788f2122005-11-05 15:14:59 +1100472 * don't want to leave empty slots in the middle of
Ben Lindstrom14920292000-11-21 21:24:55 +0000473 * the array, we actually free the key there and move
474 * all the entries between the empty slot and the end
475 * of the array.
Damien Miller5428f641999-11-25 11:54:57 +1100476 */
Damien Millerad833b32000-08-23 10:46:23 +1000477 Idtab *tab = idtab_lookup(version);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100478 if (tab->nentries < 1)
479 fatal("process_remove_identity: "
480 "internal error: tab->nentries %d",
481 tab->nentries);
Damien Miller1a534ae2002-01-22 23:26:13 +1100482 TAILQ_REMOVE(&tab->idlist, id, next);
483 free_identity(id);
Damien Millerad833b32000-08-23 10:46:23 +1000484 tab->nentries--;
485 success = 1;
Damien Miller95def091999-11-25 00:26:21 +1100486 }
markus@openbsd.org139ca812015-01-14 13:09:09 +0000487 sshkey_free(key);
Damien Millerad833b32000-08-23 10:46:23 +1000488 }
markus@openbsd.org139ca812015-01-14 13:09:09 +0000489 send_status(e, success);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000490}
491
Ben Lindstrombba81212001-06-25 05:01:22 +0000492static void
Damien Millerad833b32000-08-23 10:46:23 +1000493process_remove_all_identities(SocketEntry *e, int version)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000494{
Damien Millerad833b32000-08-23 10:46:23 +1000495 Idtab *tab = idtab_lookup(version);
Damien Miller1a534ae2002-01-22 23:26:13 +1100496 Identity *id;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000497
Damien Miller95def091999-11-25 00:26:21 +1100498 /* Loop over all identities and clear the keys. */
Damien Miller1a534ae2002-01-22 23:26:13 +1100499 for (id = TAILQ_FIRST(&tab->idlist); id;
500 id = TAILQ_FIRST(&tab->idlist)) {
501 TAILQ_REMOVE(&tab->idlist, id, next);
502 free_identity(id);
Damien Miller95def091999-11-25 00:26:21 +1100503 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000504
Damien Miller95def091999-11-25 00:26:21 +1100505 /* Mark that there are no identities. */
Damien Millerad833b32000-08-23 10:46:23 +1000506 tab->nentries = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000507
508 /* Send success. */
markus@openbsd.org139ca812015-01-14 13:09:09 +0000509 send_status(e, 1);
Damien Miller95def091999-11-25 00:26:21 +1100510}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000511
Darren Tucker2812dc92007-03-21 20:45:06 +1100512/* removes expired keys and returns number of seconds until the next expiry */
Darren Tucker55119252013-06-02 07:43:59 +1000513static time_t
Ben Lindstrom61d328a2002-06-06 21:54:57 +0000514reaper(void)
515{
Darren Tuckerb759c9c2013-06-02 07:46:16 +1000516 time_t deadline = 0, now = monotime();
Ben Lindstrom61d328a2002-06-06 21:54:57 +0000517 Identity *id, *nxt;
518 int version;
Ben Lindstrom822b6342002-06-23 21:38:49 +0000519 Idtab *tab;
Ben Lindstrom61d328a2002-06-06 21:54:57 +0000520
521 for (version = 1; version < 3; version++) {
522 tab = idtab_lookup(version);
523 for (id = TAILQ_FIRST(&tab->idlist); id; id = nxt) {
524 nxt = TAILQ_NEXT(id, next);
Darren Tucker2812dc92007-03-21 20:45:06 +1100525 if (id->death == 0)
526 continue;
527 if (now >= id->death) {
Darren Tuckercf0d2db2007-02-28 21:19:58 +1100528 debug("expiring key '%s'", id->comment);
Ben Lindstrom61d328a2002-06-06 21:54:57 +0000529 TAILQ_REMOVE(&tab->idlist, id, next);
530 free_identity(id);
531 tab->nentries--;
Darren Tucker2812dc92007-03-21 20:45:06 +1100532 } else
533 deadline = (deadline == 0) ? id->death :
534 MIN(deadline, id->death);
Ben Lindstrom61d328a2002-06-06 21:54:57 +0000535 }
536 }
Darren Tucker2812dc92007-03-21 20:45:06 +1100537 if (deadline == 0 || deadline <= now)
538 return 0;
539 else
540 return (deadline - now);
Ben Lindstrom61d328a2002-06-06 21:54:57 +0000541}
542
markus@openbsd.org139ca812015-01-14 13:09:09 +0000543/*
544 * XXX this and the corresponding serialisation function probably belongs
545 * in key.c
546 */
djm@openbsd.org111dfb22015-03-03 21:21:13 +0000547#ifdef WITH_SSH1
markus@openbsd.org139ca812015-01-14 13:09:09 +0000548static int
549agent_decode_rsa1(struct sshbuf *m, struct sshkey **kp)
550{
551 struct sshkey *k = NULL;
552 int r = SSH_ERR_INTERNAL_ERROR;
553
554 *kp = NULL;
555 if ((k = sshkey_new_private(KEY_RSA1)) == NULL)
556 return SSH_ERR_ALLOC_FAIL;
557
558 if ((r = sshbuf_get_u32(m, NULL)) != 0 || /* ignored */
559 (r = sshbuf_get_bignum1(m, k->rsa->n)) != 0 ||
560 (r = sshbuf_get_bignum1(m, k->rsa->e)) != 0 ||
561 (r = sshbuf_get_bignum1(m, k->rsa->d)) != 0 ||
562 (r = sshbuf_get_bignum1(m, k->rsa->iqmp)) != 0 ||
563 /* SSH1 and SSL have p and q swapped */
564 (r = sshbuf_get_bignum1(m, k->rsa->q)) != 0 || /* p */
565 (r = sshbuf_get_bignum1(m, k->rsa->p)) != 0) /* q */
566 goto out;
567
568 /* Generate additional parameters */
569 if ((r = rsa_generate_additional_parameters(k->rsa)) != 0)
570 goto out;
571 /* enable blinding */
572 if (RSA_blinding_on(k->rsa, NULL) != 1) {
573 r = SSH_ERR_LIBCRYPTO_ERROR;
574 goto out;
575 }
576
577 r = 0; /* success */
578 out:
579 if (r == 0)
580 *kp = k;
581 else
582 sshkey_free(k);
583 return r;
584}
Damien Miller6c203922015-03-03 13:48:48 -0800585#endif /* WITH_SSH1 */
markus@openbsd.org139ca812015-01-14 13:09:09 +0000586
Ben Lindstrom61d328a2002-06-06 21:54:57 +0000587static void
Damien Millerad833b32000-08-23 10:46:23 +1000588process_add_identity(SocketEntry *e, int version)
Damien Miller95def091999-11-25 00:26:21 +1100589{
Damien Millerad833b32000-08-23 10:46:23 +1000590 Idtab *tab = idtab_lookup(version);
Damien Miller4c7728c2007-10-26 14:25:31 +1000591 Identity *id;
markus@openbsd.org139ca812015-01-14 13:09:09 +0000592 int success = 0, confirm = 0;
593 u_int seconds;
594 char *comment = NULL;
Darren Tucker55119252013-06-02 07:43:59 +1000595 time_t death = 0;
markus@openbsd.org139ca812015-01-14 13:09:09 +0000596 struct sshkey *k = NULL;
597 u_char ctype;
598 int r = SSH_ERR_INTERNAL_ERROR;
Damien Miller95def091999-11-25 00:26:21 +1100599
Damien Millerad833b32000-08-23 10:46:23 +1000600 switch (version) {
Damien Miller86687062014-07-02 15:28:02 +1000601#ifdef WITH_SSH1
Damien Millerad833b32000-08-23 10:46:23 +1000602 case 1:
markus@openbsd.org139ca812015-01-14 13:09:09 +0000603 r = agent_decode_rsa1(e->request, &k);
Damien Millerc51d0732003-03-15 11:37:09 +1100604 break;
Damien Miller86687062014-07-02 15:28:02 +1000605#endif /* WITH_SSH1 */
Damien Millerf0e90602013-12-07 10:40:26 +1100606 case 2:
markus@openbsd.org139ca812015-01-14 13:09:09 +0000607 r = sshkey_private_deserialize(e->request, &k);
Damien Millerf0e90602013-12-07 10:40:26 +1100608 break;
Damien Millerc51d0732003-03-15 11:37:09 +1100609 }
markus@openbsd.org139ca812015-01-14 13:09:09 +0000610 if (r != 0 || k == NULL ||
611 (r = sshbuf_get_cstring(e->request, &comment, NULL)) != 0) {
612 error("%s: decode private key: %s", __func__, ssh_err(r));
613 goto err;
614 }
Damien Miller86687062014-07-02 15:28:02 +1000615
markus@openbsd.org139ca812015-01-14 13:09:09 +0000616 while (sshbuf_len(e->request)) {
617 if ((r = sshbuf_get_u8(e->request, &ctype)) != 0) {
618 error("%s: buffer error: %s", __func__, ssh_err(r));
619 goto err;
620 }
621 switch (ctype) {
Ben Lindstromc90f8a92002-06-21 00:06:54 +0000622 case SSH_AGENT_CONSTRAIN_LIFETIME:
markus@openbsd.org139ca812015-01-14 13:09:09 +0000623 if ((r = sshbuf_get_u32(e->request, &seconds)) != 0) {
624 error("%s: bad lifetime constraint: %s",
625 __func__, ssh_err(r));
626 goto err;
627 }
628 death = monotime() + seconds;
Ben Lindstrom4eb4c4e2002-06-21 00:04:48 +0000629 break;
Damien Miller6c711792003-01-24 11:36:23 +1100630 case SSH_AGENT_CONSTRAIN_CONFIRM:
631 confirm = 1;
632 break;
Ben Lindstrom4eb4c4e2002-06-21 00:04:48 +0000633 default:
markus@openbsd.org139ca812015-01-14 13:09:09 +0000634 error("%s: Unknown constraint %d", __func__, ctype);
635 err:
636 sshbuf_reset(e->request);
Darren Tuckera627d422013-06-02 07:31:17 +1000637 free(comment);
markus@openbsd.org139ca812015-01-14 13:09:09 +0000638 sshkey_free(k);
Damien Miller1cfadab2008-06-30 00:05:21 +1000639 goto send;
Ben Lindstrom4eb4c4e2002-06-21 00:04:48 +0000640 }
641 }
markus@openbsd.org139ca812015-01-14 13:09:09 +0000642
Damien Miller1cfadab2008-06-30 00:05:21 +1000643 success = 1;
Damien Miller53d81482003-01-22 11:47:19 +1100644 if (lifetime && !death)
Darren Tuckerb759c9c2013-06-02 07:46:16 +1000645 death = monotime() + lifetime;
Damien Miller4c7728c2007-10-26 14:25:31 +1000646 if ((id = lookup_identity(k, version)) == NULL) {
Damien Miller7ea845e2010-02-12 09:21:02 +1100647 id = xcalloc(1, sizeof(Identity));
Ben Lindstrom2b266b72002-06-21 00:08:39 +0000648 id->key = k;
Ben Lindstrom2b266b72002-06-21 00:08:39 +0000649 TAILQ_INSERT_TAIL(&tab->idlist, id, next);
650 /* Increment the number of identities. */
651 tab->nentries++;
652 } else {
markus@openbsd.org139ca812015-01-14 13:09:09 +0000653 sshkey_free(k);
Darren Tuckera627d422013-06-02 07:31:17 +1000654 free(id->comment);
Ben Lindstrom61d328a2002-06-06 21:54:57 +0000655 }
Damien Miller4c7728c2007-10-26 14:25:31 +1000656 id->comment = comment;
657 id->death = death;
658 id->confirm = confirm;
Ben Lindstrom2b266b72002-06-21 00:08:39 +0000659send:
markus@openbsd.org139ca812015-01-14 13:09:09 +0000660 send_status(e, success);
Ben Lindstrom61d328a2002-06-06 21:54:57 +0000661}
662
Ben Lindstrom2f717042002-06-06 21:52:03 +0000663/* XXX todo: encrypt sensitive data with passphrase */
664static void
665process_lock_agent(SocketEntry *e, int lock)
666{
dtucker@openbsd.org9173d0f2015-05-15 05:44:21 +0000667 int r, success = 0, delay;
668 char *passwd, passwdhash[LOCK_SIZE];
669 static u_int fail_count = 0;
670 size_t pwlen;
Ben Lindstrom2f717042002-06-06 21:52:03 +0000671
dtucker@openbsd.org9173d0f2015-05-15 05:44:21 +0000672 if ((r = sshbuf_get_cstring(e->request, &passwd, &pwlen)) != 0)
markus@openbsd.org139ca812015-01-14 13:09:09 +0000673 fatal("%s: buffer error: %s", __func__, ssh_err(r));
dtucker@openbsd.org9173d0f2015-05-15 05:44:21 +0000674 if (pwlen == 0) {
675 debug("empty password not supported");
676 } else if (locked && !lock) {
677 if (bcrypt_pbkdf(passwd, pwlen, lock_salt, sizeof(lock_salt),
678 passwdhash, sizeof(passwdhash), LOCK_ROUNDS) < 0)
679 fatal("bcrypt_pbkdf");
680 if (timingsafe_bcmp(passwdhash, lock_passwd, LOCK_SIZE) == 0) {
681 debug("agent unlocked");
682 locked = 0;
683 fail_count = 0;
684 explicit_bzero(lock_passwd, sizeof(lock_passwd));
685 success = 1;
686 } else {
687 /* delay in 0.1s increments up to 10s */
688 if (fail_count < 100)
689 fail_count++;
690 delay = 100000 * fail_count;
691 debug("unlock failed, delaying %0.1lf seconds",
692 (double)delay/1000000);
693 usleep(delay);
694 }
695 explicit_bzero(passwdhash, sizeof(passwdhash));
Ben Lindstrom2f717042002-06-06 21:52:03 +0000696 } else if (!locked && lock) {
dtucker@openbsd.org9173d0f2015-05-15 05:44:21 +0000697 debug("agent locked");
Ben Lindstrom2f717042002-06-06 21:52:03 +0000698 locked = 1;
dtucker@openbsd.org9173d0f2015-05-15 05:44:21 +0000699 arc4random_buf(lock_salt, sizeof(lock_salt));
700 if (bcrypt_pbkdf(passwd, pwlen, lock_salt, sizeof(lock_salt),
701 lock_passwd, sizeof(lock_passwd), LOCK_ROUNDS) < 0)
702 fatal("bcrypt_pbkdf");
Ben Lindstrom2f717042002-06-06 21:52:03 +0000703 success = 1;
704 }
dtucker@openbsd.org9173d0f2015-05-15 05:44:21 +0000705 explicit_bzero(passwd, pwlen);
Darren Tuckera627d422013-06-02 07:31:17 +1000706 free(passwd);
markus@openbsd.org139ca812015-01-14 13:09:09 +0000707 send_status(e, success);
Ben Lindstrom2f717042002-06-06 21:52:03 +0000708}
709
710static void
711no_identities(SocketEntry *e, u_int type)
712{
markus@openbsd.org139ca812015-01-14 13:09:09 +0000713 struct sshbuf *msg;
714 int r;
Ben Lindstrom2f717042002-06-06 21:52:03 +0000715
markus@openbsd.org139ca812015-01-14 13:09:09 +0000716 if ((msg = sshbuf_new()) == NULL)
717 fatal("%s: sshbuf_new failed", __func__);
718 if ((r = sshbuf_put_u8(msg,
Ben Lindstrom2f717042002-06-06 21:52:03 +0000719 (type == SSH_AGENTC_REQUEST_RSA_IDENTITIES) ?
markus@openbsd.org139ca812015-01-14 13:09:09 +0000720 SSH_AGENT_RSA_IDENTITIES_ANSWER :
721 SSH2_AGENT_IDENTITIES_ANSWER)) != 0 ||
722 (r = sshbuf_put_u32(msg, 0)) != 0 ||
723 (r = sshbuf_put_stringb(e->output, msg)) != 0)
724 fatal("%s: buffer error: %s", __func__, ssh_err(r));
725 sshbuf_free(msg);
Ben Lindstrom2f717042002-06-06 21:52:03 +0000726}
Ben Lindstrom3f471632001-07-04 03:53:15 +0000727
Damien Miller7ea845e2010-02-12 09:21:02 +1100728#ifdef ENABLE_PKCS11
Ben Lindstrom3f471632001-07-04 03:53:15 +0000729static void
Damien Miller1cfadab2008-06-30 00:05:21 +1000730process_add_smartcard_key(SocketEntry *e)
Ben Lindstrom3f471632001-07-04 03:53:15 +0000731{
Damien Miller7ea845e2010-02-12 09:21:02 +1100732 char *provider = NULL, *pin;
markus@openbsd.org139ca812015-01-14 13:09:09 +0000733 int r, i, version, count = 0, success = 0, confirm = 0;
734 u_int seconds;
Darren Tucker55119252013-06-02 07:43:59 +1000735 time_t death = 0;
markus@openbsd.org139ca812015-01-14 13:09:09 +0000736 u_char type;
737 struct sshkey **keys = NULL, *k;
Ben Lindstrom822b6342002-06-23 21:38:49 +0000738 Identity *id;
739 Idtab *tab;
Damien Miller9f0f5c62001-12-21 14:45:46 +1100740
markus@openbsd.org139ca812015-01-14 13:09:09 +0000741 if ((r = sshbuf_get_cstring(e->request, &provider, NULL)) != 0 ||
742 (r = sshbuf_get_cstring(e->request, &pin, NULL)) != 0)
743 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Millerd94f20d2003-06-11 22:06:33 +1000744
markus@openbsd.org139ca812015-01-14 13:09:09 +0000745 while (sshbuf_len(e->request)) {
746 if ((r = sshbuf_get_u8(e->request, &type)) != 0)
747 fatal("%s: buffer error: %s", __func__, ssh_err(r));
748 switch (type) {
Damien Millerd94f20d2003-06-11 22:06:33 +1000749 case SSH_AGENT_CONSTRAIN_LIFETIME:
markus@openbsd.org139ca812015-01-14 13:09:09 +0000750 if ((r = sshbuf_get_u32(e->request, &seconds)) != 0)
751 fatal("%s: buffer error: %s",
752 __func__, ssh_err(r));
753 death = monotime() + seconds;
Damien Millerd94f20d2003-06-11 22:06:33 +1000754 break;
755 case SSH_AGENT_CONSTRAIN_CONFIRM:
756 confirm = 1;
757 break;
758 default:
Damien Miller1cfadab2008-06-30 00:05:21 +1000759 error("process_add_smartcard_key: "
760 "Unknown constraint type %d", type);
Damien Miller1cfadab2008-06-30 00:05:21 +1000761 goto send;
Damien Millerd94f20d2003-06-11 22:06:33 +1000762 }
763 }
764 if (lifetime && !death)
Darren Tuckerb759c9c2013-06-02 07:46:16 +1000765 death = monotime() + lifetime;
Damien Millerd94f20d2003-06-11 22:06:33 +1000766
Damien Miller7ea845e2010-02-12 09:21:02 +1100767 count = pkcs11_add_provider(provider, pin, &keys);
768 for (i = 0; i < count; i++) {
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000769 k = keys[i];
770 version = k->type == KEY_RSA1 ? 1 : 2;
771 tab = idtab_lookup(version);
772 if (lookup_identity(k, version) == NULL) {
Damien Miller7ea845e2010-02-12 09:21:02 +1100773 id = xcalloc(1, sizeof(Identity));
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000774 id->key = k;
Damien Miller7ea845e2010-02-12 09:21:02 +1100775 id->provider = xstrdup(provider);
776 id->comment = xstrdup(provider); /* XXX */
Damien Millerd94f20d2003-06-11 22:06:33 +1000777 id->death = death;
778 id->confirm = confirm;
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000779 TAILQ_INSERT_TAIL(&tab->idlist, id, next);
780 tab->nentries++;
781 success = 1;
782 } else {
markus@openbsd.org139ca812015-01-14 13:09:09 +0000783 sshkey_free(k);
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000784 }
785 keys[i] = NULL;
Ben Lindstrom3f471632001-07-04 03:53:15 +0000786 }
Ben Lindstrom3f471632001-07-04 03:53:15 +0000787send:
Darren Tuckera627d422013-06-02 07:31:17 +1000788 free(pin);
789 free(provider);
790 free(keys);
markus@openbsd.org139ca812015-01-14 13:09:09 +0000791 send_status(e, success);
Ben Lindstrom3f471632001-07-04 03:53:15 +0000792}
793
794static void
795process_remove_smartcard_key(SocketEntry *e)
796{
Damien Miller7ea845e2010-02-12 09:21:02 +1100797 char *provider = NULL, *pin = NULL;
markus@openbsd.org139ca812015-01-14 13:09:09 +0000798 int r, version, success = 0;
Damien Miller7ea845e2010-02-12 09:21:02 +1100799 Identity *id, *nxt;
Ben Lindstrom822b6342002-06-23 21:38:49 +0000800 Idtab *tab;
Ben Lindstrom3f471632001-07-04 03:53:15 +0000801
markus@openbsd.org139ca812015-01-14 13:09:09 +0000802 if ((r = sshbuf_get_cstring(e->request, &provider, NULL)) != 0 ||
803 (r = sshbuf_get_cstring(e->request, &pin, NULL)) != 0)
804 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Darren Tuckera627d422013-06-02 07:31:17 +1000805 free(pin);
Ben Lindstrom3f471632001-07-04 03:53:15 +0000806
Damien Miller7ea845e2010-02-12 09:21:02 +1100807 for (version = 1; version < 3; version++) {
808 tab = idtab_lookup(version);
809 for (id = TAILQ_FIRST(&tab->idlist); id; id = nxt) {
810 nxt = TAILQ_NEXT(id, next);
Damien Miller0b36c832013-12-29 17:45:51 +1100811 /* Skip file--based keys */
812 if (id->provider == NULL)
813 continue;
Damien Miller7ea845e2010-02-12 09:21:02 +1100814 if (!strcmp(provider, id->provider)) {
815 TAILQ_REMOVE(&tab->idlist, id, next);
816 free_identity(id);
817 tab->nentries--;
818 }
Ben Lindstrom3f471632001-07-04 03:53:15 +0000819 }
Ben Lindstrom3f471632001-07-04 03:53:15 +0000820 }
Damien Miller7ea845e2010-02-12 09:21:02 +1100821 if (pkcs11_del_provider(provider) == 0)
822 success = 1;
823 else
824 error("process_remove_smartcard_key:"
825 " pkcs11_del_provider failed");
Darren Tuckera627d422013-06-02 07:31:17 +1000826 free(provider);
markus@openbsd.org139ca812015-01-14 13:09:09 +0000827 send_status(e, success);
Ben Lindstrom3f471632001-07-04 03:53:15 +0000828}
Damien Miller7ea845e2010-02-12 09:21:02 +1100829#endif /* ENABLE_PKCS11 */
Ben Lindstrom3f471632001-07-04 03:53:15 +0000830
Damien Millerad833b32000-08-23 10:46:23 +1000831/* dispatch incoming messages */
832
Ben Lindstrombba81212001-06-25 05:01:22 +0000833static void
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000834process_message(SocketEntry *e)
835{
markus@openbsd.org139ca812015-01-14 13:09:09 +0000836 u_int msg_len;
837 u_char type;
838 const u_char *cp;
839 int r;
Ben Lindstrom61d328a2002-06-06 21:54:57 +0000840
markus@openbsd.org139ca812015-01-14 13:09:09 +0000841 if (sshbuf_len(e->input) < 5)
Damien Miller95def091999-11-25 00:26:21 +1100842 return; /* Incomplete message. */
markus@openbsd.org139ca812015-01-14 13:09:09 +0000843 cp = sshbuf_ptr(e->input);
844 msg_len = PEEK_U32(cp);
Damien Miller95def091999-11-25 00:26:21 +1100845 if (msg_len > 256 * 1024) {
Damien Miller58f34862002-09-04 16:31:21 +1000846 close_socket(e);
Damien Miller95def091999-11-25 00:26:21 +1100847 return;
848 }
markus@openbsd.org139ca812015-01-14 13:09:09 +0000849 if (sshbuf_len(e->input) < msg_len + 4)
Damien Miller95def091999-11-25 00:26:21 +1100850 return;
Ben Lindstrom21d1ed82002-06-06 21:48:57 +0000851
852 /* move the current input to e->request */
markus@openbsd.org139ca812015-01-14 13:09:09 +0000853 sshbuf_reset(e->request);
854 if ((r = sshbuf_get_stringb(e->input, e->request)) != 0 ||
855 (r = sshbuf_get_u8(e->request, &type)) != 0)
856 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000857
Ben Lindstrom2f717042002-06-06 21:52:03 +0000858 /* check wheter agent is locked */
859 if (locked && type != SSH_AGENTC_UNLOCK) {
markus@openbsd.org139ca812015-01-14 13:09:09 +0000860 sshbuf_reset(e->request);
Ben Lindstrom2f717042002-06-06 21:52:03 +0000861 switch (type) {
862 case SSH_AGENTC_REQUEST_RSA_IDENTITIES:
863 case SSH2_AGENTC_REQUEST_IDENTITIES:
864 /* send empty lists */
865 no_identities(e, type);
866 break;
867 default:
868 /* send a fail message for all other request types */
markus@openbsd.org139ca812015-01-14 13:09:09 +0000869 send_status(e, 0);
Ben Lindstrom2f717042002-06-06 21:52:03 +0000870 }
871 return;
872 }
873
Ben Lindstrom3f471632001-07-04 03:53:15 +0000874 debug("type %d", type);
Damien Miller95def091999-11-25 00:26:21 +1100875 switch (type) {
Ben Lindstrom2f717042002-06-06 21:52:03 +0000876 case SSH_AGENTC_LOCK:
877 case SSH_AGENTC_UNLOCK:
878 process_lock_agent(e, type == SSH_AGENTC_LOCK);
879 break;
Damien Miller1f0311c2014-05-15 14:24:09 +1000880#ifdef WITH_SSH1
Damien Millerad833b32000-08-23 10:46:23 +1000881 /* ssh1 */
Damien Miller95def091999-11-25 00:26:21 +1100882 case SSH_AGENTC_RSA_CHALLENGE:
Damien Millerad833b32000-08-23 10:46:23 +1000883 process_authentication_challenge1(e);
884 break;
885 case SSH_AGENTC_REQUEST_RSA_IDENTITIES:
886 process_request_identities(e, 1);
Damien Miller95def091999-11-25 00:26:21 +1100887 break;
888 case SSH_AGENTC_ADD_RSA_IDENTITY:
Ben Lindstrom2b266b72002-06-21 00:08:39 +0000889 case SSH_AGENTC_ADD_RSA_ID_CONSTRAINED:
Damien Millerad833b32000-08-23 10:46:23 +1000890 process_add_identity(e, 1);
Damien Miller95def091999-11-25 00:26:21 +1100891 break;
892 case SSH_AGENTC_REMOVE_RSA_IDENTITY:
Damien Millerad833b32000-08-23 10:46:23 +1000893 process_remove_identity(e, 1);
Damien Miller95def091999-11-25 00:26:21 +1100894 break;
Damien Miller1f0311c2014-05-15 14:24:09 +1000895#endif
djm@openbsd.org2f04af92015-03-04 21:12:59 +0000896 case SSH_AGENTC_REMOVE_ALL_RSA_IDENTITIES:
897 process_remove_all_identities(e, 1); /* safe for !WITH_SSH1 */
898 break;
Damien Millerad833b32000-08-23 10:46:23 +1000899 /* ssh2 */
900 case SSH2_AGENTC_SIGN_REQUEST:
901 process_sign_request2(e);
902 break;
903 case SSH2_AGENTC_REQUEST_IDENTITIES:
904 process_request_identities(e, 2);
905 break;
906 case SSH2_AGENTC_ADD_IDENTITY:
Ben Lindstrom2b266b72002-06-21 00:08:39 +0000907 case SSH2_AGENTC_ADD_ID_CONSTRAINED:
Damien Millerad833b32000-08-23 10:46:23 +1000908 process_add_identity(e, 2);
909 break;
910 case SSH2_AGENTC_REMOVE_IDENTITY:
911 process_remove_identity(e, 2);
912 break;
913 case SSH2_AGENTC_REMOVE_ALL_IDENTITIES:
914 process_remove_all_identities(e, 2);
Damien Miller95def091999-11-25 00:26:21 +1100915 break;
Damien Miller7ea845e2010-02-12 09:21:02 +1100916#ifdef ENABLE_PKCS11
Ben Lindstrom3f471632001-07-04 03:53:15 +0000917 case SSH_AGENTC_ADD_SMARTCARD_KEY:
Damien Millerd94f20d2003-06-11 22:06:33 +1000918 case SSH_AGENTC_ADD_SMARTCARD_KEY_CONSTRAINED:
Ben Lindstrom3f471632001-07-04 03:53:15 +0000919 process_add_smartcard_key(e);
Damien Miller9f0f5c62001-12-21 14:45:46 +1100920 break;
Ben Lindstrom3f471632001-07-04 03:53:15 +0000921 case SSH_AGENTC_REMOVE_SMARTCARD_KEY:
922 process_remove_smartcard_key(e);
Damien Miller9f0f5c62001-12-21 14:45:46 +1100923 break;
Damien Miller7ea845e2010-02-12 09:21:02 +1100924#endif /* ENABLE_PKCS11 */
Damien Miller95def091999-11-25 00:26:21 +1100925 default:
926 /* Unknown message. Respond with failure. */
927 error("Unknown message %d", type);
markus@openbsd.org139ca812015-01-14 13:09:09 +0000928 sshbuf_reset(e->request);
929 send_status(e, 0);
Damien Miller95def091999-11-25 00:26:21 +1100930 break;
931 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000932}
933
Ben Lindstrombba81212001-06-25 05:01:22 +0000934static void
Ben Lindstrom65366a82001-12-06 16:32:47 +0000935new_socket(sock_type type, int fd)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000936{
Darren Tuckerfb16b242003-09-22 21:04:23 +1000937 u_int i, old_alloc, new_alloc;
Ben Lindstrom822b6342002-06-23 21:38:49 +0000938
Damien Miller232711f2004-06-15 10:35:30 +1000939 set_nonblock(fd);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000940
Damien Miller95def091999-11-25 00:26:21 +1100941 if (fd > max_fd)
942 max_fd = fd;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000943
Damien Miller95def091999-11-25 00:26:21 +1100944 for (i = 0; i < sockets_alloc; i++)
945 if (sockets[i].type == AUTH_UNUSED) {
946 sockets[i].fd = fd;
markus@openbsd.org139ca812015-01-14 13:09:09 +0000947 if ((sockets[i].input = sshbuf_new()) == NULL)
948 fatal("%s: sshbuf_new failed", __func__);
949 if ((sockets[i].output = sshbuf_new()) == NULL)
950 fatal("%s: sshbuf_new failed", __func__);
951 if ((sockets[i].request = sshbuf_new()) == NULL)
952 fatal("%s: sshbuf_new failed", __func__);
Darren Tuckerfb16b242003-09-22 21:04:23 +1000953 sockets[i].type = type;
Damien Miller95def091999-11-25 00:26:21 +1100954 return;
955 }
956 old_alloc = sockets_alloc;
Darren Tuckerfb16b242003-09-22 21:04:23 +1000957 new_alloc = sockets_alloc + 10;
deraadt@openbsd.org657a5fb2015-04-24 01:36:00 +0000958 sockets = xreallocarray(sockets, new_alloc, sizeof(sockets[0]));
Darren Tuckerfb16b242003-09-22 21:04:23 +1000959 for (i = old_alloc; i < new_alloc; i++)
Damien Miller95def091999-11-25 00:26:21 +1100960 sockets[i].type = AUTH_UNUSED;
Darren Tuckerfb16b242003-09-22 21:04:23 +1000961 sockets_alloc = new_alloc;
Damien Miller95def091999-11-25 00:26:21 +1100962 sockets[old_alloc].fd = fd;
markus@openbsd.org139ca812015-01-14 13:09:09 +0000963 if ((sockets[old_alloc].input = sshbuf_new()) == NULL)
964 fatal("%s: sshbuf_new failed", __func__);
965 if ((sockets[old_alloc].output = sshbuf_new()) == NULL)
966 fatal("%s: sshbuf_new failed", __func__);
967 if ((sockets[old_alloc].request = sshbuf_new()) == NULL)
968 fatal("%s: sshbuf_new failed", __func__);
Darren Tuckerfb16b242003-09-22 21:04:23 +1000969 sockets[old_alloc].type = type;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000970}
971
Ben Lindstrombba81212001-06-25 05:01:22 +0000972static int
Darren Tucker2812dc92007-03-21 20:45:06 +1100973prepare_select(fd_set **fdrp, fd_set **fdwp, int *fdl, u_int *nallocp,
974 struct timeval **tvpp)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000975{
Darren Tucker55119252013-06-02 07:43:59 +1000976 u_int i, sz;
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000977 int n = 0;
Darren Tucker2812dc92007-03-21 20:45:06 +1100978 static struct timeval tv;
Darren Tucker55119252013-06-02 07:43:59 +1000979 time_t deadline;
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000980
981 for (i = 0; i < sockets_alloc; i++) {
Damien Miller95def091999-11-25 00:26:21 +1100982 switch (sockets[i].type) {
983 case AUTH_SOCKET:
984 case AUTH_CONNECTION:
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000985 n = MAX(n, sockets[i].fd);
Damien Miller95def091999-11-25 00:26:21 +1100986 break;
987 case AUTH_UNUSED:
988 break;
989 default:
990 fatal("Unknown socket type %d", sockets[i].type);
991 break;
992 }
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000993 }
994
995 sz = howmany(n+1, NFDBITS) * sizeof(fd_mask);
Ben Lindstroma3d5a4c2001-07-18 15:58:08 +0000996 if (*fdrp == NULL || sz > *nallocp) {
Darren Tuckera627d422013-06-02 07:31:17 +1000997 free(*fdrp);
998 free(*fdwp);
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000999 *fdrp = xmalloc(sz);
1000 *fdwp = xmalloc(sz);
Ben Lindstroma3d5a4c2001-07-18 15:58:08 +00001001 *nallocp = sz;
Ben Lindstrom226cfa02001-01-22 05:34:40 +00001002 }
Ben Lindstroma3d5a4c2001-07-18 15:58:08 +00001003 if (n < *fdl)
1004 debug("XXX shrink: %d < %d", n, *fdl);
1005 *fdl = n;
Ben Lindstrom226cfa02001-01-22 05:34:40 +00001006 memset(*fdrp, 0, sz);
1007 memset(*fdwp, 0, sz);
1008
1009 for (i = 0; i < sockets_alloc; i++) {
1010 switch (sockets[i].type) {
1011 case AUTH_SOCKET:
1012 case AUTH_CONNECTION:
1013 FD_SET(sockets[i].fd, *fdrp);
markus@openbsd.org139ca812015-01-14 13:09:09 +00001014 if (sshbuf_len(sockets[i].output) > 0)
Ben Lindstrom226cfa02001-01-22 05:34:40 +00001015 FD_SET(sockets[i].fd, *fdwp);
1016 break;
1017 default:
1018 break;
1019 }
1020 }
Darren Tucker2812dc92007-03-21 20:45:06 +11001021 deadline = reaper();
1022 if (parent_alive_interval != 0)
1023 deadline = (deadline == 0) ? parent_alive_interval :
1024 MIN(deadline, parent_alive_interval);
1025 if (deadline == 0) {
1026 *tvpp = NULL;
1027 } else {
1028 tv.tv_sec = deadline;
1029 tv.tv_usec = 0;
1030 *tvpp = &tv;
1031 }
Ben Lindstrom226cfa02001-01-22 05:34:40 +00001032 return (1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001033}
1034
Ben Lindstrombba81212001-06-25 05:01:22 +00001035static void
Damien Miller95def091999-11-25 00:26:21 +11001036after_select(fd_set *readset, fd_set *writeset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001037{
Ben Lindstrom822b6342002-06-23 21:38:49 +00001038 struct sockaddr_un sunaddr;
Damien Miller7684ee12000-03-17 23:40:15 +11001039 socklen_t slen;
Damien Miller95def091999-11-25 00:26:21 +11001040 char buf[1024];
markus@openbsd.org139ca812015-01-14 13:09:09 +00001041 int len, sock, r;
Darren Tucker72473c62009-10-07 09:01:03 +11001042 u_int i, orig_alloc;
Damien Miller538f1812002-09-12 09:51:10 +10001043 uid_t euid;
1044 gid_t egid;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001045
Darren Tucker72473c62009-10-07 09:01:03 +11001046 for (i = 0, orig_alloc = sockets_alloc; i < orig_alloc; i++)
Damien Miller95def091999-11-25 00:26:21 +11001047 switch (sockets[i].type) {
1048 case AUTH_UNUSED:
1049 break;
1050 case AUTH_SOCKET:
1051 if (FD_ISSET(sockets[i].fd, readset)) {
Damien Miller7684ee12000-03-17 23:40:15 +11001052 slen = sizeof(sunaddr);
Ben Lindstrom226cfa02001-01-22 05:34:40 +00001053 sock = accept(sockets[i].fd,
Damien Miller90967402006-03-26 14:07:26 +11001054 (struct sockaddr *)&sunaddr, &slen);
Damien Miller95def091999-11-25 00:26:21 +11001055 if (sock < 0) {
Damien Millerc653b892002-02-08 22:05:41 +11001056 error("accept from AUTH_SOCKET: %s",
1057 strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +11001058 break;
1059 }
Damien Miller538f1812002-09-12 09:51:10 +10001060 if (getpeereid(sock, &euid, &egid) < 0) {
1061 error("getpeereid %d failed: %s",
1062 sock, strerror(errno));
1063 close(sock);
1064 break;
1065 }
Damien Milleraf9de382002-10-03 11:54:35 +10001066 if ((euid != 0) && (getuid() != euid)) {
Damien Miller538f1812002-09-12 09:51:10 +10001067 error("uid mismatch: "
Damien Millerdb30b122002-09-19 11:46:58 +10001068 "peer euid %u != uid %u",
1069 (u_int) euid, (u_int) getuid());
Damien Miller538f1812002-09-12 09:51:10 +10001070 close(sock);
1071 break;
1072 }
Damien Miller95def091999-11-25 00:26:21 +11001073 new_socket(AUTH_CONNECTION, sock);
1074 }
1075 break;
1076 case AUTH_CONNECTION:
markus@openbsd.org139ca812015-01-14 13:09:09 +00001077 if (sshbuf_len(sockets[i].output) > 0 &&
Damien Miller95def091999-11-25 00:26:21 +11001078 FD_ISSET(sockets[i].fd, writeset)) {
Darren Tucker72473c62009-10-07 09:01:03 +11001079 len = write(sockets[i].fd,
markus@openbsd.org139ca812015-01-14 13:09:09 +00001080 sshbuf_ptr(sockets[i].output),
1081 sshbuf_len(sockets[i].output));
Darren Tucker72473c62009-10-07 09:01:03 +11001082 if (len == -1 && (errno == EAGAIN ||
1083 errno == EWOULDBLOCK ||
1084 errno == EINTR))
1085 continue;
Damien Miller95def091999-11-25 00:26:21 +11001086 if (len <= 0) {
Damien Miller58f34862002-09-04 16:31:21 +10001087 close_socket(&sockets[i]);
Damien Miller95def091999-11-25 00:26:21 +11001088 break;
1089 }
markus@openbsd.org139ca812015-01-14 13:09:09 +00001090 if ((r = sshbuf_consume(sockets[i].output,
1091 len)) != 0)
1092 fatal("%s: buffer error: %s",
1093 __func__, ssh_err(r));
Damien Miller95def091999-11-25 00:26:21 +11001094 }
1095 if (FD_ISSET(sockets[i].fd, readset)) {
Darren Tucker72473c62009-10-07 09:01:03 +11001096 len = read(sockets[i].fd, buf, sizeof(buf));
1097 if (len == -1 && (errno == EAGAIN ||
1098 errno == EWOULDBLOCK ||
1099 errno == EINTR))
1100 continue;
Damien Miller95def091999-11-25 00:26:21 +11001101 if (len <= 0) {
Damien Miller58f34862002-09-04 16:31:21 +10001102 close_socket(&sockets[i]);
Damien Miller95def091999-11-25 00:26:21 +11001103 break;
1104 }
markus@openbsd.org139ca812015-01-14 13:09:09 +00001105 if ((r = sshbuf_put(sockets[i].input,
1106 buf, len)) != 0)
1107 fatal("%s: buffer error: %s",
1108 __func__, ssh_err(r));
Damien Millerf4977942014-07-30 12:32:46 +10001109 explicit_bzero(buf, sizeof(buf));
Damien Miller95def091999-11-25 00:26:21 +11001110 process_message(&sockets[i]);
1111 }
1112 break;
1113 default:
1114 fatal("Unknown type %d", sockets[i].type);
1115 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001116}
1117
Ben Lindstrombba81212001-06-25 05:01:22 +00001118static void
Darren Tucker6fa8abd2003-09-22 21:10:21 +10001119cleanup_socket(void)
Damien Miller792c5111999-10-29 09:47:09 +10001120{
Damien Millerb1e967c2014-07-03 21:22:40 +10001121 if (cleanup_pid != 0 && getpid() != cleanup_pid)
1122 return;
1123 debug("%s: cleanup", __func__);
Ben Lindstrom77808ab2001-01-26 05:10:34 +00001124 if (socket_name[0])
1125 unlink(socket_name);
1126 if (socket_dir[0])
1127 rmdir(socket_dir);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001128}
1129
Darren Tucker3e33cec2003-10-02 16:12:36 +10001130void
Damien Miller792c5111999-10-29 09:47:09 +10001131cleanup_exit(int i)
1132{
Darren Tucker6fa8abd2003-09-22 21:10:21 +10001133 cleanup_socket();
1134 _exit(i);
Damien Miller792c5111999-10-29 09:47:09 +10001135}
1136
Damien Miller1c13bd82006-03-26 14:28:14 +11001137/*ARGSUSED*/
Ben Lindstrombba81212001-06-25 05:01:22 +00001138static void
Ben Lindstrom77808ab2001-01-26 05:10:34 +00001139cleanup_handler(int sig)
1140{
Darren Tucker6fa8abd2003-09-22 21:10:21 +10001141 cleanup_socket();
Damien Miller7ea845e2010-02-12 09:21:02 +11001142#ifdef ENABLE_PKCS11
1143 pkcs11_terminate();
1144#endif
Ben Lindstrom77808ab2001-01-26 05:10:34 +00001145 _exit(2);
1146}
1147
Ben Lindstrombba81212001-06-25 05:01:22 +00001148static void
Darren Tucker2812dc92007-03-21 20:45:06 +11001149check_parent_exists(void)
Ben Lindstrom0250da02001-07-22 20:44:00 +00001150{
Darren Tucker3e78a512011-06-03 14:14:16 +10001151 /*
1152 * If our parent has exited then getppid() will return (pid_t)1,
1153 * so testing for that should be safe.
1154 */
1155 if (parent_pid != -1 && getppid() != parent_pid) {
Ben Lindstrom0250da02001-07-22 20:44:00 +00001156 /* printf("Parent has died - Authentication agent exiting.\n"); */
Darren Tucker2812dc92007-03-21 20:45:06 +11001157 cleanup_socket();
1158 _exit(2);
Ben Lindstrom0250da02001-07-22 20:44:00 +00001159 }
Ben Lindstrom0250da02001-07-22 20:44:00 +00001160}
1161
1162static void
Ben Lindstrom28072eb2001-02-10 23:13:41 +00001163usage(void)
Damien Miller792c5111999-10-29 09:47:09 +10001164{
Damien Millerf0858de2014-04-20 13:01:30 +10001165 fprintf(stderr,
jmc@openbsd.orgb7ca2762015-04-24 06:26:49 +00001166 "usage: ssh-agent [-c | -s] [-Dd] [-a bind_address] [-E fingerprint_hash]\n"
jmc@openbsd.orga5375cc2014-12-21 23:35:14 +00001167 " [-t life] [command [arg ...]]\n"
Damien Millerf0858de2014-04-20 13:01:30 +10001168 " ssh-agent [-c | -s] -k\n");
Damien Miller95def091999-11-25 00:26:21 +11001169 exit(1);
Damien Miller792c5111999-10-29 09:47:09 +10001170}
1171
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001172int
1173main(int ac, char **av)
1174{
djm@openbsd.org2ea97462015-04-24 05:26:44 +00001175 int c_flag = 0, d_flag = 0, D_flag = 0, k_flag = 0, s_flag = 0;
Darren Tuckercf0d2db2007-02-28 21:19:58 +11001176 int sock, fd, ch, result, saved_errno;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10001177 u_int nalloc;
Ben Lindstrom822b6342002-06-23 21:38:49 +00001178 char *shell, *format, *pidstr, *agentsocket = NULL;
1179 fd_set *readsetp = NULL, *writesetp = NULL;
Ben Lindstrom2c467a22000-12-27 04:57:41 +00001180#ifdef HAVE_SETRLIMIT
Ben Lindstromc72745a2000-12-02 19:03:54 +00001181 struct rlimit rlim;
Ben Lindstrom2c467a22000-12-27 04:57:41 +00001182#endif
Damien Miller615f9392000-05-17 22:53:33 +10001183 extern int optind;
Ben Lindstrom883844d2002-06-23 00:20:50 +00001184 extern char *optarg;
Ben Lindstrom822b6342002-06-23 21:38:49 +00001185 pid_t pid;
1186 char pidstrbuf[1 + 3 * sizeof pid];
Darren Tucker2812dc92007-03-21 20:45:06 +11001187 struct timeval *tvp = NULL;
Darren Tucker90133232009-06-21 17:50:15 +10001188 size_t len;
Damien Millerab2ec582014-07-18 15:04:47 +10001189 mode_t prev_mask;
Kevin Stevesde41bc62000-12-14 00:04:08 +00001190
Darren Tuckerce321d82005-10-03 18:11:24 +10001191 /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
1192 sanitise_stdfd();
1193
Damien Miller6cffb9a2002-09-04 16:20:26 +10001194 /* drop */
1195 setegid(getgid());
1196 setgid(getgid());
1197
Damien Miller6c4914a2004-03-03 11:08:59 +11001198#if defined(HAVE_PRCTL) && defined(PR_SET_DUMPABLE)
1199 /* Disable ptrace on Linux without sgid bit */
1200 prctl(PR_SET_DUMPABLE, 0);
1201#endif
1202
Damien Miller1f0311c2014-05-15 14:24:09 +10001203#ifdef WITH_OPENSSL
Damien Miller4314c2b2010-09-10 11:12:09 +10001204 OpenSSL_add_all_algorithms();
Damien Miller1f0311c2014-05-15 14:24:09 +10001205#endif
Ben Lindstromd09fcf52001-03-29 00:29:54 +00001206
Damien Miller59d3d5b2003-08-22 09:34:41 +10001207 __progname = ssh_get_progname(av[0]);
Damien Miller60bc5172001-03-19 09:38:15 +11001208 seed_rng();
Kevin Stevesef4eea92001-02-05 12:42:17 +00001209
djm@openbsd.org2ea97462015-04-24 05:26:44 +00001210 while ((ch = getopt(ac, av, "cDdksE:a:t:")) != -1) {
Damien Miller95def091999-11-25 00:26:21 +11001211 switch (ch) {
djm@openbsd.org56d1c832014-12-21 22:27:55 +00001212 case 'E':
1213 fingerprint_hash = ssh_digest_alg_by_name(optarg);
1214 if (fingerprint_hash == -1)
1215 fatal("Invalid hash algorithm \"%s\"", optarg);
1216 break;
Damien Miller95def091999-11-25 00:26:21 +11001217 case 'c':
1218 if (s_flag)
1219 usage();
1220 c_flag++;
1221 break;
1222 case 'k':
1223 k_flag++;
1224 break;
1225 case 's':
1226 if (c_flag)
1227 usage();
1228 s_flag++;
1229 break;
Ben Lindstromd94580c2001-07-04 03:48:02 +00001230 case 'd':
djm@openbsd.org2ea97462015-04-24 05:26:44 +00001231 if (d_flag || D_flag)
Ben Lindstromd94580c2001-07-04 03:48:02 +00001232 usage();
1233 d_flag++;
1234 break;
djm@openbsd.org2ea97462015-04-24 05:26:44 +00001235 case 'D':
1236 if (d_flag || D_flag)
1237 usage();
1238 D_flag++;
1239 break;
Ben Lindstromb7788f32002-06-06 21:46:08 +00001240 case 'a':
1241 agentsocket = optarg;
1242 break;
Damien Miller53d81482003-01-22 11:47:19 +11001243 case 't':
1244 if ((lifetime = convtime(optarg)) == -1) {
1245 fprintf(stderr, "Invalid lifetime\n");
1246 usage();
1247 }
1248 break;
Damien Miller95def091999-11-25 00:26:21 +11001249 default:
1250 usage();
1251 }
Damien Miller792c5111999-10-29 09:47:09 +10001252 }
Damien Miller95def091999-11-25 00:26:21 +11001253 ac -= optind;
1254 av += optind;
Damien Miller792c5111999-10-29 09:47:09 +10001255
djm@openbsd.org2ea97462015-04-24 05:26:44 +00001256 if (ac > 0 && (c_flag || k_flag || s_flag || d_flag || D_flag))
Damien Miller95def091999-11-25 00:26:21 +11001257 usage();
Damien Miller792c5111999-10-29 09:47:09 +10001258
Ben Lindstromeecdf232002-04-02 21:03:51 +00001259 if (ac == 0 && !c_flag && !s_flag) {
Damien Miller95def091999-11-25 00:26:21 +11001260 shell = getenv("SHELL");
Darren Tucker90133232009-06-21 17:50:15 +10001261 if (shell != NULL && (len = strlen(shell)) > 2 &&
1262 strncmp(shell + len - 3, "csh", 3) == 0)
Damien Miller95def091999-11-25 00:26:21 +11001263 c_flag = 1;
Damien Miller792c5111999-10-29 09:47:09 +10001264 }
Damien Miller95def091999-11-25 00:26:21 +11001265 if (k_flag) {
Damien Miller89c3fe42006-03-31 23:11:28 +11001266 const char *errstr = NULL;
1267
Damien Miller95def091999-11-25 00:26:21 +11001268 pidstr = getenv(SSH_AGENTPID_ENV_NAME);
1269 if (pidstr == NULL) {
1270 fprintf(stderr, "%s not set, cannot kill agent\n",
Ben Lindstrom226cfa02001-01-22 05:34:40 +00001271 SSH_AGENTPID_ENV_NAME);
Damien Miller95def091999-11-25 00:26:21 +11001272 exit(1);
1273 }
Damien Miller89c3fe42006-03-31 23:11:28 +11001274 pid = (int)strtonum(pidstr, 2, INT_MAX, &errstr);
1275 if (errstr) {
1276 fprintf(stderr,
1277 "%s=\"%s\", which is not a good PID: %s\n",
1278 SSH_AGENTPID_ENV_NAME, pidstr, errstr);
Damien Miller95def091999-11-25 00:26:21 +11001279 exit(1);
1280 }
1281 if (kill(pid, SIGTERM) == -1) {
1282 perror("kill");
1283 exit(1);
1284 }
1285 format = c_flag ? "unsetenv %s;\n" : "unset %s;\n";
1286 printf(format, SSH_AUTHSOCKET_ENV_NAME);
1287 printf(format, SSH_AGENTPID_ENV_NAME);
Ben Lindstromce0f6342002-06-11 16:42:49 +00001288 printf("echo Agent pid %ld killed;\n", (long)pid);
Damien Miller95def091999-11-25 00:26:21 +11001289 exit(0);
Damien Miller792c5111999-10-29 09:47:09 +10001290 }
Damien Miller95def091999-11-25 00:26:21 +11001291 parent_pid = getpid();
1292
Ben Lindstromb7788f32002-06-06 21:46:08 +00001293 if (agentsocket == NULL) {
1294 /* Create private directory for agent socket */
Damien Miller2cd62932010-12-01 11:50:35 +11001295 mktemp_proto(socket_dir, sizeof(socket_dir));
Ben Lindstromb7788f32002-06-06 21:46:08 +00001296 if (mkdtemp(socket_dir) == NULL) {
1297 perror("mkdtemp: private socket dir");
1298 exit(1);
1299 }
Ben Lindstromce0f6342002-06-11 16:42:49 +00001300 snprintf(socket_name, sizeof socket_name, "%s/agent.%ld", socket_dir,
1301 (long)parent_pid);
Ben Lindstromb7788f32002-06-06 21:46:08 +00001302 } else {
1303 /* Try to use specified agent socket */
1304 socket_dir[0] = '\0';
1305 strlcpy(socket_name, agentsocket, sizeof socket_name);
Damien Miller792c5111999-10-29 09:47:09 +10001306 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001307
Damien Miller5428f641999-11-25 11:54:57 +11001308 /*
1309 * Create socket early so it will exist before command gets run from
1310 * the parent.
1311 */
Damien Millerab2ec582014-07-18 15:04:47 +10001312 prev_mask = umask(0177);
Damien Miller7acefbb2014-07-18 14:11:24 +10001313 sock = unix_listener(socket_name, SSH_LISTEN_BACKLOG, 0);
Damien Miller95def091999-11-25 00:26:21 +11001314 if (sock < 0) {
Damien Miller7acefbb2014-07-18 14:11:24 +10001315 /* XXX - unix_listener() calls error() not perror() */
Darren Tucker1dee8682004-11-05 20:26:49 +11001316 *socket_name = '\0'; /* Don't unlink any existing file */
Damien Miller95def091999-11-25 00:26:21 +11001317 cleanup_exit(1);
Damien Miller792c5111999-10-29 09:47:09 +10001318 }
Damien Millerab2ec582014-07-18 15:04:47 +10001319 umask(prev_mask);
Ben Lindstrom226cfa02001-01-22 05:34:40 +00001320
Damien Miller5428f641999-11-25 11:54:57 +11001321 /*
1322 * Fork, and have the parent execute the command, if any, or present
1323 * the socket data. The child continues as the authentication agent.
1324 */
djm@openbsd.org2ea97462015-04-24 05:26:44 +00001325 if (D_flag || d_flag) {
1326 log_init(__progname,
1327 d_flag ? SYSLOG_LEVEL_DEBUG3 : SYSLOG_LEVEL_INFO,
1328 SYSLOG_FACILITY_AUTH, 1);
Ben Lindstromd94580c2001-07-04 03:48:02 +00001329 format = c_flag ? "setenv %s %s;\n" : "%s=%s; export %s;\n";
1330 printf(format, SSH_AUTHSOCKET_ENV_NAME, socket_name,
1331 SSH_AUTHSOCKET_ENV_NAME);
Ben Lindstromce0f6342002-06-11 16:42:49 +00001332 printf("echo Agent pid %ld;\n", (long)parent_pid);
Ben Lindstromd94580c2001-07-04 03:48:02 +00001333 goto skip;
1334 }
Damien Miller95def091999-11-25 00:26:21 +11001335 pid = fork();
1336 if (pid == -1) {
1337 perror("fork");
Damien Millerc653b892002-02-08 22:05:41 +11001338 cleanup_exit(1);
Damien Miller95def091999-11-25 00:26:21 +11001339 }
1340 if (pid != 0) { /* Parent - execute the given command. */
1341 close(sock);
Ben Lindstromce0f6342002-06-11 16:42:49 +00001342 snprintf(pidstrbuf, sizeof pidstrbuf, "%ld", (long)pid);
Damien Miller95def091999-11-25 00:26:21 +11001343 if (ac == 0) {
1344 format = c_flag ? "setenv %s %s;\n" : "%s=%s; export %s;\n";
1345 printf(format, SSH_AUTHSOCKET_ENV_NAME, socket_name,
Ben Lindstrom226cfa02001-01-22 05:34:40 +00001346 SSH_AUTHSOCKET_ENV_NAME);
Damien Miller95def091999-11-25 00:26:21 +11001347 printf(format, SSH_AGENTPID_ENV_NAME, pidstrbuf,
Ben Lindstrom226cfa02001-01-22 05:34:40 +00001348 SSH_AGENTPID_ENV_NAME);
Ben Lindstromce0f6342002-06-11 16:42:49 +00001349 printf("echo Agent pid %ld;\n", (long)pid);
Damien Miller95def091999-11-25 00:26:21 +11001350 exit(0);
1351 }
Damien Millere4340be2000-09-16 13:29:08 +11001352 if (setenv(SSH_AUTHSOCKET_ENV_NAME, socket_name, 1) == -1 ||
1353 setenv(SSH_AGENTPID_ENV_NAME, pidstrbuf, 1) == -1) {
1354 perror("setenv");
1355 exit(1);
1356 }
Damien Miller95def091999-11-25 00:26:21 +11001357 execvp(av[0], av);
1358 perror(av[0]);
1359 exit(1);
1360 }
Damien Millerc653b892002-02-08 22:05:41 +11001361 /* child */
1362 log_init(__progname, SYSLOG_LEVEL_INFO, SYSLOG_FACILITY_AUTH, 0);
Ben Lindstrom3fdf8762001-07-22 20:40:24 +00001363
1364 if (setsid() == -1) {
Damien Millerc653b892002-02-08 22:05:41 +11001365 error("setsid: %s", strerror(errno));
Ben Lindstrom3fdf8762001-07-22 20:40:24 +00001366 cleanup_exit(1);
1367 }
1368
1369 (void)chdir("/");
Damien Miller6c711792003-01-24 11:36:23 +11001370 if ((fd = open(_PATH_DEVNULL, O_RDWR, 0)) != -1) {
1371 /* XXX might close listen socket */
1372 (void)dup2(fd, STDIN_FILENO);
1373 (void)dup2(fd, STDOUT_FILENO);
1374 (void)dup2(fd, STDERR_FILENO);
1375 if (fd > 2)
1376 close(fd);
1377 }
Damien Miller95def091999-11-25 00:26:21 +11001378
Ben Lindstrom2c467a22000-12-27 04:57:41 +00001379#ifdef HAVE_SETRLIMIT
Ben Lindstromc72745a2000-12-02 19:03:54 +00001380 /* deny core dumps, since memory contains unencrypted private keys */
1381 rlim.rlim_cur = rlim.rlim_max = 0;
1382 if (setrlimit(RLIMIT_CORE, &rlim) < 0) {
Damien Millerc653b892002-02-08 22:05:41 +11001383 error("setrlimit RLIMIT_CORE: %s", strerror(errno));
Ben Lindstromc72745a2000-12-02 19:03:54 +00001384 cleanup_exit(1);
1385 }
Ben Lindstrom2c467a22000-12-27 04:57:41 +00001386#endif
Ben Lindstromd94580c2001-07-04 03:48:02 +00001387
1388skip:
Damien Miller7ea845e2010-02-12 09:21:02 +11001389
Damien Millerb1e967c2014-07-03 21:22:40 +10001390 cleanup_pid = getpid();
1391
Damien Miller7ea845e2010-02-12 09:21:02 +11001392#ifdef ENABLE_PKCS11
1393 pkcs11_init(0);
1394#endif
Damien Miller95def091999-11-25 00:26:21 +11001395 new_socket(AUTH_SOCKET, sock);
Darren Tucker2812dc92007-03-21 20:45:06 +11001396 if (ac > 0)
1397 parent_alive_interval = 10;
Damien Millerad833b32000-08-23 10:46:23 +10001398 idtab_init();
Damien Miller48bfa9c2001-07-14 12:12:55 +10001399 signal(SIGPIPE, SIG_IGN);
djm@openbsd.org2ea97462015-04-24 05:26:44 +00001400 signal(SIGINT, (d_flag | D_flag) ? cleanup_handler : SIG_IGN);
Ben Lindstrom77808ab2001-01-26 05:10:34 +00001401 signal(SIGHUP, cleanup_handler);
1402 signal(SIGTERM, cleanup_handler);
Ben Lindstroma3d5a4c2001-07-18 15:58:08 +00001403 nalloc = 0;
1404
Damien Miller95def091999-11-25 00:26:21 +11001405 while (1) {
Darren Tucker2812dc92007-03-21 20:45:06 +11001406 prepare_select(&readsetp, &writesetp, &max_fd, &nalloc, &tvp);
1407 result = select(max_fd + 1, readsetp, writesetp, NULL, tvp);
Darren Tuckercf0d2db2007-02-28 21:19:58 +11001408 saved_errno = errno;
Darren Tucker2812dc92007-03-21 20:45:06 +11001409 if (parent_alive_interval != 0)
1410 check_parent_exists();
1411 (void) reaper(); /* remove expired keys */
Darren Tuckercf0d2db2007-02-28 21:19:58 +11001412 if (result < 0) {
1413 if (saved_errno == EINTR)
Damien Miller95def091999-11-25 00:26:21 +11001414 continue;
Darren Tuckercf0d2db2007-02-28 21:19:58 +11001415 fatal("select: %s", strerror(saved_errno));
1416 } else if (result > 0)
1417 after_select(readsetp, writesetp);
Damien Miller95def091999-11-25 00:26:21 +11001418 }
1419 /* NOTREACHED */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001420}