blob: 51c24bc55902ba6a88a0dfa834ad4f1d1fed4850 [file] [log] [blame]
djm@openbsd.org873d3e72017-04-30 23:18:44 +00001/* $OpenBSD: ssh-keygen.c,v 1.302 2017/04/30 23:18:44 djm Exp $ */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002/*
Damien Miller95def091999-11-25 00:26:21 +11003 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1994 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5 * All rights reserved
Damien Miller95def091999-11-25 00:26:21 +11006 * Identity and host key generation and maintenance.
Damien Millere4340be2000-09-16 13:29:08 +11007 *
8 * As far as I am concerned, the code I have written for this software
9 * can be used freely for any purpose. Any derived versions of this
10 * software must be clearly marked as such, and if the derived work is
11 * incompatible with the protocol description in the RFC file, it must be
12 * called by a name other than "ssh" or "Secure Shell".
Damien Miller95def091999-11-25 00:26:21 +110013 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100014
15#include "includes.h"
Damien Millerf17883e2006-03-15 11:45:54 +110016
17#include <sys/types.h>
Damien Millere3b60b52006-07-10 21:08:03 +100018#include <sys/socket.h>
Damien Millerf17883e2006-03-15 11:45:54 +110019#include <sys/stat.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100020
Damien Miller72ef7c12015-01-15 02:21:31 +110021#ifdef WITH_OPENSSL
Damien Millereba71ba2000-04-29 23:57:08 +100022#include <openssl/evp.h>
23#include <openssl/pem.h>
Darren Tuckerbfaaf962008-02-28 19:13:52 +110024#include "openbsd-compat/openssl-compat.h"
Damien Miller72ef7c12015-01-15 02:21:31 +110025#endif
Damien Millereba71ba2000-04-29 23:57:08 +100026
Darren Tucker39972492006-07-12 22:22:46 +100027#include <errno.h>
Damien Miller57cf6382006-07-10 21:13:46 +100028#include <fcntl.h>
Damien Millerb8fe89c2006-07-24 14:51:00 +100029#include <netdb.h>
Darren Tucker2ee50c52006-07-11 18:55:05 +100030#ifdef HAVE_PATHS_H
31# include <paths.h>
32#endif
Damien Miller9f2abc42006-07-10 20:53:08 +100033#include <pwd.h>
Damien Millerded319c2006-09-01 15:38:36 +100034#include <stdarg.h>
Damien Millera7a73ee2006-08-05 11:37:59 +100035#include <stdio.h>
Damien Millere7a1e5c2006-08-05 11:34:19 +100036#include <stdlib.h>
Damien Millere3476ed2006-07-24 14:13:33 +100037#include <string.h>
Damien Millere6b3b612006-07-24 14:01:23 +100038#include <unistd.h>
deraadt@openbsd.org2ae4f332015-01-16 06:40:12 +000039#include <limits.h>
djm@openbsd.orga287c5a2017-02-10 03:36:40 +000040#include <locale.h>
Damien Miller9f2abc42006-07-10 20:53:08 +100041
Damien Millerd4a8b7e1999-10-27 13:42:43 +100042#include "xmalloc.h"
djm@openbsd.org1129dcf2015-01-15 09:40:00 +000043#include "sshkey.h"
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
djm@openbsd.org249516e2017-04-29 04:12:25 +0000152/* Arbitrary extensions specified by user */
153struct cert_userext {
154 char *key;
155 char *val;
156 int crit;
157};
158struct cert_userext *cert_userext;
159size_t ncert_userext;
160
Damien Miller44b25042010-07-02 13:35:01 +1000161/* Conversion to/from various formats */
162int convert_to = 0;
163int convert_from = 0;
164enum {
165 FMT_RFC4716,
166 FMT_PKCS8,
167 FMT_PEM
168} convert_format = FMT_RFC4716;
Damien Millereba71ba2000-04-29 23:57:08 +1000169int print_public = 0;
Damien Miller37876e92003-05-15 10:19:46 +1000170int print_generic = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100171
Damien Millera41c8b12002-01-22 23:05:08 +1100172char *key_type_name = NULL;
Damien Millereba71ba2000-04-29 23:57:08 +1000173
Damien Miller757f34e2010-08-05 13:05:31 +1000174/* Load key from this PKCS#11 provider */
175char *pkcs11provider = NULL;
Damien Miller44b25042010-07-02 13:35:01 +1000176
Damien Millerbcd00ab2013-12-07 10:41:55 +1100177/* Use new OpenSSH private key format when writing SSH2 keys instead of PEM */
178int use_new_format = 0;
179
180/* Cipher for new-format private keys */
181char *new_format_cipher = NULL;
182
183/*
184 * Number of KDF rounds to derive new format keys /
185 * number of primality trials when screening moduli.
186 */
187int rounds = 0;
188
Damien Miller431f66b1999-11-21 18:31:57 +1100189/* argv0 */
190extern char *__progname;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000191
Damien Millere5c0d522014-07-03 21:24:19 +1000192char hostname[NI_MAXHOST];
Damien Millereba71ba2000-04-29 23:57:08 +1000193
djm@openbsd.org1d9a2e22015-05-28 07:37:31 +0000194#ifdef WITH_OPENSSL
Darren Tucker770fc012004-05-13 16:24:32 +1000195/* moduli.c */
Damien Millerb089fb52005-05-26 12:16:18 +1000196int gen_candidates(FILE *, u_int32_t, u_int32_t, BIGNUM *);
Damien Millerdfceafe2012-07-06 13:44:19 +1000197int prime_test(FILE *, FILE *, u_int32_t, u_int32_t, char *, unsigned long,
198 unsigned long);
djm@openbsd.org1d9a2e22015-05-28 07:37:31 +0000199#endif
Darren Tucker770fc012004-05-13 16:24:32 +1000200
Ben Lindstrombba81212001-06-25 05:01:22 +0000201static void
djm@openbsd.org7efb4552015-01-18 13:22:28 +0000202type_bits_valid(int type, const char *name, u_int32_t *bitsp)
Damien Miller58f1baf2011-05-05 14:06:15 +1000203{
Damien Miller72ef7c12015-01-15 02:21:31 +1100204#ifdef WITH_OPENSSL
djm@openbsd.org1d9a2e22015-05-28 07:37:31 +0000205 u_int maxbits, nid;
Damien Miller72ef7c12015-01-15 02:21:31 +1100206#endif
Damien Miller58f1baf2011-05-05 14:06:15 +1000207
djm@openbsd.org3038a192015-04-17 13:19:22 +0000208 if (type == KEY_UNSPEC)
209 fatal("unknown key type %s", key_type_name);
Damien Miller884b63a2011-05-05 14:14:52 +1000210 if (*bitsp == 0) {
Damien Miller773dda22015-01-30 23:10:17 +1100211#ifdef WITH_OPENSSL
Damien Miller58f1baf2011-05-05 14:06:15 +1000212 if (type == KEY_DSA)
Damien Miller884b63a2011-05-05 14:14:52 +1000213 *bitsp = DEFAULT_BITS_DSA;
djm@openbsd.org7efb4552015-01-18 13:22:28 +0000214 else if (type == KEY_ECDSA) {
215 if (name != NULL &&
216 (nid = sshkey_ecdsa_nid_from_name(name)) > 0)
217 *bitsp = sshkey_curve_nid_to_bits(nid);
218 if (*bitsp == 0)
219 *bitsp = DEFAULT_BITS_ECDSA;
Damien Miller773dda22015-01-30 23:10:17 +1100220 } else
221#endif
Damien Miller884b63a2011-05-05 14:14:52 +1000222 *bitsp = DEFAULT_BITS;
Damien Miller58f1baf2011-05-05 14:06:15 +1000223 }
Damien Miller72ef7c12015-01-15 02:21:31 +1100224#ifdef WITH_OPENSSL
Damien Miller58f1baf2011-05-05 14:06:15 +1000225 maxbits = (type == KEY_DSA) ?
226 OPENSSL_DSA_MAX_MODULUS_BITS : OPENSSL_RSA_MAX_MODULUS_BITS;
djm@openbsd.org3038a192015-04-17 13:19:22 +0000227 if (*bitsp > maxbits)
228 fatal("key bits exceeds maximum %d", maxbits);
Damien Miller884b63a2011-05-05 14:14:52 +1000229 if (type == KEY_DSA && *bitsp != 1024)
Damien Miller58f1baf2011-05-05 14:06:15 +1000230 fatal("DSA keys must be 1024 bits");
djm@openbsd.org933935c2015-07-03 03:49:45 +0000231 else if (type != KEY_ECDSA && type != KEY_ED25519 && *bitsp < 1024)
232 fatal("Key must at least be 1024 bits");
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000233 else if (type == KEY_ECDSA && sshkey_ecdsa_bits_to_nid(*bitsp) == -1)
Damien Miller58f1baf2011-05-05 14:06:15 +1000234 fatal("Invalid ECDSA key length - valid lengths are "
235 "256, 384 or 521 bits");
Damien Miller1f0311c2014-05-15 14:24:09 +1000236#endif
Damien Miller58f1baf2011-05-05 14:06:15 +1000237}
238
239static void
Damien Miller431f66b1999-11-21 18:31:57 +1100240ask_filename(struct passwd *pw, const char *prompt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000241{
Damien Miller95def091999-11-25 00:26:21 +1100242 char buf[1024];
Damien Millere39cacc2000-11-29 12:18:44 +1100243 char *name = NULL;
244
Damien Miller993dd552002-02-19 15:22:47 +1100245 if (key_type_name == NULL)
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000246 name = _PATH_SSH_CLIENT_ID_RSA;
Damien Miller90967402006-03-26 14:07:26 +1100247 else {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000248 switch (sshkey_type_from_name(key_type_name)) {
Damien Miller4e270b02010-04-16 15:56:21 +1000249 case KEY_DSA_CERT:
Damien Miller993dd552002-02-19 15:22:47 +1100250 case KEY_DSA:
251 name = _PATH_SSH_CLIENT_ID_DSA;
252 break;
Damien Millerdd190dd2010-11-11 14:17:02 +1100253#ifdef OPENSSL_HAS_ECC
Damien Millereb8b60e2010-08-31 22:41:14 +1000254 case KEY_ECDSA_CERT:
255 case KEY_ECDSA:
256 name = _PATH_SSH_CLIENT_ID_ECDSA;
257 break;
Damien Millerdd190dd2010-11-11 14:17:02 +1100258#endif
Damien Miller4e270b02010-04-16 15:56:21 +1000259 case KEY_RSA_CERT:
Damien Miller993dd552002-02-19 15:22:47 +1100260 case KEY_RSA:
261 name = _PATH_SSH_CLIENT_ID_RSA;
262 break;
Damien Miller5be9d9e2013-12-07 11:24:01 +1100263 case KEY_ED25519:
264 case KEY_ED25519_CERT:
265 name = _PATH_SSH_CLIENT_ID_ED25519;
266 break;
Damien Miller993dd552002-02-19 15:22:47 +1100267 default:
djm@openbsd.org3038a192015-04-17 13:19:22 +0000268 fatal("bad key type");
Damien Miller993dd552002-02-19 15:22:47 +1100269 }
Damien Miller90967402006-03-26 14:07:26 +1100270 }
djm@openbsd.org3038a192015-04-17 13:19:22 +0000271 snprintf(identity_file, sizeof(identity_file),
272 "%s/%s", pw->pw_dir, name);
273 printf("%s (%s): ", prompt, identity_file);
274 fflush(stdout);
Damien Miller95def091999-11-25 00:26:21 +1100275 if (fgets(buf, sizeof(buf), stdin) == NULL)
276 exit(1);
Damien Miller14b017d2007-09-17 16:09:15 +1000277 buf[strcspn(buf, "\n")] = '\0';
Damien Miller95def091999-11-25 00:26:21 +1100278 if (strcmp(buf, "") != 0)
279 strlcpy(identity_file, buf, sizeof(identity_file));
280 have_identity = 1;
Damien Miller10f6f6b1999-11-17 17:29:08 +1100281}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000282
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000283static struct sshkey *
Ben Lindstromd78ae762001-06-05 20:35:09 +0000284load_identity(char *filename)
Damien Millereba71ba2000-04-29 23:57:08 +1000285{
Ben Lindstromd0fca422001-03-26 13:44:06 +0000286 char *pass;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000287 struct sshkey *prv;
288 int r;
Ben Lindstromd0fca422001-03-26 13:44:06 +0000289
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000290 if ((r = sshkey_load_private(filename, "", &prv, NULL)) == 0)
291 return prv;
292 if (r != SSH_ERR_KEY_WRONG_PASSPHRASE)
293 fatal("Load key \"%s\": %s", filename, ssh_err(r));
294 if (identity_passphrase)
295 pass = xstrdup(identity_passphrase);
296 else
297 pass = read_passphrase("Enter passphrase: ", RP_ALLOW_STDIN);
298 r = sshkey_load_private(filename, pass, &prv, NULL);
299 explicit_bzero(pass, strlen(pass));
300 free(pass);
301 if (r != 0)
302 fatal("Load key \"%s\": %s", filename, ssh_err(r));
Ben Lindstromd0fca422001-03-26 13:44:06 +0000303 return prv;
Damien Millereba71ba2000-04-29 23:57:08 +1000304}
305
Damien Miller874d77b2000-10-14 16:23:11 +1100306#define SSH_COM_PUBLIC_BEGIN "---- BEGIN SSH2 PUBLIC KEY ----"
Ben Lindstromcb72e4f2002-06-21 00:41:51 +0000307#define SSH_COM_PUBLIC_END "---- END SSH2 PUBLIC KEY ----"
Damien Miller874d77b2000-10-14 16:23:11 +1100308#define SSH_COM_PRIVATE_BEGIN "---- BEGIN SSH2 ENCRYPTED PRIVATE KEY ----"
Kevin Stevesef4eea92001-02-05 12:42:17 +0000309#define SSH_COM_PRIVATE_KEY_MAGIC 0x3f6ff9eb
Damien Millereba71ba2000-04-29 23:57:08 +1000310
Damien Miller1f0311c2014-05-15 14:24:09 +1000311#ifdef WITH_OPENSSL
Ben Lindstrombba81212001-06-25 05:01:22 +0000312static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000313do_convert_to_ssh2(struct passwd *pw, struct sshkey *k)
Damien Millereba71ba2000-04-29 23:57:08 +1000314{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000315 size_t len;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000316 u_char *blob;
Darren Tuckerd04758d2010-01-12 19:41:57 +1100317 char comment[61];
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000318 int r;
Damien Millereba71ba2000-04-29 23:57:08 +1000319
djm@openbsd.org3038a192015-04-17 13:19:22 +0000320 if ((r = sshkey_to_blob(k, &blob, &len)) != 0)
321 fatal("key_to_blob failed: %s", ssh_err(r));
Darren Tuckerd04758d2010-01-12 19:41:57 +1100322 /* Comment + surrounds must fit into 72 chars (RFC 4716 sec 3.3) */
323 snprintf(comment, sizeof(comment),
324 "%u-bit %s, converted by %s@%s from OpenSSH",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000325 sshkey_size(k), sshkey_type(k),
Damien Millereba71ba2000-04-29 23:57:08 +1000326 pw->pw_name, hostname);
Darren Tuckerd04758d2010-01-12 19:41:57 +1100327
328 fprintf(stdout, "%s\n", SSH_COM_PUBLIC_BEGIN);
329 fprintf(stdout, "Comment: \"%s\"\n", comment);
Damien Millereba71ba2000-04-29 23:57:08 +1000330 dump_base64(stdout, blob, len);
Damien Miller874d77b2000-10-14 16:23:11 +1100331 fprintf(stdout, "%s\n", SSH_COM_PUBLIC_END);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000332 sshkey_free(k);
Darren Tuckera627d422013-06-02 07:31:17 +1000333 free(blob);
Damien Millereba71ba2000-04-29 23:57:08 +1000334 exit(0);
335}
336
Ben Lindstrombba81212001-06-25 05:01:22 +0000337static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000338do_convert_to_pkcs8(struct sshkey *k)
Damien Miller44b25042010-07-02 13:35:01 +1000339{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000340 switch (sshkey_type_plain(k->type)) {
Damien Miller44b25042010-07-02 13:35:01 +1000341 case KEY_RSA:
342 if (!PEM_write_RSA_PUBKEY(stdout, k->rsa))
343 fatal("PEM_write_RSA_PUBKEY failed");
344 break;
345 case KEY_DSA:
346 if (!PEM_write_DSA_PUBKEY(stdout, k->dsa))
347 fatal("PEM_write_DSA_PUBKEY failed");
348 break;
Damien Miller6af914a2010-09-10 11:39:26 +1000349#ifdef OPENSSL_HAS_ECC
Damien Millereb8b60e2010-08-31 22:41:14 +1000350 case KEY_ECDSA:
351 if (!PEM_write_EC_PUBKEY(stdout, k->ecdsa))
352 fatal("PEM_write_EC_PUBKEY failed");
353 break;
Damien Miller6af914a2010-09-10 11:39:26 +1000354#endif
Damien Miller44b25042010-07-02 13:35:01 +1000355 default:
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000356 fatal("%s: unsupported key type %s", __func__, sshkey_type(k));
Damien Miller44b25042010-07-02 13:35:01 +1000357 }
358 exit(0);
359}
360
361static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000362do_convert_to_pem(struct sshkey *k)
Damien Miller44b25042010-07-02 13:35:01 +1000363{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000364 switch (sshkey_type_plain(k->type)) {
Damien Miller44b25042010-07-02 13:35:01 +1000365 case KEY_RSA:
366 if (!PEM_write_RSAPublicKey(stdout, k->rsa))
367 fatal("PEM_write_RSAPublicKey failed");
368 break;
369#if notyet /* OpenSSH 0.9.8 lacks this function */
370 case KEY_DSA:
371 if (!PEM_write_DSAPublicKey(stdout, k->dsa))
372 fatal("PEM_write_DSAPublicKey failed");
373 break;
374#endif
Damien Millereb8b60e2010-08-31 22:41:14 +1000375 /* XXX ECDSA? */
Damien Miller44b25042010-07-02 13:35:01 +1000376 default:
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000377 fatal("%s: unsupported key type %s", __func__, sshkey_type(k));
Damien Miller44b25042010-07-02 13:35:01 +1000378 }
379 exit(0);
380}
381
382static void
383do_convert_to(struct passwd *pw)
384{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000385 struct sshkey *k;
Damien Miller44b25042010-07-02 13:35:01 +1000386 struct stat st;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000387 int r;
Damien Miller44b25042010-07-02 13:35:01 +1000388
389 if (!have_identity)
390 ask_filename(pw, "Enter file in which the key is");
391 if (stat(identity_file, &st) < 0)
392 fatal("%s: %s: %s", __progname, identity_file, strerror(errno));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000393 if ((r = sshkey_load_public(identity_file, &k, NULL)) != 0)
394 k = load_identity(identity_file);
Damien Miller44b25042010-07-02 13:35:01 +1000395 switch (convert_format) {
396 case FMT_RFC4716:
397 do_convert_to_ssh2(pw, k);
398 break;
399 case FMT_PKCS8:
400 do_convert_to_pkcs8(k);
401 break;
402 case FMT_PEM:
403 do_convert_to_pem(k);
404 break;
405 default:
406 fatal("%s: unknown key format %d", __func__, convert_format);
407 }
408 exit(0);
409}
410
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000411/*
412 * This is almost exactly the bignum1 encoding, but with 32 bit for length
413 * instead of 16.
414 */
Damien Miller44b25042010-07-02 13:35:01 +1000415static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000416buffer_get_bignum_bits(struct sshbuf *b, BIGNUM *value)
Damien Miller874d77b2000-10-14 16:23:11 +1100417{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000418 u_int bytes, bignum_bits;
419 int r;
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000420
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000421 if ((r = sshbuf_get_u32(b, &bignum_bits)) != 0)
422 fatal("%s: buffer error: %s", __func__, ssh_err(r));
423 bytes = (bignum_bits + 7) / 8;
424 if (sshbuf_len(b) < bytes)
425 fatal("%s: input buffer too small: need %d have %zu",
426 __func__, bytes, sshbuf_len(b));
427 if (BN_bin2bn(sshbuf_ptr(b), bytes, value) == NULL)
428 fatal("%s: BN_bin2bn failed", __func__);
429 if ((r = sshbuf_consume(b, bytes)) != 0)
430 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Miller874d77b2000-10-14 16:23:11 +1100431}
432
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000433static struct sshkey *
Ben Lindstrom90fd8142002-02-26 18:09:42 +0000434do_convert_private_ssh2_from_blob(u_char *blob, u_int blen)
Damien Miller874d77b2000-10-14 16:23:11 +1100435{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000436 struct sshbuf *b;
437 struct sshkey *key = NULL;
Damien Miller874d77b2000-10-14 16:23:11 +1100438 char *type, *cipher;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000439 u_char e1, e2, e3, *sig = NULL, data[] = "abcde12345";
440 int r, rlen, ktype;
441 u_int magic, i1, i2, i3, i4;
442 size_t slen;
Ben Lindstrome586c4c2001-06-25 05:04:58 +0000443 u_long e;
Damien Miller874d77b2000-10-14 16:23:11 +1100444
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000445 if ((b = sshbuf_from(blob, blen)) == NULL)
446 fatal("%s: sshbuf_from failed", __func__);
447 if ((r = sshbuf_get_u32(b, &magic)) != 0)
448 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Miller874d77b2000-10-14 16:23:11 +1100449
Damien Miller874d77b2000-10-14 16:23:11 +1100450 if (magic != SSH_COM_PRIVATE_KEY_MAGIC) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000451 error("bad magic 0x%x != 0x%x", magic,
452 SSH_COM_PRIVATE_KEY_MAGIC);
453 sshbuf_free(b);
Damien Miller874d77b2000-10-14 16:23:11 +1100454 return NULL;
455 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000456 if ((r = sshbuf_get_u32(b, &i1)) != 0 ||
457 (r = sshbuf_get_cstring(b, &type, NULL)) != 0 ||
458 (r = sshbuf_get_cstring(b, &cipher, NULL)) != 0 ||
459 (r = sshbuf_get_u32(b, &i2)) != 0 ||
460 (r = sshbuf_get_u32(b, &i3)) != 0 ||
461 (r = sshbuf_get_u32(b, &i4)) != 0)
462 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Miller80163902007-01-05 16:30:16 +1100463 debug("ignore (%d %d %d %d)", i1, i2, i3, i4);
Damien Miller874d77b2000-10-14 16:23:11 +1100464 if (strcmp(cipher, "none") != 0) {
465 error("unsupported cipher %s", cipher);
Darren Tuckera627d422013-06-02 07:31:17 +1000466 free(cipher);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000467 sshbuf_free(b);
Darren Tuckera627d422013-06-02 07:31:17 +1000468 free(type);
Damien Miller874d77b2000-10-14 16:23:11 +1100469 return NULL;
470 }
Darren Tuckera627d422013-06-02 07:31:17 +1000471 free(cipher);
Damien Miller874d77b2000-10-14 16:23:11 +1100472
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000473 if (strstr(type, "dsa")) {
474 ktype = KEY_DSA;
475 } else if (strstr(type, "rsa")) {
476 ktype = KEY_RSA;
477 } else {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000478 sshbuf_free(b);
Darren Tuckera627d422013-06-02 07:31:17 +1000479 free(type);
Damien Miller874d77b2000-10-14 16:23:11 +1100480 return NULL;
481 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000482 if ((key = sshkey_new_private(ktype)) == NULL)
483 fatal("key_new_private failed");
Darren Tuckera627d422013-06-02 07:31:17 +1000484 free(type);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000485
486 switch (key->type) {
487 case KEY_DSA:
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000488 buffer_get_bignum_bits(b, key->dsa->p);
489 buffer_get_bignum_bits(b, key->dsa->g);
490 buffer_get_bignum_bits(b, key->dsa->q);
491 buffer_get_bignum_bits(b, key->dsa->pub_key);
492 buffer_get_bignum_bits(b, key->dsa->priv_key);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000493 break;
494 case KEY_RSA:
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000495 if ((r = sshbuf_get_u8(b, &e1)) != 0 ||
496 (e1 < 30 && (r = sshbuf_get_u8(b, &e2)) != 0) ||
497 (e1 < 30 && (r = sshbuf_get_u8(b, &e3)) != 0))
498 fatal("%s: buffer error: %s", __func__, ssh_err(r));
499 e = e1;
Ben Lindstrom34f91882001-06-25 04:47:54 +0000500 debug("e %lx", e);
501 if (e < 30) {
502 e <<= 8;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000503 e += e2;
Ben Lindstrom34f91882001-06-25 04:47:54 +0000504 debug("e %lx", e);
505 e <<= 8;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000506 e += e3;
Ben Lindstrom34f91882001-06-25 04:47:54 +0000507 debug("e %lx", e);
508 }
509 if (!BN_set_word(key->rsa->e, e)) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000510 sshbuf_free(b);
511 sshkey_free(key);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000512 return NULL;
513 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000514 buffer_get_bignum_bits(b, key->rsa->d);
515 buffer_get_bignum_bits(b, key->rsa->n);
516 buffer_get_bignum_bits(b, key->rsa->iqmp);
517 buffer_get_bignum_bits(b, key->rsa->q);
518 buffer_get_bignum_bits(b, key->rsa->p);
519 if ((r = rsa_generate_additional_parameters(key->rsa)) != 0)
520 fatal("generate RSA parameters failed: %s", ssh_err(r));
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000521 break;
522 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000523 rlen = sshbuf_len(b);
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +0000524 if (rlen != 0)
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000525 error("do_convert_private_ssh2_from_blob: "
526 "remaining bytes in key blob %d", rlen);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000527 sshbuf_free(b);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000528
Ben Lindstrome586c4c2001-06-25 05:04:58 +0000529 /* try the key */
markus@openbsd.org76c9fbb2015-12-04 16:41:28 +0000530 if (sshkey_sign(key, &sig, &slen, data, sizeof(data), NULL, 0) != 0 ||
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000531 sshkey_verify(key, sig, slen, data, sizeof(data), 0) != 0) {
532 sshkey_free(key);
533 free(sig);
534 return NULL;
535 }
Darren Tuckera627d422013-06-02 07:31:17 +1000536 free(sig);
Damien Miller874d77b2000-10-14 16:23:11 +1100537 return key;
538}
539
Damien Miller8056a9d2006-03-15 12:05:40 +1100540static int
541get_line(FILE *fp, char *line, size_t len)
542{
543 int c;
544 size_t pos = 0;
545
546 line[0] = '\0';
547 while ((c = fgetc(fp)) != EOF) {
djm@openbsd.org3038a192015-04-17 13:19:22 +0000548 if (pos >= len - 1)
549 fatal("input line too long.");
Damien Miller90967402006-03-26 14:07:26 +1100550 switch (c) {
Damien Miller8056a9d2006-03-15 12:05:40 +1100551 case '\r':
552 c = fgetc(fp);
djm@openbsd.org3038a192015-04-17 13:19:22 +0000553 if (c != EOF && c != '\n' && ungetc(c, fp) == EOF)
554 fatal("unget: %s", strerror(errno));
Damien Miller8056a9d2006-03-15 12:05:40 +1100555 return pos;
556 case '\n':
557 return pos;
558 }
559 line[pos++] = c;
560 line[pos] = '\0';
561 }
Damien Miller6c7439f2007-01-05 16:29:55 +1100562 /* We reached EOF */
563 return -1;
Damien Miller8056a9d2006-03-15 12:05:40 +1100564}
565
Ben Lindstrombba81212001-06-25 05:01:22 +0000566static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000567do_convert_from_ssh2(struct passwd *pw, struct sshkey **k, int *private)
Damien Millereba71ba2000-04-29 23:57:08 +1000568{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000569 int r, blen, escaped = 0;
Ben Lindstrom155b9812002-04-02 20:26:26 +0000570 u_int len;
Damien Miller8056a9d2006-03-15 12:05:40 +1100571 char line[1024];
Ben Lindstrom9e0ddd42001-09-18 05:41:19 +0000572 u_char blob[8096];
Damien Millereba71ba2000-04-29 23:57:08 +1000573 char encoded[8096];
Damien Millereba71ba2000-04-29 23:57:08 +1000574 FILE *fp;
575
Damien Millerba3420a2010-06-26 09:39:07 +1000576 if ((fp = fopen(identity_file, "r")) == NULL)
577 fatal("%s: %s: %s", __progname, identity_file, strerror(errno));
Damien Millereba71ba2000-04-29 23:57:08 +1000578 encoded[0] = '\0';
Damien Miller8056a9d2006-03-15 12:05:40 +1100579 while ((blen = get_line(fp, line, sizeof(line))) != -1) {
Damien Miller746d1a62013-07-18 16:13:02 +1000580 if (blen > 0 && line[blen - 1] == '\\')
Damien Miller30c3d422000-05-09 11:02:59 +1000581 escaped++;
Damien Millereba71ba2000-04-29 23:57:08 +1000582 if (strncmp(line, "----", 4) == 0 ||
583 strstr(line, ": ") != NULL) {
Damien Miller874d77b2000-10-14 16:23:11 +1100584 if (strstr(line, SSH_COM_PRIVATE_BEGIN) != NULL)
Damien Miller44b25042010-07-02 13:35:01 +1000585 *private = 1;
Ben Lindstrome586c4c2001-06-25 05:04:58 +0000586 if (strstr(line, " END ") != NULL) {
587 break;
588 }
Ben Lindstrom30358602001-04-24 16:59:28 +0000589 /* fprintf(stderr, "ignore: %s", line); */
Damien Millereba71ba2000-04-29 23:57:08 +1000590 continue;
591 }
Damien Miller30c3d422000-05-09 11:02:59 +1000592 if (escaped) {
593 escaped--;
Ben Lindstrom30358602001-04-24 16:59:28 +0000594 /* fprintf(stderr, "escaped: %s", line); */
Damien Miller30c3d422000-05-09 11:02:59 +1000595 continue;
Damien Millereba71ba2000-04-29 23:57:08 +1000596 }
Damien Millereba71ba2000-04-29 23:57:08 +1000597 strlcat(encoded, line, sizeof(encoded));
598 }
Ben Lindstrom155b9812002-04-02 20:26:26 +0000599 len = strlen(encoded);
600 if (((len % 4) == 3) &&
601 (encoded[len-1] == '=') &&
602 (encoded[len-2] == '=') &&
603 (encoded[len-3] == '='))
604 encoded[len-3] = '\0';
Damien Miller4a8ed542002-01-22 23:33:31 +1100605 blen = uudecode(encoded, blob, sizeof(blob));
djm@openbsd.org3038a192015-04-17 13:19:22 +0000606 if (blen < 0)
607 fatal("uudecode failed.");
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000608 if (*private)
609 *k = do_convert_private_ssh2_from_blob(blob, blen);
djm@openbsd.org3038a192015-04-17 13:19:22 +0000610 else if ((r = sshkey_from_blob(blob, blen, k)) != 0)
611 fatal("decode blob failed: %s", ssh_err(r));
Damien Miller44b25042010-07-02 13:35:01 +1000612 fclose(fp);
613}
614
615static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000616do_convert_from_pkcs8(struct sshkey **k, int *private)
Damien Miller44b25042010-07-02 13:35:01 +1000617{
618 EVP_PKEY *pubkey;
619 FILE *fp;
620
621 if ((fp = fopen(identity_file, "r")) == NULL)
622 fatal("%s: %s: %s", __progname, identity_file, strerror(errno));
623 if ((pubkey = PEM_read_PUBKEY(fp, NULL, NULL, NULL)) == NULL) {
624 fatal("%s: %s is not a recognised public key format", __func__,
625 identity_file);
626 }
627 fclose(fp);
628 switch (EVP_PKEY_type(pubkey->type)) {
629 case EVP_PKEY_RSA:
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000630 if ((*k = sshkey_new(KEY_UNSPEC)) == NULL)
631 fatal("sshkey_new failed");
Damien Miller44b25042010-07-02 13:35:01 +1000632 (*k)->type = KEY_RSA;
633 (*k)->rsa = EVP_PKEY_get1_RSA(pubkey);
634 break;
635 case EVP_PKEY_DSA:
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000636 if ((*k = sshkey_new(KEY_UNSPEC)) == NULL)
637 fatal("sshkey_new failed");
Damien Miller44b25042010-07-02 13:35:01 +1000638 (*k)->type = KEY_DSA;
639 (*k)->dsa = EVP_PKEY_get1_DSA(pubkey);
640 break;
Damien Miller6af914a2010-09-10 11:39:26 +1000641#ifdef OPENSSL_HAS_ECC
Damien Millereb8b60e2010-08-31 22:41:14 +1000642 case EVP_PKEY_EC:
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000643 if ((*k = sshkey_new(KEY_UNSPEC)) == NULL)
644 fatal("sshkey_new failed");
Damien Millereb8b60e2010-08-31 22:41:14 +1000645 (*k)->type = KEY_ECDSA;
646 (*k)->ecdsa = EVP_PKEY_get1_EC_KEY(pubkey);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000647 (*k)->ecdsa_nid = sshkey_ecdsa_key_to_nid((*k)->ecdsa);
Damien Millereb8b60e2010-08-31 22:41:14 +1000648 break;
Damien Miller6af914a2010-09-10 11:39:26 +1000649#endif
Damien Miller44b25042010-07-02 13:35:01 +1000650 default:
651 fatal("%s: unsupported pubkey type %d", __func__,
652 EVP_PKEY_type(pubkey->type));
653 }
654 EVP_PKEY_free(pubkey);
655 return;
656}
657
658static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000659do_convert_from_pem(struct sshkey **k, int *private)
Damien Miller44b25042010-07-02 13:35:01 +1000660{
661 FILE *fp;
662 RSA *rsa;
663#ifdef notyet
664 DSA *dsa;
665#endif
666
667 if ((fp = fopen(identity_file, "r")) == NULL)
668 fatal("%s: %s: %s", __progname, identity_file, strerror(errno));
669 if ((rsa = PEM_read_RSAPublicKey(fp, NULL, NULL, NULL)) != NULL) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000670 if ((*k = sshkey_new(KEY_UNSPEC)) == NULL)
671 fatal("sshkey_new failed");
Damien Miller44b25042010-07-02 13:35:01 +1000672 (*k)->type = KEY_RSA;
673 (*k)->rsa = rsa;
674 fclose(fp);
675 return;
676 }
677#if notyet /* OpenSSH 0.9.8 lacks this function */
678 rewind(fp);
679 if ((dsa = PEM_read_DSAPublicKey(fp, NULL, NULL, NULL)) != NULL) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000680 if ((*k = sshkey_new(KEY_UNSPEC)) == NULL)
681 fatal("sshkey_new failed");
Damien Miller44b25042010-07-02 13:35:01 +1000682 (*k)->type = KEY_DSA;
683 (*k)->dsa = dsa;
684 fclose(fp);
685 return;
686 }
Damien Millereb8b60e2010-08-31 22:41:14 +1000687 /* XXX ECDSA */
Damien Miller44b25042010-07-02 13:35:01 +1000688#endif
689 fatal("%s: unrecognised raw private key format", __func__);
690}
691
692static void
693do_convert_from(struct passwd *pw)
694{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000695 struct sshkey *k = NULL;
696 int r, private = 0, ok = 0;
Damien Miller44b25042010-07-02 13:35:01 +1000697 struct stat st;
698
699 if (!have_identity)
700 ask_filename(pw, "Enter file in which the key is");
701 if (stat(identity_file, &st) < 0)
702 fatal("%s: %s: %s", __progname, identity_file, strerror(errno));
703
704 switch (convert_format) {
705 case FMT_RFC4716:
706 do_convert_from_ssh2(pw, &k, &private);
707 break;
708 case FMT_PKCS8:
709 do_convert_from_pkcs8(&k, &private);
710 break;
711 case FMT_PEM:
712 do_convert_from_pem(&k, &private);
713 break;
714 default:
715 fatal("%s: unknown key format %d", __func__, convert_format);
716 }
717
djm@openbsd.org7a2c3682015-01-30 00:59:19 +0000718 if (!private) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000719 if ((r = sshkey_write(k, stdout)) == 0)
720 ok = 1;
Damien Miller44b25042010-07-02 13:35:01 +1000721 if (ok)
722 fprintf(stdout, "\n");
djm@openbsd.org7a2c3682015-01-30 00:59:19 +0000723 } else {
Damien Miller44b25042010-07-02 13:35:01 +1000724 switch (k->type) {
725 case KEY_DSA:
726 ok = PEM_write_DSAPrivateKey(stdout, k->dsa, NULL,
727 NULL, 0, NULL, NULL);
728 break;
Damien Miller6af914a2010-09-10 11:39:26 +1000729#ifdef OPENSSL_HAS_ECC
Damien Millereb8b60e2010-08-31 22:41:14 +1000730 case KEY_ECDSA:
731 ok = PEM_write_ECPrivateKey(stdout, k->ecdsa, NULL,
732 NULL, 0, NULL, NULL);
733 break;
Damien Miller6af914a2010-09-10 11:39:26 +1000734#endif
Damien Miller44b25042010-07-02 13:35:01 +1000735 case KEY_RSA:
736 ok = PEM_write_RSAPrivateKey(stdout, k->rsa, NULL,
737 NULL, 0, NULL, NULL);
738 break;
739 default:
740 fatal("%s: unsupported key type %s", __func__,
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000741 sshkey_type(k));
Damien Miller44b25042010-07-02 13:35:01 +1000742 }
743 }
744
djm@openbsd.org3038a192015-04-17 13:19:22 +0000745 if (!ok)
746 fatal("key write failed");
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000747 sshkey_free(k);
Damien Millereba71ba2000-04-29 23:57:08 +1000748 exit(0);
749}
Damien Miller1f0311c2014-05-15 14:24:09 +1000750#endif
Damien Millereba71ba2000-04-29 23:57:08 +1000751
Ben Lindstrombba81212001-06-25 05:01:22 +0000752static void
Damien Millereba71ba2000-04-29 23:57:08 +1000753do_print_public(struct passwd *pw)
754{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000755 struct sshkey *prv;
Damien Millereba71ba2000-04-29 23:57:08 +1000756 struct stat st;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000757 int r;
Damien Millereba71ba2000-04-29 23:57:08 +1000758
759 if (!have_identity)
760 ask_filename(pw, "Enter file in which the key is");
djm@openbsd.org3038a192015-04-17 13:19:22 +0000761 if (stat(identity_file, &st) < 0)
762 fatal("%s: %s", identity_file, strerror(errno));
Ben Lindstromd78ae762001-06-05 20:35:09 +0000763 prv = load_identity(identity_file);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000764 if ((r = sshkey_write(prv, stdout)) != 0)
djm@openbsd.org3038a192015-04-17 13:19:22 +0000765 error("key_write failed: %s", ssh_err(r));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000766 sshkey_free(prv);
Damien Millereba71ba2000-04-29 23:57:08 +1000767 fprintf(stdout, "\n");
768 exit(0);
769}
770
Ben Lindstromcd392282001-07-04 03:44:03 +0000771static void
Damien Miller757f34e2010-08-05 13:05:31 +1000772do_download(struct passwd *pw)
Ben Lindstromcd392282001-07-04 03:44:03 +0000773{
Damien Miller7ea845e2010-02-12 09:21:02 +1100774#ifdef ENABLE_PKCS11
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000775 struct sshkey **keys = NULL;
Damien Miller7ea845e2010-02-12 09:21:02 +1100776 int i, nkeys;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000777 enum sshkey_fp_rep rep;
djm@openbsd.org56d1c832014-12-21 22:27:55 +0000778 int fptype;
Damien Millerec77c952013-01-09 15:58:00 +1100779 char *fp, *ra;
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000780
djm@openbsd.org56d1c832014-12-21 22:27:55 +0000781 fptype = print_bubblebabble ? SSH_DIGEST_SHA1 : fingerprint_hash;
782 rep = print_bubblebabble ? SSH_FP_BUBBLEBABBLE : SSH_FP_DEFAULT;
Damien Miller1422c082013-01-09 16:44:54 +1100783
Damien Miller7ea845e2010-02-12 09:21:02 +1100784 pkcs11_init(0);
785 nkeys = pkcs11_add_provider(pkcs11provider, NULL, &keys);
786 if (nkeys <= 0)
787 fatal("cannot read public key from pkcs11");
788 for (i = 0; i < nkeys; i++) {
Damien Millerec77c952013-01-09 15:58:00 +1100789 if (print_fingerprint) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000790 fp = sshkey_fingerprint(keys[i], fptype, rep);
791 ra = sshkey_fingerprint(keys[i], fingerprint_hash,
Damien Millerec77c952013-01-09 15:58:00 +1100792 SSH_FP_RANDOMART);
djm@openbsd.org9ce86c92015-01-28 22:36:00 +0000793 if (fp == NULL || ra == NULL)
794 fatal("%s: sshkey_fingerprint fail", __func__);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000795 printf("%u %s %s (PKCS11 key)\n", sshkey_size(keys[i]),
796 fp, sshkey_type(keys[i]));
Damien Millerec77c952013-01-09 15:58:00 +1100797 if (log_level >= SYSLOG_LEVEL_VERBOSE)
798 printf("%s\n", ra);
Darren Tuckera627d422013-06-02 07:31:17 +1000799 free(ra);
800 free(fp);
Damien Millerec77c952013-01-09 15:58:00 +1100801 } else {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000802 (void) sshkey_write(keys[i], stdout); /* XXX check */
Damien Millerec77c952013-01-09 15:58:00 +1100803 fprintf(stdout, "\n");
804 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000805 sshkey_free(keys[i]);
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000806 }
Darren Tuckera627d422013-06-02 07:31:17 +1000807 free(keys);
Damien Miller7ea845e2010-02-12 09:21:02 +1100808 pkcs11_terminate();
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000809 exit(0);
Damien Miller7ea845e2010-02-12 09:21:02 +1100810#else
811 fatal("no pkcs11 support");
812#endif /* ENABLE_PKCS11 */
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000813}
Ben Lindstromcd392282001-07-04 03:44:03 +0000814
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000815static struct sshkey *
816try_read_key(char **cpp)
817{
818 struct sshkey *ret;
819 int r;
820
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000821 if ((ret = sshkey_new(KEY_UNSPEC)) == NULL)
822 fatal("sshkey_new failed");
823 if ((r = sshkey_read(ret, cpp)) == 0)
824 return ret;
825 /* Not a key */
826 sshkey_free(ret);
827 return NULL;
828}
829
830static void
831fingerprint_one_key(const struct sshkey *public, const char *comment)
832{
833 char *fp = NULL, *ra = NULL;
834 enum sshkey_fp_rep rep;
835 int fptype;
836
837 fptype = print_bubblebabble ? SSH_DIGEST_SHA1 : fingerprint_hash;
838 rep = print_bubblebabble ? SSH_FP_BUBBLEBABBLE : SSH_FP_DEFAULT;
839 fp = sshkey_fingerprint(public, fptype, rep);
840 ra = sshkey_fingerprint(public, fingerprint_hash, SSH_FP_RANDOMART);
841 if (fp == NULL || ra == NULL)
842 fatal("%s: sshkey_fingerprint failed", __func__);
djm@openbsd.orga287c5a2017-02-10 03:36:40 +0000843 mprintf("%u %s %s (%s)\n", sshkey_size(public), fp,
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000844 comment ? comment : "no comment", sshkey_type(public));
845 if (log_level >= SYSLOG_LEVEL_VERBOSE)
846 printf("%s\n", ra);
847 free(ra);
848 free(fp);
849}
850
851static void
852fingerprint_private(const char *path)
853{
854 struct stat st;
855 char *comment = NULL;
856 struct sshkey *public = NULL;
857 int r;
858
859 if (stat(identity_file, &st) < 0)
860 fatal("%s: %s", path, strerror(errno));
djm@openbsd.orgbcb7bc72015-11-18 08:37:28 +0000861 if ((r = sshkey_load_public(path, &public, &comment)) != 0) {
862 debug("load public \"%s\": %s", path, ssh_err(r));
863 if ((r = sshkey_load_private(path, NULL,
864 &public, &comment)) != 0) {
865 debug("load private \"%s\": %s", path, ssh_err(r));
866 fatal("%s is not a key file.", path);
867 }
868 }
869
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000870 fingerprint_one_key(public, comment);
871 sshkey_free(public);
872 free(comment);
873}
874
Ben Lindstrombba81212001-06-25 05:01:22 +0000875static void
Damien Miller10f6f6b1999-11-17 17:29:08 +1100876do_fingerprint(struct passwd *pw)
877{
Damien Miller98c7ad62000-03-09 21:27:49 +1100878 FILE *f;
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000879 struct sshkey *public = NULL;
djm@openbsd.orgcce6a362015-12-11 03:19:09 +0000880 char *comment = NULL, *cp, *ep, line[SSH_MAX_PUBKEY_BYTES];
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000881 int i, invalid = 1;
882 const char *path;
djm@openbsd.org1a31d022016-05-02 08:49:03 +0000883 u_long lnum = 0;
Damien Miller10f6f6b1999-11-17 17:29:08 +1100884
Damien Miller95def091999-11-25 00:26:21 +1100885 if (!have_identity)
886 ask_filename(pw, "Enter file in which the key is");
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000887 path = identity_file;
Damien Miller98c7ad62000-03-09 21:27:49 +1100888
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000889 if (strcmp(identity_file, "-") == 0) {
890 f = stdin;
891 path = "(stdin)";
892 } else if ((f = fopen(path, "r")) == NULL)
893 fatal("%s: %s: %s", __progname, path, strerror(errno));
Damien Miller98c7ad62000-03-09 21:27:49 +1100894
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000895 while (read_keyfile_line(f, path, line, sizeof(line), &lnum) == 0) {
896 cp = line;
897 cp[strcspn(cp, "\n")] = '\0';
898 /* Trim leading space and comments */
899 cp = line + strspn(line, " \t");
900 if (*cp == '#' || *cp == '\0')
901 continue;
902
903 /*
904 * Input may be plain keys, private keys, authorized_keys
905 * or known_hosts.
906 */
907
908 /*
909 * Try private keys first. Assume a key is private if
910 * "SSH PRIVATE KEY" appears on the first line and we're
911 * not reading from stdin (XXX support private keys on stdin).
912 */
913 if (lnum == 1 && strcmp(identity_file, "-") != 0 &&
djm@openbsd.orgbcb7bc72015-11-18 08:37:28 +0000914 strstr(cp, "PRIVATE KEY") != NULL) {
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000915 fclose(f);
916 fingerprint_private(path);
917 exit(0);
918 }
919
920 /*
921 * If it's not a private key, then this must be prepared to
922 * accept a public key prefixed with a hostname or options.
923 * Try a bare key first, otherwise skip the leading stuff.
924 */
925 if ((public = try_read_key(&cp)) == NULL) {
926 i = strtol(cp, &ep, 10);
927 if (i == 0 || ep == NULL ||
928 (*ep != ' ' && *ep != '\t')) {
929 int quoted = 0;
930
931 comment = cp;
932 for (; *cp && (quoted || (*cp != ' ' &&
933 *cp != '\t')); cp++) {
934 if (*cp == '\\' && cp[1] == '"')
935 cp++; /* Skip both */
936 else if (*cp == '"')
937 quoted = !quoted;
938 }
939 if (!*cp)
940 continue;
941 *cp++ = '\0';
942 }
943 }
944 /* Retry after parsing leading hostname/key options */
945 if (public == NULL && (public = try_read_key(&cp)) == NULL) {
djm@openbsd.org1a31d022016-05-02 08:49:03 +0000946 debug("%s:%lu: not a public key", path, lnum);
Damien Millerba3420a2010-06-26 09:39:07 +1000947 continue;
Damien Miller95def091999-11-25 00:26:21 +1100948 }
Damien Millerba3420a2010-06-26 09:39:07 +1000949
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000950 /* Find trailing comment, if any */
951 for (; *cp == ' ' || *cp == '\t'; cp++)
Damien Millerba3420a2010-06-26 09:39:07 +1000952 ;
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000953 if (*cp != '\0' && *cp != '#')
Damien Millerba3420a2010-06-26 09:39:07 +1000954 comment = cp;
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000955
956 fingerprint_one_key(public, comment);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000957 sshkey_free(public);
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000958 invalid = 0; /* One good key in the file is sufficient */
Damien Miller95def091999-11-25 00:26:21 +1100959 }
Damien Millerba3420a2010-06-26 09:39:07 +1000960 fclose(f);
961
djm@openbsd.org3038a192015-04-17 13:19:22 +0000962 if (invalid)
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000963 fatal("%s is not a public key file.", path);
Damien Miller95def091999-11-25 00:26:21 +1100964 exit(0);
Damien Miller10f6f6b1999-11-17 17:29:08 +1100965}
966
Damien Miller4b42d7f2005-03-01 21:48:35 +1100967static void
Damien Miller58f1baf2011-05-05 14:06:15 +1000968do_gen_all_hostkeys(struct passwd *pw)
969{
970 struct {
971 char *key_type;
972 char *key_type_display;
973 char *path;
974 } key_types[] = {
djm@openbsd.org5c27e3b2015-03-23 06:06:38 +0000975#ifdef WITH_OPENSSL
Damien Miller58f1baf2011-05-05 14:06:15 +1000976 { "rsa", "RSA" ,_PATH_HOST_RSA_KEY_FILE },
977 { "dsa", "DSA", _PATH_HOST_DSA_KEY_FILE },
Damien Millerb56e4932012-02-06 07:41:27 +1100978#ifdef OPENSSL_HAS_ECC
Damien Miller58f1baf2011-05-05 14:06:15 +1000979 { "ecdsa", "ECDSA",_PATH_HOST_ECDSA_KEY_FILE },
djm@openbsd.org5c27e3b2015-03-23 06:06:38 +0000980#endif /* OPENSSL_HAS_ECC */
981#endif /* WITH_OPENSSL */
Damien Miller5be9d9e2013-12-07 11:24:01 +1100982 { "ed25519", "ED25519",_PATH_HOST_ED25519_KEY_FILE },
Damien Miller58f1baf2011-05-05 14:06:15 +1000983 { NULL, NULL, NULL }
984 };
985
986 int first = 0;
987 struct stat st;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000988 struct sshkey *private, *public;
Damien Miller58f1baf2011-05-05 14:06:15 +1000989 char comment[1024];
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000990 int i, type, fd, r;
Damien Miller58f1baf2011-05-05 14:06:15 +1000991 FILE *f;
992
993 for (i = 0; key_types[i].key_type; i++) {
994 if (stat(key_types[i].path, &st) == 0)
995 continue;
996 if (errno != ENOENT) {
djm@openbsd.org3038a192015-04-17 13:19:22 +0000997 error("Could not stat %s: %s", key_types[i].path,
Damien Miller58f1baf2011-05-05 14:06:15 +1000998 strerror(errno));
999 first = 0;
1000 continue;
1001 }
1002
1003 if (first == 0) {
1004 first = 1;
1005 printf("%s: generating new host keys: ", __progname);
1006 }
1007 printf("%s ", key_types[i].key_type_display);
1008 fflush(stdout);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001009 type = sshkey_type_from_name(key_types[i].key_type);
Damien Miller58f1baf2011-05-05 14:06:15 +10001010 strlcpy(identity_file, key_types[i].path, sizeof(identity_file));
1011 bits = 0;
djm@openbsd.org7efb4552015-01-18 13:22:28 +00001012 type_bits_valid(type, NULL, &bits);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001013 if ((r = sshkey_generate(type, bits, &private)) != 0) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00001014 error("key_generate failed: %s", ssh_err(r));
Damien Miller58f1baf2011-05-05 14:06:15 +10001015 first = 0;
1016 continue;
1017 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001018 if ((r = sshkey_from_private(private, &public)) != 0)
1019 fatal("sshkey_from_private failed: %s", ssh_err(r));
Damien Miller58f1baf2011-05-05 14:06:15 +10001020 snprintf(comment, sizeof comment, "%s@%s", pw->pw_name,
1021 hostname);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001022 if ((r = sshkey_save_private(private, identity_file, "",
1023 comment, use_new_format, new_format_cipher, rounds)) != 0) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00001024 error("Saving key \"%s\" failed: %s",
1025 identity_file, ssh_err(r));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001026 sshkey_free(private);
1027 sshkey_free(public);
Damien Miller58f1baf2011-05-05 14:06:15 +10001028 first = 0;
1029 continue;
1030 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001031 sshkey_free(private);
Damien Miller58f1baf2011-05-05 14:06:15 +10001032 strlcat(identity_file, ".pub", sizeof(identity_file));
1033 fd = open(identity_file, O_WRONLY | O_CREAT | O_TRUNC, 0644);
1034 if (fd == -1) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00001035 error("Could not save your public key in %s",
Damien Miller58f1baf2011-05-05 14:06:15 +10001036 identity_file);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001037 sshkey_free(public);
Damien Miller58f1baf2011-05-05 14:06:15 +10001038 first = 0;
1039 continue;
1040 }
1041 f = fdopen(fd, "w");
1042 if (f == NULL) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00001043 error("fdopen %s failed", identity_file);
doug@openbsd.org7df88182014-08-21 01:08:52 +00001044 close(fd);
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 }
djm@openbsd.orgbb8b4422015-01-16 15:55:07 +00001049 if ((r = sshkey_write(public, f)) != 0) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00001050 error("write key failed: %s", ssh_err(r));
doug@openbsd.org7df88182014-08-21 01:08:52 +00001051 fclose(f);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001052 sshkey_free(public);
Damien Miller58f1baf2011-05-05 14:06:15 +10001053 first = 0;
1054 continue;
1055 }
1056 fprintf(f, " %s\n", comment);
1057 fclose(f);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001058 sshkey_free(public);
Damien Miller58f1baf2011-05-05 14:06:15 +10001059
1060 }
1061 if (first != 0)
1062 printf("\n");
1063}
1064
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001065struct known_hosts_ctx {
djm@openbsd.org2b3c3c72015-01-18 21:51:19 +00001066 const char *host; /* Hostname searched for in find/delete case */
1067 FILE *out; /* Output file, stdout for find_hosts case */
1068 int has_unhashed; /* When hashing, original had unhashed hosts */
1069 int found_key; /* For find/delete, host was found */
1070 int invalid; /* File contained invalid items; don't delete */
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001071};
1072
1073static int
1074known_hosts_hash(struct hostkey_foreach_line *l, void *_ctx)
Damien Miller4b42d7f2005-03-01 21:48:35 +11001075{
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001076 struct known_hosts_ctx *ctx = (struct known_hosts_ctx *)_ctx;
1077 char *hashed, *cp, *hosts, *ohosts;
1078 int has_wild = l->hosts && strcspn(l->hosts, "*?!") != strlen(l->hosts);
dtucker@openbsd.org18501152017-03-06 02:03:20 +00001079 int was_hashed = l->hosts && l->hosts[0] == HASH_DELIM;
Darren Tucker0f7e9102008-06-08 12:54:29 +10001080
djm@openbsd.org6c5c9492015-02-16 22:08:57 +00001081 switch (l->status) {
1082 case HKF_STATUS_OK:
1083 case HKF_STATUS_MATCHED:
1084 /*
1085 * Don't hash hosts already already hashed, with wildcard
1086 * characters or a CA/revocation marker.
1087 */
djm@openbsd.org12d37672017-03-03 06:13:11 +00001088 if (was_hashed || has_wild || l->marker != MRK_NONE) {
djm@openbsd.org6c5c9492015-02-16 22:08:57 +00001089 fprintf(ctx->out, "%s\n", l->line);
1090 if (has_wild && !find_host) {
dtucker@openbsd.orgd0723702017-03-06 00:44:51 +00001091 logit("%s:%lu: ignoring host name "
djm@openbsd.org3038a192015-04-17 13:19:22 +00001092 "with wildcard: %.64s", l->path,
djm@openbsd.org6c5c9492015-02-16 22:08:57 +00001093 l->linenum, l->hosts);
1094 }
1095 return 0;
1096 }
1097 /*
1098 * Split any comma-separated hostnames from the host list,
1099 * hash and store separately.
1100 */
1101 ohosts = hosts = xstrdup(l->hosts);
1102 while ((cp = strsep(&hosts, ",")) != NULL && *cp != '\0') {
djm@openbsd.orgdb259722017-03-10 04:26:06 +00001103 lowercase(cp);
djm@openbsd.org6c5c9492015-02-16 22:08:57 +00001104 if ((hashed = host_hash(cp, NULL, 0)) == NULL)
1105 fatal("hash_host failed");
1106 fprintf(ctx->out, "%s %s\n", hashed, l->rawkey);
1107 ctx->has_unhashed = 1;
1108 }
1109 free(ohosts);
1110 return 0;
1111 case HKF_STATUS_INVALID:
1112 /* Retain invalid lines, but mark file as invalid. */
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001113 ctx->invalid = 1;
dtucker@openbsd.orgd0723702017-03-06 00:44:51 +00001114 logit("%s:%lu: invalid line", l->path, l->linenum);
djm@openbsd.org6c5c9492015-02-16 22:08:57 +00001115 /* FALLTHROUGH */
1116 default:
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001117 fprintf(ctx->out, "%s\n", l->line);
1118 return 0;
Darren Tucker0f7e9102008-06-08 12:54:29 +10001119 }
djm@openbsd.org6c5c9492015-02-16 22:08:57 +00001120 /* NOTREACHED */
1121 return -1;
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001122}
1123
1124static int
1125known_hosts_find_delete(struct hostkey_foreach_line *l, void *_ctx)
1126{
1127 struct known_hosts_ctx *ctx = (struct known_hosts_ctx *)_ctx;
djm@openbsd.org4739e8d2015-05-21 12:01:19 +00001128 enum sshkey_fp_rep rep;
1129 int fptype;
1130 char *fp;
1131
1132 fptype = print_bubblebabble ? SSH_DIGEST_SHA1 : fingerprint_hash;
1133 rep = print_bubblebabble ? SSH_FP_BUBBLEBABBLE : SSH_FP_DEFAULT;
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001134
djm@openbsd.org6c5c9492015-02-16 22:08:57 +00001135 if (l->status == HKF_STATUS_MATCHED) {
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001136 if (delete_host) {
1137 if (l->marker != MRK_NONE) {
1138 /* Don't remove CA and revocation lines */
1139 fprintf(ctx->out, "%s\n", l->line);
1140 } else {
1141 /*
1142 * Hostname matches and has no CA/revoke
1143 * marker, delete it by *not* writing the
1144 * line to ctx->out.
1145 */
1146 ctx->found_key = 1;
1147 if (!quiet)
dtucker@openbsd.orgd0723702017-03-06 00:44:51 +00001148 printf("# Host %s found: line %lu\n",
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001149 ctx->host, l->linenum);
1150 }
1151 return 0;
1152 } else if (find_host) {
1153 ctx->found_key = 1;
1154 if (!quiet) {
dtucker@openbsd.orgd0723702017-03-06 00:44:51 +00001155 printf("# Host %s found: line %lu %s\n",
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001156 ctx->host,
1157 l->linenum, l->marker == MRK_CA ? "CA" :
1158 (l->marker == MRK_REVOKE ? "REVOKED" : ""));
1159 }
1160 if (hash_hosts)
1161 known_hosts_hash(l, ctx);
djm@openbsd.org4739e8d2015-05-21 12:01:19 +00001162 else if (print_fingerprint) {
1163 fp = sshkey_fingerprint(l->key, fptype, rep);
djm@openbsd.orga287c5a2017-02-10 03:36:40 +00001164 mprintf("%s %s %s %s\n", ctx->host,
djm@openbsd.org4739e8d2015-05-21 12:01:19 +00001165 sshkey_type(l->key), fp, l->comment);
1166 free(fp);
1167 } else
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001168 fprintf(ctx->out, "%s\n", l->line);
1169 return 0;
1170 }
1171 } else if (delete_host) {
1172 /* Retain non-matching hosts when deleting */
1173 if (l->status == HKF_STATUS_INVALID) {
1174 ctx->invalid = 1;
dtucker@openbsd.orgd0723702017-03-06 00:44:51 +00001175 logit("%s:%lu: invalid line", l->path, l->linenum);
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001176 }
1177 fprintf(ctx->out, "%s\n", l->line);
1178 }
1179 return 0;
Damien Miller4b42d7f2005-03-01 21:48:35 +11001180}
1181
1182static void
1183do_known_hosts(struct passwd *pw, const char *name)
1184{
deraadt@openbsd.orgd2099de2015-01-19 00:32:54 +00001185 char *cp, tmp[PATH_MAX], old[PATH_MAX];
djm@openbsd.org2b3c3c72015-01-18 21:51:19 +00001186 int r, fd, oerrno, inplace = 0;
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001187 struct known_hosts_ctx ctx;
djm@openbsd.org4739e8d2015-05-21 12:01:19 +00001188 u_int foreach_options;
Damien Miller4b42d7f2005-03-01 21:48:35 +11001189
1190 if (!have_identity) {
1191 cp = tilde_expand_filename(_PATH_SSH_USER_HOSTFILE, pw->pw_uid);
1192 if (strlcpy(identity_file, cp, sizeof(identity_file)) >=
1193 sizeof(identity_file))
1194 fatal("Specified known hosts path too long");
Darren Tuckera627d422013-06-02 07:31:17 +10001195 free(cp);
Damien Miller4b42d7f2005-03-01 21:48:35 +11001196 have_identity = 1;
1197 }
Damien Miller4b42d7f2005-03-01 21:48:35 +11001198
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001199 memset(&ctx, 0, sizeof(ctx));
1200 ctx.out = stdout;
1201 ctx.host = name;
1202
Damien Miller4b42d7f2005-03-01 21:48:35 +11001203 /*
1204 * Find hosts goes to stdout, hash and deletions happen in-place
1205 * A corner case is ssh-keygen -HF foo, which should go to stdout
1206 */
1207 if (!find_host && (hash_hosts || delete_host)) {
1208 if (strlcpy(tmp, identity_file, sizeof(tmp)) >= sizeof(tmp) ||
1209 strlcat(tmp, ".XXXXXXXXXX", sizeof(tmp)) >= sizeof(tmp) ||
1210 strlcpy(old, identity_file, sizeof(old)) >= sizeof(old) ||
1211 strlcat(old, ".old", sizeof(old)) >= sizeof(old))
1212 fatal("known_hosts path too long");
1213 umask(077);
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001214 if ((fd = mkstemp(tmp)) == -1)
Damien Miller4b42d7f2005-03-01 21:48:35 +11001215 fatal("mkstemp: %s", strerror(errno));
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001216 if ((ctx.out = fdopen(fd, "w")) == NULL) {
1217 oerrno = errno;
Damien Miller4b42d7f2005-03-01 21:48:35 +11001218 unlink(tmp);
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001219 fatal("fdopen: %s", strerror(oerrno));
Damien Miller4b42d7f2005-03-01 21:48:35 +11001220 }
djm@openbsd.org2b3c3c72015-01-18 21:51:19 +00001221 inplace = 1;
Damien Miller4b42d7f2005-03-01 21:48:35 +11001222 }
1223
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001224 /* XXX support identity_file == "-" for stdin */
djm@openbsd.org4739e8d2015-05-21 12:01:19 +00001225 foreach_options = find_host ? HKF_WANT_MATCH : 0;
1226 foreach_options |= print_fingerprint ? HKF_WANT_PARSE_KEY : 0;
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001227 if ((r = hostkeys_foreach(identity_file,
1228 hash_hosts ? known_hosts_hash : known_hosts_find_delete, &ctx,
deraadt@openbsd.org6da413c2015-11-28 06:50:52 +00001229 name, NULL, foreach_options)) != 0) {
1230 if (inplace)
1231 unlink(tmp);
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001232 fatal("%s: hostkeys_foreach failed: %s", __func__, ssh_err(r));
deraadt@openbsd.org6da413c2015-11-28 06:50:52 +00001233 }
Damien Miller4b42d7f2005-03-01 21:48:35 +11001234
djm@openbsd.org2b3c3c72015-01-18 21:51:19 +00001235 if (inplace)
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001236 fclose(ctx.out);
Damien Miller0a80ca12010-02-27 07:55:05 +11001237
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001238 if (ctx.invalid) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00001239 error("%s is not a valid known_hosts file.", identity_file);
djm@openbsd.org2b3c3c72015-01-18 21:51:19 +00001240 if (inplace) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00001241 error("Not replacing existing known_hosts "
1242 "file because of errors");
Damien Miller4b42d7f2005-03-01 21:48:35 +11001243 unlink(tmp);
1244 }
1245 exit(1);
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001246 } else if (delete_host && !ctx.found_key) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00001247 logit("Host %s not found in %s", name, identity_file);
djm@openbsd.orgc8376432015-08-19 23:17:51 +00001248 if (inplace)
1249 unlink(tmp);
djm@openbsd.org2b3c3c72015-01-18 21:51:19 +00001250 } else if (inplace) {
Damien Miller4b42d7f2005-03-01 21:48:35 +11001251 /* Backup existing file */
1252 if (unlink(old) == -1 && errno != ENOENT)
1253 fatal("unlink %.100s: %s", old, strerror(errno));
1254 if (link(identity_file, old) == -1)
1255 fatal("link %.100s to %.100s: %s", identity_file, old,
1256 strerror(errno));
1257 /* Move new one into place */
1258 if (rename(tmp, identity_file) == -1) {
1259 error("rename\"%s\" to \"%s\": %s", tmp, identity_file,
1260 strerror(errno));
1261 unlink(tmp);
1262 unlink(old);
1263 exit(1);
1264 }
1265
djm@openbsd.org3038a192015-04-17 13:19:22 +00001266 printf("%s updated.\n", identity_file);
1267 printf("Original contents retained as %s\n", old);
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001268 if (ctx.has_unhashed) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00001269 logit("WARNING: %s contains unhashed entries", old);
1270 logit("Delete this file to ensure privacy "
1271 "of hostnames");
Damien Miller4b42d7f2005-03-01 21:48:35 +11001272 }
1273 }
1274
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001275 exit (find_host && !ctx.found_key);
Damien Miller4b42d7f2005-03-01 21:48:35 +11001276}
1277
Damien Miller95def091999-11-25 00:26:21 +11001278/*
1279 * Perform changing a passphrase. The argument is the passwd structure
1280 * for the current user.
1281 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001282static void
Damien Miller10f6f6b1999-11-17 17:29:08 +11001283do_change_passphrase(struct passwd *pw)
1284{
Damien Miller95def091999-11-25 00:26:21 +11001285 char *comment;
1286 char *old_passphrase, *passphrase1, *passphrase2;
1287 struct stat st;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001288 struct sshkey *private;
1289 int r;
Damien Miller10f6f6b1999-11-17 17:29:08 +11001290
Damien Miller95def091999-11-25 00:26:21 +11001291 if (!have_identity)
1292 ask_filename(pw, "Enter file in which the key is");
djm@openbsd.org3038a192015-04-17 13:19:22 +00001293 if (stat(identity_file, &st) < 0)
1294 fatal("%s: %s", identity_file, strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +11001295 /* Try to load the file with empty passphrase. */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001296 r = sshkey_load_private(identity_file, "", &private, &comment);
1297 if (r == SSH_ERR_KEY_WRONG_PASSPHRASE) {
Damien Miller95def091999-11-25 00:26:21 +11001298 if (identity_passphrase)
1299 old_passphrase = xstrdup(identity_passphrase);
1300 else
Ben Lindstrom949974b2001-06-25 05:20:31 +00001301 old_passphrase =
1302 read_passphrase("Enter old passphrase: ",
1303 RP_ALLOW_STDIN);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001304 r = sshkey_load_private(identity_file, old_passphrase,
1305 &private, &comment);
Damien Millera5103f42014-02-04 11:20:14 +11001306 explicit_bzero(old_passphrase, strlen(old_passphrase));
Darren Tuckera627d422013-06-02 07:31:17 +10001307 free(old_passphrase);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001308 if (r != 0)
1309 goto badkey;
1310 } else if (r != 0) {
1311 badkey:
djm@openbsd.org3038a192015-04-17 13:19:22 +00001312 fatal("Failed to load key %s: %s", identity_file, ssh_err(r));
Damien Miller95def091999-11-25 00:26:21 +11001313 }
djm@openbsd.orgf43d1722015-02-26 20:45:47 +00001314 if (comment)
djm@openbsd.orga287c5a2017-02-10 03:36:40 +00001315 mprintf("Key has comment '%s'\n", comment);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001316
Damien Miller95def091999-11-25 00:26:21 +11001317 /* Ask the new passphrase (twice). */
1318 if (identity_new_passphrase) {
1319 passphrase1 = xstrdup(identity_new_passphrase);
1320 passphrase2 = NULL;
1321 } else {
1322 passphrase1 =
Ben Lindstrom949974b2001-06-25 05:20:31 +00001323 read_passphrase("Enter new passphrase (empty for no "
1324 "passphrase): ", RP_ALLOW_STDIN);
1325 passphrase2 = read_passphrase("Enter same passphrase again: ",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001326 RP_ALLOW_STDIN);
Damien Miller95def091999-11-25 00:26:21 +11001327
1328 /* Verify that they are the same. */
1329 if (strcmp(passphrase1, passphrase2) != 0) {
Damien Millera5103f42014-02-04 11:20:14 +11001330 explicit_bzero(passphrase1, strlen(passphrase1));
1331 explicit_bzero(passphrase2, strlen(passphrase2));
Darren Tuckera627d422013-06-02 07:31:17 +10001332 free(passphrase1);
1333 free(passphrase2);
Damien Miller95def091999-11-25 00:26:21 +11001334 printf("Pass phrases do not match. Try again.\n");
1335 exit(1);
1336 }
1337 /* Destroy the other copy. */
Damien Millera5103f42014-02-04 11:20:14 +11001338 explicit_bzero(passphrase2, strlen(passphrase2));
Darren Tuckera627d422013-06-02 07:31:17 +10001339 free(passphrase2);
Damien Miller95def091999-11-25 00:26:21 +11001340 }
1341
1342 /* Save the file using the new passphrase. */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001343 if ((r = sshkey_save_private(private, identity_file, passphrase1,
1344 comment, use_new_format, new_format_cipher, rounds)) != 0) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00001345 error("Saving key \"%s\" failed: %s.",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001346 identity_file, ssh_err(r));
Damien Millera5103f42014-02-04 11:20:14 +11001347 explicit_bzero(passphrase1, strlen(passphrase1));
Darren Tuckera627d422013-06-02 07:31:17 +10001348 free(passphrase1);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001349 sshkey_free(private);
Darren Tuckera627d422013-06-02 07:31:17 +10001350 free(comment);
Damien Miller95def091999-11-25 00:26:21 +11001351 exit(1);
1352 }
1353 /* Destroy the passphrase and the copy of the key in memory. */
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); /* Destroys contents */
Darren Tuckera627d422013-06-02 07:31:17 +10001357 free(comment);
Damien Miller95def091999-11-25 00:26:21 +11001358
1359 printf("Your identification has been saved with the new passphrase.\n");
1360 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001361}
1362
Damien Miller37876e92003-05-15 10:19:46 +10001363/*
1364 * Print the SSHFP RR.
1365 */
Damien Millercb314822006-03-26 13:48:01 +11001366static int
1367do_print_resource_record(struct passwd *pw, char *fname, char *hname)
Damien Miller37876e92003-05-15 10:19:46 +10001368{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001369 struct sshkey *public;
Damien Miller37876e92003-05-15 10:19:46 +10001370 char *comment = NULL;
1371 struct stat st;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001372 int r;
Damien Miller37876e92003-05-15 10:19:46 +10001373
Damien Millercb314822006-03-26 13:48:01 +11001374 if (fname == NULL)
Damien Miller5bb88332013-07-18 16:13:37 +10001375 fatal("%s: no filename", __func__);
Damien Millercb314822006-03-26 13:48:01 +11001376 if (stat(fname, &st) < 0) {
1377 if (errno == ENOENT)
1378 return 0;
djm@openbsd.org3038a192015-04-17 13:19:22 +00001379 fatal("%s: %s", fname, strerror(errno));
Damien Miller37876e92003-05-15 10:19:46 +10001380 }
djm@openbsd.org3038a192015-04-17 13:19:22 +00001381 if ((r = sshkey_load_public(fname, &public, &comment)) != 0)
1382 fatal("Failed to read v2 public key from \"%s\": %s.",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001383 fname, ssh_err(r));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001384 export_dns_rr(hname, public, stdout, print_generic);
1385 sshkey_free(public);
1386 free(comment);
1387 return 1;
Damien Miller37876e92003-05-15 10:19:46 +10001388}
Damien Miller37876e92003-05-15 10:19:46 +10001389
Damien Miller95def091999-11-25 00:26:21 +11001390/*
1391 * Change the comment of a private key file.
1392 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001393static void
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001394do_change_comment(struct passwd *pw)
1395{
Ben Lindstrom5fc62702001-03-09 18:19:24 +00001396 char new_comment[1024], *comment, *passphrase;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001397 struct sshkey *private;
1398 struct sshkey *public;
Damien Miller95def091999-11-25 00:26:21 +11001399 struct stat st;
1400 FILE *f;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001401 int r, fd;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001402
Damien Miller95def091999-11-25 00:26:21 +11001403 if (!have_identity)
1404 ask_filename(pw, "Enter file in which the key is");
djm@openbsd.org3038a192015-04-17 13:19:22 +00001405 if (stat(identity_file, &st) < 0)
1406 fatal("%s: %s", identity_file, strerror(errno));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001407 if ((r = sshkey_load_private(identity_file, "",
1408 &private, &comment)) == 0)
1409 passphrase = xstrdup("");
djm@openbsd.org3038a192015-04-17 13:19:22 +00001410 else if (r != SSH_ERR_KEY_WRONG_PASSPHRASE)
1411 fatal("Cannot load private key \"%s\": %s.",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001412 identity_file, ssh_err(r));
djm@openbsd.org3038a192015-04-17 13:19:22 +00001413 else {
Damien Miller95def091999-11-25 00:26:21 +11001414 if (identity_passphrase)
1415 passphrase = xstrdup(identity_passphrase);
1416 else if (identity_new_passphrase)
1417 passphrase = xstrdup(identity_new_passphrase);
1418 else
Ben Lindstrom949974b2001-06-25 05:20:31 +00001419 passphrase = read_passphrase("Enter passphrase: ",
1420 RP_ALLOW_STDIN);
Damien Miller95def091999-11-25 00:26:21 +11001421 /* Try to load using the passphrase. */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001422 if ((r = sshkey_load_private(identity_file, passphrase,
1423 &private, &comment)) != 0) {
Damien Millera5103f42014-02-04 11:20:14 +11001424 explicit_bzero(passphrase, strlen(passphrase));
Darren Tuckera627d422013-06-02 07:31:17 +10001425 free(passphrase);
djm@openbsd.org3038a192015-04-17 13:19:22 +00001426 fatal("Cannot load private key \"%s\": %s.",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001427 identity_file, ssh_err(r));
Damien Miller95def091999-11-25 00:26:21 +11001428 }
1429 }
halex@openbsd.org4d906252015-11-20 23:04:01 +00001430
djm@openbsd.org873d3e72017-04-30 23:18:44 +00001431 if (private->type != KEY_ED25519 && !use_new_format) {
1432 error("Comments are only supported for keys stored in "
halex@openbsd.org4d906252015-11-20 23:04:01 +00001433 "the new format (-o).");
tobias@openbsd.org704d8c82015-03-31 11:06:49 +00001434 explicit_bzero(passphrase, strlen(passphrase));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001435 sshkey_free(private);
Ben Lindstromd0fca422001-03-26 13:44:06 +00001436 exit(1);
Damien Miller9f0f5c62001-12-21 14:45:46 +11001437 }
millert@openbsd.orge40269b2017-02-08 20:32:43 +00001438 if (comment)
1439 printf("Key now has comment '%s'\n", comment);
1440 else
1441 printf("Key now has no comment\n");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001442
Damien Miller95def091999-11-25 00:26:21 +11001443 if (identity_comment) {
1444 strlcpy(new_comment, identity_comment, sizeof(new_comment));
1445 } else {
1446 printf("Enter new comment: ");
1447 fflush(stdout);
1448 if (!fgets(new_comment, sizeof(new_comment), stdin)) {
Damien Millera5103f42014-02-04 11:20:14 +11001449 explicit_bzero(passphrase, strlen(passphrase));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001450 sshkey_free(private);
Damien Miller95def091999-11-25 00:26:21 +11001451 exit(1);
1452 }
Damien Miller14b017d2007-09-17 16:09:15 +10001453 new_comment[strcspn(new_comment, "\n")] = '\0';
Damien Miller95def091999-11-25 00:26:21 +11001454 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001455
Damien Miller95def091999-11-25 00:26:21 +11001456 /* Save the file using the new passphrase. */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001457 if ((r = sshkey_save_private(private, identity_file, passphrase,
1458 new_comment, use_new_format, new_format_cipher, rounds)) != 0) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00001459 error("Saving key \"%s\" failed: %s",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001460 identity_file, ssh_err(r));
Damien Millera5103f42014-02-04 11:20:14 +11001461 explicit_bzero(passphrase, strlen(passphrase));
Darren Tuckera627d422013-06-02 07:31:17 +10001462 free(passphrase);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001463 sshkey_free(private);
Darren Tuckera627d422013-06-02 07:31:17 +10001464 free(comment);
Damien Miller95def091999-11-25 00:26:21 +11001465 exit(1);
1466 }
Damien Millera5103f42014-02-04 11:20:14 +11001467 explicit_bzero(passphrase, strlen(passphrase));
Darren Tuckera627d422013-06-02 07:31:17 +10001468 free(passphrase);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001469 if ((r = sshkey_from_private(private, &public)) != 0)
1470 fatal("key_from_private failed: %s", ssh_err(r));
1471 sshkey_free(private);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001472
Damien Miller95def091999-11-25 00:26:21 +11001473 strlcat(identity_file, ".pub", sizeof(identity_file));
Ben Lindstrom5fc62702001-03-09 18:19:24 +00001474 fd = open(identity_file, O_WRONLY | O_CREAT | O_TRUNC, 0644);
djm@openbsd.org3038a192015-04-17 13:19:22 +00001475 if (fd == -1)
1476 fatal("Could not save your public key in %s", identity_file);
Ben Lindstrom5fc62702001-03-09 18:19:24 +00001477 f = fdopen(fd, "w");
djm@openbsd.org3038a192015-04-17 13:19:22 +00001478 if (f == NULL)
1479 fatal("fdopen %s failed: %s", identity_file, strerror(errno));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001480 if ((r = sshkey_write(public, f)) != 0)
djm@openbsd.org3038a192015-04-17 13:19:22 +00001481 fatal("write key failed: %s", ssh_err(r));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001482 sshkey_free(public);
Damien Millereba71ba2000-04-29 23:57:08 +10001483 fprintf(f, " %s\n", new_comment);
Damien Miller95def091999-11-25 00:26:21 +11001484 fclose(f);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001485
Darren Tuckera627d422013-06-02 07:31:17 +10001486 free(comment);
Damien Miller95def091999-11-25 00:26:21 +11001487
1488 printf("The comment in your key file has been changed.\n");
1489 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001490}
1491
Damien Miller0a80ca12010-02-27 07:55:05 +11001492static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001493add_flag_option(struct sshbuf *c, const char *name)
Damien Miller0a80ca12010-02-27 07:55:05 +11001494{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001495 int r;
1496
Damien Miller0a80ca12010-02-27 07:55:05 +11001497 debug3("%s: %s", __func__, name);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001498 if ((r = sshbuf_put_cstring(c, name)) != 0 ||
1499 (r = sshbuf_put_string(c, NULL, 0)) != 0)
1500 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Miller0a80ca12010-02-27 07:55:05 +11001501}
1502
1503static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001504add_string_option(struct sshbuf *c, const char *name, const char *value)
Damien Miller0a80ca12010-02-27 07:55:05 +11001505{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001506 struct sshbuf *b;
1507 int r;
Damien Miller0a80ca12010-02-27 07:55:05 +11001508
1509 debug3("%s: %s=%s", __func__, name, value);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001510 if ((b = sshbuf_new()) == NULL)
1511 fatal("%s: sshbuf_new failed", __func__);
1512 if ((r = sshbuf_put_cstring(b, value)) != 0 ||
1513 (r = sshbuf_put_cstring(c, name)) != 0 ||
1514 (r = sshbuf_put_stringb(c, b)) != 0)
1515 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Miller0a80ca12010-02-27 07:55:05 +11001516
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001517 sshbuf_free(b);
Damien Miller0a80ca12010-02-27 07:55:05 +11001518}
1519
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001520#define OPTIONS_CRITICAL 1
1521#define OPTIONS_EXTENSIONS 2
Damien Miller0a80ca12010-02-27 07:55:05 +11001522static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001523prepare_options_buf(struct sshbuf *c, int which)
Damien Miller0a80ca12010-02-27 07:55:05 +11001524{
djm@openbsd.org249516e2017-04-29 04:12:25 +00001525 size_t i;
1526
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001527 sshbuf_reset(c);
Damien Miller1da63882010-08-05 13:03:51 +10001528 if ((which & OPTIONS_CRITICAL) != 0 &&
1529 certflags_command != NULL)
1530 add_string_option(c, "force-command", certflags_command);
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001531 if ((which & OPTIONS_EXTENSIONS) != 0 &&
Damien Miller2ce12ef2011-05-05 14:17:18 +10001532 (certflags_flags & CERTOPT_X_FWD) != 0)
1533 add_flag_option(c, "permit-X11-forwarding");
1534 if ((which & OPTIONS_EXTENSIONS) != 0 &&
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001535 (certflags_flags & CERTOPT_AGENT_FWD) != 0)
Damien Miller4e270b02010-04-16 15:56:21 +10001536 add_flag_option(c, "permit-agent-forwarding");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001537 if ((which & OPTIONS_EXTENSIONS) != 0 &&
1538 (certflags_flags & CERTOPT_PORT_FWD) != 0)
Damien Miller4e270b02010-04-16 15:56:21 +10001539 add_flag_option(c, "permit-port-forwarding");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001540 if ((which & OPTIONS_EXTENSIONS) != 0 &&
1541 (certflags_flags & CERTOPT_PTY) != 0)
Damien Miller4e270b02010-04-16 15:56:21 +10001542 add_flag_option(c, "permit-pty");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001543 if ((which & OPTIONS_EXTENSIONS) != 0 &&
1544 (certflags_flags & CERTOPT_USER_RC) != 0)
Damien Miller4e270b02010-04-16 15:56:21 +10001545 add_flag_option(c, "permit-user-rc");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001546 if ((which & OPTIONS_CRITICAL) != 0 &&
1547 certflags_src_addr != NULL)
1548 add_string_option(c, "source-address", certflags_src_addr);
djm@openbsd.org249516e2017-04-29 04:12:25 +00001549 for (i = 0; i < ncert_userext; i++) {
1550 if ((cert_userext[i].crit && (which & OPTIONS_EXTENSIONS)) ||
1551 (!cert_userext[i].crit && (which & OPTIONS_CRITICAL)))
1552 continue;
1553 if (cert_userext[i].val == NULL)
1554 add_flag_option(c, cert_userext[i].key);
1555 else {
1556 add_string_option(c, cert_userext[i].key,
1557 cert_userext[i].val);
1558 }
1559 }
Damien Miller0a80ca12010-02-27 07:55:05 +11001560}
1561
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001562static struct sshkey *
Damien Miller757f34e2010-08-05 13:05:31 +10001563load_pkcs11_key(char *path)
1564{
1565#ifdef ENABLE_PKCS11
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001566 struct sshkey **keys = NULL, *public, *private = NULL;
1567 int r, i, nkeys;
Damien Miller757f34e2010-08-05 13:05:31 +10001568
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001569 if ((r = sshkey_load_public(path, &public, NULL)) != 0)
1570 fatal("Couldn't load CA public key \"%s\": %s",
1571 path, ssh_err(r));
Damien Miller757f34e2010-08-05 13:05:31 +10001572
1573 nkeys = pkcs11_add_provider(pkcs11provider, identity_passphrase, &keys);
1574 debug3("%s: %d keys", __func__, nkeys);
1575 if (nkeys <= 0)
1576 fatal("cannot read public key from pkcs11");
1577 for (i = 0; i < nkeys; i++) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001578 if (sshkey_equal_public(public, keys[i])) {
Damien Miller757f34e2010-08-05 13:05:31 +10001579 private = keys[i];
1580 continue;
1581 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001582 sshkey_free(keys[i]);
Damien Miller757f34e2010-08-05 13:05:31 +10001583 }
Darren Tuckera627d422013-06-02 07:31:17 +10001584 free(keys);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001585 sshkey_free(public);
Damien Miller757f34e2010-08-05 13:05:31 +10001586 return private;
1587#else
1588 fatal("no pkcs11 support");
1589#endif /* ENABLE_PKCS11 */
1590}
1591
Damien Miller0a80ca12010-02-27 07:55:05 +11001592static void
1593do_ca_sign(struct passwd *pw, int argc, char **argv)
1594{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001595 int r, i, fd;
Damien Miller0a80ca12010-02-27 07:55:05 +11001596 u_int n;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001597 struct sshkey *ca, *public;
djm@openbsd.org499cf362015-11-19 01:08:55 +00001598 char valid[64], *otmp, *tmp, *cp, *out, *comment, **plist = NULL;
Damien Miller0a80ca12010-02-27 07:55:05 +11001599 FILE *f;
Damien Miller4e270b02010-04-16 15:56:21 +10001600
Damien Miller1f0311c2014-05-15 14:24:09 +10001601#ifdef ENABLE_PKCS11
Damien Miller757f34e2010-08-05 13:05:31 +10001602 pkcs11_init(1);
Damien Miller1f0311c2014-05-15 14:24:09 +10001603#endif
Damien Miller757f34e2010-08-05 13:05:31 +10001604 tmp = tilde_expand_filename(ca_key_path, pw->pw_uid);
1605 if (pkcs11provider != NULL) {
1606 if ((ca = load_pkcs11_key(tmp)) == NULL)
1607 fatal("No PKCS#11 key matching %s found", ca_key_path);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001608 } else
1609 ca = load_identity(tmp);
Darren Tuckera627d422013-06-02 07:31:17 +10001610 free(tmp);
Damien Miller757f34e2010-08-05 13:05:31 +10001611
djm@openbsd.org57464e32016-05-02 09:36:42 +00001612 if (key_type_name != NULL &&
1613 sshkey_type_from_name(key_type_name) != ca->type) {
1614 fatal("CA key type %s doesn't match specified %s",
1615 sshkey_ssh_name(ca), key_type_name);
1616 }
1617
Damien Miller0a80ca12010-02-27 07:55:05 +11001618 for (i = 0; i < argc; i++) {
1619 /* Split list of principals */
1620 n = 0;
1621 if (cert_principals != NULL) {
1622 otmp = tmp = xstrdup(cert_principals);
1623 plist = NULL;
1624 for (; (cp = strsep(&tmp, ",")) != NULL; n++) {
deraadt@openbsd.org657a5fb2015-04-24 01:36:00 +00001625 plist = xreallocarray(plist, n + 1, sizeof(*plist));
Damien Miller0a80ca12010-02-27 07:55:05 +11001626 if (*(plist[n] = xstrdup(cp)) == '\0')
1627 fatal("Empty principal name");
1628 }
Darren Tuckera627d422013-06-02 07:31:17 +10001629 free(otmp);
Damien Miller0a80ca12010-02-27 07:55:05 +11001630 }
1631
1632 tmp = tilde_expand_filename(argv[i], pw->pw_uid);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001633 if ((r = sshkey_load_public(tmp, &public, &comment)) != 0)
1634 fatal("%s: unable to open \"%s\": %s",
1635 __func__, tmp, ssh_err(r));
Damien Millereb8b60e2010-08-31 22:41:14 +10001636 if (public->type != KEY_RSA && public->type != KEY_DSA &&
Damien Miller5be9d9e2013-12-07 11:24:01 +11001637 public->type != KEY_ECDSA && public->type != KEY_ED25519)
Damien Miller0a80ca12010-02-27 07:55:05 +11001638 fatal("%s: key \"%s\" type %s cannot be certified",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001639 __func__, tmp, sshkey_type(public));
Damien Miller0a80ca12010-02-27 07:55:05 +11001640
1641 /* Prepare certificate to sign */
djm@openbsd.orgc28fc622015-07-03 03:43:18 +00001642 if ((r = sshkey_to_certified(public)) != 0)
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001643 fatal("Could not upgrade key %s to certificate: %s",
1644 tmp, ssh_err(r));
Damien Miller0a80ca12010-02-27 07:55:05 +11001645 public->cert->type = cert_key_type;
Damien Miller4e270b02010-04-16 15:56:21 +10001646 public->cert->serial = (u_int64_t)cert_serial;
Damien Miller0a80ca12010-02-27 07:55:05 +11001647 public->cert->key_id = xstrdup(cert_key_id);
1648 public->cert->nprincipals = n;
1649 public->cert->principals = plist;
1650 public->cert->valid_after = cert_valid_from;
1651 public->cert->valid_before = cert_valid_to;
djm@openbsd.orgc28fc622015-07-03 03:43:18 +00001652 prepare_options_buf(public->cert->critical, OPTIONS_CRITICAL);
1653 prepare_options_buf(public->cert->extensions,
1654 OPTIONS_EXTENSIONS);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001655 if ((r = sshkey_from_private(ca,
1656 &public->cert->signature_key)) != 0)
1657 fatal("key_from_private (ca key): %s", ssh_err(r));
Damien Miller0a80ca12010-02-27 07:55:05 +11001658
djm@openbsd.org57464e32016-05-02 09:36:42 +00001659 if ((r = sshkey_certify(public, ca, key_type_name)) != 0)
1660 fatal("Couldn't certify key %s: %s", tmp, ssh_err(r));
Damien Miller0a80ca12010-02-27 07:55:05 +11001661
1662 if ((cp = strrchr(tmp, '.')) != NULL && strcmp(cp, ".pub") == 0)
1663 *cp = '\0';
1664 xasprintf(&out, "%s-cert.pub", tmp);
Darren Tuckera627d422013-06-02 07:31:17 +10001665 free(tmp);
Damien Miller0a80ca12010-02-27 07:55:05 +11001666
1667 if ((fd = open(out, O_WRONLY|O_CREAT|O_TRUNC, 0644)) == -1)
1668 fatal("Could not open \"%s\" for writing: %s", out,
1669 strerror(errno));
1670 if ((f = fdopen(fd, "w")) == NULL)
1671 fatal("%s: fdopen: %s", __func__, strerror(errno));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001672 if ((r = sshkey_write(public, f)) != 0)
1673 fatal("Could not write certified key to %s: %s",
1674 out, ssh_err(r));
Damien Miller0a80ca12010-02-27 07:55:05 +11001675 fprintf(f, " %s\n", comment);
1676 fclose(f);
1677
Damien Miller4e270b02010-04-16 15:56:21 +10001678 if (!quiet) {
djm@openbsd.org964ab3e2015-11-19 01:12:32 +00001679 sshkey_format_cert_validity(public->cert,
djm@openbsd.org499cf362015-11-19 01:08:55 +00001680 valid, sizeof(valid));
Damien Miller4e270b02010-04-16 15:56:21 +10001681 logit("Signed %s key %s: id \"%s\" serial %llu%s%s "
djm@openbsd.org964ab3e2015-11-19 01:12:32 +00001682 "valid %s", sshkey_cert_type(public),
Damien Miller821de0a2011-01-11 17:20:29 +11001683 out, public->cert->key_id,
1684 (unsigned long long)public->cert->serial,
Damien Miller0a80ca12010-02-27 07:55:05 +11001685 cert_principals != NULL ? " for " : "",
1686 cert_principals != NULL ? cert_principals : "",
djm@openbsd.org499cf362015-11-19 01:08:55 +00001687 valid);
Damien Miller4e270b02010-04-16 15:56:21 +10001688 }
Damien Miller0a80ca12010-02-27 07:55:05 +11001689
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001690 sshkey_free(public);
Darren Tuckera627d422013-06-02 07:31:17 +10001691 free(out);
Damien Miller0a80ca12010-02-27 07:55:05 +11001692 }
Damien Miller1f0311c2014-05-15 14:24:09 +10001693#ifdef ENABLE_PKCS11
Damien Miller757f34e2010-08-05 13:05:31 +10001694 pkcs11_terminate();
Damien Miller1f0311c2014-05-15 14:24:09 +10001695#endif
Damien Miller0a80ca12010-02-27 07:55:05 +11001696 exit(0);
1697}
1698
1699static u_int64_t
1700parse_relative_time(const char *s, time_t now)
1701{
1702 int64_t mul, secs;
1703
1704 mul = *s == '-' ? -1 : 1;
1705
1706 if ((secs = convtime(s + 1)) == -1)
1707 fatal("Invalid relative certificate time %s", s);
1708 if (mul == -1 && secs > now)
1709 fatal("Certificate time %s cannot be represented", s);
1710 return now + (u_int64_t)(secs * mul);
1711}
1712
1713static u_int64_t
1714parse_absolute_time(const char *s)
1715{
1716 struct tm tm;
1717 time_t tt;
Damien Miller2ca342b2010-03-03 12:14:15 +11001718 char buf[32], *fmt;
Damien Miller0a80ca12010-02-27 07:55:05 +11001719
Damien Miller2ca342b2010-03-03 12:14:15 +11001720 /*
djm@openbsd.org964ab3e2015-11-19 01:12:32 +00001721 * POSIX strptime says "The application shall ensure that there
Damien Miller2ca342b2010-03-03 12:14:15 +11001722 * is white-space or other non-alphanumeric characters between
1723 * any two conversion specifications" so arrange things this way.
1724 */
1725 switch (strlen(s)) {
1726 case 8:
Damien Miller3e1ee492010-03-08 09:24:11 +11001727 fmt = "%Y-%m-%d";
1728 snprintf(buf, sizeof(buf), "%.4s-%.2s-%.2s", s, s + 4, s + 6);
Damien Miller2ca342b2010-03-03 12:14:15 +11001729 break;
1730 case 14:
Damien Miller3e1ee492010-03-08 09:24:11 +11001731 fmt = "%Y-%m-%dT%H:%M:%S";
1732 snprintf(buf, sizeof(buf), "%.4s-%.2s-%.2sT%.2s:%.2s:%.2s",
Damien Miller2ca342b2010-03-03 12:14:15 +11001733 s, s + 4, s + 6, s + 8, s + 10, s + 12);
1734 break;
1735 default:
Damien Miller0a80ca12010-02-27 07:55:05 +11001736 fatal("Invalid certificate time format %s", s);
Damien Miller2ca342b2010-03-03 12:14:15 +11001737 }
Damien Miller0a80ca12010-02-27 07:55:05 +11001738
Damien Miller1d2c4562014-02-04 11:18:20 +11001739 memset(&tm, 0, sizeof(tm));
Damien Miller2ca342b2010-03-03 12:14:15 +11001740 if (strptime(buf, fmt, &tm) == NULL)
Damien Miller0a80ca12010-02-27 07:55:05 +11001741 fatal("Invalid certificate time %s", s);
1742 if ((tt = mktime(&tm)) < 0)
1743 fatal("Certificate time %s cannot be represented", s);
1744 return (u_int64_t)tt;
1745}
1746
1747static void
1748parse_cert_times(char *timespec)
1749{
1750 char *from, *to;
1751 time_t now = time(NULL);
1752 int64_t secs;
1753
1754 /* +timespec relative to now */
1755 if (*timespec == '+' && strchr(timespec, ':') == NULL) {
1756 if ((secs = convtime(timespec + 1)) == -1)
1757 fatal("Invalid relative certificate life %s", timespec);
1758 cert_valid_to = now + secs;
1759 /*
1760 * Backdate certificate one minute to avoid problems on hosts
1761 * with poorly-synchronised clocks.
1762 */
1763 cert_valid_from = ((now - 59)/ 60) * 60;
1764 return;
1765 }
1766
1767 /*
1768 * from:to, where
1769 * from := [+-]timespec | YYYYMMDD | YYYYMMDDHHMMSS
1770 * to := [+-]timespec | YYYYMMDD | YYYYMMDDHHMMSS
1771 */
1772 from = xstrdup(timespec);
1773 to = strchr(from, ':');
1774 if (to == NULL || from == to || *(to + 1) == '\0')
Damien Miller910f2092010-03-04 14:17:22 +11001775 fatal("Invalid certificate life specification %s", timespec);
Damien Miller0a80ca12010-02-27 07:55:05 +11001776 *to++ = '\0';
1777
1778 if (*from == '-' || *from == '+')
1779 cert_valid_from = parse_relative_time(from, now);
1780 else
1781 cert_valid_from = parse_absolute_time(from);
1782
1783 if (*to == '-' || *to == '+')
Damien Miller5b01b0d2013-10-23 16:31:31 +11001784 cert_valid_to = parse_relative_time(to, now);
Damien Miller0a80ca12010-02-27 07:55:05 +11001785 else
1786 cert_valid_to = parse_absolute_time(to);
1787
1788 if (cert_valid_to <= cert_valid_from)
1789 fatal("Empty certificate validity interval");
Darren Tuckera627d422013-06-02 07:31:17 +10001790 free(from);
Damien Miller0a80ca12010-02-27 07:55:05 +11001791}
1792
1793static void
Damien Miller4e270b02010-04-16 15:56:21 +10001794add_cert_option(char *opt)
Damien Miller0a80ca12010-02-27 07:55:05 +11001795{
djm@openbsd.org249516e2017-04-29 04:12:25 +00001796 char *val, *cp;
1797 int iscrit = 0;
Damien Miller0a80ca12010-02-27 07:55:05 +11001798
Damien Miller044f4a62011-05-05 14:14:08 +10001799 if (strcasecmp(opt, "clear") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001800 certflags_flags = 0;
Damien Miller0a80ca12010-02-27 07:55:05 +11001801 else if (strcasecmp(opt, "no-x11-forwarding") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001802 certflags_flags &= ~CERTOPT_X_FWD;
Damien Miller0a80ca12010-02-27 07:55:05 +11001803 else if (strcasecmp(opt, "permit-x11-forwarding") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001804 certflags_flags |= CERTOPT_X_FWD;
Damien Miller0a80ca12010-02-27 07:55:05 +11001805 else if (strcasecmp(opt, "no-agent-forwarding") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001806 certflags_flags &= ~CERTOPT_AGENT_FWD;
Damien Miller0a80ca12010-02-27 07:55:05 +11001807 else if (strcasecmp(opt, "permit-agent-forwarding") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001808 certflags_flags |= CERTOPT_AGENT_FWD;
Damien Miller0a80ca12010-02-27 07:55:05 +11001809 else if (strcasecmp(opt, "no-port-forwarding") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001810 certflags_flags &= ~CERTOPT_PORT_FWD;
Damien Miller0a80ca12010-02-27 07:55:05 +11001811 else if (strcasecmp(opt, "permit-port-forwarding") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001812 certflags_flags |= CERTOPT_PORT_FWD;
Damien Miller0a80ca12010-02-27 07:55:05 +11001813 else if (strcasecmp(opt, "no-pty") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001814 certflags_flags &= ~CERTOPT_PTY;
Damien Miller0a80ca12010-02-27 07:55:05 +11001815 else if (strcasecmp(opt, "permit-pty") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001816 certflags_flags |= CERTOPT_PTY;
Damien Miller0a80ca12010-02-27 07:55:05 +11001817 else if (strcasecmp(opt, "no-user-rc") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001818 certflags_flags &= ~CERTOPT_USER_RC;
Damien Miller0a80ca12010-02-27 07:55:05 +11001819 else if (strcasecmp(opt, "permit-user-rc") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001820 certflags_flags |= CERTOPT_USER_RC;
Damien Miller0a80ca12010-02-27 07:55:05 +11001821 else if (strncasecmp(opt, "force-command=", 14) == 0) {
1822 val = opt + 14;
1823 if (*val == '\0')
Damien Miller4e270b02010-04-16 15:56:21 +10001824 fatal("Empty force-command option");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001825 if (certflags_command != NULL)
Damien Miller0a80ca12010-02-27 07:55:05 +11001826 fatal("force-command already specified");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001827 certflags_command = xstrdup(val);
Damien Miller0a80ca12010-02-27 07:55:05 +11001828 } else if (strncasecmp(opt, "source-address=", 15) == 0) {
1829 val = opt + 15;
1830 if (*val == '\0')
Damien Miller4e270b02010-04-16 15:56:21 +10001831 fatal("Empty source-address option");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001832 if (certflags_src_addr != NULL)
Damien Miller0a80ca12010-02-27 07:55:05 +11001833 fatal("source-address already specified");
1834 if (addr_match_cidr_list(NULL, val) != 0)
1835 fatal("Invalid source-address list");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001836 certflags_src_addr = xstrdup(val);
djm@openbsd.org249516e2017-04-29 04:12:25 +00001837 } else if (strncasecmp(opt, "extension:", 10) == 0 ||
1838 (iscrit = (strncasecmp(opt, "critical:", 9) == 0))) {
1839 val = xstrdup(strchr(opt, ':') + 1);
1840 if ((cp = strchr(val, '=')) != NULL)
1841 *cp++ = '\0';
1842 cert_userext = xreallocarray(cert_userext, ncert_userext + 1,
1843 sizeof(*cert_userext));
1844 cert_userext[ncert_userext].key = val;
1845 cert_userext[ncert_userext].val = cp == NULL ?
1846 NULL : xstrdup(cp);
1847 cert_userext[ncert_userext].crit = iscrit;
1848 ncert_userext++;
Damien Miller0a80ca12010-02-27 07:55:05 +11001849 } else
Damien Miller4e270b02010-04-16 15:56:21 +10001850 fatal("Unsupported certificate option \"%s\"", opt);
Damien Miller0a80ca12010-02-27 07:55:05 +11001851}
1852
Ben Lindstrombba81212001-06-25 05:01:22 +00001853static void
djm@openbsd.orgc28fc622015-07-03 03:43:18 +00001854show_options(struct sshbuf *optbuf, int in_critical)
Damien Millerd834d352010-06-26 09:48:02 +10001855{
Damien Miller633de332014-05-15 13:48:26 +10001856 char *name, *arg;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001857 struct sshbuf *options, *option = NULL;
1858 int r;
Damien Millerd834d352010-06-26 09:48:02 +10001859
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001860 if ((options = sshbuf_fromb(optbuf)) == NULL)
1861 fatal("%s: sshbuf_fromb failed", __func__);
1862 while (sshbuf_len(options) != 0) {
1863 sshbuf_free(option);
1864 option = NULL;
1865 if ((r = sshbuf_get_cstring(options, &name, NULL)) != 0 ||
1866 (r = sshbuf_froms(options, &option)) != 0)
1867 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Millerd834d352010-06-26 09:48:02 +10001868 printf(" %s", name);
djm@openbsd.orgc28fc622015-07-03 03:43:18 +00001869 if (!in_critical &&
Damien Millerd834d352010-06-26 09:48:02 +10001870 (strcmp(name, "permit-X11-forwarding") == 0 ||
1871 strcmp(name, "permit-agent-forwarding") == 0 ||
1872 strcmp(name, "permit-port-forwarding") == 0 ||
1873 strcmp(name, "permit-pty") == 0 ||
1874 strcmp(name, "permit-user-rc") == 0))
1875 printf("\n");
djm@openbsd.orgc28fc622015-07-03 03:43:18 +00001876 else if (in_critical &&
Damien Millerd834d352010-06-26 09:48:02 +10001877 (strcmp(name, "force-command") == 0 ||
1878 strcmp(name, "source-address") == 0)) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001879 if ((r = sshbuf_get_cstring(option, &arg, NULL)) != 0)
1880 fatal("%s: buffer error: %s",
1881 __func__, ssh_err(r));
Damien Miller633de332014-05-15 13:48:26 +10001882 printf(" %s\n", arg);
1883 free(arg);
Damien Millerd834d352010-06-26 09:48:02 +10001884 } else {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001885 printf(" UNKNOWN OPTION (len %zu)\n",
1886 sshbuf_len(option));
1887 sshbuf_reset(option);
Damien Millerd834d352010-06-26 09:48:02 +10001888 }
Darren Tuckera627d422013-06-02 07:31:17 +10001889 free(name);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001890 if (sshbuf_len(option) != 0)
Damien Millerd834d352010-06-26 09:48:02 +10001891 fatal("Option corrupt: extra data at end");
1892 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001893 sshbuf_free(option);
1894 sshbuf_free(options);
Damien Millerd834d352010-06-26 09:48:02 +10001895}
1896
1897static void
djm@openbsd.org94bc0b72015-11-13 04:34:15 +00001898print_cert(struct sshkey *key)
Damien Millerf2b70ca2010-03-05 07:39:35 +11001899{
djm@openbsd.org499cf362015-11-19 01:08:55 +00001900 char valid[64], *key_fp, *ca_fp;
djm@openbsd.orgc28fc622015-07-03 03:43:18 +00001901 u_int i;
Damien Miller4e270b02010-04-16 15:56:21 +10001902
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001903 key_fp = sshkey_fingerprint(key, fingerprint_hash, SSH_FP_DEFAULT);
1904 ca_fp = sshkey_fingerprint(key->cert->signature_key,
djm@openbsd.org56d1c832014-12-21 22:27:55 +00001905 fingerprint_hash, SSH_FP_DEFAULT);
djm@openbsd.org9ce86c92015-01-28 22:36:00 +00001906 if (key_fp == NULL || ca_fp == NULL)
1907 fatal("%s: sshkey_fingerprint fail", __func__);
djm@openbsd.org499cf362015-11-19 01:08:55 +00001908 sshkey_format_cert_validity(key->cert, valid, sizeof(valid));
Damien Millerf2b70ca2010-03-05 07:39:35 +11001909
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001910 printf(" Type: %s %s certificate\n", sshkey_ssh_name(key),
1911 sshkey_cert_type(key));
1912 printf(" Public key: %s %s\n", sshkey_type(key), key_fp);
Damien Miller4e270b02010-04-16 15:56:21 +10001913 printf(" Signing CA: %s %s\n",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001914 sshkey_type(key->cert->signature_key), ca_fp);
Damien Miller4e270b02010-04-16 15:56:21 +10001915 printf(" Key ID: \"%s\"\n", key->cert->key_id);
djm@openbsd.orgc28fc622015-07-03 03:43:18 +00001916 printf(" Serial: %llu\n", (unsigned long long)key->cert->serial);
djm@openbsd.org499cf362015-11-19 01:08:55 +00001917 printf(" Valid: %s\n", valid);
Damien Millerf2b70ca2010-03-05 07:39:35 +11001918 printf(" Principals: ");
1919 if (key->cert->nprincipals == 0)
1920 printf("(none)\n");
1921 else {
1922 for (i = 0; i < key->cert->nprincipals; i++)
1923 printf("\n %s",
1924 key->cert->principals[i]);
1925 printf("\n");
1926 }
Damien Miller4e270b02010-04-16 15:56:21 +10001927 printf(" Critical Options: ");
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001928 if (sshbuf_len(key->cert->critical) == 0)
Damien Millerf2b70ca2010-03-05 07:39:35 +11001929 printf("(none)\n");
1930 else {
1931 printf("\n");
djm@openbsd.orgc28fc622015-07-03 03:43:18 +00001932 show_options(key->cert->critical, 1);
Damien Millerf2b70ca2010-03-05 07:39:35 +11001933 }
djm@openbsd.orgc28fc622015-07-03 03:43:18 +00001934 printf(" Extensions: ");
1935 if (sshbuf_len(key->cert->extensions) == 0)
1936 printf("(none)\n");
1937 else {
1938 printf("\n");
1939 show_options(key->cert->extensions, 0);
Damien Miller4e270b02010-04-16 15:56:21 +10001940 }
djm@openbsd.org94bc0b72015-11-13 04:34:15 +00001941}
1942
1943static void
1944do_show_cert(struct passwd *pw)
1945{
1946 struct sshkey *key = NULL;
1947 struct stat st;
1948 int r, is_stdin = 0, ok = 0;
1949 FILE *f;
djm@openbsd.orgcce6a362015-12-11 03:19:09 +00001950 char *cp, line[SSH_MAX_PUBKEY_BYTES];
djm@openbsd.org94bc0b72015-11-13 04:34:15 +00001951 const char *path;
djm@openbsd.org1a31d022016-05-02 08:49:03 +00001952 u_long lnum = 0;
djm@openbsd.org94bc0b72015-11-13 04:34:15 +00001953
1954 if (!have_identity)
1955 ask_filename(pw, "Enter file in which the key is");
1956 if (strcmp(identity_file, "-") != 0 && stat(identity_file, &st) < 0)
1957 fatal("%s: %s: %s", __progname, identity_file, strerror(errno));
1958
1959 path = identity_file;
1960 if (strcmp(path, "-") == 0) {
1961 f = stdin;
1962 path = "(stdin)";
1963 is_stdin = 1;
1964 } else if ((f = fopen(identity_file, "r")) == NULL)
1965 fatal("fopen %s: %s", identity_file, strerror(errno));
1966
1967 while (read_keyfile_line(f, path, line, sizeof(line), &lnum) == 0) {
1968 sshkey_free(key);
1969 key = NULL;
1970 /* Trim leading space and comments */
1971 cp = line + strspn(line, " \t");
1972 if (*cp == '#' || *cp == '\0')
1973 continue;
1974 if ((key = sshkey_new(KEY_UNSPEC)) == NULL)
1975 fatal("key_new");
1976 if ((r = sshkey_read(key, &cp)) != 0) {
1977 error("%s:%lu: invalid key: %s", path,
1978 lnum, ssh_err(r));
1979 continue;
1980 }
1981 if (!sshkey_is_cert(key)) {
1982 error("%s:%lu is not a certificate", path, lnum);
1983 continue;
1984 }
1985 ok = 1;
1986 if (!is_stdin && lnum == 1)
1987 printf("%s:\n", path);
1988 else
1989 printf("%s:%lu:\n", path, lnum);
1990 print_cert(key);
1991 }
1992 sshkey_free(key);
1993 fclose(f);
1994 exit(ok ? 0 : 1);
Damien Millerf2b70ca2010-03-05 07:39:35 +11001995}
1996
1997static void
Damien Millerf3747bf2013-01-18 11:44:04 +11001998load_krl(const char *path, struct ssh_krl **krlp)
1999{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002000 struct sshbuf *krlbuf;
2001 int r, fd;
Damien Millerf3747bf2013-01-18 11:44:04 +11002002
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002003 if ((krlbuf = sshbuf_new()) == NULL)
2004 fatal("sshbuf_new failed");
Damien Millerf3747bf2013-01-18 11:44:04 +11002005 if ((fd = open(path, O_RDONLY)) == -1)
2006 fatal("open %s: %s", path, strerror(errno));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002007 if ((r = sshkey_load_file(fd, krlbuf)) != 0)
2008 fatal("Unable to load KRL: %s", ssh_err(r));
Damien Millerf3747bf2013-01-18 11:44:04 +11002009 close(fd);
2010 /* XXX check sigs */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002011 if ((r = ssh_krl_from_blob(krlbuf, krlp, NULL, 0)) != 0 ||
Damien Millerf3747bf2013-01-18 11:44:04 +11002012 *krlp == NULL)
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002013 fatal("Invalid KRL file: %s", ssh_err(r));
2014 sshbuf_free(krlbuf);
Damien Millerf3747bf2013-01-18 11:44:04 +11002015}
2016
2017static void
djm@openbsd.org669aee92015-01-30 01:10:33 +00002018update_krl_from_file(struct passwd *pw, const char *file, int wild_ca,
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002019 const struct sshkey *ca, struct ssh_krl *krl)
Damien Millerf3747bf2013-01-18 11:44:04 +11002020{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002021 struct sshkey *key = NULL;
Damien Millerf3747bf2013-01-18 11:44:04 +11002022 u_long lnum = 0;
2023 char *path, *cp, *ep, line[SSH_MAX_PUBKEY_BYTES];
2024 unsigned long long serial, serial2;
2025 int i, was_explicit_key, was_sha1, r;
2026 FILE *krl_spec;
2027
2028 path = tilde_expand_filename(file, pw->pw_uid);
2029 if (strcmp(path, "-") == 0) {
2030 krl_spec = stdin;
2031 free(path);
2032 path = xstrdup("(standard input)");
2033 } else if ((krl_spec = fopen(path, "r")) == NULL)
2034 fatal("fopen %s: %s", path, strerror(errno));
2035
2036 if (!quiet)
2037 printf("Revoking from %s\n", path);
2038 while (read_keyfile_line(krl_spec, path, line, sizeof(line),
2039 &lnum) == 0) {
2040 was_explicit_key = was_sha1 = 0;
2041 cp = line + strspn(line, " \t");
2042 /* Trim trailing space, comments and strip \n */
2043 for (i = 0, r = -1; cp[i] != '\0'; i++) {
2044 if (cp[i] == '#' || cp[i] == '\n') {
2045 cp[i] = '\0';
2046 break;
2047 }
2048 if (cp[i] == ' ' || cp[i] == '\t') {
2049 /* Remember the start of a span of whitespace */
2050 if (r == -1)
2051 r = i;
2052 } else
2053 r = -1;
2054 }
2055 if (r != -1)
2056 cp[r] = '\0';
2057 if (*cp == '\0')
2058 continue;
2059 if (strncasecmp(cp, "serial:", 7) == 0) {
djm@openbsd.org669aee92015-01-30 01:10:33 +00002060 if (ca == NULL && !wild_ca) {
Damien Millerd234afb2013-08-21 02:42:58 +10002061 fatal("revoking certificates by serial number "
Damien Millerf3747bf2013-01-18 11:44:04 +11002062 "requires specification of a CA key");
2063 }
2064 cp += 7;
2065 cp = cp + strspn(cp, " \t");
2066 errno = 0;
2067 serial = strtoull(cp, &ep, 0);
2068 if (*cp == '\0' || (*ep != '\0' && *ep != '-'))
2069 fatal("%s:%lu: invalid serial \"%s\"",
2070 path, lnum, cp);
2071 if (errno == ERANGE && serial == ULLONG_MAX)
2072 fatal("%s:%lu: serial out of range",
2073 path, lnum);
2074 serial2 = serial;
2075 if (*ep == '-') {
2076 cp = ep + 1;
2077 errno = 0;
2078 serial2 = strtoull(cp, &ep, 0);
2079 if (*cp == '\0' || *ep != '\0')
2080 fatal("%s:%lu: invalid serial \"%s\"",
2081 path, lnum, cp);
2082 if (errno == ERANGE && serial2 == ULLONG_MAX)
2083 fatal("%s:%lu: serial out of range",
2084 path, lnum);
2085 if (serial2 <= serial)
2086 fatal("%s:%lu: invalid serial range "
2087 "%llu:%llu", path, lnum,
2088 (unsigned long long)serial,
2089 (unsigned long long)serial2);
2090 }
2091 if (ssh_krl_revoke_cert_by_serial_range(krl,
2092 ca, serial, serial2) != 0) {
2093 fatal("%s: revoke serial failed",
2094 __func__);
2095 }
2096 } else if (strncasecmp(cp, "id:", 3) == 0) {
djm@openbsd.org669aee92015-01-30 01:10:33 +00002097 if (ca == NULL && !wild_ca) {
Damien Millerd5d9d7b2013-08-21 02:43:27 +10002098 fatal("revoking certificates by key ID "
Damien Millerf3747bf2013-01-18 11:44:04 +11002099 "requires specification of a CA key");
2100 }
2101 cp += 3;
2102 cp = cp + strspn(cp, " \t");
2103 if (ssh_krl_revoke_cert_by_key_id(krl, ca, cp) != 0)
2104 fatal("%s: revoke key ID failed", __func__);
2105 } else {
2106 if (strncasecmp(cp, "key:", 4) == 0) {
2107 cp += 4;
2108 cp = cp + strspn(cp, " \t");
2109 was_explicit_key = 1;
2110 } else if (strncasecmp(cp, "sha1:", 5) == 0) {
2111 cp += 5;
2112 cp = cp + strspn(cp, " \t");
2113 was_sha1 = 1;
2114 } else {
2115 /*
2116 * Just try to process the line as a key.
2117 * Parsing will fail if it isn't.
2118 */
2119 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002120 if ((key = sshkey_new(KEY_UNSPEC)) == NULL)
Damien Millerf3747bf2013-01-18 11:44:04 +11002121 fatal("key_new");
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002122 if ((r = sshkey_read(key, &cp)) != 0)
2123 fatal("%s:%lu: invalid key: %s",
2124 path, lnum, ssh_err(r));
Damien Millerf3747bf2013-01-18 11:44:04 +11002125 if (was_explicit_key)
2126 r = ssh_krl_revoke_key_explicit(krl, key);
2127 else if (was_sha1)
2128 r = ssh_krl_revoke_key_sha1(krl, key);
2129 else
2130 r = ssh_krl_revoke_key(krl, key);
2131 if (r != 0)
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002132 fatal("%s: revoke key failed: %s",
2133 __func__, ssh_err(r));
2134 sshkey_free(key);
Damien Millerf3747bf2013-01-18 11:44:04 +11002135 }
2136 }
2137 if (strcmp(path, "-") != 0)
2138 fclose(krl_spec);
Damien Miller0d6771b2013-04-23 15:23:24 +10002139 free(path);
Damien Millerf3747bf2013-01-18 11:44:04 +11002140}
2141
2142static void
2143do_gen_krl(struct passwd *pw, int updating, int argc, char **argv)
2144{
2145 struct ssh_krl *krl;
2146 struct stat sb;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002147 struct sshkey *ca = NULL;
djm@openbsd.org669aee92015-01-30 01:10:33 +00002148 int fd, i, r, wild_ca = 0;
Damien Millerf3747bf2013-01-18 11:44:04 +11002149 char *tmp;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002150 struct sshbuf *kbuf;
Damien Millerf3747bf2013-01-18 11:44:04 +11002151
2152 if (*identity_file == '\0')
2153 fatal("KRL generation requires an output file");
2154 if (stat(identity_file, &sb) == -1) {
2155 if (errno != ENOENT)
2156 fatal("Cannot access KRL \"%s\": %s",
2157 identity_file, strerror(errno));
2158 if (updating)
2159 fatal("KRL \"%s\" does not exist", identity_file);
2160 }
2161 if (ca_key_path != NULL) {
djm@openbsd.org669aee92015-01-30 01:10:33 +00002162 if (strcasecmp(ca_key_path, "none") == 0)
2163 wild_ca = 1;
2164 else {
2165 tmp = tilde_expand_filename(ca_key_path, pw->pw_uid);
2166 if ((r = sshkey_load_public(tmp, &ca, NULL)) != 0)
2167 fatal("Cannot load CA public key %s: %s",
2168 tmp, ssh_err(r));
2169 free(tmp);
2170 }
Damien Millerf3747bf2013-01-18 11:44:04 +11002171 }
2172
2173 if (updating)
2174 load_krl(identity_file, &krl);
2175 else if ((krl = ssh_krl_init()) == NULL)
2176 fatal("couldn't create KRL");
2177
2178 if (cert_serial != 0)
2179 ssh_krl_set_version(krl, cert_serial);
2180 if (identity_comment != NULL)
2181 ssh_krl_set_comment(krl, identity_comment);
2182
2183 for (i = 0; i < argc; i++)
djm@openbsd.org669aee92015-01-30 01:10:33 +00002184 update_krl_from_file(pw, argv[i], wild_ca, ca, krl);
Damien Millerf3747bf2013-01-18 11:44:04 +11002185
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002186 if ((kbuf = sshbuf_new()) == NULL)
2187 fatal("sshbuf_new failed");
2188 if (ssh_krl_to_blob(krl, kbuf, NULL, 0) != 0)
Damien Millerf3747bf2013-01-18 11:44:04 +11002189 fatal("Couldn't generate KRL");
2190 if ((fd = open(identity_file, O_WRONLY|O_CREAT|O_TRUNC, 0644)) == -1)
2191 fatal("open %s: %s", identity_file, strerror(errno));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002192 if (atomicio(vwrite, fd, (void *)sshbuf_ptr(kbuf), sshbuf_len(kbuf)) !=
2193 sshbuf_len(kbuf))
Damien Millerf3747bf2013-01-18 11:44:04 +11002194 fatal("write %s: %s", identity_file, strerror(errno));
2195 close(fd);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002196 sshbuf_free(kbuf);
Damien Millerf3747bf2013-01-18 11:44:04 +11002197 ssh_krl_free(krl);
mmcc@openbsd.org89540b62015-12-11 02:31:47 +00002198 sshkey_free(ca);
Damien Millerf3747bf2013-01-18 11:44:04 +11002199}
2200
2201static void
2202do_check_krl(struct passwd *pw, int argc, char **argv)
2203{
2204 int i, r, ret = 0;
2205 char *comment;
2206 struct ssh_krl *krl;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002207 struct sshkey *k;
Damien Millerf3747bf2013-01-18 11:44:04 +11002208
2209 if (*identity_file == '\0')
2210 fatal("KRL checking requires an input file");
2211 load_krl(identity_file, &krl);
2212 for (i = 0; i < argc; i++) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002213 if ((r = sshkey_load_public(argv[i], &k, &comment)) != 0)
2214 fatal("Cannot load public key %s: %s",
2215 argv[i], ssh_err(r));
Damien Millerf3747bf2013-01-18 11:44:04 +11002216 r = ssh_krl_check_key(krl, k);
2217 printf("%s%s%s%s: %s\n", argv[i],
2218 *comment ? " (" : "", comment, *comment ? ")" : "",
2219 r == 0 ? "ok" : "REVOKED");
2220 if (r != 0)
2221 ret = 1;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002222 sshkey_free(k);
Damien Millerf3747bf2013-01-18 11:44:04 +11002223 free(comment);
2224 }
2225 ssh_krl_free(krl);
2226 exit(ret);
2227}
2228
2229static void
Damien Miller431f66b1999-11-21 18:31:57 +11002230usage(void)
2231{
Damien Millerf0858de2014-04-20 13:01:30 +10002232 fprintf(stderr,
djm@openbsd.org873d3e72017-04-30 23:18:44 +00002233 "usage: ssh-keygen [-q] [-b bits] [-t dsa | ecdsa | ed25519 | rsa]\n"
Damien Millerf0858de2014-04-20 13:01:30 +10002234 " [-N new_passphrase] [-C comment] [-f output_keyfile]\n"
2235 " ssh-keygen -p [-P old_passphrase] [-N new_passphrase] [-f keyfile]\n"
2236 " ssh-keygen -i [-m key_format] [-f input_keyfile]\n"
2237 " ssh-keygen -e [-m key_format] [-f input_keyfile]\n"
2238 " ssh-keygen -y [-f input_keyfile]\n"
2239 " ssh-keygen -c [-P passphrase] [-C comment] [-f keyfile]\n"
naddy@openbsd.org6288e3a2015-02-24 15:24:05 +00002240 " ssh-keygen -l [-v] [-E fingerprint_hash] [-f input_keyfile]\n"
djm@openbsd.org873d3e72017-04-30 23:18:44 +00002241 " ssh-keygen -B [-f input_keyfile]\n");
Damien Miller7ea845e2010-02-12 09:21:02 +11002242#ifdef ENABLE_PKCS11
Damien Millerf0858de2014-04-20 13:01:30 +10002243 fprintf(stderr,
2244 " ssh-keygen -D pkcs11\n");
Damien Miller7ea845e2010-02-12 09:21:02 +11002245#endif
Damien Millerf0858de2014-04-20 13:01:30 +10002246 fprintf(stderr,
2247 " ssh-keygen -F hostname [-f known_hosts_file] [-l]\n"
2248 " ssh-keygen -H [-f known_hosts_file]\n"
2249 " ssh-keygen -R hostname [-f known_hosts_file]\n"
2250 " ssh-keygen -r hostname [-f input_keyfile] [-g]\n"
djm@openbsd.org1d9a2e22015-05-28 07:37:31 +00002251#ifdef WITH_OPENSSL
Damien Millerf0858de2014-04-20 13:01:30 +10002252 " ssh-keygen -G output_file [-v] [-b bits] [-M memory] [-S start_point]\n"
2253 " ssh-keygen -T output_file -f input_file [-v] [-a rounds] [-J num_lines]\n"
2254 " [-j start_line] [-K checkpt] [-W generator]\n"
djm@openbsd.org1d9a2e22015-05-28 07:37:31 +00002255#endif
Damien Millerf0858de2014-04-20 13:01:30 +10002256 " ssh-keygen -s ca_key -I certificate_identity [-h] [-n principals]\n"
2257 " [-O option] [-V validity_interval] [-z serial_number] file ...\n"
2258 " ssh-keygen -L [-f input_keyfile]\n"
2259 " ssh-keygen -A\n"
2260 " ssh-keygen -k -f krl_file [-u] [-s ca_public] [-z version_number]\n"
2261 " file ...\n"
2262 " ssh-keygen -Q -f krl_file file ...\n");
Damien Miller95def091999-11-25 00:26:21 +11002263 exit(1);
Damien Miller431f66b1999-11-21 18:31:57 +11002264}
2265
Damien Miller95def091999-11-25 00:26:21 +11002266/*
2267 * Main program for key management.
2268 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002269int
Damien Millerdf8b7db2007-01-05 16:22:57 +11002270main(int argc, char **argv)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002271{
deraadt@openbsd.org2ae4f332015-01-16 06:40:12 +00002272 char dotsshdir[PATH_MAX], comment[1024], *passphrase1, *passphrase2;
djm@openbsd.org1d9a2e22015-05-28 07:37:31 +00002273 char *rr_hostname = NULL, *ep, *fp, *ra;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002274 struct sshkey *private, *public;
Damien Miller95def091999-11-25 00:26:21 +11002275 struct passwd *pw;
Damien Miller95def091999-11-25 00:26:21 +11002276 struct stat st;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002277 int r, opt, type, fd;
Damien Millerf3747bf2013-01-18 11:44:04 +11002278 int gen_all_hostkeys = 0, gen_krl = 0, update_krl = 0, check_krl = 0;
Damien Miller95def091999-11-25 00:26:21 +11002279 FILE *f;
Damien Miller02e754f2005-05-26 12:19:39 +10002280 const char *errstr;
djm@openbsd.org1d9a2e22015-05-28 07:37:31 +00002281#ifdef WITH_OPENSSL
2282 /* Moduli generation/screening */
2283 char out_file[PATH_MAX], *checkpoint = NULL;
2284 u_int32_t memory = 0, generator_wanted = 0;
2285 int do_gen_candidates = 0, do_screen_candidates = 0;
2286 unsigned long start_lineno = 0, lines_to_process = 0;
2287 BIGNUM *start = NULL;
2288#endif
Damien Miller0bc1bd82000-11-13 22:57:25 +11002289
Damien Miller95def091999-11-25 00:26:21 +11002290 extern int optind;
2291 extern char *optarg;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002292
dtucker@openbsd.orgffb1e7e2016-02-15 09:47:49 +00002293 ssh_malloc_init(); /* must be called before any mallocs */
Darren Tuckerce321d82005-10-03 18:11:24 +10002294 /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
2295 sanitise_stdfd();
2296
Darren Tucker9ac56e92007-01-14 10:19:59 +11002297 __progname = ssh_get_progname(argv[0]);
Damien Millerf9b625c2000-07-09 22:42:32 +10002298
Damien Miller72ef7c12015-01-15 02:21:31 +11002299#ifdef WITH_OPENSSL
Damien Miller4314c2b2010-09-10 11:12:09 +10002300 OpenSSL_add_all_algorithms();
Damien Miller72ef7c12015-01-15 02:21:31 +11002301#endif
Damien Millerdf8b7db2007-01-05 16:22:57 +11002302 log_init(argv[0], SYSLOG_LEVEL_INFO, SYSLOG_FACILITY_USER, 1);
Darren Tucker019cefe2003-08-02 22:40:07 +10002303
Kevin Steves3a881912002-07-20 19:05:40 +00002304 seed_rng();
Damien Millereba71ba2000-04-29 23:57:08 +10002305
djm@openbsd.orga287c5a2017-02-10 03:36:40 +00002306 msetlocale();
2307
Damien Miller5428f641999-11-25 11:54:57 +11002308 /* we need this for the home * directory. */
Damien Miller95def091999-11-25 00:26:21 +11002309 pw = getpwuid(getuid());
djm@openbsd.org3038a192015-04-17 13:19:22 +00002310 if (!pw)
2311 fatal("No user exists for uid %lu", (u_long)getuid());
2312 if (gethostname(hostname, sizeof(hostname)) < 0)
2313 fatal("gethostname: %s", strerror(errno));
Damien Miller5428f641999-11-25 11:54:57 +11002314
djm@openbsd.org56d1c832014-12-21 22:27:55 +00002315 /* Remaining characters: UYdw */
Damien Millerbcd00ab2013-12-07 10:41:55 +11002316 while ((opt = getopt(argc, argv, "ABHLQXceghiklopquvxy"
djm@openbsd.org56d1c832014-12-21 22:27:55 +00002317 "C:D:E:F:G:I:J:K:M:N:O:P:R:S:T:V:W:Z:"
2318 "a:b:f:g:j:m:n:r:s:t:z:")) != -1) {
Damien Miller95def091999-11-25 00:26:21 +11002319 switch (opt) {
Damien Miller58f1baf2011-05-05 14:06:15 +10002320 case 'A':
2321 gen_all_hostkeys = 1;
2322 break;
Damien Miller95def091999-11-25 00:26:21 +11002323 case 'b':
Damien Miller57737942010-09-10 11:16:37 +10002324 bits = (u_int32_t)strtonum(optarg, 256, 32768, &errstr);
Damien Miller02e754f2005-05-26 12:19:39 +10002325 if (errstr)
2326 fatal("Bits has bad value %s (%s)",
2327 optarg, errstr);
Damien Miller95def091999-11-25 00:26:21 +11002328 break;
djm@openbsd.org56d1c832014-12-21 22:27:55 +00002329 case 'E':
2330 fingerprint_hash = ssh_digest_alg_by_name(optarg);
2331 if (fingerprint_hash == -1)
2332 fatal("Invalid hash algorithm \"%s\"", optarg);
2333 break;
Damien Miller4b42d7f2005-03-01 21:48:35 +11002334 case 'F':
2335 find_host = 1;
2336 rr_hostname = optarg;
2337 break;
2338 case 'H':
2339 hash_hosts = 1;
2340 break;
Damien Miller0a80ca12010-02-27 07:55:05 +11002341 case 'I':
2342 cert_key_id = optarg;
2343 break;
Damien Miller4b42d7f2005-03-01 21:48:35 +11002344 case 'R':
2345 delete_host = 1;
2346 rr_hostname = optarg;
2347 break;
Damien Millerf2b70ca2010-03-05 07:39:35 +11002348 case 'L':
2349 show_cert = 1;
2350 break;
Damien Miller95def091999-11-25 00:26:21 +11002351 case 'l':
2352 print_fingerprint = 1;
2353 break;
Ben Lindstrom8fd372b2001-03-12 03:02:17 +00002354 case 'B':
2355 print_bubblebabble = 1;
2356 break;
Damien Miller44b25042010-07-02 13:35:01 +10002357 case 'm':
2358 if (strcasecmp(optarg, "RFC4716") == 0 ||
2359 strcasecmp(optarg, "ssh2") == 0) {
2360 convert_format = FMT_RFC4716;
2361 break;
2362 }
2363 if (strcasecmp(optarg, "PKCS8") == 0) {
2364 convert_format = FMT_PKCS8;
2365 break;
2366 }
2367 if (strcasecmp(optarg, "PEM") == 0) {
2368 convert_format = FMT_PEM;
2369 break;
2370 }
2371 fatal("Unsupported conversion format \"%s\"", optarg);
Damien Miller0a80ca12010-02-27 07:55:05 +11002372 case 'n':
2373 cert_principals = optarg;
2374 break;
Damien Millerbcd00ab2013-12-07 10:41:55 +11002375 case 'o':
2376 use_new_format = 1;
2377 break;
Damien Miller95def091999-11-25 00:26:21 +11002378 case 'p':
2379 change_passphrase = 1;
2380 break;
Damien Miller95def091999-11-25 00:26:21 +11002381 case 'c':
2382 change_comment = 1;
2383 break;
Damien Miller95def091999-11-25 00:26:21 +11002384 case 'f':
djm@openbsd.org1d9a2e22015-05-28 07:37:31 +00002385 if (strlcpy(identity_file, optarg,
2386 sizeof(identity_file)) >= sizeof(identity_file))
Damien Millerb089fb52005-05-26 12:16:18 +10002387 fatal("Identity filename too long");
Damien Miller95def091999-11-25 00:26:21 +11002388 have_identity = 1;
2389 break;
Damien Miller37876e92003-05-15 10:19:46 +10002390 case 'g':
2391 print_generic = 1;
2392 break;
Damien Miller95def091999-11-25 00:26:21 +11002393 case 'P':
2394 identity_passphrase = optarg;
2395 break;
Damien Miller95def091999-11-25 00:26:21 +11002396 case 'N':
2397 identity_new_passphrase = optarg;
2398 break;
Damien Millerf3747bf2013-01-18 11:44:04 +11002399 case 'Q':
2400 check_krl = 1;
2401 break;
Damien Miller0a80ca12010-02-27 07:55:05 +11002402 case 'O':
Damien Miller4e270b02010-04-16 15:56:21 +10002403 add_cert_option(optarg);
Damien Miller0a80ca12010-02-27 07:55:05 +11002404 break;
Damien Millerbcd00ab2013-12-07 10:41:55 +11002405 case 'Z':
2406 new_format_cipher = optarg;
2407 break;
Damien Miller95def091999-11-25 00:26:21 +11002408 case 'C':
2409 identity_comment = optarg;
2410 break;
Damien Miller95def091999-11-25 00:26:21 +11002411 case 'q':
2412 quiet = 1;
2413 break;
Ben Lindstrom5a707822001-04-22 17:15:46 +00002414 case 'e':
Damien Millereba71ba2000-04-29 23:57:08 +10002415 case 'x':
Ben Lindstrom5a707822001-04-22 17:15:46 +00002416 /* export key */
Damien Miller44b25042010-07-02 13:35:01 +10002417 convert_to = 1;
Damien Millereba71ba2000-04-29 23:57:08 +10002418 break;
Damien Miller0a80ca12010-02-27 07:55:05 +11002419 case 'h':
2420 cert_key_type = SSH2_CERT_TYPE_HOST;
Damien Millerd0e4a8e2010-05-21 14:58:32 +10002421 certflags_flags = 0;
Damien Miller0a80ca12010-02-27 07:55:05 +11002422 break;
Damien Millerf3747bf2013-01-18 11:44:04 +11002423 case 'k':
2424 gen_krl = 1;
2425 break;
Ben Lindstrom5a707822001-04-22 17:15:46 +00002426 case 'i':
Damien Millereba71ba2000-04-29 23:57:08 +10002427 case 'X':
Ben Lindstrom5a707822001-04-22 17:15:46 +00002428 /* import key */
Damien Miller44b25042010-07-02 13:35:01 +10002429 convert_from = 1;
Damien Millereba71ba2000-04-29 23:57:08 +10002430 break;
Damien Millereba71ba2000-04-29 23:57:08 +10002431 case 'y':
2432 print_public = 1;
2433 break;
Damien Miller0a80ca12010-02-27 07:55:05 +11002434 case 's':
2435 ca_key_path = optarg;
2436 break;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002437 case 't':
2438 key_type_name = optarg;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002439 break;
Ben Lindstrom8282d6a2001-08-06 21:44:05 +00002440 case 'D':
Damien Miller7ea845e2010-02-12 09:21:02 +11002441 pkcs11provider = optarg;
Ben Lindstromcd392282001-07-04 03:44:03 +00002442 break;
Damien Millerf3747bf2013-01-18 11:44:04 +11002443 case 'u':
2444 update_krl = 1;
2445 break;
Darren Tucker06930c72003-12-31 11:34:51 +11002446 case 'v':
2447 if (log_level == SYSLOG_LEVEL_INFO)
2448 log_level = SYSLOG_LEVEL_DEBUG1;
2449 else {
Darren Tuckerfc959702004-07-17 16:12:08 +10002450 if (log_level >= SYSLOG_LEVEL_DEBUG1 &&
Darren Tucker06930c72003-12-31 11:34:51 +11002451 log_level < SYSLOG_LEVEL_DEBUG3)
2452 log_level++;
2453 }
2454 break;
Damien Miller37876e92003-05-15 10:19:46 +10002455 case 'r':
Damien Miller4b42d7f2005-03-01 21:48:35 +11002456 rr_hostname = optarg;
Damien Miller37876e92003-05-15 10:19:46 +10002457 break;
djm@openbsd.org1d9a2e22015-05-28 07:37:31 +00002458 case 'a':
2459 rounds = (int)strtonum(optarg, 1, INT_MAX, &errstr);
2460 if (errstr)
2461 fatal("Invalid number: %s (%s)",
2462 optarg, errstr);
2463 break;
2464 case 'V':
2465 parse_cert_times(optarg);
2466 break;
2467 case 'z':
2468 errno = 0;
2469 cert_serial = strtoull(optarg, &ep, 10);
2470 if (*optarg < '0' || *optarg > '9' || *ep != '\0' ||
2471 (errno == ERANGE && cert_serial == ULLONG_MAX))
2472 fatal("Invalid serial number \"%s\"", optarg);
2473 break;
2474#ifdef WITH_OPENSSL
2475 /* Moduli generation/screening */
Darren Tucker019cefe2003-08-02 22:40:07 +10002476 case 'G':
2477 do_gen_candidates = 1;
Damien Millerb089fb52005-05-26 12:16:18 +10002478 if (strlcpy(out_file, optarg, sizeof(out_file)) >=
2479 sizeof(out_file))
2480 fatal("Output filename too long");
Darren Tucker019cefe2003-08-02 22:40:07 +10002481 break;
Darren Tucker0bb29802016-09-12 11:07:00 +10002482 case 'J':
2483 lines_to_process = strtoul(optarg, NULL, 10);
dtucker@openbsd.org7b63cf62016-09-12 03:29:16 +00002484 break;
Darren Tucker0bb29802016-09-12 11:07:00 +10002485 case 'j':
2486 start_lineno = strtoul(optarg, NULL, 10);
dtucker@openbsd.org7b63cf62016-09-12 03:29:16 +00002487 break;
Damien Miller390d0562011-10-18 16:05:19 +11002488 case 'K':
deraadt@openbsd.org2ae4f332015-01-16 06:40:12 +00002489 if (strlen(optarg) >= PATH_MAX)
Damien Miller390d0562011-10-18 16:05:19 +11002490 fatal("Checkpoint filename too long");
2491 checkpoint = xstrdup(optarg);
2492 break;
Darren Tuckerd8c3cfb2016-09-12 13:30:50 +10002493 case 'M':
2494 memory = (u_int32_t)strtonum(optarg, 1, UINT_MAX,
2495 &errstr);
2496 if (errstr)
2497 fatal("Memory limit is %s: %s", errstr, optarg);
2498 break;
Darren Tucker019cefe2003-08-02 22:40:07 +10002499 case 'S':
2500 /* XXX - also compare length against bits */
2501 if (BN_hex2bn(&start, optarg) == 0)
2502 fatal("Invalid start point.");
2503 break;
Darren Tuckeraf48d542016-09-12 13:52:17 +10002504 case 'T':
2505 do_screen_candidates = 1;
2506 if (strlcpy(out_file, optarg, sizeof(out_file)) >=
2507 sizeof(out_file))
2508 fatal("Output filename too long");
2509 break;
Darren Tucker43cceff2016-09-12 13:55:37 +10002510 case 'W':
2511 generator_wanted = (u_int32_t)strtonum(optarg, 1,
2512 UINT_MAX, &errstr);
Darren Tucker70508962016-09-12 13:57:28 +10002513 if (errstr != NULL)
2514 fatal("Desired generator invalid: %s (%s)",
2515 optarg, errstr);
Darren Tucker43cceff2016-09-12 13:55:37 +10002516 break;
Damien Miller72ef7c12015-01-15 02:21:31 +11002517#endif /* WITH_OPENSSL */
Damien Miller95def091999-11-25 00:26:21 +11002518 case '?':
2519 default:
2520 usage();
2521 }
2522 }
Darren Tucker06930c72003-12-31 11:34:51 +11002523
2524 /* reinit */
Damien Millerdf8b7db2007-01-05 16:22:57 +11002525 log_init(argv[0], log_level, SYSLOG_FACILITY_USER, 1);
Darren Tucker06930c72003-12-31 11:34:51 +11002526
Damien Miller0a80ca12010-02-27 07:55:05 +11002527 argv += optind;
2528 argc -= optind;
2529
2530 if (ca_key_path != NULL) {
Damien Millerf3747bf2013-01-18 11:44:04 +11002531 if (argc < 1 && !gen_krl) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00002532 error("Too few arguments.");
Damien Miller0a80ca12010-02-27 07:55:05 +11002533 usage();
2534 }
Damien Millerf3747bf2013-01-18 11:44:04 +11002535 } else if (argc > 0 && !gen_krl && !check_krl) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00002536 error("Too many arguments.");
Damien Miller95def091999-11-25 00:26:21 +11002537 usage();
2538 }
2539 if (change_passphrase && change_comment) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00002540 error("Can only have one of -p and -c.");
Damien Miller95def091999-11-25 00:26:21 +11002541 usage();
2542 }
Darren Tucker0f7e9102008-06-08 12:54:29 +10002543 if (print_fingerprint && (delete_host || hash_hosts)) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00002544 error("Cannot use -l with -H or -R.");
Darren Tucker0f7e9102008-06-08 12:54:29 +10002545 usage();
2546 }
Damien Millerf3747bf2013-01-18 11:44:04 +11002547 if (gen_krl) {
2548 do_gen_krl(pw, update_krl, argc, argv);
2549 return (0);
2550 }
2551 if (check_krl) {
2552 do_check_krl(pw, argc, argv);
2553 return (0);
2554 }
Damien Miller0a80ca12010-02-27 07:55:05 +11002555 if (ca_key_path != NULL) {
2556 if (cert_key_id == NULL)
2557 fatal("Must specify key id (-I) when certifying");
2558 do_ca_sign(pw, argc, argv);
2559 }
Damien Millerf2b70ca2010-03-05 07:39:35 +11002560 if (show_cert)
2561 do_show_cert(pw);
Damien Miller4b42d7f2005-03-01 21:48:35 +11002562 if (delete_host || hash_hosts || find_host)
2563 do_known_hosts(pw, rr_hostname);
Damien Millerec77c952013-01-09 15:58:00 +11002564 if (pkcs11provider != NULL)
2565 do_download(pw);
Ben Lindstrom8fd372b2001-03-12 03:02:17 +00002566 if (print_fingerprint || print_bubblebabble)
Damien Miller95def091999-11-25 00:26:21 +11002567 do_fingerprint(pw);
Damien Miller95def091999-11-25 00:26:21 +11002568 if (change_passphrase)
2569 do_change_passphrase(pw);
Damien Miller4a10d2e2002-03-11 22:53:29 +11002570 if (change_comment)
2571 do_change_comment(pw);
Damien Miller1f0311c2014-05-15 14:24:09 +10002572#ifdef WITH_OPENSSL
Damien Miller44b25042010-07-02 13:35:01 +10002573 if (convert_to)
2574 do_convert_to(pw);
2575 if (convert_from)
2576 do_convert_from(pw);
Damien Miller1f0311c2014-05-15 14:24:09 +10002577#endif
Damien Millereba71ba2000-04-29 23:57:08 +10002578 if (print_public)
2579 do_print_public(pw);
Damien Miller4b42d7f2005-03-01 21:48:35 +11002580 if (rr_hostname != NULL) {
Damien Millercb314822006-03-26 13:48:01 +11002581 unsigned int n = 0;
2582
2583 if (have_identity) {
2584 n = do_print_resource_record(pw,
2585 identity_file, rr_hostname);
djm@openbsd.org3038a192015-04-17 13:19:22 +00002586 if (n == 0)
2587 fatal("%s: %s", identity_file, strerror(errno));
Damien Millercb314822006-03-26 13:48:01 +11002588 exit(0);
2589 } else {
2590
2591 n += do_print_resource_record(pw,
2592 _PATH_HOST_RSA_KEY_FILE, rr_hostname);
2593 n += do_print_resource_record(pw,
2594 _PATH_HOST_DSA_KEY_FILE, rr_hostname);
Damien Miller3bde12a2012-06-20 21:51:11 +10002595 n += do_print_resource_record(pw,
2596 _PATH_HOST_ECDSA_KEY_FILE, rr_hostname);
Damien Miller16cd3922014-05-15 13:45:58 +10002597 n += do_print_resource_record(pw,
2598 _PATH_HOST_ED25519_KEY_FILE, rr_hostname);
Damien Millercb314822006-03-26 13:48:01 +11002599 if (n == 0)
2600 fatal("no keys found.");
2601 exit(0);
2602 }
Damien Miller37876e92003-05-15 10:19:46 +10002603 }
Damien Miller95def091999-11-25 00:26:21 +11002604
djm@openbsd.org1d9a2e22015-05-28 07:37:31 +00002605#ifdef WITH_OPENSSL
Darren Tucker019cefe2003-08-02 22:40:07 +10002606 if (do_gen_candidates) {
2607 FILE *out = fopen(out_file, "w");
Damien Miller787b2ec2003-11-21 23:56:47 +11002608
Darren Tucker019cefe2003-08-02 22:40:07 +10002609 if (out == NULL) {
2610 error("Couldn't open modulus candidate file \"%s\": %s",
2611 out_file, strerror(errno));
2612 return (1);
2613 }
Damien Miller3f54a9f2005-11-05 14:52:18 +11002614 if (bits == 0)
2615 bits = DEFAULT_BITS;
Darren Tucker019cefe2003-08-02 22:40:07 +10002616 if (gen_candidates(out, memory, bits, start) != 0)
Damien Miller15d72a02005-11-05 15:07:33 +11002617 fatal("modulus candidate generation failed");
Darren Tucker019cefe2003-08-02 22:40:07 +10002618
2619 return (0);
2620 }
2621
2622 if (do_screen_candidates) {
2623 FILE *in;
Damien Miller78d22712013-02-12 11:03:36 +11002624 FILE *out = fopen(out_file, "a");
Darren Tucker019cefe2003-08-02 22:40:07 +10002625
2626 if (have_identity && strcmp(identity_file, "-") != 0) {
2627 if ((in = fopen(identity_file, "r")) == NULL) {
2628 fatal("Couldn't open modulus candidate "
Damien Millera8e06ce2003-11-21 23:48:55 +11002629 "file \"%s\": %s", identity_file,
Darren Tucker019cefe2003-08-02 22:40:07 +10002630 strerror(errno));
2631 }
2632 } else
2633 in = stdin;
2634
2635 if (out == NULL) {
2636 fatal("Couldn't open moduli file \"%s\": %s",
2637 out_file, strerror(errno));
2638 }
Damien Millerbcd00ab2013-12-07 10:41:55 +11002639 if (prime_test(in, out, rounds == 0 ? 100 : rounds,
2640 generator_wanted, checkpoint,
Damien Millerdfceafe2012-07-06 13:44:19 +10002641 start_lineno, lines_to_process) != 0)
Damien Miller15d72a02005-11-05 15:07:33 +11002642 fatal("modulus screening failed");
Darren Tuckerf4220e62003-08-21 16:44:07 +10002643 return (0);
Darren Tucker019cefe2003-08-02 22:40:07 +10002644 }
djm@openbsd.org1d9a2e22015-05-28 07:37:31 +00002645#endif
Darren Tucker019cefe2003-08-02 22:40:07 +10002646
Damien Miller58f1baf2011-05-05 14:06:15 +10002647 if (gen_all_hostkeys) {
2648 do_gen_all_hostkeys(pw);
2649 return (0);
2650 }
2651
Damien Millerf14be5c2005-11-05 15:15:49 +11002652 if (key_type_name == NULL)
djm@openbsd.orgd1958792015-05-28 04:40:13 +00002653 key_type_name = DEFAULT_KEY_TYPE_NAME;
Damien Millerf14be5c2005-11-05 15:15:49 +11002654
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002655 type = sshkey_type_from_name(key_type_name);
djm@openbsd.org7efb4552015-01-18 13:22:28 +00002656 type_bits_valid(type, key_type_name, &bits);
Damien Miller58f1baf2011-05-05 14:06:15 +10002657
Darren Tucker3af2ac52005-11-29 13:10:24 +11002658 if (!quiet)
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002659 printf("Generating public/private %s key pair.\n",
2660 key_type_name);
djm@openbsd.org3038a192015-04-17 13:19:22 +00002661 if ((r = sshkey_generate(type, bits, &private)) != 0)
2662 fatal("key_generate failed");
2663 if ((r = sshkey_from_private(private, &public)) != 0)
2664 fatal("key_from_private failed: %s\n", ssh_err(r));
Damien Miller95def091999-11-25 00:26:21 +11002665
2666 if (!have_identity)
2667 ask_filename(pw, "Enter file in which to save the key");
2668
Damien Miller788f2122005-11-05 15:14:59 +11002669 /* Create ~/.ssh directory if it doesn't already exist. */
Damien Miller50af79b2010-05-10 11:52:00 +10002670 snprintf(dotsshdir, sizeof dotsshdir, "%s/%s",
2671 pw->pw_dir, _PATH_SSH_USER_DIR);
2672 if (strstr(identity_file, dotsshdir) != NULL) {
2673 if (stat(dotsshdir, &st) < 0) {
2674 if (errno != ENOENT) {
2675 error("Could not stat %s: %s", dotsshdir,
2676 strerror(errno));
2677 } else if (mkdir(dotsshdir, 0700) < 0) {
2678 error("Could not create directory '%s': %s",
2679 dotsshdir, strerror(errno));
2680 } else if (!quiet)
2681 printf("Created directory '%s'.\n", dotsshdir);
2682 }
Damien Miller95def091999-11-25 00:26:21 +11002683 }
2684 /* If the file already exists, ask the user to confirm. */
2685 if (stat(identity_file, &st) >= 0) {
2686 char yesno[3];
2687 printf("%s already exists.\n", identity_file);
2688 printf("Overwrite (y/n)? ");
2689 fflush(stdout);
2690 if (fgets(yesno, sizeof(yesno), stdin) == NULL)
2691 exit(1);
2692 if (yesno[0] != 'y' && yesno[0] != 'Y')
2693 exit(1);
2694 }
2695 /* Ask for a passphrase (twice). */
2696 if (identity_passphrase)
2697 passphrase1 = xstrdup(identity_passphrase);
2698 else if (identity_new_passphrase)
2699 passphrase1 = xstrdup(identity_new_passphrase);
2700 else {
2701passphrase_again:
2702 passphrase1 =
Ben Lindstrom949974b2001-06-25 05:20:31 +00002703 read_passphrase("Enter passphrase (empty for no "
2704 "passphrase): ", RP_ALLOW_STDIN);
2705 passphrase2 = read_passphrase("Enter same passphrase again: ",
2706 RP_ALLOW_STDIN);
Damien Miller95def091999-11-25 00:26:21 +11002707 if (strcmp(passphrase1, passphrase2) != 0) {
Ben Lindstrom949974b2001-06-25 05:20:31 +00002708 /*
2709 * The passphrases do not match. Clear them and
2710 * retry.
2711 */
Damien Millera5103f42014-02-04 11:20:14 +11002712 explicit_bzero(passphrase1, strlen(passphrase1));
2713 explicit_bzero(passphrase2, strlen(passphrase2));
Darren Tuckera627d422013-06-02 07:31:17 +10002714 free(passphrase1);
2715 free(passphrase2);
Damien Miller95def091999-11-25 00:26:21 +11002716 printf("Passphrases do not match. Try again.\n");
2717 goto passphrase_again;
2718 }
2719 /* Clear the other copy of the passphrase. */
Damien Millera5103f42014-02-04 11:20:14 +11002720 explicit_bzero(passphrase2, strlen(passphrase2));
Darren Tuckera627d422013-06-02 07:31:17 +10002721 free(passphrase2);
Damien Miller95def091999-11-25 00:26:21 +11002722 }
2723
Damien Miller95def091999-11-25 00:26:21 +11002724 if (identity_comment) {
2725 strlcpy(comment, identity_comment, sizeof(comment));
2726 } else {
Darren Tuckere15fb092008-11-11 16:31:43 +11002727 /* Create default comment field for the passphrase. */
Damien Miller95def091999-11-25 00:26:21 +11002728 snprintf(comment, sizeof comment, "%s@%s", pw->pw_name, hostname);
2729 }
2730
2731 /* Save the key with the given passphrase and comment. */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002732 if ((r = sshkey_save_private(private, identity_file, passphrase1,
2733 comment, use_new_format, new_format_cipher, rounds)) != 0) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00002734 error("Saving key \"%s\" failed: %s",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002735 identity_file, ssh_err(r));
Damien Millera5103f42014-02-04 11:20:14 +11002736 explicit_bzero(passphrase1, strlen(passphrase1));
Darren Tuckera627d422013-06-02 07:31:17 +10002737 free(passphrase1);
Damien Miller95def091999-11-25 00:26:21 +11002738 exit(1);
2739 }
2740 /* Clear the passphrase. */
Damien Millera5103f42014-02-04 11:20:14 +11002741 explicit_bzero(passphrase1, strlen(passphrase1));
Darren Tuckera627d422013-06-02 07:31:17 +10002742 free(passphrase1);
Damien Miller95def091999-11-25 00:26:21 +11002743
2744 /* Clear the private key and the random number generator. */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002745 sshkey_free(private);
Damien Miller95def091999-11-25 00:26:21 +11002746
2747 if (!quiet)
2748 printf("Your identification has been saved in %s.\n", identity_file);
2749
Damien Miller95def091999-11-25 00:26:21 +11002750 strlcat(identity_file, ".pub", sizeof(identity_file));
djm@openbsd.org3038a192015-04-17 13:19:22 +00002751 if ((fd = open(identity_file, O_WRONLY|O_CREAT|O_TRUNC, 0644)) == -1)
2752 fatal("Unable to save public key to %s: %s",
2753 identity_file, strerror(errno));
2754 if ((f = fdopen(fd, "w")) == NULL)
2755 fatal("fdopen %s failed: %s", identity_file, strerror(errno));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002756 if ((r = sshkey_write(public, f)) != 0)
djm@openbsd.org3038a192015-04-17 13:19:22 +00002757 error("write key failed: %s", ssh_err(r));
Damien Millereba71ba2000-04-29 23:57:08 +10002758 fprintf(f, " %s\n", comment);
Damien Miller95def091999-11-25 00:26:21 +11002759 fclose(f);
2760
2761 if (!quiet) {
djm@openbsd.org9ce86c92015-01-28 22:36:00 +00002762 fp = sshkey_fingerprint(public, fingerprint_hash,
djm@openbsd.org56d1c832014-12-21 22:27:55 +00002763 SSH_FP_DEFAULT);
djm@openbsd.org9ce86c92015-01-28 22:36:00 +00002764 ra = sshkey_fingerprint(public, fingerprint_hash,
Darren Tucker9c16ac92008-06-13 04:40:35 +10002765 SSH_FP_RANDOMART);
djm@openbsd.org9ce86c92015-01-28 22:36:00 +00002766 if (fp == NULL || ra == NULL)
2767 fatal("sshkey_fingerprint failed");
Damien Millereba71ba2000-04-29 23:57:08 +10002768 printf("Your public key has been saved in %s.\n",
2769 identity_file);
Damien Miller95def091999-11-25 00:26:21 +11002770 printf("The key fingerprint is:\n");
Ben Lindstromcfccef92001-03-13 04:57:58 +00002771 printf("%s %s\n", fp, comment);
Darren Tucker9c16ac92008-06-13 04:40:35 +10002772 printf("The key's randomart image is:\n");
2773 printf("%s\n", ra);
Darren Tuckera627d422013-06-02 07:31:17 +10002774 free(ra);
2775 free(fp);
Damien Miller95def091999-11-25 00:26:21 +11002776 }
Damien Millereba71ba2000-04-29 23:57:08 +10002777
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002778 sshkey_free(public);
Damien Miller95def091999-11-25 00:26:21 +11002779 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002780}