blob: ca94fe44fdd9cb1ec0abf4659473921a4962661e [file] [log] [blame]
dtucker@openbsd.orgd0723702017-03-06 00:44:51 +00001/* $OpenBSD: ssh-keygen.c,v 1.297 2017/03/06 00:44:51 dtucker 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"
Ben Lindstromd09fcf52001-03-29 00:29:54 +000044#include "rsa.h"
Damien Millereba71ba2000-04-29 23:57:08 +100045#include "authfile.h"
46#include "uuencode.h"
djm@openbsd.org1129dcf2015-01-15 09:40:00 +000047#include "sshbuf.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000048#include "pathnames.h"
49#include "log.h"
Darren Tuckere608ca22004-05-13 16:15:47 +100050#include "misc.h"
Damien Miller4b42d7f2005-03-01 21:48:35 +110051#include "match.h"
52#include "hostfile.h"
Damien Miller69996102006-07-10 20:53:31 +100053#include "dns.h"
Damien Millerf3747bf2013-01-18 11:44:04 +110054#include "ssh.h"
Damien Miller0a80ca12010-02-27 07:55:05 +110055#include "ssh2.h"
djm@openbsd.org1129dcf2015-01-15 09:40:00 +000056#include "ssherr.h"
Damien Miller7ea845e2010-02-12 09:21:02 +110057#include "ssh-pkcs11.h"
Damien Millerf3747bf2013-01-18 11:44:04 +110058#include "atomicio.h"
59#include "krl.h"
djm@openbsd.org56d1c832014-12-21 22:27:55 +000060#include "digest.h"
djm@openbsd.orga287c5a2017-02-10 03:36:40 +000061#include "utf8.h"
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
Damien Miller4e270b02010-04-16 15:56:21 +1000124/* Certificate serial number */
Damien Miller55aca022012-12-03 11:25:30 +1100125unsigned long long cert_serial = 0;
Damien Miller4e270b02010-04-16 15:56:21 +1000126
Damien Miller0a80ca12010-02-27 07:55:05 +1100127/* Key type when certifying */
128u_int cert_key_type = SSH2_CERT_TYPE_USER;
129
130/* "key ID" of signed key */
131char *cert_key_id = NULL;
132
133/* Comma-separated list of principal names for certifying keys */
134char *cert_principals = NULL;
135
136/* Validity period for certificates */
137u_int64_t cert_valid_from = 0;
138u_int64_t cert_valid_to = ~0ULL;
139
Damien Miller4e270b02010-04-16 15:56:21 +1000140/* Certificate options */
Damien Millerd0e4a8e2010-05-21 14:58:32 +1000141#define CERTOPT_X_FWD (1)
142#define CERTOPT_AGENT_FWD (1<<1)
143#define CERTOPT_PORT_FWD (1<<2)
144#define CERTOPT_PTY (1<<3)
145#define CERTOPT_USER_RC (1<<4)
146#define CERTOPT_DEFAULT (CERTOPT_X_FWD|CERTOPT_AGENT_FWD| \
147 CERTOPT_PORT_FWD|CERTOPT_PTY|CERTOPT_USER_RC)
148u_int32_t certflags_flags = CERTOPT_DEFAULT;
149char *certflags_command = NULL;
150char *certflags_src_addr = NULL;
Damien Miller0a80ca12010-02-27 07:55:05 +1100151
Damien Miller44b25042010-07-02 13:35:01 +1000152/* Conversion to/from various formats */
153int convert_to = 0;
154int convert_from = 0;
155enum {
156 FMT_RFC4716,
157 FMT_PKCS8,
158 FMT_PEM
159} convert_format = FMT_RFC4716;
Damien Millereba71ba2000-04-29 23:57:08 +1000160int print_public = 0;
Damien Miller37876e92003-05-15 10:19:46 +1000161int print_generic = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100162
Damien Millera41c8b12002-01-22 23:05:08 +1100163char *key_type_name = NULL;
Damien Millereba71ba2000-04-29 23:57:08 +1000164
Damien Miller757f34e2010-08-05 13:05:31 +1000165/* Load key from this PKCS#11 provider */
166char *pkcs11provider = NULL;
Damien Miller44b25042010-07-02 13:35:01 +1000167
Damien Millerbcd00ab2013-12-07 10:41:55 +1100168/* Use new OpenSSH private key format when writing SSH2 keys instead of PEM */
169int use_new_format = 0;
170
171/* Cipher for new-format private keys */
172char *new_format_cipher = NULL;
173
174/*
175 * Number of KDF rounds to derive new format keys /
176 * number of primality trials when screening moduli.
177 */
178int rounds = 0;
179
Damien Miller431f66b1999-11-21 18:31:57 +1100180/* argv0 */
181extern char *__progname;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000182
Damien Millere5c0d522014-07-03 21:24:19 +1000183char hostname[NI_MAXHOST];
Damien Millereba71ba2000-04-29 23:57:08 +1000184
djm@openbsd.org1d9a2e22015-05-28 07:37:31 +0000185#ifdef WITH_OPENSSL
Darren Tucker770fc012004-05-13 16:24:32 +1000186/* moduli.c */
Damien Millerb089fb52005-05-26 12:16:18 +1000187int gen_candidates(FILE *, u_int32_t, u_int32_t, BIGNUM *);
Damien Millerdfceafe2012-07-06 13:44:19 +1000188int prime_test(FILE *, FILE *, u_int32_t, u_int32_t, char *, unsigned long,
189 unsigned long);
djm@openbsd.org1d9a2e22015-05-28 07:37:31 +0000190#endif
Darren Tucker770fc012004-05-13 16:24:32 +1000191
Ben Lindstrombba81212001-06-25 05:01:22 +0000192static void
djm@openbsd.org7efb4552015-01-18 13:22:28 +0000193type_bits_valid(int type, const char *name, u_int32_t *bitsp)
Damien Miller58f1baf2011-05-05 14:06:15 +1000194{
Damien Miller72ef7c12015-01-15 02:21:31 +1100195#ifdef WITH_OPENSSL
djm@openbsd.org1d9a2e22015-05-28 07:37:31 +0000196 u_int maxbits, nid;
Damien Miller72ef7c12015-01-15 02:21:31 +1100197#endif
Damien Miller58f1baf2011-05-05 14:06:15 +1000198
djm@openbsd.org3038a192015-04-17 13:19:22 +0000199 if (type == KEY_UNSPEC)
200 fatal("unknown key type %s", key_type_name);
Damien Miller884b63a2011-05-05 14:14:52 +1000201 if (*bitsp == 0) {
Damien Miller773dda22015-01-30 23:10:17 +1100202#ifdef WITH_OPENSSL
Damien Miller58f1baf2011-05-05 14:06:15 +1000203 if (type == KEY_DSA)
Damien Miller884b63a2011-05-05 14:14:52 +1000204 *bitsp = DEFAULT_BITS_DSA;
djm@openbsd.org7efb4552015-01-18 13:22:28 +0000205 else if (type == KEY_ECDSA) {
206 if (name != NULL &&
207 (nid = sshkey_ecdsa_nid_from_name(name)) > 0)
208 *bitsp = sshkey_curve_nid_to_bits(nid);
209 if (*bitsp == 0)
210 *bitsp = DEFAULT_BITS_ECDSA;
Damien Miller773dda22015-01-30 23:10:17 +1100211 } else
212#endif
Damien Miller884b63a2011-05-05 14:14:52 +1000213 *bitsp = DEFAULT_BITS;
Damien Miller58f1baf2011-05-05 14:06:15 +1000214 }
Damien Miller72ef7c12015-01-15 02:21:31 +1100215#ifdef WITH_OPENSSL
Damien Miller58f1baf2011-05-05 14:06:15 +1000216 maxbits = (type == KEY_DSA) ?
217 OPENSSL_DSA_MAX_MODULUS_BITS : OPENSSL_RSA_MAX_MODULUS_BITS;
djm@openbsd.org3038a192015-04-17 13:19:22 +0000218 if (*bitsp > maxbits)
219 fatal("key bits exceeds maximum %d", maxbits);
Damien Miller884b63a2011-05-05 14:14:52 +1000220 if (type == KEY_DSA && *bitsp != 1024)
Damien Miller58f1baf2011-05-05 14:06:15 +1000221 fatal("DSA keys must be 1024 bits");
djm@openbsd.org933935c2015-07-03 03:49:45 +0000222 else if (type != KEY_ECDSA && type != KEY_ED25519 && *bitsp < 1024)
223 fatal("Key must at least be 1024 bits");
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000224 else if (type == KEY_ECDSA && sshkey_ecdsa_bits_to_nid(*bitsp) == -1)
Damien Miller58f1baf2011-05-05 14:06:15 +1000225 fatal("Invalid ECDSA key length - valid lengths are "
226 "256, 384 or 521 bits");
Damien Miller1f0311c2014-05-15 14:24:09 +1000227#endif
Damien Miller58f1baf2011-05-05 14:06:15 +1000228}
229
230static void
Damien Miller431f66b1999-11-21 18:31:57 +1100231ask_filename(struct passwd *pw, const char *prompt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000232{
Damien Miller95def091999-11-25 00:26:21 +1100233 char buf[1024];
Damien Millere39cacc2000-11-29 12:18:44 +1100234 char *name = NULL;
235
Damien Miller993dd552002-02-19 15:22:47 +1100236 if (key_type_name == NULL)
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000237 name = _PATH_SSH_CLIENT_ID_RSA;
Damien Miller90967402006-03-26 14:07:26 +1100238 else {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000239 switch (sshkey_type_from_name(key_type_name)) {
Damien Miller993dd552002-02-19 15:22:47 +1100240 case KEY_RSA1:
241 name = _PATH_SSH_CLIENT_IDENTITY;
242 break;
Damien Miller4e270b02010-04-16 15:56:21 +1000243 case KEY_DSA_CERT:
Damien Miller993dd552002-02-19 15:22:47 +1100244 case KEY_DSA:
245 name = _PATH_SSH_CLIENT_ID_DSA;
246 break;
Damien Millerdd190dd2010-11-11 14:17:02 +1100247#ifdef OPENSSL_HAS_ECC
Damien Millereb8b60e2010-08-31 22:41:14 +1000248 case KEY_ECDSA_CERT:
249 case KEY_ECDSA:
250 name = _PATH_SSH_CLIENT_ID_ECDSA;
251 break;
Damien Millerdd190dd2010-11-11 14:17:02 +1100252#endif
Damien Miller4e270b02010-04-16 15:56:21 +1000253 case KEY_RSA_CERT:
Damien Miller993dd552002-02-19 15:22:47 +1100254 case KEY_RSA:
255 name = _PATH_SSH_CLIENT_ID_RSA;
256 break;
Damien Miller5be9d9e2013-12-07 11:24:01 +1100257 case KEY_ED25519:
258 case KEY_ED25519_CERT:
259 name = _PATH_SSH_CLIENT_ID_ED25519;
260 break;
Damien Miller993dd552002-02-19 15:22:47 +1100261 default:
djm@openbsd.org3038a192015-04-17 13:19:22 +0000262 fatal("bad key type");
Damien Miller993dd552002-02-19 15:22:47 +1100263 }
Damien Miller90967402006-03-26 14:07:26 +1100264 }
djm@openbsd.org3038a192015-04-17 13:19:22 +0000265 snprintf(identity_file, sizeof(identity_file),
266 "%s/%s", pw->pw_dir, name);
267 printf("%s (%s): ", prompt, identity_file);
268 fflush(stdout);
Damien Miller95def091999-11-25 00:26:21 +1100269 if (fgets(buf, sizeof(buf), stdin) == NULL)
270 exit(1);
Damien Miller14b017d2007-09-17 16:09:15 +1000271 buf[strcspn(buf, "\n")] = '\0';
Damien Miller95def091999-11-25 00:26:21 +1100272 if (strcmp(buf, "") != 0)
273 strlcpy(identity_file, buf, sizeof(identity_file));
274 have_identity = 1;
Damien Miller10f6f6b1999-11-17 17:29:08 +1100275}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000276
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000277static struct sshkey *
Ben Lindstromd78ae762001-06-05 20:35:09 +0000278load_identity(char *filename)
Damien Millereba71ba2000-04-29 23:57:08 +1000279{
Ben Lindstromd0fca422001-03-26 13:44:06 +0000280 char *pass;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000281 struct sshkey *prv;
282 int r;
Ben Lindstromd0fca422001-03-26 13:44:06 +0000283
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000284 if ((r = sshkey_load_private(filename, "", &prv, NULL)) == 0)
285 return prv;
286 if (r != SSH_ERR_KEY_WRONG_PASSPHRASE)
287 fatal("Load key \"%s\": %s", filename, ssh_err(r));
288 if (identity_passphrase)
289 pass = xstrdup(identity_passphrase);
290 else
291 pass = read_passphrase("Enter passphrase: ", RP_ALLOW_STDIN);
292 r = sshkey_load_private(filename, pass, &prv, NULL);
293 explicit_bzero(pass, strlen(pass));
294 free(pass);
295 if (r != 0)
296 fatal("Load key \"%s\": %s", filename, ssh_err(r));
Ben Lindstromd0fca422001-03-26 13:44:06 +0000297 return prv;
Damien Millereba71ba2000-04-29 23:57:08 +1000298}
299
Damien Miller874d77b2000-10-14 16:23:11 +1100300#define SSH_COM_PUBLIC_BEGIN "---- BEGIN SSH2 PUBLIC KEY ----"
Ben Lindstromcb72e4f2002-06-21 00:41:51 +0000301#define SSH_COM_PUBLIC_END "---- END SSH2 PUBLIC KEY ----"
Damien Miller874d77b2000-10-14 16:23:11 +1100302#define SSH_COM_PRIVATE_BEGIN "---- BEGIN SSH2 ENCRYPTED PRIVATE KEY ----"
Kevin Stevesef4eea92001-02-05 12:42:17 +0000303#define SSH_COM_PRIVATE_KEY_MAGIC 0x3f6ff9eb
Damien Millereba71ba2000-04-29 23:57:08 +1000304
Damien Miller1f0311c2014-05-15 14:24:09 +1000305#ifdef WITH_OPENSSL
Ben Lindstrombba81212001-06-25 05:01:22 +0000306static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000307do_convert_to_ssh2(struct passwd *pw, struct sshkey *k)
Damien Millereba71ba2000-04-29 23:57:08 +1000308{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000309 size_t len;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000310 u_char *blob;
Darren Tuckerd04758d2010-01-12 19:41:57 +1100311 char comment[61];
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000312 int r;
Damien Millereba71ba2000-04-29 23:57:08 +1000313
djm@openbsd.org3038a192015-04-17 13:19:22 +0000314 if (k->type == KEY_RSA1)
315 fatal("version 1 keys are not supported");
316 if ((r = sshkey_to_blob(k, &blob, &len)) != 0)
317 fatal("key_to_blob failed: %s", ssh_err(r));
Darren Tuckerd04758d2010-01-12 19:41:57 +1100318 /* Comment + surrounds must fit into 72 chars (RFC 4716 sec 3.3) */
319 snprintf(comment, sizeof(comment),
320 "%u-bit %s, converted by %s@%s from OpenSSH",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000321 sshkey_size(k), sshkey_type(k),
Damien Millereba71ba2000-04-29 23:57:08 +1000322 pw->pw_name, hostname);
Darren Tuckerd04758d2010-01-12 19:41:57 +1100323
324 fprintf(stdout, "%s\n", SSH_COM_PUBLIC_BEGIN);
325 fprintf(stdout, "Comment: \"%s\"\n", comment);
Damien Millereba71ba2000-04-29 23:57:08 +1000326 dump_base64(stdout, blob, len);
Damien Miller874d77b2000-10-14 16:23:11 +1100327 fprintf(stdout, "%s\n", SSH_COM_PUBLIC_END);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000328 sshkey_free(k);
Darren Tuckera627d422013-06-02 07:31:17 +1000329 free(blob);
Damien Millereba71ba2000-04-29 23:57:08 +1000330 exit(0);
331}
332
Ben Lindstrombba81212001-06-25 05:01:22 +0000333static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000334do_convert_to_pkcs8(struct sshkey *k)
Damien Miller44b25042010-07-02 13:35:01 +1000335{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000336 switch (sshkey_type_plain(k->type)) {
Damien Millera563cce2012-04-22 11:07:28 +1000337 case KEY_RSA1:
Damien Miller44b25042010-07-02 13:35:01 +1000338 case KEY_RSA:
339 if (!PEM_write_RSA_PUBKEY(stdout, k->rsa))
340 fatal("PEM_write_RSA_PUBKEY failed");
341 break;
342 case KEY_DSA:
343 if (!PEM_write_DSA_PUBKEY(stdout, k->dsa))
344 fatal("PEM_write_DSA_PUBKEY failed");
345 break;
Damien Miller6af914a2010-09-10 11:39:26 +1000346#ifdef OPENSSL_HAS_ECC
Damien Millereb8b60e2010-08-31 22:41:14 +1000347 case KEY_ECDSA:
348 if (!PEM_write_EC_PUBKEY(stdout, k->ecdsa))
349 fatal("PEM_write_EC_PUBKEY failed");
350 break;
Damien Miller6af914a2010-09-10 11:39:26 +1000351#endif
Damien Miller44b25042010-07-02 13:35:01 +1000352 default:
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000353 fatal("%s: unsupported key type %s", __func__, sshkey_type(k));
Damien Miller44b25042010-07-02 13:35:01 +1000354 }
355 exit(0);
356}
357
358static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000359do_convert_to_pem(struct sshkey *k)
Damien Miller44b25042010-07-02 13:35:01 +1000360{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000361 switch (sshkey_type_plain(k->type)) {
Damien Millera563cce2012-04-22 11:07:28 +1000362 case KEY_RSA1:
Damien Miller44b25042010-07-02 13:35:01 +1000363 case KEY_RSA:
364 if (!PEM_write_RSAPublicKey(stdout, k->rsa))
365 fatal("PEM_write_RSAPublicKey failed");
366 break;
367#if notyet /* OpenSSH 0.9.8 lacks this function */
368 case KEY_DSA:
369 if (!PEM_write_DSAPublicKey(stdout, k->dsa))
370 fatal("PEM_write_DSAPublicKey failed");
371 break;
372#endif
Damien Millereb8b60e2010-08-31 22:41:14 +1000373 /* XXX ECDSA? */
Damien Miller44b25042010-07-02 13:35:01 +1000374 default:
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000375 fatal("%s: unsupported key type %s", __func__, sshkey_type(k));
Damien Miller44b25042010-07-02 13:35:01 +1000376 }
377 exit(0);
378}
379
380static void
381do_convert_to(struct passwd *pw)
382{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000383 struct sshkey *k;
Damien Miller44b25042010-07-02 13:35:01 +1000384 struct stat st;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000385 int r;
Damien Miller44b25042010-07-02 13:35:01 +1000386
387 if (!have_identity)
388 ask_filename(pw, "Enter file in which the key is");
389 if (stat(identity_file, &st) < 0)
390 fatal("%s: %s: %s", __progname, identity_file, strerror(errno));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000391 if ((r = sshkey_load_public(identity_file, &k, NULL)) != 0)
392 k = load_identity(identity_file);
Damien Miller44b25042010-07-02 13:35:01 +1000393 switch (convert_format) {
394 case FMT_RFC4716:
395 do_convert_to_ssh2(pw, k);
396 break;
397 case FMT_PKCS8:
398 do_convert_to_pkcs8(k);
399 break;
400 case FMT_PEM:
401 do_convert_to_pem(k);
402 break;
403 default:
404 fatal("%s: unknown key format %d", __func__, convert_format);
405 }
406 exit(0);
407}
408
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000409/*
410 * This is almost exactly the bignum1 encoding, but with 32 bit for length
411 * instead of 16.
412 */
Damien Miller44b25042010-07-02 13:35:01 +1000413static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000414buffer_get_bignum_bits(struct sshbuf *b, BIGNUM *value)
Damien Miller874d77b2000-10-14 16:23:11 +1100415{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000416 u_int bytes, bignum_bits;
417 int r;
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000418
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000419 if ((r = sshbuf_get_u32(b, &bignum_bits)) != 0)
420 fatal("%s: buffer error: %s", __func__, ssh_err(r));
421 bytes = (bignum_bits + 7) / 8;
422 if (sshbuf_len(b) < bytes)
423 fatal("%s: input buffer too small: need %d have %zu",
424 __func__, bytes, sshbuf_len(b));
425 if (BN_bin2bn(sshbuf_ptr(b), bytes, value) == NULL)
426 fatal("%s: BN_bin2bn failed", __func__);
427 if ((r = sshbuf_consume(b, bytes)) != 0)
428 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Miller874d77b2000-10-14 16:23:11 +1100429}
430
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000431static struct sshkey *
Ben Lindstrom90fd8142002-02-26 18:09:42 +0000432do_convert_private_ssh2_from_blob(u_char *blob, u_int blen)
Damien Miller874d77b2000-10-14 16:23:11 +1100433{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000434 struct sshbuf *b;
435 struct sshkey *key = NULL;
Damien Miller874d77b2000-10-14 16:23:11 +1100436 char *type, *cipher;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000437 u_char e1, e2, e3, *sig = NULL, data[] = "abcde12345";
438 int r, rlen, ktype;
439 u_int magic, i1, i2, i3, i4;
440 size_t slen;
Ben Lindstrome586c4c2001-06-25 05:04:58 +0000441 u_long e;
Damien Miller874d77b2000-10-14 16:23:11 +1100442
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000443 if ((b = sshbuf_from(blob, blen)) == NULL)
444 fatal("%s: sshbuf_from failed", __func__);
445 if ((r = sshbuf_get_u32(b, &magic)) != 0)
446 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Miller874d77b2000-10-14 16:23:11 +1100447
Damien Miller874d77b2000-10-14 16:23:11 +1100448 if (magic != SSH_COM_PRIVATE_KEY_MAGIC) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000449 error("bad magic 0x%x != 0x%x", magic,
450 SSH_COM_PRIVATE_KEY_MAGIC);
451 sshbuf_free(b);
Damien Miller874d77b2000-10-14 16:23:11 +1100452 return NULL;
453 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000454 if ((r = sshbuf_get_u32(b, &i1)) != 0 ||
455 (r = sshbuf_get_cstring(b, &type, NULL)) != 0 ||
456 (r = sshbuf_get_cstring(b, &cipher, NULL)) != 0 ||
457 (r = sshbuf_get_u32(b, &i2)) != 0 ||
458 (r = sshbuf_get_u32(b, &i3)) != 0 ||
459 (r = sshbuf_get_u32(b, &i4)) != 0)
460 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Miller80163902007-01-05 16:30:16 +1100461 debug("ignore (%d %d %d %d)", i1, i2, i3, i4);
Damien Miller874d77b2000-10-14 16:23:11 +1100462 if (strcmp(cipher, "none") != 0) {
463 error("unsupported cipher %s", cipher);
Darren Tuckera627d422013-06-02 07:31:17 +1000464 free(cipher);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000465 sshbuf_free(b);
Darren Tuckera627d422013-06-02 07:31:17 +1000466 free(type);
Damien Miller874d77b2000-10-14 16:23:11 +1100467 return NULL;
468 }
Darren Tuckera627d422013-06-02 07:31:17 +1000469 free(cipher);
Damien Miller874d77b2000-10-14 16:23:11 +1100470
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000471 if (strstr(type, "dsa")) {
472 ktype = KEY_DSA;
473 } else if (strstr(type, "rsa")) {
474 ktype = KEY_RSA;
475 } else {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000476 sshbuf_free(b);
Darren Tuckera627d422013-06-02 07:31:17 +1000477 free(type);
Damien Miller874d77b2000-10-14 16:23:11 +1100478 return NULL;
479 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000480 if ((key = sshkey_new_private(ktype)) == NULL)
481 fatal("key_new_private failed");
Darren Tuckera627d422013-06-02 07:31:17 +1000482 free(type);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000483
484 switch (key->type) {
485 case KEY_DSA:
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000486 buffer_get_bignum_bits(b, key->dsa->p);
487 buffer_get_bignum_bits(b, key->dsa->g);
488 buffer_get_bignum_bits(b, key->dsa->q);
489 buffer_get_bignum_bits(b, key->dsa->pub_key);
490 buffer_get_bignum_bits(b, key->dsa->priv_key);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000491 break;
492 case KEY_RSA:
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000493 if ((r = sshbuf_get_u8(b, &e1)) != 0 ||
494 (e1 < 30 && (r = sshbuf_get_u8(b, &e2)) != 0) ||
495 (e1 < 30 && (r = sshbuf_get_u8(b, &e3)) != 0))
496 fatal("%s: buffer error: %s", __func__, ssh_err(r));
497 e = e1;
Ben Lindstrom34f91882001-06-25 04:47:54 +0000498 debug("e %lx", e);
499 if (e < 30) {
500 e <<= 8;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000501 e += e2;
Ben Lindstrom34f91882001-06-25 04:47:54 +0000502 debug("e %lx", e);
503 e <<= 8;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000504 e += e3;
Ben Lindstrom34f91882001-06-25 04:47:54 +0000505 debug("e %lx", e);
506 }
507 if (!BN_set_word(key->rsa->e, e)) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000508 sshbuf_free(b);
509 sshkey_free(key);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000510 return NULL;
511 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000512 buffer_get_bignum_bits(b, key->rsa->d);
513 buffer_get_bignum_bits(b, key->rsa->n);
514 buffer_get_bignum_bits(b, key->rsa->iqmp);
515 buffer_get_bignum_bits(b, key->rsa->q);
516 buffer_get_bignum_bits(b, key->rsa->p);
517 if ((r = rsa_generate_additional_parameters(key->rsa)) != 0)
518 fatal("generate RSA parameters failed: %s", ssh_err(r));
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000519 break;
520 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000521 rlen = sshbuf_len(b);
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +0000522 if (rlen != 0)
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000523 error("do_convert_private_ssh2_from_blob: "
524 "remaining bytes in key blob %d", rlen);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000525 sshbuf_free(b);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000526
Ben Lindstrome586c4c2001-06-25 05:04:58 +0000527 /* try the key */
markus@openbsd.org76c9fbb2015-12-04 16:41:28 +0000528 if (sshkey_sign(key, &sig, &slen, data, sizeof(data), NULL, 0) != 0 ||
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000529 sshkey_verify(key, sig, slen, data, sizeof(data), 0) != 0) {
530 sshkey_free(key);
531 free(sig);
532 return NULL;
533 }
Darren Tuckera627d422013-06-02 07:31:17 +1000534 free(sig);
Damien Miller874d77b2000-10-14 16:23:11 +1100535 return key;
536}
537
Damien Miller8056a9d2006-03-15 12:05:40 +1100538static int
539get_line(FILE *fp, char *line, size_t len)
540{
541 int c;
542 size_t pos = 0;
543
544 line[0] = '\0';
545 while ((c = fgetc(fp)) != EOF) {
djm@openbsd.org3038a192015-04-17 13:19:22 +0000546 if (pos >= len - 1)
547 fatal("input line too long.");
Damien Miller90967402006-03-26 14:07:26 +1100548 switch (c) {
Damien Miller8056a9d2006-03-15 12:05:40 +1100549 case '\r':
550 c = fgetc(fp);
djm@openbsd.org3038a192015-04-17 13:19:22 +0000551 if (c != EOF && c != '\n' && ungetc(c, fp) == EOF)
552 fatal("unget: %s", strerror(errno));
Damien Miller8056a9d2006-03-15 12:05:40 +1100553 return pos;
554 case '\n':
555 return pos;
556 }
557 line[pos++] = c;
558 line[pos] = '\0';
559 }
Damien Miller6c7439f2007-01-05 16:29:55 +1100560 /* We reached EOF */
561 return -1;
Damien Miller8056a9d2006-03-15 12:05:40 +1100562}
563
Ben Lindstrombba81212001-06-25 05:01:22 +0000564static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000565do_convert_from_ssh2(struct passwd *pw, struct sshkey **k, int *private)
Damien Millereba71ba2000-04-29 23:57:08 +1000566{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000567 int r, blen, escaped = 0;
Ben Lindstrom155b9812002-04-02 20:26:26 +0000568 u_int len;
Damien Miller8056a9d2006-03-15 12:05:40 +1100569 char line[1024];
Ben Lindstrom9e0ddd42001-09-18 05:41:19 +0000570 u_char blob[8096];
Damien Millereba71ba2000-04-29 23:57:08 +1000571 char encoded[8096];
Damien Millereba71ba2000-04-29 23:57:08 +1000572 FILE *fp;
573
Damien Millerba3420a2010-06-26 09:39:07 +1000574 if ((fp = fopen(identity_file, "r")) == NULL)
575 fatal("%s: %s: %s", __progname, identity_file, strerror(errno));
Damien Millereba71ba2000-04-29 23:57:08 +1000576 encoded[0] = '\0';
Damien Miller8056a9d2006-03-15 12:05:40 +1100577 while ((blen = get_line(fp, line, sizeof(line))) != -1) {
Damien Miller746d1a62013-07-18 16:13:02 +1000578 if (blen > 0 && line[blen - 1] == '\\')
Damien Miller30c3d422000-05-09 11:02:59 +1000579 escaped++;
Damien Millereba71ba2000-04-29 23:57:08 +1000580 if (strncmp(line, "----", 4) == 0 ||
581 strstr(line, ": ") != NULL) {
Damien Miller874d77b2000-10-14 16:23:11 +1100582 if (strstr(line, SSH_COM_PRIVATE_BEGIN) != NULL)
Damien Miller44b25042010-07-02 13:35:01 +1000583 *private = 1;
Ben Lindstrome586c4c2001-06-25 05:04:58 +0000584 if (strstr(line, " END ") != NULL) {
585 break;
586 }
Ben Lindstrom30358602001-04-24 16:59:28 +0000587 /* fprintf(stderr, "ignore: %s", line); */
Damien Millereba71ba2000-04-29 23:57:08 +1000588 continue;
589 }
Damien Miller30c3d422000-05-09 11:02:59 +1000590 if (escaped) {
591 escaped--;
Ben Lindstrom30358602001-04-24 16:59:28 +0000592 /* fprintf(stderr, "escaped: %s", line); */
Damien Miller30c3d422000-05-09 11:02:59 +1000593 continue;
Damien Millereba71ba2000-04-29 23:57:08 +1000594 }
Damien Millereba71ba2000-04-29 23:57:08 +1000595 strlcat(encoded, line, sizeof(encoded));
596 }
Ben Lindstrom155b9812002-04-02 20:26:26 +0000597 len = strlen(encoded);
598 if (((len % 4) == 3) &&
599 (encoded[len-1] == '=') &&
600 (encoded[len-2] == '=') &&
601 (encoded[len-3] == '='))
602 encoded[len-3] = '\0';
Damien Miller4a8ed542002-01-22 23:33:31 +1100603 blen = uudecode(encoded, blob, sizeof(blob));
djm@openbsd.org3038a192015-04-17 13:19:22 +0000604 if (blen < 0)
605 fatal("uudecode failed.");
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000606 if (*private)
607 *k = do_convert_private_ssh2_from_blob(blob, blen);
djm@openbsd.org3038a192015-04-17 13:19:22 +0000608 else if ((r = sshkey_from_blob(blob, blen, k)) != 0)
609 fatal("decode blob failed: %s", ssh_err(r));
Damien Miller44b25042010-07-02 13:35:01 +1000610 fclose(fp);
611}
612
613static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000614do_convert_from_pkcs8(struct sshkey **k, int *private)
Damien Miller44b25042010-07-02 13:35:01 +1000615{
616 EVP_PKEY *pubkey;
617 FILE *fp;
618
619 if ((fp = fopen(identity_file, "r")) == NULL)
620 fatal("%s: %s: %s", __progname, identity_file, strerror(errno));
621 if ((pubkey = PEM_read_PUBKEY(fp, NULL, NULL, NULL)) == NULL) {
622 fatal("%s: %s is not a recognised public key format", __func__,
623 identity_file);
624 }
625 fclose(fp);
626 switch (EVP_PKEY_type(pubkey->type)) {
627 case EVP_PKEY_RSA:
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000628 if ((*k = sshkey_new(KEY_UNSPEC)) == NULL)
629 fatal("sshkey_new failed");
Damien Miller44b25042010-07-02 13:35:01 +1000630 (*k)->type = KEY_RSA;
631 (*k)->rsa = EVP_PKEY_get1_RSA(pubkey);
632 break;
633 case EVP_PKEY_DSA:
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000634 if ((*k = sshkey_new(KEY_UNSPEC)) == NULL)
635 fatal("sshkey_new failed");
Damien Miller44b25042010-07-02 13:35:01 +1000636 (*k)->type = KEY_DSA;
637 (*k)->dsa = EVP_PKEY_get1_DSA(pubkey);
638 break;
Damien Miller6af914a2010-09-10 11:39:26 +1000639#ifdef OPENSSL_HAS_ECC
Damien Millereb8b60e2010-08-31 22:41:14 +1000640 case EVP_PKEY_EC:
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000641 if ((*k = sshkey_new(KEY_UNSPEC)) == NULL)
642 fatal("sshkey_new failed");
Damien Millereb8b60e2010-08-31 22:41:14 +1000643 (*k)->type = KEY_ECDSA;
644 (*k)->ecdsa = EVP_PKEY_get1_EC_KEY(pubkey);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000645 (*k)->ecdsa_nid = sshkey_ecdsa_key_to_nid((*k)->ecdsa);
Damien Millereb8b60e2010-08-31 22:41:14 +1000646 break;
Damien Miller6af914a2010-09-10 11:39:26 +1000647#endif
Damien Miller44b25042010-07-02 13:35:01 +1000648 default:
649 fatal("%s: unsupported pubkey type %d", __func__,
650 EVP_PKEY_type(pubkey->type));
651 }
652 EVP_PKEY_free(pubkey);
653 return;
654}
655
656static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000657do_convert_from_pem(struct sshkey **k, int *private)
Damien Miller44b25042010-07-02 13:35:01 +1000658{
659 FILE *fp;
660 RSA *rsa;
661#ifdef notyet
662 DSA *dsa;
663#endif
664
665 if ((fp = fopen(identity_file, "r")) == NULL)
666 fatal("%s: %s: %s", __progname, identity_file, strerror(errno));
667 if ((rsa = PEM_read_RSAPublicKey(fp, NULL, NULL, NULL)) != NULL) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000668 if ((*k = sshkey_new(KEY_UNSPEC)) == NULL)
669 fatal("sshkey_new failed");
Damien Miller44b25042010-07-02 13:35:01 +1000670 (*k)->type = KEY_RSA;
671 (*k)->rsa = rsa;
672 fclose(fp);
673 return;
674 }
675#if notyet /* OpenSSH 0.9.8 lacks this function */
676 rewind(fp);
677 if ((dsa = PEM_read_DSAPublicKey(fp, NULL, NULL, NULL)) != NULL) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000678 if ((*k = sshkey_new(KEY_UNSPEC)) == NULL)
679 fatal("sshkey_new failed");
Damien Miller44b25042010-07-02 13:35:01 +1000680 (*k)->type = KEY_DSA;
681 (*k)->dsa = dsa;
682 fclose(fp);
683 return;
684 }
Damien Millereb8b60e2010-08-31 22:41:14 +1000685 /* XXX ECDSA */
Damien Miller44b25042010-07-02 13:35:01 +1000686#endif
687 fatal("%s: unrecognised raw private key format", __func__);
688}
689
690static void
691do_convert_from(struct passwd *pw)
692{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000693 struct sshkey *k = NULL;
694 int r, private = 0, ok = 0;
Damien Miller44b25042010-07-02 13:35:01 +1000695 struct stat st;
696
697 if (!have_identity)
698 ask_filename(pw, "Enter file in which the key is");
699 if (stat(identity_file, &st) < 0)
700 fatal("%s: %s: %s", __progname, identity_file, strerror(errno));
701
702 switch (convert_format) {
703 case FMT_RFC4716:
704 do_convert_from_ssh2(pw, &k, &private);
705 break;
706 case FMT_PKCS8:
707 do_convert_from_pkcs8(&k, &private);
708 break;
709 case FMT_PEM:
710 do_convert_from_pem(&k, &private);
711 break;
712 default:
713 fatal("%s: unknown key format %d", __func__, convert_format);
714 }
715
djm@openbsd.org7a2c3682015-01-30 00:59:19 +0000716 if (!private) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000717 if ((r = sshkey_write(k, stdout)) == 0)
718 ok = 1;
Damien Miller44b25042010-07-02 13:35:01 +1000719 if (ok)
720 fprintf(stdout, "\n");
djm@openbsd.org7a2c3682015-01-30 00:59:19 +0000721 } else {
Damien Miller44b25042010-07-02 13:35:01 +1000722 switch (k->type) {
723 case KEY_DSA:
724 ok = PEM_write_DSAPrivateKey(stdout, k->dsa, NULL,
725 NULL, 0, NULL, NULL);
726 break;
Damien Miller6af914a2010-09-10 11:39:26 +1000727#ifdef OPENSSL_HAS_ECC
Damien Millereb8b60e2010-08-31 22:41:14 +1000728 case KEY_ECDSA:
729 ok = PEM_write_ECPrivateKey(stdout, k->ecdsa, NULL,
730 NULL, 0, NULL, NULL);
731 break;
Damien Miller6af914a2010-09-10 11:39:26 +1000732#endif
Damien Miller44b25042010-07-02 13:35:01 +1000733 case KEY_RSA:
734 ok = PEM_write_RSAPrivateKey(stdout, k->rsa, NULL,
735 NULL, 0, NULL, NULL);
736 break;
737 default:
738 fatal("%s: unsupported key type %s", __func__,
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000739 sshkey_type(k));
Damien Miller44b25042010-07-02 13:35:01 +1000740 }
741 }
742
djm@openbsd.org3038a192015-04-17 13:19:22 +0000743 if (!ok)
744 fatal("key write failed");
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000745 sshkey_free(k);
Damien Millereba71ba2000-04-29 23:57:08 +1000746 exit(0);
747}
Damien Miller1f0311c2014-05-15 14:24:09 +1000748#endif
Damien Millereba71ba2000-04-29 23:57:08 +1000749
Ben Lindstrombba81212001-06-25 05:01:22 +0000750static void
Damien Millereba71ba2000-04-29 23:57:08 +1000751do_print_public(struct passwd *pw)
752{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000753 struct sshkey *prv;
Damien Millereba71ba2000-04-29 23:57:08 +1000754 struct stat st;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000755 int r;
Damien Millereba71ba2000-04-29 23:57:08 +1000756
757 if (!have_identity)
758 ask_filename(pw, "Enter file in which the key is");
djm@openbsd.org3038a192015-04-17 13:19:22 +0000759 if (stat(identity_file, &st) < 0)
760 fatal("%s: %s", identity_file, strerror(errno));
Ben Lindstromd78ae762001-06-05 20:35:09 +0000761 prv = load_identity(identity_file);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000762 if ((r = sshkey_write(prv, stdout)) != 0)
djm@openbsd.org3038a192015-04-17 13:19:22 +0000763 error("key_write failed: %s", ssh_err(r));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000764 sshkey_free(prv);
Damien Millereba71ba2000-04-29 23:57:08 +1000765 fprintf(stdout, "\n");
766 exit(0);
767}
768
Ben Lindstromcd392282001-07-04 03:44:03 +0000769static void
Damien Miller757f34e2010-08-05 13:05:31 +1000770do_download(struct passwd *pw)
Ben Lindstromcd392282001-07-04 03:44:03 +0000771{
Damien Miller7ea845e2010-02-12 09:21:02 +1100772#ifdef ENABLE_PKCS11
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000773 struct sshkey **keys = NULL;
Damien Miller7ea845e2010-02-12 09:21:02 +1100774 int i, nkeys;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000775 enum sshkey_fp_rep rep;
djm@openbsd.org56d1c832014-12-21 22:27:55 +0000776 int fptype;
Damien Millerec77c952013-01-09 15:58:00 +1100777 char *fp, *ra;
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000778
djm@openbsd.org56d1c832014-12-21 22:27:55 +0000779 fptype = print_bubblebabble ? SSH_DIGEST_SHA1 : fingerprint_hash;
780 rep = print_bubblebabble ? SSH_FP_BUBBLEBABBLE : SSH_FP_DEFAULT;
Damien Miller1422c082013-01-09 16:44:54 +1100781
Damien Miller7ea845e2010-02-12 09:21:02 +1100782 pkcs11_init(0);
783 nkeys = pkcs11_add_provider(pkcs11provider, NULL, &keys);
784 if (nkeys <= 0)
785 fatal("cannot read public key from pkcs11");
786 for (i = 0; i < nkeys; i++) {
Damien Millerec77c952013-01-09 15:58:00 +1100787 if (print_fingerprint) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000788 fp = sshkey_fingerprint(keys[i], fptype, rep);
789 ra = sshkey_fingerprint(keys[i], fingerprint_hash,
Damien Millerec77c952013-01-09 15:58:00 +1100790 SSH_FP_RANDOMART);
djm@openbsd.org9ce86c92015-01-28 22:36:00 +0000791 if (fp == NULL || ra == NULL)
792 fatal("%s: sshkey_fingerprint fail", __func__);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000793 printf("%u %s %s (PKCS11 key)\n", sshkey_size(keys[i]),
794 fp, sshkey_type(keys[i]));
Damien Millerec77c952013-01-09 15:58:00 +1100795 if (log_level >= SYSLOG_LEVEL_VERBOSE)
796 printf("%s\n", ra);
Darren Tuckera627d422013-06-02 07:31:17 +1000797 free(ra);
798 free(fp);
Damien Millerec77c952013-01-09 15:58:00 +1100799 } else {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000800 (void) sshkey_write(keys[i], stdout); /* XXX check */
Damien Millerec77c952013-01-09 15:58:00 +1100801 fprintf(stdout, "\n");
802 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000803 sshkey_free(keys[i]);
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000804 }
Darren Tuckera627d422013-06-02 07:31:17 +1000805 free(keys);
Damien Miller7ea845e2010-02-12 09:21:02 +1100806 pkcs11_terminate();
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000807 exit(0);
Damien Miller7ea845e2010-02-12 09:21:02 +1100808#else
809 fatal("no pkcs11 support");
810#endif /* ENABLE_PKCS11 */
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000811}
Ben Lindstromcd392282001-07-04 03:44:03 +0000812
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000813static struct sshkey *
814try_read_key(char **cpp)
815{
816 struct sshkey *ret;
817 int r;
818
819 if ((ret = sshkey_new(KEY_RSA1)) == NULL)
820 fatal("sshkey_new failed");
821 /* Try RSA1 */
822 if ((r = sshkey_read(ret, cpp)) == 0)
823 return ret;
824 /* Try modern */
825 sshkey_free(ret);
826 if ((ret = sshkey_new(KEY_UNSPEC)) == NULL)
827 fatal("sshkey_new failed");
828 if ((r = sshkey_read(ret, cpp)) == 0)
829 return ret;
830 /* Not a key */
831 sshkey_free(ret);
832 return NULL;
833}
834
835static void
836fingerprint_one_key(const struct sshkey *public, const char *comment)
837{
838 char *fp = NULL, *ra = NULL;
839 enum sshkey_fp_rep rep;
840 int fptype;
841
842 fptype = print_bubblebabble ? SSH_DIGEST_SHA1 : fingerprint_hash;
843 rep = print_bubblebabble ? SSH_FP_BUBBLEBABBLE : SSH_FP_DEFAULT;
844 fp = sshkey_fingerprint(public, fptype, rep);
845 ra = sshkey_fingerprint(public, fingerprint_hash, SSH_FP_RANDOMART);
846 if (fp == NULL || ra == NULL)
847 fatal("%s: sshkey_fingerprint failed", __func__);
djm@openbsd.orga287c5a2017-02-10 03:36:40 +0000848 mprintf("%u %s %s (%s)\n", sshkey_size(public), fp,
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000849 comment ? comment : "no comment", sshkey_type(public));
850 if (log_level >= SYSLOG_LEVEL_VERBOSE)
851 printf("%s\n", ra);
852 free(ra);
853 free(fp);
854}
855
856static void
857fingerprint_private(const char *path)
858{
859 struct stat st;
860 char *comment = NULL;
861 struct sshkey *public = NULL;
862 int r;
863
864 if (stat(identity_file, &st) < 0)
865 fatal("%s: %s", path, strerror(errno));
djm@openbsd.orgbcb7bc72015-11-18 08:37:28 +0000866 if ((r = sshkey_load_public(path, &public, &comment)) != 0) {
867 debug("load public \"%s\": %s", path, ssh_err(r));
868 if ((r = sshkey_load_private(path, NULL,
869 &public, &comment)) != 0) {
870 debug("load private \"%s\": %s", path, ssh_err(r));
871 fatal("%s is not a key file.", path);
872 }
873 }
874
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000875 fingerprint_one_key(public, comment);
876 sshkey_free(public);
877 free(comment);
878}
879
Ben Lindstrombba81212001-06-25 05:01:22 +0000880static void
Damien Miller10f6f6b1999-11-17 17:29:08 +1100881do_fingerprint(struct passwd *pw)
882{
Damien Miller98c7ad62000-03-09 21:27:49 +1100883 FILE *f;
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000884 struct sshkey *public = NULL;
djm@openbsd.orgcce6a362015-12-11 03:19:09 +0000885 char *comment = NULL, *cp, *ep, line[SSH_MAX_PUBKEY_BYTES];
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000886 int i, invalid = 1;
887 const char *path;
djm@openbsd.org1a31d022016-05-02 08:49:03 +0000888 u_long lnum = 0;
Damien Miller10f6f6b1999-11-17 17:29:08 +1100889
Damien Miller95def091999-11-25 00:26:21 +1100890 if (!have_identity)
891 ask_filename(pw, "Enter file in which the key is");
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000892 path = identity_file;
Damien Miller98c7ad62000-03-09 21:27:49 +1100893
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000894 if (strcmp(identity_file, "-") == 0) {
895 f = stdin;
896 path = "(stdin)";
897 } else if ((f = fopen(path, "r")) == NULL)
898 fatal("%s: %s: %s", __progname, path, strerror(errno));
Damien Miller98c7ad62000-03-09 21:27:49 +1100899
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000900 while (read_keyfile_line(f, path, line, sizeof(line), &lnum) == 0) {
901 cp = line;
902 cp[strcspn(cp, "\n")] = '\0';
903 /* Trim leading space and comments */
904 cp = line + strspn(line, " \t");
905 if (*cp == '#' || *cp == '\0')
906 continue;
907
908 /*
909 * Input may be plain keys, private keys, authorized_keys
910 * or known_hosts.
911 */
912
913 /*
914 * Try private keys first. Assume a key is private if
915 * "SSH PRIVATE KEY" appears on the first line and we're
916 * not reading from stdin (XXX support private keys on stdin).
917 */
918 if (lnum == 1 && strcmp(identity_file, "-") != 0 &&
djm@openbsd.orgbcb7bc72015-11-18 08:37:28 +0000919 strstr(cp, "PRIVATE KEY") != NULL) {
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000920 fclose(f);
921 fingerprint_private(path);
922 exit(0);
923 }
924
925 /*
926 * If it's not a private key, then this must be prepared to
927 * accept a public key prefixed with a hostname or options.
928 * Try a bare key first, otherwise skip the leading stuff.
929 */
930 if ((public = try_read_key(&cp)) == NULL) {
931 i = strtol(cp, &ep, 10);
932 if (i == 0 || ep == NULL ||
933 (*ep != ' ' && *ep != '\t')) {
934 int quoted = 0;
935
936 comment = cp;
937 for (; *cp && (quoted || (*cp != ' ' &&
938 *cp != '\t')); cp++) {
939 if (*cp == '\\' && cp[1] == '"')
940 cp++; /* Skip both */
941 else if (*cp == '"')
942 quoted = !quoted;
943 }
944 if (!*cp)
945 continue;
946 *cp++ = '\0';
947 }
948 }
949 /* Retry after parsing leading hostname/key options */
950 if (public == NULL && (public = try_read_key(&cp)) == NULL) {
djm@openbsd.org1a31d022016-05-02 08:49:03 +0000951 debug("%s:%lu: not a public key", path, lnum);
Damien Millerba3420a2010-06-26 09:39:07 +1000952 continue;
Damien Miller95def091999-11-25 00:26:21 +1100953 }
Damien Millerba3420a2010-06-26 09:39:07 +1000954
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000955 /* Find trailing comment, if any */
956 for (; *cp == ' ' || *cp == '\t'; cp++)
Damien Millerba3420a2010-06-26 09:39:07 +1000957 ;
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000958 if (*cp != '\0' && *cp != '#')
Damien Millerba3420a2010-06-26 09:39:07 +1000959 comment = cp;
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000960
961 fingerprint_one_key(public, comment);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000962 sshkey_free(public);
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000963 invalid = 0; /* One good key in the file is sufficient */
Damien Miller95def091999-11-25 00:26:21 +1100964 }
Damien Millerba3420a2010-06-26 09:39:07 +1000965 fclose(f);
966
djm@openbsd.org3038a192015-04-17 13:19:22 +0000967 if (invalid)
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000968 fatal("%s is not a public key file.", path);
Damien Miller95def091999-11-25 00:26:21 +1100969 exit(0);
Damien Miller10f6f6b1999-11-17 17:29:08 +1100970}
971
Damien Miller4b42d7f2005-03-01 21:48:35 +1100972static void
Damien Miller58f1baf2011-05-05 14:06:15 +1000973do_gen_all_hostkeys(struct passwd *pw)
974{
975 struct {
976 char *key_type;
977 char *key_type_display;
978 char *path;
979 } key_types[] = {
djm@openbsd.org5c27e3b2015-03-23 06:06:38 +0000980#ifdef WITH_OPENSSL
981#ifdef WITH_SSH1
Damien Miller58f1baf2011-05-05 14:06:15 +1000982 { "rsa1", "RSA1", _PATH_HOST_KEY_FILE },
djm@openbsd.org5c27e3b2015-03-23 06:06:38 +0000983#endif /* WITH_SSH1 */
Damien Miller58f1baf2011-05-05 14:06:15 +1000984 { "rsa", "RSA" ,_PATH_HOST_RSA_KEY_FILE },
985 { "dsa", "DSA", _PATH_HOST_DSA_KEY_FILE },
Damien Millerb56e4932012-02-06 07:41:27 +1100986#ifdef OPENSSL_HAS_ECC
Damien Miller58f1baf2011-05-05 14:06:15 +1000987 { "ecdsa", "ECDSA",_PATH_HOST_ECDSA_KEY_FILE },
djm@openbsd.org5c27e3b2015-03-23 06:06:38 +0000988#endif /* OPENSSL_HAS_ECC */
989#endif /* WITH_OPENSSL */
Damien Miller5be9d9e2013-12-07 11:24:01 +1100990 { "ed25519", "ED25519",_PATH_HOST_ED25519_KEY_FILE },
Damien Miller58f1baf2011-05-05 14:06:15 +1000991 { NULL, NULL, NULL }
992 };
993
994 int first = 0;
995 struct stat st;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000996 struct sshkey *private, *public;
Damien Miller58f1baf2011-05-05 14:06:15 +1000997 char comment[1024];
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000998 int i, type, fd, r;
Damien Miller58f1baf2011-05-05 14:06:15 +1000999 FILE *f;
1000
1001 for (i = 0; key_types[i].key_type; i++) {
1002 if (stat(key_types[i].path, &st) == 0)
1003 continue;
1004 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));
1007 first = 0;
1008 continue;
1009 }
1010
1011 if (first == 0) {
1012 first = 1;
1013 printf("%s: generating new host keys: ", __progname);
1014 }
1015 printf("%s ", key_types[i].key_type_display);
1016 fflush(stdout);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001017 type = sshkey_type_from_name(key_types[i].key_type);
Damien Miller58f1baf2011-05-05 14:06:15 +10001018 strlcpy(identity_file, key_types[i].path, sizeof(identity_file));
1019 bits = 0;
djm@openbsd.org7efb4552015-01-18 13:22:28 +00001020 type_bits_valid(type, NULL, &bits);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001021 if ((r = sshkey_generate(type, bits, &private)) != 0) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00001022 error("key_generate failed: %s", ssh_err(r));
Damien Miller58f1baf2011-05-05 14:06:15 +10001023 first = 0;
1024 continue;
1025 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001026 if ((r = sshkey_from_private(private, &public)) != 0)
1027 fatal("sshkey_from_private failed: %s", ssh_err(r));
Damien Miller58f1baf2011-05-05 14:06:15 +10001028 snprintf(comment, sizeof comment, "%s@%s", pw->pw_name,
1029 hostname);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001030 if ((r = sshkey_save_private(private, identity_file, "",
1031 comment, use_new_format, new_format_cipher, rounds)) != 0) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00001032 error("Saving key \"%s\" failed: %s",
1033 identity_file, ssh_err(r));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001034 sshkey_free(private);
1035 sshkey_free(public);
Damien Miller58f1baf2011-05-05 14:06:15 +10001036 first = 0;
1037 continue;
1038 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001039 sshkey_free(private);
Damien Miller58f1baf2011-05-05 14:06:15 +10001040 strlcat(identity_file, ".pub", sizeof(identity_file));
1041 fd = open(identity_file, O_WRONLY | O_CREAT | O_TRUNC, 0644);
1042 if (fd == -1) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00001043 error("Could not save your public key in %s",
Damien Miller58f1baf2011-05-05 14:06:15 +10001044 identity_file);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001045 sshkey_free(public);
Damien Miller58f1baf2011-05-05 14:06:15 +10001046 first = 0;
1047 continue;
1048 }
1049 f = fdopen(fd, "w");
1050 if (f == NULL) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00001051 error("fdopen %s failed", identity_file);
doug@openbsd.org7df88182014-08-21 01:08:52 +00001052 close(fd);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001053 sshkey_free(public);
Damien Miller58f1baf2011-05-05 14:06:15 +10001054 first = 0;
1055 continue;
1056 }
djm@openbsd.orgbb8b4422015-01-16 15:55:07 +00001057 if ((r = sshkey_write(public, f)) != 0) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00001058 error("write key failed: %s", ssh_err(r));
doug@openbsd.org7df88182014-08-21 01:08:52 +00001059 fclose(f);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001060 sshkey_free(public);
Damien Miller58f1baf2011-05-05 14:06:15 +10001061 first = 0;
1062 continue;
1063 }
1064 fprintf(f, " %s\n", comment);
1065 fclose(f);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001066 sshkey_free(public);
Damien Miller58f1baf2011-05-05 14:06:15 +10001067
1068 }
1069 if (first != 0)
1070 printf("\n");
1071}
1072
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001073struct known_hosts_ctx {
djm@openbsd.org2b3c3c72015-01-18 21:51:19 +00001074 const char *host; /* Hostname searched for in find/delete case */
1075 FILE *out; /* Output file, stdout for find_hosts case */
1076 int has_unhashed; /* When hashing, original had unhashed hosts */
1077 int found_key; /* For find/delete, host was found */
1078 int invalid; /* File contained invalid items; don't delete */
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001079};
1080
1081static int
1082known_hosts_hash(struct hostkey_foreach_line *l, void *_ctx)
Damien Miller4b42d7f2005-03-01 21:48:35 +11001083{
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001084 struct known_hosts_ctx *ctx = (struct known_hosts_ctx *)_ctx;
1085 char *hashed, *cp, *hosts, *ohosts;
1086 int has_wild = l->hosts && strcspn(l->hosts, "*?!") != strlen(l->hosts);
djm@openbsd.org12d37672017-03-03 06:13:11 +00001087 int was_hashed = l->hosts[0] == HASH_DELIM;
Darren Tucker0f7e9102008-06-08 12:54:29 +10001088
djm@openbsd.org6c5c9492015-02-16 22:08:57 +00001089 switch (l->status) {
1090 case HKF_STATUS_OK:
1091 case HKF_STATUS_MATCHED:
1092 /*
1093 * Don't hash hosts already already hashed, with wildcard
1094 * characters or a CA/revocation marker.
1095 */
djm@openbsd.org12d37672017-03-03 06:13:11 +00001096 if (was_hashed || has_wild || l->marker != MRK_NONE) {
djm@openbsd.org6c5c9492015-02-16 22:08:57 +00001097 fprintf(ctx->out, "%s\n", l->line);
1098 if (has_wild && !find_host) {
dtucker@openbsd.orgd0723702017-03-06 00:44:51 +00001099 logit("%s:%lu: ignoring host name "
djm@openbsd.org3038a192015-04-17 13:19:22 +00001100 "with wildcard: %.64s", l->path,
djm@openbsd.org6c5c9492015-02-16 22:08:57 +00001101 l->linenum, l->hosts);
1102 }
1103 return 0;
1104 }
1105 /*
1106 * Split any comma-separated hostnames from the host list,
1107 * hash and store separately.
1108 */
1109 ohosts = hosts = xstrdup(l->hosts);
1110 while ((cp = strsep(&hosts, ",")) != NULL && *cp != '\0') {
1111 if ((hashed = host_hash(cp, NULL, 0)) == NULL)
1112 fatal("hash_host failed");
1113 fprintf(ctx->out, "%s %s\n", hashed, l->rawkey);
1114 ctx->has_unhashed = 1;
1115 }
1116 free(ohosts);
1117 return 0;
1118 case HKF_STATUS_INVALID:
1119 /* Retain invalid lines, but mark file as invalid. */
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001120 ctx->invalid = 1;
dtucker@openbsd.orgd0723702017-03-06 00:44:51 +00001121 logit("%s:%lu: invalid line", l->path, l->linenum);
djm@openbsd.org6c5c9492015-02-16 22:08:57 +00001122 /* FALLTHROUGH */
1123 default:
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001124 fprintf(ctx->out, "%s\n", l->line);
1125 return 0;
Darren Tucker0f7e9102008-06-08 12:54:29 +10001126 }
djm@openbsd.org6c5c9492015-02-16 22:08:57 +00001127 /* NOTREACHED */
1128 return -1;
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001129}
1130
1131static int
1132known_hosts_find_delete(struct hostkey_foreach_line *l, void *_ctx)
1133{
1134 struct known_hosts_ctx *ctx = (struct known_hosts_ctx *)_ctx;
djm@openbsd.org4739e8d2015-05-21 12:01:19 +00001135 enum sshkey_fp_rep rep;
1136 int fptype;
1137 char *fp;
1138
1139 fptype = print_bubblebabble ? SSH_DIGEST_SHA1 : fingerprint_hash;
1140 rep = print_bubblebabble ? SSH_FP_BUBBLEBABBLE : SSH_FP_DEFAULT;
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001141
djm@openbsd.org6c5c9492015-02-16 22:08:57 +00001142 if (l->status == HKF_STATUS_MATCHED) {
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001143 if (delete_host) {
1144 if (l->marker != MRK_NONE) {
1145 /* Don't remove CA and revocation lines */
1146 fprintf(ctx->out, "%s\n", l->line);
1147 } else {
1148 /*
1149 * Hostname matches and has no CA/revoke
1150 * marker, delete it by *not* writing the
1151 * line to ctx->out.
1152 */
1153 ctx->found_key = 1;
1154 if (!quiet)
dtucker@openbsd.orgd0723702017-03-06 00:44:51 +00001155 printf("# Host %s found: line %lu\n",
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001156 ctx->host, l->linenum);
1157 }
1158 return 0;
1159 } else if (find_host) {
1160 ctx->found_key = 1;
1161 if (!quiet) {
dtucker@openbsd.orgd0723702017-03-06 00:44:51 +00001162 printf("# Host %s found: line %lu %s\n",
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001163 ctx->host,
1164 l->linenum, l->marker == MRK_CA ? "CA" :
1165 (l->marker == MRK_REVOKE ? "REVOKED" : ""));
1166 }
1167 if (hash_hosts)
1168 known_hosts_hash(l, ctx);
djm@openbsd.org4739e8d2015-05-21 12:01:19 +00001169 else if (print_fingerprint) {
1170 fp = sshkey_fingerprint(l->key, fptype, rep);
djm@openbsd.orga287c5a2017-02-10 03:36:40 +00001171 mprintf("%s %s %s %s\n", ctx->host,
djm@openbsd.org4739e8d2015-05-21 12:01:19 +00001172 sshkey_type(l->key), fp, l->comment);
1173 free(fp);
1174 } else
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001175 fprintf(ctx->out, "%s\n", l->line);
1176 return 0;
1177 }
1178 } else if (delete_host) {
1179 /* Retain non-matching hosts when deleting */
1180 if (l->status == HKF_STATUS_INVALID) {
1181 ctx->invalid = 1;
dtucker@openbsd.orgd0723702017-03-06 00:44:51 +00001182 logit("%s:%lu: invalid line", l->path, l->linenum);
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001183 }
1184 fprintf(ctx->out, "%s\n", l->line);
1185 }
1186 return 0;
Damien Miller4b42d7f2005-03-01 21:48:35 +11001187}
1188
1189static void
1190do_known_hosts(struct passwd *pw, const char *name)
1191{
deraadt@openbsd.orgd2099de2015-01-19 00:32:54 +00001192 char *cp, tmp[PATH_MAX], old[PATH_MAX];
djm@openbsd.org2b3c3c72015-01-18 21:51:19 +00001193 int r, fd, oerrno, inplace = 0;
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001194 struct known_hosts_ctx ctx;
djm@openbsd.org4739e8d2015-05-21 12:01:19 +00001195 u_int foreach_options;
Damien Miller4b42d7f2005-03-01 21:48:35 +11001196
1197 if (!have_identity) {
1198 cp = tilde_expand_filename(_PATH_SSH_USER_HOSTFILE, pw->pw_uid);
1199 if (strlcpy(identity_file, cp, sizeof(identity_file)) >=
1200 sizeof(identity_file))
1201 fatal("Specified known hosts path too long");
Darren Tuckera627d422013-06-02 07:31:17 +10001202 free(cp);
Damien Miller4b42d7f2005-03-01 21:48:35 +11001203 have_identity = 1;
1204 }
Damien Miller4b42d7f2005-03-01 21:48:35 +11001205
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001206 memset(&ctx, 0, sizeof(ctx));
1207 ctx.out = stdout;
1208 ctx.host = name;
1209
Damien Miller4b42d7f2005-03-01 21:48:35 +11001210 /*
1211 * Find hosts goes to stdout, hash and deletions happen in-place
1212 * A corner case is ssh-keygen -HF foo, which should go to stdout
1213 */
1214 if (!find_host && (hash_hosts || delete_host)) {
1215 if (strlcpy(tmp, identity_file, sizeof(tmp)) >= sizeof(tmp) ||
1216 strlcat(tmp, ".XXXXXXXXXX", sizeof(tmp)) >= sizeof(tmp) ||
1217 strlcpy(old, identity_file, sizeof(old)) >= sizeof(old) ||
1218 strlcat(old, ".old", sizeof(old)) >= sizeof(old))
1219 fatal("known_hosts path too long");
1220 umask(077);
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001221 if ((fd = mkstemp(tmp)) == -1)
Damien Miller4b42d7f2005-03-01 21:48:35 +11001222 fatal("mkstemp: %s", strerror(errno));
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001223 if ((ctx.out = fdopen(fd, "w")) == NULL) {
1224 oerrno = errno;
Damien Miller4b42d7f2005-03-01 21:48:35 +11001225 unlink(tmp);
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001226 fatal("fdopen: %s", strerror(oerrno));
Damien Miller4b42d7f2005-03-01 21:48:35 +11001227 }
djm@openbsd.org2b3c3c72015-01-18 21:51:19 +00001228 inplace = 1;
Damien Miller4b42d7f2005-03-01 21:48:35 +11001229 }
1230
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001231 /* XXX support identity_file == "-" for stdin */
djm@openbsd.org4739e8d2015-05-21 12:01:19 +00001232 foreach_options = find_host ? HKF_WANT_MATCH : 0;
1233 foreach_options |= print_fingerprint ? HKF_WANT_PARSE_KEY : 0;
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001234 if ((r = hostkeys_foreach(identity_file,
1235 hash_hosts ? known_hosts_hash : known_hosts_find_delete, &ctx,
deraadt@openbsd.org6da413c2015-11-28 06:50:52 +00001236 name, NULL, foreach_options)) != 0) {
1237 if (inplace)
1238 unlink(tmp);
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001239 fatal("%s: hostkeys_foreach failed: %s", __func__, ssh_err(r));
deraadt@openbsd.org6da413c2015-11-28 06:50:52 +00001240 }
Damien Miller4b42d7f2005-03-01 21:48:35 +11001241
djm@openbsd.org2b3c3c72015-01-18 21:51:19 +00001242 if (inplace)
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001243 fclose(ctx.out);
Damien Miller0a80ca12010-02-27 07:55:05 +11001244
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001245 if (ctx.invalid) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00001246 error("%s is not a valid known_hosts file.", identity_file);
djm@openbsd.org2b3c3c72015-01-18 21:51:19 +00001247 if (inplace) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00001248 error("Not replacing existing known_hosts "
1249 "file because of errors");
Damien Miller4b42d7f2005-03-01 21:48:35 +11001250 unlink(tmp);
1251 }
1252 exit(1);
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001253 } else if (delete_host && !ctx.found_key) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00001254 logit("Host %s not found in %s", name, identity_file);
djm@openbsd.orgc8376432015-08-19 23:17:51 +00001255 if (inplace)
1256 unlink(tmp);
djm@openbsd.org2b3c3c72015-01-18 21:51:19 +00001257 } else if (inplace) {
Damien Miller4b42d7f2005-03-01 21:48:35 +11001258 /* Backup existing file */
1259 if (unlink(old) == -1 && errno != ENOENT)
1260 fatal("unlink %.100s: %s", old, strerror(errno));
1261 if (link(identity_file, old) == -1)
1262 fatal("link %.100s to %.100s: %s", identity_file, old,
1263 strerror(errno));
1264 /* Move new one into place */
1265 if (rename(tmp, identity_file) == -1) {
1266 error("rename\"%s\" to \"%s\": %s", tmp, identity_file,
1267 strerror(errno));
1268 unlink(tmp);
1269 unlink(old);
1270 exit(1);
1271 }
1272
djm@openbsd.org3038a192015-04-17 13:19:22 +00001273 printf("%s updated.\n", identity_file);
1274 printf("Original contents retained as %s\n", old);
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001275 if (ctx.has_unhashed) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00001276 logit("WARNING: %s contains unhashed entries", old);
1277 logit("Delete this file to ensure privacy "
1278 "of hostnames");
Damien Miller4b42d7f2005-03-01 21:48:35 +11001279 }
1280 }
1281
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001282 exit (find_host && !ctx.found_key);
Damien Miller4b42d7f2005-03-01 21:48:35 +11001283}
1284
Damien Miller95def091999-11-25 00:26:21 +11001285/*
1286 * Perform changing a passphrase. The argument is the passwd structure
1287 * for the current user.
1288 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001289static void
Damien Miller10f6f6b1999-11-17 17:29:08 +11001290do_change_passphrase(struct passwd *pw)
1291{
Damien Miller95def091999-11-25 00:26:21 +11001292 char *comment;
1293 char *old_passphrase, *passphrase1, *passphrase2;
1294 struct stat st;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001295 struct sshkey *private;
1296 int r;
Damien Miller10f6f6b1999-11-17 17:29:08 +11001297
Damien Miller95def091999-11-25 00:26:21 +11001298 if (!have_identity)
1299 ask_filename(pw, "Enter file in which the key is");
djm@openbsd.org3038a192015-04-17 13:19:22 +00001300 if (stat(identity_file, &st) < 0)
1301 fatal("%s: %s", identity_file, strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +11001302 /* Try to load the file with empty passphrase. */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001303 r = sshkey_load_private(identity_file, "", &private, &comment);
1304 if (r == SSH_ERR_KEY_WRONG_PASSPHRASE) {
Damien Miller95def091999-11-25 00:26:21 +11001305 if (identity_passphrase)
1306 old_passphrase = xstrdup(identity_passphrase);
1307 else
Ben Lindstrom949974b2001-06-25 05:20:31 +00001308 old_passphrase =
1309 read_passphrase("Enter old passphrase: ",
1310 RP_ALLOW_STDIN);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001311 r = sshkey_load_private(identity_file, old_passphrase,
1312 &private, &comment);
Damien Millera5103f42014-02-04 11:20:14 +11001313 explicit_bzero(old_passphrase, strlen(old_passphrase));
Darren Tuckera627d422013-06-02 07:31:17 +10001314 free(old_passphrase);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001315 if (r != 0)
1316 goto badkey;
1317 } else if (r != 0) {
1318 badkey:
djm@openbsd.org3038a192015-04-17 13:19:22 +00001319 fatal("Failed to load key %s: %s", identity_file, ssh_err(r));
Damien Miller95def091999-11-25 00:26:21 +11001320 }
djm@openbsd.orgf43d1722015-02-26 20:45:47 +00001321 if (comment)
djm@openbsd.orga287c5a2017-02-10 03:36:40 +00001322 mprintf("Key has comment '%s'\n", comment);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001323
Damien Miller95def091999-11-25 00:26:21 +11001324 /* Ask the new passphrase (twice). */
1325 if (identity_new_passphrase) {
1326 passphrase1 = xstrdup(identity_new_passphrase);
1327 passphrase2 = NULL;
1328 } else {
1329 passphrase1 =
Ben Lindstrom949974b2001-06-25 05:20:31 +00001330 read_passphrase("Enter new passphrase (empty for no "
1331 "passphrase): ", RP_ALLOW_STDIN);
1332 passphrase2 = read_passphrase("Enter same passphrase again: ",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001333 RP_ALLOW_STDIN);
Damien Miller95def091999-11-25 00:26:21 +11001334
1335 /* Verify that they are the same. */
1336 if (strcmp(passphrase1, passphrase2) != 0) {
Damien Millera5103f42014-02-04 11:20:14 +11001337 explicit_bzero(passphrase1, strlen(passphrase1));
1338 explicit_bzero(passphrase2, strlen(passphrase2));
Darren Tuckera627d422013-06-02 07:31:17 +10001339 free(passphrase1);
1340 free(passphrase2);
Damien Miller95def091999-11-25 00:26:21 +11001341 printf("Pass phrases do not match. Try again.\n");
1342 exit(1);
1343 }
1344 /* Destroy the other copy. */
Damien Millera5103f42014-02-04 11:20:14 +11001345 explicit_bzero(passphrase2, strlen(passphrase2));
Darren Tuckera627d422013-06-02 07:31:17 +10001346 free(passphrase2);
Damien Miller95def091999-11-25 00:26:21 +11001347 }
1348
1349 /* Save the file using the new passphrase. */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001350 if ((r = sshkey_save_private(private, identity_file, passphrase1,
1351 comment, use_new_format, new_format_cipher, rounds)) != 0) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00001352 error("Saving key \"%s\" failed: %s.",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001353 identity_file, ssh_err(r));
Damien Millera5103f42014-02-04 11:20:14 +11001354 explicit_bzero(passphrase1, strlen(passphrase1));
Darren Tuckera627d422013-06-02 07:31:17 +10001355 free(passphrase1);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001356 sshkey_free(private);
Darren Tuckera627d422013-06-02 07:31:17 +10001357 free(comment);
Damien Miller95def091999-11-25 00:26:21 +11001358 exit(1);
1359 }
1360 /* Destroy the passphrase and the copy of the key in memory. */
Damien Millera5103f42014-02-04 11:20:14 +11001361 explicit_bzero(passphrase1, strlen(passphrase1));
Darren Tuckera627d422013-06-02 07:31:17 +10001362 free(passphrase1);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001363 sshkey_free(private); /* Destroys contents */
Darren Tuckera627d422013-06-02 07:31:17 +10001364 free(comment);
Damien Miller95def091999-11-25 00:26:21 +11001365
1366 printf("Your identification has been saved with the new passphrase.\n");
1367 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001368}
1369
Damien Miller37876e92003-05-15 10:19:46 +10001370/*
1371 * Print the SSHFP RR.
1372 */
Damien Millercb314822006-03-26 13:48:01 +11001373static int
1374do_print_resource_record(struct passwd *pw, char *fname, char *hname)
Damien Miller37876e92003-05-15 10:19:46 +10001375{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001376 struct sshkey *public;
Damien Miller37876e92003-05-15 10:19:46 +10001377 char *comment = NULL;
1378 struct stat st;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001379 int r;
Damien Miller37876e92003-05-15 10:19:46 +10001380
Damien Millercb314822006-03-26 13:48:01 +11001381 if (fname == NULL)
Damien Miller5bb88332013-07-18 16:13:37 +10001382 fatal("%s: no filename", __func__);
Damien Millercb314822006-03-26 13:48:01 +11001383 if (stat(fname, &st) < 0) {
1384 if (errno == ENOENT)
1385 return 0;
djm@openbsd.org3038a192015-04-17 13:19:22 +00001386 fatal("%s: %s", fname, strerror(errno));
Damien Miller37876e92003-05-15 10:19:46 +10001387 }
djm@openbsd.org3038a192015-04-17 13:19:22 +00001388 if ((r = sshkey_load_public(fname, &public, &comment)) != 0)
1389 fatal("Failed to read v2 public key from \"%s\": %s.",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001390 fname, ssh_err(r));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001391 export_dns_rr(hname, public, stdout, print_generic);
1392 sshkey_free(public);
1393 free(comment);
1394 return 1;
Damien Miller37876e92003-05-15 10:19:46 +10001395}
Damien Miller37876e92003-05-15 10:19:46 +10001396
Damien Miller95def091999-11-25 00:26:21 +11001397/*
1398 * Change the comment of a private key file.
1399 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001400static void
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001401do_change_comment(struct passwd *pw)
1402{
Ben Lindstrom5fc62702001-03-09 18:19:24 +00001403 char new_comment[1024], *comment, *passphrase;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001404 struct sshkey *private;
1405 struct sshkey *public;
Damien Miller95def091999-11-25 00:26:21 +11001406 struct stat st;
1407 FILE *f;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001408 int r, fd;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001409
Damien Miller95def091999-11-25 00:26:21 +11001410 if (!have_identity)
1411 ask_filename(pw, "Enter file in which the key is");
djm@openbsd.org3038a192015-04-17 13:19:22 +00001412 if (stat(identity_file, &st) < 0)
1413 fatal("%s: %s", identity_file, strerror(errno));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001414 if ((r = sshkey_load_private(identity_file, "",
1415 &private, &comment)) == 0)
1416 passphrase = xstrdup("");
djm@openbsd.org3038a192015-04-17 13:19:22 +00001417 else if (r != SSH_ERR_KEY_WRONG_PASSPHRASE)
1418 fatal("Cannot load private key \"%s\": %s.",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001419 identity_file, ssh_err(r));
djm@openbsd.org3038a192015-04-17 13:19:22 +00001420 else {
Damien Miller95def091999-11-25 00:26:21 +11001421 if (identity_passphrase)
1422 passphrase = xstrdup(identity_passphrase);
1423 else if (identity_new_passphrase)
1424 passphrase = xstrdup(identity_new_passphrase);
1425 else
Ben Lindstrom949974b2001-06-25 05:20:31 +00001426 passphrase = read_passphrase("Enter passphrase: ",
1427 RP_ALLOW_STDIN);
Damien Miller95def091999-11-25 00:26:21 +11001428 /* Try to load using the passphrase. */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001429 if ((r = sshkey_load_private(identity_file, passphrase,
1430 &private, &comment)) != 0) {
Damien Millera5103f42014-02-04 11:20:14 +11001431 explicit_bzero(passphrase, strlen(passphrase));
Darren Tuckera627d422013-06-02 07:31:17 +10001432 free(passphrase);
djm@openbsd.org3038a192015-04-17 13:19:22 +00001433 fatal("Cannot load private key \"%s\": %s.",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001434 identity_file, ssh_err(r));
Damien Miller95def091999-11-25 00:26:21 +11001435 }
1436 }
halex@openbsd.org4d906252015-11-20 23:04:01 +00001437
1438 if (private->type != KEY_RSA1 && private->type != KEY_ED25519 &&
1439 !use_new_format) {
1440 error("Comments are only supported for RSA1 or keys stored in "
1441 "the new format (-o).");
tobias@openbsd.org704d8c82015-03-31 11:06:49 +00001442 explicit_bzero(passphrase, strlen(passphrase));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001443 sshkey_free(private);
Ben Lindstromd0fca422001-03-26 13:44:06 +00001444 exit(1);
Damien Miller9f0f5c62001-12-21 14:45:46 +11001445 }
millert@openbsd.orge40269b2017-02-08 20:32:43 +00001446 if (comment)
1447 printf("Key now has comment '%s'\n", comment);
1448 else
1449 printf("Key now has no comment\n");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001450
Damien Miller95def091999-11-25 00:26:21 +11001451 if (identity_comment) {
1452 strlcpy(new_comment, identity_comment, sizeof(new_comment));
1453 } else {
1454 printf("Enter new comment: ");
1455 fflush(stdout);
1456 if (!fgets(new_comment, sizeof(new_comment), stdin)) {
Damien Millera5103f42014-02-04 11:20:14 +11001457 explicit_bzero(passphrase, strlen(passphrase));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001458 sshkey_free(private);
Damien Miller95def091999-11-25 00:26:21 +11001459 exit(1);
1460 }
Damien Miller14b017d2007-09-17 16:09:15 +10001461 new_comment[strcspn(new_comment, "\n")] = '\0';
Damien Miller95def091999-11-25 00:26:21 +11001462 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001463
Damien Miller95def091999-11-25 00:26:21 +11001464 /* Save the file using the new passphrase. */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001465 if ((r = sshkey_save_private(private, identity_file, passphrase,
1466 new_comment, use_new_format, new_format_cipher, rounds)) != 0) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00001467 error("Saving key \"%s\" failed: %s",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001468 identity_file, ssh_err(r));
Damien Millera5103f42014-02-04 11:20:14 +11001469 explicit_bzero(passphrase, strlen(passphrase));
Darren Tuckera627d422013-06-02 07:31:17 +10001470 free(passphrase);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001471 sshkey_free(private);
Darren Tuckera627d422013-06-02 07:31:17 +10001472 free(comment);
Damien Miller95def091999-11-25 00:26:21 +11001473 exit(1);
1474 }
Damien Millera5103f42014-02-04 11:20:14 +11001475 explicit_bzero(passphrase, strlen(passphrase));
Darren Tuckera627d422013-06-02 07:31:17 +10001476 free(passphrase);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001477 if ((r = sshkey_from_private(private, &public)) != 0)
1478 fatal("key_from_private failed: %s", ssh_err(r));
1479 sshkey_free(private);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001480
Damien Miller95def091999-11-25 00:26:21 +11001481 strlcat(identity_file, ".pub", sizeof(identity_file));
Ben Lindstrom5fc62702001-03-09 18:19:24 +00001482 fd = open(identity_file, O_WRONLY | O_CREAT | O_TRUNC, 0644);
djm@openbsd.org3038a192015-04-17 13:19:22 +00001483 if (fd == -1)
1484 fatal("Could not save your public key in %s", identity_file);
Ben Lindstrom5fc62702001-03-09 18:19:24 +00001485 f = fdopen(fd, "w");
djm@openbsd.org3038a192015-04-17 13:19:22 +00001486 if (f == NULL)
1487 fatal("fdopen %s failed: %s", identity_file, strerror(errno));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001488 if ((r = sshkey_write(public, f)) != 0)
djm@openbsd.org3038a192015-04-17 13:19:22 +00001489 fatal("write key failed: %s", ssh_err(r));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001490 sshkey_free(public);
Damien Millereba71ba2000-04-29 23:57:08 +10001491 fprintf(f, " %s\n", new_comment);
Damien Miller95def091999-11-25 00:26:21 +11001492 fclose(f);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001493
Darren Tuckera627d422013-06-02 07:31:17 +10001494 free(comment);
Damien Miller95def091999-11-25 00:26:21 +11001495
1496 printf("The comment in your key file has been changed.\n");
1497 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001498}
1499
Damien Miller0a80ca12010-02-27 07:55:05 +11001500static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001501add_flag_option(struct sshbuf *c, const char *name)
Damien Miller0a80ca12010-02-27 07:55:05 +11001502{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001503 int r;
1504
Damien Miller0a80ca12010-02-27 07:55:05 +11001505 debug3("%s: %s", __func__, name);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001506 if ((r = sshbuf_put_cstring(c, name)) != 0 ||
1507 (r = sshbuf_put_string(c, NULL, 0)) != 0)
1508 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Miller0a80ca12010-02-27 07:55:05 +11001509}
1510
1511static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001512add_string_option(struct sshbuf *c, const char *name, const char *value)
Damien Miller0a80ca12010-02-27 07:55:05 +11001513{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001514 struct sshbuf *b;
1515 int r;
Damien Miller0a80ca12010-02-27 07:55:05 +11001516
1517 debug3("%s: %s=%s", __func__, name, value);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001518 if ((b = sshbuf_new()) == NULL)
1519 fatal("%s: sshbuf_new failed", __func__);
1520 if ((r = sshbuf_put_cstring(b, value)) != 0 ||
1521 (r = sshbuf_put_cstring(c, name)) != 0 ||
1522 (r = sshbuf_put_stringb(c, b)) != 0)
1523 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Miller0a80ca12010-02-27 07:55:05 +11001524
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001525 sshbuf_free(b);
Damien Miller0a80ca12010-02-27 07:55:05 +11001526}
1527
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001528#define OPTIONS_CRITICAL 1
1529#define OPTIONS_EXTENSIONS 2
Damien Miller0a80ca12010-02-27 07:55:05 +11001530static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001531prepare_options_buf(struct sshbuf *c, int which)
Damien Miller0a80ca12010-02-27 07:55:05 +11001532{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001533 sshbuf_reset(c);
Damien Miller1da63882010-08-05 13:03:51 +10001534 if ((which & OPTIONS_CRITICAL) != 0 &&
1535 certflags_command != NULL)
1536 add_string_option(c, "force-command", certflags_command);
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001537 if ((which & OPTIONS_EXTENSIONS) != 0 &&
Damien Miller2ce12ef2011-05-05 14:17:18 +10001538 (certflags_flags & CERTOPT_X_FWD) != 0)
1539 add_flag_option(c, "permit-X11-forwarding");
1540 if ((which & OPTIONS_EXTENSIONS) != 0 &&
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001541 (certflags_flags & CERTOPT_AGENT_FWD) != 0)
Damien Miller4e270b02010-04-16 15:56:21 +10001542 add_flag_option(c, "permit-agent-forwarding");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001543 if ((which & OPTIONS_EXTENSIONS) != 0 &&
1544 (certflags_flags & CERTOPT_PORT_FWD) != 0)
Damien Miller4e270b02010-04-16 15:56:21 +10001545 add_flag_option(c, "permit-port-forwarding");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001546 if ((which & OPTIONS_EXTENSIONS) != 0 &&
1547 (certflags_flags & CERTOPT_PTY) != 0)
Damien Miller4e270b02010-04-16 15:56:21 +10001548 add_flag_option(c, "permit-pty");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001549 if ((which & OPTIONS_EXTENSIONS) != 0 &&
1550 (certflags_flags & CERTOPT_USER_RC) != 0)
Damien Miller4e270b02010-04-16 15:56:21 +10001551 add_flag_option(c, "permit-user-rc");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001552 if ((which & OPTIONS_CRITICAL) != 0 &&
1553 certflags_src_addr != NULL)
1554 add_string_option(c, "source-address", certflags_src_addr);
Damien Miller0a80ca12010-02-27 07:55:05 +11001555}
1556
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001557static struct sshkey *
Damien Miller757f34e2010-08-05 13:05:31 +10001558load_pkcs11_key(char *path)
1559{
1560#ifdef ENABLE_PKCS11
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001561 struct sshkey **keys = NULL, *public, *private = NULL;
1562 int r, i, nkeys;
Damien Miller757f34e2010-08-05 13:05:31 +10001563
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001564 if ((r = sshkey_load_public(path, &public, NULL)) != 0)
1565 fatal("Couldn't load CA public key \"%s\": %s",
1566 path, ssh_err(r));
Damien Miller757f34e2010-08-05 13:05:31 +10001567
1568 nkeys = pkcs11_add_provider(pkcs11provider, identity_passphrase, &keys);
1569 debug3("%s: %d keys", __func__, nkeys);
1570 if (nkeys <= 0)
1571 fatal("cannot read public key from pkcs11");
1572 for (i = 0; i < nkeys; i++) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001573 if (sshkey_equal_public(public, keys[i])) {
Damien Miller757f34e2010-08-05 13:05:31 +10001574 private = keys[i];
1575 continue;
1576 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001577 sshkey_free(keys[i]);
Damien Miller757f34e2010-08-05 13:05:31 +10001578 }
Darren Tuckera627d422013-06-02 07:31:17 +10001579 free(keys);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001580 sshkey_free(public);
Damien Miller757f34e2010-08-05 13:05:31 +10001581 return private;
1582#else
1583 fatal("no pkcs11 support");
1584#endif /* ENABLE_PKCS11 */
1585}
1586
Damien Miller0a80ca12010-02-27 07:55:05 +11001587static void
1588do_ca_sign(struct passwd *pw, int argc, char **argv)
1589{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001590 int r, i, fd;
Damien Miller0a80ca12010-02-27 07:55:05 +11001591 u_int n;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001592 struct sshkey *ca, *public;
djm@openbsd.org499cf362015-11-19 01:08:55 +00001593 char valid[64], *otmp, *tmp, *cp, *out, *comment, **plist = NULL;
Damien Miller0a80ca12010-02-27 07:55:05 +11001594 FILE *f;
Damien Miller4e270b02010-04-16 15:56:21 +10001595
Damien Miller1f0311c2014-05-15 14:24:09 +10001596#ifdef ENABLE_PKCS11
Damien Miller757f34e2010-08-05 13:05:31 +10001597 pkcs11_init(1);
Damien Miller1f0311c2014-05-15 14:24:09 +10001598#endif
Damien Miller757f34e2010-08-05 13:05:31 +10001599 tmp = tilde_expand_filename(ca_key_path, pw->pw_uid);
1600 if (pkcs11provider != NULL) {
1601 if ((ca = load_pkcs11_key(tmp)) == NULL)
1602 fatal("No PKCS#11 key matching %s found", ca_key_path);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001603 } else
1604 ca = load_identity(tmp);
Darren Tuckera627d422013-06-02 07:31:17 +10001605 free(tmp);
Damien Miller757f34e2010-08-05 13:05:31 +10001606
djm@openbsd.org57464e32016-05-02 09:36:42 +00001607 if (key_type_name != NULL &&
1608 sshkey_type_from_name(key_type_name) != ca->type) {
1609 fatal("CA key type %s doesn't match specified %s",
1610 sshkey_ssh_name(ca), key_type_name);
1611 }
1612
Damien Miller0a80ca12010-02-27 07:55:05 +11001613 for (i = 0; i < argc; i++) {
1614 /* Split list of principals */
1615 n = 0;
1616 if (cert_principals != NULL) {
1617 otmp = tmp = xstrdup(cert_principals);
1618 plist = NULL;
1619 for (; (cp = strsep(&tmp, ",")) != NULL; n++) {
deraadt@openbsd.org657a5fb2015-04-24 01:36:00 +00001620 plist = xreallocarray(plist, n + 1, sizeof(*plist));
Damien Miller0a80ca12010-02-27 07:55:05 +11001621 if (*(plist[n] = xstrdup(cp)) == '\0')
1622 fatal("Empty principal name");
1623 }
Darren Tuckera627d422013-06-02 07:31:17 +10001624 free(otmp);
Damien Miller0a80ca12010-02-27 07:55:05 +11001625 }
1626
1627 tmp = tilde_expand_filename(argv[i], pw->pw_uid);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001628 if ((r = sshkey_load_public(tmp, &public, &comment)) != 0)
1629 fatal("%s: unable to open \"%s\": %s",
1630 __func__, tmp, ssh_err(r));
Damien Millereb8b60e2010-08-31 22:41:14 +10001631 if (public->type != KEY_RSA && public->type != KEY_DSA &&
Damien Miller5be9d9e2013-12-07 11:24:01 +11001632 public->type != KEY_ECDSA && public->type != KEY_ED25519)
Damien Miller0a80ca12010-02-27 07:55:05 +11001633 fatal("%s: key \"%s\" type %s cannot be certified",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001634 __func__, tmp, sshkey_type(public));
Damien Miller0a80ca12010-02-27 07:55:05 +11001635
1636 /* Prepare certificate to sign */
djm@openbsd.orgc28fc622015-07-03 03:43:18 +00001637 if ((r = sshkey_to_certified(public)) != 0)
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001638 fatal("Could not upgrade key %s to certificate: %s",
1639 tmp, ssh_err(r));
Damien Miller0a80ca12010-02-27 07:55:05 +11001640 public->cert->type = cert_key_type;
Damien Miller4e270b02010-04-16 15:56:21 +10001641 public->cert->serial = (u_int64_t)cert_serial;
Damien Miller0a80ca12010-02-27 07:55:05 +11001642 public->cert->key_id = xstrdup(cert_key_id);
1643 public->cert->nprincipals = n;
1644 public->cert->principals = plist;
1645 public->cert->valid_after = cert_valid_from;
1646 public->cert->valid_before = cert_valid_to;
djm@openbsd.orgc28fc622015-07-03 03:43:18 +00001647 prepare_options_buf(public->cert->critical, OPTIONS_CRITICAL);
1648 prepare_options_buf(public->cert->extensions,
1649 OPTIONS_EXTENSIONS);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001650 if ((r = sshkey_from_private(ca,
1651 &public->cert->signature_key)) != 0)
1652 fatal("key_from_private (ca key): %s", ssh_err(r));
Damien Miller0a80ca12010-02-27 07:55:05 +11001653
djm@openbsd.org57464e32016-05-02 09:36:42 +00001654 if ((r = sshkey_certify(public, ca, key_type_name)) != 0)
1655 fatal("Couldn't certify key %s: %s", tmp, ssh_err(r));
Damien Miller0a80ca12010-02-27 07:55:05 +11001656
1657 if ((cp = strrchr(tmp, '.')) != NULL && strcmp(cp, ".pub") == 0)
1658 *cp = '\0';
1659 xasprintf(&out, "%s-cert.pub", tmp);
Darren Tuckera627d422013-06-02 07:31:17 +10001660 free(tmp);
Damien Miller0a80ca12010-02-27 07:55:05 +11001661
1662 if ((fd = open(out, O_WRONLY|O_CREAT|O_TRUNC, 0644)) == -1)
1663 fatal("Could not open \"%s\" for writing: %s", out,
1664 strerror(errno));
1665 if ((f = fdopen(fd, "w")) == NULL)
1666 fatal("%s: fdopen: %s", __func__, strerror(errno));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001667 if ((r = sshkey_write(public, f)) != 0)
1668 fatal("Could not write certified key to %s: %s",
1669 out, ssh_err(r));
Damien Miller0a80ca12010-02-27 07:55:05 +11001670 fprintf(f, " %s\n", comment);
1671 fclose(f);
1672
Damien Miller4e270b02010-04-16 15:56:21 +10001673 if (!quiet) {
djm@openbsd.org964ab3e2015-11-19 01:12:32 +00001674 sshkey_format_cert_validity(public->cert,
djm@openbsd.org499cf362015-11-19 01:08:55 +00001675 valid, sizeof(valid));
Damien Miller4e270b02010-04-16 15:56:21 +10001676 logit("Signed %s key %s: id \"%s\" serial %llu%s%s "
djm@openbsd.org964ab3e2015-11-19 01:12:32 +00001677 "valid %s", sshkey_cert_type(public),
Damien Miller821de0a2011-01-11 17:20:29 +11001678 out, public->cert->key_id,
1679 (unsigned long long)public->cert->serial,
Damien Miller0a80ca12010-02-27 07:55:05 +11001680 cert_principals != NULL ? " for " : "",
1681 cert_principals != NULL ? cert_principals : "",
djm@openbsd.org499cf362015-11-19 01:08:55 +00001682 valid);
Damien Miller4e270b02010-04-16 15:56:21 +10001683 }
Damien Miller0a80ca12010-02-27 07:55:05 +11001684
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001685 sshkey_free(public);
Darren Tuckera627d422013-06-02 07:31:17 +10001686 free(out);
Damien Miller0a80ca12010-02-27 07:55:05 +11001687 }
Damien Miller1f0311c2014-05-15 14:24:09 +10001688#ifdef ENABLE_PKCS11
Damien Miller757f34e2010-08-05 13:05:31 +10001689 pkcs11_terminate();
Damien Miller1f0311c2014-05-15 14:24:09 +10001690#endif
Damien Miller0a80ca12010-02-27 07:55:05 +11001691 exit(0);
1692}
1693
1694static u_int64_t
1695parse_relative_time(const char *s, time_t now)
1696{
1697 int64_t mul, secs;
1698
1699 mul = *s == '-' ? -1 : 1;
1700
1701 if ((secs = convtime(s + 1)) == -1)
1702 fatal("Invalid relative certificate time %s", s);
1703 if (mul == -1 && secs > now)
1704 fatal("Certificate time %s cannot be represented", s);
1705 return now + (u_int64_t)(secs * mul);
1706}
1707
1708static u_int64_t
1709parse_absolute_time(const char *s)
1710{
1711 struct tm tm;
1712 time_t tt;
Damien Miller2ca342b2010-03-03 12:14:15 +11001713 char buf[32], *fmt;
Damien Miller0a80ca12010-02-27 07:55:05 +11001714
Damien Miller2ca342b2010-03-03 12:14:15 +11001715 /*
djm@openbsd.org964ab3e2015-11-19 01:12:32 +00001716 * POSIX strptime says "The application shall ensure that there
Damien Miller2ca342b2010-03-03 12:14:15 +11001717 * is white-space or other non-alphanumeric characters between
1718 * any two conversion specifications" so arrange things this way.
1719 */
1720 switch (strlen(s)) {
1721 case 8:
Damien Miller3e1ee492010-03-08 09:24:11 +11001722 fmt = "%Y-%m-%d";
1723 snprintf(buf, sizeof(buf), "%.4s-%.2s-%.2s", s, s + 4, s + 6);
Damien Miller2ca342b2010-03-03 12:14:15 +11001724 break;
1725 case 14:
Damien Miller3e1ee492010-03-08 09:24:11 +11001726 fmt = "%Y-%m-%dT%H:%M:%S";
1727 snprintf(buf, sizeof(buf), "%.4s-%.2s-%.2sT%.2s:%.2s:%.2s",
Damien Miller2ca342b2010-03-03 12:14:15 +11001728 s, s + 4, s + 6, s + 8, s + 10, s + 12);
1729 break;
1730 default:
Damien Miller0a80ca12010-02-27 07:55:05 +11001731 fatal("Invalid certificate time format %s", s);
Damien Miller2ca342b2010-03-03 12:14:15 +11001732 }
Damien Miller0a80ca12010-02-27 07:55:05 +11001733
Damien Miller1d2c4562014-02-04 11:18:20 +11001734 memset(&tm, 0, sizeof(tm));
Damien Miller2ca342b2010-03-03 12:14:15 +11001735 if (strptime(buf, fmt, &tm) == NULL)
Damien Miller0a80ca12010-02-27 07:55:05 +11001736 fatal("Invalid certificate time %s", s);
1737 if ((tt = mktime(&tm)) < 0)
1738 fatal("Certificate time %s cannot be represented", s);
1739 return (u_int64_t)tt;
1740}
1741
1742static void
1743parse_cert_times(char *timespec)
1744{
1745 char *from, *to;
1746 time_t now = time(NULL);
1747 int64_t secs;
1748
1749 /* +timespec relative to now */
1750 if (*timespec == '+' && strchr(timespec, ':') == NULL) {
1751 if ((secs = convtime(timespec + 1)) == -1)
1752 fatal("Invalid relative certificate life %s", timespec);
1753 cert_valid_to = now + secs;
1754 /*
1755 * Backdate certificate one minute to avoid problems on hosts
1756 * with poorly-synchronised clocks.
1757 */
1758 cert_valid_from = ((now - 59)/ 60) * 60;
1759 return;
1760 }
1761
1762 /*
1763 * from:to, where
1764 * from := [+-]timespec | YYYYMMDD | YYYYMMDDHHMMSS
1765 * to := [+-]timespec | YYYYMMDD | YYYYMMDDHHMMSS
1766 */
1767 from = xstrdup(timespec);
1768 to = strchr(from, ':');
1769 if (to == NULL || from == to || *(to + 1) == '\0')
Damien Miller910f2092010-03-04 14:17:22 +11001770 fatal("Invalid certificate life specification %s", timespec);
Damien Miller0a80ca12010-02-27 07:55:05 +11001771 *to++ = '\0';
1772
1773 if (*from == '-' || *from == '+')
1774 cert_valid_from = parse_relative_time(from, now);
1775 else
1776 cert_valid_from = parse_absolute_time(from);
1777
1778 if (*to == '-' || *to == '+')
Damien Miller5b01b0d2013-10-23 16:31:31 +11001779 cert_valid_to = parse_relative_time(to, now);
Damien Miller0a80ca12010-02-27 07:55:05 +11001780 else
1781 cert_valid_to = parse_absolute_time(to);
1782
1783 if (cert_valid_to <= cert_valid_from)
1784 fatal("Empty certificate validity interval");
Darren Tuckera627d422013-06-02 07:31:17 +10001785 free(from);
Damien Miller0a80ca12010-02-27 07:55:05 +11001786}
1787
1788static void
Damien Miller4e270b02010-04-16 15:56:21 +10001789add_cert_option(char *opt)
Damien Miller0a80ca12010-02-27 07:55:05 +11001790{
1791 char *val;
1792
Damien Miller044f4a62011-05-05 14:14:08 +10001793 if (strcasecmp(opt, "clear") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001794 certflags_flags = 0;
Damien Miller0a80ca12010-02-27 07:55:05 +11001795 else if (strcasecmp(opt, "no-x11-forwarding") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001796 certflags_flags &= ~CERTOPT_X_FWD;
Damien Miller0a80ca12010-02-27 07:55:05 +11001797 else if (strcasecmp(opt, "permit-x11-forwarding") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001798 certflags_flags |= CERTOPT_X_FWD;
Damien Miller0a80ca12010-02-27 07:55:05 +11001799 else if (strcasecmp(opt, "no-agent-forwarding") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001800 certflags_flags &= ~CERTOPT_AGENT_FWD;
Damien Miller0a80ca12010-02-27 07:55:05 +11001801 else if (strcasecmp(opt, "permit-agent-forwarding") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001802 certflags_flags |= CERTOPT_AGENT_FWD;
Damien Miller0a80ca12010-02-27 07:55:05 +11001803 else if (strcasecmp(opt, "no-port-forwarding") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001804 certflags_flags &= ~CERTOPT_PORT_FWD;
Damien Miller0a80ca12010-02-27 07:55:05 +11001805 else if (strcasecmp(opt, "permit-port-forwarding") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001806 certflags_flags |= CERTOPT_PORT_FWD;
Damien Miller0a80ca12010-02-27 07:55:05 +11001807 else if (strcasecmp(opt, "no-pty") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001808 certflags_flags &= ~CERTOPT_PTY;
Damien Miller0a80ca12010-02-27 07:55:05 +11001809 else if (strcasecmp(opt, "permit-pty") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001810 certflags_flags |= CERTOPT_PTY;
Damien Miller0a80ca12010-02-27 07:55:05 +11001811 else if (strcasecmp(opt, "no-user-rc") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001812 certflags_flags &= ~CERTOPT_USER_RC;
Damien Miller0a80ca12010-02-27 07:55:05 +11001813 else if (strcasecmp(opt, "permit-user-rc") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001814 certflags_flags |= CERTOPT_USER_RC;
Damien Miller0a80ca12010-02-27 07:55:05 +11001815 else if (strncasecmp(opt, "force-command=", 14) == 0) {
1816 val = opt + 14;
1817 if (*val == '\0')
Damien Miller4e270b02010-04-16 15:56:21 +10001818 fatal("Empty force-command option");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001819 if (certflags_command != NULL)
Damien Miller0a80ca12010-02-27 07:55:05 +11001820 fatal("force-command already specified");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001821 certflags_command = xstrdup(val);
Damien Miller0a80ca12010-02-27 07:55:05 +11001822 } else if (strncasecmp(opt, "source-address=", 15) == 0) {
1823 val = opt + 15;
1824 if (*val == '\0')
Damien Miller4e270b02010-04-16 15:56:21 +10001825 fatal("Empty source-address option");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001826 if (certflags_src_addr != NULL)
Damien Miller0a80ca12010-02-27 07:55:05 +11001827 fatal("source-address already specified");
1828 if (addr_match_cidr_list(NULL, val) != 0)
1829 fatal("Invalid source-address list");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001830 certflags_src_addr = xstrdup(val);
Damien Miller0a80ca12010-02-27 07:55:05 +11001831 } else
Damien Miller4e270b02010-04-16 15:56:21 +10001832 fatal("Unsupported certificate option \"%s\"", opt);
Damien Miller0a80ca12010-02-27 07:55:05 +11001833}
1834
Ben Lindstrombba81212001-06-25 05:01:22 +00001835static void
djm@openbsd.orgc28fc622015-07-03 03:43:18 +00001836show_options(struct sshbuf *optbuf, int in_critical)
Damien Millerd834d352010-06-26 09:48:02 +10001837{
Damien Miller633de332014-05-15 13:48:26 +10001838 char *name, *arg;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001839 struct sshbuf *options, *option = NULL;
1840 int r;
Damien Millerd834d352010-06-26 09:48:02 +10001841
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001842 if ((options = sshbuf_fromb(optbuf)) == NULL)
1843 fatal("%s: sshbuf_fromb failed", __func__);
1844 while (sshbuf_len(options) != 0) {
1845 sshbuf_free(option);
1846 option = NULL;
1847 if ((r = sshbuf_get_cstring(options, &name, NULL)) != 0 ||
1848 (r = sshbuf_froms(options, &option)) != 0)
1849 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Millerd834d352010-06-26 09:48:02 +10001850 printf(" %s", name);
djm@openbsd.orgc28fc622015-07-03 03:43:18 +00001851 if (!in_critical &&
Damien Millerd834d352010-06-26 09:48:02 +10001852 (strcmp(name, "permit-X11-forwarding") == 0 ||
1853 strcmp(name, "permit-agent-forwarding") == 0 ||
1854 strcmp(name, "permit-port-forwarding") == 0 ||
1855 strcmp(name, "permit-pty") == 0 ||
1856 strcmp(name, "permit-user-rc") == 0))
1857 printf("\n");
djm@openbsd.orgc28fc622015-07-03 03:43:18 +00001858 else if (in_critical &&
Damien Millerd834d352010-06-26 09:48:02 +10001859 (strcmp(name, "force-command") == 0 ||
1860 strcmp(name, "source-address") == 0)) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001861 if ((r = sshbuf_get_cstring(option, &arg, NULL)) != 0)
1862 fatal("%s: buffer error: %s",
1863 __func__, ssh_err(r));
Damien Miller633de332014-05-15 13:48:26 +10001864 printf(" %s\n", arg);
1865 free(arg);
Damien Millerd834d352010-06-26 09:48:02 +10001866 } else {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001867 printf(" UNKNOWN OPTION (len %zu)\n",
1868 sshbuf_len(option));
1869 sshbuf_reset(option);
Damien Millerd834d352010-06-26 09:48:02 +10001870 }
Darren Tuckera627d422013-06-02 07:31:17 +10001871 free(name);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001872 if (sshbuf_len(option) != 0)
Damien Millerd834d352010-06-26 09:48:02 +10001873 fatal("Option corrupt: extra data at end");
1874 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001875 sshbuf_free(option);
1876 sshbuf_free(options);
Damien Millerd834d352010-06-26 09:48:02 +10001877}
1878
1879static void
djm@openbsd.org94bc0b72015-11-13 04:34:15 +00001880print_cert(struct sshkey *key)
Damien Millerf2b70ca2010-03-05 07:39:35 +11001881{
djm@openbsd.org499cf362015-11-19 01:08:55 +00001882 char valid[64], *key_fp, *ca_fp;
djm@openbsd.orgc28fc622015-07-03 03:43:18 +00001883 u_int i;
Damien Miller4e270b02010-04-16 15:56:21 +10001884
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001885 key_fp = sshkey_fingerprint(key, fingerprint_hash, SSH_FP_DEFAULT);
1886 ca_fp = sshkey_fingerprint(key->cert->signature_key,
djm@openbsd.org56d1c832014-12-21 22:27:55 +00001887 fingerprint_hash, SSH_FP_DEFAULT);
djm@openbsd.org9ce86c92015-01-28 22:36:00 +00001888 if (key_fp == NULL || ca_fp == NULL)
1889 fatal("%s: sshkey_fingerprint fail", __func__);
djm@openbsd.org499cf362015-11-19 01:08:55 +00001890 sshkey_format_cert_validity(key->cert, valid, sizeof(valid));
Damien Millerf2b70ca2010-03-05 07:39:35 +11001891
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001892 printf(" Type: %s %s certificate\n", sshkey_ssh_name(key),
1893 sshkey_cert_type(key));
1894 printf(" Public key: %s %s\n", sshkey_type(key), key_fp);
Damien Miller4e270b02010-04-16 15:56:21 +10001895 printf(" Signing CA: %s %s\n",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001896 sshkey_type(key->cert->signature_key), ca_fp);
Damien Miller4e270b02010-04-16 15:56:21 +10001897 printf(" Key ID: \"%s\"\n", key->cert->key_id);
djm@openbsd.orgc28fc622015-07-03 03:43:18 +00001898 printf(" Serial: %llu\n", (unsigned long long)key->cert->serial);
djm@openbsd.org499cf362015-11-19 01:08:55 +00001899 printf(" Valid: %s\n", valid);
Damien Millerf2b70ca2010-03-05 07:39:35 +11001900 printf(" Principals: ");
1901 if (key->cert->nprincipals == 0)
1902 printf("(none)\n");
1903 else {
1904 for (i = 0; i < key->cert->nprincipals; i++)
1905 printf("\n %s",
1906 key->cert->principals[i]);
1907 printf("\n");
1908 }
Damien Miller4e270b02010-04-16 15:56:21 +10001909 printf(" Critical Options: ");
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001910 if (sshbuf_len(key->cert->critical) == 0)
Damien Millerf2b70ca2010-03-05 07:39:35 +11001911 printf("(none)\n");
1912 else {
1913 printf("\n");
djm@openbsd.orgc28fc622015-07-03 03:43:18 +00001914 show_options(key->cert->critical, 1);
Damien Millerf2b70ca2010-03-05 07:39:35 +11001915 }
djm@openbsd.orgc28fc622015-07-03 03:43:18 +00001916 printf(" Extensions: ");
1917 if (sshbuf_len(key->cert->extensions) == 0)
1918 printf("(none)\n");
1919 else {
1920 printf("\n");
1921 show_options(key->cert->extensions, 0);
Damien Miller4e270b02010-04-16 15:56:21 +10001922 }
djm@openbsd.org94bc0b72015-11-13 04:34:15 +00001923}
1924
1925static void
1926do_show_cert(struct passwd *pw)
1927{
1928 struct sshkey *key = NULL;
1929 struct stat st;
1930 int r, is_stdin = 0, ok = 0;
1931 FILE *f;
djm@openbsd.orgcce6a362015-12-11 03:19:09 +00001932 char *cp, line[SSH_MAX_PUBKEY_BYTES];
djm@openbsd.org94bc0b72015-11-13 04:34:15 +00001933 const char *path;
djm@openbsd.org1a31d022016-05-02 08:49:03 +00001934 u_long lnum = 0;
djm@openbsd.org94bc0b72015-11-13 04:34:15 +00001935
1936 if (!have_identity)
1937 ask_filename(pw, "Enter file in which the key is");
1938 if (strcmp(identity_file, "-") != 0 && stat(identity_file, &st) < 0)
1939 fatal("%s: %s: %s", __progname, identity_file, strerror(errno));
1940
1941 path = identity_file;
1942 if (strcmp(path, "-") == 0) {
1943 f = stdin;
1944 path = "(stdin)";
1945 is_stdin = 1;
1946 } else if ((f = fopen(identity_file, "r")) == NULL)
1947 fatal("fopen %s: %s", identity_file, strerror(errno));
1948
1949 while (read_keyfile_line(f, path, line, sizeof(line), &lnum) == 0) {
1950 sshkey_free(key);
1951 key = NULL;
1952 /* Trim leading space and comments */
1953 cp = line + strspn(line, " \t");
1954 if (*cp == '#' || *cp == '\0')
1955 continue;
1956 if ((key = sshkey_new(KEY_UNSPEC)) == NULL)
1957 fatal("key_new");
1958 if ((r = sshkey_read(key, &cp)) != 0) {
1959 error("%s:%lu: invalid key: %s", path,
1960 lnum, ssh_err(r));
1961 continue;
1962 }
1963 if (!sshkey_is_cert(key)) {
1964 error("%s:%lu is not a certificate", path, lnum);
1965 continue;
1966 }
1967 ok = 1;
1968 if (!is_stdin && lnum == 1)
1969 printf("%s:\n", path);
1970 else
1971 printf("%s:%lu:\n", path, lnum);
1972 print_cert(key);
1973 }
1974 sshkey_free(key);
1975 fclose(f);
1976 exit(ok ? 0 : 1);
Damien Millerf2b70ca2010-03-05 07:39:35 +11001977}
1978
1979static void
Damien Millerf3747bf2013-01-18 11:44:04 +11001980load_krl(const char *path, struct ssh_krl **krlp)
1981{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001982 struct sshbuf *krlbuf;
1983 int r, fd;
Damien Millerf3747bf2013-01-18 11:44:04 +11001984
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001985 if ((krlbuf = sshbuf_new()) == NULL)
1986 fatal("sshbuf_new failed");
Damien Millerf3747bf2013-01-18 11:44:04 +11001987 if ((fd = open(path, O_RDONLY)) == -1)
1988 fatal("open %s: %s", path, strerror(errno));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001989 if ((r = sshkey_load_file(fd, krlbuf)) != 0)
1990 fatal("Unable to load KRL: %s", ssh_err(r));
Damien Millerf3747bf2013-01-18 11:44:04 +11001991 close(fd);
1992 /* XXX check sigs */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001993 if ((r = ssh_krl_from_blob(krlbuf, krlp, NULL, 0)) != 0 ||
Damien Millerf3747bf2013-01-18 11:44:04 +11001994 *krlp == NULL)
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001995 fatal("Invalid KRL file: %s", ssh_err(r));
1996 sshbuf_free(krlbuf);
Damien Millerf3747bf2013-01-18 11:44:04 +11001997}
1998
1999static void
djm@openbsd.org669aee92015-01-30 01:10:33 +00002000update_krl_from_file(struct passwd *pw, const char *file, int wild_ca,
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002001 const struct sshkey *ca, struct ssh_krl *krl)
Damien Millerf3747bf2013-01-18 11:44:04 +11002002{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002003 struct sshkey *key = NULL;
Damien Millerf3747bf2013-01-18 11:44:04 +11002004 u_long lnum = 0;
2005 char *path, *cp, *ep, line[SSH_MAX_PUBKEY_BYTES];
2006 unsigned long long serial, serial2;
2007 int i, was_explicit_key, was_sha1, r;
2008 FILE *krl_spec;
2009
2010 path = tilde_expand_filename(file, pw->pw_uid);
2011 if (strcmp(path, "-") == 0) {
2012 krl_spec = stdin;
2013 free(path);
2014 path = xstrdup("(standard input)");
2015 } else if ((krl_spec = fopen(path, "r")) == NULL)
2016 fatal("fopen %s: %s", path, strerror(errno));
2017
2018 if (!quiet)
2019 printf("Revoking from %s\n", path);
2020 while (read_keyfile_line(krl_spec, path, line, sizeof(line),
2021 &lnum) == 0) {
2022 was_explicit_key = was_sha1 = 0;
2023 cp = line + strspn(line, " \t");
2024 /* Trim trailing space, comments and strip \n */
2025 for (i = 0, r = -1; cp[i] != '\0'; i++) {
2026 if (cp[i] == '#' || cp[i] == '\n') {
2027 cp[i] = '\0';
2028 break;
2029 }
2030 if (cp[i] == ' ' || cp[i] == '\t') {
2031 /* Remember the start of a span of whitespace */
2032 if (r == -1)
2033 r = i;
2034 } else
2035 r = -1;
2036 }
2037 if (r != -1)
2038 cp[r] = '\0';
2039 if (*cp == '\0')
2040 continue;
2041 if (strncasecmp(cp, "serial:", 7) == 0) {
djm@openbsd.org669aee92015-01-30 01:10:33 +00002042 if (ca == NULL && !wild_ca) {
Damien Millerd234afb2013-08-21 02:42:58 +10002043 fatal("revoking certificates by serial number "
Damien Millerf3747bf2013-01-18 11:44:04 +11002044 "requires specification of a CA key");
2045 }
2046 cp += 7;
2047 cp = cp + strspn(cp, " \t");
2048 errno = 0;
2049 serial = strtoull(cp, &ep, 0);
2050 if (*cp == '\0' || (*ep != '\0' && *ep != '-'))
2051 fatal("%s:%lu: invalid serial \"%s\"",
2052 path, lnum, cp);
2053 if (errno == ERANGE && serial == ULLONG_MAX)
2054 fatal("%s:%lu: serial out of range",
2055 path, lnum);
2056 serial2 = serial;
2057 if (*ep == '-') {
2058 cp = ep + 1;
2059 errno = 0;
2060 serial2 = strtoull(cp, &ep, 0);
2061 if (*cp == '\0' || *ep != '\0')
2062 fatal("%s:%lu: invalid serial \"%s\"",
2063 path, lnum, cp);
2064 if (errno == ERANGE && serial2 == ULLONG_MAX)
2065 fatal("%s:%lu: serial out of range",
2066 path, lnum);
2067 if (serial2 <= serial)
2068 fatal("%s:%lu: invalid serial range "
2069 "%llu:%llu", path, lnum,
2070 (unsigned long long)serial,
2071 (unsigned long long)serial2);
2072 }
2073 if (ssh_krl_revoke_cert_by_serial_range(krl,
2074 ca, serial, serial2) != 0) {
2075 fatal("%s: revoke serial failed",
2076 __func__);
2077 }
2078 } else if (strncasecmp(cp, "id:", 3) == 0) {
djm@openbsd.org669aee92015-01-30 01:10:33 +00002079 if (ca == NULL && !wild_ca) {
Damien Millerd5d9d7b2013-08-21 02:43:27 +10002080 fatal("revoking certificates by key ID "
Damien Millerf3747bf2013-01-18 11:44:04 +11002081 "requires specification of a CA key");
2082 }
2083 cp += 3;
2084 cp = cp + strspn(cp, " \t");
2085 if (ssh_krl_revoke_cert_by_key_id(krl, ca, cp) != 0)
2086 fatal("%s: revoke key ID failed", __func__);
2087 } else {
2088 if (strncasecmp(cp, "key:", 4) == 0) {
2089 cp += 4;
2090 cp = cp + strspn(cp, " \t");
2091 was_explicit_key = 1;
2092 } else if (strncasecmp(cp, "sha1:", 5) == 0) {
2093 cp += 5;
2094 cp = cp + strspn(cp, " \t");
2095 was_sha1 = 1;
2096 } else {
2097 /*
2098 * Just try to process the line as a key.
2099 * Parsing will fail if it isn't.
2100 */
2101 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002102 if ((key = sshkey_new(KEY_UNSPEC)) == NULL)
Damien Millerf3747bf2013-01-18 11:44:04 +11002103 fatal("key_new");
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002104 if ((r = sshkey_read(key, &cp)) != 0)
2105 fatal("%s:%lu: invalid key: %s",
2106 path, lnum, ssh_err(r));
Damien Millerf3747bf2013-01-18 11:44:04 +11002107 if (was_explicit_key)
2108 r = ssh_krl_revoke_key_explicit(krl, key);
2109 else if (was_sha1)
2110 r = ssh_krl_revoke_key_sha1(krl, key);
2111 else
2112 r = ssh_krl_revoke_key(krl, key);
2113 if (r != 0)
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002114 fatal("%s: revoke key failed: %s",
2115 __func__, ssh_err(r));
2116 sshkey_free(key);
Damien Millerf3747bf2013-01-18 11:44:04 +11002117 }
2118 }
2119 if (strcmp(path, "-") != 0)
2120 fclose(krl_spec);
Damien Miller0d6771b2013-04-23 15:23:24 +10002121 free(path);
Damien Millerf3747bf2013-01-18 11:44:04 +11002122}
2123
2124static void
2125do_gen_krl(struct passwd *pw, int updating, int argc, char **argv)
2126{
2127 struct ssh_krl *krl;
2128 struct stat sb;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002129 struct sshkey *ca = NULL;
djm@openbsd.org669aee92015-01-30 01:10:33 +00002130 int fd, i, r, wild_ca = 0;
Damien Millerf3747bf2013-01-18 11:44:04 +11002131 char *tmp;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002132 struct sshbuf *kbuf;
Damien Millerf3747bf2013-01-18 11:44:04 +11002133
2134 if (*identity_file == '\0')
2135 fatal("KRL generation requires an output file");
2136 if (stat(identity_file, &sb) == -1) {
2137 if (errno != ENOENT)
2138 fatal("Cannot access KRL \"%s\": %s",
2139 identity_file, strerror(errno));
2140 if (updating)
2141 fatal("KRL \"%s\" does not exist", identity_file);
2142 }
2143 if (ca_key_path != NULL) {
djm@openbsd.org669aee92015-01-30 01:10:33 +00002144 if (strcasecmp(ca_key_path, "none") == 0)
2145 wild_ca = 1;
2146 else {
2147 tmp = tilde_expand_filename(ca_key_path, pw->pw_uid);
2148 if ((r = sshkey_load_public(tmp, &ca, NULL)) != 0)
2149 fatal("Cannot load CA public key %s: %s",
2150 tmp, ssh_err(r));
2151 free(tmp);
2152 }
Damien Millerf3747bf2013-01-18 11:44:04 +11002153 }
2154
2155 if (updating)
2156 load_krl(identity_file, &krl);
2157 else if ((krl = ssh_krl_init()) == NULL)
2158 fatal("couldn't create KRL");
2159
2160 if (cert_serial != 0)
2161 ssh_krl_set_version(krl, cert_serial);
2162 if (identity_comment != NULL)
2163 ssh_krl_set_comment(krl, identity_comment);
2164
2165 for (i = 0; i < argc; i++)
djm@openbsd.org669aee92015-01-30 01:10:33 +00002166 update_krl_from_file(pw, argv[i], wild_ca, ca, krl);
Damien Millerf3747bf2013-01-18 11:44:04 +11002167
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002168 if ((kbuf = sshbuf_new()) == NULL)
2169 fatal("sshbuf_new failed");
2170 if (ssh_krl_to_blob(krl, kbuf, NULL, 0) != 0)
Damien Millerf3747bf2013-01-18 11:44:04 +11002171 fatal("Couldn't generate KRL");
2172 if ((fd = open(identity_file, O_WRONLY|O_CREAT|O_TRUNC, 0644)) == -1)
2173 fatal("open %s: %s", identity_file, strerror(errno));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002174 if (atomicio(vwrite, fd, (void *)sshbuf_ptr(kbuf), sshbuf_len(kbuf)) !=
2175 sshbuf_len(kbuf))
Damien Millerf3747bf2013-01-18 11:44:04 +11002176 fatal("write %s: %s", identity_file, strerror(errno));
2177 close(fd);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002178 sshbuf_free(kbuf);
Damien Millerf3747bf2013-01-18 11:44:04 +11002179 ssh_krl_free(krl);
mmcc@openbsd.org89540b62015-12-11 02:31:47 +00002180 sshkey_free(ca);
Damien Millerf3747bf2013-01-18 11:44:04 +11002181}
2182
2183static void
2184do_check_krl(struct passwd *pw, int argc, char **argv)
2185{
2186 int i, r, ret = 0;
2187 char *comment;
2188 struct ssh_krl *krl;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002189 struct sshkey *k;
Damien Millerf3747bf2013-01-18 11:44:04 +11002190
2191 if (*identity_file == '\0')
2192 fatal("KRL checking requires an input file");
2193 load_krl(identity_file, &krl);
2194 for (i = 0; i < argc; i++) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002195 if ((r = sshkey_load_public(argv[i], &k, &comment)) != 0)
2196 fatal("Cannot load public key %s: %s",
2197 argv[i], ssh_err(r));
Damien Millerf3747bf2013-01-18 11:44:04 +11002198 r = ssh_krl_check_key(krl, k);
2199 printf("%s%s%s%s: %s\n", argv[i],
2200 *comment ? " (" : "", comment, *comment ? ")" : "",
2201 r == 0 ? "ok" : "REVOKED");
2202 if (r != 0)
2203 ret = 1;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002204 sshkey_free(k);
Damien Millerf3747bf2013-01-18 11:44:04 +11002205 free(comment);
2206 }
2207 ssh_krl_free(krl);
2208 exit(ret);
2209}
2210
dtucker@openbsd.org3baa4cd2017-02-17 02:32:05 +00002211#ifdef WITH_SSH1
2212# define RSA1_USAGE " | rsa1"
2213#else
2214# define RSA1_USAGE ""
2215#endif
2216
Damien Millerf3747bf2013-01-18 11:44:04 +11002217static void
Damien Miller431f66b1999-11-21 18:31:57 +11002218usage(void)
2219{
Damien Millerf0858de2014-04-20 13:01:30 +10002220 fprintf(stderr,
dtucker@openbsd.org3baa4cd2017-02-17 02:32:05 +00002221 "usage: ssh-keygen [-q] [-b bits] [-t dsa | ecdsa | ed25519 | rsa%s]\n"
Damien Millerf0858de2014-04-20 13:01:30 +10002222 " [-N new_passphrase] [-C comment] [-f output_keyfile]\n"
2223 " ssh-keygen -p [-P old_passphrase] [-N new_passphrase] [-f keyfile]\n"
2224 " ssh-keygen -i [-m key_format] [-f input_keyfile]\n"
2225 " ssh-keygen -e [-m key_format] [-f input_keyfile]\n"
2226 " ssh-keygen -y [-f input_keyfile]\n"
2227 " ssh-keygen -c [-P passphrase] [-C comment] [-f keyfile]\n"
naddy@openbsd.org6288e3a2015-02-24 15:24:05 +00002228 " ssh-keygen -l [-v] [-E fingerprint_hash] [-f input_keyfile]\n"
dtucker@openbsd.org3baa4cd2017-02-17 02:32:05 +00002229 " ssh-keygen -B [-f input_keyfile]\n", RSA1_USAGE);
Damien Miller7ea845e2010-02-12 09:21:02 +11002230#ifdef ENABLE_PKCS11
Damien Millerf0858de2014-04-20 13:01:30 +10002231 fprintf(stderr,
2232 " ssh-keygen -D pkcs11\n");
Damien Miller7ea845e2010-02-12 09:21:02 +11002233#endif
Damien Millerf0858de2014-04-20 13:01:30 +10002234 fprintf(stderr,
2235 " ssh-keygen -F hostname [-f known_hosts_file] [-l]\n"
2236 " ssh-keygen -H [-f known_hosts_file]\n"
2237 " ssh-keygen -R hostname [-f known_hosts_file]\n"
2238 " ssh-keygen -r hostname [-f input_keyfile] [-g]\n"
djm@openbsd.org1d9a2e22015-05-28 07:37:31 +00002239#ifdef WITH_OPENSSL
Damien Millerf0858de2014-04-20 13:01:30 +10002240 " ssh-keygen -G output_file [-v] [-b bits] [-M memory] [-S start_point]\n"
2241 " ssh-keygen -T output_file -f input_file [-v] [-a rounds] [-J num_lines]\n"
2242 " [-j start_line] [-K checkpt] [-W generator]\n"
djm@openbsd.org1d9a2e22015-05-28 07:37:31 +00002243#endif
Damien Millerf0858de2014-04-20 13:01:30 +10002244 " ssh-keygen -s ca_key -I certificate_identity [-h] [-n principals]\n"
2245 " [-O option] [-V validity_interval] [-z serial_number] file ...\n"
2246 " ssh-keygen -L [-f input_keyfile]\n"
2247 " ssh-keygen -A\n"
2248 " ssh-keygen -k -f krl_file [-u] [-s ca_public] [-z version_number]\n"
2249 " file ...\n"
2250 " ssh-keygen -Q -f krl_file file ...\n");
Damien Miller95def091999-11-25 00:26:21 +11002251 exit(1);
Damien Miller431f66b1999-11-21 18:31:57 +11002252}
2253
Damien Miller95def091999-11-25 00:26:21 +11002254/*
2255 * Main program for key management.
2256 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002257int
Damien Millerdf8b7db2007-01-05 16:22:57 +11002258main(int argc, char **argv)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002259{
deraadt@openbsd.org2ae4f332015-01-16 06:40:12 +00002260 char dotsshdir[PATH_MAX], comment[1024], *passphrase1, *passphrase2;
djm@openbsd.org1d9a2e22015-05-28 07:37:31 +00002261 char *rr_hostname = NULL, *ep, *fp, *ra;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002262 struct sshkey *private, *public;
Damien Miller95def091999-11-25 00:26:21 +11002263 struct passwd *pw;
Damien Miller95def091999-11-25 00:26:21 +11002264 struct stat st;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002265 int r, opt, type, fd;
Damien Millerf3747bf2013-01-18 11:44:04 +11002266 int gen_all_hostkeys = 0, gen_krl = 0, update_krl = 0, check_krl = 0;
Damien Miller95def091999-11-25 00:26:21 +11002267 FILE *f;
Damien Miller02e754f2005-05-26 12:19:39 +10002268 const char *errstr;
djm@openbsd.org1d9a2e22015-05-28 07:37:31 +00002269#ifdef WITH_OPENSSL
2270 /* Moduli generation/screening */
2271 char out_file[PATH_MAX], *checkpoint = NULL;
2272 u_int32_t memory = 0, generator_wanted = 0;
2273 int do_gen_candidates = 0, do_screen_candidates = 0;
2274 unsigned long start_lineno = 0, lines_to_process = 0;
2275 BIGNUM *start = NULL;
2276#endif
Damien Miller0bc1bd82000-11-13 22:57:25 +11002277
Damien Miller95def091999-11-25 00:26:21 +11002278 extern int optind;
2279 extern char *optarg;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002280
dtucker@openbsd.orgffb1e7e2016-02-15 09:47:49 +00002281 ssh_malloc_init(); /* must be called before any mallocs */
Darren Tuckerce321d82005-10-03 18:11:24 +10002282 /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
2283 sanitise_stdfd();
2284
Darren Tucker9ac56e92007-01-14 10:19:59 +11002285 __progname = ssh_get_progname(argv[0]);
Damien Millerf9b625c2000-07-09 22:42:32 +10002286
Damien Miller72ef7c12015-01-15 02:21:31 +11002287#ifdef WITH_OPENSSL
Damien Miller4314c2b2010-09-10 11:12:09 +10002288 OpenSSL_add_all_algorithms();
Damien Miller72ef7c12015-01-15 02:21:31 +11002289#endif
Damien Millerdf8b7db2007-01-05 16:22:57 +11002290 log_init(argv[0], SYSLOG_LEVEL_INFO, SYSLOG_FACILITY_USER, 1);
Darren Tucker019cefe2003-08-02 22:40:07 +10002291
Kevin Steves3a881912002-07-20 19:05:40 +00002292 seed_rng();
Damien Millereba71ba2000-04-29 23:57:08 +10002293
djm@openbsd.orga287c5a2017-02-10 03:36:40 +00002294 msetlocale();
2295
Damien Miller5428f641999-11-25 11:54:57 +11002296 /* we need this for the home * directory. */
Damien Miller95def091999-11-25 00:26:21 +11002297 pw = getpwuid(getuid());
djm@openbsd.org3038a192015-04-17 13:19:22 +00002298 if (!pw)
2299 fatal("No user exists for uid %lu", (u_long)getuid());
2300 if (gethostname(hostname, sizeof(hostname)) < 0)
2301 fatal("gethostname: %s", strerror(errno));
Damien Miller5428f641999-11-25 11:54:57 +11002302
djm@openbsd.org56d1c832014-12-21 22:27:55 +00002303 /* Remaining characters: UYdw */
Damien Millerbcd00ab2013-12-07 10:41:55 +11002304 while ((opt = getopt(argc, argv, "ABHLQXceghiklopquvxy"
djm@openbsd.org56d1c832014-12-21 22:27:55 +00002305 "C:D:E:F:G:I:J:K:M:N:O:P:R:S:T:V:W:Z:"
2306 "a:b:f:g:j:m:n:r:s:t:z:")) != -1) {
Damien Miller95def091999-11-25 00:26:21 +11002307 switch (opt) {
Damien Miller58f1baf2011-05-05 14:06:15 +10002308 case 'A':
2309 gen_all_hostkeys = 1;
2310 break;
Damien Miller95def091999-11-25 00:26:21 +11002311 case 'b':
Damien Miller57737942010-09-10 11:16:37 +10002312 bits = (u_int32_t)strtonum(optarg, 256, 32768, &errstr);
Damien Miller02e754f2005-05-26 12:19:39 +10002313 if (errstr)
2314 fatal("Bits has bad value %s (%s)",
2315 optarg, errstr);
Damien Miller95def091999-11-25 00:26:21 +11002316 break;
djm@openbsd.org56d1c832014-12-21 22:27:55 +00002317 case 'E':
2318 fingerprint_hash = ssh_digest_alg_by_name(optarg);
2319 if (fingerprint_hash == -1)
2320 fatal("Invalid hash algorithm \"%s\"", optarg);
2321 break;
Damien Miller4b42d7f2005-03-01 21:48:35 +11002322 case 'F':
2323 find_host = 1;
2324 rr_hostname = optarg;
2325 break;
2326 case 'H':
2327 hash_hosts = 1;
2328 break;
Damien Miller0a80ca12010-02-27 07:55:05 +11002329 case 'I':
2330 cert_key_id = optarg;
2331 break;
Damien Miller4b42d7f2005-03-01 21:48:35 +11002332 case 'R':
2333 delete_host = 1;
2334 rr_hostname = optarg;
2335 break;
Damien Millerf2b70ca2010-03-05 07:39:35 +11002336 case 'L':
2337 show_cert = 1;
2338 break;
Damien Miller95def091999-11-25 00:26:21 +11002339 case 'l':
2340 print_fingerprint = 1;
2341 break;
Ben Lindstrom8fd372b2001-03-12 03:02:17 +00002342 case 'B':
2343 print_bubblebabble = 1;
2344 break;
Damien Miller44b25042010-07-02 13:35:01 +10002345 case 'm':
2346 if (strcasecmp(optarg, "RFC4716") == 0 ||
2347 strcasecmp(optarg, "ssh2") == 0) {
2348 convert_format = FMT_RFC4716;
2349 break;
2350 }
2351 if (strcasecmp(optarg, "PKCS8") == 0) {
2352 convert_format = FMT_PKCS8;
2353 break;
2354 }
2355 if (strcasecmp(optarg, "PEM") == 0) {
2356 convert_format = FMT_PEM;
2357 break;
2358 }
2359 fatal("Unsupported conversion format \"%s\"", optarg);
Damien Miller0a80ca12010-02-27 07:55:05 +11002360 case 'n':
2361 cert_principals = optarg;
2362 break;
Damien Millerbcd00ab2013-12-07 10:41:55 +11002363 case 'o':
2364 use_new_format = 1;
2365 break;
Damien Miller95def091999-11-25 00:26:21 +11002366 case 'p':
2367 change_passphrase = 1;
2368 break;
Damien Miller95def091999-11-25 00:26:21 +11002369 case 'c':
2370 change_comment = 1;
2371 break;
Damien Miller95def091999-11-25 00:26:21 +11002372 case 'f':
djm@openbsd.org1d9a2e22015-05-28 07:37:31 +00002373 if (strlcpy(identity_file, optarg,
2374 sizeof(identity_file)) >= sizeof(identity_file))
Damien Millerb089fb52005-05-26 12:16:18 +10002375 fatal("Identity filename too long");
Damien Miller95def091999-11-25 00:26:21 +11002376 have_identity = 1;
2377 break;
Damien Miller37876e92003-05-15 10:19:46 +10002378 case 'g':
2379 print_generic = 1;
2380 break;
Damien Miller95def091999-11-25 00:26:21 +11002381 case 'P':
2382 identity_passphrase = optarg;
2383 break;
Damien Miller95def091999-11-25 00:26:21 +11002384 case 'N':
2385 identity_new_passphrase = optarg;
2386 break;
Damien Millerf3747bf2013-01-18 11:44:04 +11002387 case 'Q':
2388 check_krl = 1;
2389 break;
Damien Miller0a80ca12010-02-27 07:55:05 +11002390 case 'O':
Damien Miller4e270b02010-04-16 15:56:21 +10002391 add_cert_option(optarg);
Damien Miller0a80ca12010-02-27 07:55:05 +11002392 break;
Damien Millerbcd00ab2013-12-07 10:41:55 +11002393 case 'Z':
2394 new_format_cipher = optarg;
2395 break;
Damien Miller95def091999-11-25 00:26:21 +11002396 case 'C':
2397 identity_comment = optarg;
2398 break;
Damien Miller95def091999-11-25 00:26:21 +11002399 case 'q':
2400 quiet = 1;
2401 break;
Ben Lindstrom5a707822001-04-22 17:15:46 +00002402 case 'e':
Damien Millereba71ba2000-04-29 23:57:08 +10002403 case 'x':
Ben Lindstrom5a707822001-04-22 17:15:46 +00002404 /* export key */
Damien Miller44b25042010-07-02 13:35:01 +10002405 convert_to = 1;
Damien Millereba71ba2000-04-29 23:57:08 +10002406 break;
Damien Miller0a80ca12010-02-27 07:55:05 +11002407 case 'h':
2408 cert_key_type = SSH2_CERT_TYPE_HOST;
Damien Millerd0e4a8e2010-05-21 14:58:32 +10002409 certflags_flags = 0;
Damien Miller0a80ca12010-02-27 07:55:05 +11002410 break;
Damien Millerf3747bf2013-01-18 11:44:04 +11002411 case 'k':
2412 gen_krl = 1;
2413 break;
Ben Lindstrom5a707822001-04-22 17:15:46 +00002414 case 'i':
Damien Millereba71ba2000-04-29 23:57:08 +10002415 case 'X':
Ben Lindstrom5a707822001-04-22 17:15:46 +00002416 /* import key */
Damien Miller44b25042010-07-02 13:35:01 +10002417 convert_from = 1;
Damien Millereba71ba2000-04-29 23:57:08 +10002418 break;
Damien Millereba71ba2000-04-29 23:57:08 +10002419 case 'y':
2420 print_public = 1;
2421 break;
Damien Miller0a80ca12010-02-27 07:55:05 +11002422 case 's':
2423 ca_key_path = optarg;
2424 break;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002425 case 't':
2426 key_type_name = optarg;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002427 break;
Ben Lindstrom8282d6a2001-08-06 21:44:05 +00002428 case 'D':
Damien Miller7ea845e2010-02-12 09:21:02 +11002429 pkcs11provider = optarg;
Ben Lindstromcd392282001-07-04 03:44:03 +00002430 break;
Damien Millerf3747bf2013-01-18 11:44:04 +11002431 case 'u':
2432 update_krl = 1;
2433 break;
Darren Tucker06930c72003-12-31 11:34:51 +11002434 case 'v':
2435 if (log_level == SYSLOG_LEVEL_INFO)
2436 log_level = SYSLOG_LEVEL_DEBUG1;
2437 else {
Darren Tuckerfc959702004-07-17 16:12:08 +10002438 if (log_level >= SYSLOG_LEVEL_DEBUG1 &&
Darren Tucker06930c72003-12-31 11:34:51 +11002439 log_level < SYSLOG_LEVEL_DEBUG3)
2440 log_level++;
2441 }
2442 break;
Damien Miller37876e92003-05-15 10:19:46 +10002443 case 'r':
Damien Miller4b42d7f2005-03-01 21:48:35 +11002444 rr_hostname = optarg;
Damien Miller37876e92003-05-15 10:19:46 +10002445 break;
djm@openbsd.org1d9a2e22015-05-28 07:37:31 +00002446 case 'a':
2447 rounds = (int)strtonum(optarg, 1, INT_MAX, &errstr);
2448 if (errstr)
2449 fatal("Invalid number: %s (%s)",
2450 optarg, errstr);
2451 break;
2452 case 'V':
2453 parse_cert_times(optarg);
2454 break;
2455 case 'z':
2456 errno = 0;
2457 cert_serial = strtoull(optarg, &ep, 10);
2458 if (*optarg < '0' || *optarg > '9' || *ep != '\0' ||
2459 (errno == ERANGE && cert_serial == ULLONG_MAX))
2460 fatal("Invalid serial number \"%s\"", optarg);
2461 break;
2462#ifdef WITH_OPENSSL
2463 /* Moduli generation/screening */
Darren Tucker019cefe2003-08-02 22:40:07 +10002464 case 'G':
2465 do_gen_candidates = 1;
Damien Millerb089fb52005-05-26 12:16:18 +10002466 if (strlcpy(out_file, optarg, sizeof(out_file)) >=
2467 sizeof(out_file))
2468 fatal("Output filename too long");
Darren Tucker019cefe2003-08-02 22:40:07 +10002469 break;
Darren Tucker0bb29802016-09-12 11:07:00 +10002470 case 'J':
2471 lines_to_process = strtoul(optarg, NULL, 10);
dtucker@openbsd.org7b63cf62016-09-12 03:29:16 +00002472 break;
Darren Tucker0bb29802016-09-12 11:07:00 +10002473 case 'j':
2474 start_lineno = strtoul(optarg, NULL, 10);
dtucker@openbsd.org7b63cf62016-09-12 03:29:16 +00002475 break;
Damien Miller390d0562011-10-18 16:05:19 +11002476 case 'K':
deraadt@openbsd.org2ae4f332015-01-16 06:40:12 +00002477 if (strlen(optarg) >= PATH_MAX)
Damien Miller390d0562011-10-18 16:05:19 +11002478 fatal("Checkpoint filename too long");
2479 checkpoint = xstrdup(optarg);
2480 break;
Darren Tuckerd8c3cfb2016-09-12 13:30:50 +10002481 case 'M':
2482 memory = (u_int32_t)strtonum(optarg, 1, UINT_MAX,
2483 &errstr);
2484 if (errstr)
2485 fatal("Memory limit is %s: %s", errstr, optarg);
2486 break;
Darren Tucker019cefe2003-08-02 22:40:07 +10002487 case 'S':
2488 /* XXX - also compare length against bits */
2489 if (BN_hex2bn(&start, optarg) == 0)
2490 fatal("Invalid start point.");
2491 break;
Darren Tuckeraf48d542016-09-12 13:52:17 +10002492 case 'T':
2493 do_screen_candidates = 1;
2494 if (strlcpy(out_file, optarg, sizeof(out_file)) >=
2495 sizeof(out_file))
2496 fatal("Output filename too long");
2497 break;
Darren Tucker43cceff2016-09-12 13:55:37 +10002498 case 'W':
2499 generator_wanted = (u_int32_t)strtonum(optarg, 1,
2500 UINT_MAX, &errstr);
Darren Tucker70508962016-09-12 13:57:28 +10002501 if (errstr != NULL)
2502 fatal("Desired generator invalid: %s (%s)",
2503 optarg, errstr);
Darren Tucker43cceff2016-09-12 13:55:37 +10002504 break;
Damien Miller72ef7c12015-01-15 02:21:31 +11002505#endif /* WITH_OPENSSL */
Damien Miller95def091999-11-25 00:26:21 +11002506 case '?':
2507 default:
2508 usage();
2509 }
2510 }
Darren Tucker06930c72003-12-31 11:34:51 +11002511
2512 /* reinit */
Damien Millerdf8b7db2007-01-05 16:22:57 +11002513 log_init(argv[0], log_level, SYSLOG_FACILITY_USER, 1);
Darren Tucker06930c72003-12-31 11:34:51 +11002514
Damien Miller0a80ca12010-02-27 07:55:05 +11002515 argv += optind;
2516 argc -= optind;
2517
2518 if (ca_key_path != NULL) {
Damien Millerf3747bf2013-01-18 11:44:04 +11002519 if (argc < 1 && !gen_krl) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00002520 error("Too few arguments.");
Damien Miller0a80ca12010-02-27 07:55:05 +11002521 usage();
2522 }
Damien Millerf3747bf2013-01-18 11:44:04 +11002523 } else if (argc > 0 && !gen_krl && !check_krl) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00002524 error("Too many arguments.");
Damien Miller95def091999-11-25 00:26:21 +11002525 usage();
2526 }
2527 if (change_passphrase && change_comment) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00002528 error("Can only have one of -p and -c.");
Damien Miller95def091999-11-25 00:26:21 +11002529 usage();
2530 }
Darren Tucker0f7e9102008-06-08 12:54:29 +10002531 if (print_fingerprint && (delete_host || hash_hosts)) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00002532 error("Cannot use -l with -H or -R.");
Darren Tucker0f7e9102008-06-08 12:54:29 +10002533 usage();
2534 }
Damien Millerf3747bf2013-01-18 11:44:04 +11002535 if (gen_krl) {
2536 do_gen_krl(pw, update_krl, argc, argv);
2537 return (0);
2538 }
2539 if (check_krl) {
2540 do_check_krl(pw, argc, argv);
2541 return (0);
2542 }
Damien Miller0a80ca12010-02-27 07:55:05 +11002543 if (ca_key_path != NULL) {
2544 if (cert_key_id == NULL)
2545 fatal("Must specify key id (-I) when certifying");
2546 do_ca_sign(pw, argc, argv);
2547 }
Damien Millerf2b70ca2010-03-05 07:39:35 +11002548 if (show_cert)
2549 do_show_cert(pw);
Damien Miller4b42d7f2005-03-01 21:48:35 +11002550 if (delete_host || hash_hosts || find_host)
2551 do_known_hosts(pw, rr_hostname);
Damien Millerec77c952013-01-09 15:58:00 +11002552 if (pkcs11provider != NULL)
2553 do_download(pw);
Ben Lindstrom8fd372b2001-03-12 03:02:17 +00002554 if (print_fingerprint || print_bubblebabble)
Damien Miller95def091999-11-25 00:26:21 +11002555 do_fingerprint(pw);
Damien Miller95def091999-11-25 00:26:21 +11002556 if (change_passphrase)
2557 do_change_passphrase(pw);
Damien Miller4a10d2e2002-03-11 22:53:29 +11002558 if (change_comment)
2559 do_change_comment(pw);
Damien Miller1f0311c2014-05-15 14:24:09 +10002560#ifdef WITH_OPENSSL
Damien Miller44b25042010-07-02 13:35:01 +10002561 if (convert_to)
2562 do_convert_to(pw);
2563 if (convert_from)
2564 do_convert_from(pw);
Damien Miller1f0311c2014-05-15 14:24:09 +10002565#endif
Damien Millereba71ba2000-04-29 23:57:08 +10002566 if (print_public)
2567 do_print_public(pw);
Damien Miller4b42d7f2005-03-01 21:48:35 +11002568 if (rr_hostname != NULL) {
Damien Millercb314822006-03-26 13:48:01 +11002569 unsigned int n = 0;
2570
2571 if (have_identity) {
2572 n = do_print_resource_record(pw,
2573 identity_file, rr_hostname);
djm@openbsd.org3038a192015-04-17 13:19:22 +00002574 if (n == 0)
2575 fatal("%s: %s", identity_file, strerror(errno));
Damien Millercb314822006-03-26 13:48:01 +11002576 exit(0);
2577 } else {
2578
2579 n += do_print_resource_record(pw,
2580 _PATH_HOST_RSA_KEY_FILE, rr_hostname);
2581 n += do_print_resource_record(pw,
2582 _PATH_HOST_DSA_KEY_FILE, rr_hostname);
Damien Miller3bde12a2012-06-20 21:51:11 +10002583 n += do_print_resource_record(pw,
2584 _PATH_HOST_ECDSA_KEY_FILE, rr_hostname);
Damien Miller16cd3922014-05-15 13:45:58 +10002585 n += do_print_resource_record(pw,
2586 _PATH_HOST_ED25519_KEY_FILE, rr_hostname);
Damien Millercb314822006-03-26 13:48:01 +11002587 if (n == 0)
2588 fatal("no keys found.");
2589 exit(0);
2590 }
Damien Miller37876e92003-05-15 10:19:46 +10002591 }
Damien Miller95def091999-11-25 00:26:21 +11002592
djm@openbsd.org1d9a2e22015-05-28 07:37:31 +00002593#ifdef WITH_OPENSSL
Darren Tucker019cefe2003-08-02 22:40:07 +10002594 if (do_gen_candidates) {
2595 FILE *out = fopen(out_file, "w");
Damien Miller787b2ec2003-11-21 23:56:47 +11002596
Darren Tucker019cefe2003-08-02 22:40:07 +10002597 if (out == NULL) {
2598 error("Couldn't open modulus candidate file \"%s\": %s",
2599 out_file, strerror(errno));
2600 return (1);
2601 }
Damien Miller3f54a9f2005-11-05 14:52:18 +11002602 if (bits == 0)
2603 bits = DEFAULT_BITS;
Darren Tucker019cefe2003-08-02 22:40:07 +10002604 if (gen_candidates(out, memory, bits, start) != 0)
Damien Miller15d72a02005-11-05 15:07:33 +11002605 fatal("modulus candidate generation failed");
Darren Tucker019cefe2003-08-02 22:40:07 +10002606
2607 return (0);
2608 }
2609
2610 if (do_screen_candidates) {
2611 FILE *in;
Damien Miller78d22712013-02-12 11:03:36 +11002612 FILE *out = fopen(out_file, "a");
Darren Tucker019cefe2003-08-02 22:40:07 +10002613
2614 if (have_identity && strcmp(identity_file, "-") != 0) {
2615 if ((in = fopen(identity_file, "r")) == NULL) {
2616 fatal("Couldn't open modulus candidate "
Damien Millera8e06ce2003-11-21 23:48:55 +11002617 "file \"%s\": %s", identity_file,
Darren Tucker019cefe2003-08-02 22:40:07 +10002618 strerror(errno));
2619 }
2620 } else
2621 in = stdin;
2622
2623 if (out == NULL) {
2624 fatal("Couldn't open moduli file \"%s\": %s",
2625 out_file, strerror(errno));
2626 }
Damien Millerbcd00ab2013-12-07 10:41:55 +11002627 if (prime_test(in, out, rounds == 0 ? 100 : rounds,
2628 generator_wanted, checkpoint,
Damien Millerdfceafe2012-07-06 13:44:19 +10002629 start_lineno, lines_to_process) != 0)
Damien Miller15d72a02005-11-05 15:07:33 +11002630 fatal("modulus screening failed");
Darren Tuckerf4220e62003-08-21 16:44:07 +10002631 return (0);
Darren Tucker019cefe2003-08-02 22:40:07 +10002632 }
djm@openbsd.org1d9a2e22015-05-28 07:37:31 +00002633#endif
Darren Tucker019cefe2003-08-02 22:40:07 +10002634
Damien Miller58f1baf2011-05-05 14:06:15 +10002635 if (gen_all_hostkeys) {
2636 do_gen_all_hostkeys(pw);
2637 return (0);
2638 }
2639
Damien Millerf14be5c2005-11-05 15:15:49 +11002640 if (key_type_name == NULL)
djm@openbsd.orgd1958792015-05-28 04:40:13 +00002641 key_type_name = DEFAULT_KEY_TYPE_NAME;
Damien Millerf14be5c2005-11-05 15:15:49 +11002642
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002643 type = sshkey_type_from_name(key_type_name);
djm@openbsd.org7efb4552015-01-18 13:22:28 +00002644 type_bits_valid(type, key_type_name, &bits);
Damien Miller58f1baf2011-05-05 14:06:15 +10002645
Darren Tucker3af2ac52005-11-29 13:10:24 +11002646 if (!quiet)
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002647 printf("Generating public/private %s key pair.\n",
2648 key_type_name);
djm@openbsd.org3038a192015-04-17 13:19:22 +00002649 if ((r = sshkey_generate(type, bits, &private)) != 0)
2650 fatal("key_generate failed");
2651 if ((r = sshkey_from_private(private, &public)) != 0)
2652 fatal("key_from_private failed: %s\n", ssh_err(r));
Damien Miller95def091999-11-25 00:26:21 +11002653
2654 if (!have_identity)
2655 ask_filename(pw, "Enter file in which to save the key");
2656
Damien Miller788f2122005-11-05 15:14:59 +11002657 /* Create ~/.ssh directory if it doesn't already exist. */
Damien Miller50af79b2010-05-10 11:52:00 +10002658 snprintf(dotsshdir, sizeof dotsshdir, "%s/%s",
2659 pw->pw_dir, _PATH_SSH_USER_DIR);
2660 if (strstr(identity_file, dotsshdir) != NULL) {
2661 if (stat(dotsshdir, &st) < 0) {
2662 if (errno != ENOENT) {
2663 error("Could not stat %s: %s", dotsshdir,
2664 strerror(errno));
2665 } else if (mkdir(dotsshdir, 0700) < 0) {
2666 error("Could not create directory '%s': %s",
2667 dotsshdir, strerror(errno));
2668 } else if (!quiet)
2669 printf("Created directory '%s'.\n", dotsshdir);
2670 }
Damien Miller95def091999-11-25 00:26:21 +11002671 }
2672 /* If the file already exists, ask the user to confirm. */
2673 if (stat(identity_file, &st) >= 0) {
2674 char yesno[3];
2675 printf("%s already exists.\n", identity_file);
2676 printf("Overwrite (y/n)? ");
2677 fflush(stdout);
2678 if (fgets(yesno, sizeof(yesno), stdin) == NULL)
2679 exit(1);
2680 if (yesno[0] != 'y' && yesno[0] != 'Y')
2681 exit(1);
2682 }
2683 /* Ask for a passphrase (twice). */
2684 if (identity_passphrase)
2685 passphrase1 = xstrdup(identity_passphrase);
2686 else if (identity_new_passphrase)
2687 passphrase1 = xstrdup(identity_new_passphrase);
2688 else {
2689passphrase_again:
2690 passphrase1 =
Ben Lindstrom949974b2001-06-25 05:20:31 +00002691 read_passphrase("Enter passphrase (empty for no "
2692 "passphrase): ", RP_ALLOW_STDIN);
2693 passphrase2 = read_passphrase("Enter same passphrase again: ",
2694 RP_ALLOW_STDIN);
Damien Miller95def091999-11-25 00:26:21 +11002695 if (strcmp(passphrase1, passphrase2) != 0) {
Ben Lindstrom949974b2001-06-25 05:20:31 +00002696 /*
2697 * The passphrases do not match. Clear them and
2698 * retry.
2699 */
Damien Millera5103f42014-02-04 11:20:14 +11002700 explicit_bzero(passphrase1, strlen(passphrase1));
2701 explicit_bzero(passphrase2, strlen(passphrase2));
Darren Tuckera627d422013-06-02 07:31:17 +10002702 free(passphrase1);
2703 free(passphrase2);
Damien Miller95def091999-11-25 00:26:21 +11002704 printf("Passphrases do not match. Try again.\n");
2705 goto passphrase_again;
2706 }
2707 /* Clear the other copy of the passphrase. */
Damien Millera5103f42014-02-04 11:20:14 +11002708 explicit_bzero(passphrase2, strlen(passphrase2));
Darren Tuckera627d422013-06-02 07:31:17 +10002709 free(passphrase2);
Damien Miller95def091999-11-25 00:26:21 +11002710 }
2711
Damien Miller95def091999-11-25 00:26:21 +11002712 if (identity_comment) {
2713 strlcpy(comment, identity_comment, sizeof(comment));
2714 } else {
Darren Tuckere15fb092008-11-11 16:31:43 +11002715 /* Create default comment field for the passphrase. */
Damien Miller95def091999-11-25 00:26:21 +11002716 snprintf(comment, sizeof comment, "%s@%s", pw->pw_name, hostname);
2717 }
2718
2719 /* Save the key with the given passphrase and comment. */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002720 if ((r = sshkey_save_private(private, identity_file, passphrase1,
2721 comment, use_new_format, new_format_cipher, rounds)) != 0) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00002722 error("Saving key \"%s\" failed: %s",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002723 identity_file, ssh_err(r));
Damien Millera5103f42014-02-04 11:20:14 +11002724 explicit_bzero(passphrase1, strlen(passphrase1));
Darren Tuckera627d422013-06-02 07:31:17 +10002725 free(passphrase1);
Damien Miller95def091999-11-25 00:26:21 +11002726 exit(1);
2727 }
2728 /* Clear the passphrase. */
Damien Millera5103f42014-02-04 11:20:14 +11002729 explicit_bzero(passphrase1, strlen(passphrase1));
Darren Tuckera627d422013-06-02 07:31:17 +10002730 free(passphrase1);
Damien Miller95def091999-11-25 00:26:21 +11002731
2732 /* Clear the private key and the random number generator. */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002733 sshkey_free(private);
Damien Miller95def091999-11-25 00:26:21 +11002734
2735 if (!quiet)
2736 printf("Your identification has been saved in %s.\n", identity_file);
2737
Damien Miller95def091999-11-25 00:26:21 +11002738 strlcat(identity_file, ".pub", sizeof(identity_file));
djm@openbsd.org3038a192015-04-17 13:19:22 +00002739 if ((fd = open(identity_file, O_WRONLY|O_CREAT|O_TRUNC, 0644)) == -1)
2740 fatal("Unable to save public key to %s: %s",
2741 identity_file, strerror(errno));
2742 if ((f = fdopen(fd, "w")) == NULL)
2743 fatal("fdopen %s failed: %s", identity_file, strerror(errno));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002744 if ((r = sshkey_write(public, f)) != 0)
djm@openbsd.org3038a192015-04-17 13:19:22 +00002745 error("write key failed: %s", ssh_err(r));
Damien Millereba71ba2000-04-29 23:57:08 +10002746 fprintf(f, " %s\n", comment);
Damien Miller95def091999-11-25 00:26:21 +11002747 fclose(f);
2748
2749 if (!quiet) {
djm@openbsd.org9ce86c92015-01-28 22:36:00 +00002750 fp = sshkey_fingerprint(public, fingerprint_hash,
djm@openbsd.org56d1c832014-12-21 22:27:55 +00002751 SSH_FP_DEFAULT);
djm@openbsd.org9ce86c92015-01-28 22:36:00 +00002752 ra = sshkey_fingerprint(public, fingerprint_hash,
Darren Tucker9c16ac92008-06-13 04:40:35 +10002753 SSH_FP_RANDOMART);
djm@openbsd.org9ce86c92015-01-28 22:36:00 +00002754 if (fp == NULL || ra == NULL)
2755 fatal("sshkey_fingerprint failed");
Damien Millereba71ba2000-04-29 23:57:08 +10002756 printf("Your public key has been saved in %s.\n",
2757 identity_file);
Damien Miller95def091999-11-25 00:26:21 +11002758 printf("The key fingerprint is:\n");
Ben Lindstromcfccef92001-03-13 04:57:58 +00002759 printf("%s %s\n", fp, comment);
Darren Tucker9c16ac92008-06-13 04:40:35 +10002760 printf("The key's randomart image is:\n");
2761 printf("%s\n", ra);
Darren Tuckera627d422013-06-02 07:31:17 +10002762 free(ra);
2763 free(fp);
Damien Miller95def091999-11-25 00:26:21 +11002764 }
Damien Millereba71ba2000-04-29 23:57:08 +10002765
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002766 sshkey_free(public);
Damien Miller95def091999-11-25 00:26:21 +11002767 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002768}