blob: a6773735086406739f259c89e25b52b45bfde7a5 [file] [log] [blame]
djm@openbsd.orga4fc2532018-10-19 03:12:42 +00001/* $OpenBSD: ssh-keygen.c,v 1.323 2018/10/19 03:12:42 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
Darren Tucker39972492006-07-12 22:22:46 +100027#include <errno.h>
Damien Miller57cf6382006-07-10 21:13:46 +100028#include <fcntl.h>
Damien Millerb8fe89c2006-07-24 14:51:00 +100029#include <netdb.h>
Darren Tucker2ee50c52006-07-11 18:55:05 +100030#ifdef HAVE_PATHS_H
31# include <paths.h>
32#endif
Damien Miller9f2abc42006-07-10 20:53:08 +100033#include <pwd.h>
Damien Millerded319c2006-09-01 15:38:36 +100034#include <stdarg.h>
Damien Millera7a73ee2006-08-05 11:37:59 +100035#include <stdio.h>
Damien Millere7a1e5c2006-08-05 11:34:19 +100036#include <stdlib.h>
Damien Millere3476ed2006-07-24 14:13:33 +100037#include <string.h>
Damien Millere6b3b612006-07-24 14:01:23 +100038#include <unistd.h>
deraadt@openbsd.org2ae4f332015-01-16 06:40:12 +000039#include <limits.h>
djm@openbsd.orga287c5a2017-02-10 03:36:40 +000040#include <locale.h>
Damien Miller4d3b2f32018-07-12 14:49:14 +100041#include <time.h>
Damien Miller9f2abc42006-07-10 20:53:08 +100042
Damien Millerd4a8b7e1999-10-27 13:42:43 +100043#include "xmalloc.h"
djm@openbsd.org1129dcf2015-01-15 09:40:00 +000044#include "sshkey.h"
Damien Millereba71ba2000-04-29 23:57:08 +100045#include "authfile.h"
46#include "uuencode.h"
djm@openbsd.org1129dcf2015-01-15 09:40:00 +000047#include "sshbuf.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000048#include "pathnames.h"
49#include "log.h"
Darren Tuckere608ca22004-05-13 16:15:47 +100050#include "misc.h"
Damien Miller4b42d7f2005-03-01 21:48:35 +110051#include "match.h"
52#include "hostfile.h"
Damien Miller69996102006-07-10 20:53:31 +100053#include "dns.h"
Damien Millerf3747bf2013-01-18 11:44:04 +110054#include "ssh.h"
Damien Miller0a80ca12010-02-27 07:55:05 +110055#include "ssh2.h"
djm@openbsd.org1129dcf2015-01-15 09:40:00 +000056#include "ssherr.h"
Damien Miller7ea845e2010-02-12 09:21:02 +110057#include "ssh-pkcs11.h"
Damien Millerf3747bf2013-01-18 11:44:04 +110058#include "atomicio.h"
59#include "krl.h"
djm@openbsd.org56d1c832014-12-21 22:27:55 +000060#include "digest.h"
djm@openbsd.orga287c5a2017-02-10 03:36:40 +000061#include "utf8.h"
djm@openbsd.orga98339e2017-06-28 01:09:22 +000062#include "authfd.h"
Ben Lindstromcd392282001-07-04 03:44:03 +000063
djm@openbsd.orgd1958792015-05-28 04:40:13 +000064#ifdef WITH_OPENSSL
65# define DEFAULT_KEY_TYPE_NAME "rsa"
66#else
67# define DEFAULT_KEY_TYPE_NAME "ed25519"
68#endif
69
Damien Miller3f54a9f2005-11-05 14:52:18 +110070/* Number of bits in the RSA/DSA key. This value can be set on the command line. */
71#define DEFAULT_BITS 2048
72#define DEFAULT_BITS_DSA 1024
Damien Miller6e9f6802010-09-10 11:17:38 +100073#define DEFAULT_BITS_ECDSA 256
Damien Miller3f54a9f2005-11-05 14:52:18 +110074u_int32_t bits = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100075
Damien Miller5428f641999-11-25 11:54:57 +110076/*
77 * Flag indicating that we just want to change the passphrase. This can be
78 * set on the command line.
79 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100080int change_passphrase = 0;
81
Damien Miller5428f641999-11-25 11:54:57 +110082/*
83 * Flag indicating that we just want to change the comment. This can be set
84 * on the command line.
85 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100086int change_comment = 0;
87
88int quiet = 0;
89
Darren Tucker35c45532008-06-13 04:43:15 +100090int log_level = SYSLOG_LEVEL_INFO;
91
Damien Miller4b42d7f2005-03-01 21:48:35 +110092/* Flag indicating that we want to hash a known_hosts file */
93int hash_hosts = 0;
94/* Flag indicating that we want lookup a host in known_hosts file */
95int find_host = 0;
96/* Flag indicating that we want to delete a host from a known_hosts file */
97int delete_host = 0;
98
Damien Millerf2b70ca2010-03-05 07:39:35 +110099/* Flag indicating that we want to show the contents of a certificate */
100int show_cert = 0;
101
Damien Miller10f6f6b1999-11-17 17:29:08 +1100102/* Flag indicating that we just want to see the key fingerprint */
103int print_fingerprint = 0;
Ben Lindstrom8fd372b2001-03-12 03:02:17 +0000104int print_bubblebabble = 0;
Damien Miller10f6f6b1999-11-17 17:29:08 +1100105
djm@openbsd.org56d1c832014-12-21 22:27:55 +0000106/* Hash algorithm to use for fingerprints. */
107int fingerprint_hash = SSH_FP_HASH_DEFAULT;
108
Damien Miller431f66b1999-11-21 18:31:57 +1100109/* The identity file name, given on the command line or entered by the user. */
110char identity_file[1024];
111int have_identity = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000112
113/* This is set to the passphrase if given on the command line. */
114char *identity_passphrase = NULL;
115
116/* This is set to the new passphrase if given on the command line. */
117char *identity_new_passphrase = NULL;
118
119/* This is set to the new comment if given on the command line. */
120char *identity_comment = NULL;
121
Damien Miller0a80ca12010-02-27 07:55:05 +1100122/* Path to CA key when certifying keys. */
123char *ca_key_path = NULL;
124
djm@openbsd.orga98339e2017-06-28 01:09:22 +0000125/* Prefer to use agent keys for CA signing */
126int prefer_agent = 0;
127
Damien Miller4e270b02010-04-16 15:56:21 +1000128/* Certificate serial number */
Damien Miller55aca022012-12-03 11:25:30 +1100129unsigned long long cert_serial = 0;
Damien Miller4e270b02010-04-16 15:56:21 +1000130
Damien Miller0a80ca12010-02-27 07:55:05 +1100131/* Key type when certifying */
132u_int cert_key_type = SSH2_CERT_TYPE_USER;
133
134/* "key ID" of signed key */
135char *cert_key_id = NULL;
136
137/* Comma-separated list of principal names for certifying keys */
138char *cert_principals = NULL;
139
140/* Validity period for certificates */
141u_int64_t cert_valid_from = 0;
142u_int64_t cert_valid_to = ~0ULL;
143
Damien Miller4e270b02010-04-16 15:56:21 +1000144/* Certificate options */
Damien Millerd0e4a8e2010-05-21 14:58:32 +1000145#define CERTOPT_X_FWD (1)
146#define CERTOPT_AGENT_FWD (1<<1)
147#define CERTOPT_PORT_FWD (1<<2)
148#define CERTOPT_PTY (1<<3)
149#define CERTOPT_USER_RC (1<<4)
150#define CERTOPT_DEFAULT (CERTOPT_X_FWD|CERTOPT_AGENT_FWD| \
151 CERTOPT_PORT_FWD|CERTOPT_PTY|CERTOPT_USER_RC)
152u_int32_t certflags_flags = CERTOPT_DEFAULT;
153char *certflags_command = NULL;
154char *certflags_src_addr = NULL;
Damien Miller0a80ca12010-02-27 07:55:05 +1100155
djm@openbsd.org249516e2017-04-29 04:12:25 +0000156/* Arbitrary extensions specified by user */
157struct cert_userext {
158 char *key;
159 char *val;
160 int crit;
161};
162struct cert_userext *cert_userext;
163size_t ncert_userext;
164
Damien Miller44b25042010-07-02 13:35:01 +1000165/* Conversion to/from various formats */
166int convert_to = 0;
167int convert_from = 0;
168enum {
169 FMT_RFC4716,
170 FMT_PKCS8,
171 FMT_PEM
172} convert_format = FMT_RFC4716;
Damien Millereba71ba2000-04-29 23:57:08 +1000173int print_public = 0;
Damien Miller37876e92003-05-15 10:19:46 +1000174int print_generic = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100175
Damien Millera41c8b12002-01-22 23:05:08 +1100176char *key_type_name = NULL;
Damien Millereba71ba2000-04-29 23:57:08 +1000177
Damien Miller757f34e2010-08-05 13:05:31 +1000178/* Load key from this PKCS#11 provider */
179char *pkcs11provider = NULL;
Damien Miller44b25042010-07-02 13:35:01 +1000180
Damien Millerbcd00ab2013-12-07 10:41:55 +1100181/* Use new OpenSSH private key format when writing SSH2 keys instead of PEM */
djm@openbsd.orged7bd5d2018-08-08 01:16:01 +0000182int use_new_format = 1;
Damien Millerbcd00ab2013-12-07 10:41:55 +1100183
184/* Cipher for new-format private keys */
185char *new_format_cipher = NULL;
186
187/*
188 * Number of KDF rounds to derive new format keys /
189 * number of primality trials when screening moduli.
190 */
191int rounds = 0;
192
Damien Miller431f66b1999-11-21 18:31:57 +1100193/* argv0 */
194extern char *__progname;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000195
Damien Millere5c0d522014-07-03 21:24:19 +1000196char hostname[NI_MAXHOST];
Damien Millereba71ba2000-04-29 23:57:08 +1000197
djm@openbsd.org1d9a2e22015-05-28 07:37:31 +0000198#ifdef WITH_OPENSSL
Darren Tucker770fc012004-05-13 16:24:32 +1000199/* moduli.c */
Damien Millerb089fb52005-05-26 12:16:18 +1000200int gen_candidates(FILE *, u_int32_t, u_int32_t, BIGNUM *);
Damien Millerdfceafe2012-07-06 13:44:19 +1000201int prime_test(FILE *, FILE *, u_int32_t, u_int32_t, char *, unsigned long,
202 unsigned long);
djm@openbsd.org1d9a2e22015-05-28 07:37:31 +0000203#endif
Darren Tucker770fc012004-05-13 16:24:32 +1000204
Ben Lindstrombba81212001-06-25 05:01:22 +0000205static void
djm@openbsd.org7efb4552015-01-18 13:22:28 +0000206type_bits_valid(int type, const char *name, u_int32_t *bitsp)
Damien Miller58f1baf2011-05-05 14:06:15 +1000207{
Damien Miller72ef7c12015-01-15 02:21:31 +1100208#ifdef WITH_OPENSSL
djm@openbsd.org1d9a2e22015-05-28 07:37:31 +0000209 u_int maxbits, nid;
Damien Miller72ef7c12015-01-15 02:21:31 +1100210#endif
Damien Miller58f1baf2011-05-05 14:06:15 +1000211
djm@openbsd.org3038a192015-04-17 13:19:22 +0000212 if (type == KEY_UNSPEC)
213 fatal("unknown key type %s", key_type_name);
Damien Miller884b63a2011-05-05 14:14:52 +1000214 if (*bitsp == 0) {
Damien Miller773dda22015-01-30 23:10:17 +1100215#ifdef WITH_OPENSSL
Damien Miller58f1baf2011-05-05 14:06:15 +1000216 if (type == KEY_DSA)
Damien Miller884b63a2011-05-05 14:14:52 +1000217 *bitsp = DEFAULT_BITS_DSA;
djm@openbsd.org7efb4552015-01-18 13:22:28 +0000218 else if (type == KEY_ECDSA) {
219 if (name != NULL &&
220 (nid = sshkey_ecdsa_nid_from_name(name)) > 0)
221 *bitsp = sshkey_curve_nid_to_bits(nid);
222 if (*bitsp == 0)
223 *bitsp = DEFAULT_BITS_ECDSA;
Damien Miller773dda22015-01-30 23:10:17 +1100224 } else
225#endif
Damien Miller884b63a2011-05-05 14:14:52 +1000226 *bitsp = DEFAULT_BITS;
Damien Miller58f1baf2011-05-05 14:06:15 +1000227 }
Damien Miller72ef7c12015-01-15 02:21:31 +1100228#ifdef WITH_OPENSSL
Damien Miller58f1baf2011-05-05 14:06:15 +1000229 maxbits = (type == KEY_DSA) ?
230 OPENSSL_DSA_MAX_MODULUS_BITS : OPENSSL_RSA_MAX_MODULUS_BITS;
djm@openbsd.org3038a192015-04-17 13:19:22 +0000231 if (*bitsp > maxbits)
232 fatal("key bits exceeds maximum %d", maxbits);
djm@openbsd.orgbd636f42017-05-07 23:15:59 +0000233 switch (type) {
234 case KEY_DSA:
235 if (*bitsp != 1024)
236 fatal("Invalid DSA key length: must be 1024 bits");
237 break;
238 case KEY_RSA:
239 if (*bitsp < SSH_RSA_MINIMUM_MODULUS_SIZE)
240 fatal("Invalid RSA key length: minimum is %d bits",
241 SSH_RSA_MINIMUM_MODULUS_SIZE);
242 break;
243 case KEY_ECDSA:
244 if (sshkey_ecdsa_bits_to_nid(*bitsp) == -1)
245 fatal("Invalid ECDSA key length: valid lengths are "
Manoj Ampalam9b47b082018-11-08 22:41:59 -0800246#ifdef OPENSSL_HAS_NISTP521
djm@openbsd.orgbd636f42017-05-07 23:15:59 +0000247 "256, 384 or 521 bits");
Manoj Ampalam9b47b082018-11-08 22:41:59 -0800248#else
249 "256 or 384 bits");
250#endif
djm@openbsd.orgbd636f42017-05-07 23:15:59 +0000251 }
Damien Miller1f0311c2014-05-15 14:24:09 +1000252#endif
Damien Miller58f1baf2011-05-05 14:06:15 +1000253}
254
255static void
Damien Miller431f66b1999-11-21 18:31:57 +1100256ask_filename(struct passwd *pw, const char *prompt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000257{
Damien Miller95def091999-11-25 00:26:21 +1100258 char buf[1024];
Damien Millere39cacc2000-11-29 12:18:44 +1100259 char *name = NULL;
260
Damien Miller993dd552002-02-19 15:22:47 +1100261 if (key_type_name == NULL)
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000262 name = _PATH_SSH_CLIENT_ID_RSA;
Damien Miller90967402006-03-26 14:07:26 +1100263 else {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000264 switch (sshkey_type_from_name(key_type_name)) {
Damien Miller4e270b02010-04-16 15:56:21 +1000265 case KEY_DSA_CERT:
Damien Miller993dd552002-02-19 15:22:47 +1100266 case KEY_DSA:
267 name = _PATH_SSH_CLIENT_ID_DSA;
268 break;
Damien Millerdd190dd2010-11-11 14:17:02 +1100269#ifdef OPENSSL_HAS_ECC
Damien Millereb8b60e2010-08-31 22:41:14 +1000270 case KEY_ECDSA_CERT:
271 case KEY_ECDSA:
272 name = _PATH_SSH_CLIENT_ID_ECDSA;
273 break;
Damien Millerdd190dd2010-11-11 14:17:02 +1100274#endif
Damien Miller4e270b02010-04-16 15:56:21 +1000275 case KEY_RSA_CERT:
Damien Miller993dd552002-02-19 15:22:47 +1100276 case KEY_RSA:
277 name = _PATH_SSH_CLIENT_ID_RSA;
278 break;
Damien Miller5be9d9e2013-12-07 11:24:01 +1100279 case KEY_ED25519:
280 case KEY_ED25519_CERT:
281 name = _PATH_SSH_CLIENT_ID_ED25519;
282 break;
markus@openbsd.org1b11ea72018-02-23 15:58:37 +0000283 case KEY_XMSS:
284 case KEY_XMSS_CERT:
285 name = _PATH_SSH_CLIENT_ID_XMSS;
286 break;
Damien Miller993dd552002-02-19 15:22:47 +1100287 default:
djm@openbsd.org3038a192015-04-17 13:19:22 +0000288 fatal("bad key type");
Damien Miller993dd552002-02-19 15:22:47 +1100289 }
Damien Miller90967402006-03-26 14:07:26 +1100290 }
djm@openbsd.org3038a192015-04-17 13:19:22 +0000291 snprintf(identity_file, sizeof(identity_file),
292 "%s/%s", pw->pw_dir, name);
293 printf("%s (%s): ", prompt, identity_file);
294 fflush(stdout);
Damien Miller95def091999-11-25 00:26:21 +1100295 if (fgets(buf, sizeof(buf), stdin) == NULL)
296 exit(1);
Damien Miller14b017d2007-09-17 16:09:15 +1000297 buf[strcspn(buf, "\n")] = '\0';
Damien Miller95def091999-11-25 00:26:21 +1100298 if (strcmp(buf, "") != 0)
299 strlcpy(identity_file, buf, sizeof(identity_file));
300 have_identity = 1;
Damien Miller10f6f6b1999-11-17 17:29:08 +1100301}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000302
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000303static struct sshkey *
Ben Lindstromd78ae762001-06-05 20:35:09 +0000304load_identity(char *filename)
Damien Millereba71ba2000-04-29 23:57:08 +1000305{
Ben Lindstromd0fca422001-03-26 13:44:06 +0000306 char *pass;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000307 struct sshkey *prv;
308 int r;
Ben Lindstromd0fca422001-03-26 13:44:06 +0000309
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000310 if ((r = sshkey_load_private(filename, "", &prv, NULL)) == 0)
311 return prv;
312 if (r != SSH_ERR_KEY_WRONG_PASSPHRASE)
313 fatal("Load key \"%s\": %s", filename, ssh_err(r));
314 if (identity_passphrase)
315 pass = xstrdup(identity_passphrase);
316 else
317 pass = read_passphrase("Enter passphrase: ", RP_ALLOW_STDIN);
318 r = sshkey_load_private(filename, pass, &prv, NULL);
319 explicit_bzero(pass, strlen(pass));
320 free(pass);
321 if (r != 0)
322 fatal("Load key \"%s\": %s", filename, ssh_err(r));
Ben Lindstromd0fca422001-03-26 13:44:06 +0000323 return prv;
Damien Millereba71ba2000-04-29 23:57:08 +1000324}
325
Damien Miller874d77b2000-10-14 16:23:11 +1100326#define SSH_COM_PUBLIC_BEGIN "---- BEGIN SSH2 PUBLIC KEY ----"
Ben Lindstromcb72e4f2002-06-21 00:41:51 +0000327#define SSH_COM_PUBLIC_END "---- END SSH2 PUBLIC KEY ----"
Damien Miller874d77b2000-10-14 16:23:11 +1100328#define SSH_COM_PRIVATE_BEGIN "---- BEGIN SSH2 ENCRYPTED PRIVATE KEY ----"
Kevin Stevesef4eea92001-02-05 12:42:17 +0000329#define SSH_COM_PRIVATE_KEY_MAGIC 0x3f6ff9eb
Damien Millereba71ba2000-04-29 23:57:08 +1000330
Damien Miller1f0311c2014-05-15 14:24:09 +1000331#ifdef WITH_OPENSSL
Ben Lindstrombba81212001-06-25 05:01:22 +0000332static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000333do_convert_to_ssh2(struct passwd *pw, struct sshkey *k)
Damien Millereba71ba2000-04-29 23:57:08 +1000334{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000335 size_t len;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000336 u_char *blob;
Darren Tuckerd04758d2010-01-12 19:41:57 +1100337 char comment[61];
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000338 int r;
Damien Millereba71ba2000-04-29 23:57:08 +1000339
djm@openbsd.org3038a192015-04-17 13:19:22 +0000340 if ((r = sshkey_to_blob(k, &blob, &len)) != 0)
341 fatal("key_to_blob failed: %s", ssh_err(r));
Darren Tuckerd04758d2010-01-12 19:41:57 +1100342 /* Comment + surrounds must fit into 72 chars (RFC 4716 sec 3.3) */
343 snprintf(comment, sizeof(comment),
344 "%u-bit %s, converted by %s@%s from OpenSSH",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000345 sshkey_size(k), sshkey_type(k),
Damien Millereba71ba2000-04-29 23:57:08 +1000346 pw->pw_name, hostname);
Darren Tuckerd04758d2010-01-12 19:41:57 +1100347
348 fprintf(stdout, "%s\n", SSH_COM_PUBLIC_BEGIN);
349 fprintf(stdout, "Comment: \"%s\"\n", comment);
Damien Millereba71ba2000-04-29 23:57:08 +1000350 dump_base64(stdout, blob, len);
Damien Miller874d77b2000-10-14 16:23:11 +1100351 fprintf(stdout, "%s\n", SSH_COM_PUBLIC_END);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000352 sshkey_free(k);
Darren Tuckera627d422013-06-02 07:31:17 +1000353 free(blob);
Damien Millereba71ba2000-04-29 23:57:08 +1000354 exit(0);
355}
356
Ben Lindstrombba81212001-06-25 05:01:22 +0000357static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000358do_convert_to_pkcs8(struct sshkey *k)
Damien Miller44b25042010-07-02 13:35:01 +1000359{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000360 switch (sshkey_type_plain(k->type)) {
Damien Miller44b25042010-07-02 13:35:01 +1000361 case KEY_RSA:
362 if (!PEM_write_RSA_PUBKEY(stdout, k->rsa))
363 fatal("PEM_write_RSA_PUBKEY failed");
364 break;
365 case KEY_DSA:
366 if (!PEM_write_DSA_PUBKEY(stdout, k->dsa))
367 fatal("PEM_write_DSA_PUBKEY failed");
368 break;
Damien Miller6af914a2010-09-10 11:39:26 +1000369#ifdef OPENSSL_HAS_ECC
Damien Millereb8b60e2010-08-31 22:41:14 +1000370 case KEY_ECDSA:
371 if (!PEM_write_EC_PUBKEY(stdout, k->ecdsa))
372 fatal("PEM_write_EC_PUBKEY failed");
373 break;
Damien Miller6af914a2010-09-10 11:39:26 +1000374#endif
Damien Miller44b25042010-07-02 13:35:01 +1000375 default:
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000376 fatal("%s: unsupported key type %s", __func__, sshkey_type(k));
Damien Miller44b25042010-07-02 13:35:01 +1000377 }
378 exit(0);
379}
380
381static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000382do_convert_to_pem(struct sshkey *k)
Damien Miller44b25042010-07-02 13:35:01 +1000383{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000384 switch (sshkey_type_plain(k->type)) {
Damien Miller44b25042010-07-02 13:35:01 +1000385 case KEY_RSA:
386 if (!PEM_write_RSAPublicKey(stdout, k->rsa))
387 fatal("PEM_write_RSAPublicKey failed");
388 break;
Damien Miller44b25042010-07-02 13:35:01 +1000389 default:
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000390 fatal("%s: unsupported key type %s", __func__, sshkey_type(k));
Damien Miller44b25042010-07-02 13:35:01 +1000391 }
392 exit(0);
393}
394
395static void
396do_convert_to(struct passwd *pw)
397{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000398 struct sshkey *k;
Damien Miller44b25042010-07-02 13:35:01 +1000399 struct stat st;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000400 int r;
Damien Miller44b25042010-07-02 13:35:01 +1000401
402 if (!have_identity)
403 ask_filename(pw, "Enter file in which the key is");
404 if (stat(identity_file, &st) < 0)
405 fatal("%s: %s: %s", __progname, identity_file, strerror(errno));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000406 if ((r = sshkey_load_public(identity_file, &k, NULL)) != 0)
407 k = load_identity(identity_file);
Damien Miller44b25042010-07-02 13:35:01 +1000408 switch (convert_format) {
409 case FMT_RFC4716:
410 do_convert_to_ssh2(pw, k);
411 break;
412 case FMT_PKCS8:
413 do_convert_to_pkcs8(k);
414 break;
415 case FMT_PEM:
416 do_convert_to_pem(k);
417 break;
418 default:
419 fatal("%s: unknown key format %d", __func__, convert_format);
420 }
421 exit(0);
422}
423
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000424/*
425 * This is almost exactly the bignum1 encoding, but with 32 bit for length
426 * instead of 16.
427 */
Damien Miller44b25042010-07-02 13:35:01 +1000428static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000429buffer_get_bignum_bits(struct sshbuf *b, BIGNUM *value)
Damien Miller874d77b2000-10-14 16:23:11 +1100430{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000431 u_int bytes, bignum_bits;
432 int r;
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000433
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000434 if ((r = sshbuf_get_u32(b, &bignum_bits)) != 0)
435 fatal("%s: buffer error: %s", __func__, ssh_err(r));
436 bytes = (bignum_bits + 7) / 8;
437 if (sshbuf_len(b) < bytes)
438 fatal("%s: input buffer too small: need %d have %zu",
439 __func__, bytes, sshbuf_len(b));
440 if (BN_bin2bn(sshbuf_ptr(b), bytes, value) == NULL)
441 fatal("%s: BN_bin2bn failed", __func__);
442 if ((r = sshbuf_consume(b, bytes)) != 0)
443 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Miller874d77b2000-10-14 16:23:11 +1100444}
445
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000446static struct sshkey *
Ben Lindstrom90fd8142002-02-26 18:09:42 +0000447do_convert_private_ssh2_from_blob(u_char *blob, u_int blen)
Damien Miller874d77b2000-10-14 16:23:11 +1100448{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000449 struct sshbuf *b;
450 struct sshkey *key = NULL;
Damien Miller874d77b2000-10-14 16:23:11 +1100451 char *type, *cipher;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000452 u_char e1, e2, e3, *sig = NULL, data[] = "abcde12345";
453 int r, rlen, ktype;
454 u_int magic, i1, i2, i3, i4;
455 size_t slen;
Ben Lindstrome586c4c2001-06-25 05:04:58 +0000456 u_long e;
djm@openbsd.org482d23b2018-09-13 02:08:33 +0000457 BIGNUM *dsa_p = NULL, *dsa_q = NULL, *dsa_g = NULL;
458 BIGNUM *dsa_pub_key = NULL, *dsa_priv_key = NULL;
459 BIGNUM *rsa_n = NULL, *rsa_e = NULL, *rsa_d = NULL;
460 BIGNUM *rsa_p = NULL, *rsa_q = NULL, *rsa_iqmp = NULL;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000461 if ((b = sshbuf_from(blob, blen)) == NULL)
462 fatal("%s: sshbuf_from failed", __func__);
463 if ((r = sshbuf_get_u32(b, &magic)) != 0)
464 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Miller874d77b2000-10-14 16:23:11 +1100465
Damien Miller874d77b2000-10-14 16:23:11 +1100466 if (magic != SSH_COM_PRIVATE_KEY_MAGIC) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000467 error("bad magic 0x%x != 0x%x", magic,
468 SSH_COM_PRIVATE_KEY_MAGIC);
469 sshbuf_free(b);
Damien Miller874d77b2000-10-14 16:23:11 +1100470 return NULL;
471 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000472 if ((r = sshbuf_get_u32(b, &i1)) != 0 ||
473 (r = sshbuf_get_cstring(b, &type, NULL)) != 0 ||
474 (r = sshbuf_get_cstring(b, &cipher, NULL)) != 0 ||
475 (r = sshbuf_get_u32(b, &i2)) != 0 ||
476 (r = sshbuf_get_u32(b, &i3)) != 0 ||
477 (r = sshbuf_get_u32(b, &i4)) != 0)
478 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Miller80163902007-01-05 16:30:16 +1100479 debug("ignore (%d %d %d %d)", i1, i2, i3, i4);
Damien Miller874d77b2000-10-14 16:23:11 +1100480 if (strcmp(cipher, "none") != 0) {
481 error("unsupported cipher %s", cipher);
Darren Tuckera627d422013-06-02 07:31:17 +1000482 free(cipher);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000483 sshbuf_free(b);
Darren Tuckera627d422013-06-02 07:31:17 +1000484 free(type);
Damien Miller874d77b2000-10-14 16:23:11 +1100485 return NULL;
486 }
Darren Tuckera627d422013-06-02 07:31:17 +1000487 free(cipher);
Damien Miller874d77b2000-10-14 16:23:11 +1100488
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000489 if (strstr(type, "dsa")) {
490 ktype = KEY_DSA;
491 } else if (strstr(type, "rsa")) {
492 ktype = KEY_RSA;
493 } else {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000494 sshbuf_free(b);
Darren Tuckera627d422013-06-02 07:31:17 +1000495 free(type);
Damien Miller874d77b2000-10-14 16:23:11 +1100496 return NULL;
497 }
djm@openbsd.org6da046f2018-09-14 04:17:44 +0000498 if ((key = sshkey_new(ktype)) == NULL)
499 fatal("sshkey_new failed");
Darren Tuckera627d422013-06-02 07:31:17 +1000500 free(type);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000501
502 switch (key->type) {
503 case KEY_DSA:
djm@openbsd.org482d23b2018-09-13 02:08:33 +0000504 if ((dsa_p = BN_new()) == NULL ||
505 (dsa_q = BN_new()) == NULL ||
506 (dsa_g = BN_new()) == NULL ||
507 (dsa_pub_key = BN_new()) == NULL ||
508 (dsa_priv_key = BN_new()) == NULL)
509 fatal("%s: BN_new", __func__);
510 buffer_get_bignum_bits(b, dsa_p);
511 buffer_get_bignum_bits(b, dsa_g);
512 buffer_get_bignum_bits(b, dsa_q);
513 buffer_get_bignum_bits(b, dsa_pub_key);
514 buffer_get_bignum_bits(b, dsa_priv_key);
515 if (!DSA_set0_pqg(key->dsa, dsa_p, dsa_q, dsa_g))
516 fatal("%s: DSA_set0_pqg failed", __func__);
517 dsa_p = dsa_q = dsa_g = NULL; /* transferred */
518 if (!DSA_set0_key(key->dsa, dsa_pub_key, dsa_priv_key))
519 fatal("%s: DSA_set0_key failed", __func__);
520 dsa_pub_key = dsa_priv_key = NULL; /* transferred */
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000521 break;
522 case KEY_RSA:
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000523 if ((r = sshbuf_get_u8(b, &e1)) != 0 ||
524 (e1 < 30 && (r = sshbuf_get_u8(b, &e2)) != 0) ||
525 (e1 < 30 && (r = sshbuf_get_u8(b, &e3)) != 0))
526 fatal("%s: buffer error: %s", __func__, ssh_err(r));
527 e = e1;
Ben Lindstrom34f91882001-06-25 04:47:54 +0000528 debug("e %lx", e);
529 if (e < 30) {
530 e <<= 8;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000531 e += e2;
Ben Lindstrom34f91882001-06-25 04:47:54 +0000532 debug("e %lx", e);
533 e <<= 8;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000534 e += e3;
Ben Lindstrom34f91882001-06-25 04:47:54 +0000535 debug("e %lx", e);
536 }
djm@openbsd.org482d23b2018-09-13 02:08:33 +0000537 if ((rsa_e = BN_new()) == NULL)
538 fatal("%s: BN_new", __func__);
539 if (!BN_set_word(rsa_e, e)) {
540 BN_clear_free(rsa_e);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000541 sshbuf_free(b);
542 sshkey_free(key);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000543 return NULL;
544 }
djm@openbsd.org482d23b2018-09-13 02:08:33 +0000545 if ((rsa_n = BN_new()) == NULL ||
546 (rsa_d = BN_new()) == NULL ||
547 (rsa_p = BN_new()) == NULL ||
548 (rsa_q = BN_new()) == NULL ||
549 (rsa_iqmp = BN_new()) == NULL)
550 fatal("%s: BN_new", __func__);
551 buffer_get_bignum_bits(b, rsa_d);
552 buffer_get_bignum_bits(b, rsa_n);
553 buffer_get_bignum_bits(b, rsa_iqmp);
554 buffer_get_bignum_bits(b, rsa_q);
555 buffer_get_bignum_bits(b, rsa_p);
556 if (!RSA_set0_key(key->rsa, rsa_n, rsa_e, rsa_d))
557 fatal("%s: RSA_set0_key failed", __func__);
558 rsa_n = rsa_e = rsa_d = NULL; /* transferred */
559 if (!RSA_set0_factors(key->rsa, rsa_p, rsa_q))
560 fatal("%s: RSA_set0_factors failed", __func__);
561 rsa_p = rsa_q = NULL; /* transferred */
562 if ((r = ssh_rsa_complete_crt_parameters(key, rsa_iqmp)) != 0)
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000563 fatal("generate RSA parameters failed: %s", ssh_err(r));
djm@openbsd.org482d23b2018-09-13 02:08:33 +0000564 BN_clear_free(rsa_iqmp);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000565 break;
566 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000567 rlen = sshbuf_len(b);
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +0000568 if (rlen != 0)
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000569 error("do_convert_private_ssh2_from_blob: "
570 "remaining bytes in key blob %d", rlen);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000571 sshbuf_free(b);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000572
Ben Lindstrome586c4c2001-06-25 05:04:58 +0000573 /* try the key */
markus@openbsd.org76c9fbb2015-12-04 16:41:28 +0000574 if (sshkey_sign(key, &sig, &slen, data, sizeof(data), NULL, 0) != 0 ||
djm@openbsd.org04c7e282017-12-18 02:25:15 +0000575 sshkey_verify(key, sig, slen, data, sizeof(data), NULL, 0) != 0) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000576 sshkey_free(key);
577 free(sig);
578 return NULL;
579 }
Darren Tuckera627d422013-06-02 07:31:17 +1000580 free(sig);
Damien Miller874d77b2000-10-14 16:23:11 +1100581 return key;
582}
583
Damien Miller8056a9d2006-03-15 12:05:40 +1100584static int
585get_line(FILE *fp, char *line, size_t len)
586{
587 int c;
588 size_t pos = 0;
589
590 line[0] = '\0';
591 while ((c = fgetc(fp)) != EOF) {
djm@openbsd.org3038a192015-04-17 13:19:22 +0000592 if (pos >= len - 1)
593 fatal("input line too long.");
Damien Miller90967402006-03-26 14:07:26 +1100594 switch (c) {
Damien Miller8056a9d2006-03-15 12:05:40 +1100595 case '\r':
596 c = fgetc(fp);
djm@openbsd.org3038a192015-04-17 13:19:22 +0000597 if (c != EOF && c != '\n' && ungetc(c, fp) == EOF)
598 fatal("unget: %s", strerror(errno));
Damien Miller8056a9d2006-03-15 12:05:40 +1100599 return pos;
600 case '\n':
601 return pos;
602 }
603 line[pos++] = c;
604 line[pos] = '\0';
605 }
Damien Miller6c7439f2007-01-05 16:29:55 +1100606 /* We reached EOF */
607 return -1;
Damien Miller8056a9d2006-03-15 12:05:40 +1100608}
609
Ben Lindstrombba81212001-06-25 05:01:22 +0000610static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000611do_convert_from_ssh2(struct passwd *pw, struct sshkey **k, int *private)
Damien Millereba71ba2000-04-29 23:57:08 +1000612{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000613 int r, blen, escaped = 0;
Ben Lindstrom155b9812002-04-02 20:26:26 +0000614 u_int len;
Damien Miller8056a9d2006-03-15 12:05:40 +1100615 char line[1024];
Ben Lindstrom9e0ddd42001-09-18 05:41:19 +0000616 u_char blob[8096];
Damien Millereba71ba2000-04-29 23:57:08 +1000617 char encoded[8096];
Damien Millereba71ba2000-04-29 23:57:08 +1000618 FILE *fp;
619
Damien Millerba3420a2010-06-26 09:39:07 +1000620 if ((fp = fopen(identity_file, "r")) == NULL)
621 fatal("%s: %s: %s", __progname, identity_file, strerror(errno));
Damien Millereba71ba2000-04-29 23:57:08 +1000622 encoded[0] = '\0';
Damien Miller8056a9d2006-03-15 12:05:40 +1100623 while ((blen = get_line(fp, line, sizeof(line))) != -1) {
Damien Miller746d1a62013-07-18 16:13:02 +1000624 if (blen > 0 && line[blen - 1] == '\\')
Damien Miller30c3d422000-05-09 11:02:59 +1000625 escaped++;
Damien Millereba71ba2000-04-29 23:57:08 +1000626 if (strncmp(line, "----", 4) == 0 ||
627 strstr(line, ": ") != NULL) {
Damien Miller874d77b2000-10-14 16:23:11 +1100628 if (strstr(line, SSH_COM_PRIVATE_BEGIN) != NULL)
Damien Miller44b25042010-07-02 13:35:01 +1000629 *private = 1;
Ben Lindstrome586c4c2001-06-25 05:04:58 +0000630 if (strstr(line, " END ") != NULL) {
631 break;
632 }
Ben Lindstrom30358602001-04-24 16:59:28 +0000633 /* fprintf(stderr, "ignore: %s", line); */
Damien Millereba71ba2000-04-29 23:57:08 +1000634 continue;
635 }
Damien Miller30c3d422000-05-09 11:02:59 +1000636 if (escaped) {
637 escaped--;
Ben Lindstrom30358602001-04-24 16:59:28 +0000638 /* fprintf(stderr, "escaped: %s", line); */
Damien Miller30c3d422000-05-09 11:02:59 +1000639 continue;
Damien Millereba71ba2000-04-29 23:57:08 +1000640 }
Damien Millereba71ba2000-04-29 23:57:08 +1000641 strlcat(encoded, line, sizeof(encoded));
642 }
Ben Lindstrom155b9812002-04-02 20:26:26 +0000643 len = strlen(encoded);
644 if (((len % 4) == 3) &&
645 (encoded[len-1] == '=') &&
646 (encoded[len-2] == '=') &&
647 (encoded[len-3] == '='))
648 encoded[len-3] = '\0';
Damien Miller4a8ed542002-01-22 23:33:31 +1100649 blen = uudecode(encoded, blob, sizeof(blob));
djm@openbsd.org3038a192015-04-17 13:19:22 +0000650 if (blen < 0)
651 fatal("uudecode failed.");
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000652 if (*private)
653 *k = do_convert_private_ssh2_from_blob(blob, blen);
djm@openbsd.org3038a192015-04-17 13:19:22 +0000654 else if ((r = sshkey_from_blob(blob, blen, k)) != 0)
655 fatal("decode blob failed: %s", ssh_err(r));
Damien Miller44b25042010-07-02 13:35:01 +1000656 fclose(fp);
657}
658
659static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000660do_convert_from_pkcs8(struct sshkey **k, int *private)
Damien Miller44b25042010-07-02 13:35:01 +1000661{
662 EVP_PKEY *pubkey;
663 FILE *fp;
664
665 if ((fp = fopen(identity_file, "r")) == NULL)
666 fatal("%s: %s: %s", __progname, identity_file, strerror(errno));
667 if ((pubkey = PEM_read_PUBKEY(fp, NULL, NULL, NULL)) == NULL) {
668 fatal("%s: %s is not a recognised public key format", __func__,
669 identity_file);
670 }
671 fclose(fp);
djm@openbsd.org482d23b2018-09-13 02:08:33 +0000672 switch (EVP_PKEY_base_id(pubkey)) {
Damien Miller44b25042010-07-02 13:35:01 +1000673 case EVP_PKEY_RSA:
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000674 if ((*k = sshkey_new(KEY_UNSPEC)) == NULL)
675 fatal("sshkey_new failed");
Damien Miller44b25042010-07-02 13:35:01 +1000676 (*k)->type = KEY_RSA;
677 (*k)->rsa = EVP_PKEY_get1_RSA(pubkey);
678 break;
679 case EVP_PKEY_DSA:
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000680 if ((*k = sshkey_new(KEY_UNSPEC)) == NULL)
681 fatal("sshkey_new failed");
Damien Miller44b25042010-07-02 13:35:01 +1000682 (*k)->type = KEY_DSA;
683 (*k)->dsa = EVP_PKEY_get1_DSA(pubkey);
684 break;
Damien Miller6af914a2010-09-10 11:39:26 +1000685#ifdef OPENSSL_HAS_ECC
Damien Millereb8b60e2010-08-31 22:41:14 +1000686 case EVP_PKEY_EC:
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000687 if ((*k = sshkey_new(KEY_UNSPEC)) == NULL)
688 fatal("sshkey_new failed");
Damien Millereb8b60e2010-08-31 22:41:14 +1000689 (*k)->type = KEY_ECDSA;
690 (*k)->ecdsa = EVP_PKEY_get1_EC_KEY(pubkey);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000691 (*k)->ecdsa_nid = sshkey_ecdsa_key_to_nid((*k)->ecdsa);
Damien Millereb8b60e2010-08-31 22:41:14 +1000692 break;
Damien Miller6af914a2010-09-10 11:39:26 +1000693#endif
Damien Miller44b25042010-07-02 13:35:01 +1000694 default:
695 fatal("%s: unsupported pubkey type %d", __func__,
djm@openbsd.org482d23b2018-09-13 02:08:33 +0000696 EVP_PKEY_base_id(pubkey));
Damien Miller44b25042010-07-02 13:35:01 +1000697 }
698 EVP_PKEY_free(pubkey);
699 return;
700}
701
702static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000703do_convert_from_pem(struct sshkey **k, int *private)
Damien Miller44b25042010-07-02 13:35:01 +1000704{
705 FILE *fp;
706 RSA *rsa;
Damien Miller44b25042010-07-02 13:35:01 +1000707
708 if ((fp = fopen(identity_file, "r")) == NULL)
709 fatal("%s: %s: %s", __progname, identity_file, strerror(errno));
710 if ((rsa = PEM_read_RSAPublicKey(fp, NULL, NULL, NULL)) != NULL) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000711 if ((*k = sshkey_new(KEY_UNSPEC)) == NULL)
712 fatal("sshkey_new failed");
Damien Miller44b25042010-07-02 13:35:01 +1000713 (*k)->type = KEY_RSA;
714 (*k)->rsa = rsa;
715 fclose(fp);
716 return;
717 }
Damien Miller44b25042010-07-02 13:35:01 +1000718 fatal("%s: unrecognised raw private key format", __func__);
719}
720
721static void
722do_convert_from(struct passwd *pw)
723{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000724 struct sshkey *k = NULL;
725 int r, private = 0, ok = 0;
Damien Miller44b25042010-07-02 13:35:01 +1000726 struct stat st;
727
728 if (!have_identity)
729 ask_filename(pw, "Enter file in which the key is");
730 if (stat(identity_file, &st) < 0)
731 fatal("%s: %s: %s", __progname, identity_file, strerror(errno));
732
733 switch (convert_format) {
734 case FMT_RFC4716:
735 do_convert_from_ssh2(pw, &k, &private);
736 break;
737 case FMT_PKCS8:
738 do_convert_from_pkcs8(&k, &private);
739 break;
740 case FMT_PEM:
741 do_convert_from_pem(&k, &private);
742 break;
743 default:
744 fatal("%s: unknown key format %d", __func__, convert_format);
745 }
746
djm@openbsd.org7a2c3682015-01-30 00:59:19 +0000747 if (!private) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000748 if ((r = sshkey_write(k, stdout)) == 0)
749 ok = 1;
Damien Miller44b25042010-07-02 13:35:01 +1000750 if (ok)
751 fprintf(stdout, "\n");
djm@openbsd.org7a2c3682015-01-30 00:59:19 +0000752 } else {
Damien Miller44b25042010-07-02 13:35:01 +1000753 switch (k->type) {
754 case KEY_DSA:
755 ok = PEM_write_DSAPrivateKey(stdout, k->dsa, NULL,
756 NULL, 0, NULL, NULL);
757 break;
Damien Miller6af914a2010-09-10 11:39:26 +1000758#ifdef OPENSSL_HAS_ECC
Damien Millereb8b60e2010-08-31 22:41:14 +1000759 case KEY_ECDSA:
760 ok = PEM_write_ECPrivateKey(stdout, k->ecdsa, NULL,
761 NULL, 0, NULL, NULL);
762 break;
Damien Miller6af914a2010-09-10 11:39:26 +1000763#endif
Damien Miller44b25042010-07-02 13:35:01 +1000764 case KEY_RSA:
765 ok = PEM_write_RSAPrivateKey(stdout, k->rsa, NULL,
766 NULL, 0, NULL, NULL);
767 break;
768 default:
769 fatal("%s: unsupported key type %s", __func__,
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000770 sshkey_type(k));
Damien Miller44b25042010-07-02 13:35:01 +1000771 }
772 }
773
djm@openbsd.org3038a192015-04-17 13:19:22 +0000774 if (!ok)
775 fatal("key write failed");
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000776 sshkey_free(k);
Damien Millereba71ba2000-04-29 23:57:08 +1000777 exit(0);
778}
Damien Miller1f0311c2014-05-15 14:24:09 +1000779#endif
Damien Millereba71ba2000-04-29 23:57:08 +1000780
Ben Lindstrombba81212001-06-25 05:01:22 +0000781static void
Damien Millereba71ba2000-04-29 23:57:08 +1000782do_print_public(struct passwd *pw)
783{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000784 struct sshkey *prv;
Damien Millereba71ba2000-04-29 23:57:08 +1000785 struct stat st;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000786 int r;
Damien Millereba71ba2000-04-29 23:57:08 +1000787
788 if (!have_identity)
789 ask_filename(pw, "Enter file in which the key is");
djm@openbsd.org3038a192015-04-17 13:19:22 +0000790 if (stat(identity_file, &st) < 0)
791 fatal("%s: %s", identity_file, strerror(errno));
Ben Lindstromd78ae762001-06-05 20:35:09 +0000792 prv = load_identity(identity_file);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000793 if ((r = sshkey_write(prv, stdout)) != 0)
markus@openbsd.org7da5df12017-05-30 14:16:41 +0000794 error("sshkey_write failed: %s", ssh_err(r));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000795 sshkey_free(prv);
Damien Millereba71ba2000-04-29 23:57:08 +1000796 fprintf(stdout, "\n");
797 exit(0);
798}
799
Ben Lindstromcd392282001-07-04 03:44:03 +0000800static void
Damien Miller757f34e2010-08-05 13:05:31 +1000801do_download(struct passwd *pw)
Ben Lindstromcd392282001-07-04 03:44:03 +0000802{
Damien Miller7ea845e2010-02-12 09:21:02 +1100803#ifdef ENABLE_PKCS11
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000804 struct sshkey **keys = NULL;
Damien Miller7ea845e2010-02-12 09:21:02 +1100805 int i, nkeys;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000806 enum sshkey_fp_rep rep;
djm@openbsd.org56d1c832014-12-21 22:27:55 +0000807 int fptype;
Damien Millerec77c952013-01-09 15:58:00 +1100808 char *fp, *ra;
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000809
djm@openbsd.org56d1c832014-12-21 22:27:55 +0000810 fptype = print_bubblebabble ? SSH_DIGEST_SHA1 : fingerprint_hash;
811 rep = print_bubblebabble ? SSH_FP_BUBBLEBABBLE : SSH_FP_DEFAULT;
Damien Miller1422c082013-01-09 16:44:54 +1100812
Damien Miller7ea845e2010-02-12 09:21:02 +1100813 pkcs11_init(0);
814 nkeys = pkcs11_add_provider(pkcs11provider, NULL, &keys);
815 if (nkeys <= 0)
816 fatal("cannot read public key from pkcs11");
817 for (i = 0; i < nkeys; i++) {
Damien Millerec77c952013-01-09 15:58:00 +1100818 if (print_fingerprint) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000819 fp = sshkey_fingerprint(keys[i], fptype, rep);
820 ra = sshkey_fingerprint(keys[i], fingerprint_hash,
Damien Millerec77c952013-01-09 15:58:00 +1100821 SSH_FP_RANDOMART);
djm@openbsd.org9ce86c92015-01-28 22:36:00 +0000822 if (fp == NULL || ra == NULL)
823 fatal("%s: sshkey_fingerprint fail", __func__);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000824 printf("%u %s %s (PKCS11 key)\n", sshkey_size(keys[i]),
825 fp, sshkey_type(keys[i]));
Damien Millerec77c952013-01-09 15:58:00 +1100826 if (log_level >= SYSLOG_LEVEL_VERBOSE)
827 printf("%s\n", ra);
Darren Tuckera627d422013-06-02 07:31:17 +1000828 free(ra);
829 free(fp);
Damien Millerec77c952013-01-09 15:58:00 +1100830 } else {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000831 (void) sshkey_write(keys[i], stdout); /* XXX check */
Damien Millerec77c952013-01-09 15:58:00 +1100832 fprintf(stdout, "\n");
833 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000834 sshkey_free(keys[i]);
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000835 }
Darren Tuckera627d422013-06-02 07:31:17 +1000836 free(keys);
Damien Miller7ea845e2010-02-12 09:21:02 +1100837 pkcs11_terminate();
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000838 exit(0);
Damien Miller7ea845e2010-02-12 09:21:02 +1100839#else
840 fatal("no pkcs11 support");
841#endif /* ENABLE_PKCS11 */
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000842}
Ben Lindstromcd392282001-07-04 03:44:03 +0000843
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000844static struct sshkey *
845try_read_key(char **cpp)
846{
847 struct sshkey *ret;
848 int r;
849
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000850 if ((ret = sshkey_new(KEY_UNSPEC)) == NULL)
851 fatal("sshkey_new failed");
852 if ((r = sshkey_read(ret, cpp)) == 0)
853 return ret;
854 /* Not a key */
855 sshkey_free(ret);
856 return NULL;
857}
858
859static void
860fingerprint_one_key(const struct sshkey *public, const char *comment)
861{
862 char *fp = NULL, *ra = NULL;
863 enum sshkey_fp_rep rep;
864 int fptype;
865
866 fptype = print_bubblebabble ? SSH_DIGEST_SHA1 : fingerprint_hash;
867 rep = print_bubblebabble ? SSH_FP_BUBBLEBABBLE : SSH_FP_DEFAULT;
868 fp = sshkey_fingerprint(public, fptype, rep);
869 ra = sshkey_fingerprint(public, fingerprint_hash, SSH_FP_RANDOMART);
870 if (fp == NULL || ra == NULL)
871 fatal("%s: sshkey_fingerprint failed", __func__);
djm@openbsd.orga287c5a2017-02-10 03:36:40 +0000872 mprintf("%u %s %s (%s)\n", sshkey_size(public), fp,
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000873 comment ? comment : "no comment", sshkey_type(public));
874 if (log_level >= SYSLOG_LEVEL_VERBOSE)
875 printf("%s\n", ra);
876 free(ra);
877 free(fp);
878}
879
880static void
881fingerprint_private(const char *path)
882{
883 struct stat st;
884 char *comment = NULL;
885 struct sshkey *public = NULL;
886 int r;
887
888 if (stat(identity_file, &st) < 0)
889 fatal("%s: %s", path, strerror(errno));
djm@openbsd.orgbcb7bc72015-11-18 08:37:28 +0000890 if ((r = sshkey_load_public(path, &public, &comment)) != 0) {
891 debug("load public \"%s\": %s", path, ssh_err(r));
892 if ((r = sshkey_load_private(path, NULL,
893 &public, &comment)) != 0) {
894 debug("load private \"%s\": %s", path, ssh_err(r));
895 fatal("%s is not a key file.", path);
896 }
897 }
898
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000899 fingerprint_one_key(public, comment);
900 sshkey_free(public);
901 free(comment);
902}
903
Ben Lindstrombba81212001-06-25 05:01:22 +0000904static void
Damien Miller10f6f6b1999-11-17 17:29:08 +1100905do_fingerprint(struct passwd *pw)
906{
Damien Miller98c7ad62000-03-09 21:27:49 +1100907 FILE *f;
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000908 struct sshkey *public = NULL;
markus@openbsd.org7f906352018-06-06 18:29:18 +0000909 char *comment = NULL, *cp, *ep, *line = NULL;
910 size_t linesize = 0;
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000911 int i, invalid = 1;
912 const char *path;
djm@openbsd.org1a31d022016-05-02 08:49:03 +0000913 u_long lnum = 0;
Damien Miller10f6f6b1999-11-17 17:29:08 +1100914
Damien Miller95def091999-11-25 00:26:21 +1100915 if (!have_identity)
916 ask_filename(pw, "Enter file in which the key is");
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000917 path = identity_file;
Damien Miller98c7ad62000-03-09 21:27:49 +1100918
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000919 if (strcmp(identity_file, "-") == 0) {
920 f = stdin;
921 path = "(stdin)";
922 } else if ((f = fopen(path, "r")) == NULL)
923 fatal("%s: %s: %s", __progname, path, strerror(errno));
Damien Miller98c7ad62000-03-09 21:27:49 +1100924
markus@openbsd.org7f906352018-06-06 18:29:18 +0000925 while (getline(&line, &linesize, f) != -1) {
926 lnum++;
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000927 cp = line;
928 cp[strcspn(cp, "\n")] = '\0';
929 /* Trim leading space and comments */
930 cp = line + strspn(line, " \t");
931 if (*cp == '#' || *cp == '\0')
932 continue;
933
934 /*
935 * Input may be plain keys, private keys, authorized_keys
936 * or known_hosts.
937 */
938
939 /*
940 * Try private keys first. Assume a key is private if
941 * "SSH PRIVATE KEY" appears on the first line and we're
942 * not reading from stdin (XXX support private keys on stdin).
943 */
944 if (lnum == 1 && strcmp(identity_file, "-") != 0 &&
djm@openbsd.orgbcb7bc72015-11-18 08:37:28 +0000945 strstr(cp, "PRIVATE KEY") != NULL) {
markus@openbsd.org7f906352018-06-06 18:29:18 +0000946 free(line);
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000947 fclose(f);
948 fingerprint_private(path);
949 exit(0);
950 }
951
952 /*
953 * If it's not a private key, then this must be prepared to
954 * accept a public key prefixed with a hostname or options.
955 * Try a bare key first, otherwise skip the leading stuff.
956 */
957 if ((public = try_read_key(&cp)) == NULL) {
958 i = strtol(cp, &ep, 10);
959 if (i == 0 || ep == NULL ||
960 (*ep != ' ' && *ep != '\t')) {
961 int quoted = 0;
962
963 comment = cp;
964 for (; *cp && (quoted || (*cp != ' ' &&
965 *cp != '\t')); cp++) {
966 if (*cp == '\\' && cp[1] == '"')
967 cp++; /* Skip both */
968 else if (*cp == '"')
969 quoted = !quoted;
970 }
971 if (!*cp)
972 continue;
973 *cp++ = '\0';
974 }
975 }
976 /* Retry after parsing leading hostname/key options */
977 if (public == NULL && (public = try_read_key(&cp)) == NULL) {
djm@openbsd.org1a31d022016-05-02 08:49:03 +0000978 debug("%s:%lu: not a public key", path, lnum);
Damien Millerba3420a2010-06-26 09:39:07 +1000979 continue;
Damien Miller95def091999-11-25 00:26:21 +1100980 }
Damien Millerba3420a2010-06-26 09:39:07 +1000981
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000982 /* Find trailing comment, if any */
983 for (; *cp == ' ' || *cp == '\t'; cp++)
Damien Millerba3420a2010-06-26 09:39:07 +1000984 ;
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000985 if (*cp != '\0' && *cp != '#')
Damien Millerba3420a2010-06-26 09:39:07 +1000986 comment = cp;
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000987
988 fingerprint_one_key(public, comment);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000989 sshkey_free(public);
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000990 invalid = 0; /* One good key in the file is sufficient */
Damien Miller95def091999-11-25 00:26:21 +1100991 }
Damien Millerba3420a2010-06-26 09:39:07 +1000992 fclose(f);
markus@openbsd.org7f906352018-06-06 18:29:18 +0000993 free(line);
Damien Millerba3420a2010-06-26 09:39:07 +1000994
djm@openbsd.org3038a192015-04-17 13:19:22 +0000995 if (invalid)
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000996 fatal("%s is not a public key file.", path);
Damien Miller95def091999-11-25 00:26:21 +1100997 exit(0);
Damien Miller10f6f6b1999-11-17 17:29:08 +1100998}
999
Damien Miller4b42d7f2005-03-01 21:48:35 +11001000static void
Damien Miller58f1baf2011-05-05 14:06:15 +10001001do_gen_all_hostkeys(struct passwd *pw)
1002{
1003 struct {
1004 char *key_type;
1005 char *key_type_display;
1006 char *path;
1007 } key_types[] = {
djm@openbsd.org5c27e3b2015-03-23 06:06:38 +00001008#ifdef WITH_OPENSSL
Damien Miller58f1baf2011-05-05 14:06:15 +10001009 { "rsa", "RSA" ,_PATH_HOST_RSA_KEY_FILE },
1010 { "dsa", "DSA", _PATH_HOST_DSA_KEY_FILE },
Damien Millerb56e4932012-02-06 07:41:27 +11001011#ifdef OPENSSL_HAS_ECC
Damien Miller58f1baf2011-05-05 14:06:15 +10001012 { "ecdsa", "ECDSA",_PATH_HOST_ECDSA_KEY_FILE },
djm@openbsd.org5c27e3b2015-03-23 06:06:38 +00001013#endif /* OPENSSL_HAS_ECC */
1014#endif /* WITH_OPENSSL */
Damien Miller5be9d9e2013-12-07 11:24:01 +11001015 { "ed25519", "ED25519",_PATH_HOST_ED25519_KEY_FILE },
markus@openbsd.org1b11ea72018-02-23 15:58:37 +00001016#ifdef WITH_XMSS
1017 { "xmss", "XMSS",_PATH_HOST_XMSS_KEY_FILE },
1018#endif /* WITH_XMSS */
Damien Miller58f1baf2011-05-05 14:06:15 +10001019 { NULL, NULL, NULL }
1020 };
1021
1022 int first = 0;
1023 struct stat st;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001024 struct sshkey *private, *public;
djm@openbsd.org853edbe2017-07-07 03:53:12 +00001025 char comment[1024], *prv_tmp, *pub_tmp, *prv_file, *pub_file;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001026 int i, type, fd, r;
Damien Miller58f1baf2011-05-05 14:06:15 +10001027 FILE *f;
1028
1029 for (i = 0; key_types[i].key_type; i++) {
djm@openbsd.org853edbe2017-07-07 03:53:12 +00001030 public = private = NULL;
1031 prv_tmp = pub_tmp = prv_file = pub_file = NULL;
1032
1033 xasprintf(&prv_file, "%s%s",
1034 identity_file, key_types[i].path);
1035
1036 /* Check whether private key exists and is not zero-length */
1037 if (stat(prv_file, &st) == 0) {
1038 if (st.st_size != 0)
1039 goto next;
1040 } else if (errno != ENOENT) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00001041 error("Could not stat %s: %s", key_types[i].path,
Damien Miller58f1baf2011-05-05 14:06:15 +10001042 strerror(errno));
djm@openbsd.org853edbe2017-07-07 03:53:12 +00001043 goto failnext;
Damien Miller58f1baf2011-05-05 14:06:15 +10001044 }
1045
djm@openbsd.org853edbe2017-07-07 03:53:12 +00001046 /*
1047 * Private key doesn't exist or is invalid; proceed with
1048 * key generation.
1049 */
1050 xasprintf(&prv_tmp, "%s%s.XXXXXXXXXX",
1051 identity_file, key_types[i].path);
1052 xasprintf(&pub_tmp, "%s%s.pub.XXXXXXXXXX",
1053 identity_file, key_types[i].path);
1054 xasprintf(&pub_file, "%s%s.pub",
1055 identity_file, key_types[i].path);
1056
Damien Miller58f1baf2011-05-05 14:06:15 +10001057 if (first == 0) {
1058 first = 1;
1059 printf("%s: generating new host keys: ", __progname);
1060 }
1061 printf("%s ", key_types[i].key_type_display);
1062 fflush(stdout);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001063 type = sshkey_type_from_name(key_types[i].key_type);
djm@openbsd.org853edbe2017-07-07 03:53:12 +00001064 if ((fd = mkstemp(prv_tmp)) == -1) {
1065 error("Could not save your public key in %s: %s",
1066 prv_tmp, strerror(errno));
1067 goto failnext;
1068 }
1069 close(fd); /* just using mkstemp() to generate/reserve a name */
Damien Miller58f1baf2011-05-05 14:06:15 +10001070 bits = 0;
djm@openbsd.org7efb4552015-01-18 13:22:28 +00001071 type_bits_valid(type, NULL, &bits);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001072 if ((r = sshkey_generate(type, bits, &private)) != 0) {
markus@openbsd.org7da5df12017-05-30 14:16:41 +00001073 error("sshkey_generate failed: %s", ssh_err(r));
djm@openbsd.org853edbe2017-07-07 03:53:12 +00001074 goto failnext;
Damien Miller58f1baf2011-05-05 14:06:15 +10001075 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001076 if ((r = sshkey_from_private(private, &public)) != 0)
1077 fatal("sshkey_from_private failed: %s", ssh_err(r));
Damien Miller58f1baf2011-05-05 14:06:15 +10001078 snprintf(comment, sizeof comment, "%s@%s", pw->pw_name,
1079 hostname);
djm@openbsd.org853edbe2017-07-07 03:53:12 +00001080 if ((r = sshkey_save_private(private, prv_tmp, "",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001081 comment, use_new_format, new_format_cipher, rounds)) != 0) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00001082 error("Saving key \"%s\" failed: %s",
djm@openbsd.org853edbe2017-07-07 03:53:12 +00001083 prv_tmp, ssh_err(r));
1084 goto failnext;
Damien Miller58f1baf2011-05-05 14:06:15 +10001085 }
djm@openbsd.org853edbe2017-07-07 03:53:12 +00001086 if ((fd = mkstemp(pub_tmp)) == -1) {
1087 error("Could not save your public key in %s: %s",
1088 pub_tmp, strerror(errno));
1089 goto failnext;
Damien Miller58f1baf2011-05-05 14:06:15 +10001090 }
djm@openbsd.org853edbe2017-07-07 03:53:12 +00001091 (void)fchmod(fd, 0644);
Damien Miller58f1baf2011-05-05 14:06:15 +10001092 f = fdopen(fd, "w");
1093 if (f == NULL) {
djm@openbsd.org853edbe2017-07-07 03:53:12 +00001094 error("fdopen %s failed: %s", pub_tmp, strerror(errno));
doug@openbsd.org7df88182014-08-21 01:08:52 +00001095 close(fd);
djm@openbsd.org853edbe2017-07-07 03:53:12 +00001096 goto failnext;
Damien Miller58f1baf2011-05-05 14:06:15 +10001097 }
djm@openbsd.orgbb8b4422015-01-16 15:55:07 +00001098 if ((r = sshkey_write(public, f)) != 0) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00001099 error("write key failed: %s", ssh_err(r));
doug@openbsd.org7df88182014-08-21 01:08:52 +00001100 fclose(f);
djm@openbsd.org853edbe2017-07-07 03:53:12 +00001101 goto failnext;
Damien Miller58f1baf2011-05-05 14:06:15 +10001102 }
1103 fprintf(f, " %s\n", comment);
djm@openbsd.org853edbe2017-07-07 03:53:12 +00001104 if (ferror(f) != 0) {
1105 error("write key failed: %s", strerror(errno));
1106 fclose(f);
1107 goto failnext;
1108 }
1109 if (fclose(f) != 0) {
1110 error("key close failed: %s", strerror(errno));
1111 goto failnext;
1112 }
Damien Miller58f1baf2011-05-05 14:06:15 +10001113
djm@openbsd.org853edbe2017-07-07 03:53:12 +00001114 /* Rename temporary files to their permanent locations. */
1115 if (rename(pub_tmp, pub_file) != 0) {
1116 error("Unable to move %s into position: %s",
1117 pub_file, strerror(errno));
1118 goto failnext;
1119 }
1120 if (rename(prv_tmp, prv_file) != 0) {
1121 error("Unable to move %s into position: %s",
1122 key_types[i].path, strerror(errno));
1123 failnext:
1124 first = 0;
1125 goto next;
1126 }
1127 next:
1128 sshkey_free(private);
1129 sshkey_free(public);
1130 free(prv_tmp);
1131 free(pub_tmp);
1132 free(prv_file);
1133 free(pub_file);
Damien Miller58f1baf2011-05-05 14:06:15 +10001134 }
1135 if (first != 0)
1136 printf("\n");
1137}
1138
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001139struct known_hosts_ctx {
djm@openbsd.org2b3c3c72015-01-18 21:51:19 +00001140 const char *host; /* Hostname searched for in find/delete case */
1141 FILE *out; /* Output file, stdout for find_hosts case */
1142 int has_unhashed; /* When hashing, original had unhashed hosts */
1143 int found_key; /* For find/delete, host was found */
1144 int invalid; /* File contained invalid items; don't delete */
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001145};
1146
1147static int
1148known_hosts_hash(struct hostkey_foreach_line *l, void *_ctx)
Damien Miller4b42d7f2005-03-01 21:48:35 +11001149{
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001150 struct known_hosts_ctx *ctx = (struct known_hosts_ctx *)_ctx;
1151 char *hashed, *cp, *hosts, *ohosts;
1152 int has_wild = l->hosts && strcspn(l->hosts, "*?!") != strlen(l->hosts);
dtucker@openbsd.org18501152017-03-06 02:03:20 +00001153 int was_hashed = l->hosts && l->hosts[0] == HASH_DELIM;
Darren Tucker0f7e9102008-06-08 12:54:29 +10001154
djm@openbsd.org6c5c9492015-02-16 22:08:57 +00001155 switch (l->status) {
1156 case HKF_STATUS_OK:
1157 case HKF_STATUS_MATCHED:
1158 /*
1159 * Don't hash hosts already already hashed, with wildcard
1160 * characters or a CA/revocation marker.
1161 */
djm@openbsd.org12d37672017-03-03 06:13:11 +00001162 if (was_hashed || has_wild || l->marker != MRK_NONE) {
djm@openbsd.org6c5c9492015-02-16 22:08:57 +00001163 fprintf(ctx->out, "%s\n", l->line);
1164 if (has_wild && !find_host) {
dtucker@openbsd.orgd0723702017-03-06 00:44:51 +00001165 logit("%s:%lu: ignoring host name "
djm@openbsd.org3038a192015-04-17 13:19:22 +00001166 "with wildcard: %.64s", l->path,
djm@openbsd.org6c5c9492015-02-16 22:08:57 +00001167 l->linenum, l->hosts);
1168 }
1169 return 0;
1170 }
1171 /*
1172 * Split any comma-separated hostnames from the host list,
1173 * hash and store separately.
1174 */
1175 ohosts = hosts = xstrdup(l->hosts);
1176 while ((cp = strsep(&hosts, ",")) != NULL && *cp != '\0') {
djm@openbsd.orgdb259722017-03-10 04:26:06 +00001177 lowercase(cp);
djm@openbsd.org6c5c9492015-02-16 22:08:57 +00001178 if ((hashed = host_hash(cp, NULL, 0)) == NULL)
1179 fatal("hash_host failed");
1180 fprintf(ctx->out, "%s %s\n", hashed, l->rawkey);
1181 ctx->has_unhashed = 1;
1182 }
1183 free(ohosts);
1184 return 0;
1185 case HKF_STATUS_INVALID:
1186 /* Retain invalid lines, but mark file as invalid. */
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001187 ctx->invalid = 1;
dtucker@openbsd.orgd0723702017-03-06 00:44:51 +00001188 logit("%s:%lu: invalid line", l->path, l->linenum);
djm@openbsd.org6c5c9492015-02-16 22:08:57 +00001189 /* FALLTHROUGH */
1190 default:
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001191 fprintf(ctx->out, "%s\n", l->line);
1192 return 0;
Darren Tucker0f7e9102008-06-08 12:54:29 +10001193 }
djm@openbsd.org6c5c9492015-02-16 22:08:57 +00001194 /* NOTREACHED */
1195 return -1;
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001196}
1197
1198static int
1199known_hosts_find_delete(struct hostkey_foreach_line *l, void *_ctx)
1200{
1201 struct known_hosts_ctx *ctx = (struct known_hosts_ctx *)_ctx;
djm@openbsd.org4739e8d2015-05-21 12:01:19 +00001202 enum sshkey_fp_rep rep;
1203 int fptype;
1204 char *fp;
1205
1206 fptype = print_bubblebabble ? SSH_DIGEST_SHA1 : fingerprint_hash;
1207 rep = print_bubblebabble ? SSH_FP_BUBBLEBABBLE : SSH_FP_DEFAULT;
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001208
djm@openbsd.org6c5c9492015-02-16 22:08:57 +00001209 if (l->status == HKF_STATUS_MATCHED) {
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001210 if (delete_host) {
1211 if (l->marker != MRK_NONE) {
1212 /* Don't remove CA and revocation lines */
1213 fprintf(ctx->out, "%s\n", l->line);
1214 } else {
1215 /*
1216 * Hostname matches and has no CA/revoke
1217 * marker, delete it by *not* writing the
1218 * line to ctx->out.
1219 */
1220 ctx->found_key = 1;
1221 if (!quiet)
dtucker@openbsd.orgd0723702017-03-06 00:44:51 +00001222 printf("# Host %s found: line %lu\n",
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001223 ctx->host, l->linenum);
1224 }
1225 return 0;
1226 } else if (find_host) {
1227 ctx->found_key = 1;
1228 if (!quiet) {
dtucker@openbsd.orgd0723702017-03-06 00:44:51 +00001229 printf("# Host %s found: line %lu %s\n",
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001230 ctx->host,
1231 l->linenum, l->marker == MRK_CA ? "CA" :
1232 (l->marker == MRK_REVOKE ? "REVOKED" : ""));
1233 }
1234 if (hash_hosts)
1235 known_hosts_hash(l, ctx);
djm@openbsd.org4739e8d2015-05-21 12:01:19 +00001236 else if (print_fingerprint) {
1237 fp = sshkey_fingerprint(l->key, fptype, rep);
djm@openbsd.orga287c5a2017-02-10 03:36:40 +00001238 mprintf("%s %s %s %s\n", ctx->host,
djm@openbsd.org4739e8d2015-05-21 12:01:19 +00001239 sshkey_type(l->key), fp, l->comment);
1240 free(fp);
1241 } else
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001242 fprintf(ctx->out, "%s\n", l->line);
1243 return 0;
1244 }
1245 } else if (delete_host) {
1246 /* Retain non-matching hosts when deleting */
1247 if (l->status == HKF_STATUS_INVALID) {
1248 ctx->invalid = 1;
dtucker@openbsd.orgd0723702017-03-06 00:44:51 +00001249 logit("%s:%lu: invalid line", l->path, l->linenum);
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001250 }
1251 fprintf(ctx->out, "%s\n", l->line);
1252 }
1253 return 0;
Damien Miller4b42d7f2005-03-01 21:48:35 +11001254}
1255
1256static void
1257do_known_hosts(struct passwd *pw, const char *name)
1258{
deraadt@openbsd.orgd2099de2015-01-19 00:32:54 +00001259 char *cp, tmp[PATH_MAX], old[PATH_MAX];
djm@openbsd.org2b3c3c72015-01-18 21:51:19 +00001260 int r, fd, oerrno, inplace = 0;
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001261 struct known_hosts_ctx ctx;
djm@openbsd.org4739e8d2015-05-21 12:01:19 +00001262 u_int foreach_options;
Damien Miller4b42d7f2005-03-01 21:48:35 +11001263
1264 if (!have_identity) {
1265 cp = tilde_expand_filename(_PATH_SSH_USER_HOSTFILE, pw->pw_uid);
1266 if (strlcpy(identity_file, cp, sizeof(identity_file)) >=
1267 sizeof(identity_file))
1268 fatal("Specified known hosts path too long");
Darren Tuckera627d422013-06-02 07:31:17 +10001269 free(cp);
Damien Miller4b42d7f2005-03-01 21:48:35 +11001270 have_identity = 1;
1271 }
Damien Miller4b42d7f2005-03-01 21:48:35 +11001272
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001273 memset(&ctx, 0, sizeof(ctx));
1274 ctx.out = stdout;
1275 ctx.host = name;
1276
Damien Miller4b42d7f2005-03-01 21:48:35 +11001277 /*
1278 * Find hosts goes to stdout, hash and deletions happen in-place
1279 * A corner case is ssh-keygen -HF foo, which should go to stdout
1280 */
1281 if (!find_host && (hash_hosts || delete_host)) {
1282 if (strlcpy(tmp, identity_file, sizeof(tmp)) >= sizeof(tmp) ||
1283 strlcat(tmp, ".XXXXXXXXXX", sizeof(tmp)) >= sizeof(tmp) ||
1284 strlcpy(old, identity_file, sizeof(old)) >= sizeof(old) ||
1285 strlcat(old, ".old", sizeof(old)) >= sizeof(old))
1286 fatal("known_hosts path too long");
1287 umask(077);
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001288 if ((fd = mkstemp(tmp)) == -1)
Damien Miller4b42d7f2005-03-01 21:48:35 +11001289 fatal("mkstemp: %s", strerror(errno));
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001290 if ((ctx.out = fdopen(fd, "w")) == NULL) {
1291 oerrno = errno;
Damien Miller4b42d7f2005-03-01 21:48:35 +11001292 unlink(tmp);
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001293 fatal("fdopen: %s", strerror(oerrno));
Damien Miller4b42d7f2005-03-01 21:48:35 +11001294 }
djm@openbsd.org2b3c3c72015-01-18 21:51:19 +00001295 inplace = 1;
Damien Miller4b42d7f2005-03-01 21:48:35 +11001296 }
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001297 /* XXX support identity_file == "-" for stdin */
djm@openbsd.org4739e8d2015-05-21 12:01:19 +00001298 foreach_options = find_host ? HKF_WANT_MATCH : 0;
1299 foreach_options |= print_fingerprint ? HKF_WANT_PARSE_KEY : 0;
djm@openbsd.org01b048c2018-06-01 04:21:29 +00001300 if ((r = hostkeys_foreach(identity_file, (find_host || !hash_hosts) ?
djm@openbsd.org3e088aa2018-06-01 03:51:34 +00001301 known_hosts_find_delete : known_hosts_hash, &ctx, name, NULL,
1302 foreach_options)) != 0) {
deraadt@openbsd.org6da413c2015-11-28 06:50:52 +00001303 if (inplace)
1304 unlink(tmp);
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001305 fatal("%s: hostkeys_foreach failed: %s", __func__, ssh_err(r));
deraadt@openbsd.org6da413c2015-11-28 06:50:52 +00001306 }
Damien Miller4b42d7f2005-03-01 21:48:35 +11001307
djm@openbsd.org2b3c3c72015-01-18 21:51:19 +00001308 if (inplace)
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001309 fclose(ctx.out);
Damien Miller0a80ca12010-02-27 07:55:05 +11001310
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001311 if (ctx.invalid) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00001312 error("%s is not a valid known_hosts file.", identity_file);
djm@openbsd.org2b3c3c72015-01-18 21:51:19 +00001313 if (inplace) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00001314 error("Not replacing existing known_hosts "
1315 "file because of errors");
Damien Miller4b42d7f2005-03-01 21:48:35 +11001316 unlink(tmp);
1317 }
1318 exit(1);
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001319 } else if (delete_host && !ctx.found_key) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00001320 logit("Host %s not found in %s", name, identity_file);
djm@openbsd.orgc8376432015-08-19 23:17:51 +00001321 if (inplace)
1322 unlink(tmp);
djm@openbsd.org2b3c3c72015-01-18 21:51:19 +00001323 } else if (inplace) {
Damien Miller4b42d7f2005-03-01 21:48:35 +11001324 /* Backup existing file */
1325 if (unlink(old) == -1 && errno != ENOENT)
1326 fatal("unlink %.100s: %s", old, strerror(errno));
1327 if (link(identity_file, old) == -1)
1328 fatal("link %.100s to %.100s: %s", identity_file, old,
1329 strerror(errno));
1330 /* Move new one into place */
1331 if (rename(tmp, identity_file) == -1) {
1332 error("rename\"%s\" to \"%s\": %s", tmp, identity_file,
1333 strerror(errno));
1334 unlink(tmp);
1335 unlink(old);
1336 exit(1);
1337 }
1338
djm@openbsd.org3038a192015-04-17 13:19:22 +00001339 printf("%s updated.\n", identity_file);
1340 printf("Original contents retained as %s\n", old);
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001341 if (ctx.has_unhashed) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00001342 logit("WARNING: %s contains unhashed entries", old);
1343 logit("Delete this file to ensure privacy "
1344 "of hostnames");
Damien Miller4b42d7f2005-03-01 21:48:35 +11001345 }
1346 }
1347
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001348 exit (find_host && !ctx.found_key);
Damien Miller4b42d7f2005-03-01 21:48:35 +11001349}
1350
Damien Miller95def091999-11-25 00:26:21 +11001351/*
1352 * Perform changing a passphrase. The argument is the passwd structure
1353 * for the current user.
1354 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001355static void
Damien Miller10f6f6b1999-11-17 17:29:08 +11001356do_change_passphrase(struct passwd *pw)
1357{
Damien Miller95def091999-11-25 00:26:21 +11001358 char *comment;
1359 char *old_passphrase, *passphrase1, *passphrase2;
1360 struct stat st;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001361 struct sshkey *private;
1362 int r;
Damien Miller10f6f6b1999-11-17 17:29:08 +11001363
Damien Miller95def091999-11-25 00:26:21 +11001364 if (!have_identity)
1365 ask_filename(pw, "Enter file in which the key is");
djm@openbsd.org3038a192015-04-17 13:19:22 +00001366 if (stat(identity_file, &st) < 0)
1367 fatal("%s: %s", identity_file, strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +11001368 /* Try to load the file with empty passphrase. */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001369 r = sshkey_load_private(identity_file, "", &private, &comment);
1370 if (r == SSH_ERR_KEY_WRONG_PASSPHRASE) {
Damien Miller95def091999-11-25 00:26:21 +11001371 if (identity_passphrase)
1372 old_passphrase = xstrdup(identity_passphrase);
1373 else
Ben Lindstrom949974b2001-06-25 05:20:31 +00001374 old_passphrase =
1375 read_passphrase("Enter old passphrase: ",
1376 RP_ALLOW_STDIN);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001377 r = sshkey_load_private(identity_file, old_passphrase,
1378 &private, &comment);
Damien Millera5103f42014-02-04 11:20:14 +11001379 explicit_bzero(old_passphrase, strlen(old_passphrase));
Darren Tuckera627d422013-06-02 07:31:17 +10001380 free(old_passphrase);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001381 if (r != 0)
1382 goto badkey;
1383 } else if (r != 0) {
1384 badkey:
djm@openbsd.org3038a192015-04-17 13:19:22 +00001385 fatal("Failed to load key %s: %s", identity_file, ssh_err(r));
Damien Miller95def091999-11-25 00:26:21 +11001386 }
djm@openbsd.orgf43d1722015-02-26 20:45:47 +00001387 if (comment)
djm@openbsd.orga287c5a2017-02-10 03:36:40 +00001388 mprintf("Key has comment '%s'\n", comment);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001389
Damien Miller95def091999-11-25 00:26:21 +11001390 /* Ask the new passphrase (twice). */
1391 if (identity_new_passphrase) {
1392 passphrase1 = xstrdup(identity_new_passphrase);
1393 passphrase2 = NULL;
1394 } else {
1395 passphrase1 =
Ben Lindstrom949974b2001-06-25 05:20:31 +00001396 read_passphrase("Enter new passphrase (empty for no "
1397 "passphrase): ", RP_ALLOW_STDIN);
1398 passphrase2 = read_passphrase("Enter same passphrase again: ",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001399 RP_ALLOW_STDIN);
Damien Miller95def091999-11-25 00:26:21 +11001400
1401 /* Verify that they are the same. */
1402 if (strcmp(passphrase1, passphrase2) != 0) {
Damien Millera5103f42014-02-04 11:20:14 +11001403 explicit_bzero(passphrase1, strlen(passphrase1));
1404 explicit_bzero(passphrase2, strlen(passphrase2));
Darren Tuckera627d422013-06-02 07:31:17 +10001405 free(passphrase1);
1406 free(passphrase2);
Damien Miller95def091999-11-25 00:26:21 +11001407 printf("Pass phrases do not match. Try again.\n");
1408 exit(1);
1409 }
1410 /* Destroy the other copy. */
Damien Millera5103f42014-02-04 11:20:14 +11001411 explicit_bzero(passphrase2, strlen(passphrase2));
Darren Tuckera627d422013-06-02 07:31:17 +10001412 free(passphrase2);
Damien Miller95def091999-11-25 00:26:21 +11001413 }
1414
1415 /* Save the file using the new passphrase. */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001416 if ((r = sshkey_save_private(private, identity_file, passphrase1,
1417 comment, use_new_format, new_format_cipher, rounds)) != 0) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00001418 error("Saving key \"%s\" failed: %s.",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001419 identity_file, ssh_err(r));
Damien Millera5103f42014-02-04 11:20:14 +11001420 explicit_bzero(passphrase1, strlen(passphrase1));
Darren Tuckera627d422013-06-02 07:31:17 +10001421 free(passphrase1);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001422 sshkey_free(private);
Darren Tuckera627d422013-06-02 07:31:17 +10001423 free(comment);
Damien Miller95def091999-11-25 00:26:21 +11001424 exit(1);
1425 }
1426 /* Destroy the passphrase and the copy of the key in memory. */
Damien Millera5103f42014-02-04 11:20:14 +11001427 explicit_bzero(passphrase1, strlen(passphrase1));
Darren Tuckera627d422013-06-02 07:31:17 +10001428 free(passphrase1);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001429 sshkey_free(private); /* Destroys contents */
Darren Tuckera627d422013-06-02 07:31:17 +10001430 free(comment);
Damien Miller95def091999-11-25 00:26:21 +11001431
1432 printf("Your identification has been saved with the new passphrase.\n");
1433 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001434}
1435
Damien Miller37876e92003-05-15 10:19:46 +10001436/*
1437 * Print the SSHFP RR.
1438 */
Damien Millercb314822006-03-26 13:48:01 +11001439static int
1440do_print_resource_record(struct passwd *pw, char *fname, char *hname)
Damien Miller37876e92003-05-15 10:19:46 +10001441{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001442 struct sshkey *public;
Damien Miller37876e92003-05-15 10:19:46 +10001443 char *comment = NULL;
1444 struct stat st;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001445 int r;
Damien Miller37876e92003-05-15 10:19:46 +10001446
Damien Millercb314822006-03-26 13:48:01 +11001447 if (fname == NULL)
Damien Miller5bb88332013-07-18 16:13:37 +10001448 fatal("%s: no filename", __func__);
Damien Millercb314822006-03-26 13:48:01 +11001449 if (stat(fname, &st) < 0) {
1450 if (errno == ENOENT)
1451 return 0;
djm@openbsd.org3038a192015-04-17 13:19:22 +00001452 fatal("%s: %s", fname, strerror(errno));
Damien Miller37876e92003-05-15 10:19:46 +10001453 }
djm@openbsd.org3038a192015-04-17 13:19:22 +00001454 if ((r = sshkey_load_public(fname, &public, &comment)) != 0)
1455 fatal("Failed to read v2 public key from \"%s\": %s.",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001456 fname, ssh_err(r));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001457 export_dns_rr(hname, public, stdout, print_generic);
1458 sshkey_free(public);
1459 free(comment);
1460 return 1;
Damien Miller37876e92003-05-15 10:19:46 +10001461}
Damien Miller37876e92003-05-15 10:19:46 +10001462
Damien Miller95def091999-11-25 00:26:21 +11001463/*
1464 * Change the comment of a private key file.
1465 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001466static void
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001467do_change_comment(struct passwd *pw)
1468{
Ben Lindstrom5fc62702001-03-09 18:19:24 +00001469 char new_comment[1024], *comment, *passphrase;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001470 struct sshkey *private;
1471 struct sshkey *public;
Damien Miller95def091999-11-25 00:26:21 +11001472 struct stat st;
1473 FILE *f;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001474 int r, fd;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001475
Damien Miller95def091999-11-25 00:26:21 +11001476 if (!have_identity)
1477 ask_filename(pw, "Enter file in which the key is");
djm@openbsd.org3038a192015-04-17 13:19:22 +00001478 if (stat(identity_file, &st) < 0)
1479 fatal("%s: %s", identity_file, strerror(errno));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001480 if ((r = sshkey_load_private(identity_file, "",
1481 &private, &comment)) == 0)
1482 passphrase = xstrdup("");
djm@openbsd.org3038a192015-04-17 13:19:22 +00001483 else if (r != SSH_ERR_KEY_WRONG_PASSPHRASE)
1484 fatal("Cannot load private key \"%s\": %s.",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001485 identity_file, ssh_err(r));
djm@openbsd.org3038a192015-04-17 13:19:22 +00001486 else {
Damien Miller95def091999-11-25 00:26:21 +11001487 if (identity_passphrase)
1488 passphrase = xstrdup(identity_passphrase);
1489 else if (identity_new_passphrase)
1490 passphrase = xstrdup(identity_new_passphrase);
1491 else
Ben Lindstrom949974b2001-06-25 05:20:31 +00001492 passphrase = read_passphrase("Enter passphrase: ",
1493 RP_ALLOW_STDIN);
Damien Miller95def091999-11-25 00:26:21 +11001494 /* Try to load using the passphrase. */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001495 if ((r = sshkey_load_private(identity_file, passphrase,
1496 &private, &comment)) != 0) {
Damien Millera5103f42014-02-04 11:20:14 +11001497 explicit_bzero(passphrase, strlen(passphrase));
Darren Tuckera627d422013-06-02 07:31:17 +10001498 free(passphrase);
djm@openbsd.org3038a192015-04-17 13:19:22 +00001499 fatal("Cannot load private key \"%s\": %s.",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001500 identity_file, ssh_err(r));
Damien Miller95def091999-11-25 00:26:21 +11001501 }
1502 }
halex@openbsd.org4d906252015-11-20 23:04:01 +00001503
markus@openbsd.org1b11ea72018-02-23 15:58:37 +00001504 if (private->type != KEY_ED25519 && private->type != KEY_XMSS &&
1505 !use_new_format) {
djm@openbsd.org873d3e72017-04-30 23:18:44 +00001506 error("Comments are only supported for keys stored in "
halex@openbsd.org4d906252015-11-20 23:04:01 +00001507 "the new format (-o).");
tobias@openbsd.org704d8c82015-03-31 11:06:49 +00001508 explicit_bzero(passphrase, strlen(passphrase));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001509 sshkey_free(private);
Ben Lindstromd0fca422001-03-26 13:44:06 +00001510 exit(1);
Damien Miller9f0f5c62001-12-21 14:45:46 +11001511 }
millert@openbsd.orge40269b2017-02-08 20:32:43 +00001512 if (comment)
1513 printf("Key now has comment '%s'\n", comment);
1514 else
1515 printf("Key now has no comment\n");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001516
Damien Miller95def091999-11-25 00:26:21 +11001517 if (identity_comment) {
1518 strlcpy(new_comment, identity_comment, sizeof(new_comment));
1519 } else {
1520 printf("Enter new comment: ");
1521 fflush(stdout);
1522 if (!fgets(new_comment, sizeof(new_comment), stdin)) {
Damien Millera5103f42014-02-04 11:20:14 +11001523 explicit_bzero(passphrase, strlen(passphrase));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001524 sshkey_free(private);
Damien Miller95def091999-11-25 00:26:21 +11001525 exit(1);
1526 }
Damien Miller14b017d2007-09-17 16:09:15 +10001527 new_comment[strcspn(new_comment, "\n")] = '\0';
Damien Miller95def091999-11-25 00:26:21 +11001528 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001529
Damien Miller95def091999-11-25 00:26:21 +11001530 /* Save the file using the new passphrase. */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001531 if ((r = sshkey_save_private(private, identity_file, passphrase,
1532 new_comment, use_new_format, new_format_cipher, rounds)) != 0) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00001533 error("Saving key \"%s\" failed: %s",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001534 identity_file, ssh_err(r));
Damien Millera5103f42014-02-04 11:20:14 +11001535 explicit_bzero(passphrase, strlen(passphrase));
Darren Tuckera627d422013-06-02 07:31:17 +10001536 free(passphrase);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001537 sshkey_free(private);
Darren Tuckera627d422013-06-02 07:31:17 +10001538 free(comment);
Damien Miller95def091999-11-25 00:26:21 +11001539 exit(1);
1540 }
Damien Millera5103f42014-02-04 11:20:14 +11001541 explicit_bzero(passphrase, strlen(passphrase));
Darren Tuckera627d422013-06-02 07:31:17 +10001542 free(passphrase);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001543 if ((r = sshkey_from_private(private, &public)) != 0)
markus@openbsd.org7da5df12017-05-30 14:16:41 +00001544 fatal("sshkey_from_private failed: %s", ssh_err(r));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001545 sshkey_free(private);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001546
Damien Miller95def091999-11-25 00:26:21 +11001547 strlcat(identity_file, ".pub", sizeof(identity_file));
Ben Lindstrom5fc62702001-03-09 18:19:24 +00001548 fd = open(identity_file, O_WRONLY | O_CREAT | O_TRUNC, 0644);
djm@openbsd.org3038a192015-04-17 13:19:22 +00001549 if (fd == -1)
1550 fatal("Could not save your public key in %s", identity_file);
Ben Lindstrom5fc62702001-03-09 18:19:24 +00001551 f = fdopen(fd, "w");
djm@openbsd.org3038a192015-04-17 13:19:22 +00001552 if (f == NULL)
1553 fatal("fdopen %s failed: %s", identity_file, strerror(errno));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001554 if ((r = sshkey_write(public, f)) != 0)
djm@openbsd.org3038a192015-04-17 13:19:22 +00001555 fatal("write key failed: %s", ssh_err(r));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001556 sshkey_free(public);
Damien Millereba71ba2000-04-29 23:57:08 +10001557 fprintf(f, " %s\n", new_comment);
Damien Miller95def091999-11-25 00:26:21 +11001558 fclose(f);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001559
Darren Tuckera627d422013-06-02 07:31:17 +10001560 free(comment);
Damien Miller95def091999-11-25 00:26:21 +11001561
1562 printf("The comment in your key file has been changed.\n");
1563 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001564}
1565
Damien Miller0a80ca12010-02-27 07:55:05 +11001566static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001567add_flag_option(struct sshbuf *c, const char *name)
Damien Miller0a80ca12010-02-27 07:55:05 +11001568{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001569 int r;
1570
Damien Miller0a80ca12010-02-27 07:55:05 +11001571 debug3("%s: %s", __func__, name);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001572 if ((r = sshbuf_put_cstring(c, name)) != 0 ||
1573 (r = sshbuf_put_string(c, NULL, 0)) != 0)
1574 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Miller0a80ca12010-02-27 07:55:05 +11001575}
1576
1577static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001578add_string_option(struct sshbuf *c, const char *name, const char *value)
Damien Miller0a80ca12010-02-27 07:55:05 +11001579{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001580 struct sshbuf *b;
1581 int r;
Damien Miller0a80ca12010-02-27 07:55:05 +11001582
1583 debug3("%s: %s=%s", __func__, name, value);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001584 if ((b = sshbuf_new()) == NULL)
1585 fatal("%s: sshbuf_new failed", __func__);
1586 if ((r = sshbuf_put_cstring(b, value)) != 0 ||
1587 (r = sshbuf_put_cstring(c, name)) != 0 ||
1588 (r = sshbuf_put_stringb(c, b)) != 0)
1589 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Miller0a80ca12010-02-27 07:55:05 +11001590
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001591 sshbuf_free(b);
Damien Miller0a80ca12010-02-27 07:55:05 +11001592}
1593
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001594#define OPTIONS_CRITICAL 1
1595#define OPTIONS_EXTENSIONS 2
Damien Miller0a80ca12010-02-27 07:55:05 +11001596static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001597prepare_options_buf(struct sshbuf *c, int which)
Damien Miller0a80ca12010-02-27 07:55:05 +11001598{
djm@openbsd.org249516e2017-04-29 04:12:25 +00001599 size_t i;
1600
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001601 sshbuf_reset(c);
Damien Miller1da63882010-08-05 13:03:51 +10001602 if ((which & OPTIONS_CRITICAL) != 0 &&
1603 certflags_command != NULL)
1604 add_string_option(c, "force-command", certflags_command);
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001605 if ((which & OPTIONS_EXTENSIONS) != 0 &&
Damien Miller2ce12ef2011-05-05 14:17:18 +10001606 (certflags_flags & CERTOPT_X_FWD) != 0)
1607 add_flag_option(c, "permit-X11-forwarding");
1608 if ((which & OPTIONS_EXTENSIONS) != 0 &&
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001609 (certflags_flags & CERTOPT_AGENT_FWD) != 0)
Damien Miller4e270b02010-04-16 15:56:21 +10001610 add_flag_option(c, "permit-agent-forwarding");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001611 if ((which & OPTIONS_EXTENSIONS) != 0 &&
1612 (certflags_flags & CERTOPT_PORT_FWD) != 0)
Damien Miller4e270b02010-04-16 15:56:21 +10001613 add_flag_option(c, "permit-port-forwarding");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001614 if ((which & OPTIONS_EXTENSIONS) != 0 &&
1615 (certflags_flags & CERTOPT_PTY) != 0)
Damien Miller4e270b02010-04-16 15:56:21 +10001616 add_flag_option(c, "permit-pty");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001617 if ((which & OPTIONS_EXTENSIONS) != 0 &&
1618 (certflags_flags & CERTOPT_USER_RC) != 0)
Damien Miller4e270b02010-04-16 15:56:21 +10001619 add_flag_option(c, "permit-user-rc");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001620 if ((which & OPTIONS_CRITICAL) != 0 &&
1621 certflags_src_addr != NULL)
1622 add_string_option(c, "source-address", certflags_src_addr);
djm@openbsd.org249516e2017-04-29 04:12:25 +00001623 for (i = 0; i < ncert_userext; i++) {
1624 if ((cert_userext[i].crit && (which & OPTIONS_EXTENSIONS)) ||
1625 (!cert_userext[i].crit && (which & OPTIONS_CRITICAL)))
1626 continue;
1627 if (cert_userext[i].val == NULL)
1628 add_flag_option(c, cert_userext[i].key);
1629 else {
1630 add_string_option(c, cert_userext[i].key,
1631 cert_userext[i].val);
1632 }
1633 }
Damien Miller0a80ca12010-02-27 07:55:05 +11001634}
1635
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001636static struct sshkey *
Damien Miller757f34e2010-08-05 13:05:31 +10001637load_pkcs11_key(char *path)
1638{
1639#ifdef ENABLE_PKCS11
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001640 struct sshkey **keys = NULL, *public, *private = NULL;
1641 int r, i, nkeys;
Damien Miller757f34e2010-08-05 13:05:31 +10001642
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001643 if ((r = sshkey_load_public(path, &public, NULL)) != 0)
1644 fatal("Couldn't load CA public key \"%s\": %s",
1645 path, ssh_err(r));
Damien Miller757f34e2010-08-05 13:05:31 +10001646
1647 nkeys = pkcs11_add_provider(pkcs11provider, identity_passphrase, &keys);
1648 debug3("%s: %d keys", __func__, nkeys);
1649 if (nkeys <= 0)
1650 fatal("cannot read public key from pkcs11");
1651 for (i = 0; i < nkeys; i++) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001652 if (sshkey_equal_public(public, keys[i])) {
Damien Miller757f34e2010-08-05 13:05:31 +10001653 private = keys[i];
1654 continue;
1655 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001656 sshkey_free(keys[i]);
Damien Miller757f34e2010-08-05 13:05:31 +10001657 }
Darren Tuckera627d422013-06-02 07:31:17 +10001658 free(keys);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001659 sshkey_free(public);
Damien Miller757f34e2010-08-05 13:05:31 +10001660 return private;
1661#else
1662 fatal("no pkcs11 support");
1663#endif /* ENABLE_PKCS11 */
1664}
1665
djm@openbsd.orga98339e2017-06-28 01:09:22 +00001666/* Signer for sshkey_certify_custom that uses the agent */
1667static int
1668agent_signer(const struct sshkey *key, u_char **sigp, size_t *lenp,
1669 const u_char *data, size_t datalen,
1670 const char *alg, u_int compat, void *ctx)
1671{
1672 int *agent_fdp = (int *)ctx;
1673
1674 return ssh_agent_sign(*agent_fdp, key, sigp, lenp,
1675 data, datalen, alg, compat);
1676}
1677
Damien Miller0a80ca12010-02-27 07:55:05 +11001678static void
1679do_ca_sign(struct passwd *pw, int argc, char **argv)
1680{
djm@openbsd.orga98339e2017-06-28 01:09:22 +00001681 int r, i, fd, found, agent_fd = -1;
Damien Miller0a80ca12010-02-27 07:55:05 +11001682 u_int n;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001683 struct sshkey *ca, *public;
djm@openbsd.org499cf362015-11-19 01:08:55 +00001684 char valid[64], *otmp, *tmp, *cp, *out, *comment, **plist = NULL;
Damien Miller0a80ca12010-02-27 07:55:05 +11001685 FILE *f;
djm@openbsd.orga98339e2017-06-28 01:09:22 +00001686 struct ssh_identitylist *agent_ids;
1687 size_t j;
Damien Miller4e270b02010-04-16 15:56:21 +10001688
Damien Miller1f0311c2014-05-15 14:24:09 +10001689#ifdef ENABLE_PKCS11
Damien Miller757f34e2010-08-05 13:05:31 +10001690 pkcs11_init(1);
Damien Miller1f0311c2014-05-15 14:24:09 +10001691#endif
Damien Miller757f34e2010-08-05 13:05:31 +10001692 tmp = tilde_expand_filename(ca_key_path, pw->pw_uid);
1693 if (pkcs11provider != NULL) {
djm@openbsd.orga98339e2017-06-28 01:09:22 +00001694 /* If a PKCS#11 token was specified then try to use it */
Damien Miller757f34e2010-08-05 13:05:31 +10001695 if ((ca = load_pkcs11_key(tmp)) == NULL)
1696 fatal("No PKCS#11 key matching %s found", ca_key_path);
djm@openbsd.orga98339e2017-06-28 01:09:22 +00001697 } else if (prefer_agent) {
1698 /*
1699 * Agent signature requested. Try to use agent after making
1700 * sure the public key specified is actually present in the
1701 * agent.
1702 */
1703 if ((r = sshkey_load_public(tmp, &ca, NULL)) != 0)
1704 fatal("Cannot load CA public key %s: %s",
1705 tmp, ssh_err(r));
1706 if ((r = ssh_get_authentication_socket(&agent_fd)) != 0)
1707 fatal("Cannot use public key for CA signature: %s",
1708 ssh_err(r));
1709 if ((r = ssh_fetch_identitylist(agent_fd, &agent_ids)) != 0)
1710 fatal("Retrieve agent key list: %s", ssh_err(r));
1711 found = 0;
1712 for (j = 0; j < agent_ids->nkeys; j++) {
1713 if (sshkey_equal(ca, agent_ids->keys[j])) {
1714 found = 1;
1715 break;
1716 }
1717 }
1718 if (!found)
1719 fatal("CA key %s not found in agent", tmp);
1720 ssh_free_identitylist(agent_ids);
1721 ca->flags |= SSHKEY_FLAG_EXT;
1722 } else {
1723 /* CA key is assumed to be a private key on the filesystem */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001724 ca = load_identity(tmp);
djm@openbsd.orga98339e2017-06-28 01:09:22 +00001725 }
Darren Tuckera627d422013-06-02 07:31:17 +10001726 free(tmp);
Damien Miller757f34e2010-08-05 13:05:31 +10001727
djm@openbsd.org57464e32016-05-02 09:36:42 +00001728 if (key_type_name != NULL &&
1729 sshkey_type_from_name(key_type_name) != ca->type) {
1730 fatal("CA key type %s doesn't match specified %s",
1731 sshkey_ssh_name(ca), key_type_name);
1732 }
1733
Damien Miller0a80ca12010-02-27 07:55:05 +11001734 for (i = 0; i < argc; i++) {
1735 /* Split list of principals */
1736 n = 0;
1737 if (cert_principals != NULL) {
1738 otmp = tmp = xstrdup(cert_principals);
1739 plist = NULL;
1740 for (; (cp = strsep(&tmp, ",")) != NULL; n++) {
deraadt@openbsd.org657a5fb2015-04-24 01:36:00 +00001741 plist = xreallocarray(plist, n + 1, sizeof(*plist));
Damien Miller0a80ca12010-02-27 07:55:05 +11001742 if (*(plist[n] = xstrdup(cp)) == '\0')
1743 fatal("Empty principal name");
1744 }
Darren Tuckera627d422013-06-02 07:31:17 +10001745 free(otmp);
Damien Miller0a80ca12010-02-27 07:55:05 +11001746 }
djm@openbsd.orgca613242018-02-10 05:48:46 +00001747 if (n > SSHKEY_CERT_MAX_PRINCIPALS)
1748 fatal("Too many certificate principals specified");
Damien Miller0a80ca12010-02-27 07:55:05 +11001749
1750 tmp = tilde_expand_filename(argv[i], pw->pw_uid);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001751 if ((r = sshkey_load_public(tmp, &public, &comment)) != 0)
1752 fatal("%s: unable to open \"%s\": %s",
1753 __func__, tmp, ssh_err(r));
Damien Millereb8b60e2010-08-31 22:41:14 +10001754 if (public->type != KEY_RSA && public->type != KEY_DSA &&
markus@openbsd.org1b11ea72018-02-23 15:58:37 +00001755 public->type != KEY_ECDSA && public->type != KEY_ED25519 &&
1756 public->type != KEY_XMSS)
Damien Miller0a80ca12010-02-27 07:55:05 +11001757 fatal("%s: key \"%s\" type %s cannot be certified",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001758 __func__, tmp, sshkey_type(public));
Damien Miller0a80ca12010-02-27 07:55:05 +11001759
1760 /* Prepare certificate to sign */
djm@openbsd.orgc28fc622015-07-03 03:43:18 +00001761 if ((r = sshkey_to_certified(public)) != 0)
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001762 fatal("Could not upgrade key %s to certificate: %s",
1763 tmp, ssh_err(r));
Damien Miller0a80ca12010-02-27 07:55:05 +11001764 public->cert->type = cert_key_type;
Damien Miller4e270b02010-04-16 15:56:21 +10001765 public->cert->serial = (u_int64_t)cert_serial;
Damien Miller0a80ca12010-02-27 07:55:05 +11001766 public->cert->key_id = xstrdup(cert_key_id);
1767 public->cert->nprincipals = n;
1768 public->cert->principals = plist;
1769 public->cert->valid_after = cert_valid_from;
1770 public->cert->valid_before = cert_valid_to;
djm@openbsd.orgc28fc622015-07-03 03:43:18 +00001771 prepare_options_buf(public->cert->critical, OPTIONS_CRITICAL);
1772 prepare_options_buf(public->cert->extensions,
1773 OPTIONS_EXTENSIONS);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001774 if ((r = sshkey_from_private(ca,
1775 &public->cert->signature_key)) != 0)
markus@openbsd.org7da5df12017-05-30 14:16:41 +00001776 fatal("sshkey_from_private (ca key): %s", ssh_err(r));
Damien Miller0a80ca12010-02-27 07:55:05 +11001777
djm@openbsd.orga98339e2017-06-28 01:09:22 +00001778 if (agent_fd != -1 && (ca->flags & SSHKEY_FLAG_EXT) != 0) {
1779 if ((r = sshkey_certify_custom(public, ca,
1780 key_type_name, agent_signer, &agent_fd)) != 0)
1781 fatal("Couldn't certify key %s via agent: %s",
1782 tmp, ssh_err(r));
1783 } else {
1784 if ((sshkey_certify(public, ca, key_type_name)) != 0)
1785 fatal("Couldn't certify key %s: %s",
1786 tmp, ssh_err(r));
1787 }
Damien Miller0a80ca12010-02-27 07:55:05 +11001788
1789 if ((cp = strrchr(tmp, '.')) != NULL && strcmp(cp, ".pub") == 0)
1790 *cp = '\0';
1791 xasprintf(&out, "%s-cert.pub", tmp);
Darren Tuckera627d422013-06-02 07:31:17 +10001792 free(tmp);
Damien Miller0a80ca12010-02-27 07:55:05 +11001793
1794 if ((fd = open(out, O_WRONLY|O_CREAT|O_TRUNC, 0644)) == -1)
1795 fatal("Could not open \"%s\" for writing: %s", out,
1796 strerror(errno));
1797 if ((f = fdopen(fd, "w")) == NULL)
1798 fatal("%s: fdopen: %s", __func__, strerror(errno));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001799 if ((r = sshkey_write(public, f)) != 0)
1800 fatal("Could not write certified key to %s: %s",
1801 out, ssh_err(r));
Damien Miller0a80ca12010-02-27 07:55:05 +11001802 fprintf(f, " %s\n", comment);
1803 fclose(f);
1804
Damien Miller4e270b02010-04-16 15:56:21 +10001805 if (!quiet) {
djm@openbsd.org964ab3e2015-11-19 01:12:32 +00001806 sshkey_format_cert_validity(public->cert,
djm@openbsd.org499cf362015-11-19 01:08:55 +00001807 valid, sizeof(valid));
Damien Miller4e270b02010-04-16 15:56:21 +10001808 logit("Signed %s key %s: id \"%s\" serial %llu%s%s "
djm@openbsd.org964ab3e2015-11-19 01:12:32 +00001809 "valid %s", sshkey_cert_type(public),
Damien Miller821de0a2011-01-11 17:20:29 +11001810 out, public->cert->key_id,
1811 (unsigned long long)public->cert->serial,
Damien Miller0a80ca12010-02-27 07:55:05 +11001812 cert_principals != NULL ? " for " : "",
1813 cert_principals != NULL ? cert_principals : "",
djm@openbsd.org499cf362015-11-19 01:08:55 +00001814 valid);
Damien Miller4e270b02010-04-16 15:56:21 +10001815 }
Damien Miller0a80ca12010-02-27 07:55:05 +11001816
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001817 sshkey_free(public);
Darren Tuckera627d422013-06-02 07:31:17 +10001818 free(out);
Damien Miller0a80ca12010-02-27 07:55:05 +11001819 }
Damien Miller1f0311c2014-05-15 14:24:09 +10001820#ifdef ENABLE_PKCS11
Damien Miller757f34e2010-08-05 13:05:31 +10001821 pkcs11_terminate();
Damien Miller1f0311c2014-05-15 14:24:09 +10001822#endif
Damien Miller0a80ca12010-02-27 07:55:05 +11001823 exit(0);
1824}
1825
1826static u_int64_t
1827parse_relative_time(const char *s, time_t now)
1828{
1829 int64_t mul, secs;
1830
1831 mul = *s == '-' ? -1 : 1;
1832
1833 if ((secs = convtime(s + 1)) == -1)
1834 fatal("Invalid relative certificate time %s", s);
1835 if (mul == -1 && secs > now)
1836 fatal("Certificate time %s cannot be represented", s);
1837 return now + (u_int64_t)(secs * mul);
1838}
1839
Damien Miller0a80ca12010-02-27 07:55:05 +11001840static void
1841parse_cert_times(char *timespec)
1842{
1843 char *from, *to;
1844 time_t now = time(NULL);
1845 int64_t secs;
1846
1847 /* +timespec relative to now */
1848 if (*timespec == '+' && strchr(timespec, ':') == NULL) {
1849 if ((secs = convtime(timespec + 1)) == -1)
1850 fatal("Invalid relative certificate life %s", timespec);
1851 cert_valid_to = now + secs;
1852 /*
1853 * Backdate certificate one minute to avoid problems on hosts
1854 * with poorly-synchronised clocks.
1855 */
1856 cert_valid_from = ((now - 59)/ 60) * 60;
1857 return;
1858 }
1859
1860 /*
1861 * from:to, where
djm@openbsd.org@openbsd.orgd52131a2017-11-03 05:14:04 +00001862 * from := [+-]timespec | YYYYMMDD | YYYYMMDDHHMMSS | "always"
1863 * to := [+-]timespec | YYYYMMDD | YYYYMMDDHHMMSS | "forever"
Damien Miller0a80ca12010-02-27 07:55:05 +11001864 */
1865 from = xstrdup(timespec);
1866 to = strchr(from, ':');
1867 if (to == NULL || from == to || *(to + 1) == '\0')
Damien Miller910f2092010-03-04 14:17:22 +11001868 fatal("Invalid certificate life specification %s", timespec);
Damien Miller0a80ca12010-02-27 07:55:05 +11001869 *to++ = '\0';
1870
1871 if (*from == '-' || *from == '+')
1872 cert_valid_from = parse_relative_time(from, now);
djm@openbsd.org@openbsd.orgd52131a2017-11-03 05:14:04 +00001873 else if (strcmp(from, "always") == 0)
1874 cert_valid_from = 0;
djm@openbsd.orgbf0fbf22018-03-12 00:52:01 +00001875 else if (parse_absolute_time(from, &cert_valid_from) != 0)
1876 fatal("Invalid from time \"%s\"", from);
Damien Miller0a80ca12010-02-27 07:55:05 +11001877
1878 if (*to == '-' || *to == '+')
Damien Miller5b01b0d2013-10-23 16:31:31 +11001879 cert_valid_to = parse_relative_time(to, now);
djm@openbsd.org@openbsd.orgd52131a2017-11-03 05:14:04 +00001880 else if (strcmp(to, "forever") == 0)
1881 cert_valid_to = ~(u_int64_t)0;
djm@openbsd.orgbf0fbf22018-03-12 00:52:01 +00001882 else if (parse_absolute_time(to, &cert_valid_to) != 0)
1883 fatal("Invalid to time \"%s\"", to);
Damien Miller0a80ca12010-02-27 07:55:05 +11001884
1885 if (cert_valid_to <= cert_valid_from)
1886 fatal("Empty certificate validity interval");
Darren Tuckera627d422013-06-02 07:31:17 +10001887 free(from);
Damien Miller0a80ca12010-02-27 07:55:05 +11001888}
1889
1890static void
Damien Miller4e270b02010-04-16 15:56:21 +10001891add_cert_option(char *opt)
Damien Miller0a80ca12010-02-27 07:55:05 +11001892{
djm@openbsd.org249516e2017-04-29 04:12:25 +00001893 char *val, *cp;
1894 int iscrit = 0;
Damien Miller0a80ca12010-02-27 07:55:05 +11001895
Damien Miller044f4a62011-05-05 14:14:08 +10001896 if (strcasecmp(opt, "clear") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001897 certflags_flags = 0;
Damien Miller0a80ca12010-02-27 07:55:05 +11001898 else if (strcasecmp(opt, "no-x11-forwarding") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001899 certflags_flags &= ~CERTOPT_X_FWD;
Damien Miller0a80ca12010-02-27 07:55:05 +11001900 else if (strcasecmp(opt, "permit-x11-forwarding") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001901 certflags_flags |= CERTOPT_X_FWD;
Damien Miller0a80ca12010-02-27 07:55:05 +11001902 else if (strcasecmp(opt, "no-agent-forwarding") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001903 certflags_flags &= ~CERTOPT_AGENT_FWD;
Damien Miller0a80ca12010-02-27 07:55:05 +11001904 else if (strcasecmp(opt, "permit-agent-forwarding") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001905 certflags_flags |= CERTOPT_AGENT_FWD;
Damien Miller0a80ca12010-02-27 07:55:05 +11001906 else if (strcasecmp(opt, "no-port-forwarding") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001907 certflags_flags &= ~CERTOPT_PORT_FWD;
Damien Miller0a80ca12010-02-27 07:55:05 +11001908 else if (strcasecmp(opt, "permit-port-forwarding") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001909 certflags_flags |= CERTOPT_PORT_FWD;
Damien Miller0a80ca12010-02-27 07:55:05 +11001910 else if (strcasecmp(opt, "no-pty") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001911 certflags_flags &= ~CERTOPT_PTY;
Damien Miller0a80ca12010-02-27 07:55:05 +11001912 else if (strcasecmp(opt, "permit-pty") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001913 certflags_flags |= CERTOPT_PTY;
Damien Miller0a80ca12010-02-27 07:55:05 +11001914 else if (strcasecmp(opt, "no-user-rc") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001915 certflags_flags &= ~CERTOPT_USER_RC;
Damien Miller0a80ca12010-02-27 07:55:05 +11001916 else if (strcasecmp(opt, "permit-user-rc") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001917 certflags_flags |= CERTOPT_USER_RC;
Damien Miller0a80ca12010-02-27 07:55:05 +11001918 else if (strncasecmp(opt, "force-command=", 14) == 0) {
1919 val = opt + 14;
1920 if (*val == '\0')
Damien Miller4e270b02010-04-16 15:56:21 +10001921 fatal("Empty force-command option");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001922 if (certflags_command != NULL)
Damien Miller0a80ca12010-02-27 07:55:05 +11001923 fatal("force-command already specified");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001924 certflags_command = xstrdup(val);
Damien Miller0a80ca12010-02-27 07:55:05 +11001925 } else if (strncasecmp(opt, "source-address=", 15) == 0) {
1926 val = opt + 15;
1927 if (*val == '\0')
Damien Miller4e270b02010-04-16 15:56:21 +10001928 fatal("Empty source-address option");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001929 if (certflags_src_addr != NULL)
Damien Miller0a80ca12010-02-27 07:55:05 +11001930 fatal("source-address already specified");
1931 if (addr_match_cidr_list(NULL, val) != 0)
1932 fatal("Invalid source-address list");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001933 certflags_src_addr = xstrdup(val);
djm@openbsd.org249516e2017-04-29 04:12:25 +00001934 } else if (strncasecmp(opt, "extension:", 10) == 0 ||
1935 (iscrit = (strncasecmp(opt, "critical:", 9) == 0))) {
1936 val = xstrdup(strchr(opt, ':') + 1);
1937 if ((cp = strchr(val, '=')) != NULL)
1938 *cp++ = '\0';
1939 cert_userext = xreallocarray(cert_userext, ncert_userext + 1,
1940 sizeof(*cert_userext));
1941 cert_userext[ncert_userext].key = val;
1942 cert_userext[ncert_userext].val = cp == NULL ?
1943 NULL : xstrdup(cp);
1944 cert_userext[ncert_userext].crit = iscrit;
1945 ncert_userext++;
Damien Miller0a80ca12010-02-27 07:55:05 +11001946 } else
Damien Miller4e270b02010-04-16 15:56:21 +10001947 fatal("Unsupported certificate option \"%s\"", opt);
Damien Miller0a80ca12010-02-27 07:55:05 +11001948}
1949
Ben Lindstrombba81212001-06-25 05:01:22 +00001950static void
djm@openbsd.orgc28fc622015-07-03 03:43:18 +00001951show_options(struct sshbuf *optbuf, int in_critical)
Damien Millerd834d352010-06-26 09:48:02 +10001952{
Damien Miller633de332014-05-15 13:48:26 +10001953 char *name, *arg;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001954 struct sshbuf *options, *option = NULL;
1955 int r;
Damien Millerd834d352010-06-26 09:48:02 +10001956
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001957 if ((options = sshbuf_fromb(optbuf)) == NULL)
1958 fatal("%s: sshbuf_fromb failed", __func__);
1959 while (sshbuf_len(options) != 0) {
1960 sshbuf_free(option);
1961 option = NULL;
1962 if ((r = sshbuf_get_cstring(options, &name, NULL)) != 0 ||
1963 (r = sshbuf_froms(options, &option)) != 0)
1964 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Millerd834d352010-06-26 09:48:02 +10001965 printf(" %s", name);
djm@openbsd.orgc28fc622015-07-03 03:43:18 +00001966 if (!in_critical &&
Damien Millerd834d352010-06-26 09:48:02 +10001967 (strcmp(name, "permit-X11-forwarding") == 0 ||
1968 strcmp(name, "permit-agent-forwarding") == 0 ||
1969 strcmp(name, "permit-port-forwarding") == 0 ||
1970 strcmp(name, "permit-pty") == 0 ||
1971 strcmp(name, "permit-user-rc") == 0))
1972 printf("\n");
djm@openbsd.orgc28fc622015-07-03 03:43:18 +00001973 else if (in_critical &&
Damien Millerd834d352010-06-26 09:48:02 +10001974 (strcmp(name, "force-command") == 0 ||
1975 strcmp(name, "source-address") == 0)) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001976 if ((r = sshbuf_get_cstring(option, &arg, NULL)) != 0)
1977 fatal("%s: buffer error: %s",
1978 __func__, ssh_err(r));
Damien Miller633de332014-05-15 13:48:26 +10001979 printf(" %s\n", arg);
1980 free(arg);
Damien Millerd834d352010-06-26 09:48:02 +10001981 } else {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001982 printf(" UNKNOWN OPTION (len %zu)\n",
1983 sshbuf_len(option));
1984 sshbuf_reset(option);
Damien Millerd834d352010-06-26 09:48:02 +10001985 }
Darren Tuckera627d422013-06-02 07:31:17 +10001986 free(name);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001987 if (sshbuf_len(option) != 0)
Damien Millerd834d352010-06-26 09:48:02 +10001988 fatal("Option corrupt: extra data at end");
1989 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001990 sshbuf_free(option);
1991 sshbuf_free(options);
Damien Millerd834d352010-06-26 09:48:02 +10001992}
1993
1994static void
djm@openbsd.org94bc0b72015-11-13 04:34:15 +00001995print_cert(struct sshkey *key)
Damien Millerf2b70ca2010-03-05 07:39:35 +11001996{
djm@openbsd.org499cf362015-11-19 01:08:55 +00001997 char valid[64], *key_fp, *ca_fp;
djm@openbsd.orgc28fc622015-07-03 03:43:18 +00001998 u_int i;
Damien Miller4e270b02010-04-16 15:56:21 +10001999
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002000 key_fp = sshkey_fingerprint(key, fingerprint_hash, SSH_FP_DEFAULT);
2001 ca_fp = sshkey_fingerprint(key->cert->signature_key,
djm@openbsd.org56d1c832014-12-21 22:27:55 +00002002 fingerprint_hash, SSH_FP_DEFAULT);
djm@openbsd.org9ce86c92015-01-28 22:36:00 +00002003 if (key_fp == NULL || ca_fp == NULL)
2004 fatal("%s: sshkey_fingerprint fail", __func__);
djm@openbsd.org499cf362015-11-19 01:08:55 +00002005 sshkey_format_cert_validity(key->cert, valid, sizeof(valid));
Damien Millerf2b70ca2010-03-05 07:39:35 +11002006
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002007 printf(" Type: %s %s certificate\n", sshkey_ssh_name(key),
2008 sshkey_cert_type(key));
2009 printf(" Public key: %s %s\n", sshkey_type(key), key_fp);
djm@openbsd.orga4fc2532018-10-19 03:12:42 +00002010 printf(" Signing CA: %s %s (using %s)\n",
2011 sshkey_type(key->cert->signature_key), ca_fp,
2012 key->cert->signature_type);
Damien Miller4e270b02010-04-16 15:56:21 +10002013 printf(" Key ID: \"%s\"\n", key->cert->key_id);
djm@openbsd.orgc28fc622015-07-03 03:43:18 +00002014 printf(" Serial: %llu\n", (unsigned long long)key->cert->serial);
djm@openbsd.org499cf362015-11-19 01:08:55 +00002015 printf(" Valid: %s\n", valid);
Damien Millerf2b70ca2010-03-05 07:39:35 +11002016 printf(" Principals: ");
2017 if (key->cert->nprincipals == 0)
2018 printf("(none)\n");
2019 else {
2020 for (i = 0; i < key->cert->nprincipals; i++)
2021 printf("\n %s",
2022 key->cert->principals[i]);
2023 printf("\n");
2024 }
Damien Miller4e270b02010-04-16 15:56:21 +10002025 printf(" Critical Options: ");
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002026 if (sshbuf_len(key->cert->critical) == 0)
Damien Millerf2b70ca2010-03-05 07:39:35 +11002027 printf("(none)\n");
2028 else {
2029 printf("\n");
djm@openbsd.orgc28fc622015-07-03 03:43:18 +00002030 show_options(key->cert->critical, 1);
Damien Millerf2b70ca2010-03-05 07:39:35 +11002031 }
djm@openbsd.orgc28fc622015-07-03 03:43:18 +00002032 printf(" Extensions: ");
2033 if (sshbuf_len(key->cert->extensions) == 0)
2034 printf("(none)\n");
2035 else {
2036 printf("\n");
2037 show_options(key->cert->extensions, 0);
Damien Miller4e270b02010-04-16 15:56:21 +10002038 }
djm@openbsd.org94bc0b72015-11-13 04:34:15 +00002039}
2040
2041static void
2042do_show_cert(struct passwd *pw)
2043{
2044 struct sshkey *key = NULL;
2045 struct stat st;
2046 int r, is_stdin = 0, ok = 0;
2047 FILE *f;
markus@openbsd.org7f906352018-06-06 18:29:18 +00002048 char *cp, *line = NULL;
djm@openbsd.org94bc0b72015-11-13 04:34:15 +00002049 const char *path;
markus@openbsd.org7f906352018-06-06 18:29:18 +00002050 size_t linesize = 0;
djm@openbsd.org1a31d022016-05-02 08:49:03 +00002051 u_long lnum = 0;
djm@openbsd.org94bc0b72015-11-13 04:34:15 +00002052
2053 if (!have_identity)
2054 ask_filename(pw, "Enter file in which the key is");
2055 if (strcmp(identity_file, "-") != 0 && stat(identity_file, &st) < 0)
2056 fatal("%s: %s: %s", __progname, identity_file, strerror(errno));
2057
2058 path = identity_file;
2059 if (strcmp(path, "-") == 0) {
2060 f = stdin;
2061 path = "(stdin)";
2062 is_stdin = 1;
2063 } else if ((f = fopen(identity_file, "r")) == NULL)
2064 fatal("fopen %s: %s", identity_file, strerror(errno));
2065
markus@openbsd.org7f906352018-06-06 18:29:18 +00002066 while (getline(&line, &linesize, f) != -1) {
2067 lnum++;
djm@openbsd.org94bc0b72015-11-13 04:34:15 +00002068 sshkey_free(key);
2069 key = NULL;
2070 /* Trim leading space and comments */
2071 cp = line + strspn(line, " \t");
2072 if (*cp == '#' || *cp == '\0')
2073 continue;
2074 if ((key = sshkey_new(KEY_UNSPEC)) == NULL)
markus@openbsd.org7da5df12017-05-30 14:16:41 +00002075 fatal("sshkey_new");
djm@openbsd.org94bc0b72015-11-13 04:34:15 +00002076 if ((r = sshkey_read(key, &cp)) != 0) {
2077 error("%s:%lu: invalid key: %s", path,
2078 lnum, ssh_err(r));
2079 continue;
2080 }
2081 if (!sshkey_is_cert(key)) {
2082 error("%s:%lu is not a certificate", path, lnum);
2083 continue;
2084 }
2085 ok = 1;
2086 if (!is_stdin && lnum == 1)
2087 printf("%s:\n", path);
2088 else
2089 printf("%s:%lu:\n", path, lnum);
2090 print_cert(key);
2091 }
markus@openbsd.org7f906352018-06-06 18:29:18 +00002092 free(line);
djm@openbsd.org94bc0b72015-11-13 04:34:15 +00002093 sshkey_free(key);
2094 fclose(f);
2095 exit(ok ? 0 : 1);
Damien Millerf2b70ca2010-03-05 07:39:35 +11002096}
2097
2098static void
Damien Millerf3747bf2013-01-18 11:44:04 +11002099load_krl(const char *path, struct ssh_krl **krlp)
2100{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002101 struct sshbuf *krlbuf;
2102 int r, fd;
Damien Millerf3747bf2013-01-18 11:44:04 +11002103
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002104 if ((krlbuf = sshbuf_new()) == NULL)
2105 fatal("sshbuf_new failed");
Damien Millerf3747bf2013-01-18 11:44:04 +11002106 if ((fd = open(path, O_RDONLY)) == -1)
2107 fatal("open %s: %s", path, strerror(errno));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002108 if ((r = sshkey_load_file(fd, krlbuf)) != 0)
2109 fatal("Unable to load KRL: %s", ssh_err(r));
Damien Millerf3747bf2013-01-18 11:44:04 +11002110 close(fd);
2111 /* XXX check sigs */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002112 if ((r = ssh_krl_from_blob(krlbuf, krlp, NULL, 0)) != 0 ||
Damien Millerf3747bf2013-01-18 11:44:04 +11002113 *krlp == NULL)
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002114 fatal("Invalid KRL file: %s", ssh_err(r));
2115 sshbuf_free(krlbuf);
Damien Millerf3747bf2013-01-18 11:44:04 +11002116}
2117
2118static void
djm@openbsd.org9405c622018-09-12 01:21:34 +00002119hash_to_blob(const char *cp, u_char **blobp, size_t *lenp,
2120 const char *file, u_long lnum)
2121{
2122 char *tmp;
2123 size_t tlen;
2124 struct sshbuf *b;
2125 int r;
2126
2127 if (strncmp(cp, "SHA256:", 7) != 0)
2128 fatal("%s:%lu: unsupported hash algorithm", file, lnum);
2129 cp += 7;
2130
2131 /*
2132 * OpenSSH base64 hashes omit trailing '='
2133 * characters; put them back for decode.
2134 */
2135 tlen = strlen(cp);
2136 tmp = xmalloc(tlen + 4 + 1);
2137 strlcpy(tmp, cp, tlen + 1);
2138 while ((tlen % 4) != 0) {
2139 tmp[tlen++] = '=';
2140 tmp[tlen] = '\0';
2141 }
2142 if ((b = sshbuf_new()) == NULL)
2143 fatal("%s: sshbuf_new failed", __func__);
2144 if ((r = sshbuf_b64tod(b, tmp)) != 0)
2145 fatal("%s:%lu: decode hash failed: %s", file, lnum, ssh_err(r));
2146 free(tmp);
2147 *lenp = sshbuf_len(b);
2148 *blobp = xmalloc(*lenp);
2149 memcpy(*blobp, sshbuf_ptr(b), *lenp);
2150 sshbuf_free(b);
2151}
2152
2153static void
djm@openbsd.org669aee92015-01-30 01:10:33 +00002154update_krl_from_file(struct passwd *pw, const char *file, int wild_ca,
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002155 const struct sshkey *ca, struct ssh_krl *krl)
Damien Millerf3747bf2013-01-18 11:44:04 +11002156{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002157 struct sshkey *key = NULL;
Damien Millerf3747bf2013-01-18 11:44:04 +11002158 u_long lnum = 0;
markus@openbsd.org7f906352018-06-06 18:29:18 +00002159 char *path, *cp, *ep, *line = NULL;
djm@openbsd.org9405c622018-09-12 01:21:34 +00002160 u_char *blob = NULL;
2161 size_t blen = 0, linesize = 0;
Damien Millerf3747bf2013-01-18 11:44:04 +11002162 unsigned long long serial, serial2;
djm@openbsd.org9405c622018-09-12 01:21:34 +00002163 int i, was_explicit_key, was_sha1, was_sha256, was_hash, r;
Damien Millerf3747bf2013-01-18 11:44:04 +11002164 FILE *krl_spec;
2165
2166 path = tilde_expand_filename(file, pw->pw_uid);
2167 if (strcmp(path, "-") == 0) {
2168 krl_spec = stdin;
2169 free(path);
2170 path = xstrdup("(standard input)");
2171 } else if ((krl_spec = fopen(path, "r")) == NULL)
2172 fatal("fopen %s: %s", path, strerror(errno));
2173
2174 if (!quiet)
2175 printf("Revoking from %s\n", path);
markus@openbsd.org7f906352018-06-06 18:29:18 +00002176 while (getline(&line, &linesize, krl_spec) != -1) {
2177 lnum++;
djm@openbsd.org9405c622018-09-12 01:21:34 +00002178 was_explicit_key = was_sha1 = was_sha256 = was_hash = 0;
Damien Millerf3747bf2013-01-18 11:44:04 +11002179 cp = line + strspn(line, " \t");
2180 /* Trim trailing space, comments and strip \n */
2181 for (i = 0, r = -1; cp[i] != '\0'; i++) {
2182 if (cp[i] == '#' || cp[i] == '\n') {
2183 cp[i] = '\0';
2184 break;
2185 }
2186 if (cp[i] == ' ' || cp[i] == '\t') {
2187 /* Remember the start of a span of whitespace */
2188 if (r == -1)
2189 r = i;
2190 } else
2191 r = -1;
2192 }
2193 if (r != -1)
2194 cp[r] = '\0';
2195 if (*cp == '\0')
2196 continue;
2197 if (strncasecmp(cp, "serial:", 7) == 0) {
djm@openbsd.org669aee92015-01-30 01:10:33 +00002198 if (ca == NULL && !wild_ca) {
Damien Millerd234afb2013-08-21 02:42:58 +10002199 fatal("revoking certificates by serial number "
Damien Millerf3747bf2013-01-18 11:44:04 +11002200 "requires specification of a CA key");
2201 }
2202 cp += 7;
2203 cp = cp + strspn(cp, " \t");
2204 errno = 0;
2205 serial = strtoull(cp, &ep, 0);
2206 if (*cp == '\0' || (*ep != '\0' && *ep != '-'))
2207 fatal("%s:%lu: invalid serial \"%s\"",
2208 path, lnum, cp);
2209 if (errno == ERANGE && serial == ULLONG_MAX)
2210 fatal("%s:%lu: serial out of range",
2211 path, lnum);
2212 serial2 = serial;
2213 if (*ep == '-') {
2214 cp = ep + 1;
2215 errno = 0;
2216 serial2 = strtoull(cp, &ep, 0);
2217 if (*cp == '\0' || *ep != '\0')
2218 fatal("%s:%lu: invalid serial \"%s\"",
2219 path, lnum, cp);
2220 if (errno == ERANGE && serial2 == ULLONG_MAX)
2221 fatal("%s:%lu: serial out of range",
2222 path, lnum);
2223 if (serial2 <= serial)
2224 fatal("%s:%lu: invalid serial range "
2225 "%llu:%llu", path, lnum,
2226 (unsigned long long)serial,
2227 (unsigned long long)serial2);
2228 }
2229 if (ssh_krl_revoke_cert_by_serial_range(krl,
2230 ca, serial, serial2) != 0) {
2231 fatal("%s: revoke serial failed",
2232 __func__);
2233 }
2234 } else if (strncasecmp(cp, "id:", 3) == 0) {
djm@openbsd.org669aee92015-01-30 01:10:33 +00002235 if (ca == NULL && !wild_ca) {
Damien Millerd5d9d7b2013-08-21 02:43:27 +10002236 fatal("revoking certificates by key ID "
Damien Millerf3747bf2013-01-18 11:44:04 +11002237 "requires specification of a CA key");
2238 }
2239 cp += 3;
2240 cp = cp + strspn(cp, " \t");
2241 if (ssh_krl_revoke_cert_by_key_id(krl, ca, cp) != 0)
2242 fatal("%s: revoke key ID failed", __func__);
djm@openbsd.org9405c622018-09-12 01:21:34 +00002243 } else if (strncasecmp(cp, "hash:", 5) == 0) {
2244 cp += 5;
2245 cp = cp + strspn(cp, " \t");
2246 hash_to_blob(cp, &blob, &blen, file, lnum);
2247 r = ssh_krl_revoke_key_sha256(krl, blob, blen);
Damien Millerf3747bf2013-01-18 11:44:04 +11002248 } else {
2249 if (strncasecmp(cp, "key:", 4) == 0) {
2250 cp += 4;
2251 cp = cp + strspn(cp, " \t");
2252 was_explicit_key = 1;
2253 } else if (strncasecmp(cp, "sha1:", 5) == 0) {
2254 cp += 5;
2255 cp = cp + strspn(cp, " \t");
2256 was_sha1 = 1;
djm@openbsd.org9405c622018-09-12 01:21:34 +00002257 } else if (strncasecmp(cp, "sha256:", 7) == 0) {
2258 cp += 7;
2259 cp = cp + strspn(cp, " \t");
2260 was_sha256 = 1;
Damien Millerf3747bf2013-01-18 11:44:04 +11002261 /*
2262 * Just try to process the line as a key.
2263 * Parsing will fail if it isn't.
2264 */
2265 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002266 if ((key = sshkey_new(KEY_UNSPEC)) == NULL)
markus@openbsd.org7da5df12017-05-30 14:16:41 +00002267 fatal("sshkey_new");
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002268 if ((r = sshkey_read(key, &cp)) != 0)
2269 fatal("%s:%lu: invalid key: %s",
2270 path, lnum, ssh_err(r));
Damien Millerf3747bf2013-01-18 11:44:04 +11002271 if (was_explicit_key)
2272 r = ssh_krl_revoke_key_explicit(krl, key);
djm@openbsd.org9405c622018-09-12 01:21:34 +00002273 else if (was_sha1) {
2274 if (sshkey_fingerprint_raw(key,
2275 SSH_DIGEST_SHA1, &blob, &blen) != 0) {
2276 fatal("%s:%lu: fingerprint failed",
2277 file, lnum);
2278 }
2279 r = ssh_krl_revoke_key_sha1(krl, blob, blen);
2280 } else if (was_sha256) {
2281 if (sshkey_fingerprint_raw(key,
2282 SSH_DIGEST_SHA256, &blob, &blen) != 0) {
2283 fatal("%s:%lu: fingerprint failed",
2284 file, lnum);
2285 }
2286 r = ssh_krl_revoke_key_sha256(krl, blob, blen);
2287 } else
Damien Millerf3747bf2013-01-18 11:44:04 +11002288 r = ssh_krl_revoke_key(krl, key);
2289 if (r != 0)
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002290 fatal("%s: revoke key failed: %s",
2291 __func__, ssh_err(r));
djm@openbsd.org9405c622018-09-12 01:21:34 +00002292 freezero(blob, blen);
2293 blob = NULL;
2294 blen = 0;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002295 sshkey_free(key);
Damien Millerf3747bf2013-01-18 11:44:04 +11002296 }
2297 }
2298 if (strcmp(path, "-") != 0)
2299 fclose(krl_spec);
markus@openbsd.org7f906352018-06-06 18:29:18 +00002300 free(line);
Damien Miller0d6771b2013-04-23 15:23:24 +10002301 free(path);
Damien Millerf3747bf2013-01-18 11:44:04 +11002302}
2303
2304static void
2305do_gen_krl(struct passwd *pw, int updating, int argc, char **argv)
2306{
2307 struct ssh_krl *krl;
2308 struct stat sb;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002309 struct sshkey *ca = NULL;
djm@openbsd.org669aee92015-01-30 01:10:33 +00002310 int fd, i, r, wild_ca = 0;
Damien Millerf3747bf2013-01-18 11:44:04 +11002311 char *tmp;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002312 struct sshbuf *kbuf;
Damien Millerf3747bf2013-01-18 11:44:04 +11002313
2314 if (*identity_file == '\0')
2315 fatal("KRL generation requires an output file");
2316 if (stat(identity_file, &sb) == -1) {
2317 if (errno != ENOENT)
2318 fatal("Cannot access KRL \"%s\": %s",
2319 identity_file, strerror(errno));
2320 if (updating)
2321 fatal("KRL \"%s\" does not exist", identity_file);
2322 }
2323 if (ca_key_path != NULL) {
djm@openbsd.org669aee92015-01-30 01:10:33 +00002324 if (strcasecmp(ca_key_path, "none") == 0)
2325 wild_ca = 1;
2326 else {
2327 tmp = tilde_expand_filename(ca_key_path, pw->pw_uid);
2328 if ((r = sshkey_load_public(tmp, &ca, NULL)) != 0)
2329 fatal("Cannot load CA public key %s: %s",
2330 tmp, ssh_err(r));
2331 free(tmp);
2332 }
Damien Millerf3747bf2013-01-18 11:44:04 +11002333 }
2334
2335 if (updating)
2336 load_krl(identity_file, &krl);
2337 else if ((krl = ssh_krl_init()) == NULL)
2338 fatal("couldn't create KRL");
2339
2340 if (cert_serial != 0)
2341 ssh_krl_set_version(krl, cert_serial);
2342 if (identity_comment != NULL)
2343 ssh_krl_set_comment(krl, identity_comment);
2344
2345 for (i = 0; i < argc; i++)
djm@openbsd.org669aee92015-01-30 01:10:33 +00002346 update_krl_from_file(pw, argv[i], wild_ca, ca, krl);
Damien Millerf3747bf2013-01-18 11:44:04 +11002347
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002348 if ((kbuf = sshbuf_new()) == NULL)
2349 fatal("sshbuf_new failed");
2350 if (ssh_krl_to_blob(krl, kbuf, NULL, 0) != 0)
Damien Millerf3747bf2013-01-18 11:44:04 +11002351 fatal("Couldn't generate KRL");
2352 if ((fd = open(identity_file, O_WRONLY|O_CREAT|O_TRUNC, 0644)) == -1)
2353 fatal("open %s: %s", identity_file, strerror(errno));
markus@openbsd.org49f47e62018-07-09 21:59:10 +00002354 if (atomicio(vwrite, fd, sshbuf_mutable_ptr(kbuf), sshbuf_len(kbuf)) !=
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002355 sshbuf_len(kbuf))
Damien Millerf3747bf2013-01-18 11:44:04 +11002356 fatal("write %s: %s", identity_file, strerror(errno));
2357 close(fd);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002358 sshbuf_free(kbuf);
Damien Millerf3747bf2013-01-18 11:44:04 +11002359 ssh_krl_free(krl);
mmcc@openbsd.org89540b62015-12-11 02:31:47 +00002360 sshkey_free(ca);
Damien Millerf3747bf2013-01-18 11:44:04 +11002361}
2362
2363static void
2364do_check_krl(struct passwd *pw, int argc, char **argv)
2365{
2366 int i, r, ret = 0;
2367 char *comment;
2368 struct ssh_krl *krl;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002369 struct sshkey *k;
Damien Millerf3747bf2013-01-18 11:44:04 +11002370
2371 if (*identity_file == '\0')
2372 fatal("KRL checking requires an input file");
2373 load_krl(identity_file, &krl);
2374 for (i = 0; i < argc; i++) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002375 if ((r = sshkey_load_public(argv[i], &k, &comment)) != 0)
2376 fatal("Cannot load public key %s: %s",
2377 argv[i], ssh_err(r));
Damien Millerf3747bf2013-01-18 11:44:04 +11002378 r = ssh_krl_check_key(krl, k);
2379 printf("%s%s%s%s: %s\n", argv[i],
2380 *comment ? " (" : "", comment, *comment ? ")" : "",
2381 r == 0 ? "ok" : "REVOKED");
2382 if (r != 0)
2383 ret = 1;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002384 sshkey_free(k);
Damien Millerf3747bf2013-01-18 11:44:04 +11002385 free(comment);
2386 }
2387 ssh_krl_free(krl);
2388 exit(ret);
2389}
2390
2391static void
Damien Miller431f66b1999-11-21 18:31:57 +11002392usage(void)
2393{
Damien Millerf0858de2014-04-20 13:01:30 +10002394 fprintf(stderr,
djm@openbsd.org873d3e72017-04-30 23:18:44 +00002395 "usage: ssh-keygen [-q] [-b bits] [-t dsa | ecdsa | ed25519 | rsa]\n"
Damien Millerf0858de2014-04-20 13:01:30 +10002396 " [-N new_passphrase] [-C comment] [-f output_keyfile]\n"
2397 " ssh-keygen -p [-P old_passphrase] [-N new_passphrase] [-f keyfile]\n"
2398 " ssh-keygen -i [-m key_format] [-f input_keyfile]\n"
2399 " ssh-keygen -e [-m key_format] [-f input_keyfile]\n"
2400 " ssh-keygen -y [-f input_keyfile]\n"
2401 " ssh-keygen -c [-P passphrase] [-C comment] [-f keyfile]\n"
naddy@openbsd.org6288e3a2015-02-24 15:24:05 +00002402 " ssh-keygen -l [-v] [-E fingerprint_hash] [-f input_keyfile]\n"
djm@openbsd.org873d3e72017-04-30 23:18:44 +00002403 " ssh-keygen -B [-f input_keyfile]\n");
Damien Miller7ea845e2010-02-12 09:21:02 +11002404#ifdef ENABLE_PKCS11
Damien Millerf0858de2014-04-20 13:01:30 +10002405 fprintf(stderr,
2406 " ssh-keygen -D pkcs11\n");
Damien Miller7ea845e2010-02-12 09:21:02 +11002407#endif
Damien Millerf0858de2014-04-20 13:01:30 +10002408 fprintf(stderr,
2409 " ssh-keygen -F hostname [-f known_hosts_file] [-l]\n"
2410 " ssh-keygen -H [-f known_hosts_file]\n"
2411 " ssh-keygen -R hostname [-f known_hosts_file]\n"
2412 " ssh-keygen -r hostname [-f input_keyfile] [-g]\n"
djm@openbsd.org1d9a2e22015-05-28 07:37:31 +00002413#ifdef WITH_OPENSSL
Damien Millerf0858de2014-04-20 13:01:30 +10002414 " ssh-keygen -G output_file [-v] [-b bits] [-M memory] [-S start_point]\n"
2415 " ssh-keygen -T output_file -f input_file [-v] [-a rounds] [-J num_lines]\n"
2416 " [-j start_line] [-K checkpt] [-W generator]\n"
djm@openbsd.org1d9a2e22015-05-28 07:37:31 +00002417#endif
djm@openbsd.orga98339e2017-06-28 01:09:22 +00002418 " ssh-keygen -s ca_key -I certificate_identity [-h] [-U]\n"
2419 " [-D pkcs11_provider] [-n principals] [-O option]\n"
2420 " [-V validity_interval] [-z serial_number] file ...\n"
Damien Millerf0858de2014-04-20 13:01:30 +10002421 " ssh-keygen -L [-f input_keyfile]\n"
2422 " ssh-keygen -A\n"
2423 " ssh-keygen -k -f krl_file [-u] [-s ca_public] [-z version_number]\n"
2424 " file ...\n"
2425 " ssh-keygen -Q -f krl_file file ...\n");
Damien Miller95def091999-11-25 00:26:21 +11002426 exit(1);
Damien Miller431f66b1999-11-21 18:31:57 +11002427}
2428
Damien Miller95def091999-11-25 00:26:21 +11002429/*
2430 * Main program for key management.
2431 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002432int
Damien Millerdf8b7db2007-01-05 16:22:57 +11002433main(int argc, char **argv)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002434{
deraadt@openbsd.org2ae4f332015-01-16 06:40:12 +00002435 char dotsshdir[PATH_MAX], comment[1024], *passphrase1, *passphrase2;
djm@openbsd.org1d9a2e22015-05-28 07:37:31 +00002436 char *rr_hostname = NULL, *ep, *fp, *ra;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002437 struct sshkey *private, *public;
Damien Miller95def091999-11-25 00:26:21 +11002438 struct passwd *pw;
Damien Miller95def091999-11-25 00:26:21 +11002439 struct stat st;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002440 int r, opt, type, fd;
Damien Millerf3747bf2013-01-18 11:44:04 +11002441 int gen_all_hostkeys = 0, gen_krl = 0, update_krl = 0, check_krl = 0;
Damien Miller95def091999-11-25 00:26:21 +11002442 FILE *f;
Damien Miller02e754f2005-05-26 12:19:39 +10002443 const char *errstr;
djm@openbsd.org1d9a2e22015-05-28 07:37:31 +00002444#ifdef WITH_OPENSSL
2445 /* Moduli generation/screening */
2446 char out_file[PATH_MAX], *checkpoint = NULL;
2447 u_int32_t memory = 0, generator_wanted = 0;
2448 int do_gen_candidates = 0, do_screen_candidates = 0;
2449 unsigned long start_lineno = 0, lines_to_process = 0;
2450 BIGNUM *start = NULL;
2451#endif
Damien Miller0bc1bd82000-11-13 22:57:25 +11002452
Damien Miller95def091999-11-25 00:26:21 +11002453 extern int optind;
2454 extern char *optarg;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002455
dtucker@openbsd.orgffb1e7e2016-02-15 09:47:49 +00002456 ssh_malloc_init(); /* must be called before any mallocs */
Darren Tuckerce321d82005-10-03 18:11:24 +10002457 /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
2458 sanitise_stdfd();
2459
Darren Tucker9ac56e92007-01-14 10:19:59 +11002460 __progname = ssh_get_progname(argv[0]);
Damien Millerf9b625c2000-07-09 22:42:32 +10002461
Kevin Steves3a881912002-07-20 19:05:40 +00002462 seed_rng();
Damien Millereba71ba2000-04-29 23:57:08 +10002463
Damien Miller42c5ec42018-11-23 10:40:06 +11002464 log_init(argv[0], SYSLOG_LEVEL_INFO, SYSLOG_FACILITY_USER, 1);
2465
djm@openbsd.orga287c5a2017-02-10 03:36:40 +00002466 msetlocale();
2467
Damien Miller5428f641999-11-25 11:54:57 +11002468 /* we need this for the home * directory. */
Damien Miller95def091999-11-25 00:26:21 +11002469 pw = getpwuid(getuid());
djm@openbsd.org3038a192015-04-17 13:19:22 +00002470 if (!pw)
2471 fatal("No user exists for uid %lu", (u_long)getuid());
2472 if (gethostname(hostname, sizeof(hostname)) < 0)
2473 fatal("gethostname: %s", strerror(errno));
Damien Miller5428f641999-11-25 11:54:57 +11002474
djm@openbsd.orga98339e2017-06-28 01:09:22 +00002475 /* Remaining characters: Ydw */
2476 while ((opt = getopt(argc, argv, "ABHLQUXceghiklopquvxy"
djm@openbsd.org56d1c832014-12-21 22:27:55 +00002477 "C:D:E:F:G:I:J:K:M:N:O:P:R:S:T:V:W:Z:"
2478 "a:b:f:g:j:m:n:r:s:t:z:")) != -1) {
Damien Miller95def091999-11-25 00:26:21 +11002479 switch (opt) {
Damien Miller58f1baf2011-05-05 14:06:15 +10002480 case 'A':
2481 gen_all_hostkeys = 1;
2482 break;
Damien Miller95def091999-11-25 00:26:21 +11002483 case 'b':
markus@openbsd.org1b11ea72018-02-23 15:58:37 +00002484 bits = (u_int32_t)strtonum(optarg, 10, 32768, &errstr);
Damien Miller02e754f2005-05-26 12:19:39 +10002485 if (errstr)
2486 fatal("Bits has bad value %s (%s)",
2487 optarg, errstr);
Damien Miller95def091999-11-25 00:26:21 +11002488 break;
djm@openbsd.org56d1c832014-12-21 22:27:55 +00002489 case 'E':
2490 fingerprint_hash = ssh_digest_alg_by_name(optarg);
2491 if (fingerprint_hash == -1)
2492 fatal("Invalid hash algorithm \"%s\"", optarg);
2493 break;
Damien Miller4b42d7f2005-03-01 21:48:35 +11002494 case 'F':
2495 find_host = 1;
2496 rr_hostname = optarg;
2497 break;
2498 case 'H':
2499 hash_hosts = 1;
2500 break;
Damien Miller0a80ca12010-02-27 07:55:05 +11002501 case 'I':
2502 cert_key_id = optarg;
2503 break;
Damien Miller4b42d7f2005-03-01 21:48:35 +11002504 case 'R':
2505 delete_host = 1;
2506 rr_hostname = optarg;
2507 break;
Damien Millerf2b70ca2010-03-05 07:39:35 +11002508 case 'L':
2509 show_cert = 1;
2510 break;
Damien Miller95def091999-11-25 00:26:21 +11002511 case 'l':
2512 print_fingerprint = 1;
2513 break;
Ben Lindstrom8fd372b2001-03-12 03:02:17 +00002514 case 'B':
2515 print_bubblebabble = 1;
2516 break;
Damien Miller44b25042010-07-02 13:35:01 +10002517 case 'm':
2518 if (strcasecmp(optarg, "RFC4716") == 0 ||
2519 strcasecmp(optarg, "ssh2") == 0) {
2520 convert_format = FMT_RFC4716;
2521 break;
2522 }
2523 if (strcasecmp(optarg, "PKCS8") == 0) {
2524 convert_format = FMT_PKCS8;
2525 break;
2526 }
2527 if (strcasecmp(optarg, "PEM") == 0) {
2528 convert_format = FMT_PEM;
djm@openbsd.orged7bd5d2018-08-08 01:16:01 +00002529 use_new_format = 0;
Damien Miller44b25042010-07-02 13:35:01 +10002530 break;
2531 }
2532 fatal("Unsupported conversion format \"%s\"", optarg);
Damien Miller0a80ca12010-02-27 07:55:05 +11002533 case 'n':
2534 cert_principals = optarg;
2535 break;
Damien Millerbcd00ab2013-12-07 10:41:55 +11002536 case 'o':
djm@openbsd.orged7bd5d2018-08-08 01:16:01 +00002537 /* no-op; new format is already the default */
Damien Millerbcd00ab2013-12-07 10:41:55 +11002538 break;
Damien Miller95def091999-11-25 00:26:21 +11002539 case 'p':
2540 change_passphrase = 1;
2541 break;
Damien Miller95def091999-11-25 00:26:21 +11002542 case 'c':
2543 change_comment = 1;
2544 break;
Damien Miller95def091999-11-25 00:26:21 +11002545 case 'f':
djm@openbsd.org1d9a2e22015-05-28 07:37:31 +00002546 if (strlcpy(identity_file, optarg,
2547 sizeof(identity_file)) >= sizeof(identity_file))
Damien Millerb089fb52005-05-26 12:16:18 +10002548 fatal("Identity filename too long");
Damien Miller95def091999-11-25 00:26:21 +11002549 have_identity = 1;
2550 break;
Damien Miller37876e92003-05-15 10:19:46 +10002551 case 'g':
2552 print_generic = 1;
2553 break;
Damien Miller95def091999-11-25 00:26:21 +11002554 case 'P':
2555 identity_passphrase = optarg;
2556 break;
Damien Miller95def091999-11-25 00:26:21 +11002557 case 'N':
2558 identity_new_passphrase = optarg;
2559 break;
Damien Millerf3747bf2013-01-18 11:44:04 +11002560 case 'Q':
2561 check_krl = 1;
2562 break;
Damien Miller0a80ca12010-02-27 07:55:05 +11002563 case 'O':
Damien Miller4e270b02010-04-16 15:56:21 +10002564 add_cert_option(optarg);
Damien Miller0a80ca12010-02-27 07:55:05 +11002565 break;
Damien Millerbcd00ab2013-12-07 10:41:55 +11002566 case 'Z':
2567 new_format_cipher = optarg;
2568 break;
Damien Miller95def091999-11-25 00:26:21 +11002569 case 'C':
2570 identity_comment = optarg;
2571 break;
Damien Miller95def091999-11-25 00:26:21 +11002572 case 'q':
2573 quiet = 1;
2574 break;
Ben Lindstrom5a707822001-04-22 17:15:46 +00002575 case 'e':
Damien Millereba71ba2000-04-29 23:57:08 +10002576 case 'x':
Ben Lindstrom5a707822001-04-22 17:15:46 +00002577 /* export key */
Damien Miller44b25042010-07-02 13:35:01 +10002578 convert_to = 1;
Damien Millereba71ba2000-04-29 23:57:08 +10002579 break;
Damien Miller0a80ca12010-02-27 07:55:05 +11002580 case 'h':
2581 cert_key_type = SSH2_CERT_TYPE_HOST;
Damien Millerd0e4a8e2010-05-21 14:58:32 +10002582 certflags_flags = 0;
Damien Miller0a80ca12010-02-27 07:55:05 +11002583 break;
Damien Millerf3747bf2013-01-18 11:44:04 +11002584 case 'k':
2585 gen_krl = 1;
2586 break;
Ben Lindstrom5a707822001-04-22 17:15:46 +00002587 case 'i':
Damien Millereba71ba2000-04-29 23:57:08 +10002588 case 'X':
Ben Lindstrom5a707822001-04-22 17:15:46 +00002589 /* import key */
Damien Miller44b25042010-07-02 13:35:01 +10002590 convert_from = 1;
Damien Millereba71ba2000-04-29 23:57:08 +10002591 break;
Damien Millereba71ba2000-04-29 23:57:08 +10002592 case 'y':
2593 print_public = 1;
2594 break;
Damien Miller0a80ca12010-02-27 07:55:05 +11002595 case 's':
2596 ca_key_path = optarg;
2597 break;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002598 case 't':
2599 key_type_name = optarg;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002600 break;
Ben Lindstrom8282d6a2001-08-06 21:44:05 +00002601 case 'D':
Damien Miller7ea845e2010-02-12 09:21:02 +11002602 pkcs11provider = optarg;
Ben Lindstromcd392282001-07-04 03:44:03 +00002603 break;
djm@openbsd.orga98339e2017-06-28 01:09:22 +00002604 case 'U':
2605 prefer_agent = 1;
2606 break;
Damien Millerf3747bf2013-01-18 11:44:04 +11002607 case 'u':
2608 update_krl = 1;
2609 break;
Darren Tucker06930c72003-12-31 11:34:51 +11002610 case 'v':
2611 if (log_level == SYSLOG_LEVEL_INFO)
2612 log_level = SYSLOG_LEVEL_DEBUG1;
2613 else {
Darren Tuckerfc959702004-07-17 16:12:08 +10002614 if (log_level >= SYSLOG_LEVEL_DEBUG1 &&
Darren Tucker06930c72003-12-31 11:34:51 +11002615 log_level < SYSLOG_LEVEL_DEBUG3)
2616 log_level++;
2617 }
2618 break;
Damien Miller37876e92003-05-15 10:19:46 +10002619 case 'r':
Damien Miller4b42d7f2005-03-01 21:48:35 +11002620 rr_hostname = optarg;
Damien Miller37876e92003-05-15 10:19:46 +10002621 break;
djm@openbsd.org1d9a2e22015-05-28 07:37:31 +00002622 case 'a':
2623 rounds = (int)strtonum(optarg, 1, INT_MAX, &errstr);
2624 if (errstr)
2625 fatal("Invalid number: %s (%s)",
2626 optarg, errstr);
2627 break;
2628 case 'V':
2629 parse_cert_times(optarg);
2630 break;
2631 case 'z':
2632 errno = 0;
2633 cert_serial = strtoull(optarg, &ep, 10);
2634 if (*optarg < '0' || *optarg > '9' || *ep != '\0' ||
2635 (errno == ERANGE && cert_serial == ULLONG_MAX))
2636 fatal("Invalid serial number \"%s\"", optarg);
2637 break;
2638#ifdef WITH_OPENSSL
2639 /* Moduli generation/screening */
Darren Tucker019cefe2003-08-02 22:40:07 +10002640 case 'G':
2641 do_gen_candidates = 1;
Damien Millerb089fb52005-05-26 12:16:18 +10002642 if (strlcpy(out_file, optarg, sizeof(out_file)) >=
2643 sizeof(out_file))
2644 fatal("Output filename too long");
Darren Tucker019cefe2003-08-02 22:40:07 +10002645 break;
Darren Tucker0bb29802016-09-12 11:07:00 +10002646 case 'J':
2647 lines_to_process = strtoul(optarg, NULL, 10);
dtucker@openbsd.org7b63cf62016-09-12 03:29:16 +00002648 break;
Darren Tucker0bb29802016-09-12 11:07:00 +10002649 case 'j':
2650 start_lineno = strtoul(optarg, NULL, 10);
dtucker@openbsd.org7b63cf62016-09-12 03:29:16 +00002651 break;
Damien Miller390d0562011-10-18 16:05:19 +11002652 case 'K':
deraadt@openbsd.org2ae4f332015-01-16 06:40:12 +00002653 if (strlen(optarg) >= PATH_MAX)
Damien Miller390d0562011-10-18 16:05:19 +11002654 fatal("Checkpoint filename too long");
2655 checkpoint = xstrdup(optarg);
2656 break;
Darren Tuckerd8c3cfb2016-09-12 13:30:50 +10002657 case 'M':
2658 memory = (u_int32_t)strtonum(optarg, 1, UINT_MAX,
2659 &errstr);
2660 if (errstr)
2661 fatal("Memory limit is %s: %s", errstr, optarg);
2662 break;
Darren Tucker019cefe2003-08-02 22:40:07 +10002663 case 'S':
2664 /* XXX - also compare length against bits */
2665 if (BN_hex2bn(&start, optarg) == 0)
2666 fatal("Invalid start point.");
2667 break;
Darren Tuckeraf48d542016-09-12 13:52:17 +10002668 case 'T':
2669 do_screen_candidates = 1;
2670 if (strlcpy(out_file, optarg, sizeof(out_file)) >=
2671 sizeof(out_file))
2672 fatal("Output filename too long");
2673 break;
Darren Tucker43cceff2016-09-12 13:55:37 +10002674 case 'W':
2675 generator_wanted = (u_int32_t)strtonum(optarg, 1,
2676 UINT_MAX, &errstr);
Darren Tucker70508962016-09-12 13:57:28 +10002677 if (errstr != NULL)
2678 fatal("Desired generator invalid: %s (%s)",
2679 optarg, errstr);
Darren Tucker43cceff2016-09-12 13:55:37 +10002680 break;
Damien Miller72ef7c12015-01-15 02:21:31 +11002681#endif /* WITH_OPENSSL */
Damien Miller95def091999-11-25 00:26:21 +11002682 case '?':
2683 default:
2684 usage();
2685 }
2686 }
Darren Tucker06930c72003-12-31 11:34:51 +11002687
2688 /* reinit */
Damien Millerdf8b7db2007-01-05 16:22:57 +11002689 log_init(argv[0], log_level, SYSLOG_FACILITY_USER, 1);
Darren Tucker06930c72003-12-31 11:34:51 +11002690
Damien Miller0a80ca12010-02-27 07:55:05 +11002691 argv += optind;
2692 argc -= optind;
2693
2694 if (ca_key_path != NULL) {
Damien Millerf3747bf2013-01-18 11:44:04 +11002695 if (argc < 1 && !gen_krl) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00002696 error("Too few arguments.");
Damien Miller0a80ca12010-02-27 07:55:05 +11002697 usage();
2698 }
Damien Millerf3747bf2013-01-18 11:44:04 +11002699 } else if (argc > 0 && !gen_krl && !check_krl) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00002700 error("Too many arguments.");
Damien Miller95def091999-11-25 00:26:21 +11002701 usage();
2702 }
2703 if (change_passphrase && change_comment) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00002704 error("Can only have one of -p and -c.");
Damien Miller95def091999-11-25 00:26:21 +11002705 usage();
2706 }
Darren Tucker0f7e9102008-06-08 12:54:29 +10002707 if (print_fingerprint && (delete_host || hash_hosts)) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00002708 error("Cannot use -l with -H or -R.");
Darren Tucker0f7e9102008-06-08 12:54:29 +10002709 usage();
2710 }
Damien Millerf3747bf2013-01-18 11:44:04 +11002711 if (gen_krl) {
2712 do_gen_krl(pw, update_krl, argc, argv);
2713 return (0);
2714 }
2715 if (check_krl) {
2716 do_check_krl(pw, argc, argv);
2717 return (0);
2718 }
Damien Miller0a80ca12010-02-27 07:55:05 +11002719 if (ca_key_path != NULL) {
2720 if (cert_key_id == NULL)
2721 fatal("Must specify key id (-I) when certifying");
2722 do_ca_sign(pw, argc, argv);
2723 }
Damien Millerf2b70ca2010-03-05 07:39:35 +11002724 if (show_cert)
2725 do_show_cert(pw);
Damien Miller4b42d7f2005-03-01 21:48:35 +11002726 if (delete_host || hash_hosts || find_host)
2727 do_known_hosts(pw, rr_hostname);
Damien Millerec77c952013-01-09 15:58:00 +11002728 if (pkcs11provider != NULL)
2729 do_download(pw);
Ben Lindstrom8fd372b2001-03-12 03:02:17 +00002730 if (print_fingerprint || print_bubblebabble)
Damien Miller95def091999-11-25 00:26:21 +11002731 do_fingerprint(pw);
Damien Miller95def091999-11-25 00:26:21 +11002732 if (change_passphrase)
2733 do_change_passphrase(pw);
Damien Miller4a10d2e2002-03-11 22:53:29 +11002734 if (change_comment)
2735 do_change_comment(pw);
Damien Miller1f0311c2014-05-15 14:24:09 +10002736#ifdef WITH_OPENSSL
Damien Miller44b25042010-07-02 13:35:01 +10002737 if (convert_to)
2738 do_convert_to(pw);
2739 if (convert_from)
2740 do_convert_from(pw);
Damien Miller1f0311c2014-05-15 14:24:09 +10002741#endif
Damien Millereba71ba2000-04-29 23:57:08 +10002742 if (print_public)
2743 do_print_public(pw);
Damien Miller4b42d7f2005-03-01 21:48:35 +11002744 if (rr_hostname != NULL) {
Damien Millercb314822006-03-26 13:48:01 +11002745 unsigned int n = 0;
2746
2747 if (have_identity) {
2748 n = do_print_resource_record(pw,
2749 identity_file, rr_hostname);
djm@openbsd.org3038a192015-04-17 13:19:22 +00002750 if (n == 0)
2751 fatal("%s: %s", identity_file, strerror(errno));
Damien Millercb314822006-03-26 13:48:01 +11002752 exit(0);
2753 } else {
2754
2755 n += do_print_resource_record(pw,
2756 _PATH_HOST_RSA_KEY_FILE, rr_hostname);
2757 n += do_print_resource_record(pw,
2758 _PATH_HOST_DSA_KEY_FILE, rr_hostname);
Damien Miller3bde12a2012-06-20 21:51:11 +10002759 n += do_print_resource_record(pw,
2760 _PATH_HOST_ECDSA_KEY_FILE, rr_hostname);
Damien Miller16cd3922014-05-15 13:45:58 +10002761 n += do_print_resource_record(pw,
2762 _PATH_HOST_ED25519_KEY_FILE, rr_hostname);
markus@openbsd.org1b11ea72018-02-23 15:58:37 +00002763 n += do_print_resource_record(pw,
2764 _PATH_HOST_XMSS_KEY_FILE, rr_hostname);
Damien Millercb314822006-03-26 13:48:01 +11002765 if (n == 0)
2766 fatal("no keys found.");
2767 exit(0);
2768 }
Damien Miller37876e92003-05-15 10:19:46 +10002769 }
Damien Miller95def091999-11-25 00:26:21 +11002770
djm@openbsd.org1d9a2e22015-05-28 07:37:31 +00002771#ifdef WITH_OPENSSL
Darren Tucker019cefe2003-08-02 22:40:07 +10002772 if (do_gen_candidates) {
2773 FILE *out = fopen(out_file, "w");
Damien Miller787b2ec2003-11-21 23:56:47 +11002774
Darren Tucker019cefe2003-08-02 22:40:07 +10002775 if (out == NULL) {
2776 error("Couldn't open modulus candidate file \"%s\": %s",
2777 out_file, strerror(errno));
2778 return (1);
2779 }
Damien Miller3f54a9f2005-11-05 14:52:18 +11002780 if (bits == 0)
2781 bits = DEFAULT_BITS;
Darren Tucker019cefe2003-08-02 22:40:07 +10002782 if (gen_candidates(out, memory, bits, start) != 0)
Damien Miller15d72a02005-11-05 15:07:33 +11002783 fatal("modulus candidate generation failed");
Darren Tucker019cefe2003-08-02 22:40:07 +10002784
2785 return (0);
2786 }
2787
2788 if (do_screen_candidates) {
2789 FILE *in;
Damien Miller78d22712013-02-12 11:03:36 +11002790 FILE *out = fopen(out_file, "a");
Darren Tucker019cefe2003-08-02 22:40:07 +10002791
2792 if (have_identity && strcmp(identity_file, "-") != 0) {
2793 if ((in = fopen(identity_file, "r")) == NULL) {
2794 fatal("Couldn't open modulus candidate "
Damien Millera8e06ce2003-11-21 23:48:55 +11002795 "file \"%s\": %s", identity_file,
Darren Tucker019cefe2003-08-02 22:40:07 +10002796 strerror(errno));
2797 }
2798 } else
2799 in = stdin;
2800
2801 if (out == NULL) {
2802 fatal("Couldn't open moduli file \"%s\": %s",
2803 out_file, strerror(errno));
2804 }
Damien Millerbcd00ab2013-12-07 10:41:55 +11002805 if (prime_test(in, out, rounds == 0 ? 100 : rounds,
2806 generator_wanted, checkpoint,
Damien Millerdfceafe2012-07-06 13:44:19 +10002807 start_lineno, lines_to_process) != 0)
Damien Miller15d72a02005-11-05 15:07:33 +11002808 fatal("modulus screening failed");
Darren Tuckerf4220e62003-08-21 16:44:07 +10002809 return (0);
Darren Tucker019cefe2003-08-02 22:40:07 +10002810 }
djm@openbsd.org1d9a2e22015-05-28 07:37:31 +00002811#endif
Darren Tucker019cefe2003-08-02 22:40:07 +10002812
Damien Miller58f1baf2011-05-05 14:06:15 +10002813 if (gen_all_hostkeys) {
2814 do_gen_all_hostkeys(pw);
2815 return (0);
2816 }
2817
Damien Millerf14be5c2005-11-05 15:15:49 +11002818 if (key_type_name == NULL)
djm@openbsd.orgd1958792015-05-28 04:40:13 +00002819 key_type_name = DEFAULT_KEY_TYPE_NAME;
Damien Millerf14be5c2005-11-05 15:15:49 +11002820
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002821 type = sshkey_type_from_name(key_type_name);
djm@openbsd.org7efb4552015-01-18 13:22:28 +00002822 type_bits_valid(type, key_type_name, &bits);
Damien Miller58f1baf2011-05-05 14:06:15 +10002823
Darren Tucker3af2ac52005-11-29 13:10:24 +11002824 if (!quiet)
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002825 printf("Generating public/private %s key pair.\n",
2826 key_type_name);
djm@openbsd.org3038a192015-04-17 13:19:22 +00002827 if ((r = sshkey_generate(type, bits, &private)) != 0)
markus@openbsd.org7da5df12017-05-30 14:16:41 +00002828 fatal("sshkey_generate failed");
djm@openbsd.org3038a192015-04-17 13:19:22 +00002829 if ((r = sshkey_from_private(private, &public)) != 0)
markus@openbsd.org7da5df12017-05-30 14:16:41 +00002830 fatal("sshkey_from_private failed: %s\n", ssh_err(r));
Damien Miller95def091999-11-25 00:26:21 +11002831
2832 if (!have_identity)
2833 ask_filename(pw, "Enter file in which to save the key");
2834
Damien Miller788f2122005-11-05 15:14:59 +11002835 /* Create ~/.ssh directory if it doesn't already exist. */
Damien Miller50af79b2010-05-10 11:52:00 +10002836 snprintf(dotsshdir, sizeof dotsshdir, "%s/%s",
2837 pw->pw_dir, _PATH_SSH_USER_DIR);
2838 if (strstr(identity_file, dotsshdir) != NULL) {
2839 if (stat(dotsshdir, &st) < 0) {
2840 if (errno != ENOENT) {
2841 error("Could not stat %s: %s", dotsshdir,
2842 strerror(errno));
2843 } else if (mkdir(dotsshdir, 0700) < 0) {
2844 error("Could not create directory '%s': %s",
2845 dotsshdir, strerror(errno));
2846 } else if (!quiet)
2847 printf("Created directory '%s'.\n", dotsshdir);
2848 }
Damien Miller95def091999-11-25 00:26:21 +11002849 }
2850 /* If the file already exists, ask the user to confirm. */
2851 if (stat(identity_file, &st) >= 0) {
2852 char yesno[3];
2853 printf("%s already exists.\n", identity_file);
2854 printf("Overwrite (y/n)? ");
2855 fflush(stdout);
2856 if (fgets(yesno, sizeof(yesno), stdin) == NULL)
2857 exit(1);
2858 if (yesno[0] != 'y' && yesno[0] != 'Y')
2859 exit(1);
2860 }
2861 /* Ask for a passphrase (twice). */
2862 if (identity_passphrase)
2863 passphrase1 = xstrdup(identity_passphrase);
2864 else if (identity_new_passphrase)
2865 passphrase1 = xstrdup(identity_new_passphrase);
2866 else {
2867passphrase_again:
2868 passphrase1 =
Ben Lindstrom949974b2001-06-25 05:20:31 +00002869 read_passphrase("Enter passphrase (empty for no "
2870 "passphrase): ", RP_ALLOW_STDIN);
2871 passphrase2 = read_passphrase("Enter same passphrase again: ",
2872 RP_ALLOW_STDIN);
Damien Miller95def091999-11-25 00:26:21 +11002873 if (strcmp(passphrase1, passphrase2) != 0) {
Ben Lindstrom949974b2001-06-25 05:20:31 +00002874 /*
2875 * The passphrases do not match. Clear them and
2876 * retry.
2877 */
Damien Millera5103f42014-02-04 11:20:14 +11002878 explicit_bzero(passphrase1, strlen(passphrase1));
2879 explicit_bzero(passphrase2, strlen(passphrase2));
Darren Tuckera627d422013-06-02 07:31:17 +10002880 free(passphrase1);
2881 free(passphrase2);
Damien Miller95def091999-11-25 00:26:21 +11002882 printf("Passphrases do not match. Try again.\n");
2883 goto passphrase_again;
2884 }
2885 /* Clear the other copy of the passphrase. */
Damien Millera5103f42014-02-04 11:20:14 +11002886 explicit_bzero(passphrase2, strlen(passphrase2));
Darren Tuckera627d422013-06-02 07:31:17 +10002887 free(passphrase2);
Damien Miller95def091999-11-25 00:26:21 +11002888 }
2889
Damien Miller95def091999-11-25 00:26:21 +11002890 if (identity_comment) {
2891 strlcpy(comment, identity_comment, sizeof(comment));
2892 } else {
Darren Tuckere15fb092008-11-11 16:31:43 +11002893 /* Create default comment field for the passphrase. */
Damien Miller95def091999-11-25 00:26:21 +11002894 snprintf(comment, sizeof comment, "%s@%s", pw->pw_name, hostname);
2895 }
2896
2897 /* Save the key with the given passphrase and comment. */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002898 if ((r = sshkey_save_private(private, identity_file, passphrase1,
2899 comment, use_new_format, new_format_cipher, rounds)) != 0) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00002900 error("Saving key \"%s\" failed: %s",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002901 identity_file, ssh_err(r));
Damien Millera5103f42014-02-04 11:20:14 +11002902 explicit_bzero(passphrase1, strlen(passphrase1));
Darren Tuckera627d422013-06-02 07:31:17 +10002903 free(passphrase1);
Damien Miller95def091999-11-25 00:26:21 +11002904 exit(1);
2905 }
2906 /* Clear the passphrase. */
Damien Millera5103f42014-02-04 11:20:14 +11002907 explicit_bzero(passphrase1, strlen(passphrase1));
Darren Tuckera627d422013-06-02 07:31:17 +10002908 free(passphrase1);
Damien Miller95def091999-11-25 00:26:21 +11002909
2910 /* Clear the private key and the random number generator. */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002911 sshkey_free(private);
Damien Miller95def091999-11-25 00:26:21 +11002912
2913 if (!quiet)
2914 printf("Your identification has been saved in %s.\n", identity_file);
2915
Damien Miller95def091999-11-25 00:26:21 +11002916 strlcat(identity_file, ".pub", sizeof(identity_file));
djm@openbsd.org3038a192015-04-17 13:19:22 +00002917 if ((fd = open(identity_file, O_WRONLY|O_CREAT|O_TRUNC, 0644)) == -1)
2918 fatal("Unable to save public key to %s: %s",
2919 identity_file, strerror(errno));
2920 if ((f = fdopen(fd, "w")) == NULL)
2921 fatal("fdopen %s failed: %s", identity_file, strerror(errno));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002922 if ((r = sshkey_write(public, f)) != 0)
djm@openbsd.org3038a192015-04-17 13:19:22 +00002923 error("write key failed: %s", ssh_err(r));
Damien Millereba71ba2000-04-29 23:57:08 +10002924 fprintf(f, " %s\n", comment);
djm@openbsd.orgb56ac062018-02-10 05:43:26 +00002925 if (ferror(f) || fclose(f) != 0)
2926 fatal("write public failed: %s", strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +11002927
2928 if (!quiet) {
djm@openbsd.org9ce86c92015-01-28 22:36:00 +00002929 fp = sshkey_fingerprint(public, fingerprint_hash,
djm@openbsd.org56d1c832014-12-21 22:27:55 +00002930 SSH_FP_DEFAULT);
djm@openbsd.org9ce86c92015-01-28 22:36:00 +00002931 ra = sshkey_fingerprint(public, fingerprint_hash,
Darren Tucker9c16ac92008-06-13 04:40:35 +10002932 SSH_FP_RANDOMART);
djm@openbsd.org9ce86c92015-01-28 22:36:00 +00002933 if (fp == NULL || ra == NULL)
2934 fatal("sshkey_fingerprint failed");
Damien Millereba71ba2000-04-29 23:57:08 +10002935 printf("Your public key has been saved in %s.\n",
2936 identity_file);
Damien Miller95def091999-11-25 00:26:21 +11002937 printf("The key fingerprint is:\n");
Ben Lindstromcfccef92001-03-13 04:57:58 +00002938 printf("%s %s\n", fp, comment);
Darren Tucker9c16ac92008-06-13 04:40:35 +10002939 printf("The key's randomart image is:\n");
2940 printf("%s\n", ra);
Darren Tuckera627d422013-06-02 07:31:17 +10002941 free(ra);
2942 free(fp);
Damien Miller95def091999-11-25 00:26:21 +11002943 }
Damien Millereba71ba2000-04-29 23:57:08 +10002944
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002945 sshkey_free(public);
Damien Miller95def091999-11-25 00:26:21 +11002946 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002947}