blob: 835f7d0169ba0315e0d987d17e0506b8539d2e9a [file] [log] [blame]
djm@openbsd.org853edbe2017-07-07 03:53:12 +00001/* $OpenBSD: ssh-keygen.c,v 1.307 2017/07/07 03:53:12 djm Exp $ */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002/*
Damien Miller95def091999-11-25 00:26:21 +11003 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1994 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5 * All rights reserved
Damien Miller95def091999-11-25 00:26:21 +11006 * Identity and host key generation and maintenance.
Damien Millere4340be2000-09-16 13:29:08 +11007 *
8 * As far as I am concerned, the code I have written for this software
9 * can be used freely for any purpose. Any derived versions of this
10 * software must be clearly marked as such, and if the derived work is
11 * incompatible with the protocol description in the RFC file, it must be
12 * called by a name other than "ssh" or "Secure Shell".
Damien Miller95def091999-11-25 00:26:21 +110013 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100014
15#include "includes.h"
Damien Millerf17883e2006-03-15 11:45:54 +110016
17#include <sys/types.h>
Damien Millere3b60b52006-07-10 21:08:03 +100018#include <sys/socket.h>
Damien Millerf17883e2006-03-15 11:45:54 +110019#include <sys/stat.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100020
Damien Miller72ef7c12015-01-15 02:21:31 +110021#ifdef WITH_OPENSSL
Damien Millereba71ba2000-04-29 23:57:08 +100022#include <openssl/evp.h>
23#include <openssl/pem.h>
Darren Tuckerbfaaf962008-02-28 19:13:52 +110024#include "openbsd-compat/openssl-compat.h"
Damien Miller72ef7c12015-01-15 02:21:31 +110025#endif
Damien Millereba71ba2000-04-29 23:57:08 +100026
Darren Tucker39972492006-07-12 22:22:46 +100027#include <errno.h>
Damien Miller57cf6382006-07-10 21:13:46 +100028#include <fcntl.h>
Damien Millerb8fe89c2006-07-24 14:51:00 +100029#include <netdb.h>
Darren Tucker2ee50c52006-07-11 18:55:05 +100030#ifdef HAVE_PATHS_H
31# include <paths.h>
32#endif
Damien Miller9f2abc42006-07-10 20:53:08 +100033#include <pwd.h>
Damien Millerded319c2006-09-01 15:38:36 +100034#include <stdarg.h>
Damien Millera7a73ee2006-08-05 11:37:59 +100035#include <stdio.h>
Damien Millere7a1e5c2006-08-05 11:34:19 +100036#include <stdlib.h>
Damien Millere3476ed2006-07-24 14:13:33 +100037#include <string.h>
Damien Millere6b3b612006-07-24 14:01:23 +100038#include <unistd.h>
deraadt@openbsd.org2ae4f332015-01-16 06:40:12 +000039#include <limits.h>
djm@openbsd.orga287c5a2017-02-10 03:36:40 +000040#include <locale.h>
Damien Miller9f2abc42006-07-10 20:53:08 +100041
Damien Millerd4a8b7e1999-10-27 13:42:43 +100042#include "xmalloc.h"
djm@openbsd.org1129dcf2015-01-15 09:40:00 +000043#include "sshkey.h"
Damien Millereba71ba2000-04-29 23:57:08 +100044#include "authfile.h"
45#include "uuencode.h"
djm@openbsd.org1129dcf2015-01-15 09:40:00 +000046#include "sshbuf.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000047#include "pathnames.h"
48#include "log.h"
Darren Tuckere608ca22004-05-13 16:15:47 +100049#include "misc.h"
Damien Miller4b42d7f2005-03-01 21:48:35 +110050#include "match.h"
51#include "hostfile.h"
Damien Miller69996102006-07-10 20:53:31 +100052#include "dns.h"
Damien Millerf3747bf2013-01-18 11:44:04 +110053#include "ssh.h"
Damien Miller0a80ca12010-02-27 07:55:05 +110054#include "ssh2.h"
djm@openbsd.org1129dcf2015-01-15 09:40:00 +000055#include "ssherr.h"
Damien Miller7ea845e2010-02-12 09:21:02 +110056#include "ssh-pkcs11.h"
Damien Millerf3747bf2013-01-18 11:44:04 +110057#include "atomicio.h"
58#include "krl.h"
djm@openbsd.org56d1c832014-12-21 22:27:55 +000059#include "digest.h"
djm@openbsd.orga287c5a2017-02-10 03:36:40 +000060#include "utf8.h"
djm@openbsd.orga98339e2017-06-28 01:09:22 +000061#include "authfd.h"
Ben Lindstromcd392282001-07-04 03:44:03 +000062
djm@openbsd.orgd1958792015-05-28 04:40:13 +000063#ifdef WITH_OPENSSL
64# define DEFAULT_KEY_TYPE_NAME "rsa"
65#else
66# define DEFAULT_KEY_TYPE_NAME "ed25519"
67#endif
68
Damien Miller3f54a9f2005-11-05 14:52:18 +110069/* Number of bits in the RSA/DSA key. This value can be set on the command line. */
70#define DEFAULT_BITS 2048
71#define DEFAULT_BITS_DSA 1024
Damien Miller6e9f6802010-09-10 11:17:38 +100072#define DEFAULT_BITS_ECDSA 256
Damien Miller3f54a9f2005-11-05 14:52:18 +110073u_int32_t bits = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100074
Damien Miller5428f641999-11-25 11:54:57 +110075/*
76 * Flag indicating that we just want to change the passphrase. This can be
77 * set on the command line.
78 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100079int change_passphrase = 0;
80
Damien Miller5428f641999-11-25 11:54:57 +110081/*
82 * Flag indicating that we just want to change the comment. This can be set
83 * on the command line.
84 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100085int change_comment = 0;
86
87int quiet = 0;
88
Darren Tucker35c45532008-06-13 04:43:15 +100089int log_level = SYSLOG_LEVEL_INFO;
90
Damien Miller4b42d7f2005-03-01 21:48:35 +110091/* Flag indicating that we want to hash a known_hosts file */
92int hash_hosts = 0;
93/* Flag indicating that we want lookup a host in known_hosts file */
94int find_host = 0;
95/* Flag indicating that we want to delete a host from a known_hosts file */
96int delete_host = 0;
97
Damien Millerf2b70ca2010-03-05 07:39:35 +110098/* Flag indicating that we want to show the contents of a certificate */
99int show_cert = 0;
100
Damien Miller10f6f6b1999-11-17 17:29:08 +1100101/* Flag indicating that we just want to see the key fingerprint */
102int print_fingerprint = 0;
Ben Lindstrom8fd372b2001-03-12 03:02:17 +0000103int print_bubblebabble = 0;
Damien Miller10f6f6b1999-11-17 17:29:08 +1100104
djm@openbsd.org56d1c832014-12-21 22:27:55 +0000105/* Hash algorithm to use for fingerprints. */
106int fingerprint_hash = SSH_FP_HASH_DEFAULT;
107
Damien Miller431f66b1999-11-21 18:31:57 +1100108/* The identity file name, given on the command line or entered by the user. */
109char identity_file[1024];
110int have_identity = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000111
112/* This is set to the passphrase if given on the command line. */
113char *identity_passphrase = NULL;
114
115/* This is set to the new passphrase if given on the command line. */
116char *identity_new_passphrase = NULL;
117
118/* This is set to the new comment if given on the command line. */
119char *identity_comment = NULL;
120
Damien Miller0a80ca12010-02-27 07:55:05 +1100121/* Path to CA key when certifying keys. */
122char *ca_key_path = NULL;
123
djm@openbsd.orga98339e2017-06-28 01:09:22 +0000124/* Prefer to use agent keys for CA signing */
125int prefer_agent = 0;
126
Damien Miller4e270b02010-04-16 15:56:21 +1000127/* Certificate serial number */
Damien Miller55aca022012-12-03 11:25:30 +1100128unsigned long long cert_serial = 0;
Damien Miller4e270b02010-04-16 15:56:21 +1000129
Damien Miller0a80ca12010-02-27 07:55:05 +1100130/* Key type when certifying */
131u_int cert_key_type = SSH2_CERT_TYPE_USER;
132
133/* "key ID" of signed key */
134char *cert_key_id = NULL;
135
136/* Comma-separated list of principal names for certifying keys */
137char *cert_principals = NULL;
138
139/* Validity period for certificates */
140u_int64_t cert_valid_from = 0;
141u_int64_t cert_valid_to = ~0ULL;
142
Damien Miller4e270b02010-04-16 15:56:21 +1000143/* Certificate options */
Damien Millerd0e4a8e2010-05-21 14:58:32 +1000144#define CERTOPT_X_FWD (1)
145#define CERTOPT_AGENT_FWD (1<<1)
146#define CERTOPT_PORT_FWD (1<<2)
147#define CERTOPT_PTY (1<<3)
148#define CERTOPT_USER_RC (1<<4)
149#define CERTOPT_DEFAULT (CERTOPT_X_FWD|CERTOPT_AGENT_FWD| \
150 CERTOPT_PORT_FWD|CERTOPT_PTY|CERTOPT_USER_RC)
151u_int32_t certflags_flags = CERTOPT_DEFAULT;
152char *certflags_command = NULL;
153char *certflags_src_addr = NULL;
Damien Miller0a80ca12010-02-27 07:55:05 +1100154
djm@openbsd.org249516e2017-04-29 04:12:25 +0000155/* Arbitrary extensions specified by user */
156struct cert_userext {
157 char *key;
158 char *val;
159 int crit;
160};
161struct cert_userext *cert_userext;
162size_t ncert_userext;
163
Damien Miller44b25042010-07-02 13:35:01 +1000164/* Conversion to/from various formats */
165int convert_to = 0;
166int convert_from = 0;
167enum {
168 FMT_RFC4716,
169 FMT_PKCS8,
170 FMT_PEM
171} convert_format = FMT_RFC4716;
Damien Millereba71ba2000-04-29 23:57:08 +1000172int print_public = 0;
Damien Miller37876e92003-05-15 10:19:46 +1000173int print_generic = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100174
Damien Millera41c8b12002-01-22 23:05:08 +1100175char *key_type_name = NULL;
Damien Millereba71ba2000-04-29 23:57:08 +1000176
Damien Miller757f34e2010-08-05 13:05:31 +1000177/* Load key from this PKCS#11 provider */
178char *pkcs11provider = NULL;
Damien Miller44b25042010-07-02 13:35:01 +1000179
Damien Millerbcd00ab2013-12-07 10:41:55 +1100180/* Use new OpenSSH private key format when writing SSH2 keys instead of PEM */
181int use_new_format = 0;
182
183/* Cipher for new-format private keys */
184char *new_format_cipher = NULL;
185
186/*
187 * Number of KDF rounds to derive new format keys /
188 * number of primality trials when screening moduli.
189 */
190int rounds = 0;
191
Damien Miller431f66b1999-11-21 18:31:57 +1100192/* argv0 */
193extern char *__progname;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000194
Damien Millere5c0d522014-07-03 21:24:19 +1000195char hostname[NI_MAXHOST];
Damien Millereba71ba2000-04-29 23:57:08 +1000196
djm@openbsd.org1d9a2e22015-05-28 07:37:31 +0000197#ifdef WITH_OPENSSL
Darren Tucker770fc012004-05-13 16:24:32 +1000198/* moduli.c */
Damien Millerb089fb52005-05-26 12:16:18 +1000199int gen_candidates(FILE *, u_int32_t, u_int32_t, BIGNUM *);
Damien Millerdfceafe2012-07-06 13:44:19 +1000200int prime_test(FILE *, FILE *, u_int32_t, u_int32_t, char *, unsigned long,
201 unsigned long);
djm@openbsd.org1d9a2e22015-05-28 07:37:31 +0000202#endif
Darren Tucker770fc012004-05-13 16:24:32 +1000203
Ben Lindstrombba81212001-06-25 05:01:22 +0000204static void
djm@openbsd.org7efb4552015-01-18 13:22:28 +0000205type_bits_valid(int type, const char *name, u_int32_t *bitsp)
Damien Miller58f1baf2011-05-05 14:06:15 +1000206{
Damien Miller72ef7c12015-01-15 02:21:31 +1100207#ifdef WITH_OPENSSL
djm@openbsd.org1d9a2e22015-05-28 07:37:31 +0000208 u_int maxbits, nid;
Damien Miller72ef7c12015-01-15 02:21:31 +1100209#endif
Damien Miller58f1baf2011-05-05 14:06:15 +1000210
djm@openbsd.org3038a192015-04-17 13:19:22 +0000211 if (type == KEY_UNSPEC)
212 fatal("unknown key type %s", key_type_name);
Damien Miller884b63a2011-05-05 14:14:52 +1000213 if (*bitsp == 0) {
Damien Miller773dda22015-01-30 23:10:17 +1100214#ifdef WITH_OPENSSL
Damien Miller58f1baf2011-05-05 14:06:15 +1000215 if (type == KEY_DSA)
Damien Miller884b63a2011-05-05 14:14:52 +1000216 *bitsp = DEFAULT_BITS_DSA;
djm@openbsd.org7efb4552015-01-18 13:22:28 +0000217 else if (type == KEY_ECDSA) {
218 if (name != NULL &&
219 (nid = sshkey_ecdsa_nid_from_name(name)) > 0)
220 *bitsp = sshkey_curve_nid_to_bits(nid);
221 if (*bitsp == 0)
222 *bitsp = DEFAULT_BITS_ECDSA;
Damien Miller773dda22015-01-30 23:10:17 +1100223 } else
224#endif
Damien Miller884b63a2011-05-05 14:14:52 +1000225 *bitsp = DEFAULT_BITS;
Damien Miller58f1baf2011-05-05 14:06:15 +1000226 }
Damien Miller72ef7c12015-01-15 02:21:31 +1100227#ifdef WITH_OPENSSL
Damien Miller58f1baf2011-05-05 14:06:15 +1000228 maxbits = (type == KEY_DSA) ?
229 OPENSSL_DSA_MAX_MODULUS_BITS : OPENSSL_RSA_MAX_MODULUS_BITS;
djm@openbsd.org3038a192015-04-17 13:19:22 +0000230 if (*bitsp > maxbits)
231 fatal("key bits exceeds maximum %d", maxbits);
djm@openbsd.orgbd636f42017-05-07 23:15:59 +0000232 switch (type) {
233 case KEY_DSA:
234 if (*bitsp != 1024)
235 fatal("Invalid DSA key length: must be 1024 bits");
236 break;
237 case KEY_RSA:
238 if (*bitsp < SSH_RSA_MINIMUM_MODULUS_SIZE)
239 fatal("Invalid RSA key length: minimum is %d bits",
240 SSH_RSA_MINIMUM_MODULUS_SIZE);
241 break;
242 case KEY_ECDSA:
243 if (sshkey_ecdsa_bits_to_nid(*bitsp) == -1)
244 fatal("Invalid ECDSA key length: valid lengths are "
245 "256, 384 or 521 bits");
246 }
Damien Miller1f0311c2014-05-15 14:24:09 +1000247#endif
Damien Miller58f1baf2011-05-05 14:06:15 +1000248}
249
250static void
Damien Miller431f66b1999-11-21 18:31:57 +1100251ask_filename(struct passwd *pw, const char *prompt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000252{
Damien Miller95def091999-11-25 00:26:21 +1100253 char buf[1024];
Damien Millere39cacc2000-11-29 12:18:44 +1100254 char *name = NULL;
255
Damien Miller993dd552002-02-19 15:22:47 +1100256 if (key_type_name == NULL)
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000257 name = _PATH_SSH_CLIENT_ID_RSA;
Damien Miller90967402006-03-26 14:07:26 +1100258 else {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000259 switch (sshkey_type_from_name(key_type_name)) {
Damien Miller4e270b02010-04-16 15:56:21 +1000260 case KEY_DSA_CERT:
Damien Miller993dd552002-02-19 15:22:47 +1100261 case KEY_DSA:
262 name = _PATH_SSH_CLIENT_ID_DSA;
263 break;
Damien Millerdd190dd2010-11-11 14:17:02 +1100264#ifdef OPENSSL_HAS_ECC
Damien Millereb8b60e2010-08-31 22:41:14 +1000265 case KEY_ECDSA_CERT:
266 case KEY_ECDSA:
267 name = _PATH_SSH_CLIENT_ID_ECDSA;
268 break;
Damien Millerdd190dd2010-11-11 14:17:02 +1100269#endif
Damien Miller4e270b02010-04-16 15:56:21 +1000270 case KEY_RSA_CERT:
Damien Miller993dd552002-02-19 15:22:47 +1100271 case KEY_RSA:
272 name = _PATH_SSH_CLIENT_ID_RSA;
273 break;
Damien Miller5be9d9e2013-12-07 11:24:01 +1100274 case KEY_ED25519:
275 case KEY_ED25519_CERT:
276 name = _PATH_SSH_CLIENT_ID_ED25519;
277 break;
Damien Miller993dd552002-02-19 15:22:47 +1100278 default:
djm@openbsd.org3038a192015-04-17 13:19:22 +0000279 fatal("bad key type");
Damien Miller993dd552002-02-19 15:22:47 +1100280 }
Damien Miller90967402006-03-26 14:07:26 +1100281 }
djm@openbsd.org3038a192015-04-17 13:19:22 +0000282 snprintf(identity_file, sizeof(identity_file),
283 "%s/%s", pw->pw_dir, name);
284 printf("%s (%s): ", prompt, identity_file);
285 fflush(stdout);
Damien Miller95def091999-11-25 00:26:21 +1100286 if (fgets(buf, sizeof(buf), stdin) == NULL)
287 exit(1);
Damien Miller14b017d2007-09-17 16:09:15 +1000288 buf[strcspn(buf, "\n")] = '\0';
Damien Miller95def091999-11-25 00:26:21 +1100289 if (strcmp(buf, "") != 0)
290 strlcpy(identity_file, buf, sizeof(identity_file));
291 have_identity = 1;
Damien Miller10f6f6b1999-11-17 17:29:08 +1100292}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000293
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000294static struct sshkey *
Ben Lindstromd78ae762001-06-05 20:35:09 +0000295load_identity(char *filename)
Damien Millereba71ba2000-04-29 23:57:08 +1000296{
Ben Lindstromd0fca422001-03-26 13:44:06 +0000297 char *pass;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000298 struct sshkey *prv;
299 int r;
Ben Lindstromd0fca422001-03-26 13:44:06 +0000300
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000301 if ((r = sshkey_load_private(filename, "", &prv, NULL)) == 0)
302 return prv;
303 if (r != SSH_ERR_KEY_WRONG_PASSPHRASE)
304 fatal("Load key \"%s\": %s", filename, ssh_err(r));
305 if (identity_passphrase)
306 pass = xstrdup(identity_passphrase);
307 else
308 pass = read_passphrase("Enter passphrase: ", RP_ALLOW_STDIN);
309 r = sshkey_load_private(filename, pass, &prv, NULL);
310 explicit_bzero(pass, strlen(pass));
311 free(pass);
312 if (r != 0)
313 fatal("Load key \"%s\": %s", filename, ssh_err(r));
Ben Lindstromd0fca422001-03-26 13:44:06 +0000314 return prv;
Damien Millereba71ba2000-04-29 23:57:08 +1000315}
316
Damien Miller874d77b2000-10-14 16:23:11 +1100317#define SSH_COM_PUBLIC_BEGIN "---- BEGIN SSH2 PUBLIC KEY ----"
Ben Lindstromcb72e4f2002-06-21 00:41:51 +0000318#define SSH_COM_PUBLIC_END "---- END SSH2 PUBLIC KEY ----"
Damien Miller874d77b2000-10-14 16:23:11 +1100319#define SSH_COM_PRIVATE_BEGIN "---- BEGIN SSH2 ENCRYPTED PRIVATE KEY ----"
Kevin Stevesef4eea92001-02-05 12:42:17 +0000320#define SSH_COM_PRIVATE_KEY_MAGIC 0x3f6ff9eb
Damien Millereba71ba2000-04-29 23:57:08 +1000321
Damien Miller1f0311c2014-05-15 14:24:09 +1000322#ifdef WITH_OPENSSL
Ben Lindstrombba81212001-06-25 05:01:22 +0000323static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000324do_convert_to_ssh2(struct passwd *pw, struct sshkey *k)
Damien Millereba71ba2000-04-29 23:57:08 +1000325{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000326 size_t len;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000327 u_char *blob;
Darren Tuckerd04758d2010-01-12 19:41:57 +1100328 char comment[61];
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000329 int r;
Damien Millereba71ba2000-04-29 23:57:08 +1000330
djm@openbsd.org3038a192015-04-17 13:19:22 +0000331 if ((r = sshkey_to_blob(k, &blob, &len)) != 0)
332 fatal("key_to_blob failed: %s", ssh_err(r));
Darren Tuckerd04758d2010-01-12 19:41:57 +1100333 /* Comment + surrounds must fit into 72 chars (RFC 4716 sec 3.3) */
334 snprintf(comment, sizeof(comment),
335 "%u-bit %s, converted by %s@%s from OpenSSH",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000336 sshkey_size(k), sshkey_type(k),
Damien Millereba71ba2000-04-29 23:57:08 +1000337 pw->pw_name, hostname);
Darren Tuckerd04758d2010-01-12 19:41:57 +1100338
339 fprintf(stdout, "%s\n", SSH_COM_PUBLIC_BEGIN);
340 fprintf(stdout, "Comment: \"%s\"\n", comment);
Damien Millereba71ba2000-04-29 23:57:08 +1000341 dump_base64(stdout, blob, len);
Damien Miller874d77b2000-10-14 16:23:11 +1100342 fprintf(stdout, "%s\n", SSH_COM_PUBLIC_END);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000343 sshkey_free(k);
Darren Tuckera627d422013-06-02 07:31:17 +1000344 free(blob);
Damien Millereba71ba2000-04-29 23:57:08 +1000345 exit(0);
346}
347
Ben Lindstrombba81212001-06-25 05:01:22 +0000348static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000349do_convert_to_pkcs8(struct sshkey *k)
Damien Miller44b25042010-07-02 13:35:01 +1000350{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000351 switch (sshkey_type_plain(k->type)) {
Damien Miller44b25042010-07-02 13:35:01 +1000352 case KEY_RSA:
353 if (!PEM_write_RSA_PUBKEY(stdout, k->rsa))
354 fatal("PEM_write_RSA_PUBKEY failed");
355 break;
356 case KEY_DSA:
357 if (!PEM_write_DSA_PUBKEY(stdout, k->dsa))
358 fatal("PEM_write_DSA_PUBKEY failed");
359 break;
Damien Miller6af914a2010-09-10 11:39:26 +1000360#ifdef OPENSSL_HAS_ECC
Damien Millereb8b60e2010-08-31 22:41:14 +1000361 case KEY_ECDSA:
362 if (!PEM_write_EC_PUBKEY(stdout, k->ecdsa))
363 fatal("PEM_write_EC_PUBKEY failed");
364 break;
Damien Miller6af914a2010-09-10 11:39:26 +1000365#endif
Damien Miller44b25042010-07-02 13:35:01 +1000366 default:
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000367 fatal("%s: unsupported key type %s", __func__, sshkey_type(k));
Damien Miller44b25042010-07-02 13:35:01 +1000368 }
369 exit(0);
370}
371
372static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000373do_convert_to_pem(struct sshkey *k)
Damien Miller44b25042010-07-02 13:35:01 +1000374{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000375 switch (sshkey_type_plain(k->type)) {
Damien Miller44b25042010-07-02 13:35:01 +1000376 case KEY_RSA:
377 if (!PEM_write_RSAPublicKey(stdout, k->rsa))
378 fatal("PEM_write_RSAPublicKey failed");
379 break;
380#if notyet /* OpenSSH 0.9.8 lacks this function */
381 case KEY_DSA:
382 if (!PEM_write_DSAPublicKey(stdout, k->dsa))
383 fatal("PEM_write_DSAPublicKey failed");
384 break;
385#endif
Damien Millereb8b60e2010-08-31 22:41:14 +1000386 /* XXX ECDSA? */
Damien Miller44b25042010-07-02 13:35:01 +1000387 default:
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000388 fatal("%s: unsupported key type %s", __func__, sshkey_type(k));
Damien Miller44b25042010-07-02 13:35:01 +1000389 }
390 exit(0);
391}
392
393static void
394do_convert_to(struct passwd *pw)
395{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000396 struct sshkey *k;
Damien Miller44b25042010-07-02 13:35:01 +1000397 struct stat st;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000398 int r;
Damien Miller44b25042010-07-02 13:35:01 +1000399
400 if (!have_identity)
401 ask_filename(pw, "Enter file in which the key is");
402 if (stat(identity_file, &st) < 0)
403 fatal("%s: %s: %s", __progname, identity_file, strerror(errno));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000404 if ((r = sshkey_load_public(identity_file, &k, NULL)) != 0)
405 k = load_identity(identity_file);
Damien Miller44b25042010-07-02 13:35:01 +1000406 switch (convert_format) {
407 case FMT_RFC4716:
408 do_convert_to_ssh2(pw, k);
409 break;
410 case FMT_PKCS8:
411 do_convert_to_pkcs8(k);
412 break;
413 case FMT_PEM:
414 do_convert_to_pem(k);
415 break;
416 default:
417 fatal("%s: unknown key format %d", __func__, convert_format);
418 }
419 exit(0);
420}
421
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000422/*
423 * This is almost exactly the bignum1 encoding, but with 32 bit for length
424 * instead of 16.
425 */
Damien Miller44b25042010-07-02 13:35:01 +1000426static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000427buffer_get_bignum_bits(struct sshbuf *b, BIGNUM *value)
Damien Miller874d77b2000-10-14 16:23:11 +1100428{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000429 u_int bytes, bignum_bits;
430 int r;
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000431
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000432 if ((r = sshbuf_get_u32(b, &bignum_bits)) != 0)
433 fatal("%s: buffer error: %s", __func__, ssh_err(r));
434 bytes = (bignum_bits + 7) / 8;
435 if (sshbuf_len(b) < bytes)
436 fatal("%s: input buffer too small: need %d have %zu",
437 __func__, bytes, sshbuf_len(b));
438 if (BN_bin2bn(sshbuf_ptr(b), bytes, value) == NULL)
439 fatal("%s: BN_bin2bn failed", __func__);
440 if ((r = sshbuf_consume(b, bytes)) != 0)
441 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Miller874d77b2000-10-14 16:23:11 +1100442}
443
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000444static struct sshkey *
Ben Lindstrom90fd8142002-02-26 18:09:42 +0000445do_convert_private_ssh2_from_blob(u_char *blob, u_int blen)
Damien Miller874d77b2000-10-14 16:23:11 +1100446{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000447 struct sshbuf *b;
448 struct sshkey *key = NULL;
Damien Miller874d77b2000-10-14 16:23:11 +1100449 char *type, *cipher;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000450 u_char e1, e2, e3, *sig = NULL, data[] = "abcde12345";
451 int r, rlen, ktype;
452 u_int magic, i1, i2, i3, i4;
453 size_t slen;
Ben Lindstrome586c4c2001-06-25 05:04:58 +0000454 u_long e;
Damien Miller874d77b2000-10-14 16:23:11 +1100455
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000456 if ((b = sshbuf_from(blob, blen)) == NULL)
457 fatal("%s: sshbuf_from failed", __func__);
458 if ((r = sshbuf_get_u32(b, &magic)) != 0)
459 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Miller874d77b2000-10-14 16:23:11 +1100460
Damien Miller874d77b2000-10-14 16:23:11 +1100461 if (magic != SSH_COM_PRIVATE_KEY_MAGIC) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000462 error("bad magic 0x%x != 0x%x", magic,
463 SSH_COM_PRIVATE_KEY_MAGIC);
464 sshbuf_free(b);
Damien Miller874d77b2000-10-14 16:23:11 +1100465 return NULL;
466 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000467 if ((r = sshbuf_get_u32(b, &i1)) != 0 ||
468 (r = sshbuf_get_cstring(b, &type, NULL)) != 0 ||
469 (r = sshbuf_get_cstring(b, &cipher, NULL)) != 0 ||
470 (r = sshbuf_get_u32(b, &i2)) != 0 ||
471 (r = sshbuf_get_u32(b, &i3)) != 0 ||
472 (r = sshbuf_get_u32(b, &i4)) != 0)
473 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Miller80163902007-01-05 16:30:16 +1100474 debug("ignore (%d %d %d %d)", i1, i2, i3, i4);
Damien Miller874d77b2000-10-14 16:23:11 +1100475 if (strcmp(cipher, "none") != 0) {
476 error("unsupported cipher %s", cipher);
Darren Tuckera627d422013-06-02 07:31:17 +1000477 free(cipher);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000478 sshbuf_free(b);
Darren Tuckera627d422013-06-02 07:31:17 +1000479 free(type);
Damien Miller874d77b2000-10-14 16:23:11 +1100480 return NULL;
481 }
Darren Tuckera627d422013-06-02 07:31:17 +1000482 free(cipher);
Damien Miller874d77b2000-10-14 16:23:11 +1100483
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000484 if (strstr(type, "dsa")) {
485 ktype = KEY_DSA;
486 } else if (strstr(type, "rsa")) {
487 ktype = KEY_RSA;
488 } else {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000489 sshbuf_free(b);
Darren Tuckera627d422013-06-02 07:31:17 +1000490 free(type);
Damien Miller874d77b2000-10-14 16:23:11 +1100491 return NULL;
492 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000493 if ((key = sshkey_new_private(ktype)) == NULL)
markus@openbsd.org7da5df12017-05-30 14:16:41 +0000494 fatal("sshkey_new_private failed");
Darren Tuckera627d422013-06-02 07:31:17 +1000495 free(type);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000496
497 switch (key->type) {
498 case KEY_DSA:
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000499 buffer_get_bignum_bits(b, key->dsa->p);
500 buffer_get_bignum_bits(b, key->dsa->g);
501 buffer_get_bignum_bits(b, key->dsa->q);
502 buffer_get_bignum_bits(b, key->dsa->pub_key);
503 buffer_get_bignum_bits(b, key->dsa->priv_key);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000504 break;
505 case KEY_RSA:
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000506 if ((r = sshbuf_get_u8(b, &e1)) != 0 ||
507 (e1 < 30 && (r = sshbuf_get_u8(b, &e2)) != 0) ||
508 (e1 < 30 && (r = sshbuf_get_u8(b, &e3)) != 0))
509 fatal("%s: buffer error: %s", __func__, ssh_err(r));
510 e = e1;
Ben Lindstrom34f91882001-06-25 04:47:54 +0000511 debug("e %lx", e);
512 if (e < 30) {
513 e <<= 8;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000514 e += e2;
Ben Lindstrom34f91882001-06-25 04:47:54 +0000515 debug("e %lx", e);
516 e <<= 8;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000517 e += e3;
Ben Lindstrom34f91882001-06-25 04:47:54 +0000518 debug("e %lx", e);
519 }
520 if (!BN_set_word(key->rsa->e, e)) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000521 sshbuf_free(b);
522 sshkey_free(key);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000523 return NULL;
524 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000525 buffer_get_bignum_bits(b, key->rsa->d);
526 buffer_get_bignum_bits(b, key->rsa->n);
527 buffer_get_bignum_bits(b, key->rsa->iqmp);
528 buffer_get_bignum_bits(b, key->rsa->q);
529 buffer_get_bignum_bits(b, key->rsa->p);
djm@openbsd.org83fa3a02017-07-01 13:50:45 +0000530 if ((r = ssh_rsa_generate_additional_parameters(key)) != 0)
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000531 fatal("generate RSA parameters failed: %s", ssh_err(r));
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000532 break;
533 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000534 rlen = sshbuf_len(b);
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +0000535 if (rlen != 0)
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000536 error("do_convert_private_ssh2_from_blob: "
537 "remaining bytes in key blob %d", rlen);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000538 sshbuf_free(b);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000539
Ben Lindstrome586c4c2001-06-25 05:04:58 +0000540 /* try the key */
markus@openbsd.org76c9fbb2015-12-04 16:41:28 +0000541 if (sshkey_sign(key, &sig, &slen, data, sizeof(data), NULL, 0) != 0 ||
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000542 sshkey_verify(key, sig, slen, data, sizeof(data), 0) != 0) {
543 sshkey_free(key);
544 free(sig);
545 return NULL;
546 }
Darren Tuckera627d422013-06-02 07:31:17 +1000547 free(sig);
Damien Miller874d77b2000-10-14 16:23:11 +1100548 return key;
549}
550
Damien Miller8056a9d2006-03-15 12:05:40 +1100551static int
552get_line(FILE *fp, char *line, size_t len)
553{
554 int c;
555 size_t pos = 0;
556
557 line[0] = '\0';
558 while ((c = fgetc(fp)) != EOF) {
djm@openbsd.org3038a192015-04-17 13:19:22 +0000559 if (pos >= len - 1)
560 fatal("input line too long.");
Damien Miller90967402006-03-26 14:07:26 +1100561 switch (c) {
Damien Miller8056a9d2006-03-15 12:05:40 +1100562 case '\r':
563 c = fgetc(fp);
djm@openbsd.org3038a192015-04-17 13:19:22 +0000564 if (c != EOF && c != '\n' && ungetc(c, fp) == EOF)
565 fatal("unget: %s", strerror(errno));
Damien Miller8056a9d2006-03-15 12:05:40 +1100566 return pos;
567 case '\n':
568 return pos;
569 }
570 line[pos++] = c;
571 line[pos] = '\0';
572 }
Damien Miller6c7439f2007-01-05 16:29:55 +1100573 /* We reached EOF */
574 return -1;
Damien Miller8056a9d2006-03-15 12:05:40 +1100575}
576
Ben Lindstrombba81212001-06-25 05:01:22 +0000577static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000578do_convert_from_ssh2(struct passwd *pw, struct sshkey **k, int *private)
Damien Millereba71ba2000-04-29 23:57:08 +1000579{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000580 int r, blen, escaped = 0;
Ben Lindstrom155b9812002-04-02 20:26:26 +0000581 u_int len;
Damien Miller8056a9d2006-03-15 12:05:40 +1100582 char line[1024];
Ben Lindstrom9e0ddd42001-09-18 05:41:19 +0000583 u_char blob[8096];
Damien Millereba71ba2000-04-29 23:57:08 +1000584 char encoded[8096];
Damien Millereba71ba2000-04-29 23:57:08 +1000585 FILE *fp;
586
Damien Millerba3420a2010-06-26 09:39:07 +1000587 if ((fp = fopen(identity_file, "r")) == NULL)
588 fatal("%s: %s: %s", __progname, identity_file, strerror(errno));
Damien Millereba71ba2000-04-29 23:57:08 +1000589 encoded[0] = '\0';
Damien Miller8056a9d2006-03-15 12:05:40 +1100590 while ((blen = get_line(fp, line, sizeof(line))) != -1) {
Damien Miller746d1a62013-07-18 16:13:02 +1000591 if (blen > 0 && line[blen - 1] == '\\')
Damien Miller30c3d422000-05-09 11:02:59 +1000592 escaped++;
Damien Millereba71ba2000-04-29 23:57:08 +1000593 if (strncmp(line, "----", 4) == 0 ||
594 strstr(line, ": ") != NULL) {
Damien Miller874d77b2000-10-14 16:23:11 +1100595 if (strstr(line, SSH_COM_PRIVATE_BEGIN) != NULL)
Damien Miller44b25042010-07-02 13:35:01 +1000596 *private = 1;
Ben Lindstrome586c4c2001-06-25 05:04:58 +0000597 if (strstr(line, " END ") != NULL) {
598 break;
599 }
Ben Lindstrom30358602001-04-24 16:59:28 +0000600 /* fprintf(stderr, "ignore: %s", line); */
Damien Millereba71ba2000-04-29 23:57:08 +1000601 continue;
602 }
Damien Miller30c3d422000-05-09 11:02:59 +1000603 if (escaped) {
604 escaped--;
Ben Lindstrom30358602001-04-24 16:59:28 +0000605 /* fprintf(stderr, "escaped: %s", line); */
Damien Miller30c3d422000-05-09 11:02:59 +1000606 continue;
Damien Millereba71ba2000-04-29 23:57:08 +1000607 }
Damien Millereba71ba2000-04-29 23:57:08 +1000608 strlcat(encoded, line, sizeof(encoded));
609 }
Ben Lindstrom155b9812002-04-02 20:26:26 +0000610 len = strlen(encoded);
611 if (((len % 4) == 3) &&
612 (encoded[len-1] == '=') &&
613 (encoded[len-2] == '=') &&
614 (encoded[len-3] == '='))
615 encoded[len-3] = '\0';
Damien Miller4a8ed542002-01-22 23:33:31 +1100616 blen = uudecode(encoded, blob, sizeof(blob));
djm@openbsd.org3038a192015-04-17 13:19:22 +0000617 if (blen < 0)
618 fatal("uudecode failed.");
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000619 if (*private)
620 *k = do_convert_private_ssh2_from_blob(blob, blen);
djm@openbsd.org3038a192015-04-17 13:19:22 +0000621 else if ((r = sshkey_from_blob(blob, blen, k)) != 0)
622 fatal("decode blob failed: %s", ssh_err(r));
Damien Miller44b25042010-07-02 13:35:01 +1000623 fclose(fp);
624}
625
626static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000627do_convert_from_pkcs8(struct sshkey **k, int *private)
Damien Miller44b25042010-07-02 13:35:01 +1000628{
629 EVP_PKEY *pubkey;
630 FILE *fp;
631
632 if ((fp = fopen(identity_file, "r")) == NULL)
633 fatal("%s: %s: %s", __progname, identity_file, strerror(errno));
634 if ((pubkey = PEM_read_PUBKEY(fp, NULL, NULL, NULL)) == NULL) {
635 fatal("%s: %s is not a recognised public key format", __func__,
636 identity_file);
637 }
638 fclose(fp);
639 switch (EVP_PKEY_type(pubkey->type)) {
640 case EVP_PKEY_RSA:
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000641 if ((*k = sshkey_new(KEY_UNSPEC)) == NULL)
642 fatal("sshkey_new failed");
Damien Miller44b25042010-07-02 13:35:01 +1000643 (*k)->type = KEY_RSA;
644 (*k)->rsa = EVP_PKEY_get1_RSA(pubkey);
645 break;
646 case EVP_PKEY_DSA:
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000647 if ((*k = sshkey_new(KEY_UNSPEC)) == NULL)
648 fatal("sshkey_new failed");
Damien Miller44b25042010-07-02 13:35:01 +1000649 (*k)->type = KEY_DSA;
650 (*k)->dsa = EVP_PKEY_get1_DSA(pubkey);
651 break;
Damien Miller6af914a2010-09-10 11:39:26 +1000652#ifdef OPENSSL_HAS_ECC
Damien Millereb8b60e2010-08-31 22:41:14 +1000653 case EVP_PKEY_EC:
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000654 if ((*k = sshkey_new(KEY_UNSPEC)) == NULL)
655 fatal("sshkey_new failed");
Damien Millereb8b60e2010-08-31 22:41:14 +1000656 (*k)->type = KEY_ECDSA;
657 (*k)->ecdsa = EVP_PKEY_get1_EC_KEY(pubkey);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000658 (*k)->ecdsa_nid = sshkey_ecdsa_key_to_nid((*k)->ecdsa);
Damien Millereb8b60e2010-08-31 22:41:14 +1000659 break;
Damien Miller6af914a2010-09-10 11:39:26 +1000660#endif
Damien Miller44b25042010-07-02 13:35:01 +1000661 default:
662 fatal("%s: unsupported pubkey type %d", __func__,
663 EVP_PKEY_type(pubkey->type));
664 }
665 EVP_PKEY_free(pubkey);
666 return;
667}
668
669static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000670do_convert_from_pem(struct sshkey **k, int *private)
Damien Miller44b25042010-07-02 13:35:01 +1000671{
672 FILE *fp;
673 RSA *rsa;
674#ifdef notyet
675 DSA *dsa;
676#endif
677
678 if ((fp = fopen(identity_file, "r")) == NULL)
679 fatal("%s: %s: %s", __progname, identity_file, strerror(errno));
680 if ((rsa = PEM_read_RSAPublicKey(fp, NULL, NULL, NULL)) != NULL) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000681 if ((*k = sshkey_new(KEY_UNSPEC)) == NULL)
682 fatal("sshkey_new failed");
Damien Miller44b25042010-07-02 13:35:01 +1000683 (*k)->type = KEY_RSA;
684 (*k)->rsa = rsa;
685 fclose(fp);
686 return;
687 }
688#if notyet /* OpenSSH 0.9.8 lacks this function */
689 rewind(fp);
690 if ((dsa = PEM_read_DSAPublicKey(fp, NULL, NULL, NULL)) != NULL) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000691 if ((*k = sshkey_new(KEY_UNSPEC)) == NULL)
692 fatal("sshkey_new failed");
Damien Miller44b25042010-07-02 13:35:01 +1000693 (*k)->type = KEY_DSA;
694 (*k)->dsa = dsa;
695 fclose(fp);
696 return;
697 }
Damien Millereb8b60e2010-08-31 22:41:14 +1000698 /* XXX ECDSA */
Damien Miller44b25042010-07-02 13:35:01 +1000699#endif
700 fatal("%s: unrecognised raw private key format", __func__);
701}
702
703static void
704do_convert_from(struct passwd *pw)
705{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000706 struct sshkey *k = NULL;
707 int r, private = 0, ok = 0;
Damien Miller44b25042010-07-02 13:35:01 +1000708 struct stat st;
709
710 if (!have_identity)
711 ask_filename(pw, "Enter file in which the key is");
712 if (stat(identity_file, &st) < 0)
713 fatal("%s: %s: %s", __progname, identity_file, strerror(errno));
714
715 switch (convert_format) {
716 case FMT_RFC4716:
717 do_convert_from_ssh2(pw, &k, &private);
718 break;
719 case FMT_PKCS8:
720 do_convert_from_pkcs8(&k, &private);
721 break;
722 case FMT_PEM:
723 do_convert_from_pem(&k, &private);
724 break;
725 default:
726 fatal("%s: unknown key format %d", __func__, convert_format);
727 }
728
djm@openbsd.org7a2c3682015-01-30 00:59:19 +0000729 if (!private) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000730 if ((r = sshkey_write(k, stdout)) == 0)
731 ok = 1;
Damien Miller44b25042010-07-02 13:35:01 +1000732 if (ok)
733 fprintf(stdout, "\n");
djm@openbsd.org7a2c3682015-01-30 00:59:19 +0000734 } else {
Damien Miller44b25042010-07-02 13:35:01 +1000735 switch (k->type) {
736 case KEY_DSA:
737 ok = PEM_write_DSAPrivateKey(stdout, k->dsa, NULL,
738 NULL, 0, NULL, NULL);
739 break;
Damien Miller6af914a2010-09-10 11:39:26 +1000740#ifdef OPENSSL_HAS_ECC
Damien Millereb8b60e2010-08-31 22:41:14 +1000741 case KEY_ECDSA:
742 ok = PEM_write_ECPrivateKey(stdout, k->ecdsa, NULL,
743 NULL, 0, NULL, NULL);
744 break;
Damien Miller6af914a2010-09-10 11:39:26 +1000745#endif
Damien Miller44b25042010-07-02 13:35:01 +1000746 case KEY_RSA:
747 ok = PEM_write_RSAPrivateKey(stdout, k->rsa, NULL,
748 NULL, 0, NULL, NULL);
749 break;
750 default:
751 fatal("%s: unsupported key type %s", __func__,
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000752 sshkey_type(k));
Damien Miller44b25042010-07-02 13:35:01 +1000753 }
754 }
755
djm@openbsd.org3038a192015-04-17 13:19:22 +0000756 if (!ok)
757 fatal("key write failed");
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000758 sshkey_free(k);
Damien Millereba71ba2000-04-29 23:57:08 +1000759 exit(0);
760}
Damien Miller1f0311c2014-05-15 14:24:09 +1000761#endif
Damien Millereba71ba2000-04-29 23:57:08 +1000762
Ben Lindstrombba81212001-06-25 05:01:22 +0000763static void
Damien Millereba71ba2000-04-29 23:57:08 +1000764do_print_public(struct passwd *pw)
765{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000766 struct sshkey *prv;
Damien Millereba71ba2000-04-29 23:57:08 +1000767 struct stat st;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000768 int r;
Damien Millereba71ba2000-04-29 23:57:08 +1000769
770 if (!have_identity)
771 ask_filename(pw, "Enter file in which the key is");
djm@openbsd.org3038a192015-04-17 13:19:22 +0000772 if (stat(identity_file, &st) < 0)
773 fatal("%s: %s", identity_file, strerror(errno));
Ben Lindstromd78ae762001-06-05 20:35:09 +0000774 prv = load_identity(identity_file);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000775 if ((r = sshkey_write(prv, stdout)) != 0)
markus@openbsd.org7da5df12017-05-30 14:16:41 +0000776 error("sshkey_write failed: %s", ssh_err(r));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000777 sshkey_free(prv);
Damien Millereba71ba2000-04-29 23:57:08 +1000778 fprintf(stdout, "\n");
779 exit(0);
780}
781
Ben Lindstromcd392282001-07-04 03:44:03 +0000782static void
Damien Miller757f34e2010-08-05 13:05:31 +1000783do_download(struct passwd *pw)
Ben Lindstromcd392282001-07-04 03:44:03 +0000784{
Damien Miller7ea845e2010-02-12 09:21:02 +1100785#ifdef ENABLE_PKCS11
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000786 struct sshkey **keys = NULL;
Damien Miller7ea845e2010-02-12 09:21:02 +1100787 int i, nkeys;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000788 enum sshkey_fp_rep rep;
djm@openbsd.org56d1c832014-12-21 22:27:55 +0000789 int fptype;
Damien Millerec77c952013-01-09 15:58:00 +1100790 char *fp, *ra;
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000791
djm@openbsd.org56d1c832014-12-21 22:27:55 +0000792 fptype = print_bubblebabble ? SSH_DIGEST_SHA1 : fingerprint_hash;
793 rep = print_bubblebabble ? SSH_FP_BUBBLEBABBLE : SSH_FP_DEFAULT;
Damien Miller1422c082013-01-09 16:44:54 +1100794
Damien Miller7ea845e2010-02-12 09:21:02 +1100795 pkcs11_init(0);
796 nkeys = pkcs11_add_provider(pkcs11provider, NULL, &keys);
797 if (nkeys <= 0)
798 fatal("cannot read public key from pkcs11");
799 for (i = 0; i < nkeys; i++) {
Damien Millerec77c952013-01-09 15:58:00 +1100800 if (print_fingerprint) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000801 fp = sshkey_fingerprint(keys[i], fptype, rep);
802 ra = sshkey_fingerprint(keys[i], fingerprint_hash,
Damien Millerec77c952013-01-09 15:58:00 +1100803 SSH_FP_RANDOMART);
djm@openbsd.org9ce86c92015-01-28 22:36:00 +0000804 if (fp == NULL || ra == NULL)
805 fatal("%s: sshkey_fingerprint fail", __func__);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000806 printf("%u %s %s (PKCS11 key)\n", sshkey_size(keys[i]),
807 fp, sshkey_type(keys[i]));
Damien Millerec77c952013-01-09 15:58:00 +1100808 if (log_level >= SYSLOG_LEVEL_VERBOSE)
809 printf("%s\n", ra);
Darren Tuckera627d422013-06-02 07:31:17 +1000810 free(ra);
811 free(fp);
Damien Millerec77c952013-01-09 15:58:00 +1100812 } else {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000813 (void) sshkey_write(keys[i], stdout); /* XXX check */
Damien Millerec77c952013-01-09 15:58:00 +1100814 fprintf(stdout, "\n");
815 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000816 sshkey_free(keys[i]);
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000817 }
Darren Tuckera627d422013-06-02 07:31:17 +1000818 free(keys);
Damien Miller7ea845e2010-02-12 09:21:02 +1100819 pkcs11_terminate();
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000820 exit(0);
Damien Miller7ea845e2010-02-12 09:21:02 +1100821#else
822 fatal("no pkcs11 support");
823#endif /* ENABLE_PKCS11 */
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000824}
Ben Lindstromcd392282001-07-04 03:44:03 +0000825
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000826static struct sshkey *
827try_read_key(char **cpp)
828{
829 struct sshkey *ret;
830 int r;
831
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000832 if ((ret = sshkey_new(KEY_UNSPEC)) == NULL)
833 fatal("sshkey_new failed");
834 if ((r = sshkey_read(ret, cpp)) == 0)
835 return ret;
836 /* Not a key */
837 sshkey_free(ret);
838 return NULL;
839}
840
841static void
842fingerprint_one_key(const struct sshkey *public, const char *comment)
843{
844 char *fp = NULL, *ra = NULL;
845 enum sshkey_fp_rep rep;
846 int fptype;
847
848 fptype = print_bubblebabble ? SSH_DIGEST_SHA1 : fingerprint_hash;
849 rep = print_bubblebabble ? SSH_FP_BUBBLEBABBLE : SSH_FP_DEFAULT;
850 fp = sshkey_fingerprint(public, fptype, rep);
851 ra = sshkey_fingerprint(public, fingerprint_hash, SSH_FP_RANDOMART);
852 if (fp == NULL || ra == NULL)
853 fatal("%s: sshkey_fingerprint failed", __func__);
djm@openbsd.orga287c5a2017-02-10 03:36:40 +0000854 mprintf("%u %s %s (%s)\n", sshkey_size(public), fp,
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000855 comment ? comment : "no comment", sshkey_type(public));
856 if (log_level >= SYSLOG_LEVEL_VERBOSE)
857 printf("%s\n", ra);
858 free(ra);
859 free(fp);
860}
861
862static void
863fingerprint_private(const char *path)
864{
865 struct stat st;
866 char *comment = NULL;
867 struct sshkey *public = NULL;
868 int r;
869
870 if (stat(identity_file, &st) < 0)
871 fatal("%s: %s", path, strerror(errno));
djm@openbsd.orgbcb7bc72015-11-18 08:37:28 +0000872 if ((r = sshkey_load_public(path, &public, &comment)) != 0) {
873 debug("load public \"%s\": %s", path, ssh_err(r));
874 if ((r = sshkey_load_private(path, NULL,
875 &public, &comment)) != 0) {
876 debug("load private \"%s\": %s", path, ssh_err(r));
877 fatal("%s is not a key file.", path);
878 }
879 }
880
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000881 fingerprint_one_key(public, comment);
882 sshkey_free(public);
883 free(comment);
884}
885
Ben Lindstrombba81212001-06-25 05:01:22 +0000886static void
Damien Miller10f6f6b1999-11-17 17:29:08 +1100887do_fingerprint(struct passwd *pw)
888{
Damien Miller98c7ad62000-03-09 21:27:49 +1100889 FILE *f;
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000890 struct sshkey *public = NULL;
djm@openbsd.orgcce6a362015-12-11 03:19:09 +0000891 char *comment = NULL, *cp, *ep, line[SSH_MAX_PUBKEY_BYTES];
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000892 int i, invalid = 1;
893 const char *path;
djm@openbsd.org1a31d022016-05-02 08:49:03 +0000894 u_long lnum = 0;
Damien Miller10f6f6b1999-11-17 17:29:08 +1100895
Damien Miller95def091999-11-25 00:26:21 +1100896 if (!have_identity)
897 ask_filename(pw, "Enter file in which the key is");
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000898 path = identity_file;
Damien Miller98c7ad62000-03-09 21:27:49 +1100899
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000900 if (strcmp(identity_file, "-") == 0) {
901 f = stdin;
902 path = "(stdin)";
903 } else if ((f = fopen(path, "r")) == NULL)
904 fatal("%s: %s: %s", __progname, path, strerror(errno));
Damien Miller98c7ad62000-03-09 21:27:49 +1100905
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000906 while (read_keyfile_line(f, path, line, sizeof(line), &lnum) == 0) {
907 cp = line;
908 cp[strcspn(cp, "\n")] = '\0';
909 /* Trim leading space and comments */
910 cp = line + strspn(line, " \t");
911 if (*cp == '#' || *cp == '\0')
912 continue;
913
914 /*
915 * Input may be plain keys, private keys, authorized_keys
916 * or known_hosts.
917 */
918
919 /*
920 * Try private keys first. Assume a key is private if
921 * "SSH PRIVATE KEY" appears on the first line and we're
922 * not reading from stdin (XXX support private keys on stdin).
923 */
924 if (lnum == 1 && strcmp(identity_file, "-") != 0 &&
djm@openbsd.orgbcb7bc72015-11-18 08:37:28 +0000925 strstr(cp, "PRIVATE KEY") != NULL) {
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000926 fclose(f);
927 fingerprint_private(path);
928 exit(0);
929 }
930
931 /*
932 * If it's not a private key, then this must be prepared to
933 * accept a public key prefixed with a hostname or options.
934 * Try a bare key first, otherwise skip the leading stuff.
935 */
936 if ((public = try_read_key(&cp)) == NULL) {
937 i = strtol(cp, &ep, 10);
938 if (i == 0 || ep == NULL ||
939 (*ep != ' ' && *ep != '\t')) {
940 int quoted = 0;
941
942 comment = cp;
943 for (; *cp && (quoted || (*cp != ' ' &&
944 *cp != '\t')); cp++) {
945 if (*cp == '\\' && cp[1] == '"')
946 cp++; /* Skip both */
947 else if (*cp == '"')
948 quoted = !quoted;
949 }
950 if (!*cp)
951 continue;
952 *cp++ = '\0';
953 }
954 }
955 /* Retry after parsing leading hostname/key options */
956 if (public == NULL && (public = try_read_key(&cp)) == NULL) {
djm@openbsd.org1a31d022016-05-02 08:49:03 +0000957 debug("%s:%lu: not a public key", path, lnum);
Damien Millerba3420a2010-06-26 09:39:07 +1000958 continue;
Damien Miller95def091999-11-25 00:26:21 +1100959 }
Damien Millerba3420a2010-06-26 09:39:07 +1000960
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000961 /* Find trailing comment, if any */
962 for (; *cp == ' ' || *cp == '\t'; cp++)
Damien Millerba3420a2010-06-26 09:39:07 +1000963 ;
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000964 if (*cp != '\0' && *cp != '#')
Damien Millerba3420a2010-06-26 09:39:07 +1000965 comment = cp;
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000966
967 fingerprint_one_key(public, comment);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000968 sshkey_free(public);
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000969 invalid = 0; /* One good key in the file is sufficient */
Damien Miller95def091999-11-25 00:26:21 +1100970 }
Damien Millerba3420a2010-06-26 09:39:07 +1000971 fclose(f);
972
djm@openbsd.org3038a192015-04-17 13:19:22 +0000973 if (invalid)
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000974 fatal("%s is not a public key file.", path);
Damien Miller95def091999-11-25 00:26:21 +1100975 exit(0);
Damien Miller10f6f6b1999-11-17 17:29:08 +1100976}
977
Damien Miller4b42d7f2005-03-01 21:48:35 +1100978static void
Damien Miller58f1baf2011-05-05 14:06:15 +1000979do_gen_all_hostkeys(struct passwd *pw)
980{
981 struct {
982 char *key_type;
983 char *key_type_display;
984 char *path;
985 } key_types[] = {
djm@openbsd.org5c27e3b2015-03-23 06:06:38 +0000986#ifdef WITH_OPENSSL
Damien Miller58f1baf2011-05-05 14:06:15 +1000987 { "rsa", "RSA" ,_PATH_HOST_RSA_KEY_FILE },
988 { "dsa", "DSA", _PATH_HOST_DSA_KEY_FILE },
Damien Millerb56e4932012-02-06 07:41:27 +1100989#ifdef OPENSSL_HAS_ECC
Damien Miller58f1baf2011-05-05 14:06:15 +1000990 { "ecdsa", "ECDSA",_PATH_HOST_ECDSA_KEY_FILE },
djm@openbsd.org5c27e3b2015-03-23 06:06:38 +0000991#endif /* OPENSSL_HAS_ECC */
992#endif /* WITH_OPENSSL */
Damien Miller5be9d9e2013-12-07 11:24:01 +1100993 { "ed25519", "ED25519",_PATH_HOST_ED25519_KEY_FILE },
Damien Miller58f1baf2011-05-05 14:06:15 +1000994 { NULL, NULL, NULL }
995 };
996
997 int first = 0;
998 struct stat st;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000999 struct sshkey *private, *public;
djm@openbsd.org853edbe2017-07-07 03:53:12 +00001000 char comment[1024], *prv_tmp, *pub_tmp, *prv_file, *pub_file;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001001 int i, type, fd, r;
Damien Miller58f1baf2011-05-05 14:06:15 +10001002 FILE *f;
1003
1004 for (i = 0; key_types[i].key_type; i++) {
djm@openbsd.org853edbe2017-07-07 03:53:12 +00001005 public = private = NULL;
1006 prv_tmp = pub_tmp = prv_file = pub_file = NULL;
1007
1008 xasprintf(&prv_file, "%s%s",
1009 identity_file, key_types[i].path);
1010
1011 /* Check whether private key exists and is not zero-length */
1012 if (stat(prv_file, &st) == 0) {
1013 if (st.st_size != 0)
1014 goto next;
1015 } else if (errno != ENOENT) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00001016 error("Could not stat %s: %s", key_types[i].path,
Damien Miller58f1baf2011-05-05 14:06:15 +10001017 strerror(errno));
djm@openbsd.org853edbe2017-07-07 03:53:12 +00001018 goto failnext;
Damien Miller58f1baf2011-05-05 14:06:15 +10001019 }
1020
djm@openbsd.org853edbe2017-07-07 03:53:12 +00001021 /*
1022 * Private key doesn't exist or is invalid; proceed with
1023 * key generation.
1024 */
1025 xasprintf(&prv_tmp, "%s%s.XXXXXXXXXX",
1026 identity_file, key_types[i].path);
1027 xasprintf(&pub_tmp, "%s%s.pub.XXXXXXXXXX",
1028 identity_file, key_types[i].path);
1029 xasprintf(&pub_file, "%s%s.pub",
1030 identity_file, key_types[i].path);
1031
Damien Miller58f1baf2011-05-05 14:06:15 +10001032 if (first == 0) {
1033 first = 1;
1034 printf("%s: generating new host keys: ", __progname);
1035 }
1036 printf("%s ", key_types[i].key_type_display);
1037 fflush(stdout);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001038 type = sshkey_type_from_name(key_types[i].key_type);
djm@openbsd.org853edbe2017-07-07 03:53:12 +00001039 if ((fd = mkstemp(prv_tmp)) == -1) {
1040 error("Could not save your public key in %s: %s",
1041 prv_tmp, strerror(errno));
1042 goto failnext;
1043 }
1044 close(fd); /* just using mkstemp() to generate/reserve a name */
Damien Miller58f1baf2011-05-05 14:06:15 +10001045 bits = 0;
djm@openbsd.org7efb4552015-01-18 13:22:28 +00001046 type_bits_valid(type, NULL, &bits);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001047 if ((r = sshkey_generate(type, bits, &private)) != 0) {
markus@openbsd.org7da5df12017-05-30 14:16:41 +00001048 error("sshkey_generate failed: %s", ssh_err(r));
djm@openbsd.org853edbe2017-07-07 03:53:12 +00001049 goto failnext;
Damien Miller58f1baf2011-05-05 14:06:15 +10001050 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001051 if ((r = sshkey_from_private(private, &public)) != 0)
1052 fatal("sshkey_from_private failed: %s", ssh_err(r));
Damien Miller58f1baf2011-05-05 14:06:15 +10001053 snprintf(comment, sizeof comment, "%s@%s", pw->pw_name,
1054 hostname);
djm@openbsd.org853edbe2017-07-07 03:53:12 +00001055 if ((r = sshkey_save_private(private, prv_tmp, "",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001056 comment, use_new_format, new_format_cipher, rounds)) != 0) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00001057 error("Saving key \"%s\" failed: %s",
djm@openbsd.org853edbe2017-07-07 03:53:12 +00001058 prv_tmp, ssh_err(r));
1059 goto failnext;
Damien Miller58f1baf2011-05-05 14:06:15 +10001060 }
djm@openbsd.org853edbe2017-07-07 03:53:12 +00001061 if ((fd = mkstemp(pub_tmp)) == -1) {
1062 error("Could not save your public key in %s: %s",
1063 pub_tmp, strerror(errno));
1064 goto failnext;
Damien Miller58f1baf2011-05-05 14:06:15 +10001065 }
djm@openbsd.org853edbe2017-07-07 03:53:12 +00001066 (void)fchmod(fd, 0644);
Damien Miller58f1baf2011-05-05 14:06:15 +10001067 f = fdopen(fd, "w");
1068 if (f == NULL) {
djm@openbsd.org853edbe2017-07-07 03:53:12 +00001069 error("fdopen %s failed: %s", pub_tmp, strerror(errno));
doug@openbsd.org7df88182014-08-21 01:08:52 +00001070 close(fd);
djm@openbsd.org853edbe2017-07-07 03:53:12 +00001071 goto failnext;
Damien Miller58f1baf2011-05-05 14:06:15 +10001072 }
djm@openbsd.orgbb8b4422015-01-16 15:55:07 +00001073 if ((r = sshkey_write(public, f)) != 0) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00001074 error("write key failed: %s", ssh_err(r));
doug@openbsd.org7df88182014-08-21 01:08:52 +00001075 fclose(f);
djm@openbsd.org853edbe2017-07-07 03:53:12 +00001076 goto failnext;
Damien Miller58f1baf2011-05-05 14:06:15 +10001077 }
1078 fprintf(f, " %s\n", comment);
djm@openbsd.org853edbe2017-07-07 03:53:12 +00001079 if (ferror(f) != 0) {
1080 error("write key failed: %s", strerror(errno));
1081 fclose(f);
1082 goto failnext;
1083 }
1084 if (fclose(f) != 0) {
1085 error("key close failed: %s", strerror(errno));
1086 goto failnext;
1087 }
Damien Miller58f1baf2011-05-05 14:06:15 +10001088
djm@openbsd.org853edbe2017-07-07 03:53:12 +00001089 /* Rename temporary files to their permanent locations. */
1090 if (rename(pub_tmp, pub_file) != 0) {
1091 error("Unable to move %s into position: %s",
1092 pub_file, strerror(errno));
1093 goto failnext;
1094 }
1095 if (rename(prv_tmp, prv_file) != 0) {
1096 error("Unable to move %s into position: %s",
1097 key_types[i].path, strerror(errno));
1098 failnext:
1099 first = 0;
1100 goto next;
1101 }
1102 next:
1103 sshkey_free(private);
1104 sshkey_free(public);
1105 free(prv_tmp);
1106 free(pub_tmp);
1107 free(prv_file);
1108 free(pub_file);
Damien Miller58f1baf2011-05-05 14:06:15 +10001109 }
1110 if (first != 0)
1111 printf("\n");
1112}
1113
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001114struct known_hosts_ctx {
djm@openbsd.org2b3c3c72015-01-18 21:51:19 +00001115 const char *host; /* Hostname searched for in find/delete case */
1116 FILE *out; /* Output file, stdout for find_hosts case */
1117 int has_unhashed; /* When hashing, original had unhashed hosts */
1118 int found_key; /* For find/delete, host was found */
1119 int invalid; /* File contained invalid items; don't delete */
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001120};
1121
1122static int
1123known_hosts_hash(struct hostkey_foreach_line *l, void *_ctx)
Damien Miller4b42d7f2005-03-01 21:48:35 +11001124{
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001125 struct known_hosts_ctx *ctx = (struct known_hosts_ctx *)_ctx;
1126 char *hashed, *cp, *hosts, *ohosts;
1127 int has_wild = l->hosts && strcspn(l->hosts, "*?!") != strlen(l->hosts);
dtucker@openbsd.org18501152017-03-06 02:03:20 +00001128 int was_hashed = l->hosts && l->hosts[0] == HASH_DELIM;
Darren Tucker0f7e9102008-06-08 12:54:29 +10001129
djm@openbsd.org6c5c9492015-02-16 22:08:57 +00001130 switch (l->status) {
1131 case HKF_STATUS_OK:
1132 case HKF_STATUS_MATCHED:
1133 /*
1134 * Don't hash hosts already already hashed, with wildcard
1135 * characters or a CA/revocation marker.
1136 */
djm@openbsd.org12d37672017-03-03 06:13:11 +00001137 if (was_hashed || has_wild || l->marker != MRK_NONE) {
djm@openbsd.org6c5c9492015-02-16 22:08:57 +00001138 fprintf(ctx->out, "%s\n", l->line);
1139 if (has_wild && !find_host) {
dtucker@openbsd.orgd0723702017-03-06 00:44:51 +00001140 logit("%s:%lu: ignoring host name "
djm@openbsd.org3038a192015-04-17 13:19:22 +00001141 "with wildcard: %.64s", l->path,
djm@openbsd.org6c5c9492015-02-16 22:08:57 +00001142 l->linenum, l->hosts);
1143 }
1144 return 0;
1145 }
1146 /*
1147 * Split any comma-separated hostnames from the host list,
1148 * hash and store separately.
1149 */
1150 ohosts = hosts = xstrdup(l->hosts);
1151 while ((cp = strsep(&hosts, ",")) != NULL && *cp != '\0') {
djm@openbsd.orgdb259722017-03-10 04:26:06 +00001152 lowercase(cp);
djm@openbsd.org6c5c9492015-02-16 22:08:57 +00001153 if ((hashed = host_hash(cp, NULL, 0)) == NULL)
1154 fatal("hash_host failed");
1155 fprintf(ctx->out, "%s %s\n", hashed, l->rawkey);
1156 ctx->has_unhashed = 1;
1157 }
1158 free(ohosts);
1159 return 0;
1160 case HKF_STATUS_INVALID:
1161 /* Retain invalid lines, but mark file as invalid. */
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001162 ctx->invalid = 1;
dtucker@openbsd.orgd0723702017-03-06 00:44:51 +00001163 logit("%s:%lu: invalid line", l->path, l->linenum);
djm@openbsd.org6c5c9492015-02-16 22:08:57 +00001164 /* FALLTHROUGH */
1165 default:
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001166 fprintf(ctx->out, "%s\n", l->line);
1167 return 0;
Darren Tucker0f7e9102008-06-08 12:54:29 +10001168 }
djm@openbsd.org6c5c9492015-02-16 22:08:57 +00001169 /* NOTREACHED */
1170 return -1;
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001171}
1172
1173static int
1174known_hosts_find_delete(struct hostkey_foreach_line *l, void *_ctx)
1175{
1176 struct known_hosts_ctx *ctx = (struct known_hosts_ctx *)_ctx;
djm@openbsd.org4739e8d2015-05-21 12:01:19 +00001177 enum sshkey_fp_rep rep;
1178 int fptype;
1179 char *fp;
1180
1181 fptype = print_bubblebabble ? SSH_DIGEST_SHA1 : fingerprint_hash;
1182 rep = print_bubblebabble ? SSH_FP_BUBBLEBABBLE : SSH_FP_DEFAULT;
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001183
djm@openbsd.org6c5c9492015-02-16 22:08:57 +00001184 if (l->status == HKF_STATUS_MATCHED) {
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001185 if (delete_host) {
1186 if (l->marker != MRK_NONE) {
1187 /* Don't remove CA and revocation lines */
1188 fprintf(ctx->out, "%s\n", l->line);
1189 } else {
1190 /*
1191 * Hostname matches and has no CA/revoke
1192 * marker, delete it by *not* writing the
1193 * line to ctx->out.
1194 */
1195 ctx->found_key = 1;
1196 if (!quiet)
dtucker@openbsd.orgd0723702017-03-06 00:44:51 +00001197 printf("# Host %s found: line %lu\n",
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001198 ctx->host, l->linenum);
1199 }
1200 return 0;
1201 } else if (find_host) {
1202 ctx->found_key = 1;
1203 if (!quiet) {
dtucker@openbsd.orgd0723702017-03-06 00:44:51 +00001204 printf("# Host %s found: line %lu %s\n",
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001205 ctx->host,
1206 l->linenum, l->marker == MRK_CA ? "CA" :
1207 (l->marker == MRK_REVOKE ? "REVOKED" : ""));
1208 }
1209 if (hash_hosts)
1210 known_hosts_hash(l, ctx);
djm@openbsd.org4739e8d2015-05-21 12:01:19 +00001211 else if (print_fingerprint) {
1212 fp = sshkey_fingerprint(l->key, fptype, rep);
djm@openbsd.orga287c5a2017-02-10 03:36:40 +00001213 mprintf("%s %s %s %s\n", ctx->host,
djm@openbsd.org4739e8d2015-05-21 12:01:19 +00001214 sshkey_type(l->key), fp, l->comment);
1215 free(fp);
1216 } else
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001217 fprintf(ctx->out, "%s\n", l->line);
1218 return 0;
1219 }
1220 } else if (delete_host) {
1221 /* Retain non-matching hosts when deleting */
1222 if (l->status == HKF_STATUS_INVALID) {
1223 ctx->invalid = 1;
dtucker@openbsd.orgd0723702017-03-06 00:44:51 +00001224 logit("%s:%lu: invalid line", l->path, l->linenum);
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001225 }
1226 fprintf(ctx->out, "%s\n", l->line);
1227 }
1228 return 0;
Damien Miller4b42d7f2005-03-01 21:48:35 +11001229}
1230
1231static void
1232do_known_hosts(struct passwd *pw, const char *name)
1233{
deraadt@openbsd.orgd2099de2015-01-19 00:32:54 +00001234 char *cp, tmp[PATH_MAX], old[PATH_MAX];
djm@openbsd.org2b3c3c72015-01-18 21:51:19 +00001235 int r, fd, oerrno, inplace = 0;
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001236 struct known_hosts_ctx ctx;
djm@openbsd.org4739e8d2015-05-21 12:01:19 +00001237 u_int foreach_options;
Damien Miller4b42d7f2005-03-01 21:48:35 +11001238
1239 if (!have_identity) {
1240 cp = tilde_expand_filename(_PATH_SSH_USER_HOSTFILE, pw->pw_uid);
1241 if (strlcpy(identity_file, cp, sizeof(identity_file)) >=
1242 sizeof(identity_file))
1243 fatal("Specified known hosts path too long");
Darren Tuckera627d422013-06-02 07:31:17 +10001244 free(cp);
Damien Miller4b42d7f2005-03-01 21:48:35 +11001245 have_identity = 1;
1246 }
Damien Miller4b42d7f2005-03-01 21:48:35 +11001247
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001248 memset(&ctx, 0, sizeof(ctx));
1249 ctx.out = stdout;
1250 ctx.host = name;
1251
Damien Miller4b42d7f2005-03-01 21:48:35 +11001252 /*
1253 * Find hosts goes to stdout, hash and deletions happen in-place
1254 * A corner case is ssh-keygen -HF foo, which should go to stdout
1255 */
1256 if (!find_host && (hash_hosts || delete_host)) {
1257 if (strlcpy(tmp, identity_file, sizeof(tmp)) >= sizeof(tmp) ||
1258 strlcat(tmp, ".XXXXXXXXXX", sizeof(tmp)) >= sizeof(tmp) ||
1259 strlcpy(old, identity_file, sizeof(old)) >= sizeof(old) ||
1260 strlcat(old, ".old", sizeof(old)) >= sizeof(old))
1261 fatal("known_hosts path too long");
1262 umask(077);
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001263 if ((fd = mkstemp(tmp)) == -1)
Damien Miller4b42d7f2005-03-01 21:48:35 +11001264 fatal("mkstemp: %s", strerror(errno));
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001265 if ((ctx.out = fdopen(fd, "w")) == NULL) {
1266 oerrno = errno;
Damien Miller4b42d7f2005-03-01 21:48:35 +11001267 unlink(tmp);
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001268 fatal("fdopen: %s", strerror(oerrno));
Damien Miller4b42d7f2005-03-01 21:48:35 +11001269 }
djm@openbsd.org2b3c3c72015-01-18 21:51:19 +00001270 inplace = 1;
Damien Miller4b42d7f2005-03-01 21:48:35 +11001271 }
1272
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001273 /* XXX support identity_file == "-" for stdin */
djm@openbsd.org4739e8d2015-05-21 12:01:19 +00001274 foreach_options = find_host ? HKF_WANT_MATCH : 0;
1275 foreach_options |= print_fingerprint ? HKF_WANT_PARSE_KEY : 0;
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001276 if ((r = hostkeys_foreach(identity_file,
1277 hash_hosts ? known_hosts_hash : known_hosts_find_delete, &ctx,
deraadt@openbsd.org6da413c2015-11-28 06:50:52 +00001278 name, NULL, foreach_options)) != 0) {
1279 if (inplace)
1280 unlink(tmp);
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001281 fatal("%s: hostkeys_foreach failed: %s", __func__, ssh_err(r));
deraadt@openbsd.org6da413c2015-11-28 06:50:52 +00001282 }
Damien Miller4b42d7f2005-03-01 21:48:35 +11001283
djm@openbsd.org2b3c3c72015-01-18 21:51:19 +00001284 if (inplace)
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001285 fclose(ctx.out);
Damien Miller0a80ca12010-02-27 07:55:05 +11001286
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001287 if (ctx.invalid) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00001288 error("%s is not a valid known_hosts file.", identity_file);
djm@openbsd.org2b3c3c72015-01-18 21:51:19 +00001289 if (inplace) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00001290 error("Not replacing existing known_hosts "
1291 "file because of errors");
Damien Miller4b42d7f2005-03-01 21:48:35 +11001292 unlink(tmp);
1293 }
1294 exit(1);
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001295 } else if (delete_host && !ctx.found_key) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00001296 logit("Host %s not found in %s", name, identity_file);
djm@openbsd.orgc8376432015-08-19 23:17:51 +00001297 if (inplace)
1298 unlink(tmp);
djm@openbsd.org2b3c3c72015-01-18 21:51:19 +00001299 } else if (inplace) {
Damien Miller4b42d7f2005-03-01 21:48:35 +11001300 /* Backup existing file */
1301 if (unlink(old) == -1 && errno != ENOENT)
1302 fatal("unlink %.100s: %s", old, strerror(errno));
1303 if (link(identity_file, old) == -1)
1304 fatal("link %.100s to %.100s: %s", identity_file, old,
1305 strerror(errno));
1306 /* Move new one into place */
1307 if (rename(tmp, identity_file) == -1) {
1308 error("rename\"%s\" to \"%s\": %s", tmp, identity_file,
1309 strerror(errno));
1310 unlink(tmp);
1311 unlink(old);
1312 exit(1);
1313 }
1314
djm@openbsd.org3038a192015-04-17 13:19:22 +00001315 printf("%s updated.\n", identity_file);
1316 printf("Original contents retained as %s\n", old);
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001317 if (ctx.has_unhashed) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00001318 logit("WARNING: %s contains unhashed entries", old);
1319 logit("Delete this file to ensure privacy "
1320 "of hostnames");
Damien Miller4b42d7f2005-03-01 21:48:35 +11001321 }
1322 }
1323
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001324 exit (find_host && !ctx.found_key);
Damien Miller4b42d7f2005-03-01 21:48:35 +11001325}
1326
Damien Miller95def091999-11-25 00:26:21 +11001327/*
1328 * Perform changing a passphrase. The argument is the passwd structure
1329 * for the current user.
1330 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001331static void
Damien Miller10f6f6b1999-11-17 17:29:08 +11001332do_change_passphrase(struct passwd *pw)
1333{
Damien Miller95def091999-11-25 00:26:21 +11001334 char *comment;
1335 char *old_passphrase, *passphrase1, *passphrase2;
1336 struct stat st;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001337 struct sshkey *private;
1338 int r;
Damien Miller10f6f6b1999-11-17 17:29:08 +11001339
Damien Miller95def091999-11-25 00:26:21 +11001340 if (!have_identity)
1341 ask_filename(pw, "Enter file in which the key is");
djm@openbsd.org3038a192015-04-17 13:19:22 +00001342 if (stat(identity_file, &st) < 0)
1343 fatal("%s: %s", identity_file, strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +11001344 /* Try to load the file with empty passphrase. */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001345 r = sshkey_load_private(identity_file, "", &private, &comment);
1346 if (r == SSH_ERR_KEY_WRONG_PASSPHRASE) {
Damien Miller95def091999-11-25 00:26:21 +11001347 if (identity_passphrase)
1348 old_passphrase = xstrdup(identity_passphrase);
1349 else
Ben Lindstrom949974b2001-06-25 05:20:31 +00001350 old_passphrase =
1351 read_passphrase("Enter old passphrase: ",
1352 RP_ALLOW_STDIN);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001353 r = sshkey_load_private(identity_file, old_passphrase,
1354 &private, &comment);
Damien Millera5103f42014-02-04 11:20:14 +11001355 explicit_bzero(old_passphrase, strlen(old_passphrase));
Darren Tuckera627d422013-06-02 07:31:17 +10001356 free(old_passphrase);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001357 if (r != 0)
1358 goto badkey;
1359 } else if (r != 0) {
1360 badkey:
djm@openbsd.org3038a192015-04-17 13:19:22 +00001361 fatal("Failed to load key %s: %s", identity_file, ssh_err(r));
Damien Miller95def091999-11-25 00:26:21 +11001362 }
djm@openbsd.orgf43d1722015-02-26 20:45:47 +00001363 if (comment)
djm@openbsd.orga287c5a2017-02-10 03:36:40 +00001364 mprintf("Key has comment '%s'\n", comment);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001365
Damien Miller95def091999-11-25 00:26:21 +11001366 /* Ask the new passphrase (twice). */
1367 if (identity_new_passphrase) {
1368 passphrase1 = xstrdup(identity_new_passphrase);
1369 passphrase2 = NULL;
1370 } else {
1371 passphrase1 =
Ben Lindstrom949974b2001-06-25 05:20:31 +00001372 read_passphrase("Enter new passphrase (empty for no "
1373 "passphrase): ", RP_ALLOW_STDIN);
1374 passphrase2 = read_passphrase("Enter same passphrase again: ",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001375 RP_ALLOW_STDIN);
Damien Miller95def091999-11-25 00:26:21 +11001376
1377 /* Verify that they are the same. */
1378 if (strcmp(passphrase1, passphrase2) != 0) {
Damien Millera5103f42014-02-04 11:20:14 +11001379 explicit_bzero(passphrase1, strlen(passphrase1));
1380 explicit_bzero(passphrase2, strlen(passphrase2));
Darren Tuckera627d422013-06-02 07:31:17 +10001381 free(passphrase1);
1382 free(passphrase2);
Damien Miller95def091999-11-25 00:26:21 +11001383 printf("Pass phrases do not match. Try again.\n");
1384 exit(1);
1385 }
1386 /* Destroy the other copy. */
Damien Millera5103f42014-02-04 11:20:14 +11001387 explicit_bzero(passphrase2, strlen(passphrase2));
Darren Tuckera627d422013-06-02 07:31:17 +10001388 free(passphrase2);
Damien Miller95def091999-11-25 00:26:21 +11001389 }
1390
1391 /* Save the file using the new passphrase. */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001392 if ((r = sshkey_save_private(private, identity_file, passphrase1,
1393 comment, use_new_format, new_format_cipher, rounds)) != 0) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00001394 error("Saving key \"%s\" failed: %s.",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001395 identity_file, ssh_err(r));
Damien Millera5103f42014-02-04 11:20:14 +11001396 explicit_bzero(passphrase1, strlen(passphrase1));
Darren Tuckera627d422013-06-02 07:31:17 +10001397 free(passphrase1);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001398 sshkey_free(private);
Darren Tuckera627d422013-06-02 07:31:17 +10001399 free(comment);
Damien Miller95def091999-11-25 00:26:21 +11001400 exit(1);
1401 }
1402 /* Destroy the passphrase and the copy of the key in memory. */
Damien Millera5103f42014-02-04 11:20:14 +11001403 explicit_bzero(passphrase1, strlen(passphrase1));
Darren Tuckera627d422013-06-02 07:31:17 +10001404 free(passphrase1);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001405 sshkey_free(private); /* Destroys contents */
Darren Tuckera627d422013-06-02 07:31:17 +10001406 free(comment);
Damien Miller95def091999-11-25 00:26:21 +11001407
1408 printf("Your identification has been saved with the new passphrase.\n");
1409 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001410}
1411
Damien Miller37876e92003-05-15 10:19:46 +10001412/*
1413 * Print the SSHFP RR.
1414 */
Damien Millercb314822006-03-26 13:48:01 +11001415static int
1416do_print_resource_record(struct passwd *pw, char *fname, char *hname)
Damien Miller37876e92003-05-15 10:19:46 +10001417{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001418 struct sshkey *public;
Damien Miller37876e92003-05-15 10:19:46 +10001419 char *comment = NULL;
1420 struct stat st;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001421 int r;
Damien Miller37876e92003-05-15 10:19:46 +10001422
Damien Millercb314822006-03-26 13:48:01 +11001423 if (fname == NULL)
Damien Miller5bb88332013-07-18 16:13:37 +10001424 fatal("%s: no filename", __func__);
Damien Millercb314822006-03-26 13:48:01 +11001425 if (stat(fname, &st) < 0) {
1426 if (errno == ENOENT)
1427 return 0;
djm@openbsd.org3038a192015-04-17 13:19:22 +00001428 fatal("%s: %s", fname, strerror(errno));
Damien Miller37876e92003-05-15 10:19:46 +10001429 }
djm@openbsd.org3038a192015-04-17 13:19:22 +00001430 if ((r = sshkey_load_public(fname, &public, &comment)) != 0)
1431 fatal("Failed to read v2 public key from \"%s\": %s.",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001432 fname, ssh_err(r));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001433 export_dns_rr(hname, public, stdout, print_generic);
1434 sshkey_free(public);
1435 free(comment);
1436 return 1;
Damien Miller37876e92003-05-15 10:19:46 +10001437}
Damien Miller37876e92003-05-15 10:19:46 +10001438
Damien Miller95def091999-11-25 00:26:21 +11001439/*
1440 * Change the comment of a private key file.
1441 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001442static void
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001443do_change_comment(struct passwd *pw)
1444{
Ben Lindstrom5fc62702001-03-09 18:19:24 +00001445 char new_comment[1024], *comment, *passphrase;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001446 struct sshkey *private;
1447 struct sshkey *public;
Damien Miller95def091999-11-25 00:26:21 +11001448 struct stat st;
1449 FILE *f;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001450 int r, fd;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001451
Damien Miller95def091999-11-25 00:26:21 +11001452 if (!have_identity)
1453 ask_filename(pw, "Enter file in which the key is");
djm@openbsd.org3038a192015-04-17 13:19:22 +00001454 if (stat(identity_file, &st) < 0)
1455 fatal("%s: %s", identity_file, strerror(errno));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001456 if ((r = sshkey_load_private(identity_file, "",
1457 &private, &comment)) == 0)
1458 passphrase = xstrdup("");
djm@openbsd.org3038a192015-04-17 13:19:22 +00001459 else if (r != SSH_ERR_KEY_WRONG_PASSPHRASE)
1460 fatal("Cannot load private key \"%s\": %s.",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001461 identity_file, ssh_err(r));
djm@openbsd.org3038a192015-04-17 13:19:22 +00001462 else {
Damien Miller95def091999-11-25 00:26:21 +11001463 if (identity_passphrase)
1464 passphrase = xstrdup(identity_passphrase);
1465 else if (identity_new_passphrase)
1466 passphrase = xstrdup(identity_new_passphrase);
1467 else
Ben Lindstrom949974b2001-06-25 05:20:31 +00001468 passphrase = read_passphrase("Enter passphrase: ",
1469 RP_ALLOW_STDIN);
Damien Miller95def091999-11-25 00:26:21 +11001470 /* Try to load using the passphrase. */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001471 if ((r = sshkey_load_private(identity_file, passphrase,
1472 &private, &comment)) != 0) {
Damien Millera5103f42014-02-04 11:20:14 +11001473 explicit_bzero(passphrase, strlen(passphrase));
Darren Tuckera627d422013-06-02 07:31:17 +10001474 free(passphrase);
djm@openbsd.org3038a192015-04-17 13:19:22 +00001475 fatal("Cannot load private key \"%s\": %s.",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001476 identity_file, ssh_err(r));
Damien Miller95def091999-11-25 00:26:21 +11001477 }
1478 }
halex@openbsd.org4d906252015-11-20 23:04:01 +00001479
djm@openbsd.org873d3e72017-04-30 23:18:44 +00001480 if (private->type != KEY_ED25519 && !use_new_format) {
1481 error("Comments are only supported for keys stored in "
halex@openbsd.org4d906252015-11-20 23:04:01 +00001482 "the new format (-o).");
tobias@openbsd.org704d8c82015-03-31 11:06:49 +00001483 explicit_bzero(passphrase, strlen(passphrase));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001484 sshkey_free(private);
Ben Lindstromd0fca422001-03-26 13:44:06 +00001485 exit(1);
Damien Miller9f0f5c62001-12-21 14:45:46 +11001486 }
millert@openbsd.orge40269b2017-02-08 20:32:43 +00001487 if (comment)
1488 printf("Key now has comment '%s'\n", comment);
1489 else
1490 printf("Key now has no comment\n");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001491
Damien Miller95def091999-11-25 00:26:21 +11001492 if (identity_comment) {
1493 strlcpy(new_comment, identity_comment, sizeof(new_comment));
1494 } else {
1495 printf("Enter new comment: ");
1496 fflush(stdout);
1497 if (!fgets(new_comment, sizeof(new_comment), stdin)) {
Damien Millera5103f42014-02-04 11:20:14 +11001498 explicit_bzero(passphrase, strlen(passphrase));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001499 sshkey_free(private);
Damien Miller95def091999-11-25 00:26:21 +11001500 exit(1);
1501 }
Damien Miller14b017d2007-09-17 16:09:15 +10001502 new_comment[strcspn(new_comment, "\n")] = '\0';
Damien Miller95def091999-11-25 00:26:21 +11001503 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001504
Damien Miller95def091999-11-25 00:26:21 +11001505 /* Save the file using the new passphrase. */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001506 if ((r = sshkey_save_private(private, identity_file, passphrase,
1507 new_comment, use_new_format, new_format_cipher, rounds)) != 0) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00001508 error("Saving key \"%s\" failed: %s",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001509 identity_file, ssh_err(r));
Damien Millera5103f42014-02-04 11:20:14 +11001510 explicit_bzero(passphrase, strlen(passphrase));
Darren Tuckera627d422013-06-02 07:31:17 +10001511 free(passphrase);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001512 sshkey_free(private);
Darren Tuckera627d422013-06-02 07:31:17 +10001513 free(comment);
Damien Miller95def091999-11-25 00:26:21 +11001514 exit(1);
1515 }
Damien Millera5103f42014-02-04 11:20:14 +11001516 explicit_bzero(passphrase, strlen(passphrase));
Darren Tuckera627d422013-06-02 07:31:17 +10001517 free(passphrase);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001518 if ((r = sshkey_from_private(private, &public)) != 0)
markus@openbsd.org7da5df12017-05-30 14:16:41 +00001519 fatal("sshkey_from_private failed: %s", ssh_err(r));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001520 sshkey_free(private);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001521
Damien Miller95def091999-11-25 00:26:21 +11001522 strlcat(identity_file, ".pub", sizeof(identity_file));
Ben Lindstrom5fc62702001-03-09 18:19:24 +00001523 fd = open(identity_file, O_WRONLY | O_CREAT | O_TRUNC, 0644);
djm@openbsd.org3038a192015-04-17 13:19:22 +00001524 if (fd == -1)
1525 fatal("Could not save your public key in %s", identity_file);
Ben Lindstrom5fc62702001-03-09 18:19:24 +00001526 f = fdopen(fd, "w");
djm@openbsd.org3038a192015-04-17 13:19:22 +00001527 if (f == NULL)
1528 fatal("fdopen %s failed: %s", identity_file, strerror(errno));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001529 if ((r = sshkey_write(public, f)) != 0)
djm@openbsd.org3038a192015-04-17 13:19:22 +00001530 fatal("write key failed: %s", ssh_err(r));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001531 sshkey_free(public);
Damien Millereba71ba2000-04-29 23:57:08 +10001532 fprintf(f, " %s\n", new_comment);
Damien Miller95def091999-11-25 00:26:21 +11001533 fclose(f);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001534
Darren Tuckera627d422013-06-02 07:31:17 +10001535 free(comment);
Damien Miller95def091999-11-25 00:26:21 +11001536
1537 printf("The comment in your key file has been changed.\n");
1538 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001539}
1540
Damien Miller0a80ca12010-02-27 07:55:05 +11001541static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001542add_flag_option(struct sshbuf *c, const char *name)
Damien Miller0a80ca12010-02-27 07:55:05 +11001543{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001544 int r;
1545
Damien Miller0a80ca12010-02-27 07:55:05 +11001546 debug3("%s: %s", __func__, name);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001547 if ((r = sshbuf_put_cstring(c, name)) != 0 ||
1548 (r = sshbuf_put_string(c, NULL, 0)) != 0)
1549 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Miller0a80ca12010-02-27 07:55:05 +11001550}
1551
1552static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001553add_string_option(struct sshbuf *c, const char *name, const char *value)
Damien Miller0a80ca12010-02-27 07:55:05 +11001554{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001555 struct sshbuf *b;
1556 int r;
Damien Miller0a80ca12010-02-27 07:55:05 +11001557
1558 debug3("%s: %s=%s", __func__, name, value);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001559 if ((b = sshbuf_new()) == NULL)
1560 fatal("%s: sshbuf_new failed", __func__);
1561 if ((r = sshbuf_put_cstring(b, value)) != 0 ||
1562 (r = sshbuf_put_cstring(c, name)) != 0 ||
1563 (r = sshbuf_put_stringb(c, b)) != 0)
1564 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Miller0a80ca12010-02-27 07:55:05 +11001565
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001566 sshbuf_free(b);
Damien Miller0a80ca12010-02-27 07:55:05 +11001567}
1568
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001569#define OPTIONS_CRITICAL 1
1570#define OPTIONS_EXTENSIONS 2
Damien Miller0a80ca12010-02-27 07:55:05 +11001571static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001572prepare_options_buf(struct sshbuf *c, int which)
Damien Miller0a80ca12010-02-27 07:55:05 +11001573{
djm@openbsd.org249516e2017-04-29 04:12:25 +00001574 size_t i;
1575
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001576 sshbuf_reset(c);
Damien Miller1da63882010-08-05 13:03:51 +10001577 if ((which & OPTIONS_CRITICAL) != 0 &&
1578 certflags_command != NULL)
1579 add_string_option(c, "force-command", certflags_command);
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001580 if ((which & OPTIONS_EXTENSIONS) != 0 &&
Damien Miller2ce12ef2011-05-05 14:17:18 +10001581 (certflags_flags & CERTOPT_X_FWD) != 0)
1582 add_flag_option(c, "permit-X11-forwarding");
1583 if ((which & OPTIONS_EXTENSIONS) != 0 &&
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001584 (certflags_flags & CERTOPT_AGENT_FWD) != 0)
Damien Miller4e270b02010-04-16 15:56:21 +10001585 add_flag_option(c, "permit-agent-forwarding");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001586 if ((which & OPTIONS_EXTENSIONS) != 0 &&
1587 (certflags_flags & CERTOPT_PORT_FWD) != 0)
Damien Miller4e270b02010-04-16 15:56:21 +10001588 add_flag_option(c, "permit-port-forwarding");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001589 if ((which & OPTIONS_EXTENSIONS) != 0 &&
1590 (certflags_flags & CERTOPT_PTY) != 0)
Damien Miller4e270b02010-04-16 15:56:21 +10001591 add_flag_option(c, "permit-pty");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001592 if ((which & OPTIONS_EXTENSIONS) != 0 &&
1593 (certflags_flags & CERTOPT_USER_RC) != 0)
Damien Miller4e270b02010-04-16 15:56:21 +10001594 add_flag_option(c, "permit-user-rc");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001595 if ((which & OPTIONS_CRITICAL) != 0 &&
1596 certflags_src_addr != NULL)
1597 add_string_option(c, "source-address", certflags_src_addr);
djm@openbsd.org249516e2017-04-29 04:12:25 +00001598 for (i = 0; i < ncert_userext; i++) {
1599 if ((cert_userext[i].crit && (which & OPTIONS_EXTENSIONS)) ||
1600 (!cert_userext[i].crit && (which & OPTIONS_CRITICAL)))
1601 continue;
1602 if (cert_userext[i].val == NULL)
1603 add_flag_option(c, cert_userext[i].key);
1604 else {
1605 add_string_option(c, cert_userext[i].key,
1606 cert_userext[i].val);
1607 }
1608 }
Damien Miller0a80ca12010-02-27 07:55:05 +11001609}
1610
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001611static struct sshkey *
Damien Miller757f34e2010-08-05 13:05:31 +10001612load_pkcs11_key(char *path)
1613{
1614#ifdef ENABLE_PKCS11
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001615 struct sshkey **keys = NULL, *public, *private = NULL;
1616 int r, i, nkeys;
Damien Miller757f34e2010-08-05 13:05:31 +10001617
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001618 if ((r = sshkey_load_public(path, &public, NULL)) != 0)
1619 fatal("Couldn't load CA public key \"%s\": %s",
1620 path, ssh_err(r));
Damien Miller757f34e2010-08-05 13:05:31 +10001621
1622 nkeys = pkcs11_add_provider(pkcs11provider, identity_passphrase, &keys);
1623 debug3("%s: %d keys", __func__, nkeys);
1624 if (nkeys <= 0)
1625 fatal("cannot read public key from pkcs11");
1626 for (i = 0; i < nkeys; i++) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001627 if (sshkey_equal_public(public, keys[i])) {
Damien Miller757f34e2010-08-05 13:05:31 +10001628 private = keys[i];
1629 continue;
1630 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001631 sshkey_free(keys[i]);
Damien Miller757f34e2010-08-05 13:05:31 +10001632 }
Darren Tuckera627d422013-06-02 07:31:17 +10001633 free(keys);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001634 sshkey_free(public);
Damien Miller757f34e2010-08-05 13:05:31 +10001635 return private;
1636#else
1637 fatal("no pkcs11 support");
1638#endif /* ENABLE_PKCS11 */
1639}
1640
djm@openbsd.orga98339e2017-06-28 01:09:22 +00001641/* Signer for sshkey_certify_custom that uses the agent */
1642static int
1643agent_signer(const struct sshkey *key, u_char **sigp, size_t *lenp,
1644 const u_char *data, size_t datalen,
1645 const char *alg, u_int compat, void *ctx)
1646{
1647 int *agent_fdp = (int *)ctx;
1648
1649 return ssh_agent_sign(*agent_fdp, key, sigp, lenp,
1650 data, datalen, alg, compat);
1651}
1652
Damien Miller0a80ca12010-02-27 07:55:05 +11001653static void
1654do_ca_sign(struct passwd *pw, int argc, char **argv)
1655{
djm@openbsd.orga98339e2017-06-28 01:09:22 +00001656 int r, i, fd, found, agent_fd = -1;
Damien Miller0a80ca12010-02-27 07:55:05 +11001657 u_int n;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001658 struct sshkey *ca, *public;
djm@openbsd.org499cf362015-11-19 01:08:55 +00001659 char valid[64], *otmp, *tmp, *cp, *out, *comment, **plist = NULL;
Damien Miller0a80ca12010-02-27 07:55:05 +11001660 FILE *f;
djm@openbsd.orga98339e2017-06-28 01:09:22 +00001661 struct ssh_identitylist *agent_ids;
1662 size_t j;
Damien Miller4e270b02010-04-16 15:56:21 +10001663
Damien Miller1f0311c2014-05-15 14:24:09 +10001664#ifdef ENABLE_PKCS11
Damien Miller757f34e2010-08-05 13:05:31 +10001665 pkcs11_init(1);
Damien Miller1f0311c2014-05-15 14:24:09 +10001666#endif
Damien Miller757f34e2010-08-05 13:05:31 +10001667 tmp = tilde_expand_filename(ca_key_path, pw->pw_uid);
1668 if (pkcs11provider != NULL) {
djm@openbsd.orga98339e2017-06-28 01:09:22 +00001669 /* If a PKCS#11 token was specified then try to use it */
Damien Miller757f34e2010-08-05 13:05:31 +10001670 if ((ca = load_pkcs11_key(tmp)) == NULL)
1671 fatal("No PKCS#11 key matching %s found", ca_key_path);
djm@openbsd.orga98339e2017-06-28 01:09:22 +00001672 } else if (prefer_agent) {
1673 /*
1674 * Agent signature requested. Try to use agent after making
1675 * sure the public key specified is actually present in the
1676 * agent.
1677 */
1678 if ((r = sshkey_load_public(tmp, &ca, NULL)) != 0)
1679 fatal("Cannot load CA public key %s: %s",
1680 tmp, ssh_err(r));
1681 if ((r = ssh_get_authentication_socket(&agent_fd)) != 0)
1682 fatal("Cannot use public key for CA signature: %s",
1683 ssh_err(r));
1684 if ((r = ssh_fetch_identitylist(agent_fd, &agent_ids)) != 0)
1685 fatal("Retrieve agent key list: %s", ssh_err(r));
1686 found = 0;
1687 for (j = 0; j < agent_ids->nkeys; j++) {
1688 if (sshkey_equal(ca, agent_ids->keys[j])) {
1689 found = 1;
1690 break;
1691 }
1692 }
1693 if (!found)
1694 fatal("CA key %s not found in agent", tmp);
1695 ssh_free_identitylist(agent_ids);
1696 ca->flags |= SSHKEY_FLAG_EXT;
1697 } else {
1698 /* CA key is assumed to be a private key on the filesystem */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001699 ca = load_identity(tmp);
djm@openbsd.orga98339e2017-06-28 01:09:22 +00001700 }
Darren Tuckera627d422013-06-02 07:31:17 +10001701 free(tmp);
Damien Miller757f34e2010-08-05 13:05:31 +10001702
djm@openbsd.org57464e32016-05-02 09:36:42 +00001703 if (key_type_name != NULL &&
1704 sshkey_type_from_name(key_type_name) != ca->type) {
1705 fatal("CA key type %s doesn't match specified %s",
1706 sshkey_ssh_name(ca), key_type_name);
1707 }
1708
Damien Miller0a80ca12010-02-27 07:55:05 +11001709 for (i = 0; i < argc; i++) {
1710 /* Split list of principals */
1711 n = 0;
1712 if (cert_principals != NULL) {
1713 otmp = tmp = xstrdup(cert_principals);
1714 plist = NULL;
1715 for (; (cp = strsep(&tmp, ",")) != NULL; n++) {
deraadt@openbsd.org657a5fb2015-04-24 01:36:00 +00001716 plist = xreallocarray(plist, n + 1, sizeof(*plist));
Damien Miller0a80ca12010-02-27 07:55:05 +11001717 if (*(plist[n] = xstrdup(cp)) == '\0')
1718 fatal("Empty principal name");
1719 }
Darren Tuckera627d422013-06-02 07:31:17 +10001720 free(otmp);
Damien Miller0a80ca12010-02-27 07:55:05 +11001721 }
1722
1723 tmp = tilde_expand_filename(argv[i], pw->pw_uid);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001724 if ((r = sshkey_load_public(tmp, &public, &comment)) != 0)
1725 fatal("%s: unable to open \"%s\": %s",
1726 __func__, tmp, ssh_err(r));
Damien Millereb8b60e2010-08-31 22:41:14 +10001727 if (public->type != KEY_RSA && public->type != KEY_DSA &&
Damien Miller5be9d9e2013-12-07 11:24:01 +11001728 public->type != KEY_ECDSA && public->type != KEY_ED25519)
Damien Miller0a80ca12010-02-27 07:55:05 +11001729 fatal("%s: key \"%s\" type %s cannot be certified",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001730 __func__, tmp, sshkey_type(public));
Damien Miller0a80ca12010-02-27 07:55:05 +11001731
1732 /* Prepare certificate to sign */
djm@openbsd.orgc28fc622015-07-03 03:43:18 +00001733 if ((r = sshkey_to_certified(public)) != 0)
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001734 fatal("Could not upgrade key %s to certificate: %s",
1735 tmp, ssh_err(r));
Damien Miller0a80ca12010-02-27 07:55:05 +11001736 public->cert->type = cert_key_type;
Damien Miller4e270b02010-04-16 15:56:21 +10001737 public->cert->serial = (u_int64_t)cert_serial;
Damien Miller0a80ca12010-02-27 07:55:05 +11001738 public->cert->key_id = xstrdup(cert_key_id);
1739 public->cert->nprincipals = n;
1740 public->cert->principals = plist;
1741 public->cert->valid_after = cert_valid_from;
1742 public->cert->valid_before = cert_valid_to;
djm@openbsd.orgc28fc622015-07-03 03:43:18 +00001743 prepare_options_buf(public->cert->critical, OPTIONS_CRITICAL);
1744 prepare_options_buf(public->cert->extensions,
1745 OPTIONS_EXTENSIONS);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001746 if ((r = sshkey_from_private(ca,
1747 &public->cert->signature_key)) != 0)
markus@openbsd.org7da5df12017-05-30 14:16:41 +00001748 fatal("sshkey_from_private (ca key): %s", ssh_err(r));
Damien Miller0a80ca12010-02-27 07:55:05 +11001749
djm@openbsd.orga98339e2017-06-28 01:09:22 +00001750 if (agent_fd != -1 && (ca->flags & SSHKEY_FLAG_EXT) != 0) {
1751 if ((r = sshkey_certify_custom(public, ca,
1752 key_type_name, agent_signer, &agent_fd)) != 0)
1753 fatal("Couldn't certify key %s via agent: %s",
1754 tmp, ssh_err(r));
1755 } else {
1756 if ((sshkey_certify(public, ca, key_type_name)) != 0)
1757 fatal("Couldn't certify key %s: %s",
1758 tmp, ssh_err(r));
1759 }
Damien Miller0a80ca12010-02-27 07:55:05 +11001760
1761 if ((cp = strrchr(tmp, '.')) != NULL && strcmp(cp, ".pub") == 0)
1762 *cp = '\0';
1763 xasprintf(&out, "%s-cert.pub", tmp);
Darren Tuckera627d422013-06-02 07:31:17 +10001764 free(tmp);
Damien Miller0a80ca12010-02-27 07:55:05 +11001765
1766 if ((fd = open(out, O_WRONLY|O_CREAT|O_TRUNC, 0644)) == -1)
1767 fatal("Could not open \"%s\" for writing: %s", out,
1768 strerror(errno));
1769 if ((f = fdopen(fd, "w")) == NULL)
1770 fatal("%s: fdopen: %s", __func__, strerror(errno));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001771 if ((r = sshkey_write(public, f)) != 0)
1772 fatal("Could not write certified key to %s: %s",
1773 out, ssh_err(r));
Damien Miller0a80ca12010-02-27 07:55:05 +11001774 fprintf(f, " %s\n", comment);
1775 fclose(f);
1776
Damien Miller4e270b02010-04-16 15:56:21 +10001777 if (!quiet) {
djm@openbsd.org964ab3e2015-11-19 01:12:32 +00001778 sshkey_format_cert_validity(public->cert,
djm@openbsd.org499cf362015-11-19 01:08:55 +00001779 valid, sizeof(valid));
Damien Miller4e270b02010-04-16 15:56:21 +10001780 logit("Signed %s key %s: id \"%s\" serial %llu%s%s "
djm@openbsd.org964ab3e2015-11-19 01:12:32 +00001781 "valid %s", sshkey_cert_type(public),
Damien Miller821de0a2011-01-11 17:20:29 +11001782 out, public->cert->key_id,
1783 (unsigned long long)public->cert->serial,
Damien Miller0a80ca12010-02-27 07:55:05 +11001784 cert_principals != NULL ? " for " : "",
1785 cert_principals != NULL ? cert_principals : "",
djm@openbsd.org499cf362015-11-19 01:08:55 +00001786 valid);
Damien Miller4e270b02010-04-16 15:56:21 +10001787 }
Damien Miller0a80ca12010-02-27 07:55:05 +11001788
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001789 sshkey_free(public);
Darren Tuckera627d422013-06-02 07:31:17 +10001790 free(out);
Damien Miller0a80ca12010-02-27 07:55:05 +11001791 }
Damien Miller1f0311c2014-05-15 14:24:09 +10001792#ifdef ENABLE_PKCS11
Damien Miller757f34e2010-08-05 13:05:31 +10001793 pkcs11_terminate();
Damien Miller1f0311c2014-05-15 14:24:09 +10001794#endif
Damien Miller0a80ca12010-02-27 07:55:05 +11001795 exit(0);
1796}
1797
1798static u_int64_t
1799parse_relative_time(const char *s, time_t now)
1800{
1801 int64_t mul, secs;
1802
1803 mul = *s == '-' ? -1 : 1;
1804
1805 if ((secs = convtime(s + 1)) == -1)
1806 fatal("Invalid relative certificate time %s", s);
1807 if (mul == -1 && secs > now)
1808 fatal("Certificate time %s cannot be represented", s);
1809 return now + (u_int64_t)(secs * mul);
1810}
1811
1812static u_int64_t
1813parse_absolute_time(const char *s)
1814{
1815 struct tm tm;
1816 time_t tt;
Damien Miller2ca342b2010-03-03 12:14:15 +11001817 char buf[32], *fmt;
Damien Miller0a80ca12010-02-27 07:55:05 +11001818
Damien Miller2ca342b2010-03-03 12:14:15 +11001819 /*
djm@openbsd.org964ab3e2015-11-19 01:12:32 +00001820 * POSIX strptime says "The application shall ensure that there
Damien Miller2ca342b2010-03-03 12:14:15 +11001821 * is white-space or other non-alphanumeric characters between
1822 * any two conversion specifications" so arrange things this way.
1823 */
1824 switch (strlen(s)) {
1825 case 8:
Damien Miller3e1ee492010-03-08 09:24:11 +11001826 fmt = "%Y-%m-%d";
1827 snprintf(buf, sizeof(buf), "%.4s-%.2s-%.2s", s, s + 4, s + 6);
Damien Miller2ca342b2010-03-03 12:14:15 +11001828 break;
1829 case 14:
Damien Miller3e1ee492010-03-08 09:24:11 +11001830 fmt = "%Y-%m-%dT%H:%M:%S";
1831 snprintf(buf, sizeof(buf), "%.4s-%.2s-%.2sT%.2s:%.2s:%.2s",
Damien Miller2ca342b2010-03-03 12:14:15 +11001832 s, s + 4, s + 6, s + 8, s + 10, s + 12);
1833 break;
1834 default:
Damien Miller0a80ca12010-02-27 07:55:05 +11001835 fatal("Invalid certificate time format %s", s);
Damien Miller2ca342b2010-03-03 12:14:15 +11001836 }
Damien Miller0a80ca12010-02-27 07:55:05 +11001837
Damien Miller1d2c4562014-02-04 11:18:20 +11001838 memset(&tm, 0, sizeof(tm));
Damien Miller2ca342b2010-03-03 12:14:15 +11001839 if (strptime(buf, fmt, &tm) == NULL)
Damien Miller0a80ca12010-02-27 07:55:05 +11001840 fatal("Invalid certificate time %s", s);
1841 if ((tt = mktime(&tm)) < 0)
1842 fatal("Certificate time %s cannot be represented", s);
1843 return (u_int64_t)tt;
1844}
1845
1846static void
1847parse_cert_times(char *timespec)
1848{
1849 char *from, *to;
1850 time_t now = time(NULL);
1851 int64_t secs;
1852
1853 /* +timespec relative to now */
1854 if (*timespec == '+' && strchr(timespec, ':') == NULL) {
1855 if ((secs = convtime(timespec + 1)) == -1)
1856 fatal("Invalid relative certificate life %s", timespec);
1857 cert_valid_to = now + secs;
1858 /*
1859 * Backdate certificate one minute to avoid problems on hosts
1860 * with poorly-synchronised clocks.
1861 */
1862 cert_valid_from = ((now - 59)/ 60) * 60;
1863 return;
1864 }
1865
1866 /*
1867 * from:to, where
1868 * from := [+-]timespec | YYYYMMDD | YYYYMMDDHHMMSS
1869 * to := [+-]timespec | YYYYMMDD | YYYYMMDDHHMMSS
1870 */
1871 from = xstrdup(timespec);
1872 to = strchr(from, ':');
1873 if (to == NULL || from == to || *(to + 1) == '\0')
Damien Miller910f2092010-03-04 14:17:22 +11001874 fatal("Invalid certificate life specification %s", timespec);
Damien Miller0a80ca12010-02-27 07:55:05 +11001875 *to++ = '\0';
1876
1877 if (*from == '-' || *from == '+')
1878 cert_valid_from = parse_relative_time(from, now);
1879 else
1880 cert_valid_from = parse_absolute_time(from);
1881
1882 if (*to == '-' || *to == '+')
Damien Miller5b01b0d2013-10-23 16:31:31 +11001883 cert_valid_to = parse_relative_time(to, now);
Damien Miller0a80ca12010-02-27 07:55:05 +11001884 else
1885 cert_valid_to = parse_absolute_time(to);
1886
1887 if (cert_valid_to <= cert_valid_from)
1888 fatal("Empty certificate validity interval");
Darren Tuckera627d422013-06-02 07:31:17 +10001889 free(from);
Damien Miller0a80ca12010-02-27 07:55:05 +11001890}
1891
1892static void
Damien Miller4e270b02010-04-16 15:56:21 +10001893add_cert_option(char *opt)
Damien Miller0a80ca12010-02-27 07:55:05 +11001894{
djm@openbsd.org249516e2017-04-29 04:12:25 +00001895 char *val, *cp;
1896 int iscrit = 0;
Damien Miller0a80ca12010-02-27 07:55:05 +11001897
Damien Miller044f4a62011-05-05 14:14:08 +10001898 if (strcasecmp(opt, "clear") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001899 certflags_flags = 0;
Damien Miller0a80ca12010-02-27 07:55:05 +11001900 else if (strcasecmp(opt, "no-x11-forwarding") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001901 certflags_flags &= ~CERTOPT_X_FWD;
Damien Miller0a80ca12010-02-27 07:55:05 +11001902 else if (strcasecmp(opt, "permit-x11-forwarding") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001903 certflags_flags |= CERTOPT_X_FWD;
Damien Miller0a80ca12010-02-27 07:55:05 +11001904 else if (strcasecmp(opt, "no-agent-forwarding") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001905 certflags_flags &= ~CERTOPT_AGENT_FWD;
Damien Miller0a80ca12010-02-27 07:55:05 +11001906 else if (strcasecmp(opt, "permit-agent-forwarding") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001907 certflags_flags |= CERTOPT_AGENT_FWD;
Damien Miller0a80ca12010-02-27 07:55:05 +11001908 else if (strcasecmp(opt, "no-port-forwarding") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001909 certflags_flags &= ~CERTOPT_PORT_FWD;
Damien Miller0a80ca12010-02-27 07:55:05 +11001910 else if (strcasecmp(opt, "permit-port-forwarding") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001911 certflags_flags |= CERTOPT_PORT_FWD;
Damien Miller0a80ca12010-02-27 07:55:05 +11001912 else if (strcasecmp(opt, "no-pty") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001913 certflags_flags &= ~CERTOPT_PTY;
Damien Miller0a80ca12010-02-27 07:55:05 +11001914 else if (strcasecmp(opt, "permit-pty") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001915 certflags_flags |= CERTOPT_PTY;
Damien Miller0a80ca12010-02-27 07:55:05 +11001916 else if (strcasecmp(opt, "no-user-rc") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001917 certflags_flags &= ~CERTOPT_USER_RC;
Damien Miller0a80ca12010-02-27 07:55:05 +11001918 else if (strcasecmp(opt, "permit-user-rc") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001919 certflags_flags |= CERTOPT_USER_RC;
Damien Miller0a80ca12010-02-27 07:55:05 +11001920 else if (strncasecmp(opt, "force-command=", 14) == 0) {
1921 val = opt + 14;
1922 if (*val == '\0')
Damien Miller4e270b02010-04-16 15:56:21 +10001923 fatal("Empty force-command option");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001924 if (certflags_command != NULL)
Damien Miller0a80ca12010-02-27 07:55:05 +11001925 fatal("force-command already specified");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001926 certflags_command = xstrdup(val);
Damien Miller0a80ca12010-02-27 07:55:05 +11001927 } else if (strncasecmp(opt, "source-address=", 15) == 0) {
1928 val = opt + 15;
1929 if (*val == '\0')
Damien Miller4e270b02010-04-16 15:56:21 +10001930 fatal("Empty source-address option");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001931 if (certflags_src_addr != NULL)
Damien Miller0a80ca12010-02-27 07:55:05 +11001932 fatal("source-address already specified");
1933 if (addr_match_cidr_list(NULL, val) != 0)
1934 fatal("Invalid source-address list");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001935 certflags_src_addr = xstrdup(val);
djm@openbsd.org249516e2017-04-29 04:12:25 +00001936 } else if (strncasecmp(opt, "extension:", 10) == 0 ||
1937 (iscrit = (strncasecmp(opt, "critical:", 9) == 0))) {
1938 val = xstrdup(strchr(opt, ':') + 1);
1939 if ((cp = strchr(val, '=')) != NULL)
1940 *cp++ = '\0';
1941 cert_userext = xreallocarray(cert_userext, ncert_userext + 1,
1942 sizeof(*cert_userext));
1943 cert_userext[ncert_userext].key = val;
1944 cert_userext[ncert_userext].val = cp == NULL ?
1945 NULL : xstrdup(cp);
1946 cert_userext[ncert_userext].crit = iscrit;
1947 ncert_userext++;
Damien Miller0a80ca12010-02-27 07:55:05 +11001948 } else
Damien Miller4e270b02010-04-16 15:56:21 +10001949 fatal("Unsupported certificate option \"%s\"", opt);
Damien Miller0a80ca12010-02-27 07:55:05 +11001950}
1951
Ben Lindstrombba81212001-06-25 05:01:22 +00001952static void
djm@openbsd.orgc28fc622015-07-03 03:43:18 +00001953show_options(struct sshbuf *optbuf, int in_critical)
Damien Millerd834d352010-06-26 09:48:02 +10001954{
Damien Miller633de332014-05-15 13:48:26 +10001955 char *name, *arg;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001956 struct sshbuf *options, *option = NULL;
1957 int r;
Damien Millerd834d352010-06-26 09:48:02 +10001958
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001959 if ((options = sshbuf_fromb(optbuf)) == NULL)
1960 fatal("%s: sshbuf_fromb failed", __func__);
1961 while (sshbuf_len(options) != 0) {
1962 sshbuf_free(option);
1963 option = NULL;
1964 if ((r = sshbuf_get_cstring(options, &name, NULL)) != 0 ||
1965 (r = sshbuf_froms(options, &option)) != 0)
1966 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Millerd834d352010-06-26 09:48:02 +10001967 printf(" %s", name);
djm@openbsd.orgc28fc622015-07-03 03:43:18 +00001968 if (!in_critical &&
Damien Millerd834d352010-06-26 09:48:02 +10001969 (strcmp(name, "permit-X11-forwarding") == 0 ||
1970 strcmp(name, "permit-agent-forwarding") == 0 ||
1971 strcmp(name, "permit-port-forwarding") == 0 ||
1972 strcmp(name, "permit-pty") == 0 ||
1973 strcmp(name, "permit-user-rc") == 0))
1974 printf("\n");
djm@openbsd.orgc28fc622015-07-03 03:43:18 +00001975 else if (in_critical &&
Damien Millerd834d352010-06-26 09:48:02 +10001976 (strcmp(name, "force-command") == 0 ||
1977 strcmp(name, "source-address") == 0)) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001978 if ((r = sshbuf_get_cstring(option, &arg, NULL)) != 0)
1979 fatal("%s: buffer error: %s",
1980 __func__, ssh_err(r));
Damien Miller633de332014-05-15 13:48:26 +10001981 printf(" %s\n", arg);
1982 free(arg);
Damien Millerd834d352010-06-26 09:48:02 +10001983 } else {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001984 printf(" UNKNOWN OPTION (len %zu)\n",
1985 sshbuf_len(option));
1986 sshbuf_reset(option);
Damien Millerd834d352010-06-26 09:48:02 +10001987 }
Darren Tuckera627d422013-06-02 07:31:17 +10001988 free(name);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001989 if (sshbuf_len(option) != 0)
Damien Millerd834d352010-06-26 09:48:02 +10001990 fatal("Option corrupt: extra data at end");
1991 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001992 sshbuf_free(option);
1993 sshbuf_free(options);
Damien Millerd834d352010-06-26 09:48:02 +10001994}
1995
1996static void
djm@openbsd.org94bc0b72015-11-13 04:34:15 +00001997print_cert(struct sshkey *key)
Damien Millerf2b70ca2010-03-05 07:39:35 +11001998{
djm@openbsd.org499cf362015-11-19 01:08:55 +00001999 char valid[64], *key_fp, *ca_fp;
djm@openbsd.orgc28fc622015-07-03 03:43:18 +00002000 u_int i;
Damien Miller4e270b02010-04-16 15:56:21 +10002001
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002002 key_fp = sshkey_fingerprint(key, fingerprint_hash, SSH_FP_DEFAULT);
2003 ca_fp = sshkey_fingerprint(key->cert->signature_key,
djm@openbsd.org56d1c832014-12-21 22:27:55 +00002004 fingerprint_hash, SSH_FP_DEFAULT);
djm@openbsd.org9ce86c92015-01-28 22:36:00 +00002005 if (key_fp == NULL || ca_fp == NULL)
2006 fatal("%s: sshkey_fingerprint fail", __func__);
djm@openbsd.org499cf362015-11-19 01:08:55 +00002007 sshkey_format_cert_validity(key->cert, valid, sizeof(valid));
Damien Millerf2b70ca2010-03-05 07:39:35 +11002008
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002009 printf(" Type: %s %s certificate\n", sshkey_ssh_name(key),
2010 sshkey_cert_type(key));
2011 printf(" Public key: %s %s\n", sshkey_type(key), key_fp);
Damien Miller4e270b02010-04-16 15:56:21 +10002012 printf(" Signing CA: %s %s\n",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002013 sshkey_type(key->cert->signature_key), ca_fp);
Damien Miller4e270b02010-04-16 15:56:21 +10002014 printf(" Key ID: \"%s\"\n", key->cert->key_id);
djm@openbsd.orgc28fc622015-07-03 03:43:18 +00002015 printf(" Serial: %llu\n", (unsigned long long)key->cert->serial);
djm@openbsd.org499cf362015-11-19 01:08:55 +00002016 printf(" Valid: %s\n", valid);
Damien Millerf2b70ca2010-03-05 07:39:35 +11002017 printf(" Principals: ");
2018 if (key->cert->nprincipals == 0)
2019 printf("(none)\n");
2020 else {
2021 for (i = 0; i < key->cert->nprincipals; i++)
2022 printf("\n %s",
2023 key->cert->principals[i]);
2024 printf("\n");
2025 }
Damien Miller4e270b02010-04-16 15:56:21 +10002026 printf(" Critical Options: ");
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002027 if (sshbuf_len(key->cert->critical) == 0)
Damien Millerf2b70ca2010-03-05 07:39:35 +11002028 printf("(none)\n");
2029 else {
2030 printf("\n");
djm@openbsd.orgc28fc622015-07-03 03:43:18 +00002031 show_options(key->cert->critical, 1);
Damien Millerf2b70ca2010-03-05 07:39:35 +11002032 }
djm@openbsd.orgc28fc622015-07-03 03:43:18 +00002033 printf(" Extensions: ");
2034 if (sshbuf_len(key->cert->extensions) == 0)
2035 printf("(none)\n");
2036 else {
2037 printf("\n");
2038 show_options(key->cert->extensions, 0);
Damien Miller4e270b02010-04-16 15:56:21 +10002039 }
djm@openbsd.org94bc0b72015-11-13 04:34:15 +00002040}
2041
2042static void
2043do_show_cert(struct passwd *pw)
2044{
2045 struct sshkey *key = NULL;
2046 struct stat st;
2047 int r, is_stdin = 0, ok = 0;
2048 FILE *f;
djm@openbsd.orgcce6a362015-12-11 03:19:09 +00002049 char *cp, line[SSH_MAX_PUBKEY_BYTES];
djm@openbsd.org94bc0b72015-11-13 04:34:15 +00002050 const char *path;
djm@openbsd.org1a31d022016-05-02 08:49:03 +00002051 u_long lnum = 0;
djm@openbsd.org94bc0b72015-11-13 04:34:15 +00002052
2053 if (!have_identity)
2054 ask_filename(pw, "Enter file in which the key is");
2055 if (strcmp(identity_file, "-") != 0 && stat(identity_file, &st) < 0)
2056 fatal("%s: %s: %s", __progname, identity_file, strerror(errno));
2057
2058 path = identity_file;
2059 if (strcmp(path, "-") == 0) {
2060 f = stdin;
2061 path = "(stdin)";
2062 is_stdin = 1;
2063 } else if ((f = fopen(identity_file, "r")) == NULL)
2064 fatal("fopen %s: %s", identity_file, strerror(errno));
2065
2066 while (read_keyfile_line(f, path, line, sizeof(line), &lnum) == 0) {
2067 sshkey_free(key);
2068 key = NULL;
2069 /* Trim leading space and comments */
2070 cp = line + strspn(line, " \t");
2071 if (*cp == '#' || *cp == '\0')
2072 continue;
2073 if ((key = sshkey_new(KEY_UNSPEC)) == NULL)
markus@openbsd.org7da5df12017-05-30 14:16:41 +00002074 fatal("sshkey_new");
djm@openbsd.org94bc0b72015-11-13 04:34:15 +00002075 if ((r = sshkey_read(key, &cp)) != 0) {
2076 error("%s:%lu: invalid key: %s", path,
2077 lnum, ssh_err(r));
2078 continue;
2079 }
2080 if (!sshkey_is_cert(key)) {
2081 error("%s:%lu is not a certificate", path, lnum);
2082 continue;
2083 }
2084 ok = 1;
2085 if (!is_stdin && lnum == 1)
2086 printf("%s:\n", path);
2087 else
2088 printf("%s:%lu:\n", path, lnum);
2089 print_cert(key);
2090 }
2091 sshkey_free(key);
2092 fclose(f);
2093 exit(ok ? 0 : 1);
Damien Millerf2b70ca2010-03-05 07:39:35 +11002094}
2095
2096static void
Damien Millerf3747bf2013-01-18 11:44:04 +11002097load_krl(const char *path, struct ssh_krl **krlp)
2098{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002099 struct sshbuf *krlbuf;
2100 int r, fd;
Damien Millerf3747bf2013-01-18 11:44:04 +11002101
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002102 if ((krlbuf = sshbuf_new()) == NULL)
2103 fatal("sshbuf_new failed");
Damien Millerf3747bf2013-01-18 11:44:04 +11002104 if ((fd = open(path, O_RDONLY)) == -1)
2105 fatal("open %s: %s", path, strerror(errno));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002106 if ((r = sshkey_load_file(fd, krlbuf)) != 0)
2107 fatal("Unable to load KRL: %s", ssh_err(r));
Damien Millerf3747bf2013-01-18 11:44:04 +11002108 close(fd);
2109 /* XXX check sigs */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002110 if ((r = ssh_krl_from_blob(krlbuf, krlp, NULL, 0)) != 0 ||
Damien Millerf3747bf2013-01-18 11:44:04 +11002111 *krlp == NULL)
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002112 fatal("Invalid KRL file: %s", ssh_err(r));
2113 sshbuf_free(krlbuf);
Damien Millerf3747bf2013-01-18 11:44:04 +11002114}
2115
2116static void
djm@openbsd.org669aee92015-01-30 01:10:33 +00002117update_krl_from_file(struct passwd *pw, const char *file, int wild_ca,
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002118 const struct sshkey *ca, struct ssh_krl *krl)
Damien Millerf3747bf2013-01-18 11:44:04 +11002119{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002120 struct sshkey *key = NULL;
Damien Millerf3747bf2013-01-18 11:44:04 +11002121 u_long lnum = 0;
2122 char *path, *cp, *ep, line[SSH_MAX_PUBKEY_BYTES];
2123 unsigned long long serial, serial2;
2124 int i, was_explicit_key, was_sha1, r;
2125 FILE *krl_spec;
2126
2127 path = tilde_expand_filename(file, pw->pw_uid);
2128 if (strcmp(path, "-") == 0) {
2129 krl_spec = stdin;
2130 free(path);
2131 path = xstrdup("(standard input)");
2132 } else if ((krl_spec = fopen(path, "r")) == NULL)
2133 fatal("fopen %s: %s", path, strerror(errno));
2134
2135 if (!quiet)
2136 printf("Revoking from %s\n", path);
2137 while (read_keyfile_line(krl_spec, path, line, sizeof(line),
2138 &lnum) == 0) {
2139 was_explicit_key = was_sha1 = 0;
2140 cp = line + strspn(line, " \t");
2141 /* Trim trailing space, comments and strip \n */
2142 for (i = 0, r = -1; cp[i] != '\0'; i++) {
2143 if (cp[i] == '#' || cp[i] == '\n') {
2144 cp[i] = '\0';
2145 break;
2146 }
2147 if (cp[i] == ' ' || cp[i] == '\t') {
2148 /* Remember the start of a span of whitespace */
2149 if (r == -1)
2150 r = i;
2151 } else
2152 r = -1;
2153 }
2154 if (r != -1)
2155 cp[r] = '\0';
2156 if (*cp == '\0')
2157 continue;
2158 if (strncasecmp(cp, "serial:", 7) == 0) {
djm@openbsd.org669aee92015-01-30 01:10:33 +00002159 if (ca == NULL && !wild_ca) {
Damien Millerd234afb2013-08-21 02:42:58 +10002160 fatal("revoking certificates by serial number "
Damien Millerf3747bf2013-01-18 11:44:04 +11002161 "requires specification of a CA key");
2162 }
2163 cp += 7;
2164 cp = cp + strspn(cp, " \t");
2165 errno = 0;
2166 serial = strtoull(cp, &ep, 0);
2167 if (*cp == '\0' || (*ep != '\0' && *ep != '-'))
2168 fatal("%s:%lu: invalid serial \"%s\"",
2169 path, lnum, cp);
2170 if (errno == ERANGE && serial == ULLONG_MAX)
2171 fatal("%s:%lu: serial out of range",
2172 path, lnum);
2173 serial2 = serial;
2174 if (*ep == '-') {
2175 cp = ep + 1;
2176 errno = 0;
2177 serial2 = strtoull(cp, &ep, 0);
2178 if (*cp == '\0' || *ep != '\0')
2179 fatal("%s:%lu: invalid serial \"%s\"",
2180 path, lnum, cp);
2181 if (errno == ERANGE && serial2 == ULLONG_MAX)
2182 fatal("%s:%lu: serial out of range",
2183 path, lnum);
2184 if (serial2 <= serial)
2185 fatal("%s:%lu: invalid serial range "
2186 "%llu:%llu", path, lnum,
2187 (unsigned long long)serial,
2188 (unsigned long long)serial2);
2189 }
2190 if (ssh_krl_revoke_cert_by_serial_range(krl,
2191 ca, serial, serial2) != 0) {
2192 fatal("%s: revoke serial failed",
2193 __func__);
2194 }
2195 } else if (strncasecmp(cp, "id:", 3) == 0) {
djm@openbsd.org669aee92015-01-30 01:10:33 +00002196 if (ca == NULL && !wild_ca) {
Damien Millerd5d9d7b2013-08-21 02:43:27 +10002197 fatal("revoking certificates by key ID "
Damien Millerf3747bf2013-01-18 11:44:04 +11002198 "requires specification of a CA key");
2199 }
2200 cp += 3;
2201 cp = cp + strspn(cp, " \t");
2202 if (ssh_krl_revoke_cert_by_key_id(krl, ca, cp) != 0)
2203 fatal("%s: revoke key ID failed", __func__);
2204 } else {
2205 if (strncasecmp(cp, "key:", 4) == 0) {
2206 cp += 4;
2207 cp = cp + strspn(cp, " \t");
2208 was_explicit_key = 1;
2209 } else if (strncasecmp(cp, "sha1:", 5) == 0) {
2210 cp += 5;
2211 cp = cp + strspn(cp, " \t");
2212 was_sha1 = 1;
2213 } else {
2214 /*
2215 * Just try to process the line as a key.
2216 * Parsing will fail if it isn't.
2217 */
2218 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002219 if ((key = sshkey_new(KEY_UNSPEC)) == NULL)
markus@openbsd.org7da5df12017-05-30 14:16:41 +00002220 fatal("sshkey_new");
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002221 if ((r = sshkey_read(key, &cp)) != 0)
2222 fatal("%s:%lu: invalid key: %s",
2223 path, lnum, ssh_err(r));
Damien Millerf3747bf2013-01-18 11:44:04 +11002224 if (was_explicit_key)
2225 r = ssh_krl_revoke_key_explicit(krl, key);
2226 else if (was_sha1)
2227 r = ssh_krl_revoke_key_sha1(krl, key);
2228 else
2229 r = ssh_krl_revoke_key(krl, key);
2230 if (r != 0)
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002231 fatal("%s: revoke key failed: %s",
2232 __func__, ssh_err(r));
2233 sshkey_free(key);
Damien Millerf3747bf2013-01-18 11:44:04 +11002234 }
2235 }
2236 if (strcmp(path, "-") != 0)
2237 fclose(krl_spec);
Damien Miller0d6771b2013-04-23 15:23:24 +10002238 free(path);
Damien Millerf3747bf2013-01-18 11:44:04 +11002239}
2240
2241static void
2242do_gen_krl(struct passwd *pw, int updating, int argc, char **argv)
2243{
2244 struct ssh_krl *krl;
2245 struct stat sb;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002246 struct sshkey *ca = NULL;
djm@openbsd.org669aee92015-01-30 01:10:33 +00002247 int fd, i, r, wild_ca = 0;
Damien Millerf3747bf2013-01-18 11:44:04 +11002248 char *tmp;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002249 struct sshbuf *kbuf;
Damien Millerf3747bf2013-01-18 11:44:04 +11002250
2251 if (*identity_file == '\0')
2252 fatal("KRL generation requires an output file");
2253 if (stat(identity_file, &sb) == -1) {
2254 if (errno != ENOENT)
2255 fatal("Cannot access KRL \"%s\": %s",
2256 identity_file, strerror(errno));
2257 if (updating)
2258 fatal("KRL \"%s\" does not exist", identity_file);
2259 }
2260 if (ca_key_path != NULL) {
djm@openbsd.org669aee92015-01-30 01:10:33 +00002261 if (strcasecmp(ca_key_path, "none") == 0)
2262 wild_ca = 1;
2263 else {
2264 tmp = tilde_expand_filename(ca_key_path, pw->pw_uid);
2265 if ((r = sshkey_load_public(tmp, &ca, NULL)) != 0)
2266 fatal("Cannot load CA public key %s: %s",
2267 tmp, ssh_err(r));
2268 free(tmp);
2269 }
Damien Millerf3747bf2013-01-18 11:44:04 +11002270 }
2271
2272 if (updating)
2273 load_krl(identity_file, &krl);
2274 else if ((krl = ssh_krl_init()) == NULL)
2275 fatal("couldn't create KRL");
2276
2277 if (cert_serial != 0)
2278 ssh_krl_set_version(krl, cert_serial);
2279 if (identity_comment != NULL)
2280 ssh_krl_set_comment(krl, identity_comment);
2281
2282 for (i = 0; i < argc; i++)
djm@openbsd.org669aee92015-01-30 01:10:33 +00002283 update_krl_from_file(pw, argv[i], wild_ca, ca, krl);
Damien Millerf3747bf2013-01-18 11:44:04 +11002284
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002285 if ((kbuf = sshbuf_new()) == NULL)
2286 fatal("sshbuf_new failed");
2287 if (ssh_krl_to_blob(krl, kbuf, NULL, 0) != 0)
Damien Millerf3747bf2013-01-18 11:44:04 +11002288 fatal("Couldn't generate KRL");
2289 if ((fd = open(identity_file, O_WRONLY|O_CREAT|O_TRUNC, 0644)) == -1)
2290 fatal("open %s: %s", identity_file, strerror(errno));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002291 if (atomicio(vwrite, fd, (void *)sshbuf_ptr(kbuf), sshbuf_len(kbuf)) !=
2292 sshbuf_len(kbuf))
Damien Millerf3747bf2013-01-18 11:44:04 +11002293 fatal("write %s: %s", identity_file, strerror(errno));
2294 close(fd);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002295 sshbuf_free(kbuf);
Damien Millerf3747bf2013-01-18 11:44:04 +11002296 ssh_krl_free(krl);
mmcc@openbsd.org89540b62015-12-11 02:31:47 +00002297 sshkey_free(ca);
Damien Millerf3747bf2013-01-18 11:44:04 +11002298}
2299
2300static void
2301do_check_krl(struct passwd *pw, int argc, char **argv)
2302{
2303 int i, r, ret = 0;
2304 char *comment;
2305 struct ssh_krl *krl;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002306 struct sshkey *k;
Damien Millerf3747bf2013-01-18 11:44:04 +11002307
2308 if (*identity_file == '\0')
2309 fatal("KRL checking requires an input file");
2310 load_krl(identity_file, &krl);
2311 for (i = 0; i < argc; i++) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002312 if ((r = sshkey_load_public(argv[i], &k, &comment)) != 0)
2313 fatal("Cannot load public key %s: %s",
2314 argv[i], ssh_err(r));
Damien Millerf3747bf2013-01-18 11:44:04 +11002315 r = ssh_krl_check_key(krl, k);
2316 printf("%s%s%s%s: %s\n", argv[i],
2317 *comment ? " (" : "", comment, *comment ? ")" : "",
2318 r == 0 ? "ok" : "REVOKED");
2319 if (r != 0)
2320 ret = 1;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002321 sshkey_free(k);
Damien Millerf3747bf2013-01-18 11:44:04 +11002322 free(comment);
2323 }
2324 ssh_krl_free(krl);
2325 exit(ret);
2326}
2327
2328static void
Damien Miller431f66b1999-11-21 18:31:57 +11002329usage(void)
2330{
Damien Millerf0858de2014-04-20 13:01:30 +10002331 fprintf(stderr,
djm@openbsd.org873d3e72017-04-30 23:18:44 +00002332 "usage: ssh-keygen [-q] [-b bits] [-t dsa | ecdsa | ed25519 | rsa]\n"
Damien Millerf0858de2014-04-20 13:01:30 +10002333 " [-N new_passphrase] [-C comment] [-f output_keyfile]\n"
2334 " ssh-keygen -p [-P old_passphrase] [-N new_passphrase] [-f keyfile]\n"
2335 " ssh-keygen -i [-m key_format] [-f input_keyfile]\n"
2336 " ssh-keygen -e [-m key_format] [-f input_keyfile]\n"
2337 " ssh-keygen -y [-f input_keyfile]\n"
2338 " ssh-keygen -c [-P passphrase] [-C comment] [-f keyfile]\n"
naddy@openbsd.org6288e3a2015-02-24 15:24:05 +00002339 " ssh-keygen -l [-v] [-E fingerprint_hash] [-f input_keyfile]\n"
djm@openbsd.org873d3e72017-04-30 23:18:44 +00002340 " ssh-keygen -B [-f input_keyfile]\n");
Damien Miller7ea845e2010-02-12 09:21:02 +11002341#ifdef ENABLE_PKCS11
Damien Millerf0858de2014-04-20 13:01:30 +10002342 fprintf(stderr,
2343 " ssh-keygen -D pkcs11\n");
Damien Miller7ea845e2010-02-12 09:21:02 +11002344#endif
Damien Millerf0858de2014-04-20 13:01:30 +10002345 fprintf(stderr,
2346 " ssh-keygen -F hostname [-f known_hosts_file] [-l]\n"
2347 " ssh-keygen -H [-f known_hosts_file]\n"
2348 " ssh-keygen -R hostname [-f known_hosts_file]\n"
2349 " ssh-keygen -r hostname [-f input_keyfile] [-g]\n"
djm@openbsd.org1d9a2e22015-05-28 07:37:31 +00002350#ifdef WITH_OPENSSL
Damien Millerf0858de2014-04-20 13:01:30 +10002351 " ssh-keygen -G output_file [-v] [-b bits] [-M memory] [-S start_point]\n"
2352 " ssh-keygen -T output_file -f input_file [-v] [-a rounds] [-J num_lines]\n"
2353 " [-j start_line] [-K checkpt] [-W generator]\n"
djm@openbsd.org1d9a2e22015-05-28 07:37:31 +00002354#endif
djm@openbsd.orga98339e2017-06-28 01:09:22 +00002355 " ssh-keygen -s ca_key -I certificate_identity [-h] [-U]\n"
2356 " [-D pkcs11_provider] [-n principals] [-O option]\n"
2357 " [-V validity_interval] [-z serial_number] file ...\n"
Damien Millerf0858de2014-04-20 13:01:30 +10002358 " ssh-keygen -L [-f input_keyfile]\n"
2359 " ssh-keygen -A\n"
2360 " ssh-keygen -k -f krl_file [-u] [-s ca_public] [-z version_number]\n"
2361 " file ...\n"
2362 " ssh-keygen -Q -f krl_file file ...\n");
Damien Miller95def091999-11-25 00:26:21 +11002363 exit(1);
Damien Miller431f66b1999-11-21 18:31:57 +11002364}
2365
Damien Miller95def091999-11-25 00:26:21 +11002366/*
2367 * Main program for key management.
2368 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002369int
Damien Millerdf8b7db2007-01-05 16:22:57 +11002370main(int argc, char **argv)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002371{
deraadt@openbsd.org2ae4f332015-01-16 06:40:12 +00002372 char dotsshdir[PATH_MAX], comment[1024], *passphrase1, *passphrase2;
djm@openbsd.org1d9a2e22015-05-28 07:37:31 +00002373 char *rr_hostname = NULL, *ep, *fp, *ra;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002374 struct sshkey *private, *public;
Damien Miller95def091999-11-25 00:26:21 +11002375 struct passwd *pw;
Damien Miller95def091999-11-25 00:26:21 +11002376 struct stat st;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002377 int r, opt, type, fd;
Damien Millerf3747bf2013-01-18 11:44:04 +11002378 int gen_all_hostkeys = 0, gen_krl = 0, update_krl = 0, check_krl = 0;
Damien Miller95def091999-11-25 00:26:21 +11002379 FILE *f;
Damien Miller02e754f2005-05-26 12:19:39 +10002380 const char *errstr;
djm@openbsd.org1d9a2e22015-05-28 07:37:31 +00002381#ifdef WITH_OPENSSL
2382 /* Moduli generation/screening */
2383 char out_file[PATH_MAX], *checkpoint = NULL;
2384 u_int32_t memory = 0, generator_wanted = 0;
2385 int do_gen_candidates = 0, do_screen_candidates = 0;
2386 unsigned long start_lineno = 0, lines_to_process = 0;
2387 BIGNUM *start = NULL;
2388#endif
Damien Miller0bc1bd82000-11-13 22:57:25 +11002389
Damien Miller95def091999-11-25 00:26:21 +11002390 extern int optind;
2391 extern char *optarg;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002392
dtucker@openbsd.orgffb1e7e2016-02-15 09:47:49 +00002393 ssh_malloc_init(); /* must be called before any mallocs */
Darren Tuckerce321d82005-10-03 18:11:24 +10002394 /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
2395 sanitise_stdfd();
2396
Darren Tucker9ac56e92007-01-14 10:19:59 +11002397 __progname = ssh_get_progname(argv[0]);
Damien Millerf9b625c2000-07-09 22:42:32 +10002398
Damien Miller72ef7c12015-01-15 02:21:31 +11002399#ifdef WITH_OPENSSL
Damien Miller4314c2b2010-09-10 11:12:09 +10002400 OpenSSL_add_all_algorithms();
Damien Miller72ef7c12015-01-15 02:21:31 +11002401#endif
Damien Millerdf8b7db2007-01-05 16:22:57 +11002402 log_init(argv[0], SYSLOG_LEVEL_INFO, SYSLOG_FACILITY_USER, 1);
Darren Tucker019cefe2003-08-02 22:40:07 +10002403
Kevin Steves3a881912002-07-20 19:05:40 +00002404 seed_rng();
Damien Millereba71ba2000-04-29 23:57:08 +10002405
djm@openbsd.orga287c5a2017-02-10 03:36:40 +00002406 msetlocale();
2407
Damien Miller5428f641999-11-25 11:54:57 +11002408 /* we need this for the home * directory. */
Damien Miller95def091999-11-25 00:26:21 +11002409 pw = getpwuid(getuid());
djm@openbsd.org3038a192015-04-17 13:19:22 +00002410 if (!pw)
2411 fatal("No user exists for uid %lu", (u_long)getuid());
2412 if (gethostname(hostname, sizeof(hostname)) < 0)
2413 fatal("gethostname: %s", strerror(errno));
Damien Miller5428f641999-11-25 11:54:57 +11002414
djm@openbsd.orga98339e2017-06-28 01:09:22 +00002415 /* Remaining characters: Ydw */
2416 while ((opt = getopt(argc, argv, "ABHLQUXceghiklopquvxy"
djm@openbsd.org56d1c832014-12-21 22:27:55 +00002417 "C:D:E:F:G:I:J:K:M:N:O:P:R:S:T:V:W:Z:"
2418 "a:b:f:g:j:m:n:r:s:t:z:")) != -1) {
Damien Miller95def091999-11-25 00:26:21 +11002419 switch (opt) {
Damien Miller58f1baf2011-05-05 14:06:15 +10002420 case 'A':
2421 gen_all_hostkeys = 1;
2422 break;
Damien Miller95def091999-11-25 00:26:21 +11002423 case 'b':
Damien Miller57737942010-09-10 11:16:37 +10002424 bits = (u_int32_t)strtonum(optarg, 256, 32768, &errstr);
Damien Miller02e754f2005-05-26 12:19:39 +10002425 if (errstr)
2426 fatal("Bits has bad value %s (%s)",
2427 optarg, errstr);
Damien Miller95def091999-11-25 00:26:21 +11002428 break;
djm@openbsd.org56d1c832014-12-21 22:27:55 +00002429 case 'E':
2430 fingerprint_hash = ssh_digest_alg_by_name(optarg);
2431 if (fingerprint_hash == -1)
2432 fatal("Invalid hash algorithm \"%s\"", optarg);
2433 break;
Damien Miller4b42d7f2005-03-01 21:48:35 +11002434 case 'F':
2435 find_host = 1;
2436 rr_hostname = optarg;
2437 break;
2438 case 'H':
2439 hash_hosts = 1;
2440 break;
Damien Miller0a80ca12010-02-27 07:55:05 +11002441 case 'I':
2442 cert_key_id = optarg;
2443 break;
Damien Miller4b42d7f2005-03-01 21:48:35 +11002444 case 'R':
2445 delete_host = 1;
2446 rr_hostname = optarg;
2447 break;
Damien Millerf2b70ca2010-03-05 07:39:35 +11002448 case 'L':
2449 show_cert = 1;
2450 break;
Damien Miller95def091999-11-25 00:26:21 +11002451 case 'l':
2452 print_fingerprint = 1;
2453 break;
Ben Lindstrom8fd372b2001-03-12 03:02:17 +00002454 case 'B':
2455 print_bubblebabble = 1;
2456 break;
Damien Miller44b25042010-07-02 13:35:01 +10002457 case 'm':
2458 if (strcasecmp(optarg, "RFC4716") == 0 ||
2459 strcasecmp(optarg, "ssh2") == 0) {
2460 convert_format = FMT_RFC4716;
2461 break;
2462 }
2463 if (strcasecmp(optarg, "PKCS8") == 0) {
2464 convert_format = FMT_PKCS8;
2465 break;
2466 }
2467 if (strcasecmp(optarg, "PEM") == 0) {
2468 convert_format = FMT_PEM;
2469 break;
2470 }
2471 fatal("Unsupported conversion format \"%s\"", optarg);
Damien Miller0a80ca12010-02-27 07:55:05 +11002472 case 'n':
2473 cert_principals = optarg;
2474 break;
Damien Millerbcd00ab2013-12-07 10:41:55 +11002475 case 'o':
2476 use_new_format = 1;
2477 break;
Damien Miller95def091999-11-25 00:26:21 +11002478 case 'p':
2479 change_passphrase = 1;
2480 break;
Damien Miller95def091999-11-25 00:26:21 +11002481 case 'c':
2482 change_comment = 1;
2483 break;
Damien Miller95def091999-11-25 00:26:21 +11002484 case 'f':
djm@openbsd.org1d9a2e22015-05-28 07:37:31 +00002485 if (strlcpy(identity_file, optarg,
2486 sizeof(identity_file)) >= sizeof(identity_file))
Damien Millerb089fb52005-05-26 12:16:18 +10002487 fatal("Identity filename too long");
Damien Miller95def091999-11-25 00:26:21 +11002488 have_identity = 1;
2489 break;
Damien Miller37876e92003-05-15 10:19:46 +10002490 case 'g':
2491 print_generic = 1;
2492 break;
Damien Miller95def091999-11-25 00:26:21 +11002493 case 'P':
2494 identity_passphrase = optarg;
2495 break;
Damien Miller95def091999-11-25 00:26:21 +11002496 case 'N':
2497 identity_new_passphrase = optarg;
2498 break;
Damien Millerf3747bf2013-01-18 11:44:04 +11002499 case 'Q':
2500 check_krl = 1;
2501 break;
Damien Miller0a80ca12010-02-27 07:55:05 +11002502 case 'O':
Damien Miller4e270b02010-04-16 15:56:21 +10002503 add_cert_option(optarg);
Damien Miller0a80ca12010-02-27 07:55:05 +11002504 break;
Damien Millerbcd00ab2013-12-07 10:41:55 +11002505 case 'Z':
2506 new_format_cipher = optarg;
2507 break;
Damien Miller95def091999-11-25 00:26:21 +11002508 case 'C':
2509 identity_comment = optarg;
2510 break;
Damien Miller95def091999-11-25 00:26:21 +11002511 case 'q':
2512 quiet = 1;
2513 break;
Ben Lindstrom5a707822001-04-22 17:15:46 +00002514 case 'e':
Damien Millereba71ba2000-04-29 23:57:08 +10002515 case 'x':
Ben Lindstrom5a707822001-04-22 17:15:46 +00002516 /* export key */
Damien Miller44b25042010-07-02 13:35:01 +10002517 convert_to = 1;
Damien Millereba71ba2000-04-29 23:57:08 +10002518 break;
Damien Miller0a80ca12010-02-27 07:55:05 +11002519 case 'h':
2520 cert_key_type = SSH2_CERT_TYPE_HOST;
Damien Millerd0e4a8e2010-05-21 14:58:32 +10002521 certflags_flags = 0;
Damien Miller0a80ca12010-02-27 07:55:05 +11002522 break;
Damien Millerf3747bf2013-01-18 11:44:04 +11002523 case 'k':
2524 gen_krl = 1;
2525 break;
Ben Lindstrom5a707822001-04-22 17:15:46 +00002526 case 'i':
Damien Millereba71ba2000-04-29 23:57:08 +10002527 case 'X':
Ben Lindstrom5a707822001-04-22 17:15:46 +00002528 /* import key */
Damien Miller44b25042010-07-02 13:35:01 +10002529 convert_from = 1;
Damien Millereba71ba2000-04-29 23:57:08 +10002530 break;
Damien Millereba71ba2000-04-29 23:57:08 +10002531 case 'y':
2532 print_public = 1;
2533 break;
Damien Miller0a80ca12010-02-27 07:55:05 +11002534 case 's':
2535 ca_key_path = optarg;
2536 break;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002537 case 't':
2538 key_type_name = optarg;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002539 break;
Ben Lindstrom8282d6a2001-08-06 21:44:05 +00002540 case 'D':
Damien Miller7ea845e2010-02-12 09:21:02 +11002541 pkcs11provider = optarg;
Ben Lindstromcd392282001-07-04 03:44:03 +00002542 break;
djm@openbsd.orga98339e2017-06-28 01:09:22 +00002543 case 'U':
2544 prefer_agent = 1;
2545 break;
Damien Millerf3747bf2013-01-18 11:44:04 +11002546 case 'u':
2547 update_krl = 1;
2548 break;
Darren Tucker06930c72003-12-31 11:34:51 +11002549 case 'v':
2550 if (log_level == SYSLOG_LEVEL_INFO)
2551 log_level = SYSLOG_LEVEL_DEBUG1;
2552 else {
Darren Tuckerfc959702004-07-17 16:12:08 +10002553 if (log_level >= SYSLOG_LEVEL_DEBUG1 &&
Darren Tucker06930c72003-12-31 11:34:51 +11002554 log_level < SYSLOG_LEVEL_DEBUG3)
2555 log_level++;
2556 }
2557 break;
Damien Miller37876e92003-05-15 10:19:46 +10002558 case 'r':
Damien Miller4b42d7f2005-03-01 21:48:35 +11002559 rr_hostname = optarg;
Damien Miller37876e92003-05-15 10:19:46 +10002560 break;
djm@openbsd.org1d9a2e22015-05-28 07:37:31 +00002561 case 'a':
2562 rounds = (int)strtonum(optarg, 1, INT_MAX, &errstr);
2563 if (errstr)
2564 fatal("Invalid number: %s (%s)",
2565 optarg, errstr);
2566 break;
2567 case 'V':
2568 parse_cert_times(optarg);
2569 break;
2570 case 'z':
2571 errno = 0;
2572 cert_serial = strtoull(optarg, &ep, 10);
2573 if (*optarg < '0' || *optarg > '9' || *ep != '\0' ||
2574 (errno == ERANGE && cert_serial == ULLONG_MAX))
2575 fatal("Invalid serial number \"%s\"", optarg);
2576 break;
2577#ifdef WITH_OPENSSL
2578 /* Moduli generation/screening */
Darren Tucker019cefe2003-08-02 22:40:07 +10002579 case 'G':
2580 do_gen_candidates = 1;
Damien Millerb089fb52005-05-26 12:16:18 +10002581 if (strlcpy(out_file, optarg, sizeof(out_file)) >=
2582 sizeof(out_file))
2583 fatal("Output filename too long");
Darren Tucker019cefe2003-08-02 22:40:07 +10002584 break;
Darren Tucker0bb29802016-09-12 11:07:00 +10002585 case 'J':
2586 lines_to_process = strtoul(optarg, NULL, 10);
dtucker@openbsd.org7b63cf62016-09-12 03:29:16 +00002587 break;
Darren Tucker0bb29802016-09-12 11:07:00 +10002588 case 'j':
2589 start_lineno = strtoul(optarg, NULL, 10);
dtucker@openbsd.org7b63cf62016-09-12 03:29:16 +00002590 break;
Damien Miller390d0562011-10-18 16:05:19 +11002591 case 'K':
deraadt@openbsd.org2ae4f332015-01-16 06:40:12 +00002592 if (strlen(optarg) >= PATH_MAX)
Damien Miller390d0562011-10-18 16:05:19 +11002593 fatal("Checkpoint filename too long");
2594 checkpoint = xstrdup(optarg);
2595 break;
Darren Tuckerd8c3cfb2016-09-12 13:30:50 +10002596 case 'M':
2597 memory = (u_int32_t)strtonum(optarg, 1, UINT_MAX,
2598 &errstr);
2599 if (errstr)
2600 fatal("Memory limit is %s: %s", errstr, optarg);
2601 break;
Darren Tucker019cefe2003-08-02 22:40:07 +10002602 case 'S':
2603 /* XXX - also compare length against bits */
2604 if (BN_hex2bn(&start, optarg) == 0)
2605 fatal("Invalid start point.");
2606 break;
Darren Tuckeraf48d542016-09-12 13:52:17 +10002607 case 'T':
2608 do_screen_candidates = 1;
2609 if (strlcpy(out_file, optarg, sizeof(out_file)) >=
2610 sizeof(out_file))
2611 fatal("Output filename too long");
2612 break;
Darren Tucker43cceff2016-09-12 13:55:37 +10002613 case 'W':
2614 generator_wanted = (u_int32_t)strtonum(optarg, 1,
2615 UINT_MAX, &errstr);
Darren Tucker70508962016-09-12 13:57:28 +10002616 if (errstr != NULL)
2617 fatal("Desired generator invalid: %s (%s)",
2618 optarg, errstr);
Darren Tucker43cceff2016-09-12 13:55:37 +10002619 break;
Damien Miller72ef7c12015-01-15 02:21:31 +11002620#endif /* WITH_OPENSSL */
Damien Miller95def091999-11-25 00:26:21 +11002621 case '?':
2622 default:
2623 usage();
2624 }
2625 }
Darren Tucker06930c72003-12-31 11:34:51 +11002626
2627 /* reinit */
Damien Millerdf8b7db2007-01-05 16:22:57 +11002628 log_init(argv[0], log_level, SYSLOG_FACILITY_USER, 1);
Darren Tucker06930c72003-12-31 11:34:51 +11002629
Damien Miller0a80ca12010-02-27 07:55:05 +11002630 argv += optind;
2631 argc -= optind;
2632
2633 if (ca_key_path != NULL) {
Damien Millerf3747bf2013-01-18 11:44:04 +11002634 if (argc < 1 && !gen_krl) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00002635 error("Too few arguments.");
Damien Miller0a80ca12010-02-27 07:55:05 +11002636 usage();
2637 }
Damien Millerf3747bf2013-01-18 11:44:04 +11002638 } else if (argc > 0 && !gen_krl && !check_krl) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00002639 error("Too many arguments.");
Damien Miller95def091999-11-25 00:26:21 +11002640 usage();
2641 }
2642 if (change_passphrase && change_comment) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00002643 error("Can only have one of -p and -c.");
Damien Miller95def091999-11-25 00:26:21 +11002644 usage();
2645 }
Darren Tucker0f7e9102008-06-08 12:54:29 +10002646 if (print_fingerprint && (delete_host || hash_hosts)) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00002647 error("Cannot use -l with -H or -R.");
Darren Tucker0f7e9102008-06-08 12:54:29 +10002648 usage();
2649 }
Damien Millerf3747bf2013-01-18 11:44:04 +11002650 if (gen_krl) {
2651 do_gen_krl(pw, update_krl, argc, argv);
2652 return (0);
2653 }
2654 if (check_krl) {
2655 do_check_krl(pw, argc, argv);
2656 return (0);
2657 }
Damien Miller0a80ca12010-02-27 07:55:05 +11002658 if (ca_key_path != NULL) {
2659 if (cert_key_id == NULL)
2660 fatal("Must specify key id (-I) when certifying");
2661 do_ca_sign(pw, argc, argv);
2662 }
Damien Millerf2b70ca2010-03-05 07:39:35 +11002663 if (show_cert)
2664 do_show_cert(pw);
Damien Miller4b42d7f2005-03-01 21:48:35 +11002665 if (delete_host || hash_hosts || find_host)
2666 do_known_hosts(pw, rr_hostname);
Damien Millerec77c952013-01-09 15:58:00 +11002667 if (pkcs11provider != NULL)
2668 do_download(pw);
Ben Lindstrom8fd372b2001-03-12 03:02:17 +00002669 if (print_fingerprint || print_bubblebabble)
Damien Miller95def091999-11-25 00:26:21 +11002670 do_fingerprint(pw);
Damien Miller95def091999-11-25 00:26:21 +11002671 if (change_passphrase)
2672 do_change_passphrase(pw);
Damien Miller4a10d2e2002-03-11 22:53:29 +11002673 if (change_comment)
2674 do_change_comment(pw);
Damien Miller1f0311c2014-05-15 14:24:09 +10002675#ifdef WITH_OPENSSL
Damien Miller44b25042010-07-02 13:35:01 +10002676 if (convert_to)
2677 do_convert_to(pw);
2678 if (convert_from)
2679 do_convert_from(pw);
Damien Miller1f0311c2014-05-15 14:24:09 +10002680#endif
Damien Millereba71ba2000-04-29 23:57:08 +10002681 if (print_public)
2682 do_print_public(pw);
Damien Miller4b42d7f2005-03-01 21:48:35 +11002683 if (rr_hostname != NULL) {
Damien Millercb314822006-03-26 13:48:01 +11002684 unsigned int n = 0;
2685
2686 if (have_identity) {
2687 n = do_print_resource_record(pw,
2688 identity_file, rr_hostname);
djm@openbsd.org3038a192015-04-17 13:19:22 +00002689 if (n == 0)
2690 fatal("%s: %s", identity_file, strerror(errno));
Damien Millercb314822006-03-26 13:48:01 +11002691 exit(0);
2692 } else {
2693
2694 n += do_print_resource_record(pw,
2695 _PATH_HOST_RSA_KEY_FILE, rr_hostname);
2696 n += do_print_resource_record(pw,
2697 _PATH_HOST_DSA_KEY_FILE, rr_hostname);
Damien Miller3bde12a2012-06-20 21:51:11 +10002698 n += do_print_resource_record(pw,
2699 _PATH_HOST_ECDSA_KEY_FILE, rr_hostname);
Damien Miller16cd3922014-05-15 13:45:58 +10002700 n += do_print_resource_record(pw,
2701 _PATH_HOST_ED25519_KEY_FILE, rr_hostname);
Damien Millercb314822006-03-26 13:48:01 +11002702 if (n == 0)
2703 fatal("no keys found.");
2704 exit(0);
2705 }
Damien Miller37876e92003-05-15 10:19:46 +10002706 }
Damien Miller95def091999-11-25 00:26:21 +11002707
djm@openbsd.org1d9a2e22015-05-28 07:37:31 +00002708#ifdef WITH_OPENSSL
Darren Tucker019cefe2003-08-02 22:40:07 +10002709 if (do_gen_candidates) {
2710 FILE *out = fopen(out_file, "w");
Damien Miller787b2ec2003-11-21 23:56:47 +11002711
Darren Tucker019cefe2003-08-02 22:40:07 +10002712 if (out == NULL) {
2713 error("Couldn't open modulus candidate file \"%s\": %s",
2714 out_file, strerror(errno));
2715 return (1);
2716 }
Damien Miller3f54a9f2005-11-05 14:52:18 +11002717 if (bits == 0)
2718 bits = DEFAULT_BITS;
Darren Tucker019cefe2003-08-02 22:40:07 +10002719 if (gen_candidates(out, memory, bits, start) != 0)
Damien Miller15d72a02005-11-05 15:07:33 +11002720 fatal("modulus candidate generation failed");
Darren Tucker019cefe2003-08-02 22:40:07 +10002721
2722 return (0);
2723 }
2724
2725 if (do_screen_candidates) {
2726 FILE *in;
Damien Miller78d22712013-02-12 11:03:36 +11002727 FILE *out = fopen(out_file, "a");
Darren Tucker019cefe2003-08-02 22:40:07 +10002728
2729 if (have_identity && strcmp(identity_file, "-") != 0) {
2730 if ((in = fopen(identity_file, "r")) == NULL) {
2731 fatal("Couldn't open modulus candidate "
Damien Millera8e06ce2003-11-21 23:48:55 +11002732 "file \"%s\": %s", identity_file,
Darren Tucker019cefe2003-08-02 22:40:07 +10002733 strerror(errno));
2734 }
2735 } else
2736 in = stdin;
2737
2738 if (out == NULL) {
2739 fatal("Couldn't open moduli file \"%s\": %s",
2740 out_file, strerror(errno));
2741 }
Damien Millerbcd00ab2013-12-07 10:41:55 +11002742 if (prime_test(in, out, rounds == 0 ? 100 : rounds,
2743 generator_wanted, checkpoint,
Damien Millerdfceafe2012-07-06 13:44:19 +10002744 start_lineno, lines_to_process) != 0)
Damien Miller15d72a02005-11-05 15:07:33 +11002745 fatal("modulus screening failed");
Darren Tuckerf4220e62003-08-21 16:44:07 +10002746 return (0);
Darren Tucker019cefe2003-08-02 22:40:07 +10002747 }
djm@openbsd.org1d9a2e22015-05-28 07:37:31 +00002748#endif
Darren Tucker019cefe2003-08-02 22:40:07 +10002749
Damien Miller58f1baf2011-05-05 14:06:15 +10002750 if (gen_all_hostkeys) {
2751 do_gen_all_hostkeys(pw);
2752 return (0);
2753 }
2754
Damien Millerf14be5c2005-11-05 15:15:49 +11002755 if (key_type_name == NULL)
djm@openbsd.orgd1958792015-05-28 04:40:13 +00002756 key_type_name = DEFAULT_KEY_TYPE_NAME;
Damien Millerf14be5c2005-11-05 15:15:49 +11002757
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002758 type = sshkey_type_from_name(key_type_name);
djm@openbsd.org7efb4552015-01-18 13:22:28 +00002759 type_bits_valid(type, key_type_name, &bits);
Damien Miller58f1baf2011-05-05 14:06:15 +10002760
Darren Tucker3af2ac52005-11-29 13:10:24 +11002761 if (!quiet)
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002762 printf("Generating public/private %s key pair.\n",
2763 key_type_name);
djm@openbsd.org3038a192015-04-17 13:19:22 +00002764 if ((r = sshkey_generate(type, bits, &private)) != 0)
markus@openbsd.org7da5df12017-05-30 14:16:41 +00002765 fatal("sshkey_generate failed");
djm@openbsd.org3038a192015-04-17 13:19:22 +00002766 if ((r = sshkey_from_private(private, &public)) != 0)
markus@openbsd.org7da5df12017-05-30 14:16:41 +00002767 fatal("sshkey_from_private failed: %s\n", ssh_err(r));
Damien Miller95def091999-11-25 00:26:21 +11002768
2769 if (!have_identity)
2770 ask_filename(pw, "Enter file in which to save the key");
2771
Damien Miller788f2122005-11-05 15:14:59 +11002772 /* Create ~/.ssh directory if it doesn't already exist. */
Damien Miller50af79b2010-05-10 11:52:00 +10002773 snprintf(dotsshdir, sizeof dotsshdir, "%s/%s",
2774 pw->pw_dir, _PATH_SSH_USER_DIR);
2775 if (strstr(identity_file, dotsshdir) != NULL) {
2776 if (stat(dotsshdir, &st) < 0) {
2777 if (errno != ENOENT) {
2778 error("Could not stat %s: %s", dotsshdir,
2779 strerror(errno));
2780 } else if (mkdir(dotsshdir, 0700) < 0) {
2781 error("Could not create directory '%s': %s",
2782 dotsshdir, strerror(errno));
2783 } else if (!quiet)
2784 printf("Created directory '%s'.\n", dotsshdir);
2785 }
Damien Miller95def091999-11-25 00:26:21 +11002786 }
2787 /* If the file already exists, ask the user to confirm. */
2788 if (stat(identity_file, &st) >= 0) {
2789 char yesno[3];
2790 printf("%s already exists.\n", identity_file);
2791 printf("Overwrite (y/n)? ");
2792 fflush(stdout);
2793 if (fgets(yesno, sizeof(yesno), stdin) == NULL)
2794 exit(1);
2795 if (yesno[0] != 'y' && yesno[0] != 'Y')
2796 exit(1);
2797 }
2798 /* Ask for a passphrase (twice). */
2799 if (identity_passphrase)
2800 passphrase1 = xstrdup(identity_passphrase);
2801 else if (identity_new_passphrase)
2802 passphrase1 = xstrdup(identity_new_passphrase);
2803 else {
2804passphrase_again:
2805 passphrase1 =
Ben Lindstrom949974b2001-06-25 05:20:31 +00002806 read_passphrase("Enter passphrase (empty for no "
2807 "passphrase): ", RP_ALLOW_STDIN);
2808 passphrase2 = read_passphrase("Enter same passphrase again: ",
2809 RP_ALLOW_STDIN);
Damien Miller95def091999-11-25 00:26:21 +11002810 if (strcmp(passphrase1, passphrase2) != 0) {
Ben Lindstrom949974b2001-06-25 05:20:31 +00002811 /*
2812 * The passphrases do not match. Clear them and
2813 * retry.
2814 */
Damien Millera5103f42014-02-04 11:20:14 +11002815 explicit_bzero(passphrase1, strlen(passphrase1));
2816 explicit_bzero(passphrase2, strlen(passphrase2));
Darren Tuckera627d422013-06-02 07:31:17 +10002817 free(passphrase1);
2818 free(passphrase2);
Damien Miller95def091999-11-25 00:26:21 +11002819 printf("Passphrases do not match. Try again.\n");
2820 goto passphrase_again;
2821 }
2822 /* Clear the other copy of the passphrase. */
Damien Millera5103f42014-02-04 11:20:14 +11002823 explicit_bzero(passphrase2, strlen(passphrase2));
Darren Tuckera627d422013-06-02 07:31:17 +10002824 free(passphrase2);
Damien Miller95def091999-11-25 00:26:21 +11002825 }
2826
Damien Miller95def091999-11-25 00:26:21 +11002827 if (identity_comment) {
2828 strlcpy(comment, identity_comment, sizeof(comment));
2829 } else {
Darren Tuckere15fb092008-11-11 16:31:43 +11002830 /* Create default comment field for the passphrase. */
Damien Miller95def091999-11-25 00:26:21 +11002831 snprintf(comment, sizeof comment, "%s@%s", pw->pw_name, hostname);
2832 }
2833
2834 /* Save the key with the given passphrase and comment. */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002835 if ((r = sshkey_save_private(private, identity_file, passphrase1,
2836 comment, use_new_format, new_format_cipher, rounds)) != 0) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00002837 error("Saving key \"%s\" failed: %s",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002838 identity_file, ssh_err(r));
Damien Millera5103f42014-02-04 11:20:14 +11002839 explicit_bzero(passphrase1, strlen(passphrase1));
Darren Tuckera627d422013-06-02 07:31:17 +10002840 free(passphrase1);
Damien Miller95def091999-11-25 00:26:21 +11002841 exit(1);
2842 }
2843 /* Clear the passphrase. */
Damien Millera5103f42014-02-04 11:20:14 +11002844 explicit_bzero(passphrase1, strlen(passphrase1));
Darren Tuckera627d422013-06-02 07:31:17 +10002845 free(passphrase1);
Damien Miller95def091999-11-25 00:26:21 +11002846
2847 /* Clear the private key and the random number generator. */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002848 sshkey_free(private);
Damien Miller95def091999-11-25 00:26:21 +11002849
2850 if (!quiet)
2851 printf("Your identification has been saved in %s.\n", identity_file);
2852
Damien Miller95def091999-11-25 00:26:21 +11002853 strlcat(identity_file, ".pub", sizeof(identity_file));
djm@openbsd.org3038a192015-04-17 13:19:22 +00002854 if ((fd = open(identity_file, O_WRONLY|O_CREAT|O_TRUNC, 0644)) == -1)
2855 fatal("Unable to save public key to %s: %s",
2856 identity_file, strerror(errno));
2857 if ((f = fdopen(fd, "w")) == NULL)
2858 fatal("fdopen %s failed: %s", identity_file, strerror(errno));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002859 if ((r = sshkey_write(public, f)) != 0)
djm@openbsd.org3038a192015-04-17 13:19:22 +00002860 error("write key failed: %s", ssh_err(r));
Damien Millereba71ba2000-04-29 23:57:08 +10002861 fprintf(f, " %s\n", comment);
Damien Miller95def091999-11-25 00:26:21 +11002862 fclose(f);
2863
2864 if (!quiet) {
djm@openbsd.org9ce86c92015-01-28 22:36:00 +00002865 fp = sshkey_fingerprint(public, fingerprint_hash,
djm@openbsd.org56d1c832014-12-21 22:27:55 +00002866 SSH_FP_DEFAULT);
djm@openbsd.org9ce86c92015-01-28 22:36:00 +00002867 ra = sshkey_fingerprint(public, fingerprint_hash,
Darren Tucker9c16ac92008-06-13 04:40:35 +10002868 SSH_FP_RANDOMART);
djm@openbsd.org9ce86c92015-01-28 22:36:00 +00002869 if (fp == NULL || ra == NULL)
2870 fatal("sshkey_fingerprint failed");
Damien Millereba71ba2000-04-29 23:57:08 +10002871 printf("Your public key has been saved in %s.\n",
2872 identity_file);
Damien Miller95def091999-11-25 00:26:21 +11002873 printf("The key fingerprint is:\n");
Ben Lindstromcfccef92001-03-13 04:57:58 +00002874 printf("%s %s\n", fp, comment);
Darren Tucker9c16ac92008-06-13 04:40:35 +10002875 printf("The key's randomart image is:\n");
2876 printf("%s\n", ra);
Darren Tuckera627d422013-06-02 07:31:17 +10002877 free(ra);
2878 free(fp);
Damien Miller95def091999-11-25 00:26:21 +11002879 }
Damien Millereba71ba2000-04-29 23:57:08 +10002880
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002881 sshkey_free(public);
Damien Miller95def091999-11-25 00:26:21 +11002882 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002883}