blob: db371090d8a58f39519192a838b6baea9f0ce80c [file] [log] [blame]
lum@openbsd.org410b2312019-05-29 08:30:26 +00001/* $OpenBSD: ssh-keygen.c,v 1.330 2019/05/29 08:30:26 lum 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
dtucker@openbsd.orgf47269e2019-03-25 15:49:00 +000070/*
dtucker@openbsd.org26e0cef2019-03-25 16:19:44 +000071 * Default number of bits in the RSA, DSA and ECDSA keys. These value can be
72 * overridden on the command line.
73 *
74 * These values, with the exception of DSA, provide security equivalent to at
75 * least 128 bits of security according to NIST Special Publication 800-57:
76 * Recommendation for Key Management Part 1 rev 4 section 5.6.1.
77 * For DSA it (and FIPS-186-4 section 4.2) specifies that the only size for
78 * which a 160bit hash is acceptable is 1kbit, and since ssh-dss specifies only
79 * SHA1 we limit the DSA key size 1k bits.
dtucker@openbsd.orgf47269e2019-03-25 15:49:00 +000080 */
81#define DEFAULT_BITS 3072
Damien Miller3f54a9f2005-11-05 14:52:18 +110082#define DEFAULT_BITS_DSA 1024
Damien Miller6e9f6802010-09-10 11:17:38 +100083#define DEFAULT_BITS_ECDSA 256
Damien Millerd4a8b7e1999-10-27 13:42:43 +100084
djm@openbsd.org851f8032019-01-23 04:16:22 +000085static int quiet = 0;
Damien Millerf2b70ca2010-03-05 07:39:35 +110086
Damien Miller10f6f6b1999-11-17 17:29:08 +110087/* Flag indicating that we just want to see the key fingerprint */
djm@openbsd.org851f8032019-01-23 04:16:22 +000088static int print_fingerprint = 0;
89static int print_bubblebabble = 0;
Damien Miller10f6f6b1999-11-17 17:29:08 +110090
djm@openbsd.org56d1c832014-12-21 22:27:55 +000091/* Hash algorithm to use for fingerprints. */
djm@openbsd.org851f8032019-01-23 04:16:22 +000092static int fingerprint_hash = SSH_FP_HASH_DEFAULT;
djm@openbsd.org56d1c832014-12-21 22:27:55 +000093
Damien Miller431f66b1999-11-21 18:31:57 +110094/* The identity file name, given on the command line or entered by the user. */
djm@openbsd.org851f8032019-01-23 04:16:22 +000095static char identity_file[1024];
96static int have_identity = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100097
98/* This is set to the passphrase if given on the command line. */
djm@openbsd.org851f8032019-01-23 04:16:22 +000099static char *identity_passphrase = NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000100
101/* This is set to the new passphrase if given on the command line. */
djm@openbsd.org851f8032019-01-23 04:16:22 +0000102static char *identity_new_passphrase = NULL;
Damien Miller4e270b02010-04-16 15:56:21 +1000103
Damien Miller0a80ca12010-02-27 07:55:05 +1100104/* Key type when certifying */
djm@openbsd.org851f8032019-01-23 04:16:22 +0000105static u_int cert_key_type = SSH2_CERT_TYPE_USER;
Damien Miller0a80ca12010-02-27 07:55:05 +1100106
107/* "key ID" of signed key */
djm@openbsd.org851f8032019-01-23 04:16:22 +0000108static char *cert_key_id = NULL;
Damien Miller0a80ca12010-02-27 07:55:05 +1100109
110/* Comma-separated list of principal names for certifying keys */
djm@openbsd.org851f8032019-01-23 04:16:22 +0000111static char *cert_principals = NULL;
Damien Miller0a80ca12010-02-27 07:55:05 +1100112
113/* Validity period for certificates */
djm@openbsd.org851f8032019-01-23 04:16:22 +0000114static u_int64_t cert_valid_from = 0;
115static u_int64_t cert_valid_to = ~0ULL;
Damien Miller0a80ca12010-02-27 07:55:05 +1100116
Damien Miller4e270b02010-04-16 15:56:21 +1000117/* Certificate options */
Damien Millerd0e4a8e2010-05-21 14:58:32 +1000118#define CERTOPT_X_FWD (1)
119#define CERTOPT_AGENT_FWD (1<<1)
120#define CERTOPT_PORT_FWD (1<<2)
121#define CERTOPT_PTY (1<<3)
122#define CERTOPT_USER_RC (1<<4)
123#define CERTOPT_DEFAULT (CERTOPT_X_FWD|CERTOPT_AGENT_FWD| \
124 CERTOPT_PORT_FWD|CERTOPT_PTY|CERTOPT_USER_RC)
djm@openbsd.org851f8032019-01-23 04:16:22 +0000125static u_int32_t certflags_flags = CERTOPT_DEFAULT;
126static char *certflags_command = NULL;
127static char *certflags_src_addr = NULL;
Damien Miller0a80ca12010-02-27 07:55:05 +1100128
djm@openbsd.org249516e2017-04-29 04:12:25 +0000129/* Arbitrary extensions specified by user */
130struct cert_userext {
131 char *key;
132 char *val;
133 int crit;
134};
djm@openbsd.org851f8032019-01-23 04:16:22 +0000135static struct cert_userext *cert_userext;
136static size_t ncert_userext;
djm@openbsd.org249516e2017-04-29 04:12:25 +0000137
Damien Miller44b25042010-07-02 13:35:01 +1000138/* Conversion to/from various formats */
Damien Miller44b25042010-07-02 13:35:01 +1000139enum {
140 FMT_RFC4716,
141 FMT_PKCS8,
142 FMT_PEM
143} convert_format = FMT_RFC4716;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100144
djm@openbsd.org851f8032019-01-23 04:16:22 +0000145static char *key_type_name = NULL;
Damien Millereba71ba2000-04-29 23:57:08 +1000146
Damien Miller757f34e2010-08-05 13:05:31 +1000147/* Load key from this PKCS#11 provider */
djm@openbsd.org851f8032019-01-23 04:16:22 +0000148static char *pkcs11provider = NULL;
Damien Miller44b25042010-07-02 13:35:01 +1000149
Damien Millerbcd00ab2013-12-07 10:41:55 +1100150/* Use new OpenSSH private key format when writing SSH2 keys instead of PEM */
djm@openbsd.org851f8032019-01-23 04:16:22 +0000151static int use_new_format = 1;
Damien Millerbcd00ab2013-12-07 10:41:55 +1100152
153/* Cipher for new-format private keys */
djm@openbsd.org851f8032019-01-23 04:16:22 +0000154static char *new_format_cipher = NULL;
Damien Millerbcd00ab2013-12-07 10:41:55 +1100155
156/*
157 * Number of KDF rounds to derive new format keys /
158 * number of primality trials when screening moduli.
159 */
djm@openbsd.org851f8032019-01-23 04:16:22 +0000160static int rounds = 0;
Damien Millerbcd00ab2013-12-07 10:41:55 +1100161
Damien Miller431f66b1999-11-21 18:31:57 +1100162/* argv0 */
163extern char *__progname;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000164
djm@openbsd.org851f8032019-01-23 04:16:22 +0000165static char hostname[NI_MAXHOST];
Damien Millereba71ba2000-04-29 23:57:08 +1000166
djm@openbsd.org1d9a2e22015-05-28 07:37:31 +0000167#ifdef WITH_OPENSSL
Darren Tucker770fc012004-05-13 16:24:32 +1000168/* moduli.c */
Damien Millerb089fb52005-05-26 12:16:18 +1000169int gen_candidates(FILE *, u_int32_t, u_int32_t, BIGNUM *);
Damien Millerdfceafe2012-07-06 13:44:19 +1000170int prime_test(FILE *, FILE *, u_int32_t, u_int32_t, char *, unsigned long,
171 unsigned long);
djm@openbsd.org1d9a2e22015-05-28 07:37:31 +0000172#endif
Darren Tucker770fc012004-05-13 16:24:32 +1000173
Ben Lindstrombba81212001-06-25 05:01:22 +0000174static void
djm@openbsd.org7efb4552015-01-18 13:22:28 +0000175type_bits_valid(int type, const char *name, u_int32_t *bitsp)
Damien Miller58f1baf2011-05-05 14:06:15 +1000176{
Damien Miller72ef7c12015-01-15 02:21:31 +1100177#ifdef WITH_OPENSSL
djm@openbsd.org1d9a2e22015-05-28 07:37:31 +0000178 u_int maxbits, nid;
Damien Miller72ef7c12015-01-15 02:21:31 +1100179#endif
Damien Miller58f1baf2011-05-05 14:06:15 +1000180
djm@openbsd.org3038a192015-04-17 13:19:22 +0000181 if (type == KEY_UNSPEC)
182 fatal("unknown key type %s", key_type_name);
Damien Miller884b63a2011-05-05 14:14:52 +1000183 if (*bitsp == 0) {
Damien Miller773dda22015-01-30 23:10:17 +1100184#ifdef WITH_OPENSSL
Damien Miller58f1baf2011-05-05 14:06:15 +1000185 if (type == KEY_DSA)
Damien Miller884b63a2011-05-05 14:14:52 +1000186 *bitsp = DEFAULT_BITS_DSA;
djm@openbsd.org7efb4552015-01-18 13:22:28 +0000187 else if (type == KEY_ECDSA) {
188 if (name != NULL &&
189 (nid = sshkey_ecdsa_nid_from_name(name)) > 0)
190 *bitsp = sshkey_curve_nid_to_bits(nid);
191 if (*bitsp == 0)
192 *bitsp = DEFAULT_BITS_ECDSA;
Damien Miller773dda22015-01-30 23:10:17 +1100193 } else
194#endif
Damien Miller884b63a2011-05-05 14:14:52 +1000195 *bitsp = DEFAULT_BITS;
Damien Miller58f1baf2011-05-05 14:06:15 +1000196 }
Damien Miller72ef7c12015-01-15 02:21:31 +1100197#ifdef WITH_OPENSSL
Damien Miller58f1baf2011-05-05 14:06:15 +1000198 maxbits = (type == KEY_DSA) ?
199 OPENSSL_DSA_MAX_MODULUS_BITS : OPENSSL_RSA_MAX_MODULUS_BITS;
djm@openbsd.org3038a192015-04-17 13:19:22 +0000200 if (*bitsp > maxbits)
201 fatal("key bits exceeds maximum %d", maxbits);
djm@openbsd.orgbd636f42017-05-07 23:15:59 +0000202 switch (type) {
203 case KEY_DSA:
204 if (*bitsp != 1024)
205 fatal("Invalid DSA key length: must be 1024 bits");
206 break;
207 case KEY_RSA:
208 if (*bitsp < SSH_RSA_MINIMUM_MODULUS_SIZE)
209 fatal("Invalid RSA key length: minimum is %d bits",
210 SSH_RSA_MINIMUM_MODULUS_SIZE);
211 break;
212 case KEY_ECDSA:
213 if (sshkey_ecdsa_bits_to_nid(*bitsp) == -1)
214 fatal("Invalid ECDSA key length: valid lengths are "
Manoj Ampalam9b47b082018-11-08 22:41:59 -0800215#ifdef OPENSSL_HAS_NISTP521
djm@openbsd.orgbd636f42017-05-07 23:15:59 +0000216 "256, 384 or 521 bits");
Manoj Ampalam9b47b082018-11-08 22:41:59 -0800217#else
218 "256 or 384 bits");
219#endif
djm@openbsd.orgbd636f42017-05-07 23:15:59 +0000220 }
Damien Miller1f0311c2014-05-15 14:24:09 +1000221#endif
Damien Miller58f1baf2011-05-05 14:06:15 +1000222}
223
224static void
Damien Miller431f66b1999-11-21 18:31:57 +1100225ask_filename(struct passwd *pw, const char *prompt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000226{
Damien Miller95def091999-11-25 00:26:21 +1100227 char buf[1024];
Damien Millere39cacc2000-11-29 12:18:44 +1100228 char *name = NULL;
229
Damien Miller993dd552002-02-19 15:22:47 +1100230 if (key_type_name == NULL)
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000231 name = _PATH_SSH_CLIENT_ID_RSA;
Damien Miller90967402006-03-26 14:07:26 +1100232 else {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000233 switch (sshkey_type_from_name(key_type_name)) {
Damien Miller4e270b02010-04-16 15:56:21 +1000234 case KEY_DSA_CERT:
Damien Miller993dd552002-02-19 15:22:47 +1100235 case KEY_DSA:
236 name = _PATH_SSH_CLIENT_ID_DSA;
237 break;
Damien Millerdd190dd2010-11-11 14:17:02 +1100238#ifdef OPENSSL_HAS_ECC
Damien Millereb8b60e2010-08-31 22:41:14 +1000239 case KEY_ECDSA_CERT:
240 case KEY_ECDSA:
241 name = _PATH_SSH_CLIENT_ID_ECDSA;
242 break;
Damien Millerdd190dd2010-11-11 14:17:02 +1100243#endif
Damien Miller4e270b02010-04-16 15:56:21 +1000244 case KEY_RSA_CERT:
Damien Miller993dd552002-02-19 15:22:47 +1100245 case KEY_RSA:
246 name = _PATH_SSH_CLIENT_ID_RSA;
247 break;
Damien Miller5be9d9e2013-12-07 11:24:01 +1100248 case KEY_ED25519:
249 case KEY_ED25519_CERT:
250 name = _PATH_SSH_CLIENT_ID_ED25519;
251 break;
markus@openbsd.org1b11ea72018-02-23 15:58:37 +0000252 case KEY_XMSS:
253 case KEY_XMSS_CERT:
254 name = _PATH_SSH_CLIENT_ID_XMSS;
255 break;
Damien Miller993dd552002-02-19 15:22:47 +1100256 default:
djm@openbsd.org3038a192015-04-17 13:19:22 +0000257 fatal("bad key type");
Damien Miller993dd552002-02-19 15:22:47 +1100258 }
Damien Miller90967402006-03-26 14:07:26 +1100259 }
djm@openbsd.org3038a192015-04-17 13:19:22 +0000260 snprintf(identity_file, sizeof(identity_file),
261 "%s/%s", pw->pw_dir, name);
262 printf("%s (%s): ", prompt, identity_file);
263 fflush(stdout);
Damien Miller95def091999-11-25 00:26:21 +1100264 if (fgets(buf, sizeof(buf), stdin) == NULL)
265 exit(1);
Damien Miller14b017d2007-09-17 16:09:15 +1000266 buf[strcspn(buf, "\n")] = '\0';
Damien Miller95def091999-11-25 00:26:21 +1100267 if (strcmp(buf, "") != 0)
268 strlcpy(identity_file, buf, sizeof(identity_file));
269 have_identity = 1;
Damien Miller10f6f6b1999-11-17 17:29:08 +1100270}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000271
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000272static struct sshkey *
Ben Lindstromd78ae762001-06-05 20:35:09 +0000273load_identity(char *filename)
Damien Millereba71ba2000-04-29 23:57:08 +1000274{
Ben Lindstromd0fca422001-03-26 13:44:06 +0000275 char *pass;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000276 struct sshkey *prv;
277 int r;
Ben Lindstromd0fca422001-03-26 13:44:06 +0000278
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000279 if ((r = sshkey_load_private(filename, "", &prv, NULL)) == 0)
280 return prv;
281 if (r != SSH_ERR_KEY_WRONG_PASSPHRASE)
282 fatal("Load key \"%s\": %s", filename, ssh_err(r));
283 if (identity_passphrase)
284 pass = xstrdup(identity_passphrase);
285 else
286 pass = read_passphrase("Enter passphrase: ", RP_ALLOW_STDIN);
287 r = sshkey_load_private(filename, pass, &prv, NULL);
288 explicit_bzero(pass, strlen(pass));
289 free(pass);
290 if (r != 0)
291 fatal("Load key \"%s\": %s", filename, ssh_err(r));
Ben Lindstromd0fca422001-03-26 13:44:06 +0000292 return prv;
Damien Millereba71ba2000-04-29 23:57:08 +1000293}
294
Damien Miller874d77b2000-10-14 16:23:11 +1100295#define SSH_COM_PUBLIC_BEGIN "---- BEGIN SSH2 PUBLIC KEY ----"
Ben Lindstromcb72e4f2002-06-21 00:41:51 +0000296#define SSH_COM_PUBLIC_END "---- END SSH2 PUBLIC KEY ----"
Damien Miller874d77b2000-10-14 16:23:11 +1100297#define SSH_COM_PRIVATE_BEGIN "---- BEGIN SSH2 ENCRYPTED PRIVATE KEY ----"
Kevin Stevesef4eea92001-02-05 12:42:17 +0000298#define SSH_COM_PRIVATE_KEY_MAGIC 0x3f6ff9eb
Damien Millereba71ba2000-04-29 23:57:08 +1000299
Damien Miller1f0311c2014-05-15 14:24:09 +1000300#ifdef WITH_OPENSSL
Ben Lindstrombba81212001-06-25 05:01:22 +0000301static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000302do_convert_to_ssh2(struct passwd *pw, struct sshkey *k)
Damien Millereba71ba2000-04-29 23:57:08 +1000303{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000304 size_t len;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000305 u_char *blob;
Darren Tuckerd04758d2010-01-12 19:41:57 +1100306 char comment[61];
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000307 int r;
Damien Millereba71ba2000-04-29 23:57:08 +1000308
djm@openbsd.org3038a192015-04-17 13:19:22 +0000309 if ((r = sshkey_to_blob(k, &blob, &len)) != 0)
310 fatal("key_to_blob failed: %s", ssh_err(r));
Darren Tuckerd04758d2010-01-12 19:41:57 +1100311 /* Comment + surrounds must fit into 72 chars (RFC 4716 sec 3.3) */
312 snprintf(comment, sizeof(comment),
313 "%u-bit %s, converted by %s@%s from OpenSSH",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000314 sshkey_size(k), sshkey_type(k),
Damien Millereba71ba2000-04-29 23:57:08 +1000315 pw->pw_name, hostname);
Darren Tuckerd04758d2010-01-12 19:41:57 +1100316
317 fprintf(stdout, "%s\n", SSH_COM_PUBLIC_BEGIN);
318 fprintf(stdout, "Comment: \"%s\"\n", comment);
Damien Millereba71ba2000-04-29 23:57:08 +1000319 dump_base64(stdout, blob, len);
Damien Miller874d77b2000-10-14 16:23:11 +1100320 fprintf(stdout, "%s\n", SSH_COM_PUBLIC_END);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000321 sshkey_free(k);
Darren Tuckera627d422013-06-02 07:31:17 +1000322 free(blob);
Damien Millereba71ba2000-04-29 23:57:08 +1000323 exit(0);
324}
325
Ben Lindstrombba81212001-06-25 05:01:22 +0000326static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000327do_convert_to_pkcs8(struct sshkey *k)
Damien Miller44b25042010-07-02 13:35:01 +1000328{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000329 switch (sshkey_type_plain(k->type)) {
Damien Miller44b25042010-07-02 13:35:01 +1000330 case KEY_RSA:
331 if (!PEM_write_RSA_PUBKEY(stdout, k->rsa))
332 fatal("PEM_write_RSA_PUBKEY failed");
333 break;
334 case KEY_DSA:
335 if (!PEM_write_DSA_PUBKEY(stdout, k->dsa))
336 fatal("PEM_write_DSA_PUBKEY failed");
337 break;
Damien Miller6af914a2010-09-10 11:39:26 +1000338#ifdef OPENSSL_HAS_ECC
Damien Millereb8b60e2010-08-31 22:41:14 +1000339 case KEY_ECDSA:
340 if (!PEM_write_EC_PUBKEY(stdout, k->ecdsa))
341 fatal("PEM_write_EC_PUBKEY failed");
342 break;
Damien Miller6af914a2010-09-10 11:39:26 +1000343#endif
Damien Miller44b25042010-07-02 13:35:01 +1000344 default:
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000345 fatal("%s: unsupported key type %s", __func__, sshkey_type(k));
Damien Miller44b25042010-07-02 13:35:01 +1000346 }
347 exit(0);
348}
349
350static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000351do_convert_to_pem(struct sshkey *k)
Damien Miller44b25042010-07-02 13:35:01 +1000352{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000353 switch (sshkey_type_plain(k->type)) {
Damien Miller44b25042010-07-02 13:35:01 +1000354 case KEY_RSA:
355 if (!PEM_write_RSAPublicKey(stdout, k->rsa))
356 fatal("PEM_write_RSAPublicKey failed");
357 break;
Damien Miller44b25042010-07-02 13:35:01 +1000358 default:
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000359 fatal("%s: unsupported key type %s", __func__, sshkey_type(k));
Damien Miller44b25042010-07-02 13:35:01 +1000360 }
361 exit(0);
362}
363
364static void
365do_convert_to(struct passwd *pw)
366{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000367 struct sshkey *k;
Damien Miller44b25042010-07-02 13:35:01 +1000368 struct stat st;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000369 int r;
Damien Miller44b25042010-07-02 13:35:01 +1000370
371 if (!have_identity)
372 ask_filename(pw, "Enter file in which the key is");
373 if (stat(identity_file, &st) < 0)
374 fatal("%s: %s: %s", __progname, identity_file, strerror(errno));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000375 if ((r = sshkey_load_public(identity_file, &k, NULL)) != 0)
376 k = load_identity(identity_file);
Damien Miller44b25042010-07-02 13:35:01 +1000377 switch (convert_format) {
378 case FMT_RFC4716:
379 do_convert_to_ssh2(pw, k);
380 break;
381 case FMT_PKCS8:
382 do_convert_to_pkcs8(k);
383 break;
384 case FMT_PEM:
385 do_convert_to_pem(k);
386 break;
387 default:
388 fatal("%s: unknown key format %d", __func__, convert_format);
389 }
390 exit(0);
391}
392
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000393/*
394 * This is almost exactly the bignum1 encoding, but with 32 bit for length
395 * instead of 16.
396 */
Damien Miller44b25042010-07-02 13:35:01 +1000397static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000398buffer_get_bignum_bits(struct sshbuf *b, BIGNUM *value)
Damien Miller874d77b2000-10-14 16:23:11 +1100399{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000400 u_int bytes, bignum_bits;
401 int r;
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000402
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000403 if ((r = sshbuf_get_u32(b, &bignum_bits)) != 0)
404 fatal("%s: buffer error: %s", __func__, ssh_err(r));
405 bytes = (bignum_bits + 7) / 8;
406 if (sshbuf_len(b) < bytes)
407 fatal("%s: input buffer too small: need %d have %zu",
408 __func__, bytes, sshbuf_len(b));
409 if (BN_bin2bn(sshbuf_ptr(b), bytes, value) == NULL)
410 fatal("%s: BN_bin2bn failed", __func__);
411 if ((r = sshbuf_consume(b, bytes)) != 0)
412 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Miller874d77b2000-10-14 16:23:11 +1100413}
414
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000415static struct sshkey *
Ben Lindstrom90fd8142002-02-26 18:09:42 +0000416do_convert_private_ssh2_from_blob(u_char *blob, u_int blen)
Damien Miller874d77b2000-10-14 16:23:11 +1100417{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000418 struct sshbuf *b;
419 struct sshkey *key = NULL;
Damien Miller874d77b2000-10-14 16:23:11 +1100420 char *type, *cipher;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000421 u_char e1, e2, e3, *sig = NULL, data[] = "abcde12345";
422 int r, rlen, ktype;
423 u_int magic, i1, i2, i3, i4;
424 size_t slen;
Ben Lindstrome586c4c2001-06-25 05:04:58 +0000425 u_long e;
djm@openbsd.org482d23b2018-09-13 02:08:33 +0000426 BIGNUM *dsa_p = NULL, *dsa_q = NULL, *dsa_g = NULL;
427 BIGNUM *dsa_pub_key = NULL, *dsa_priv_key = NULL;
428 BIGNUM *rsa_n = NULL, *rsa_e = NULL, *rsa_d = NULL;
429 BIGNUM *rsa_p = NULL, *rsa_q = NULL, *rsa_iqmp = NULL;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000430 if ((b = sshbuf_from(blob, blen)) == NULL)
431 fatal("%s: sshbuf_from failed", __func__);
432 if ((r = sshbuf_get_u32(b, &magic)) != 0)
433 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Miller874d77b2000-10-14 16:23:11 +1100434
Damien Miller874d77b2000-10-14 16:23:11 +1100435 if (magic != SSH_COM_PRIVATE_KEY_MAGIC) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000436 error("bad magic 0x%x != 0x%x", magic,
437 SSH_COM_PRIVATE_KEY_MAGIC);
438 sshbuf_free(b);
Damien Miller874d77b2000-10-14 16:23:11 +1100439 return NULL;
440 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000441 if ((r = sshbuf_get_u32(b, &i1)) != 0 ||
442 (r = sshbuf_get_cstring(b, &type, NULL)) != 0 ||
443 (r = sshbuf_get_cstring(b, &cipher, NULL)) != 0 ||
444 (r = sshbuf_get_u32(b, &i2)) != 0 ||
445 (r = sshbuf_get_u32(b, &i3)) != 0 ||
446 (r = sshbuf_get_u32(b, &i4)) != 0)
447 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Miller80163902007-01-05 16:30:16 +1100448 debug("ignore (%d %d %d %d)", i1, i2, i3, i4);
Damien Miller874d77b2000-10-14 16:23:11 +1100449 if (strcmp(cipher, "none") != 0) {
450 error("unsupported cipher %s", cipher);
Darren Tuckera627d422013-06-02 07:31:17 +1000451 free(cipher);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000452 sshbuf_free(b);
Darren Tuckera627d422013-06-02 07:31:17 +1000453 free(type);
Damien Miller874d77b2000-10-14 16:23:11 +1100454 return NULL;
455 }
Darren Tuckera627d422013-06-02 07:31:17 +1000456 free(cipher);
Damien Miller874d77b2000-10-14 16:23:11 +1100457
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000458 if (strstr(type, "dsa")) {
459 ktype = KEY_DSA;
460 } else if (strstr(type, "rsa")) {
461 ktype = KEY_RSA;
462 } else {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000463 sshbuf_free(b);
Darren Tuckera627d422013-06-02 07:31:17 +1000464 free(type);
Damien Miller874d77b2000-10-14 16:23:11 +1100465 return NULL;
466 }
djm@openbsd.org6da046f2018-09-14 04:17:44 +0000467 if ((key = sshkey_new(ktype)) == NULL)
468 fatal("sshkey_new failed");
Darren Tuckera627d422013-06-02 07:31:17 +1000469 free(type);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000470
471 switch (key->type) {
472 case KEY_DSA:
djm@openbsd.org482d23b2018-09-13 02:08:33 +0000473 if ((dsa_p = BN_new()) == NULL ||
474 (dsa_q = BN_new()) == NULL ||
475 (dsa_g = BN_new()) == NULL ||
476 (dsa_pub_key = BN_new()) == NULL ||
477 (dsa_priv_key = BN_new()) == NULL)
478 fatal("%s: BN_new", __func__);
479 buffer_get_bignum_bits(b, dsa_p);
480 buffer_get_bignum_bits(b, dsa_g);
481 buffer_get_bignum_bits(b, dsa_q);
482 buffer_get_bignum_bits(b, dsa_pub_key);
483 buffer_get_bignum_bits(b, dsa_priv_key);
484 if (!DSA_set0_pqg(key->dsa, dsa_p, dsa_q, dsa_g))
485 fatal("%s: DSA_set0_pqg failed", __func__);
486 dsa_p = dsa_q = dsa_g = NULL; /* transferred */
487 if (!DSA_set0_key(key->dsa, dsa_pub_key, dsa_priv_key))
488 fatal("%s: DSA_set0_key failed", __func__);
489 dsa_pub_key = dsa_priv_key = NULL; /* transferred */
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000490 break;
491 case KEY_RSA:
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000492 if ((r = sshbuf_get_u8(b, &e1)) != 0 ||
493 (e1 < 30 && (r = sshbuf_get_u8(b, &e2)) != 0) ||
494 (e1 < 30 && (r = sshbuf_get_u8(b, &e3)) != 0))
495 fatal("%s: buffer error: %s", __func__, ssh_err(r));
496 e = e1;
Ben Lindstrom34f91882001-06-25 04:47:54 +0000497 debug("e %lx", e);
498 if (e < 30) {
499 e <<= 8;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000500 e += e2;
Ben Lindstrom34f91882001-06-25 04:47:54 +0000501 debug("e %lx", e);
502 e <<= 8;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000503 e += e3;
Ben Lindstrom34f91882001-06-25 04:47:54 +0000504 debug("e %lx", e);
505 }
djm@openbsd.org482d23b2018-09-13 02:08:33 +0000506 if ((rsa_e = BN_new()) == NULL)
507 fatal("%s: BN_new", __func__);
508 if (!BN_set_word(rsa_e, e)) {
509 BN_clear_free(rsa_e);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000510 sshbuf_free(b);
511 sshkey_free(key);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000512 return NULL;
513 }
djm@openbsd.org482d23b2018-09-13 02:08:33 +0000514 if ((rsa_n = BN_new()) == NULL ||
515 (rsa_d = BN_new()) == NULL ||
516 (rsa_p = BN_new()) == NULL ||
517 (rsa_q = BN_new()) == NULL ||
518 (rsa_iqmp = BN_new()) == NULL)
519 fatal("%s: BN_new", __func__);
520 buffer_get_bignum_bits(b, rsa_d);
521 buffer_get_bignum_bits(b, rsa_n);
522 buffer_get_bignum_bits(b, rsa_iqmp);
523 buffer_get_bignum_bits(b, rsa_q);
524 buffer_get_bignum_bits(b, rsa_p);
525 if (!RSA_set0_key(key->rsa, rsa_n, rsa_e, rsa_d))
526 fatal("%s: RSA_set0_key failed", __func__);
527 rsa_n = rsa_e = rsa_d = NULL; /* transferred */
528 if (!RSA_set0_factors(key->rsa, rsa_p, rsa_q))
529 fatal("%s: RSA_set0_factors failed", __func__);
530 rsa_p = rsa_q = NULL; /* transferred */
531 if ((r = ssh_rsa_complete_crt_parameters(key, rsa_iqmp)) != 0)
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000532 fatal("generate RSA parameters failed: %s", ssh_err(r));
djm@openbsd.org482d23b2018-09-13 02:08:33 +0000533 BN_clear_free(rsa_iqmp);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000534 break;
535 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000536 rlen = sshbuf_len(b);
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +0000537 if (rlen != 0)
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000538 error("do_convert_private_ssh2_from_blob: "
539 "remaining bytes in key blob %d", rlen);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000540 sshbuf_free(b);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000541
Ben Lindstrome586c4c2001-06-25 05:04:58 +0000542 /* try the key */
markus@openbsd.org76c9fbb2015-12-04 16:41:28 +0000543 if (sshkey_sign(key, &sig, &slen, data, sizeof(data), NULL, 0) != 0 ||
djm@openbsd.org04c7e282017-12-18 02:25:15 +0000544 sshkey_verify(key, sig, slen, data, sizeof(data), NULL, 0) != 0) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000545 sshkey_free(key);
546 free(sig);
547 return NULL;
548 }
Darren Tuckera627d422013-06-02 07:31:17 +1000549 free(sig);
Damien Miller874d77b2000-10-14 16:23:11 +1100550 return key;
551}
552
Damien Miller8056a9d2006-03-15 12:05:40 +1100553static int
554get_line(FILE *fp, char *line, size_t len)
555{
556 int c;
557 size_t pos = 0;
558
559 line[0] = '\0';
560 while ((c = fgetc(fp)) != EOF) {
djm@openbsd.org3038a192015-04-17 13:19:22 +0000561 if (pos >= len - 1)
562 fatal("input line too long.");
Damien Miller90967402006-03-26 14:07:26 +1100563 switch (c) {
Damien Miller8056a9d2006-03-15 12:05:40 +1100564 case '\r':
565 c = fgetc(fp);
djm@openbsd.org3038a192015-04-17 13:19:22 +0000566 if (c != EOF && c != '\n' && ungetc(c, fp) == EOF)
567 fatal("unget: %s", strerror(errno));
Damien Miller8056a9d2006-03-15 12:05:40 +1100568 return pos;
569 case '\n':
570 return pos;
571 }
572 line[pos++] = c;
573 line[pos] = '\0';
574 }
Damien Miller6c7439f2007-01-05 16:29:55 +1100575 /* We reached EOF */
576 return -1;
Damien Miller8056a9d2006-03-15 12:05:40 +1100577}
578
Ben Lindstrombba81212001-06-25 05:01:22 +0000579static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000580do_convert_from_ssh2(struct passwd *pw, struct sshkey **k, int *private)
Damien Millereba71ba2000-04-29 23:57:08 +1000581{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000582 int r, blen, escaped = 0;
Ben Lindstrom155b9812002-04-02 20:26:26 +0000583 u_int len;
Damien Miller8056a9d2006-03-15 12:05:40 +1100584 char line[1024];
Ben Lindstrom9e0ddd42001-09-18 05:41:19 +0000585 u_char blob[8096];
Damien Millereba71ba2000-04-29 23:57:08 +1000586 char encoded[8096];
Damien Millereba71ba2000-04-29 23:57:08 +1000587 FILE *fp;
588
Damien Millerba3420a2010-06-26 09:39:07 +1000589 if ((fp = fopen(identity_file, "r")) == NULL)
590 fatal("%s: %s: %s", __progname, identity_file, strerror(errno));
Damien Millereba71ba2000-04-29 23:57:08 +1000591 encoded[0] = '\0';
Damien Miller8056a9d2006-03-15 12:05:40 +1100592 while ((blen = get_line(fp, line, sizeof(line))) != -1) {
Damien Miller746d1a62013-07-18 16:13:02 +1000593 if (blen > 0 && line[blen - 1] == '\\')
Damien Miller30c3d422000-05-09 11:02:59 +1000594 escaped++;
Damien Millereba71ba2000-04-29 23:57:08 +1000595 if (strncmp(line, "----", 4) == 0 ||
596 strstr(line, ": ") != NULL) {
Damien Miller874d77b2000-10-14 16:23:11 +1100597 if (strstr(line, SSH_COM_PRIVATE_BEGIN) != NULL)
Damien Miller44b25042010-07-02 13:35:01 +1000598 *private = 1;
Ben Lindstrome586c4c2001-06-25 05:04:58 +0000599 if (strstr(line, " END ") != NULL) {
600 break;
601 }
Ben Lindstrom30358602001-04-24 16:59:28 +0000602 /* fprintf(stderr, "ignore: %s", line); */
Damien Millereba71ba2000-04-29 23:57:08 +1000603 continue;
604 }
Damien Miller30c3d422000-05-09 11:02:59 +1000605 if (escaped) {
606 escaped--;
Ben Lindstrom30358602001-04-24 16:59:28 +0000607 /* fprintf(stderr, "escaped: %s", line); */
Damien Miller30c3d422000-05-09 11:02:59 +1000608 continue;
Damien Millereba71ba2000-04-29 23:57:08 +1000609 }
Damien Millereba71ba2000-04-29 23:57:08 +1000610 strlcat(encoded, line, sizeof(encoded));
611 }
Ben Lindstrom155b9812002-04-02 20:26:26 +0000612 len = strlen(encoded);
613 if (((len % 4) == 3) &&
614 (encoded[len-1] == '=') &&
615 (encoded[len-2] == '=') &&
616 (encoded[len-3] == '='))
617 encoded[len-3] = '\0';
Damien Miller4a8ed542002-01-22 23:33:31 +1100618 blen = uudecode(encoded, blob, sizeof(blob));
djm@openbsd.org3038a192015-04-17 13:19:22 +0000619 if (blen < 0)
620 fatal("uudecode failed.");
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000621 if (*private)
622 *k = do_convert_private_ssh2_from_blob(blob, blen);
djm@openbsd.org3038a192015-04-17 13:19:22 +0000623 else if ((r = sshkey_from_blob(blob, blen, k)) != 0)
624 fatal("decode blob failed: %s", ssh_err(r));
Damien Miller44b25042010-07-02 13:35:01 +1000625 fclose(fp);
626}
627
628static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000629do_convert_from_pkcs8(struct sshkey **k, int *private)
Damien Miller44b25042010-07-02 13:35:01 +1000630{
631 EVP_PKEY *pubkey;
632 FILE *fp;
633
634 if ((fp = fopen(identity_file, "r")) == NULL)
635 fatal("%s: %s: %s", __progname, identity_file, strerror(errno));
636 if ((pubkey = PEM_read_PUBKEY(fp, NULL, NULL, NULL)) == NULL) {
637 fatal("%s: %s is not a recognised public key format", __func__,
638 identity_file);
639 }
640 fclose(fp);
djm@openbsd.org482d23b2018-09-13 02:08:33 +0000641 switch (EVP_PKEY_base_id(pubkey)) {
Damien Miller44b25042010-07-02 13:35:01 +1000642 case EVP_PKEY_RSA:
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000643 if ((*k = sshkey_new(KEY_UNSPEC)) == NULL)
644 fatal("sshkey_new failed");
Damien Miller44b25042010-07-02 13:35:01 +1000645 (*k)->type = KEY_RSA;
646 (*k)->rsa = EVP_PKEY_get1_RSA(pubkey);
647 break;
648 case EVP_PKEY_DSA:
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000649 if ((*k = sshkey_new(KEY_UNSPEC)) == NULL)
650 fatal("sshkey_new failed");
Damien Miller44b25042010-07-02 13:35:01 +1000651 (*k)->type = KEY_DSA;
652 (*k)->dsa = EVP_PKEY_get1_DSA(pubkey);
653 break;
Damien Miller6af914a2010-09-10 11:39:26 +1000654#ifdef OPENSSL_HAS_ECC
Damien Millereb8b60e2010-08-31 22:41:14 +1000655 case EVP_PKEY_EC:
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000656 if ((*k = sshkey_new(KEY_UNSPEC)) == NULL)
657 fatal("sshkey_new failed");
Damien Millereb8b60e2010-08-31 22:41:14 +1000658 (*k)->type = KEY_ECDSA;
659 (*k)->ecdsa = EVP_PKEY_get1_EC_KEY(pubkey);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000660 (*k)->ecdsa_nid = sshkey_ecdsa_key_to_nid((*k)->ecdsa);
Damien Millereb8b60e2010-08-31 22:41:14 +1000661 break;
Damien Miller6af914a2010-09-10 11:39:26 +1000662#endif
Damien Miller44b25042010-07-02 13:35:01 +1000663 default:
664 fatal("%s: unsupported pubkey type %d", __func__,
djm@openbsd.org482d23b2018-09-13 02:08:33 +0000665 EVP_PKEY_base_id(pubkey));
Damien Miller44b25042010-07-02 13:35:01 +1000666 }
667 EVP_PKEY_free(pubkey);
668 return;
669}
670
671static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000672do_convert_from_pem(struct sshkey **k, int *private)
Damien Miller44b25042010-07-02 13:35:01 +1000673{
674 FILE *fp;
675 RSA *rsa;
Damien Miller44b25042010-07-02 13:35:01 +1000676
677 if ((fp = fopen(identity_file, "r")) == NULL)
678 fatal("%s: %s: %s", __progname, identity_file, strerror(errno));
679 if ((rsa = PEM_read_RSAPublicKey(fp, NULL, NULL, NULL)) != NULL) {
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_RSA;
683 (*k)->rsa = rsa;
684 fclose(fp);
685 return;
686 }
Damien Miller44b25042010-07-02 13:35:01 +1000687 fatal("%s: unrecognised raw private key format", __func__);
688}
689
690static void
691do_convert_from(struct passwd *pw)
692{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000693 struct sshkey *k = NULL;
694 int r, private = 0, ok = 0;
Damien Miller44b25042010-07-02 13:35:01 +1000695 struct stat st;
696
697 if (!have_identity)
698 ask_filename(pw, "Enter file in which the key is");
699 if (stat(identity_file, &st) < 0)
700 fatal("%s: %s: %s", __progname, identity_file, strerror(errno));
701
702 switch (convert_format) {
703 case FMT_RFC4716:
704 do_convert_from_ssh2(pw, &k, &private);
705 break;
706 case FMT_PKCS8:
707 do_convert_from_pkcs8(&k, &private);
708 break;
709 case FMT_PEM:
710 do_convert_from_pem(&k, &private);
711 break;
712 default:
713 fatal("%s: unknown key format %d", __func__, convert_format);
714 }
715
djm@openbsd.org7a2c3682015-01-30 00:59:19 +0000716 if (!private) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000717 if ((r = sshkey_write(k, stdout)) == 0)
718 ok = 1;
Damien Miller44b25042010-07-02 13:35:01 +1000719 if (ok)
720 fprintf(stdout, "\n");
djm@openbsd.org7a2c3682015-01-30 00:59:19 +0000721 } else {
Damien Miller44b25042010-07-02 13:35:01 +1000722 switch (k->type) {
723 case KEY_DSA:
724 ok = PEM_write_DSAPrivateKey(stdout, k->dsa, NULL,
725 NULL, 0, NULL, NULL);
726 break;
Damien Miller6af914a2010-09-10 11:39:26 +1000727#ifdef OPENSSL_HAS_ECC
Damien Millereb8b60e2010-08-31 22:41:14 +1000728 case KEY_ECDSA:
729 ok = PEM_write_ECPrivateKey(stdout, k->ecdsa, NULL,
730 NULL, 0, NULL, NULL);
731 break;
Damien Miller6af914a2010-09-10 11:39:26 +1000732#endif
Damien Miller44b25042010-07-02 13:35:01 +1000733 case KEY_RSA:
734 ok = PEM_write_RSAPrivateKey(stdout, k->rsa, NULL,
735 NULL, 0, NULL, NULL);
736 break;
737 default:
738 fatal("%s: unsupported key type %s", __func__,
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000739 sshkey_type(k));
Damien Miller44b25042010-07-02 13:35:01 +1000740 }
741 }
742
djm@openbsd.org3038a192015-04-17 13:19:22 +0000743 if (!ok)
744 fatal("key write failed");
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000745 sshkey_free(k);
Damien Millereba71ba2000-04-29 23:57:08 +1000746 exit(0);
747}
Damien Miller1f0311c2014-05-15 14:24:09 +1000748#endif
Damien Millereba71ba2000-04-29 23:57:08 +1000749
Ben Lindstrombba81212001-06-25 05:01:22 +0000750static void
Damien Millereba71ba2000-04-29 23:57:08 +1000751do_print_public(struct passwd *pw)
752{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000753 struct sshkey *prv;
Damien Millereba71ba2000-04-29 23:57:08 +1000754 struct stat st;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000755 int r;
Damien Millereba71ba2000-04-29 23:57:08 +1000756
757 if (!have_identity)
758 ask_filename(pw, "Enter file in which the key is");
djm@openbsd.org3038a192015-04-17 13:19:22 +0000759 if (stat(identity_file, &st) < 0)
760 fatal("%s: %s", identity_file, strerror(errno));
Ben Lindstromd78ae762001-06-05 20:35:09 +0000761 prv = load_identity(identity_file);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000762 if ((r = sshkey_write(prv, stdout)) != 0)
markus@openbsd.org7da5df12017-05-30 14:16:41 +0000763 error("sshkey_write failed: %s", ssh_err(r));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000764 sshkey_free(prv);
Damien Millereba71ba2000-04-29 23:57:08 +1000765 fprintf(stdout, "\n");
766 exit(0);
767}
768
Ben Lindstromcd392282001-07-04 03:44:03 +0000769static void
Damien Miller757f34e2010-08-05 13:05:31 +1000770do_download(struct passwd *pw)
Ben Lindstromcd392282001-07-04 03:44:03 +0000771{
Damien Miller7ea845e2010-02-12 09:21:02 +1100772#ifdef ENABLE_PKCS11
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000773 struct sshkey **keys = NULL;
Damien Miller7ea845e2010-02-12 09:21:02 +1100774 int i, nkeys;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000775 enum sshkey_fp_rep rep;
djm@openbsd.org56d1c832014-12-21 22:27:55 +0000776 int fptype;
Damien Millerec77c952013-01-09 15:58:00 +1100777 char *fp, *ra;
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000778
djm@openbsd.org56d1c832014-12-21 22:27:55 +0000779 fptype = print_bubblebabble ? SSH_DIGEST_SHA1 : fingerprint_hash;
780 rep = print_bubblebabble ? SSH_FP_BUBBLEBABBLE : SSH_FP_DEFAULT;
Damien Miller1422c082013-01-09 16:44:54 +1100781
benno@openbsd.orga8c807f2019-02-10 16:35:41 +0000782 pkcs11_init(1);
Damien Miller7ea845e2010-02-12 09:21:02 +1100783 nkeys = pkcs11_add_provider(pkcs11provider, NULL, &keys);
784 if (nkeys <= 0)
785 fatal("cannot read public key from pkcs11");
786 for (i = 0; i < nkeys; i++) {
Damien Millerec77c952013-01-09 15:58:00 +1100787 if (print_fingerprint) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000788 fp = sshkey_fingerprint(keys[i], fptype, rep);
789 ra = sshkey_fingerprint(keys[i], fingerprint_hash,
Damien Millerec77c952013-01-09 15:58:00 +1100790 SSH_FP_RANDOMART);
djm@openbsd.org9ce86c92015-01-28 22:36:00 +0000791 if (fp == NULL || ra == NULL)
792 fatal("%s: sshkey_fingerprint fail", __func__);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000793 printf("%u %s %s (PKCS11 key)\n", sshkey_size(keys[i]),
794 fp, sshkey_type(keys[i]));
djm@openbsd.org851f8032019-01-23 04:16:22 +0000795 if (log_level_get() >= SYSLOG_LEVEL_VERBOSE)
Damien Millerec77c952013-01-09 15:58:00 +1100796 printf("%s\n", ra);
Darren Tuckera627d422013-06-02 07:31:17 +1000797 free(ra);
798 free(fp);
Damien Millerec77c952013-01-09 15:58:00 +1100799 } else {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000800 (void) sshkey_write(keys[i], stdout); /* XXX check */
Damien Millerec77c952013-01-09 15:58:00 +1100801 fprintf(stdout, "\n");
802 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000803 sshkey_free(keys[i]);
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000804 }
Darren Tuckera627d422013-06-02 07:31:17 +1000805 free(keys);
Damien Miller7ea845e2010-02-12 09:21:02 +1100806 pkcs11_terminate();
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000807 exit(0);
Damien Miller7ea845e2010-02-12 09:21:02 +1100808#else
809 fatal("no pkcs11 support");
810#endif /* ENABLE_PKCS11 */
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000811}
Ben Lindstromcd392282001-07-04 03:44:03 +0000812
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000813static struct sshkey *
814try_read_key(char **cpp)
815{
816 struct sshkey *ret;
817 int r;
818
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000819 if ((ret = sshkey_new(KEY_UNSPEC)) == NULL)
820 fatal("sshkey_new failed");
821 if ((r = sshkey_read(ret, cpp)) == 0)
822 return ret;
823 /* Not a key */
824 sshkey_free(ret);
825 return NULL;
826}
827
828static void
829fingerprint_one_key(const struct sshkey *public, const char *comment)
830{
831 char *fp = NULL, *ra = NULL;
832 enum sshkey_fp_rep rep;
833 int fptype;
834
835 fptype = print_bubblebabble ? SSH_DIGEST_SHA1 : fingerprint_hash;
836 rep = print_bubblebabble ? SSH_FP_BUBBLEBABBLE : SSH_FP_DEFAULT;
837 fp = sshkey_fingerprint(public, fptype, rep);
838 ra = sshkey_fingerprint(public, fingerprint_hash, SSH_FP_RANDOMART);
839 if (fp == NULL || ra == NULL)
840 fatal("%s: sshkey_fingerprint failed", __func__);
djm@openbsd.orga287c5a2017-02-10 03:36:40 +0000841 mprintf("%u %s %s (%s)\n", sshkey_size(public), fp,
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000842 comment ? comment : "no comment", sshkey_type(public));
djm@openbsd.org851f8032019-01-23 04:16:22 +0000843 if (log_level_get() >= SYSLOG_LEVEL_VERBOSE)
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000844 printf("%s\n", ra);
845 free(ra);
846 free(fp);
847}
848
849static void
850fingerprint_private(const char *path)
851{
852 struct stat st;
853 char *comment = NULL;
854 struct sshkey *public = NULL;
855 int r;
856
857 if (stat(identity_file, &st) < 0)
858 fatal("%s: %s", path, strerror(errno));
djm@openbsd.orgbcb7bc72015-11-18 08:37:28 +0000859 if ((r = sshkey_load_public(path, &public, &comment)) != 0) {
860 debug("load public \"%s\": %s", path, ssh_err(r));
861 if ((r = sshkey_load_private(path, NULL,
862 &public, &comment)) != 0) {
863 debug("load private \"%s\": %s", path, ssh_err(r));
864 fatal("%s is not a key file.", path);
865 }
866 }
867
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000868 fingerprint_one_key(public, comment);
869 sshkey_free(public);
870 free(comment);
871}
872
Ben Lindstrombba81212001-06-25 05:01:22 +0000873static void
Damien Miller10f6f6b1999-11-17 17:29:08 +1100874do_fingerprint(struct passwd *pw)
875{
Damien Miller98c7ad62000-03-09 21:27:49 +1100876 FILE *f;
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000877 struct sshkey *public = NULL;
markus@openbsd.org7f906352018-06-06 18:29:18 +0000878 char *comment = NULL, *cp, *ep, *line = NULL;
879 size_t linesize = 0;
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000880 int i, invalid = 1;
881 const char *path;
djm@openbsd.org1a31d022016-05-02 08:49:03 +0000882 u_long lnum = 0;
Damien Miller10f6f6b1999-11-17 17:29:08 +1100883
Damien Miller95def091999-11-25 00:26:21 +1100884 if (!have_identity)
885 ask_filename(pw, "Enter file in which the key is");
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000886 path = identity_file;
Damien Miller98c7ad62000-03-09 21:27:49 +1100887
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000888 if (strcmp(identity_file, "-") == 0) {
889 f = stdin;
890 path = "(stdin)";
891 } else if ((f = fopen(path, "r")) == NULL)
892 fatal("%s: %s: %s", __progname, path, strerror(errno));
Damien Miller98c7ad62000-03-09 21:27:49 +1100893
markus@openbsd.org7f906352018-06-06 18:29:18 +0000894 while (getline(&line, &linesize, f) != -1) {
895 lnum++;
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000896 cp = line;
897 cp[strcspn(cp, "\n")] = '\0';
898 /* Trim leading space and comments */
899 cp = line + strspn(line, " \t");
900 if (*cp == '#' || *cp == '\0')
901 continue;
902
903 /*
904 * Input may be plain keys, private keys, authorized_keys
905 * or known_hosts.
906 */
907
908 /*
909 * Try private keys first. Assume a key is private if
910 * "SSH PRIVATE KEY" appears on the first line and we're
911 * not reading from stdin (XXX support private keys on stdin).
912 */
913 if (lnum == 1 && strcmp(identity_file, "-") != 0 &&
djm@openbsd.orgbcb7bc72015-11-18 08:37:28 +0000914 strstr(cp, "PRIVATE KEY") != NULL) {
markus@openbsd.org7f906352018-06-06 18:29:18 +0000915 free(line);
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000916 fclose(f);
917 fingerprint_private(path);
918 exit(0);
919 }
920
921 /*
922 * If it's not a private key, then this must be prepared to
923 * accept a public key prefixed with a hostname or options.
924 * Try a bare key first, otherwise skip the leading stuff.
925 */
926 if ((public = try_read_key(&cp)) == NULL) {
927 i = strtol(cp, &ep, 10);
928 if (i == 0 || ep == NULL ||
929 (*ep != ' ' && *ep != '\t')) {
930 int quoted = 0;
931
932 comment = cp;
933 for (; *cp && (quoted || (*cp != ' ' &&
934 *cp != '\t')); cp++) {
935 if (*cp == '\\' && cp[1] == '"')
936 cp++; /* Skip both */
937 else if (*cp == '"')
938 quoted = !quoted;
939 }
940 if (!*cp)
941 continue;
942 *cp++ = '\0';
943 }
944 }
945 /* Retry after parsing leading hostname/key options */
946 if (public == NULL && (public = try_read_key(&cp)) == NULL) {
djm@openbsd.org1a31d022016-05-02 08:49:03 +0000947 debug("%s:%lu: not a public key", path, lnum);
Damien Millerba3420a2010-06-26 09:39:07 +1000948 continue;
Damien Miller95def091999-11-25 00:26:21 +1100949 }
Damien Millerba3420a2010-06-26 09:39:07 +1000950
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000951 /* Find trailing comment, if any */
952 for (; *cp == ' ' || *cp == '\t'; cp++)
Damien Millerba3420a2010-06-26 09:39:07 +1000953 ;
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000954 if (*cp != '\0' && *cp != '#')
Damien Millerba3420a2010-06-26 09:39:07 +1000955 comment = cp;
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000956
957 fingerprint_one_key(public, comment);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000958 sshkey_free(public);
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000959 invalid = 0; /* One good key in the file is sufficient */
Damien Miller95def091999-11-25 00:26:21 +1100960 }
Damien Millerba3420a2010-06-26 09:39:07 +1000961 fclose(f);
markus@openbsd.org7f906352018-06-06 18:29:18 +0000962 free(line);
Damien Millerba3420a2010-06-26 09:39:07 +1000963
djm@openbsd.org3038a192015-04-17 13:19:22 +0000964 if (invalid)
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000965 fatal("%s is not a public key file.", path);
Damien Miller95def091999-11-25 00:26:21 +1100966 exit(0);
Damien Miller10f6f6b1999-11-17 17:29:08 +1100967}
968
Damien Miller4b42d7f2005-03-01 21:48:35 +1100969static void
Damien Miller58f1baf2011-05-05 14:06:15 +1000970do_gen_all_hostkeys(struct passwd *pw)
971{
972 struct {
973 char *key_type;
974 char *key_type_display;
975 char *path;
976 } key_types[] = {
djm@openbsd.org5c27e3b2015-03-23 06:06:38 +0000977#ifdef WITH_OPENSSL
Damien Miller58f1baf2011-05-05 14:06:15 +1000978 { "rsa", "RSA" ,_PATH_HOST_RSA_KEY_FILE },
979 { "dsa", "DSA", _PATH_HOST_DSA_KEY_FILE },
Damien Millerb56e4932012-02-06 07:41:27 +1100980#ifdef OPENSSL_HAS_ECC
Damien Miller58f1baf2011-05-05 14:06:15 +1000981 { "ecdsa", "ECDSA",_PATH_HOST_ECDSA_KEY_FILE },
djm@openbsd.org5c27e3b2015-03-23 06:06:38 +0000982#endif /* OPENSSL_HAS_ECC */
983#endif /* WITH_OPENSSL */
Damien Miller5be9d9e2013-12-07 11:24:01 +1100984 { "ed25519", "ED25519",_PATH_HOST_ED25519_KEY_FILE },
markus@openbsd.org1b11ea72018-02-23 15:58:37 +0000985#ifdef WITH_XMSS
986 { "xmss", "XMSS",_PATH_HOST_XMSS_KEY_FILE },
987#endif /* WITH_XMSS */
Damien Miller58f1baf2011-05-05 14:06:15 +1000988 { NULL, NULL, NULL }
989 };
990
djm@openbsd.org851f8032019-01-23 04:16:22 +0000991 u_int bits = 0;
Damien Miller58f1baf2011-05-05 14:06:15 +1000992 int first = 0;
993 struct stat st;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000994 struct sshkey *private, *public;
djm@openbsd.org853edbe2017-07-07 03:53:12 +0000995 char comment[1024], *prv_tmp, *pub_tmp, *prv_file, *pub_file;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000996 int i, type, fd, r;
Damien Miller58f1baf2011-05-05 14:06:15 +1000997 FILE *f;
998
999 for (i = 0; key_types[i].key_type; i++) {
djm@openbsd.org853edbe2017-07-07 03:53:12 +00001000 public = private = NULL;
1001 prv_tmp = pub_tmp = prv_file = pub_file = NULL;
1002
1003 xasprintf(&prv_file, "%s%s",
1004 identity_file, key_types[i].path);
1005
1006 /* Check whether private key exists and is not zero-length */
1007 if (stat(prv_file, &st) == 0) {
1008 if (st.st_size != 0)
1009 goto next;
1010 } else if (errno != ENOENT) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00001011 error("Could not stat %s: %s", key_types[i].path,
Damien Miller58f1baf2011-05-05 14:06:15 +10001012 strerror(errno));
djm@openbsd.org853edbe2017-07-07 03:53:12 +00001013 goto failnext;
Damien Miller58f1baf2011-05-05 14:06:15 +10001014 }
1015
djm@openbsd.org853edbe2017-07-07 03:53:12 +00001016 /*
1017 * Private key doesn't exist or is invalid; proceed with
1018 * key generation.
1019 */
1020 xasprintf(&prv_tmp, "%s%s.XXXXXXXXXX",
1021 identity_file, key_types[i].path);
1022 xasprintf(&pub_tmp, "%s%s.pub.XXXXXXXXXX",
1023 identity_file, key_types[i].path);
1024 xasprintf(&pub_file, "%s%s.pub",
1025 identity_file, key_types[i].path);
1026
Damien Miller58f1baf2011-05-05 14:06:15 +10001027 if (first == 0) {
1028 first = 1;
1029 printf("%s: generating new host keys: ", __progname);
1030 }
1031 printf("%s ", key_types[i].key_type_display);
1032 fflush(stdout);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001033 type = sshkey_type_from_name(key_types[i].key_type);
djm@openbsd.org853edbe2017-07-07 03:53:12 +00001034 if ((fd = mkstemp(prv_tmp)) == -1) {
1035 error("Could not save your public key in %s: %s",
1036 prv_tmp, strerror(errno));
1037 goto failnext;
1038 }
1039 close(fd); /* just using mkstemp() to generate/reserve a name */
Damien Miller58f1baf2011-05-05 14:06:15 +10001040 bits = 0;
djm@openbsd.org7efb4552015-01-18 13:22:28 +00001041 type_bits_valid(type, NULL, &bits);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001042 if ((r = sshkey_generate(type, bits, &private)) != 0) {
markus@openbsd.org7da5df12017-05-30 14:16:41 +00001043 error("sshkey_generate failed: %s", ssh_err(r));
djm@openbsd.org853edbe2017-07-07 03:53:12 +00001044 goto failnext;
Damien Miller58f1baf2011-05-05 14:06:15 +10001045 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001046 if ((r = sshkey_from_private(private, &public)) != 0)
1047 fatal("sshkey_from_private failed: %s", ssh_err(r));
Damien Miller58f1baf2011-05-05 14:06:15 +10001048 snprintf(comment, sizeof comment, "%s@%s", pw->pw_name,
1049 hostname);
djm@openbsd.org853edbe2017-07-07 03:53:12 +00001050 if ((r = sshkey_save_private(private, prv_tmp, "",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001051 comment, use_new_format, new_format_cipher, rounds)) != 0) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00001052 error("Saving key \"%s\" failed: %s",
djm@openbsd.org853edbe2017-07-07 03:53:12 +00001053 prv_tmp, ssh_err(r));
1054 goto failnext;
Damien Miller58f1baf2011-05-05 14:06:15 +10001055 }
djm@openbsd.org853edbe2017-07-07 03:53:12 +00001056 if ((fd = mkstemp(pub_tmp)) == -1) {
1057 error("Could not save your public key in %s: %s",
1058 pub_tmp, strerror(errno));
1059 goto failnext;
Damien Miller58f1baf2011-05-05 14:06:15 +10001060 }
djm@openbsd.org853edbe2017-07-07 03:53:12 +00001061 (void)fchmod(fd, 0644);
Damien Miller58f1baf2011-05-05 14:06:15 +10001062 f = fdopen(fd, "w");
1063 if (f == NULL) {
djm@openbsd.org853edbe2017-07-07 03:53:12 +00001064 error("fdopen %s failed: %s", pub_tmp, strerror(errno));
doug@openbsd.org7df88182014-08-21 01:08:52 +00001065 close(fd);
djm@openbsd.org853edbe2017-07-07 03:53:12 +00001066 goto failnext;
Damien Miller58f1baf2011-05-05 14:06:15 +10001067 }
djm@openbsd.orgbb8b4422015-01-16 15:55:07 +00001068 if ((r = sshkey_write(public, f)) != 0) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00001069 error("write key failed: %s", ssh_err(r));
doug@openbsd.org7df88182014-08-21 01:08:52 +00001070 fclose(f);
djm@openbsd.org853edbe2017-07-07 03:53:12 +00001071 goto failnext;
Damien Miller58f1baf2011-05-05 14:06:15 +10001072 }
1073 fprintf(f, " %s\n", comment);
djm@openbsd.org853edbe2017-07-07 03:53:12 +00001074 if (ferror(f) != 0) {
1075 error("write key failed: %s", strerror(errno));
1076 fclose(f);
1077 goto failnext;
1078 }
1079 if (fclose(f) != 0) {
1080 error("key close failed: %s", strerror(errno));
1081 goto failnext;
1082 }
Damien Miller58f1baf2011-05-05 14:06:15 +10001083
djm@openbsd.org853edbe2017-07-07 03:53:12 +00001084 /* Rename temporary files to their permanent locations. */
1085 if (rename(pub_tmp, pub_file) != 0) {
1086 error("Unable to move %s into position: %s",
1087 pub_file, strerror(errno));
1088 goto failnext;
1089 }
1090 if (rename(prv_tmp, prv_file) != 0) {
1091 error("Unable to move %s into position: %s",
1092 key_types[i].path, strerror(errno));
1093 failnext:
1094 first = 0;
1095 goto next;
1096 }
1097 next:
1098 sshkey_free(private);
1099 sshkey_free(public);
1100 free(prv_tmp);
1101 free(pub_tmp);
1102 free(prv_file);
1103 free(pub_file);
Damien Miller58f1baf2011-05-05 14:06:15 +10001104 }
1105 if (first != 0)
1106 printf("\n");
1107}
1108
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001109struct known_hosts_ctx {
djm@openbsd.org2b3c3c72015-01-18 21:51:19 +00001110 const char *host; /* Hostname searched for in find/delete case */
1111 FILE *out; /* Output file, stdout for find_hosts case */
1112 int has_unhashed; /* When hashing, original had unhashed hosts */
1113 int found_key; /* For find/delete, host was found */
1114 int invalid; /* File contained invalid items; don't delete */
djm@openbsd.org851f8032019-01-23 04:16:22 +00001115 int hash_hosts; /* Hash hostnames as we go */
1116 int find_host; /* Search for specific hostname */
1117 int delete_host; /* Delete host from known_hosts */
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001118};
1119
1120static int
1121known_hosts_hash(struct hostkey_foreach_line *l, void *_ctx)
Damien Miller4b42d7f2005-03-01 21:48:35 +11001122{
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001123 struct known_hosts_ctx *ctx = (struct known_hosts_ctx *)_ctx;
1124 char *hashed, *cp, *hosts, *ohosts;
1125 int has_wild = l->hosts && strcspn(l->hosts, "*?!") != strlen(l->hosts);
dtucker@openbsd.org18501152017-03-06 02:03:20 +00001126 int was_hashed = l->hosts && l->hosts[0] == HASH_DELIM;
Darren Tucker0f7e9102008-06-08 12:54:29 +10001127
djm@openbsd.org6c5c9492015-02-16 22:08:57 +00001128 switch (l->status) {
1129 case HKF_STATUS_OK:
1130 case HKF_STATUS_MATCHED:
1131 /*
1132 * Don't hash hosts already already hashed, with wildcard
1133 * characters or a CA/revocation marker.
1134 */
djm@openbsd.org12d37672017-03-03 06:13:11 +00001135 if (was_hashed || has_wild || l->marker != MRK_NONE) {
djm@openbsd.org6c5c9492015-02-16 22:08:57 +00001136 fprintf(ctx->out, "%s\n", l->line);
djm@openbsd.org851f8032019-01-23 04:16:22 +00001137 if (has_wild && !ctx->find_host) {
dtucker@openbsd.orgd0723702017-03-06 00:44:51 +00001138 logit("%s:%lu: ignoring host name "
djm@openbsd.org3038a192015-04-17 13:19:22 +00001139 "with wildcard: %.64s", l->path,
djm@openbsd.org6c5c9492015-02-16 22:08:57 +00001140 l->linenum, l->hosts);
1141 }
1142 return 0;
1143 }
1144 /*
1145 * Split any comma-separated hostnames from the host list,
1146 * hash and store separately.
1147 */
1148 ohosts = hosts = xstrdup(l->hosts);
1149 while ((cp = strsep(&hosts, ",")) != NULL && *cp != '\0') {
djm@openbsd.orgdb259722017-03-10 04:26:06 +00001150 lowercase(cp);
djm@openbsd.org6c5c9492015-02-16 22:08:57 +00001151 if ((hashed = host_hash(cp, NULL, 0)) == NULL)
1152 fatal("hash_host failed");
1153 fprintf(ctx->out, "%s %s\n", hashed, l->rawkey);
1154 ctx->has_unhashed = 1;
1155 }
1156 free(ohosts);
1157 return 0;
1158 case HKF_STATUS_INVALID:
1159 /* Retain invalid lines, but mark file as invalid. */
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001160 ctx->invalid = 1;
dtucker@openbsd.orgd0723702017-03-06 00:44:51 +00001161 logit("%s:%lu: invalid line", l->path, l->linenum);
djm@openbsd.org6c5c9492015-02-16 22:08:57 +00001162 /* FALLTHROUGH */
1163 default:
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001164 fprintf(ctx->out, "%s\n", l->line);
1165 return 0;
Darren Tucker0f7e9102008-06-08 12:54:29 +10001166 }
djm@openbsd.org6c5c9492015-02-16 22:08:57 +00001167 /* NOTREACHED */
1168 return -1;
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001169}
1170
1171static int
1172known_hosts_find_delete(struct hostkey_foreach_line *l, void *_ctx)
1173{
1174 struct known_hosts_ctx *ctx = (struct known_hosts_ctx *)_ctx;
djm@openbsd.org4739e8d2015-05-21 12:01:19 +00001175 enum sshkey_fp_rep rep;
1176 int fptype;
1177 char *fp;
1178
1179 fptype = print_bubblebabble ? SSH_DIGEST_SHA1 : fingerprint_hash;
1180 rep = print_bubblebabble ? SSH_FP_BUBBLEBABBLE : SSH_FP_DEFAULT;
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001181
djm@openbsd.org6c5c9492015-02-16 22:08:57 +00001182 if (l->status == HKF_STATUS_MATCHED) {
djm@openbsd.org851f8032019-01-23 04:16:22 +00001183 if (ctx->delete_host) {
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001184 if (l->marker != MRK_NONE) {
1185 /* Don't remove CA and revocation lines */
1186 fprintf(ctx->out, "%s\n", l->line);
1187 } else {
1188 /*
1189 * Hostname matches and has no CA/revoke
1190 * marker, delete it by *not* writing the
1191 * line to ctx->out.
1192 */
1193 ctx->found_key = 1;
1194 if (!quiet)
dtucker@openbsd.orgd0723702017-03-06 00:44:51 +00001195 printf("# Host %s found: line %lu\n",
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001196 ctx->host, l->linenum);
1197 }
1198 return 0;
djm@openbsd.org851f8032019-01-23 04:16:22 +00001199 } else if (ctx->find_host) {
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001200 ctx->found_key = 1;
1201 if (!quiet) {
dtucker@openbsd.orgd0723702017-03-06 00:44:51 +00001202 printf("# Host %s found: line %lu %s\n",
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001203 ctx->host,
1204 l->linenum, l->marker == MRK_CA ? "CA" :
1205 (l->marker == MRK_REVOKE ? "REVOKED" : ""));
1206 }
djm@openbsd.org851f8032019-01-23 04:16:22 +00001207 if (ctx->hash_hosts)
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001208 known_hosts_hash(l, ctx);
djm@openbsd.org4739e8d2015-05-21 12:01:19 +00001209 else if (print_fingerprint) {
1210 fp = sshkey_fingerprint(l->key, fptype, rep);
djm@openbsd.orga287c5a2017-02-10 03:36:40 +00001211 mprintf("%s %s %s %s\n", ctx->host,
djm@openbsd.org4739e8d2015-05-21 12:01:19 +00001212 sshkey_type(l->key), fp, l->comment);
1213 free(fp);
1214 } else
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001215 fprintf(ctx->out, "%s\n", l->line);
1216 return 0;
1217 }
djm@openbsd.org851f8032019-01-23 04:16:22 +00001218 } else if (ctx->delete_host) {
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001219 /* Retain non-matching hosts when deleting */
1220 if (l->status == HKF_STATUS_INVALID) {
1221 ctx->invalid = 1;
dtucker@openbsd.orgd0723702017-03-06 00:44:51 +00001222 logit("%s:%lu: invalid line", l->path, l->linenum);
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001223 }
1224 fprintf(ctx->out, "%s\n", l->line);
1225 }
1226 return 0;
Damien Miller4b42d7f2005-03-01 21:48:35 +11001227}
1228
1229static void
djm@openbsd.org851f8032019-01-23 04:16:22 +00001230do_known_hosts(struct passwd *pw, const char *name, int find_host,
1231 int delete_host, int hash_hosts)
Damien Miller4b42d7f2005-03-01 21:48:35 +11001232{
deraadt@openbsd.orgd2099de2015-01-19 00:32:54 +00001233 char *cp, tmp[PATH_MAX], old[PATH_MAX];
djm@openbsd.org2b3c3c72015-01-18 21:51:19 +00001234 int r, fd, oerrno, inplace = 0;
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001235 struct known_hosts_ctx ctx;
djm@openbsd.org4739e8d2015-05-21 12:01:19 +00001236 u_int foreach_options;
Damien Miller4b42d7f2005-03-01 21:48:35 +11001237
1238 if (!have_identity) {
1239 cp = tilde_expand_filename(_PATH_SSH_USER_HOSTFILE, pw->pw_uid);
1240 if (strlcpy(identity_file, cp, sizeof(identity_file)) >=
1241 sizeof(identity_file))
1242 fatal("Specified known hosts path too long");
Darren Tuckera627d422013-06-02 07:31:17 +10001243 free(cp);
Damien Miller4b42d7f2005-03-01 21:48:35 +11001244 have_identity = 1;
1245 }
Damien Miller4b42d7f2005-03-01 21:48:35 +11001246
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001247 memset(&ctx, 0, sizeof(ctx));
1248 ctx.out = stdout;
1249 ctx.host = name;
djm@openbsd.org851f8032019-01-23 04:16:22 +00001250 ctx.hash_hosts = hash_hosts;
1251 ctx.find_host = find_host;
1252 ctx.delete_host = delete_host;
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001253
Damien Miller4b42d7f2005-03-01 21:48:35 +11001254 /*
1255 * Find hosts goes to stdout, hash and deletions happen in-place
1256 * A corner case is ssh-keygen -HF foo, which should go to stdout
1257 */
1258 if (!find_host && (hash_hosts || delete_host)) {
1259 if (strlcpy(tmp, identity_file, sizeof(tmp)) >= sizeof(tmp) ||
1260 strlcat(tmp, ".XXXXXXXXXX", sizeof(tmp)) >= sizeof(tmp) ||
1261 strlcpy(old, identity_file, sizeof(old)) >= sizeof(old) ||
1262 strlcat(old, ".old", sizeof(old)) >= sizeof(old))
1263 fatal("known_hosts path too long");
1264 umask(077);
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001265 if ((fd = mkstemp(tmp)) == -1)
Damien Miller4b42d7f2005-03-01 21:48:35 +11001266 fatal("mkstemp: %s", strerror(errno));
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001267 if ((ctx.out = fdopen(fd, "w")) == NULL) {
1268 oerrno = errno;
Damien Miller4b42d7f2005-03-01 21:48:35 +11001269 unlink(tmp);
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001270 fatal("fdopen: %s", strerror(oerrno));
Damien Miller4b42d7f2005-03-01 21:48:35 +11001271 }
djm@openbsd.org2b3c3c72015-01-18 21:51:19 +00001272 inplace = 1;
Damien Miller4b42d7f2005-03-01 21:48:35 +11001273 }
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001274 /* XXX support identity_file == "-" for stdin */
djm@openbsd.org4739e8d2015-05-21 12:01:19 +00001275 foreach_options = find_host ? HKF_WANT_MATCH : 0;
1276 foreach_options |= print_fingerprint ? HKF_WANT_PARSE_KEY : 0;
djm@openbsd.org01b048c2018-06-01 04:21:29 +00001277 if ((r = hostkeys_foreach(identity_file, (find_host || !hash_hosts) ?
djm@openbsd.org3e088aa2018-06-01 03:51:34 +00001278 known_hosts_find_delete : known_hosts_hash, &ctx, name, NULL,
1279 foreach_options)) != 0) {
deraadt@openbsd.org6da413c2015-11-28 06:50:52 +00001280 if (inplace)
1281 unlink(tmp);
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001282 fatal("%s: hostkeys_foreach failed: %s", __func__, ssh_err(r));
deraadt@openbsd.org6da413c2015-11-28 06:50:52 +00001283 }
Damien Miller4b42d7f2005-03-01 21:48:35 +11001284
djm@openbsd.org2b3c3c72015-01-18 21:51:19 +00001285 if (inplace)
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001286 fclose(ctx.out);
Damien Miller0a80ca12010-02-27 07:55:05 +11001287
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001288 if (ctx.invalid) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00001289 error("%s is not a valid known_hosts file.", identity_file);
djm@openbsd.org2b3c3c72015-01-18 21:51:19 +00001290 if (inplace) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00001291 error("Not replacing existing known_hosts "
1292 "file because of errors");
Damien Miller4b42d7f2005-03-01 21:48:35 +11001293 unlink(tmp);
1294 }
1295 exit(1);
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001296 } else if (delete_host && !ctx.found_key) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00001297 logit("Host %s not found in %s", name, identity_file);
djm@openbsd.orgc8376432015-08-19 23:17:51 +00001298 if (inplace)
1299 unlink(tmp);
djm@openbsd.org2b3c3c72015-01-18 21:51:19 +00001300 } else if (inplace) {
Damien Miller4b42d7f2005-03-01 21:48:35 +11001301 /* Backup existing file */
1302 if (unlink(old) == -1 && errno != ENOENT)
1303 fatal("unlink %.100s: %s", old, strerror(errno));
1304 if (link(identity_file, old) == -1)
1305 fatal("link %.100s to %.100s: %s", identity_file, old,
1306 strerror(errno));
1307 /* Move new one into place */
1308 if (rename(tmp, identity_file) == -1) {
1309 error("rename\"%s\" to \"%s\": %s", tmp, identity_file,
1310 strerror(errno));
1311 unlink(tmp);
1312 unlink(old);
1313 exit(1);
1314 }
1315
djm@openbsd.org3038a192015-04-17 13:19:22 +00001316 printf("%s updated.\n", identity_file);
1317 printf("Original contents retained as %s\n", old);
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001318 if (ctx.has_unhashed) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00001319 logit("WARNING: %s contains unhashed entries", old);
1320 logit("Delete this file to ensure privacy "
1321 "of hostnames");
Damien Miller4b42d7f2005-03-01 21:48:35 +11001322 }
1323 }
1324
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001325 exit (find_host && !ctx.found_key);
Damien Miller4b42d7f2005-03-01 21:48:35 +11001326}
1327
Damien Miller95def091999-11-25 00:26:21 +11001328/*
1329 * Perform changing a passphrase. The argument is the passwd structure
1330 * for the current user.
1331 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001332static void
Damien Miller10f6f6b1999-11-17 17:29:08 +11001333do_change_passphrase(struct passwd *pw)
1334{
Damien Miller95def091999-11-25 00:26:21 +11001335 char *comment;
1336 char *old_passphrase, *passphrase1, *passphrase2;
1337 struct stat st;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001338 struct sshkey *private;
1339 int r;
Damien Miller10f6f6b1999-11-17 17:29:08 +11001340
Damien Miller95def091999-11-25 00:26:21 +11001341 if (!have_identity)
1342 ask_filename(pw, "Enter file in which the key is");
djm@openbsd.org3038a192015-04-17 13:19:22 +00001343 if (stat(identity_file, &st) < 0)
1344 fatal("%s: %s", identity_file, strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +11001345 /* Try to load the file with empty passphrase. */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001346 r = sshkey_load_private(identity_file, "", &private, &comment);
1347 if (r == SSH_ERR_KEY_WRONG_PASSPHRASE) {
Damien Miller95def091999-11-25 00:26:21 +11001348 if (identity_passphrase)
1349 old_passphrase = xstrdup(identity_passphrase);
1350 else
Ben Lindstrom949974b2001-06-25 05:20:31 +00001351 old_passphrase =
1352 read_passphrase("Enter old passphrase: ",
1353 RP_ALLOW_STDIN);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001354 r = sshkey_load_private(identity_file, old_passphrase,
1355 &private, &comment);
Damien Millera5103f42014-02-04 11:20:14 +11001356 explicit_bzero(old_passphrase, strlen(old_passphrase));
Darren Tuckera627d422013-06-02 07:31:17 +10001357 free(old_passphrase);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001358 if (r != 0)
1359 goto badkey;
1360 } else if (r != 0) {
1361 badkey:
djm@openbsd.org3038a192015-04-17 13:19:22 +00001362 fatal("Failed to load key %s: %s", identity_file, ssh_err(r));
Damien Miller95def091999-11-25 00:26:21 +11001363 }
djm@openbsd.orgf43d1722015-02-26 20:45:47 +00001364 if (comment)
djm@openbsd.orga287c5a2017-02-10 03:36:40 +00001365 mprintf("Key has comment '%s'\n", comment);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001366
Damien Miller95def091999-11-25 00:26:21 +11001367 /* Ask the new passphrase (twice). */
1368 if (identity_new_passphrase) {
1369 passphrase1 = xstrdup(identity_new_passphrase);
1370 passphrase2 = NULL;
1371 } else {
1372 passphrase1 =
Ben Lindstrom949974b2001-06-25 05:20:31 +00001373 read_passphrase("Enter new passphrase (empty for no "
1374 "passphrase): ", RP_ALLOW_STDIN);
1375 passphrase2 = read_passphrase("Enter same passphrase again: ",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001376 RP_ALLOW_STDIN);
Damien Miller95def091999-11-25 00:26:21 +11001377
1378 /* Verify that they are the same. */
1379 if (strcmp(passphrase1, passphrase2) != 0) {
Damien Millera5103f42014-02-04 11:20:14 +11001380 explicit_bzero(passphrase1, strlen(passphrase1));
1381 explicit_bzero(passphrase2, strlen(passphrase2));
Darren Tuckera627d422013-06-02 07:31:17 +10001382 free(passphrase1);
1383 free(passphrase2);
Damien Miller95def091999-11-25 00:26:21 +11001384 printf("Pass phrases do not match. Try again.\n");
1385 exit(1);
1386 }
1387 /* Destroy the other copy. */
Damien Millera5103f42014-02-04 11:20:14 +11001388 explicit_bzero(passphrase2, strlen(passphrase2));
Darren Tuckera627d422013-06-02 07:31:17 +10001389 free(passphrase2);
Damien Miller95def091999-11-25 00:26:21 +11001390 }
1391
1392 /* Save the file using the new passphrase. */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001393 if ((r = sshkey_save_private(private, identity_file, passphrase1,
1394 comment, use_new_format, new_format_cipher, rounds)) != 0) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00001395 error("Saving key \"%s\" failed: %s.",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001396 identity_file, ssh_err(r));
Damien Millera5103f42014-02-04 11:20:14 +11001397 explicit_bzero(passphrase1, strlen(passphrase1));
Darren Tuckera627d422013-06-02 07:31:17 +10001398 free(passphrase1);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001399 sshkey_free(private);
Darren Tuckera627d422013-06-02 07:31:17 +10001400 free(comment);
Damien Miller95def091999-11-25 00:26:21 +11001401 exit(1);
1402 }
1403 /* Destroy the passphrase and the copy of the key in memory. */
Damien Millera5103f42014-02-04 11:20:14 +11001404 explicit_bzero(passphrase1, strlen(passphrase1));
Darren Tuckera627d422013-06-02 07:31:17 +10001405 free(passphrase1);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001406 sshkey_free(private); /* Destroys contents */
Darren Tuckera627d422013-06-02 07:31:17 +10001407 free(comment);
Damien Miller95def091999-11-25 00:26:21 +11001408
1409 printf("Your identification has been saved with the new passphrase.\n");
1410 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001411}
1412
Damien Miller37876e92003-05-15 10:19:46 +10001413/*
1414 * Print the SSHFP RR.
1415 */
Damien Millercb314822006-03-26 13:48:01 +11001416static int
djm@openbsd.org851f8032019-01-23 04:16:22 +00001417do_print_resource_record(struct passwd *pw, char *fname, char *hname,
1418 int print_generic)
Damien Miller37876e92003-05-15 10:19:46 +10001419{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001420 struct sshkey *public;
Damien Miller37876e92003-05-15 10:19:46 +10001421 char *comment = NULL;
1422 struct stat st;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001423 int r;
Damien Miller37876e92003-05-15 10:19:46 +10001424
Damien Millercb314822006-03-26 13:48:01 +11001425 if (fname == NULL)
Damien Miller5bb88332013-07-18 16:13:37 +10001426 fatal("%s: no filename", __func__);
Damien Millercb314822006-03-26 13:48:01 +11001427 if (stat(fname, &st) < 0) {
1428 if (errno == ENOENT)
1429 return 0;
djm@openbsd.org3038a192015-04-17 13:19:22 +00001430 fatal("%s: %s", fname, strerror(errno));
Damien Miller37876e92003-05-15 10:19:46 +10001431 }
djm@openbsd.org3038a192015-04-17 13:19:22 +00001432 if ((r = sshkey_load_public(fname, &public, &comment)) != 0)
1433 fatal("Failed to read v2 public key from \"%s\": %s.",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001434 fname, ssh_err(r));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001435 export_dns_rr(hname, public, stdout, print_generic);
1436 sshkey_free(public);
1437 free(comment);
1438 return 1;
Damien Miller37876e92003-05-15 10:19:46 +10001439}
Damien Miller37876e92003-05-15 10:19:46 +10001440
Damien Miller95def091999-11-25 00:26:21 +11001441/*
1442 * Change the comment of a private key file.
1443 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001444static void
djm@openbsd.org851f8032019-01-23 04:16:22 +00001445do_change_comment(struct passwd *pw, const char *identity_comment)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001446{
Ben Lindstrom5fc62702001-03-09 18:19:24 +00001447 char new_comment[1024], *comment, *passphrase;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001448 struct sshkey *private;
1449 struct sshkey *public;
Damien Miller95def091999-11-25 00:26:21 +11001450 struct stat st;
1451 FILE *f;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001452 int r, fd;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001453
Damien Miller95def091999-11-25 00:26:21 +11001454 if (!have_identity)
1455 ask_filename(pw, "Enter file in which the key is");
djm@openbsd.org3038a192015-04-17 13:19:22 +00001456 if (stat(identity_file, &st) < 0)
1457 fatal("%s: %s", identity_file, strerror(errno));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001458 if ((r = sshkey_load_private(identity_file, "",
1459 &private, &comment)) == 0)
1460 passphrase = xstrdup("");
djm@openbsd.org3038a192015-04-17 13:19:22 +00001461 else if (r != SSH_ERR_KEY_WRONG_PASSPHRASE)
1462 fatal("Cannot load private key \"%s\": %s.",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001463 identity_file, ssh_err(r));
djm@openbsd.org3038a192015-04-17 13:19:22 +00001464 else {
Damien Miller95def091999-11-25 00:26:21 +11001465 if (identity_passphrase)
1466 passphrase = xstrdup(identity_passphrase);
1467 else if (identity_new_passphrase)
1468 passphrase = xstrdup(identity_new_passphrase);
1469 else
Ben Lindstrom949974b2001-06-25 05:20:31 +00001470 passphrase = read_passphrase("Enter passphrase: ",
1471 RP_ALLOW_STDIN);
Damien Miller95def091999-11-25 00:26:21 +11001472 /* Try to load using the passphrase. */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001473 if ((r = sshkey_load_private(identity_file, passphrase,
1474 &private, &comment)) != 0) {
Damien Millera5103f42014-02-04 11:20:14 +11001475 explicit_bzero(passphrase, strlen(passphrase));
Darren Tuckera627d422013-06-02 07:31:17 +10001476 free(passphrase);
djm@openbsd.org3038a192015-04-17 13:19:22 +00001477 fatal("Cannot load private key \"%s\": %s.",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001478 identity_file, ssh_err(r));
Damien Miller95def091999-11-25 00:26:21 +11001479 }
1480 }
halex@openbsd.org4d906252015-11-20 23:04:01 +00001481
markus@openbsd.org1b11ea72018-02-23 15:58:37 +00001482 if (private->type != KEY_ED25519 && private->type != KEY_XMSS &&
1483 !use_new_format) {
djm@openbsd.org873d3e72017-04-30 23:18:44 +00001484 error("Comments are only supported for keys stored in "
halex@openbsd.org4d906252015-11-20 23:04:01 +00001485 "the new format (-o).");
tobias@openbsd.org704d8c82015-03-31 11:06:49 +00001486 explicit_bzero(passphrase, strlen(passphrase));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001487 sshkey_free(private);
Ben Lindstromd0fca422001-03-26 13:44:06 +00001488 exit(1);
Damien Miller9f0f5c62001-12-21 14:45:46 +11001489 }
millert@openbsd.orge40269b2017-02-08 20:32:43 +00001490 if (comment)
lum@openbsd.org410b2312019-05-29 08:30:26 +00001491 printf("Old comment: %s\n", comment);
millert@openbsd.orge40269b2017-02-08 20:32:43 +00001492 else
lum@openbsd.org410b2312019-05-29 08:30:26 +00001493 printf("No existing comment\n");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001494
Damien Miller95def091999-11-25 00:26:21 +11001495 if (identity_comment) {
1496 strlcpy(new_comment, identity_comment, sizeof(new_comment));
1497 } else {
lum@openbsd.org410b2312019-05-29 08:30:26 +00001498 printf("New comment: ");
Damien Miller95def091999-11-25 00:26:21 +11001499 fflush(stdout);
1500 if (!fgets(new_comment, sizeof(new_comment), stdin)) {
Damien Millera5103f42014-02-04 11:20:14 +11001501 explicit_bzero(passphrase, strlen(passphrase));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001502 sshkey_free(private);
Damien Miller95def091999-11-25 00:26:21 +11001503 exit(1);
1504 }
Damien Miller14b017d2007-09-17 16:09:15 +10001505 new_comment[strcspn(new_comment, "\n")] = '\0';
Damien Miller95def091999-11-25 00:26:21 +11001506 }
lum@openbsd.org410b2312019-05-29 08:30:26 +00001507 if (comment != NULL && strcmp(comment, new_comment) == 0) {
1508 printf("No change to comment\n");
1509 free(passphrase);
1510 sshkey_free(private);
1511 free(comment);
1512 exit(0);
1513 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001514
Damien Miller95def091999-11-25 00:26:21 +11001515 /* Save the file using the new passphrase. */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001516 if ((r = sshkey_save_private(private, identity_file, passphrase,
1517 new_comment, use_new_format, new_format_cipher, rounds)) != 0) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00001518 error("Saving key \"%s\" failed: %s",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001519 identity_file, ssh_err(r));
Damien Millera5103f42014-02-04 11:20:14 +11001520 explicit_bzero(passphrase, strlen(passphrase));
Darren Tuckera627d422013-06-02 07:31:17 +10001521 free(passphrase);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001522 sshkey_free(private);
Darren Tuckera627d422013-06-02 07:31:17 +10001523 free(comment);
Damien Miller95def091999-11-25 00:26:21 +11001524 exit(1);
1525 }
Damien Millera5103f42014-02-04 11:20:14 +11001526 explicit_bzero(passphrase, strlen(passphrase));
Darren Tuckera627d422013-06-02 07:31:17 +10001527 free(passphrase);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001528 if ((r = sshkey_from_private(private, &public)) != 0)
markus@openbsd.org7da5df12017-05-30 14:16:41 +00001529 fatal("sshkey_from_private failed: %s", ssh_err(r));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001530 sshkey_free(private);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001531
Damien Miller95def091999-11-25 00:26:21 +11001532 strlcat(identity_file, ".pub", sizeof(identity_file));
Ben Lindstrom5fc62702001-03-09 18:19:24 +00001533 fd = open(identity_file, O_WRONLY | O_CREAT | O_TRUNC, 0644);
djm@openbsd.org3038a192015-04-17 13:19:22 +00001534 if (fd == -1)
1535 fatal("Could not save your public key in %s", identity_file);
Ben Lindstrom5fc62702001-03-09 18:19:24 +00001536 f = fdopen(fd, "w");
djm@openbsd.org3038a192015-04-17 13:19:22 +00001537 if (f == NULL)
1538 fatal("fdopen %s failed: %s", identity_file, strerror(errno));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001539 if ((r = sshkey_write(public, f)) != 0)
djm@openbsd.org3038a192015-04-17 13:19:22 +00001540 fatal("write key failed: %s", ssh_err(r));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001541 sshkey_free(public);
Damien Millereba71ba2000-04-29 23:57:08 +10001542 fprintf(f, " %s\n", new_comment);
Damien Miller95def091999-11-25 00:26:21 +11001543 fclose(f);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001544
Darren Tuckera627d422013-06-02 07:31:17 +10001545 free(comment);
Damien Miller95def091999-11-25 00:26:21 +11001546
lum@openbsd.org410b2312019-05-29 08:30:26 +00001547 if (strlen(new_comment) > 0)
1548 printf("Comment '%s' applied\n", new_comment);
1549 else
1550 printf("Comment removed\n");
1551
Damien Miller95def091999-11-25 00:26:21 +11001552 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001553}
1554
Damien Miller0a80ca12010-02-27 07:55:05 +11001555static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001556add_flag_option(struct sshbuf *c, const char *name)
Damien Miller0a80ca12010-02-27 07:55:05 +11001557{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001558 int r;
1559
Damien Miller0a80ca12010-02-27 07:55:05 +11001560 debug3("%s: %s", __func__, name);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001561 if ((r = sshbuf_put_cstring(c, name)) != 0 ||
1562 (r = sshbuf_put_string(c, NULL, 0)) != 0)
1563 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Miller0a80ca12010-02-27 07:55:05 +11001564}
1565
1566static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001567add_string_option(struct sshbuf *c, const char *name, const char *value)
Damien Miller0a80ca12010-02-27 07:55:05 +11001568{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001569 struct sshbuf *b;
1570 int r;
Damien Miller0a80ca12010-02-27 07:55:05 +11001571
1572 debug3("%s: %s=%s", __func__, name, value);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001573 if ((b = sshbuf_new()) == NULL)
1574 fatal("%s: sshbuf_new failed", __func__);
1575 if ((r = sshbuf_put_cstring(b, value)) != 0 ||
1576 (r = sshbuf_put_cstring(c, name)) != 0 ||
1577 (r = sshbuf_put_stringb(c, b)) != 0)
1578 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Miller0a80ca12010-02-27 07:55:05 +11001579
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001580 sshbuf_free(b);
Damien Miller0a80ca12010-02-27 07:55:05 +11001581}
1582
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001583#define OPTIONS_CRITICAL 1
1584#define OPTIONS_EXTENSIONS 2
Damien Miller0a80ca12010-02-27 07:55:05 +11001585static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001586prepare_options_buf(struct sshbuf *c, int which)
Damien Miller0a80ca12010-02-27 07:55:05 +11001587{
djm@openbsd.org249516e2017-04-29 04:12:25 +00001588 size_t i;
1589
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001590 sshbuf_reset(c);
Damien Miller1da63882010-08-05 13:03:51 +10001591 if ((which & OPTIONS_CRITICAL) != 0 &&
1592 certflags_command != NULL)
1593 add_string_option(c, "force-command", certflags_command);
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001594 if ((which & OPTIONS_EXTENSIONS) != 0 &&
Damien Miller2ce12ef2011-05-05 14:17:18 +10001595 (certflags_flags & CERTOPT_X_FWD) != 0)
1596 add_flag_option(c, "permit-X11-forwarding");
1597 if ((which & OPTIONS_EXTENSIONS) != 0 &&
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001598 (certflags_flags & CERTOPT_AGENT_FWD) != 0)
Damien Miller4e270b02010-04-16 15:56:21 +10001599 add_flag_option(c, "permit-agent-forwarding");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001600 if ((which & OPTIONS_EXTENSIONS) != 0 &&
1601 (certflags_flags & CERTOPT_PORT_FWD) != 0)
Damien Miller4e270b02010-04-16 15:56:21 +10001602 add_flag_option(c, "permit-port-forwarding");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001603 if ((which & OPTIONS_EXTENSIONS) != 0 &&
1604 (certflags_flags & CERTOPT_PTY) != 0)
Damien Miller4e270b02010-04-16 15:56:21 +10001605 add_flag_option(c, "permit-pty");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001606 if ((which & OPTIONS_EXTENSIONS) != 0 &&
1607 (certflags_flags & CERTOPT_USER_RC) != 0)
Damien Miller4e270b02010-04-16 15:56:21 +10001608 add_flag_option(c, "permit-user-rc");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001609 if ((which & OPTIONS_CRITICAL) != 0 &&
1610 certflags_src_addr != NULL)
1611 add_string_option(c, "source-address", certflags_src_addr);
djm@openbsd.org249516e2017-04-29 04:12:25 +00001612 for (i = 0; i < ncert_userext; i++) {
1613 if ((cert_userext[i].crit && (which & OPTIONS_EXTENSIONS)) ||
1614 (!cert_userext[i].crit && (which & OPTIONS_CRITICAL)))
1615 continue;
1616 if (cert_userext[i].val == NULL)
1617 add_flag_option(c, cert_userext[i].key);
1618 else {
1619 add_string_option(c, cert_userext[i].key,
1620 cert_userext[i].val);
1621 }
1622 }
Damien Miller0a80ca12010-02-27 07:55:05 +11001623}
1624
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001625static struct sshkey *
Damien Miller757f34e2010-08-05 13:05:31 +10001626load_pkcs11_key(char *path)
1627{
1628#ifdef ENABLE_PKCS11
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001629 struct sshkey **keys = NULL, *public, *private = NULL;
1630 int r, i, nkeys;
Damien Miller757f34e2010-08-05 13:05:31 +10001631
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001632 if ((r = sshkey_load_public(path, &public, NULL)) != 0)
1633 fatal("Couldn't load CA public key \"%s\": %s",
1634 path, ssh_err(r));
Damien Miller757f34e2010-08-05 13:05:31 +10001635
1636 nkeys = pkcs11_add_provider(pkcs11provider, identity_passphrase, &keys);
1637 debug3("%s: %d keys", __func__, nkeys);
1638 if (nkeys <= 0)
1639 fatal("cannot read public key from pkcs11");
1640 for (i = 0; i < nkeys; i++) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001641 if (sshkey_equal_public(public, keys[i])) {
Damien Miller757f34e2010-08-05 13:05:31 +10001642 private = keys[i];
1643 continue;
1644 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001645 sshkey_free(keys[i]);
Damien Miller757f34e2010-08-05 13:05:31 +10001646 }
Darren Tuckera627d422013-06-02 07:31:17 +10001647 free(keys);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001648 sshkey_free(public);
Damien Miller757f34e2010-08-05 13:05:31 +10001649 return private;
1650#else
1651 fatal("no pkcs11 support");
1652#endif /* ENABLE_PKCS11 */
1653}
1654
djm@openbsd.orga98339e2017-06-28 01:09:22 +00001655/* Signer for sshkey_certify_custom that uses the agent */
1656static int
1657agent_signer(const struct sshkey *key, u_char **sigp, size_t *lenp,
1658 const u_char *data, size_t datalen,
1659 const char *alg, u_int compat, void *ctx)
1660{
1661 int *agent_fdp = (int *)ctx;
1662
1663 return ssh_agent_sign(*agent_fdp, key, sigp, lenp,
1664 data, datalen, alg, compat);
1665}
1666
Damien Miller0a80ca12010-02-27 07:55:05 +11001667static void
djm@openbsd.org851f8032019-01-23 04:16:22 +00001668do_ca_sign(struct passwd *pw, const char *ca_key_path, int prefer_agent,
djm@openbsd.orgbe063942019-01-23 04:51:02 +00001669 unsigned long long cert_serial, int cert_serial_autoinc,
1670 int argc, char **argv)
Damien Miller0a80ca12010-02-27 07:55:05 +11001671{
djm@openbsd.orga98339e2017-06-28 01:09:22 +00001672 int r, i, fd, found, agent_fd = -1;
Damien Miller0a80ca12010-02-27 07:55:05 +11001673 u_int n;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001674 struct sshkey *ca, *public;
djm@openbsd.org499cf362015-11-19 01:08:55 +00001675 char valid[64], *otmp, *tmp, *cp, *out, *comment, **plist = NULL;
Damien Miller0a80ca12010-02-27 07:55:05 +11001676 FILE *f;
djm@openbsd.orga98339e2017-06-28 01:09:22 +00001677 struct ssh_identitylist *agent_ids;
1678 size_t j;
Damien Miller4e270b02010-04-16 15:56:21 +10001679
Damien Miller1f0311c2014-05-15 14:24:09 +10001680#ifdef ENABLE_PKCS11
Damien Miller757f34e2010-08-05 13:05:31 +10001681 pkcs11_init(1);
Damien Miller1f0311c2014-05-15 14:24:09 +10001682#endif
Damien Miller757f34e2010-08-05 13:05:31 +10001683 tmp = tilde_expand_filename(ca_key_path, pw->pw_uid);
1684 if (pkcs11provider != NULL) {
djm@openbsd.orga98339e2017-06-28 01:09:22 +00001685 /* If a PKCS#11 token was specified then try to use it */
Damien Miller757f34e2010-08-05 13:05:31 +10001686 if ((ca = load_pkcs11_key(tmp)) == NULL)
1687 fatal("No PKCS#11 key matching %s found", ca_key_path);
djm@openbsd.orga98339e2017-06-28 01:09:22 +00001688 } else if (prefer_agent) {
1689 /*
1690 * Agent signature requested. Try to use agent after making
1691 * sure the public key specified is actually present in the
1692 * agent.
1693 */
1694 if ((r = sshkey_load_public(tmp, &ca, NULL)) != 0)
1695 fatal("Cannot load CA public key %s: %s",
1696 tmp, ssh_err(r));
1697 if ((r = ssh_get_authentication_socket(&agent_fd)) != 0)
1698 fatal("Cannot use public key for CA signature: %s",
1699 ssh_err(r));
1700 if ((r = ssh_fetch_identitylist(agent_fd, &agent_ids)) != 0)
1701 fatal("Retrieve agent key list: %s", ssh_err(r));
1702 found = 0;
1703 for (j = 0; j < agent_ids->nkeys; j++) {
1704 if (sshkey_equal(ca, agent_ids->keys[j])) {
1705 found = 1;
1706 break;
1707 }
1708 }
1709 if (!found)
1710 fatal("CA key %s not found in agent", tmp);
1711 ssh_free_identitylist(agent_ids);
1712 ca->flags |= SSHKEY_FLAG_EXT;
1713 } else {
1714 /* CA key is assumed to be a private key on the filesystem */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001715 ca = load_identity(tmp);
djm@openbsd.orga98339e2017-06-28 01:09:22 +00001716 }
Darren Tuckera627d422013-06-02 07:31:17 +10001717 free(tmp);
Damien Miller757f34e2010-08-05 13:05:31 +10001718
djm@openbsd.org57464e32016-05-02 09:36:42 +00001719 if (key_type_name != NULL &&
1720 sshkey_type_from_name(key_type_name) != ca->type) {
1721 fatal("CA key type %s doesn't match specified %s",
1722 sshkey_ssh_name(ca), key_type_name);
1723 }
1724
Damien Miller0a80ca12010-02-27 07:55:05 +11001725 for (i = 0; i < argc; i++) {
1726 /* Split list of principals */
1727 n = 0;
1728 if (cert_principals != NULL) {
1729 otmp = tmp = xstrdup(cert_principals);
1730 plist = NULL;
1731 for (; (cp = strsep(&tmp, ",")) != NULL; n++) {
deraadt@openbsd.org657a5fb2015-04-24 01:36:00 +00001732 plist = xreallocarray(plist, n + 1, sizeof(*plist));
Damien Miller0a80ca12010-02-27 07:55:05 +11001733 if (*(plist[n] = xstrdup(cp)) == '\0')
1734 fatal("Empty principal name");
1735 }
Darren Tuckera627d422013-06-02 07:31:17 +10001736 free(otmp);
Damien Miller0a80ca12010-02-27 07:55:05 +11001737 }
djm@openbsd.orgca613242018-02-10 05:48:46 +00001738 if (n > SSHKEY_CERT_MAX_PRINCIPALS)
1739 fatal("Too many certificate principals specified");
Damien Miller0a80ca12010-02-27 07:55:05 +11001740
1741 tmp = tilde_expand_filename(argv[i], pw->pw_uid);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001742 if ((r = sshkey_load_public(tmp, &public, &comment)) != 0)
1743 fatal("%s: unable to open \"%s\": %s",
1744 __func__, tmp, ssh_err(r));
Damien Millereb8b60e2010-08-31 22:41:14 +10001745 if (public->type != KEY_RSA && public->type != KEY_DSA &&
markus@openbsd.org1b11ea72018-02-23 15:58:37 +00001746 public->type != KEY_ECDSA && public->type != KEY_ED25519 &&
1747 public->type != KEY_XMSS)
Damien Miller0a80ca12010-02-27 07:55:05 +11001748 fatal("%s: key \"%s\" type %s cannot be certified",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001749 __func__, tmp, sshkey_type(public));
Damien Miller0a80ca12010-02-27 07:55:05 +11001750
1751 /* Prepare certificate to sign */
djm@openbsd.orgc28fc622015-07-03 03:43:18 +00001752 if ((r = sshkey_to_certified(public)) != 0)
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001753 fatal("Could not upgrade key %s to certificate: %s",
1754 tmp, ssh_err(r));
Damien Miller0a80ca12010-02-27 07:55:05 +11001755 public->cert->type = cert_key_type;
Damien Miller4e270b02010-04-16 15:56:21 +10001756 public->cert->serial = (u_int64_t)cert_serial;
Damien Miller0a80ca12010-02-27 07:55:05 +11001757 public->cert->key_id = xstrdup(cert_key_id);
1758 public->cert->nprincipals = n;
1759 public->cert->principals = plist;
1760 public->cert->valid_after = cert_valid_from;
1761 public->cert->valid_before = cert_valid_to;
djm@openbsd.orgc28fc622015-07-03 03:43:18 +00001762 prepare_options_buf(public->cert->critical, OPTIONS_CRITICAL);
1763 prepare_options_buf(public->cert->extensions,
1764 OPTIONS_EXTENSIONS);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001765 if ((r = sshkey_from_private(ca,
1766 &public->cert->signature_key)) != 0)
markus@openbsd.org7da5df12017-05-30 14:16:41 +00001767 fatal("sshkey_from_private (ca key): %s", ssh_err(r));
Damien Miller0a80ca12010-02-27 07:55:05 +11001768
djm@openbsd.orga98339e2017-06-28 01:09:22 +00001769 if (agent_fd != -1 && (ca->flags & SSHKEY_FLAG_EXT) != 0) {
1770 if ((r = sshkey_certify_custom(public, ca,
1771 key_type_name, agent_signer, &agent_fd)) != 0)
1772 fatal("Couldn't certify key %s via agent: %s",
1773 tmp, ssh_err(r));
1774 } else {
1775 if ((sshkey_certify(public, ca, key_type_name)) != 0)
1776 fatal("Couldn't certify key %s: %s",
1777 tmp, ssh_err(r));
1778 }
Damien Miller0a80ca12010-02-27 07:55:05 +11001779
1780 if ((cp = strrchr(tmp, '.')) != NULL && strcmp(cp, ".pub") == 0)
1781 *cp = '\0';
1782 xasprintf(&out, "%s-cert.pub", tmp);
Darren Tuckera627d422013-06-02 07:31:17 +10001783 free(tmp);
Damien Miller0a80ca12010-02-27 07:55:05 +11001784
1785 if ((fd = open(out, O_WRONLY|O_CREAT|O_TRUNC, 0644)) == -1)
1786 fatal("Could not open \"%s\" for writing: %s", out,
1787 strerror(errno));
1788 if ((f = fdopen(fd, "w")) == NULL)
1789 fatal("%s: fdopen: %s", __func__, strerror(errno));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001790 if ((r = sshkey_write(public, f)) != 0)
1791 fatal("Could not write certified key to %s: %s",
1792 out, ssh_err(r));
Damien Miller0a80ca12010-02-27 07:55:05 +11001793 fprintf(f, " %s\n", comment);
1794 fclose(f);
1795
Damien Miller4e270b02010-04-16 15:56:21 +10001796 if (!quiet) {
djm@openbsd.org964ab3e2015-11-19 01:12:32 +00001797 sshkey_format_cert_validity(public->cert,
djm@openbsd.org499cf362015-11-19 01:08:55 +00001798 valid, sizeof(valid));
Damien Miller4e270b02010-04-16 15:56:21 +10001799 logit("Signed %s key %s: id \"%s\" serial %llu%s%s "
djm@openbsd.org964ab3e2015-11-19 01:12:32 +00001800 "valid %s", sshkey_cert_type(public),
Damien Miller821de0a2011-01-11 17:20:29 +11001801 out, public->cert->key_id,
1802 (unsigned long long)public->cert->serial,
Damien Miller0a80ca12010-02-27 07:55:05 +11001803 cert_principals != NULL ? " for " : "",
1804 cert_principals != NULL ? cert_principals : "",
djm@openbsd.org499cf362015-11-19 01:08:55 +00001805 valid);
Damien Miller4e270b02010-04-16 15:56:21 +10001806 }
Damien Miller0a80ca12010-02-27 07:55:05 +11001807
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001808 sshkey_free(public);
Darren Tuckera627d422013-06-02 07:31:17 +10001809 free(out);
djm@openbsd.orgbe063942019-01-23 04:51:02 +00001810 if (cert_serial_autoinc)
1811 cert_serial++;
Damien Miller0a80ca12010-02-27 07:55:05 +11001812 }
Damien Miller1f0311c2014-05-15 14:24:09 +10001813#ifdef ENABLE_PKCS11
Damien Miller757f34e2010-08-05 13:05:31 +10001814 pkcs11_terminate();
Damien Miller1f0311c2014-05-15 14:24:09 +10001815#endif
Damien Miller0a80ca12010-02-27 07:55:05 +11001816 exit(0);
1817}
1818
1819static u_int64_t
1820parse_relative_time(const char *s, time_t now)
1821{
1822 int64_t mul, secs;
1823
1824 mul = *s == '-' ? -1 : 1;
1825
1826 if ((secs = convtime(s + 1)) == -1)
1827 fatal("Invalid relative certificate time %s", s);
1828 if (mul == -1 && secs > now)
1829 fatal("Certificate time %s cannot be represented", s);
1830 return now + (u_int64_t)(secs * mul);
1831}
1832
Damien Miller0a80ca12010-02-27 07:55:05 +11001833static void
1834parse_cert_times(char *timespec)
1835{
1836 char *from, *to;
1837 time_t now = time(NULL);
1838 int64_t secs;
1839
1840 /* +timespec relative to now */
1841 if (*timespec == '+' && strchr(timespec, ':') == NULL) {
1842 if ((secs = convtime(timespec + 1)) == -1)
1843 fatal("Invalid relative certificate life %s", timespec);
1844 cert_valid_to = now + secs;
1845 /*
1846 * Backdate certificate one minute to avoid problems on hosts
1847 * with poorly-synchronised clocks.
1848 */
1849 cert_valid_from = ((now - 59)/ 60) * 60;
1850 return;
1851 }
1852
1853 /*
1854 * from:to, where
djm@openbsd.org@openbsd.orgd52131a2017-11-03 05:14:04 +00001855 * from := [+-]timespec | YYYYMMDD | YYYYMMDDHHMMSS | "always"
1856 * to := [+-]timespec | YYYYMMDD | YYYYMMDDHHMMSS | "forever"
Damien Miller0a80ca12010-02-27 07:55:05 +11001857 */
1858 from = xstrdup(timespec);
1859 to = strchr(from, ':');
1860 if (to == NULL || from == to || *(to + 1) == '\0')
Damien Miller910f2092010-03-04 14:17:22 +11001861 fatal("Invalid certificate life specification %s", timespec);
Damien Miller0a80ca12010-02-27 07:55:05 +11001862 *to++ = '\0';
1863
1864 if (*from == '-' || *from == '+')
1865 cert_valid_from = parse_relative_time(from, now);
djm@openbsd.org@openbsd.orgd52131a2017-11-03 05:14:04 +00001866 else if (strcmp(from, "always") == 0)
1867 cert_valid_from = 0;
djm@openbsd.orgbf0fbf22018-03-12 00:52:01 +00001868 else if (parse_absolute_time(from, &cert_valid_from) != 0)
1869 fatal("Invalid from time \"%s\"", from);
Damien Miller0a80ca12010-02-27 07:55:05 +11001870
1871 if (*to == '-' || *to == '+')
Damien Miller5b01b0d2013-10-23 16:31:31 +11001872 cert_valid_to = parse_relative_time(to, now);
djm@openbsd.org@openbsd.orgd52131a2017-11-03 05:14:04 +00001873 else if (strcmp(to, "forever") == 0)
1874 cert_valid_to = ~(u_int64_t)0;
djm@openbsd.orgbf0fbf22018-03-12 00:52:01 +00001875 else if (parse_absolute_time(to, &cert_valid_to) != 0)
1876 fatal("Invalid to time \"%s\"", to);
Damien Miller0a80ca12010-02-27 07:55:05 +11001877
1878 if (cert_valid_to <= cert_valid_from)
1879 fatal("Empty certificate validity interval");
Darren Tuckera627d422013-06-02 07:31:17 +10001880 free(from);
Damien Miller0a80ca12010-02-27 07:55:05 +11001881}
1882
1883static void
Damien Miller4e270b02010-04-16 15:56:21 +10001884add_cert_option(char *opt)
Damien Miller0a80ca12010-02-27 07:55:05 +11001885{
djm@openbsd.org249516e2017-04-29 04:12:25 +00001886 char *val, *cp;
1887 int iscrit = 0;
Damien Miller0a80ca12010-02-27 07:55:05 +11001888
Damien Miller044f4a62011-05-05 14:14:08 +10001889 if (strcasecmp(opt, "clear") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001890 certflags_flags = 0;
Damien Miller0a80ca12010-02-27 07:55:05 +11001891 else if (strcasecmp(opt, "no-x11-forwarding") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001892 certflags_flags &= ~CERTOPT_X_FWD;
Damien Miller0a80ca12010-02-27 07:55:05 +11001893 else if (strcasecmp(opt, "permit-x11-forwarding") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001894 certflags_flags |= CERTOPT_X_FWD;
Damien Miller0a80ca12010-02-27 07:55:05 +11001895 else if (strcasecmp(opt, "no-agent-forwarding") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001896 certflags_flags &= ~CERTOPT_AGENT_FWD;
Damien Miller0a80ca12010-02-27 07:55:05 +11001897 else if (strcasecmp(opt, "permit-agent-forwarding") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001898 certflags_flags |= CERTOPT_AGENT_FWD;
Damien Miller0a80ca12010-02-27 07:55:05 +11001899 else if (strcasecmp(opt, "no-port-forwarding") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001900 certflags_flags &= ~CERTOPT_PORT_FWD;
Damien Miller0a80ca12010-02-27 07:55:05 +11001901 else if (strcasecmp(opt, "permit-port-forwarding") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001902 certflags_flags |= CERTOPT_PORT_FWD;
Damien Miller0a80ca12010-02-27 07:55:05 +11001903 else if (strcasecmp(opt, "no-pty") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001904 certflags_flags &= ~CERTOPT_PTY;
Damien Miller0a80ca12010-02-27 07:55:05 +11001905 else if (strcasecmp(opt, "permit-pty") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001906 certflags_flags |= CERTOPT_PTY;
Damien Miller0a80ca12010-02-27 07:55:05 +11001907 else if (strcasecmp(opt, "no-user-rc") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001908 certflags_flags &= ~CERTOPT_USER_RC;
Damien Miller0a80ca12010-02-27 07:55:05 +11001909 else if (strcasecmp(opt, "permit-user-rc") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001910 certflags_flags |= CERTOPT_USER_RC;
Damien Miller0a80ca12010-02-27 07:55:05 +11001911 else if (strncasecmp(opt, "force-command=", 14) == 0) {
1912 val = opt + 14;
1913 if (*val == '\0')
Damien Miller4e270b02010-04-16 15:56:21 +10001914 fatal("Empty force-command option");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001915 if (certflags_command != NULL)
Damien Miller0a80ca12010-02-27 07:55:05 +11001916 fatal("force-command already specified");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001917 certflags_command = xstrdup(val);
Damien Miller0a80ca12010-02-27 07:55:05 +11001918 } else if (strncasecmp(opt, "source-address=", 15) == 0) {
1919 val = opt + 15;
1920 if (*val == '\0')
Damien Miller4e270b02010-04-16 15:56:21 +10001921 fatal("Empty source-address option");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001922 if (certflags_src_addr != NULL)
Damien Miller0a80ca12010-02-27 07:55:05 +11001923 fatal("source-address already specified");
1924 if (addr_match_cidr_list(NULL, val) != 0)
1925 fatal("Invalid source-address list");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001926 certflags_src_addr = xstrdup(val);
djm@openbsd.org249516e2017-04-29 04:12:25 +00001927 } else if (strncasecmp(opt, "extension:", 10) == 0 ||
1928 (iscrit = (strncasecmp(opt, "critical:", 9) == 0))) {
1929 val = xstrdup(strchr(opt, ':') + 1);
1930 if ((cp = strchr(val, '=')) != NULL)
1931 *cp++ = '\0';
1932 cert_userext = xreallocarray(cert_userext, ncert_userext + 1,
1933 sizeof(*cert_userext));
1934 cert_userext[ncert_userext].key = val;
1935 cert_userext[ncert_userext].val = cp == NULL ?
1936 NULL : xstrdup(cp);
1937 cert_userext[ncert_userext].crit = iscrit;
1938 ncert_userext++;
Damien Miller0a80ca12010-02-27 07:55:05 +11001939 } else
Damien Miller4e270b02010-04-16 15:56:21 +10001940 fatal("Unsupported certificate option \"%s\"", opt);
Damien Miller0a80ca12010-02-27 07:55:05 +11001941}
1942
Ben Lindstrombba81212001-06-25 05:01:22 +00001943static void
djm@openbsd.orgc28fc622015-07-03 03:43:18 +00001944show_options(struct sshbuf *optbuf, int in_critical)
Damien Millerd834d352010-06-26 09:48:02 +10001945{
Damien Miller633de332014-05-15 13:48:26 +10001946 char *name, *arg;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001947 struct sshbuf *options, *option = NULL;
1948 int r;
Damien Millerd834d352010-06-26 09:48:02 +10001949
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001950 if ((options = sshbuf_fromb(optbuf)) == NULL)
1951 fatal("%s: sshbuf_fromb failed", __func__);
1952 while (sshbuf_len(options) != 0) {
1953 sshbuf_free(option);
1954 option = NULL;
1955 if ((r = sshbuf_get_cstring(options, &name, NULL)) != 0 ||
1956 (r = sshbuf_froms(options, &option)) != 0)
1957 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Millerd834d352010-06-26 09:48:02 +10001958 printf(" %s", name);
djm@openbsd.orgc28fc622015-07-03 03:43:18 +00001959 if (!in_critical &&
Damien Millerd834d352010-06-26 09:48:02 +10001960 (strcmp(name, "permit-X11-forwarding") == 0 ||
1961 strcmp(name, "permit-agent-forwarding") == 0 ||
1962 strcmp(name, "permit-port-forwarding") == 0 ||
1963 strcmp(name, "permit-pty") == 0 ||
1964 strcmp(name, "permit-user-rc") == 0))
1965 printf("\n");
djm@openbsd.orgc28fc622015-07-03 03:43:18 +00001966 else if (in_critical &&
Damien Millerd834d352010-06-26 09:48:02 +10001967 (strcmp(name, "force-command") == 0 ||
1968 strcmp(name, "source-address") == 0)) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001969 if ((r = sshbuf_get_cstring(option, &arg, NULL)) != 0)
1970 fatal("%s: buffer error: %s",
1971 __func__, ssh_err(r));
Damien Miller633de332014-05-15 13:48:26 +10001972 printf(" %s\n", arg);
1973 free(arg);
Damien Millerd834d352010-06-26 09:48:02 +10001974 } else {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001975 printf(" UNKNOWN OPTION (len %zu)\n",
1976 sshbuf_len(option));
1977 sshbuf_reset(option);
Damien Millerd834d352010-06-26 09:48:02 +10001978 }
Darren Tuckera627d422013-06-02 07:31:17 +10001979 free(name);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001980 if (sshbuf_len(option) != 0)
Damien Millerd834d352010-06-26 09:48:02 +10001981 fatal("Option corrupt: extra data at end");
1982 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001983 sshbuf_free(option);
1984 sshbuf_free(options);
Damien Millerd834d352010-06-26 09:48:02 +10001985}
1986
1987static void
djm@openbsd.org94bc0b72015-11-13 04:34:15 +00001988print_cert(struct sshkey *key)
Damien Millerf2b70ca2010-03-05 07:39:35 +11001989{
djm@openbsd.org499cf362015-11-19 01:08:55 +00001990 char valid[64], *key_fp, *ca_fp;
djm@openbsd.orgc28fc622015-07-03 03:43:18 +00001991 u_int i;
Damien Miller4e270b02010-04-16 15:56:21 +10001992
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001993 key_fp = sshkey_fingerprint(key, fingerprint_hash, SSH_FP_DEFAULT);
1994 ca_fp = sshkey_fingerprint(key->cert->signature_key,
djm@openbsd.org56d1c832014-12-21 22:27:55 +00001995 fingerprint_hash, SSH_FP_DEFAULT);
djm@openbsd.org9ce86c92015-01-28 22:36:00 +00001996 if (key_fp == NULL || ca_fp == NULL)
1997 fatal("%s: sshkey_fingerprint fail", __func__);
djm@openbsd.org499cf362015-11-19 01:08:55 +00001998 sshkey_format_cert_validity(key->cert, valid, sizeof(valid));
Damien Millerf2b70ca2010-03-05 07:39:35 +11001999
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002000 printf(" Type: %s %s certificate\n", sshkey_ssh_name(key),
2001 sshkey_cert_type(key));
2002 printf(" Public key: %s %s\n", sshkey_type(key), key_fp);
djm@openbsd.orga4fc2532018-10-19 03:12:42 +00002003 printf(" Signing CA: %s %s (using %s)\n",
2004 sshkey_type(key->cert->signature_key), ca_fp,
2005 key->cert->signature_type);
Damien Miller4e270b02010-04-16 15:56:21 +10002006 printf(" Key ID: \"%s\"\n", key->cert->key_id);
djm@openbsd.orgc28fc622015-07-03 03:43:18 +00002007 printf(" Serial: %llu\n", (unsigned long long)key->cert->serial);
djm@openbsd.org499cf362015-11-19 01:08:55 +00002008 printf(" Valid: %s\n", valid);
Damien Millerf2b70ca2010-03-05 07:39:35 +11002009 printf(" Principals: ");
2010 if (key->cert->nprincipals == 0)
2011 printf("(none)\n");
2012 else {
2013 for (i = 0; i < key->cert->nprincipals; i++)
2014 printf("\n %s",
2015 key->cert->principals[i]);
2016 printf("\n");
2017 }
Damien Miller4e270b02010-04-16 15:56:21 +10002018 printf(" Critical Options: ");
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002019 if (sshbuf_len(key->cert->critical) == 0)
Damien Millerf2b70ca2010-03-05 07:39:35 +11002020 printf("(none)\n");
2021 else {
2022 printf("\n");
djm@openbsd.orgc28fc622015-07-03 03:43:18 +00002023 show_options(key->cert->critical, 1);
Damien Millerf2b70ca2010-03-05 07:39:35 +11002024 }
djm@openbsd.orgc28fc622015-07-03 03:43:18 +00002025 printf(" Extensions: ");
2026 if (sshbuf_len(key->cert->extensions) == 0)
2027 printf("(none)\n");
2028 else {
2029 printf("\n");
2030 show_options(key->cert->extensions, 0);
Damien Miller4e270b02010-04-16 15:56:21 +10002031 }
djm@openbsd.org94bc0b72015-11-13 04:34:15 +00002032}
2033
2034static void
2035do_show_cert(struct passwd *pw)
2036{
2037 struct sshkey *key = NULL;
2038 struct stat st;
2039 int r, is_stdin = 0, ok = 0;
2040 FILE *f;
markus@openbsd.org7f906352018-06-06 18:29:18 +00002041 char *cp, *line = NULL;
djm@openbsd.org94bc0b72015-11-13 04:34:15 +00002042 const char *path;
markus@openbsd.org7f906352018-06-06 18:29:18 +00002043 size_t linesize = 0;
djm@openbsd.org1a31d022016-05-02 08:49:03 +00002044 u_long lnum = 0;
djm@openbsd.org94bc0b72015-11-13 04:34:15 +00002045
2046 if (!have_identity)
2047 ask_filename(pw, "Enter file in which the key is");
2048 if (strcmp(identity_file, "-") != 0 && stat(identity_file, &st) < 0)
2049 fatal("%s: %s: %s", __progname, identity_file, strerror(errno));
2050
2051 path = identity_file;
2052 if (strcmp(path, "-") == 0) {
2053 f = stdin;
2054 path = "(stdin)";
2055 is_stdin = 1;
2056 } else if ((f = fopen(identity_file, "r")) == NULL)
2057 fatal("fopen %s: %s", identity_file, strerror(errno));
2058
markus@openbsd.org7f906352018-06-06 18:29:18 +00002059 while (getline(&line, &linesize, f) != -1) {
2060 lnum++;
djm@openbsd.org94bc0b72015-11-13 04:34:15 +00002061 sshkey_free(key);
2062 key = NULL;
2063 /* Trim leading space and comments */
2064 cp = line + strspn(line, " \t");
2065 if (*cp == '#' || *cp == '\0')
2066 continue;
2067 if ((key = sshkey_new(KEY_UNSPEC)) == NULL)
markus@openbsd.org7da5df12017-05-30 14:16:41 +00002068 fatal("sshkey_new");
djm@openbsd.org94bc0b72015-11-13 04:34:15 +00002069 if ((r = sshkey_read(key, &cp)) != 0) {
2070 error("%s:%lu: invalid key: %s", path,
2071 lnum, ssh_err(r));
2072 continue;
2073 }
2074 if (!sshkey_is_cert(key)) {
2075 error("%s:%lu is not a certificate", path, lnum);
2076 continue;
2077 }
2078 ok = 1;
2079 if (!is_stdin && lnum == 1)
2080 printf("%s:\n", path);
2081 else
2082 printf("%s:%lu:\n", path, lnum);
2083 print_cert(key);
2084 }
markus@openbsd.org7f906352018-06-06 18:29:18 +00002085 free(line);
djm@openbsd.org94bc0b72015-11-13 04:34:15 +00002086 sshkey_free(key);
2087 fclose(f);
2088 exit(ok ? 0 : 1);
Damien Millerf2b70ca2010-03-05 07:39:35 +11002089}
2090
2091static void
Damien Millerf3747bf2013-01-18 11:44:04 +11002092load_krl(const char *path, struct ssh_krl **krlp)
2093{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002094 struct sshbuf *krlbuf;
2095 int r, fd;
Damien Millerf3747bf2013-01-18 11:44:04 +11002096
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002097 if ((krlbuf = sshbuf_new()) == NULL)
2098 fatal("sshbuf_new failed");
Damien Millerf3747bf2013-01-18 11:44:04 +11002099 if ((fd = open(path, O_RDONLY)) == -1)
2100 fatal("open %s: %s", path, strerror(errno));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002101 if ((r = sshkey_load_file(fd, krlbuf)) != 0)
2102 fatal("Unable to load KRL: %s", ssh_err(r));
Damien Millerf3747bf2013-01-18 11:44:04 +11002103 close(fd);
2104 /* XXX check sigs */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002105 if ((r = ssh_krl_from_blob(krlbuf, krlp, NULL, 0)) != 0 ||
Damien Millerf3747bf2013-01-18 11:44:04 +11002106 *krlp == NULL)
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002107 fatal("Invalid KRL file: %s", ssh_err(r));
2108 sshbuf_free(krlbuf);
Damien Millerf3747bf2013-01-18 11:44:04 +11002109}
2110
2111static void
djm@openbsd.org9405c622018-09-12 01:21:34 +00002112hash_to_blob(const char *cp, u_char **blobp, size_t *lenp,
2113 const char *file, u_long lnum)
2114{
2115 char *tmp;
2116 size_t tlen;
2117 struct sshbuf *b;
2118 int r;
2119
2120 if (strncmp(cp, "SHA256:", 7) != 0)
2121 fatal("%s:%lu: unsupported hash algorithm", file, lnum);
2122 cp += 7;
2123
2124 /*
2125 * OpenSSH base64 hashes omit trailing '='
2126 * characters; put them back for decode.
2127 */
2128 tlen = strlen(cp);
2129 tmp = xmalloc(tlen + 4 + 1);
2130 strlcpy(tmp, cp, tlen + 1);
2131 while ((tlen % 4) != 0) {
2132 tmp[tlen++] = '=';
2133 tmp[tlen] = '\0';
2134 }
2135 if ((b = sshbuf_new()) == NULL)
2136 fatal("%s: sshbuf_new failed", __func__);
2137 if ((r = sshbuf_b64tod(b, tmp)) != 0)
2138 fatal("%s:%lu: decode hash failed: %s", file, lnum, ssh_err(r));
2139 free(tmp);
2140 *lenp = sshbuf_len(b);
2141 *blobp = xmalloc(*lenp);
2142 memcpy(*blobp, sshbuf_ptr(b), *lenp);
2143 sshbuf_free(b);
2144}
2145
2146static void
djm@openbsd.org669aee92015-01-30 01:10:33 +00002147update_krl_from_file(struct passwd *pw, const char *file, int wild_ca,
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002148 const struct sshkey *ca, struct ssh_krl *krl)
Damien Millerf3747bf2013-01-18 11:44:04 +11002149{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002150 struct sshkey *key = NULL;
Damien Millerf3747bf2013-01-18 11:44:04 +11002151 u_long lnum = 0;
markus@openbsd.org7f906352018-06-06 18:29:18 +00002152 char *path, *cp, *ep, *line = NULL;
djm@openbsd.org9405c622018-09-12 01:21:34 +00002153 u_char *blob = NULL;
2154 size_t blen = 0, linesize = 0;
Damien Millerf3747bf2013-01-18 11:44:04 +11002155 unsigned long long serial, serial2;
djm@openbsd.org9405c622018-09-12 01:21:34 +00002156 int i, was_explicit_key, was_sha1, was_sha256, was_hash, r;
Damien Millerf3747bf2013-01-18 11:44:04 +11002157 FILE *krl_spec;
2158
2159 path = tilde_expand_filename(file, pw->pw_uid);
2160 if (strcmp(path, "-") == 0) {
2161 krl_spec = stdin;
2162 free(path);
2163 path = xstrdup("(standard input)");
2164 } else if ((krl_spec = fopen(path, "r")) == NULL)
2165 fatal("fopen %s: %s", path, strerror(errno));
2166
2167 if (!quiet)
2168 printf("Revoking from %s\n", path);
markus@openbsd.org7f906352018-06-06 18:29:18 +00002169 while (getline(&line, &linesize, krl_spec) != -1) {
2170 lnum++;
djm@openbsd.org9405c622018-09-12 01:21:34 +00002171 was_explicit_key = was_sha1 = was_sha256 = was_hash = 0;
Damien Millerf3747bf2013-01-18 11:44:04 +11002172 cp = line + strspn(line, " \t");
2173 /* Trim trailing space, comments and strip \n */
2174 for (i = 0, r = -1; cp[i] != '\0'; i++) {
2175 if (cp[i] == '#' || cp[i] == '\n') {
2176 cp[i] = '\0';
2177 break;
2178 }
2179 if (cp[i] == ' ' || cp[i] == '\t') {
2180 /* Remember the start of a span of whitespace */
2181 if (r == -1)
2182 r = i;
2183 } else
2184 r = -1;
2185 }
2186 if (r != -1)
2187 cp[r] = '\0';
2188 if (*cp == '\0')
2189 continue;
2190 if (strncasecmp(cp, "serial:", 7) == 0) {
djm@openbsd.org669aee92015-01-30 01:10:33 +00002191 if (ca == NULL && !wild_ca) {
Damien Millerd234afb2013-08-21 02:42:58 +10002192 fatal("revoking certificates by serial number "
Damien Millerf3747bf2013-01-18 11:44:04 +11002193 "requires specification of a CA key");
2194 }
2195 cp += 7;
2196 cp = cp + strspn(cp, " \t");
2197 errno = 0;
2198 serial = strtoull(cp, &ep, 0);
2199 if (*cp == '\0' || (*ep != '\0' && *ep != '-'))
2200 fatal("%s:%lu: invalid serial \"%s\"",
2201 path, lnum, cp);
2202 if (errno == ERANGE && serial == ULLONG_MAX)
2203 fatal("%s:%lu: serial out of range",
2204 path, lnum);
2205 serial2 = serial;
2206 if (*ep == '-') {
2207 cp = ep + 1;
2208 errno = 0;
2209 serial2 = strtoull(cp, &ep, 0);
2210 if (*cp == '\0' || *ep != '\0')
2211 fatal("%s:%lu: invalid serial \"%s\"",
2212 path, lnum, cp);
2213 if (errno == ERANGE && serial2 == ULLONG_MAX)
2214 fatal("%s:%lu: serial out of range",
2215 path, lnum);
2216 if (serial2 <= serial)
2217 fatal("%s:%lu: invalid serial range "
2218 "%llu:%llu", path, lnum,
2219 (unsigned long long)serial,
2220 (unsigned long long)serial2);
2221 }
2222 if (ssh_krl_revoke_cert_by_serial_range(krl,
2223 ca, serial, serial2) != 0) {
2224 fatal("%s: revoke serial failed",
2225 __func__);
2226 }
2227 } else if (strncasecmp(cp, "id:", 3) == 0) {
djm@openbsd.org669aee92015-01-30 01:10:33 +00002228 if (ca == NULL && !wild_ca) {
Damien Millerd5d9d7b2013-08-21 02:43:27 +10002229 fatal("revoking certificates by key ID "
Damien Millerf3747bf2013-01-18 11:44:04 +11002230 "requires specification of a CA key");
2231 }
2232 cp += 3;
2233 cp = cp + strspn(cp, " \t");
2234 if (ssh_krl_revoke_cert_by_key_id(krl, ca, cp) != 0)
2235 fatal("%s: revoke key ID failed", __func__);
djm@openbsd.org9405c622018-09-12 01:21:34 +00002236 } else if (strncasecmp(cp, "hash:", 5) == 0) {
2237 cp += 5;
2238 cp = cp + strspn(cp, " \t");
2239 hash_to_blob(cp, &blob, &blen, file, lnum);
2240 r = ssh_krl_revoke_key_sha256(krl, blob, blen);
Damien Millerf3747bf2013-01-18 11:44:04 +11002241 } else {
2242 if (strncasecmp(cp, "key:", 4) == 0) {
2243 cp += 4;
2244 cp = cp + strspn(cp, " \t");
2245 was_explicit_key = 1;
2246 } else if (strncasecmp(cp, "sha1:", 5) == 0) {
2247 cp += 5;
2248 cp = cp + strspn(cp, " \t");
2249 was_sha1 = 1;
djm@openbsd.org9405c622018-09-12 01:21:34 +00002250 } else if (strncasecmp(cp, "sha256:", 7) == 0) {
2251 cp += 7;
2252 cp = cp + strspn(cp, " \t");
2253 was_sha256 = 1;
Damien Millerf3747bf2013-01-18 11:44:04 +11002254 /*
2255 * Just try to process the line as a key.
2256 * Parsing will fail if it isn't.
2257 */
2258 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002259 if ((key = sshkey_new(KEY_UNSPEC)) == NULL)
markus@openbsd.org7da5df12017-05-30 14:16:41 +00002260 fatal("sshkey_new");
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002261 if ((r = sshkey_read(key, &cp)) != 0)
2262 fatal("%s:%lu: invalid key: %s",
2263 path, lnum, ssh_err(r));
Damien Millerf3747bf2013-01-18 11:44:04 +11002264 if (was_explicit_key)
2265 r = ssh_krl_revoke_key_explicit(krl, key);
djm@openbsd.org9405c622018-09-12 01:21:34 +00002266 else if (was_sha1) {
2267 if (sshkey_fingerprint_raw(key,
2268 SSH_DIGEST_SHA1, &blob, &blen) != 0) {
2269 fatal("%s:%lu: fingerprint failed",
2270 file, lnum);
2271 }
2272 r = ssh_krl_revoke_key_sha1(krl, blob, blen);
2273 } else if (was_sha256) {
2274 if (sshkey_fingerprint_raw(key,
2275 SSH_DIGEST_SHA256, &blob, &blen) != 0) {
2276 fatal("%s:%lu: fingerprint failed",
2277 file, lnum);
2278 }
2279 r = ssh_krl_revoke_key_sha256(krl, blob, blen);
2280 } else
Damien Millerf3747bf2013-01-18 11:44:04 +11002281 r = ssh_krl_revoke_key(krl, key);
2282 if (r != 0)
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002283 fatal("%s: revoke key failed: %s",
2284 __func__, ssh_err(r));
djm@openbsd.org9405c622018-09-12 01:21:34 +00002285 freezero(blob, blen);
2286 blob = NULL;
2287 blen = 0;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002288 sshkey_free(key);
Damien Millerf3747bf2013-01-18 11:44:04 +11002289 }
2290 }
2291 if (strcmp(path, "-") != 0)
2292 fclose(krl_spec);
markus@openbsd.org7f906352018-06-06 18:29:18 +00002293 free(line);
Damien Miller0d6771b2013-04-23 15:23:24 +10002294 free(path);
Damien Millerf3747bf2013-01-18 11:44:04 +11002295}
2296
2297static void
djm@openbsd.org851f8032019-01-23 04:16:22 +00002298do_gen_krl(struct passwd *pw, int updating, const char *ca_key_path,
2299 unsigned long long krl_version, const char *krl_comment,
2300 int argc, char **argv)
Damien Millerf3747bf2013-01-18 11:44:04 +11002301{
2302 struct ssh_krl *krl;
2303 struct stat sb;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002304 struct sshkey *ca = NULL;
djm@openbsd.org669aee92015-01-30 01:10:33 +00002305 int fd, i, r, wild_ca = 0;
Damien Millerf3747bf2013-01-18 11:44:04 +11002306 char *tmp;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002307 struct sshbuf *kbuf;
Damien Millerf3747bf2013-01-18 11:44:04 +11002308
2309 if (*identity_file == '\0')
2310 fatal("KRL generation requires an output file");
2311 if (stat(identity_file, &sb) == -1) {
2312 if (errno != ENOENT)
2313 fatal("Cannot access KRL \"%s\": %s",
2314 identity_file, strerror(errno));
2315 if (updating)
2316 fatal("KRL \"%s\" does not exist", identity_file);
2317 }
2318 if (ca_key_path != NULL) {
djm@openbsd.org669aee92015-01-30 01:10:33 +00002319 if (strcasecmp(ca_key_path, "none") == 0)
2320 wild_ca = 1;
2321 else {
2322 tmp = tilde_expand_filename(ca_key_path, pw->pw_uid);
2323 if ((r = sshkey_load_public(tmp, &ca, NULL)) != 0)
2324 fatal("Cannot load CA public key %s: %s",
2325 tmp, ssh_err(r));
2326 free(tmp);
2327 }
Damien Millerf3747bf2013-01-18 11:44:04 +11002328 }
2329
2330 if (updating)
2331 load_krl(identity_file, &krl);
2332 else if ((krl = ssh_krl_init()) == NULL)
2333 fatal("couldn't create KRL");
2334
djm@openbsd.org851f8032019-01-23 04:16:22 +00002335 if (krl_version != 0)
2336 ssh_krl_set_version(krl, krl_version);
2337 if (krl_comment != NULL)
2338 ssh_krl_set_comment(krl, krl_comment);
Damien Millerf3747bf2013-01-18 11:44:04 +11002339
2340 for (i = 0; i < argc; i++)
djm@openbsd.org669aee92015-01-30 01:10:33 +00002341 update_krl_from_file(pw, argv[i], wild_ca, ca, krl);
Damien Millerf3747bf2013-01-18 11:44:04 +11002342
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002343 if ((kbuf = sshbuf_new()) == NULL)
2344 fatal("sshbuf_new failed");
2345 if (ssh_krl_to_blob(krl, kbuf, NULL, 0) != 0)
Damien Millerf3747bf2013-01-18 11:44:04 +11002346 fatal("Couldn't generate KRL");
2347 if ((fd = open(identity_file, O_WRONLY|O_CREAT|O_TRUNC, 0644)) == -1)
2348 fatal("open %s: %s", identity_file, strerror(errno));
markus@openbsd.org49f47e62018-07-09 21:59:10 +00002349 if (atomicio(vwrite, fd, sshbuf_mutable_ptr(kbuf), sshbuf_len(kbuf)) !=
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002350 sshbuf_len(kbuf))
Damien Millerf3747bf2013-01-18 11:44:04 +11002351 fatal("write %s: %s", identity_file, strerror(errno));
2352 close(fd);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002353 sshbuf_free(kbuf);
Damien Millerf3747bf2013-01-18 11:44:04 +11002354 ssh_krl_free(krl);
mmcc@openbsd.org89540b62015-12-11 02:31:47 +00002355 sshkey_free(ca);
Damien Millerf3747bf2013-01-18 11:44:04 +11002356}
2357
2358static void
2359do_check_krl(struct passwd *pw, int argc, char **argv)
2360{
2361 int i, r, ret = 0;
2362 char *comment;
2363 struct ssh_krl *krl;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002364 struct sshkey *k;
Damien Millerf3747bf2013-01-18 11:44:04 +11002365
2366 if (*identity_file == '\0')
2367 fatal("KRL checking requires an input file");
2368 load_krl(identity_file, &krl);
2369 for (i = 0; i < argc; i++) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002370 if ((r = sshkey_load_public(argv[i], &k, &comment)) != 0)
2371 fatal("Cannot load public key %s: %s",
2372 argv[i], ssh_err(r));
Damien Millerf3747bf2013-01-18 11:44:04 +11002373 r = ssh_krl_check_key(krl, k);
2374 printf("%s%s%s%s: %s\n", argv[i],
2375 *comment ? " (" : "", comment, *comment ? ")" : "",
2376 r == 0 ? "ok" : "REVOKED");
2377 if (r != 0)
2378 ret = 1;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002379 sshkey_free(k);
Damien Millerf3747bf2013-01-18 11:44:04 +11002380 free(comment);
2381 }
2382 ssh_krl_free(krl);
2383 exit(ret);
2384}
2385
2386static void
Damien Miller431f66b1999-11-21 18:31:57 +11002387usage(void)
2388{
Damien Millerf0858de2014-04-20 13:01:30 +10002389 fprintf(stderr,
djm@openbsd.orgf99ef8d2019-01-22 20:48:01 +00002390 "usage: ssh-keygen [-q] [-b bits] [-t dsa | ecdsa | ed25519 | rsa] [-m format]\n"
Damien Millerf0858de2014-04-20 13:01:30 +10002391 " [-N new_passphrase] [-C comment] [-f output_keyfile]\n"
djm@openbsd.orgf99ef8d2019-01-22 20:48:01 +00002392 " ssh-keygen -p [-P old_passphrase] [-N new_passphrase] [-m format]\n"
2393 " [-f keyfile]\n"
Damien Millerf0858de2014-04-20 13:01:30 +10002394 " ssh-keygen -i [-m key_format] [-f input_keyfile]\n"
2395 " ssh-keygen -e [-m key_format] [-f input_keyfile]\n"
2396 " ssh-keygen -y [-f input_keyfile]\n"
2397 " ssh-keygen -c [-P passphrase] [-C comment] [-f keyfile]\n"
naddy@openbsd.org6288e3a2015-02-24 15:24:05 +00002398 " ssh-keygen -l [-v] [-E fingerprint_hash] [-f input_keyfile]\n"
djm@openbsd.org873d3e72017-04-30 23:18:44 +00002399 " ssh-keygen -B [-f input_keyfile]\n");
Damien Miller7ea845e2010-02-12 09:21:02 +11002400#ifdef ENABLE_PKCS11
Damien Millerf0858de2014-04-20 13:01:30 +10002401 fprintf(stderr,
2402 " ssh-keygen -D pkcs11\n");
Damien Miller7ea845e2010-02-12 09:21:02 +11002403#endif
Damien Millerf0858de2014-04-20 13:01:30 +10002404 fprintf(stderr,
2405 " ssh-keygen -F hostname [-f known_hosts_file] [-l]\n"
2406 " ssh-keygen -H [-f known_hosts_file]\n"
2407 " ssh-keygen -R hostname [-f known_hosts_file]\n"
2408 " ssh-keygen -r hostname [-f input_keyfile] [-g]\n"
djm@openbsd.org1d9a2e22015-05-28 07:37:31 +00002409#ifdef WITH_OPENSSL
Damien Millerf0858de2014-04-20 13:01:30 +10002410 " ssh-keygen -G output_file [-v] [-b bits] [-M memory] [-S start_point]\n"
2411 " ssh-keygen -T output_file -f input_file [-v] [-a rounds] [-J num_lines]\n"
2412 " [-j start_line] [-K checkpt] [-W generator]\n"
djm@openbsd.org1d9a2e22015-05-28 07:37:31 +00002413#endif
djm@openbsd.orga98339e2017-06-28 01:09:22 +00002414 " ssh-keygen -s ca_key -I certificate_identity [-h] [-U]\n"
2415 " [-D pkcs11_provider] [-n principals] [-O option]\n"
2416 " [-V validity_interval] [-z serial_number] file ...\n"
Damien Millerf0858de2014-04-20 13:01:30 +10002417 " ssh-keygen -L [-f input_keyfile]\n"
2418 " ssh-keygen -A\n"
2419 " ssh-keygen -k -f krl_file [-u] [-s ca_public] [-z version_number]\n"
2420 " file ...\n"
2421 " ssh-keygen -Q -f krl_file file ...\n");
Damien Miller95def091999-11-25 00:26:21 +11002422 exit(1);
Damien Miller431f66b1999-11-21 18:31:57 +11002423}
2424
Damien Miller95def091999-11-25 00:26:21 +11002425/*
2426 * Main program for key management.
2427 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002428int
Damien Millerdf8b7db2007-01-05 16:22:57 +11002429main(int argc, char **argv)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002430{
deraadt@openbsd.org2ae4f332015-01-16 06:40:12 +00002431 char dotsshdir[PATH_MAX], comment[1024], *passphrase1, *passphrase2;
djm@openbsd.org1d9a2e22015-05-28 07:37:31 +00002432 char *rr_hostname = NULL, *ep, *fp, *ra;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002433 struct sshkey *private, *public;
Damien Miller95def091999-11-25 00:26:21 +11002434 struct passwd *pw;
Damien Miller95def091999-11-25 00:26:21 +11002435 struct stat st;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002436 int r, opt, type, fd;
djm@openbsd.org851f8032019-01-23 04:16:22 +00002437 int change_passphrase = 0, change_comment = 0, show_cert = 0;
2438 int find_host = 0, delete_host = 0, hash_hosts = 0;
Damien Millerf3747bf2013-01-18 11:44:04 +11002439 int gen_all_hostkeys = 0, gen_krl = 0, update_krl = 0, check_krl = 0;
djm@openbsd.org851f8032019-01-23 04:16:22 +00002440 int prefer_agent = 0, convert_to = 0, convert_from = 0;
djm@openbsd.orgbe063942019-01-23 04:51:02 +00002441 int print_public = 0, print_generic = 0, cert_serial_autoinc = 0;
djm@openbsd.org851f8032019-01-23 04:16:22 +00002442 unsigned long long cert_serial = 0;
2443 char *identity_comment = NULL, *ca_key_path = NULL;
2444 u_int bits = 0;
Damien Miller95def091999-11-25 00:26:21 +11002445 FILE *f;
Damien Miller02e754f2005-05-26 12:19:39 +10002446 const char *errstr;
djm@openbsd.org851f8032019-01-23 04:16:22 +00002447 int log_level = SYSLOG_LEVEL_INFO;
djm@openbsd.org1d9a2e22015-05-28 07:37:31 +00002448#ifdef WITH_OPENSSL
2449 /* Moduli generation/screening */
2450 char out_file[PATH_MAX], *checkpoint = NULL;
2451 u_int32_t memory = 0, generator_wanted = 0;
2452 int do_gen_candidates = 0, do_screen_candidates = 0;
2453 unsigned long start_lineno = 0, lines_to_process = 0;
2454 BIGNUM *start = NULL;
2455#endif
Damien Miller0bc1bd82000-11-13 22:57:25 +11002456
Damien Miller95def091999-11-25 00:26:21 +11002457 extern int optind;
2458 extern char *optarg;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002459
dtucker@openbsd.orgffb1e7e2016-02-15 09:47:49 +00002460 ssh_malloc_init(); /* must be called before any mallocs */
Darren Tuckerce321d82005-10-03 18:11:24 +10002461 /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
2462 sanitise_stdfd();
2463
Darren Tucker9ac56e92007-01-14 10:19:59 +11002464 __progname = ssh_get_progname(argv[0]);
Damien Millerf9b625c2000-07-09 22:42:32 +10002465
Kevin Steves3a881912002-07-20 19:05:40 +00002466 seed_rng();
Damien Millereba71ba2000-04-29 23:57:08 +10002467
Damien Miller42c5ec42018-11-23 10:40:06 +11002468 log_init(argv[0], SYSLOG_LEVEL_INFO, SYSLOG_FACILITY_USER, 1);
2469
djm@openbsd.orga287c5a2017-02-10 03:36:40 +00002470 msetlocale();
2471
Damien Miller5428f641999-11-25 11:54:57 +11002472 /* we need this for the home * directory. */
Damien Miller95def091999-11-25 00:26:21 +11002473 pw = getpwuid(getuid());
djm@openbsd.org3038a192015-04-17 13:19:22 +00002474 if (!pw)
2475 fatal("No user exists for uid %lu", (u_long)getuid());
2476 if (gethostname(hostname, sizeof(hostname)) < 0)
2477 fatal("gethostname: %s", strerror(errno));
Damien Miller5428f641999-11-25 11:54:57 +11002478
djm@openbsd.orga98339e2017-06-28 01:09:22 +00002479 /* Remaining characters: Ydw */
2480 while ((opt = getopt(argc, argv, "ABHLQUXceghiklopquvxy"
djm@openbsd.org56d1c832014-12-21 22:27:55 +00002481 "C:D:E:F:G:I:J:K:M:N:O:P:R:S:T:V:W:Z:"
2482 "a:b:f:g:j:m:n:r:s:t:z:")) != -1) {
Damien Miller95def091999-11-25 00:26:21 +11002483 switch (opt) {
Damien Miller58f1baf2011-05-05 14:06:15 +10002484 case 'A':
2485 gen_all_hostkeys = 1;
2486 break;
Damien Miller95def091999-11-25 00:26:21 +11002487 case 'b':
markus@openbsd.org1b11ea72018-02-23 15:58:37 +00002488 bits = (u_int32_t)strtonum(optarg, 10, 32768, &errstr);
Damien Miller02e754f2005-05-26 12:19:39 +10002489 if (errstr)
2490 fatal("Bits has bad value %s (%s)",
2491 optarg, errstr);
Damien Miller95def091999-11-25 00:26:21 +11002492 break;
djm@openbsd.org56d1c832014-12-21 22:27:55 +00002493 case 'E':
2494 fingerprint_hash = ssh_digest_alg_by_name(optarg);
2495 if (fingerprint_hash == -1)
2496 fatal("Invalid hash algorithm \"%s\"", optarg);
2497 break;
Damien Miller4b42d7f2005-03-01 21:48:35 +11002498 case 'F':
2499 find_host = 1;
2500 rr_hostname = optarg;
2501 break;
2502 case 'H':
2503 hash_hosts = 1;
2504 break;
Damien Miller0a80ca12010-02-27 07:55:05 +11002505 case 'I':
2506 cert_key_id = optarg;
2507 break;
Damien Miller4b42d7f2005-03-01 21:48:35 +11002508 case 'R':
2509 delete_host = 1;
2510 rr_hostname = optarg;
2511 break;
Damien Millerf2b70ca2010-03-05 07:39:35 +11002512 case 'L':
2513 show_cert = 1;
2514 break;
Damien Miller95def091999-11-25 00:26:21 +11002515 case 'l':
2516 print_fingerprint = 1;
2517 break;
Ben Lindstrom8fd372b2001-03-12 03:02:17 +00002518 case 'B':
2519 print_bubblebabble = 1;
2520 break;
Damien Miller44b25042010-07-02 13:35:01 +10002521 case 'm':
2522 if (strcasecmp(optarg, "RFC4716") == 0 ||
2523 strcasecmp(optarg, "ssh2") == 0) {
2524 convert_format = FMT_RFC4716;
2525 break;
2526 }
2527 if (strcasecmp(optarg, "PKCS8") == 0) {
2528 convert_format = FMT_PKCS8;
2529 break;
2530 }
2531 if (strcasecmp(optarg, "PEM") == 0) {
2532 convert_format = FMT_PEM;
djm@openbsd.orged7bd5d2018-08-08 01:16:01 +00002533 use_new_format = 0;
Damien Miller44b25042010-07-02 13:35:01 +10002534 break;
2535 }
2536 fatal("Unsupported conversion format \"%s\"", optarg);
Damien Miller0a80ca12010-02-27 07:55:05 +11002537 case 'n':
2538 cert_principals = optarg;
2539 break;
Damien Millerbcd00ab2013-12-07 10:41:55 +11002540 case 'o':
djm@openbsd.orged7bd5d2018-08-08 01:16:01 +00002541 /* no-op; new format is already the default */
Damien Millerbcd00ab2013-12-07 10:41:55 +11002542 break;
Damien Miller95def091999-11-25 00:26:21 +11002543 case 'p':
2544 change_passphrase = 1;
2545 break;
Damien Miller95def091999-11-25 00:26:21 +11002546 case 'c':
2547 change_comment = 1;
2548 break;
Damien Miller95def091999-11-25 00:26:21 +11002549 case 'f':
djm@openbsd.org1d9a2e22015-05-28 07:37:31 +00002550 if (strlcpy(identity_file, optarg,
2551 sizeof(identity_file)) >= sizeof(identity_file))
Damien Millerb089fb52005-05-26 12:16:18 +10002552 fatal("Identity filename too long");
Damien Miller95def091999-11-25 00:26:21 +11002553 have_identity = 1;
2554 break;
Damien Miller37876e92003-05-15 10:19:46 +10002555 case 'g':
2556 print_generic = 1;
2557 break;
Damien Miller95def091999-11-25 00:26:21 +11002558 case 'P':
2559 identity_passphrase = optarg;
2560 break;
Damien Miller95def091999-11-25 00:26:21 +11002561 case 'N':
2562 identity_new_passphrase = optarg;
2563 break;
Damien Millerf3747bf2013-01-18 11:44:04 +11002564 case 'Q':
2565 check_krl = 1;
2566 break;
Damien Miller0a80ca12010-02-27 07:55:05 +11002567 case 'O':
Damien Miller4e270b02010-04-16 15:56:21 +10002568 add_cert_option(optarg);
Damien Miller0a80ca12010-02-27 07:55:05 +11002569 break;
Damien Millerbcd00ab2013-12-07 10:41:55 +11002570 case 'Z':
2571 new_format_cipher = optarg;
2572 break;
Damien Miller95def091999-11-25 00:26:21 +11002573 case 'C':
2574 identity_comment = optarg;
2575 break;
Damien Miller95def091999-11-25 00:26:21 +11002576 case 'q':
2577 quiet = 1;
2578 break;
Ben Lindstrom5a707822001-04-22 17:15:46 +00002579 case 'e':
Damien Millereba71ba2000-04-29 23:57:08 +10002580 case 'x':
Ben Lindstrom5a707822001-04-22 17:15:46 +00002581 /* export key */
Damien Miller44b25042010-07-02 13:35:01 +10002582 convert_to = 1;
Damien Millereba71ba2000-04-29 23:57:08 +10002583 break;
Damien Miller0a80ca12010-02-27 07:55:05 +11002584 case 'h':
2585 cert_key_type = SSH2_CERT_TYPE_HOST;
Damien Millerd0e4a8e2010-05-21 14:58:32 +10002586 certflags_flags = 0;
Damien Miller0a80ca12010-02-27 07:55:05 +11002587 break;
Damien Millerf3747bf2013-01-18 11:44:04 +11002588 case 'k':
2589 gen_krl = 1;
2590 break;
Ben Lindstrom5a707822001-04-22 17:15:46 +00002591 case 'i':
Damien Millereba71ba2000-04-29 23:57:08 +10002592 case 'X':
Ben Lindstrom5a707822001-04-22 17:15:46 +00002593 /* import key */
Damien Miller44b25042010-07-02 13:35:01 +10002594 convert_from = 1;
Damien Millereba71ba2000-04-29 23:57:08 +10002595 break;
Damien Millereba71ba2000-04-29 23:57:08 +10002596 case 'y':
2597 print_public = 1;
2598 break;
Damien Miller0a80ca12010-02-27 07:55:05 +11002599 case 's':
2600 ca_key_path = optarg;
2601 break;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002602 case 't':
2603 key_type_name = optarg;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002604 break;
Ben Lindstrom8282d6a2001-08-06 21:44:05 +00002605 case 'D':
Damien Miller7ea845e2010-02-12 09:21:02 +11002606 pkcs11provider = optarg;
Ben Lindstromcd392282001-07-04 03:44:03 +00002607 break;
djm@openbsd.orga98339e2017-06-28 01:09:22 +00002608 case 'U':
2609 prefer_agent = 1;
2610 break;
Damien Millerf3747bf2013-01-18 11:44:04 +11002611 case 'u':
2612 update_krl = 1;
2613 break;
Darren Tucker06930c72003-12-31 11:34:51 +11002614 case 'v':
2615 if (log_level == SYSLOG_LEVEL_INFO)
2616 log_level = SYSLOG_LEVEL_DEBUG1;
2617 else {
Darren Tuckerfc959702004-07-17 16:12:08 +10002618 if (log_level >= SYSLOG_LEVEL_DEBUG1 &&
Darren Tucker06930c72003-12-31 11:34:51 +11002619 log_level < SYSLOG_LEVEL_DEBUG3)
2620 log_level++;
2621 }
2622 break;
Damien Miller37876e92003-05-15 10:19:46 +10002623 case 'r':
Damien Miller4b42d7f2005-03-01 21:48:35 +11002624 rr_hostname = optarg;
Damien Miller37876e92003-05-15 10:19:46 +10002625 break;
djm@openbsd.org1d9a2e22015-05-28 07:37:31 +00002626 case 'a':
2627 rounds = (int)strtonum(optarg, 1, INT_MAX, &errstr);
2628 if (errstr)
2629 fatal("Invalid number: %s (%s)",
2630 optarg, errstr);
2631 break;
2632 case 'V':
2633 parse_cert_times(optarg);
2634 break;
2635 case 'z':
2636 errno = 0;
djm@openbsd.orgbe063942019-01-23 04:51:02 +00002637 if (*optarg == '+') {
2638 cert_serial_autoinc = 1;
2639 optarg++;
2640 }
djm@openbsd.org1d9a2e22015-05-28 07:37:31 +00002641 cert_serial = strtoull(optarg, &ep, 10);
2642 if (*optarg < '0' || *optarg > '9' || *ep != '\0' ||
2643 (errno == ERANGE && cert_serial == ULLONG_MAX))
2644 fatal("Invalid serial number \"%s\"", optarg);
2645 break;
2646#ifdef WITH_OPENSSL
2647 /* Moduli generation/screening */
Darren Tucker019cefe2003-08-02 22:40:07 +10002648 case 'G':
2649 do_gen_candidates = 1;
Damien Millerb089fb52005-05-26 12:16:18 +10002650 if (strlcpy(out_file, optarg, sizeof(out_file)) >=
2651 sizeof(out_file))
2652 fatal("Output filename too long");
Darren Tucker019cefe2003-08-02 22:40:07 +10002653 break;
Darren Tucker0bb29802016-09-12 11:07:00 +10002654 case 'J':
2655 lines_to_process = strtoul(optarg, NULL, 10);
dtucker@openbsd.org7b63cf62016-09-12 03:29:16 +00002656 break;
Darren Tucker0bb29802016-09-12 11:07:00 +10002657 case 'j':
2658 start_lineno = strtoul(optarg, NULL, 10);
dtucker@openbsd.org7b63cf62016-09-12 03:29:16 +00002659 break;
Damien Miller390d0562011-10-18 16:05:19 +11002660 case 'K':
deraadt@openbsd.org2ae4f332015-01-16 06:40:12 +00002661 if (strlen(optarg) >= PATH_MAX)
Damien Miller390d0562011-10-18 16:05:19 +11002662 fatal("Checkpoint filename too long");
2663 checkpoint = xstrdup(optarg);
2664 break;
Darren Tuckerd8c3cfb2016-09-12 13:30:50 +10002665 case 'M':
2666 memory = (u_int32_t)strtonum(optarg, 1, UINT_MAX,
2667 &errstr);
2668 if (errstr)
2669 fatal("Memory limit is %s: %s", errstr, optarg);
2670 break;
Darren Tucker019cefe2003-08-02 22:40:07 +10002671 case 'S':
2672 /* XXX - also compare length against bits */
2673 if (BN_hex2bn(&start, optarg) == 0)
2674 fatal("Invalid start point.");
2675 break;
Darren Tuckeraf48d542016-09-12 13:52:17 +10002676 case 'T':
2677 do_screen_candidates = 1;
2678 if (strlcpy(out_file, optarg, sizeof(out_file)) >=
2679 sizeof(out_file))
2680 fatal("Output filename too long");
2681 break;
Darren Tucker43cceff2016-09-12 13:55:37 +10002682 case 'W':
2683 generator_wanted = (u_int32_t)strtonum(optarg, 1,
2684 UINT_MAX, &errstr);
Darren Tucker70508962016-09-12 13:57:28 +10002685 if (errstr != NULL)
2686 fatal("Desired generator invalid: %s (%s)",
2687 optarg, errstr);
Darren Tucker43cceff2016-09-12 13:55:37 +10002688 break;
Damien Miller72ef7c12015-01-15 02:21:31 +11002689#endif /* WITH_OPENSSL */
Damien Miller95def091999-11-25 00:26:21 +11002690 case '?':
2691 default:
2692 usage();
2693 }
2694 }
Darren Tucker06930c72003-12-31 11:34:51 +11002695
2696 /* reinit */
Damien Millerdf8b7db2007-01-05 16:22:57 +11002697 log_init(argv[0], log_level, SYSLOG_FACILITY_USER, 1);
Darren Tucker06930c72003-12-31 11:34:51 +11002698
Damien Miller0a80ca12010-02-27 07:55:05 +11002699 argv += optind;
2700 argc -= optind;
2701
2702 if (ca_key_path != NULL) {
Damien Millerf3747bf2013-01-18 11:44:04 +11002703 if (argc < 1 && !gen_krl) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00002704 error("Too few arguments.");
Damien Miller0a80ca12010-02-27 07:55:05 +11002705 usage();
2706 }
Damien Millerf3747bf2013-01-18 11:44:04 +11002707 } else if (argc > 0 && !gen_krl && !check_krl) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00002708 error("Too many arguments.");
Damien Miller95def091999-11-25 00:26:21 +11002709 usage();
2710 }
2711 if (change_passphrase && change_comment) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00002712 error("Can only have one of -p and -c.");
Damien Miller95def091999-11-25 00:26:21 +11002713 usage();
2714 }
Darren Tucker0f7e9102008-06-08 12:54:29 +10002715 if (print_fingerprint && (delete_host || hash_hosts)) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00002716 error("Cannot use -l with -H or -R.");
Darren Tucker0f7e9102008-06-08 12:54:29 +10002717 usage();
2718 }
Damien Millerf3747bf2013-01-18 11:44:04 +11002719 if (gen_krl) {
djm@openbsd.org851f8032019-01-23 04:16:22 +00002720 do_gen_krl(pw, update_krl, ca_key_path,
2721 cert_serial, identity_comment, argc, argv);
Damien Millerf3747bf2013-01-18 11:44:04 +11002722 return (0);
2723 }
2724 if (check_krl) {
2725 do_check_krl(pw, argc, argv);
2726 return (0);
2727 }
Damien Miller0a80ca12010-02-27 07:55:05 +11002728 if (ca_key_path != NULL) {
2729 if (cert_key_id == NULL)
2730 fatal("Must specify key id (-I) when certifying");
djm@openbsd.orgbe063942019-01-23 04:51:02 +00002731 do_ca_sign(pw, ca_key_path, prefer_agent,
2732 cert_serial, cert_serial_autoinc, argc, argv);
Damien Miller0a80ca12010-02-27 07:55:05 +11002733 }
Damien Millerf2b70ca2010-03-05 07:39:35 +11002734 if (show_cert)
2735 do_show_cert(pw);
djm@openbsd.org851f8032019-01-23 04:16:22 +00002736 if (delete_host || hash_hosts || find_host) {
2737 do_known_hosts(pw, rr_hostname, find_host,
2738 delete_host, hash_hosts);
2739 }
Damien Millerec77c952013-01-09 15:58:00 +11002740 if (pkcs11provider != NULL)
2741 do_download(pw);
Ben Lindstrom8fd372b2001-03-12 03:02:17 +00002742 if (print_fingerprint || print_bubblebabble)
Damien Miller95def091999-11-25 00:26:21 +11002743 do_fingerprint(pw);
Damien Miller95def091999-11-25 00:26:21 +11002744 if (change_passphrase)
2745 do_change_passphrase(pw);
Damien Miller4a10d2e2002-03-11 22:53:29 +11002746 if (change_comment)
djm@openbsd.org851f8032019-01-23 04:16:22 +00002747 do_change_comment(pw, identity_comment);
Damien Miller1f0311c2014-05-15 14:24:09 +10002748#ifdef WITH_OPENSSL
Damien Miller44b25042010-07-02 13:35:01 +10002749 if (convert_to)
2750 do_convert_to(pw);
2751 if (convert_from)
2752 do_convert_from(pw);
Damien Miller1f0311c2014-05-15 14:24:09 +10002753#endif
Damien Millereba71ba2000-04-29 23:57:08 +10002754 if (print_public)
2755 do_print_public(pw);
Damien Miller4b42d7f2005-03-01 21:48:35 +11002756 if (rr_hostname != NULL) {
Damien Millercb314822006-03-26 13:48:01 +11002757 unsigned int n = 0;
2758
2759 if (have_identity) {
djm@openbsd.org851f8032019-01-23 04:16:22 +00002760 n = do_print_resource_record(pw, identity_file,
2761 rr_hostname, print_generic);
djm@openbsd.org3038a192015-04-17 13:19:22 +00002762 if (n == 0)
2763 fatal("%s: %s", identity_file, strerror(errno));
Damien Millercb314822006-03-26 13:48:01 +11002764 exit(0);
2765 } else {
2766
2767 n += do_print_resource_record(pw,
djm@openbsd.org851f8032019-01-23 04:16:22 +00002768 _PATH_HOST_RSA_KEY_FILE, rr_hostname,
2769 print_generic);
Damien Millercb314822006-03-26 13:48:01 +11002770 n += do_print_resource_record(pw,
djm@openbsd.org851f8032019-01-23 04:16:22 +00002771 _PATH_HOST_DSA_KEY_FILE, rr_hostname,
2772 print_generic);
Damien Miller3bde12a2012-06-20 21:51:11 +10002773 n += do_print_resource_record(pw,
djm@openbsd.org851f8032019-01-23 04:16:22 +00002774 _PATH_HOST_ECDSA_KEY_FILE, rr_hostname,
2775 print_generic);
Damien Miller16cd3922014-05-15 13:45:58 +10002776 n += do_print_resource_record(pw,
djm@openbsd.org851f8032019-01-23 04:16:22 +00002777 _PATH_HOST_ED25519_KEY_FILE, rr_hostname,
2778 print_generic);
markus@openbsd.org1b11ea72018-02-23 15:58:37 +00002779 n += do_print_resource_record(pw,
djm@openbsd.org851f8032019-01-23 04:16:22 +00002780 _PATH_HOST_XMSS_KEY_FILE, rr_hostname,
2781 print_generic);
Damien Millercb314822006-03-26 13:48:01 +11002782 if (n == 0)
2783 fatal("no keys found.");
2784 exit(0);
2785 }
Damien Miller37876e92003-05-15 10:19:46 +10002786 }
Damien Miller95def091999-11-25 00:26:21 +11002787
djm@openbsd.org1d9a2e22015-05-28 07:37:31 +00002788#ifdef WITH_OPENSSL
Darren Tucker019cefe2003-08-02 22:40:07 +10002789 if (do_gen_candidates) {
2790 FILE *out = fopen(out_file, "w");
Damien Miller787b2ec2003-11-21 23:56:47 +11002791
Darren Tucker019cefe2003-08-02 22:40:07 +10002792 if (out == NULL) {
2793 error("Couldn't open modulus candidate file \"%s\": %s",
2794 out_file, strerror(errno));
2795 return (1);
2796 }
Damien Miller3f54a9f2005-11-05 14:52:18 +11002797 if (bits == 0)
2798 bits = DEFAULT_BITS;
Darren Tucker019cefe2003-08-02 22:40:07 +10002799 if (gen_candidates(out, memory, bits, start) != 0)
Damien Miller15d72a02005-11-05 15:07:33 +11002800 fatal("modulus candidate generation failed");
Darren Tucker019cefe2003-08-02 22:40:07 +10002801
2802 return (0);
2803 }
2804
2805 if (do_screen_candidates) {
2806 FILE *in;
Damien Miller78d22712013-02-12 11:03:36 +11002807 FILE *out = fopen(out_file, "a");
Darren Tucker019cefe2003-08-02 22:40:07 +10002808
2809 if (have_identity && strcmp(identity_file, "-") != 0) {
2810 if ((in = fopen(identity_file, "r")) == NULL) {
2811 fatal("Couldn't open modulus candidate "
Damien Millera8e06ce2003-11-21 23:48:55 +11002812 "file \"%s\": %s", identity_file,
Darren Tucker019cefe2003-08-02 22:40:07 +10002813 strerror(errno));
2814 }
2815 } else
2816 in = stdin;
2817
2818 if (out == NULL) {
2819 fatal("Couldn't open moduli file \"%s\": %s",
2820 out_file, strerror(errno));
2821 }
Damien Millerbcd00ab2013-12-07 10:41:55 +11002822 if (prime_test(in, out, rounds == 0 ? 100 : rounds,
2823 generator_wanted, checkpoint,
Damien Millerdfceafe2012-07-06 13:44:19 +10002824 start_lineno, lines_to_process) != 0)
Damien Miller15d72a02005-11-05 15:07:33 +11002825 fatal("modulus screening failed");
Darren Tuckerf4220e62003-08-21 16:44:07 +10002826 return (0);
Darren Tucker019cefe2003-08-02 22:40:07 +10002827 }
djm@openbsd.org1d9a2e22015-05-28 07:37:31 +00002828#endif
Darren Tucker019cefe2003-08-02 22:40:07 +10002829
Damien Miller58f1baf2011-05-05 14:06:15 +10002830 if (gen_all_hostkeys) {
2831 do_gen_all_hostkeys(pw);
2832 return (0);
2833 }
2834
Damien Millerf14be5c2005-11-05 15:15:49 +11002835 if (key_type_name == NULL)
djm@openbsd.orgd1958792015-05-28 04:40:13 +00002836 key_type_name = DEFAULT_KEY_TYPE_NAME;
Damien Millerf14be5c2005-11-05 15:15:49 +11002837
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002838 type = sshkey_type_from_name(key_type_name);
djm@openbsd.org7efb4552015-01-18 13:22:28 +00002839 type_bits_valid(type, key_type_name, &bits);
Damien Miller58f1baf2011-05-05 14:06:15 +10002840
Darren Tucker3af2ac52005-11-29 13:10:24 +11002841 if (!quiet)
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002842 printf("Generating public/private %s key pair.\n",
2843 key_type_name);
djm@openbsd.org3038a192015-04-17 13:19:22 +00002844 if ((r = sshkey_generate(type, bits, &private)) != 0)
markus@openbsd.org7da5df12017-05-30 14:16:41 +00002845 fatal("sshkey_generate failed");
djm@openbsd.org3038a192015-04-17 13:19:22 +00002846 if ((r = sshkey_from_private(private, &public)) != 0)
markus@openbsd.org7da5df12017-05-30 14:16:41 +00002847 fatal("sshkey_from_private failed: %s\n", ssh_err(r));
Damien Miller95def091999-11-25 00:26:21 +11002848
2849 if (!have_identity)
2850 ask_filename(pw, "Enter file in which to save the key");
2851
Damien Miller788f2122005-11-05 15:14:59 +11002852 /* Create ~/.ssh directory if it doesn't already exist. */
Damien Miller50af79b2010-05-10 11:52:00 +10002853 snprintf(dotsshdir, sizeof dotsshdir, "%s/%s",
2854 pw->pw_dir, _PATH_SSH_USER_DIR);
2855 if (strstr(identity_file, dotsshdir) != NULL) {
2856 if (stat(dotsshdir, &st) < 0) {
2857 if (errno != ENOENT) {
2858 error("Could not stat %s: %s", dotsshdir,
2859 strerror(errno));
2860 } else if (mkdir(dotsshdir, 0700) < 0) {
2861 error("Could not create directory '%s': %s",
2862 dotsshdir, strerror(errno));
2863 } else if (!quiet)
2864 printf("Created directory '%s'.\n", dotsshdir);
2865 }
Damien Miller95def091999-11-25 00:26:21 +11002866 }
2867 /* If the file already exists, ask the user to confirm. */
2868 if (stat(identity_file, &st) >= 0) {
2869 char yesno[3];
2870 printf("%s already exists.\n", identity_file);
2871 printf("Overwrite (y/n)? ");
2872 fflush(stdout);
2873 if (fgets(yesno, sizeof(yesno), stdin) == NULL)
2874 exit(1);
2875 if (yesno[0] != 'y' && yesno[0] != 'Y')
2876 exit(1);
2877 }
2878 /* Ask for a passphrase (twice). */
2879 if (identity_passphrase)
2880 passphrase1 = xstrdup(identity_passphrase);
2881 else if (identity_new_passphrase)
2882 passphrase1 = xstrdup(identity_new_passphrase);
2883 else {
2884passphrase_again:
2885 passphrase1 =
Ben Lindstrom949974b2001-06-25 05:20:31 +00002886 read_passphrase("Enter passphrase (empty for no "
2887 "passphrase): ", RP_ALLOW_STDIN);
2888 passphrase2 = read_passphrase("Enter same passphrase again: ",
2889 RP_ALLOW_STDIN);
Damien Miller95def091999-11-25 00:26:21 +11002890 if (strcmp(passphrase1, passphrase2) != 0) {
Ben Lindstrom949974b2001-06-25 05:20:31 +00002891 /*
2892 * The passphrases do not match. Clear them and
2893 * retry.
2894 */
Damien Millera5103f42014-02-04 11:20:14 +11002895 explicit_bzero(passphrase1, strlen(passphrase1));
2896 explicit_bzero(passphrase2, strlen(passphrase2));
Darren Tuckera627d422013-06-02 07:31:17 +10002897 free(passphrase1);
2898 free(passphrase2);
Damien Miller95def091999-11-25 00:26:21 +11002899 printf("Passphrases do not match. Try again.\n");
2900 goto passphrase_again;
2901 }
2902 /* Clear the other copy of the passphrase. */
Damien Millera5103f42014-02-04 11:20:14 +11002903 explicit_bzero(passphrase2, strlen(passphrase2));
Darren Tuckera627d422013-06-02 07:31:17 +10002904 free(passphrase2);
Damien Miller95def091999-11-25 00:26:21 +11002905 }
2906
Damien Miller95def091999-11-25 00:26:21 +11002907 if (identity_comment) {
2908 strlcpy(comment, identity_comment, sizeof(comment));
2909 } else {
Darren Tuckere15fb092008-11-11 16:31:43 +11002910 /* Create default comment field for the passphrase. */
Damien Miller95def091999-11-25 00:26:21 +11002911 snprintf(comment, sizeof comment, "%s@%s", pw->pw_name, hostname);
2912 }
2913
2914 /* Save the key with the given passphrase and comment. */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002915 if ((r = sshkey_save_private(private, identity_file, passphrase1,
2916 comment, use_new_format, new_format_cipher, rounds)) != 0) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00002917 error("Saving key \"%s\" failed: %s",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002918 identity_file, ssh_err(r));
Damien Millera5103f42014-02-04 11:20:14 +11002919 explicit_bzero(passphrase1, strlen(passphrase1));
Darren Tuckera627d422013-06-02 07:31:17 +10002920 free(passphrase1);
Damien Miller95def091999-11-25 00:26:21 +11002921 exit(1);
2922 }
2923 /* Clear the passphrase. */
Damien Millera5103f42014-02-04 11:20:14 +11002924 explicit_bzero(passphrase1, strlen(passphrase1));
Darren Tuckera627d422013-06-02 07:31:17 +10002925 free(passphrase1);
Damien Miller95def091999-11-25 00:26:21 +11002926
2927 /* Clear the private key and the random number generator. */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002928 sshkey_free(private);
Damien Miller95def091999-11-25 00:26:21 +11002929
2930 if (!quiet)
2931 printf("Your identification has been saved in %s.\n", identity_file);
2932
Damien Miller95def091999-11-25 00:26:21 +11002933 strlcat(identity_file, ".pub", sizeof(identity_file));
djm@openbsd.org3038a192015-04-17 13:19:22 +00002934 if ((fd = open(identity_file, O_WRONLY|O_CREAT|O_TRUNC, 0644)) == -1)
2935 fatal("Unable to save public key to %s: %s",
2936 identity_file, strerror(errno));
2937 if ((f = fdopen(fd, "w")) == NULL)
2938 fatal("fdopen %s failed: %s", identity_file, strerror(errno));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002939 if ((r = sshkey_write(public, f)) != 0)
djm@openbsd.org3038a192015-04-17 13:19:22 +00002940 error("write key failed: %s", ssh_err(r));
Damien Millereba71ba2000-04-29 23:57:08 +10002941 fprintf(f, " %s\n", comment);
djm@openbsd.orgb56ac062018-02-10 05:43:26 +00002942 if (ferror(f) || fclose(f) != 0)
2943 fatal("write public failed: %s", strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +11002944
2945 if (!quiet) {
djm@openbsd.org9ce86c92015-01-28 22:36:00 +00002946 fp = sshkey_fingerprint(public, fingerprint_hash,
djm@openbsd.org56d1c832014-12-21 22:27:55 +00002947 SSH_FP_DEFAULT);
djm@openbsd.org9ce86c92015-01-28 22:36:00 +00002948 ra = sshkey_fingerprint(public, fingerprint_hash,
Darren Tucker9c16ac92008-06-13 04:40:35 +10002949 SSH_FP_RANDOMART);
djm@openbsd.org9ce86c92015-01-28 22:36:00 +00002950 if (fp == NULL || ra == NULL)
2951 fatal("sshkey_fingerprint failed");
Damien Millereba71ba2000-04-29 23:57:08 +10002952 printf("Your public key has been saved in %s.\n",
2953 identity_file);
Damien Miller95def091999-11-25 00:26:21 +11002954 printf("The key fingerprint is:\n");
Ben Lindstromcfccef92001-03-13 04:57:58 +00002955 printf("%s %s\n", fp, comment);
Darren Tucker9c16ac92008-06-13 04:40:35 +10002956 printf("The key's randomart image is:\n");
2957 printf("%s\n", ra);
Darren Tuckera627d422013-06-02 07:31:17 +10002958 free(ra);
2959 free(fp);
Damien Miller95def091999-11-25 00:26:21 +11002960 }
Damien Millereba71ba2000-04-29 23:57:08 +10002961
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002962 sshkey_free(public);
Damien Miller95def091999-11-25 00:26:21 +11002963 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002964}