blob: 822e7e7c44e06f5b4145406a83be551c4abf3639 [file] [log] [blame]
markus@openbsd.org49f47e62018-07-09 21:59:10 +00001/* $OpenBSD: ssh-keygen.c,v 1.318 2018/07/09 21:59:10 markus 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;
markus@openbsd.org1b11ea72018-02-23 15:58:37 +0000278 case KEY_XMSS:
279 case KEY_XMSS_CERT:
280 name = _PATH_SSH_CLIENT_ID_XMSS;
281 break;
Damien Miller993dd552002-02-19 15:22:47 +1100282 default:
djm@openbsd.org3038a192015-04-17 13:19:22 +0000283 fatal("bad key type");
Damien Miller993dd552002-02-19 15:22:47 +1100284 }
Damien Miller90967402006-03-26 14:07:26 +1100285 }
djm@openbsd.org3038a192015-04-17 13:19:22 +0000286 snprintf(identity_file, sizeof(identity_file),
287 "%s/%s", pw->pw_dir, name);
288 printf("%s (%s): ", prompt, identity_file);
289 fflush(stdout);
Damien Miller95def091999-11-25 00:26:21 +1100290 if (fgets(buf, sizeof(buf), stdin) == NULL)
291 exit(1);
Damien Miller14b017d2007-09-17 16:09:15 +1000292 buf[strcspn(buf, "\n")] = '\0';
Damien Miller95def091999-11-25 00:26:21 +1100293 if (strcmp(buf, "") != 0)
294 strlcpy(identity_file, buf, sizeof(identity_file));
295 have_identity = 1;
Damien Miller10f6f6b1999-11-17 17:29:08 +1100296}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000297
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000298static struct sshkey *
Ben Lindstromd78ae762001-06-05 20:35:09 +0000299load_identity(char *filename)
Damien Millereba71ba2000-04-29 23:57:08 +1000300{
Ben Lindstromd0fca422001-03-26 13:44:06 +0000301 char *pass;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000302 struct sshkey *prv;
303 int r;
Ben Lindstromd0fca422001-03-26 13:44:06 +0000304
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000305 if ((r = sshkey_load_private(filename, "", &prv, NULL)) == 0)
306 return prv;
307 if (r != SSH_ERR_KEY_WRONG_PASSPHRASE)
308 fatal("Load key \"%s\": %s", filename, ssh_err(r));
309 if (identity_passphrase)
310 pass = xstrdup(identity_passphrase);
311 else
312 pass = read_passphrase("Enter passphrase: ", RP_ALLOW_STDIN);
313 r = sshkey_load_private(filename, pass, &prv, NULL);
314 explicit_bzero(pass, strlen(pass));
315 free(pass);
316 if (r != 0)
317 fatal("Load key \"%s\": %s", filename, ssh_err(r));
Ben Lindstromd0fca422001-03-26 13:44:06 +0000318 return prv;
Damien Millereba71ba2000-04-29 23:57:08 +1000319}
320
Damien Miller874d77b2000-10-14 16:23:11 +1100321#define SSH_COM_PUBLIC_BEGIN "---- BEGIN SSH2 PUBLIC KEY ----"
Ben Lindstromcb72e4f2002-06-21 00:41:51 +0000322#define SSH_COM_PUBLIC_END "---- END SSH2 PUBLIC KEY ----"
Damien Miller874d77b2000-10-14 16:23:11 +1100323#define SSH_COM_PRIVATE_BEGIN "---- BEGIN SSH2 ENCRYPTED PRIVATE KEY ----"
Kevin Stevesef4eea92001-02-05 12:42:17 +0000324#define SSH_COM_PRIVATE_KEY_MAGIC 0x3f6ff9eb
Damien Millereba71ba2000-04-29 23:57:08 +1000325
Damien Miller1f0311c2014-05-15 14:24:09 +1000326#ifdef WITH_OPENSSL
Ben Lindstrombba81212001-06-25 05:01:22 +0000327static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000328do_convert_to_ssh2(struct passwd *pw, struct sshkey *k)
Damien Millereba71ba2000-04-29 23:57:08 +1000329{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000330 size_t len;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000331 u_char *blob;
Darren Tuckerd04758d2010-01-12 19:41:57 +1100332 char comment[61];
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000333 int r;
Damien Millereba71ba2000-04-29 23:57:08 +1000334
djm@openbsd.org3038a192015-04-17 13:19:22 +0000335 if ((r = sshkey_to_blob(k, &blob, &len)) != 0)
336 fatal("key_to_blob failed: %s", ssh_err(r));
Darren Tuckerd04758d2010-01-12 19:41:57 +1100337 /* Comment + surrounds must fit into 72 chars (RFC 4716 sec 3.3) */
338 snprintf(comment, sizeof(comment),
339 "%u-bit %s, converted by %s@%s from OpenSSH",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000340 sshkey_size(k), sshkey_type(k),
Damien Millereba71ba2000-04-29 23:57:08 +1000341 pw->pw_name, hostname);
Darren Tuckerd04758d2010-01-12 19:41:57 +1100342
343 fprintf(stdout, "%s\n", SSH_COM_PUBLIC_BEGIN);
344 fprintf(stdout, "Comment: \"%s\"\n", comment);
Damien Millereba71ba2000-04-29 23:57:08 +1000345 dump_base64(stdout, blob, len);
Damien Miller874d77b2000-10-14 16:23:11 +1100346 fprintf(stdout, "%s\n", SSH_COM_PUBLIC_END);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000347 sshkey_free(k);
Darren Tuckera627d422013-06-02 07:31:17 +1000348 free(blob);
Damien Millereba71ba2000-04-29 23:57:08 +1000349 exit(0);
350}
351
Ben Lindstrombba81212001-06-25 05:01:22 +0000352static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000353do_convert_to_pkcs8(struct sshkey *k)
Damien Miller44b25042010-07-02 13:35:01 +1000354{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000355 switch (sshkey_type_plain(k->type)) {
Damien Miller44b25042010-07-02 13:35:01 +1000356 case KEY_RSA:
357 if (!PEM_write_RSA_PUBKEY(stdout, k->rsa))
358 fatal("PEM_write_RSA_PUBKEY failed");
359 break;
360 case KEY_DSA:
361 if (!PEM_write_DSA_PUBKEY(stdout, k->dsa))
362 fatal("PEM_write_DSA_PUBKEY failed");
363 break;
Damien Miller6af914a2010-09-10 11:39:26 +1000364#ifdef OPENSSL_HAS_ECC
Damien Millereb8b60e2010-08-31 22:41:14 +1000365 case KEY_ECDSA:
366 if (!PEM_write_EC_PUBKEY(stdout, k->ecdsa))
367 fatal("PEM_write_EC_PUBKEY failed");
368 break;
Damien Miller6af914a2010-09-10 11:39:26 +1000369#endif
Damien Miller44b25042010-07-02 13:35:01 +1000370 default:
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000371 fatal("%s: unsupported key type %s", __func__, sshkey_type(k));
Damien Miller44b25042010-07-02 13:35:01 +1000372 }
373 exit(0);
374}
375
376static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000377do_convert_to_pem(struct sshkey *k)
Damien Miller44b25042010-07-02 13:35:01 +1000378{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000379 switch (sshkey_type_plain(k->type)) {
Damien Miller44b25042010-07-02 13:35:01 +1000380 case KEY_RSA:
381 if (!PEM_write_RSAPublicKey(stdout, k->rsa))
382 fatal("PEM_write_RSAPublicKey failed");
383 break;
Damien Miller44b25042010-07-02 13:35:01 +1000384 default:
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000385 fatal("%s: unsupported key type %s", __func__, sshkey_type(k));
Damien Miller44b25042010-07-02 13:35:01 +1000386 }
387 exit(0);
388}
389
390static void
391do_convert_to(struct passwd *pw)
392{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000393 struct sshkey *k;
Damien Miller44b25042010-07-02 13:35:01 +1000394 struct stat st;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000395 int r;
Damien Miller44b25042010-07-02 13:35:01 +1000396
397 if (!have_identity)
398 ask_filename(pw, "Enter file in which the key is");
399 if (stat(identity_file, &st) < 0)
400 fatal("%s: %s: %s", __progname, identity_file, strerror(errno));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000401 if ((r = sshkey_load_public(identity_file, &k, NULL)) != 0)
402 k = load_identity(identity_file);
Damien Miller44b25042010-07-02 13:35:01 +1000403 switch (convert_format) {
404 case FMT_RFC4716:
405 do_convert_to_ssh2(pw, k);
406 break;
407 case FMT_PKCS8:
408 do_convert_to_pkcs8(k);
409 break;
410 case FMT_PEM:
411 do_convert_to_pem(k);
412 break;
413 default:
414 fatal("%s: unknown key format %d", __func__, convert_format);
415 }
416 exit(0);
417}
418
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000419/*
420 * This is almost exactly the bignum1 encoding, but with 32 bit for length
421 * instead of 16.
422 */
Damien Miller44b25042010-07-02 13:35:01 +1000423static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000424buffer_get_bignum_bits(struct sshbuf *b, BIGNUM *value)
Damien Miller874d77b2000-10-14 16:23:11 +1100425{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000426 u_int bytes, bignum_bits;
427 int r;
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000428
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000429 if ((r = sshbuf_get_u32(b, &bignum_bits)) != 0)
430 fatal("%s: buffer error: %s", __func__, ssh_err(r));
431 bytes = (bignum_bits + 7) / 8;
432 if (sshbuf_len(b) < bytes)
433 fatal("%s: input buffer too small: need %d have %zu",
434 __func__, bytes, sshbuf_len(b));
435 if (BN_bin2bn(sshbuf_ptr(b), bytes, value) == NULL)
436 fatal("%s: BN_bin2bn failed", __func__);
437 if ((r = sshbuf_consume(b, bytes)) != 0)
438 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Miller874d77b2000-10-14 16:23:11 +1100439}
440
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000441static struct sshkey *
Ben Lindstrom90fd8142002-02-26 18:09:42 +0000442do_convert_private_ssh2_from_blob(u_char *blob, u_int blen)
Damien Miller874d77b2000-10-14 16:23:11 +1100443{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000444 struct sshbuf *b;
445 struct sshkey *key = NULL;
Damien Miller874d77b2000-10-14 16:23:11 +1100446 char *type, *cipher;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000447 u_char e1, e2, e3, *sig = NULL, data[] = "abcde12345";
448 int r, rlen, ktype;
449 u_int magic, i1, i2, i3, i4;
450 size_t slen;
Ben Lindstrome586c4c2001-06-25 05:04:58 +0000451 u_long e;
Damien Miller874d77b2000-10-14 16:23:11 +1100452
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000453 if ((b = sshbuf_from(blob, blen)) == NULL)
454 fatal("%s: sshbuf_from failed", __func__);
455 if ((r = sshbuf_get_u32(b, &magic)) != 0)
456 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Miller874d77b2000-10-14 16:23:11 +1100457
Damien Miller874d77b2000-10-14 16:23:11 +1100458 if (magic != SSH_COM_PRIVATE_KEY_MAGIC) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000459 error("bad magic 0x%x != 0x%x", magic,
460 SSH_COM_PRIVATE_KEY_MAGIC);
461 sshbuf_free(b);
Damien Miller874d77b2000-10-14 16:23:11 +1100462 return NULL;
463 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000464 if ((r = sshbuf_get_u32(b, &i1)) != 0 ||
465 (r = sshbuf_get_cstring(b, &type, NULL)) != 0 ||
466 (r = sshbuf_get_cstring(b, &cipher, NULL)) != 0 ||
467 (r = sshbuf_get_u32(b, &i2)) != 0 ||
468 (r = sshbuf_get_u32(b, &i3)) != 0 ||
469 (r = sshbuf_get_u32(b, &i4)) != 0)
470 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Miller80163902007-01-05 16:30:16 +1100471 debug("ignore (%d %d %d %d)", i1, i2, i3, i4);
Damien Miller874d77b2000-10-14 16:23:11 +1100472 if (strcmp(cipher, "none") != 0) {
473 error("unsupported cipher %s", cipher);
Darren Tuckera627d422013-06-02 07:31:17 +1000474 free(cipher);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000475 sshbuf_free(b);
Darren Tuckera627d422013-06-02 07:31:17 +1000476 free(type);
Damien Miller874d77b2000-10-14 16:23:11 +1100477 return NULL;
478 }
Darren Tuckera627d422013-06-02 07:31:17 +1000479 free(cipher);
Damien Miller874d77b2000-10-14 16:23:11 +1100480
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000481 if (strstr(type, "dsa")) {
482 ktype = KEY_DSA;
483 } else if (strstr(type, "rsa")) {
484 ktype = KEY_RSA;
485 } else {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000486 sshbuf_free(b);
Darren Tuckera627d422013-06-02 07:31:17 +1000487 free(type);
Damien Miller874d77b2000-10-14 16:23:11 +1100488 return NULL;
489 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000490 if ((key = sshkey_new_private(ktype)) == NULL)
markus@openbsd.org7da5df12017-05-30 14:16:41 +0000491 fatal("sshkey_new_private failed");
Darren Tuckera627d422013-06-02 07:31:17 +1000492 free(type);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000493
494 switch (key->type) {
495 case KEY_DSA:
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000496 buffer_get_bignum_bits(b, key->dsa->p);
497 buffer_get_bignum_bits(b, key->dsa->g);
498 buffer_get_bignum_bits(b, key->dsa->q);
499 buffer_get_bignum_bits(b, key->dsa->pub_key);
500 buffer_get_bignum_bits(b, key->dsa->priv_key);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000501 break;
502 case KEY_RSA:
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000503 if ((r = sshbuf_get_u8(b, &e1)) != 0 ||
504 (e1 < 30 && (r = sshbuf_get_u8(b, &e2)) != 0) ||
505 (e1 < 30 && (r = sshbuf_get_u8(b, &e3)) != 0))
506 fatal("%s: buffer error: %s", __func__, ssh_err(r));
507 e = e1;
Ben Lindstrom34f91882001-06-25 04:47:54 +0000508 debug("e %lx", e);
509 if (e < 30) {
510 e <<= 8;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000511 e += e2;
Ben Lindstrom34f91882001-06-25 04:47:54 +0000512 debug("e %lx", e);
513 e <<= 8;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000514 e += e3;
Ben Lindstrom34f91882001-06-25 04:47:54 +0000515 debug("e %lx", e);
516 }
517 if (!BN_set_word(key->rsa->e, e)) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000518 sshbuf_free(b);
519 sshkey_free(key);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000520 return NULL;
521 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000522 buffer_get_bignum_bits(b, key->rsa->d);
523 buffer_get_bignum_bits(b, key->rsa->n);
524 buffer_get_bignum_bits(b, key->rsa->iqmp);
525 buffer_get_bignum_bits(b, key->rsa->q);
526 buffer_get_bignum_bits(b, key->rsa->p);
djm@openbsd.org83fa3a02017-07-01 13:50:45 +0000527 if ((r = ssh_rsa_generate_additional_parameters(key)) != 0)
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000528 fatal("generate RSA parameters failed: %s", ssh_err(r));
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000529 break;
530 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000531 rlen = sshbuf_len(b);
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +0000532 if (rlen != 0)
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000533 error("do_convert_private_ssh2_from_blob: "
534 "remaining bytes in key blob %d", rlen);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000535 sshbuf_free(b);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000536
Ben Lindstrome586c4c2001-06-25 05:04:58 +0000537 /* try the key */
markus@openbsd.org76c9fbb2015-12-04 16:41:28 +0000538 if (sshkey_sign(key, &sig, &slen, data, sizeof(data), NULL, 0) != 0 ||
djm@openbsd.org04c7e282017-12-18 02:25:15 +0000539 sshkey_verify(key, sig, slen, data, sizeof(data), NULL, 0) != 0) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000540 sshkey_free(key);
541 free(sig);
542 return NULL;
543 }
Darren Tuckera627d422013-06-02 07:31:17 +1000544 free(sig);
Damien Miller874d77b2000-10-14 16:23:11 +1100545 return key;
546}
547
Damien Miller8056a9d2006-03-15 12:05:40 +1100548static int
549get_line(FILE *fp, char *line, size_t len)
550{
551 int c;
552 size_t pos = 0;
553
554 line[0] = '\0';
555 while ((c = fgetc(fp)) != EOF) {
djm@openbsd.org3038a192015-04-17 13:19:22 +0000556 if (pos >= len - 1)
557 fatal("input line too long.");
Damien Miller90967402006-03-26 14:07:26 +1100558 switch (c) {
Damien Miller8056a9d2006-03-15 12:05:40 +1100559 case '\r':
560 c = fgetc(fp);
djm@openbsd.org3038a192015-04-17 13:19:22 +0000561 if (c != EOF && c != '\n' && ungetc(c, fp) == EOF)
562 fatal("unget: %s", strerror(errno));
Damien Miller8056a9d2006-03-15 12:05:40 +1100563 return pos;
564 case '\n':
565 return pos;
566 }
567 line[pos++] = c;
568 line[pos] = '\0';
569 }
Damien Miller6c7439f2007-01-05 16:29:55 +1100570 /* We reached EOF */
571 return -1;
Damien Miller8056a9d2006-03-15 12:05:40 +1100572}
573
Ben Lindstrombba81212001-06-25 05:01:22 +0000574static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000575do_convert_from_ssh2(struct passwd *pw, struct sshkey **k, int *private)
Damien Millereba71ba2000-04-29 23:57:08 +1000576{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000577 int r, blen, escaped = 0;
Ben Lindstrom155b9812002-04-02 20:26:26 +0000578 u_int len;
Damien Miller8056a9d2006-03-15 12:05:40 +1100579 char line[1024];
Ben Lindstrom9e0ddd42001-09-18 05:41:19 +0000580 u_char blob[8096];
Damien Millereba71ba2000-04-29 23:57:08 +1000581 char encoded[8096];
Damien Millereba71ba2000-04-29 23:57:08 +1000582 FILE *fp;
583
Damien Millerba3420a2010-06-26 09:39:07 +1000584 if ((fp = fopen(identity_file, "r")) == NULL)
585 fatal("%s: %s: %s", __progname, identity_file, strerror(errno));
Damien Millereba71ba2000-04-29 23:57:08 +1000586 encoded[0] = '\0';
Damien Miller8056a9d2006-03-15 12:05:40 +1100587 while ((blen = get_line(fp, line, sizeof(line))) != -1) {
Damien Miller746d1a62013-07-18 16:13:02 +1000588 if (blen > 0 && line[blen - 1] == '\\')
Damien Miller30c3d422000-05-09 11:02:59 +1000589 escaped++;
Damien Millereba71ba2000-04-29 23:57:08 +1000590 if (strncmp(line, "----", 4) == 0 ||
591 strstr(line, ": ") != NULL) {
Damien Miller874d77b2000-10-14 16:23:11 +1100592 if (strstr(line, SSH_COM_PRIVATE_BEGIN) != NULL)
Damien Miller44b25042010-07-02 13:35:01 +1000593 *private = 1;
Ben Lindstrome586c4c2001-06-25 05:04:58 +0000594 if (strstr(line, " END ") != NULL) {
595 break;
596 }
Ben Lindstrom30358602001-04-24 16:59:28 +0000597 /* fprintf(stderr, "ignore: %s", line); */
Damien Millereba71ba2000-04-29 23:57:08 +1000598 continue;
599 }
Damien Miller30c3d422000-05-09 11:02:59 +1000600 if (escaped) {
601 escaped--;
Ben Lindstrom30358602001-04-24 16:59:28 +0000602 /* fprintf(stderr, "escaped: %s", line); */
Damien Miller30c3d422000-05-09 11:02:59 +1000603 continue;
Damien Millereba71ba2000-04-29 23:57:08 +1000604 }
Damien Millereba71ba2000-04-29 23:57:08 +1000605 strlcat(encoded, line, sizeof(encoded));
606 }
Ben Lindstrom155b9812002-04-02 20:26:26 +0000607 len = strlen(encoded);
608 if (((len % 4) == 3) &&
609 (encoded[len-1] == '=') &&
610 (encoded[len-2] == '=') &&
611 (encoded[len-3] == '='))
612 encoded[len-3] = '\0';
Damien Miller4a8ed542002-01-22 23:33:31 +1100613 blen = uudecode(encoded, blob, sizeof(blob));
djm@openbsd.org3038a192015-04-17 13:19:22 +0000614 if (blen < 0)
615 fatal("uudecode failed.");
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000616 if (*private)
617 *k = do_convert_private_ssh2_from_blob(blob, blen);
djm@openbsd.org3038a192015-04-17 13:19:22 +0000618 else if ((r = sshkey_from_blob(blob, blen, k)) != 0)
619 fatal("decode blob failed: %s", ssh_err(r));
Damien Miller44b25042010-07-02 13:35:01 +1000620 fclose(fp);
621}
622
623static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000624do_convert_from_pkcs8(struct sshkey **k, int *private)
Damien Miller44b25042010-07-02 13:35:01 +1000625{
626 EVP_PKEY *pubkey;
627 FILE *fp;
628
629 if ((fp = fopen(identity_file, "r")) == NULL)
630 fatal("%s: %s: %s", __progname, identity_file, strerror(errno));
631 if ((pubkey = PEM_read_PUBKEY(fp, NULL, NULL, NULL)) == NULL) {
632 fatal("%s: %s is not a recognised public key format", __func__,
633 identity_file);
634 }
635 fclose(fp);
636 switch (EVP_PKEY_type(pubkey->type)) {
637 case EVP_PKEY_RSA:
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000638 if ((*k = sshkey_new(KEY_UNSPEC)) == NULL)
639 fatal("sshkey_new failed");
Damien Miller44b25042010-07-02 13:35:01 +1000640 (*k)->type = KEY_RSA;
641 (*k)->rsa = EVP_PKEY_get1_RSA(pubkey);
642 break;
643 case EVP_PKEY_DSA:
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000644 if ((*k = sshkey_new(KEY_UNSPEC)) == NULL)
645 fatal("sshkey_new failed");
Damien Miller44b25042010-07-02 13:35:01 +1000646 (*k)->type = KEY_DSA;
647 (*k)->dsa = EVP_PKEY_get1_DSA(pubkey);
648 break;
Damien Miller6af914a2010-09-10 11:39:26 +1000649#ifdef OPENSSL_HAS_ECC
Damien Millereb8b60e2010-08-31 22:41:14 +1000650 case EVP_PKEY_EC:
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000651 if ((*k = sshkey_new(KEY_UNSPEC)) == NULL)
652 fatal("sshkey_new failed");
Damien Millereb8b60e2010-08-31 22:41:14 +1000653 (*k)->type = KEY_ECDSA;
654 (*k)->ecdsa = EVP_PKEY_get1_EC_KEY(pubkey);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000655 (*k)->ecdsa_nid = sshkey_ecdsa_key_to_nid((*k)->ecdsa);
Damien Millereb8b60e2010-08-31 22:41:14 +1000656 break;
Damien Miller6af914a2010-09-10 11:39:26 +1000657#endif
Damien Miller44b25042010-07-02 13:35:01 +1000658 default:
659 fatal("%s: unsupported pubkey type %d", __func__,
660 EVP_PKEY_type(pubkey->type));
661 }
662 EVP_PKEY_free(pubkey);
663 return;
664}
665
666static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000667do_convert_from_pem(struct sshkey **k, int *private)
Damien Miller44b25042010-07-02 13:35:01 +1000668{
669 FILE *fp;
670 RSA *rsa;
Damien Miller44b25042010-07-02 13:35:01 +1000671
672 if ((fp = fopen(identity_file, "r")) == NULL)
673 fatal("%s: %s: %s", __progname, identity_file, strerror(errno));
674 if ((rsa = PEM_read_RSAPublicKey(fp, NULL, NULL, NULL)) != NULL) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000675 if ((*k = sshkey_new(KEY_UNSPEC)) == NULL)
676 fatal("sshkey_new failed");
Damien Miller44b25042010-07-02 13:35:01 +1000677 (*k)->type = KEY_RSA;
678 (*k)->rsa = rsa;
679 fclose(fp);
680 return;
681 }
Damien Miller44b25042010-07-02 13:35:01 +1000682 fatal("%s: unrecognised raw private key format", __func__);
683}
684
685static void
686do_convert_from(struct passwd *pw)
687{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000688 struct sshkey *k = NULL;
689 int r, private = 0, ok = 0;
Damien Miller44b25042010-07-02 13:35:01 +1000690 struct stat st;
691
692 if (!have_identity)
693 ask_filename(pw, "Enter file in which the key is");
694 if (stat(identity_file, &st) < 0)
695 fatal("%s: %s: %s", __progname, identity_file, strerror(errno));
696
697 switch (convert_format) {
698 case FMT_RFC4716:
699 do_convert_from_ssh2(pw, &k, &private);
700 break;
701 case FMT_PKCS8:
702 do_convert_from_pkcs8(&k, &private);
703 break;
704 case FMT_PEM:
705 do_convert_from_pem(&k, &private);
706 break;
707 default:
708 fatal("%s: unknown key format %d", __func__, convert_format);
709 }
710
djm@openbsd.org7a2c3682015-01-30 00:59:19 +0000711 if (!private) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000712 if ((r = sshkey_write(k, stdout)) == 0)
713 ok = 1;
Damien Miller44b25042010-07-02 13:35:01 +1000714 if (ok)
715 fprintf(stdout, "\n");
djm@openbsd.org7a2c3682015-01-30 00:59:19 +0000716 } else {
Damien Miller44b25042010-07-02 13:35:01 +1000717 switch (k->type) {
718 case KEY_DSA:
719 ok = PEM_write_DSAPrivateKey(stdout, k->dsa, NULL,
720 NULL, 0, NULL, NULL);
721 break;
Damien Miller6af914a2010-09-10 11:39:26 +1000722#ifdef OPENSSL_HAS_ECC
Damien Millereb8b60e2010-08-31 22:41:14 +1000723 case KEY_ECDSA:
724 ok = PEM_write_ECPrivateKey(stdout, k->ecdsa, NULL,
725 NULL, 0, NULL, NULL);
726 break;
Damien Miller6af914a2010-09-10 11:39:26 +1000727#endif
Damien Miller44b25042010-07-02 13:35:01 +1000728 case KEY_RSA:
729 ok = PEM_write_RSAPrivateKey(stdout, k->rsa, NULL,
730 NULL, 0, NULL, NULL);
731 break;
732 default:
733 fatal("%s: unsupported key type %s", __func__,
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000734 sshkey_type(k));
Damien Miller44b25042010-07-02 13:35:01 +1000735 }
736 }
737
djm@openbsd.org3038a192015-04-17 13:19:22 +0000738 if (!ok)
739 fatal("key write failed");
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000740 sshkey_free(k);
Damien Millereba71ba2000-04-29 23:57:08 +1000741 exit(0);
742}
Damien Miller1f0311c2014-05-15 14:24:09 +1000743#endif
Damien Millereba71ba2000-04-29 23:57:08 +1000744
Ben Lindstrombba81212001-06-25 05:01:22 +0000745static void
Damien Millereba71ba2000-04-29 23:57:08 +1000746do_print_public(struct passwd *pw)
747{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000748 struct sshkey *prv;
Damien Millereba71ba2000-04-29 23:57:08 +1000749 struct stat st;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000750 int r;
Damien Millereba71ba2000-04-29 23:57:08 +1000751
752 if (!have_identity)
753 ask_filename(pw, "Enter file in which the key is");
djm@openbsd.org3038a192015-04-17 13:19:22 +0000754 if (stat(identity_file, &st) < 0)
755 fatal("%s: %s", identity_file, strerror(errno));
Ben Lindstromd78ae762001-06-05 20:35:09 +0000756 prv = load_identity(identity_file);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000757 if ((r = sshkey_write(prv, stdout)) != 0)
markus@openbsd.org7da5df12017-05-30 14:16:41 +0000758 error("sshkey_write failed: %s", ssh_err(r));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000759 sshkey_free(prv);
Damien Millereba71ba2000-04-29 23:57:08 +1000760 fprintf(stdout, "\n");
761 exit(0);
762}
763
Ben Lindstromcd392282001-07-04 03:44:03 +0000764static void
Damien Miller757f34e2010-08-05 13:05:31 +1000765do_download(struct passwd *pw)
Ben Lindstromcd392282001-07-04 03:44:03 +0000766{
Damien Miller7ea845e2010-02-12 09:21:02 +1100767#ifdef ENABLE_PKCS11
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000768 struct sshkey **keys = NULL;
Damien Miller7ea845e2010-02-12 09:21:02 +1100769 int i, nkeys;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000770 enum sshkey_fp_rep rep;
djm@openbsd.org56d1c832014-12-21 22:27:55 +0000771 int fptype;
Damien Millerec77c952013-01-09 15:58:00 +1100772 char *fp, *ra;
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000773
djm@openbsd.org56d1c832014-12-21 22:27:55 +0000774 fptype = print_bubblebabble ? SSH_DIGEST_SHA1 : fingerprint_hash;
775 rep = print_bubblebabble ? SSH_FP_BUBBLEBABBLE : SSH_FP_DEFAULT;
Damien Miller1422c082013-01-09 16:44:54 +1100776
Damien Miller7ea845e2010-02-12 09:21:02 +1100777 pkcs11_init(0);
778 nkeys = pkcs11_add_provider(pkcs11provider, NULL, &keys);
779 if (nkeys <= 0)
780 fatal("cannot read public key from pkcs11");
781 for (i = 0; i < nkeys; i++) {
Damien Millerec77c952013-01-09 15:58:00 +1100782 if (print_fingerprint) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000783 fp = sshkey_fingerprint(keys[i], fptype, rep);
784 ra = sshkey_fingerprint(keys[i], fingerprint_hash,
Damien Millerec77c952013-01-09 15:58:00 +1100785 SSH_FP_RANDOMART);
djm@openbsd.org9ce86c92015-01-28 22:36:00 +0000786 if (fp == NULL || ra == NULL)
787 fatal("%s: sshkey_fingerprint fail", __func__);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000788 printf("%u %s %s (PKCS11 key)\n", sshkey_size(keys[i]),
789 fp, sshkey_type(keys[i]));
Damien Millerec77c952013-01-09 15:58:00 +1100790 if (log_level >= SYSLOG_LEVEL_VERBOSE)
791 printf("%s\n", ra);
Darren Tuckera627d422013-06-02 07:31:17 +1000792 free(ra);
793 free(fp);
Damien Millerec77c952013-01-09 15:58:00 +1100794 } else {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000795 (void) sshkey_write(keys[i], stdout); /* XXX check */
Damien Millerec77c952013-01-09 15:58:00 +1100796 fprintf(stdout, "\n");
797 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000798 sshkey_free(keys[i]);
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000799 }
Darren Tuckera627d422013-06-02 07:31:17 +1000800 free(keys);
Damien Miller7ea845e2010-02-12 09:21:02 +1100801 pkcs11_terminate();
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000802 exit(0);
Damien Miller7ea845e2010-02-12 09:21:02 +1100803#else
804 fatal("no pkcs11 support");
805#endif /* ENABLE_PKCS11 */
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000806}
Ben Lindstromcd392282001-07-04 03:44:03 +0000807
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000808static struct sshkey *
809try_read_key(char **cpp)
810{
811 struct sshkey *ret;
812 int r;
813
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000814 if ((ret = sshkey_new(KEY_UNSPEC)) == NULL)
815 fatal("sshkey_new failed");
816 if ((r = sshkey_read(ret, cpp)) == 0)
817 return ret;
818 /* Not a key */
819 sshkey_free(ret);
820 return NULL;
821}
822
823static void
824fingerprint_one_key(const struct sshkey *public, const char *comment)
825{
826 char *fp = NULL, *ra = NULL;
827 enum sshkey_fp_rep rep;
828 int fptype;
829
830 fptype = print_bubblebabble ? SSH_DIGEST_SHA1 : fingerprint_hash;
831 rep = print_bubblebabble ? SSH_FP_BUBBLEBABBLE : SSH_FP_DEFAULT;
832 fp = sshkey_fingerprint(public, fptype, rep);
833 ra = sshkey_fingerprint(public, fingerprint_hash, SSH_FP_RANDOMART);
834 if (fp == NULL || ra == NULL)
835 fatal("%s: sshkey_fingerprint failed", __func__);
djm@openbsd.orga287c5a2017-02-10 03:36:40 +0000836 mprintf("%u %s %s (%s)\n", sshkey_size(public), fp,
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000837 comment ? comment : "no comment", sshkey_type(public));
838 if (log_level >= SYSLOG_LEVEL_VERBOSE)
839 printf("%s\n", ra);
840 free(ra);
841 free(fp);
842}
843
844static void
845fingerprint_private(const char *path)
846{
847 struct stat st;
848 char *comment = NULL;
849 struct sshkey *public = NULL;
850 int r;
851
852 if (stat(identity_file, &st) < 0)
853 fatal("%s: %s", path, strerror(errno));
djm@openbsd.orgbcb7bc72015-11-18 08:37:28 +0000854 if ((r = sshkey_load_public(path, &public, &comment)) != 0) {
855 debug("load public \"%s\": %s", path, ssh_err(r));
856 if ((r = sshkey_load_private(path, NULL,
857 &public, &comment)) != 0) {
858 debug("load private \"%s\": %s", path, ssh_err(r));
859 fatal("%s is not a key file.", path);
860 }
861 }
862
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000863 fingerprint_one_key(public, comment);
864 sshkey_free(public);
865 free(comment);
866}
867
Ben Lindstrombba81212001-06-25 05:01:22 +0000868static void
Damien Miller10f6f6b1999-11-17 17:29:08 +1100869do_fingerprint(struct passwd *pw)
870{
Damien Miller98c7ad62000-03-09 21:27:49 +1100871 FILE *f;
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000872 struct sshkey *public = NULL;
markus@openbsd.org7f906352018-06-06 18:29:18 +0000873 char *comment = NULL, *cp, *ep, *line = NULL;
874 size_t linesize = 0;
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000875 int i, invalid = 1;
876 const char *path;
djm@openbsd.org1a31d022016-05-02 08:49:03 +0000877 u_long lnum = 0;
Damien Miller10f6f6b1999-11-17 17:29:08 +1100878
Damien Miller95def091999-11-25 00:26:21 +1100879 if (!have_identity)
880 ask_filename(pw, "Enter file in which the key is");
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000881 path = identity_file;
Damien Miller98c7ad62000-03-09 21:27:49 +1100882
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000883 if (strcmp(identity_file, "-") == 0) {
884 f = stdin;
885 path = "(stdin)";
886 } else if ((f = fopen(path, "r")) == NULL)
887 fatal("%s: %s: %s", __progname, path, strerror(errno));
Damien Miller98c7ad62000-03-09 21:27:49 +1100888
markus@openbsd.org7f906352018-06-06 18:29:18 +0000889 while (getline(&line, &linesize, f) != -1) {
890 lnum++;
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000891 cp = line;
892 cp[strcspn(cp, "\n")] = '\0';
893 /* Trim leading space and comments */
894 cp = line + strspn(line, " \t");
895 if (*cp == '#' || *cp == '\0')
896 continue;
897
898 /*
899 * Input may be plain keys, private keys, authorized_keys
900 * or known_hosts.
901 */
902
903 /*
904 * Try private keys first. Assume a key is private if
905 * "SSH PRIVATE KEY" appears on the first line and we're
906 * not reading from stdin (XXX support private keys on stdin).
907 */
908 if (lnum == 1 && strcmp(identity_file, "-") != 0 &&
djm@openbsd.orgbcb7bc72015-11-18 08:37:28 +0000909 strstr(cp, "PRIVATE KEY") != NULL) {
markus@openbsd.org7f906352018-06-06 18:29:18 +0000910 free(line);
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000911 fclose(f);
912 fingerprint_private(path);
913 exit(0);
914 }
915
916 /*
917 * If it's not a private key, then this must be prepared to
918 * accept a public key prefixed with a hostname or options.
919 * Try a bare key first, otherwise skip the leading stuff.
920 */
921 if ((public = try_read_key(&cp)) == NULL) {
922 i = strtol(cp, &ep, 10);
923 if (i == 0 || ep == NULL ||
924 (*ep != ' ' && *ep != '\t')) {
925 int quoted = 0;
926
927 comment = cp;
928 for (; *cp && (quoted || (*cp != ' ' &&
929 *cp != '\t')); cp++) {
930 if (*cp == '\\' && cp[1] == '"')
931 cp++; /* Skip both */
932 else if (*cp == '"')
933 quoted = !quoted;
934 }
935 if (!*cp)
936 continue;
937 *cp++ = '\0';
938 }
939 }
940 /* Retry after parsing leading hostname/key options */
941 if (public == NULL && (public = try_read_key(&cp)) == NULL) {
djm@openbsd.org1a31d022016-05-02 08:49:03 +0000942 debug("%s:%lu: not a public key", path, lnum);
Damien Millerba3420a2010-06-26 09:39:07 +1000943 continue;
Damien Miller95def091999-11-25 00:26:21 +1100944 }
Damien Millerba3420a2010-06-26 09:39:07 +1000945
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000946 /* Find trailing comment, if any */
947 for (; *cp == ' ' || *cp == '\t'; cp++)
Damien Millerba3420a2010-06-26 09:39:07 +1000948 ;
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000949 if (*cp != '\0' && *cp != '#')
Damien Millerba3420a2010-06-26 09:39:07 +1000950 comment = cp;
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000951
952 fingerprint_one_key(public, comment);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000953 sshkey_free(public);
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000954 invalid = 0; /* One good key in the file is sufficient */
Damien Miller95def091999-11-25 00:26:21 +1100955 }
Damien Millerba3420a2010-06-26 09:39:07 +1000956 fclose(f);
markus@openbsd.org7f906352018-06-06 18:29:18 +0000957 free(line);
Damien Millerba3420a2010-06-26 09:39:07 +1000958
djm@openbsd.org3038a192015-04-17 13:19:22 +0000959 if (invalid)
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000960 fatal("%s is not a public key file.", path);
Damien Miller95def091999-11-25 00:26:21 +1100961 exit(0);
Damien Miller10f6f6b1999-11-17 17:29:08 +1100962}
963
Damien Miller4b42d7f2005-03-01 21:48:35 +1100964static void
Damien Miller58f1baf2011-05-05 14:06:15 +1000965do_gen_all_hostkeys(struct passwd *pw)
966{
967 struct {
968 char *key_type;
969 char *key_type_display;
970 char *path;
971 } key_types[] = {
djm@openbsd.org5c27e3b2015-03-23 06:06:38 +0000972#ifdef WITH_OPENSSL
Damien Miller58f1baf2011-05-05 14:06:15 +1000973 { "rsa", "RSA" ,_PATH_HOST_RSA_KEY_FILE },
974 { "dsa", "DSA", _PATH_HOST_DSA_KEY_FILE },
Damien Millerb56e4932012-02-06 07:41:27 +1100975#ifdef OPENSSL_HAS_ECC
Damien Miller58f1baf2011-05-05 14:06:15 +1000976 { "ecdsa", "ECDSA",_PATH_HOST_ECDSA_KEY_FILE },
djm@openbsd.org5c27e3b2015-03-23 06:06:38 +0000977#endif /* OPENSSL_HAS_ECC */
978#endif /* WITH_OPENSSL */
Damien Miller5be9d9e2013-12-07 11:24:01 +1100979 { "ed25519", "ED25519",_PATH_HOST_ED25519_KEY_FILE },
markus@openbsd.org1b11ea72018-02-23 15:58:37 +0000980#ifdef WITH_XMSS
981 { "xmss", "XMSS",_PATH_HOST_XMSS_KEY_FILE },
982#endif /* WITH_XMSS */
Damien Miller58f1baf2011-05-05 14:06:15 +1000983 { NULL, NULL, NULL }
984 };
985
986 int first = 0;
987 struct stat st;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000988 struct sshkey *private, *public;
djm@openbsd.org853edbe2017-07-07 03:53:12 +0000989 char comment[1024], *prv_tmp, *pub_tmp, *prv_file, *pub_file;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000990 int i, type, fd, r;
Damien Miller58f1baf2011-05-05 14:06:15 +1000991 FILE *f;
992
993 for (i = 0; key_types[i].key_type; i++) {
djm@openbsd.org853edbe2017-07-07 03:53:12 +0000994 public = private = NULL;
995 prv_tmp = pub_tmp = prv_file = pub_file = NULL;
996
997 xasprintf(&prv_file, "%s%s",
998 identity_file, key_types[i].path);
999
1000 /* Check whether private key exists and is not zero-length */
1001 if (stat(prv_file, &st) == 0) {
1002 if (st.st_size != 0)
1003 goto next;
1004 } else if (errno != ENOENT) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00001005 error("Could not stat %s: %s", key_types[i].path,
Damien Miller58f1baf2011-05-05 14:06:15 +10001006 strerror(errno));
djm@openbsd.org853edbe2017-07-07 03:53:12 +00001007 goto failnext;
Damien Miller58f1baf2011-05-05 14:06:15 +10001008 }
1009
djm@openbsd.org853edbe2017-07-07 03:53:12 +00001010 /*
1011 * Private key doesn't exist or is invalid; proceed with
1012 * key generation.
1013 */
1014 xasprintf(&prv_tmp, "%s%s.XXXXXXXXXX",
1015 identity_file, key_types[i].path);
1016 xasprintf(&pub_tmp, "%s%s.pub.XXXXXXXXXX",
1017 identity_file, key_types[i].path);
1018 xasprintf(&pub_file, "%s%s.pub",
1019 identity_file, key_types[i].path);
1020
Damien Miller58f1baf2011-05-05 14:06:15 +10001021 if (first == 0) {
1022 first = 1;
1023 printf("%s: generating new host keys: ", __progname);
1024 }
1025 printf("%s ", key_types[i].key_type_display);
1026 fflush(stdout);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001027 type = sshkey_type_from_name(key_types[i].key_type);
djm@openbsd.org853edbe2017-07-07 03:53:12 +00001028 if ((fd = mkstemp(prv_tmp)) == -1) {
1029 error("Could not save your public key in %s: %s",
1030 prv_tmp, strerror(errno));
1031 goto failnext;
1032 }
1033 close(fd); /* just using mkstemp() to generate/reserve a name */
Damien Miller58f1baf2011-05-05 14:06:15 +10001034 bits = 0;
djm@openbsd.org7efb4552015-01-18 13:22:28 +00001035 type_bits_valid(type, NULL, &bits);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001036 if ((r = sshkey_generate(type, bits, &private)) != 0) {
markus@openbsd.org7da5df12017-05-30 14:16:41 +00001037 error("sshkey_generate failed: %s", ssh_err(r));
djm@openbsd.org853edbe2017-07-07 03:53:12 +00001038 goto failnext;
Damien Miller58f1baf2011-05-05 14:06:15 +10001039 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001040 if ((r = sshkey_from_private(private, &public)) != 0)
1041 fatal("sshkey_from_private failed: %s", ssh_err(r));
Damien Miller58f1baf2011-05-05 14:06:15 +10001042 snprintf(comment, sizeof comment, "%s@%s", pw->pw_name,
1043 hostname);
djm@openbsd.org853edbe2017-07-07 03:53:12 +00001044 if ((r = sshkey_save_private(private, prv_tmp, "",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001045 comment, use_new_format, new_format_cipher, rounds)) != 0) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00001046 error("Saving key \"%s\" failed: %s",
djm@openbsd.org853edbe2017-07-07 03:53:12 +00001047 prv_tmp, ssh_err(r));
1048 goto failnext;
Damien Miller58f1baf2011-05-05 14:06:15 +10001049 }
djm@openbsd.org853edbe2017-07-07 03:53:12 +00001050 if ((fd = mkstemp(pub_tmp)) == -1) {
1051 error("Could not save your public key in %s: %s",
1052 pub_tmp, strerror(errno));
1053 goto failnext;
Damien Miller58f1baf2011-05-05 14:06:15 +10001054 }
djm@openbsd.org853edbe2017-07-07 03:53:12 +00001055 (void)fchmod(fd, 0644);
Damien Miller58f1baf2011-05-05 14:06:15 +10001056 f = fdopen(fd, "w");
1057 if (f == NULL) {
djm@openbsd.org853edbe2017-07-07 03:53:12 +00001058 error("fdopen %s failed: %s", pub_tmp, strerror(errno));
doug@openbsd.org7df88182014-08-21 01:08:52 +00001059 close(fd);
djm@openbsd.org853edbe2017-07-07 03:53:12 +00001060 goto failnext;
Damien Miller58f1baf2011-05-05 14:06:15 +10001061 }
djm@openbsd.orgbb8b4422015-01-16 15:55:07 +00001062 if ((r = sshkey_write(public, f)) != 0) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00001063 error("write key failed: %s", ssh_err(r));
doug@openbsd.org7df88182014-08-21 01:08:52 +00001064 fclose(f);
djm@openbsd.org853edbe2017-07-07 03:53:12 +00001065 goto failnext;
Damien Miller58f1baf2011-05-05 14:06:15 +10001066 }
1067 fprintf(f, " %s\n", comment);
djm@openbsd.org853edbe2017-07-07 03:53:12 +00001068 if (ferror(f) != 0) {
1069 error("write key failed: %s", strerror(errno));
1070 fclose(f);
1071 goto failnext;
1072 }
1073 if (fclose(f) != 0) {
1074 error("key close failed: %s", strerror(errno));
1075 goto failnext;
1076 }
Damien Miller58f1baf2011-05-05 14:06:15 +10001077
djm@openbsd.org853edbe2017-07-07 03:53:12 +00001078 /* Rename temporary files to their permanent locations. */
1079 if (rename(pub_tmp, pub_file) != 0) {
1080 error("Unable to move %s into position: %s",
1081 pub_file, strerror(errno));
1082 goto failnext;
1083 }
1084 if (rename(prv_tmp, prv_file) != 0) {
1085 error("Unable to move %s into position: %s",
1086 key_types[i].path, strerror(errno));
1087 failnext:
1088 first = 0;
1089 goto next;
1090 }
1091 next:
1092 sshkey_free(private);
1093 sshkey_free(public);
1094 free(prv_tmp);
1095 free(pub_tmp);
1096 free(prv_file);
1097 free(pub_file);
Damien Miller58f1baf2011-05-05 14:06:15 +10001098 }
1099 if (first != 0)
1100 printf("\n");
1101}
1102
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001103struct known_hosts_ctx {
djm@openbsd.org2b3c3c72015-01-18 21:51:19 +00001104 const char *host; /* Hostname searched for in find/delete case */
1105 FILE *out; /* Output file, stdout for find_hosts case */
1106 int has_unhashed; /* When hashing, original had unhashed hosts */
1107 int found_key; /* For find/delete, host was found */
1108 int invalid; /* File contained invalid items; don't delete */
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001109};
1110
1111static int
1112known_hosts_hash(struct hostkey_foreach_line *l, void *_ctx)
Damien Miller4b42d7f2005-03-01 21:48:35 +11001113{
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001114 struct known_hosts_ctx *ctx = (struct known_hosts_ctx *)_ctx;
1115 char *hashed, *cp, *hosts, *ohosts;
1116 int has_wild = l->hosts && strcspn(l->hosts, "*?!") != strlen(l->hosts);
dtucker@openbsd.org18501152017-03-06 02:03:20 +00001117 int was_hashed = l->hosts && l->hosts[0] == HASH_DELIM;
Darren Tucker0f7e9102008-06-08 12:54:29 +10001118
djm@openbsd.org6c5c9492015-02-16 22:08:57 +00001119 switch (l->status) {
1120 case HKF_STATUS_OK:
1121 case HKF_STATUS_MATCHED:
1122 /*
1123 * Don't hash hosts already already hashed, with wildcard
1124 * characters or a CA/revocation marker.
1125 */
djm@openbsd.org12d37672017-03-03 06:13:11 +00001126 if (was_hashed || has_wild || l->marker != MRK_NONE) {
djm@openbsd.org6c5c9492015-02-16 22:08:57 +00001127 fprintf(ctx->out, "%s\n", l->line);
1128 if (has_wild && !find_host) {
dtucker@openbsd.orgd0723702017-03-06 00:44:51 +00001129 logit("%s:%lu: ignoring host name "
djm@openbsd.org3038a192015-04-17 13:19:22 +00001130 "with wildcard: %.64s", l->path,
djm@openbsd.org6c5c9492015-02-16 22:08:57 +00001131 l->linenum, l->hosts);
1132 }
1133 return 0;
1134 }
1135 /*
1136 * Split any comma-separated hostnames from the host list,
1137 * hash and store separately.
1138 */
1139 ohosts = hosts = xstrdup(l->hosts);
1140 while ((cp = strsep(&hosts, ",")) != NULL && *cp != '\0') {
djm@openbsd.orgdb259722017-03-10 04:26:06 +00001141 lowercase(cp);
djm@openbsd.org6c5c9492015-02-16 22:08:57 +00001142 if ((hashed = host_hash(cp, NULL, 0)) == NULL)
1143 fatal("hash_host failed");
1144 fprintf(ctx->out, "%s %s\n", hashed, l->rawkey);
1145 ctx->has_unhashed = 1;
1146 }
1147 free(ohosts);
1148 return 0;
1149 case HKF_STATUS_INVALID:
1150 /* Retain invalid lines, but mark file as invalid. */
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001151 ctx->invalid = 1;
dtucker@openbsd.orgd0723702017-03-06 00:44:51 +00001152 logit("%s:%lu: invalid line", l->path, l->linenum);
djm@openbsd.org6c5c9492015-02-16 22:08:57 +00001153 /* FALLTHROUGH */
1154 default:
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001155 fprintf(ctx->out, "%s\n", l->line);
1156 return 0;
Darren Tucker0f7e9102008-06-08 12:54:29 +10001157 }
djm@openbsd.org6c5c9492015-02-16 22:08:57 +00001158 /* NOTREACHED */
1159 return -1;
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001160}
1161
1162static int
1163known_hosts_find_delete(struct hostkey_foreach_line *l, void *_ctx)
1164{
1165 struct known_hosts_ctx *ctx = (struct known_hosts_ctx *)_ctx;
djm@openbsd.org4739e8d2015-05-21 12:01:19 +00001166 enum sshkey_fp_rep rep;
1167 int fptype;
1168 char *fp;
1169
1170 fptype = print_bubblebabble ? SSH_DIGEST_SHA1 : fingerprint_hash;
1171 rep = print_bubblebabble ? SSH_FP_BUBBLEBABBLE : SSH_FP_DEFAULT;
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001172
djm@openbsd.org6c5c9492015-02-16 22:08:57 +00001173 if (l->status == HKF_STATUS_MATCHED) {
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001174 if (delete_host) {
1175 if (l->marker != MRK_NONE) {
1176 /* Don't remove CA and revocation lines */
1177 fprintf(ctx->out, "%s\n", l->line);
1178 } else {
1179 /*
1180 * Hostname matches and has no CA/revoke
1181 * marker, delete it by *not* writing the
1182 * line to ctx->out.
1183 */
1184 ctx->found_key = 1;
1185 if (!quiet)
dtucker@openbsd.orgd0723702017-03-06 00:44:51 +00001186 printf("# Host %s found: line %lu\n",
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001187 ctx->host, l->linenum);
1188 }
1189 return 0;
1190 } else if (find_host) {
1191 ctx->found_key = 1;
1192 if (!quiet) {
dtucker@openbsd.orgd0723702017-03-06 00:44:51 +00001193 printf("# Host %s found: line %lu %s\n",
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001194 ctx->host,
1195 l->linenum, l->marker == MRK_CA ? "CA" :
1196 (l->marker == MRK_REVOKE ? "REVOKED" : ""));
1197 }
1198 if (hash_hosts)
1199 known_hosts_hash(l, ctx);
djm@openbsd.org4739e8d2015-05-21 12:01:19 +00001200 else if (print_fingerprint) {
1201 fp = sshkey_fingerprint(l->key, fptype, rep);
djm@openbsd.orga287c5a2017-02-10 03:36:40 +00001202 mprintf("%s %s %s %s\n", ctx->host,
djm@openbsd.org4739e8d2015-05-21 12:01:19 +00001203 sshkey_type(l->key), fp, l->comment);
1204 free(fp);
1205 } else
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001206 fprintf(ctx->out, "%s\n", l->line);
1207 return 0;
1208 }
1209 } else if (delete_host) {
1210 /* Retain non-matching hosts when deleting */
1211 if (l->status == HKF_STATUS_INVALID) {
1212 ctx->invalid = 1;
dtucker@openbsd.orgd0723702017-03-06 00:44:51 +00001213 logit("%s:%lu: invalid line", l->path, l->linenum);
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001214 }
1215 fprintf(ctx->out, "%s\n", l->line);
1216 }
1217 return 0;
Damien Miller4b42d7f2005-03-01 21:48:35 +11001218}
1219
1220static void
1221do_known_hosts(struct passwd *pw, const char *name)
1222{
deraadt@openbsd.orgd2099de2015-01-19 00:32:54 +00001223 char *cp, tmp[PATH_MAX], old[PATH_MAX];
djm@openbsd.org2b3c3c72015-01-18 21:51:19 +00001224 int r, fd, oerrno, inplace = 0;
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001225 struct known_hosts_ctx ctx;
djm@openbsd.org4739e8d2015-05-21 12:01:19 +00001226 u_int foreach_options;
Damien Miller4b42d7f2005-03-01 21:48:35 +11001227
1228 if (!have_identity) {
1229 cp = tilde_expand_filename(_PATH_SSH_USER_HOSTFILE, pw->pw_uid);
1230 if (strlcpy(identity_file, cp, sizeof(identity_file)) >=
1231 sizeof(identity_file))
1232 fatal("Specified known hosts path too long");
Darren Tuckera627d422013-06-02 07:31:17 +10001233 free(cp);
Damien Miller4b42d7f2005-03-01 21:48:35 +11001234 have_identity = 1;
1235 }
Damien Miller4b42d7f2005-03-01 21:48:35 +11001236
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001237 memset(&ctx, 0, sizeof(ctx));
1238 ctx.out = stdout;
1239 ctx.host = name;
1240
Damien Miller4b42d7f2005-03-01 21:48:35 +11001241 /*
1242 * Find hosts goes to stdout, hash and deletions happen in-place
1243 * A corner case is ssh-keygen -HF foo, which should go to stdout
1244 */
1245 if (!find_host && (hash_hosts || delete_host)) {
1246 if (strlcpy(tmp, identity_file, sizeof(tmp)) >= sizeof(tmp) ||
1247 strlcat(tmp, ".XXXXXXXXXX", sizeof(tmp)) >= sizeof(tmp) ||
1248 strlcpy(old, identity_file, sizeof(old)) >= sizeof(old) ||
1249 strlcat(old, ".old", sizeof(old)) >= sizeof(old))
1250 fatal("known_hosts path too long");
1251 umask(077);
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001252 if ((fd = mkstemp(tmp)) == -1)
Damien Miller4b42d7f2005-03-01 21:48:35 +11001253 fatal("mkstemp: %s", strerror(errno));
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001254 if ((ctx.out = fdopen(fd, "w")) == NULL) {
1255 oerrno = errno;
Damien Miller4b42d7f2005-03-01 21:48:35 +11001256 unlink(tmp);
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001257 fatal("fdopen: %s", strerror(oerrno));
Damien Miller4b42d7f2005-03-01 21:48:35 +11001258 }
djm@openbsd.org2b3c3c72015-01-18 21:51:19 +00001259 inplace = 1;
Damien Miller4b42d7f2005-03-01 21:48:35 +11001260 }
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001261 /* XXX support identity_file == "-" for stdin */
djm@openbsd.org4739e8d2015-05-21 12:01:19 +00001262 foreach_options = find_host ? HKF_WANT_MATCH : 0;
1263 foreach_options |= print_fingerprint ? HKF_WANT_PARSE_KEY : 0;
djm@openbsd.org01b048c2018-06-01 04:21:29 +00001264 if ((r = hostkeys_foreach(identity_file, (find_host || !hash_hosts) ?
djm@openbsd.org3e088aa2018-06-01 03:51:34 +00001265 known_hosts_find_delete : known_hosts_hash, &ctx, name, NULL,
1266 foreach_options)) != 0) {
deraadt@openbsd.org6da413c2015-11-28 06:50:52 +00001267 if (inplace)
1268 unlink(tmp);
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001269 fatal("%s: hostkeys_foreach failed: %s", __func__, ssh_err(r));
deraadt@openbsd.org6da413c2015-11-28 06:50:52 +00001270 }
Damien Miller4b42d7f2005-03-01 21:48:35 +11001271
djm@openbsd.org2b3c3c72015-01-18 21:51:19 +00001272 if (inplace)
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001273 fclose(ctx.out);
Damien Miller0a80ca12010-02-27 07:55:05 +11001274
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001275 if (ctx.invalid) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00001276 error("%s is not a valid known_hosts file.", identity_file);
djm@openbsd.org2b3c3c72015-01-18 21:51:19 +00001277 if (inplace) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00001278 error("Not replacing existing known_hosts "
1279 "file because of errors");
Damien Miller4b42d7f2005-03-01 21:48:35 +11001280 unlink(tmp);
1281 }
1282 exit(1);
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001283 } else if (delete_host && !ctx.found_key) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00001284 logit("Host %s not found in %s", name, identity_file);
djm@openbsd.orgc8376432015-08-19 23:17:51 +00001285 if (inplace)
1286 unlink(tmp);
djm@openbsd.org2b3c3c72015-01-18 21:51:19 +00001287 } else if (inplace) {
Damien Miller4b42d7f2005-03-01 21:48:35 +11001288 /* Backup existing file */
1289 if (unlink(old) == -1 && errno != ENOENT)
1290 fatal("unlink %.100s: %s", old, strerror(errno));
1291 if (link(identity_file, old) == -1)
1292 fatal("link %.100s to %.100s: %s", identity_file, old,
1293 strerror(errno));
1294 /* Move new one into place */
1295 if (rename(tmp, identity_file) == -1) {
1296 error("rename\"%s\" to \"%s\": %s", tmp, identity_file,
1297 strerror(errno));
1298 unlink(tmp);
1299 unlink(old);
1300 exit(1);
1301 }
1302
djm@openbsd.org3038a192015-04-17 13:19:22 +00001303 printf("%s updated.\n", identity_file);
1304 printf("Original contents retained as %s\n", old);
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001305 if (ctx.has_unhashed) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00001306 logit("WARNING: %s contains unhashed entries", old);
1307 logit("Delete this file to ensure privacy "
1308 "of hostnames");
Damien Miller4b42d7f2005-03-01 21:48:35 +11001309 }
1310 }
1311
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001312 exit (find_host && !ctx.found_key);
Damien Miller4b42d7f2005-03-01 21:48:35 +11001313}
1314
Damien Miller95def091999-11-25 00:26:21 +11001315/*
1316 * Perform changing a passphrase. The argument is the passwd structure
1317 * for the current user.
1318 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001319static void
Damien Miller10f6f6b1999-11-17 17:29:08 +11001320do_change_passphrase(struct passwd *pw)
1321{
Damien Miller95def091999-11-25 00:26:21 +11001322 char *comment;
1323 char *old_passphrase, *passphrase1, *passphrase2;
1324 struct stat st;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001325 struct sshkey *private;
1326 int r;
Damien Miller10f6f6b1999-11-17 17:29:08 +11001327
Damien Miller95def091999-11-25 00:26:21 +11001328 if (!have_identity)
1329 ask_filename(pw, "Enter file in which the key is");
djm@openbsd.org3038a192015-04-17 13:19:22 +00001330 if (stat(identity_file, &st) < 0)
1331 fatal("%s: %s", identity_file, strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +11001332 /* Try to load the file with empty passphrase. */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001333 r = sshkey_load_private(identity_file, "", &private, &comment);
1334 if (r == SSH_ERR_KEY_WRONG_PASSPHRASE) {
Damien Miller95def091999-11-25 00:26:21 +11001335 if (identity_passphrase)
1336 old_passphrase = xstrdup(identity_passphrase);
1337 else
Ben Lindstrom949974b2001-06-25 05:20:31 +00001338 old_passphrase =
1339 read_passphrase("Enter old passphrase: ",
1340 RP_ALLOW_STDIN);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001341 r = sshkey_load_private(identity_file, old_passphrase,
1342 &private, &comment);
Damien Millera5103f42014-02-04 11:20:14 +11001343 explicit_bzero(old_passphrase, strlen(old_passphrase));
Darren Tuckera627d422013-06-02 07:31:17 +10001344 free(old_passphrase);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001345 if (r != 0)
1346 goto badkey;
1347 } else if (r != 0) {
1348 badkey:
djm@openbsd.org3038a192015-04-17 13:19:22 +00001349 fatal("Failed to load key %s: %s", identity_file, ssh_err(r));
Damien Miller95def091999-11-25 00:26:21 +11001350 }
djm@openbsd.orgf43d1722015-02-26 20:45:47 +00001351 if (comment)
djm@openbsd.orga287c5a2017-02-10 03:36:40 +00001352 mprintf("Key has comment '%s'\n", comment);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001353
Damien Miller95def091999-11-25 00:26:21 +11001354 /* Ask the new passphrase (twice). */
1355 if (identity_new_passphrase) {
1356 passphrase1 = xstrdup(identity_new_passphrase);
1357 passphrase2 = NULL;
1358 } else {
1359 passphrase1 =
Ben Lindstrom949974b2001-06-25 05:20:31 +00001360 read_passphrase("Enter new passphrase (empty for no "
1361 "passphrase): ", RP_ALLOW_STDIN);
1362 passphrase2 = read_passphrase("Enter same passphrase again: ",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001363 RP_ALLOW_STDIN);
Damien Miller95def091999-11-25 00:26:21 +11001364
1365 /* Verify that they are the same. */
1366 if (strcmp(passphrase1, passphrase2) != 0) {
Damien Millera5103f42014-02-04 11:20:14 +11001367 explicit_bzero(passphrase1, strlen(passphrase1));
1368 explicit_bzero(passphrase2, strlen(passphrase2));
Darren Tuckera627d422013-06-02 07:31:17 +10001369 free(passphrase1);
1370 free(passphrase2);
Damien Miller95def091999-11-25 00:26:21 +11001371 printf("Pass phrases do not match. Try again.\n");
1372 exit(1);
1373 }
1374 /* Destroy the other copy. */
Damien Millera5103f42014-02-04 11:20:14 +11001375 explicit_bzero(passphrase2, strlen(passphrase2));
Darren Tuckera627d422013-06-02 07:31:17 +10001376 free(passphrase2);
Damien Miller95def091999-11-25 00:26:21 +11001377 }
1378
1379 /* Save the file using the new passphrase. */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001380 if ((r = sshkey_save_private(private, identity_file, passphrase1,
1381 comment, use_new_format, new_format_cipher, rounds)) != 0) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00001382 error("Saving key \"%s\" failed: %s.",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001383 identity_file, ssh_err(r));
Damien Millera5103f42014-02-04 11:20:14 +11001384 explicit_bzero(passphrase1, strlen(passphrase1));
Darren Tuckera627d422013-06-02 07:31:17 +10001385 free(passphrase1);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001386 sshkey_free(private);
Darren Tuckera627d422013-06-02 07:31:17 +10001387 free(comment);
Damien Miller95def091999-11-25 00:26:21 +11001388 exit(1);
1389 }
1390 /* Destroy the passphrase and the copy of the key in memory. */
Damien Millera5103f42014-02-04 11:20:14 +11001391 explicit_bzero(passphrase1, strlen(passphrase1));
Darren Tuckera627d422013-06-02 07:31:17 +10001392 free(passphrase1);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001393 sshkey_free(private); /* Destroys contents */
Darren Tuckera627d422013-06-02 07:31:17 +10001394 free(comment);
Damien Miller95def091999-11-25 00:26:21 +11001395
1396 printf("Your identification has been saved with the new passphrase.\n");
1397 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001398}
1399
Damien Miller37876e92003-05-15 10:19:46 +10001400/*
1401 * Print the SSHFP RR.
1402 */
Damien Millercb314822006-03-26 13:48:01 +11001403static int
1404do_print_resource_record(struct passwd *pw, char *fname, char *hname)
Damien Miller37876e92003-05-15 10:19:46 +10001405{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001406 struct sshkey *public;
Damien Miller37876e92003-05-15 10:19:46 +10001407 char *comment = NULL;
1408 struct stat st;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001409 int r;
Damien Miller37876e92003-05-15 10:19:46 +10001410
Damien Millercb314822006-03-26 13:48:01 +11001411 if (fname == NULL)
Damien Miller5bb88332013-07-18 16:13:37 +10001412 fatal("%s: no filename", __func__);
Damien Millercb314822006-03-26 13:48:01 +11001413 if (stat(fname, &st) < 0) {
1414 if (errno == ENOENT)
1415 return 0;
djm@openbsd.org3038a192015-04-17 13:19:22 +00001416 fatal("%s: %s", fname, strerror(errno));
Damien Miller37876e92003-05-15 10:19:46 +10001417 }
djm@openbsd.org3038a192015-04-17 13:19:22 +00001418 if ((r = sshkey_load_public(fname, &public, &comment)) != 0)
1419 fatal("Failed to read v2 public key from \"%s\": %s.",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001420 fname, ssh_err(r));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001421 export_dns_rr(hname, public, stdout, print_generic);
1422 sshkey_free(public);
1423 free(comment);
1424 return 1;
Damien Miller37876e92003-05-15 10:19:46 +10001425}
Damien Miller37876e92003-05-15 10:19:46 +10001426
Damien Miller95def091999-11-25 00:26:21 +11001427/*
1428 * Change the comment of a private key file.
1429 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001430static void
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001431do_change_comment(struct passwd *pw)
1432{
Ben Lindstrom5fc62702001-03-09 18:19:24 +00001433 char new_comment[1024], *comment, *passphrase;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001434 struct sshkey *private;
1435 struct sshkey *public;
Damien Miller95def091999-11-25 00:26:21 +11001436 struct stat st;
1437 FILE *f;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001438 int r, fd;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001439
Damien Miller95def091999-11-25 00:26:21 +11001440 if (!have_identity)
1441 ask_filename(pw, "Enter file in which the key is");
djm@openbsd.org3038a192015-04-17 13:19:22 +00001442 if (stat(identity_file, &st) < 0)
1443 fatal("%s: %s", identity_file, strerror(errno));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001444 if ((r = sshkey_load_private(identity_file, "",
1445 &private, &comment)) == 0)
1446 passphrase = xstrdup("");
djm@openbsd.org3038a192015-04-17 13:19:22 +00001447 else if (r != SSH_ERR_KEY_WRONG_PASSPHRASE)
1448 fatal("Cannot load private key \"%s\": %s.",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001449 identity_file, ssh_err(r));
djm@openbsd.org3038a192015-04-17 13:19:22 +00001450 else {
Damien Miller95def091999-11-25 00:26:21 +11001451 if (identity_passphrase)
1452 passphrase = xstrdup(identity_passphrase);
1453 else if (identity_new_passphrase)
1454 passphrase = xstrdup(identity_new_passphrase);
1455 else
Ben Lindstrom949974b2001-06-25 05:20:31 +00001456 passphrase = read_passphrase("Enter passphrase: ",
1457 RP_ALLOW_STDIN);
Damien Miller95def091999-11-25 00:26:21 +11001458 /* Try to load using the passphrase. */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001459 if ((r = sshkey_load_private(identity_file, passphrase,
1460 &private, &comment)) != 0) {
Damien Millera5103f42014-02-04 11:20:14 +11001461 explicit_bzero(passphrase, strlen(passphrase));
Darren Tuckera627d422013-06-02 07:31:17 +10001462 free(passphrase);
djm@openbsd.org3038a192015-04-17 13:19:22 +00001463 fatal("Cannot load private key \"%s\": %s.",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001464 identity_file, ssh_err(r));
Damien Miller95def091999-11-25 00:26:21 +11001465 }
1466 }
halex@openbsd.org4d906252015-11-20 23:04:01 +00001467
markus@openbsd.org1b11ea72018-02-23 15:58:37 +00001468 if (private->type != KEY_ED25519 && private->type != KEY_XMSS &&
1469 !use_new_format) {
djm@openbsd.org873d3e72017-04-30 23:18:44 +00001470 error("Comments are only supported for keys stored in "
halex@openbsd.org4d906252015-11-20 23:04:01 +00001471 "the new format (-o).");
tobias@openbsd.org704d8c82015-03-31 11:06:49 +00001472 explicit_bzero(passphrase, strlen(passphrase));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001473 sshkey_free(private);
Ben Lindstromd0fca422001-03-26 13:44:06 +00001474 exit(1);
Damien Miller9f0f5c62001-12-21 14:45:46 +11001475 }
millert@openbsd.orge40269b2017-02-08 20:32:43 +00001476 if (comment)
1477 printf("Key now has comment '%s'\n", comment);
1478 else
1479 printf("Key now has no comment\n");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001480
Damien Miller95def091999-11-25 00:26:21 +11001481 if (identity_comment) {
1482 strlcpy(new_comment, identity_comment, sizeof(new_comment));
1483 } else {
1484 printf("Enter new comment: ");
1485 fflush(stdout);
1486 if (!fgets(new_comment, sizeof(new_comment), stdin)) {
Damien Millera5103f42014-02-04 11:20:14 +11001487 explicit_bzero(passphrase, strlen(passphrase));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001488 sshkey_free(private);
Damien Miller95def091999-11-25 00:26:21 +11001489 exit(1);
1490 }
Damien Miller14b017d2007-09-17 16:09:15 +10001491 new_comment[strcspn(new_comment, "\n")] = '\0';
Damien Miller95def091999-11-25 00:26:21 +11001492 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001493
Damien Miller95def091999-11-25 00:26:21 +11001494 /* Save the file using the new passphrase. */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001495 if ((r = sshkey_save_private(private, identity_file, passphrase,
1496 new_comment, use_new_format, new_format_cipher, rounds)) != 0) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00001497 error("Saving key \"%s\" failed: %s",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001498 identity_file, ssh_err(r));
Damien Millera5103f42014-02-04 11:20:14 +11001499 explicit_bzero(passphrase, strlen(passphrase));
Darren Tuckera627d422013-06-02 07:31:17 +10001500 free(passphrase);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001501 sshkey_free(private);
Darren Tuckera627d422013-06-02 07:31:17 +10001502 free(comment);
Damien Miller95def091999-11-25 00:26:21 +11001503 exit(1);
1504 }
Damien Millera5103f42014-02-04 11:20:14 +11001505 explicit_bzero(passphrase, strlen(passphrase));
Darren Tuckera627d422013-06-02 07:31:17 +10001506 free(passphrase);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001507 if ((r = sshkey_from_private(private, &public)) != 0)
markus@openbsd.org7da5df12017-05-30 14:16:41 +00001508 fatal("sshkey_from_private failed: %s", ssh_err(r));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001509 sshkey_free(private);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001510
Damien Miller95def091999-11-25 00:26:21 +11001511 strlcat(identity_file, ".pub", sizeof(identity_file));
Ben Lindstrom5fc62702001-03-09 18:19:24 +00001512 fd = open(identity_file, O_WRONLY | O_CREAT | O_TRUNC, 0644);
djm@openbsd.org3038a192015-04-17 13:19:22 +00001513 if (fd == -1)
1514 fatal("Could not save your public key in %s", identity_file);
Ben Lindstrom5fc62702001-03-09 18:19:24 +00001515 f = fdopen(fd, "w");
djm@openbsd.org3038a192015-04-17 13:19:22 +00001516 if (f == NULL)
1517 fatal("fdopen %s failed: %s", identity_file, strerror(errno));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001518 if ((r = sshkey_write(public, f)) != 0)
djm@openbsd.org3038a192015-04-17 13:19:22 +00001519 fatal("write key failed: %s", ssh_err(r));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001520 sshkey_free(public);
Damien Millereba71ba2000-04-29 23:57:08 +10001521 fprintf(f, " %s\n", new_comment);
Damien Miller95def091999-11-25 00:26:21 +11001522 fclose(f);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001523
Darren Tuckera627d422013-06-02 07:31:17 +10001524 free(comment);
Damien Miller95def091999-11-25 00:26:21 +11001525
1526 printf("The comment in your key file has been changed.\n");
1527 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001528}
1529
Damien Miller0a80ca12010-02-27 07:55:05 +11001530static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001531add_flag_option(struct sshbuf *c, const char *name)
Damien Miller0a80ca12010-02-27 07:55:05 +11001532{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001533 int r;
1534
Damien Miller0a80ca12010-02-27 07:55:05 +11001535 debug3("%s: %s", __func__, name);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001536 if ((r = sshbuf_put_cstring(c, name)) != 0 ||
1537 (r = sshbuf_put_string(c, NULL, 0)) != 0)
1538 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Miller0a80ca12010-02-27 07:55:05 +11001539}
1540
1541static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001542add_string_option(struct sshbuf *c, const char *name, const char *value)
Damien Miller0a80ca12010-02-27 07:55:05 +11001543{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001544 struct sshbuf *b;
1545 int r;
Damien Miller0a80ca12010-02-27 07:55:05 +11001546
1547 debug3("%s: %s=%s", __func__, name, value);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001548 if ((b = sshbuf_new()) == NULL)
1549 fatal("%s: sshbuf_new failed", __func__);
1550 if ((r = sshbuf_put_cstring(b, value)) != 0 ||
1551 (r = sshbuf_put_cstring(c, name)) != 0 ||
1552 (r = sshbuf_put_stringb(c, b)) != 0)
1553 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Miller0a80ca12010-02-27 07:55:05 +11001554
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001555 sshbuf_free(b);
Damien Miller0a80ca12010-02-27 07:55:05 +11001556}
1557
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001558#define OPTIONS_CRITICAL 1
1559#define OPTIONS_EXTENSIONS 2
Damien Miller0a80ca12010-02-27 07:55:05 +11001560static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001561prepare_options_buf(struct sshbuf *c, int which)
Damien Miller0a80ca12010-02-27 07:55:05 +11001562{
djm@openbsd.org249516e2017-04-29 04:12:25 +00001563 size_t i;
1564
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001565 sshbuf_reset(c);
Damien Miller1da63882010-08-05 13:03:51 +10001566 if ((which & OPTIONS_CRITICAL) != 0 &&
1567 certflags_command != NULL)
1568 add_string_option(c, "force-command", certflags_command);
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001569 if ((which & OPTIONS_EXTENSIONS) != 0 &&
Damien Miller2ce12ef2011-05-05 14:17:18 +10001570 (certflags_flags & CERTOPT_X_FWD) != 0)
1571 add_flag_option(c, "permit-X11-forwarding");
1572 if ((which & OPTIONS_EXTENSIONS) != 0 &&
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001573 (certflags_flags & CERTOPT_AGENT_FWD) != 0)
Damien Miller4e270b02010-04-16 15:56:21 +10001574 add_flag_option(c, "permit-agent-forwarding");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001575 if ((which & OPTIONS_EXTENSIONS) != 0 &&
1576 (certflags_flags & CERTOPT_PORT_FWD) != 0)
Damien Miller4e270b02010-04-16 15:56:21 +10001577 add_flag_option(c, "permit-port-forwarding");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001578 if ((which & OPTIONS_EXTENSIONS) != 0 &&
1579 (certflags_flags & CERTOPT_PTY) != 0)
Damien Miller4e270b02010-04-16 15:56:21 +10001580 add_flag_option(c, "permit-pty");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001581 if ((which & OPTIONS_EXTENSIONS) != 0 &&
1582 (certflags_flags & CERTOPT_USER_RC) != 0)
Damien Miller4e270b02010-04-16 15:56:21 +10001583 add_flag_option(c, "permit-user-rc");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001584 if ((which & OPTIONS_CRITICAL) != 0 &&
1585 certflags_src_addr != NULL)
1586 add_string_option(c, "source-address", certflags_src_addr);
djm@openbsd.org249516e2017-04-29 04:12:25 +00001587 for (i = 0; i < ncert_userext; i++) {
1588 if ((cert_userext[i].crit && (which & OPTIONS_EXTENSIONS)) ||
1589 (!cert_userext[i].crit && (which & OPTIONS_CRITICAL)))
1590 continue;
1591 if (cert_userext[i].val == NULL)
1592 add_flag_option(c, cert_userext[i].key);
1593 else {
1594 add_string_option(c, cert_userext[i].key,
1595 cert_userext[i].val);
1596 }
1597 }
Damien Miller0a80ca12010-02-27 07:55:05 +11001598}
1599
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001600static struct sshkey *
Damien Miller757f34e2010-08-05 13:05:31 +10001601load_pkcs11_key(char *path)
1602{
1603#ifdef ENABLE_PKCS11
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001604 struct sshkey **keys = NULL, *public, *private = NULL;
1605 int r, i, nkeys;
Damien Miller757f34e2010-08-05 13:05:31 +10001606
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001607 if ((r = sshkey_load_public(path, &public, NULL)) != 0)
1608 fatal("Couldn't load CA public key \"%s\": %s",
1609 path, ssh_err(r));
Damien Miller757f34e2010-08-05 13:05:31 +10001610
1611 nkeys = pkcs11_add_provider(pkcs11provider, identity_passphrase, &keys);
1612 debug3("%s: %d keys", __func__, nkeys);
1613 if (nkeys <= 0)
1614 fatal("cannot read public key from pkcs11");
1615 for (i = 0; i < nkeys; i++) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001616 if (sshkey_equal_public(public, keys[i])) {
Damien Miller757f34e2010-08-05 13:05:31 +10001617 private = keys[i];
1618 continue;
1619 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001620 sshkey_free(keys[i]);
Damien Miller757f34e2010-08-05 13:05:31 +10001621 }
Darren Tuckera627d422013-06-02 07:31:17 +10001622 free(keys);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001623 sshkey_free(public);
Damien Miller757f34e2010-08-05 13:05:31 +10001624 return private;
1625#else
1626 fatal("no pkcs11 support");
1627#endif /* ENABLE_PKCS11 */
1628}
1629
djm@openbsd.orga98339e2017-06-28 01:09:22 +00001630/* Signer for sshkey_certify_custom that uses the agent */
1631static int
1632agent_signer(const struct sshkey *key, u_char **sigp, size_t *lenp,
1633 const u_char *data, size_t datalen,
1634 const char *alg, u_int compat, void *ctx)
1635{
1636 int *agent_fdp = (int *)ctx;
1637
1638 return ssh_agent_sign(*agent_fdp, key, sigp, lenp,
1639 data, datalen, alg, compat);
1640}
1641
Damien Miller0a80ca12010-02-27 07:55:05 +11001642static void
1643do_ca_sign(struct passwd *pw, int argc, char **argv)
1644{
djm@openbsd.orga98339e2017-06-28 01:09:22 +00001645 int r, i, fd, found, agent_fd = -1;
Damien Miller0a80ca12010-02-27 07:55:05 +11001646 u_int n;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001647 struct sshkey *ca, *public;
djm@openbsd.org499cf362015-11-19 01:08:55 +00001648 char valid[64], *otmp, *tmp, *cp, *out, *comment, **plist = NULL;
Damien Miller0a80ca12010-02-27 07:55:05 +11001649 FILE *f;
djm@openbsd.orga98339e2017-06-28 01:09:22 +00001650 struct ssh_identitylist *agent_ids;
1651 size_t j;
Damien Miller4e270b02010-04-16 15:56:21 +10001652
Damien Miller1f0311c2014-05-15 14:24:09 +10001653#ifdef ENABLE_PKCS11
Damien Miller757f34e2010-08-05 13:05:31 +10001654 pkcs11_init(1);
Damien Miller1f0311c2014-05-15 14:24:09 +10001655#endif
Damien Miller757f34e2010-08-05 13:05:31 +10001656 tmp = tilde_expand_filename(ca_key_path, pw->pw_uid);
1657 if (pkcs11provider != NULL) {
djm@openbsd.orga98339e2017-06-28 01:09:22 +00001658 /* If a PKCS#11 token was specified then try to use it */
Damien Miller757f34e2010-08-05 13:05:31 +10001659 if ((ca = load_pkcs11_key(tmp)) == NULL)
1660 fatal("No PKCS#11 key matching %s found", ca_key_path);
djm@openbsd.orga98339e2017-06-28 01:09:22 +00001661 } else if (prefer_agent) {
1662 /*
1663 * Agent signature requested. Try to use agent after making
1664 * sure the public key specified is actually present in the
1665 * agent.
1666 */
1667 if ((r = sshkey_load_public(tmp, &ca, NULL)) != 0)
1668 fatal("Cannot load CA public key %s: %s",
1669 tmp, ssh_err(r));
1670 if ((r = ssh_get_authentication_socket(&agent_fd)) != 0)
1671 fatal("Cannot use public key for CA signature: %s",
1672 ssh_err(r));
1673 if ((r = ssh_fetch_identitylist(agent_fd, &agent_ids)) != 0)
1674 fatal("Retrieve agent key list: %s", ssh_err(r));
1675 found = 0;
1676 for (j = 0; j < agent_ids->nkeys; j++) {
1677 if (sshkey_equal(ca, agent_ids->keys[j])) {
1678 found = 1;
1679 break;
1680 }
1681 }
1682 if (!found)
1683 fatal("CA key %s not found in agent", tmp);
1684 ssh_free_identitylist(agent_ids);
1685 ca->flags |= SSHKEY_FLAG_EXT;
1686 } else {
1687 /* CA key is assumed to be a private key on the filesystem */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001688 ca = load_identity(tmp);
djm@openbsd.orga98339e2017-06-28 01:09:22 +00001689 }
Darren Tuckera627d422013-06-02 07:31:17 +10001690 free(tmp);
Damien Miller757f34e2010-08-05 13:05:31 +10001691
djm@openbsd.org57464e32016-05-02 09:36:42 +00001692 if (key_type_name != NULL &&
1693 sshkey_type_from_name(key_type_name) != ca->type) {
1694 fatal("CA key type %s doesn't match specified %s",
1695 sshkey_ssh_name(ca), key_type_name);
1696 }
1697
Damien Miller0a80ca12010-02-27 07:55:05 +11001698 for (i = 0; i < argc; i++) {
1699 /* Split list of principals */
1700 n = 0;
1701 if (cert_principals != NULL) {
1702 otmp = tmp = xstrdup(cert_principals);
1703 plist = NULL;
1704 for (; (cp = strsep(&tmp, ",")) != NULL; n++) {
deraadt@openbsd.org657a5fb2015-04-24 01:36:00 +00001705 plist = xreallocarray(plist, n + 1, sizeof(*plist));
Damien Miller0a80ca12010-02-27 07:55:05 +11001706 if (*(plist[n] = xstrdup(cp)) == '\0')
1707 fatal("Empty principal name");
1708 }
Darren Tuckera627d422013-06-02 07:31:17 +10001709 free(otmp);
Damien Miller0a80ca12010-02-27 07:55:05 +11001710 }
djm@openbsd.orgca613242018-02-10 05:48:46 +00001711 if (n > SSHKEY_CERT_MAX_PRINCIPALS)
1712 fatal("Too many certificate principals specified");
Damien Miller0a80ca12010-02-27 07:55:05 +11001713
1714 tmp = tilde_expand_filename(argv[i], pw->pw_uid);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001715 if ((r = sshkey_load_public(tmp, &public, &comment)) != 0)
1716 fatal("%s: unable to open \"%s\": %s",
1717 __func__, tmp, ssh_err(r));
Damien Millereb8b60e2010-08-31 22:41:14 +10001718 if (public->type != KEY_RSA && public->type != KEY_DSA &&
markus@openbsd.org1b11ea72018-02-23 15:58:37 +00001719 public->type != KEY_ECDSA && public->type != KEY_ED25519 &&
1720 public->type != KEY_XMSS)
Damien Miller0a80ca12010-02-27 07:55:05 +11001721 fatal("%s: key \"%s\" type %s cannot be certified",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001722 __func__, tmp, sshkey_type(public));
Damien Miller0a80ca12010-02-27 07:55:05 +11001723
1724 /* Prepare certificate to sign */
djm@openbsd.orgc28fc622015-07-03 03:43:18 +00001725 if ((r = sshkey_to_certified(public)) != 0)
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001726 fatal("Could not upgrade key %s to certificate: %s",
1727 tmp, ssh_err(r));
Damien Miller0a80ca12010-02-27 07:55:05 +11001728 public->cert->type = cert_key_type;
Damien Miller4e270b02010-04-16 15:56:21 +10001729 public->cert->serial = (u_int64_t)cert_serial;
Damien Miller0a80ca12010-02-27 07:55:05 +11001730 public->cert->key_id = xstrdup(cert_key_id);
1731 public->cert->nprincipals = n;
1732 public->cert->principals = plist;
1733 public->cert->valid_after = cert_valid_from;
1734 public->cert->valid_before = cert_valid_to;
djm@openbsd.orgc28fc622015-07-03 03:43:18 +00001735 prepare_options_buf(public->cert->critical, OPTIONS_CRITICAL);
1736 prepare_options_buf(public->cert->extensions,
1737 OPTIONS_EXTENSIONS);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001738 if ((r = sshkey_from_private(ca,
1739 &public->cert->signature_key)) != 0)
markus@openbsd.org7da5df12017-05-30 14:16:41 +00001740 fatal("sshkey_from_private (ca key): %s", ssh_err(r));
Damien Miller0a80ca12010-02-27 07:55:05 +11001741
djm@openbsd.orga98339e2017-06-28 01:09:22 +00001742 if (agent_fd != -1 && (ca->flags & SSHKEY_FLAG_EXT) != 0) {
1743 if ((r = sshkey_certify_custom(public, ca,
1744 key_type_name, agent_signer, &agent_fd)) != 0)
1745 fatal("Couldn't certify key %s via agent: %s",
1746 tmp, ssh_err(r));
1747 } else {
1748 if ((sshkey_certify(public, ca, key_type_name)) != 0)
1749 fatal("Couldn't certify key %s: %s",
1750 tmp, ssh_err(r));
1751 }
Damien Miller0a80ca12010-02-27 07:55:05 +11001752
1753 if ((cp = strrchr(tmp, '.')) != NULL && strcmp(cp, ".pub") == 0)
1754 *cp = '\0';
1755 xasprintf(&out, "%s-cert.pub", tmp);
Darren Tuckera627d422013-06-02 07:31:17 +10001756 free(tmp);
Damien Miller0a80ca12010-02-27 07:55:05 +11001757
1758 if ((fd = open(out, O_WRONLY|O_CREAT|O_TRUNC, 0644)) == -1)
1759 fatal("Could not open \"%s\" for writing: %s", out,
1760 strerror(errno));
1761 if ((f = fdopen(fd, "w")) == NULL)
1762 fatal("%s: fdopen: %s", __func__, strerror(errno));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001763 if ((r = sshkey_write(public, f)) != 0)
1764 fatal("Could not write certified key to %s: %s",
1765 out, ssh_err(r));
Damien Miller0a80ca12010-02-27 07:55:05 +11001766 fprintf(f, " %s\n", comment);
1767 fclose(f);
1768
Damien Miller4e270b02010-04-16 15:56:21 +10001769 if (!quiet) {
djm@openbsd.org964ab3e2015-11-19 01:12:32 +00001770 sshkey_format_cert_validity(public->cert,
djm@openbsd.org499cf362015-11-19 01:08:55 +00001771 valid, sizeof(valid));
Damien Miller4e270b02010-04-16 15:56:21 +10001772 logit("Signed %s key %s: id \"%s\" serial %llu%s%s "
djm@openbsd.org964ab3e2015-11-19 01:12:32 +00001773 "valid %s", sshkey_cert_type(public),
Damien Miller821de0a2011-01-11 17:20:29 +11001774 out, public->cert->key_id,
1775 (unsigned long long)public->cert->serial,
Damien Miller0a80ca12010-02-27 07:55:05 +11001776 cert_principals != NULL ? " for " : "",
1777 cert_principals != NULL ? cert_principals : "",
djm@openbsd.org499cf362015-11-19 01:08:55 +00001778 valid);
Damien Miller4e270b02010-04-16 15:56:21 +10001779 }
Damien Miller0a80ca12010-02-27 07:55:05 +11001780
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001781 sshkey_free(public);
Darren Tuckera627d422013-06-02 07:31:17 +10001782 free(out);
Damien Miller0a80ca12010-02-27 07:55:05 +11001783 }
Damien Miller1f0311c2014-05-15 14:24:09 +10001784#ifdef ENABLE_PKCS11
Damien Miller757f34e2010-08-05 13:05:31 +10001785 pkcs11_terminate();
Damien Miller1f0311c2014-05-15 14:24:09 +10001786#endif
Damien Miller0a80ca12010-02-27 07:55:05 +11001787 exit(0);
1788}
1789
1790static u_int64_t
1791parse_relative_time(const char *s, time_t now)
1792{
1793 int64_t mul, secs;
1794
1795 mul = *s == '-' ? -1 : 1;
1796
1797 if ((secs = convtime(s + 1)) == -1)
1798 fatal("Invalid relative certificate time %s", s);
1799 if (mul == -1 && secs > now)
1800 fatal("Certificate time %s cannot be represented", s);
1801 return now + (u_int64_t)(secs * mul);
1802}
1803
Damien Miller0a80ca12010-02-27 07:55:05 +11001804static void
1805parse_cert_times(char *timespec)
1806{
1807 char *from, *to;
1808 time_t now = time(NULL);
1809 int64_t secs;
1810
1811 /* +timespec relative to now */
1812 if (*timespec == '+' && strchr(timespec, ':') == NULL) {
1813 if ((secs = convtime(timespec + 1)) == -1)
1814 fatal("Invalid relative certificate life %s", timespec);
1815 cert_valid_to = now + secs;
1816 /*
1817 * Backdate certificate one minute to avoid problems on hosts
1818 * with poorly-synchronised clocks.
1819 */
1820 cert_valid_from = ((now - 59)/ 60) * 60;
1821 return;
1822 }
1823
1824 /*
1825 * from:to, where
djm@openbsd.org@openbsd.orgd52131a2017-11-03 05:14:04 +00001826 * from := [+-]timespec | YYYYMMDD | YYYYMMDDHHMMSS | "always"
1827 * to := [+-]timespec | YYYYMMDD | YYYYMMDDHHMMSS | "forever"
Damien Miller0a80ca12010-02-27 07:55:05 +11001828 */
1829 from = xstrdup(timespec);
1830 to = strchr(from, ':');
1831 if (to == NULL || from == to || *(to + 1) == '\0')
Damien Miller910f2092010-03-04 14:17:22 +11001832 fatal("Invalid certificate life specification %s", timespec);
Damien Miller0a80ca12010-02-27 07:55:05 +11001833 *to++ = '\0';
1834
1835 if (*from == '-' || *from == '+')
1836 cert_valid_from = parse_relative_time(from, now);
djm@openbsd.org@openbsd.orgd52131a2017-11-03 05:14:04 +00001837 else if (strcmp(from, "always") == 0)
1838 cert_valid_from = 0;
djm@openbsd.orgbf0fbf22018-03-12 00:52:01 +00001839 else if (parse_absolute_time(from, &cert_valid_from) != 0)
1840 fatal("Invalid from time \"%s\"", from);
Damien Miller0a80ca12010-02-27 07:55:05 +11001841
1842 if (*to == '-' || *to == '+')
Damien Miller5b01b0d2013-10-23 16:31:31 +11001843 cert_valid_to = parse_relative_time(to, now);
djm@openbsd.org@openbsd.orgd52131a2017-11-03 05:14:04 +00001844 else if (strcmp(to, "forever") == 0)
1845 cert_valid_to = ~(u_int64_t)0;
djm@openbsd.orgbf0fbf22018-03-12 00:52:01 +00001846 else if (parse_absolute_time(to, &cert_valid_to) != 0)
1847 fatal("Invalid to time \"%s\"", to);
Damien Miller0a80ca12010-02-27 07:55:05 +11001848
1849 if (cert_valid_to <= cert_valid_from)
1850 fatal("Empty certificate validity interval");
Darren Tuckera627d422013-06-02 07:31:17 +10001851 free(from);
Damien Miller0a80ca12010-02-27 07:55:05 +11001852}
1853
1854static void
Damien Miller4e270b02010-04-16 15:56:21 +10001855add_cert_option(char *opt)
Damien Miller0a80ca12010-02-27 07:55:05 +11001856{
djm@openbsd.org249516e2017-04-29 04:12:25 +00001857 char *val, *cp;
1858 int iscrit = 0;
Damien Miller0a80ca12010-02-27 07:55:05 +11001859
Damien Miller044f4a62011-05-05 14:14:08 +10001860 if (strcasecmp(opt, "clear") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001861 certflags_flags = 0;
Damien Miller0a80ca12010-02-27 07:55:05 +11001862 else if (strcasecmp(opt, "no-x11-forwarding") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001863 certflags_flags &= ~CERTOPT_X_FWD;
Damien Miller0a80ca12010-02-27 07:55:05 +11001864 else if (strcasecmp(opt, "permit-x11-forwarding") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001865 certflags_flags |= CERTOPT_X_FWD;
Damien Miller0a80ca12010-02-27 07:55:05 +11001866 else if (strcasecmp(opt, "no-agent-forwarding") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001867 certflags_flags &= ~CERTOPT_AGENT_FWD;
Damien Miller0a80ca12010-02-27 07:55:05 +11001868 else if (strcasecmp(opt, "permit-agent-forwarding") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001869 certflags_flags |= CERTOPT_AGENT_FWD;
Damien Miller0a80ca12010-02-27 07:55:05 +11001870 else if (strcasecmp(opt, "no-port-forwarding") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001871 certflags_flags &= ~CERTOPT_PORT_FWD;
Damien Miller0a80ca12010-02-27 07:55:05 +11001872 else if (strcasecmp(opt, "permit-port-forwarding") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001873 certflags_flags |= CERTOPT_PORT_FWD;
Damien Miller0a80ca12010-02-27 07:55:05 +11001874 else if (strcasecmp(opt, "no-pty") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001875 certflags_flags &= ~CERTOPT_PTY;
Damien Miller0a80ca12010-02-27 07:55:05 +11001876 else if (strcasecmp(opt, "permit-pty") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001877 certflags_flags |= CERTOPT_PTY;
Damien Miller0a80ca12010-02-27 07:55:05 +11001878 else if (strcasecmp(opt, "no-user-rc") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001879 certflags_flags &= ~CERTOPT_USER_RC;
Damien Miller0a80ca12010-02-27 07:55:05 +11001880 else if (strcasecmp(opt, "permit-user-rc") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001881 certflags_flags |= CERTOPT_USER_RC;
Damien Miller0a80ca12010-02-27 07:55:05 +11001882 else if (strncasecmp(opt, "force-command=", 14) == 0) {
1883 val = opt + 14;
1884 if (*val == '\0')
Damien Miller4e270b02010-04-16 15:56:21 +10001885 fatal("Empty force-command option");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001886 if (certflags_command != NULL)
Damien Miller0a80ca12010-02-27 07:55:05 +11001887 fatal("force-command already specified");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001888 certflags_command = xstrdup(val);
Damien Miller0a80ca12010-02-27 07:55:05 +11001889 } else if (strncasecmp(opt, "source-address=", 15) == 0) {
1890 val = opt + 15;
1891 if (*val == '\0')
Damien Miller4e270b02010-04-16 15:56:21 +10001892 fatal("Empty source-address option");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001893 if (certflags_src_addr != NULL)
Damien Miller0a80ca12010-02-27 07:55:05 +11001894 fatal("source-address already specified");
1895 if (addr_match_cidr_list(NULL, val) != 0)
1896 fatal("Invalid source-address list");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001897 certflags_src_addr = xstrdup(val);
djm@openbsd.org249516e2017-04-29 04:12:25 +00001898 } else if (strncasecmp(opt, "extension:", 10) == 0 ||
1899 (iscrit = (strncasecmp(opt, "critical:", 9) == 0))) {
1900 val = xstrdup(strchr(opt, ':') + 1);
1901 if ((cp = strchr(val, '=')) != NULL)
1902 *cp++ = '\0';
1903 cert_userext = xreallocarray(cert_userext, ncert_userext + 1,
1904 sizeof(*cert_userext));
1905 cert_userext[ncert_userext].key = val;
1906 cert_userext[ncert_userext].val = cp == NULL ?
1907 NULL : xstrdup(cp);
1908 cert_userext[ncert_userext].crit = iscrit;
1909 ncert_userext++;
Damien Miller0a80ca12010-02-27 07:55:05 +11001910 } else
Damien Miller4e270b02010-04-16 15:56:21 +10001911 fatal("Unsupported certificate option \"%s\"", opt);
Damien Miller0a80ca12010-02-27 07:55:05 +11001912}
1913
Ben Lindstrombba81212001-06-25 05:01:22 +00001914static void
djm@openbsd.orgc28fc622015-07-03 03:43:18 +00001915show_options(struct sshbuf *optbuf, int in_critical)
Damien Millerd834d352010-06-26 09:48:02 +10001916{
Damien Miller633de332014-05-15 13:48:26 +10001917 char *name, *arg;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001918 struct sshbuf *options, *option = NULL;
1919 int r;
Damien Millerd834d352010-06-26 09:48:02 +10001920
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001921 if ((options = sshbuf_fromb(optbuf)) == NULL)
1922 fatal("%s: sshbuf_fromb failed", __func__);
1923 while (sshbuf_len(options) != 0) {
1924 sshbuf_free(option);
1925 option = NULL;
1926 if ((r = sshbuf_get_cstring(options, &name, NULL)) != 0 ||
1927 (r = sshbuf_froms(options, &option)) != 0)
1928 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Millerd834d352010-06-26 09:48:02 +10001929 printf(" %s", name);
djm@openbsd.orgc28fc622015-07-03 03:43:18 +00001930 if (!in_critical &&
Damien Millerd834d352010-06-26 09:48:02 +10001931 (strcmp(name, "permit-X11-forwarding") == 0 ||
1932 strcmp(name, "permit-agent-forwarding") == 0 ||
1933 strcmp(name, "permit-port-forwarding") == 0 ||
1934 strcmp(name, "permit-pty") == 0 ||
1935 strcmp(name, "permit-user-rc") == 0))
1936 printf("\n");
djm@openbsd.orgc28fc622015-07-03 03:43:18 +00001937 else if (in_critical &&
Damien Millerd834d352010-06-26 09:48:02 +10001938 (strcmp(name, "force-command") == 0 ||
1939 strcmp(name, "source-address") == 0)) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001940 if ((r = sshbuf_get_cstring(option, &arg, NULL)) != 0)
1941 fatal("%s: buffer error: %s",
1942 __func__, ssh_err(r));
Damien Miller633de332014-05-15 13:48:26 +10001943 printf(" %s\n", arg);
1944 free(arg);
Damien Millerd834d352010-06-26 09:48:02 +10001945 } else {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001946 printf(" UNKNOWN OPTION (len %zu)\n",
1947 sshbuf_len(option));
1948 sshbuf_reset(option);
Damien Millerd834d352010-06-26 09:48:02 +10001949 }
Darren Tuckera627d422013-06-02 07:31:17 +10001950 free(name);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001951 if (sshbuf_len(option) != 0)
Damien Millerd834d352010-06-26 09:48:02 +10001952 fatal("Option corrupt: extra data at end");
1953 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001954 sshbuf_free(option);
1955 sshbuf_free(options);
Damien Millerd834d352010-06-26 09:48:02 +10001956}
1957
1958static void
djm@openbsd.org94bc0b72015-11-13 04:34:15 +00001959print_cert(struct sshkey *key)
Damien Millerf2b70ca2010-03-05 07:39:35 +11001960{
djm@openbsd.org499cf362015-11-19 01:08:55 +00001961 char valid[64], *key_fp, *ca_fp;
djm@openbsd.orgc28fc622015-07-03 03:43:18 +00001962 u_int i;
Damien Miller4e270b02010-04-16 15:56:21 +10001963
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001964 key_fp = sshkey_fingerprint(key, fingerprint_hash, SSH_FP_DEFAULT);
1965 ca_fp = sshkey_fingerprint(key->cert->signature_key,
djm@openbsd.org56d1c832014-12-21 22:27:55 +00001966 fingerprint_hash, SSH_FP_DEFAULT);
djm@openbsd.org9ce86c92015-01-28 22:36:00 +00001967 if (key_fp == NULL || ca_fp == NULL)
1968 fatal("%s: sshkey_fingerprint fail", __func__);
djm@openbsd.org499cf362015-11-19 01:08:55 +00001969 sshkey_format_cert_validity(key->cert, valid, sizeof(valid));
Damien Millerf2b70ca2010-03-05 07:39:35 +11001970
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001971 printf(" Type: %s %s certificate\n", sshkey_ssh_name(key),
1972 sshkey_cert_type(key));
1973 printf(" Public key: %s %s\n", sshkey_type(key), key_fp);
Damien Miller4e270b02010-04-16 15:56:21 +10001974 printf(" Signing CA: %s %s\n",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001975 sshkey_type(key->cert->signature_key), ca_fp);
Damien Miller4e270b02010-04-16 15:56:21 +10001976 printf(" Key ID: \"%s\"\n", key->cert->key_id);
djm@openbsd.orgc28fc622015-07-03 03:43:18 +00001977 printf(" Serial: %llu\n", (unsigned long long)key->cert->serial);
djm@openbsd.org499cf362015-11-19 01:08:55 +00001978 printf(" Valid: %s\n", valid);
Damien Millerf2b70ca2010-03-05 07:39:35 +11001979 printf(" Principals: ");
1980 if (key->cert->nprincipals == 0)
1981 printf("(none)\n");
1982 else {
1983 for (i = 0; i < key->cert->nprincipals; i++)
1984 printf("\n %s",
1985 key->cert->principals[i]);
1986 printf("\n");
1987 }
Damien Miller4e270b02010-04-16 15:56:21 +10001988 printf(" Critical Options: ");
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001989 if (sshbuf_len(key->cert->critical) == 0)
Damien Millerf2b70ca2010-03-05 07:39:35 +11001990 printf("(none)\n");
1991 else {
1992 printf("\n");
djm@openbsd.orgc28fc622015-07-03 03:43:18 +00001993 show_options(key->cert->critical, 1);
Damien Millerf2b70ca2010-03-05 07:39:35 +11001994 }
djm@openbsd.orgc28fc622015-07-03 03:43:18 +00001995 printf(" Extensions: ");
1996 if (sshbuf_len(key->cert->extensions) == 0)
1997 printf("(none)\n");
1998 else {
1999 printf("\n");
2000 show_options(key->cert->extensions, 0);
Damien Miller4e270b02010-04-16 15:56:21 +10002001 }
djm@openbsd.org94bc0b72015-11-13 04:34:15 +00002002}
2003
2004static void
2005do_show_cert(struct passwd *pw)
2006{
2007 struct sshkey *key = NULL;
2008 struct stat st;
2009 int r, is_stdin = 0, ok = 0;
2010 FILE *f;
markus@openbsd.org7f906352018-06-06 18:29:18 +00002011 char *cp, *line = NULL;
djm@openbsd.org94bc0b72015-11-13 04:34:15 +00002012 const char *path;
markus@openbsd.org7f906352018-06-06 18:29:18 +00002013 size_t linesize = 0;
djm@openbsd.org1a31d022016-05-02 08:49:03 +00002014 u_long lnum = 0;
djm@openbsd.org94bc0b72015-11-13 04:34:15 +00002015
2016 if (!have_identity)
2017 ask_filename(pw, "Enter file in which the key is");
2018 if (strcmp(identity_file, "-") != 0 && stat(identity_file, &st) < 0)
2019 fatal("%s: %s: %s", __progname, identity_file, strerror(errno));
2020
2021 path = identity_file;
2022 if (strcmp(path, "-") == 0) {
2023 f = stdin;
2024 path = "(stdin)";
2025 is_stdin = 1;
2026 } else if ((f = fopen(identity_file, "r")) == NULL)
2027 fatal("fopen %s: %s", identity_file, strerror(errno));
2028
markus@openbsd.org7f906352018-06-06 18:29:18 +00002029 while (getline(&line, &linesize, f) != -1) {
2030 lnum++;
djm@openbsd.org94bc0b72015-11-13 04:34:15 +00002031 sshkey_free(key);
2032 key = NULL;
2033 /* Trim leading space and comments */
2034 cp = line + strspn(line, " \t");
2035 if (*cp == '#' || *cp == '\0')
2036 continue;
2037 if ((key = sshkey_new(KEY_UNSPEC)) == NULL)
markus@openbsd.org7da5df12017-05-30 14:16:41 +00002038 fatal("sshkey_new");
djm@openbsd.org94bc0b72015-11-13 04:34:15 +00002039 if ((r = sshkey_read(key, &cp)) != 0) {
2040 error("%s:%lu: invalid key: %s", path,
2041 lnum, ssh_err(r));
2042 continue;
2043 }
2044 if (!sshkey_is_cert(key)) {
2045 error("%s:%lu is not a certificate", path, lnum);
2046 continue;
2047 }
2048 ok = 1;
2049 if (!is_stdin && lnum == 1)
2050 printf("%s:\n", path);
2051 else
2052 printf("%s:%lu:\n", path, lnum);
2053 print_cert(key);
2054 }
markus@openbsd.org7f906352018-06-06 18:29:18 +00002055 free(line);
djm@openbsd.org94bc0b72015-11-13 04:34:15 +00002056 sshkey_free(key);
2057 fclose(f);
2058 exit(ok ? 0 : 1);
Damien Millerf2b70ca2010-03-05 07:39:35 +11002059}
2060
2061static void
Damien Millerf3747bf2013-01-18 11:44:04 +11002062load_krl(const char *path, struct ssh_krl **krlp)
2063{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002064 struct sshbuf *krlbuf;
2065 int r, fd;
Damien Millerf3747bf2013-01-18 11:44:04 +11002066
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002067 if ((krlbuf = sshbuf_new()) == NULL)
2068 fatal("sshbuf_new failed");
Damien Millerf3747bf2013-01-18 11:44:04 +11002069 if ((fd = open(path, O_RDONLY)) == -1)
2070 fatal("open %s: %s", path, strerror(errno));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002071 if ((r = sshkey_load_file(fd, krlbuf)) != 0)
2072 fatal("Unable to load KRL: %s", ssh_err(r));
Damien Millerf3747bf2013-01-18 11:44:04 +11002073 close(fd);
2074 /* XXX check sigs */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002075 if ((r = ssh_krl_from_blob(krlbuf, krlp, NULL, 0)) != 0 ||
Damien Millerf3747bf2013-01-18 11:44:04 +11002076 *krlp == NULL)
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002077 fatal("Invalid KRL file: %s", ssh_err(r));
2078 sshbuf_free(krlbuf);
Damien Millerf3747bf2013-01-18 11:44:04 +11002079}
2080
2081static void
djm@openbsd.org669aee92015-01-30 01:10:33 +00002082update_krl_from_file(struct passwd *pw, const char *file, int wild_ca,
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002083 const struct sshkey *ca, struct ssh_krl *krl)
Damien Millerf3747bf2013-01-18 11:44:04 +11002084{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002085 struct sshkey *key = NULL;
Damien Millerf3747bf2013-01-18 11:44:04 +11002086 u_long lnum = 0;
markus@openbsd.org7f906352018-06-06 18:29:18 +00002087 char *path, *cp, *ep, *line = NULL;
2088 size_t linesize = 0;
Damien Millerf3747bf2013-01-18 11:44:04 +11002089 unsigned long long serial, serial2;
2090 int i, was_explicit_key, was_sha1, r;
2091 FILE *krl_spec;
2092
2093 path = tilde_expand_filename(file, pw->pw_uid);
2094 if (strcmp(path, "-") == 0) {
2095 krl_spec = stdin;
2096 free(path);
2097 path = xstrdup("(standard input)");
2098 } else if ((krl_spec = fopen(path, "r")) == NULL)
2099 fatal("fopen %s: %s", path, strerror(errno));
2100
2101 if (!quiet)
2102 printf("Revoking from %s\n", path);
markus@openbsd.org7f906352018-06-06 18:29:18 +00002103 while (getline(&line, &linesize, krl_spec) != -1) {
2104 lnum++;
Damien Millerf3747bf2013-01-18 11:44:04 +11002105 was_explicit_key = was_sha1 = 0;
2106 cp = line + strspn(line, " \t");
2107 /* Trim trailing space, comments and strip \n */
2108 for (i = 0, r = -1; cp[i] != '\0'; i++) {
2109 if (cp[i] == '#' || cp[i] == '\n') {
2110 cp[i] = '\0';
2111 break;
2112 }
2113 if (cp[i] == ' ' || cp[i] == '\t') {
2114 /* Remember the start of a span of whitespace */
2115 if (r == -1)
2116 r = i;
2117 } else
2118 r = -1;
2119 }
2120 if (r != -1)
2121 cp[r] = '\0';
2122 if (*cp == '\0')
2123 continue;
2124 if (strncasecmp(cp, "serial:", 7) == 0) {
djm@openbsd.org669aee92015-01-30 01:10:33 +00002125 if (ca == NULL && !wild_ca) {
Damien Millerd234afb2013-08-21 02:42:58 +10002126 fatal("revoking certificates by serial number "
Damien Millerf3747bf2013-01-18 11:44:04 +11002127 "requires specification of a CA key");
2128 }
2129 cp += 7;
2130 cp = cp + strspn(cp, " \t");
2131 errno = 0;
2132 serial = strtoull(cp, &ep, 0);
2133 if (*cp == '\0' || (*ep != '\0' && *ep != '-'))
2134 fatal("%s:%lu: invalid serial \"%s\"",
2135 path, lnum, cp);
2136 if (errno == ERANGE && serial == ULLONG_MAX)
2137 fatal("%s:%lu: serial out of range",
2138 path, lnum);
2139 serial2 = serial;
2140 if (*ep == '-') {
2141 cp = ep + 1;
2142 errno = 0;
2143 serial2 = strtoull(cp, &ep, 0);
2144 if (*cp == '\0' || *ep != '\0')
2145 fatal("%s:%lu: invalid serial \"%s\"",
2146 path, lnum, cp);
2147 if (errno == ERANGE && serial2 == ULLONG_MAX)
2148 fatal("%s:%lu: serial out of range",
2149 path, lnum);
2150 if (serial2 <= serial)
2151 fatal("%s:%lu: invalid serial range "
2152 "%llu:%llu", path, lnum,
2153 (unsigned long long)serial,
2154 (unsigned long long)serial2);
2155 }
2156 if (ssh_krl_revoke_cert_by_serial_range(krl,
2157 ca, serial, serial2) != 0) {
2158 fatal("%s: revoke serial failed",
2159 __func__);
2160 }
2161 } else if (strncasecmp(cp, "id:", 3) == 0) {
djm@openbsd.org669aee92015-01-30 01:10:33 +00002162 if (ca == NULL && !wild_ca) {
Damien Millerd5d9d7b2013-08-21 02:43:27 +10002163 fatal("revoking certificates by key ID "
Damien Millerf3747bf2013-01-18 11:44:04 +11002164 "requires specification of a CA key");
2165 }
2166 cp += 3;
2167 cp = cp + strspn(cp, " \t");
2168 if (ssh_krl_revoke_cert_by_key_id(krl, ca, cp) != 0)
2169 fatal("%s: revoke key ID failed", __func__);
2170 } else {
2171 if (strncasecmp(cp, "key:", 4) == 0) {
2172 cp += 4;
2173 cp = cp + strspn(cp, " \t");
2174 was_explicit_key = 1;
2175 } else if (strncasecmp(cp, "sha1:", 5) == 0) {
2176 cp += 5;
2177 cp = cp + strspn(cp, " \t");
2178 was_sha1 = 1;
2179 } else {
2180 /*
2181 * Just try to process the line as a key.
2182 * Parsing will fail if it isn't.
2183 */
2184 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002185 if ((key = sshkey_new(KEY_UNSPEC)) == NULL)
markus@openbsd.org7da5df12017-05-30 14:16:41 +00002186 fatal("sshkey_new");
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002187 if ((r = sshkey_read(key, &cp)) != 0)
2188 fatal("%s:%lu: invalid key: %s",
2189 path, lnum, ssh_err(r));
Damien Millerf3747bf2013-01-18 11:44:04 +11002190 if (was_explicit_key)
2191 r = ssh_krl_revoke_key_explicit(krl, key);
2192 else if (was_sha1)
2193 r = ssh_krl_revoke_key_sha1(krl, key);
2194 else
2195 r = ssh_krl_revoke_key(krl, key);
2196 if (r != 0)
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002197 fatal("%s: revoke key failed: %s",
2198 __func__, ssh_err(r));
2199 sshkey_free(key);
Damien Millerf3747bf2013-01-18 11:44:04 +11002200 }
2201 }
2202 if (strcmp(path, "-") != 0)
2203 fclose(krl_spec);
markus@openbsd.org7f906352018-06-06 18:29:18 +00002204 free(line);
Damien Miller0d6771b2013-04-23 15:23:24 +10002205 free(path);
Damien Millerf3747bf2013-01-18 11:44:04 +11002206}
2207
2208static void
2209do_gen_krl(struct passwd *pw, int updating, int argc, char **argv)
2210{
2211 struct ssh_krl *krl;
2212 struct stat sb;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002213 struct sshkey *ca = NULL;
djm@openbsd.org669aee92015-01-30 01:10:33 +00002214 int fd, i, r, wild_ca = 0;
Damien Millerf3747bf2013-01-18 11:44:04 +11002215 char *tmp;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002216 struct sshbuf *kbuf;
Damien Millerf3747bf2013-01-18 11:44:04 +11002217
2218 if (*identity_file == '\0')
2219 fatal("KRL generation requires an output file");
2220 if (stat(identity_file, &sb) == -1) {
2221 if (errno != ENOENT)
2222 fatal("Cannot access KRL \"%s\": %s",
2223 identity_file, strerror(errno));
2224 if (updating)
2225 fatal("KRL \"%s\" does not exist", identity_file);
2226 }
2227 if (ca_key_path != NULL) {
djm@openbsd.org669aee92015-01-30 01:10:33 +00002228 if (strcasecmp(ca_key_path, "none") == 0)
2229 wild_ca = 1;
2230 else {
2231 tmp = tilde_expand_filename(ca_key_path, pw->pw_uid);
2232 if ((r = sshkey_load_public(tmp, &ca, NULL)) != 0)
2233 fatal("Cannot load CA public key %s: %s",
2234 tmp, ssh_err(r));
2235 free(tmp);
2236 }
Damien Millerf3747bf2013-01-18 11:44:04 +11002237 }
2238
2239 if (updating)
2240 load_krl(identity_file, &krl);
2241 else if ((krl = ssh_krl_init()) == NULL)
2242 fatal("couldn't create KRL");
2243
2244 if (cert_serial != 0)
2245 ssh_krl_set_version(krl, cert_serial);
2246 if (identity_comment != NULL)
2247 ssh_krl_set_comment(krl, identity_comment);
2248
2249 for (i = 0; i < argc; i++)
djm@openbsd.org669aee92015-01-30 01:10:33 +00002250 update_krl_from_file(pw, argv[i], wild_ca, ca, krl);
Damien Millerf3747bf2013-01-18 11:44:04 +11002251
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002252 if ((kbuf = sshbuf_new()) == NULL)
2253 fatal("sshbuf_new failed");
2254 if (ssh_krl_to_blob(krl, kbuf, NULL, 0) != 0)
Damien Millerf3747bf2013-01-18 11:44:04 +11002255 fatal("Couldn't generate KRL");
2256 if ((fd = open(identity_file, O_WRONLY|O_CREAT|O_TRUNC, 0644)) == -1)
2257 fatal("open %s: %s", identity_file, strerror(errno));
markus@openbsd.org49f47e62018-07-09 21:59:10 +00002258 if (atomicio(vwrite, fd, sshbuf_mutable_ptr(kbuf), sshbuf_len(kbuf)) !=
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002259 sshbuf_len(kbuf))
Damien Millerf3747bf2013-01-18 11:44:04 +11002260 fatal("write %s: %s", identity_file, strerror(errno));
2261 close(fd);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002262 sshbuf_free(kbuf);
Damien Millerf3747bf2013-01-18 11:44:04 +11002263 ssh_krl_free(krl);
mmcc@openbsd.org89540b62015-12-11 02:31:47 +00002264 sshkey_free(ca);
Damien Millerf3747bf2013-01-18 11:44:04 +11002265}
2266
2267static void
2268do_check_krl(struct passwd *pw, int argc, char **argv)
2269{
2270 int i, r, ret = 0;
2271 char *comment;
2272 struct ssh_krl *krl;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002273 struct sshkey *k;
Damien Millerf3747bf2013-01-18 11:44:04 +11002274
2275 if (*identity_file == '\0')
2276 fatal("KRL checking requires an input file");
2277 load_krl(identity_file, &krl);
2278 for (i = 0; i < argc; i++) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002279 if ((r = sshkey_load_public(argv[i], &k, &comment)) != 0)
2280 fatal("Cannot load public key %s: %s",
2281 argv[i], ssh_err(r));
Damien Millerf3747bf2013-01-18 11:44:04 +11002282 r = ssh_krl_check_key(krl, k);
2283 printf("%s%s%s%s: %s\n", argv[i],
2284 *comment ? " (" : "", comment, *comment ? ")" : "",
2285 r == 0 ? "ok" : "REVOKED");
2286 if (r != 0)
2287 ret = 1;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002288 sshkey_free(k);
Damien Millerf3747bf2013-01-18 11:44:04 +11002289 free(comment);
2290 }
2291 ssh_krl_free(krl);
2292 exit(ret);
2293}
2294
2295static void
Damien Miller431f66b1999-11-21 18:31:57 +11002296usage(void)
2297{
Damien Millerf0858de2014-04-20 13:01:30 +10002298 fprintf(stderr,
djm@openbsd.org873d3e72017-04-30 23:18:44 +00002299 "usage: ssh-keygen [-q] [-b bits] [-t dsa | ecdsa | ed25519 | rsa]\n"
Damien Millerf0858de2014-04-20 13:01:30 +10002300 " [-N new_passphrase] [-C comment] [-f output_keyfile]\n"
2301 " ssh-keygen -p [-P old_passphrase] [-N new_passphrase] [-f keyfile]\n"
2302 " ssh-keygen -i [-m key_format] [-f input_keyfile]\n"
2303 " ssh-keygen -e [-m key_format] [-f input_keyfile]\n"
2304 " ssh-keygen -y [-f input_keyfile]\n"
2305 " ssh-keygen -c [-P passphrase] [-C comment] [-f keyfile]\n"
naddy@openbsd.org6288e3a2015-02-24 15:24:05 +00002306 " ssh-keygen -l [-v] [-E fingerprint_hash] [-f input_keyfile]\n"
djm@openbsd.org873d3e72017-04-30 23:18:44 +00002307 " ssh-keygen -B [-f input_keyfile]\n");
Damien Miller7ea845e2010-02-12 09:21:02 +11002308#ifdef ENABLE_PKCS11
Damien Millerf0858de2014-04-20 13:01:30 +10002309 fprintf(stderr,
2310 " ssh-keygen -D pkcs11\n");
Damien Miller7ea845e2010-02-12 09:21:02 +11002311#endif
Damien Millerf0858de2014-04-20 13:01:30 +10002312 fprintf(stderr,
2313 " ssh-keygen -F hostname [-f known_hosts_file] [-l]\n"
2314 " ssh-keygen -H [-f known_hosts_file]\n"
2315 " ssh-keygen -R hostname [-f known_hosts_file]\n"
2316 " ssh-keygen -r hostname [-f input_keyfile] [-g]\n"
djm@openbsd.org1d9a2e22015-05-28 07:37:31 +00002317#ifdef WITH_OPENSSL
Damien Millerf0858de2014-04-20 13:01:30 +10002318 " ssh-keygen -G output_file [-v] [-b bits] [-M memory] [-S start_point]\n"
2319 " ssh-keygen -T output_file -f input_file [-v] [-a rounds] [-J num_lines]\n"
2320 " [-j start_line] [-K checkpt] [-W generator]\n"
djm@openbsd.org1d9a2e22015-05-28 07:37:31 +00002321#endif
djm@openbsd.orga98339e2017-06-28 01:09:22 +00002322 " ssh-keygen -s ca_key -I certificate_identity [-h] [-U]\n"
2323 " [-D pkcs11_provider] [-n principals] [-O option]\n"
2324 " [-V validity_interval] [-z serial_number] file ...\n"
Damien Millerf0858de2014-04-20 13:01:30 +10002325 " ssh-keygen -L [-f input_keyfile]\n"
2326 " ssh-keygen -A\n"
2327 " ssh-keygen -k -f krl_file [-u] [-s ca_public] [-z version_number]\n"
2328 " file ...\n"
2329 " ssh-keygen -Q -f krl_file file ...\n");
Damien Miller95def091999-11-25 00:26:21 +11002330 exit(1);
Damien Miller431f66b1999-11-21 18:31:57 +11002331}
2332
Damien Miller95def091999-11-25 00:26:21 +11002333/*
2334 * Main program for key management.
2335 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002336int
Damien Millerdf8b7db2007-01-05 16:22:57 +11002337main(int argc, char **argv)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002338{
deraadt@openbsd.org2ae4f332015-01-16 06:40:12 +00002339 char dotsshdir[PATH_MAX], comment[1024], *passphrase1, *passphrase2;
djm@openbsd.org1d9a2e22015-05-28 07:37:31 +00002340 char *rr_hostname = NULL, *ep, *fp, *ra;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002341 struct sshkey *private, *public;
Damien Miller95def091999-11-25 00:26:21 +11002342 struct passwd *pw;
Damien Miller95def091999-11-25 00:26:21 +11002343 struct stat st;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002344 int r, opt, type, fd;
Damien Millerf3747bf2013-01-18 11:44:04 +11002345 int gen_all_hostkeys = 0, gen_krl = 0, update_krl = 0, check_krl = 0;
Damien Miller95def091999-11-25 00:26:21 +11002346 FILE *f;
Damien Miller02e754f2005-05-26 12:19:39 +10002347 const char *errstr;
djm@openbsd.org1d9a2e22015-05-28 07:37:31 +00002348#ifdef WITH_OPENSSL
2349 /* Moduli generation/screening */
2350 char out_file[PATH_MAX], *checkpoint = NULL;
2351 u_int32_t memory = 0, generator_wanted = 0;
2352 int do_gen_candidates = 0, do_screen_candidates = 0;
2353 unsigned long start_lineno = 0, lines_to_process = 0;
2354 BIGNUM *start = NULL;
2355#endif
Damien Miller0bc1bd82000-11-13 22:57:25 +11002356
Damien Miller95def091999-11-25 00:26:21 +11002357 extern int optind;
2358 extern char *optarg;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002359
dtucker@openbsd.orgffb1e7e2016-02-15 09:47:49 +00002360 ssh_malloc_init(); /* must be called before any mallocs */
Darren Tuckerce321d82005-10-03 18:11:24 +10002361 /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
2362 sanitise_stdfd();
2363
Darren Tucker9ac56e92007-01-14 10:19:59 +11002364 __progname = ssh_get_progname(argv[0]);
Damien Millerf9b625c2000-07-09 22:42:32 +10002365
Damien Miller72ef7c12015-01-15 02:21:31 +11002366#ifdef WITH_OPENSSL
Damien Miller4314c2b2010-09-10 11:12:09 +10002367 OpenSSL_add_all_algorithms();
Damien Miller72ef7c12015-01-15 02:21:31 +11002368#endif
Damien Millerdf8b7db2007-01-05 16:22:57 +11002369 log_init(argv[0], SYSLOG_LEVEL_INFO, SYSLOG_FACILITY_USER, 1);
Darren Tucker019cefe2003-08-02 22:40:07 +10002370
Kevin Steves3a881912002-07-20 19:05:40 +00002371 seed_rng();
Damien Millereba71ba2000-04-29 23:57:08 +10002372
djm@openbsd.orga287c5a2017-02-10 03:36:40 +00002373 msetlocale();
2374
Damien Miller5428f641999-11-25 11:54:57 +11002375 /* we need this for the home * directory. */
Damien Miller95def091999-11-25 00:26:21 +11002376 pw = getpwuid(getuid());
djm@openbsd.org3038a192015-04-17 13:19:22 +00002377 if (!pw)
2378 fatal("No user exists for uid %lu", (u_long)getuid());
2379 if (gethostname(hostname, sizeof(hostname)) < 0)
2380 fatal("gethostname: %s", strerror(errno));
Damien Miller5428f641999-11-25 11:54:57 +11002381
djm@openbsd.orga98339e2017-06-28 01:09:22 +00002382 /* Remaining characters: Ydw */
2383 while ((opt = getopt(argc, argv, "ABHLQUXceghiklopquvxy"
djm@openbsd.org56d1c832014-12-21 22:27:55 +00002384 "C:D:E:F:G:I:J:K:M:N:O:P:R:S:T:V:W:Z:"
2385 "a:b:f:g:j:m:n:r:s:t:z:")) != -1) {
Damien Miller95def091999-11-25 00:26:21 +11002386 switch (opt) {
Damien Miller58f1baf2011-05-05 14:06:15 +10002387 case 'A':
2388 gen_all_hostkeys = 1;
2389 break;
Damien Miller95def091999-11-25 00:26:21 +11002390 case 'b':
markus@openbsd.org1b11ea72018-02-23 15:58:37 +00002391 bits = (u_int32_t)strtonum(optarg, 10, 32768, &errstr);
Damien Miller02e754f2005-05-26 12:19:39 +10002392 if (errstr)
2393 fatal("Bits has bad value %s (%s)",
2394 optarg, errstr);
Damien Miller95def091999-11-25 00:26:21 +11002395 break;
djm@openbsd.org56d1c832014-12-21 22:27:55 +00002396 case 'E':
2397 fingerprint_hash = ssh_digest_alg_by_name(optarg);
2398 if (fingerprint_hash == -1)
2399 fatal("Invalid hash algorithm \"%s\"", optarg);
2400 break;
Damien Miller4b42d7f2005-03-01 21:48:35 +11002401 case 'F':
2402 find_host = 1;
2403 rr_hostname = optarg;
2404 break;
2405 case 'H':
2406 hash_hosts = 1;
2407 break;
Damien Miller0a80ca12010-02-27 07:55:05 +11002408 case 'I':
2409 cert_key_id = optarg;
2410 break;
Damien Miller4b42d7f2005-03-01 21:48:35 +11002411 case 'R':
2412 delete_host = 1;
2413 rr_hostname = optarg;
2414 break;
Damien Millerf2b70ca2010-03-05 07:39:35 +11002415 case 'L':
2416 show_cert = 1;
2417 break;
Damien Miller95def091999-11-25 00:26:21 +11002418 case 'l':
2419 print_fingerprint = 1;
2420 break;
Ben Lindstrom8fd372b2001-03-12 03:02:17 +00002421 case 'B':
2422 print_bubblebabble = 1;
2423 break;
Damien Miller44b25042010-07-02 13:35:01 +10002424 case 'm':
2425 if (strcasecmp(optarg, "RFC4716") == 0 ||
2426 strcasecmp(optarg, "ssh2") == 0) {
2427 convert_format = FMT_RFC4716;
2428 break;
2429 }
2430 if (strcasecmp(optarg, "PKCS8") == 0) {
2431 convert_format = FMT_PKCS8;
2432 break;
2433 }
2434 if (strcasecmp(optarg, "PEM") == 0) {
2435 convert_format = FMT_PEM;
2436 break;
2437 }
2438 fatal("Unsupported conversion format \"%s\"", optarg);
Damien Miller0a80ca12010-02-27 07:55:05 +11002439 case 'n':
2440 cert_principals = optarg;
2441 break;
Damien Millerbcd00ab2013-12-07 10:41:55 +11002442 case 'o':
2443 use_new_format = 1;
2444 break;
Damien Miller95def091999-11-25 00:26:21 +11002445 case 'p':
2446 change_passphrase = 1;
2447 break;
Damien Miller95def091999-11-25 00:26:21 +11002448 case 'c':
2449 change_comment = 1;
2450 break;
Damien Miller95def091999-11-25 00:26:21 +11002451 case 'f':
djm@openbsd.org1d9a2e22015-05-28 07:37:31 +00002452 if (strlcpy(identity_file, optarg,
2453 sizeof(identity_file)) >= sizeof(identity_file))
Damien Millerb089fb52005-05-26 12:16:18 +10002454 fatal("Identity filename too long");
Damien Miller95def091999-11-25 00:26:21 +11002455 have_identity = 1;
2456 break;
Damien Miller37876e92003-05-15 10:19:46 +10002457 case 'g':
2458 print_generic = 1;
2459 break;
Damien Miller95def091999-11-25 00:26:21 +11002460 case 'P':
2461 identity_passphrase = optarg;
2462 break;
Damien Miller95def091999-11-25 00:26:21 +11002463 case 'N':
2464 identity_new_passphrase = optarg;
2465 break;
Damien Millerf3747bf2013-01-18 11:44:04 +11002466 case 'Q':
2467 check_krl = 1;
2468 break;
Damien Miller0a80ca12010-02-27 07:55:05 +11002469 case 'O':
Damien Miller4e270b02010-04-16 15:56:21 +10002470 add_cert_option(optarg);
Damien Miller0a80ca12010-02-27 07:55:05 +11002471 break;
Damien Millerbcd00ab2013-12-07 10:41:55 +11002472 case 'Z':
2473 new_format_cipher = optarg;
2474 break;
Damien Miller95def091999-11-25 00:26:21 +11002475 case 'C':
2476 identity_comment = optarg;
2477 break;
Damien Miller95def091999-11-25 00:26:21 +11002478 case 'q':
2479 quiet = 1;
2480 break;
Ben Lindstrom5a707822001-04-22 17:15:46 +00002481 case 'e':
Damien Millereba71ba2000-04-29 23:57:08 +10002482 case 'x':
Ben Lindstrom5a707822001-04-22 17:15:46 +00002483 /* export key */
Damien Miller44b25042010-07-02 13:35:01 +10002484 convert_to = 1;
Damien Millereba71ba2000-04-29 23:57:08 +10002485 break;
Damien Miller0a80ca12010-02-27 07:55:05 +11002486 case 'h':
2487 cert_key_type = SSH2_CERT_TYPE_HOST;
Damien Millerd0e4a8e2010-05-21 14:58:32 +10002488 certflags_flags = 0;
Damien Miller0a80ca12010-02-27 07:55:05 +11002489 break;
Damien Millerf3747bf2013-01-18 11:44:04 +11002490 case 'k':
2491 gen_krl = 1;
2492 break;
Ben Lindstrom5a707822001-04-22 17:15:46 +00002493 case 'i':
Damien Millereba71ba2000-04-29 23:57:08 +10002494 case 'X':
Ben Lindstrom5a707822001-04-22 17:15:46 +00002495 /* import key */
Damien Miller44b25042010-07-02 13:35:01 +10002496 convert_from = 1;
Damien Millereba71ba2000-04-29 23:57:08 +10002497 break;
Damien Millereba71ba2000-04-29 23:57:08 +10002498 case 'y':
2499 print_public = 1;
2500 break;
Damien Miller0a80ca12010-02-27 07:55:05 +11002501 case 's':
2502 ca_key_path = optarg;
2503 break;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002504 case 't':
2505 key_type_name = optarg;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002506 break;
Ben Lindstrom8282d6a2001-08-06 21:44:05 +00002507 case 'D':
Damien Miller7ea845e2010-02-12 09:21:02 +11002508 pkcs11provider = optarg;
Ben Lindstromcd392282001-07-04 03:44:03 +00002509 break;
djm@openbsd.orga98339e2017-06-28 01:09:22 +00002510 case 'U':
2511 prefer_agent = 1;
2512 break;
Damien Millerf3747bf2013-01-18 11:44:04 +11002513 case 'u':
2514 update_krl = 1;
2515 break;
Darren Tucker06930c72003-12-31 11:34:51 +11002516 case 'v':
2517 if (log_level == SYSLOG_LEVEL_INFO)
2518 log_level = SYSLOG_LEVEL_DEBUG1;
2519 else {
Darren Tuckerfc959702004-07-17 16:12:08 +10002520 if (log_level >= SYSLOG_LEVEL_DEBUG1 &&
Darren Tucker06930c72003-12-31 11:34:51 +11002521 log_level < SYSLOG_LEVEL_DEBUG3)
2522 log_level++;
2523 }
2524 break;
Damien Miller37876e92003-05-15 10:19:46 +10002525 case 'r':
Damien Miller4b42d7f2005-03-01 21:48:35 +11002526 rr_hostname = optarg;
Damien Miller37876e92003-05-15 10:19:46 +10002527 break;
djm@openbsd.org1d9a2e22015-05-28 07:37:31 +00002528 case 'a':
2529 rounds = (int)strtonum(optarg, 1, INT_MAX, &errstr);
2530 if (errstr)
2531 fatal("Invalid number: %s (%s)",
2532 optarg, errstr);
2533 break;
2534 case 'V':
2535 parse_cert_times(optarg);
2536 break;
2537 case 'z':
2538 errno = 0;
2539 cert_serial = strtoull(optarg, &ep, 10);
2540 if (*optarg < '0' || *optarg > '9' || *ep != '\0' ||
2541 (errno == ERANGE && cert_serial == ULLONG_MAX))
2542 fatal("Invalid serial number \"%s\"", optarg);
2543 break;
2544#ifdef WITH_OPENSSL
2545 /* Moduli generation/screening */
Darren Tucker019cefe2003-08-02 22:40:07 +10002546 case 'G':
2547 do_gen_candidates = 1;
Damien Millerb089fb52005-05-26 12:16:18 +10002548 if (strlcpy(out_file, optarg, sizeof(out_file)) >=
2549 sizeof(out_file))
2550 fatal("Output filename too long");
Darren Tucker019cefe2003-08-02 22:40:07 +10002551 break;
Darren Tucker0bb29802016-09-12 11:07:00 +10002552 case 'J':
2553 lines_to_process = strtoul(optarg, NULL, 10);
dtucker@openbsd.org7b63cf62016-09-12 03:29:16 +00002554 break;
Darren Tucker0bb29802016-09-12 11:07:00 +10002555 case 'j':
2556 start_lineno = strtoul(optarg, NULL, 10);
dtucker@openbsd.org7b63cf62016-09-12 03:29:16 +00002557 break;
Damien Miller390d0562011-10-18 16:05:19 +11002558 case 'K':
deraadt@openbsd.org2ae4f332015-01-16 06:40:12 +00002559 if (strlen(optarg) >= PATH_MAX)
Damien Miller390d0562011-10-18 16:05:19 +11002560 fatal("Checkpoint filename too long");
2561 checkpoint = xstrdup(optarg);
2562 break;
Darren Tuckerd8c3cfb2016-09-12 13:30:50 +10002563 case 'M':
2564 memory = (u_int32_t)strtonum(optarg, 1, UINT_MAX,
2565 &errstr);
2566 if (errstr)
2567 fatal("Memory limit is %s: %s", errstr, optarg);
2568 break;
Darren Tucker019cefe2003-08-02 22:40:07 +10002569 case 'S':
2570 /* XXX - also compare length against bits */
2571 if (BN_hex2bn(&start, optarg) == 0)
2572 fatal("Invalid start point.");
2573 break;
Darren Tuckeraf48d542016-09-12 13:52:17 +10002574 case 'T':
2575 do_screen_candidates = 1;
2576 if (strlcpy(out_file, optarg, sizeof(out_file)) >=
2577 sizeof(out_file))
2578 fatal("Output filename too long");
2579 break;
Darren Tucker43cceff2016-09-12 13:55:37 +10002580 case 'W':
2581 generator_wanted = (u_int32_t)strtonum(optarg, 1,
2582 UINT_MAX, &errstr);
Darren Tucker70508962016-09-12 13:57:28 +10002583 if (errstr != NULL)
2584 fatal("Desired generator invalid: %s (%s)",
2585 optarg, errstr);
Darren Tucker43cceff2016-09-12 13:55:37 +10002586 break;
Damien Miller72ef7c12015-01-15 02:21:31 +11002587#endif /* WITH_OPENSSL */
Damien Miller95def091999-11-25 00:26:21 +11002588 case '?':
2589 default:
2590 usage();
2591 }
2592 }
Darren Tucker06930c72003-12-31 11:34:51 +11002593
2594 /* reinit */
Damien Millerdf8b7db2007-01-05 16:22:57 +11002595 log_init(argv[0], log_level, SYSLOG_FACILITY_USER, 1);
Darren Tucker06930c72003-12-31 11:34:51 +11002596
Damien Miller0a80ca12010-02-27 07:55:05 +11002597 argv += optind;
2598 argc -= optind;
2599
2600 if (ca_key_path != NULL) {
Damien Millerf3747bf2013-01-18 11:44:04 +11002601 if (argc < 1 && !gen_krl) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00002602 error("Too few arguments.");
Damien Miller0a80ca12010-02-27 07:55:05 +11002603 usage();
2604 }
Damien Millerf3747bf2013-01-18 11:44:04 +11002605 } else if (argc > 0 && !gen_krl && !check_krl) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00002606 error("Too many arguments.");
Damien Miller95def091999-11-25 00:26:21 +11002607 usage();
2608 }
2609 if (change_passphrase && change_comment) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00002610 error("Can only have one of -p and -c.");
Damien Miller95def091999-11-25 00:26:21 +11002611 usage();
2612 }
Darren Tucker0f7e9102008-06-08 12:54:29 +10002613 if (print_fingerprint && (delete_host || hash_hosts)) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00002614 error("Cannot use -l with -H or -R.");
Darren Tucker0f7e9102008-06-08 12:54:29 +10002615 usage();
2616 }
Damien Millerf3747bf2013-01-18 11:44:04 +11002617 if (gen_krl) {
2618 do_gen_krl(pw, update_krl, argc, argv);
2619 return (0);
2620 }
2621 if (check_krl) {
2622 do_check_krl(pw, argc, argv);
2623 return (0);
2624 }
Damien Miller0a80ca12010-02-27 07:55:05 +11002625 if (ca_key_path != NULL) {
2626 if (cert_key_id == NULL)
2627 fatal("Must specify key id (-I) when certifying");
2628 do_ca_sign(pw, argc, argv);
2629 }
Damien Millerf2b70ca2010-03-05 07:39:35 +11002630 if (show_cert)
2631 do_show_cert(pw);
Damien Miller4b42d7f2005-03-01 21:48:35 +11002632 if (delete_host || hash_hosts || find_host)
2633 do_known_hosts(pw, rr_hostname);
Damien Millerec77c952013-01-09 15:58:00 +11002634 if (pkcs11provider != NULL)
2635 do_download(pw);
Ben Lindstrom8fd372b2001-03-12 03:02:17 +00002636 if (print_fingerprint || print_bubblebabble)
Damien Miller95def091999-11-25 00:26:21 +11002637 do_fingerprint(pw);
Damien Miller95def091999-11-25 00:26:21 +11002638 if (change_passphrase)
2639 do_change_passphrase(pw);
Damien Miller4a10d2e2002-03-11 22:53:29 +11002640 if (change_comment)
2641 do_change_comment(pw);
Damien Miller1f0311c2014-05-15 14:24:09 +10002642#ifdef WITH_OPENSSL
Damien Miller44b25042010-07-02 13:35:01 +10002643 if (convert_to)
2644 do_convert_to(pw);
2645 if (convert_from)
2646 do_convert_from(pw);
Damien Miller1f0311c2014-05-15 14:24:09 +10002647#endif
Damien Millereba71ba2000-04-29 23:57:08 +10002648 if (print_public)
2649 do_print_public(pw);
Damien Miller4b42d7f2005-03-01 21:48:35 +11002650 if (rr_hostname != NULL) {
Damien Millercb314822006-03-26 13:48:01 +11002651 unsigned int n = 0;
2652
2653 if (have_identity) {
2654 n = do_print_resource_record(pw,
2655 identity_file, rr_hostname);
djm@openbsd.org3038a192015-04-17 13:19:22 +00002656 if (n == 0)
2657 fatal("%s: %s", identity_file, strerror(errno));
Damien Millercb314822006-03-26 13:48:01 +11002658 exit(0);
2659 } else {
2660
2661 n += do_print_resource_record(pw,
2662 _PATH_HOST_RSA_KEY_FILE, rr_hostname);
2663 n += do_print_resource_record(pw,
2664 _PATH_HOST_DSA_KEY_FILE, rr_hostname);
Damien Miller3bde12a2012-06-20 21:51:11 +10002665 n += do_print_resource_record(pw,
2666 _PATH_HOST_ECDSA_KEY_FILE, rr_hostname);
Damien Miller16cd3922014-05-15 13:45:58 +10002667 n += do_print_resource_record(pw,
2668 _PATH_HOST_ED25519_KEY_FILE, rr_hostname);
markus@openbsd.org1b11ea72018-02-23 15:58:37 +00002669 n += do_print_resource_record(pw,
2670 _PATH_HOST_XMSS_KEY_FILE, rr_hostname);
Damien Millercb314822006-03-26 13:48:01 +11002671 if (n == 0)
2672 fatal("no keys found.");
2673 exit(0);
2674 }
Damien Miller37876e92003-05-15 10:19:46 +10002675 }
Damien Miller95def091999-11-25 00:26:21 +11002676
djm@openbsd.org1d9a2e22015-05-28 07:37:31 +00002677#ifdef WITH_OPENSSL
Darren Tucker019cefe2003-08-02 22:40:07 +10002678 if (do_gen_candidates) {
2679 FILE *out = fopen(out_file, "w");
Damien Miller787b2ec2003-11-21 23:56:47 +11002680
Darren Tucker019cefe2003-08-02 22:40:07 +10002681 if (out == NULL) {
2682 error("Couldn't open modulus candidate file \"%s\": %s",
2683 out_file, strerror(errno));
2684 return (1);
2685 }
Damien Miller3f54a9f2005-11-05 14:52:18 +11002686 if (bits == 0)
2687 bits = DEFAULT_BITS;
Darren Tucker019cefe2003-08-02 22:40:07 +10002688 if (gen_candidates(out, memory, bits, start) != 0)
Damien Miller15d72a02005-11-05 15:07:33 +11002689 fatal("modulus candidate generation failed");
Darren Tucker019cefe2003-08-02 22:40:07 +10002690
2691 return (0);
2692 }
2693
2694 if (do_screen_candidates) {
2695 FILE *in;
Damien Miller78d22712013-02-12 11:03:36 +11002696 FILE *out = fopen(out_file, "a");
Darren Tucker019cefe2003-08-02 22:40:07 +10002697
2698 if (have_identity && strcmp(identity_file, "-") != 0) {
2699 if ((in = fopen(identity_file, "r")) == NULL) {
2700 fatal("Couldn't open modulus candidate "
Damien Millera8e06ce2003-11-21 23:48:55 +11002701 "file \"%s\": %s", identity_file,
Darren Tucker019cefe2003-08-02 22:40:07 +10002702 strerror(errno));
2703 }
2704 } else
2705 in = stdin;
2706
2707 if (out == NULL) {
2708 fatal("Couldn't open moduli file \"%s\": %s",
2709 out_file, strerror(errno));
2710 }
Damien Millerbcd00ab2013-12-07 10:41:55 +11002711 if (prime_test(in, out, rounds == 0 ? 100 : rounds,
2712 generator_wanted, checkpoint,
Damien Millerdfceafe2012-07-06 13:44:19 +10002713 start_lineno, lines_to_process) != 0)
Damien Miller15d72a02005-11-05 15:07:33 +11002714 fatal("modulus screening failed");
Darren Tuckerf4220e62003-08-21 16:44:07 +10002715 return (0);
Darren Tucker019cefe2003-08-02 22:40:07 +10002716 }
djm@openbsd.org1d9a2e22015-05-28 07:37:31 +00002717#endif
Darren Tucker019cefe2003-08-02 22:40:07 +10002718
Damien Miller58f1baf2011-05-05 14:06:15 +10002719 if (gen_all_hostkeys) {
2720 do_gen_all_hostkeys(pw);
2721 return (0);
2722 }
2723
Damien Millerf14be5c2005-11-05 15:15:49 +11002724 if (key_type_name == NULL)
djm@openbsd.orgd1958792015-05-28 04:40:13 +00002725 key_type_name = DEFAULT_KEY_TYPE_NAME;
Damien Millerf14be5c2005-11-05 15:15:49 +11002726
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002727 type = sshkey_type_from_name(key_type_name);
djm@openbsd.org7efb4552015-01-18 13:22:28 +00002728 type_bits_valid(type, key_type_name, &bits);
Damien Miller58f1baf2011-05-05 14:06:15 +10002729
Darren Tucker3af2ac52005-11-29 13:10:24 +11002730 if (!quiet)
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002731 printf("Generating public/private %s key pair.\n",
2732 key_type_name);
djm@openbsd.org3038a192015-04-17 13:19:22 +00002733 if ((r = sshkey_generate(type, bits, &private)) != 0)
markus@openbsd.org7da5df12017-05-30 14:16:41 +00002734 fatal("sshkey_generate failed");
djm@openbsd.org3038a192015-04-17 13:19:22 +00002735 if ((r = sshkey_from_private(private, &public)) != 0)
markus@openbsd.org7da5df12017-05-30 14:16:41 +00002736 fatal("sshkey_from_private failed: %s\n", ssh_err(r));
Damien Miller95def091999-11-25 00:26:21 +11002737
2738 if (!have_identity)
2739 ask_filename(pw, "Enter file in which to save the key");
2740
Damien Miller788f2122005-11-05 15:14:59 +11002741 /* Create ~/.ssh directory if it doesn't already exist. */
Damien Miller50af79b2010-05-10 11:52:00 +10002742 snprintf(dotsshdir, sizeof dotsshdir, "%s/%s",
2743 pw->pw_dir, _PATH_SSH_USER_DIR);
2744 if (strstr(identity_file, dotsshdir) != NULL) {
2745 if (stat(dotsshdir, &st) < 0) {
2746 if (errno != ENOENT) {
2747 error("Could not stat %s: %s", dotsshdir,
2748 strerror(errno));
2749 } else if (mkdir(dotsshdir, 0700) < 0) {
2750 error("Could not create directory '%s': %s",
2751 dotsshdir, strerror(errno));
2752 } else if (!quiet)
2753 printf("Created directory '%s'.\n", dotsshdir);
2754 }
Damien Miller95def091999-11-25 00:26:21 +11002755 }
2756 /* If the file already exists, ask the user to confirm. */
2757 if (stat(identity_file, &st) >= 0) {
2758 char yesno[3];
2759 printf("%s already exists.\n", identity_file);
2760 printf("Overwrite (y/n)? ");
2761 fflush(stdout);
2762 if (fgets(yesno, sizeof(yesno), stdin) == NULL)
2763 exit(1);
2764 if (yesno[0] != 'y' && yesno[0] != 'Y')
2765 exit(1);
2766 }
2767 /* Ask for a passphrase (twice). */
2768 if (identity_passphrase)
2769 passphrase1 = xstrdup(identity_passphrase);
2770 else if (identity_new_passphrase)
2771 passphrase1 = xstrdup(identity_new_passphrase);
2772 else {
2773passphrase_again:
2774 passphrase1 =
Ben Lindstrom949974b2001-06-25 05:20:31 +00002775 read_passphrase("Enter passphrase (empty for no "
2776 "passphrase): ", RP_ALLOW_STDIN);
2777 passphrase2 = read_passphrase("Enter same passphrase again: ",
2778 RP_ALLOW_STDIN);
Damien Miller95def091999-11-25 00:26:21 +11002779 if (strcmp(passphrase1, passphrase2) != 0) {
Ben Lindstrom949974b2001-06-25 05:20:31 +00002780 /*
2781 * The passphrases do not match. Clear them and
2782 * retry.
2783 */
Damien Millera5103f42014-02-04 11:20:14 +11002784 explicit_bzero(passphrase1, strlen(passphrase1));
2785 explicit_bzero(passphrase2, strlen(passphrase2));
Darren Tuckera627d422013-06-02 07:31:17 +10002786 free(passphrase1);
2787 free(passphrase2);
Damien Miller95def091999-11-25 00:26:21 +11002788 printf("Passphrases do not match. Try again.\n");
2789 goto passphrase_again;
2790 }
2791 /* Clear the other copy of the passphrase. */
Damien Millera5103f42014-02-04 11:20:14 +11002792 explicit_bzero(passphrase2, strlen(passphrase2));
Darren Tuckera627d422013-06-02 07:31:17 +10002793 free(passphrase2);
Damien Miller95def091999-11-25 00:26:21 +11002794 }
2795
Damien Miller95def091999-11-25 00:26:21 +11002796 if (identity_comment) {
2797 strlcpy(comment, identity_comment, sizeof(comment));
2798 } else {
Darren Tuckere15fb092008-11-11 16:31:43 +11002799 /* Create default comment field for the passphrase. */
Damien Miller95def091999-11-25 00:26:21 +11002800 snprintf(comment, sizeof comment, "%s@%s", pw->pw_name, hostname);
2801 }
2802
2803 /* Save the key with the given passphrase and comment. */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002804 if ((r = sshkey_save_private(private, identity_file, passphrase1,
2805 comment, use_new_format, new_format_cipher, rounds)) != 0) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00002806 error("Saving key \"%s\" failed: %s",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002807 identity_file, ssh_err(r));
Damien Millera5103f42014-02-04 11:20:14 +11002808 explicit_bzero(passphrase1, strlen(passphrase1));
Darren Tuckera627d422013-06-02 07:31:17 +10002809 free(passphrase1);
Damien Miller95def091999-11-25 00:26:21 +11002810 exit(1);
2811 }
2812 /* Clear the passphrase. */
Damien Millera5103f42014-02-04 11:20:14 +11002813 explicit_bzero(passphrase1, strlen(passphrase1));
Darren Tuckera627d422013-06-02 07:31:17 +10002814 free(passphrase1);
Damien Miller95def091999-11-25 00:26:21 +11002815
2816 /* Clear the private key and the random number generator. */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002817 sshkey_free(private);
Damien Miller95def091999-11-25 00:26:21 +11002818
2819 if (!quiet)
2820 printf("Your identification has been saved in %s.\n", identity_file);
2821
Damien Miller95def091999-11-25 00:26:21 +11002822 strlcat(identity_file, ".pub", sizeof(identity_file));
djm@openbsd.org3038a192015-04-17 13:19:22 +00002823 if ((fd = open(identity_file, O_WRONLY|O_CREAT|O_TRUNC, 0644)) == -1)
2824 fatal("Unable to save public key to %s: %s",
2825 identity_file, strerror(errno));
2826 if ((f = fdopen(fd, "w")) == NULL)
2827 fatal("fdopen %s failed: %s", identity_file, strerror(errno));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002828 if ((r = sshkey_write(public, f)) != 0)
djm@openbsd.org3038a192015-04-17 13:19:22 +00002829 error("write key failed: %s", ssh_err(r));
Damien Millereba71ba2000-04-29 23:57:08 +10002830 fprintf(f, " %s\n", comment);
djm@openbsd.orgb56ac062018-02-10 05:43:26 +00002831 if (ferror(f) || fclose(f) != 0)
2832 fatal("write public failed: %s", strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +11002833
2834 if (!quiet) {
djm@openbsd.org9ce86c92015-01-28 22:36:00 +00002835 fp = sshkey_fingerprint(public, fingerprint_hash,
djm@openbsd.org56d1c832014-12-21 22:27:55 +00002836 SSH_FP_DEFAULT);
djm@openbsd.org9ce86c92015-01-28 22:36:00 +00002837 ra = sshkey_fingerprint(public, fingerprint_hash,
Darren Tucker9c16ac92008-06-13 04:40:35 +10002838 SSH_FP_RANDOMART);
djm@openbsd.org9ce86c92015-01-28 22:36:00 +00002839 if (fp == NULL || ra == NULL)
2840 fatal("sshkey_fingerprint failed");
Damien Millereba71ba2000-04-29 23:57:08 +10002841 printf("Your public key has been saved in %s.\n",
2842 identity_file);
Damien Miller95def091999-11-25 00:26:21 +11002843 printf("The key fingerprint is:\n");
Ben Lindstromcfccef92001-03-13 04:57:58 +00002844 printf("%s %s\n", fp, comment);
Darren Tucker9c16ac92008-06-13 04:40:35 +10002845 printf("The key's randomart image is:\n");
2846 printf("%s\n", ra);
Darren Tuckera627d422013-06-02 07:31:17 +10002847 free(ra);
2848 free(fp);
Damien Miller95def091999-11-25 00:26:21 +11002849 }
Damien Millereba71ba2000-04-29 23:57:08 +10002850
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002851 sshkey_free(public);
Damien Miller95def091999-11-25 00:26:21 +11002852 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002853}