blob: 0d6ed1fff2c55520872bd3c3d5119b15506ffe6e [file] [log] [blame]
djm@openbsd.orgfd68dc22020-02-07 03:27:54 +00001/* $OpenBSD: ssh-keygen.c,v 1.398 2020/02/07 03:27:54 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) 1994 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5 * All rights reserved
Damien Miller95def091999-11-25 00:26:21 +11006 * Identity and host key generation and maintenance.
Damien Millere4340be2000-09-16 13:29:08 +11007 *
8 * 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".
Damien Miller95def091999-11-25 00:26:21 +110013 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100014
15#include "includes.h"
Damien Millerf17883e2006-03-15 11:45:54 +110016
17#include <sys/types.h>
Damien Millere3b60b52006-07-10 21:08:03 +100018#include <sys/socket.h>
Damien Millerf17883e2006-03-15 11:45:54 +110019#include <sys/stat.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100020
Damien Miller72ef7c12015-01-15 02:21:31 +110021#ifdef WITH_OPENSSL
Damien Millereba71ba2000-04-29 23:57:08 +100022#include <openssl/evp.h>
23#include <openssl/pem.h>
Darren Tuckerbfaaf962008-02-28 19:13:52 +110024#include "openbsd-compat/openssl-compat.h"
Damien Miller72ef7c12015-01-15 02:21:31 +110025#endif
Damien Millereba71ba2000-04-29 23:57:08 +100026
Damien Millercfc18972019-10-09 09:06:35 +110027#ifdef HAVE_STDINT_H
28# include <stdint.h>
29#endif
Darren Tucker39972492006-07-12 22:22:46 +100030#include <errno.h>
Damien Miller57cf6382006-07-10 21:13:46 +100031#include <fcntl.h>
Damien Millerb8fe89c2006-07-24 14:51:00 +100032#include <netdb.h>
Darren Tucker2ee50c52006-07-11 18:55:05 +100033#ifdef HAVE_PATHS_H
34# include <paths.h>
35#endif
Damien Miller9f2abc42006-07-10 20:53:08 +100036#include <pwd.h>
Damien Millerded319c2006-09-01 15:38:36 +100037#include <stdarg.h>
Damien Millera7a73ee2006-08-05 11:37:59 +100038#include <stdio.h>
Damien Millere7a1e5c2006-08-05 11:34:19 +100039#include <stdlib.h>
Damien Millere3476ed2006-07-24 14:13:33 +100040#include <string.h>
Damien Millere6b3b612006-07-24 14:01:23 +100041#include <unistd.h>
deraadt@openbsd.org2ae4f332015-01-16 06:40:12 +000042#include <limits.h>
djm@openbsd.orga287c5a2017-02-10 03:36:40 +000043#include <locale.h>
Damien Miller4d3b2f32018-07-12 14:49:14 +100044#include <time.h>
Damien Miller9f2abc42006-07-10 20:53:08 +100045
Damien Millerd4a8b7e1999-10-27 13:42:43 +100046#include "xmalloc.h"
djm@openbsd.org1129dcf2015-01-15 09:40:00 +000047#include "sshkey.h"
Damien Millereba71ba2000-04-29 23:57:08 +100048#include "authfile.h"
djm@openbsd.org1129dcf2015-01-15 09:40:00 +000049#include "sshbuf.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000050#include "pathnames.h"
51#include "log.h"
Darren Tuckere608ca22004-05-13 16:15:47 +100052#include "misc.h"
Damien Miller4b42d7f2005-03-01 21:48:35 +110053#include "match.h"
54#include "hostfile.h"
Damien Miller69996102006-07-10 20:53:31 +100055#include "dns.h"
Damien Millerf3747bf2013-01-18 11:44:04 +110056#include "ssh.h"
Damien Miller0a80ca12010-02-27 07:55:05 +110057#include "ssh2.h"
djm@openbsd.org1129dcf2015-01-15 09:40:00 +000058#include "ssherr.h"
Damien Miller7ea845e2010-02-12 09:21:02 +110059#include "ssh-pkcs11.h"
Damien Millerf3747bf2013-01-18 11:44:04 +110060#include "atomicio.h"
61#include "krl.h"
djm@openbsd.org56d1c832014-12-21 22:27:55 +000062#include "digest.h"
djm@openbsd.orga287c5a2017-02-10 03:36:40 +000063#include "utf8.h"
djm@openbsd.orga98339e2017-06-28 01:09:22 +000064#include "authfd.h"
djm@openbsd.org2a9c9f72019-09-03 08:34:19 +000065#include "sshsig.h"
djm@openbsd.org23f38c22019-10-31 21:17:09 +000066#include "ssh-sk.h"
67#include "sk-api.h" /* XXX for SSH_SK_USER_PRESENCE_REQD; remove */
Ben Lindstromcd392282001-07-04 03:44:03 +000068
djm@openbsd.orgd1958792015-05-28 04:40:13 +000069#ifdef WITH_OPENSSL
70# define DEFAULT_KEY_TYPE_NAME "rsa"
71#else
72# define DEFAULT_KEY_TYPE_NAME "ed25519"
73#endif
74
dtucker@openbsd.orgf47269e2019-03-25 15:49:00 +000075/*
dtucker@openbsd.org26e0cef2019-03-25 16:19:44 +000076 * Default number of bits in the RSA, DSA and ECDSA keys. These value can be
77 * overridden on the command line.
78 *
79 * These values, with the exception of DSA, provide security equivalent to at
80 * least 128 bits of security according to NIST Special Publication 800-57:
81 * Recommendation for Key Management Part 1 rev 4 section 5.6.1.
82 * For DSA it (and FIPS-186-4 section 4.2) specifies that the only size for
83 * which a 160bit hash is acceptable is 1kbit, and since ssh-dss specifies only
84 * SHA1 we limit the DSA key size 1k bits.
dtucker@openbsd.orgf47269e2019-03-25 15:49:00 +000085 */
86#define DEFAULT_BITS 3072
Damien Miller3f54a9f2005-11-05 14:52:18 +110087#define DEFAULT_BITS_DSA 1024
Damien Miller6e9f6802010-09-10 11:17:38 +100088#define DEFAULT_BITS_ECDSA 256
Damien Millerd4a8b7e1999-10-27 13:42:43 +100089
djm@openbsd.org851f8032019-01-23 04:16:22 +000090static int quiet = 0;
Damien Millerf2b70ca2010-03-05 07:39:35 +110091
Damien Miller10f6f6b1999-11-17 17:29:08 +110092/* Flag indicating that we just want to see the key fingerprint */
djm@openbsd.org851f8032019-01-23 04:16:22 +000093static int print_fingerprint = 0;
94static int print_bubblebabble = 0;
Damien Miller10f6f6b1999-11-17 17:29:08 +110095
djm@openbsd.org56d1c832014-12-21 22:27:55 +000096/* Hash algorithm to use for fingerprints. */
djm@openbsd.org851f8032019-01-23 04:16:22 +000097static int fingerprint_hash = SSH_FP_HASH_DEFAULT;
djm@openbsd.org56d1c832014-12-21 22:27:55 +000098
Damien Miller431f66b1999-11-21 18:31:57 +110099/* The identity file name, given on the command line or entered by the user. */
deraadt@openbsd.org3e53ef22019-09-24 12:50:46 +0000100static char identity_file[PATH_MAX];
djm@openbsd.org851f8032019-01-23 04:16:22 +0000101static int have_identity = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000102
103/* This is set to the passphrase if given on the command line. */
djm@openbsd.org851f8032019-01-23 04:16:22 +0000104static char *identity_passphrase = NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000105
106/* This is set to the new passphrase if given on the command line. */
djm@openbsd.org851f8032019-01-23 04:16:22 +0000107static char *identity_new_passphrase = NULL;
Damien Miller4e270b02010-04-16 15:56:21 +1000108
Damien Miller0a80ca12010-02-27 07:55:05 +1100109/* Key type when certifying */
djm@openbsd.org851f8032019-01-23 04:16:22 +0000110static u_int cert_key_type = SSH2_CERT_TYPE_USER;
Damien Miller0a80ca12010-02-27 07:55:05 +1100111
112/* "key ID" of signed key */
djm@openbsd.org851f8032019-01-23 04:16:22 +0000113static char *cert_key_id = NULL;
Damien Miller0a80ca12010-02-27 07:55:05 +1100114
115/* Comma-separated list of principal names for certifying keys */
djm@openbsd.org851f8032019-01-23 04:16:22 +0000116static char *cert_principals = NULL;
Damien Miller0a80ca12010-02-27 07:55:05 +1100117
118/* Validity period for certificates */
djm@openbsd.org851f8032019-01-23 04:16:22 +0000119static u_int64_t cert_valid_from = 0;
120static u_int64_t cert_valid_to = ~0ULL;
Damien Miller0a80ca12010-02-27 07:55:05 +1100121
Damien Miller4e270b02010-04-16 15:56:21 +1000122/* Certificate options */
djm@openbsd.org2e712632019-11-25 00:54:23 +0000123#define CERTOPT_X_FWD (1)
124#define CERTOPT_AGENT_FWD (1<<1)
125#define CERTOPT_PORT_FWD (1<<2)
126#define CERTOPT_PTY (1<<3)
127#define CERTOPT_USER_RC (1<<4)
128#define CERTOPT_NO_REQUIRE_USER_PRESENCE (1<<5)
Damien Millerd0e4a8e2010-05-21 14:58:32 +1000129#define CERTOPT_DEFAULT (CERTOPT_X_FWD|CERTOPT_AGENT_FWD| \
130 CERTOPT_PORT_FWD|CERTOPT_PTY|CERTOPT_USER_RC)
djm@openbsd.org851f8032019-01-23 04:16:22 +0000131static u_int32_t certflags_flags = CERTOPT_DEFAULT;
132static char *certflags_command = NULL;
133static char *certflags_src_addr = NULL;
Damien Miller0a80ca12010-02-27 07:55:05 +1100134
djm@openbsd.org249516e2017-04-29 04:12:25 +0000135/* Arbitrary extensions specified by user */
136struct cert_userext {
137 char *key;
138 char *val;
139 int crit;
140};
djm@openbsd.org851f8032019-01-23 04:16:22 +0000141static struct cert_userext *cert_userext;
142static size_t ncert_userext;
djm@openbsd.org249516e2017-04-29 04:12:25 +0000143
Damien Miller44b25042010-07-02 13:35:01 +1000144/* Conversion to/from various formats */
Damien Miller44b25042010-07-02 13:35:01 +1000145enum {
146 FMT_RFC4716,
147 FMT_PKCS8,
148 FMT_PEM
149} convert_format = FMT_RFC4716;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100150
djm@openbsd.org851f8032019-01-23 04:16:22 +0000151static char *key_type_name = NULL;
Damien Millereba71ba2000-04-29 23:57:08 +1000152
Damien Miller757f34e2010-08-05 13:05:31 +1000153/* Load key from this PKCS#11 provider */
djm@openbsd.org851f8032019-01-23 04:16:22 +0000154static char *pkcs11provider = NULL;
Damien Miller44b25042010-07-02 13:35:01 +1000155
djm@openbsd.org23f38c22019-10-31 21:17:09 +0000156/* FIDO/U2F provider to use */
157static char *sk_provider = NULL;
158
djm@openbsd.orgeb0d8e72019-07-15 13:16:29 +0000159/* Format for writing private keys */
160static int private_key_format = SSHKEY_PRIVATE_OPENSSH;
Damien Millerbcd00ab2013-12-07 10:41:55 +1100161
162/* Cipher for new-format private keys */
djm@openbsd.orgeb0d8e72019-07-15 13:16:29 +0000163static char *openssh_format_cipher = NULL;
Damien Millerbcd00ab2013-12-07 10:41:55 +1100164
djm@openbsd.org3e60d182019-12-30 03:30:09 +0000165/* Number of KDF rounds to derive new format keys. */
djm@openbsd.org851f8032019-01-23 04:16:22 +0000166static int rounds = 0;
Damien Millerbcd00ab2013-12-07 10:41:55 +1100167
Damien Miller431f66b1999-11-21 18:31:57 +1100168/* argv0 */
169extern char *__progname;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000170
djm@openbsd.org851f8032019-01-23 04:16:22 +0000171static char hostname[NI_MAXHOST];
Damien Millereba71ba2000-04-29 23:57:08 +1000172
djm@openbsd.org1d9a2e22015-05-28 07:37:31 +0000173#ifdef WITH_OPENSSL
Darren Tucker770fc012004-05-13 16:24:32 +1000174/* moduli.c */
Damien Millerb089fb52005-05-26 12:16:18 +1000175int gen_candidates(FILE *, u_int32_t, u_int32_t, BIGNUM *);
Damien Millerdfceafe2012-07-06 13:44:19 +1000176int prime_test(FILE *, FILE *, u_int32_t, u_int32_t, char *, unsigned long,
177 unsigned long);
djm@openbsd.org1d9a2e22015-05-28 07:37:31 +0000178#endif
Darren Tucker770fc012004-05-13 16:24:32 +1000179
Ben Lindstrombba81212001-06-25 05:01:22 +0000180static void
djm@openbsd.org7efb4552015-01-18 13:22:28 +0000181type_bits_valid(int type, const char *name, u_int32_t *bitsp)
Damien Miller58f1baf2011-05-05 14:06:15 +1000182{
djm@openbsd.org3038a192015-04-17 13:19:22 +0000183 if (type == KEY_UNSPEC)
184 fatal("unknown key type %s", key_type_name);
Damien Miller884b63a2011-05-05 14:14:52 +1000185 if (*bitsp == 0) {
Damien Miller773dda22015-01-30 23:10:17 +1100186#ifdef WITH_OPENSSL
naddy@openbsd.orgc31e4f52019-08-05 21:45:27 +0000187 u_int nid;
188
189 switch(type) {
190 case KEY_DSA:
Damien Miller884b63a2011-05-05 14:14:52 +1000191 *bitsp = DEFAULT_BITS_DSA;
naddy@openbsd.orgc31e4f52019-08-05 21:45:27 +0000192 break;
193 case KEY_ECDSA:
djm@openbsd.org7efb4552015-01-18 13:22:28 +0000194 if (name != NULL &&
195 (nid = sshkey_ecdsa_nid_from_name(name)) > 0)
196 *bitsp = sshkey_curve_nid_to_bits(nid);
197 if (*bitsp == 0)
198 *bitsp = DEFAULT_BITS_ECDSA;
naddy@openbsd.orgc31e4f52019-08-05 21:45:27 +0000199 break;
200 case KEY_RSA:
Damien Miller884b63a2011-05-05 14:14:52 +1000201 *bitsp = DEFAULT_BITS;
naddy@openbsd.orgc31e4f52019-08-05 21:45:27 +0000202 break;
203 }
204#endif
Damien Miller58f1baf2011-05-05 14:06:15 +1000205 }
Damien Miller72ef7c12015-01-15 02:21:31 +1100206#ifdef WITH_OPENSSL
djm@openbsd.orgbd636f42017-05-07 23:15:59 +0000207 switch (type) {
208 case KEY_DSA:
209 if (*bitsp != 1024)
210 fatal("Invalid DSA key length: must be 1024 bits");
211 break;
212 case KEY_RSA:
213 if (*bitsp < SSH_RSA_MINIMUM_MODULUS_SIZE)
214 fatal("Invalid RSA key length: minimum is %d bits",
215 SSH_RSA_MINIMUM_MODULUS_SIZE);
naddy@openbsd.orgc31e4f52019-08-05 21:45:27 +0000216 else if (*bitsp > OPENSSL_RSA_MAX_MODULUS_BITS)
217 fatal("Invalid RSA key length: maximum is %d bits",
218 OPENSSL_RSA_MAX_MODULUS_BITS);
djm@openbsd.orgbd636f42017-05-07 23:15:59 +0000219 break;
220 case KEY_ECDSA:
221 if (sshkey_ecdsa_bits_to_nid(*bitsp) == -1)
222 fatal("Invalid ECDSA key length: valid lengths are "
Manoj Ampalam9b47b082018-11-08 22:41:59 -0800223#ifdef OPENSSL_HAS_NISTP521
djm@openbsd.orgbd636f42017-05-07 23:15:59 +0000224 "256, 384 or 521 bits");
Manoj Ampalam9b47b082018-11-08 22:41:59 -0800225#else
226 "256 or 384 bits");
227#endif
djm@openbsd.orgbd636f42017-05-07 23:15:59 +0000228 }
Damien Miller1f0311c2014-05-15 14:24:09 +1000229#endif
Damien Miller58f1baf2011-05-05 14:06:15 +1000230}
231
djm@openbsd.org85443f12019-09-03 08:27:52 +0000232/*
233 * Checks whether a file exists and, if so, asks the user whether they wish
234 * to overwrite it.
235 * Returns nonzero if the file does not already exist or if the user agrees to
236 * overwrite, or zero otherwise.
237 */
238static int
239confirm_overwrite(const char *filename)
240{
241 char yesno[3];
242 struct stat st;
243
244 if (stat(filename, &st) != 0)
245 return 1;
246 printf("%s already exists.\n", filename);
247 printf("Overwrite (y/n)? ");
248 fflush(stdout);
249 if (fgets(yesno, sizeof(yesno), stdin) == NULL)
250 return 0;
251 if (yesno[0] != 'y' && yesno[0] != 'Y')
252 return 0;
253 return 1;
254}
255
Damien Miller58f1baf2011-05-05 14:06:15 +1000256static void
Damien Miller431f66b1999-11-21 18:31:57 +1100257ask_filename(struct passwd *pw, const char *prompt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000258{
Damien Miller95def091999-11-25 00:26:21 +1100259 char buf[1024];
Damien Millere39cacc2000-11-29 12:18:44 +1100260 char *name = NULL;
261
Damien Miller993dd552002-02-19 15:22:47 +1100262 if (key_type_name == NULL)
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000263 name = _PATH_SSH_CLIENT_ID_RSA;
Damien Miller90967402006-03-26 14:07:26 +1100264 else {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000265 switch (sshkey_type_from_name(key_type_name)) {
Damien Miller4e270b02010-04-16 15:56:21 +1000266 case KEY_DSA_CERT:
Damien Miller993dd552002-02-19 15:22:47 +1100267 case KEY_DSA:
268 name = _PATH_SSH_CLIENT_ID_DSA;
269 break;
Damien Millerdd190dd2010-11-11 14:17:02 +1100270#ifdef OPENSSL_HAS_ECC
Damien Millereb8b60e2010-08-31 22:41:14 +1000271 case KEY_ECDSA_CERT:
272 case KEY_ECDSA:
273 name = _PATH_SSH_CLIENT_ID_ECDSA;
274 break;
djm@openbsd.org23f38c22019-10-31 21:17:09 +0000275 case KEY_ECDSA_SK_CERT:
276 case KEY_ECDSA_SK:
277 name = _PATH_SSH_CLIENT_ID_ECDSA_SK;
278 break;
Damien Millerdd190dd2010-11-11 14:17:02 +1100279#endif
Damien Miller4e270b02010-04-16 15:56:21 +1000280 case KEY_RSA_CERT:
Damien Miller993dd552002-02-19 15:22:47 +1100281 case KEY_RSA:
282 name = _PATH_SSH_CLIENT_ID_RSA;
283 break;
Damien Miller5be9d9e2013-12-07 11:24:01 +1100284 case KEY_ED25519:
285 case KEY_ED25519_CERT:
286 name = _PATH_SSH_CLIENT_ID_ED25519;
287 break;
markus@openbsd.org2c557442019-11-12 19:33:08 +0000288 case KEY_ED25519_SK:
289 case KEY_ED25519_SK_CERT:
290 name = _PATH_SSH_CLIENT_ID_ED25519_SK;
291 break;
markus@openbsd.org1b11ea72018-02-23 15:58:37 +0000292 case KEY_XMSS:
293 case KEY_XMSS_CERT:
294 name = _PATH_SSH_CLIENT_ID_XMSS;
295 break;
Damien Miller993dd552002-02-19 15:22:47 +1100296 default:
djm@openbsd.org3038a192015-04-17 13:19:22 +0000297 fatal("bad key type");
Damien Miller993dd552002-02-19 15:22:47 +1100298 }
Damien Miller90967402006-03-26 14:07:26 +1100299 }
djm@openbsd.org3038a192015-04-17 13:19:22 +0000300 snprintf(identity_file, sizeof(identity_file),
301 "%s/%s", pw->pw_dir, name);
302 printf("%s (%s): ", prompt, identity_file);
303 fflush(stdout);
Damien Miller95def091999-11-25 00:26:21 +1100304 if (fgets(buf, sizeof(buf), stdin) == NULL)
305 exit(1);
Damien Miller14b017d2007-09-17 16:09:15 +1000306 buf[strcspn(buf, "\n")] = '\0';
Damien Miller95def091999-11-25 00:26:21 +1100307 if (strcmp(buf, "") != 0)
308 strlcpy(identity_file, buf, sizeof(identity_file));
309 have_identity = 1;
Damien Miller10f6f6b1999-11-17 17:29:08 +1100310}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000311
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000312static struct sshkey *
djm@openbsd.org9a396e32019-09-02 23:46:46 +0000313load_identity(const char *filename, char **commentp)
Damien Millereba71ba2000-04-29 23:57:08 +1000314{
Ben Lindstromd0fca422001-03-26 13:44:06 +0000315 char *pass;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000316 struct sshkey *prv;
317 int r;
Ben Lindstromd0fca422001-03-26 13:44:06 +0000318
djm@openbsd.org07133222019-09-01 23:47:32 +0000319 if (commentp != NULL)
320 *commentp = NULL;
321 if ((r = sshkey_load_private(filename, "", &prv, commentp)) == 0)
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000322 return prv;
323 if (r != SSH_ERR_KEY_WRONG_PASSPHRASE)
324 fatal("Load key \"%s\": %s", filename, ssh_err(r));
325 if (identity_passphrase)
326 pass = xstrdup(identity_passphrase);
327 else
328 pass = read_passphrase("Enter passphrase: ", RP_ALLOW_STDIN);
djm@openbsd.org07133222019-09-01 23:47:32 +0000329 r = sshkey_load_private(filename, pass, &prv, commentp);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000330 explicit_bzero(pass, strlen(pass));
331 free(pass);
332 if (r != 0)
333 fatal("Load key \"%s\": %s", filename, ssh_err(r));
Ben Lindstromd0fca422001-03-26 13:44:06 +0000334 return prv;
Damien Millereba71ba2000-04-29 23:57:08 +1000335}
336
Damien Miller874d77b2000-10-14 16:23:11 +1100337#define SSH_COM_PUBLIC_BEGIN "---- BEGIN SSH2 PUBLIC KEY ----"
Ben Lindstromcb72e4f2002-06-21 00:41:51 +0000338#define SSH_COM_PUBLIC_END "---- END SSH2 PUBLIC KEY ----"
Damien Miller874d77b2000-10-14 16:23:11 +1100339#define SSH_COM_PRIVATE_BEGIN "---- BEGIN SSH2 ENCRYPTED PRIVATE KEY ----"
Kevin Stevesef4eea92001-02-05 12:42:17 +0000340#define SSH_COM_PRIVATE_KEY_MAGIC 0x3f6ff9eb
Damien Millereba71ba2000-04-29 23:57:08 +1000341
Damien Miller1f0311c2014-05-15 14:24:09 +1000342#ifdef WITH_OPENSSL
Ben Lindstrombba81212001-06-25 05:01:22 +0000343static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000344do_convert_to_ssh2(struct passwd *pw, struct sshkey *k)
Damien Millereba71ba2000-04-29 23:57:08 +1000345{
djm@openbsd.org16dd8b22019-07-16 13:18:39 +0000346 struct sshbuf *b;
347 char comment[61], *b64;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000348 int r;
Damien Millereba71ba2000-04-29 23:57:08 +1000349
djm@openbsd.org16dd8b22019-07-16 13:18:39 +0000350 if ((b = sshbuf_new()) == NULL)
351 fatal("%s: sshbuf_new failed", __func__);
352 if ((r = sshkey_putb(k, b)) != 0)
djm@openbsd.org3038a192015-04-17 13:19:22 +0000353 fatal("key_to_blob failed: %s", ssh_err(r));
djm@openbsd.org16dd8b22019-07-16 13:18:39 +0000354 if ((b64 = sshbuf_dtob64_string(b, 1)) == NULL)
355 fatal("%s: sshbuf_dtob64_string failed", __func__);
356
Darren Tuckerd04758d2010-01-12 19:41:57 +1100357 /* Comment + surrounds must fit into 72 chars (RFC 4716 sec 3.3) */
358 snprintf(comment, sizeof(comment),
359 "%u-bit %s, converted by %s@%s from OpenSSH",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000360 sshkey_size(k), sshkey_type(k),
Damien Millereba71ba2000-04-29 23:57:08 +1000361 pw->pw_name, hostname);
Darren Tuckerd04758d2010-01-12 19:41:57 +1100362
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000363 sshkey_free(k);
djm@openbsd.org16dd8b22019-07-16 13:18:39 +0000364 sshbuf_free(b);
365
366 fprintf(stdout, "%s\n", SSH_COM_PUBLIC_BEGIN);
367 fprintf(stdout, "Comment: \"%s\"\n%s", comment, b64);
368 fprintf(stdout, "%s\n", SSH_COM_PUBLIC_END);
369 free(b64);
Damien Millereba71ba2000-04-29 23:57:08 +1000370 exit(0);
371}
372
Ben Lindstrombba81212001-06-25 05:01:22 +0000373static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000374do_convert_to_pkcs8(struct sshkey *k)
Damien Miller44b25042010-07-02 13:35:01 +1000375{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000376 switch (sshkey_type_plain(k->type)) {
Damien Miller44b25042010-07-02 13:35:01 +1000377 case KEY_RSA:
378 if (!PEM_write_RSA_PUBKEY(stdout, k->rsa))
379 fatal("PEM_write_RSA_PUBKEY failed");
380 break;
381 case KEY_DSA:
382 if (!PEM_write_DSA_PUBKEY(stdout, k->dsa))
383 fatal("PEM_write_DSA_PUBKEY failed");
384 break;
Damien Miller6af914a2010-09-10 11:39:26 +1000385#ifdef OPENSSL_HAS_ECC
Damien Millereb8b60e2010-08-31 22:41:14 +1000386 case KEY_ECDSA:
387 if (!PEM_write_EC_PUBKEY(stdout, k->ecdsa))
388 fatal("PEM_write_EC_PUBKEY failed");
389 break;
Damien Miller6af914a2010-09-10 11:39:26 +1000390#endif
Damien Miller44b25042010-07-02 13:35:01 +1000391 default:
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000392 fatal("%s: unsupported key type %s", __func__, sshkey_type(k));
Damien Miller44b25042010-07-02 13:35:01 +1000393 }
394 exit(0);
395}
396
397static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000398do_convert_to_pem(struct sshkey *k)
Damien Miller44b25042010-07-02 13:35:01 +1000399{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000400 switch (sshkey_type_plain(k->type)) {
Damien Miller44b25042010-07-02 13:35:01 +1000401 case KEY_RSA:
402 if (!PEM_write_RSAPublicKey(stdout, k->rsa))
403 fatal("PEM_write_RSAPublicKey failed");
404 break;
djm@openbsd.org8dfb6a22020-01-24 00:00:31 +0000405 case KEY_DSA:
406 if (!PEM_write_DSA_PUBKEY(stdout, k->dsa))
407 fatal("PEM_write_DSA_PUBKEY failed");
408 break;
Darren Tuckere16dfa92020-01-25 13:05:42 +1100409#ifdef OPENSSL_HAS_ECC
djm@openbsd.org8dfb6a22020-01-24 00:00:31 +0000410 case KEY_ECDSA:
411 if (!PEM_write_EC_PUBKEY(stdout, k->ecdsa))
412 fatal("PEM_write_EC_PUBKEY failed");
413 break;
Darren Tuckere16dfa92020-01-25 13:05:42 +1100414#endif
Damien Miller44b25042010-07-02 13:35:01 +1000415 default:
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000416 fatal("%s: unsupported key type %s", __func__, sshkey_type(k));
Damien Miller44b25042010-07-02 13:35:01 +1000417 }
418 exit(0);
419}
420
421static void
422do_convert_to(struct passwd *pw)
423{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000424 struct sshkey *k;
Damien Miller44b25042010-07-02 13:35:01 +1000425 struct stat st;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000426 int r;
Damien Miller44b25042010-07-02 13:35:01 +1000427
428 if (!have_identity)
429 ask_filename(pw, "Enter file in which the key is");
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +0000430 if (stat(identity_file, &st) == -1)
Damien Miller44b25042010-07-02 13:35:01 +1000431 fatal("%s: %s: %s", __progname, identity_file, strerror(errno));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000432 if ((r = sshkey_load_public(identity_file, &k, NULL)) != 0)
djm@openbsd.org07133222019-09-01 23:47:32 +0000433 k = load_identity(identity_file, NULL);
Damien Miller44b25042010-07-02 13:35:01 +1000434 switch (convert_format) {
435 case FMT_RFC4716:
436 do_convert_to_ssh2(pw, k);
437 break;
438 case FMT_PKCS8:
439 do_convert_to_pkcs8(k);
440 break;
441 case FMT_PEM:
442 do_convert_to_pem(k);
443 break;
444 default:
445 fatal("%s: unknown key format %d", __func__, convert_format);
446 }
447 exit(0);
448}
449
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000450/*
451 * This is almost exactly the bignum1 encoding, but with 32 bit for length
452 * instead of 16.
453 */
Damien Miller44b25042010-07-02 13:35:01 +1000454static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000455buffer_get_bignum_bits(struct sshbuf *b, BIGNUM *value)
Damien Miller874d77b2000-10-14 16:23:11 +1100456{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000457 u_int bytes, bignum_bits;
458 int r;
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000459
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000460 if ((r = sshbuf_get_u32(b, &bignum_bits)) != 0)
461 fatal("%s: buffer error: %s", __func__, ssh_err(r));
462 bytes = (bignum_bits + 7) / 8;
463 if (sshbuf_len(b) < bytes)
464 fatal("%s: input buffer too small: need %d have %zu",
465 __func__, bytes, sshbuf_len(b));
466 if (BN_bin2bn(sshbuf_ptr(b), bytes, value) == NULL)
467 fatal("%s: BN_bin2bn failed", __func__);
468 if ((r = sshbuf_consume(b, bytes)) != 0)
469 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Miller874d77b2000-10-14 16:23:11 +1100470}
471
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000472static struct sshkey *
djm@openbsd.org16dd8b22019-07-16 13:18:39 +0000473do_convert_private_ssh2(struct sshbuf *b)
Damien Miller874d77b2000-10-14 16:23:11 +1100474{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000475 struct sshkey *key = NULL;
Damien Miller874d77b2000-10-14 16:23:11 +1100476 char *type, *cipher;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000477 u_char e1, e2, e3, *sig = NULL, data[] = "abcde12345";
478 int r, rlen, ktype;
479 u_int magic, i1, i2, i3, i4;
480 size_t slen;
Ben Lindstrome586c4c2001-06-25 05:04:58 +0000481 u_long e;
djm@openbsd.org482d23b2018-09-13 02:08:33 +0000482 BIGNUM *dsa_p = NULL, *dsa_q = NULL, *dsa_g = NULL;
483 BIGNUM *dsa_pub_key = NULL, *dsa_priv_key = NULL;
484 BIGNUM *rsa_n = NULL, *rsa_e = NULL, *rsa_d = NULL;
485 BIGNUM *rsa_p = NULL, *rsa_q = NULL, *rsa_iqmp = NULL;
djm@openbsd.org16dd8b22019-07-16 13:18:39 +0000486
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000487 if ((r = sshbuf_get_u32(b, &magic)) != 0)
488 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Miller874d77b2000-10-14 16:23:11 +1100489
Damien Miller874d77b2000-10-14 16:23:11 +1100490 if (magic != SSH_COM_PRIVATE_KEY_MAGIC) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000491 error("bad magic 0x%x != 0x%x", magic,
492 SSH_COM_PRIVATE_KEY_MAGIC);
Damien Miller874d77b2000-10-14 16:23:11 +1100493 return NULL;
494 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000495 if ((r = sshbuf_get_u32(b, &i1)) != 0 ||
496 (r = sshbuf_get_cstring(b, &type, NULL)) != 0 ||
497 (r = sshbuf_get_cstring(b, &cipher, NULL)) != 0 ||
498 (r = sshbuf_get_u32(b, &i2)) != 0 ||
499 (r = sshbuf_get_u32(b, &i3)) != 0 ||
500 (r = sshbuf_get_u32(b, &i4)) != 0)
501 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Miller80163902007-01-05 16:30:16 +1100502 debug("ignore (%d %d %d %d)", i1, i2, i3, i4);
Damien Miller874d77b2000-10-14 16:23:11 +1100503 if (strcmp(cipher, "none") != 0) {
504 error("unsupported cipher %s", cipher);
Darren Tuckera627d422013-06-02 07:31:17 +1000505 free(cipher);
Darren Tuckera627d422013-06-02 07:31:17 +1000506 free(type);
Damien Miller874d77b2000-10-14 16:23:11 +1100507 return NULL;
508 }
Darren Tuckera627d422013-06-02 07:31:17 +1000509 free(cipher);
Damien Miller874d77b2000-10-14 16:23:11 +1100510
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000511 if (strstr(type, "dsa")) {
512 ktype = KEY_DSA;
513 } else if (strstr(type, "rsa")) {
514 ktype = KEY_RSA;
515 } else {
Darren Tuckera627d422013-06-02 07:31:17 +1000516 free(type);
Damien Miller874d77b2000-10-14 16:23:11 +1100517 return NULL;
518 }
djm@openbsd.org6da046f2018-09-14 04:17:44 +0000519 if ((key = sshkey_new(ktype)) == NULL)
520 fatal("sshkey_new failed");
Darren Tuckera627d422013-06-02 07:31:17 +1000521 free(type);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000522
523 switch (key->type) {
524 case KEY_DSA:
djm@openbsd.org482d23b2018-09-13 02:08:33 +0000525 if ((dsa_p = BN_new()) == NULL ||
526 (dsa_q = BN_new()) == NULL ||
527 (dsa_g = BN_new()) == NULL ||
528 (dsa_pub_key = BN_new()) == NULL ||
529 (dsa_priv_key = BN_new()) == NULL)
530 fatal("%s: BN_new", __func__);
531 buffer_get_bignum_bits(b, dsa_p);
532 buffer_get_bignum_bits(b, dsa_g);
533 buffer_get_bignum_bits(b, dsa_q);
534 buffer_get_bignum_bits(b, dsa_pub_key);
535 buffer_get_bignum_bits(b, dsa_priv_key);
536 if (!DSA_set0_pqg(key->dsa, dsa_p, dsa_q, dsa_g))
537 fatal("%s: DSA_set0_pqg failed", __func__);
538 dsa_p = dsa_q = dsa_g = NULL; /* transferred */
539 if (!DSA_set0_key(key->dsa, dsa_pub_key, dsa_priv_key))
540 fatal("%s: DSA_set0_key failed", __func__);
541 dsa_pub_key = dsa_priv_key = NULL; /* transferred */
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000542 break;
543 case KEY_RSA:
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000544 if ((r = sshbuf_get_u8(b, &e1)) != 0 ||
545 (e1 < 30 && (r = sshbuf_get_u8(b, &e2)) != 0) ||
546 (e1 < 30 && (r = sshbuf_get_u8(b, &e3)) != 0))
547 fatal("%s: buffer error: %s", __func__, ssh_err(r));
548 e = e1;
Ben Lindstrom34f91882001-06-25 04:47:54 +0000549 debug("e %lx", e);
550 if (e < 30) {
551 e <<= 8;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000552 e += e2;
Ben Lindstrom34f91882001-06-25 04:47:54 +0000553 debug("e %lx", e);
554 e <<= 8;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000555 e += e3;
Ben Lindstrom34f91882001-06-25 04:47:54 +0000556 debug("e %lx", e);
557 }
djm@openbsd.org482d23b2018-09-13 02:08:33 +0000558 if ((rsa_e = BN_new()) == NULL)
559 fatal("%s: BN_new", __func__);
560 if (!BN_set_word(rsa_e, e)) {
561 BN_clear_free(rsa_e);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000562 sshkey_free(key);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000563 return NULL;
564 }
djm@openbsd.org482d23b2018-09-13 02:08:33 +0000565 if ((rsa_n = BN_new()) == NULL ||
566 (rsa_d = BN_new()) == NULL ||
567 (rsa_p = BN_new()) == NULL ||
568 (rsa_q = BN_new()) == NULL ||
569 (rsa_iqmp = BN_new()) == NULL)
570 fatal("%s: BN_new", __func__);
571 buffer_get_bignum_bits(b, rsa_d);
572 buffer_get_bignum_bits(b, rsa_n);
573 buffer_get_bignum_bits(b, rsa_iqmp);
574 buffer_get_bignum_bits(b, rsa_q);
575 buffer_get_bignum_bits(b, rsa_p);
576 if (!RSA_set0_key(key->rsa, rsa_n, rsa_e, rsa_d))
577 fatal("%s: RSA_set0_key failed", __func__);
578 rsa_n = rsa_e = rsa_d = NULL; /* transferred */
579 if (!RSA_set0_factors(key->rsa, rsa_p, rsa_q))
580 fatal("%s: RSA_set0_factors failed", __func__);
581 rsa_p = rsa_q = NULL; /* transferred */
582 if ((r = ssh_rsa_complete_crt_parameters(key, rsa_iqmp)) != 0)
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000583 fatal("generate RSA parameters failed: %s", ssh_err(r));
djm@openbsd.org482d23b2018-09-13 02:08:33 +0000584 BN_clear_free(rsa_iqmp);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000585 break;
586 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000587 rlen = sshbuf_len(b);
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +0000588 if (rlen != 0)
djm@openbsd.org16dd8b22019-07-16 13:18:39 +0000589 error("%s: remaining bytes in key blob %d", __func__, rlen);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000590
Ben Lindstrome586c4c2001-06-25 05:04:58 +0000591 /* try the key */
djm@openbsd.org9a14c642019-10-31 21:23:19 +0000592 if (sshkey_sign(key, &sig, &slen, data, sizeof(data),
593 NULL, NULL, 0) != 0 ||
594 sshkey_verify(key, sig, slen, data, sizeof(data),
djm@openbsd.orgb7e74ea2019-11-25 00:51:37 +0000595 NULL, 0, NULL) != 0) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000596 sshkey_free(key);
597 free(sig);
598 return NULL;
599 }
Darren Tuckera627d422013-06-02 07:31:17 +1000600 free(sig);
Damien Miller874d77b2000-10-14 16:23:11 +1100601 return key;
602}
603
Damien Miller8056a9d2006-03-15 12:05:40 +1100604static int
605get_line(FILE *fp, char *line, size_t len)
606{
607 int c;
608 size_t pos = 0;
609
610 line[0] = '\0';
611 while ((c = fgetc(fp)) != EOF) {
djm@openbsd.org3038a192015-04-17 13:19:22 +0000612 if (pos >= len - 1)
613 fatal("input line too long.");
Damien Miller90967402006-03-26 14:07:26 +1100614 switch (c) {
Damien Miller8056a9d2006-03-15 12:05:40 +1100615 case '\r':
616 c = fgetc(fp);
djm@openbsd.org3038a192015-04-17 13:19:22 +0000617 if (c != EOF && c != '\n' && ungetc(c, fp) == EOF)
618 fatal("unget: %s", strerror(errno));
Damien Miller8056a9d2006-03-15 12:05:40 +1100619 return pos;
620 case '\n':
621 return pos;
622 }
623 line[pos++] = c;
624 line[pos] = '\0';
625 }
Damien Miller6c7439f2007-01-05 16:29:55 +1100626 /* We reached EOF */
627 return -1;
Damien Miller8056a9d2006-03-15 12:05:40 +1100628}
629
Ben Lindstrombba81212001-06-25 05:01:22 +0000630static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000631do_convert_from_ssh2(struct passwd *pw, struct sshkey **k, int *private)
Damien Millereba71ba2000-04-29 23:57:08 +1000632{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000633 int r, blen, escaped = 0;
Ben Lindstrom155b9812002-04-02 20:26:26 +0000634 u_int len;
Damien Miller8056a9d2006-03-15 12:05:40 +1100635 char line[1024];
djm@openbsd.org16dd8b22019-07-16 13:18:39 +0000636 struct sshbuf *buf;
Damien Millereba71ba2000-04-29 23:57:08 +1000637 char encoded[8096];
Damien Millereba71ba2000-04-29 23:57:08 +1000638 FILE *fp;
639
djm@openbsd.org16dd8b22019-07-16 13:18:39 +0000640 if ((buf = sshbuf_new()) == NULL)
641 fatal("sshbuf_new failed");
Damien Millerba3420a2010-06-26 09:39:07 +1000642 if ((fp = fopen(identity_file, "r")) == NULL)
643 fatal("%s: %s: %s", __progname, identity_file, strerror(errno));
Damien Millereba71ba2000-04-29 23:57:08 +1000644 encoded[0] = '\0';
Damien Miller8056a9d2006-03-15 12:05:40 +1100645 while ((blen = get_line(fp, line, sizeof(line))) != -1) {
Damien Miller746d1a62013-07-18 16:13:02 +1000646 if (blen > 0 && line[blen - 1] == '\\')
Damien Miller30c3d422000-05-09 11:02:59 +1000647 escaped++;
Damien Millereba71ba2000-04-29 23:57:08 +1000648 if (strncmp(line, "----", 4) == 0 ||
649 strstr(line, ": ") != NULL) {
Damien Miller874d77b2000-10-14 16:23:11 +1100650 if (strstr(line, SSH_COM_PRIVATE_BEGIN) != NULL)
Damien Miller44b25042010-07-02 13:35:01 +1000651 *private = 1;
Ben Lindstrome586c4c2001-06-25 05:04:58 +0000652 if (strstr(line, " END ") != NULL) {
653 break;
654 }
Ben Lindstrom30358602001-04-24 16:59:28 +0000655 /* fprintf(stderr, "ignore: %s", line); */
Damien Millereba71ba2000-04-29 23:57:08 +1000656 continue;
657 }
Damien Miller30c3d422000-05-09 11:02:59 +1000658 if (escaped) {
659 escaped--;
Ben Lindstrom30358602001-04-24 16:59:28 +0000660 /* fprintf(stderr, "escaped: %s", line); */
Damien Miller30c3d422000-05-09 11:02:59 +1000661 continue;
Damien Millereba71ba2000-04-29 23:57:08 +1000662 }
Damien Millereba71ba2000-04-29 23:57:08 +1000663 strlcat(encoded, line, sizeof(encoded));
664 }
Ben Lindstrom155b9812002-04-02 20:26:26 +0000665 len = strlen(encoded);
666 if (((len % 4) == 3) &&
667 (encoded[len-1] == '=') &&
668 (encoded[len-2] == '=') &&
669 (encoded[len-3] == '='))
670 encoded[len-3] = '\0';
djm@openbsd.org16dd8b22019-07-16 13:18:39 +0000671 if ((r = sshbuf_b64tod(buf, encoded)) != 0)
672 fatal("%s: base64 decoding failed: %s", __func__, ssh_err(r));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000673 if (*private)
djm@openbsd.org16dd8b22019-07-16 13:18:39 +0000674 *k = do_convert_private_ssh2(buf);
675 else if ((r = sshkey_fromb(buf, k)) != 0)
djm@openbsd.org3038a192015-04-17 13:19:22 +0000676 fatal("decode blob failed: %s", ssh_err(r));
djm@openbsd.org6500c3b2019-10-16 06:03:30 +0000677 sshbuf_free(buf);
Damien Miller44b25042010-07-02 13:35:01 +1000678 fclose(fp);
679}
680
681static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000682do_convert_from_pkcs8(struct sshkey **k, int *private)
Damien Miller44b25042010-07-02 13:35:01 +1000683{
684 EVP_PKEY *pubkey;
685 FILE *fp;
686
687 if ((fp = fopen(identity_file, "r")) == NULL)
688 fatal("%s: %s: %s", __progname, identity_file, strerror(errno));
689 if ((pubkey = PEM_read_PUBKEY(fp, NULL, NULL, NULL)) == NULL) {
690 fatal("%s: %s is not a recognised public key format", __func__,
691 identity_file);
692 }
693 fclose(fp);
djm@openbsd.org482d23b2018-09-13 02:08:33 +0000694 switch (EVP_PKEY_base_id(pubkey)) {
Damien Miller44b25042010-07-02 13:35:01 +1000695 case EVP_PKEY_RSA:
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000696 if ((*k = sshkey_new(KEY_UNSPEC)) == NULL)
697 fatal("sshkey_new failed");
Damien Miller44b25042010-07-02 13:35:01 +1000698 (*k)->type = KEY_RSA;
699 (*k)->rsa = EVP_PKEY_get1_RSA(pubkey);
700 break;
701 case EVP_PKEY_DSA:
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000702 if ((*k = sshkey_new(KEY_UNSPEC)) == NULL)
703 fatal("sshkey_new failed");
Damien Miller44b25042010-07-02 13:35:01 +1000704 (*k)->type = KEY_DSA;
705 (*k)->dsa = EVP_PKEY_get1_DSA(pubkey);
706 break;
Damien Miller6af914a2010-09-10 11:39:26 +1000707#ifdef OPENSSL_HAS_ECC
Damien Millereb8b60e2010-08-31 22:41:14 +1000708 case EVP_PKEY_EC:
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000709 if ((*k = sshkey_new(KEY_UNSPEC)) == NULL)
710 fatal("sshkey_new failed");
Damien Millereb8b60e2010-08-31 22:41:14 +1000711 (*k)->type = KEY_ECDSA;
712 (*k)->ecdsa = EVP_PKEY_get1_EC_KEY(pubkey);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000713 (*k)->ecdsa_nid = sshkey_ecdsa_key_to_nid((*k)->ecdsa);
Damien Millereb8b60e2010-08-31 22:41:14 +1000714 break;
Damien Miller6af914a2010-09-10 11:39:26 +1000715#endif
Damien Miller44b25042010-07-02 13:35:01 +1000716 default:
717 fatal("%s: unsupported pubkey type %d", __func__,
djm@openbsd.org482d23b2018-09-13 02:08:33 +0000718 EVP_PKEY_base_id(pubkey));
Damien Miller44b25042010-07-02 13:35:01 +1000719 }
720 EVP_PKEY_free(pubkey);
721 return;
722}
723
724static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000725do_convert_from_pem(struct sshkey **k, int *private)
Damien Miller44b25042010-07-02 13:35:01 +1000726{
727 FILE *fp;
728 RSA *rsa;
Damien Miller44b25042010-07-02 13:35:01 +1000729
730 if ((fp = fopen(identity_file, "r")) == NULL)
731 fatal("%s: %s: %s", __progname, identity_file, strerror(errno));
732 if ((rsa = PEM_read_RSAPublicKey(fp, NULL, NULL, NULL)) != NULL) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000733 if ((*k = sshkey_new(KEY_UNSPEC)) == NULL)
734 fatal("sshkey_new failed");
Damien Miller44b25042010-07-02 13:35:01 +1000735 (*k)->type = KEY_RSA;
736 (*k)->rsa = rsa;
737 fclose(fp);
738 return;
739 }
Damien Miller44b25042010-07-02 13:35:01 +1000740 fatal("%s: unrecognised raw private key format", __func__);
741}
742
743static void
744do_convert_from(struct passwd *pw)
745{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000746 struct sshkey *k = NULL;
747 int r, private = 0, ok = 0;
Damien Miller44b25042010-07-02 13:35:01 +1000748 struct stat st;
749
750 if (!have_identity)
751 ask_filename(pw, "Enter file in which the key is");
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +0000752 if (stat(identity_file, &st) == -1)
Damien Miller44b25042010-07-02 13:35:01 +1000753 fatal("%s: %s: %s", __progname, identity_file, strerror(errno));
754
755 switch (convert_format) {
756 case FMT_RFC4716:
757 do_convert_from_ssh2(pw, &k, &private);
758 break;
759 case FMT_PKCS8:
760 do_convert_from_pkcs8(&k, &private);
761 break;
762 case FMT_PEM:
763 do_convert_from_pem(&k, &private);
764 break;
765 default:
766 fatal("%s: unknown key format %d", __func__, convert_format);
767 }
768
djm@openbsd.org7a2c3682015-01-30 00:59:19 +0000769 if (!private) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000770 if ((r = sshkey_write(k, stdout)) == 0)
771 ok = 1;
Damien Miller44b25042010-07-02 13:35:01 +1000772 if (ok)
773 fprintf(stdout, "\n");
djm@openbsd.org7a2c3682015-01-30 00:59:19 +0000774 } else {
Damien Miller44b25042010-07-02 13:35:01 +1000775 switch (k->type) {
776 case KEY_DSA:
777 ok = PEM_write_DSAPrivateKey(stdout, k->dsa, NULL,
778 NULL, 0, NULL, NULL);
779 break;
Damien Miller6af914a2010-09-10 11:39:26 +1000780#ifdef OPENSSL_HAS_ECC
Damien Millereb8b60e2010-08-31 22:41:14 +1000781 case KEY_ECDSA:
782 ok = PEM_write_ECPrivateKey(stdout, k->ecdsa, NULL,
783 NULL, 0, NULL, NULL);
784 break;
Damien Miller6af914a2010-09-10 11:39:26 +1000785#endif
Damien Miller44b25042010-07-02 13:35:01 +1000786 case KEY_RSA:
787 ok = PEM_write_RSAPrivateKey(stdout, k->rsa, NULL,
788 NULL, 0, NULL, NULL);
789 break;
790 default:
791 fatal("%s: unsupported key type %s", __func__,
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000792 sshkey_type(k));
Damien Miller44b25042010-07-02 13:35:01 +1000793 }
794 }
795
djm@openbsd.org3038a192015-04-17 13:19:22 +0000796 if (!ok)
797 fatal("key write failed");
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000798 sshkey_free(k);
Damien Millereba71ba2000-04-29 23:57:08 +1000799 exit(0);
800}
Damien Miller1f0311c2014-05-15 14:24:09 +1000801#endif
Damien Millereba71ba2000-04-29 23:57:08 +1000802
Ben Lindstrombba81212001-06-25 05:01:22 +0000803static void
Damien Millereba71ba2000-04-29 23:57:08 +1000804do_print_public(struct passwd *pw)
805{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000806 struct sshkey *prv;
Damien Millereba71ba2000-04-29 23:57:08 +1000807 struct stat st;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000808 int r;
djm@openbsd.org07133222019-09-01 23:47:32 +0000809 char *comment = NULL;
Damien Millereba71ba2000-04-29 23:57:08 +1000810
811 if (!have_identity)
812 ask_filename(pw, "Enter file in which the key is");
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +0000813 if (stat(identity_file, &st) == -1)
djm@openbsd.org3038a192015-04-17 13:19:22 +0000814 fatal("%s: %s", identity_file, strerror(errno));
djm@openbsd.org07133222019-09-01 23:47:32 +0000815 prv = load_identity(identity_file, &comment);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000816 if ((r = sshkey_write(prv, stdout)) != 0)
markus@openbsd.org7da5df12017-05-30 14:16:41 +0000817 error("sshkey_write failed: %s", ssh_err(r));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000818 sshkey_free(prv);
djm@openbsd.org07133222019-09-01 23:47:32 +0000819 if (comment != NULL && *comment != '\0')
820 fprintf(stdout, " %s", comment);
Damien Millereba71ba2000-04-29 23:57:08 +1000821 fprintf(stdout, "\n");
djm@openbsd.org07133222019-09-01 23:47:32 +0000822 free(comment);
Damien Millereba71ba2000-04-29 23:57:08 +1000823 exit(0);
824}
825
Ben Lindstromcd392282001-07-04 03:44:03 +0000826static void
Damien Miller757f34e2010-08-05 13:05:31 +1000827do_download(struct passwd *pw)
Ben Lindstromcd392282001-07-04 03:44:03 +0000828{
Damien Miller7ea845e2010-02-12 09:21:02 +1100829#ifdef ENABLE_PKCS11
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000830 struct sshkey **keys = NULL;
Damien Miller7ea845e2010-02-12 09:21:02 +1100831 int i, nkeys;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000832 enum sshkey_fp_rep rep;
djm@openbsd.org56d1c832014-12-21 22:27:55 +0000833 int fptype;
djm@openbsd.org89a8d452020-01-25 00:03:36 +0000834 char *fp, *ra, **comments = NULL;
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000835
djm@openbsd.org56d1c832014-12-21 22:27:55 +0000836 fptype = print_bubblebabble ? SSH_DIGEST_SHA1 : fingerprint_hash;
837 rep = print_bubblebabble ? SSH_FP_BUBBLEBABBLE : SSH_FP_DEFAULT;
Damien Miller1422c082013-01-09 16:44:54 +1100838
benno@openbsd.orga8c807f2019-02-10 16:35:41 +0000839 pkcs11_init(1);
djm@openbsd.org89a8d452020-01-25 00:03:36 +0000840 nkeys = pkcs11_add_provider(pkcs11provider, NULL, &keys, &comments);
Damien Miller7ea845e2010-02-12 09:21:02 +1100841 if (nkeys <= 0)
842 fatal("cannot read public key from pkcs11");
843 for (i = 0; i < nkeys; i++) {
Damien Millerec77c952013-01-09 15:58:00 +1100844 if (print_fingerprint) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000845 fp = sshkey_fingerprint(keys[i], fptype, rep);
846 ra = sshkey_fingerprint(keys[i], fingerprint_hash,
Damien Millerec77c952013-01-09 15:58:00 +1100847 SSH_FP_RANDOMART);
djm@openbsd.org9ce86c92015-01-28 22:36:00 +0000848 if (fp == NULL || ra == NULL)
849 fatal("%s: sshkey_fingerprint fail", __func__);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000850 printf("%u %s %s (PKCS11 key)\n", sshkey_size(keys[i]),
851 fp, sshkey_type(keys[i]));
djm@openbsd.org851f8032019-01-23 04:16:22 +0000852 if (log_level_get() >= SYSLOG_LEVEL_VERBOSE)
Damien Millerec77c952013-01-09 15:58:00 +1100853 printf("%s\n", ra);
Darren Tuckera627d422013-06-02 07:31:17 +1000854 free(ra);
855 free(fp);
Damien Millerec77c952013-01-09 15:58:00 +1100856 } else {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000857 (void) sshkey_write(keys[i], stdout); /* XXX check */
djm@openbsd.org89a8d452020-01-25 00:03:36 +0000858 fprintf(stdout, "%s%s\n",
859 *(comments[i]) == '\0' ? "" : " ", comments[i]);
Damien Millerec77c952013-01-09 15:58:00 +1100860 }
djm@openbsd.org89a8d452020-01-25 00:03:36 +0000861 free(comments[i]);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000862 sshkey_free(keys[i]);
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000863 }
djm@openbsd.org89a8d452020-01-25 00:03:36 +0000864 free(comments);
Darren Tuckera627d422013-06-02 07:31:17 +1000865 free(keys);
Damien Miller7ea845e2010-02-12 09:21:02 +1100866 pkcs11_terminate();
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000867 exit(0);
Damien Miller7ea845e2010-02-12 09:21:02 +1100868#else
869 fatal("no pkcs11 support");
870#endif /* ENABLE_PKCS11 */
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000871}
Ben Lindstromcd392282001-07-04 03:44:03 +0000872
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000873static struct sshkey *
874try_read_key(char **cpp)
875{
876 struct sshkey *ret;
877 int r;
878
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000879 if ((ret = sshkey_new(KEY_UNSPEC)) == NULL)
880 fatal("sshkey_new failed");
881 if ((r = sshkey_read(ret, cpp)) == 0)
882 return ret;
883 /* Not a key */
884 sshkey_free(ret);
885 return NULL;
886}
887
888static void
889fingerprint_one_key(const struct sshkey *public, const char *comment)
890{
891 char *fp = NULL, *ra = NULL;
892 enum sshkey_fp_rep rep;
893 int fptype;
894
895 fptype = print_bubblebabble ? SSH_DIGEST_SHA1 : fingerprint_hash;
896 rep = print_bubblebabble ? SSH_FP_BUBBLEBABBLE : SSH_FP_DEFAULT;
897 fp = sshkey_fingerprint(public, fptype, rep);
898 ra = sshkey_fingerprint(public, fingerprint_hash, SSH_FP_RANDOMART);
899 if (fp == NULL || ra == NULL)
900 fatal("%s: sshkey_fingerprint failed", __func__);
djm@openbsd.orga287c5a2017-02-10 03:36:40 +0000901 mprintf("%u %s %s (%s)\n", sshkey_size(public), fp,
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000902 comment ? comment : "no comment", sshkey_type(public));
djm@openbsd.org851f8032019-01-23 04:16:22 +0000903 if (log_level_get() >= SYSLOG_LEVEL_VERBOSE)
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000904 printf("%s\n", ra);
905 free(ra);
906 free(fp);
907}
908
909static void
910fingerprint_private(const char *path)
911{
912 struct stat st;
913 char *comment = NULL;
914 struct sshkey *public = NULL;
915 int r;
916
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +0000917 if (stat(identity_file, &st) == -1)
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000918 fatal("%s: %s", path, strerror(errno));
djm@openbsd.orgbcb7bc72015-11-18 08:37:28 +0000919 if ((r = sshkey_load_public(path, &public, &comment)) != 0) {
920 debug("load public \"%s\": %s", path, ssh_err(r));
921 if ((r = sshkey_load_private(path, NULL,
922 &public, &comment)) != 0) {
923 debug("load private \"%s\": %s", path, ssh_err(r));
924 fatal("%s is not a key file.", path);
925 }
926 }
927
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000928 fingerprint_one_key(public, comment);
929 sshkey_free(public);
930 free(comment);
931}
932
Ben Lindstrombba81212001-06-25 05:01:22 +0000933static void
Damien Miller10f6f6b1999-11-17 17:29:08 +1100934do_fingerprint(struct passwd *pw)
935{
Damien Miller98c7ad62000-03-09 21:27:49 +1100936 FILE *f;
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000937 struct sshkey *public = NULL;
markus@openbsd.org7f906352018-06-06 18:29:18 +0000938 char *comment = NULL, *cp, *ep, *line = NULL;
939 size_t linesize = 0;
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000940 int i, invalid = 1;
941 const char *path;
djm@openbsd.org1a31d022016-05-02 08:49:03 +0000942 u_long lnum = 0;
Damien Miller10f6f6b1999-11-17 17:29:08 +1100943
Damien Miller95def091999-11-25 00:26:21 +1100944 if (!have_identity)
945 ask_filename(pw, "Enter file in which the key is");
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000946 path = identity_file;
Damien Miller98c7ad62000-03-09 21:27:49 +1100947
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000948 if (strcmp(identity_file, "-") == 0) {
949 f = stdin;
950 path = "(stdin)";
951 } else if ((f = fopen(path, "r")) == NULL)
952 fatal("%s: %s: %s", __progname, path, strerror(errno));
Damien Miller98c7ad62000-03-09 21:27:49 +1100953
markus@openbsd.org7f906352018-06-06 18:29:18 +0000954 while (getline(&line, &linesize, f) != -1) {
955 lnum++;
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000956 cp = line;
957 cp[strcspn(cp, "\n")] = '\0';
958 /* Trim leading space and comments */
959 cp = line + strspn(line, " \t");
960 if (*cp == '#' || *cp == '\0')
961 continue;
962
963 /*
964 * Input may be plain keys, private keys, authorized_keys
965 * or known_hosts.
966 */
967
968 /*
969 * Try private keys first. Assume a key is private if
970 * "SSH PRIVATE KEY" appears on the first line and we're
971 * not reading from stdin (XXX support private keys on stdin).
972 */
973 if (lnum == 1 && strcmp(identity_file, "-") != 0 &&
djm@openbsd.orgbcb7bc72015-11-18 08:37:28 +0000974 strstr(cp, "PRIVATE KEY") != NULL) {
markus@openbsd.org7f906352018-06-06 18:29:18 +0000975 free(line);
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000976 fclose(f);
977 fingerprint_private(path);
978 exit(0);
979 }
980
981 /*
982 * If it's not a private key, then this must be prepared to
983 * accept a public key prefixed with a hostname or options.
984 * Try a bare key first, otherwise skip the leading stuff.
985 */
986 if ((public = try_read_key(&cp)) == NULL) {
987 i = strtol(cp, &ep, 10);
988 if (i == 0 || ep == NULL ||
989 (*ep != ' ' && *ep != '\t')) {
990 int quoted = 0;
991
992 comment = cp;
993 for (; *cp && (quoted || (*cp != ' ' &&
994 *cp != '\t')); cp++) {
995 if (*cp == '\\' && cp[1] == '"')
996 cp++; /* Skip both */
997 else if (*cp == '"')
998 quoted = !quoted;
999 }
1000 if (!*cp)
1001 continue;
1002 *cp++ = '\0';
1003 }
1004 }
1005 /* Retry after parsing leading hostname/key options */
1006 if (public == NULL && (public = try_read_key(&cp)) == NULL) {
djm@openbsd.org1a31d022016-05-02 08:49:03 +00001007 debug("%s:%lu: not a public key", path, lnum);
Damien Millerba3420a2010-06-26 09:39:07 +10001008 continue;
Damien Miller95def091999-11-25 00:26:21 +11001009 }
Damien Millerba3420a2010-06-26 09:39:07 +10001010
djm@openbsd.orgc56a2552015-11-16 22:53:07 +00001011 /* Find trailing comment, if any */
1012 for (; *cp == ' ' || *cp == '\t'; cp++)
Damien Millerba3420a2010-06-26 09:39:07 +10001013 ;
djm@openbsd.orgc56a2552015-11-16 22:53:07 +00001014 if (*cp != '\0' && *cp != '#')
Damien Millerba3420a2010-06-26 09:39:07 +10001015 comment = cp;
djm@openbsd.orgc56a2552015-11-16 22:53:07 +00001016
1017 fingerprint_one_key(public, comment);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001018 sshkey_free(public);
djm@openbsd.orgc56a2552015-11-16 22:53:07 +00001019 invalid = 0; /* One good key in the file is sufficient */
Damien Miller95def091999-11-25 00:26:21 +11001020 }
Damien Millerba3420a2010-06-26 09:39:07 +10001021 fclose(f);
markus@openbsd.org7f906352018-06-06 18:29:18 +00001022 free(line);
Damien Millerba3420a2010-06-26 09:39:07 +10001023
djm@openbsd.org3038a192015-04-17 13:19:22 +00001024 if (invalid)
djm@openbsd.orgc56a2552015-11-16 22:53:07 +00001025 fatal("%s is not a public key file.", path);
Damien Miller95def091999-11-25 00:26:21 +11001026 exit(0);
Damien Miller10f6f6b1999-11-17 17:29:08 +11001027}
1028
Damien Miller4b42d7f2005-03-01 21:48:35 +11001029static void
Damien Miller58f1baf2011-05-05 14:06:15 +10001030do_gen_all_hostkeys(struct passwd *pw)
1031{
1032 struct {
1033 char *key_type;
1034 char *key_type_display;
1035 char *path;
1036 } key_types[] = {
djm@openbsd.org5c27e3b2015-03-23 06:06:38 +00001037#ifdef WITH_OPENSSL
Damien Miller58f1baf2011-05-05 14:06:15 +10001038 { "rsa", "RSA" ,_PATH_HOST_RSA_KEY_FILE },
1039 { "dsa", "DSA", _PATH_HOST_DSA_KEY_FILE },
Damien Millerb56e4932012-02-06 07:41:27 +11001040#ifdef OPENSSL_HAS_ECC
Damien Miller58f1baf2011-05-05 14:06:15 +10001041 { "ecdsa", "ECDSA",_PATH_HOST_ECDSA_KEY_FILE },
djm@openbsd.org5c27e3b2015-03-23 06:06:38 +00001042#endif /* OPENSSL_HAS_ECC */
1043#endif /* WITH_OPENSSL */
Damien Miller5be9d9e2013-12-07 11:24:01 +11001044 { "ed25519", "ED25519",_PATH_HOST_ED25519_KEY_FILE },
markus@openbsd.org1b11ea72018-02-23 15:58:37 +00001045#ifdef WITH_XMSS
1046 { "xmss", "XMSS",_PATH_HOST_XMSS_KEY_FILE },
1047#endif /* WITH_XMSS */
Damien Miller58f1baf2011-05-05 14:06:15 +10001048 { NULL, NULL, NULL }
1049 };
1050
dtucker@openbsd.org7afc45c2019-08-08 08:02:57 +00001051 u_int32_t bits = 0;
Damien Miller58f1baf2011-05-05 14:06:15 +10001052 int first = 0;
1053 struct stat st;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001054 struct sshkey *private, *public;
djm@openbsd.org853edbe2017-07-07 03:53:12 +00001055 char comment[1024], *prv_tmp, *pub_tmp, *prv_file, *pub_file;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001056 int i, type, fd, r;
Damien Miller58f1baf2011-05-05 14:06:15 +10001057 FILE *f;
1058
1059 for (i = 0; key_types[i].key_type; i++) {
djm@openbsd.org853edbe2017-07-07 03:53:12 +00001060 public = private = NULL;
1061 prv_tmp = pub_tmp = prv_file = pub_file = NULL;
1062
1063 xasprintf(&prv_file, "%s%s",
1064 identity_file, key_types[i].path);
1065
1066 /* Check whether private key exists and is not zero-length */
1067 if (stat(prv_file, &st) == 0) {
1068 if (st.st_size != 0)
1069 goto next;
1070 } else if (errno != ENOENT) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00001071 error("Could not stat %s: %s", key_types[i].path,
Damien Miller58f1baf2011-05-05 14:06:15 +10001072 strerror(errno));
djm@openbsd.org853edbe2017-07-07 03:53:12 +00001073 goto failnext;
Damien Miller58f1baf2011-05-05 14:06:15 +10001074 }
1075
djm@openbsd.org853edbe2017-07-07 03:53:12 +00001076 /*
1077 * Private key doesn't exist or is invalid; proceed with
1078 * key generation.
1079 */
1080 xasprintf(&prv_tmp, "%s%s.XXXXXXXXXX",
1081 identity_file, key_types[i].path);
1082 xasprintf(&pub_tmp, "%s%s.pub.XXXXXXXXXX",
1083 identity_file, key_types[i].path);
1084 xasprintf(&pub_file, "%s%s.pub",
1085 identity_file, key_types[i].path);
1086
Damien Miller58f1baf2011-05-05 14:06:15 +10001087 if (first == 0) {
1088 first = 1;
1089 printf("%s: generating new host keys: ", __progname);
1090 }
1091 printf("%s ", key_types[i].key_type_display);
1092 fflush(stdout);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001093 type = sshkey_type_from_name(key_types[i].key_type);
djm@openbsd.org853edbe2017-07-07 03:53:12 +00001094 if ((fd = mkstemp(prv_tmp)) == -1) {
1095 error("Could not save your public key in %s: %s",
1096 prv_tmp, strerror(errno));
1097 goto failnext;
1098 }
1099 close(fd); /* just using mkstemp() to generate/reserve a name */
Damien Miller58f1baf2011-05-05 14:06:15 +10001100 bits = 0;
djm@openbsd.org7efb4552015-01-18 13:22:28 +00001101 type_bits_valid(type, NULL, &bits);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001102 if ((r = sshkey_generate(type, bits, &private)) != 0) {
markus@openbsd.org7da5df12017-05-30 14:16:41 +00001103 error("sshkey_generate failed: %s", ssh_err(r));
djm@openbsd.org853edbe2017-07-07 03:53:12 +00001104 goto failnext;
Damien Miller58f1baf2011-05-05 14:06:15 +10001105 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001106 if ((r = sshkey_from_private(private, &public)) != 0)
1107 fatal("sshkey_from_private failed: %s", ssh_err(r));
Damien Miller58f1baf2011-05-05 14:06:15 +10001108 snprintf(comment, sizeof comment, "%s@%s", pw->pw_name,
1109 hostname);
djm@openbsd.org853edbe2017-07-07 03:53:12 +00001110 if ((r = sshkey_save_private(private, prv_tmp, "",
djm@openbsd.orgeb0d8e72019-07-15 13:16:29 +00001111 comment, private_key_format, openssh_format_cipher,
1112 rounds)) != 0) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00001113 error("Saving key \"%s\" failed: %s",
djm@openbsd.org853edbe2017-07-07 03:53:12 +00001114 prv_tmp, ssh_err(r));
1115 goto failnext;
Damien Miller58f1baf2011-05-05 14:06:15 +10001116 }
djm@openbsd.org853edbe2017-07-07 03:53:12 +00001117 if ((fd = mkstemp(pub_tmp)) == -1) {
1118 error("Could not save your public key in %s: %s",
1119 pub_tmp, strerror(errno));
1120 goto failnext;
Damien Miller58f1baf2011-05-05 14:06:15 +10001121 }
djm@openbsd.org853edbe2017-07-07 03:53:12 +00001122 (void)fchmod(fd, 0644);
Damien Miller58f1baf2011-05-05 14:06:15 +10001123 f = fdopen(fd, "w");
1124 if (f == NULL) {
djm@openbsd.org853edbe2017-07-07 03:53:12 +00001125 error("fdopen %s failed: %s", pub_tmp, strerror(errno));
doug@openbsd.org7df88182014-08-21 01:08:52 +00001126 close(fd);
djm@openbsd.org853edbe2017-07-07 03:53:12 +00001127 goto failnext;
Damien Miller58f1baf2011-05-05 14:06:15 +10001128 }
djm@openbsd.orgbb8b4422015-01-16 15:55:07 +00001129 if ((r = sshkey_write(public, f)) != 0) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00001130 error("write key failed: %s", ssh_err(r));
doug@openbsd.org7df88182014-08-21 01:08:52 +00001131 fclose(f);
djm@openbsd.org853edbe2017-07-07 03:53:12 +00001132 goto failnext;
Damien Miller58f1baf2011-05-05 14:06:15 +10001133 }
1134 fprintf(f, " %s\n", comment);
djm@openbsd.org853edbe2017-07-07 03:53:12 +00001135 if (ferror(f) != 0) {
1136 error("write key failed: %s", strerror(errno));
1137 fclose(f);
1138 goto failnext;
1139 }
1140 if (fclose(f) != 0) {
1141 error("key close failed: %s", strerror(errno));
1142 goto failnext;
1143 }
Damien Miller58f1baf2011-05-05 14:06:15 +10001144
djm@openbsd.org853edbe2017-07-07 03:53:12 +00001145 /* Rename temporary files to their permanent locations. */
1146 if (rename(pub_tmp, pub_file) != 0) {
1147 error("Unable to move %s into position: %s",
1148 pub_file, strerror(errno));
1149 goto failnext;
1150 }
1151 if (rename(prv_tmp, prv_file) != 0) {
1152 error("Unable to move %s into position: %s",
1153 key_types[i].path, strerror(errno));
1154 failnext:
1155 first = 0;
1156 goto next;
1157 }
1158 next:
1159 sshkey_free(private);
1160 sshkey_free(public);
1161 free(prv_tmp);
1162 free(pub_tmp);
1163 free(prv_file);
1164 free(pub_file);
Damien Miller58f1baf2011-05-05 14:06:15 +10001165 }
1166 if (first != 0)
1167 printf("\n");
1168}
1169
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001170struct known_hosts_ctx {
djm@openbsd.org2b3c3c72015-01-18 21:51:19 +00001171 const char *host; /* Hostname searched for in find/delete case */
1172 FILE *out; /* Output file, stdout for find_hosts case */
1173 int has_unhashed; /* When hashing, original had unhashed hosts */
1174 int found_key; /* For find/delete, host was found */
1175 int invalid; /* File contained invalid items; don't delete */
djm@openbsd.org851f8032019-01-23 04:16:22 +00001176 int hash_hosts; /* Hash hostnames as we go */
1177 int find_host; /* Search for specific hostname */
1178 int delete_host; /* Delete host from known_hosts */
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001179};
1180
1181static int
1182known_hosts_hash(struct hostkey_foreach_line *l, void *_ctx)
Damien Miller4b42d7f2005-03-01 21:48:35 +11001183{
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001184 struct known_hosts_ctx *ctx = (struct known_hosts_ctx *)_ctx;
1185 char *hashed, *cp, *hosts, *ohosts;
1186 int has_wild = l->hosts && strcspn(l->hosts, "*?!") != strlen(l->hosts);
dtucker@openbsd.org18501152017-03-06 02:03:20 +00001187 int was_hashed = l->hosts && l->hosts[0] == HASH_DELIM;
Darren Tucker0f7e9102008-06-08 12:54:29 +10001188
djm@openbsd.org6c5c9492015-02-16 22:08:57 +00001189 switch (l->status) {
1190 case HKF_STATUS_OK:
1191 case HKF_STATUS_MATCHED:
1192 /*
1193 * Don't hash hosts already already hashed, with wildcard
1194 * characters or a CA/revocation marker.
1195 */
djm@openbsd.org12d37672017-03-03 06:13:11 +00001196 if (was_hashed || has_wild || l->marker != MRK_NONE) {
djm@openbsd.org6c5c9492015-02-16 22:08:57 +00001197 fprintf(ctx->out, "%s\n", l->line);
djm@openbsd.org851f8032019-01-23 04:16:22 +00001198 if (has_wild && !ctx->find_host) {
dtucker@openbsd.orgd0723702017-03-06 00:44:51 +00001199 logit("%s:%lu: ignoring host name "
djm@openbsd.org3038a192015-04-17 13:19:22 +00001200 "with wildcard: %.64s", l->path,
djm@openbsd.org6c5c9492015-02-16 22:08:57 +00001201 l->linenum, l->hosts);
1202 }
1203 return 0;
1204 }
1205 /*
1206 * Split any comma-separated hostnames from the host list,
1207 * hash and store separately.
1208 */
1209 ohosts = hosts = xstrdup(l->hosts);
1210 while ((cp = strsep(&hosts, ",")) != NULL && *cp != '\0') {
djm@openbsd.orgdb259722017-03-10 04:26:06 +00001211 lowercase(cp);
djm@openbsd.org6c5c9492015-02-16 22:08:57 +00001212 if ((hashed = host_hash(cp, NULL, 0)) == NULL)
1213 fatal("hash_host failed");
1214 fprintf(ctx->out, "%s %s\n", hashed, l->rawkey);
1215 ctx->has_unhashed = 1;
1216 }
1217 free(ohosts);
1218 return 0;
1219 case HKF_STATUS_INVALID:
1220 /* Retain invalid lines, but mark file as invalid. */
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001221 ctx->invalid = 1;
dtucker@openbsd.orgd0723702017-03-06 00:44:51 +00001222 logit("%s:%lu: invalid line", l->path, l->linenum);
djm@openbsd.org6c5c9492015-02-16 22:08:57 +00001223 /* FALLTHROUGH */
1224 default:
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001225 fprintf(ctx->out, "%s\n", l->line);
1226 return 0;
Darren Tucker0f7e9102008-06-08 12:54:29 +10001227 }
djm@openbsd.org6c5c9492015-02-16 22:08:57 +00001228 /* NOTREACHED */
1229 return -1;
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001230}
1231
1232static int
1233known_hosts_find_delete(struct hostkey_foreach_line *l, void *_ctx)
1234{
1235 struct known_hosts_ctx *ctx = (struct known_hosts_ctx *)_ctx;
djm@openbsd.org4739e8d2015-05-21 12:01:19 +00001236 enum sshkey_fp_rep rep;
1237 int fptype;
djm@openbsd.orgbca05822019-07-19 03:38:01 +00001238 char *fp = NULL, *ra = NULL;
djm@openbsd.org4739e8d2015-05-21 12:01:19 +00001239
1240 fptype = print_bubblebabble ? SSH_DIGEST_SHA1 : fingerprint_hash;
1241 rep = print_bubblebabble ? SSH_FP_BUBBLEBABBLE : SSH_FP_DEFAULT;
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001242
djm@openbsd.org6c5c9492015-02-16 22:08:57 +00001243 if (l->status == HKF_STATUS_MATCHED) {
djm@openbsd.org851f8032019-01-23 04:16:22 +00001244 if (ctx->delete_host) {
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001245 if (l->marker != MRK_NONE) {
1246 /* Don't remove CA and revocation lines */
1247 fprintf(ctx->out, "%s\n", l->line);
1248 } else {
1249 /*
1250 * Hostname matches and has no CA/revoke
1251 * marker, delete it by *not* writing the
1252 * line to ctx->out.
1253 */
1254 ctx->found_key = 1;
1255 if (!quiet)
dtucker@openbsd.orgd0723702017-03-06 00:44:51 +00001256 printf("# Host %s found: line %lu\n",
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001257 ctx->host, l->linenum);
1258 }
1259 return 0;
djm@openbsd.org851f8032019-01-23 04:16:22 +00001260 } else if (ctx->find_host) {
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001261 ctx->found_key = 1;
1262 if (!quiet) {
dtucker@openbsd.orgd0723702017-03-06 00:44:51 +00001263 printf("# Host %s found: line %lu %s\n",
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001264 ctx->host,
1265 l->linenum, l->marker == MRK_CA ? "CA" :
1266 (l->marker == MRK_REVOKE ? "REVOKED" : ""));
1267 }
djm@openbsd.org851f8032019-01-23 04:16:22 +00001268 if (ctx->hash_hosts)
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001269 known_hosts_hash(l, ctx);
djm@openbsd.org4739e8d2015-05-21 12:01:19 +00001270 else if (print_fingerprint) {
1271 fp = sshkey_fingerprint(l->key, fptype, rep);
djm@openbsd.orgbca05822019-07-19 03:38:01 +00001272 ra = sshkey_fingerprint(l->key,
1273 fingerprint_hash, SSH_FP_RANDOMART);
1274 if (fp == NULL || ra == NULL)
1275 fatal("%s: sshkey_fingerprint failed",
1276 __func__);
claudio@openbsd.org4a32c0c2020-01-22 04:51:51 +00001277 mprintf("%s %s %s%s%s\n", ctx->host,
1278 sshkey_type(l->key), fp,
1279 l->comment[0] ? " " : "",
1280 l->comment);
djm@openbsd.orgbca05822019-07-19 03:38:01 +00001281 if (log_level_get() >= SYSLOG_LEVEL_VERBOSE)
1282 printf("%s\n", ra);
1283 free(ra);
djm@openbsd.org4739e8d2015-05-21 12:01:19 +00001284 free(fp);
1285 } else
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001286 fprintf(ctx->out, "%s\n", l->line);
1287 return 0;
1288 }
djm@openbsd.org851f8032019-01-23 04:16:22 +00001289 } else if (ctx->delete_host) {
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001290 /* Retain non-matching hosts when deleting */
1291 if (l->status == HKF_STATUS_INVALID) {
1292 ctx->invalid = 1;
dtucker@openbsd.orgd0723702017-03-06 00:44:51 +00001293 logit("%s:%lu: invalid line", l->path, l->linenum);
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001294 }
1295 fprintf(ctx->out, "%s\n", l->line);
1296 }
1297 return 0;
Damien Miller4b42d7f2005-03-01 21:48:35 +11001298}
1299
1300static void
djm@openbsd.org851f8032019-01-23 04:16:22 +00001301do_known_hosts(struct passwd *pw, const char *name, int find_host,
1302 int delete_host, int hash_hosts)
Damien Miller4b42d7f2005-03-01 21:48:35 +11001303{
deraadt@openbsd.orgd2099de2015-01-19 00:32:54 +00001304 char *cp, tmp[PATH_MAX], old[PATH_MAX];
djm@openbsd.org2b3c3c72015-01-18 21:51:19 +00001305 int r, fd, oerrno, inplace = 0;
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001306 struct known_hosts_ctx ctx;
djm@openbsd.org4739e8d2015-05-21 12:01:19 +00001307 u_int foreach_options;
Damien Miller4b42d7f2005-03-01 21:48:35 +11001308
1309 if (!have_identity) {
1310 cp = tilde_expand_filename(_PATH_SSH_USER_HOSTFILE, pw->pw_uid);
1311 if (strlcpy(identity_file, cp, sizeof(identity_file)) >=
1312 sizeof(identity_file))
1313 fatal("Specified known hosts path too long");
Darren Tuckera627d422013-06-02 07:31:17 +10001314 free(cp);
Damien Miller4b42d7f2005-03-01 21:48:35 +11001315 have_identity = 1;
1316 }
Damien Miller4b42d7f2005-03-01 21:48:35 +11001317
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001318 memset(&ctx, 0, sizeof(ctx));
1319 ctx.out = stdout;
1320 ctx.host = name;
djm@openbsd.org851f8032019-01-23 04:16:22 +00001321 ctx.hash_hosts = hash_hosts;
1322 ctx.find_host = find_host;
1323 ctx.delete_host = delete_host;
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001324
Damien Miller4b42d7f2005-03-01 21:48:35 +11001325 /*
1326 * Find hosts goes to stdout, hash and deletions happen in-place
1327 * A corner case is ssh-keygen -HF foo, which should go to stdout
1328 */
1329 if (!find_host && (hash_hosts || delete_host)) {
1330 if (strlcpy(tmp, identity_file, sizeof(tmp)) >= sizeof(tmp) ||
1331 strlcat(tmp, ".XXXXXXXXXX", sizeof(tmp)) >= sizeof(tmp) ||
1332 strlcpy(old, identity_file, sizeof(old)) >= sizeof(old) ||
1333 strlcat(old, ".old", sizeof(old)) >= sizeof(old))
1334 fatal("known_hosts path too long");
1335 umask(077);
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001336 if ((fd = mkstemp(tmp)) == -1)
Damien Miller4b42d7f2005-03-01 21:48:35 +11001337 fatal("mkstemp: %s", strerror(errno));
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001338 if ((ctx.out = fdopen(fd, "w")) == NULL) {
1339 oerrno = errno;
Damien Miller4b42d7f2005-03-01 21:48:35 +11001340 unlink(tmp);
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001341 fatal("fdopen: %s", strerror(oerrno));
Damien Miller4b42d7f2005-03-01 21:48:35 +11001342 }
djm@openbsd.org2b3c3c72015-01-18 21:51:19 +00001343 inplace = 1;
Damien Miller4b42d7f2005-03-01 21:48:35 +11001344 }
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001345 /* XXX support identity_file == "-" for stdin */
djm@openbsd.org4739e8d2015-05-21 12:01:19 +00001346 foreach_options = find_host ? HKF_WANT_MATCH : 0;
1347 foreach_options |= print_fingerprint ? HKF_WANT_PARSE_KEY : 0;
djm@openbsd.org01b048c2018-06-01 04:21:29 +00001348 if ((r = hostkeys_foreach(identity_file, (find_host || !hash_hosts) ?
djm@openbsd.org3e088aa2018-06-01 03:51:34 +00001349 known_hosts_find_delete : known_hosts_hash, &ctx, name, NULL,
1350 foreach_options)) != 0) {
deraadt@openbsd.org6da413c2015-11-28 06:50:52 +00001351 if (inplace)
1352 unlink(tmp);
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001353 fatal("%s: hostkeys_foreach failed: %s", __func__, ssh_err(r));
deraadt@openbsd.org6da413c2015-11-28 06:50:52 +00001354 }
Damien Miller4b42d7f2005-03-01 21:48:35 +11001355
djm@openbsd.org2b3c3c72015-01-18 21:51:19 +00001356 if (inplace)
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001357 fclose(ctx.out);
Damien Miller0a80ca12010-02-27 07:55:05 +11001358
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001359 if (ctx.invalid) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00001360 error("%s is not a valid known_hosts file.", identity_file);
djm@openbsd.org2b3c3c72015-01-18 21:51:19 +00001361 if (inplace) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00001362 error("Not replacing existing known_hosts "
1363 "file because of errors");
Damien Miller4b42d7f2005-03-01 21:48:35 +11001364 unlink(tmp);
1365 }
1366 exit(1);
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001367 } else if (delete_host && !ctx.found_key) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00001368 logit("Host %s not found in %s", name, identity_file);
djm@openbsd.orgc8376432015-08-19 23:17:51 +00001369 if (inplace)
1370 unlink(tmp);
djm@openbsd.org2b3c3c72015-01-18 21:51:19 +00001371 } else if (inplace) {
Damien Miller4b42d7f2005-03-01 21:48:35 +11001372 /* Backup existing file */
1373 if (unlink(old) == -1 && errno != ENOENT)
1374 fatal("unlink %.100s: %s", old, strerror(errno));
1375 if (link(identity_file, old) == -1)
1376 fatal("link %.100s to %.100s: %s", identity_file, old,
1377 strerror(errno));
1378 /* Move new one into place */
1379 if (rename(tmp, identity_file) == -1) {
1380 error("rename\"%s\" to \"%s\": %s", tmp, identity_file,
1381 strerror(errno));
1382 unlink(tmp);
1383 unlink(old);
1384 exit(1);
1385 }
1386
djm@openbsd.org3038a192015-04-17 13:19:22 +00001387 printf("%s updated.\n", identity_file);
1388 printf("Original contents retained as %s\n", old);
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001389 if (ctx.has_unhashed) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00001390 logit("WARNING: %s contains unhashed entries", old);
1391 logit("Delete this file to ensure privacy "
1392 "of hostnames");
Damien Miller4b42d7f2005-03-01 21:48:35 +11001393 }
1394 }
1395
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001396 exit (find_host && !ctx.found_key);
Damien Miller4b42d7f2005-03-01 21:48:35 +11001397}
1398
Damien Miller95def091999-11-25 00:26:21 +11001399/*
1400 * Perform changing a passphrase. The argument is the passwd structure
1401 * for the current user.
1402 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001403static void
Damien Miller10f6f6b1999-11-17 17:29:08 +11001404do_change_passphrase(struct passwd *pw)
1405{
Damien Miller95def091999-11-25 00:26:21 +11001406 char *comment;
1407 char *old_passphrase, *passphrase1, *passphrase2;
1408 struct stat st;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001409 struct sshkey *private;
1410 int r;
Damien Miller10f6f6b1999-11-17 17:29:08 +11001411
Damien Miller95def091999-11-25 00:26:21 +11001412 if (!have_identity)
1413 ask_filename(pw, "Enter file in which the key is");
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +00001414 if (stat(identity_file, &st) == -1)
djm@openbsd.org3038a192015-04-17 13:19:22 +00001415 fatal("%s: %s", identity_file, strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +11001416 /* Try to load the file with empty passphrase. */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001417 r = sshkey_load_private(identity_file, "", &private, &comment);
1418 if (r == SSH_ERR_KEY_WRONG_PASSPHRASE) {
Damien Miller95def091999-11-25 00:26:21 +11001419 if (identity_passphrase)
1420 old_passphrase = xstrdup(identity_passphrase);
1421 else
Ben Lindstrom949974b2001-06-25 05:20:31 +00001422 old_passphrase =
1423 read_passphrase("Enter old passphrase: ",
1424 RP_ALLOW_STDIN);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001425 r = sshkey_load_private(identity_file, old_passphrase,
1426 &private, &comment);
Damien Millera5103f42014-02-04 11:20:14 +11001427 explicit_bzero(old_passphrase, strlen(old_passphrase));
Darren Tuckera627d422013-06-02 07:31:17 +10001428 free(old_passphrase);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001429 if (r != 0)
1430 goto badkey;
1431 } else if (r != 0) {
1432 badkey:
djm@openbsd.org3038a192015-04-17 13:19:22 +00001433 fatal("Failed to load key %s: %s", identity_file, ssh_err(r));
Damien Miller95def091999-11-25 00:26:21 +11001434 }
djm@openbsd.orgf43d1722015-02-26 20:45:47 +00001435 if (comment)
djm@openbsd.orga287c5a2017-02-10 03:36:40 +00001436 mprintf("Key has comment '%s'\n", comment);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001437
Damien Miller95def091999-11-25 00:26:21 +11001438 /* Ask the new passphrase (twice). */
1439 if (identity_new_passphrase) {
1440 passphrase1 = xstrdup(identity_new_passphrase);
1441 passphrase2 = NULL;
1442 } else {
1443 passphrase1 =
Ben Lindstrom949974b2001-06-25 05:20:31 +00001444 read_passphrase("Enter new passphrase (empty for no "
1445 "passphrase): ", RP_ALLOW_STDIN);
1446 passphrase2 = read_passphrase("Enter same passphrase again: ",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001447 RP_ALLOW_STDIN);
Damien Miller95def091999-11-25 00:26:21 +11001448
1449 /* Verify that they are the same. */
1450 if (strcmp(passphrase1, passphrase2) != 0) {
Damien Millera5103f42014-02-04 11:20:14 +11001451 explicit_bzero(passphrase1, strlen(passphrase1));
1452 explicit_bzero(passphrase2, strlen(passphrase2));
Darren Tuckera627d422013-06-02 07:31:17 +10001453 free(passphrase1);
1454 free(passphrase2);
Damien Miller95def091999-11-25 00:26:21 +11001455 printf("Pass phrases do not match. Try again.\n");
1456 exit(1);
1457 }
1458 /* Destroy the other copy. */
Damien Millera5103f42014-02-04 11:20:14 +11001459 explicit_bzero(passphrase2, strlen(passphrase2));
Darren Tuckera627d422013-06-02 07:31:17 +10001460 free(passphrase2);
Damien Miller95def091999-11-25 00:26:21 +11001461 }
1462
1463 /* Save the file using the new passphrase. */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001464 if ((r = sshkey_save_private(private, identity_file, passphrase1,
djm@openbsd.orgeb0d8e72019-07-15 13:16:29 +00001465 comment, private_key_format, openssh_format_cipher, rounds)) != 0) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00001466 error("Saving key \"%s\" failed: %s.",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001467 identity_file, ssh_err(r));
Damien Millera5103f42014-02-04 11:20:14 +11001468 explicit_bzero(passphrase1, strlen(passphrase1));
Darren Tuckera627d422013-06-02 07:31:17 +10001469 free(passphrase1);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001470 sshkey_free(private);
Darren Tuckera627d422013-06-02 07:31:17 +10001471 free(comment);
Damien Miller95def091999-11-25 00:26:21 +11001472 exit(1);
1473 }
1474 /* Destroy the passphrase and the copy of the key in memory. */
Damien Millera5103f42014-02-04 11:20:14 +11001475 explicit_bzero(passphrase1, strlen(passphrase1));
Darren Tuckera627d422013-06-02 07:31:17 +10001476 free(passphrase1);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001477 sshkey_free(private); /* Destroys contents */
Darren Tuckera627d422013-06-02 07:31:17 +10001478 free(comment);
Damien Miller95def091999-11-25 00:26:21 +11001479
1480 printf("Your identification has been saved with the new passphrase.\n");
1481 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001482}
1483
Damien Miller37876e92003-05-15 10:19:46 +10001484/*
1485 * Print the SSHFP RR.
1486 */
Damien Millercb314822006-03-26 13:48:01 +11001487static int
djm@openbsd.org851f8032019-01-23 04:16:22 +00001488do_print_resource_record(struct passwd *pw, char *fname, char *hname,
1489 int print_generic)
Damien Miller37876e92003-05-15 10:19:46 +10001490{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001491 struct sshkey *public;
Damien Miller37876e92003-05-15 10:19:46 +10001492 char *comment = NULL;
1493 struct stat st;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001494 int r;
Damien Miller37876e92003-05-15 10:19:46 +10001495
Damien Millercb314822006-03-26 13:48:01 +11001496 if (fname == NULL)
Damien Miller5bb88332013-07-18 16:13:37 +10001497 fatal("%s: no filename", __func__);
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +00001498 if (stat(fname, &st) == -1) {
Damien Millercb314822006-03-26 13:48:01 +11001499 if (errno == ENOENT)
1500 return 0;
djm@openbsd.org3038a192015-04-17 13:19:22 +00001501 fatal("%s: %s", fname, strerror(errno));
Damien Miller37876e92003-05-15 10:19:46 +10001502 }
djm@openbsd.org3038a192015-04-17 13:19:22 +00001503 if ((r = sshkey_load_public(fname, &public, &comment)) != 0)
1504 fatal("Failed to read v2 public key from \"%s\": %s.",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001505 fname, ssh_err(r));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001506 export_dns_rr(hname, public, stdout, print_generic);
1507 sshkey_free(public);
1508 free(comment);
1509 return 1;
Damien Miller37876e92003-05-15 10:19:46 +10001510}
Damien Miller37876e92003-05-15 10:19:46 +10001511
Damien Miller95def091999-11-25 00:26:21 +11001512/*
1513 * Change the comment of a private key file.
1514 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001515static void
djm@openbsd.org851f8032019-01-23 04:16:22 +00001516do_change_comment(struct passwd *pw, const char *identity_comment)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001517{
Ben Lindstrom5fc62702001-03-09 18:19:24 +00001518 char new_comment[1024], *comment, *passphrase;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001519 struct sshkey *private;
1520 struct sshkey *public;
Damien Miller95def091999-11-25 00:26:21 +11001521 struct stat st;
1522 FILE *f;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001523 int r, fd;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001524
Damien Miller95def091999-11-25 00:26:21 +11001525 if (!have_identity)
1526 ask_filename(pw, "Enter file in which the key is");
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +00001527 if (stat(identity_file, &st) == -1)
djm@openbsd.org3038a192015-04-17 13:19:22 +00001528 fatal("%s: %s", identity_file, strerror(errno));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001529 if ((r = sshkey_load_private(identity_file, "",
1530 &private, &comment)) == 0)
1531 passphrase = xstrdup("");
djm@openbsd.org3038a192015-04-17 13:19:22 +00001532 else if (r != SSH_ERR_KEY_WRONG_PASSPHRASE)
1533 fatal("Cannot load private key \"%s\": %s.",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001534 identity_file, ssh_err(r));
djm@openbsd.org3038a192015-04-17 13:19:22 +00001535 else {
Damien Miller95def091999-11-25 00:26:21 +11001536 if (identity_passphrase)
1537 passphrase = xstrdup(identity_passphrase);
1538 else if (identity_new_passphrase)
1539 passphrase = xstrdup(identity_new_passphrase);
1540 else
Ben Lindstrom949974b2001-06-25 05:20:31 +00001541 passphrase = read_passphrase("Enter passphrase: ",
1542 RP_ALLOW_STDIN);
Damien Miller95def091999-11-25 00:26:21 +11001543 /* Try to load using the passphrase. */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001544 if ((r = sshkey_load_private(identity_file, passphrase,
1545 &private, &comment)) != 0) {
Damien Millera5103f42014-02-04 11:20:14 +11001546 explicit_bzero(passphrase, strlen(passphrase));
Darren Tuckera627d422013-06-02 07:31:17 +10001547 free(passphrase);
djm@openbsd.org3038a192015-04-17 13:19:22 +00001548 fatal("Cannot load private key \"%s\": %s.",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001549 identity_file, ssh_err(r));
Damien Miller95def091999-11-25 00:26:21 +11001550 }
1551 }
halex@openbsd.org4d906252015-11-20 23:04:01 +00001552
markus@openbsd.org1b11ea72018-02-23 15:58:37 +00001553 if (private->type != KEY_ED25519 && private->type != KEY_XMSS &&
djm@openbsd.orgeb0d8e72019-07-15 13:16:29 +00001554 private_key_format != SSHKEY_PRIVATE_OPENSSH) {
djm@openbsd.org873d3e72017-04-30 23:18:44 +00001555 error("Comments are only supported for keys stored in "
halex@openbsd.org4d906252015-11-20 23:04:01 +00001556 "the new format (-o).");
tobias@openbsd.org704d8c82015-03-31 11:06:49 +00001557 explicit_bzero(passphrase, strlen(passphrase));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001558 sshkey_free(private);
Ben Lindstromd0fca422001-03-26 13:44:06 +00001559 exit(1);
Damien Miller9f0f5c62001-12-21 14:45:46 +11001560 }
millert@openbsd.orge40269b2017-02-08 20:32:43 +00001561 if (comment)
lum@openbsd.org410b2312019-05-29 08:30:26 +00001562 printf("Old comment: %s\n", comment);
millert@openbsd.orge40269b2017-02-08 20:32:43 +00001563 else
lum@openbsd.org410b2312019-05-29 08:30:26 +00001564 printf("No existing comment\n");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001565
Damien Miller95def091999-11-25 00:26:21 +11001566 if (identity_comment) {
1567 strlcpy(new_comment, identity_comment, sizeof(new_comment));
1568 } else {
lum@openbsd.org410b2312019-05-29 08:30:26 +00001569 printf("New comment: ");
Damien Miller95def091999-11-25 00:26:21 +11001570 fflush(stdout);
1571 if (!fgets(new_comment, sizeof(new_comment), stdin)) {
Damien Millera5103f42014-02-04 11:20:14 +11001572 explicit_bzero(passphrase, strlen(passphrase));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001573 sshkey_free(private);
Damien Miller95def091999-11-25 00:26:21 +11001574 exit(1);
1575 }
Damien Miller14b017d2007-09-17 16:09:15 +10001576 new_comment[strcspn(new_comment, "\n")] = '\0';
Damien Miller95def091999-11-25 00:26:21 +11001577 }
lum@openbsd.org410b2312019-05-29 08:30:26 +00001578 if (comment != NULL && strcmp(comment, new_comment) == 0) {
1579 printf("No change to comment\n");
1580 free(passphrase);
1581 sshkey_free(private);
1582 free(comment);
1583 exit(0);
1584 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001585
Damien Miller95def091999-11-25 00:26:21 +11001586 /* Save the file using the new passphrase. */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001587 if ((r = sshkey_save_private(private, identity_file, passphrase,
djm@openbsd.orgeb0d8e72019-07-15 13:16:29 +00001588 new_comment, private_key_format, openssh_format_cipher,
1589 rounds)) != 0) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00001590 error("Saving key \"%s\" failed: %s",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001591 identity_file, ssh_err(r));
Damien Millera5103f42014-02-04 11:20:14 +11001592 explicit_bzero(passphrase, strlen(passphrase));
Darren Tuckera627d422013-06-02 07:31:17 +10001593 free(passphrase);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001594 sshkey_free(private);
Darren Tuckera627d422013-06-02 07:31:17 +10001595 free(comment);
Damien Miller95def091999-11-25 00:26:21 +11001596 exit(1);
1597 }
Damien Millera5103f42014-02-04 11:20:14 +11001598 explicit_bzero(passphrase, strlen(passphrase));
Darren Tuckera627d422013-06-02 07:31:17 +10001599 free(passphrase);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001600 if ((r = sshkey_from_private(private, &public)) != 0)
markus@openbsd.org7da5df12017-05-30 14:16:41 +00001601 fatal("sshkey_from_private failed: %s", ssh_err(r));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001602 sshkey_free(private);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001603
Damien Miller95def091999-11-25 00:26:21 +11001604 strlcat(identity_file, ".pub", sizeof(identity_file));
Ben Lindstrom5fc62702001-03-09 18:19:24 +00001605 fd = open(identity_file, O_WRONLY | O_CREAT | O_TRUNC, 0644);
djm@openbsd.org3038a192015-04-17 13:19:22 +00001606 if (fd == -1)
1607 fatal("Could not save your public key in %s", identity_file);
Ben Lindstrom5fc62702001-03-09 18:19:24 +00001608 f = fdopen(fd, "w");
djm@openbsd.org3038a192015-04-17 13:19:22 +00001609 if (f == NULL)
1610 fatal("fdopen %s failed: %s", identity_file, strerror(errno));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001611 if ((r = sshkey_write(public, f)) != 0)
djm@openbsd.org3038a192015-04-17 13:19:22 +00001612 fatal("write key failed: %s", ssh_err(r));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001613 sshkey_free(public);
Damien Millereba71ba2000-04-29 23:57:08 +10001614 fprintf(f, " %s\n", new_comment);
Damien Miller95def091999-11-25 00:26:21 +11001615 fclose(f);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001616
Darren Tuckera627d422013-06-02 07:31:17 +10001617 free(comment);
Damien Miller95def091999-11-25 00:26:21 +11001618
lum@openbsd.org410b2312019-05-29 08:30:26 +00001619 if (strlen(new_comment) > 0)
1620 printf("Comment '%s' applied\n", new_comment);
1621 else
1622 printf("Comment removed\n");
1623
Damien Miller95def091999-11-25 00:26:21 +11001624 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001625}
1626
Damien Miller0a80ca12010-02-27 07:55:05 +11001627static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001628add_flag_option(struct sshbuf *c, const char *name)
Damien Miller0a80ca12010-02-27 07:55:05 +11001629{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001630 int r;
1631
Damien Miller0a80ca12010-02-27 07:55:05 +11001632 debug3("%s: %s", __func__, name);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001633 if ((r = sshbuf_put_cstring(c, name)) != 0 ||
1634 (r = sshbuf_put_string(c, NULL, 0)) != 0)
1635 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Miller0a80ca12010-02-27 07:55:05 +11001636}
1637
1638static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001639add_string_option(struct sshbuf *c, const char *name, const char *value)
Damien Miller0a80ca12010-02-27 07:55:05 +11001640{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001641 struct sshbuf *b;
1642 int r;
Damien Miller0a80ca12010-02-27 07:55:05 +11001643
1644 debug3("%s: %s=%s", __func__, name, value);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001645 if ((b = sshbuf_new()) == NULL)
1646 fatal("%s: sshbuf_new failed", __func__);
1647 if ((r = sshbuf_put_cstring(b, value)) != 0 ||
1648 (r = sshbuf_put_cstring(c, name)) != 0 ||
1649 (r = sshbuf_put_stringb(c, b)) != 0)
1650 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Miller0a80ca12010-02-27 07:55:05 +11001651
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001652 sshbuf_free(b);
Damien Miller0a80ca12010-02-27 07:55:05 +11001653}
1654
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001655#define OPTIONS_CRITICAL 1
1656#define OPTIONS_EXTENSIONS 2
Damien Miller0a80ca12010-02-27 07:55:05 +11001657static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001658prepare_options_buf(struct sshbuf *c, int which)
Damien Miller0a80ca12010-02-27 07:55:05 +11001659{
djm@openbsd.org249516e2017-04-29 04:12:25 +00001660 size_t i;
1661
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001662 sshbuf_reset(c);
Damien Miller1da63882010-08-05 13:03:51 +10001663 if ((which & OPTIONS_CRITICAL) != 0 &&
1664 certflags_command != NULL)
1665 add_string_option(c, "force-command", certflags_command);
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001666 if ((which & OPTIONS_EXTENSIONS) != 0 &&
Damien Miller2ce12ef2011-05-05 14:17:18 +10001667 (certflags_flags & CERTOPT_X_FWD) != 0)
1668 add_flag_option(c, "permit-X11-forwarding");
1669 if ((which & OPTIONS_EXTENSIONS) != 0 &&
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001670 (certflags_flags & CERTOPT_AGENT_FWD) != 0)
Damien Miller4e270b02010-04-16 15:56:21 +10001671 add_flag_option(c, "permit-agent-forwarding");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001672 if ((which & OPTIONS_EXTENSIONS) != 0 &&
1673 (certflags_flags & CERTOPT_PORT_FWD) != 0)
Damien Miller4e270b02010-04-16 15:56:21 +10001674 add_flag_option(c, "permit-port-forwarding");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001675 if ((which & OPTIONS_EXTENSIONS) != 0 &&
1676 (certflags_flags & CERTOPT_PTY) != 0)
Damien Miller4e270b02010-04-16 15:56:21 +10001677 add_flag_option(c, "permit-pty");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001678 if ((which & OPTIONS_EXTENSIONS) != 0 &&
1679 (certflags_flags & CERTOPT_USER_RC) != 0)
Damien Miller4e270b02010-04-16 15:56:21 +10001680 add_flag_option(c, "permit-user-rc");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001681 if ((which & OPTIONS_CRITICAL) != 0 &&
djm@openbsd.org2e712632019-11-25 00:54:23 +00001682 (certflags_flags & CERTOPT_NO_REQUIRE_USER_PRESENCE) != 0)
1683 add_flag_option(c, "no-touch-required");
1684 if ((which & OPTIONS_CRITICAL) != 0 &&
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001685 certflags_src_addr != NULL)
1686 add_string_option(c, "source-address", certflags_src_addr);
djm@openbsd.org249516e2017-04-29 04:12:25 +00001687 for (i = 0; i < ncert_userext; i++) {
1688 if ((cert_userext[i].crit && (which & OPTIONS_EXTENSIONS)) ||
1689 (!cert_userext[i].crit && (which & OPTIONS_CRITICAL)))
1690 continue;
1691 if (cert_userext[i].val == NULL)
1692 add_flag_option(c, cert_userext[i].key);
1693 else {
1694 add_string_option(c, cert_userext[i].key,
1695 cert_userext[i].val);
1696 }
1697 }
Damien Miller0a80ca12010-02-27 07:55:05 +11001698}
1699
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001700static struct sshkey *
Damien Miller757f34e2010-08-05 13:05:31 +10001701load_pkcs11_key(char *path)
1702{
1703#ifdef ENABLE_PKCS11
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001704 struct sshkey **keys = NULL, *public, *private = NULL;
1705 int r, i, nkeys;
Damien Miller757f34e2010-08-05 13:05:31 +10001706
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001707 if ((r = sshkey_load_public(path, &public, NULL)) != 0)
1708 fatal("Couldn't load CA public key \"%s\": %s",
1709 path, ssh_err(r));
Damien Miller757f34e2010-08-05 13:05:31 +10001710
djm@openbsd.org89a8d452020-01-25 00:03:36 +00001711 nkeys = pkcs11_add_provider(pkcs11provider, identity_passphrase,
1712 &keys, NULL);
Damien Miller757f34e2010-08-05 13:05:31 +10001713 debug3("%s: %d keys", __func__, nkeys);
1714 if (nkeys <= 0)
1715 fatal("cannot read public key from pkcs11");
1716 for (i = 0; i < nkeys; i++) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001717 if (sshkey_equal_public(public, keys[i])) {
Damien Miller757f34e2010-08-05 13:05:31 +10001718 private = keys[i];
1719 continue;
1720 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001721 sshkey_free(keys[i]);
Damien Miller757f34e2010-08-05 13:05:31 +10001722 }
Darren Tuckera627d422013-06-02 07:31:17 +10001723 free(keys);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001724 sshkey_free(public);
Damien Miller757f34e2010-08-05 13:05:31 +10001725 return private;
1726#else
1727 fatal("no pkcs11 support");
1728#endif /* ENABLE_PKCS11 */
1729}
1730
djm@openbsd.orga98339e2017-06-28 01:09:22 +00001731/* Signer for sshkey_certify_custom that uses the agent */
1732static int
djm@openbsd.org4f7a56d2019-06-21 04:21:04 +00001733agent_signer(struct sshkey *key, u_char **sigp, size_t *lenp,
djm@openbsd.orga98339e2017-06-28 01:09:22 +00001734 const u_char *data, size_t datalen,
djm@openbsd.orgb923a902019-10-31 21:28:27 +00001735 const char *alg, const char *provider, u_int compat, void *ctx)
djm@openbsd.orga98339e2017-06-28 01:09:22 +00001736{
1737 int *agent_fdp = (int *)ctx;
1738
1739 return ssh_agent_sign(*agent_fdp, key, sigp, lenp,
1740 data, datalen, alg, compat);
1741}
1742
Damien Miller0a80ca12010-02-27 07:55:05 +11001743static void
djm@openbsd.org851f8032019-01-23 04:16:22 +00001744do_ca_sign(struct passwd *pw, const char *ca_key_path, int prefer_agent,
djm@openbsd.orgbe063942019-01-23 04:51:02 +00001745 unsigned long long cert_serial, int cert_serial_autoinc,
1746 int argc, char **argv)
Damien Miller0a80ca12010-02-27 07:55:05 +11001747{
djm@openbsd.orga98339e2017-06-28 01:09:22 +00001748 int r, i, fd, found, agent_fd = -1;
Damien Miller0a80ca12010-02-27 07:55:05 +11001749 u_int n;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001750 struct sshkey *ca, *public;
djm@openbsd.org516605f2019-12-10 22:37:20 +00001751 char valid[64], *otmp, *tmp, *cp, *out, *comment;
1752 char *ca_fp = NULL, **plist = NULL;
Damien Miller0a80ca12010-02-27 07:55:05 +11001753 FILE *f;
djm@openbsd.orga98339e2017-06-28 01:09:22 +00001754 struct ssh_identitylist *agent_ids;
1755 size_t j;
djm@openbsd.org516605f2019-12-10 22:37:20 +00001756 struct notifier_ctx *notifier = NULL;
Damien Miller4e270b02010-04-16 15:56:21 +10001757
Damien Miller1f0311c2014-05-15 14:24:09 +10001758#ifdef ENABLE_PKCS11
Damien Miller757f34e2010-08-05 13:05:31 +10001759 pkcs11_init(1);
Damien Miller1f0311c2014-05-15 14:24:09 +10001760#endif
Damien Miller757f34e2010-08-05 13:05:31 +10001761 tmp = tilde_expand_filename(ca_key_path, pw->pw_uid);
1762 if (pkcs11provider != NULL) {
djm@openbsd.orga98339e2017-06-28 01:09:22 +00001763 /* If a PKCS#11 token was specified then try to use it */
Damien Miller757f34e2010-08-05 13:05:31 +10001764 if ((ca = load_pkcs11_key(tmp)) == NULL)
1765 fatal("No PKCS#11 key matching %s found", ca_key_path);
djm@openbsd.orga98339e2017-06-28 01:09:22 +00001766 } else if (prefer_agent) {
1767 /*
1768 * Agent signature requested. Try to use agent after making
1769 * sure the public key specified is actually present in the
1770 * agent.
1771 */
1772 if ((r = sshkey_load_public(tmp, &ca, NULL)) != 0)
1773 fatal("Cannot load CA public key %s: %s",
1774 tmp, ssh_err(r));
1775 if ((r = ssh_get_authentication_socket(&agent_fd)) != 0)
1776 fatal("Cannot use public key for CA signature: %s",
1777 ssh_err(r));
1778 if ((r = ssh_fetch_identitylist(agent_fd, &agent_ids)) != 0)
1779 fatal("Retrieve agent key list: %s", ssh_err(r));
1780 found = 0;
1781 for (j = 0; j < agent_ids->nkeys; j++) {
1782 if (sshkey_equal(ca, agent_ids->keys[j])) {
1783 found = 1;
1784 break;
1785 }
1786 }
1787 if (!found)
1788 fatal("CA key %s not found in agent", tmp);
1789 ssh_free_identitylist(agent_ids);
1790 ca->flags |= SSHKEY_FLAG_EXT;
1791 } else {
1792 /* CA key is assumed to be a private key on the filesystem */
djm@openbsd.org07133222019-09-01 23:47:32 +00001793 ca = load_identity(tmp, NULL);
djm@openbsd.orga98339e2017-06-28 01:09:22 +00001794 }
Darren Tuckera627d422013-06-02 07:31:17 +10001795 free(tmp);
Damien Miller757f34e2010-08-05 13:05:31 +10001796
djm@openbsd.org4a41d242020-01-24 00:27:04 +00001797 if (key_type_name != NULL) {
1798 if (sshkey_type_from_name(key_type_name) != ca->type) {
1799 fatal("CA key type %s doesn't match specified %s",
1800 sshkey_ssh_name(ca), key_type_name);
1801 }
1802 } else if (ca->type == KEY_RSA) {
1803 /* Default to a good signature algorithm */
1804 key_type_name = "rsa-sha2-512";
djm@openbsd.org57464e32016-05-02 09:36:42 +00001805 }
djm@openbsd.org516605f2019-12-10 22:37:20 +00001806 ca_fp = sshkey_fingerprint(ca, fingerprint_hash, SSH_FP_DEFAULT);
djm@openbsd.org57464e32016-05-02 09:36:42 +00001807
Damien Miller0a80ca12010-02-27 07:55:05 +11001808 for (i = 0; i < argc; i++) {
1809 /* Split list of principals */
1810 n = 0;
1811 if (cert_principals != NULL) {
1812 otmp = tmp = xstrdup(cert_principals);
1813 plist = NULL;
1814 for (; (cp = strsep(&tmp, ",")) != NULL; n++) {
deraadt@openbsd.org657a5fb2015-04-24 01:36:00 +00001815 plist = xreallocarray(plist, n + 1, sizeof(*plist));
Damien Miller0a80ca12010-02-27 07:55:05 +11001816 if (*(plist[n] = xstrdup(cp)) == '\0')
1817 fatal("Empty principal name");
1818 }
Darren Tuckera627d422013-06-02 07:31:17 +10001819 free(otmp);
Damien Miller0a80ca12010-02-27 07:55:05 +11001820 }
djm@openbsd.orgca613242018-02-10 05:48:46 +00001821 if (n > SSHKEY_CERT_MAX_PRINCIPALS)
1822 fatal("Too many certificate principals specified");
djm@openbsd.org16dd8b22019-07-16 13:18:39 +00001823
Damien Miller0a80ca12010-02-27 07:55:05 +11001824 tmp = tilde_expand_filename(argv[i], pw->pw_uid);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001825 if ((r = sshkey_load_public(tmp, &public, &comment)) != 0)
1826 fatal("%s: unable to open \"%s\": %s",
1827 __func__, tmp, ssh_err(r));
djm@openbsd.org85409cb2019-11-18 06:24:17 +00001828 if (sshkey_is_cert(public))
Damien Miller0a80ca12010-02-27 07:55:05 +11001829 fatal("%s: key \"%s\" type %s cannot be certified",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001830 __func__, tmp, sshkey_type(public));
Damien Miller0a80ca12010-02-27 07:55:05 +11001831
1832 /* Prepare certificate to sign */
djm@openbsd.orgc28fc622015-07-03 03:43:18 +00001833 if ((r = sshkey_to_certified(public)) != 0)
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001834 fatal("Could not upgrade key %s to certificate: %s",
1835 tmp, ssh_err(r));
Damien Miller0a80ca12010-02-27 07:55:05 +11001836 public->cert->type = cert_key_type;
Damien Miller4e270b02010-04-16 15:56:21 +10001837 public->cert->serial = (u_int64_t)cert_serial;
Damien Miller0a80ca12010-02-27 07:55:05 +11001838 public->cert->key_id = xstrdup(cert_key_id);
1839 public->cert->nprincipals = n;
1840 public->cert->principals = plist;
1841 public->cert->valid_after = cert_valid_from;
1842 public->cert->valid_before = cert_valid_to;
djm@openbsd.orgc28fc622015-07-03 03:43:18 +00001843 prepare_options_buf(public->cert->critical, OPTIONS_CRITICAL);
1844 prepare_options_buf(public->cert->extensions,
1845 OPTIONS_EXTENSIONS);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001846 if ((r = sshkey_from_private(ca,
1847 &public->cert->signature_key)) != 0)
markus@openbsd.org7da5df12017-05-30 14:16:41 +00001848 fatal("sshkey_from_private (ca key): %s", ssh_err(r));
Damien Miller0a80ca12010-02-27 07:55:05 +11001849
djm@openbsd.orga98339e2017-06-28 01:09:22 +00001850 if (agent_fd != -1 && (ca->flags & SSHKEY_FLAG_EXT) != 0) {
1851 if ((r = sshkey_certify_custom(public, ca,
djm@openbsd.org9a14c642019-10-31 21:23:19 +00001852 key_type_name, sk_provider, agent_signer,
1853 &agent_fd)) != 0)
djm@openbsd.orga98339e2017-06-28 01:09:22 +00001854 fatal("Couldn't certify key %s via agent: %s",
1855 tmp, ssh_err(r));
1856 } else {
djm@openbsd.org516605f2019-12-10 22:37:20 +00001857 if (sshkey_is_sk(ca) &&
1858 (ca->sk_flags & SSH_SK_USER_PRESENCE_REQD)) {
1859 notifier = notify_start(0,
1860 "Confirm user presence for key %s %s",
1861 sshkey_type(ca), ca_fp);
1862 }
1863 r = sshkey_certify(public, ca, key_type_name,
1864 sk_provider);
1865 notify_complete(notifier);
1866 if (r != 0)
djm@openbsd.orga98339e2017-06-28 01:09:22 +00001867 fatal("Couldn't certify key %s: %s",
1868 tmp, ssh_err(r));
1869 }
Damien Miller0a80ca12010-02-27 07:55:05 +11001870
1871 if ((cp = strrchr(tmp, '.')) != NULL && strcmp(cp, ".pub") == 0)
1872 *cp = '\0';
1873 xasprintf(&out, "%s-cert.pub", tmp);
Darren Tuckera627d422013-06-02 07:31:17 +10001874 free(tmp);
Damien Miller0a80ca12010-02-27 07:55:05 +11001875
1876 if ((fd = open(out, O_WRONLY|O_CREAT|O_TRUNC, 0644)) == -1)
1877 fatal("Could not open \"%s\" for writing: %s", out,
1878 strerror(errno));
1879 if ((f = fdopen(fd, "w")) == NULL)
1880 fatal("%s: fdopen: %s", __func__, strerror(errno));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001881 if ((r = sshkey_write(public, f)) != 0)
1882 fatal("Could not write certified key to %s: %s",
1883 out, ssh_err(r));
Damien Miller0a80ca12010-02-27 07:55:05 +11001884 fprintf(f, " %s\n", comment);
1885 fclose(f);
1886
Damien Miller4e270b02010-04-16 15:56:21 +10001887 if (!quiet) {
djm@openbsd.org964ab3e2015-11-19 01:12:32 +00001888 sshkey_format_cert_validity(public->cert,
djm@openbsd.org499cf362015-11-19 01:08:55 +00001889 valid, sizeof(valid));
Damien Miller4e270b02010-04-16 15:56:21 +10001890 logit("Signed %s key %s: id \"%s\" serial %llu%s%s "
djm@openbsd.org964ab3e2015-11-19 01:12:32 +00001891 "valid %s", sshkey_cert_type(public),
Damien Miller821de0a2011-01-11 17:20:29 +11001892 out, public->cert->key_id,
1893 (unsigned long long)public->cert->serial,
Damien Miller0a80ca12010-02-27 07:55:05 +11001894 cert_principals != NULL ? " for " : "",
1895 cert_principals != NULL ? cert_principals : "",
djm@openbsd.org499cf362015-11-19 01:08:55 +00001896 valid);
Damien Miller4e270b02010-04-16 15:56:21 +10001897 }
Damien Miller0a80ca12010-02-27 07:55:05 +11001898
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001899 sshkey_free(public);
Darren Tuckera627d422013-06-02 07:31:17 +10001900 free(out);
djm@openbsd.orgbe063942019-01-23 04:51:02 +00001901 if (cert_serial_autoinc)
1902 cert_serial++;
Damien Miller0a80ca12010-02-27 07:55:05 +11001903 }
djm@openbsd.org516605f2019-12-10 22:37:20 +00001904 free(ca_fp);
Damien Miller1f0311c2014-05-15 14:24:09 +10001905#ifdef ENABLE_PKCS11
Damien Miller757f34e2010-08-05 13:05:31 +10001906 pkcs11_terminate();
Damien Miller1f0311c2014-05-15 14:24:09 +10001907#endif
Damien Miller0a80ca12010-02-27 07:55:05 +11001908 exit(0);
1909}
1910
1911static u_int64_t
1912parse_relative_time(const char *s, time_t now)
1913{
1914 int64_t mul, secs;
1915
1916 mul = *s == '-' ? -1 : 1;
1917
1918 if ((secs = convtime(s + 1)) == -1)
1919 fatal("Invalid relative certificate time %s", s);
1920 if (mul == -1 && secs > now)
1921 fatal("Certificate time %s cannot be represented", s);
1922 return now + (u_int64_t)(secs * mul);
1923}
1924
Damien Miller0a80ca12010-02-27 07:55:05 +11001925static void
1926parse_cert_times(char *timespec)
1927{
1928 char *from, *to;
1929 time_t now = time(NULL);
1930 int64_t secs;
1931
1932 /* +timespec relative to now */
1933 if (*timespec == '+' && strchr(timespec, ':') == NULL) {
1934 if ((secs = convtime(timespec + 1)) == -1)
1935 fatal("Invalid relative certificate life %s", timespec);
1936 cert_valid_to = now + secs;
1937 /*
1938 * Backdate certificate one minute to avoid problems on hosts
1939 * with poorly-synchronised clocks.
1940 */
1941 cert_valid_from = ((now - 59)/ 60) * 60;
1942 return;
1943 }
1944
1945 /*
1946 * from:to, where
djm@openbsd.org@openbsd.orgd52131a2017-11-03 05:14:04 +00001947 * from := [+-]timespec | YYYYMMDD | YYYYMMDDHHMMSS | "always"
1948 * to := [+-]timespec | YYYYMMDD | YYYYMMDDHHMMSS | "forever"
Damien Miller0a80ca12010-02-27 07:55:05 +11001949 */
1950 from = xstrdup(timespec);
1951 to = strchr(from, ':');
1952 if (to == NULL || from == to || *(to + 1) == '\0')
Damien Miller910f2092010-03-04 14:17:22 +11001953 fatal("Invalid certificate life specification %s", timespec);
Damien Miller0a80ca12010-02-27 07:55:05 +11001954 *to++ = '\0';
1955
1956 if (*from == '-' || *from == '+')
1957 cert_valid_from = parse_relative_time(from, now);
djm@openbsd.org@openbsd.orgd52131a2017-11-03 05:14:04 +00001958 else if (strcmp(from, "always") == 0)
1959 cert_valid_from = 0;
djm@openbsd.orgbf0fbf22018-03-12 00:52:01 +00001960 else if (parse_absolute_time(from, &cert_valid_from) != 0)
1961 fatal("Invalid from time \"%s\"", from);
Damien Miller0a80ca12010-02-27 07:55:05 +11001962
1963 if (*to == '-' || *to == '+')
Damien Miller5b01b0d2013-10-23 16:31:31 +11001964 cert_valid_to = parse_relative_time(to, now);
djm@openbsd.org@openbsd.orgd52131a2017-11-03 05:14:04 +00001965 else if (strcmp(to, "forever") == 0)
1966 cert_valid_to = ~(u_int64_t)0;
djm@openbsd.orgbf0fbf22018-03-12 00:52:01 +00001967 else if (parse_absolute_time(to, &cert_valid_to) != 0)
1968 fatal("Invalid to time \"%s\"", to);
Damien Miller0a80ca12010-02-27 07:55:05 +11001969
1970 if (cert_valid_to <= cert_valid_from)
1971 fatal("Empty certificate validity interval");
Darren Tuckera627d422013-06-02 07:31:17 +10001972 free(from);
Damien Miller0a80ca12010-02-27 07:55:05 +11001973}
1974
1975static void
Damien Miller4e270b02010-04-16 15:56:21 +10001976add_cert_option(char *opt)
Damien Miller0a80ca12010-02-27 07:55:05 +11001977{
djm@openbsd.org249516e2017-04-29 04:12:25 +00001978 char *val, *cp;
1979 int iscrit = 0;
Damien Miller0a80ca12010-02-27 07:55:05 +11001980
Damien Miller044f4a62011-05-05 14:14:08 +10001981 if (strcasecmp(opt, "clear") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001982 certflags_flags = 0;
Damien Miller0a80ca12010-02-27 07:55:05 +11001983 else if (strcasecmp(opt, "no-x11-forwarding") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001984 certflags_flags &= ~CERTOPT_X_FWD;
Damien Miller0a80ca12010-02-27 07:55:05 +11001985 else if (strcasecmp(opt, "permit-x11-forwarding") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001986 certflags_flags |= CERTOPT_X_FWD;
Damien Miller0a80ca12010-02-27 07:55:05 +11001987 else if (strcasecmp(opt, "no-agent-forwarding") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001988 certflags_flags &= ~CERTOPT_AGENT_FWD;
Damien Miller0a80ca12010-02-27 07:55:05 +11001989 else if (strcasecmp(opt, "permit-agent-forwarding") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001990 certflags_flags |= CERTOPT_AGENT_FWD;
Damien Miller0a80ca12010-02-27 07:55:05 +11001991 else if (strcasecmp(opt, "no-port-forwarding") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001992 certflags_flags &= ~CERTOPT_PORT_FWD;
Damien Miller0a80ca12010-02-27 07:55:05 +11001993 else if (strcasecmp(opt, "permit-port-forwarding") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001994 certflags_flags |= CERTOPT_PORT_FWD;
Damien Miller0a80ca12010-02-27 07:55:05 +11001995 else if (strcasecmp(opt, "no-pty") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001996 certflags_flags &= ~CERTOPT_PTY;
Damien Miller0a80ca12010-02-27 07:55:05 +11001997 else if (strcasecmp(opt, "permit-pty") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001998 certflags_flags |= CERTOPT_PTY;
Damien Miller0a80ca12010-02-27 07:55:05 +11001999 else if (strcasecmp(opt, "no-user-rc") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10002000 certflags_flags &= ~CERTOPT_USER_RC;
Damien Miller0a80ca12010-02-27 07:55:05 +11002001 else if (strcasecmp(opt, "permit-user-rc") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10002002 certflags_flags |= CERTOPT_USER_RC;
djm@openbsd.org2e712632019-11-25 00:54:23 +00002003 else if (strcasecmp(opt, "touch-required") == 0)
2004 certflags_flags &= ~CERTOPT_NO_REQUIRE_USER_PRESENCE;
2005 else if (strcasecmp(opt, "no-touch-required") == 0)
2006 certflags_flags |= CERTOPT_NO_REQUIRE_USER_PRESENCE;
Damien Miller0a80ca12010-02-27 07:55:05 +11002007 else if (strncasecmp(opt, "force-command=", 14) == 0) {
2008 val = opt + 14;
2009 if (*val == '\0')
Damien Miller4e270b02010-04-16 15:56:21 +10002010 fatal("Empty force-command option");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10002011 if (certflags_command != NULL)
Damien Miller0a80ca12010-02-27 07:55:05 +11002012 fatal("force-command already specified");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10002013 certflags_command = xstrdup(val);
Damien Miller0a80ca12010-02-27 07:55:05 +11002014 } else if (strncasecmp(opt, "source-address=", 15) == 0) {
2015 val = opt + 15;
2016 if (*val == '\0')
Damien Miller4e270b02010-04-16 15:56:21 +10002017 fatal("Empty source-address option");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10002018 if (certflags_src_addr != NULL)
Damien Miller0a80ca12010-02-27 07:55:05 +11002019 fatal("source-address already specified");
2020 if (addr_match_cidr_list(NULL, val) != 0)
2021 fatal("Invalid source-address list");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10002022 certflags_src_addr = xstrdup(val);
djm@openbsd.org249516e2017-04-29 04:12:25 +00002023 } else if (strncasecmp(opt, "extension:", 10) == 0 ||
2024 (iscrit = (strncasecmp(opt, "critical:", 9) == 0))) {
2025 val = xstrdup(strchr(opt, ':') + 1);
2026 if ((cp = strchr(val, '=')) != NULL)
2027 *cp++ = '\0';
2028 cert_userext = xreallocarray(cert_userext, ncert_userext + 1,
2029 sizeof(*cert_userext));
2030 cert_userext[ncert_userext].key = val;
2031 cert_userext[ncert_userext].val = cp == NULL ?
2032 NULL : xstrdup(cp);
2033 cert_userext[ncert_userext].crit = iscrit;
2034 ncert_userext++;
Damien Miller0a80ca12010-02-27 07:55:05 +11002035 } else
Damien Miller4e270b02010-04-16 15:56:21 +10002036 fatal("Unsupported certificate option \"%s\"", opt);
Damien Miller0a80ca12010-02-27 07:55:05 +11002037}
2038
Ben Lindstrombba81212001-06-25 05:01:22 +00002039static void
djm@openbsd.orgc28fc622015-07-03 03:43:18 +00002040show_options(struct sshbuf *optbuf, int in_critical)
Damien Millerd834d352010-06-26 09:48:02 +10002041{
Damien Miller633de332014-05-15 13:48:26 +10002042 char *name, *arg;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002043 struct sshbuf *options, *option = NULL;
2044 int r;
Damien Millerd834d352010-06-26 09:48:02 +10002045
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002046 if ((options = sshbuf_fromb(optbuf)) == NULL)
2047 fatal("%s: sshbuf_fromb failed", __func__);
2048 while (sshbuf_len(options) != 0) {
2049 sshbuf_free(option);
2050 option = NULL;
2051 if ((r = sshbuf_get_cstring(options, &name, NULL)) != 0 ||
2052 (r = sshbuf_froms(options, &option)) != 0)
2053 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Millerd834d352010-06-26 09:48:02 +10002054 printf(" %s", name);
djm@openbsd.orgc28fc622015-07-03 03:43:18 +00002055 if (!in_critical &&
Damien Millerd834d352010-06-26 09:48:02 +10002056 (strcmp(name, "permit-X11-forwarding") == 0 ||
2057 strcmp(name, "permit-agent-forwarding") == 0 ||
2058 strcmp(name, "permit-port-forwarding") == 0 ||
2059 strcmp(name, "permit-pty") == 0 ||
djm@openbsd.org2e712632019-11-25 00:54:23 +00002060 strcmp(name, "permit-user-rc") == 0 ||
2061 strcmp(name, "no-touch-required") == 0)) {
Damien Millerd834d352010-06-26 09:48:02 +10002062 printf("\n");
djm@openbsd.org2e712632019-11-25 00:54:23 +00002063 } else if (in_critical &&
Damien Millerd834d352010-06-26 09:48:02 +10002064 (strcmp(name, "force-command") == 0 ||
2065 strcmp(name, "source-address") == 0)) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002066 if ((r = sshbuf_get_cstring(option, &arg, NULL)) != 0)
2067 fatal("%s: buffer error: %s",
2068 __func__, ssh_err(r));
Damien Miller633de332014-05-15 13:48:26 +10002069 printf(" %s\n", arg);
2070 free(arg);
Damien Millerd834d352010-06-26 09:48:02 +10002071 } else {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002072 printf(" UNKNOWN OPTION (len %zu)\n",
2073 sshbuf_len(option));
2074 sshbuf_reset(option);
Damien Millerd834d352010-06-26 09:48:02 +10002075 }
Darren Tuckera627d422013-06-02 07:31:17 +10002076 free(name);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002077 if (sshbuf_len(option) != 0)
Damien Millerd834d352010-06-26 09:48:02 +10002078 fatal("Option corrupt: extra data at end");
2079 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002080 sshbuf_free(option);
2081 sshbuf_free(options);
Damien Millerd834d352010-06-26 09:48:02 +10002082}
2083
2084static void
djm@openbsd.org94bc0b72015-11-13 04:34:15 +00002085print_cert(struct sshkey *key)
Damien Millerf2b70ca2010-03-05 07:39:35 +11002086{
djm@openbsd.org499cf362015-11-19 01:08:55 +00002087 char valid[64], *key_fp, *ca_fp;
djm@openbsd.orgc28fc622015-07-03 03:43:18 +00002088 u_int i;
Damien Miller4e270b02010-04-16 15:56:21 +10002089
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002090 key_fp = sshkey_fingerprint(key, fingerprint_hash, SSH_FP_DEFAULT);
2091 ca_fp = sshkey_fingerprint(key->cert->signature_key,
djm@openbsd.org56d1c832014-12-21 22:27:55 +00002092 fingerprint_hash, SSH_FP_DEFAULT);
djm@openbsd.org9ce86c92015-01-28 22:36:00 +00002093 if (key_fp == NULL || ca_fp == NULL)
2094 fatal("%s: sshkey_fingerprint fail", __func__);
djm@openbsd.org499cf362015-11-19 01:08:55 +00002095 sshkey_format_cert_validity(key->cert, valid, sizeof(valid));
Damien Millerf2b70ca2010-03-05 07:39:35 +11002096
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002097 printf(" Type: %s %s certificate\n", sshkey_ssh_name(key),
2098 sshkey_cert_type(key));
2099 printf(" Public key: %s %s\n", sshkey_type(key), key_fp);
djm@openbsd.orga4fc2532018-10-19 03:12:42 +00002100 printf(" Signing CA: %s %s (using %s)\n",
2101 sshkey_type(key->cert->signature_key), ca_fp,
2102 key->cert->signature_type);
Damien Miller4e270b02010-04-16 15:56:21 +10002103 printf(" Key ID: \"%s\"\n", key->cert->key_id);
djm@openbsd.orgc28fc622015-07-03 03:43:18 +00002104 printf(" Serial: %llu\n", (unsigned long long)key->cert->serial);
djm@openbsd.org499cf362015-11-19 01:08:55 +00002105 printf(" Valid: %s\n", valid);
Damien Millerf2b70ca2010-03-05 07:39:35 +11002106 printf(" Principals: ");
2107 if (key->cert->nprincipals == 0)
2108 printf("(none)\n");
2109 else {
2110 for (i = 0; i < key->cert->nprincipals; i++)
2111 printf("\n %s",
2112 key->cert->principals[i]);
2113 printf("\n");
2114 }
Damien Miller4e270b02010-04-16 15:56:21 +10002115 printf(" Critical Options: ");
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002116 if (sshbuf_len(key->cert->critical) == 0)
Damien Millerf2b70ca2010-03-05 07:39:35 +11002117 printf("(none)\n");
2118 else {
2119 printf("\n");
djm@openbsd.orgc28fc622015-07-03 03:43:18 +00002120 show_options(key->cert->critical, 1);
Damien Millerf2b70ca2010-03-05 07:39:35 +11002121 }
djm@openbsd.orgc28fc622015-07-03 03:43:18 +00002122 printf(" Extensions: ");
2123 if (sshbuf_len(key->cert->extensions) == 0)
2124 printf("(none)\n");
2125 else {
2126 printf("\n");
2127 show_options(key->cert->extensions, 0);
Damien Miller4e270b02010-04-16 15:56:21 +10002128 }
djm@openbsd.org94bc0b72015-11-13 04:34:15 +00002129}
2130
2131static void
2132do_show_cert(struct passwd *pw)
2133{
2134 struct sshkey *key = NULL;
2135 struct stat st;
2136 int r, is_stdin = 0, ok = 0;
2137 FILE *f;
markus@openbsd.org7f906352018-06-06 18:29:18 +00002138 char *cp, *line = NULL;
djm@openbsd.org94bc0b72015-11-13 04:34:15 +00002139 const char *path;
markus@openbsd.org7f906352018-06-06 18:29:18 +00002140 size_t linesize = 0;
djm@openbsd.org1a31d022016-05-02 08:49:03 +00002141 u_long lnum = 0;
djm@openbsd.org94bc0b72015-11-13 04:34:15 +00002142
2143 if (!have_identity)
2144 ask_filename(pw, "Enter file in which the key is");
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +00002145 if (strcmp(identity_file, "-") != 0 && stat(identity_file, &st) == -1)
djm@openbsd.org94bc0b72015-11-13 04:34:15 +00002146 fatal("%s: %s: %s", __progname, identity_file, strerror(errno));
2147
2148 path = identity_file;
2149 if (strcmp(path, "-") == 0) {
2150 f = stdin;
2151 path = "(stdin)";
2152 is_stdin = 1;
2153 } else if ((f = fopen(identity_file, "r")) == NULL)
2154 fatal("fopen %s: %s", identity_file, strerror(errno));
2155
markus@openbsd.org7f906352018-06-06 18:29:18 +00002156 while (getline(&line, &linesize, f) != -1) {
2157 lnum++;
djm@openbsd.org94bc0b72015-11-13 04:34:15 +00002158 sshkey_free(key);
2159 key = NULL;
2160 /* Trim leading space and comments */
2161 cp = line + strspn(line, " \t");
2162 if (*cp == '#' || *cp == '\0')
2163 continue;
2164 if ((key = sshkey_new(KEY_UNSPEC)) == NULL)
markus@openbsd.org7da5df12017-05-30 14:16:41 +00002165 fatal("sshkey_new");
djm@openbsd.org94bc0b72015-11-13 04:34:15 +00002166 if ((r = sshkey_read(key, &cp)) != 0) {
2167 error("%s:%lu: invalid key: %s", path,
2168 lnum, ssh_err(r));
2169 continue;
2170 }
2171 if (!sshkey_is_cert(key)) {
2172 error("%s:%lu is not a certificate", path, lnum);
2173 continue;
2174 }
2175 ok = 1;
2176 if (!is_stdin && lnum == 1)
2177 printf("%s:\n", path);
2178 else
2179 printf("%s:%lu:\n", path, lnum);
2180 print_cert(key);
2181 }
markus@openbsd.org7f906352018-06-06 18:29:18 +00002182 free(line);
djm@openbsd.org94bc0b72015-11-13 04:34:15 +00002183 sshkey_free(key);
2184 fclose(f);
2185 exit(ok ? 0 : 1);
Damien Millerf2b70ca2010-03-05 07:39:35 +11002186}
2187
2188static void
Damien Millerf3747bf2013-01-18 11:44:04 +11002189load_krl(const char *path, struct ssh_krl **krlp)
2190{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002191 struct sshbuf *krlbuf;
djm@openbsd.org99aa8032020-01-25 23:02:13 +00002192 int r;
Damien Millerf3747bf2013-01-18 11:44:04 +11002193
djm@openbsd.org99aa8032020-01-25 23:02:13 +00002194 if ((r = sshbuf_load_file(path, &krlbuf)) != 0)
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002195 fatal("Unable to load KRL: %s", ssh_err(r));
Damien Millerf3747bf2013-01-18 11:44:04 +11002196 /* XXX check sigs */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002197 if ((r = ssh_krl_from_blob(krlbuf, krlp, NULL, 0)) != 0 ||
Damien Millerf3747bf2013-01-18 11:44:04 +11002198 *krlp == NULL)
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002199 fatal("Invalid KRL file: %s", ssh_err(r));
2200 sshbuf_free(krlbuf);
Damien Millerf3747bf2013-01-18 11:44:04 +11002201}
2202
2203static void
djm@openbsd.org9405c622018-09-12 01:21:34 +00002204hash_to_blob(const char *cp, u_char **blobp, size_t *lenp,
2205 const char *file, u_long lnum)
2206{
2207 char *tmp;
2208 size_t tlen;
2209 struct sshbuf *b;
2210 int r;
2211
2212 if (strncmp(cp, "SHA256:", 7) != 0)
2213 fatal("%s:%lu: unsupported hash algorithm", file, lnum);
2214 cp += 7;
2215
2216 /*
2217 * OpenSSH base64 hashes omit trailing '='
2218 * characters; put them back for decode.
2219 */
2220 tlen = strlen(cp);
2221 tmp = xmalloc(tlen + 4 + 1);
2222 strlcpy(tmp, cp, tlen + 1);
2223 while ((tlen % 4) != 0) {
2224 tmp[tlen++] = '=';
2225 tmp[tlen] = '\0';
2226 }
2227 if ((b = sshbuf_new()) == NULL)
2228 fatal("%s: sshbuf_new failed", __func__);
2229 if ((r = sshbuf_b64tod(b, tmp)) != 0)
2230 fatal("%s:%lu: decode hash failed: %s", file, lnum, ssh_err(r));
2231 free(tmp);
2232 *lenp = sshbuf_len(b);
2233 *blobp = xmalloc(*lenp);
2234 memcpy(*blobp, sshbuf_ptr(b), *lenp);
2235 sshbuf_free(b);
2236}
2237
2238static void
djm@openbsd.org669aee92015-01-30 01:10:33 +00002239update_krl_from_file(struct passwd *pw, const char *file, int wild_ca,
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002240 const struct sshkey *ca, struct ssh_krl *krl)
Damien Millerf3747bf2013-01-18 11:44:04 +11002241{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002242 struct sshkey *key = NULL;
Damien Millerf3747bf2013-01-18 11:44:04 +11002243 u_long lnum = 0;
markus@openbsd.org7f906352018-06-06 18:29:18 +00002244 char *path, *cp, *ep, *line = NULL;
djm@openbsd.org9405c622018-09-12 01:21:34 +00002245 u_char *blob = NULL;
2246 size_t blen = 0, linesize = 0;
Damien Millerf3747bf2013-01-18 11:44:04 +11002247 unsigned long long serial, serial2;
djm@openbsd.org9405c622018-09-12 01:21:34 +00002248 int i, was_explicit_key, was_sha1, was_sha256, was_hash, r;
Damien Millerf3747bf2013-01-18 11:44:04 +11002249 FILE *krl_spec;
2250
2251 path = tilde_expand_filename(file, pw->pw_uid);
2252 if (strcmp(path, "-") == 0) {
2253 krl_spec = stdin;
2254 free(path);
2255 path = xstrdup("(standard input)");
2256 } else if ((krl_spec = fopen(path, "r")) == NULL)
2257 fatal("fopen %s: %s", path, strerror(errno));
2258
2259 if (!quiet)
2260 printf("Revoking from %s\n", path);
markus@openbsd.org7f906352018-06-06 18:29:18 +00002261 while (getline(&line, &linesize, krl_spec) != -1) {
2262 lnum++;
djm@openbsd.org9405c622018-09-12 01:21:34 +00002263 was_explicit_key = was_sha1 = was_sha256 = was_hash = 0;
Damien Millerf3747bf2013-01-18 11:44:04 +11002264 cp = line + strspn(line, " \t");
2265 /* Trim trailing space, comments and strip \n */
2266 for (i = 0, r = -1; cp[i] != '\0'; i++) {
2267 if (cp[i] == '#' || cp[i] == '\n') {
2268 cp[i] = '\0';
2269 break;
2270 }
2271 if (cp[i] == ' ' || cp[i] == '\t') {
2272 /* Remember the start of a span of whitespace */
2273 if (r == -1)
2274 r = i;
2275 } else
2276 r = -1;
2277 }
2278 if (r != -1)
2279 cp[r] = '\0';
2280 if (*cp == '\0')
2281 continue;
2282 if (strncasecmp(cp, "serial:", 7) == 0) {
djm@openbsd.org669aee92015-01-30 01:10:33 +00002283 if (ca == NULL && !wild_ca) {
Damien Millerd234afb2013-08-21 02:42:58 +10002284 fatal("revoking certificates by serial number "
Damien Millerf3747bf2013-01-18 11:44:04 +11002285 "requires specification of a CA key");
2286 }
2287 cp += 7;
2288 cp = cp + strspn(cp, " \t");
2289 errno = 0;
2290 serial = strtoull(cp, &ep, 0);
2291 if (*cp == '\0' || (*ep != '\0' && *ep != '-'))
2292 fatal("%s:%lu: invalid serial \"%s\"",
2293 path, lnum, cp);
2294 if (errno == ERANGE && serial == ULLONG_MAX)
2295 fatal("%s:%lu: serial out of range",
2296 path, lnum);
2297 serial2 = serial;
2298 if (*ep == '-') {
2299 cp = ep + 1;
2300 errno = 0;
2301 serial2 = strtoull(cp, &ep, 0);
2302 if (*cp == '\0' || *ep != '\0')
2303 fatal("%s:%lu: invalid serial \"%s\"",
2304 path, lnum, cp);
2305 if (errno == ERANGE && serial2 == ULLONG_MAX)
2306 fatal("%s:%lu: serial out of range",
2307 path, lnum);
2308 if (serial2 <= serial)
2309 fatal("%s:%lu: invalid serial range "
2310 "%llu:%llu", path, lnum,
2311 (unsigned long long)serial,
2312 (unsigned long long)serial2);
2313 }
2314 if (ssh_krl_revoke_cert_by_serial_range(krl,
2315 ca, serial, serial2) != 0) {
2316 fatal("%s: revoke serial failed",
2317 __func__);
2318 }
2319 } else if (strncasecmp(cp, "id:", 3) == 0) {
djm@openbsd.org669aee92015-01-30 01:10:33 +00002320 if (ca == NULL && !wild_ca) {
Damien Millerd5d9d7b2013-08-21 02:43:27 +10002321 fatal("revoking certificates by key ID "
Damien Millerf3747bf2013-01-18 11:44:04 +11002322 "requires specification of a CA key");
2323 }
2324 cp += 3;
2325 cp = cp + strspn(cp, " \t");
2326 if (ssh_krl_revoke_cert_by_key_id(krl, ca, cp) != 0)
2327 fatal("%s: revoke key ID failed", __func__);
djm@openbsd.org9405c622018-09-12 01:21:34 +00002328 } else if (strncasecmp(cp, "hash:", 5) == 0) {
2329 cp += 5;
2330 cp = cp + strspn(cp, " \t");
2331 hash_to_blob(cp, &blob, &blen, file, lnum);
2332 r = ssh_krl_revoke_key_sha256(krl, blob, blen);
Damien Millerf3747bf2013-01-18 11:44:04 +11002333 } else {
2334 if (strncasecmp(cp, "key:", 4) == 0) {
2335 cp += 4;
2336 cp = cp + strspn(cp, " \t");
2337 was_explicit_key = 1;
2338 } else if (strncasecmp(cp, "sha1:", 5) == 0) {
2339 cp += 5;
2340 cp = cp + strspn(cp, " \t");
2341 was_sha1 = 1;
djm@openbsd.org9405c622018-09-12 01:21:34 +00002342 } else if (strncasecmp(cp, "sha256:", 7) == 0) {
2343 cp += 7;
2344 cp = cp + strspn(cp, " \t");
2345 was_sha256 = 1;
Damien Millerf3747bf2013-01-18 11:44:04 +11002346 /*
2347 * Just try to process the line as a key.
2348 * Parsing will fail if it isn't.
2349 */
2350 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002351 if ((key = sshkey_new(KEY_UNSPEC)) == NULL)
markus@openbsd.org7da5df12017-05-30 14:16:41 +00002352 fatal("sshkey_new");
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002353 if ((r = sshkey_read(key, &cp)) != 0)
2354 fatal("%s:%lu: invalid key: %s",
2355 path, lnum, ssh_err(r));
Damien Millerf3747bf2013-01-18 11:44:04 +11002356 if (was_explicit_key)
2357 r = ssh_krl_revoke_key_explicit(krl, key);
djm@openbsd.org9405c622018-09-12 01:21:34 +00002358 else if (was_sha1) {
2359 if (sshkey_fingerprint_raw(key,
2360 SSH_DIGEST_SHA1, &blob, &blen) != 0) {
2361 fatal("%s:%lu: fingerprint failed",
2362 file, lnum);
2363 }
2364 r = ssh_krl_revoke_key_sha1(krl, blob, blen);
2365 } else if (was_sha256) {
2366 if (sshkey_fingerprint_raw(key,
2367 SSH_DIGEST_SHA256, &blob, &blen) != 0) {
2368 fatal("%s:%lu: fingerprint failed",
2369 file, lnum);
2370 }
2371 r = ssh_krl_revoke_key_sha256(krl, blob, blen);
2372 } else
Damien Millerf3747bf2013-01-18 11:44:04 +11002373 r = ssh_krl_revoke_key(krl, key);
2374 if (r != 0)
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002375 fatal("%s: revoke key failed: %s",
2376 __func__, ssh_err(r));
djm@openbsd.org9405c622018-09-12 01:21:34 +00002377 freezero(blob, blen);
2378 blob = NULL;
2379 blen = 0;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002380 sshkey_free(key);
Damien Millerf3747bf2013-01-18 11:44:04 +11002381 }
2382 }
2383 if (strcmp(path, "-") != 0)
2384 fclose(krl_spec);
markus@openbsd.org7f906352018-06-06 18:29:18 +00002385 free(line);
Damien Miller0d6771b2013-04-23 15:23:24 +10002386 free(path);
Damien Millerf3747bf2013-01-18 11:44:04 +11002387}
2388
2389static void
djm@openbsd.org851f8032019-01-23 04:16:22 +00002390do_gen_krl(struct passwd *pw, int updating, const char *ca_key_path,
2391 unsigned long long krl_version, const char *krl_comment,
2392 int argc, char **argv)
Damien Millerf3747bf2013-01-18 11:44:04 +11002393{
2394 struct ssh_krl *krl;
2395 struct stat sb;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002396 struct sshkey *ca = NULL;
djm@openbsd.org99aa8032020-01-25 23:02:13 +00002397 int i, r, wild_ca = 0;
Damien Millerf3747bf2013-01-18 11:44:04 +11002398 char *tmp;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002399 struct sshbuf *kbuf;
Damien Millerf3747bf2013-01-18 11:44:04 +11002400
2401 if (*identity_file == '\0')
2402 fatal("KRL generation requires an output file");
2403 if (stat(identity_file, &sb) == -1) {
2404 if (errno != ENOENT)
2405 fatal("Cannot access KRL \"%s\": %s",
2406 identity_file, strerror(errno));
2407 if (updating)
2408 fatal("KRL \"%s\" does not exist", identity_file);
2409 }
2410 if (ca_key_path != NULL) {
djm@openbsd.org669aee92015-01-30 01:10:33 +00002411 if (strcasecmp(ca_key_path, "none") == 0)
2412 wild_ca = 1;
2413 else {
2414 tmp = tilde_expand_filename(ca_key_path, pw->pw_uid);
2415 if ((r = sshkey_load_public(tmp, &ca, NULL)) != 0)
2416 fatal("Cannot load CA public key %s: %s",
2417 tmp, ssh_err(r));
2418 free(tmp);
2419 }
Damien Millerf3747bf2013-01-18 11:44:04 +11002420 }
2421
2422 if (updating)
2423 load_krl(identity_file, &krl);
2424 else if ((krl = ssh_krl_init()) == NULL)
2425 fatal("couldn't create KRL");
2426
djm@openbsd.org851f8032019-01-23 04:16:22 +00002427 if (krl_version != 0)
2428 ssh_krl_set_version(krl, krl_version);
2429 if (krl_comment != NULL)
2430 ssh_krl_set_comment(krl, krl_comment);
Damien Millerf3747bf2013-01-18 11:44:04 +11002431
2432 for (i = 0; i < argc; i++)
djm@openbsd.org669aee92015-01-30 01:10:33 +00002433 update_krl_from_file(pw, argv[i], wild_ca, ca, krl);
Damien Millerf3747bf2013-01-18 11:44:04 +11002434
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002435 if ((kbuf = sshbuf_new()) == NULL)
2436 fatal("sshbuf_new failed");
2437 if (ssh_krl_to_blob(krl, kbuf, NULL, 0) != 0)
Damien Millerf3747bf2013-01-18 11:44:04 +11002438 fatal("Couldn't generate KRL");
djm@openbsd.org99aa8032020-01-25 23:02:13 +00002439 if ((r = sshbuf_write_file(identity_file, kbuf)) != 0)
Damien Millerf3747bf2013-01-18 11:44:04 +11002440 fatal("write %s: %s", identity_file, strerror(errno));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002441 sshbuf_free(kbuf);
Damien Millerf3747bf2013-01-18 11:44:04 +11002442 ssh_krl_free(krl);
mmcc@openbsd.org89540b62015-12-11 02:31:47 +00002443 sshkey_free(ca);
Damien Millerf3747bf2013-01-18 11:44:04 +11002444}
2445
2446static void
2447do_check_krl(struct passwd *pw, int argc, char **argv)
2448{
2449 int i, r, ret = 0;
2450 char *comment;
2451 struct ssh_krl *krl;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002452 struct sshkey *k;
Damien Millerf3747bf2013-01-18 11:44:04 +11002453
2454 if (*identity_file == '\0')
2455 fatal("KRL checking requires an input file");
2456 load_krl(identity_file, &krl);
2457 for (i = 0; i < argc; i++) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002458 if ((r = sshkey_load_public(argv[i], &k, &comment)) != 0)
2459 fatal("Cannot load public key %s: %s",
2460 argv[i], ssh_err(r));
Damien Millerf3747bf2013-01-18 11:44:04 +11002461 r = ssh_krl_check_key(krl, k);
2462 printf("%s%s%s%s: %s\n", argv[i],
2463 *comment ? " (" : "", comment, *comment ? ")" : "",
2464 r == 0 ? "ok" : "REVOKED");
2465 if (r != 0)
2466 ret = 1;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002467 sshkey_free(k);
Damien Millerf3747bf2013-01-18 11:44:04 +11002468 free(comment);
2469 }
2470 ssh_krl_free(krl);
2471 exit(ret);
2472}
2473
djm@openbsd.org2a9c9f72019-09-03 08:34:19 +00002474static struct sshkey *
2475load_sign_key(const char *keypath, const struct sshkey *pubkey)
2476{
2477 size_t i, slen, plen = strlen(keypath);
2478 char *privpath = xstrdup(keypath);
2479 const char *suffixes[] = { "-cert.pub", ".pub", NULL };
2480 struct sshkey *ret = NULL, *privkey = NULL;
2481 int r;
2482
2483 /*
2484 * If passed a public key filename, then try to locate the correponding
2485 * private key. This lets us specify certificates on the command-line
2486 * and have ssh-keygen find the appropriate private key.
2487 */
2488 for (i = 0; suffixes[i]; i++) {
2489 slen = strlen(suffixes[i]);
2490 if (plen <= slen ||
2491 strcmp(privpath + plen - slen, suffixes[i]) != 0)
2492 continue;
2493 privpath[plen - slen] = '\0';
2494 debug("%s: %s looks like a public key, using private key "
2495 "path %s instead", __func__, keypath, privpath);
2496 }
2497 if ((privkey = load_identity(privpath, NULL)) == NULL) {
2498 error("Couldn't load identity %s", keypath);
2499 goto done;
2500 }
2501 if (!sshkey_equal_public(pubkey, privkey)) {
2502 error("Public key %s doesn't match private %s",
2503 keypath, privpath);
2504 goto done;
2505 }
2506 if (sshkey_is_cert(pubkey) && !sshkey_is_cert(privkey)) {
2507 /*
2508 * Graft the certificate onto the private key to make
2509 * it capable of signing.
2510 */
2511 if ((r = sshkey_to_certified(privkey)) != 0) {
2512 error("%s: sshkey_to_certified: %s", __func__,
2513 ssh_err(r));
2514 goto done;
2515 }
2516 if ((r = sshkey_cert_copy(pubkey, privkey)) != 0) {
2517 error("%s: sshkey_cert_copy: %s", __func__, ssh_err(r));
2518 goto done;
2519 }
2520 }
2521 /* success */
2522 ret = privkey;
2523 privkey = NULL;
2524 done:
2525 sshkey_free(privkey);
2526 free(privpath);
2527 return ret;
2528}
2529
2530static int
2531sign_one(struct sshkey *signkey, const char *filename, int fd,
2532 const char *sig_namespace, sshsig_signer *signer, void *signer_ctx)
2533{
2534 struct sshbuf *sigbuf = NULL, *abuf = NULL;
2535 int r = SSH_ERR_INTERNAL_ERROR, wfd = -1, oerrno;
djm@openbsd.orge44bb612019-11-12 22:36:44 +00002536 char *wfile = NULL, *asig = NULL, *fp = NULL;
djm@openbsd.org2a9c9f72019-09-03 08:34:19 +00002537
2538 if (!quiet) {
2539 if (fd == STDIN_FILENO)
2540 fprintf(stderr, "Signing data on standard input\n");
2541 else
2542 fprintf(stderr, "Signing file %s\n", filename);
2543 }
djm@openbsd.orge44bb612019-11-12 22:36:44 +00002544 if (signer == NULL && sshkey_is_sk(signkey) &&
2545 (signkey->sk_flags & SSH_SK_USER_PRESENCE_REQD)) {
2546 if ((fp = sshkey_fingerprint(signkey, fingerprint_hash,
2547 SSH_FP_DEFAULT)) == NULL)
2548 fatal("%s: sshkey_fingerprint failed", __func__);
2549 fprintf(stderr, "Confirm user presence for key %s %s\n",
2550 sshkey_type(signkey), fp);
2551 free(fp);
2552 }
djm@openbsd.org9a14c642019-10-31 21:23:19 +00002553 if ((r = sshsig_sign_fd(signkey, NULL, sk_provider, fd, sig_namespace,
djm@openbsd.org2a9c9f72019-09-03 08:34:19 +00002554 &sigbuf, signer, signer_ctx)) != 0) {
2555 error("Signing %s failed: %s", filename, ssh_err(r));
2556 goto out;
2557 }
2558 if ((r = sshsig_armor(sigbuf, &abuf)) != 0) {
2559 error("%s: sshsig_armor: %s", __func__, ssh_err(r));
2560 goto out;
2561 }
2562 if ((asig = sshbuf_dup_string(abuf)) == NULL) {
2563 error("%s: buffer error", __func__);
2564 r = SSH_ERR_ALLOC_FAIL;
2565 goto out;
2566 }
2567
2568 if (fd == STDIN_FILENO) {
2569 fputs(asig, stdout);
2570 fflush(stdout);
2571 } else {
2572 xasprintf(&wfile, "%s.sig", filename);
2573 if (confirm_overwrite(wfile)) {
2574 if ((wfd = open(wfile, O_WRONLY|O_CREAT|O_TRUNC,
2575 0666)) == -1) {
2576 oerrno = errno;
2577 error("Cannot open %s: %s",
2578 wfile, strerror(errno));
2579 errno = oerrno;
2580 r = SSH_ERR_SYSTEM_ERROR;
2581 goto out;
2582 }
2583 if (atomicio(vwrite, wfd, asig,
2584 strlen(asig)) != strlen(asig)) {
2585 oerrno = errno;
2586 error("Cannot write to %s: %s",
2587 wfile, strerror(errno));
2588 errno = oerrno;
2589 r = SSH_ERR_SYSTEM_ERROR;
2590 goto out;
2591 }
2592 if (!quiet) {
2593 fprintf(stderr, "Write signature to %s\n",
2594 wfile);
2595 }
2596 }
2597 }
2598 /* success */
2599 r = 0;
2600 out:
2601 free(wfile);
2602 free(asig);
2603 sshbuf_free(abuf);
2604 sshbuf_free(sigbuf);
2605 if (wfd != -1)
2606 close(wfd);
2607 return r;
2608}
2609
2610static int
djm@openbsd.org56cffcc2020-01-23 02:43:48 +00002611sig_sign(const char *keypath, const char *sig_namespace, int argc, char **argv)
djm@openbsd.org2a9c9f72019-09-03 08:34:19 +00002612{
2613 int i, fd = -1, r, ret = -1;
2614 int agent_fd = -1;
2615 struct sshkey *pubkey = NULL, *privkey = NULL, *signkey = NULL;
2616 sshsig_signer *signer = NULL;
2617
2618 /* Check file arguments. */
2619 for (i = 0; i < argc; i++) {
2620 if (strcmp(argv[i], "-") != 0)
2621 continue;
2622 if (i > 0 || argc > 1)
2623 fatal("Cannot sign mix of paths and standard input");
2624 }
2625
2626 if ((r = sshkey_load_public(keypath, &pubkey, NULL)) != 0) {
2627 error("Couldn't load public key %s: %s", keypath, ssh_err(r));
2628 goto done;
2629 }
2630
2631 if ((r = ssh_get_authentication_socket(&agent_fd)) != 0)
2632 debug("Couldn't get agent socket: %s", ssh_err(r));
2633 else {
2634 if ((r = ssh_agent_has_key(agent_fd, pubkey)) == 0)
2635 signer = agent_signer;
2636 else
2637 debug("Couldn't find key in agent: %s", ssh_err(r));
2638 }
2639
2640 if (signer == NULL) {
2641 /* Not using agent - try to load private key */
2642 if ((privkey = load_sign_key(keypath, pubkey)) == NULL)
2643 goto done;
2644 signkey = privkey;
2645 } else {
2646 /* Will use key in agent */
2647 signkey = pubkey;
2648 }
2649
2650 if (argc == 0) {
2651 if ((r = sign_one(signkey, "(stdin)", STDIN_FILENO,
2652 sig_namespace, signer, &agent_fd)) != 0)
2653 goto done;
2654 } else {
2655 for (i = 0; i < argc; i++) {
2656 if (strcmp(argv[i], "-") == 0)
2657 fd = STDIN_FILENO;
2658 else if ((fd = open(argv[i], O_RDONLY)) == -1) {
2659 error("Cannot open %s for signing: %s",
2660 argv[i], strerror(errno));
2661 goto done;
2662 }
2663 if ((r = sign_one(signkey, argv[i], fd, sig_namespace,
2664 signer, &agent_fd)) != 0)
2665 goto done;
2666 if (fd != STDIN_FILENO)
2667 close(fd);
2668 fd = -1;
2669 }
2670 }
2671
2672 ret = 0;
2673done:
2674 if (fd != -1 && fd != STDIN_FILENO)
2675 close(fd);
2676 sshkey_free(pubkey);
2677 sshkey_free(privkey);
2678 return ret;
2679}
2680
2681static int
djm@openbsd.org56cffcc2020-01-23 02:43:48 +00002682sig_verify(const char *signature, const char *sig_namespace,
2683 const char *principal, const char *allowed_keys, const char *revoked_keys)
djm@openbsd.org2a9c9f72019-09-03 08:34:19 +00002684{
djm@openbsd.org99aa8032020-01-25 23:02:13 +00002685 int r, ret = -1;
djm@openbsd.org2a9c9f72019-09-03 08:34:19 +00002686 struct sshbuf *sigbuf = NULL, *abuf = NULL;
2687 struct sshkey *sign_key = NULL;
2688 char *fp = NULL;
djm@openbsd.orgb7e74ea2019-11-25 00:51:37 +00002689 struct sshkey_sig_details *sig_details = NULL;
djm@openbsd.org2a9c9f72019-09-03 08:34:19 +00002690
djm@openbsd.orgb7e74ea2019-11-25 00:51:37 +00002691 memset(&sig_details, 0, sizeof(sig_details));
djm@openbsd.org99aa8032020-01-25 23:02:13 +00002692 if ((r = sshbuf_load_file(signature, &abuf)) != 0) {
djm@openbsd.org2a9c9f72019-09-03 08:34:19 +00002693 error("Couldn't read signature file: %s", ssh_err(r));
2694 goto done;
2695 }
djm@openbsd.org99aa8032020-01-25 23:02:13 +00002696
djm@openbsd.org2a9c9f72019-09-03 08:34:19 +00002697 if ((r = sshsig_dearmor(abuf, &sigbuf)) != 0) {
2698 error("%s: sshsig_armor: %s", __func__, ssh_err(r));
djm@openbsd.org56cffcc2020-01-23 02:43:48 +00002699 goto done;
djm@openbsd.org2a9c9f72019-09-03 08:34:19 +00002700 }
2701 if ((r = sshsig_verify_fd(sigbuf, STDIN_FILENO, sig_namespace,
djm@openbsd.orgb7e74ea2019-11-25 00:51:37 +00002702 &sign_key, &sig_details)) != 0)
djm@openbsd.org2a9c9f72019-09-03 08:34:19 +00002703 goto done; /* sshsig_verify() prints error */
2704
2705 if ((fp = sshkey_fingerprint(sign_key, fingerprint_hash,
2706 SSH_FP_DEFAULT)) == NULL)
2707 fatal("%s: sshkey_fingerprint failed", __func__);
2708 debug("Valid (unverified) signature from key %s", fp);
djm@openbsd.orgb7e74ea2019-11-25 00:51:37 +00002709 if (sig_details != NULL) {
2710 debug2("%s: signature details: counter = %u, flags = 0x%02x",
2711 __func__, sig_details->sk_counter, sig_details->sk_flags);
2712 }
djm@openbsd.org2a9c9f72019-09-03 08:34:19 +00002713 free(fp);
2714 fp = NULL;
2715
2716 if (revoked_keys != NULL) {
djm@openbsd.orgd637c4a2019-09-03 08:35:27 +00002717 if ((r = sshkey_check_revoked(sign_key, revoked_keys)) != 0) {
2718 debug3("sshkey_check_revoked failed: %s", ssh_err(r));
2719 goto done;
2720 }
djm@openbsd.org2a9c9f72019-09-03 08:34:19 +00002721 }
2722
djm@openbsd.org8aa2aa32019-09-16 03:23:02 +00002723 if (allowed_keys != NULL &&
2724 (r = sshsig_check_allowed_keys(allowed_keys, sign_key,
2725 principal, sig_namespace)) != 0) {
djm@openbsd.org2a9c9f72019-09-03 08:34:19 +00002726 debug3("sshsig_check_allowed_keys failed: %s", ssh_err(r));
2727 goto done;
2728 }
2729 /* success */
2730 ret = 0;
2731done:
2732 if (!quiet) {
2733 if (ret == 0) {
2734 if ((fp = sshkey_fingerprint(sign_key, fingerprint_hash,
2735 SSH_FP_DEFAULT)) == NULL) {
2736 fatal("%s: sshkey_fingerprint failed",
2737 __func__);
2738 }
djm@openbsd.org8aa2aa32019-09-16 03:23:02 +00002739 if (principal == NULL) {
2740 printf("Good \"%s\" signature with %s key %s\n",
2741 sig_namespace, sshkey_type(sign_key), fp);
2742
2743 } else {
2744 printf("Good \"%s\" signature for %s with %s key %s\n",
2745 sig_namespace, principal,
2746 sshkey_type(sign_key), fp);
2747 }
djm@openbsd.org2a9c9f72019-09-03 08:34:19 +00002748 } else {
2749 printf("Could not verify signature.\n");
2750 }
2751 }
djm@openbsd.org2a9c9f72019-09-03 08:34:19 +00002752 sshbuf_free(sigbuf);
2753 sshbuf_free(abuf);
2754 sshkey_free(sign_key);
djm@openbsd.orgb7e74ea2019-11-25 00:51:37 +00002755 sshkey_sig_details_free(sig_details);
djm@openbsd.org2a9c9f72019-09-03 08:34:19 +00002756 free(fp);
2757 return ret;
2758}
2759
djm@openbsd.org56cffcc2020-01-23 02:43:48 +00002760static int
djm@openbsd.org72a8bea2020-01-23 23:31:52 +00002761sig_find_principals(const char *signature, const char *allowed_keys) {
djm@openbsd.org99aa8032020-01-25 23:02:13 +00002762 int r, ret = -1;
djm@openbsd.org56cffcc2020-01-23 02:43:48 +00002763 struct sshbuf *sigbuf = NULL, *abuf = NULL;
2764 struct sshkey *sign_key = NULL;
djm@openbsd.orgd15c8ad2020-01-24 05:33:01 +00002765 char *principals = NULL, *cp, *tmp;
djm@openbsd.org56cffcc2020-01-23 02:43:48 +00002766
djm@openbsd.org99aa8032020-01-25 23:02:13 +00002767 if ((r = sshbuf_load_file(signature, &abuf)) != 0) {
djm@openbsd.org56cffcc2020-01-23 02:43:48 +00002768 error("Couldn't read signature file: %s", ssh_err(r));
2769 goto done;
2770 }
2771 if ((r = sshsig_dearmor(abuf, &sigbuf)) != 0) {
2772 error("%s: sshsig_armor: %s", __func__, ssh_err(r));
2773 goto done;
2774 }
2775 if ((r = sshsig_get_pubkey(sigbuf, &sign_key)) != 0) {
2776 error("%s: sshsig_get_pubkey: %s",
djm@openbsd.org72a8bea2020-01-23 23:31:52 +00002777 __func__, ssh_err(r));
djm@openbsd.org56cffcc2020-01-23 02:43:48 +00002778 goto done;
2779 }
djm@openbsd.org72a8bea2020-01-23 23:31:52 +00002780 if ((r = sshsig_find_principals(allowed_keys, sign_key,
2781 &principals)) != 0) {
djm@openbsd.org56cffcc2020-01-23 02:43:48 +00002782 error("%s: sshsig_get_principal: %s",
2783 __func__, ssh_err(r));
2784 goto done;
2785 }
2786 ret = 0;
2787done:
2788 if (ret == 0 ) {
djm@openbsd.orgd15c8ad2020-01-24 05:33:01 +00002789 /* Emit matching principals one per line */
2790 tmp = principals;
2791 while ((cp = strsep(&tmp, ",")) != NULL && *cp != '\0')
2792 puts(cp);
djm@openbsd.org56cffcc2020-01-23 02:43:48 +00002793 } else {
djm@openbsd.orgd15c8ad2020-01-24 05:33:01 +00002794 fprintf(stderr, "No principal matched.\n");
djm@openbsd.org56cffcc2020-01-23 02:43:48 +00002795 }
djm@openbsd.org56cffcc2020-01-23 02:43:48 +00002796 sshbuf_free(sigbuf);
2797 sshbuf_free(abuf);
2798 sshkey_free(sign_key);
djm@openbsd.org72a8bea2020-01-23 23:31:52 +00002799 free(principals);
djm@openbsd.org56cffcc2020-01-23 02:43:48 +00002800 return ret;
2801}
2802
Damien Millerf3747bf2013-01-18 11:44:04 +11002803static void
djm@openbsd.org3e60d182019-12-30 03:30:09 +00002804do_moduli_gen(const char *out_file, char **opts, size_t nopts)
2805{
2806#ifdef WITH_OPENSSL
2807 /* Moduli generation/screening */
2808 u_int32_t memory = 0;
2809 BIGNUM *start = NULL;
2810 int moduli_bits = 0;
2811 FILE *out;
2812 size_t i;
2813 const char *errstr;
2814
2815 /* Parse options */
2816 for (i = 0; i < nopts; i++) {
2817 if (strncmp(opts[i], "memory=", 7) == 0) {
2818 memory = (u_int32_t)strtonum(opts[i]+7, 1,
2819 UINT_MAX, &errstr);
2820 if (errstr) {
2821 fatal("Memory limit is %s: %s",
2822 errstr, opts[i]+7);
2823 }
2824 } else if (strncmp(opts[i], "start=", 6) == 0) {
2825 /* XXX - also compare length against bits */
2826 if (BN_hex2bn(&start, opts[i]+6) == 0)
2827 fatal("Invalid start point.");
2828 } else if (strncmp(opts[i], "bits=", 5) == 0) {
2829 moduli_bits = (int)strtonum(opts[i]+5, 1,
2830 INT_MAX, &errstr);
2831 if (errstr) {
2832 fatal("Invalid number: %s (%s)",
2833 opts[i]+12, errstr);
2834 }
2835 } else {
2836 fatal("Option \"%s\" is unsupported for moduli "
2837 "generation", opts[i]);
2838 }
2839 }
2840
2841 if ((out = fopen(out_file, "w")) == NULL) {
2842 fatal("Couldn't open modulus candidate file \"%s\": %s",
2843 out_file, strerror(errno));
2844 }
2845 setvbuf(out, NULL, _IOLBF, 0);
2846
2847 if (moduli_bits == 0)
2848 moduli_bits = DEFAULT_BITS;
2849 if (gen_candidates(out, memory, moduli_bits, start) != 0)
2850 fatal("modulus candidate generation failed");
2851#else /* WITH_OPENSSL */
2852 fatal("Moduli generation is not supported");
2853#endif /* WITH_OPENSSL */
2854}
2855
2856static void
2857do_moduli_screen(const char *out_file, char **opts, size_t nopts)
2858{
2859#ifdef WITH_OPENSSL
2860 /* Moduli generation/screening */
2861 char *checkpoint = NULL;
2862 u_int32_t generator_wanted = 0;
2863 unsigned long start_lineno = 0, lines_to_process = 0;
2864 int prime_tests = 0;
2865 FILE *out, *in = stdin;
2866 size_t i;
2867 const char *errstr;
2868
2869 /* Parse options */
2870 for (i = 0; i < nopts; i++) {
2871 if (strncmp(opts[i], "lines=", 6) == 0) {
2872 lines_to_process = strtoul(opts[i]+6, NULL, 10);
2873 } else if (strncmp(opts[i], "start-line=", 11) == 0) {
2874 start_lineno = strtoul(opts[i]+11, NULL, 10);
2875 } else if (strncmp(opts[i], "checkpoint=", 11) == 0) {
2876 checkpoint = xstrdup(opts[i]+11);
2877 } else if (strncmp(opts[i], "generator=", 10) == 0) {
2878 generator_wanted = (u_int32_t)strtonum(
2879 opts[i]+10, 1, UINT_MAX, &errstr);
2880 if (errstr != NULL) {
2881 fatal("Generator invalid: %s (%s)",
2882 opts[i]+10, errstr);
2883 }
2884 } else if (strncmp(opts[i], "prime-tests=", 12) == 0) {
2885 prime_tests = (int)strtonum(opts[i]+12, 1,
2886 INT_MAX, &errstr);
2887 if (errstr) {
2888 fatal("Invalid number: %s (%s)",
2889 opts[i]+12, errstr);
2890 }
2891 } else {
2892 fatal("Option \"%s\" is unsupported for moduli "
2893 "screening", opts[i]);
2894 }
2895 }
2896
2897 if (have_identity && strcmp(identity_file, "-") != 0) {
2898 if ((in = fopen(identity_file, "r")) == NULL) {
2899 fatal("Couldn't open modulus candidate "
2900 "file \"%s\": %s", identity_file,
2901 strerror(errno));
2902 }
2903 }
2904
2905 if ((out = fopen(out_file, "a")) == NULL) {
2906 fatal("Couldn't open moduli file \"%s\": %s",
2907 out_file, strerror(errno));
2908 }
2909 setvbuf(out, NULL, _IOLBF, 0);
2910 if (prime_test(in, out, prime_tests == 0 ? 100 : prime_tests,
2911 generator_wanted, checkpoint,
2912 start_lineno, lines_to_process) != 0)
2913 fatal("modulus screening failed");
2914#else /* WITH_OPENSSL */
2915 fatal("Moduli screening is not supported");
2916#endif /* WITH_OPENSSL */
2917}
2918
djm@openbsd.org90399712020-01-02 22:40:09 +00002919static char *
2920private_key_passphrase(void)
2921{
2922 char *passphrase1, *passphrase2;
2923
2924 /* Ask for a passphrase (twice). */
2925 if (identity_passphrase)
2926 passphrase1 = xstrdup(identity_passphrase);
2927 else if (identity_new_passphrase)
2928 passphrase1 = xstrdup(identity_new_passphrase);
2929 else {
2930passphrase_again:
2931 passphrase1 =
2932 read_passphrase("Enter passphrase (empty for no "
2933 "passphrase): ", RP_ALLOW_STDIN);
2934 passphrase2 = read_passphrase("Enter same passphrase again: ",
2935 RP_ALLOW_STDIN);
2936 if (strcmp(passphrase1, passphrase2) != 0) {
2937 /*
2938 * The passphrases do not match. Clear them and
2939 * retry.
2940 */
2941 freezero(passphrase1, strlen(passphrase1));
2942 freezero(passphrase2, strlen(passphrase2));
2943 printf("Passphrases do not match. Try again.\n");
2944 goto passphrase_again;
2945 }
2946 /* Clear the other copy of the passphrase. */
2947 freezero(passphrase2, strlen(passphrase2));
2948 }
2949 return passphrase1;
2950}
2951
2952static const char *
2953skip_ssh_url_preamble(const char *s)
2954{
2955 if (strncmp(s, "ssh://", 6) == 0)
2956 return s + 6;
2957 else if (strncmp(s, "ssh:", 4) == 0)
2958 return s + 4;
2959 return s;
2960}
2961
2962static int
djm@openbsd.orgc312ca02020-01-06 02:00:46 +00002963do_download_sk(const char *skprovider, const char *device)
djm@openbsd.org90399712020-01-02 22:40:09 +00002964{
2965 struct sshkey **keys;
2966 size_t nkeys, i;
2967 int r, ok = -1;
2968 char *fp, *pin, *pass = NULL, *path, *pubpath;
2969 const char *ext;
2970
2971 if (skprovider == NULL)
2972 fatal("Cannot download keys without provider");
2973
naddy@openbsd.orga47f6a62020-02-06 22:30:54 +00002974 pin = read_passphrase("Enter PIN for authenticator: ", RP_ALLOW_STDIN);
djm@openbsd.orgc312ca02020-01-06 02:00:46 +00002975 if ((r = sshsk_load_resident(skprovider, device, pin,
2976 &keys, &nkeys)) != 0) {
djm@openbsd.org90399712020-01-02 22:40:09 +00002977 freezero(pin, strlen(pin));
2978 error("Unable to load resident keys: %s", ssh_err(r));
2979 return -1;
2980 }
2981 if (nkeys == 0)
2982 logit("No keys to download");
2983 freezero(pin, strlen(pin));
2984
2985 for (i = 0; i < nkeys; i++) {
2986 if (keys[i]->type != KEY_ECDSA_SK &&
2987 keys[i]->type != KEY_ED25519_SK) {
2988 error("Unsupported key type %s (%d)",
2989 sshkey_type(keys[i]), keys[i]->type);
2990 continue;
2991 }
2992 if ((fp = sshkey_fingerprint(keys[i],
2993 fingerprint_hash, SSH_FP_DEFAULT)) == NULL)
2994 fatal("%s: sshkey_fingerprint failed", __func__);
2995 debug("%s: key %zu: %s %s %s (flags 0x%02x)", __func__, i,
2996 sshkey_type(keys[i]), fp, keys[i]->sk_application,
2997 keys[i]->sk_flags);
2998 ext = skip_ssh_url_preamble(keys[i]->sk_application);
2999 xasprintf(&path, "id_%s_rk%s%s",
3000 keys[i]->type == KEY_ECDSA_SK ? "ecdsa_sk" : "ed25519_sk",
3001 *ext == '\0' ? "" : "_", ext);
3002
3003 /* If the file already exists, ask the user to confirm. */
3004 if (!confirm_overwrite(path)) {
3005 free(path);
3006 break;
3007 }
3008
3009 /* Save the key with the application string as the comment */
3010 if (pass == NULL)
3011 pass = private_key_passphrase();
3012 if ((r = sshkey_save_private(keys[i], path, pass,
3013 keys[i]->sk_application, private_key_format,
3014 openssh_format_cipher, rounds)) != 0) {
3015 error("Saving key \"%s\" failed: %s",
3016 path, ssh_err(r));
3017 free(path);
3018 break;
3019 }
3020 if (!quiet) {
3021 printf("Saved %s key%s%s to %s\n",
3022 sshkey_type(keys[i]),
3023 *ext != '\0' ? " " : "",
3024 *ext != '\0' ? keys[i]->sk_application : "",
3025 path);
3026 }
3027
3028 /* Save public key too */
3029 xasprintf(&pubpath, "%s.pub", path);
3030 free(path);
3031 if ((r = sshkey_save_public(keys[i], pubpath,
3032 keys[i]->sk_application)) != 0) {
3033 free(pubpath);
3034 error("Saving public key \"%s\" failed: %s",
3035 pubpath, ssh_err(r));
3036 break;
3037 }
3038 free(pubpath);
3039 }
3040
3041 if (i >= nkeys)
3042 ok = 0; /* success */
3043 if (pass != NULL)
3044 freezero(pass, strlen(pass));
3045 for (i = 0; i < nkeys; i++)
3046 sshkey_free(keys[i]);
3047 free(keys);
3048 return ok ? 0 : -1;
3049}
3050
djm@openbsd.org3e60d182019-12-30 03:30:09 +00003051static void
Damien Miller431f66b1999-11-21 18:31:57 +11003052usage(void)
3053{
Damien Millerf0858de2014-04-20 13:01:30 +10003054 fprintf(stderr,
jmc@openbsd.org69189742019-10-03 17:07:50 +00003055 "usage: ssh-keygen [-q] [-b bits] [-C comment] [-f output_keyfile] [-m format]\n"
naddy@openbsd.orgf0edda82019-11-18 23:16:49 +00003056 " [-t dsa | ecdsa | ecdsa-sk | ed25519 | ed25519-sk | rsa]\n"
naddy@openbsd.org0d005d62020-01-14 15:07:30 +00003057 " [-N new_passphrase] [-O option] [-w provider]\n"
jmc@openbsd.org69189742019-10-03 17:07:50 +00003058 " ssh-keygen -p [-f keyfile] [-m format] [-N new_passphrase]\n"
3059 " [-P old_passphrase]\n"
3060 " ssh-keygen -i [-f input_keyfile] [-m key_format]\n"
3061 " ssh-keygen -e [-f input_keyfile] [-m key_format]\n"
Damien Millerf0858de2014-04-20 13:01:30 +10003062 " ssh-keygen -y [-f input_keyfile]\n"
jmc@openbsd.org69189742019-10-03 17:07:50 +00003063 " ssh-keygen -c [-C comment] [-f keyfile] [-P passphrase]\n"
naddy@openbsd.org6288e3a2015-02-24 15:24:05 +00003064 " ssh-keygen -l [-v] [-E fingerprint_hash] [-f input_keyfile]\n"
djm@openbsd.org873d3e72017-04-30 23:18:44 +00003065 " ssh-keygen -B [-f input_keyfile]\n");
Damien Miller7ea845e2010-02-12 09:21:02 +11003066#ifdef ENABLE_PKCS11
Damien Millerf0858de2014-04-20 13:01:30 +10003067 fprintf(stderr,
3068 " ssh-keygen -D pkcs11\n");
Damien Miller7ea845e2010-02-12 09:21:02 +11003069#endif
Damien Millerf0858de2014-04-20 13:01:30 +10003070 fprintf(stderr,
jmc@openbsd.org6c91d422019-09-29 16:31:57 +00003071 " ssh-keygen -F hostname [-lv] [-f known_hosts_file]\n"
Damien Millerf0858de2014-04-20 13:01:30 +10003072 " ssh-keygen -H [-f known_hosts_file]\n"
naddy@openbsd.org0d005d62020-01-14 15:07:30 +00003073 " ssh-keygen -K [-w provider]\n"
Damien Millerf0858de2014-04-20 13:01:30 +10003074 " ssh-keygen -R hostname [-f known_hosts_file]\n"
jmc@openbsd.org6c91d422019-09-29 16:31:57 +00003075 " ssh-keygen -r hostname [-g] [-f input_keyfile]\n"
djm@openbsd.org1d9a2e22015-05-28 07:37:31 +00003076#ifdef WITH_OPENSSL
naddy@openbsd.org0d005d62020-01-14 15:07:30 +00003077 " ssh-keygen -M generate [-O option] output_file\n"
3078 " ssh-keygen -M screen [-f input_file] [-O option] output_file\n"
djm@openbsd.org1d9a2e22015-05-28 07:37:31 +00003079#endif
jmc@openbsd.org69189742019-10-03 17:07:50 +00003080 " ssh-keygen -I certificate_identity -s ca_key [-hU] [-D pkcs11_provider]\n"
3081 " [-n principals] [-O option] [-V validity_interval]\n"
3082 " [-z serial_number] file ...\n"
Damien Millerf0858de2014-04-20 13:01:30 +10003083 " ssh-keygen -L [-f input_keyfile]\n"
jmc@openbsd.org69189742019-10-03 17:07:50 +00003084 " ssh-keygen -A [-f prefix_path]\n"
Damien Millerf0858de2014-04-20 13:01:30 +10003085 " ssh-keygen -k -f krl_file [-u] [-s ca_public] [-z version_number]\n"
3086 " file ...\n"
naddy@openbsd.org0f44e592019-09-03 20:51:49 +00003087 " ssh-keygen -Q -f krl_file file ...\n"
djm@openbsd.org72a8bea2020-01-23 23:31:52 +00003088 " ssh-keygen -Y find-principals -s signature_file -f allowed_signers_file\n"
jmc@openbsd.org69189742019-10-03 17:07:50 +00003089 " ssh-keygen -Y check-novalidate -n namespace -s signature_file\n"
3090 " ssh-keygen -Y sign -f key_file -n namespace file ...\n"
3091 " ssh-keygen -Y verify -f allowed_signers_file -I signer_identity\n"
3092 " -n namespace -s signature_file [-r revocation_file]\n");
Damien Miller95def091999-11-25 00:26:21 +11003093 exit(1);
Damien Miller431f66b1999-11-21 18:31:57 +11003094}
3095
Damien Miller95def091999-11-25 00:26:21 +11003096/*
3097 * Main program for key management.
3098 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003099int
Damien Millerdf8b7db2007-01-05 16:22:57 +11003100main(int argc, char **argv)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003101{
djm@openbsd.org90399712020-01-02 22:40:09 +00003102 char dotsshdir[PATH_MAX], comment[1024], *passphrase;
djm@openbsd.org1d9a2e22015-05-28 07:37:31 +00003103 char *rr_hostname = NULL, *ep, *fp, *ra;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00003104 struct sshkey *private, *public;
Damien Miller95def091999-11-25 00:26:21 +11003105 struct passwd *pw;
Damien Miller95def091999-11-25 00:26:21 +11003106 struct stat st;
djm@openbsd.org90399712020-01-02 22:40:09 +00003107 int r, opt, type;
djm@openbsd.org851f8032019-01-23 04:16:22 +00003108 int change_passphrase = 0, change_comment = 0, show_cert = 0;
3109 int find_host = 0, delete_host = 0, hash_hosts = 0;
Damien Millerf3747bf2013-01-18 11:44:04 +11003110 int gen_all_hostkeys = 0, gen_krl = 0, update_krl = 0, check_krl = 0;
djm@openbsd.org851f8032019-01-23 04:16:22 +00003111 int prefer_agent = 0, convert_to = 0, convert_from = 0;
djm@openbsd.orgbe063942019-01-23 04:51:02 +00003112 int print_public = 0, print_generic = 0, cert_serial_autoinc = 0;
djm@openbsd.org90399712020-01-02 22:40:09 +00003113 int do_gen_candidates = 0, do_screen_candidates = 0, download_sk = 0;
djm@openbsd.org3093d122019-12-30 09:49:52 +00003114 unsigned long long cert_serial = 0;
djm@openbsd.org1e645fe2019-12-30 03:28:41 +00003115 char *identity_comment = NULL, *ca_key_path = NULL, **opts = NULL;
djm@openbsd.orgc312ca02020-01-06 02:00:46 +00003116 char *sk_application = NULL, *sk_device = NULL, *sk_user = NULL;
djm@openbsd.org24c0f752020-01-28 08:01:34 +00003117 char *sk_attestaion_path = NULL;
3118 struct sshbuf *challenge = NULL, *attest = NULL;
djm@openbsd.org1e645fe2019-12-30 03:28:41 +00003119 size_t i, nopts = 0;
dtucker@openbsd.org7afc45c2019-08-08 08:02:57 +00003120 u_int32_t bits = 0;
djm@openbsd.orgdaeaf412019-11-25 00:55:58 +00003121 uint8_t sk_flags = SSH_SK_USER_PRESENCE_REQD;
Damien Miller02e754f2005-05-26 12:19:39 +10003122 const char *errstr;
djm@openbsd.org851f8032019-01-23 04:16:22 +00003123 int log_level = SYSLOG_LEVEL_INFO;
djm@openbsd.org2a9c9f72019-09-03 08:34:19 +00003124 char *sign_op = NULL;
Damien Miller0bc1bd82000-11-13 22:57:25 +11003125
Damien Miller95def091999-11-25 00:26:21 +11003126 extern int optind;
3127 extern char *optarg;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003128
Darren Tuckerce321d82005-10-03 18:11:24 +10003129 /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
3130 sanitise_stdfd();
3131
Darren Tucker9ac56e92007-01-14 10:19:59 +11003132 __progname = ssh_get_progname(argv[0]);
Damien Millerf9b625c2000-07-09 22:42:32 +10003133
Kevin Steves3a881912002-07-20 19:05:40 +00003134 seed_rng();
Damien Millereba71ba2000-04-29 23:57:08 +10003135
Damien Miller42c5ec42018-11-23 10:40:06 +11003136 log_init(argv[0], SYSLOG_LEVEL_INFO, SYSLOG_FACILITY_USER, 1);
3137
djm@openbsd.orga287c5a2017-02-10 03:36:40 +00003138 msetlocale();
3139
Damien Miller5428f641999-11-25 11:54:57 +11003140 /* we need this for the home * directory. */
Damien Miller95def091999-11-25 00:26:21 +11003141 pw = getpwuid(getuid());
djm@openbsd.org3038a192015-04-17 13:19:22 +00003142 if (!pw)
3143 fatal("No user exists for uid %lu", (u_long)getuid());
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +00003144 if (gethostname(hostname, sizeof(hostname)) == -1)
djm@openbsd.org3038a192015-04-17 13:19:22 +00003145 fatal("gethostname: %s", strerror(errno));
Damien Miller5428f641999-11-25 11:54:57 +11003146
djm@openbsd.org23f38c22019-10-31 21:17:09 +00003147 sk_provider = getenv("SSH_SK_PROVIDER");
3148
djm@openbsd.org90399712020-01-02 22:40:09 +00003149 /* Remaining characters: dGjJSTWx */
3150 while ((opt = getopt(argc, argv, "ABHKLQUXceghiklopquvy"
djm@openbsd.org3e60d182019-12-30 03:30:09 +00003151 "C:D:E:F:I:M:N:O:P:R:V:Y:Z:"
djm@openbsd.org3093d122019-12-30 09:49:52 +00003152 "a:b:f:g:m:n:r:s:t:w:z:")) != -1) {
Damien Miller95def091999-11-25 00:26:21 +11003153 switch (opt) {
Damien Miller58f1baf2011-05-05 14:06:15 +10003154 case 'A':
3155 gen_all_hostkeys = 1;
3156 break;
Damien Miller95def091999-11-25 00:26:21 +11003157 case 'b':
dtucker@openbsd.org7afc45c2019-08-08 08:02:57 +00003158 bits = (u_int32_t)strtonum(optarg, 1, UINT32_MAX,
3159 &errstr);
Damien Miller02e754f2005-05-26 12:19:39 +10003160 if (errstr)
3161 fatal("Bits has bad value %s (%s)",
3162 optarg, errstr);
Damien Miller95def091999-11-25 00:26:21 +11003163 break;
djm@openbsd.org56d1c832014-12-21 22:27:55 +00003164 case 'E':
3165 fingerprint_hash = ssh_digest_alg_by_name(optarg);
3166 if (fingerprint_hash == -1)
3167 fatal("Invalid hash algorithm \"%s\"", optarg);
3168 break;
Damien Miller4b42d7f2005-03-01 21:48:35 +11003169 case 'F':
3170 find_host = 1;
3171 rr_hostname = optarg;
3172 break;
3173 case 'H':
3174 hash_hosts = 1;
3175 break;
Damien Miller0a80ca12010-02-27 07:55:05 +11003176 case 'I':
3177 cert_key_id = optarg;
3178 break;
Damien Miller4b42d7f2005-03-01 21:48:35 +11003179 case 'R':
3180 delete_host = 1;
3181 rr_hostname = optarg;
3182 break;
Damien Millerf2b70ca2010-03-05 07:39:35 +11003183 case 'L':
3184 show_cert = 1;
3185 break;
Damien Miller95def091999-11-25 00:26:21 +11003186 case 'l':
3187 print_fingerprint = 1;
3188 break;
Ben Lindstrom8fd372b2001-03-12 03:02:17 +00003189 case 'B':
3190 print_bubblebabble = 1;
3191 break;
Damien Miller44b25042010-07-02 13:35:01 +10003192 case 'm':
3193 if (strcasecmp(optarg, "RFC4716") == 0 ||
3194 strcasecmp(optarg, "ssh2") == 0) {
3195 convert_format = FMT_RFC4716;
3196 break;
3197 }
3198 if (strcasecmp(optarg, "PKCS8") == 0) {
3199 convert_format = FMT_PKCS8;
djm@openbsd.orgeb0d8e72019-07-15 13:16:29 +00003200 private_key_format = SSHKEY_PRIVATE_PKCS8;
Damien Miller44b25042010-07-02 13:35:01 +10003201 break;
3202 }
3203 if (strcasecmp(optarg, "PEM") == 0) {
3204 convert_format = FMT_PEM;
djm@openbsd.orgeb0d8e72019-07-15 13:16:29 +00003205 private_key_format = SSHKEY_PRIVATE_PEM;
Damien Miller44b25042010-07-02 13:35:01 +10003206 break;
3207 }
3208 fatal("Unsupported conversion format \"%s\"", optarg);
Damien Miller0a80ca12010-02-27 07:55:05 +11003209 case 'n':
3210 cert_principals = optarg;
3211 break;
Damien Millerbcd00ab2013-12-07 10:41:55 +11003212 case 'o':
djm@openbsd.orged7bd5d2018-08-08 01:16:01 +00003213 /* no-op; new format is already the default */
Damien Millerbcd00ab2013-12-07 10:41:55 +11003214 break;
Damien Miller95def091999-11-25 00:26:21 +11003215 case 'p':
3216 change_passphrase = 1;
3217 break;
Damien Miller95def091999-11-25 00:26:21 +11003218 case 'c':
3219 change_comment = 1;
3220 break;
Damien Miller95def091999-11-25 00:26:21 +11003221 case 'f':
djm@openbsd.org1d9a2e22015-05-28 07:37:31 +00003222 if (strlcpy(identity_file, optarg,
3223 sizeof(identity_file)) >= sizeof(identity_file))
Damien Millerb089fb52005-05-26 12:16:18 +10003224 fatal("Identity filename too long");
Damien Miller95def091999-11-25 00:26:21 +11003225 have_identity = 1;
3226 break;
Damien Miller37876e92003-05-15 10:19:46 +10003227 case 'g':
3228 print_generic = 1;
3229 break;
djm@openbsd.org90399712020-01-02 22:40:09 +00003230 case 'K':
3231 download_sk = 1;
3232 break;
Damien Miller95def091999-11-25 00:26:21 +11003233 case 'P':
3234 identity_passphrase = optarg;
3235 break;
Damien Miller95def091999-11-25 00:26:21 +11003236 case 'N':
3237 identity_new_passphrase = optarg;
3238 break;
Damien Millerf3747bf2013-01-18 11:44:04 +11003239 case 'Q':
3240 check_krl = 1;
3241 break;
Damien Miller0a80ca12010-02-27 07:55:05 +11003242 case 'O':
djm@openbsd.org1e645fe2019-12-30 03:28:41 +00003243 opts = xrecallocarray(opts, nopts, nopts + 1,
3244 sizeof(*opts));
3245 opts[nopts++] = xstrdup(optarg);
Damien Miller0a80ca12010-02-27 07:55:05 +11003246 break;
Damien Millerbcd00ab2013-12-07 10:41:55 +11003247 case 'Z':
djm@openbsd.orgeb0d8e72019-07-15 13:16:29 +00003248 openssh_format_cipher = optarg;
Damien Millerbcd00ab2013-12-07 10:41:55 +11003249 break;
Damien Miller95def091999-11-25 00:26:21 +11003250 case 'C':
3251 identity_comment = optarg;
3252 break;
Damien Miller95def091999-11-25 00:26:21 +11003253 case 'q':
3254 quiet = 1;
3255 break;
Ben Lindstrom5a707822001-04-22 17:15:46 +00003256 case 'e':
Ben Lindstrom5a707822001-04-22 17:15:46 +00003257 /* export key */
Damien Miller44b25042010-07-02 13:35:01 +10003258 convert_to = 1;
Damien Millereba71ba2000-04-29 23:57:08 +10003259 break;
Damien Miller0a80ca12010-02-27 07:55:05 +11003260 case 'h':
3261 cert_key_type = SSH2_CERT_TYPE_HOST;
Damien Millerd0e4a8e2010-05-21 14:58:32 +10003262 certflags_flags = 0;
Damien Miller0a80ca12010-02-27 07:55:05 +11003263 break;
Damien Millerf3747bf2013-01-18 11:44:04 +11003264 case 'k':
3265 gen_krl = 1;
3266 break;
Ben Lindstrom5a707822001-04-22 17:15:46 +00003267 case 'i':
Damien Millereba71ba2000-04-29 23:57:08 +10003268 case 'X':
Ben Lindstrom5a707822001-04-22 17:15:46 +00003269 /* import key */
Damien Miller44b25042010-07-02 13:35:01 +10003270 convert_from = 1;
Damien Millereba71ba2000-04-29 23:57:08 +10003271 break;
Damien Millereba71ba2000-04-29 23:57:08 +10003272 case 'y':
3273 print_public = 1;
3274 break;
Damien Miller0a80ca12010-02-27 07:55:05 +11003275 case 's':
3276 ca_key_path = optarg;
3277 break;
Damien Miller0bc1bd82000-11-13 22:57:25 +11003278 case 't':
3279 key_type_name = optarg;
Damien Miller0bc1bd82000-11-13 22:57:25 +11003280 break;
Ben Lindstrom8282d6a2001-08-06 21:44:05 +00003281 case 'D':
Damien Miller7ea845e2010-02-12 09:21:02 +11003282 pkcs11provider = optarg;
Ben Lindstromcd392282001-07-04 03:44:03 +00003283 break;
djm@openbsd.orga98339e2017-06-28 01:09:22 +00003284 case 'U':
3285 prefer_agent = 1;
3286 break;
Damien Millerf3747bf2013-01-18 11:44:04 +11003287 case 'u':
3288 update_krl = 1;
3289 break;
Darren Tucker06930c72003-12-31 11:34:51 +11003290 case 'v':
3291 if (log_level == SYSLOG_LEVEL_INFO)
3292 log_level = SYSLOG_LEVEL_DEBUG1;
3293 else {
Darren Tuckerfc959702004-07-17 16:12:08 +10003294 if (log_level >= SYSLOG_LEVEL_DEBUG1 &&
Darren Tucker06930c72003-12-31 11:34:51 +11003295 log_level < SYSLOG_LEVEL_DEBUG3)
3296 log_level++;
3297 }
3298 break;
Damien Miller37876e92003-05-15 10:19:46 +10003299 case 'r':
Damien Miller4b42d7f2005-03-01 21:48:35 +11003300 rr_hostname = optarg;
Damien Miller37876e92003-05-15 10:19:46 +10003301 break;
djm@openbsd.org1d9a2e22015-05-28 07:37:31 +00003302 case 'a':
3303 rounds = (int)strtonum(optarg, 1, INT_MAX, &errstr);
3304 if (errstr)
3305 fatal("Invalid number: %s (%s)",
3306 optarg, errstr);
3307 break;
3308 case 'V':
3309 parse_cert_times(optarg);
3310 break;
djm@openbsd.org2a9c9f72019-09-03 08:34:19 +00003311 case 'Y':
3312 sign_op = optarg;
djm@openbsd.org103c51f2019-11-18 01:59:48 +00003313 break;
djm@openbsd.org23f38c22019-10-31 21:17:09 +00003314 case 'w':
3315 sk_provider = optarg;
3316 break;
djm@openbsd.org1d9a2e22015-05-28 07:37:31 +00003317 case 'z':
3318 errno = 0;
djm@openbsd.orgbe063942019-01-23 04:51:02 +00003319 if (*optarg == '+') {
3320 cert_serial_autoinc = 1;
3321 optarg++;
3322 }
djm@openbsd.org1d9a2e22015-05-28 07:37:31 +00003323 cert_serial = strtoull(optarg, &ep, 10);
3324 if (*optarg < '0' || *optarg > '9' || *ep != '\0' ||
3325 (errno == ERANGE && cert_serial == ULLONG_MAX))
3326 fatal("Invalid serial number \"%s\"", optarg);
3327 break;
Darren Tuckerd8c3cfb2016-09-12 13:30:50 +10003328 case 'M':
djm@openbsd.org3e60d182019-12-30 03:30:09 +00003329 if (strcmp(optarg, "generate") == 0)
3330 do_gen_candidates = 1;
3331 else if (strcmp(optarg, "screen") == 0)
3332 do_screen_candidates = 1;
3333 else
3334 fatal("Unsupported moduli option %s", optarg);
Darren Tuckerd8c3cfb2016-09-12 13:30:50 +10003335 break;
Damien Miller95def091999-11-25 00:26:21 +11003336 case '?':
3337 default:
3338 usage();
3339 }
3340 }
Darren Tucker06930c72003-12-31 11:34:51 +11003341
djm@openbsd.org6bff9522019-11-14 21:27:29 +00003342#ifdef ENABLE_SK_INTERNAL
3343 if (sk_provider == NULL)
3344 sk_provider = "internal";
3345#endif
3346
Darren Tucker06930c72003-12-31 11:34:51 +11003347 /* reinit */
Damien Millerdf8b7db2007-01-05 16:22:57 +11003348 log_init(argv[0], log_level, SYSLOG_FACILITY_USER, 1);
Darren Tucker06930c72003-12-31 11:34:51 +11003349
Damien Miller0a80ca12010-02-27 07:55:05 +11003350 argv += optind;
3351 argc -= optind;
3352
djm@openbsd.org2a9c9f72019-09-03 08:34:19 +00003353 if (sign_op != NULL) {
djm@openbsd.org72a8bea2020-01-23 23:31:52 +00003354 if (strncmp(sign_op, "find-principals", 15) == 0) {
djm@openbsd.org56cffcc2020-01-23 02:43:48 +00003355 if (ca_key_path == NULL) {
djm@openbsd.org72a8bea2020-01-23 23:31:52 +00003356 error("Too few arguments for find-principals:"
djm@openbsd.org56cffcc2020-01-23 02:43:48 +00003357 "missing signature file");
3358 exit(1);
3359 }
3360 if (!have_identity) {
djm@openbsd.org72a8bea2020-01-23 23:31:52 +00003361 error("Too few arguments for find-principals:"
djm@openbsd.org56cffcc2020-01-23 02:43:48 +00003362 "missing allowed keys file");
3363 exit(1);
3364 }
djm@openbsd.org72a8bea2020-01-23 23:31:52 +00003365 return sig_find_principals(ca_key_path, identity_file);
djm@openbsd.orgd15c8ad2020-01-24 05:33:01 +00003366 } else if (strncmp(sign_op, "sign", 4) == 0) {
3367 if (cert_principals == NULL ||
3368 *cert_principals == '\0') {
3369 error("Too few arguments for sign: "
3370 "missing namespace");
3371 exit(1);
3372 }
djm@openbsd.org2a9c9f72019-09-03 08:34:19 +00003373 if (!have_identity) {
3374 error("Too few arguments for sign: "
3375 "missing key");
3376 exit(1);
3377 }
djm@openbsd.org56cffcc2020-01-23 02:43:48 +00003378 return sig_sign(identity_file, cert_principals,
3379 argc, argv);
djm@openbsd.org8aa2aa32019-09-16 03:23:02 +00003380 } else if (strncmp(sign_op, "check-novalidate", 16) == 0) {
3381 if (ca_key_path == NULL) {
3382 error("Too few arguments for check-novalidate: "
3383 "missing signature file");
3384 exit(1);
3385 }
djm@openbsd.org56cffcc2020-01-23 02:43:48 +00003386 return sig_verify(ca_key_path, cert_principals,
3387 NULL, NULL, NULL);
djm@openbsd.org2a9c9f72019-09-03 08:34:19 +00003388 } else if (strncmp(sign_op, "verify", 6) == 0) {
djm@openbsd.orgd15c8ad2020-01-24 05:33:01 +00003389 if (cert_principals == NULL ||
3390 *cert_principals == '\0') {
3391 error("Too few arguments for verify: "
3392 "missing namespace");
3393 exit(1);
3394 }
djm@openbsd.org2a9c9f72019-09-03 08:34:19 +00003395 if (ca_key_path == NULL) {
3396 error("Too few arguments for verify: "
3397 "missing signature file");
3398 exit(1);
3399 }
3400 if (!have_identity) {
3401 error("Too few arguments for sign: "
3402 "missing allowed keys file");
3403 exit(1);
3404 }
3405 if (cert_key_id == NULL) {
3406 error("Too few arguments for verify: "
3407 "missing principal ID");
3408 exit(1);
3409 }
djm@openbsd.org56cffcc2020-01-23 02:43:48 +00003410 return sig_verify(ca_key_path, cert_principals,
djm@openbsd.org2a9c9f72019-09-03 08:34:19 +00003411 cert_key_id, identity_file, rr_hostname);
3412 }
djm@openbsd.orgd15c8ad2020-01-24 05:33:01 +00003413 error("Unsupported operation for -Y: \"%s\"", sign_op);
djm@openbsd.org2a9c9f72019-09-03 08:34:19 +00003414 usage();
3415 /* NOTREACHED */
3416 }
3417
Damien Miller0a80ca12010-02-27 07:55:05 +11003418 if (ca_key_path != NULL) {
Damien Millerf3747bf2013-01-18 11:44:04 +11003419 if (argc < 1 && !gen_krl) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00003420 error("Too few arguments.");
Damien Miller0a80ca12010-02-27 07:55:05 +11003421 usage();
3422 }
djm@openbsd.org3e60d182019-12-30 03:30:09 +00003423 } else if (argc > 0 && !gen_krl && !check_krl &&
3424 !do_gen_candidates && !do_screen_candidates) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00003425 error("Too many arguments.");
Damien Miller95def091999-11-25 00:26:21 +11003426 usage();
3427 }
3428 if (change_passphrase && change_comment) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00003429 error("Can only have one of -p and -c.");
Damien Miller95def091999-11-25 00:26:21 +11003430 usage();
3431 }
Darren Tucker0f7e9102008-06-08 12:54:29 +10003432 if (print_fingerprint && (delete_host || hash_hosts)) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00003433 error("Cannot use -l with -H or -R.");
Darren Tucker0f7e9102008-06-08 12:54:29 +10003434 usage();
3435 }
Damien Millerf3747bf2013-01-18 11:44:04 +11003436 if (gen_krl) {
djm@openbsd.org851f8032019-01-23 04:16:22 +00003437 do_gen_krl(pw, update_krl, ca_key_path,
3438 cert_serial, identity_comment, argc, argv);
Damien Millerf3747bf2013-01-18 11:44:04 +11003439 return (0);
3440 }
3441 if (check_krl) {
3442 do_check_krl(pw, argc, argv);
3443 return (0);
3444 }
Damien Miller0a80ca12010-02-27 07:55:05 +11003445 if (ca_key_path != NULL) {
3446 if (cert_key_id == NULL)
3447 fatal("Must specify key id (-I) when certifying");
djm@openbsd.org1e645fe2019-12-30 03:28:41 +00003448 for (i = 0; i < nopts; i++)
3449 add_cert_option(opts[i]);
djm@openbsd.orgbe063942019-01-23 04:51:02 +00003450 do_ca_sign(pw, ca_key_path, prefer_agent,
3451 cert_serial, cert_serial_autoinc, argc, argv);
Damien Miller0a80ca12010-02-27 07:55:05 +11003452 }
Damien Millerf2b70ca2010-03-05 07:39:35 +11003453 if (show_cert)
3454 do_show_cert(pw);
djm@openbsd.org851f8032019-01-23 04:16:22 +00003455 if (delete_host || hash_hosts || find_host) {
3456 do_known_hosts(pw, rr_hostname, find_host,
3457 delete_host, hash_hosts);
3458 }
Damien Millerec77c952013-01-09 15:58:00 +11003459 if (pkcs11provider != NULL)
3460 do_download(pw);
djm@openbsd.orgc312ca02020-01-06 02:00:46 +00003461 if (download_sk) {
3462 for (i = 0; i < nopts; i++) {
3463 if (strncasecmp(opts[i], "device=", 7) == 0) {
3464 sk_device = xstrdup(opts[i] + 7);
3465 } else {
3466 fatal("Option \"%s\" is unsupported for "
3467 "FIDO authenticator download", opts[i]);
3468 }
3469 }
3470 return do_download_sk(sk_provider, sk_device);
3471 }
Ben Lindstrom8fd372b2001-03-12 03:02:17 +00003472 if (print_fingerprint || print_bubblebabble)
Damien Miller95def091999-11-25 00:26:21 +11003473 do_fingerprint(pw);
Damien Miller95def091999-11-25 00:26:21 +11003474 if (change_passphrase)
3475 do_change_passphrase(pw);
Damien Miller4a10d2e2002-03-11 22:53:29 +11003476 if (change_comment)
djm@openbsd.org851f8032019-01-23 04:16:22 +00003477 do_change_comment(pw, identity_comment);
Damien Miller1f0311c2014-05-15 14:24:09 +10003478#ifdef WITH_OPENSSL
Damien Miller44b25042010-07-02 13:35:01 +10003479 if (convert_to)
3480 do_convert_to(pw);
3481 if (convert_from)
3482 do_convert_from(pw);
djm@openbsd.orgc8bdd2d2019-09-06 07:53:40 +00003483#else /* WITH_OPENSSL */
3484 if (convert_to || convert_from)
3485 fatal("key conversion disabled at compile time");
3486#endif /* WITH_OPENSSL */
Damien Millereba71ba2000-04-29 23:57:08 +10003487 if (print_public)
3488 do_print_public(pw);
Damien Miller4b42d7f2005-03-01 21:48:35 +11003489 if (rr_hostname != NULL) {
Damien Millercb314822006-03-26 13:48:01 +11003490 unsigned int n = 0;
3491
3492 if (have_identity) {
djm@openbsd.org851f8032019-01-23 04:16:22 +00003493 n = do_print_resource_record(pw, identity_file,
3494 rr_hostname, print_generic);
djm@openbsd.org3038a192015-04-17 13:19:22 +00003495 if (n == 0)
3496 fatal("%s: %s", identity_file, strerror(errno));
Damien Millercb314822006-03-26 13:48:01 +11003497 exit(0);
3498 } else {
3499
3500 n += do_print_resource_record(pw,
djm@openbsd.org851f8032019-01-23 04:16:22 +00003501 _PATH_HOST_RSA_KEY_FILE, rr_hostname,
3502 print_generic);
Damien Millercb314822006-03-26 13:48:01 +11003503 n += do_print_resource_record(pw,
djm@openbsd.org851f8032019-01-23 04:16:22 +00003504 _PATH_HOST_DSA_KEY_FILE, rr_hostname,
3505 print_generic);
Damien Miller3bde12a2012-06-20 21:51:11 +10003506 n += do_print_resource_record(pw,
djm@openbsd.org851f8032019-01-23 04:16:22 +00003507 _PATH_HOST_ECDSA_KEY_FILE, rr_hostname,
3508 print_generic);
Damien Miller16cd3922014-05-15 13:45:58 +10003509 n += do_print_resource_record(pw,
djm@openbsd.org851f8032019-01-23 04:16:22 +00003510 _PATH_HOST_ED25519_KEY_FILE, rr_hostname,
3511 print_generic);
markus@openbsd.org1b11ea72018-02-23 15:58:37 +00003512 n += do_print_resource_record(pw,
djm@openbsd.org851f8032019-01-23 04:16:22 +00003513 _PATH_HOST_XMSS_KEY_FILE, rr_hostname,
3514 print_generic);
Damien Millercb314822006-03-26 13:48:01 +11003515 if (n == 0)
3516 fatal("no keys found.");
3517 exit(0);
3518 }
Damien Miller37876e92003-05-15 10:19:46 +10003519 }
Damien Miller95def091999-11-25 00:26:21 +11003520
djm@openbsd.org3e60d182019-12-30 03:30:09 +00003521 if (do_gen_candidates || do_screen_candidates) {
3522 if (argc <= 0)
3523 fatal("No output file specified");
3524 else if (argc > 1)
3525 fatal("Too many output files specified");
3526 }
Darren Tucker019cefe2003-08-02 22:40:07 +10003527 if (do_gen_candidates) {
djm@openbsd.org3e60d182019-12-30 03:30:09 +00003528 do_moduli_gen(argv[0], opts, nopts);
3529 return 0;
Darren Tucker019cefe2003-08-02 22:40:07 +10003530 }
Darren Tucker019cefe2003-08-02 22:40:07 +10003531 if (do_screen_candidates) {
djm@openbsd.org3e60d182019-12-30 03:30:09 +00003532 do_moduli_screen(argv[0], opts, nopts);
3533 return 0;
Darren Tucker019cefe2003-08-02 22:40:07 +10003534 }
3535
Damien Miller58f1baf2011-05-05 14:06:15 +10003536 if (gen_all_hostkeys) {
3537 do_gen_all_hostkeys(pw);
3538 return (0);
3539 }
3540
Damien Millerf14be5c2005-11-05 15:15:49 +11003541 if (key_type_name == NULL)
djm@openbsd.orgd1958792015-05-28 04:40:13 +00003542 key_type_name = DEFAULT_KEY_TYPE_NAME;
Damien Millerf14be5c2005-11-05 15:15:49 +11003543
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00003544 type = sshkey_type_from_name(key_type_name);
djm@openbsd.org7efb4552015-01-18 13:22:28 +00003545 type_bits_valid(type, key_type_name, &bits);
Damien Miller58f1baf2011-05-05 14:06:15 +10003546
Darren Tucker3af2ac52005-11-29 13:10:24 +11003547 if (!quiet)
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00003548 printf("Generating public/private %s key pair.\n",
3549 key_type_name);
markus@openbsd.org2c557442019-11-12 19:33:08 +00003550 switch (type) {
3551 case KEY_ECDSA_SK:
3552 case KEY_ED25519_SK:
djm@openbsd.org3093d122019-12-30 09:49:52 +00003553 for (i = 0; i < nopts; i++) {
3554 if (strcasecmp(opts[i], "no-touch-required") == 0) {
3555 sk_flags &= ~SSH_SK_USER_PRESENCE_REQD;
3556 } else if (strcasecmp(opts[i], "resident") == 0) {
3557 sk_flags |= SSH_SK_RESIDENT_KEY;
djm@openbsd.orgc312ca02020-01-06 02:00:46 +00003558 } else if (strncasecmp(opts[i], "device=", 7) == 0) {
3559 sk_device = xstrdup(opts[i] + 7);
3560 } else if (strncasecmp(opts[i], "user=", 5) == 0) {
3561 sk_user = xstrdup(opts[i] + 5);
djm@openbsd.org24c0f752020-01-28 08:01:34 +00003562 } else if (strncasecmp(opts[i], "challenge=", 10) == 0) {
3563 if ((r = sshbuf_load_file(opts[i] + 10,
3564 &challenge)) != 0) {
3565 fatal("Unable to load FIDO enrollment "
3566 "challenge \"%s\": %s",
3567 opts[i] + 10, ssh_err(r));
3568 }
3569 } else if (strncasecmp(opts[i],
3570 "write-attestation=", 18) == 0) {
3571 sk_attestaion_path = opts[i] + 18;
djm@openbsd.orgc312ca02020-01-06 02:00:46 +00003572 } else if (strncasecmp(opts[i],
3573 "application=", 12) == 0) {
3574 sk_application = xstrdup(opts[i] + 12);
djm@openbsd.orgd596b1d2020-02-04 09:58:04 +00003575 if (strncmp(sk_application, "ssh:", 4) != 0) {
3576 fatal("FIDO application string must "
3577 "begin with \"ssh:\"");
3578 }
djm@openbsd.org3093d122019-12-30 09:49:52 +00003579 } else {
3580 fatal("Option \"%s\" is unsupported for "
3581 "FIDO authenticator enrollment", opts[i]);
3582 }
3583 }
3584 if (!quiet) {
naddy@openbsd.orga47f6a62020-02-06 22:30:54 +00003585 printf("You may need to touch your authenticator "
djm@openbsd.org3093d122019-12-30 09:49:52 +00003586 "to authorize key generation.\n");
3587 }
djm@openbsd.org90399712020-01-02 22:40:09 +00003588 passphrase = NULL;
djm@openbsd.org24c0f752020-01-28 08:01:34 +00003589 if ((attest = sshbuf_new()) == NULL)
3590 fatal("sshbuf_new failed");
djm@openbsd.orgfd68dc22020-02-07 03:27:54 +00003591 for (i = 0 ; ; i++) {
djm@openbsd.org43ce9642019-12-30 09:24:45 +00003592 fflush(stdout);
djm@openbsd.orgc312ca02020-01-06 02:00:46 +00003593 r = sshsk_enroll(type, sk_provider, sk_device,
3594 sk_application == NULL ? "ssh:" : sk_application,
djm@openbsd.org24c0f752020-01-28 08:01:34 +00003595 sk_user, sk_flags, passphrase, challenge,
3596 &private, attest);
djm@openbsd.org43ce9642019-12-30 09:24:45 +00003597 if (r == 0)
3598 break;
3599 if (r != SSH_ERR_KEY_WRONG_PASSPHRASE)
djm@openbsd.org59d01f12020-01-25 23:13:09 +00003600 fatal("Key enrollment failed: %s", ssh_err(r));
djm@openbsd.orgfd68dc22020-02-07 03:27:54 +00003601 else if (i > 0)
3602 error("PIN incorrect");
3603 if (passphrase != NULL) {
djm@openbsd.org90399712020-01-02 22:40:09 +00003604 freezero(passphrase, strlen(passphrase));
djm@openbsd.orgfd68dc22020-02-07 03:27:54 +00003605 passphrase = NULL;
3606 }
3607 if (i >= 3)
3608 fatal("Too many incorrect PINs");
naddy@openbsd.orga47f6a62020-02-06 22:30:54 +00003609 passphrase = read_passphrase("Enter PIN for "
3610 "authenticator: ", RP_ALLOW_STDIN);
djm@openbsd.org26cb1282019-11-25 00:57:27 +00003611 }
djm@openbsd.orgfd68dc22020-02-07 03:27:54 +00003612 if (passphrase != NULL) {
djm@openbsd.org90399712020-01-02 22:40:09 +00003613 freezero(passphrase, strlen(passphrase));
djm@openbsd.orgfd68dc22020-02-07 03:27:54 +00003614 passphrase = NULL;
3615 }
djm@openbsd.org90399712020-01-02 22:40:09 +00003616 break;
markus@openbsd.org2c557442019-11-12 19:33:08 +00003617 default:
3618 if ((r = sshkey_generate(type, bits, &private)) != 0)
3619 fatal("sshkey_generate failed");
3620 break;
3621 }
djm@openbsd.org3038a192015-04-17 13:19:22 +00003622 if ((r = sshkey_from_private(private, &public)) != 0)
markus@openbsd.org7da5df12017-05-30 14:16:41 +00003623 fatal("sshkey_from_private failed: %s\n", ssh_err(r));
Damien Miller95def091999-11-25 00:26:21 +11003624
3625 if (!have_identity)
3626 ask_filename(pw, "Enter file in which to save the key");
3627
Damien Miller788f2122005-11-05 15:14:59 +11003628 /* Create ~/.ssh directory if it doesn't already exist. */
Damien Miller50af79b2010-05-10 11:52:00 +10003629 snprintf(dotsshdir, sizeof dotsshdir, "%s/%s",
3630 pw->pw_dir, _PATH_SSH_USER_DIR);
3631 if (strstr(identity_file, dotsshdir) != NULL) {
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +00003632 if (stat(dotsshdir, &st) == -1) {
Damien Miller50af79b2010-05-10 11:52:00 +10003633 if (errno != ENOENT) {
3634 error("Could not stat %s: %s", dotsshdir,
3635 strerror(errno));
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +00003636 } else if (mkdir(dotsshdir, 0700) == -1) {
Damien Miller50af79b2010-05-10 11:52:00 +10003637 error("Could not create directory '%s': %s",
3638 dotsshdir, strerror(errno));
3639 } else if (!quiet)
3640 printf("Created directory '%s'.\n", dotsshdir);
3641 }
Damien Miller95def091999-11-25 00:26:21 +11003642 }
3643 /* If the file already exists, ask the user to confirm. */
djm@openbsd.org85443f12019-09-03 08:27:52 +00003644 if (!confirm_overwrite(identity_file))
3645 exit(1);
Damien Miller95def091999-11-25 00:26:21 +11003646
djm@openbsd.org90399712020-01-02 22:40:09 +00003647 /* Determine the passphrase for the private key */
3648 passphrase = private_key_passphrase();
Damien Miller95def091999-11-25 00:26:21 +11003649 if (identity_comment) {
3650 strlcpy(comment, identity_comment, sizeof(comment));
3651 } else {
Darren Tuckere15fb092008-11-11 16:31:43 +11003652 /* Create default comment field for the passphrase. */
Damien Miller95def091999-11-25 00:26:21 +11003653 snprintf(comment, sizeof comment, "%s@%s", pw->pw_name, hostname);
3654 }
3655
3656 /* Save the key with the given passphrase and comment. */
djm@openbsd.org90399712020-01-02 22:40:09 +00003657 if ((r = sshkey_save_private(private, identity_file, passphrase,
djm@openbsd.orgeb0d8e72019-07-15 13:16:29 +00003658 comment, private_key_format, openssh_format_cipher, rounds)) != 0) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00003659 error("Saving key \"%s\" failed: %s",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00003660 identity_file, ssh_err(r));
djm@openbsd.org90399712020-01-02 22:40:09 +00003661 freezero(passphrase, strlen(passphrase));
Damien Miller95def091999-11-25 00:26:21 +11003662 exit(1);
3663 }
djm@openbsd.org90399712020-01-02 22:40:09 +00003664 freezero(passphrase, strlen(passphrase));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00003665 sshkey_free(private);
Damien Miller95def091999-11-25 00:26:21 +11003666
djm@openbsd.org90399712020-01-02 22:40:09 +00003667 if (!quiet) {
djm@openbsd.org69ac4e32020-01-23 07:54:04 +00003668 printf("Your identification has been saved in %s\n",
djm@openbsd.org90399712020-01-02 22:40:09 +00003669 identity_file);
3670 }
Damien Miller95def091999-11-25 00:26:21 +11003671
Damien Miller95def091999-11-25 00:26:21 +11003672 strlcat(identity_file, ".pub", sizeof(identity_file));
djm@openbsd.org90399712020-01-02 22:40:09 +00003673 if ((r = sshkey_save_public(public, identity_file, comment)) != 0) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00003674 fatal("Unable to save public key to %s: %s",
3675 identity_file, strerror(errno));
djm@openbsd.org90399712020-01-02 22:40:09 +00003676 }
Damien Miller95def091999-11-25 00:26:21 +11003677
3678 if (!quiet) {
djm@openbsd.org9ce86c92015-01-28 22:36:00 +00003679 fp = sshkey_fingerprint(public, fingerprint_hash,
djm@openbsd.org56d1c832014-12-21 22:27:55 +00003680 SSH_FP_DEFAULT);
djm@openbsd.org9ce86c92015-01-28 22:36:00 +00003681 ra = sshkey_fingerprint(public, fingerprint_hash,
Darren Tucker9c16ac92008-06-13 04:40:35 +10003682 SSH_FP_RANDOMART);
djm@openbsd.org9ce86c92015-01-28 22:36:00 +00003683 if (fp == NULL || ra == NULL)
3684 fatal("sshkey_fingerprint failed");
djm@openbsd.org69ac4e32020-01-23 07:54:04 +00003685 printf("Your public key has been saved in %s\n",
Damien Millereba71ba2000-04-29 23:57:08 +10003686 identity_file);
Damien Miller95def091999-11-25 00:26:21 +11003687 printf("The key fingerprint is:\n");
Ben Lindstromcfccef92001-03-13 04:57:58 +00003688 printf("%s %s\n", fp, comment);
Darren Tucker9c16ac92008-06-13 04:40:35 +10003689 printf("The key's randomart image is:\n");
3690 printf("%s\n", ra);
Darren Tuckera627d422013-06-02 07:31:17 +10003691 free(ra);
3692 free(fp);
Damien Miller95def091999-11-25 00:26:21 +11003693 }
Damien Millereba71ba2000-04-29 23:57:08 +10003694
djm@openbsd.org24c0f752020-01-28 08:01:34 +00003695 if (sk_attestaion_path != NULL) {
3696 if (attest == NULL || sshbuf_len(attest) == 0) {
3697 fatal("Enrollment did not return attestation "
3698 "certificate");
3699 }
3700 if ((r = sshbuf_write_file(sk_attestaion_path, attest)) != 0) {
3701 fatal("Unable to write attestation certificate "
3702 "\"%s\": %s", sk_attestaion_path, ssh_err(r));
3703 }
3704 if (!quiet) {
3705 printf("Your FIDO attestation certificate has been "
3706 "saved in %s\n", sk_attestaion_path);
3707 }
3708 }
3709 sshbuf_free(attest);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00003710 sshkey_free(public);
djm@openbsd.org24c0f752020-01-28 08:01:34 +00003711
Damien Miller95def091999-11-25 00:26:21 +11003712 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003713}