blob: 8aa25b30d22f6856150c4bdf40e8612a07ce9b65 [file] [log] [blame]
djm@openbsd.org1a31d022016-05-02 08:49:03 +00001/* $OpenBSD: ssh-agent.c,v 1.213 2016/05/02 08:49:03 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
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;
djm@openbsd.org1a31d022016-05-02 08:49:03 +0000147u_char lock_pwhash[LOCK_SIZE];
148u_char 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
markus@openbsd.org76c9fbb2015-12-04 16:41:28 +0000371static char *
372agent_decode_alg(struct sshkey *key, u_int flags)
373{
374 if (key->type == KEY_RSA) {
375 if (flags & SSH_AGENT_RSA_SHA2_256)
376 return "rsa-sha2-256";
377 else if (flags & SSH_AGENT_RSA_SHA2_512)
378 return "rsa-sha2-512";
379 }
380 return NULL;
381}
382
Damien Millerad833b32000-08-23 10:46:23 +1000383/* ssh2 only */
Ben Lindstrombba81212001-06-25 05:01:22 +0000384static void
Damien Millerad833b32000-08-23 10:46:23 +1000385process_sign_request2(SocketEntry *e)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000386{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000387 u_char *blob, *data, *signature = NULL;
markus@openbsd.org139ca812015-01-14 13:09:09 +0000388 size_t blen, dlen, slen = 0;
389 u_int compat = 0, flags;
390 int r, ok = -1;
391 struct sshbuf *msg;
392 struct sshkey *key;
djm@openbsd.org0088c572015-01-14 19:33:41 +0000393 struct identity *id;
Damien Millerad833b32000-08-23 10:46:23 +1000394
djm@openbsd.org0088c572015-01-14 19:33:41 +0000395 if ((msg = sshbuf_new()) == NULL)
396 fatal("%s: sshbuf_new failed", __func__);
markus@openbsd.org139ca812015-01-14 13:09:09 +0000397 if ((r = sshbuf_get_string(e->request, &blob, &blen)) != 0 ||
398 (r = sshbuf_get_string(e->request, &data, &dlen)) != 0 ||
399 (r = sshbuf_get_u32(e->request, &flags)) != 0)
400 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Miller62cee002000-09-23 17:15:56 +1100401 if (flags & SSH_AGENT_OLD_SIGNATURE)
markus@openbsd.org139ca812015-01-14 13:09:09 +0000402 compat = SSH_BUG_SIGBLOB;
djm@openbsd.org0088c572015-01-14 19:33:41 +0000403 if ((r = sshkey_from_blob(blob, blen, &key)) != 0) {
djm@openbsd.org39736be2015-12-11 02:20:28 +0000404 error("%s: cannot parse key blob: %s", __func__, ssh_err(r));
djm@openbsd.org0088c572015-01-14 19:33:41 +0000405 goto send;
Damien Millerad833b32000-08-23 10:46:23 +1000406 }
djm@openbsd.org0088c572015-01-14 19:33:41 +0000407 if ((id = lookup_identity(key, 2)) == NULL) {
408 verbose("%s: %s key not found", __func__, sshkey_type(key));
409 goto send;
410 }
411 if (id->confirm && confirm_key(id) != 0) {
412 verbose("%s: user refused key", __func__);
413 goto send;
414 }
415 if ((r = sshkey_sign(id->key, &signature, &slen,
markus@openbsd.org76c9fbb2015-12-04 16:41:28 +0000416 data, dlen, agent_decode_alg(key, flags), compat)) != 0) {
djm@openbsd.org39736be2015-12-11 02:20:28 +0000417 error("%s: sshkey_sign: %s", __func__, ssh_err(r));
djm@openbsd.org0088c572015-01-14 19:33:41 +0000418 goto send;
419 }
420 /* Success */
421 ok = 0;
422 send:
423 sshkey_free(key);
Damien Millerad833b32000-08-23 10:46:23 +1000424 if (ok == 0) {
markus@openbsd.org139ca812015-01-14 13:09:09 +0000425 if ((r = sshbuf_put_u8(msg, SSH2_AGENT_SIGN_RESPONSE)) != 0 ||
426 (r = sshbuf_put_string(msg, signature, slen)) != 0)
427 fatal("%s: buffer error: %s", __func__, ssh_err(r));
428 } else if ((r = sshbuf_put_u8(msg, SSH_AGENT_FAILURE)) != 0)
429 fatal("%s: buffer error: %s", __func__, ssh_err(r));
430
431 if ((r = sshbuf_put_stringb(e->output, msg)) != 0)
432 fatal("%s: buffer error: %s", __func__, ssh_err(r));
433
434 sshbuf_free(msg);
Darren Tuckera627d422013-06-02 07:31:17 +1000435 free(data);
436 free(blob);
437 free(signature);
Damien Millerad833b32000-08-23 10:46:23 +1000438}
439
440/* shared */
Ben Lindstrombba81212001-06-25 05:01:22 +0000441static void
Damien Millerad833b32000-08-23 10:46:23 +1000442process_remove_identity(SocketEntry *e, int version)
443{
markus@openbsd.org139ca812015-01-14 13:09:09 +0000444 size_t blen;
445 int r, success = 0;
446 struct sshkey *key = NULL;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000447 u_char *blob;
Damien Miller86687062014-07-02 15:28:02 +1000448#ifdef WITH_SSH1
449 u_int bits;
450#endif /* WITH_SSH1 */
Damien Miller7e8e8201999-11-16 13:37:16 +1100451
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +0000452 switch (version) {
Damien Miller86687062014-07-02 15:28:02 +1000453#ifdef WITH_SSH1
Damien Millerad833b32000-08-23 10:46:23 +1000454 case 1:
markus@openbsd.org139ca812015-01-14 13:09:09 +0000455 if ((key = sshkey_new(KEY_RSA1)) == NULL) {
456 error("%s: sshkey_new failed", __func__);
457 return;
458 }
459 if ((r = sshbuf_get_u32(e->request, &bits)) != 0 ||
460 (r = sshbuf_get_bignum1(e->request, key->rsa->e)) != 0 ||
461 (r = sshbuf_get_bignum1(e->request, key->rsa->n)) != 0)
462 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000463
markus@openbsd.org139ca812015-01-14 13:09:09 +0000464 if (bits != sshkey_size(key))
465 logit("Warning: identity keysize mismatch: "
466 "actual %u, announced %u",
467 sshkey_size(key), bits);
Damien Millerad833b32000-08-23 10:46:23 +1000468 break;
Damien Miller86687062014-07-02 15:28:02 +1000469#endif /* WITH_SSH1 */
Damien Millerad833b32000-08-23 10:46:23 +1000470 case 2:
markus@openbsd.org139ca812015-01-14 13:09:09 +0000471 if ((r = sshbuf_get_string(e->request, &blob, &blen)) != 0)
472 fatal("%s: buffer error: %s", __func__, ssh_err(r));
473 if ((r = sshkey_from_blob(blob, blen, &key)) != 0)
474 error("%s: sshkey_from_blob failed: %s",
475 __func__, ssh_err(r));
Darren Tuckera627d422013-06-02 07:31:17 +1000476 free(blob);
Damien Millerad833b32000-08-23 10:46:23 +1000477 break;
478 }
479 if (key != NULL) {
Damien Miller1a534ae2002-01-22 23:26:13 +1100480 Identity *id = lookup_identity(key, version);
481 if (id != NULL) {
Damien Miller5428f641999-11-25 11:54:57 +1100482 /*
483 * We have this key. Free the old key. Since we
Damien Miller788f2122005-11-05 15:14:59 +1100484 * don't want to leave empty slots in the middle of
Ben Lindstrom14920292000-11-21 21:24:55 +0000485 * the array, we actually free the key there and move
486 * all the entries between the empty slot and the end
487 * of the array.
Damien Miller5428f641999-11-25 11:54:57 +1100488 */
Damien Millerad833b32000-08-23 10:46:23 +1000489 Idtab *tab = idtab_lookup(version);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100490 if (tab->nentries < 1)
491 fatal("process_remove_identity: "
492 "internal error: tab->nentries %d",
493 tab->nentries);
Damien Miller1a534ae2002-01-22 23:26:13 +1100494 TAILQ_REMOVE(&tab->idlist, id, next);
495 free_identity(id);
Damien Millerad833b32000-08-23 10:46:23 +1000496 tab->nentries--;
497 success = 1;
Damien Miller95def091999-11-25 00:26:21 +1100498 }
markus@openbsd.org139ca812015-01-14 13:09:09 +0000499 sshkey_free(key);
Damien Millerad833b32000-08-23 10:46:23 +1000500 }
markus@openbsd.org139ca812015-01-14 13:09:09 +0000501 send_status(e, success);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000502}
503
Ben Lindstrombba81212001-06-25 05:01:22 +0000504static void
Damien Millerad833b32000-08-23 10:46:23 +1000505process_remove_all_identities(SocketEntry *e, int version)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000506{
Damien Millerad833b32000-08-23 10:46:23 +1000507 Idtab *tab = idtab_lookup(version);
Damien Miller1a534ae2002-01-22 23:26:13 +1100508 Identity *id;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000509
Damien Miller95def091999-11-25 00:26:21 +1100510 /* Loop over all identities and clear the keys. */
Damien Miller1a534ae2002-01-22 23:26:13 +1100511 for (id = TAILQ_FIRST(&tab->idlist); id;
512 id = TAILQ_FIRST(&tab->idlist)) {
513 TAILQ_REMOVE(&tab->idlist, id, next);
514 free_identity(id);
Damien Miller95def091999-11-25 00:26:21 +1100515 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000516
Damien Miller95def091999-11-25 00:26:21 +1100517 /* Mark that there are no identities. */
Damien Millerad833b32000-08-23 10:46:23 +1000518 tab->nentries = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000519
520 /* Send success. */
markus@openbsd.org139ca812015-01-14 13:09:09 +0000521 send_status(e, 1);
Damien Miller95def091999-11-25 00:26:21 +1100522}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000523
Darren Tucker2812dc92007-03-21 20:45:06 +1100524/* removes expired keys and returns number of seconds until the next expiry */
Darren Tucker55119252013-06-02 07:43:59 +1000525static time_t
Ben Lindstrom61d328a2002-06-06 21:54:57 +0000526reaper(void)
527{
Darren Tuckerb759c9c2013-06-02 07:46:16 +1000528 time_t deadline = 0, now = monotime();
Ben Lindstrom61d328a2002-06-06 21:54:57 +0000529 Identity *id, *nxt;
530 int version;
Ben Lindstrom822b6342002-06-23 21:38:49 +0000531 Idtab *tab;
Ben Lindstrom61d328a2002-06-06 21:54:57 +0000532
533 for (version = 1; version < 3; version++) {
534 tab = idtab_lookup(version);
535 for (id = TAILQ_FIRST(&tab->idlist); id; id = nxt) {
536 nxt = TAILQ_NEXT(id, next);
Darren Tucker2812dc92007-03-21 20:45:06 +1100537 if (id->death == 0)
538 continue;
539 if (now >= id->death) {
Darren Tuckercf0d2db2007-02-28 21:19:58 +1100540 debug("expiring key '%s'", id->comment);
Ben Lindstrom61d328a2002-06-06 21:54:57 +0000541 TAILQ_REMOVE(&tab->idlist, id, next);
542 free_identity(id);
543 tab->nentries--;
Darren Tucker2812dc92007-03-21 20:45:06 +1100544 } else
545 deadline = (deadline == 0) ? id->death :
546 MIN(deadline, id->death);
Ben Lindstrom61d328a2002-06-06 21:54:57 +0000547 }
548 }
Darren Tucker2812dc92007-03-21 20:45:06 +1100549 if (deadline == 0 || deadline <= now)
550 return 0;
551 else
552 return (deadline - now);
Ben Lindstrom61d328a2002-06-06 21:54:57 +0000553}
554
markus@openbsd.org139ca812015-01-14 13:09:09 +0000555/*
556 * XXX this and the corresponding serialisation function probably belongs
557 * in key.c
558 */
djm@openbsd.org111dfb22015-03-03 21:21:13 +0000559#ifdef WITH_SSH1
markus@openbsd.org139ca812015-01-14 13:09:09 +0000560static int
561agent_decode_rsa1(struct sshbuf *m, struct sshkey **kp)
562{
563 struct sshkey *k = NULL;
564 int r = SSH_ERR_INTERNAL_ERROR;
565
566 *kp = NULL;
567 if ((k = sshkey_new_private(KEY_RSA1)) == NULL)
568 return SSH_ERR_ALLOC_FAIL;
569
570 if ((r = sshbuf_get_u32(m, NULL)) != 0 || /* ignored */
571 (r = sshbuf_get_bignum1(m, k->rsa->n)) != 0 ||
572 (r = sshbuf_get_bignum1(m, k->rsa->e)) != 0 ||
573 (r = sshbuf_get_bignum1(m, k->rsa->d)) != 0 ||
574 (r = sshbuf_get_bignum1(m, k->rsa->iqmp)) != 0 ||
575 /* SSH1 and SSL have p and q swapped */
576 (r = sshbuf_get_bignum1(m, k->rsa->q)) != 0 || /* p */
577 (r = sshbuf_get_bignum1(m, k->rsa->p)) != 0) /* q */
578 goto out;
579
580 /* Generate additional parameters */
581 if ((r = rsa_generate_additional_parameters(k->rsa)) != 0)
582 goto out;
583 /* enable blinding */
584 if (RSA_blinding_on(k->rsa, NULL) != 1) {
585 r = SSH_ERR_LIBCRYPTO_ERROR;
586 goto out;
587 }
588
589 r = 0; /* success */
590 out:
591 if (r == 0)
592 *kp = k;
593 else
594 sshkey_free(k);
595 return r;
596}
Damien Miller6c203922015-03-03 13:48:48 -0800597#endif /* WITH_SSH1 */
markus@openbsd.org139ca812015-01-14 13:09:09 +0000598
Ben Lindstrom61d328a2002-06-06 21:54:57 +0000599static void
Damien Millerad833b32000-08-23 10:46:23 +1000600process_add_identity(SocketEntry *e, int version)
Damien Miller95def091999-11-25 00:26:21 +1100601{
Damien Millerad833b32000-08-23 10:46:23 +1000602 Idtab *tab = idtab_lookup(version);
Damien Miller4c7728c2007-10-26 14:25:31 +1000603 Identity *id;
markus@openbsd.org139ca812015-01-14 13:09:09 +0000604 int success = 0, confirm = 0;
605 u_int seconds;
606 char *comment = NULL;
Darren Tucker55119252013-06-02 07:43:59 +1000607 time_t death = 0;
markus@openbsd.org139ca812015-01-14 13:09:09 +0000608 struct sshkey *k = NULL;
609 u_char ctype;
610 int r = SSH_ERR_INTERNAL_ERROR;
Damien Miller95def091999-11-25 00:26:21 +1100611
Damien Millerad833b32000-08-23 10:46:23 +1000612 switch (version) {
Damien Miller86687062014-07-02 15:28:02 +1000613#ifdef WITH_SSH1
Damien Millerad833b32000-08-23 10:46:23 +1000614 case 1:
markus@openbsd.org139ca812015-01-14 13:09:09 +0000615 r = agent_decode_rsa1(e->request, &k);
Damien Millerc51d0732003-03-15 11:37:09 +1100616 break;
Damien Miller86687062014-07-02 15:28:02 +1000617#endif /* WITH_SSH1 */
Damien Millerf0e90602013-12-07 10:40:26 +1100618 case 2:
markus@openbsd.org139ca812015-01-14 13:09:09 +0000619 r = sshkey_private_deserialize(e->request, &k);
Damien Millerf0e90602013-12-07 10:40:26 +1100620 break;
Damien Millerc51d0732003-03-15 11:37:09 +1100621 }
markus@openbsd.org139ca812015-01-14 13:09:09 +0000622 if (r != 0 || k == NULL ||
623 (r = sshbuf_get_cstring(e->request, &comment, NULL)) != 0) {
624 error("%s: decode private key: %s", __func__, ssh_err(r));
625 goto err;
626 }
Damien Miller86687062014-07-02 15:28:02 +1000627
markus@openbsd.org139ca812015-01-14 13:09:09 +0000628 while (sshbuf_len(e->request)) {
629 if ((r = sshbuf_get_u8(e->request, &ctype)) != 0) {
630 error("%s: buffer error: %s", __func__, ssh_err(r));
631 goto err;
632 }
633 switch (ctype) {
Ben Lindstromc90f8a92002-06-21 00:06:54 +0000634 case SSH_AGENT_CONSTRAIN_LIFETIME:
markus@openbsd.org139ca812015-01-14 13:09:09 +0000635 if ((r = sshbuf_get_u32(e->request, &seconds)) != 0) {
636 error("%s: bad lifetime constraint: %s",
637 __func__, ssh_err(r));
638 goto err;
639 }
640 death = monotime() + seconds;
Ben Lindstrom4eb4c4e2002-06-21 00:04:48 +0000641 break;
Damien Miller6c711792003-01-24 11:36:23 +1100642 case SSH_AGENT_CONSTRAIN_CONFIRM:
643 confirm = 1;
644 break;
Ben Lindstrom4eb4c4e2002-06-21 00:04:48 +0000645 default:
markus@openbsd.org139ca812015-01-14 13:09:09 +0000646 error("%s: Unknown constraint %d", __func__, ctype);
647 err:
648 sshbuf_reset(e->request);
Darren Tuckera627d422013-06-02 07:31:17 +1000649 free(comment);
markus@openbsd.org139ca812015-01-14 13:09:09 +0000650 sshkey_free(k);
Damien Miller1cfadab2008-06-30 00:05:21 +1000651 goto send;
Ben Lindstrom4eb4c4e2002-06-21 00:04:48 +0000652 }
653 }
markus@openbsd.org139ca812015-01-14 13:09:09 +0000654
Damien Miller1cfadab2008-06-30 00:05:21 +1000655 success = 1;
Damien Miller53d81482003-01-22 11:47:19 +1100656 if (lifetime && !death)
Darren Tuckerb759c9c2013-06-02 07:46:16 +1000657 death = monotime() + lifetime;
Damien Miller4c7728c2007-10-26 14:25:31 +1000658 if ((id = lookup_identity(k, version)) == NULL) {
Damien Miller7ea845e2010-02-12 09:21:02 +1100659 id = xcalloc(1, sizeof(Identity));
Ben Lindstrom2b266b72002-06-21 00:08:39 +0000660 id->key = k;
Ben Lindstrom2b266b72002-06-21 00:08:39 +0000661 TAILQ_INSERT_TAIL(&tab->idlist, id, next);
662 /* Increment the number of identities. */
663 tab->nentries++;
664 } else {
markus@openbsd.org139ca812015-01-14 13:09:09 +0000665 sshkey_free(k);
Darren Tuckera627d422013-06-02 07:31:17 +1000666 free(id->comment);
Ben Lindstrom61d328a2002-06-06 21:54:57 +0000667 }
Damien Miller4c7728c2007-10-26 14:25:31 +1000668 id->comment = comment;
669 id->death = death;
670 id->confirm = confirm;
Ben Lindstrom2b266b72002-06-21 00:08:39 +0000671send:
markus@openbsd.org139ca812015-01-14 13:09:09 +0000672 send_status(e, success);
Ben Lindstrom61d328a2002-06-06 21:54:57 +0000673}
674
Ben Lindstrom2f717042002-06-06 21:52:03 +0000675/* XXX todo: encrypt sensitive data with passphrase */
676static void
677process_lock_agent(SocketEntry *e, int lock)
678{
dtucker@openbsd.org9173d0f2015-05-15 05:44:21 +0000679 int r, success = 0, delay;
djm@openbsd.org1a31d022016-05-02 08:49:03 +0000680 char *passwd;
681 u_char passwdhash[LOCK_SIZE];
dtucker@openbsd.org9173d0f2015-05-15 05:44:21 +0000682 static u_int fail_count = 0;
683 size_t pwlen;
Ben Lindstrom2f717042002-06-06 21:52:03 +0000684
dtucker@openbsd.org9173d0f2015-05-15 05:44:21 +0000685 if ((r = sshbuf_get_cstring(e->request, &passwd, &pwlen)) != 0)
markus@openbsd.org139ca812015-01-14 13:09:09 +0000686 fatal("%s: buffer error: %s", __func__, ssh_err(r));
dtucker@openbsd.org9173d0f2015-05-15 05:44:21 +0000687 if (pwlen == 0) {
688 debug("empty password not supported");
689 } else if (locked && !lock) {
690 if (bcrypt_pbkdf(passwd, pwlen, lock_salt, sizeof(lock_salt),
691 passwdhash, sizeof(passwdhash), LOCK_ROUNDS) < 0)
692 fatal("bcrypt_pbkdf");
djm@openbsd.org1a31d022016-05-02 08:49:03 +0000693 if (timingsafe_bcmp(passwdhash, lock_pwhash, LOCK_SIZE) == 0) {
dtucker@openbsd.org9173d0f2015-05-15 05:44:21 +0000694 debug("agent unlocked");
695 locked = 0;
696 fail_count = 0;
djm@openbsd.org1a31d022016-05-02 08:49:03 +0000697 explicit_bzero(lock_pwhash, sizeof(lock_pwhash));
dtucker@openbsd.org9173d0f2015-05-15 05:44:21 +0000698 success = 1;
699 } else {
700 /* delay in 0.1s increments up to 10s */
701 if (fail_count < 100)
702 fail_count++;
703 delay = 100000 * fail_count;
704 debug("unlock failed, delaying %0.1lf seconds",
705 (double)delay/1000000);
706 usleep(delay);
707 }
708 explicit_bzero(passwdhash, sizeof(passwdhash));
Ben Lindstrom2f717042002-06-06 21:52:03 +0000709 } else if (!locked && lock) {
dtucker@openbsd.org9173d0f2015-05-15 05:44:21 +0000710 debug("agent locked");
Ben Lindstrom2f717042002-06-06 21:52:03 +0000711 locked = 1;
dtucker@openbsd.org9173d0f2015-05-15 05:44:21 +0000712 arc4random_buf(lock_salt, sizeof(lock_salt));
713 if (bcrypt_pbkdf(passwd, pwlen, lock_salt, sizeof(lock_salt),
djm@openbsd.org1a31d022016-05-02 08:49:03 +0000714 lock_pwhash, sizeof(lock_pwhash), LOCK_ROUNDS) < 0)
dtucker@openbsd.org9173d0f2015-05-15 05:44:21 +0000715 fatal("bcrypt_pbkdf");
Ben Lindstrom2f717042002-06-06 21:52:03 +0000716 success = 1;
717 }
dtucker@openbsd.org9173d0f2015-05-15 05:44:21 +0000718 explicit_bzero(passwd, pwlen);
Darren Tuckera627d422013-06-02 07:31:17 +1000719 free(passwd);
markus@openbsd.org139ca812015-01-14 13:09:09 +0000720 send_status(e, success);
Ben Lindstrom2f717042002-06-06 21:52:03 +0000721}
722
723static void
724no_identities(SocketEntry *e, u_int type)
725{
markus@openbsd.org139ca812015-01-14 13:09:09 +0000726 struct sshbuf *msg;
727 int r;
Ben Lindstrom2f717042002-06-06 21:52:03 +0000728
markus@openbsd.org139ca812015-01-14 13:09:09 +0000729 if ((msg = sshbuf_new()) == NULL)
730 fatal("%s: sshbuf_new failed", __func__);
731 if ((r = sshbuf_put_u8(msg,
Ben Lindstrom2f717042002-06-06 21:52:03 +0000732 (type == SSH_AGENTC_REQUEST_RSA_IDENTITIES) ?
markus@openbsd.org139ca812015-01-14 13:09:09 +0000733 SSH_AGENT_RSA_IDENTITIES_ANSWER :
734 SSH2_AGENT_IDENTITIES_ANSWER)) != 0 ||
735 (r = sshbuf_put_u32(msg, 0)) != 0 ||
736 (r = sshbuf_put_stringb(e->output, msg)) != 0)
737 fatal("%s: buffer error: %s", __func__, ssh_err(r));
738 sshbuf_free(msg);
Ben Lindstrom2f717042002-06-06 21:52:03 +0000739}
Ben Lindstrom3f471632001-07-04 03:53:15 +0000740
Damien Miller7ea845e2010-02-12 09:21:02 +1100741#ifdef ENABLE_PKCS11
Ben Lindstrom3f471632001-07-04 03:53:15 +0000742static void
Damien Miller1cfadab2008-06-30 00:05:21 +1000743process_add_smartcard_key(SocketEntry *e)
Ben Lindstrom3f471632001-07-04 03:53:15 +0000744{
Damien Miller7ea845e2010-02-12 09:21:02 +1100745 char *provider = NULL, *pin;
markus@openbsd.org139ca812015-01-14 13:09:09 +0000746 int r, i, version, count = 0, success = 0, confirm = 0;
747 u_int seconds;
Darren Tucker55119252013-06-02 07:43:59 +1000748 time_t death = 0;
markus@openbsd.org139ca812015-01-14 13:09:09 +0000749 u_char type;
750 struct sshkey **keys = NULL, *k;
Ben Lindstrom822b6342002-06-23 21:38:49 +0000751 Identity *id;
752 Idtab *tab;
Damien Miller9f0f5c62001-12-21 14:45:46 +1100753
markus@openbsd.org139ca812015-01-14 13:09:09 +0000754 if ((r = sshbuf_get_cstring(e->request, &provider, NULL)) != 0 ||
755 (r = sshbuf_get_cstring(e->request, &pin, NULL)) != 0)
756 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Millerd94f20d2003-06-11 22:06:33 +1000757
markus@openbsd.org139ca812015-01-14 13:09:09 +0000758 while (sshbuf_len(e->request)) {
759 if ((r = sshbuf_get_u8(e->request, &type)) != 0)
760 fatal("%s: buffer error: %s", __func__, ssh_err(r));
761 switch (type) {
Damien Millerd94f20d2003-06-11 22:06:33 +1000762 case SSH_AGENT_CONSTRAIN_LIFETIME:
markus@openbsd.org139ca812015-01-14 13:09:09 +0000763 if ((r = sshbuf_get_u32(e->request, &seconds)) != 0)
764 fatal("%s: buffer error: %s",
765 __func__, ssh_err(r));
766 death = monotime() + seconds;
Damien Millerd94f20d2003-06-11 22:06:33 +1000767 break;
768 case SSH_AGENT_CONSTRAIN_CONFIRM:
769 confirm = 1;
770 break;
771 default:
Damien Miller1cfadab2008-06-30 00:05:21 +1000772 error("process_add_smartcard_key: "
773 "Unknown constraint type %d", type);
Damien Miller1cfadab2008-06-30 00:05:21 +1000774 goto send;
Damien Millerd94f20d2003-06-11 22:06:33 +1000775 }
776 }
777 if (lifetime && !death)
Darren Tuckerb759c9c2013-06-02 07:46:16 +1000778 death = monotime() + lifetime;
Damien Millerd94f20d2003-06-11 22:06:33 +1000779
Damien Miller7ea845e2010-02-12 09:21:02 +1100780 count = pkcs11_add_provider(provider, pin, &keys);
781 for (i = 0; i < count; i++) {
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000782 k = keys[i];
783 version = k->type == KEY_RSA1 ? 1 : 2;
784 tab = idtab_lookup(version);
785 if (lookup_identity(k, version) == NULL) {
Damien Miller7ea845e2010-02-12 09:21:02 +1100786 id = xcalloc(1, sizeof(Identity));
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000787 id->key = k;
Damien Miller7ea845e2010-02-12 09:21:02 +1100788 id->provider = xstrdup(provider);
789 id->comment = xstrdup(provider); /* XXX */
Damien Millerd94f20d2003-06-11 22:06:33 +1000790 id->death = death;
791 id->confirm = confirm;
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000792 TAILQ_INSERT_TAIL(&tab->idlist, id, next);
793 tab->nentries++;
794 success = 1;
795 } else {
markus@openbsd.org139ca812015-01-14 13:09:09 +0000796 sshkey_free(k);
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000797 }
798 keys[i] = NULL;
Ben Lindstrom3f471632001-07-04 03:53:15 +0000799 }
Ben Lindstrom3f471632001-07-04 03:53:15 +0000800send:
Darren Tuckera627d422013-06-02 07:31:17 +1000801 free(pin);
802 free(provider);
803 free(keys);
markus@openbsd.org139ca812015-01-14 13:09:09 +0000804 send_status(e, success);
Ben Lindstrom3f471632001-07-04 03:53:15 +0000805}
806
807static void
808process_remove_smartcard_key(SocketEntry *e)
809{
Damien Miller7ea845e2010-02-12 09:21:02 +1100810 char *provider = NULL, *pin = NULL;
markus@openbsd.org139ca812015-01-14 13:09:09 +0000811 int r, version, success = 0;
Damien Miller7ea845e2010-02-12 09:21:02 +1100812 Identity *id, *nxt;
Ben Lindstrom822b6342002-06-23 21:38:49 +0000813 Idtab *tab;
Ben Lindstrom3f471632001-07-04 03:53:15 +0000814
markus@openbsd.org139ca812015-01-14 13:09:09 +0000815 if ((r = sshbuf_get_cstring(e->request, &provider, NULL)) != 0 ||
816 (r = sshbuf_get_cstring(e->request, &pin, NULL)) != 0)
817 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Darren Tuckera627d422013-06-02 07:31:17 +1000818 free(pin);
Ben Lindstrom3f471632001-07-04 03:53:15 +0000819
Damien Miller7ea845e2010-02-12 09:21:02 +1100820 for (version = 1; version < 3; version++) {
821 tab = idtab_lookup(version);
822 for (id = TAILQ_FIRST(&tab->idlist); id; id = nxt) {
823 nxt = TAILQ_NEXT(id, next);
Damien Miller0b36c832013-12-29 17:45:51 +1100824 /* Skip file--based keys */
825 if (id->provider == NULL)
826 continue;
Damien Miller7ea845e2010-02-12 09:21:02 +1100827 if (!strcmp(provider, id->provider)) {
828 TAILQ_REMOVE(&tab->idlist, id, next);
829 free_identity(id);
830 tab->nentries--;
831 }
Ben Lindstrom3f471632001-07-04 03:53:15 +0000832 }
Ben Lindstrom3f471632001-07-04 03:53:15 +0000833 }
Damien Miller7ea845e2010-02-12 09:21:02 +1100834 if (pkcs11_del_provider(provider) == 0)
835 success = 1;
836 else
837 error("process_remove_smartcard_key:"
838 " pkcs11_del_provider failed");
Darren Tuckera627d422013-06-02 07:31:17 +1000839 free(provider);
markus@openbsd.org139ca812015-01-14 13:09:09 +0000840 send_status(e, success);
Ben Lindstrom3f471632001-07-04 03:53:15 +0000841}
Damien Miller7ea845e2010-02-12 09:21:02 +1100842#endif /* ENABLE_PKCS11 */
Ben Lindstrom3f471632001-07-04 03:53:15 +0000843
Damien Millerad833b32000-08-23 10:46:23 +1000844/* dispatch incoming messages */
845
Ben Lindstrombba81212001-06-25 05:01:22 +0000846static void
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000847process_message(SocketEntry *e)
848{
markus@openbsd.org139ca812015-01-14 13:09:09 +0000849 u_int msg_len;
850 u_char type;
851 const u_char *cp;
852 int r;
Ben Lindstrom61d328a2002-06-06 21:54:57 +0000853
markus@openbsd.org139ca812015-01-14 13:09:09 +0000854 if (sshbuf_len(e->input) < 5)
Damien Miller95def091999-11-25 00:26:21 +1100855 return; /* Incomplete message. */
markus@openbsd.org139ca812015-01-14 13:09:09 +0000856 cp = sshbuf_ptr(e->input);
857 msg_len = PEEK_U32(cp);
Damien Miller95def091999-11-25 00:26:21 +1100858 if (msg_len > 256 * 1024) {
Damien Miller58f34862002-09-04 16:31:21 +1000859 close_socket(e);
Damien Miller95def091999-11-25 00:26:21 +1100860 return;
861 }
markus@openbsd.org139ca812015-01-14 13:09:09 +0000862 if (sshbuf_len(e->input) < msg_len + 4)
Damien Miller95def091999-11-25 00:26:21 +1100863 return;
Ben Lindstrom21d1ed82002-06-06 21:48:57 +0000864
865 /* move the current input to e->request */
markus@openbsd.org139ca812015-01-14 13:09:09 +0000866 sshbuf_reset(e->request);
867 if ((r = sshbuf_get_stringb(e->input, e->request)) != 0 ||
868 (r = sshbuf_get_u8(e->request, &type)) != 0)
869 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000870
Ben Lindstrom2f717042002-06-06 21:52:03 +0000871 /* check wheter agent is locked */
872 if (locked && type != SSH_AGENTC_UNLOCK) {
markus@openbsd.org139ca812015-01-14 13:09:09 +0000873 sshbuf_reset(e->request);
Ben Lindstrom2f717042002-06-06 21:52:03 +0000874 switch (type) {
875 case SSH_AGENTC_REQUEST_RSA_IDENTITIES:
876 case SSH2_AGENTC_REQUEST_IDENTITIES:
877 /* send empty lists */
878 no_identities(e, type);
879 break;
880 default:
881 /* send a fail message for all other request types */
markus@openbsd.org139ca812015-01-14 13:09:09 +0000882 send_status(e, 0);
Ben Lindstrom2f717042002-06-06 21:52:03 +0000883 }
884 return;
885 }
886
Ben Lindstrom3f471632001-07-04 03:53:15 +0000887 debug("type %d", type);
Damien Miller95def091999-11-25 00:26:21 +1100888 switch (type) {
Ben Lindstrom2f717042002-06-06 21:52:03 +0000889 case SSH_AGENTC_LOCK:
890 case SSH_AGENTC_UNLOCK:
891 process_lock_agent(e, type == SSH_AGENTC_LOCK);
892 break;
Damien Miller1f0311c2014-05-15 14:24:09 +1000893#ifdef WITH_SSH1
Damien Millerad833b32000-08-23 10:46:23 +1000894 /* ssh1 */
Damien Miller95def091999-11-25 00:26:21 +1100895 case SSH_AGENTC_RSA_CHALLENGE:
Damien Millerad833b32000-08-23 10:46:23 +1000896 process_authentication_challenge1(e);
897 break;
898 case SSH_AGENTC_REQUEST_RSA_IDENTITIES:
899 process_request_identities(e, 1);
Damien Miller95def091999-11-25 00:26:21 +1100900 break;
901 case SSH_AGENTC_ADD_RSA_IDENTITY:
Ben Lindstrom2b266b72002-06-21 00:08:39 +0000902 case SSH_AGENTC_ADD_RSA_ID_CONSTRAINED:
Damien Millerad833b32000-08-23 10:46:23 +1000903 process_add_identity(e, 1);
Damien Miller95def091999-11-25 00:26:21 +1100904 break;
905 case SSH_AGENTC_REMOVE_RSA_IDENTITY:
Damien Millerad833b32000-08-23 10:46:23 +1000906 process_remove_identity(e, 1);
Damien Miller95def091999-11-25 00:26:21 +1100907 break;
Damien Miller1f0311c2014-05-15 14:24:09 +1000908#endif
djm@openbsd.org2f04af92015-03-04 21:12:59 +0000909 case SSH_AGENTC_REMOVE_ALL_RSA_IDENTITIES:
910 process_remove_all_identities(e, 1); /* safe for !WITH_SSH1 */
911 break;
Damien Millerad833b32000-08-23 10:46:23 +1000912 /* ssh2 */
913 case SSH2_AGENTC_SIGN_REQUEST:
914 process_sign_request2(e);
915 break;
916 case SSH2_AGENTC_REQUEST_IDENTITIES:
917 process_request_identities(e, 2);
918 break;
919 case SSH2_AGENTC_ADD_IDENTITY:
Ben Lindstrom2b266b72002-06-21 00:08:39 +0000920 case SSH2_AGENTC_ADD_ID_CONSTRAINED:
Damien Millerad833b32000-08-23 10:46:23 +1000921 process_add_identity(e, 2);
922 break;
923 case SSH2_AGENTC_REMOVE_IDENTITY:
924 process_remove_identity(e, 2);
925 break;
926 case SSH2_AGENTC_REMOVE_ALL_IDENTITIES:
927 process_remove_all_identities(e, 2);
Damien Miller95def091999-11-25 00:26:21 +1100928 break;
Damien Miller7ea845e2010-02-12 09:21:02 +1100929#ifdef ENABLE_PKCS11
Ben Lindstrom3f471632001-07-04 03:53:15 +0000930 case SSH_AGENTC_ADD_SMARTCARD_KEY:
Damien Millerd94f20d2003-06-11 22:06:33 +1000931 case SSH_AGENTC_ADD_SMARTCARD_KEY_CONSTRAINED:
Ben Lindstrom3f471632001-07-04 03:53:15 +0000932 process_add_smartcard_key(e);
Damien Miller9f0f5c62001-12-21 14:45:46 +1100933 break;
Ben Lindstrom3f471632001-07-04 03:53:15 +0000934 case SSH_AGENTC_REMOVE_SMARTCARD_KEY:
935 process_remove_smartcard_key(e);
Damien Miller9f0f5c62001-12-21 14:45:46 +1100936 break;
Damien Miller7ea845e2010-02-12 09:21:02 +1100937#endif /* ENABLE_PKCS11 */
Damien Miller95def091999-11-25 00:26:21 +1100938 default:
939 /* Unknown message. Respond with failure. */
940 error("Unknown message %d", type);
markus@openbsd.org139ca812015-01-14 13:09:09 +0000941 sshbuf_reset(e->request);
942 send_status(e, 0);
Damien Miller95def091999-11-25 00:26:21 +1100943 break;
944 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000945}
946
Ben Lindstrombba81212001-06-25 05:01:22 +0000947static void
Ben Lindstrom65366a82001-12-06 16:32:47 +0000948new_socket(sock_type type, int fd)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000949{
Darren Tuckerfb16b242003-09-22 21:04:23 +1000950 u_int i, old_alloc, new_alloc;
Ben Lindstrom822b6342002-06-23 21:38:49 +0000951
Damien Miller232711f2004-06-15 10:35:30 +1000952 set_nonblock(fd);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000953
Damien Miller95def091999-11-25 00:26:21 +1100954 if (fd > max_fd)
955 max_fd = fd;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000956
Damien Miller95def091999-11-25 00:26:21 +1100957 for (i = 0; i < sockets_alloc; i++)
958 if (sockets[i].type == AUTH_UNUSED) {
959 sockets[i].fd = fd;
markus@openbsd.org139ca812015-01-14 13:09:09 +0000960 if ((sockets[i].input = sshbuf_new()) == NULL)
961 fatal("%s: sshbuf_new failed", __func__);
962 if ((sockets[i].output = sshbuf_new()) == NULL)
963 fatal("%s: sshbuf_new failed", __func__);
964 if ((sockets[i].request = sshbuf_new()) == NULL)
965 fatal("%s: sshbuf_new failed", __func__);
Darren Tuckerfb16b242003-09-22 21:04:23 +1000966 sockets[i].type = type;
Damien Miller95def091999-11-25 00:26:21 +1100967 return;
968 }
969 old_alloc = sockets_alloc;
Darren Tuckerfb16b242003-09-22 21:04:23 +1000970 new_alloc = sockets_alloc + 10;
deraadt@openbsd.org657a5fb2015-04-24 01:36:00 +0000971 sockets = xreallocarray(sockets, new_alloc, sizeof(sockets[0]));
Darren Tuckerfb16b242003-09-22 21:04:23 +1000972 for (i = old_alloc; i < new_alloc; i++)
Damien Miller95def091999-11-25 00:26:21 +1100973 sockets[i].type = AUTH_UNUSED;
Darren Tuckerfb16b242003-09-22 21:04:23 +1000974 sockets_alloc = new_alloc;
Damien Miller95def091999-11-25 00:26:21 +1100975 sockets[old_alloc].fd = fd;
markus@openbsd.org139ca812015-01-14 13:09:09 +0000976 if ((sockets[old_alloc].input = sshbuf_new()) == NULL)
977 fatal("%s: sshbuf_new failed", __func__);
978 if ((sockets[old_alloc].output = sshbuf_new()) == NULL)
979 fatal("%s: sshbuf_new failed", __func__);
980 if ((sockets[old_alloc].request = sshbuf_new()) == NULL)
981 fatal("%s: sshbuf_new failed", __func__);
Darren Tuckerfb16b242003-09-22 21:04:23 +1000982 sockets[old_alloc].type = type;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000983}
984
Ben Lindstrombba81212001-06-25 05:01:22 +0000985static int
Darren Tucker2812dc92007-03-21 20:45:06 +1100986prepare_select(fd_set **fdrp, fd_set **fdwp, int *fdl, u_int *nallocp,
987 struct timeval **tvpp)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000988{
Darren Tucker55119252013-06-02 07:43:59 +1000989 u_int i, sz;
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000990 int n = 0;
Darren Tucker2812dc92007-03-21 20:45:06 +1100991 static struct timeval tv;
Darren Tucker55119252013-06-02 07:43:59 +1000992 time_t deadline;
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000993
994 for (i = 0; i < sockets_alloc; i++) {
Damien Miller95def091999-11-25 00:26:21 +1100995 switch (sockets[i].type) {
996 case AUTH_SOCKET:
997 case AUTH_CONNECTION:
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000998 n = MAX(n, sockets[i].fd);
Damien Miller95def091999-11-25 00:26:21 +1100999 break;
1000 case AUTH_UNUSED:
1001 break;
1002 default:
1003 fatal("Unknown socket type %d", sockets[i].type);
1004 break;
1005 }
Ben Lindstrom226cfa02001-01-22 05:34:40 +00001006 }
1007
1008 sz = howmany(n+1, NFDBITS) * sizeof(fd_mask);
Ben Lindstroma3d5a4c2001-07-18 15:58:08 +00001009 if (*fdrp == NULL || sz > *nallocp) {
Darren Tuckera627d422013-06-02 07:31:17 +10001010 free(*fdrp);
1011 free(*fdwp);
Ben Lindstrom226cfa02001-01-22 05:34:40 +00001012 *fdrp = xmalloc(sz);
1013 *fdwp = xmalloc(sz);
Ben Lindstroma3d5a4c2001-07-18 15:58:08 +00001014 *nallocp = sz;
Ben Lindstrom226cfa02001-01-22 05:34:40 +00001015 }
Ben Lindstroma3d5a4c2001-07-18 15:58:08 +00001016 if (n < *fdl)
1017 debug("XXX shrink: %d < %d", n, *fdl);
1018 *fdl = n;
Ben Lindstrom226cfa02001-01-22 05:34:40 +00001019 memset(*fdrp, 0, sz);
1020 memset(*fdwp, 0, sz);
1021
1022 for (i = 0; i < sockets_alloc; i++) {
1023 switch (sockets[i].type) {
1024 case AUTH_SOCKET:
1025 case AUTH_CONNECTION:
1026 FD_SET(sockets[i].fd, *fdrp);
markus@openbsd.org139ca812015-01-14 13:09:09 +00001027 if (sshbuf_len(sockets[i].output) > 0)
Ben Lindstrom226cfa02001-01-22 05:34:40 +00001028 FD_SET(sockets[i].fd, *fdwp);
1029 break;
1030 default:
1031 break;
1032 }
1033 }
Darren Tucker2812dc92007-03-21 20:45:06 +11001034 deadline = reaper();
1035 if (parent_alive_interval != 0)
1036 deadline = (deadline == 0) ? parent_alive_interval :
1037 MIN(deadline, parent_alive_interval);
1038 if (deadline == 0) {
1039 *tvpp = NULL;
1040 } else {
1041 tv.tv_sec = deadline;
1042 tv.tv_usec = 0;
1043 *tvpp = &tv;
1044 }
Ben Lindstrom226cfa02001-01-22 05:34:40 +00001045 return (1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001046}
1047
Ben Lindstrombba81212001-06-25 05:01:22 +00001048static void
Damien Miller95def091999-11-25 00:26:21 +11001049after_select(fd_set *readset, fd_set *writeset)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001050{
Ben Lindstrom822b6342002-06-23 21:38:49 +00001051 struct sockaddr_un sunaddr;
Damien Miller7684ee12000-03-17 23:40:15 +11001052 socklen_t slen;
Damien Miller95def091999-11-25 00:26:21 +11001053 char buf[1024];
markus@openbsd.org139ca812015-01-14 13:09:09 +00001054 int len, sock, r;
Darren Tucker72473c62009-10-07 09:01:03 +11001055 u_int i, orig_alloc;
Damien Miller538f1812002-09-12 09:51:10 +10001056 uid_t euid;
1057 gid_t egid;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001058
Darren Tucker72473c62009-10-07 09:01:03 +11001059 for (i = 0, orig_alloc = sockets_alloc; i < orig_alloc; i++)
Damien Miller95def091999-11-25 00:26:21 +11001060 switch (sockets[i].type) {
1061 case AUTH_UNUSED:
1062 break;
1063 case AUTH_SOCKET:
1064 if (FD_ISSET(sockets[i].fd, readset)) {
Damien Miller7684ee12000-03-17 23:40:15 +11001065 slen = sizeof(sunaddr);
Ben Lindstrom226cfa02001-01-22 05:34:40 +00001066 sock = accept(sockets[i].fd,
Damien Miller90967402006-03-26 14:07:26 +11001067 (struct sockaddr *)&sunaddr, &slen);
Damien Miller95def091999-11-25 00:26:21 +11001068 if (sock < 0) {
Damien Millerc653b892002-02-08 22:05:41 +11001069 error("accept from AUTH_SOCKET: %s",
1070 strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +11001071 break;
1072 }
Damien Miller538f1812002-09-12 09:51:10 +10001073 if (getpeereid(sock, &euid, &egid) < 0) {
1074 error("getpeereid %d failed: %s",
1075 sock, strerror(errno));
1076 close(sock);
1077 break;
1078 }
Damien Milleraf9de382002-10-03 11:54:35 +10001079 if ((euid != 0) && (getuid() != euid)) {
Damien Miller538f1812002-09-12 09:51:10 +10001080 error("uid mismatch: "
Damien Millerdb30b122002-09-19 11:46:58 +10001081 "peer euid %u != uid %u",
1082 (u_int) euid, (u_int) getuid());
Damien Miller538f1812002-09-12 09:51:10 +10001083 close(sock);
1084 break;
1085 }
Damien Miller95def091999-11-25 00:26:21 +11001086 new_socket(AUTH_CONNECTION, sock);
1087 }
1088 break;
1089 case AUTH_CONNECTION:
markus@openbsd.org139ca812015-01-14 13:09:09 +00001090 if (sshbuf_len(sockets[i].output) > 0 &&
Damien Miller95def091999-11-25 00:26:21 +11001091 FD_ISSET(sockets[i].fd, writeset)) {
Darren Tucker72473c62009-10-07 09:01:03 +11001092 len = write(sockets[i].fd,
markus@openbsd.org139ca812015-01-14 13:09:09 +00001093 sshbuf_ptr(sockets[i].output),
1094 sshbuf_len(sockets[i].output));
Darren Tucker72473c62009-10-07 09:01:03 +11001095 if (len == -1 && (errno == EAGAIN ||
1096 errno == EWOULDBLOCK ||
1097 errno == EINTR))
1098 continue;
Damien Miller95def091999-11-25 00:26:21 +11001099 if (len <= 0) {
Damien Miller58f34862002-09-04 16:31:21 +10001100 close_socket(&sockets[i]);
Damien Miller95def091999-11-25 00:26:21 +11001101 break;
1102 }
markus@openbsd.org139ca812015-01-14 13:09:09 +00001103 if ((r = sshbuf_consume(sockets[i].output,
1104 len)) != 0)
1105 fatal("%s: buffer error: %s",
1106 __func__, ssh_err(r));
Damien Miller95def091999-11-25 00:26:21 +11001107 }
1108 if (FD_ISSET(sockets[i].fd, readset)) {
Darren Tucker72473c62009-10-07 09:01:03 +11001109 len = read(sockets[i].fd, buf, sizeof(buf));
1110 if (len == -1 && (errno == EAGAIN ||
1111 errno == EWOULDBLOCK ||
1112 errno == EINTR))
1113 continue;
Damien Miller95def091999-11-25 00:26:21 +11001114 if (len <= 0) {
Damien Miller58f34862002-09-04 16:31:21 +10001115 close_socket(&sockets[i]);
Damien Miller95def091999-11-25 00:26:21 +11001116 break;
1117 }
markus@openbsd.org139ca812015-01-14 13:09:09 +00001118 if ((r = sshbuf_put(sockets[i].input,
1119 buf, len)) != 0)
1120 fatal("%s: buffer error: %s",
1121 __func__, ssh_err(r));
Damien Millerf4977942014-07-30 12:32:46 +10001122 explicit_bzero(buf, sizeof(buf));
Damien Miller95def091999-11-25 00:26:21 +11001123 process_message(&sockets[i]);
1124 }
1125 break;
1126 default:
1127 fatal("Unknown type %d", sockets[i].type);
1128 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001129}
1130
Ben Lindstrombba81212001-06-25 05:01:22 +00001131static void
Darren Tucker6fa8abd2003-09-22 21:10:21 +10001132cleanup_socket(void)
Damien Miller792c5111999-10-29 09:47:09 +10001133{
Damien Millerb1e967c2014-07-03 21:22:40 +10001134 if (cleanup_pid != 0 && getpid() != cleanup_pid)
1135 return;
1136 debug("%s: cleanup", __func__);
Ben Lindstrom77808ab2001-01-26 05:10:34 +00001137 if (socket_name[0])
1138 unlink(socket_name);
1139 if (socket_dir[0])
1140 rmdir(socket_dir);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001141}
1142
Darren Tucker3e33cec2003-10-02 16:12:36 +10001143void
Damien Miller792c5111999-10-29 09:47:09 +10001144cleanup_exit(int i)
1145{
Darren Tucker6fa8abd2003-09-22 21:10:21 +10001146 cleanup_socket();
1147 _exit(i);
Damien Miller792c5111999-10-29 09:47:09 +10001148}
1149
Damien Miller1c13bd82006-03-26 14:28:14 +11001150/*ARGSUSED*/
Ben Lindstrombba81212001-06-25 05:01:22 +00001151static void
Ben Lindstrom77808ab2001-01-26 05:10:34 +00001152cleanup_handler(int sig)
1153{
Darren Tucker6fa8abd2003-09-22 21:10:21 +10001154 cleanup_socket();
Damien Miller7ea845e2010-02-12 09:21:02 +11001155#ifdef ENABLE_PKCS11
1156 pkcs11_terminate();
1157#endif
Ben Lindstrom77808ab2001-01-26 05:10:34 +00001158 _exit(2);
1159}
1160
Ben Lindstrombba81212001-06-25 05:01:22 +00001161static void
Darren Tucker2812dc92007-03-21 20:45:06 +11001162check_parent_exists(void)
Ben Lindstrom0250da02001-07-22 20:44:00 +00001163{
Darren Tucker3e78a512011-06-03 14:14:16 +10001164 /*
1165 * If our parent has exited then getppid() will return (pid_t)1,
1166 * so testing for that should be safe.
1167 */
1168 if (parent_pid != -1 && getppid() != parent_pid) {
Ben Lindstrom0250da02001-07-22 20:44:00 +00001169 /* printf("Parent has died - Authentication agent exiting.\n"); */
Darren Tucker2812dc92007-03-21 20:45:06 +11001170 cleanup_socket();
1171 _exit(2);
Ben Lindstrom0250da02001-07-22 20:44:00 +00001172 }
Ben Lindstrom0250da02001-07-22 20:44:00 +00001173}
1174
1175static void
Ben Lindstrom28072eb2001-02-10 23:13:41 +00001176usage(void)
Damien Miller792c5111999-10-29 09:47:09 +10001177{
Damien Millerf0858de2014-04-20 13:01:30 +10001178 fprintf(stderr,
jmc@openbsd.orgb7ca2762015-04-24 06:26:49 +00001179 "usage: ssh-agent [-c | -s] [-Dd] [-a bind_address] [-E fingerprint_hash]\n"
jmc@openbsd.orga5375cc2014-12-21 23:35:14 +00001180 " [-t life] [command [arg ...]]\n"
Damien Millerf0858de2014-04-20 13:01:30 +10001181 " ssh-agent [-c | -s] -k\n");
Damien Miller95def091999-11-25 00:26:21 +11001182 exit(1);
Damien Miller792c5111999-10-29 09:47:09 +10001183}
1184
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001185int
1186main(int ac, char **av)
1187{
djm@openbsd.org2ea97462015-04-24 05:26:44 +00001188 int c_flag = 0, d_flag = 0, D_flag = 0, k_flag = 0, s_flag = 0;
Darren Tuckercf0d2db2007-02-28 21:19:58 +11001189 int sock, fd, ch, result, saved_errno;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +10001190 u_int nalloc;
Ben Lindstrom822b6342002-06-23 21:38:49 +00001191 char *shell, *format, *pidstr, *agentsocket = NULL;
1192 fd_set *readsetp = NULL, *writesetp = NULL;
Ben Lindstrom2c467a22000-12-27 04:57:41 +00001193#ifdef HAVE_SETRLIMIT
Ben Lindstromc72745a2000-12-02 19:03:54 +00001194 struct rlimit rlim;
Ben Lindstrom2c467a22000-12-27 04:57:41 +00001195#endif
Damien Miller615f9392000-05-17 22:53:33 +10001196 extern int optind;
Ben Lindstrom883844d2002-06-23 00:20:50 +00001197 extern char *optarg;
Ben Lindstrom822b6342002-06-23 21:38:49 +00001198 pid_t pid;
1199 char pidstrbuf[1 + 3 * sizeof pid];
Darren Tucker2812dc92007-03-21 20:45:06 +11001200 struct timeval *tvp = NULL;
Darren Tucker90133232009-06-21 17:50:15 +10001201 size_t len;
Damien Millerab2ec582014-07-18 15:04:47 +10001202 mode_t prev_mask;
Kevin Stevesde41bc62000-12-14 00:04:08 +00001203
dtucker@openbsd.orgffb1e7e2016-02-15 09:47:49 +00001204 ssh_malloc_init(); /* must be called before any mallocs */
Darren Tuckerce321d82005-10-03 18:11:24 +10001205 /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
1206 sanitise_stdfd();
1207
Damien Miller6cffb9a2002-09-04 16:20:26 +10001208 /* drop */
1209 setegid(getgid());
1210 setgid(getgid());
1211
Damien Miller6c4914a2004-03-03 11:08:59 +11001212#if defined(HAVE_PRCTL) && defined(PR_SET_DUMPABLE)
1213 /* Disable ptrace on Linux without sgid bit */
1214 prctl(PR_SET_DUMPABLE, 0);
1215#endif
1216
Damien Miller1f0311c2014-05-15 14:24:09 +10001217#ifdef WITH_OPENSSL
Damien Miller4314c2b2010-09-10 11:12:09 +10001218 OpenSSL_add_all_algorithms();
Damien Miller1f0311c2014-05-15 14:24:09 +10001219#endif
Ben Lindstromd09fcf52001-03-29 00:29:54 +00001220
Damien Miller59d3d5b2003-08-22 09:34:41 +10001221 __progname = ssh_get_progname(av[0]);
Damien Miller60bc5172001-03-19 09:38:15 +11001222 seed_rng();
Kevin Stevesef4eea92001-02-05 12:42:17 +00001223
djm@openbsd.org2ea97462015-04-24 05:26:44 +00001224 while ((ch = getopt(ac, av, "cDdksE:a:t:")) != -1) {
Damien Miller95def091999-11-25 00:26:21 +11001225 switch (ch) {
djm@openbsd.org56d1c832014-12-21 22:27:55 +00001226 case 'E':
1227 fingerprint_hash = ssh_digest_alg_by_name(optarg);
1228 if (fingerprint_hash == -1)
1229 fatal("Invalid hash algorithm \"%s\"", optarg);
1230 break;
Damien Miller95def091999-11-25 00:26:21 +11001231 case 'c':
1232 if (s_flag)
1233 usage();
1234 c_flag++;
1235 break;
1236 case 'k':
1237 k_flag++;
1238 break;
1239 case 's':
1240 if (c_flag)
1241 usage();
1242 s_flag++;
1243 break;
Ben Lindstromd94580c2001-07-04 03:48:02 +00001244 case 'd':
djm@openbsd.org2ea97462015-04-24 05:26:44 +00001245 if (d_flag || D_flag)
Ben Lindstromd94580c2001-07-04 03:48:02 +00001246 usage();
1247 d_flag++;
1248 break;
djm@openbsd.org2ea97462015-04-24 05:26:44 +00001249 case 'D':
1250 if (d_flag || D_flag)
1251 usage();
1252 D_flag++;
1253 break;
Ben Lindstromb7788f32002-06-06 21:46:08 +00001254 case 'a':
1255 agentsocket = optarg;
1256 break;
Damien Miller53d81482003-01-22 11:47:19 +11001257 case 't':
1258 if ((lifetime = convtime(optarg)) == -1) {
1259 fprintf(stderr, "Invalid lifetime\n");
1260 usage();
1261 }
1262 break;
Damien Miller95def091999-11-25 00:26:21 +11001263 default:
1264 usage();
1265 }
Damien Miller792c5111999-10-29 09:47:09 +10001266 }
Damien Miller95def091999-11-25 00:26:21 +11001267 ac -= optind;
1268 av += optind;
Damien Miller792c5111999-10-29 09:47:09 +10001269
djm@openbsd.org2ea97462015-04-24 05:26:44 +00001270 if (ac > 0 && (c_flag || k_flag || s_flag || d_flag || D_flag))
Damien Miller95def091999-11-25 00:26:21 +11001271 usage();
Damien Miller792c5111999-10-29 09:47:09 +10001272
Ben Lindstromeecdf232002-04-02 21:03:51 +00001273 if (ac == 0 && !c_flag && !s_flag) {
Damien Miller95def091999-11-25 00:26:21 +11001274 shell = getenv("SHELL");
Darren Tucker90133232009-06-21 17:50:15 +10001275 if (shell != NULL && (len = strlen(shell)) > 2 &&
1276 strncmp(shell + len - 3, "csh", 3) == 0)
Damien Miller95def091999-11-25 00:26:21 +11001277 c_flag = 1;
Damien Miller792c5111999-10-29 09:47:09 +10001278 }
Damien Miller95def091999-11-25 00:26:21 +11001279 if (k_flag) {
Damien Miller89c3fe42006-03-31 23:11:28 +11001280 const char *errstr = NULL;
1281
Damien Miller95def091999-11-25 00:26:21 +11001282 pidstr = getenv(SSH_AGENTPID_ENV_NAME);
1283 if (pidstr == NULL) {
1284 fprintf(stderr, "%s not set, cannot kill agent\n",
Ben Lindstrom226cfa02001-01-22 05:34:40 +00001285 SSH_AGENTPID_ENV_NAME);
Damien Miller95def091999-11-25 00:26:21 +11001286 exit(1);
1287 }
Damien Miller89c3fe42006-03-31 23:11:28 +11001288 pid = (int)strtonum(pidstr, 2, INT_MAX, &errstr);
1289 if (errstr) {
1290 fprintf(stderr,
1291 "%s=\"%s\", which is not a good PID: %s\n",
1292 SSH_AGENTPID_ENV_NAME, pidstr, errstr);
Damien Miller95def091999-11-25 00:26:21 +11001293 exit(1);
1294 }
1295 if (kill(pid, SIGTERM) == -1) {
1296 perror("kill");
1297 exit(1);
1298 }
1299 format = c_flag ? "unsetenv %s;\n" : "unset %s;\n";
1300 printf(format, SSH_AUTHSOCKET_ENV_NAME);
1301 printf(format, SSH_AGENTPID_ENV_NAME);
Ben Lindstromce0f6342002-06-11 16:42:49 +00001302 printf("echo Agent pid %ld killed;\n", (long)pid);
Damien Miller95def091999-11-25 00:26:21 +11001303 exit(0);
Damien Miller792c5111999-10-29 09:47:09 +10001304 }
Damien Miller95def091999-11-25 00:26:21 +11001305 parent_pid = getpid();
1306
Ben Lindstromb7788f32002-06-06 21:46:08 +00001307 if (agentsocket == NULL) {
1308 /* Create private directory for agent socket */
Damien Miller2cd62932010-12-01 11:50:35 +11001309 mktemp_proto(socket_dir, sizeof(socket_dir));
Ben Lindstromb7788f32002-06-06 21:46:08 +00001310 if (mkdtemp(socket_dir) == NULL) {
1311 perror("mkdtemp: private socket dir");
1312 exit(1);
1313 }
Ben Lindstromce0f6342002-06-11 16:42:49 +00001314 snprintf(socket_name, sizeof socket_name, "%s/agent.%ld", socket_dir,
1315 (long)parent_pid);
Ben Lindstromb7788f32002-06-06 21:46:08 +00001316 } else {
1317 /* Try to use specified agent socket */
1318 socket_dir[0] = '\0';
1319 strlcpy(socket_name, agentsocket, sizeof socket_name);
Damien Miller792c5111999-10-29 09:47:09 +10001320 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001321
Damien Miller5428f641999-11-25 11:54:57 +11001322 /*
1323 * Create socket early so it will exist before command gets run from
1324 * the parent.
1325 */
Damien Millerab2ec582014-07-18 15:04:47 +10001326 prev_mask = umask(0177);
Damien Miller7acefbb2014-07-18 14:11:24 +10001327 sock = unix_listener(socket_name, SSH_LISTEN_BACKLOG, 0);
Damien Miller95def091999-11-25 00:26:21 +11001328 if (sock < 0) {
Damien Miller7acefbb2014-07-18 14:11:24 +10001329 /* XXX - unix_listener() calls error() not perror() */
Darren Tucker1dee8682004-11-05 20:26:49 +11001330 *socket_name = '\0'; /* Don't unlink any existing file */
Damien Miller95def091999-11-25 00:26:21 +11001331 cleanup_exit(1);
Damien Miller792c5111999-10-29 09:47:09 +10001332 }
Damien Millerab2ec582014-07-18 15:04:47 +10001333 umask(prev_mask);
Ben Lindstrom226cfa02001-01-22 05:34:40 +00001334
Damien Miller5428f641999-11-25 11:54:57 +11001335 /*
1336 * Fork, and have the parent execute the command, if any, or present
1337 * the socket data. The child continues as the authentication agent.
1338 */
djm@openbsd.org2ea97462015-04-24 05:26:44 +00001339 if (D_flag || d_flag) {
1340 log_init(__progname,
1341 d_flag ? SYSLOG_LEVEL_DEBUG3 : SYSLOG_LEVEL_INFO,
1342 SYSLOG_FACILITY_AUTH, 1);
Ben Lindstromd94580c2001-07-04 03:48:02 +00001343 format = c_flag ? "setenv %s %s;\n" : "%s=%s; export %s;\n";
1344 printf(format, SSH_AUTHSOCKET_ENV_NAME, socket_name,
1345 SSH_AUTHSOCKET_ENV_NAME);
Ben Lindstromce0f6342002-06-11 16:42:49 +00001346 printf("echo Agent pid %ld;\n", (long)parent_pid);
dtucker@openbsd.org79394ed2015-12-11 02:29:03 +00001347 fflush(stdout);
Ben Lindstromd94580c2001-07-04 03:48:02 +00001348 goto skip;
1349 }
Damien Miller95def091999-11-25 00:26:21 +11001350 pid = fork();
1351 if (pid == -1) {
1352 perror("fork");
Damien Millerc653b892002-02-08 22:05:41 +11001353 cleanup_exit(1);
Damien Miller95def091999-11-25 00:26:21 +11001354 }
1355 if (pid != 0) { /* Parent - execute the given command. */
1356 close(sock);
Ben Lindstromce0f6342002-06-11 16:42:49 +00001357 snprintf(pidstrbuf, sizeof pidstrbuf, "%ld", (long)pid);
Damien Miller95def091999-11-25 00:26:21 +11001358 if (ac == 0) {
1359 format = c_flag ? "setenv %s %s;\n" : "%s=%s; export %s;\n";
1360 printf(format, SSH_AUTHSOCKET_ENV_NAME, socket_name,
Ben Lindstrom226cfa02001-01-22 05:34:40 +00001361 SSH_AUTHSOCKET_ENV_NAME);
Damien Miller95def091999-11-25 00:26:21 +11001362 printf(format, SSH_AGENTPID_ENV_NAME, pidstrbuf,
Ben Lindstrom226cfa02001-01-22 05:34:40 +00001363 SSH_AGENTPID_ENV_NAME);
Ben Lindstromce0f6342002-06-11 16:42:49 +00001364 printf("echo Agent pid %ld;\n", (long)pid);
Damien Miller95def091999-11-25 00:26:21 +11001365 exit(0);
1366 }
Damien Millere4340be2000-09-16 13:29:08 +11001367 if (setenv(SSH_AUTHSOCKET_ENV_NAME, socket_name, 1) == -1 ||
1368 setenv(SSH_AGENTPID_ENV_NAME, pidstrbuf, 1) == -1) {
1369 perror("setenv");
1370 exit(1);
1371 }
Damien Miller95def091999-11-25 00:26:21 +11001372 execvp(av[0], av);
1373 perror(av[0]);
1374 exit(1);
1375 }
Damien Millerc653b892002-02-08 22:05:41 +11001376 /* child */
1377 log_init(__progname, SYSLOG_LEVEL_INFO, SYSLOG_FACILITY_AUTH, 0);
Ben Lindstrom3fdf8762001-07-22 20:40:24 +00001378
1379 if (setsid() == -1) {
Damien Millerc653b892002-02-08 22:05:41 +11001380 error("setsid: %s", strerror(errno));
Ben Lindstrom3fdf8762001-07-22 20:40:24 +00001381 cleanup_exit(1);
1382 }
1383
1384 (void)chdir("/");
Damien Miller6c711792003-01-24 11:36:23 +11001385 if ((fd = open(_PATH_DEVNULL, O_RDWR, 0)) != -1) {
1386 /* XXX might close listen socket */
1387 (void)dup2(fd, STDIN_FILENO);
1388 (void)dup2(fd, STDOUT_FILENO);
1389 (void)dup2(fd, STDERR_FILENO);
1390 if (fd > 2)
1391 close(fd);
1392 }
Damien Miller95def091999-11-25 00:26:21 +11001393
Ben Lindstrom2c467a22000-12-27 04:57:41 +00001394#ifdef HAVE_SETRLIMIT
Ben Lindstromc72745a2000-12-02 19:03:54 +00001395 /* deny core dumps, since memory contains unencrypted private keys */
1396 rlim.rlim_cur = rlim.rlim_max = 0;
1397 if (setrlimit(RLIMIT_CORE, &rlim) < 0) {
Damien Millerc653b892002-02-08 22:05:41 +11001398 error("setrlimit RLIMIT_CORE: %s", strerror(errno));
Ben Lindstromc72745a2000-12-02 19:03:54 +00001399 cleanup_exit(1);
1400 }
Ben Lindstrom2c467a22000-12-27 04:57:41 +00001401#endif
Ben Lindstromd94580c2001-07-04 03:48:02 +00001402
1403skip:
Damien Miller7ea845e2010-02-12 09:21:02 +11001404
Damien Millerb1e967c2014-07-03 21:22:40 +10001405 cleanup_pid = getpid();
1406
Damien Miller7ea845e2010-02-12 09:21:02 +11001407#ifdef ENABLE_PKCS11
1408 pkcs11_init(0);
1409#endif
Damien Miller95def091999-11-25 00:26:21 +11001410 new_socket(AUTH_SOCKET, sock);
Darren Tucker2812dc92007-03-21 20:45:06 +11001411 if (ac > 0)
1412 parent_alive_interval = 10;
Damien Millerad833b32000-08-23 10:46:23 +10001413 idtab_init();
Damien Miller48bfa9c2001-07-14 12:12:55 +10001414 signal(SIGPIPE, SIG_IGN);
djm@openbsd.org2ea97462015-04-24 05:26:44 +00001415 signal(SIGINT, (d_flag | D_flag) ? cleanup_handler : SIG_IGN);
Ben Lindstrom77808ab2001-01-26 05:10:34 +00001416 signal(SIGHUP, cleanup_handler);
1417 signal(SIGTERM, cleanup_handler);
Ben Lindstroma3d5a4c2001-07-18 15:58:08 +00001418 nalloc = 0;
1419
doug@openbsd.org43849a42015-12-11 17:41:37 +00001420 if (pledge("stdio cpath unix id proc exec", NULL) == -1)
djm@openbsd.orgd9521622015-12-01 23:29:24 +00001421 fatal("%s: pledge: %s", __progname, strerror(errno));
Damien Miller4626cba2016-01-08 14:24:56 +11001422 platform_pledge_agent();
djm@openbsd.orgd9521622015-12-01 23:29:24 +00001423
Damien Miller95def091999-11-25 00:26:21 +11001424 while (1) {
Darren Tucker2812dc92007-03-21 20:45:06 +11001425 prepare_select(&readsetp, &writesetp, &max_fd, &nalloc, &tvp);
1426 result = select(max_fd + 1, readsetp, writesetp, NULL, tvp);
Darren Tuckercf0d2db2007-02-28 21:19:58 +11001427 saved_errno = errno;
Darren Tucker2812dc92007-03-21 20:45:06 +11001428 if (parent_alive_interval != 0)
1429 check_parent_exists();
1430 (void) reaper(); /* remove expired keys */
Darren Tuckercf0d2db2007-02-28 21:19:58 +11001431 if (result < 0) {
1432 if (saved_errno == EINTR)
Damien Miller95def091999-11-25 00:26:21 +11001433 continue;
Darren Tuckercf0d2db2007-02-28 21:19:58 +11001434 fatal("select: %s", strerror(saved_errno));
1435 } else if (result > 0)
1436 after_select(readsetp, writesetp);
Damien Miller95def091999-11-25 00:26:21 +11001437 }
1438 /* NOTREACHED */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001439}