blob: 1dca3e289f1e3f9667059aa1c4dfd12acc9e7889 [file] [log] [blame]
djm@openbsd.orgb1f383d2015-07-03 03:56:25 +00001/* $OpenBSD: ssh-keysign.c,v 1.49 2015/07/03 03:56:25 djm Exp $ */
Ben Lindstrom1bad2562002-06-06 19:57:33 +00002/*
3 * Copyright (c) 2002 Markus Friedl. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 *
14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
15 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
16 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
17 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
18 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
19 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
20 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
21 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
23 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24 */
Damien Millerd7834352006-08-05 12:39:39 +100025
Ben Lindstrom1bad2562002-06-06 19:57:33 +000026#include "includes.h"
Damien Miller03e20032006-03-15 11:16:59 +110027
Damien Miller57cf6382006-07-10 21:13:46 +100028#include <fcntl.h>
Damien Miller6645e7a2006-03-15 14:42:54 +110029#ifdef HAVE_PATHS_H
Damien Miller03e20032006-03-15 11:16:59 +110030#include <paths.h>
Damien Miller6645e7a2006-03-15 14:42:54 +110031#endif
Damien Miller9f2abc42006-07-10 20:53:08 +100032#include <pwd.h>
Damien Millerded319c2006-09-01 15:38:36 +100033#include <stdarg.h>
Damien Millere7a1e5c2006-08-05 11:34:19 +100034#include <stdlib.h>
Damien Millere3476ed2006-07-24 14:13:33 +100035#include <string.h>
Damien Millere6b3b612006-07-24 14:01:23 +100036#include <unistd.h>
Ben Lindstrom1bad2562002-06-06 19:57:33 +000037
Damien Miller72ef7c12015-01-15 02:21:31 +110038#ifdef WITH_OPENSSL
Ben Lindstrom1bad2562002-06-06 19:57:33 +000039#include <openssl/evp.h>
Ben Lindstrom43ce2c82002-07-04 00:17:33 +000040#include <openssl/rand.h>
41#include <openssl/rsa.h>
Damien Miller72ef7c12015-01-15 02:21:31 +110042#endif
Ben Lindstrom1bad2562002-06-06 19:57:33 +000043
Damien Millerd7834352006-08-05 12:39:39 +100044#include "xmalloc.h"
Ben Lindstrom1bad2562002-06-06 19:57:33 +000045#include "log.h"
djm@openbsd.org1129dcf2015-01-15 09:40:00 +000046#include "sshkey.h"
Ben Lindstrom5d35a2f2002-07-04 00:19:40 +000047#include "ssh.h"
Ben Lindstrom1bad2562002-06-06 19:57:33 +000048#include "ssh2.h"
49#include "misc.h"
djm@openbsd.org1129dcf2015-01-15 09:40:00 +000050#include "sshbuf.h"
Ben Lindstrom1bad2562002-06-06 19:57:33 +000051#include "authfile.h"
52#include "msg.h"
53#include "canohost.h"
54#include "pathnames.h"
Ben Lindstrom5d35a2f2002-07-04 00:19:40 +000055#include "readconf.h"
Darren Tucker25f60a72004-08-15 17:23:34 +100056#include "uidswap.h"
djm@openbsd.org1195f4c2015-01-08 10:14:08 +000057#include "sshkey.h"
58#include "ssherr.h"
Ben Lindstrom5d35a2f2002-07-04 00:19:40 +000059
Damien Millerade31d72015-01-27 23:06:23 +110060struct ssh *active_state = NULL; /* XXX needed for linking */
61
Damien Miller20a8f972003-05-18 20:50:30 +100062/* XXX readconf.c needs these */
63uid_t original_real_uid;
Ben Lindstrom1bad2562002-06-06 19:57:33 +000064
Ben Lindstrom35453522002-06-07 14:37:00 +000065extern char *__progname;
Ben Lindstrom35453522002-06-07 14:37:00 +000066
Ben Lindstrom1bad2562002-06-06 19:57:33 +000067static int
djm@openbsd.org1129dcf2015-01-15 09:40:00 +000068valid_request(struct passwd *pw, char *host, struct sshkey **ret,
69 u_char *data, size_t datalen)
Ben Lindstrom1bad2562002-06-06 19:57:33 +000070{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +000071 struct sshbuf *b;
72 struct sshkey *key = NULL;
73 u_char type, *pkblob;
74 char *p;
75 size_t blen, len;
76 char *pkalg, *luser;
77 int r, pktype, fail;
Ben Lindstrom1bad2562002-06-06 19:57:33 +000078
djm@openbsd.org1195f4c2015-01-08 10:14:08 +000079 if (ret != NULL)
80 *ret = NULL;
Ben Lindstrom1bad2562002-06-06 19:57:33 +000081 fail = 0;
82
djm@openbsd.org1129dcf2015-01-15 09:40:00 +000083 if ((b = sshbuf_from(data, datalen)) == NULL)
84 fatal("%s: sshbuf_from failed", __func__);
Ben Lindstromcb72e4f2002-06-21 00:41:51 +000085
Damien Miller603e68f2006-04-23 12:05:32 +100086 /* session id, currently limited to SHA1 (20 bytes) or SHA256 (32) */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +000087 if ((r = sshbuf_get_string(b, NULL, &len)) != 0)
88 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Miller603e68f2006-04-23 12:05:32 +100089 if (len != 20 && len != 32)
Ben Lindstroma2071572002-06-09 20:01:48 +000090 fail++;
Ben Lindstroma2071572002-06-09 20:01:48 +000091
djm@openbsd.org1129dcf2015-01-15 09:40:00 +000092 if ((r = sshbuf_get_u8(b, &type)) != 0)
93 fatal("%s: buffer error: %s", __func__, ssh_err(r));
94 if (type != SSH2_MSG_USERAUTH_REQUEST)
Ben Lindstrom1bad2562002-06-06 19:57:33 +000095 fail++;
96
97 /* server user */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +000098 if ((r = sshbuf_skip_string(b)) != 0)
99 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000100
101 /* service */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000102 if ((r = sshbuf_get_cstring(b, &p, NULL)) != 0)
103 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000104 if (strcmp("ssh-connection", p) != 0)
105 fail++;
Darren Tuckera627d422013-06-02 07:31:17 +1000106 free(p);
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000107
108 /* method */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000109 if ((r = sshbuf_get_cstring(b, &p, NULL)) != 0)
110 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000111 if (strcmp("hostbased", p) != 0)
112 fail++;
Darren Tuckera627d422013-06-02 07:31:17 +1000113 free(p);
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000114
115 /* pubkey */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000116 if ((r = sshbuf_get_cstring(b, &pkalg, NULL)) != 0 ||
117 (r = sshbuf_get_string(b, &pkblob, &blen)) != 0)
118 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000119
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000120 pktype = sshkey_type_from_name(pkalg);
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000121 if (pktype == KEY_UNSPEC)
122 fail++;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000123 else if ((r = sshkey_from_blob(pkblob, blen, &key)) != 0) {
124 error("%s: bad key blob: %s", __func__, ssh_err(r));
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000125 fail++;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000126 } else if (key->type != pktype)
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000127 fail++;
Darren Tuckera627d422013-06-02 07:31:17 +1000128 free(pkalg);
129 free(pkblob);
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000130
131 /* client host name, handle trailing dot */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000132 if ((r = sshbuf_get_cstring(b, &p, &len)) != 0)
133 fatal("%s: buffer error: %s", __func__, ssh_err(r));
134 debug2("%s: check expect chost %s got %s", __func__, host, p);
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000135 if (strlen(host) != len - 1)
136 fail++;
137 else if (p[len - 1] != '.')
Ben Lindstromcb72e4f2002-06-21 00:41:51 +0000138 fail++;
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000139 else if (strncasecmp(host, p, len - 1) != 0)
Ben Lindstromcb72e4f2002-06-21 00:41:51 +0000140 fail++;
Darren Tuckera627d422013-06-02 07:31:17 +1000141 free(p);
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000142
143 /* local user */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000144 if ((r = sshbuf_get_cstring(b, &luser, NULL)) != 0)
145 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000146
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000147 if (strcmp(pw->pw_name, luser) != 0)
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000148 fail++;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000149 free(luser);
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000150
151 /* end of message */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000152 if (sshbuf_len(b) != 0)
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000153 fail++;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000154 sshbuf_free(b);
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000155
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000156 debug3("%s: fail %d", __func__, fail);
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000157
158 if (fail && key != NULL)
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000159 sshkey_free(key);
markus@openbsd.org7d4f96f2015-03-24 20:09:11 +0000160 else if (ret != NULL)
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000161 *ret = key;
162
163 return (fail ? -1 : 0);
164}
165
166int
167main(int argc, char **argv)
168{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000169 struct sshbuf *b;
Ben Lindstrom5d35a2f2002-07-04 00:19:40 +0000170 Options options;
Damien Miller5be9d9e2013-12-07 11:24:01 +1100171#define NUM_KEYTYPES 4
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000172 struct sshkey *keys[NUM_KEYTYPES], *key = NULL;
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000173 struct passwd *pw;
djm@openbsd.org1195f4c2015-01-08 10:14:08 +0000174 int r, key_fd[NUM_KEYTYPES], i, found, version = 2, fd;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000175 u_char *signature, *data, rver;
Damien Millerfcd62c02014-04-20 13:23:21 +1000176 char *host, *fp;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000177 size_t slen, dlen;
Damien Miller72ef7c12015-01-15 02:21:31 +1100178#ifdef WITH_OPENSSL
Ben Lindstrom43ce2c82002-07-04 00:17:33 +0000179 u_int32_t rnd[256];
Damien Miller72ef7c12015-01-15 02:21:31 +1100180#endif
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000181
Darren Tuckerce321d82005-10-03 18:11:24 +1000182 /* Ensure that stdin and stdout are connected */
183 if ((fd = open(_PATH_DEVNULL, O_RDWR)) < 2)
184 exit(1);
185 /* Leave /dev/null fd iff it is attached to stderr */
186 if (fd > 2)
187 close(fd);
188
Damien Miller0588beb2011-02-18 09:18:45 +1100189 i = 0;
djm@openbsd.orgb1f383d2015-07-03 03:56:25 +0000190 /* XXX This really needs to read sshd_config for the paths */
Damien Miller0588beb2011-02-18 09:18:45 +1100191 key_fd[i++] = open(_PATH_HOST_DSA_KEY_FILE, O_RDONLY);
192 key_fd[i++] = open(_PATH_HOST_ECDSA_KEY_FILE, O_RDONLY);
Damien Miller5be9d9e2013-12-07 11:24:01 +1100193 key_fd[i++] = open(_PATH_HOST_ED25519_KEY_FILE, O_RDONLY);
Damien Miller0588beb2011-02-18 09:18:45 +1100194 key_fd[i++] = open(_PATH_HOST_RSA_KEY_FILE, O_RDONLY);
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000195
Darren Tucker34620d62004-08-29 16:32:59 +1000196 original_real_uid = getuid(); /* XXX readconf.c needs this */
197 if ((pw = getpwuid(original_real_uid)) == NULL)
Darren Tucker25f60a72004-08-15 17:23:34 +1000198 fatal("getpwuid failed");
199 pw = pwcopy(pw);
200
201 permanently_set_uid(pw);
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000202
Ben Lindstrom5a6abda2002-06-09 19:41:48 +0000203 seed_rng();
Ben Lindstromdb41d232002-06-07 03:11:38 +0000204
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000205#ifdef DEBUG_SSH_KEYSIGN
206 log_init("ssh-keysign", SYSLOG_LEVEL_DEBUG3, SYSLOG_FACILITY_AUTH, 0);
Ben Lindstromcb72e4f2002-06-21 00:41:51 +0000207#endif
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000208
Ben Lindstrom5d35a2f2002-07-04 00:19:40 +0000209 /* verify that ssh-keysign is enabled by the admin */
Ben Lindstrom5d35a2f2002-07-04 00:19:40 +0000210 initialize_options(&options);
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000211 (void)read_config_file(_PATH_HOST_CONFIG_FILE, pw, "", "", &options, 0);
Ben Lindstrom5d35a2f2002-07-04 00:19:40 +0000212 fill_default_options(&options);
Ben Lindstromb6df73b2002-11-09 15:52:31 +0000213 if (options.enable_ssh_keysign != 1)
214 fatal("ssh-keysign not enabled in %s",
Ben Lindstrom5d35a2f2002-07-04 00:19:40 +0000215 _PATH_HOST_CONFIG_FILE);
216
Damien Miller0588beb2011-02-18 09:18:45 +1100217 for (i = found = 0; i < NUM_KEYTYPES; i++) {
218 if (key_fd[i] != -1)
219 found = 1;
220 }
221 if (found == 0)
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000222 fatal("could not open any host key");
223
Damien Miller72ef7c12015-01-15 02:21:31 +1100224#ifdef WITH_OPENSSL
Damien Miller4314c2b2010-09-10 11:12:09 +1000225 OpenSSL_add_all_algorithms();
Damien Millerfcd62c02014-04-20 13:23:21 +1000226 arc4random_buf(rnd, sizeof(rnd));
Ben Lindstrom43ce2c82002-07-04 00:17:33 +0000227 RAND_seed(rnd, sizeof(rnd));
Damien Miller72ef7c12015-01-15 02:21:31 +1100228#endif
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000229
230 found = 0;
Damien Miller0588beb2011-02-18 09:18:45 +1100231 for (i = 0; i < NUM_KEYTYPES; i++) {
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000232 keys[i] = NULL;
233 if (key_fd[i] == -1)
234 continue;
djm@openbsd.org1195f4c2015-01-08 10:14:08 +0000235 r = sshkey_load_private_type_fd(key_fd[i], KEY_UNSPEC,
236 NULL, &key, NULL);
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000237 close(key_fd[i]);
djm@openbsd.org1195f4c2015-01-08 10:14:08 +0000238 if (r != 0)
239 debug("parse key %d: %s", i, ssh_err(r));
240 else if (key != NULL) {
241 keys[i] = key;
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000242 found = 1;
djm@openbsd.org1195f4c2015-01-08 10:14:08 +0000243 }
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000244 }
245 if (!found)
246 fatal("no hostkey found");
247
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000248 if ((b = sshbuf_new()) == NULL)
249 fatal("%s: sshbuf_new failed", __func__);
250 if (ssh_msg_recv(STDIN_FILENO, b) < 0)
Damien Miller901119b2002-10-04 11:10:04 +1000251 fatal("ssh_msg_recv failed");
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000252 if ((r = sshbuf_get_u8(b, &rver)) != 0)
253 fatal("%s: buffer error: %s", __func__, ssh_err(r));
254 if (rver != version)
255 fatal("bad version: received %d, expected %d", rver, version);
256 if ((r = sshbuf_get_u32(b, (u_int *)&fd)) != 0)
257 fatal("%s: buffer error: %s", __func__, ssh_err(r));
258 if (fd < 0 || fd == STDIN_FILENO || fd == STDOUT_FILENO)
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000259 fatal("bad fd");
260 if ((host = get_local_name(fd)) == NULL)
Darren Tuckerdaaa4502010-01-13 22:43:33 +1100261 fatal("cannot get local name for fd");
Ben Lindstromcb72e4f2002-06-21 00:41:51 +0000262
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000263 if ((r = sshbuf_get_string(b, &data, &dlen)) != 0)
264 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000265 if (valid_request(pw, host, &key, data, dlen) < 0)
266 fatal("not a valid request");
Darren Tuckera627d422013-06-02 07:31:17 +1000267 free(host);
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000268
269 found = 0;
Damien Miller0588beb2011-02-18 09:18:45 +1100270 for (i = 0; i < NUM_KEYTYPES; i++) {
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000271 if (keys[i] != NULL &&
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000272 sshkey_equal_public(key, keys[i])) {
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000273 found = 1;
274 break;
275 }
276 }
Damien Millerfcd62c02014-04-20 13:23:21 +1000277 if (!found) {
djm@openbsd.org9ce86c92015-01-28 22:36:00 +0000278 if ((fp = sshkey_fingerprint(key, options.fingerprint_hash,
279 SSH_FP_DEFAULT)) == NULL)
280 fatal("%s: sshkey_fingerprint failed", __func__);
Damien Millerfcd62c02014-04-20 13:23:21 +1000281 fatal("no matching hostkey found for key %s %s",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000282 sshkey_type(key), fp ? fp : "");
Damien Millerfcd62c02014-04-20 13:23:21 +1000283 }
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000284
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000285 if ((r = sshkey_sign(keys[i], &signature, &slen, data, dlen, 0)) != 0)
286 fatal("sshkey_sign failed: %s", ssh_err(r));
Darren Tuckera627d422013-06-02 07:31:17 +1000287 free(data);
Ben Lindstromcb72e4f2002-06-21 00:41:51 +0000288
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000289 /* send reply */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000290 sshbuf_reset(b);
291 if ((r = sshbuf_put_string(b, signature, slen)) != 0)
292 fatal("%s: buffer error: %s", __func__, ssh_err(r));
293 if (ssh_msg_send(STDOUT_FILENO, version, b) == -1)
Damien Miller51bf11f2003-11-17 21:20:47 +1100294 fatal("ssh_msg_send failed");
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000295
296 return (0);
297}