blob: ff1d31b919823543bdb382efbaeb105664f1204c [file] [log] [blame]
djm@openbsd.orgd1958792015-05-28 04:40:13 +00001/* $OpenBSD: ssh-keygen.c,v 1.273 2015/05/28 04:40:13 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>
Damien Miller9f2abc42006-07-10 20:53:08 +100040
Damien Millerd4a8b7e1999-10-27 13:42:43 +100041#include "xmalloc.h"
djm@openbsd.org1129dcf2015-01-15 09:40:00 +000042#include "sshkey.h"
Ben Lindstromd09fcf52001-03-29 00:29:54 +000043#include "rsa.h"
Damien Millereba71ba2000-04-29 23:57:08 +100044#include "authfile.h"
45#include "uuencode.h"
djm@openbsd.org1129dcf2015-01-15 09:40:00 +000046#include "sshbuf.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000047#include "pathnames.h"
48#include "log.h"
Darren Tuckere608ca22004-05-13 16:15:47 +100049#include "misc.h"
Damien Miller4b42d7f2005-03-01 21:48:35 +110050#include "match.h"
51#include "hostfile.h"
Damien Miller69996102006-07-10 20:53:31 +100052#include "dns.h"
Damien Millerf3747bf2013-01-18 11:44:04 +110053#include "ssh.h"
Damien Miller0a80ca12010-02-27 07:55:05 +110054#include "ssh2.h"
djm@openbsd.org1129dcf2015-01-15 09:40:00 +000055#include "ssherr.h"
Damien Miller7ea845e2010-02-12 09:21:02 +110056#include "ssh-pkcs11.h"
Damien Millerf3747bf2013-01-18 11:44:04 +110057#include "atomicio.h"
58#include "krl.h"
djm@openbsd.org56d1c832014-12-21 22:27:55 +000059#include "digest.h"
Ben Lindstromcd392282001-07-04 03:44:03 +000060
djm@openbsd.orgd1958792015-05-28 04:40:13 +000061#ifdef WITH_OPENSSL
62# define DEFAULT_KEY_TYPE_NAME "rsa"
63#else
64# define DEFAULT_KEY_TYPE_NAME "ed25519"
65#endif
66
Damien Miller3f54a9f2005-11-05 14:52:18 +110067/* Number of bits in the RSA/DSA key. This value can be set on the command line. */
68#define DEFAULT_BITS 2048
69#define DEFAULT_BITS_DSA 1024
Damien Miller6e9f6802010-09-10 11:17:38 +100070#define DEFAULT_BITS_ECDSA 256
Damien Miller3f54a9f2005-11-05 14:52:18 +110071u_int32_t bits = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100072
Damien Miller5428f641999-11-25 11:54:57 +110073/*
74 * Flag indicating that we just want to change the passphrase. This can be
75 * set on the command line.
76 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100077int change_passphrase = 0;
78
Damien Miller5428f641999-11-25 11:54:57 +110079/*
80 * Flag indicating that we just want to change the comment. This can be set
81 * on the command line.
82 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100083int change_comment = 0;
84
85int quiet = 0;
86
Darren Tucker35c45532008-06-13 04:43:15 +100087int log_level = SYSLOG_LEVEL_INFO;
88
Damien Miller4b42d7f2005-03-01 21:48:35 +110089/* Flag indicating that we want to hash a known_hosts file */
90int hash_hosts = 0;
91/* Flag indicating that we want lookup a host in known_hosts file */
92int find_host = 0;
93/* Flag indicating that we want to delete a host from a known_hosts file */
94int delete_host = 0;
95
Damien Millerf2b70ca2010-03-05 07:39:35 +110096/* Flag indicating that we want to show the contents of a certificate */
97int show_cert = 0;
98
Damien Miller10f6f6b1999-11-17 17:29:08 +110099/* Flag indicating that we just want to see the key fingerprint */
100int print_fingerprint = 0;
Ben Lindstrom8fd372b2001-03-12 03:02:17 +0000101int print_bubblebabble = 0;
Damien Miller10f6f6b1999-11-17 17:29:08 +1100102
djm@openbsd.org56d1c832014-12-21 22:27:55 +0000103/* Hash algorithm to use for fingerprints. */
104int fingerprint_hash = SSH_FP_HASH_DEFAULT;
105
Damien Miller431f66b1999-11-21 18:31:57 +1100106/* The identity file name, given on the command line or entered by the user. */
107char identity_file[1024];
108int have_identity = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000109
110/* This is set to the passphrase if given on the command line. */
111char *identity_passphrase = NULL;
112
113/* This is set to the new passphrase if given on the command line. */
114char *identity_new_passphrase = NULL;
115
116/* This is set to the new comment if given on the command line. */
117char *identity_comment = NULL;
118
Damien Miller0a80ca12010-02-27 07:55:05 +1100119/* Path to CA key when certifying keys. */
120char *ca_key_path = NULL;
121
Damien Miller4e270b02010-04-16 15:56:21 +1000122/* Certificate serial number */
Damien Miller55aca022012-12-03 11:25:30 +1100123unsigned long long cert_serial = 0;
Damien Miller4e270b02010-04-16 15:56:21 +1000124
Damien Miller0a80ca12010-02-27 07:55:05 +1100125/* Key type when certifying */
126u_int cert_key_type = SSH2_CERT_TYPE_USER;
127
128/* "key ID" of signed key */
129char *cert_key_id = NULL;
130
131/* Comma-separated list of principal names for certifying keys */
132char *cert_principals = NULL;
133
134/* Validity period for certificates */
135u_int64_t cert_valid_from = 0;
136u_int64_t cert_valid_to = ~0ULL;
137
Damien Miller4e270b02010-04-16 15:56:21 +1000138/* Certificate options */
Damien Millerd0e4a8e2010-05-21 14:58:32 +1000139#define CERTOPT_X_FWD (1)
140#define CERTOPT_AGENT_FWD (1<<1)
141#define CERTOPT_PORT_FWD (1<<2)
142#define CERTOPT_PTY (1<<3)
143#define CERTOPT_USER_RC (1<<4)
144#define CERTOPT_DEFAULT (CERTOPT_X_FWD|CERTOPT_AGENT_FWD| \
145 CERTOPT_PORT_FWD|CERTOPT_PTY|CERTOPT_USER_RC)
146u_int32_t certflags_flags = CERTOPT_DEFAULT;
147char *certflags_command = NULL;
148char *certflags_src_addr = NULL;
Damien Miller0a80ca12010-02-27 07:55:05 +1100149
Damien Miller44b25042010-07-02 13:35:01 +1000150/* Conversion to/from various formats */
151int convert_to = 0;
152int convert_from = 0;
153enum {
154 FMT_RFC4716,
155 FMT_PKCS8,
156 FMT_PEM
157} convert_format = FMT_RFC4716;
Damien Millereba71ba2000-04-29 23:57:08 +1000158int print_public = 0;
Damien Miller37876e92003-05-15 10:19:46 +1000159int print_generic = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100160
Damien Millera41c8b12002-01-22 23:05:08 +1100161char *key_type_name = NULL;
Damien Millereba71ba2000-04-29 23:57:08 +1000162
Damien Miller757f34e2010-08-05 13:05:31 +1000163/* Load key from this PKCS#11 provider */
164char *pkcs11provider = NULL;
Damien Miller44b25042010-07-02 13:35:01 +1000165
Damien Millerbcd00ab2013-12-07 10:41:55 +1100166/* Use new OpenSSH private key format when writing SSH2 keys instead of PEM */
167int use_new_format = 0;
168
169/* Cipher for new-format private keys */
170char *new_format_cipher = NULL;
171
172/*
173 * Number of KDF rounds to derive new format keys /
174 * number of primality trials when screening moduli.
175 */
176int rounds = 0;
177
Damien Miller431f66b1999-11-21 18:31:57 +1100178/* argv0 */
179extern char *__progname;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000180
Damien Millere5c0d522014-07-03 21:24:19 +1000181char hostname[NI_MAXHOST];
Damien Millereba71ba2000-04-29 23:57:08 +1000182
Darren Tucker770fc012004-05-13 16:24:32 +1000183/* moduli.c */
Damien Millerb089fb52005-05-26 12:16:18 +1000184int gen_candidates(FILE *, u_int32_t, u_int32_t, BIGNUM *);
Damien Millerdfceafe2012-07-06 13:44:19 +1000185int prime_test(FILE *, FILE *, u_int32_t, u_int32_t, char *, unsigned long,
186 unsigned long);
Darren Tucker770fc012004-05-13 16:24:32 +1000187
Ben Lindstrombba81212001-06-25 05:01:22 +0000188static void
djm@openbsd.org7efb4552015-01-18 13:22:28 +0000189type_bits_valid(int type, const char *name, u_int32_t *bitsp)
Damien Miller58f1baf2011-05-05 14:06:15 +1000190{
Damien Miller72ef7c12015-01-15 02:21:31 +1100191#ifdef WITH_OPENSSL
djm@openbsd.org734226b2015-04-27 01:52:30 +0000192 u_int maxbits, nid;
Damien Miller72ef7c12015-01-15 02:21:31 +1100193#endif
Damien Miller58f1baf2011-05-05 14:06:15 +1000194
djm@openbsd.org3038a192015-04-17 13:19:22 +0000195 if (type == KEY_UNSPEC)
196 fatal("unknown key type %s", key_type_name);
Damien Miller884b63a2011-05-05 14:14:52 +1000197 if (*bitsp == 0) {
Damien Miller773dda22015-01-30 23:10:17 +1100198#ifdef WITH_OPENSSL
Damien Miller58f1baf2011-05-05 14:06:15 +1000199 if (type == KEY_DSA)
Damien Miller884b63a2011-05-05 14:14:52 +1000200 *bitsp = DEFAULT_BITS_DSA;
djm@openbsd.org7efb4552015-01-18 13:22:28 +0000201 else if (type == KEY_ECDSA) {
202 if (name != NULL &&
203 (nid = sshkey_ecdsa_nid_from_name(name)) > 0)
204 *bitsp = sshkey_curve_nid_to_bits(nid);
205 if (*bitsp == 0)
206 *bitsp = DEFAULT_BITS_ECDSA;
Damien Miller773dda22015-01-30 23:10:17 +1100207 } else
208#endif
Damien Miller884b63a2011-05-05 14:14:52 +1000209 *bitsp = DEFAULT_BITS;
Damien Miller58f1baf2011-05-05 14:06:15 +1000210 }
Damien Miller72ef7c12015-01-15 02:21:31 +1100211#ifdef WITH_OPENSSL
Damien Miller58f1baf2011-05-05 14:06:15 +1000212 maxbits = (type == KEY_DSA) ?
213 OPENSSL_DSA_MAX_MODULUS_BITS : OPENSSL_RSA_MAX_MODULUS_BITS;
djm@openbsd.org3038a192015-04-17 13:19:22 +0000214 if (*bitsp > maxbits)
215 fatal("key bits exceeds maximum %d", maxbits);
Damien Miller884b63a2011-05-05 14:14:52 +1000216 if (type == KEY_DSA && *bitsp != 1024)
Damien Miller58f1baf2011-05-05 14:06:15 +1000217 fatal("DSA keys must be 1024 bits");
Damien Miller5be9d9e2013-12-07 11:24:01 +1100218 else if (type != KEY_ECDSA && type != KEY_ED25519 && *bitsp < 768)
Damien Miller58f1baf2011-05-05 14:06:15 +1000219 fatal("Key must at least be 768 bits");
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000220 else if (type == KEY_ECDSA && sshkey_ecdsa_bits_to_nid(*bitsp) == -1)
Damien Miller58f1baf2011-05-05 14:06:15 +1000221 fatal("Invalid ECDSA key length - valid lengths are "
222 "256, 384 or 521 bits");
Damien Miller1f0311c2014-05-15 14:24:09 +1000223#endif
Damien Miller58f1baf2011-05-05 14:06:15 +1000224}
225
226static void
Damien Miller431f66b1999-11-21 18:31:57 +1100227ask_filename(struct passwd *pw, const char *prompt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000228{
Damien Miller95def091999-11-25 00:26:21 +1100229 char buf[1024];
Damien Millere39cacc2000-11-29 12:18:44 +1100230 char *name = NULL;
231
Damien Miller993dd552002-02-19 15:22:47 +1100232 if (key_type_name == NULL)
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000233 name = _PATH_SSH_CLIENT_ID_RSA;
Damien Miller90967402006-03-26 14:07:26 +1100234 else {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000235 switch (sshkey_type_from_name(key_type_name)) {
Damien Miller993dd552002-02-19 15:22:47 +1100236 case KEY_RSA1:
237 name = _PATH_SSH_CLIENT_IDENTITY;
238 break;
Damien Miller4e270b02010-04-16 15:56:21 +1000239 case KEY_DSA_CERT:
240 case KEY_DSA_CERT_V00:
Damien Miller993dd552002-02-19 15:22:47 +1100241 case KEY_DSA:
242 name = _PATH_SSH_CLIENT_ID_DSA;
243 break;
Damien Millerdd190dd2010-11-11 14:17:02 +1100244#ifdef OPENSSL_HAS_ECC
Damien Millereb8b60e2010-08-31 22:41:14 +1000245 case KEY_ECDSA_CERT:
246 case KEY_ECDSA:
247 name = _PATH_SSH_CLIENT_ID_ECDSA;
248 break;
Damien Millerdd190dd2010-11-11 14:17:02 +1100249#endif
Damien Miller4e270b02010-04-16 15:56:21 +1000250 case KEY_RSA_CERT:
251 case KEY_RSA_CERT_V00:
Damien Miller993dd552002-02-19 15:22:47 +1100252 case KEY_RSA:
253 name = _PATH_SSH_CLIENT_ID_RSA;
254 break;
Damien Miller5be9d9e2013-12-07 11:24:01 +1100255 case KEY_ED25519:
256 case KEY_ED25519_CERT:
257 name = _PATH_SSH_CLIENT_ID_ED25519;
258 break;
Damien Miller993dd552002-02-19 15:22:47 +1100259 default:
djm@openbsd.org3038a192015-04-17 13:19:22 +0000260 fatal("bad key type");
Damien Miller993dd552002-02-19 15:22:47 +1100261 }
Damien Miller90967402006-03-26 14:07:26 +1100262 }
djm@openbsd.org3038a192015-04-17 13:19:22 +0000263 snprintf(identity_file, sizeof(identity_file),
264 "%s/%s", pw->pw_dir, name);
265 printf("%s (%s): ", prompt, identity_file);
266 fflush(stdout);
Damien Miller95def091999-11-25 00:26:21 +1100267 if (fgets(buf, sizeof(buf), stdin) == NULL)
268 exit(1);
Damien Miller14b017d2007-09-17 16:09:15 +1000269 buf[strcspn(buf, "\n")] = '\0';
Damien Miller95def091999-11-25 00:26:21 +1100270 if (strcmp(buf, "") != 0)
271 strlcpy(identity_file, buf, sizeof(identity_file));
272 have_identity = 1;
Damien Miller10f6f6b1999-11-17 17:29:08 +1100273}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000274
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000275static struct sshkey *
Ben Lindstromd78ae762001-06-05 20:35:09 +0000276load_identity(char *filename)
Damien Millereba71ba2000-04-29 23:57:08 +1000277{
Ben Lindstromd0fca422001-03-26 13:44:06 +0000278 char *pass;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000279 struct sshkey *prv;
280 int r;
Ben Lindstromd0fca422001-03-26 13:44:06 +0000281
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000282 if ((r = sshkey_load_private(filename, "", &prv, NULL)) == 0)
283 return prv;
284 if (r != SSH_ERR_KEY_WRONG_PASSPHRASE)
285 fatal("Load key \"%s\": %s", filename, ssh_err(r));
286 if (identity_passphrase)
287 pass = xstrdup(identity_passphrase);
288 else
289 pass = read_passphrase("Enter passphrase: ", RP_ALLOW_STDIN);
290 r = sshkey_load_private(filename, pass, &prv, NULL);
291 explicit_bzero(pass, strlen(pass));
292 free(pass);
293 if (r != 0)
294 fatal("Load key \"%s\": %s", filename, ssh_err(r));
Ben Lindstromd0fca422001-03-26 13:44:06 +0000295 return prv;
Damien Millereba71ba2000-04-29 23:57:08 +1000296}
297
Damien Miller874d77b2000-10-14 16:23:11 +1100298#define SSH_COM_PUBLIC_BEGIN "---- BEGIN SSH2 PUBLIC KEY ----"
Ben Lindstromcb72e4f2002-06-21 00:41:51 +0000299#define SSH_COM_PUBLIC_END "---- END SSH2 PUBLIC KEY ----"
Damien Miller874d77b2000-10-14 16:23:11 +1100300#define SSH_COM_PRIVATE_BEGIN "---- BEGIN SSH2 ENCRYPTED PRIVATE KEY ----"
Kevin Stevesef4eea92001-02-05 12:42:17 +0000301#define SSH_COM_PRIVATE_KEY_MAGIC 0x3f6ff9eb
Damien Millereba71ba2000-04-29 23:57:08 +1000302
Damien Miller1f0311c2014-05-15 14:24:09 +1000303#ifdef WITH_OPENSSL
Ben Lindstrombba81212001-06-25 05:01:22 +0000304static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000305do_convert_to_ssh2(struct passwd *pw, struct sshkey *k)
Damien Millereba71ba2000-04-29 23:57:08 +1000306{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000307 size_t len;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000308 u_char *blob;
Darren Tuckerd04758d2010-01-12 19:41:57 +1100309 char comment[61];
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000310 int r;
Damien Millereba71ba2000-04-29 23:57:08 +1000311
djm@openbsd.org3038a192015-04-17 13:19:22 +0000312 if (k->type == KEY_RSA1)
313 fatal("version 1 keys are not supported");
314 if ((r = sshkey_to_blob(k, &blob, &len)) != 0)
315 fatal("key_to_blob failed: %s", ssh_err(r));
Darren Tuckerd04758d2010-01-12 19:41:57 +1100316 /* Comment + surrounds must fit into 72 chars (RFC 4716 sec 3.3) */
317 snprintf(comment, sizeof(comment),
318 "%u-bit %s, converted by %s@%s from OpenSSH",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000319 sshkey_size(k), sshkey_type(k),
Damien Millereba71ba2000-04-29 23:57:08 +1000320 pw->pw_name, hostname);
Darren Tuckerd04758d2010-01-12 19:41:57 +1100321
322 fprintf(stdout, "%s\n", SSH_COM_PUBLIC_BEGIN);
323 fprintf(stdout, "Comment: \"%s\"\n", comment);
Damien Millereba71ba2000-04-29 23:57:08 +1000324 dump_base64(stdout, blob, len);
Damien Miller874d77b2000-10-14 16:23:11 +1100325 fprintf(stdout, "%s\n", SSH_COM_PUBLIC_END);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000326 sshkey_free(k);
Darren Tuckera627d422013-06-02 07:31:17 +1000327 free(blob);
Damien Millereba71ba2000-04-29 23:57:08 +1000328 exit(0);
329}
330
Ben Lindstrombba81212001-06-25 05:01:22 +0000331static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000332do_convert_to_pkcs8(struct sshkey *k)
Damien Miller44b25042010-07-02 13:35:01 +1000333{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000334 switch (sshkey_type_plain(k->type)) {
Damien Millera563cce2012-04-22 11:07:28 +1000335 case KEY_RSA1:
Damien Miller44b25042010-07-02 13:35:01 +1000336 case KEY_RSA:
337 if (!PEM_write_RSA_PUBKEY(stdout, k->rsa))
338 fatal("PEM_write_RSA_PUBKEY failed");
339 break;
340 case KEY_DSA:
341 if (!PEM_write_DSA_PUBKEY(stdout, k->dsa))
342 fatal("PEM_write_DSA_PUBKEY failed");
343 break;
Damien Miller6af914a2010-09-10 11:39:26 +1000344#ifdef OPENSSL_HAS_ECC
Damien Millereb8b60e2010-08-31 22:41:14 +1000345 case KEY_ECDSA:
346 if (!PEM_write_EC_PUBKEY(stdout, k->ecdsa))
347 fatal("PEM_write_EC_PUBKEY failed");
348 break;
Damien Miller6af914a2010-09-10 11:39:26 +1000349#endif
Damien Miller44b25042010-07-02 13:35:01 +1000350 default:
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000351 fatal("%s: unsupported key type %s", __func__, sshkey_type(k));
Damien Miller44b25042010-07-02 13:35:01 +1000352 }
353 exit(0);
354}
355
356static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000357do_convert_to_pem(struct sshkey *k)
Damien Miller44b25042010-07-02 13:35:01 +1000358{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000359 switch (sshkey_type_plain(k->type)) {
Damien Millera563cce2012-04-22 11:07:28 +1000360 case KEY_RSA1:
Damien Miller44b25042010-07-02 13:35:01 +1000361 case KEY_RSA:
362 if (!PEM_write_RSAPublicKey(stdout, k->rsa))
363 fatal("PEM_write_RSAPublicKey failed");
364 break;
365#if notyet /* OpenSSH 0.9.8 lacks this function */
366 case KEY_DSA:
367 if (!PEM_write_DSAPublicKey(stdout, k->dsa))
368 fatal("PEM_write_DSAPublicKey failed");
369 break;
370#endif
Damien Millereb8b60e2010-08-31 22:41:14 +1000371 /* XXX ECDSA? */
Damien Miller44b25042010-07-02 13:35:01 +1000372 default:
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000373 fatal("%s: unsupported key type %s", __func__, sshkey_type(k));
Damien Miller44b25042010-07-02 13:35:01 +1000374 }
375 exit(0);
376}
377
378static void
379do_convert_to(struct passwd *pw)
380{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000381 struct sshkey *k;
Damien Miller44b25042010-07-02 13:35:01 +1000382 struct stat st;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000383 int r;
Damien Miller44b25042010-07-02 13:35:01 +1000384
385 if (!have_identity)
386 ask_filename(pw, "Enter file in which the key is");
387 if (stat(identity_file, &st) < 0)
388 fatal("%s: %s: %s", __progname, identity_file, strerror(errno));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000389 if ((r = sshkey_load_public(identity_file, &k, NULL)) != 0)
390 k = load_identity(identity_file);
Damien Miller44b25042010-07-02 13:35:01 +1000391 switch (convert_format) {
392 case FMT_RFC4716:
393 do_convert_to_ssh2(pw, k);
394 break;
395 case FMT_PKCS8:
396 do_convert_to_pkcs8(k);
397 break;
398 case FMT_PEM:
399 do_convert_to_pem(k);
400 break;
401 default:
402 fatal("%s: unknown key format %d", __func__, convert_format);
403 }
404 exit(0);
405}
406
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000407/*
408 * This is almost exactly the bignum1 encoding, but with 32 bit for length
409 * instead of 16.
410 */
Damien Miller44b25042010-07-02 13:35:01 +1000411static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000412buffer_get_bignum_bits(struct sshbuf *b, BIGNUM *value)
Damien Miller874d77b2000-10-14 16:23:11 +1100413{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000414 u_int bytes, bignum_bits;
415 int r;
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000416
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000417 if ((r = sshbuf_get_u32(b, &bignum_bits)) != 0)
418 fatal("%s: buffer error: %s", __func__, ssh_err(r));
419 bytes = (bignum_bits + 7) / 8;
420 if (sshbuf_len(b) < bytes)
421 fatal("%s: input buffer too small: need %d have %zu",
422 __func__, bytes, sshbuf_len(b));
423 if (BN_bin2bn(sshbuf_ptr(b), bytes, value) == NULL)
424 fatal("%s: BN_bin2bn failed", __func__);
425 if ((r = sshbuf_consume(b, bytes)) != 0)
426 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Miller874d77b2000-10-14 16:23:11 +1100427}
428
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000429static struct sshkey *
Ben Lindstrom90fd8142002-02-26 18:09:42 +0000430do_convert_private_ssh2_from_blob(u_char *blob, u_int blen)
Damien Miller874d77b2000-10-14 16:23:11 +1100431{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000432 struct sshbuf *b;
433 struct sshkey *key = NULL;
Damien Miller874d77b2000-10-14 16:23:11 +1100434 char *type, *cipher;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000435 u_char e1, e2, e3, *sig = NULL, data[] = "abcde12345";
436 int r, rlen, ktype;
437 u_int magic, i1, i2, i3, i4;
438 size_t slen;
Ben Lindstrome586c4c2001-06-25 05:04:58 +0000439 u_long e;
Damien Miller874d77b2000-10-14 16:23:11 +1100440
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000441 if ((b = sshbuf_from(blob, blen)) == NULL)
442 fatal("%s: sshbuf_from failed", __func__);
443 if ((r = sshbuf_get_u32(b, &magic)) != 0)
444 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Miller874d77b2000-10-14 16:23:11 +1100445
Damien Miller874d77b2000-10-14 16:23:11 +1100446 if (magic != SSH_COM_PRIVATE_KEY_MAGIC) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000447 error("bad magic 0x%x != 0x%x", magic,
448 SSH_COM_PRIVATE_KEY_MAGIC);
449 sshbuf_free(b);
Damien Miller874d77b2000-10-14 16:23:11 +1100450 return NULL;
451 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000452 if ((r = sshbuf_get_u32(b, &i1)) != 0 ||
453 (r = sshbuf_get_cstring(b, &type, NULL)) != 0 ||
454 (r = sshbuf_get_cstring(b, &cipher, NULL)) != 0 ||
455 (r = sshbuf_get_u32(b, &i2)) != 0 ||
456 (r = sshbuf_get_u32(b, &i3)) != 0 ||
457 (r = sshbuf_get_u32(b, &i4)) != 0)
458 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Miller80163902007-01-05 16:30:16 +1100459 debug("ignore (%d %d %d %d)", i1, i2, i3, i4);
Damien Miller874d77b2000-10-14 16:23:11 +1100460 if (strcmp(cipher, "none") != 0) {
461 error("unsupported cipher %s", cipher);
Darren Tuckera627d422013-06-02 07:31:17 +1000462 free(cipher);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000463 sshbuf_free(b);
Darren Tuckera627d422013-06-02 07:31:17 +1000464 free(type);
Damien Miller874d77b2000-10-14 16:23:11 +1100465 return NULL;
466 }
Darren Tuckera627d422013-06-02 07:31:17 +1000467 free(cipher);
Damien Miller874d77b2000-10-14 16:23:11 +1100468
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000469 if (strstr(type, "dsa")) {
470 ktype = KEY_DSA;
471 } else if (strstr(type, "rsa")) {
472 ktype = KEY_RSA;
473 } else {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000474 sshbuf_free(b);
Darren Tuckera627d422013-06-02 07:31:17 +1000475 free(type);
Damien Miller874d77b2000-10-14 16:23:11 +1100476 return NULL;
477 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000478 if ((key = sshkey_new_private(ktype)) == NULL)
479 fatal("key_new_private failed");
Darren Tuckera627d422013-06-02 07:31:17 +1000480 free(type);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000481
482 switch (key->type) {
483 case KEY_DSA:
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000484 buffer_get_bignum_bits(b, key->dsa->p);
485 buffer_get_bignum_bits(b, key->dsa->g);
486 buffer_get_bignum_bits(b, key->dsa->q);
487 buffer_get_bignum_bits(b, key->dsa->pub_key);
488 buffer_get_bignum_bits(b, key->dsa->priv_key);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000489 break;
490 case KEY_RSA:
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000491 if ((r = sshbuf_get_u8(b, &e1)) != 0 ||
492 (e1 < 30 && (r = sshbuf_get_u8(b, &e2)) != 0) ||
493 (e1 < 30 && (r = sshbuf_get_u8(b, &e3)) != 0))
494 fatal("%s: buffer error: %s", __func__, ssh_err(r));
495 e = e1;
Ben Lindstrom34f91882001-06-25 04:47:54 +0000496 debug("e %lx", e);
497 if (e < 30) {
498 e <<= 8;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000499 e += e2;
Ben Lindstrom34f91882001-06-25 04:47:54 +0000500 debug("e %lx", e);
501 e <<= 8;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000502 e += e3;
Ben Lindstrom34f91882001-06-25 04:47:54 +0000503 debug("e %lx", e);
504 }
505 if (!BN_set_word(key->rsa->e, e)) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000506 sshbuf_free(b);
507 sshkey_free(key);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000508 return NULL;
509 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000510 buffer_get_bignum_bits(b, key->rsa->d);
511 buffer_get_bignum_bits(b, key->rsa->n);
512 buffer_get_bignum_bits(b, key->rsa->iqmp);
513 buffer_get_bignum_bits(b, key->rsa->q);
514 buffer_get_bignum_bits(b, key->rsa->p);
515 if ((r = rsa_generate_additional_parameters(key->rsa)) != 0)
516 fatal("generate RSA parameters failed: %s", ssh_err(r));
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000517 break;
518 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000519 rlen = sshbuf_len(b);
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +0000520 if (rlen != 0)
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000521 error("do_convert_private_ssh2_from_blob: "
522 "remaining bytes in key blob %d", rlen);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000523 sshbuf_free(b);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000524
Ben Lindstrome586c4c2001-06-25 05:04:58 +0000525 /* try the key */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000526 if (sshkey_sign(key, &sig, &slen, data, sizeof(data), 0) != 0 ||
527 sshkey_verify(key, sig, slen, data, sizeof(data), 0) != 0) {
528 sshkey_free(key);
529 free(sig);
530 return NULL;
531 }
Darren Tuckera627d422013-06-02 07:31:17 +1000532 free(sig);
Damien Miller874d77b2000-10-14 16:23:11 +1100533 return key;
534}
535
Damien Miller8056a9d2006-03-15 12:05:40 +1100536static int
537get_line(FILE *fp, char *line, size_t len)
538{
539 int c;
540 size_t pos = 0;
541
542 line[0] = '\0';
543 while ((c = fgetc(fp)) != EOF) {
djm@openbsd.org3038a192015-04-17 13:19:22 +0000544 if (pos >= len - 1)
545 fatal("input line too long.");
Damien Miller90967402006-03-26 14:07:26 +1100546 switch (c) {
Damien Miller8056a9d2006-03-15 12:05:40 +1100547 case '\r':
548 c = fgetc(fp);
djm@openbsd.org3038a192015-04-17 13:19:22 +0000549 if (c != EOF && c != '\n' && ungetc(c, fp) == EOF)
550 fatal("unget: %s", strerror(errno));
Damien Miller8056a9d2006-03-15 12:05:40 +1100551 return pos;
552 case '\n':
553 return pos;
554 }
555 line[pos++] = c;
556 line[pos] = '\0';
557 }
Damien Miller6c7439f2007-01-05 16:29:55 +1100558 /* We reached EOF */
559 return -1;
Damien Miller8056a9d2006-03-15 12:05:40 +1100560}
561
Ben Lindstrombba81212001-06-25 05:01:22 +0000562static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000563do_convert_from_ssh2(struct passwd *pw, struct sshkey **k, int *private)
Damien Millereba71ba2000-04-29 23:57:08 +1000564{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000565 int r, blen, escaped = 0;
Ben Lindstrom155b9812002-04-02 20:26:26 +0000566 u_int len;
Damien Miller8056a9d2006-03-15 12:05:40 +1100567 char line[1024];
Ben Lindstrom9e0ddd42001-09-18 05:41:19 +0000568 u_char blob[8096];
Damien Millereba71ba2000-04-29 23:57:08 +1000569 char encoded[8096];
Damien Millereba71ba2000-04-29 23:57:08 +1000570 FILE *fp;
571
Damien Millerba3420a2010-06-26 09:39:07 +1000572 if ((fp = fopen(identity_file, "r")) == NULL)
573 fatal("%s: %s: %s", __progname, identity_file, strerror(errno));
Damien Millereba71ba2000-04-29 23:57:08 +1000574 encoded[0] = '\0';
Damien Miller8056a9d2006-03-15 12:05:40 +1100575 while ((blen = get_line(fp, line, sizeof(line))) != -1) {
Damien Miller746d1a62013-07-18 16:13:02 +1000576 if (blen > 0 && line[blen - 1] == '\\')
Damien Miller30c3d422000-05-09 11:02:59 +1000577 escaped++;
Damien Millereba71ba2000-04-29 23:57:08 +1000578 if (strncmp(line, "----", 4) == 0 ||
579 strstr(line, ": ") != NULL) {
Damien Miller874d77b2000-10-14 16:23:11 +1100580 if (strstr(line, SSH_COM_PRIVATE_BEGIN) != NULL)
Damien Miller44b25042010-07-02 13:35:01 +1000581 *private = 1;
Ben Lindstrome586c4c2001-06-25 05:04:58 +0000582 if (strstr(line, " END ") != NULL) {
583 break;
584 }
Ben Lindstrom30358602001-04-24 16:59:28 +0000585 /* fprintf(stderr, "ignore: %s", line); */
Damien Millereba71ba2000-04-29 23:57:08 +1000586 continue;
587 }
Damien Miller30c3d422000-05-09 11:02:59 +1000588 if (escaped) {
589 escaped--;
Ben Lindstrom30358602001-04-24 16:59:28 +0000590 /* fprintf(stderr, "escaped: %s", line); */
Damien Miller30c3d422000-05-09 11:02:59 +1000591 continue;
Damien Millereba71ba2000-04-29 23:57:08 +1000592 }
Damien Millereba71ba2000-04-29 23:57:08 +1000593 strlcat(encoded, line, sizeof(encoded));
594 }
Ben Lindstrom155b9812002-04-02 20:26:26 +0000595 len = strlen(encoded);
596 if (((len % 4) == 3) &&
597 (encoded[len-1] == '=') &&
598 (encoded[len-2] == '=') &&
599 (encoded[len-3] == '='))
600 encoded[len-3] = '\0';
Damien Miller4a8ed542002-01-22 23:33:31 +1100601 blen = uudecode(encoded, blob, sizeof(blob));
djm@openbsd.org3038a192015-04-17 13:19:22 +0000602 if (blen < 0)
603 fatal("uudecode failed.");
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000604 if (*private)
605 *k = do_convert_private_ssh2_from_blob(blob, blen);
djm@openbsd.org3038a192015-04-17 13:19:22 +0000606 else if ((r = sshkey_from_blob(blob, blen, k)) != 0)
607 fatal("decode blob failed: %s", ssh_err(r));
Damien Miller44b25042010-07-02 13:35:01 +1000608 fclose(fp);
609}
610
611static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000612do_convert_from_pkcs8(struct sshkey **k, int *private)
Damien Miller44b25042010-07-02 13:35:01 +1000613{
614 EVP_PKEY *pubkey;
615 FILE *fp;
616
617 if ((fp = fopen(identity_file, "r")) == NULL)
618 fatal("%s: %s: %s", __progname, identity_file, strerror(errno));
619 if ((pubkey = PEM_read_PUBKEY(fp, NULL, NULL, NULL)) == NULL) {
620 fatal("%s: %s is not a recognised public key format", __func__,
621 identity_file);
622 }
623 fclose(fp);
624 switch (EVP_PKEY_type(pubkey->type)) {
625 case EVP_PKEY_RSA:
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000626 if ((*k = sshkey_new(KEY_UNSPEC)) == NULL)
627 fatal("sshkey_new failed");
Damien Miller44b25042010-07-02 13:35:01 +1000628 (*k)->type = KEY_RSA;
629 (*k)->rsa = EVP_PKEY_get1_RSA(pubkey);
630 break;
631 case EVP_PKEY_DSA:
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000632 if ((*k = sshkey_new(KEY_UNSPEC)) == NULL)
633 fatal("sshkey_new failed");
Damien Miller44b25042010-07-02 13:35:01 +1000634 (*k)->type = KEY_DSA;
635 (*k)->dsa = EVP_PKEY_get1_DSA(pubkey);
636 break;
Damien Miller6af914a2010-09-10 11:39:26 +1000637#ifdef OPENSSL_HAS_ECC
Damien Millereb8b60e2010-08-31 22:41:14 +1000638 case EVP_PKEY_EC:
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000639 if ((*k = sshkey_new(KEY_UNSPEC)) == NULL)
640 fatal("sshkey_new failed");
Damien Millereb8b60e2010-08-31 22:41:14 +1000641 (*k)->type = KEY_ECDSA;
642 (*k)->ecdsa = EVP_PKEY_get1_EC_KEY(pubkey);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000643 (*k)->ecdsa_nid = sshkey_ecdsa_key_to_nid((*k)->ecdsa);
Damien Millereb8b60e2010-08-31 22:41:14 +1000644 break;
Damien Miller6af914a2010-09-10 11:39:26 +1000645#endif
Damien Miller44b25042010-07-02 13:35:01 +1000646 default:
647 fatal("%s: unsupported pubkey type %d", __func__,
648 EVP_PKEY_type(pubkey->type));
649 }
650 EVP_PKEY_free(pubkey);
651 return;
652}
653
654static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000655do_convert_from_pem(struct sshkey **k, int *private)
Damien Miller44b25042010-07-02 13:35:01 +1000656{
657 FILE *fp;
658 RSA *rsa;
659#ifdef notyet
660 DSA *dsa;
661#endif
662
663 if ((fp = fopen(identity_file, "r")) == NULL)
664 fatal("%s: %s: %s", __progname, identity_file, strerror(errno));
665 if ((rsa = PEM_read_RSAPublicKey(fp, NULL, NULL, NULL)) != NULL) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000666 if ((*k = sshkey_new(KEY_UNSPEC)) == NULL)
667 fatal("sshkey_new failed");
Damien Miller44b25042010-07-02 13:35:01 +1000668 (*k)->type = KEY_RSA;
669 (*k)->rsa = rsa;
670 fclose(fp);
671 return;
672 }
673#if notyet /* OpenSSH 0.9.8 lacks this function */
674 rewind(fp);
675 if ((dsa = PEM_read_DSAPublicKey(fp, NULL, NULL, NULL)) != NULL) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000676 if ((*k = sshkey_new(KEY_UNSPEC)) == NULL)
677 fatal("sshkey_new failed");
Damien Miller44b25042010-07-02 13:35:01 +1000678 (*k)->type = KEY_DSA;
679 (*k)->dsa = dsa;
680 fclose(fp);
681 return;
682 }
Damien Millereb8b60e2010-08-31 22:41:14 +1000683 /* XXX ECDSA */
Damien Miller44b25042010-07-02 13:35:01 +1000684#endif
685 fatal("%s: unrecognised raw private key format", __func__);
686}
687
688static void
689do_convert_from(struct passwd *pw)
690{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000691 struct sshkey *k = NULL;
692 int r, private = 0, ok = 0;
Damien Miller44b25042010-07-02 13:35:01 +1000693 struct stat st;
694
695 if (!have_identity)
696 ask_filename(pw, "Enter file in which the key is");
697 if (stat(identity_file, &st) < 0)
698 fatal("%s: %s: %s", __progname, identity_file, strerror(errno));
699
700 switch (convert_format) {
701 case FMT_RFC4716:
702 do_convert_from_ssh2(pw, &k, &private);
703 break;
704 case FMT_PKCS8:
705 do_convert_from_pkcs8(&k, &private);
706 break;
707 case FMT_PEM:
708 do_convert_from_pem(&k, &private);
709 break;
710 default:
711 fatal("%s: unknown key format %d", __func__, convert_format);
712 }
713
djm@openbsd.org7a2c3682015-01-30 00:59:19 +0000714 if (!private) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000715 if ((r = sshkey_write(k, stdout)) == 0)
716 ok = 1;
Damien Miller44b25042010-07-02 13:35:01 +1000717 if (ok)
718 fprintf(stdout, "\n");
djm@openbsd.org7a2c3682015-01-30 00:59:19 +0000719 } else {
Damien Miller44b25042010-07-02 13:35:01 +1000720 switch (k->type) {
721 case KEY_DSA:
722 ok = PEM_write_DSAPrivateKey(stdout, k->dsa, NULL,
723 NULL, 0, NULL, NULL);
724 break;
Damien Miller6af914a2010-09-10 11:39:26 +1000725#ifdef OPENSSL_HAS_ECC
Damien Millereb8b60e2010-08-31 22:41:14 +1000726 case KEY_ECDSA:
727 ok = PEM_write_ECPrivateKey(stdout, k->ecdsa, NULL,
728 NULL, 0, NULL, NULL);
729 break;
Damien Miller6af914a2010-09-10 11:39:26 +1000730#endif
Damien Miller44b25042010-07-02 13:35:01 +1000731 case KEY_RSA:
732 ok = PEM_write_RSAPrivateKey(stdout, k->rsa, NULL,
733 NULL, 0, NULL, NULL);
734 break;
735 default:
736 fatal("%s: unsupported key type %s", __func__,
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000737 sshkey_type(k));
Damien Miller44b25042010-07-02 13:35:01 +1000738 }
739 }
740
djm@openbsd.org3038a192015-04-17 13:19:22 +0000741 if (!ok)
742 fatal("key write failed");
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000743 sshkey_free(k);
Damien Millereba71ba2000-04-29 23:57:08 +1000744 exit(0);
745}
Damien Miller1f0311c2014-05-15 14:24:09 +1000746#endif
Damien Millereba71ba2000-04-29 23:57:08 +1000747
Ben Lindstrombba81212001-06-25 05:01:22 +0000748static void
Damien Millereba71ba2000-04-29 23:57:08 +1000749do_print_public(struct passwd *pw)
750{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000751 struct sshkey *prv;
Damien Millereba71ba2000-04-29 23:57:08 +1000752 struct stat st;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000753 int r;
Damien Millereba71ba2000-04-29 23:57:08 +1000754
755 if (!have_identity)
756 ask_filename(pw, "Enter file in which the key is");
djm@openbsd.org3038a192015-04-17 13:19:22 +0000757 if (stat(identity_file, &st) < 0)
758 fatal("%s: %s", identity_file, strerror(errno));
Ben Lindstromd78ae762001-06-05 20:35:09 +0000759 prv = load_identity(identity_file);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000760 if ((r = sshkey_write(prv, stdout)) != 0)
djm@openbsd.org3038a192015-04-17 13:19:22 +0000761 error("key_write failed: %s", ssh_err(r));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000762 sshkey_free(prv);
Damien Millereba71ba2000-04-29 23:57:08 +1000763 fprintf(stdout, "\n");
764 exit(0);
765}
766
Ben Lindstromcd392282001-07-04 03:44:03 +0000767static void
Damien Miller757f34e2010-08-05 13:05:31 +1000768do_download(struct passwd *pw)
Ben Lindstromcd392282001-07-04 03:44:03 +0000769{
Damien Miller7ea845e2010-02-12 09:21:02 +1100770#ifdef ENABLE_PKCS11
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000771 struct sshkey **keys = NULL;
Damien Miller7ea845e2010-02-12 09:21:02 +1100772 int i, nkeys;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000773 enum sshkey_fp_rep rep;
djm@openbsd.org56d1c832014-12-21 22:27:55 +0000774 int fptype;
Damien Millerec77c952013-01-09 15:58:00 +1100775 char *fp, *ra;
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000776
djm@openbsd.org56d1c832014-12-21 22:27:55 +0000777 fptype = print_bubblebabble ? SSH_DIGEST_SHA1 : fingerprint_hash;
778 rep = print_bubblebabble ? SSH_FP_BUBBLEBABBLE : SSH_FP_DEFAULT;
Damien Miller1422c082013-01-09 16:44:54 +1100779
Damien Miller7ea845e2010-02-12 09:21:02 +1100780 pkcs11_init(0);
781 nkeys = pkcs11_add_provider(pkcs11provider, NULL, &keys);
782 if (nkeys <= 0)
783 fatal("cannot read public key from pkcs11");
784 for (i = 0; i < nkeys; i++) {
Damien Millerec77c952013-01-09 15:58:00 +1100785 if (print_fingerprint) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000786 fp = sshkey_fingerprint(keys[i], fptype, rep);
787 ra = sshkey_fingerprint(keys[i], fingerprint_hash,
Damien Millerec77c952013-01-09 15:58:00 +1100788 SSH_FP_RANDOMART);
djm@openbsd.org9ce86c92015-01-28 22:36:00 +0000789 if (fp == NULL || ra == NULL)
790 fatal("%s: sshkey_fingerprint fail", __func__);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000791 printf("%u %s %s (PKCS11 key)\n", sshkey_size(keys[i]),
792 fp, sshkey_type(keys[i]));
Damien Millerec77c952013-01-09 15:58:00 +1100793 if (log_level >= SYSLOG_LEVEL_VERBOSE)
794 printf("%s\n", ra);
Darren Tuckera627d422013-06-02 07:31:17 +1000795 free(ra);
796 free(fp);
Damien Millerec77c952013-01-09 15:58:00 +1100797 } else {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000798 (void) sshkey_write(keys[i], stdout); /* XXX check */
Damien Millerec77c952013-01-09 15:58:00 +1100799 fprintf(stdout, "\n");
800 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000801 sshkey_free(keys[i]);
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000802 }
Darren Tuckera627d422013-06-02 07:31:17 +1000803 free(keys);
Damien Miller7ea845e2010-02-12 09:21:02 +1100804 pkcs11_terminate();
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000805 exit(0);
Damien Miller7ea845e2010-02-12 09:21:02 +1100806#else
807 fatal("no pkcs11 support");
808#endif /* ENABLE_PKCS11 */
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000809}
Ben Lindstromcd392282001-07-04 03:44:03 +0000810
Ben Lindstrombba81212001-06-25 05:01:22 +0000811static void
Damien Miller10f6f6b1999-11-17 17:29:08 +1100812do_fingerprint(struct passwd *pw)
813{
Damien Miller98c7ad62000-03-09 21:27:49 +1100814 FILE *f;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000815 struct sshkey *public;
Darren Tucker9c16ac92008-06-13 04:40:35 +1000816 char *comment = NULL, *cp, *ep, line[16*1024], *fp, *ra;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000817 int r, i, skip = 0, num = 0, invalid = 1;
818 enum sshkey_fp_rep rep;
djm@openbsd.org56d1c832014-12-21 22:27:55 +0000819 int fptype;
Damien Miller95def091999-11-25 00:26:21 +1100820 struct stat st;
Damien Miller10f6f6b1999-11-17 17:29:08 +1100821
djm@openbsd.org56d1c832014-12-21 22:27:55 +0000822 fptype = print_bubblebabble ? SSH_DIGEST_SHA1 : fingerprint_hash;
823 rep = print_bubblebabble ? SSH_FP_BUBBLEBABBLE : SSH_FP_DEFAULT;
Damien Miller95def091999-11-25 00:26:21 +1100824 if (!have_identity)
825 ask_filename(pw, "Enter file in which the key is");
djm@openbsd.org3038a192015-04-17 13:19:22 +0000826 if (stat(identity_file, &st) < 0)
827 fatal("%s: %s", identity_file, strerror(errno));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000828 if ((r = sshkey_load_public(identity_file, &public, &comment)) != 0)
djm@openbsd.org2285c302015-02-23 22:21:21 +0000829 debug2("Error loading public key \"%s\": %s",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000830 identity_file, ssh_err(r));
831 else {
832 fp = sshkey_fingerprint(public, fptype, rep);
833 ra = sshkey_fingerprint(public, fingerprint_hash,
djm@openbsd.org56d1c832014-12-21 22:27:55 +0000834 SSH_FP_RANDOMART);
djm@openbsd.org9ce86c92015-01-28 22:36:00 +0000835 if (fp == NULL || ra == NULL)
836 fatal("%s: sshkey_fingerprint fail", __func__);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000837 printf("%u %s %s (%s)\n", sshkey_size(public), fp, comment,
838 sshkey_type(public));
Darren Tucker35c45532008-06-13 04:43:15 +1000839 if (log_level >= SYSLOG_LEVEL_VERBOSE)
840 printf("%s\n", ra);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000841 sshkey_free(public);
Darren Tuckera627d422013-06-02 07:31:17 +1000842 free(comment);
843 free(ra);
844 free(fp);
Damien Miller98c7ad62000-03-09 21:27:49 +1100845 exit(0);
846 }
Damien Miller40b59852006-06-13 13:00:25 +1000847 if (comment) {
Darren Tuckera627d422013-06-02 07:31:17 +1000848 free(comment);
Damien Miller40b59852006-06-13 13:00:25 +1000849 comment = NULL;
850 }
Damien Miller98c7ad62000-03-09 21:27:49 +1100851
Damien Millerba3420a2010-06-26 09:39:07 +1000852 if ((f = fopen(identity_file, "r")) == NULL)
853 fatal("%s: %s: %s", __progname, identity_file, strerror(errno));
Damien Miller98c7ad62000-03-09 21:27:49 +1100854
Damien Millerba3420a2010-06-26 09:39:07 +1000855 while (fgets(line, sizeof(line), f)) {
856 if ((cp = strchr(line, '\n')) == NULL) {
857 error("line %d too long: %.40s...",
858 num + 1, line);
859 skip = 1;
860 continue;
Damien Miller95def091999-11-25 00:26:21 +1100861 }
Damien Millerba3420a2010-06-26 09:39:07 +1000862 num++;
863 if (skip) {
864 skip = 0;
865 continue;
866 }
867 *cp = '\0';
868
869 /* Skip leading whitespace, empty and comment lines. */
870 for (cp = line; *cp == ' ' || *cp == '\t'; cp++)
871 ;
872 if (!*cp || *cp == '\n' || *cp == '#')
873 continue;
874 i = strtol(cp, &ep, 10);
875 if (i == 0 || ep == NULL || (*ep != ' ' && *ep != '\t')) {
876 int quoted = 0;
877 comment = cp;
878 for (; *cp && (quoted || (*cp != ' ' &&
879 *cp != '\t')); cp++) {
880 if (*cp == '\\' && cp[1] == '"')
881 cp++; /* Skip both */
882 else if (*cp == '"')
883 quoted = !quoted;
884 }
885 if (!*cp)
886 continue;
887 *cp++ = '\0';
888 }
889 ep = cp;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000890 if ((public = sshkey_new(KEY_RSA1)) == NULL)
891 fatal("sshkey_new failed");
892 if ((r = sshkey_read(public, &cp)) != 0) {
Damien Millerba3420a2010-06-26 09:39:07 +1000893 cp = ep;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000894 sshkey_free(public);
895 if ((public = sshkey_new(KEY_UNSPEC)) == NULL)
896 fatal("sshkey_new failed");
897 if ((r = sshkey_read(public, &cp)) != 0) {
898 sshkey_free(public);
Damien Millerba3420a2010-06-26 09:39:07 +1000899 continue;
900 }
901 }
902 comment = *cp ? cp : comment;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000903 fp = sshkey_fingerprint(public, fptype, rep);
904 ra = sshkey_fingerprint(public, fingerprint_hash,
djm@openbsd.org56d1c832014-12-21 22:27:55 +0000905 SSH_FP_RANDOMART);
djm@openbsd.org9ce86c92015-01-28 22:36:00 +0000906 if (fp == NULL || ra == NULL)
907 fatal("%s: sshkey_fingerprint fail", __func__);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000908 printf("%u %s %s (%s)\n", sshkey_size(public), fp,
909 comment ? comment : "no comment", sshkey_type(public));
Damien Millerba3420a2010-06-26 09:39:07 +1000910 if (log_level >= SYSLOG_LEVEL_VERBOSE)
911 printf("%s\n", ra);
Darren Tuckera627d422013-06-02 07:31:17 +1000912 free(ra);
913 free(fp);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000914 sshkey_free(public);
Damien Millerba3420a2010-06-26 09:39:07 +1000915 invalid = 0;
Damien Miller95def091999-11-25 00:26:21 +1100916 }
Damien Millerba3420a2010-06-26 09:39:07 +1000917 fclose(f);
918
djm@openbsd.org3038a192015-04-17 13:19:22 +0000919 if (invalid)
920 fatal("%s is not a public key file.", identity_file);
Damien Miller95def091999-11-25 00:26:21 +1100921 exit(0);
Damien Miller10f6f6b1999-11-17 17:29:08 +1100922}
923
Damien Miller4b42d7f2005-03-01 21:48:35 +1100924static void
Damien Miller58f1baf2011-05-05 14:06:15 +1000925do_gen_all_hostkeys(struct passwd *pw)
926{
927 struct {
928 char *key_type;
929 char *key_type_display;
930 char *path;
931 } key_types[] = {
djm@openbsd.org5c27e3b2015-03-23 06:06:38 +0000932#ifdef WITH_OPENSSL
933#ifdef WITH_SSH1
Damien Miller58f1baf2011-05-05 14:06:15 +1000934 { "rsa1", "RSA1", _PATH_HOST_KEY_FILE },
djm@openbsd.org5c27e3b2015-03-23 06:06:38 +0000935#endif /* WITH_SSH1 */
Damien Miller58f1baf2011-05-05 14:06:15 +1000936 { "rsa", "RSA" ,_PATH_HOST_RSA_KEY_FILE },
937 { "dsa", "DSA", _PATH_HOST_DSA_KEY_FILE },
Damien Millerb56e4932012-02-06 07:41:27 +1100938#ifdef OPENSSL_HAS_ECC
Damien Miller58f1baf2011-05-05 14:06:15 +1000939 { "ecdsa", "ECDSA",_PATH_HOST_ECDSA_KEY_FILE },
djm@openbsd.org5c27e3b2015-03-23 06:06:38 +0000940#endif /* OPENSSL_HAS_ECC */
941#endif /* WITH_OPENSSL */
Damien Miller5be9d9e2013-12-07 11:24:01 +1100942 { "ed25519", "ED25519",_PATH_HOST_ED25519_KEY_FILE },
Damien Miller58f1baf2011-05-05 14:06:15 +1000943 { NULL, NULL, NULL }
944 };
945
946 int first = 0;
947 struct stat st;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000948 struct sshkey *private, *public;
Damien Miller58f1baf2011-05-05 14:06:15 +1000949 char comment[1024];
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000950 int i, type, fd, r;
Damien Miller58f1baf2011-05-05 14:06:15 +1000951 FILE *f;
952
953 for (i = 0; key_types[i].key_type; i++) {
954 if (stat(key_types[i].path, &st) == 0)
955 continue;
956 if (errno != ENOENT) {
djm@openbsd.org3038a192015-04-17 13:19:22 +0000957 error("Could not stat %s: %s", key_types[i].path,
Damien Miller58f1baf2011-05-05 14:06:15 +1000958 strerror(errno));
959 first = 0;
960 continue;
961 }
962
963 if (first == 0) {
964 first = 1;
965 printf("%s: generating new host keys: ", __progname);
966 }
967 printf("%s ", key_types[i].key_type_display);
968 fflush(stdout);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000969 type = sshkey_type_from_name(key_types[i].key_type);
Damien Miller58f1baf2011-05-05 14:06:15 +1000970 strlcpy(identity_file, key_types[i].path, sizeof(identity_file));
971 bits = 0;
djm@openbsd.org7efb4552015-01-18 13:22:28 +0000972 type_bits_valid(type, NULL, &bits);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000973 if ((r = sshkey_generate(type, bits, &private)) != 0) {
djm@openbsd.org3038a192015-04-17 13:19:22 +0000974 error("key_generate failed: %s", ssh_err(r));
Damien Miller58f1baf2011-05-05 14:06:15 +1000975 first = 0;
976 continue;
977 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000978 if ((r = sshkey_from_private(private, &public)) != 0)
979 fatal("sshkey_from_private failed: %s", ssh_err(r));
Damien Miller58f1baf2011-05-05 14:06:15 +1000980 snprintf(comment, sizeof comment, "%s@%s", pw->pw_name,
981 hostname);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000982 if ((r = sshkey_save_private(private, identity_file, "",
983 comment, use_new_format, new_format_cipher, rounds)) != 0) {
djm@openbsd.org3038a192015-04-17 13:19:22 +0000984 error("Saving key \"%s\" failed: %s",
985 identity_file, ssh_err(r));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000986 sshkey_free(private);
987 sshkey_free(public);
Damien Miller58f1baf2011-05-05 14:06:15 +1000988 first = 0;
989 continue;
990 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000991 sshkey_free(private);
Damien Miller58f1baf2011-05-05 14:06:15 +1000992 strlcat(identity_file, ".pub", sizeof(identity_file));
993 fd = open(identity_file, O_WRONLY | O_CREAT | O_TRUNC, 0644);
994 if (fd == -1) {
djm@openbsd.org3038a192015-04-17 13:19:22 +0000995 error("Could not save your public key in %s",
Damien Miller58f1baf2011-05-05 14:06:15 +1000996 identity_file);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000997 sshkey_free(public);
Damien Miller58f1baf2011-05-05 14:06:15 +1000998 first = 0;
999 continue;
1000 }
1001 f = fdopen(fd, "w");
1002 if (f == NULL) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00001003 error("fdopen %s failed", identity_file);
doug@openbsd.org7df88182014-08-21 01:08:52 +00001004 close(fd);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001005 sshkey_free(public);
Damien Miller58f1baf2011-05-05 14:06:15 +10001006 first = 0;
1007 continue;
1008 }
djm@openbsd.orgbb8b4422015-01-16 15:55:07 +00001009 if ((r = sshkey_write(public, f)) != 0) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00001010 error("write key failed: %s", ssh_err(r));
doug@openbsd.org7df88182014-08-21 01:08:52 +00001011 fclose(f);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001012 sshkey_free(public);
Damien Miller58f1baf2011-05-05 14:06:15 +10001013 first = 0;
1014 continue;
1015 }
1016 fprintf(f, " %s\n", comment);
1017 fclose(f);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001018 sshkey_free(public);
Damien Miller58f1baf2011-05-05 14:06:15 +10001019
1020 }
1021 if (first != 0)
1022 printf("\n");
1023}
1024
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001025struct known_hosts_ctx {
djm@openbsd.org2b3c3c72015-01-18 21:51:19 +00001026 const char *host; /* Hostname searched for in find/delete case */
1027 FILE *out; /* Output file, stdout for find_hosts case */
1028 int has_unhashed; /* When hashing, original had unhashed hosts */
1029 int found_key; /* For find/delete, host was found */
1030 int invalid; /* File contained invalid items; don't delete */
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001031};
1032
1033static int
1034known_hosts_hash(struct hostkey_foreach_line *l, void *_ctx)
Damien Miller4b42d7f2005-03-01 21:48:35 +11001035{
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001036 struct known_hosts_ctx *ctx = (struct known_hosts_ctx *)_ctx;
1037 char *hashed, *cp, *hosts, *ohosts;
1038 int has_wild = l->hosts && strcspn(l->hosts, "*?!") != strlen(l->hosts);
Darren Tucker0f7e9102008-06-08 12:54:29 +10001039
djm@openbsd.org6c5c9492015-02-16 22:08:57 +00001040 switch (l->status) {
1041 case HKF_STATUS_OK:
1042 case HKF_STATUS_MATCHED:
1043 /*
1044 * Don't hash hosts already already hashed, with wildcard
1045 * characters or a CA/revocation marker.
1046 */
1047 if ((l->match & HKF_MATCH_HOST_HASHED) != 0 ||
1048 has_wild || l->marker != MRK_NONE) {
1049 fprintf(ctx->out, "%s\n", l->line);
1050 if (has_wild && !find_host) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00001051 logit("%s:%ld: ignoring host name "
1052 "with wildcard: %.64s", l->path,
djm@openbsd.org6c5c9492015-02-16 22:08:57 +00001053 l->linenum, l->hosts);
1054 }
1055 return 0;
1056 }
1057 /*
1058 * Split any comma-separated hostnames from the host list,
1059 * hash and store separately.
1060 */
1061 ohosts = hosts = xstrdup(l->hosts);
1062 while ((cp = strsep(&hosts, ",")) != NULL && *cp != '\0') {
1063 if ((hashed = host_hash(cp, NULL, 0)) == NULL)
1064 fatal("hash_host failed");
1065 fprintf(ctx->out, "%s %s\n", hashed, l->rawkey);
1066 ctx->has_unhashed = 1;
1067 }
1068 free(ohosts);
1069 return 0;
1070 case HKF_STATUS_INVALID:
1071 /* Retain invalid lines, but mark file as invalid. */
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001072 ctx->invalid = 1;
djm@openbsd.org3038a192015-04-17 13:19:22 +00001073 logit("%s:%ld: invalid line", l->path, l->linenum);
djm@openbsd.org6c5c9492015-02-16 22:08:57 +00001074 /* FALLTHROUGH */
1075 default:
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001076 fprintf(ctx->out, "%s\n", l->line);
1077 return 0;
Darren Tucker0f7e9102008-06-08 12:54:29 +10001078 }
djm@openbsd.org6c5c9492015-02-16 22:08:57 +00001079 /* NOTREACHED */
1080 return -1;
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001081}
1082
1083static int
1084known_hosts_find_delete(struct hostkey_foreach_line *l, void *_ctx)
1085{
1086 struct known_hosts_ctx *ctx = (struct known_hosts_ctx *)_ctx;
djm@openbsd.org4739e8d2015-05-21 12:01:19 +00001087 enum sshkey_fp_rep rep;
1088 int fptype;
1089 char *fp;
1090
1091 fptype = print_bubblebabble ? SSH_DIGEST_SHA1 : fingerprint_hash;
1092 rep = print_bubblebabble ? SSH_FP_BUBBLEBABBLE : SSH_FP_DEFAULT;
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001093
djm@openbsd.org6c5c9492015-02-16 22:08:57 +00001094 if (l->status == HKF_STATUS_MATCHED) {
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001095 if (delete_host) {
1096 if (l->marker != MRK_NONE) {
1097 /* Don't remove CA and revocation lines */
1098 fprintf(ctx->out, "%s\n", l->line);
1099 } else {
1100 /*
1101 * Hostname matches and has no CA/revoke
1102 * marker, delete it by *not* writing the
1103 * line to ctx->out.
1104 */
1105 ctx->found_key = 1;
1106 if (!quiet)
1107 printf("# Host %s found: line %ld\n",
1108 ctx->host, l->linenum);
1109 }
1110 return 0;
1111 } else if (find_host) {
1112 ctx->found_key = 1;
1113 if (!quiet) {
1114 printf("# Host %s found: line %ld %s\n",
1115 ctx->host,
1116 l->linenum, l->marker == MRK_CA ? "CA" :
1117 (l->marker == MRK_REVOKE ? "REVOKED" : ""));
1118 }
1119 if (hash_hosts)
1120 known_hosts_hash(l, ctx);
djm@openbsd.org4739e8d2015-05-21 12:01:19 +00001121 else if (print_fingerprint) {
1122 fp = sshkey_fingerprint(l->key, fptype, rep);
1123 printf("%s %s %s %s\n", ctx->host,
1124 sshkey_type(l->key), fp, l->comment);
1125 free(fp);
1126 } else
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001127 fprintf(ctx->out, "%s\n", l->line);
1128 return 0;
1129 }
1130 } else if (delete_host) {
1131 /* Retain non-matching hosts when deleting */
1132 if (l->status == HKF_STATUS_INVALID) {
1133 ctx->invalid = 1;
djm@openbsd.org3038a192015-04-17 13:19:22 +00001134 logit("%s:%ld: invalid line", l->path, l->linenum);
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001135 }
1136 fprintf(ctx->out, "%s\n", l->line);
1137 }
1138 return 0;
Damien Miller4b42d7f2005-03-01 21:48:35 +11001139}
1140
1141static void
1142do_known_hosts(struct passwd *pw, const char *name)
1143{
deraadt@openbsd.orgd2099de2015-01-19 00:32:54 +00001144 char *cp, tmp[PATH_MAX], old[PATH_MAX];
djm@openbsd.org2b3c3c72015-01-18 21:51:19 +00001145 int r, fd, oerrno, inplace = 0;
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001146 struct known_hosts_ctx ctx;
djm@openbsd.org4739e8d2015-05-21 12:01:19 +00001147 u_int foreach_options;
Damien Miller4b42d7f2005-03-01 21:48:35 +11001148
1149 if (!have_identity) {
1150 cp = tilde_expand_filename(_PATH_SSH_USER_HOSTFILE, pw->pw_uid);
1151 if (strlcpy(identity_file, cp, sizeof(identity_file)) >=
1152 sizeof(identity_file))
1153 fatal("Specified known hosts path too long");
Darren Tuckera627d422013-06-02 07:31:17 +10001154 free(cp);
Damien Miller4b42d7f2005-03-01 21:48:35 +11001155 have_identity = 1;
1156 }
Damien Miller4b42d7f2005-03-01 21:48:35 +11001157
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001158 memset(&ctx, 0, sizeof(ctx));
1159 ctx.out = stdout;
1160 ctx.host = name;
1161
Damien Miller4b42d7f2005-03-01 21:48:35 +11001162 /*
1163 * Find hosts goes to stdout, hash and deletions happen in-place
1164 * A corner case is ssh-keygen -HF foo, which should go to stdout
1165 */
1166 if (!find_host && (hash_hosts || delete_host)) {
1167 if (strlcpy(tmp, identity_file, sizeof(tmp)) >= sizeof(tmp) ||
1168 strlcat(tmp, ".XXXXXXXXXX", sizeof(tmp)) >= sizeof(tmp) ||
1169 strlcpy(old, identity_file, sizeof(old)) >= sizeof(old) ||
1170 strlcat(old, ".old", sizeof(old)) >= sizeof(old))
1171 fatal("known_hosts path too long");
1172 umask(077);
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001173 if ((fd = mkstemp(tmp)) == -1)
Damien Miller4b42d7f2005-03-01 21:48:35 +11001174 fatal("mkstemp: %s", strerror(errno));
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001175 if ((ctx.out = fdopen(fd, "w")) == NULL) {
1176 oerrno = errno;
Damien Miller4b42d7f2005-03-01 21:48:35 +11001177 unlink(tmp);
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001178 fatal("fdopen: %s", strerror(oerrno));
Damien Miller4b42d7f2005-03-01 21:48:35 +11001179 }
djm@openbsd.org2b3c3c72015-01-18 21:51:19 +00001180 inplace = 1;
Damien Miller4b42d7f2005-03-01 21:48:35 +11001181 }
1182
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001183 /* XXX support identity_file == "-" for stdin */
djm@openbsd.org4739e8d2015-05-21 12:01:19 +00001184 foreach_options = find_host ? HKF_WANT_MATCH : 0;
1185 foreach_options |= print_fingerprint ? HKF_WANT_PARSE_KEY : 0;
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001186 if ((r = hostkeys_foreach(identity_file,
1187 hash_hosts ? known_hosts_hash : known_hosts_find_delete, &ctx,
djm@openbsd.org4739e8d2015-05-21 12:01:19 +00001188 name, NULL, foreach_options)) != 0)
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001189 fatal("%s: hostkeys_foreach failed: %s", __func__, ssh_err(r));
Damien Miller4b42d7f2005-03-01 21:48:35 +11001190
djm@openbsd.org2b3c3c72015-01-18 21:51:19 +00001191 if (inplace)
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001192 fclose(ctx.out);
Damien Miller0a80ca12010-02-27 07:55:05 +11001193
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001194 if (ctx.invalid) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00001195 error("%s is not a valid known_hosts file.", identity_file);
djm@openbsd.org2b3c3c72015-01-18 21:51:19 +00001196 if (inplace) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00001197 error("Not replacing existing known_hosts "
1198 "file because of errors");
Damien Miller4b42d7f2005-03-01 21:48:35 +11001199 unlink(tmp);
1200 }
1201 exit(1);
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001202 } else if (delete_host && !ctx.found_key) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00001203 logit("Host %s not found in %s", name, identity_file);
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001204 unlink(tmp);
djm@openbsd.org2b3c3c72015-01-18 21:51:19 +00001205 } else if (inplace) {
Damien Miller4b42d7f2005-03-01 21:48:35 +11001206 /* Backup existing file */
1207 if (unlink(old) == -1 && errno != ENOENT)
1208 fatal("unlink %.100s: %s", old, strerror(errno));
1209 if (link(identity_file, old) == -1)
1210 fatal("link %.100s to %.100s: %s", identity_file, old,
1211 strerror(errno));
1212 /* Move new one into place */
1213 if (rename(tmp, identity_file) == -1) {
1214 error("rename\"%s\" to \"%s\": %s", tmp, identity_file,
1215 strerror(errno));
1216 unlink(tmp);
1217 unlink(old);
1218 exit(1);
1219 }
1220
djm@openbsd.org3038a192015-04-17 13:19:22 +00001221 printf("%s updated.\n", identity_file);
1222 printf("Original contents retained as %s\n", old);
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001223 if (ctx.has_unhashed) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00001224 logit("WARNING: %s contains unhashed entries", old);
1225 logit("Delete this file to ensure privacy "
1226 "of hostnames");
Damien Miller4b42d7f2005-03-01 21:48:35 +11001227 }
1228 }
1229
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001230 exit (find_host && !ctx.found_key);
Damien Miller4b42d7f2005-03-01 21:48:35 +11001231}
1232
Damien Miller95def091999-11-25 00:26:21 +11001233/*
1234 * Perform changing a passphrase. The argument is the passwd structure
1235 * for the current user.
1236 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001237static void
Damien Miller10f6f6b1999-11-17 17:29:08 +11001238do_change_passphrase(struct passwd *pw)
1239{
Damien Miller95def091999-11-25 00:26:21 +11001240 char *comment;
1241 char *old_passphrase, *passphrase1, *passphrase2;
1242 struct stat st;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001243 struct sshkey *private;
1244 int r;
Damien Miller10f6f6b1999-11-17 17:29:08 +11001245
Damien Miller95def091999-11-25 00:26:21 +11001246 if (!have_identity)
1247 ask_filename(pw, "Enter file in which the key is");
djm@openbsd.org3038a192015-04-17 13:19:22 +00001248 if (stat(identity_file, &st) < 0)
1249 fatal("%s: %s", identity_file, strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +11001250 /* Try to load the file with empty passphrase. */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001251 r = sshkey_load_private(identity_file, "", &private, &comment);
1252 if (r == SSH_ERR_KEY_WRONG_PASSPHRASE) {
Damien Miller95def091999-11-25 00:26:21 +11001253 if (identity_passphrase)
1254 old_passphrase = xstrdup(identity_passphrase);
1255 else
Ben Lindstrom949974b2001-06-25 05:20:31 +00001256 old_passphrase =
1257 read_passphrase("Enter old passphrase: ",
1258 RP_ALLOW_STDIN);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001259 r = sshkey_load_private(identity_file, old_passphrase,
1260 &private, &comment);
Damien Millera5103f42014-02-04 11:20:14 +11001261 explicit_bzero(old_passphrase, strlen(old_passphrase));
Darren Tuckera627d422013-06-02 07:31:17 +10001262 free(old_passphrase);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001263 if (r != 0)
1264 goto badkey;
1265 } else if (r != 0) {
1266 badkey:
djm@openbsd.org3038a192015-04-17 13:19:22 +00001267 fatal("Failed to load key %s: %s", identity_file, ssh_err(r));
Damien Miller95def091999-11-25 00:26:21 +11001268 }
djm@openbsd.orgf43d1722015-02-26 20:45:47 +00001269 if (comment)
1270 printf("Key has comment '%s'\n", comment);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001271
Damien Miller95def091999-11-25 00:26:21 +11001272 /* Ask the new passphrase (twice). */
1273 if (identity_new_passphrase) {
1274 passphrase1 = xstrdup(identity_new_passphrase);
1275 passphrase2 = NULL;
1276 } else {
1277 passphrase1 =
Ben Lindstrom949974b2001-06-25 05:20:31 +00001278 read_passphrase("Enter new passphrase (empty for no "
1279 "passphrase): ", RP_ALLOW_STDIN);
1280 passphrase2 = read_passphrase("Enter same passphrase again: ",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001281 RP_ALLOW_STDIN);
Damien Miller95def091999-11-25 00:26:21 +11001282
1283 /* Verify that they are the same. */
1284 if (strcmp(passphrase1, passphrase2) != 0) {
Damien Millera5103f42014-02-04 11:20:14 +11001285 explicit_bzero(passphrase1, strlen(passphrase1));
1286 explicit_bzero(passphrase2, strlen(passphrase2));
Darren Tuckera627d422013-06-02 07:31:17 +10001287 free(passphrase1);
1288 free(passphrase2);
Damien Miller95def091999-11-25 00:26:21 +11001289 printf("Pass phrases do not match. Try again.\n");
1290 exit(1);
1291 }
1292 /* Destroy the other copy. */
Damien Millera5103f42014-02-04 11:20:14 +11001293 explicit_bzero(passphrase2, strlen(passphrase2));
Darren Tuckera627d422013-06-02 07:31:17 +10001294 free(passphrase2);
Damien Miller95def091999-11-25 00:26:21 +11001295 }
1296
1297 /* Save the file using the new passphrase. */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001298 if ((r = sshkey_save_private(private, identity_file, passphrase1,
1299 comment, use_new_format, new_format_cipher, rounds)) != 0) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00001300 error("Saving key \"%s\" failed: %s.",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001301 identity_file, ssh_err(r));
Damien Millera5103f42014-02-04 11:20:14 +11001302 explicit_bzero(passphrase1, strlen(passphrase1));
Darren Tuckera627d422013-06-02 07:31:17 +10001303 free(passphrase1);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001304 sshkey_free(private);
Darren Tuckera627d422013-06-02 07:31:17 +10001305 free(comment);
Damien Miller95def091999-11-25 00:26:21 +11001306 exit(1);
1307 }
1308 /* Destroy the passphrase and the copy of the key in memory. */
Damien Millera5103f42014-02-04 11:20:14 +11001309 explicit_bzero(passphrase1, strlen(passphrase1));
Darren Tuckera627d422013-06-02 07:31:17 +10001310 free(passphrase1);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001311 sshkey_free(private); /* Destroys contents */
Darren Tuckera627d422013-06-02 07:31:17 +10001312 free(comment);
Damien Miller95def091999-11-25 00:26:21 +11001313
1314 printf("Your identification has been saved with the new passphrase.\n");
1315 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001316}
1317
Damien Miller37876e92003-05-15 10:19:46 +10001318/*
1319 * Print the SSHFP RR.
1320 */
Damien Millercb314822006-03-26 13:48:01 +11001321static int
1322do_print_resource_record(struct passwd *pw, char *fname, char *hname)
Damien Miller37876e92003-05-15 10:19:46 +10001323{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001324 struct sshkey *public;
Damien Miller37876e92003-05-15 10:19:46 +10001325 char *comment = NULL;
1326 struct stat st;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001327 int r;
Damien Miller37876e92003-05-15 10:19:46 +10001328
Damien Millercb314822006-03-26 13:48:01 +11001329 if (fname == NULL)
Damien Miller5bb88332013-07-18 16:13:37 +10001330 fatal("%s: no filename", __func__);
Damien Millercb314822006-03-26 13:48:01 +11001331 if (stat(fname, &st) < 0) {
1332 if (errno == ENOENT)
1333 return 0;
djm@openbsd.org3038a192015-04-17 13:19:22 +00001334 fatal("%s: %s", fname, strerror(errno));
Damien Miller37876e92003-05-15 10:19:46 +10001335 }
djm@openbsd.org3038a192015-04-17 13:19:22 +00001336 if ((r = sshkey_load_public(fname, &public, &comment)) != 0)
1337 fatal("Failed to read v2 public key from \"%s\": %s.",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001338 fname, ssh_err(r));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001339 export_dns_rr(hname, public, stdout, print_generic);
1340 sshkey_free(public);
1341 free(comment);
1342 return 1;
Damien Miller37876e92003-05-15 10:19:46 +10001343}
Damien Miller37876e92003-05-15 10:19:46 +10001344
Damien Miller95def091999-11-25 00:26:21 +11001345/*
1346 * Change the comment of a private key file.
1347 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001348static void
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001349do_change_comment(struct passwd *pw)
1350{
Ben Lindstrom5fc62702001-03-09 18:19:24 +00001351 char new_comment[1024], *comment, *passphrase;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001352 struct sshkey *private;
1353 struct sshkey *public;
Damien Miller95def091999-11-25 00:26:21 +11001354 struct stat st;
1355 FILE *f;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001356 int r, fd;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001357
Damien Miller95def091999-11-25 00:26:21 +11001358 if (!have_identity)
1359 ask_filename(pw, "Enter file in which the key is");
djm@openbsd.org3038a192015-04-17 13:19:22 +00001360 if (stat(identity_file, &st) < 0)
1361 fatal("%s: %s", identity_file, strerror(errno));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001362 if ((r = sshkey_load_private(identity_file, "",
1363 &private, &comment)) == 0)
1364 passphrase = xstrdup("");
djm@openbsd.org3038a192015-04-17 13:19:22 +00001365 else if (r != SSH_ERR_KEY_WRONG_PASSPHRASE)
1366 fatal("Cannot load private key \"%s\": %s.",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001367 identity_file, ssh_err(r));
djm@openbsd.org3038a192015-04-17 13:19:22 +00001368 else {
Damien Miller95def091999-11-25 00:26:21 +11001369 if (identity_passphrase)
1370 passphrase = xstrdup(identity_passphrase);
1371 else if (identity_new_passphrase)
1372 passphrase = xstrdup(identity_new_passphrase);
1373 else
Ben Lindstrom949974b2001-06-25 05:20:31 +00001374 passphrase = read_passphrase("Enter passphrase: ",
1375 RP_ALLOW_STDIN);
Damien Miller95def091999-11-25 00:26:21 +11001376 /* Try to load using the passphrase. */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001377 if ((r = sshkey_load_private(identity_file, passphrase,
1378 &private, &comment)) != 0) {
Damien Millera5103f42014-02-04 11:20:14 +11001379 explicit_bzero(passphrase, strlen(passphrase));
Darren Tuckera627d422013-06-02 07:31:17 +10001380 free(passphrase);
djm@openbsd.org3038a192015-04-17 13:19:22 +00001381 fatal("Cannot load private key \"%s\": %s.",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001382 identity_file, ssh_err(r));
Damien Miller95def091999-11-25 00:26:21 +11001383 }
1384 }
djm@openbsd.org3038a192015-04-17 13:19:22 +00001385 /* XXX what about new-format keys? */
Ben Lindstromd0fca422001-03-26 13:44:06 +00001386 if (private->type != KEY_RSA1) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00001387 error("Comments are only supported for RSA1 keys.");
tobias@openbsd.org704d8c82015-03-31 11:06:49 +00001388 explicit_bzero(passphrase, strlen(passphrase));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001389 sshkey_free(private);
Ben Lindstromd0fca422001-03-26 13:44:06 +00001390 exit(1);
Damien Miller9f0f5c62001-12-21 14:45:46 +11001391 }
Damien Miller95def091999-11-25 00:26:21 +11001392 printf("Key now has comment '%s'\n", comment);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001393
Damien Miller95def091999-11-25 00:26:21 +11001394 if (identity_comment) {
1395 strlcpy(new_comment, identity_comment, sizeof(new_comment));
1396 } else {
1397 printf("Enter new comment: ");
1398 fflush(stdout);
1399 if (!fgets(new_comment, sizeof(new_comment), stdin)) {
Damien Millera5103f42014-02-04 11:20:14 +11001400 explicit_bzero(passphrase, strlen(passphrase));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001401 sshkey_free(private);
Damien Miller95def091999-11-25 00:26:21 +11001402 exit(1);
1403 }
Damien Miller14b017d2007-09-17 16:09:15 +10001404 new_comment[strcspn(new_comment, "\n")] = '\0';
Damien Miller95def091999-11-25 00:26:21 +11001405 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001406
Damien Miller95def091999-11-25 00:26:21 +11001407 /* Save the file using the new passphrase. */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001408 if ((r = sshkey_save_private(private, identity_file, passphrase,
1409 new_comment, use_new_format, new_format_cipher, rounds)) != 0) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00001410 error("Saving key \"%s\" failed: %s",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001411 identity_file, ssh_err(r));
Damien Millera5103f42014-02-04 11:20:14 +11001412 explicit_bzero(passphrase, strlen(passphrase));
Darren Tuckera627d422013-06-02 07:31:17 +10001413 free(passphrase);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001414 sshkey_free(private);
Darren Tuckera627d422013-06-02 07:31:17 +10001415 free(comment);
Damien Miller95def091999-11-25 00:26:21 +11001416 exit(1);
1417 }
Damien Millera5103f42014-02-04 11:20:14 +11001418 explicit_bzero(passphrase, strlen(passphrase));
Darren Tuckera627d422013-06-02 07:31:17 +10001419 free(passphrase);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001420 if ((r = sshkey_from_private(private, &public)) != 0)
1421 fatal("key_from_private failed: %s", ssh_err(r));
1422 sshkey_free(private);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001423
Damien Miller95def091999-11-25 00:26:21 +11001424 strlcat(identity_file, ".pub", sizeof(identity_file));
Ben Lindstrom5fc62702001-03-09 18:19:24 +00001425 fd = open(identity_file, O_WRONLY | O_CREAT | O_TRUNC, 0644);
djm@openbsd.org3038a192015-04-17 13:19:22 +00001426 if (fd == -1)
1427 fatal("Could not save your public key in %s", identity_file);
Ben Lindstrom5fc62702001-03-09 18:19:24 +00001428 f = fdopen(fd, "w");
djm@openbsd.org3038a192015-04-17 13:19:22 +00001429 if (f == NULL)
1430 fatal("fdopen %s failed: %s", identity_file, strerror(errno));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001431 if ((r = sshkey_write(public, f)) != 0)
djm@openbsd.org3038a192015-04-17 13:19:22 +00001432 fatal("write key failed: %s", ssh_err(r));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001433 sshkey_free(public);
Damien Millereba71ba2000-04-29 23:57:08 +10001434 fprintf(f, " %s\n", new_comment);
Damien Miller95def091999-11-25 00:26:21 +11001435 fclose(f);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001436
Darren Tuckera627d422013-06-02 07:31:17 +10001437 free(comment);
Damien Miller95def091999-11-25 00:26:21 +11001438
1439 printf("The comment in your key file has been changed.\n");
1440 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001441}
1442
Damien Miller0a80ca12010-02-27 07:55:05 +11001443static const char *
Damien Millerf2b70ca2010-03-05 07:39:35 +11001444fmt_validity(u_int64_t valid_from, u_int64_t valid_to)
Damien Miller0a80ca12010-02-27 07:55:05 +11001445{
1446 char from[32], to[32];
1447 static char ret[64];
1448 time_t tt;
1449 struct tm *tm;
1450
1451 *from = *to = '\0';
Damien Millerf2b70ca2010-03-05 07:39:35 +11001452 if (valid_from == 0 && valid_to == 0xffffffffffffffffULL)
Damien Miller0a80ca12010-02-27 07:55:05 +11001453 return "forever";
1454
Damien Millerf2b70ca2010-03-05 07:39:35 +11001455 if (valid_from != 0) {
Damien Miller0a80ca12010-02-27 07:55:05 +11001456 /* XXX revisit INT_MAX in 2038 :) */
Damien Millerf2b70ca2010-03-05 07:39:35 +11001457 tt = valid_from > INT_MAX ? INT_MAX : valid_from;
Damien Miller0a80ca12010-02-27 07:55:05 +11001458 tm = localtime(&tt);
1459 strftime(from, sizeof(from), "%Y-%m-%dT%H:%M:%S", tm);
1460 }
Damien Millerf2b70ca2010-03-05 07:39:35 +11001461 if (valid_to != 0xffffffffffffffffULL) {
Damien Miller0a80ca12010-02-27 07:55:05 +11001462 /* XXX revisit INT_MAX in 2038 :) */
Damien Millerf2b70ca2010-03-05 07:39:35 +11001463 tt = valid_to > INT_MAX ? INT_MAX : valid_to;
Damien Miller0a80ca12010-02-27 07:55:05 +11001464 tm = localtime(&tt);
1465 strftime(to, sizeof(to), "%Y-%m-%dT%H:%M:%S", tm);
1466 }
1467
Damien Millerf2b70ca2010-03-05 07:39:35 +11001468 if (valid_from == 0) {
Damien Miller0a80ca12010-02-27 07:55:05 +11001469 snprintf(ret, sizeof(ret), "before %s", to);
1470 return ret;
1471 }
Damien Millerf2b70ca2010-03-05 07:39:35 +11001472 if (valid_to == 0xffffffffffffffffULL) {
Damien Miller0a80ca12010-02-27 07:55:05 +11001473 snprintf(ret, sizeof(ret), "after %s", from);
1474 return ret;
1475 }
1476
1477 snprintf(ret, sizeof(ret), "from %s to %s", from, to);
1478 return ret;
1479}
1480
1481static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001482add_flag_option(struct sshbuf *c, const char *name)
Damien Miller0a80ca12010-02-27 07:55:05 +11001483{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001484 int r;
1485
Damien Miller0a80ca12010-02-27 07:55:05 +11001486 debug3("%s: %s", __func__, name);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001487 if ((r = sshbuf_put_cstring(c, name)) != 0 ||
1488 (r = sshbuf_put_string(c, NULL, 0)) != 0)
1489 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Miller0a80ca12010-02-27 07:55:05 +11001490}
1491
1492static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001493add_string_option(struct sshbuf *c, const char *name, const char *value)
Damien Miller0a80ca12010-02-27 07:55:05 +11001494{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001495 struct sshbuf *b;
1496 int r;
Damien Miller0a80ca12010-02-27 07:55:05 +11001497
1498 debug3("%s: %s=%s", __func__, name, value);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001499 if ((b = sshbuf_new()) == NULL)
1500 fatal("%s: sshbuf_new failed", __func__);
1501 if ((r = sshbuf_put_cstring(b, value)) != 0 ||
1502 (r = sshbuf_put_cstring(c, name)) != 0 ||
1503 (r = sshbuf_put_stringb(c, b)) != 0)
1504 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Miller0a80ca12010-02-27 07:55:05 +11001505
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001506 sshbuf_free(b);
Damien Miller0a80ca12010-02-27 07:55:05 +11001507}
1508
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001509#define OPTIONS_CRITICAL 1
1510#define OPTIONS_EXTENSIONS 2
Damien Miller0a80ca12010-02-27 07:55:05 +11001511static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001512prepare_options_buf(struct sshbuf *c, int which)
Damien Miller0a80ca12010-02-27 07:55:05 +11001513{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001514 sshbuf_reset(c);
Damien Miller1da63882010-08-05 13:03:51 +10001515 if ((which & OPTIONS_CRITICAL) != 0 &&
1516 certflags_command != NULL)
1517 add_string_option(c, "force-command", certflags_command);
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001518 if ((which & OPTIONS_EXTENSIONS) != 0 &&
Damien Miller2ce12ef2011-05-05 14:17:18 +10001519 (certflags_flags & CERTOPT_X_FWD) != 0)
1520 add_flag_option(c, "permit-X11-forwarding");
1521 if ((which & OPTIONS_EXTENSIONS) != 0 &&
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001522 (certflags_flags & CERTOPT_AGENT_FWD) != 0)
Damien Miller4e270b02010-04-16 15:56:21 +10001523 add_flag_option(c, "permit-agent-forwarding");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001524 if ((which & OPTIONS_EXTENSIONS) != 0 &&
1525 (certflags_flags & CERTOPT_PORT_FWD) != 0)
Damien Miller4e270b02010-04-16 15:56:21 +10001526 add_flag_option(c, "permit-port-forwarding");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001527 if ((which & OPTIONS_EXTENSIONS) != 0 &&
1528 (certflags_flags & CERTOPT_PTY) != 0)
Damien Miller4e270b02010-04-16 15:56:21 +10001529 add_flag_option(c, "permit-pty");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001530 if ((which & OPTIONS_EXTENSIONS) != 0 &&
1531 (certflags_flags & CERTOPT_USER_RC) != 0)
Damien Miller4e270b02010-04-16 15:56:21 +10001532 add_flag_option(c, "permit-user-rc");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001533 if ((which & OPTIONS_CRITICAL) != 0 &&
1534 certflags_src_addr != NULL)
1535 add_string_option(c, "source-address", certflags_src_addr);
Damien Miller0a80ca12010-02-27 07:55:05 +11001536}
1537
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001538static struct sshkey *
Damien Miller757f34e2010-08-05 13:05:31 +10001539load_pkcs11_key(char *path)
1540{
1541#ifdef ENABLE_PKCS11
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001542 struct sshkey **keys = NULL, *public, *private = NULL;
1543 int r, i, nkeys;
Damien Miller757f34e2010-08-05 13:05:31 +10001544
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001545 if ((r = sshkey_load_public(path, &public, NULL)) != 0)
1546 fatal("Couldn't load CA public key \"%s\": %s",
1547 path, ssh_err(r));
Damien Miller757f34e2010-08-05 13:05:31 +10001548
1549 nkeys = pkcs11_add_provider(pkcs11provider, identity_passphrase, &keys);
1550 debug3("%s: %d keys", __func__, nkeys);
1551 if (nkeys <= 0)
1552 fatal("cannot read public key from pkcs11");
1553 for (i = 0; i < nkeys; i++) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001554 if (sshkey_equal_public(public, keys[i])) {
Damien Miller757f34e2010-08-05 13:05:31 +10001555 private = keys[i];
1556 continue;
1557 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001558 sshkey_free(keys[i]);
Damien Miller757f34e2010-08-05 13:05:31 +10001559 }
Darren Tuckera627d422013-06-02 07:31:17 +10001560 free(keys);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001561 sshkey_free(public);
Damien Miller757f34e2010-08-05 13:05:31 +10001562 return private;
1563#else
1564 fatal("no pkcs11 support");
1565#endif /* ENABLE_PKCS11 */
1566}
1567
Damien Miller0a80ca12010-02-27 07:55:05 +11001568static void
1569do_ca_sign(struct passwd *pw, int argc, char **argv)
1570{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001571 int r, i, fd;
Damien Miller0a80ca12010-02-27 07:55:05 +11001572 u_int n;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001573 struct sshkey *ca, *public;
Damien Miller0a80ca12010-02-27 07:55:05 +11001574 char *otmp, *tmp, *cp, *out, *comment, **plist = NULL;
1575 FILE *f;
Damien Miller4e270b02010-04-16 15:56:21 +10001576 int v00 = 0; /* legacy keys */
Damien Miller0a80ca12010-02-27 07:55:05 +11001577
Damien Miller4e270b02010-04-16 15:56:21 +10001578 if (key_type_name != NULL) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001579 switch (sshkey_type_from_name(key_type_name)) {
Damien Miller4e270b02010-04-16 15:56:21 +10001580 case KEY_RSA_CERT_V00:
1581 case KEY_DSA_CERT_V00:
1582 v00 = 1;
1583 break;
1584 case KEY_UNSPEC:
1585 if (strcasecmp(key_type_name, "v00") == 0) {
1586 v00 = 1;
1587 break;
1588 } else if (strcasecmp(key_type_name, "v01") == 0)
1589 break;
1590 /* FALLTHROUGH */
1591 default:
djm@openbsd.org3038a192015-04-17 13:19:22 +00001592 fatal("unknown key type %s", key_type_name);
Damien Miller4e270b02010-04-16 15:56:21 +10001593 }
1594 }
1595
Damien Miller1f0311c2014-05-15 14:24:09 +10001596#ifdef ENABLE_PKCS11
Damien Miller757f34e2010-08-05 13:05:31 +10001597 pkcs11_init(1);
Damien Miller1f0311c2014-05-15 14:24:09 +10001598#endif
Damien Miller757f34e2010-08-05 13:05:31 +10001599 tmp = tilde_expand_filename(ca_key_path, pw->pw_uid);
1600 if (pkcs11provider != NULL) {
1601 if ((ca = load_pkcs11_key(tmp)) == NULL)
1602 fatal("No PKCS#11 key matching %s found", ca_key_path);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001603 } else
1604 ca = load_identity(tmp);
Darren Tuckera627d422013-06-02 07:31:17 +10001605 free(tmp);
Damien Miller757f34e2010-08-05 13:05:31 +10001606
Damien Miller0a80ca12010-02-27 07:55:05 +11001607 for (i = 0; i < argc; i++) {
1608 /* Split list of principals */
1609 n = 0;
1610 if (cert_principals != NULL) {
1611 otmp = tmp = xstrdup(cert_principals);
1612 plist = NULL;
1613 for (; (cp = strsep(&tmp, ",")) != NULL; n++) {
deraadt@openbsd.org657a5fb2015-04-24 01:36:00 +00001614 plist = xreallocarray(plist, n + 1, sizeof(*plist));
Damien Miller0a80ca12010-02-27 07:55:05 +11001615 if (*(plist[n] = xstrdup(cp)) == '\0')
1616 fatal("Empty principal name");
1617 }
Darren Tuckera627d422013-06-02 07:31:17 +10001618 free(otmp);
Damien Miller0a80ca12010-02-27 07:55:05 +11001619 }
1620
1621 tmp = tilde_expand_filename(argv[i], pw->pw_uid);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001622 if ((r = sshkey_load_public(tmp, &public, &comment)) != 0)
1623 fatal("%s: unable to open \"%s\": %s",
1624 __func__, tmp, ssh_err(r));
Damien Millereb8b60e2010-08-31 22:41:14 +10001625 if (public->type != KEY_RSA && public->type != KEY_DSA &&
Damien Miller5be9d9e2013-12-07 11:24:01 +11001626 public->type != KEY_ECDSA && public->type != KEY_ED25519)
Damien Miller0a80ca12010-02-27 07:55:05 +11001627 fatal("%s: key \"%s\" type %s cannot be certified",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001628 __func__, tmp, sshkey_type(public));
Damien Miller0a80ca12010-02-27 07:55:05 +11001629
1630 /* Prepare certificate to sign */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001631 if ((r = sshkey_to_certified(public, v00)) != 0)
1632 fatal("Could not upgrade key %s to certificate: %s",
1633 tmp, ssh_err(r));
Damien Miller0a80ca12010-02-27 07:55:05 +11001634 public->cert->type = cert_key_type;
Damien Miller4e270b02010-04-16 15:56:21 +10001635 public->cert->serial = (u_int64_t)cert_serial;
Damien Miller0a80ca12010-02-27 07:55:05 +11001636 public->cert->key_id = xstrdup(cert_key_id);
1637 public->cert->nprincipals = n;
1638 public->cert->principals = plist;
1639 public->cert->valid_after = cert_valid_from;
1640 public->cert->valid_before = cert_valid_to;
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001641 if (v00) {
Damien Miller86687062014-07-02 15:28:02 +10001642 prepare_options_buf(public->cert->critical,
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001643 OPTIONS_CRITICAL|OPTIONS_EXTENSIONS);
1644 } else {
Damien Miller86687062014-07-02 15:28:02 +10001645 prepare_options_buf(public->cert->critical,
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001646 OPTIONS_CRITICAL);
Damien Miller86687062014-07-02 15:28:02 +10001647 prepare_options_buf(public->cert->extensions,
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001648 OPTIONS_EXTENSIONS);
1649 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001650 if ((r = sshkey_from_private(ca,
1651 &public->cert->signature_key)) != 0)
1652 fatal("key_from_private (ca key): %s", ssh_err(r));
Damien Miller0a80ca12010-02-27 07:55:05 +11001653
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001654 if (sshkey_certify(public, ca) != 0)
Damien Miller0a80ca12010-02-27 07:55:05 +11001655 fatal("Couldn't not certify key %s", tmp);
1656
1657 if ((cp = strrchr(tmp, '.')) != NULL && strcmp(cp, ".pub") == 0)
1658 *cp = '\0';
1659 xasprintf(&out, "%s-cert.pub", tmp);
Darren Tuckera627d422013-06-02 07:31:17 +10001660 free(tmp);
Damien Miller0a80ca12010-02-27 07:55:05 +11001661
1662 if ((fd = open(out, O_WRONLY|O_CREAT|O_TRUNC, 0644)) == -1)
1663 fatal("Could not open \"%s\" for writing: %s", out,
1664 strerror(errno));
1665 if ((f = fdopen(fd, "w")) == NULL)
1666 fatal("%s: fdopen: %s", __func__, strerror(errno));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001667 if ((r = sshkey_write(public, f)) != 0)
1668 fatal("Could not write certified key to %s: %s",
1669 out, ssh_err(r));
Damien Miller0a80ca12010-02-27 07:55:05 +11001670 fprintf(f, " %s\n", comment);
1671 fclose(f);
1672
Damien Miller4e270b02010-04-16 15:56:21 +10001673 if (!quiet) {
1674 logit("Signed %s key %s: id \"%s\" serial %llu%s%s "
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001675 "valid %s", sshkey_cert_type(public),
Damien Miller821de0a2011-01-11 17:20:29 +11001676 out, public->cert->key_id,
1677 (unsigned long long)public->cert->serial,
Damien Miller0a80ca12010-02-27 07:55:05 +11001678 cert_principals != NULL ? " for " : "",
1679 cert_principals != NULL ? cert_principals : "",
Damien Millerf2b70ca2010-03-05 07:39:35 +11001680 fmt_validity(cert_valid_from, cert_valid_to));
Damien Miller4e270b02010-04-16 15:56:21 +10001681 }
Damien Miller0a80ca12010-02-27 07:55:05 +11001682
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001683 sshkey_free(public);
Darren Tuckera627d422013-06-02 07:31:17 +10001684 free(out);
Damien Miller0a80ca12010-02-27 07:55:05 +11001685 }
Damien Miller1f0311c2014-05-15 14:24:09 +10001686#ifdef ENABLE_PKCS11
Damien Miller757f34e2010-08-05 13:05:31 +10001687 pkcs11_terminate();
Damien Miller1f0311c2014-05-15 14:24:09 +10001688#endif
Damien Miller0a80ca12010-02-27 07:55:05 +11001689 exit(0);
1690}
1691
1692static u_int64_t
1693parse_relative_time(const char *s, time_t now)
1694{
1695 int64_t mul, secs;
1696
1697 mul = *s == '-' ? -1 : 1;
1698
1699 if ((secs = convtime(s + 1)) == -1)
1700 fatal("Invalid relative certificate time %s", s);
1701 if (mul == -1 && secs > now)
1702 fatal("Certificate time %s cannot be represented", s);
1703 return now + (u_int64_t)(secs * mul);
1704}
1705
1706static u_int64_t
1707parse_absolute_time(const char *s)
1708{
1709 struct tm tm;
1710 time_t tt;
Damien Miller2ca342b2010-03-03 12:14:15 +11001711 char buf[32], *fmt;
Damien Miller0a80ca12010-02-27 07:55:05 +11001712
Damien Miller2ca342b2010-03-03 12:14:15 +11001713 /*
1714 * POSIX strptime says "The application shall ensure that there
1715 * is white-space or other non-alphanumeric characters between
1716 * any two conversion specifications" so arrange things this way.
1717 */
1718 switch (strlen(s)) {
1719 case 8:
Damien Miller3e1ee492010-03-08 09:24:11 +11001720 fmt = "%Y-%m-%d";
1721 snprintf(buf, sizeof(buf), "%.4s-%.2s-%.2s", s, s + 4, s + 6);
Damien Miller2ca342b2010-03-03 12:14:15 +11001722 break;
1723 case 14:
Damien Miller3e1ee492010-03-08 09:24:11 +11001724 fmt = "%Y-%m-%dT%H:%M:%S";
1725 snprintf(buf, sizeof(buf), "%.4s-%.2s-%.2sT%.2s:%.2s:%.2s",
Damien Miller2ca342b2010-03-03 12:14:15 +11001726 s, s + 4, s + 6, s + 8, s + 10, s + 12);
1727 break;
1728 default:
Damien Miller0a80ca12010-02-27 07:55:05 +11001729 fatal("Invalid certificate time format %s", s);
Damien Miller2ca342b2010-03-03 12:14:15 +11001730 }
Damien Miller0a80ca12010-02-27 07:55:05 +11001731
Damien Miller1d2c4562014-02-04 11:18:20 +11001732 memset(&tm, 0, sizeof(tm));
Damien Miller2ca342b2010-03-03 12:14:15 +11001733 if (strptime(buf, fmt, &tm) == NULL)
Damien Miller0a80ca12010-02-27 07:55:05 +11001734 fatal("Invalid certificate time %s", s);
1735 if ((tt = mktime(&tm)) < 0)
1736 fatal("Certificate time %s cannot be represented", s);
1737 return (u_int64_t)tt;
1738}
1739
1740static void
1741parse_cert_times(char *timespec)
1742{
1743 char *from, *to;
1744 time_t now = time(NULL);
1745 int64_t secs;
1746
1747 /* +timespec relative to now */
1748 if (*timespec == '+' && strchr(timespec, ':') == NULL) {
1749 if ((secs = convtime(timespec + 1)) == -1)
1750 fatal("Invalid relative certificate life %s", timespec);
1751 cert_valid_to = now + secs;
1752 /*
1753 * Backdate certificate one minute to avoid problems on hosts
1754 * with poorly-synchronised clocks.
1755 */
1756 cert_valid_from = ((now - 59)/ 60) * 60;
1757 return;
1758 }
1759
1760 /*
1761 * from:to, where
1762 * from := [+-]timespec | YYYYMMDD | YYYYMMDDHHMMSS
1763 * to := [+-]timespec | YYYYMMDD | YYYYMMDDHHMMSS
1764 */
1765 from = xstrdup(timespec);
1766 to = strchr(from, ':');
1767 if (to == NULL || from == to || *(to + 1) == '\0')
Damien Miller910f2092010-03-04 14:17:22 +11001768 fatal("Invalid certificate life specification %s", timespec);
Damien Miller0a80ca12010-02-27 07:55:05 +11001769 *to++ = '\0';
1770
1771 if (*from == '-' || *from == '+')
1772 cert_valid_from = parse_relative_time(from, now);
1773 else
1774 cert_valid_from = parse_absolute_time(from);
1775
1776 if (*to == '-' || *to == '+')
Damien Miller5b01b0d2013-10-23 16:31:31 +11001777 cert_valid_to = parse_relative_time(to, now);
Damien Miller0a80ca12010-02-27 07:55:05 +11001778 else
1779 cert_valid_to = parse_absolute_time(to);
1780
1781 if (cert_valid_to <= cert_valid_from)
1782 fatal("Empty certificate validity interval");
Darren Tuckera627d422013-06-02 07:31:17 +10001783 free(from);
Damien Miller0a80ca12010-02-27 07:55:05 +11001784}
1785
1786static void
Damien Miller4e270b02010-04-16 15:56:21 +10001787add_cert_option(char *opt)
Damien Miller0a80ca12010-02-27 07:55:05 +11001788{
1789 char *val;
1790
Damien Miller044f4a62011-05-05 14:14:08 +10001791 if (strcasecmp(opt, "clear") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001792 certflags_flags = 0;
Damien Miller0a80ca12010-02-27 07:55:05 +11001793 else if (strcasecmp(opt, "no-x11-forwarding") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001794 certflags_flags &= ~CERTOPT_X_FWD;
Damien Miller0a80ca12010-02-27 07:55:05 +11001795 else if (strcasecmp(opt, "permit-x11-forwarding") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001796 certflags_flags |= CERTOPT_X_FWD;
Damien Miller0a80ca12010-02-27 07:55:05 +11001797 else if (strcasecmp(opt, "no-agent-forwarding") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001798 certflags_flags &= ~CERTOPT_AGENT_FWD;
Damien Miller0a80ca12010-02-27 07:55:05 +11001799 else if (strcasecmp(opt, "permit-agent-forwarding") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001800 certflags_flags |= CERTOPT_AGENT_FWD;
Damien Miller0a80ca12010-02-27 07:55:05 +11001801 else if (strcasecmp(opt, "no-port-forwarding") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001802 certflags_flags &= ~CERTOPT_PORT_FWD;
Damien Miller0a80ca12010-02-27 07:55:05 +11001803 else if (strcasecmp(opt, "permit-port-forwarding") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001804 certflags_flags |= CERTOPT_PORT_FWD;
Damien Miller0a80ca12010-02-27 07:55:05 +11001805 else if (strcasecmp(opt, "no-pty") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001806 certflags_flags &= ~CERTOPT_PTY;
Damien Miller0a80ca12010-02-27 07:55:05 +11001807 else if (strcasecmp(opt, "permit-pty") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001808 certflags_flags |= CERTOPT_PTY;
Damien Miller0a80ca12010-02-27 07:55:05 +11001809 else if (strcasecmp(opt, "no-user-rc") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001810 certflags_flags &= ~CERTOPT_USER_RC;
Damien Miller0a80ca12010-02-27 07:55:05 +11001811 else if (strcasecmp(opt, "permit-user-rc") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001812 certflags_flags |= CERTOPT_USER_RC;
Damien Miller0a80ca12010-02-27 07:55:05 +11001813 else if (strncasecmp(opt, "force-command=", 14) == 0) {
1814 val = opt + 14;
1815 if (*val == '\0')
Damien Miller4e270b02010-04-16 15:56:21 +10001816 fatal("Empty force-command option");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001817 if (certflags_command != NULL)
Damien Miller0a80ca12010-02-27 07:55:05 +11001818 fatal("force-command already specified");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001819 certflags_command = xstrdup(val);
Damien Miller0a80ca12010-02-27 07:55:05 +11001820 } else if (strncasecmp(opt, "source-address=", 15) == 0) {
1821 val = opt + 15;
1822 if (*val == '\0')
Damien Miller4e270b02010-04-16 15:56:21 +10001823 fatal("Empty source-address option");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001824 if (certflags_src_addr != NULL)
Damien Miller0a80ca12010-02-27 07:55:05 +11001825 fatal("source-address already specified");
1826 if (addr_match_cidr_list(NULL, val) != 0)
1827 fatal("Invalid source-address list");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001828 certflags_src_addr = xstrdup(val);
Damien Miller0a80ca12010-02-27 07:55:05 +11001829 } else
Damien Miller4e270b02010-04-16 15:56:21 +10001830 fatal("Unsupported certificate option \"%s\"", opt);
Damien Miller0a80ca12010-02-27 07:55:05 +11001831}
1832
Ben Lindstrombba81212001-06-25 05:01:22 +00001833static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001834show_options(struct sshbuf *optbuf, int v00, int in_critical)
Damien Millerd834d352010-06-26 09:48:02 +10001835{
Damien Miller633de332014-05-15 13:48:26 +10001836 char *name, *arg;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001837 struct sshbuf *options, *option = NULL;
1838 int r;
Damien Millerd834d352010-06-26 09:48:02 +10001839
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001840 if ((options = sshbuf_fromb(optbuf)) == NULL)
1841 fatal("%s: sshbuf_fromb failed", __func__);
1842 while (sshbuf_len(options) != 0) {
1843 sshbuf_free(option);
1844 option = NULL;
1845 if ((r = sshbuf_get_cstring(options, &name, NULL)) != 0 ||
1846 (r = sshbuf_froms(options, &option)) != 0)
1847 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Millerd834d352010-06-26 09:48:02 +10001848 printf(" %s", name);
1849 if ((v00 || !in_critical) &&
1850 (strcmp(name, "permit-X11-forwarding") == 0 ||
1851 strcmp(name, "permit-agent-forwarding") == 0 ||
1852 strcmp(name, "permit-port-forwarding") == 0 ||
1853 strcmp(name, "permit-pty") == 0 ||
1854 strcmp(name, "permit-user-rc") == 0))
1855 printf("\n");
1856 else if ((v00 || in_critical) &&
1857 (strcmp(name, "force-command") == 0 ||
1858 strcmp(name, "source-address") == 0)) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001859 if ((r = sshbuf_get_cstring(option, &arg, NULL)) != 0)
1860 fatal("%s: buffer error: %s",
1861 __func__, ssh_err(r));
Damien Miller633de332014-05-15 13:48:26 +10001862 printf(" %s\n", arg);
1863 free(arg);
Damien Millerd834d352010-06-26 09:48:02 +10001864 } else {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001865 printf(" UNKNOWN OPTION (len %zu)\n",
1866 sshbuf_len(option));
1867 sshbuf_reset(option);
Damien Millerd834d352010-06-26 09:48:02 +10001868 }
Darren Tuckera627d422013-06-02 07:31:17 +10001869 free(name);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001870 if (sshbuf_len(option) != 0)
Damien Millerd834d352010-06-26 09:48:02 +10001871 fatal("Option corrupt: extra data at end");
1872 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001873 sshbuf_free(option);
1874 sshbuf_free(options);
Damien Millerd834d352010-06-26 09:48:02 +10001875}
1876
1877static void
Damien Millerf2b70ca2010-03-05 07:39:35 +11001878do_show_cert(struct passwd *pw)
1879{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001880 struct sshkey *key;
Damien Millerf2b70ca2010-03-05 07:39:35 +11001881 struct stat st;
1882 char *key_fp, *ca_fp;
Damien Millerd834d352010-06-26 09:48:02 +10001883 u_int i, v00;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001884 int r;
Damien Millerf2b70ca2010-03-05 07:39:35 +11001885
1886 if (!have_identity)
1887 ask_filename(pw, "Enter file in which the key is");
Damien Millerba3420a2010-06-26 09:39:07 +10001888 if (stat(identity_file, &st) < 0)
1889 fatal("%s: %s: %s", __progname, identity_file, strerror(errno));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001890 if ((r = sshkey_load_public(identity_file, &key, NULL)) != 0)
1891 fatal("Cannot load public key \"%s\": %s",
1892 identity_file, ssh_err(r));
1893 if (!sshkey_is_cert(key))
Damien Millerf2b70ca2010-03-05 07:39:35 +11001894 fatal("%s is not a certificate", identity_file);
Damien Miller4e270b02010-04-16 15:56:21 +10001895 v00 = key->type == KEY_RSA_CERT_V00 || key->type == KEY_DSA_CERT_V00;
1896
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001897 key_fp = sshkey_fingerprint(key, fingerprint_hash, SSH_FP_DEFAULT);
1898 ca_fp = sshkey_fingerprint(key->cert->signature_key,
djm@openbsd.org56d1c832014-12-21 22:27:55 +00001899 fingerprint_hash, SSH_FP_DEFAULT);
djm@openbsd.org9ce86c92015-01-28 22:36:00 +00001900 if (key_fp == NULL || ca_fp == NULL)
1901 fatal("%s: sshkey_fingerprint fail", __func__);
Damien Millerf2b70ca2010-03-05 07:39:35 +11001902
1903 printf("%s:\n", identity_file);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001904 printf(" Type: %s %s certificate\n", sshkey_ssh_name(key),
1905 sshkey_cert_type(key));
1906 printf(" Public key: %s %s\n", sshkey_type(key), key_fp);
Damien Miller4e270b02010-04-16 15:56:21 +10001907 printf(" Signing CA: %s %s\n",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001908 sshkey_type(key->cert->signature_key), ca_fp);
Damien Miller4e270b02010-04-16 15:56:21 +10001909 printf(" Key ID: \"%s\"\n", key->cert->key_id);
Damien Miller821de0a2011-01-11 17:20:29 +11001910 if (!v00) {
1911 printf(" Serial: %llu\n",
1912 (unsigned long long)key->cert->serial);
1913 }
Damien Millerf2b70ca2010-03-05 07:39:35 +11001914 printf(" Valid: %s\n",
1915 fmt_validity(key->cert->valid_after, key->cert->valid_before));
1916 printf(" Principals: ");
1917 if (key->cert->nprincipals == 0)
1918 printf("(none)\n");
1919 else {
1920 for (i = 0; i < key->cert->nprincipals; i++)
1921 printf("\n %s",
1922 key->cert->principals[i]);
1923 printf("\n");
1924 }
Damien Miller4e270b02010-04-16 15:56:21 +10001925 printf(" Critical Options: ");
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001926 if (sshbuf_len(key->cert->critical) == 0)
Damien Millerf2b70ca2010-03-05 07:39:35 +11001927 printf("(none)\n");
1928 else {
1929 printf("\n");
Damien Miller86687062014-07-02 15:28:02 +10001930 show_options(key->cert->critical, v00, 1);
Damien Millerf2b70ca2010-03-05 07:39:35 +11001931 }
Damien Miller4e270b02010-04-16 15:56:21 +10001932 if (!v00) {
1933 printf(" Extensions: ");
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001934 if (sshbuf_len(key->cert->extensions) == 0)
Damien Miller4e270b02010-04-16 15:56:21 +10001935 printf("(none)\n");
1936 else {
1937 printf("\n");
Damien Miller86687062014-07-02 15:28:02 +10001938 show_options(key->cert->extensions, v00, 0);
Damien Miller4e270b02010-04-16 15:56:21 +10001939 }
1940 }
Damien Millerf2b70ca2010-03-05 07:39:35 +11001941 exit(0);
1942}
1943
1944static void
Damien Millerf3747bf2013-01-18 11:44:04 +11001945load_krl(const char *path, struct ssh_krl **krlp)
1946{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001947 struct sshbuf *krlbuf;
1948 int r, fd;
Damien Millerf3747bf2013-01-18 11:44:04 +11001949
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001950 if ((krlbuf = sshbuf_new()) == NULL)
1951 fatal("sshbuf_new failed");
Damien Millerf3747bf2013-01-18 11:44:04 +11001952 if ((fd = open(path, O_RDONLY)) == -1)
1953 fatal("open %s: %s", path, strerror(errno));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001954 if ((r = sshkey_load_file(fd, krlbuf)) != 0)
1955 fatal("Unable to load KRL: %s", ssh_err(r));
Damien Millerf3747bf2013-01-18 11:44:04 +11001956 close(fd);
1957 /* XXX check sigs */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001958 if ((r = ssh_krl_from_blob(krlbuf, krlp, NULL, 0)) != 0 ||
Damien Millerf3747bf2013-01-18 11:44:04 +11001959 *krlp == NULL)
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001960 fatal("Invalid KRL file: %s", ssh_err(r));
1961 sshbuf_free(krlbuf);
Damien Millerf3747bf2013-01-18 11:44:04 +11001962}
1963
1964static void
djm@openbsd.org669aee92015-01-30 01:10:33 +00001965update_krl_from_file(struct passwd *pw, const char *file, int wild_ca,
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001966 const struct sshkey *ca, struct ssh_krl *krl)
Damien Millerf3747bf2013-01-18 11:44:04 +11001967{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001968 struct sshkey *key = NULL;
Damien Millerf3747bf2013-01-18 11:44:04 +11001969 u_long lnum = 0;
1970 char *path, *cp, *ep, line[SSH_MAX_PUBKEY_BYTES];
1971 unsigned long long serial, serial2;
1972 int i, was_explicit_key, was_sha1, r;
1973 FILE *krl_spec;
1974
1975 path = tilde_expand_filename(file, pw->pw_uid);
1976 if (strcmp(path, "-") == 0) {
1977 krl_spec = stdin;
1978 free(path);
1979 path = xstrdup("(standard input)");
1980 } else if ((krl_spec = fopen(path, "r")) == NULL)
1981 fatal("fopen %s: %s", path, strerror(errno));
1982
1983 if (!quiet)
1984 printf("Revoking from %s\n", path);
1985 while (read_keyfile_line(krl_spec, path, line, sizeof(line),
1986 &lnum) == 0) {
1987 was_explicit_key = was_sha1 = 0;
1988 cp = line + strspn(line, " \t");
1989 /* Trim trailing space, comments and strip \n */
1990 for (i = 0, r = -1; cp[i] != '\0'; i++) {
1991 if (cp[i] == '#' || cp[i] == '\n') {
1992 cp[i] = '\0';
1993 break;
1994 }
1995 if (cp[i] == ' ' || cp[i] == '\t') {
1996 /* Remember the start of a span of whitespace */
1997 if (r == -1)
1998 r = i;
1999 } else
2000 r = -1;
2001 }
2002 if (r != -1)
2003 cp[r] = '\0';
2004 if (*cp == '\0')
2005 continue;
2006 if (strncasecmp(cp, "serial:", 7) == 0) {
djm@openbsd.org669aee92015-01-30 01:10:33 +00002007 if (ca == NULL && !wild_ca) {
Damien Millerd234afb2013-08-21 02:42:58 +10002008 fatal("revoking certificates by serial number "
Damien Millerf3747bf2013-01-18 11:44:04 +11002009 "requires specification of a CA key");
2010 }
2011 cp += 7;
2012 cp = cp + strspn(cp, " \t");
2013 errno = 0;
2014 serial = strtoull(cp, &ep, 0);
2015 if (*cp == '\0' || (*ep != '\0' && *ep != '-'))
2016 fatal("%s:%lu: invalid serial \"%s\"",
2017 path, lnum, cp);
2018 if (errno == ERANGE && serial == ULLONG_MAX)
2019 fatal("%s:%lu: serial out of range",
2020 path, lnum);
2021 serial2 = serial;
2022 if (*ep == '-') {
2023 cp = ep + 1;
2024 errno = 0;
2025 serial2 = strtoull(cp, &ep, 0);
2026 if (*cp == '\0' || *ep != '\0')
2027 fatal("%s:%lu: invalid serial \"%s\"",
2028 path, lnum, cp);
2029 if (errno == ERANGE && serial2 == ULLONG_MAX)
2030 fatal("%s:%lu: serial out of range",
2031 path, lnum);
2032 if (serial2 <= serial)
2033 fatal("%s:%lu: invalid serial range "
2034 "%llu:%llu", path, lnum,
2035 (unsigned long long)serial,
2036 (unsigned long long)serial2);
2037 }
2038 if (ssh_krl_revoke_cert_by_serial_range(krl,
2039 ca, serial, serial2) != 0) {
2040 fatal("%s: revoke serial failed",
2041 __func__);
2042 }
2043 } else if (strncasecmp(cp, "id:", 3) == 0) {
djm@openbsd.org669aee92015-01-30 01:10:33 +00002044 if (ca == NULL && !wild_ca) {
Damien Millerd5d9d7b2013-08-21 02:43:27 +10002045 fatal("revoking certificates by key ID "
Damien Millerf3747bf2013-01-18 11:44:04 +11002046 "requires specification of a CA key");
2047 }
2048 cp += 3;
2049 cp = cp + strspn(cp, " \t");
2050 if (ssh_krl_revoke_cert_by_key_id(krl, ca, cp) != 0)
2051 fatal("%s: revoke key ID failed", __func__);
2052 } else {
2053 if (strncasecmp(cp, "key:", 4) == 0) {
2054 cp += 4;
2055 cp = cp + strspn(cp, " \t");
2056 was_explicit_key = 1;
2057 } else if (strncasecmp(cp, "sha1:", 5) == 0) {
2058 cp += 5;
2059 cp = cp + strspn(cp, " \t");
2060 was_sha1 = 1;
2061 } else {
2062 /*
2063 * Just try to process the line as a key.
2064 * Parsing will fail if it isn't.
2065 */
2066 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002067 if ((key = sshkey_new(KEY_UNSPEC)) == NULL)
Damien Millerf3747bf2013-01-18 11:44:04 +11002068 fatal("key_new");
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002069 if ((r = sshkey_read(key, &cp)) != 0)
2070 fatal("%s:%lu: invalid key: %s",
2071 path, lnum, ssh_err(r));
Damien Millerf3747bf2013-01-18 11:44:04 +11002072 if (was_explicit_key)
2073 r = ssh_krl_revoke_key_explicit(krl, key);
2074 else if (was_sha1)
2075 r = ssh_krl_revoke_key_sha1(krl, key);
2076 else
2077 r = ssh_krl_revoke_key(krl, key);
2078 if (r != 0)
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002079 fatal("%s: revoke key failed: %s",
2080 __func__, ssh_err(r));
2081 sshkey_free(key);
Damien Millerf3747bf2013-01-18 11:44:04 +11002082 }
2083 }
2084 if (strcmp(path, "-") != 0)
2085 fclose(krl_spec);
Damien Miller0d6771b2013-04-23 15:23:24 +10002086 free(path);
Damien Millerf3747bf2013-01-18 11:44:04 +11002087}
2088
2089static void
2090do_gen_krl(struct passwd *pw, int updating, int argc, char **argv)
2091{
2092 struct ssh_krl *krl;
2093 struct stat sb;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002094 struct sshkey *ca = NULL;
djm@openbsd.org669aee92015-01-30 01:10:33 +00002095 int fd, i, r, wild_ca = 0;
Damien Millerf3747bf2013-01-18 11:44:04 +11002096 char *tmp;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002097 struct sshbuf *kbuf;
Damien Millerf3747bf2013-01-18 11:44:04 +11002098
2099 if (*identity_file == '\0')
2100 fatal("KRL generation requires an output file");
2101 if (stat(identity_file, &sb) == -1) {
2102 if (errno != ENOENT)
2103 fatal("Cannot access KRL \"%s\": %s",
2104 identity_file, strerror(errno));
2105 if (updating)
2106 fatal("KRL \"%s\" does not exist", identity_file);
2107 }
2108 if (ca_key_path != NULL) {
djm@openbsd.org669aee92015-01-30 01:10:33 +00002109 if (strcasecmp(ca_key_path, "none") == 0)
2110 wild_ca = 1;
2111 else {
2112 tmp = tilde_expand_filename(ca_key_path, pw->pw_uid);
2113 if ((r = sshkey_load_public(tmp, &ca, NULL)) != 0)
2114 fatal("Cannot load CA public key %s: %s",
2115 tmp, ssh_err(r));
2116 free(tmp);
2117 }
Damien Millerf3747bf2013-01-18 11:44:04 +11002118 }
2119
2120 if (updating)
2121 load_krl(identity_file, &krl);
2122 else if ((krl = ssh_krl_init()) == NULL)
2123 fatal("couldn't create KRL");
2124
2125 if (cert_serial != 0)
2126 ssh_krl_set_version(krl, cert_serial);
2127 if (identity_comment != NULL)
2128 ssh_krl_set_comment(krl, identity_comment);
2129
2130 for (i = 0; i < argc; i++)
djm@openbsd.org669aee92015-01-30 01:10:33 +00002131 update_krl_from_file(pw, argv[i], wild_ca, ca, krl);
Damien Millerf3747bf2013-01-18 11:44:04 +11002132
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002133 if ((kbuf = sshbuf_new()) == NULL)
2134 fatal("sshbuf_new failed");
2135 if (ssh_krl_to_blob(krl, kbuf, NULL, 0) != 0)
Damien Millerf3747bf2013-01-18 11:44:04 +11002136 fatal("Couldn't generate KRL");
2137 if ((fd = open(identity_file, O_WRONLY|O_CREAT|O_TRUNC, 0644)) == -1)
2138 fatal("open %s: %s", identity_file, strerror(errno));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002139 if (atomicio(vwrite, fd, (void *)sshbuf_ptr(kbuf), sshbuf_len(kbuf)) !=
2140 sshbuf_len(kbuf))
Damien Millerf3747bf2013-01-18 11:44:04 +11002141 fatal("write %s: %s", identity_file, strerror(errno));
2142 close(fd);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002143 sshbuf_free(kbuf);
Damien Millerf3747bf2013-01-18 11:44:04 +11002144 ssh_krl_free(krl);
Damien Miller0d6771b2013-04-23 15:23:24 +10002145 if (ca != NULL)
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002146 sshkey_free(ca);
Damien Millerf3747bf2013-01-18 11:44:04 +11002147}
2148
2149static void
2150do_check_krl(struct passwd *pw, int argc, char **argv)
2151{
2152 int i, r, ret = 0;
2153 char *comment;
2154 struct ssh_krl *krl;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002155 struct sshkey *k;
Damien Millerf3747bf2013-01-18 11:44:04 +11002156
2157 if (*identity_file == '\0')
2158 fatal("KRL checking requires an input file");
2159 load_krl(identity_file, &krl);
2160 for (i = 0; i < argc; i++) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002161 if ((r = sshkey_load_public(argv[i], &k, &comment)) != 0)
2162 fatal("Cannot load public key %s: %s",
2163 argv[i], ssh_err(r));
Damien Millerf3747bf2013-01-18 11:44:04 +11002164 r = ssh_krl_check_key(krl, k);
2165 printf("%s%s%s%s: %s\n", argv[i],
2166 *comment ? " (" : "", comment, *comment ? ")" : "",
2167 r == 0 ? "ok" : "REVOKED");
2168 if (r != 0)
2169 ret = 1;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002170 sshkey_free(k);
Damien Millerf3747bf2013-01-18 11:44:04 +11002171 free(comment);
2172 }
2173 ssh_krl_free(krl);
2174 exit(ret);
2175}
2176
2177static void
Damien Miller431f66b1999-11-21 18:31:57 +11002178usage(void)
2179{
Damien Millerf0858de2014-04-20 13:01:30 +10002180 fprintf(stderr,
2181 "usage: ssh-keygen [-q] [-b bits] [-t dsa | ecdsa | ed25519 | rsa | rsa1]\n"
2182 " [-N new_passphrase] [-C comment] [-f output_keyfile]\n"
2183 " ssh-keygen -p [-P old_passphrase] [-N new_passphrase] [-f keyfile]\n"
2184 " ssh-keygen -i [-m key_format] [-f input_keyfile]\n"
2185 " ssh-keygen -e [-m key_format] [-f input_keyfile]\n"
2186 " ssh-keygen -y [-f input_keyfile]\n"
2187 " ssh-keygen -c [-P passphrase] [-C comment] [-f keyfile]\n"
naddy@openbsd.org6288e3a2015-02-24 15:24:05 +00002188 " ssh-keygen -l [-v] [-E fingerprint_hash] [-f input_keyfile]\n"
Damien Millerf0858de2014-04-20 13:01:30 +10002189 " ssh-keygen -B [-f input_keyfile]\n");
Damien Miller7ea845e2010-02-12 09:21:02 +11002190#ifdef ENABLE_PKCS11
Damien Millerf0858de2014-04-20 13:01:30 +10002191 fprintf(stderr,
2192 " ssh-keygen -D pkcs11\n");
Damien Miller7ea845e2010-02-12 09:21:02 +11002193#endif
Damien Millerf0858de2014-04-20 13:01:30 +10002194 fprintf(stderr,
2195 " ssh-keygen -F hostname [-f known_hosts_file] [-l]\n"
2196 " ssh-keygen -H [-f known_hosts_file]\n"
2197 " ssh-keygen -R hostname [-f known_hosts_file]\n"
2198 " ssh-keygen -r hostname [-f input_keyfile] [-g]\n"
2199 " ssh-keygen -G output_file [-v] [-b bits] [-M memory] [-S start_point]\n"
2200 " ssh-keygen -T output_file -f input_file [-v] [-a rounds] [-J num_lines]\n"
2201 " [-j start_line] [-K checkpt] [-W generator]\n"
2202 " ssh-keygen -s ca_key -I certificate_identity [-h] [-n principals]\n"
2203 " [-O option] [-V validity_interval] [-z serial_number] file ...\n"
2204 " ssh-keygen -L [-f input_keyfile]\n"
2205 " ssh-keygen -A\n"
2206 " ssh-keygen -k -f krl_file [-u] [-s ca_public] [-z version_number]\n"
2207 " file ...\n"
2208 " ssh-keygen -Q -f krl_file file ...\n");
Damien Miller95def091999-11-25 00:26:21 +11002209 exit(1);
Damien Miller431f66b1999-11-21 18:31:57 +11002210}
2211
Damien Miller95def091999-11-25 00:26:21 +11002212/*
2213 * Main program for key management.
2214 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002215int
Damien Millerdf8b7db2007-01-05 16:22:57 +11002216main(int argc, char **argv)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002217{
deraadt@openbsd.org2ae4f332015-01-16 06:40:12 +00002218 char dotsshdir[PATH_MAX], comment[1024], *passphrase1, *passphrase2;
Damien Miller390d0562011-10-18 16:05:19 +11002219 char *checkpoint = NULL;
djm@openbsd.org9ce86c92015-01-28 22:36:00 +00002220 char out_file[PATH_MAX], *rr_hostname = NULL, *ep, *fp, *ra;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002221 struct sshkey *private, *public;
Damien Miller95def091999-11-25 00:26:21 +11002222 struct passwd *pw;
Damien Miller95def091999-11-25 00:26:21 +11002223 struct stat st;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002224 int r, opt, type, fd;
Damien Millerbcd00ab2013-12-07 10:41:55 +11002225 u_int32_t memory = 0, generator_wanted = 0;
Darren Tucker019cefe2003-08-02 22:40:07 +10002226 int do_gen_candidates = 0, do_screen_candidates = 0;
Damien Millerf3747bf2013-01-18 11:44:04 +11002227 int gen_all_hostkeys = 0, gen_krl = 0, update_krl = 0, check_krl = 0;
Damien Millerdfceafe2012-07-06 13:44:19 +10002228 unsigned long start_lineno = 0, lines_to_process = 0;
Darren Tucker019cefe2003-08-02 22:40:07 +10002229 BIGNUM *start = NULL;
Damien Miller95def091999-11-25 00:26:21 +11002230 FILE *f;
Damien Miller02e754f2005-05-26 12:19:39 +10002231 const char *errstr;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002232
Damien Miller95def091999-11-25 00:26:21 +11002233 extern int optind;
2234 extern char *optarg;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002235
Darren Tuckerce321d82005-10-03 18:11:24 +10002236 /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
2237 sanitise_stdfd();
2238
Darren Tucker9ac56e92007-01-14 10:19:59 +11002239 __progname = ssh_get_progname(argv[0]);
Damien Millerf9b625c2000-07-09 22:42:32 +10002240
Damien Miller72ef7c12015-01-15 02:21:31 +11002241#ifdef WITH_OPENSSL
Damien Miller4314c2b2010-09-10 11:12:09 +10002242 OpenSSL_add_all_algorithms();
Damien Miller72ef7c12015-01-15 02:21:31 +11002243#endif
Damien Millerdf8b7db2007-01-05 16:22:57 +11002244 log_init(argv[0], SYSLOG_LEVEL_INFO, SYSLOG_FACILITY_USER, 1);
Darren Tucker019cefe2003-08-02 22:40:07 +10002245
Kevin Steves3a881912002-07-20 19:05:40 +00002246 seed_rng();
Damien Millereba71ba2000-04-29 23:57:08 +10002247
Damien Miller5428f641999-11-25 11:54:57 +11002248 /* we need this for the home * directory. */
Damien Miller95def091999-11-25 00:26:21 +11002249 pw = getpwuid(getuid());
djm@openbsd.org3038a192015-04-17 13:19:22 +00002250 if (!pw)
2251 fatal("No user exists for uid %lu", (u_long)getuid());
2252 if (gethostname(hostname, sizeof(hostname)) < 0)
2253 fatal("gethostname: %s", strerror(errno));
Damien Miller5428f641999-11-25 11:54:57 +11002254
djm@openbsd.org56d1c832014-12-21 22:27:55 +00002255 /* Remaining characters: UYdw */
Damien Millerbcd00ab2013-12-07 10:41:55 +11002256 while ((opt = getopt(argc, argv, "ABHLQXceghiklopquvxy"
djm@openbsd.org56d1c832014-12-21 22:27:55 +00002257 "C:D:E:F:G:I:J:K:M:N:O:P:R:S:T:V:W:Z:"
2258 "a:b:f:g:j:m:n:r:s:t:z:")) != -1) {
Damien Miller95def091999-11-25 00:26:21 +11002259 switch (opt) {
Damien Miller58f1baf2011-05-05 14:06:15 +10002260 case 'A':
2261 gen_all_hostkeys = 1;
2262 break;
Damien Miller95def091999-11-25 00:26:21 +11002263 case 'b':
Damien Miller57737942010-09-10 11:16:37 +10002264 bits = (u_int32_t)strtonum(optarg, 256, 32768, &errstr);
Damien Miller02e754f2005-05-26 12:19:39 +10002265 if (errstr)
2266 fatal("Bits has bad value %s (%s)",
2267 optarg, errstr);
Damien Miller95def091999-11-25 00:26:21 +11002268 break;
djm@openbsd.org56d1c832014-12-21 22:27:55 +00002269 case 'E':
2270 fingerprint_hash = ssh_digest_alg_by_name(optarg);
2271 if (fingerprint_hash == -1)
2272 fatal("Invalid hash algorithm \"%s\"", optarg);
2273 break;
Damien Miller4b42d7f2005-03-01 21:48:35 +11002274 case 'F':
2275 find_host = 1;
2276 rr_hostname = optarg;
2277 break;
2278 case 'H':
2279 hash_hosts = 1;
2280 break;
Damien Miller0a80ca12010-02-27 07:55:05 +11002281 case 'I':
2282 cert_key_id = optarg;
2283 break;
Damien Millerdfceafe2012-07-06 13:44:19 +10002284 case 'J':
2285 lines_to_process = strtoul(optarg, NULL, 10);
2286 break;
2287 case 'j':
2288 start_lineno = strtoul(optarg, NULL, 10);
2289 break;
Damien Miller4b42d7f2005-03-01 21:48:35 +11002290 case 'R':
2291 delete_host = 1;
2292 rr_hostname = optarg;
2293 break;
Damien Millerf2b70ca2010-03-05 07:39:35 +11002294 case 'L':
2295 show_cert = 1;
2296 break;
Damien Miller95def091999-11-25 00:26:21 +11002297 case 'l':
2298 print_fingerprint = 1;
2299 break;
Ben Lindstrom8fd372b2001-03-12 03:02:17 +00002300 case 'B':
2301 print_bubblebabble = 1;
2302 break;
Damien Miller44b25042010-07-02 13:35:01 +10002303 case 'm':
2304 if (strcasecmp(optarg, "RFC4716") == 0 ||
2305 strcasecmp(optarg, "ssh2") == 0) {
2306 convert_format = FMT_RFC4716;
2307 break;
2308 }
2309 if (strcasecmp(optarg, "PKCS8") == 0) {
2310 convert_format = FMT_PKCS8;
2311 break;
2312 }
2313 if (strcasecmp(optarg, "PEM") == 0) {
2314 convert_format = FMT_PEM;
2315 break;
2316 }
2317 fatal("Unsupported conversion format \"%s\"", optarg);
Damien Miller0a80ca12010-02-27 07:55:05 +11002318 case 'n':
2319 cert_principals = optarg;
2320 break;
Damien Millerbcd00ab2013-12-07 10:41:55 +11002321 case 'o':
2322 use_new_format = 1;
2323 break;
Damien Miller95def091999-11-25 00:26:21 +11002324 case 'p':
2325 change_passphrase = 1;
2326 break;
Damien Miller95def091999-11-25 00:26:21 +11002327 case 'c':
2328 change_comment = 1;
2329 break;
Damien Miller95def091999-11-25 00:26:21 +11002330 case 'f':
Damien Millerb089fb52005-05-26 12:16:18 +10002331 if (strlcpy(identity_file, optarg, sizeof(identity_file)) >=
2332 sizeof(identity_file))
2333 fatal("Identity filename too long");
Damien Miller95def091999-11-25 00:26:21 +11002334 have_identity = 1;
2335 break;
Damien Miller37876e92003-05-15 10:19:46 +10002336 case 'g':
2337 print_generic = 1;
2338 break;
Damien Miller95def091999-11-25 00:26:21 +11002339 case 'P':
2340 identity_passphrase = optarg;
2341 break;
Damien Miller95def091999-11-25 00:26:21 +11002342 case 'N':
2343 identity_new_passphrase = optarg;
2344 break;
Damien Millerf3747bf2013-01-18 11:44:04 +11002345 case 'Q':
2346 check_krl = 1;
2347 break;
Damien Miller0a80ca12010-02-27 07:55:05 +11002348 case 'O':
Damien Miller4e270b02010-04-16 15:56:21 +10002349 add_cert_option(optarg);
Damien Miller0a80ca12010-02-27 07:55:05 +11002350 break;
Damien Millerbcd00ab2013-12-07 10:41:55 +11002351 case 'Z':
2352 new_format_cipher = optarg;
2353 break;
Damien Miller95def091999-11-25 00:26:21 +11002354 case 'C':
2355 identity_comment = optarg;
2356 break;
Damien Miller95def091999-11-25 00:26:21 +11002357 case 'q':
2358 quiet = 1;
2359 break;
Ben Lindstrom5a707822001-04-22 17:15:46 +00002360 case 'e':
Damien Millereba71ba2000-04-29 23:57:08 +10002361 case 'x':
Ben Lindstrom5a707822001-04-22 17:15:46 +00002362 /* export key */
Damien Miller44b25042010-07-02 13:35:01 +10002363 convert_to = 1;
Damien Millereba71ba2000-04-29 23:57:08 +10002364 break;
Damien Miller0a80ca12010-02-27 07:55:05 +11002365 case 'h':
2366 cert_key_type = SSH2_CERT_TYPE_HOST;
Damien Millerd0e4a8e2010-05-21 14:58:32 +10002367 certflags_flags = 0;
Damien Miller0a80ca12010-02-27 07:55:05 +11002368 break;
Damien Millerf3747bf2013-01-18 11:44:04 +11002369 case 'k':
2370 gen_krl = 1;
2371 break;
Ben Lindstrom5a707822001-04-22 17:15:46 +00002372 case 'i':
Damien Millereba71ba2000-04-29 23:57:08 +10002373 case 'X':
Ben Lindstrom5a707822001-04-22 17:15:46 +00002374 /* import key */
Damien Miller44b25042010-07-02 13:35:01 +10002375 convert_from = 1;
Damien Millereba71ba2000-04-29 23:57:08 +10002376 break;
Damien Millereba71ba2000-04-29 23:57:08 +10002377 case 'y':
2378 print_public = 1;
2379 break;
Damien Miller0a80ca12010-02-27 07:55:05 +11002380 case 's':
2381 ca_key_path = optarg;
2382 break;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002383 case 't':
2384 key_type_name = optarg;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002385 break;
Ben Lindstrom8282d6a2001-08-06 21:44:05 +00002386 case 'D':
Damien Miller7ea845e2010-02-12 09:21:02 +11002387 pkcs11provider = optarg;
Ben Lindstromcd392282001-07-04 03:44:03 +00002388 break;
Damien Millerf3747bf2013-01-18 11:44:04 +11002389 case 'u':
2390 update_krl = 1;
2391 break;
Darren Tucker06930c72003-12-31 11:34:51 +11002392 case 'v':
2393 if (log_level == SYSLOG_LEVEL_INFO)
2394 log_level = SYSLOG_LEVEL_DEBUG1;
2395 else {
Darren Tuckerfc959702004-07-17 16:12:08 +10002396 if (log_level >= SYSLOG_LEVEL_DEBUG1 &&
Darren Tucker06930c72003-12-31 11:34:51 +11002397 log_level < SYSLOG_LEVEL_DEBUG3)
2398 log_level++;
2399 }
2400 break;
Damien Miller37876e92003-05-15 10:19:46 +10002401 case 'r':
Damien Miller4b42d7f2005-03-01 21:48:35 +11002402 rr_hostname = optarg;
Damien Miller37876e92003-05-15 10:19:46 +10002403 break;
Darren Tucker019cefe2003-08-02 22:40:07 +10002404 case 'W':
Damien Miller5f340062006-03-26 14:27:57 +11002405 generator_wanted = (u_int32_t)strtonum(optarg, 1,
2406 UINT_MAX, &errstr);
Damien Millerb089fb52005-05-26 12:16:18 +10002407 if (errstr)
2408 fatal("Desired generator has bad value: %s (%s)",
2409 optarg, errstr);
Darren Tucker019cefe2003-08-02 22:40:07 +10002410 break;
2411 case 'a':
Damien Millerbcd00ab2013-12-07 10:41:55 +11002412 rounds = (int)strtonum(optarg, 1, INT_MAX, &errstr);
Damien Millerb089fb52005-05-26 12:16:18 +10002413 if (errstr)
Damien Millerbcd00ab2013-12-07 10:41:55 +11002414 fatal("Invalid number: %s (%s)",
Damien Millerb089fb52005-05-26 12:16:18 +10002415 optarg, errstr);
Darren Tucker019cefe2003-08-02 22:40:07 +10002416 break;
Damien Miller72ef7c12015-01-15 02:21:31 +11002417#ifdef WITH_OPENSSL
Darren Tucker019cefe2003-08-02 22:40:07 +10002418 case 'M':
Damien Miller5f340062006-03-26 14:27:57 +11002419 memory = (u_int32_t)strtonum(optarg, 1, UINT_MAX, &errstr);
Damien Miller4e270b02010-04-16 15:56:21 +10002420 if (errstr)
Damien Millerb089fb52005-05-26 12:16:18 +10002421 fatal("Memory limit is %s: %s", errstr, optarg);
Darren Tucker019cefe2003-08-02 22:40:07 +10002422 break;
2423 case 'G':
2424 do_gen_candidates = 1;
Damien Millerb089fb52005-05-26 12:16:18 +10002425 if (strlcpy(out_file, optarg, sizeof(out_file)) >=
2426 sizeof(out_file))
2427 fatal("Output filename too long");
Darren Tucker019cefe2003-08-02 22:40:07 +10002428 break;
2429 case 'T':
2430 do_screen_candidates = 1;
Damien Millerb089fb52005-05-26 12:16:18 +10002431 if (strlcpy(out_file, optarg, sizeof(out_file)) >=
2432 sizeof(out_file))
2433 fatal("Output filename too long");
Darren Tucker019cefe2003-08-02 22:40:07 +10002434 break;
Damien Miller390d0562011-10-18 16:05:19 +11002435 case 'K':
deraadt@openbsd.org2ae4f332015-01-16 06:40:12 +00002436 if (strlen(optarg) >= PATH_MAX)
Damien Miller390d0562011-10-18 16:05:19 +11002437 fatal("Checkpoint filename too long");
2438 checkpoint = xstrdup(optarg);
2439 break;
Darren Tucker019cefe2003-08-02 22:40:07 +10002440 case 'S':
2441 /* XXX - also compare length against bits */
2442 if (BN_hex2bn(&start, optarg) == 0)
2443 fatal("Invalid start point.");
2444 break;
Damien Miller72ef7c12015-01-15 02:21:31 +11002445#endif /* WITH_OPENSSL */
Damien Miller0a80ca12010-02-27 07:55:05 +11002446 case 'V':
2447 parse_cert_times(optarg);
2448 break;
Damien Miller4e270b02010-04-16 15:56:21 +10002449 case 'z':
Damien Miller6f3b3622012-11-14 19:04:33 +11002450 errno = 0;
2451 cert_serial = strtoull(optarg, &ep, 10);
2452 if (*optarg < '0' || *optarg > '9' || *ep != '\0' ||
2453 (errno == ERANGE && cert_serial == ULLONG_MAX))
2454 fatal("Invalid serial number \"%s\"", optarg);
Damien Miller4e270b02010-04-16 15:56:21 +10002455 break;
Damien Miller95def091999-11-25 00:26:21 +11002456 case '?':
2457 default:
2458 usage();
2459 }
2460 }
Darren Tucker06930c72003-12-31 11:34:51 +11002461
2462 /* reinit */
Damien Millerdf8b7db2007-01-05 16:22:57 +11002463 log_init(argv[0], log_level, SYSLOG_FACILITY_USER, 1);
Darren Tucker06930c72003-12-31 11:34:51 +11002464
Damien Miller0a80ca12010-02-27 07:55:05 +11002465 argv += optind;
2466 argc -= optind;
2467
2468 if (ca_key_path != NULL) {
Damien Millerf3747bf2013-01-18 11:44:04 +11002469 if (argc < 1 && !gen_krl) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00002470 error("Too few arguments.");
Damien Miller0a80ca12010-02-27 07:55:05 +11002471 usage();
2472 }
Damien Millerf3747bf2013-01-18 11:44:04 +11002473 } else if (argc > 0 && !gen_krl && !check_krl) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00002474 error("Too many arguments.");
Damien Miller95def091999-11-25 00:26:21 +11002475 usage();
2476 }
2477 if (change_passphrase && change_comment) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00002478 error("Can only have one of -p and -c.");
Damien Miller95def091999-11-25 00:26:21 +11002479 usage();
2480 }
Darren Tucker0f7e9102008-06-08 12:54:29 +10002481 if (print_fingerprint && (delete_host || hash_hosts)) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00002482 error("Cannot use -l with -H or -R.");
Darren Tucker0f7e9102008-06-08 12:54:29 +10002483 usage();
2484 }
Damien Millerf3747bf2013-01-18 11:44:04 +11002485 if (gen_krl) {
2486 do_gen_krl(pw, update_krl, argc, argv);
2487 return (0);
2488 }
2489 if (check_krl) {
2490 do_check_krl(pw, argc, argv);
2491 return (0);
2492 }
Damien Miller0a80ca12010-02-27 07:55:05 +11002493 if (ca_key_path != NULL) {
2494 if (cert_key_id == NULL)
2495 fatal("Must specify key id (-I) when certifying");
2496 do_ca_sign(pw, argc, argv);
2497 }
Damien Millerf2b70ca2010-03-05 07:39:35 +11002498 if (show_cert)
2499 do_show_cert(pw);
Damien Miller4b42d7f2005-03-01 21:48:35 +11002500 if (delete_host || hash_hosts || find_host)
2501 do_known_hosts(pw, rr_hostname);
Damien Millerec77c952013-01-09 15:58:00 +11002502 if (pkcs11provider != NULL)
2503 do_download(pw);
Ben Lindstrom8fd372b2001-03-12 03:02:17 +00002504 if (print_fingerprint || print_bubblebabble)
Damien Miller95def091999-11-25 00:26:21 +11002505 do_fingerprint(pw);
Damien Miller95def091999-11-25 00:26:21 +11002506 if (change_passphrase)
2507 do_change_passphrase(pw);
Damien Miller4a10d2e2002-03-11 22:53:29 +11002508 if (change_comment)
2509 do_change_comment(pw);
Damien Miller1f0311c2014-05-15 14:24:09 +10002510#ifdef WITH_OPENSSL
Damien Miller44b25042010-07-02 13:35:01 +10002511 if (convert_to)
2512 do_convert_to(pw);
2513 if (convert_from)
2514 do_convert_from(pw);
Damien Miller1f0311c2014-05-15 14:24:09 +10002515#endif
Damien Millereba71ba2000-04-29 23:57:08 +10002516 if (print_public)
2517 do_print_public(pw);
Damien Miller4b42d7f2005-03-01 21:48:35 +11002518 if (rr_hostname != NULL) {
Damien Millercb314822006-03-26 13:48:01 +11002519 unsigned int n = 0;
2520
2521 if (have_identity) {
2522 n = do_print_resource_record(pw,
2523 identity_file, rr_hostname);
djm@openbsd.org3038a192015-04-17 13:19:22 +00002524 if (n == 0)
2525 fatal("%s: %s", identity_file, strerror(errno));
Damien Millercb314822006-03-26 13:48:01 +11002526 exit(0);
2527 } else {
2528
2529 n += do_print_resource_record(pw,
2530 _PATH_HOST_RSA_KEY_FILE, rr_hostname);
2531 n += do_print_resource_record(pw,
2532 _PATH_HOST_DSA_KEY_FILE, rr_hostname);
Damien Miller3bde12a2012-06-20 21:51:11 +10002533 n += do_print_resource_record(pw,
2534 _PATH_HOST_ECDSA_KEY_FILE, rr_hostname);
Damien Miller16cd3922014-05-15 13:45:58 +10002535 n += do_print_resource_record(pw,
2536 _PATH_HOST_ED25519_KEY_FILE, rr_hostname);
Damien Millercb314822006-03-26 13:48:01 +11002537 if (n == 0)
2538 fatal("no keys found.");
2539 exit(0);
2540 }
Damien Miller37876e92003-05-15 10:19:46 +10002541 }
Damien Miller95def091999-11-25 00:26:21 +11002542
Darren Tucker019cefe2003-08-02 22:40:07 +10002543 if (do_gen_candidates) {
2544 FILE *out = fopen(out_file, "w");
Damien Miller787b2ec2003-11-21 23:56:47 +11002545
Darren Tucker019cefe2003-08-02 22:40:07 +10002546 if (out == NULL) {
2547 error("Couldn't open modulus candidate file \"%s\": %s",
2548 out_file, strerror(errno));
2549 return (1);
2550 }
Damien Miller3f54a9f2005-11-05 14:52:18 +11002551 if (bits == 0)
2552 bits = DEFAULT_BITS;
Darren Tucker019cefe2003-08-02 22:40:07 +10002553 if (gen_candidates(out, memory, bits, start) != 0)
Damien Miller15d72a02005-11-05 15:07:33 +11002554 fatal("modulus candidate generation failed");
Darren Tucker019cefe2003-08-02 22:40:07 +10002555
2556 return (0);
2557 }
2558
2559 if (do_screen_candidates) {
2560 FILE *in;
Damien Miller78d22712013-02-12 11:03:36 +11002561 FILE *out = fopen(out_file, "a");
Darren Tucker019cefe2003-08-02 22:40:07 +10002562
2563 if (have_identity && strcmp(identity_file, "-") != 0) {
2564 if ((in = fopen(identity_file, "r")) == NULL) {
2565 fatal("Couldn't open modulus candidate "
Damien Millera8e06ce2003-11-21 23:48:55 +11002566 "file \"%s\": %s", identity_file,
Darren Tucker019cefe2003-08-02 22:40:07 +10002567 strerror(errno));
2568 }
2569 } else
2570 in = stdin;
2571
2572 if (out == NULL) {
2573 fatal("Couldn't open moduli file \"%s\": %s",
2574 out_file, strerror(errno));
2575 }
Damien Millerbcd00ab2013-12-07 10:41:55 +11002576 if (prime_test(in, out, rounds == 0 ? 100 : rounds,
2577 generator_wanted, checkpoint,
Damien Millerdfceafe2012-07-06 13:44:19 +10002578 start_lineno, lines_to_process) != 0)
Damien Miller15d72a02005-11-05 15:07:33 +11002579 fatal("modulus screening failed");
Darren Tuckerf4220e62003-08-21 16:44:07 +10002580 return (0);
Darren Tucker019cefe2003-08-02 22:40:07 +10002581 }
2582
Damien Miller58f1baf2011-05-05 14:06:15 +10002583 if (gen_all_hostkeys) {
2584 do_gen_all_hostkeys(pw);
2585 return (0);
2586 }
2587
Damien Millerf14be5c2005-11-05 15:15:49 +11002588 if (key_type_name == NULL)
djm@openbsd.orgd1958792015-05-28 04:40:13 +00002589 key_type_name = DEFAULT_KEY_TYPE_NAME;
Damien Millerf14be5c2005-11-05 15:15:49 +11002590
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002591 type = sshkey_type_from_name(key_type_name);
djm@openbsd.org7efb4552015-01-18 13:22:28 +00002592 type_bits_valid(type, key_type_name, &bits);
Damien Miller58f1baf2011-05-05 14:06:15 +10002593
Darren Tucker3af2ac52005-11-29 13:10:24 +11002594 if (!quiet)
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002595 printf("Generating public/private %s key pair.\n",
2596 key_type_name);
djm@openbsd.org3038a192015-04-17 13:19:22 +00002597 if ((r = sshkey_generate(type, bits, &private)) != 0)
2598 fatal("key_generate failed");
2599 if ((r = sshkey_from_private(private, &public)) != 0)
2600 fatal("key_from_private failed: %s\n", ssh_err(r));
Damien Miller95def091999-11-25 00:26:21 +11002601
2602 if (!have_identity)
2603 ask_filename(pw, "Enter file in which to save the key");
2604
Damien Miller788f2122005-11-05 15:14:59 +11002605 /* Create ~/.ssh directory if it doesn't already exist. */
Damien Miller50af79b2010-05-10 11:52:00 +10002606 snprintf(dotsshdir, sizeof dotsshdir, "%s/%s",
2607 pw->pw_dir, _PATH_SSH_USER_DIR);
2608 if (strstr(identity_file, dotsshdir) != NULL) {
2609 if (stat(dotsshdir, &st) < 0) {
2610 if (errno != ENOENT) {
2611 error("Could not stat %s: %s", dotsshdir,
2612 strerror(errno));
2613 } else if (mkdir(dotsshdir, 0700) < 0) {
2614 error("Could not create directory '%s': %s",
2615 dotsshdir, strerror(errno));
2616 } else if (!quiet)
2617 printf("Created directory '%s'.\n", dotsshdir);
2618 }
Damien Miller95def091999-11-25 00:26:21 +11002619 }
2620 /* If the file already exists, ask the user to confirm. */
2621 if (stat(identity_file, &st) >= 0) {
2622 char yesno[3];
2623 printf("%s already exists.\n", identity_file);
2624 printf("Overwrite (y/n)? ");
2625 fflush(stdout);
2626 if (fgets(yesno, sizeof(yesno), stdin) == NULL)
2627 exit(1);
2628 if (yesno[0] != 'y' && yesno[0] != 'Y')
2629 exit(1);
2630 }
2631 /* Ask for a passphrase (twice). */
2632 if (identity_passphrase)
2633 passphrase1 = xstrdup(identity_passphrase);
2634 else if (identity_new_passphrase)
2635 passphrase1 = xstrdup(identity_new_passphrase);
2636 else {
2637passphrase_again:
2638 passphrase1 =
Ben Lindstrom949974b2001-06-25 05:20:31 +00002639 read_passphrase("Enter passphrase (empty for no "
2640 "passphrase): ", RP_ALLOW_STDIN);
2641 passphrase2 = read_passphrase("Enter same passphrase again: ",
2642 RP_ALLOW_STDIN);
Damien Miller95def091999-11-25 00:26:21 +11002643 if (strcmp(passphrase1, passphrase2) != 0) {
Ben Lindstrom949974b2001-06-25 05:20:31 +00002644 /*
2645 * The passphrases do not match. Clear them and
2646 * retry.
2647 */
Damien Millera5103f42014-02-04 11:20:14 +11002648 explicit_bzero(passphrase1, strlen(passphrase1));
2649 explicit_bzero(passphrase2, strlen(passphrase2));
Darren Tuckera627d422013-06-02 07:31:17 +10002650 free(passphrase1);
2651 free(passphrase2);
Damien Miller95def091999-11-25 00:26:21 +11002652 printf("Passphrases do not match. Try again.\n");
2653 goto passphrase_again;
2654 }
2655 /* Clear the other copy of the passphrase. */
Damien Millera5103f42014-02-04 11:20:14 +11002656 explicit_bzero(passphrase2, strlen(passphrase2));
Darren Tuckera627d422013-06-02 07:31:17 +10002657 free(passphrase2);
Damien Miller95def091999-11-25 00:26:21 +11002658 }
2659
Damien Miller95def091999-11-25 00:26:21 +11002660 if (identity_comment) {
2661 strlcpy(comment, identity_comment, sizeof(comment));
2662 } else {
Darren Tuckere15fb092008-11-11 16:31:43 +11002663 /* Create default comment field for the passphrase. */
Damien Miller95def091999-11-25 00:26:21 +11002664 snprintf(comment, sizeof comment, "%s@%s", pw->pw_name, hostname);
2665 }
2666
2667 /* Save the key with the given passphrase and comment. */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002668 if ((r = sshkey_save_private(private, identity_file, passphrase1,
2669 comment, use_new_format, new_format_cipher, rounds)) != 0) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00002670 error("Saving key \"%s\" failed: %s",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002671 identity_file, ssh_err(r));
Damien Millera5103f42014-02-04 11:20:14 +11002672 explicit_bzero(passphrase1, strlen(passphrase1));
Darren Tuckera627d422013-06-02 07:31:17 +10002673 free(passphrase1);
Damien Miller95def091999-11-25 00:26:21 +11002674 exit(1);
2675 }
2676 /* Clear the passphrase. */
Damien Millera5103f42014-02-04 11:20:14 +11002677 explicit_bzero(passphrase1, strlen(passphrase1));
Darren Tuckera627d422013-06-02 07:31:17 +10002678 free(passphrase1);
Damien Miller95def091999-11-25 00:26:21 +11002679
2680 /* Clear the private key and the random number generator. */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002681 sshkey_free(private);
Damien Miller95def091999-11-25 00:26:21 +11002682
2683 if (!quiet)
2684 printf("Your identification has been saved in %s.\n", identity_file);
2685
Damien Miller95def091999-11-25 00:26:21 +11002686 strlcat(identity_file, ".pub", sizeof(identity_file));
djm@openbsd.org3038a192015-04-17 13:19:22 +00002687 if ((fd = open(identity_file, O_WRONLY|O_CREAT|O_TRUNC, 0644)) == -1)
2688 fatal("Unable to save public key to %s: %s",
2689 identity_file, strerror(errno));
2690 if ((f = fdopen(fd, "w")) == NULL)
2691 fatal("fdopen %s failed: %s", identity_file, strerror(errno));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002692 if ((r = sshkey_write(public, f)) != 0)
djm@openbsd.org3038a192015-04-17 13:19:22 +00002693 error("write key failed: %s", ssh_err(r));
Damien Millereba71ba2000-04-29 23:57:08 +10002694 fprintf(f, " %s\n", comment);
Damien Miller95def091999-11-25 00:26:21 +11002695 fclose(f);
2696
2697 if (!quiet) {
djm@openbsd.org9ce86c92015-01-28 22:36:00 +00002698 fp = sshkey_fingerprint(public, fingerprint_hash,
djm@openbsd.org56d1c832014-12-21 22:27:55 +00002699 SSH_FP_DEFAULT);
djm@openbsd.org9ce86c92015-01-28 22:36:00 +00002700 ra = sshkey_fingerprint(public, fingerprint_hash,
Darren Tucker9c16ac92008-06-13 04:40:35 +10002701 SSH_FP_RANDOMART);
djm@openbsd.org9ce86c92015-01-28 22:36:00 +00002702 if (fp == NULL || ra == NULL)
2703 fatal("sshkey_fingerprint failed");
Damien Millereba71ba2000-04-29 23:57:08 +10002704 printf("Your public key has been saved in %s.\n",
2705 identity_file);
Damien Miller95def091999-11-25 00:26:21 +11002706 printf("The key fingerprint is:\n");
Ben Lindstromcfccef92001-03-13 04:57:58 +00002707 printf("%s %s\n", fp, comment);
Darren Tucker9c16ac92008-06-13 04:40:35 +10002708 printf("The key's randomart image is:\n");
2709 printf("%s\n", ra);
Darren Tuckera627d422013-06-02 07:31:17 +10002710 free(ra);
2711 free(fp);
Damien Miller95def091999-11-25 00:26:21 +11002712 }
Damien Millereba71ba2000-04-29 23:57:08 +10002713
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002714 sshkey_free(public);
Damien Miller95def091999-11-25 00:26:21 +11002715 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002716}