blob: 3c2bd964a56d0a359e380fc59bf709d010332417 [file] [log] [blame]
djm@openbsd.org4739e8d2015-05-21 12:01:19 +00001/* $OpenBSD: ssh-keygen.c,v 1.272 2015/05/21 12:01:19 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
Damien Miller3f54a9f2005-11-05 14:52:18 +110061/* Number of bits in the RSA/DSA key. This value can be set on the command line. */
62#define DEFAULT_BITS 2048
63#define DEFAULT_BITS_DSA 1024
Damien Miller6e9f6802010-09-10 11:17:38 +100064#define DEFAULT_BITS_ECDSA 256
Damien Miller3f54a9f2005-11-05 14:52:18 +110065u_int32_t bits = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100066
Damien Miller5428f641999-11-25 11:54:57 +110067/*
68 * Flag indicating that we just want to change the passphrase. This can be
69 * set on the command line.
70 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100071int change_passphrase = 0;
72
Damien Miller5428f641999-11-25 11:54:57 +110073/*
74 * Flag indicating that we just want to change the comment. This can be set
75 * on the command line.
76 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100077int change_comment = 0;
78
79int quiet = 0;
80
Darren Tucker35c45532008-06-13 04:43:15 +100081int log_level = SYSLOG_LEVEL_INFO;
82
Damien Miller4b42d7f2005-03-01 21:48:35 +110083/* Flag indicating that we want to hash a known_hosts file */
84int hash_hosts = 0;
85/* Flag indicating that we want lookup a host in known_hosts file */
86int find_host = 0;
87/* Flag indicating that we want to delete a host from a known_hosts file */
88int delete_host = 0;
89
Damien Millerf2b70ca2010-03-05 07:39:35 +110090/* Flag indicating that we want to show the contents of a certificate */
91int show_cert = 0;
92
Damien Miller10f6f6b1999-11-17 17:29:08 +110093/* Flag indicating that we just want to see the key fingerprint */
94int print_fingerprint = 0;
Ben Lindstrom8fd372b2001-03-12 03:02:17 +000095int print_bubblebabble = 0;
Damien Miller10f6f6b1999-11-17 17:29:08 +110096
djm@openbsd.org56d1c832014-12-21 22:27:55 +000097/* Hash algorithm to use for fingerprints. */
98int fingerprint_hash = SSH_FP_HASH_DEFAULT;
99
Damien Miller431f66b1999-11-21 18:31:57 +1100100/* The identity file name, given on the command line or entered by the user. */
101char identity_file[1024];
102int have_identity = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000103
104/* This is set to the passphrase if given on the command line. */
105char *identity_passphrase = NULL;
106
107/* This is set to the new passphrase if given on the command line. */
108char *identity_new_passphrase = NULL;
109
110/* This is set to the new comment if given on the command line. */
111char *identity_comment = NULL;
112
Damien Miller0a80ca12010-02-27 07:55:05 +1100113/* Path to CA key when certifying keys. */
114char *ca_key_path = NULL;
115
Damien Miller4e270b02010-04-16 15:56:21 +1000116/* Certificate serial number */
Damien Miller55aca022012-12-03 11:25:30 +1100117unsigned long long cert_serial = 0;
Damien Miller4e270b02010-04-16 15:56:21 +1000118
Damien Miller0a80ca12010-02-27 07:55:05 +1100119/* Key type when certifying */
120u_int cert_key_type = SSH2_CERT_TYPE_USER;
121
122/* "key ID" of signed key */
123char *cert_key_id = NULL;
124
125/* Comma-separated list of principal names for certifying keys */
126char *cert_principals = NULL;
127
128/* Validity period for certificates */
129u_int64_t cert_valid_from = 0;
130u_int64_t cert_valid_to = ~0ULL;
131
Damien Miller4e270b02010-04-16 15:56:21 +1000132/* Certificate options */
Damien Millerd0e4a8e2010-05-21 14:58:32 +1000133#define CERTOPT_X_FWD (1)
134#define CERTOPT_AGENT_FWD (1<<1)
135#define CERTOPT_PORT_FWD (1<<2)
136#define CERTOPT_PTY (1<<3)
137#define CERTOPT_USER_RC (1<<4)
138#define CERTOPT_DEFAULT (CERTOPT_X_FWD|CERTOPT_AGENT_FWD| \
139 CERTOPT_PORT_FWD|CERTOPT_PTY|CERTOPT_USER_RC)
140u_int32_t certflags_flags = CERTOPT_DEFAULT;
141char *certflags_command = NULL;
142char *certflags_src_addr = NULL;
Damien Miller0a80ca12010-02-27 07:55:05 +1100143
Damien Miller44b25042010-07-02 13:35:01 +1000144/* Conversion to/from various formats */
145int convert_to = 0;
146int convert_from = 0;
147enum {
148 FMT_RFC4716,
149 FMT_PKCS8,
150 FMT_PEM
151} convert_format = FMT_RFC4716;
Damien Millereba71ba2000-04-29 23:57:08 +1000152int print_public = 0;
Damien Miller37876e92003-05-15 10:19:46 +1000153int print_generic = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100154
Damien Millera41c8b12002-01-22 23:05:08 +1100155char *key_type_name = NULL;
Damien Millereba71ba2000-04-29 23:57:08 +1000156
Damien Miller757f34e2010-08-05 13:05:31 +1000157/* Load key from this PKCS#11 provider */
158char *pkcs11provider = NULL;
Damien Miller44b25042010-07-02 13:35:01 +1000159
Damien Millerbcd00ab2013-12-07 10:41:55 +1100160/* Use new OpenSSH private key format when writing SSH2 keys instead of PEM */
161int use_new_format = 0;
162
163/* Cipher for new-format private keys */
164char *new_format_cipher = NULL;
165
166/*
167 * Number of KDF rounds to derive new format keys /
168 * number of primality trials when screening moduli.
169 */
170int rounds = 0;
171
Damien Miller431f66b1999-11-21 18:31:57 +1100172/* argv0 */
173extern char *__progname;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000174
Damien Millere5c0d522014-07-03 21:24:19 +1000175char hostname[NI_MAXHOST];
Damien Millereba71ba2000-04-29 23:57:08 +1000176
Darren Tucker770fc012004-05-13 16:24:32 +1000177/* moduli.c */
Damien Millerb089fb52005-05-26 12:16:18 +1000178int gen_candidates(FILE *, u_int32_t, u_int32_t, BIGNUM *);
Damien Millerdfceafe2012-07-06 13:44:19 +1000179int prime_test(FILE *, FILE *, u_int32_t, u_int32_t, char *, unsigned long,
180 unsigned long);
Darren Tucker770fc012004-05-13 16:24:32 +1000181
Ben Lindstrombba81212001-06-25 05:01:22 +0000182static void
djm@openbsd.org7efb4552015-01-18 13:22:28 +0000183type_bits_valid(int type, const char *name, u_int32_t *bitsp)
Damien Miller58f1baf2011-05-05 14:06:15 +1000184{
Damien Miller72ef7c12015-01-15 02:21:31 +1100185#ifdef WITH_OPENSSL
djm@openbsd.org734226b2015-04-27 01:52:30 +0000186 u_int maxbits, nid;
Damien Miller72ef7c12015-01-15 02:21:31 +1100187#endif
Damien Miller58f1baf2011-05-05 14:06:15 +1000188
djm@openbsd.org3038a192015-04-17 13:19:22 +0000189 if (type == KEY_UNSPEC)
190 fatal("unknown key type %s", key_type_name);
Damien Miller884b63a2011-05-05 14:14:52 +1000191 if (*bitsp == 0) {
Damien Miller773dda22015-01-30 23:10:17 +1100192#ifdef WITH_OPENSSL
Damien Miller58f1baf2011-05-05 14:06:15 +1000193 if (type == KEY_DSA)
Damien Miller884b63a2011-05-05 14:14:52 +1000194 *bitsp = DEFAULT_BITS_DSA;
djm@openbsd.org7efb4552015-01-18 13:22:28 +0000195 else if (type == KEY_ECDSA) {
196 if (name != NULL &&
197 (nid = sshkey_ecdsa_nid_from_name(name)) > 0)
198 *bitsp = sshkey_curve_nid_to_bits(nid);
199 if (*bitsp == 0)
200 *bitsp = DEFAULT_BITS_ECDSA;
Damien Miller773dda22015-01-30 23:10:17 +1100201 } else
202#endif
Damien Miller884b63a2011-05-05 14:14:52 +1000203 *bitsp = DEFAULT_BITS;
Damien Miller58f1baf2011-05-05 14:06:15 +1000204 }
Damien Miller72ef7c12015-01-15 02:21:31 +1100205#ifdef WITH_OPENSSL
Damien Miller58f1baf2011-05-05 14:06:15 +1000206 maxbits = (type == KEY_DSA) ?
207 OPENSSL_DSA_MAX_MODULUS_BITS : OPENSSL_RSA_MAX_MODULUS_BITS;
djm@openbsd.org3038a192015-04-17 13:19:22 +0000208 if (*bitsp > maxbits)
209 fatal("key bits exceeds maximum %d", maxbits);
Damien Miller884b63a2011-05-05 14:14:52 +1000210 if (type == KEY_DSA && *bitsp != 1024)
Damien Miller58f1baf2011-05-05 14:06:15 +1000211 fatal("DSA keys must be 1024 bits");
Damien Miller5be9d9e2013-12-07 11:24:01 +1100212 else if (type != KEY_ECDSA && type != KEY_ED25519 && *bitsp < 768)
Damien Miller58f1baf2011-05-05 14:06:15 +1000213 fatal("Key must at least be 768 bits");
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000214 else if (type == KEY_ECDSA && sshkey_ecdsa_bits_to_nid(*bitsp) == -1)
Damien Miller58f1baf2011-05-05 14:06:15 +1000215 fatal("Invalid ECDSA key length - valid lengths are "
216 "256, 384 or 521 bits");
Damien Miller1f0311c2014-05-15 14:24:09 +1000217#endif
Damien Miller58f1baf2011-05-05 14:06:15 +1000218}
219
220static void
Damien Miller431f66b1999-11-21 18:31:57 +1100221ask_filename(struct passwd *pw, const char *prompt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000222{
Damien Miller95def091999-11-25 00:26:21 +1100223 char buf[1024];
Damien Millere39cacc2000-11-29 12:18:44 +1100224 char *name = NULL;
225
Damien Miller993dd552002-02-19 15:22:47 +1100226 if (key_type_name == NULL)
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000227 name = _PATH_SSH_CLIENT_ID_RSA;
Damien Miller90967402006-03-26 14:07:26 +1100228 else {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000229 switch (sshkey_type_from_name(key_type_name)) {
Damien Miller993dd552002-02-19 15:22:47 +1100230 case KEY_RSA1:
231 name = _PATH_SSH_CLIENT_IDENTITY;
232 break;
Damien Miller4e270b02010-04-16 15:56:21 +1000233 case KEY_DSA_CERT:
234 case KEY_DSA_CERT_V00:
Damien Miller993dd552002-02-19 15:22:47 +1100235 case KEY_DSA:
236 name = _PATH_SSH_CLIENT_ID_DSA;
237 break;
Damien Millerdd190dd2010-11-11 14:17:02 +1100238#ifdef OPENSSL_HAS_ECC
Damien Millereb8b60e2010-08-31 22:41:14 +1000239 case KEY_ECDSA_CERT:
240 case KEY_ECDSA:
241 name = _PATH_SSH_CLIENT_ID_ECDSA;
242 break;
Damien Millerdd190dd2010-11-11 14:17:02 +1100243#endif
Damien Miller4e270b02010-04-16 15:56:21 +1000244 case KEY_RSA_CERT:
245 case KEY_RSA_CERT_V00:
Damien Miller993dd552002-02-19 15:22:47 +1100246 case KEY_RSA:
247 name = _PATH_SSH_CLIENT_ID_RSA;
248 break;
Damien Miller5be9d9e2013-12-07 11:24:01 +1100249 case KEY_ED25519:
250 case KEY_ED25519_CERT:
251 name = _PATH_SSH_CLIENT_ID_ED25519;
252 break;
Damien Miller993dd552002-02-19 15:22:47 +1100253 default:
djm@openbsd.org3038a192015-04-17 13:19:22 +0000254 fatal("bad key type");
Damien Miller993dd552002-02-19 15:22:47 +1100255 }
Damien Miller90967402006-03-26 14:07:26 +1100256 }
djm@openbsd.org3038a192015-04-17 13:19:22 +0000257 snprintf(identity_file, sizeof(identity_file),
258 "%s/%s", pw->pw_dir, name);
259 printf("%s (%s): ", prompt, identity_file);
260 fflush(stdout);
Damien Miller95def091999-11-25 00:26:21 +1100261 if (fgets(buf, sizeof(buf), stdin) == NULL)
262 exit(1);
Damien Miller14b017d2007-09-17 16:09:15 +1000263 buf[strcspn(buf, "\n")] = '\0';
Damien Miller95def091999-11-25 00:26:21 +1100264 if (strcmp(buf, "") != 0)
265 strlcpy(identity_file, buf, sizeof(identity_file));
266 have_identity = 1;
Damien Miller10f6f6b1999-11-17 17:29:08 +1100267}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000268
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000269static struct sshkey *
Ben Lindstromd78ae762001-06-05 20:35:09 +0000270load_identity(char *filename)
Damien Millereba71ba2000-04-29 23:57:08 +1000271{
Ben Lindstromd0fca422001-03-26 13:44:06 +0000272 char *pass;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000273 struct sshkey *prv;
274 int r;
Ben Lindstromd0fca422001-03-26 13:44:06 +0000275
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000276 if ((r = sshkey_load_private(filename, "", &prv, NULL)) == 0)
277 return prv;
278 if (r != SSH_ERR_KEY_WRONG_PASSPHRASE)
279 fatal("Load key \"%s\": %s", filename, ssh_err(r));
280 if (identity_passphrase)
281 pass = xstrdup(identity_passphrase);
282 else
283 pass = read_passphrase("Enter passphrase: ", RP_ALLOW_STDIN);
284 r = sshkey_load_private(filename, pass, &prv, NULL);
285 explicit_bzero(pass, strlen(pass));
286 free(pass);
287 if (r != 0)
288 fatal("Load key \"%s\": %s", filename, ssh_err(r));
Ben Lindstromd0fca422001-03-26 13:44:06 +0000289 return prv;
Damien Millereba71ba2000-04-29 23:57:08 +1000290}
291
Damien Miller874d77b2000-10-14 16:23:11 +1100292#define SSH_COM_PUBLIC_BEGIN "---- BEGIN SSH2 PUBLIC KEY ----"
Ben Lindstromcb72e4f2002-06-21 00:41:51 +0000293#define SSH_COM_PUBLIC_END "---- END SSH2 PUBLIC KEY ----"
Damien Miller874d77b2000-10-14 16:23:11 +1100294#define SSH_COM_PRIVATE_BEGIN "---- BEGIN SSH2 ENCRYPTED PRIVATE KEY ----"
Kevin Stevesef4eea92001-02-05 12:42:17 +0000295#define SSH_COM_PRIVATE_KEY_MAGIC 0x3f6ff9eb
Damien Millereba71ba2000-04-29 23:57:08 +1000296
Damien Miller1f0311c2014-05-15 14:24:09 +1000297#ifdef WITH_OPENSSL
Ben Lindstrombba81212001-06-25 05:01:22 +0000298static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000299do_convert_to_ssh2(struct passwd *pw, struct sshkey *k)
Damien Millereba71ba2000-04-29 23:57:08 +1000300{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000301 size_t len;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000302 u_char *blob;
Darren Tuckerd04758d2010-01-12 19:41:57 +1100303 char comment[61];
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000304 int r;
Damien Millereba71ba2000-04-29 23:57:08 +1000305
djm@openbsd.org3038a192015-04-17 13:19:22 +0000306 if (k->type == KEY_RSA1)
307 fatal("version 1 keys are not supported");
308 if ((r = sshkey_to_blob(k, &blob, &len)) != 0)
309 fatal("key_to_blob failed: %s", ssh_err(r));
Darren Tuckerd04758d2010-01-12 19:41:57 +1100310 /* Comment + surrounds must fit into 72 chars (RFC 4716 sec 3.3) */
311 snprintf(comment, sizeof(comment),
312 "%u-bit %s, converted by %s@%s from OpenSSH",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000313 sshkey_size(k), sshkey_type(k),
Damien Millereba71ba2000-04-29 23:57:08 +1000314 pw->pw_name, hostname);
Darren Tuckerd04758d2010-01-12 19:41:57 +1100315
316 fprintf(stdout, "%s\n", SSH_COM_PUBLIC_BEGIN);
317 fprintf(stdout, "Comment: \"%s\"\n", comment);
Damien Millereba71ba2000-04-29 23:57:08 +1000318 dump_base64(stdout, blob, len);
Damien Miller874d77b2000-10-14 16:23:11 +1100319 fprintf(stdout, "%s\n", SSH_COM_PUBLIC_END);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000320 sshkey_free(k);
Darren Tuckera627d422013-06-02 07:31:17 +1000321 free(blob);
Damien Millereba71ba2000-04-29 23:57:08 +1000322 exit(0);
323}
324
Ben Lindstrombba81212001-06-25 05:01:22 +0000325static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000326do_convert_to_pkcs8(struct sshkey *k)
Damien Miller44b25042010-07-02 13:35:01 +1000327{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000328 switch (sshkey_type_plain(k->type)) {
Damien Millera563cce2012-04-22 11:07:28 +1000329 case KEY_RSA1:
Damien Miller44b25042010-07-02 13:35:01 +1000330 case KEY_RSA:
331 if (!PEM_write_RSA_PUBKEY(stdout, k->rsa))
332 fatal("PEM_write_RSA_PUBKEY failed");
333 break;
334 case KEY_DSA:
335 if (!PEM_write_DSA_PUBKEY(stdout, k->dsa))
336 fatal("PEM_write_DSA_PUBKEY failed");
337 break;
Damien Miller6af914a2010-09-10 11:39:26 +1000338#ifdef OPENSSL_HAS_ECC
Damien Millereb8b60e2010-08-31 22:41:14 +1000339 case KEY_ECDSA:
340 if (!PEM_write_EC_PUBKEY(stdout, k->ecdsa))
341 fatal("PEM_write_EC_PUBKEY failed");
342 break;
Damien Miller6af914a2010-09-10 11:39:26 +1000343#endif
Damien Miller44b25042010-07-02 13:35:01 +1000344 default:
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000345 fatal("%s: unsupported key type %s", __func__, sshkey_type(k));
Damien Miller44b25042010-07-02 13:35:01 +1000346 }
347 exit(0);
348}
349
350static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000351do_convert_to_pem(struct sshkey *k)
Damien Miller44b25042010-07-02 13:35:01 +1000352{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000353 switch (sshkey_type_plain(k->type)) {
Damien Millera563cce2012-04-22 11:07:28 +1000354 case KEY_RSA1:
Damien Miller44b25042010-07-02 13:35:01 +1000355 case KEY_RSA:
356 if (!PEM_write_RSAPublicKey(stdout, k->rsa))
357 fatal("PEM_write_RSAPublicKey failed");
358 break;
359#if notyet /* OpenSSH 0.9.8 lacks this function */
360 case KEY_DSA:
361 if (!PEM_write_DSAPublicKey(stdout, k->dsa))
362 fatal("PEM_write_DSAPublicKey failed");
363 break;
364#endif
Damien Millereb8b60e2010-08-31 22:41:14 +1000365 /* XXX ECDSA? */
Damien Miller44b25042010-07-02 13:35:01 +1000366 default:
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000367 fatal("%s: unsupported key type %s", __func__, sshkey_type(k));
Damien Miller44b25042010-07-02 13:35:01 +1000368 }
369 exit(0);
370}
371
372static void
373do_convert_to(struct passwd *pw)
374{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000375 struct sshkey *k;
Damien Miller44b25042010-07-02 13:35:01 +1000376 struct stat st;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000377 int r;
Damien Miller44b25042010-07-02 13:35:01 +1000378
379 if (!have_identity)
380 ask_filename(pw, "Enter file in which the key is");
381 if (stat(identity_file, &st) < 0)
382 fatal("%s: %s: %s", __progname, identity_file, strerror(errno));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000383 if ((r = sshkey_load_public(identity_file, &k, NULL)) != 0)
384 k = load_identity(identity_file);
Damien Miller44b25042010-07-02 13:35:01 +1000385 switch (convert_format) {
386 case FMT_RFC4716:
387 do_convert_to_ssh2(pw, k);
388 break;
389 case FMT_PKCS8:
390 do_convert_to_pkcs8(k);
391 break;
392 case FMT_PEM:
393 do_convert_to_pem(k);
394 break;
395 default:
396 fatal("%s: unknown key format %d", __func__, convert_format);
397 }
398 exit(0);
399}
400
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000401/*
402 * This is almost exactly the bignum1 encoding, but with 32 bit for length
403 * instead of 16.
404 */
Damien Miller44b25042010-07-02 13:35:01 +1000405static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000406buffer_get_bignum_bits(struct sshbuf *b, BIGNUM *value)
Damien Miller874d77b2000-10-14 16:23:11 +1100407{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000408 u_int bytes, bignum_bits;
409 int r;
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000410
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000411 if ((r = sshbuf_get_u32(b, &bignum_bits)) != 0)
412 fatal("%s: buffer error: %s", __func__, ssh_err(r));
413 bytes = (bignum_bits + 7) / 8;
414 if (sshbuf_len(b) < bytes)
415 fatal("%s: input buffer too small: need %d have %zu",
416 __func__, bytes, sshbuf_len(b));
417 if (BN_bin2bn(sshbuf_ptr(b), bytes, value) == NULL)
418 fatal("%s: BN_bin2bn failed", __func__);
419 if ((r = sshbuf_consume(b, bytes)) != 0)
420 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Miller874d77b2000-10-14 16:23:11 +1100421}
422
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000423static struct sshkey *
Ben Lindstrom90fd8142002-02-26 18:09:42 +0000424do_convert_private_ssh2_from_blob(u_char *blob, u_int blen)
Damien Miller874d77b2000-10-14 16:23:11 +1100425{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000426 struct sshbuf *b;
427 struct sshkey *key = NULL;
Damien Miller874d77b2000-10-14 16:23:11 +1100428 char *type, *cipher;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000429 u_char e1, e2, e3, *sig = NULL, data[] = "abcde12345";
430 int r, rlen, ktype;
431 u_int magic, i1, i2, i3, i4;
432 size_t slen;
Ben Lindstrome586c4c2001-06-25 05:04:58 +0000433 u_long e;
Damien Miller874d77b2000-10-14 16:23:11 +1100434
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000435 if ((b = sshbuf_from(blob, blen)) == NULL)
436 fatal("%s: sshbuf_from failed", __func__);
437 if ((r = sshbuf_get_u32(b, &magic)) != 0)
438 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Miller874d77b2000-10-14 16:23:11 +1100439
Damien Miller874d77b2000-10-14 16:23:11 +1100440 if (magic != SSH_COM_PRIVATE_KEY_MAGIC) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000441 error("bad magic 0x%x != 0x%x", magic,
442 SSH_COM_PRIVATE_KEY_MAGIC);
443 sshbuf_free(b);
Damien Miller874d77b2000-10-14 16:23:11 +1100444 return NULL;
445 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000446 if ((r = sshbuf_get_u32(b, &i1)) != 0 ||
447 (r = sshbuf_get_cstring(b, &type, NULL)) != 0 ||
448 (r = sshbuf_get_cstring(b, &cipher, NULL)) != 0 ||
449 (r = sshbuf_get_u32(b, &i2)) != 0 ||
450 (r = sshbuf_get_u32(b, &i3)) != 0 ||
451 (r = sshbuf_get_u32(b, &i4)) != 0)
452 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Miller80163902007-01-05 16:30:16 +1100453 debug("ignore (%d %d %d %d)", i1, i2, i3, i4);
Damien Miller874d77b2000-10-14 16:23:11 +1100454 if (strcmp(cipher, "none") != 0) {
455 error("unsupported cipher %s", cipher);
Darren Tuckera627d422013-06-02 07:31:17 +1000456 free(cipher);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000457 sshbuf_free(b);
Darren Tuckera627d422013-06-02 07:31:17 +1000458 free(type);
Damien Miller874d77b2000-10-14 16:23:11 +1100459 return NULL;
460 }
Darren Tuckera627d422013-06-02 07:31:17 +1000461 free(cipher);
Damien Miller874d77b2000-10-14 16:23:11 +1100462
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000463 if (strstr(type, "dsa")) {
464 ktype = KEY_DSA;
465 } else if (strstr(type, "rsa")) {
466 ktype = KEY_RSA;
467 } else {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000468 sshbuf_free(b);
Darren Tuckera627d422013-06-02 07:31:17 +1000469 free(type);
Damien Miller874d77b2000-10-14 16:23:11 +1100470 return NULL;
471 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000472 if ((key = sshkey_new_private(ktype)) == NULL)
473 fatal("key_new_private failed");
Darren Tuckera627d422013-06-02 07:31:17 +1000474 free(type);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000475
476 switch (key->type) {
477 case KEY_DSA:
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000478 buffer_get_bignum_bits(b, key->dsa->p);
479 buffer_get_bignum_bits(b, key->dsa->g);
480 buffer_get_bignum_bits(b, key->dsa->q);
481 buffer_get_bignum_bits(b, key->dsa->pub_key);
482 buffer_get_bignum_bits(b, key->dsa->priv_key);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000483 break;
484 case KEY_RSA:
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000485 if ((r = sshbuf_get_u8(b, &e1)) != 0 ||
486 (e1 < 30 && (r = sshbuf_get_u8(b, &e2)) != 0) ||
487 (e1 < 30 && (r = sshbuf_get_u8(b, &e3)) != 0))
488 fatal("%s: buffer error: %s", __func__, ssh_err(r));
489 e = e1;
Ben Lindstrom34f91882001-06-25 04:47:54 +0000490 debug("e %lx", e);
491 if (e < 30) {
492 e <<= 8;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000493 e += e2;
Ben Lindstrom34f91882001-06-25 04:47:54 +0000494 debug("e %lx", e);
495 e <<= 8;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000496 e += e3;
Ben Lindstrom34f91882001-06-25 04:47:54 +0000497 debug("e %lx", e);
498 }
499 if (!BN_set_word(key->rsa->e, e)) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000500 sshbuf_free(b);
501 sshkey_free(key);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000502 return NULL;
503 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000504 buffer_get_bignum_bits(b, key->rsa->d);
505 buffer_get_bignum_bits(b, key->rsa->n);
506 buffer_get_bignum_bits(b, key->rsa->iqmp);
507 buffer_get_bignum_bits(b, key->rsa->q);
508 buffer_get_bignum_bits(b, key->rsa->p);
509 if ((r = rsa_generate_additional_parameters(key->rsa)) != 0)
510 fatal("generate RSA parameters failed: %s", ssh_err(r));
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000511 break;
512 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000513 rlen = sshbuf_len(b);
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +0000514 if (rlen != 0)
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000515 error("do_convert_private_ssh2_from_blob: "
516 "remaining bytes in key blob %d", rlen);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000517 sshbuf_free(b);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000518
Ben Lindstrome586c4c2001-06-25 05:04:58 +0000519 /* try the key */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000520 if (sshkey_sign(key, &sig, &slen, data, sizeof(data), 0) != 0 ||
521 sshkey_verify(key, sig, slen, data, sizeof(data), 0) != 0) {
522 sshkey_free(key);
523 free(sig);
524 return NULL;
525 }
Darren Tuckera627d422013-06-02 07:31:17 +1000526 free(sig);
Damien Miller874d77b2000-10-14 16:23:11 +1100527 return key;
528}
529
Damien Miller8056a9d2006-03-15 12:05:40 +1100530static int
531get_line(FILE *fp, char *line, size_t len)
532{
533 int c;
534 size_t pos = 0;
535
536 line[0] = '\0';
537 while ((c = fgetc(fp)) != EOF) {
djm@openbsd.org3038a192015-04-17 13:19:22 +0000538 if (pos >= len - 1)
539 fatal("input line too long.");
Damien Miller90967402006-03-26 14:07:26 +1100540 switch (c) {
Damien Miller8056a9d2006-03-15 12:05:40 +1100541 case '\r':
542 c = fgetc(fp);
djm@openbsd.org3038a192015-04-17 13:19:22 +0000543 if (c != EOF && c != '\n' && ungetc(c, fp) == EOF)
544 fatal("unget: %s", strerror(errno));
Damien Miller8056a9d2006-03-15 12:05:40 +1100545 return pos;
546 case '\n':
547 return pos;
548 }
549 line[pos++] = c;
550 line[pos] = '\0';
551 }
Damien Miller6c7439f2007-01-05 16:29:55 +1100552 /* We reached EOF */
553 return -1;
Damien Miller8056a9d2006-03-15 12:05:40 +1100554}
555
Ben Lindstrombba81212001-06-25 05:01:22 +0000556static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000557do_convert_from_ssh2(struct passwd *pw, struct sshkey **k, int *private)
Damien Millereba71ba2000-04-29 23:57:08 +1000558{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000559 int r, blen, escaped = 0;
Ben Lindstrom155b9812002-04-02 20:26:26 +0000560 u_int len;
Damien Miller8056a9d2006-03-15 12:05:40 +1100561 char line[1024];
Ben Lindstrom9e0ddd42001-09-18 05:41:19 +0000562 u_char blob[8096];
Damien Millereba71ba2000-04-29 23:57:08 +1000563 char encoded[8096];
Damien Millereba71ba2000-04-29 23:57:08 +1000564 FILE *fp;
565
Damien Millerba3420a2010-06-26 09:39:07 +1000566 if ((fp = fopen(identity_file, "r")) == NULL)
567 fatal("%s: %s: %s", __progname, identity_file, strerror(errno));
Damien Millereba71ba2000-04-29 23:57:08 +1000568 encoded[0] = '\0';
Damien Miller8056a9d2006-03-15 12:05:40 +1100569 while ((blen = get_line(fp, line, sizeof(line))) != -1) {
Damien Miller746d1a62013-07-18 16:13:02 +1000570 if (blen > 0 && line[blen - 1] == '\\')
Damien Miller30c3d422000-05-09 11:02:59 +1000571 escaped++;
Damien Millereba71ba2000-04-29 23:57:08 +1000572 if (strncmp(line, "----", 4) == 0 ||
573 strstr(line, ": ") != NULL) {
Damien Miller874d77b2000-10-14 16:23:11 +1100574 if (strstr(line, SSH_COM_PRIVATE_BEGIN) != NULL)
Damien Miller44b25042010-07-02 13:35:01 +1000575 *private = 1;
Ben Lindstrome586c4c2001-06-25 05:04:58 +0000576 if (strstr(line, " END ") != NULL) {
577 break;
578 }
Ben Lindstrom30358602001-04-24 16:59:28 +0000579 /* fprintf(stderr, "ignore: %s", line); */
Damien Millereba71ba2000-04-29 23:57:08 +1000580 continue;
581 }
Damien Miller30c3d422000-05-09 11:02:59 +1000582 if (escaped) {
583 escaped--;
Ben Lindstrom30358602001-04-24 16:59:28 +0000584 /* fprintf(stderr, "escaped: %s", line); */
Damien Miller30c3d422000-05-09 11:02:59 +1000585 continue;
Damien Millereba71ba2000-04-29 23:57:08 +1000586 }
Damien Millereba71ba2000-04-29 23:57:08 +1000587 strlcat(encoded, line, sizeof(encoded));
588 }
Ben Lindstrom155b9812002-04-02 20:26:26 +0000589 len = strlen(encoded);
590 if (((len % 4) == 3) &&
591 (encoded[len-1] == '=') &&
592 (encoded[len-2] == '=') &&
593 (encoded[len-3] == '='))
594 encoded[len-3] = '\0';
Damien Miller4a8ed542002-01-22 23:33:31 +1100595 blen = uudecode(encoded, blob, sizeof(blob));
djm@openbsd.org3038a192015-04-17 13:19:22 +0000596 if (blen < 0)
597 fatal("uudecode failed.");
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000598 if (*private)
599 *k = do_convert_private_ssh2_from_blob(blob, blen);
djm@openbsd.org3038a192015-04-17 13:19:22 +0000600 else if ((r = sshkey_from_blob(blob, blen, k)) != 0)
601 fatal("decode blob failed: %s", ssh_err(r));
Damien Miller44b25042010-07-02 13:35:01 +1000602 fclose(fp);
603}
604
605static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000606do_convert_from_pkcs8(struct sshkey **k, int *private)
Damien Miller44b25042010-07-02 13:35:01 +1000607{
608 EVP_PKEY *pubkey;
609 FILE *fp;
610
611 if ((fp = fopen(identity_file, "r")) == NULL)
612 fatal("%s: %s: %s", __progname, identity_file, strerror(errno));
613 if ((pubkey = PEM_read_PUBKEY(fp, NULL, NULL, NULL)) == NULL) {
614 fatal("%s: %s is not a recognised public key format", __func__,
615 identity_file);
616 }
617 fclose(fp);
618 switch (EVP_PKEY_type(pubkey->type)) {
619 case EVP_PKEY_RSA:
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000620 if ((*k = sshkey_new(KEY_UNSPEC)) == NULL)
621 fatal("sshkey_new failed");
Damien Miller44b25042010-07-02 13:35:01 +1000622 (*k)->type = KEY_RSA;
623 (*k)->rsa = EVP_PKEY_get1_RSA(pubkey);
624 break;
625 case EVP_PKEY_DSA:
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_DSA;
629 (*k)->dsa = EVP_PKEY_get1_DSA(pubkey);
630 break;
Damien Miller6af914a2010-09-10 11:39:26 +1000631#ifdef OPENSSL_HAS_ECC
Damien Millereb8b60e2010-08-31 22:41:14 +1000632 case EVP_PKEY_EC:
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000633 if ((*k = sshkey_new(KEY_UNSPEC)) == NULL)
634 fatal("sshkey_new failed");
Damien Millereb8b60e2010-08-31 22:41:14 +1000635 (*k)->type = KEY_ECDSA;
636 (*k)->ecdsa = EVP_PKEY_get1_EC_KEY(pubkey);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000637 (*k)->ecdsa_nid = sshkey_ecdsa_key_to_nid((*k)->ecdsa);
Damien Millereb8b60e2010-08-31 22:41:14 +1000638 break;
Damien Miller6af914a2010-09-10 11:39:26 +1000639#endif
Damien Miller44b25042010-07-02 13:35:01 +1000640 default:
641 fatal("%s: unsupported pubkey type %d", __func__,
642 EVP_PKEY_type(pubkey->type));
643 }
644 EVP_PKEY_free(pubkey);
645 return;
646}
647
648static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000649do_convert_from_pem(struct sshkey **k, int *private)
Damien Miller44b25042010-07-02 13:35:01 +1000650{
651 FILE *fp;
652 RSA *rsa;
653#ifdef notyet
654 DSA *dsa;
655#endif
656
657 if ((fp = fopen(identity_file, "r")) == NULL)
658 fatal("%s: %s: %s", __progname, identity_file, strerror(errno));
659 if ((rsa = PEM_read_RSAPublicKey(fp, NULL, NULL, NULL)) != NULL) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000660 if ((*k = sshkey_new(KEY_UNSPEC)) == NULL)
661 fatal("sshkey_new failed");
Damien Miller44b25042010-07-02 13:35:01 +1000662 (*k)->type = KEY_RSA;
663 (*k)->rsa = rsa;
664 fclose(fp);
665 return;
666 }
667#if notyet /* OpenSSH 0.9.8 lacks this function */
668 rewind(fp);
669 if ((dsa = PEM_read_DSAPublicKey(fp, NULL, NULL, NULL)) != NULL) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000670 if ((*k = sshkey_new(KEY_UNSPEC)) == NULL)
671 fatal("sshkey_new failed");
Damien Miller44b25042010-07-02 13:35:01 +1000672 (*k)->type = KEY_DSA;
673 (*k)->dsa = dsa;
674 fclose(fp);
675 return;
676 }
Damien Millereb8b60e2010-08-31 22:41:14 +1000677 /* XXX ECDSA */
Damien Miller44b25042010-07-02 13:35:01 +1000678#endif
679 fatal("%s: unrecognised raw private key format", __func__);
680}
681
682static void
683do_convert_from(struct passwd *pw)
684{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000685 struct sshkey *k = NULL;
686 int r, private = 0, ok = 0;
Damien Miller44b25042010-07-02 13:35:01 +1000687 struct stat st;
688
689 if (!have_identity)
690 ask_filename(pw, "Enter file in which the key is");
691 if (stat(identity_file, &st) < 0)
692 fatal("%s: %s: %s", __progname, identity_file, strerror(errno));
693
694 switch (convert_format) {
695 case FMT_RFC4716:
696 do_convert_from_ssh2(pw, &k, &private);
697 break;
698 case FMT_PKCS8:
699 do_convert_from_pkcs8(&k, &private);
700 break;
701 case FMT_PEM:
702 do_convert_from_pem(&k, &private);
703 break;
704 default:
705 fatal("%s: unknown key format %d", __func__, convert_format);
706 }
707
djm@openbsd.org7a2c3682015-01-30 00:59:19 +0000708 if (!private) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000709 if ((r = sshkey_write(k, stdout)) == 0)
710 ok = 1;
Damien Miller44b25042010-07-02 13:35:01 +1000711 if (ok)
712 fprintf(stdout, "\n");
djm@openbsd.org7a2c3682015-01-30 00:59:19 +0000713 } else {
Damien Miller44b25042010-07-02 13:35:01 +1000714 switch (k->type) {
715 case KEY_DSA:
716 ok = PEM_write_DSAPrivateKey(stdout, k->dsa, NULL,
717 NULL, 0, NULL, NULL);
718 break;
Damien Miller6af914a2010-09-10 11:39:26 +1000719#ifdef OPENSSL_HAS_ECC
Damien Millereb8b60e2010-08-31 22:41:14 +1000720 case KEY_ECDSA:
721 ok = PEM_write_ECPrivateKey(stdout, k->ecdsa, NULL,
722 NULL, 0, NULL, NULL);
723 break;
Damien Miller6af914a2010-09-10 11:39:26 +1000724#endif
Damien Miller44b25042010-07-02 13:35:01 +1000725 case KEY_RSA:
726 ok = PEM_write_RSAPrivateKey(stdout, k->rsa, NULL,
727 NULL, 0, NULL, NULL);
728 break;
729 default:
730 fatal("%s: unsupported key type %s", __func__,
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000731 sshkey_type(k));
Damien Miller44b25042010-07-02 13:35:01 +1000732 }
733 }
734
djm@openbsd.org3038a192015-04-17 13:19:22 +0000735 if (!ok)
736 fatal("key write failed");
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000737 sshkey_free(k);
Damien Millereba71ba2000-04-29 23:57:08 +1000738 exit(0);
739}
Damien Miller1f0311c2014-05-15 14:24:09 +1000740#endif
Damien Millereba71ba2000-04-29 23:57:08 +1000741
Ben Lindstrombba81212001-06-25 05:01:22 +0000742static void
Damien Millereba71ba2000-04-29 23:57:08 +1000743do_print_public(struct passwd *pw)
744{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000745 struct sshkey *prv;
Damien Millereba71ba2000-04-29 23:57:08 +1000746 struct stat st;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000747 int r;
Damien Millereba71ba2000-04-29 23:57:08 +1000748
749 if (!have_identity)
750 ask_filename(pw, "Enter file in which the key is");
djm@openbsd.org3038a192015-04-17 13:19:22 +0000751 if (stat(identity_file, &st) < 0)
752 fatal("%s: %s", identity_file, strerror(errno));
Ben Lindstromd78ae762001-06-05 20:35:09 +0000753 prv = load_identity(identity_file);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000754 if ((r = sshkey_write(prv, stdout)) != 0)
djm@openbsd.org3038a192015-04-17 13:19:22 +0000755 error("key_write failed: %s", ssh_err(r));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000756 sshkey_free(prv);
Damien Millereba71ba2000-04-29 23:57:08 +1000757 fprintf(stdout, "\n");
758 exit(0);
759}
760
Ben Lindstromcd392282001-07-04 03:44:03 +0000761static void
Damien Miller757f34e2010-08-05 13:05:31 +1000762do_download(struct passwd *pw)
Ben Lindstromcd392282001-07-04 03:44:03 +0000763{
Damien Miller7ea845e2010-02-12 09:21:02 +1100764#ifdef ENABLE_PKCS11
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000765 struct sshkey **keys = NULL;
Damien Miller7ea845e2010-02-12 09:21:02 +1100766 int i, nkeys;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000767 enum sshkey_fp_rep rep;
djm@openbsd.org56d1c832014-12-21 22:27:55 +0000768 int fptype;
Damien Millerec77c952013-01-09 15:58:00 +1100769 char *fp, *ra;
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000770
djm@openbsd.org56d1c832014-12-21 22:27:55 +0000771 fptype = print_bubblebabble ? SSH_DIGEST_SHA1 : fingerprint_hash;
772 rep = print_bubblebabble ? SSH_FP_BUBBLEBABBLE : SSH_FP_DEFAULT;
Damien Miller1422c082013-01-09 16:44:54 +1100773
Damien Miller7ea845e2010-02-12 09:21:02 +1100774 pkcs11_init(0);
775 nkeys = pkcs11_add_provider(pkcs11provider, NULL, &keys);
776 if (nkeys <= 0)
777 fatal("cannot read public key from pkcs11");
778 for (i = 0; i < nkeys; i++) {
Damien Millerec77c952013-01-09 15:58:00 +1100779 if (print_fingerprint) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000780 fp = sshkey_fingerprint(keys[i], fptype, rep);
781 ra = sshkey_fingerprint(keys[i], fingerprint_hash,
Damien Millerec77c952013-01-09 15:58:00 +1100782 SSH_FP_RANDOMART);
djm@openbsd.org9ce86c92015-01-28 22:36:00 +0000783 if (fp == NULL || ra == NULL)
784 fatal("%s: sshkey_fingerprint fail", __func__);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000785 printf("%u %s %s (PKCS11 key)\n", sshkey_size(keys[i]),
786 fp, sshkey_type(keys[i]));
Damien Millerec77c952013-01-09 15:58:00 +1100787 if (log_level >= SYSLOG_LEVEL_VERBOSE)
788 printf("%s\n", ra);
Darren Tuckera627d422013-06-02 07:31:17 +1000789 free(ra);
790 free(fp);
Damien Millerec77c952013-01-09 15:58:00 +1100791 } else {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000792 (void) sshkey_write(keys[i], stdout); /* XXX check */
Damien Millerec77c952013-01-09 15:58:00 +1100793 fprintf(stdout, "\n");
794 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000795 sshkey_free(keys[i]);
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000796 }
Darren Tuckera627d422013-06-02 07:31:17 +1000797 free(keys);
Damien Miller7ea845e2010-02-12 09:21:02 +1100798 pkcs11_terminate();
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000799 exit(0);
Damien Miller7ea845e2010-02-12 09:21:02 +1100800#else
801 fatal("no pkcs11 support");
802#endif /* ENABLE_PKCS11 */
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000803}
Ben Lindstromcd392282001-07-04 03:44:03 +0000804
Ben Lindstrombba81212001-06-25 05:01:22 +0000805static void
Damien Miller10f6f6b1999-11-17 17:29:08 +1100806do_fingerprint(struct passwd *pw)
807{
Damien Miller98c7ad62000-03-09 21:27:49 +1100808 FILE *f;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000809 struct sshkey *public;
Darren Tucker9c16ac92008-06-13 04:40:35 +1000810 char *comment = NULL, *cp, *ep, line[16*1024], *fp, *ra;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000811 int r, i, skip = 0, num = 0, invalid = 1;
812 enum sshkey_fp_rep rep;
djm@openbsd.org56d1c832014-12-21 22:27:55 +0000813 int fptype;
Damien Miller95def091999-11-25 00:26:21 +1100814 struct stat st;
Damien Miller10f6f6b1999-11-17 17:29:08 +1100815
djm@openbsd.org56d1c832014-12-21 22:27:55 +0000816 fptype = print_bubblebabble ? SSH_DIGEST_SHA1 : fingerprint_hash;
817 rep = print_bubblebabble ? SSH_FP_BUBBLEBABBLE : SSH_FP_DEFAULT;
Damien Miller95def091999-11-25 00:26:21 +1100818 if (!have_identity)
819 ask_filename(pw, "Enter file in which the key is");
djm@openbsd.org3038a192015-04-17 13:19:22 +0000820 if (stat(identity_file, &st) < 0)
821 fatal("%s: %s", identity_file, strerror(errno));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000822 if ((r = sshkey_load_public(identity_file, &public, &comment)) != 0)
djm@openbsd.org2285c302015-02-23 22:21:21 +0000823 debug2("Error loading public key \"%s\": %s",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000824 identity_file, ssh_err(r));
825 else {
826 fp = sshkey_fingerprint(public, fptype, rep);
827 ra = sshkey_fingerprint(public, fingerprint_hash,
djm@openbsd.org56d1c832014-12-21 22:27:55 +0000828 SSH_FP_RANDOMART);
djm@openbsd.org9ce86c92015-01-28 22:36:00 +0000829 if (fp == NULL || ra == NULL)
830 fatal("%s: sshkey_fingerprint fail", __func__);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000831 printf("%u %s %s (%s)\n", sshkey_size(public), fp, comment,
832 sshkey_type(public));
Darren Tucker35c45532008-06-13 04:43:15 +1000833 if (log_level >= SYSLOG_LEVEL_VERBOSE)
834 printf("%s\n", ra);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000835 sshkey_free(public);
Darren Tuckera627d422013-06-02 07:31:17 +1000836 free(comment);
837 free(ra);
838 free(fp);
Damien Miller98c7ad62000-03-09 21:27:49 +1100839 exit(0);
840 }
Damien Miller40b59852006-06-13 13:00:25 +1000841 if (comment) {
Darren Tuckera627d422013-06-02 07:31:17 +1000842 free(comment);
Damien Miller40b59852006-06-13 13:00:25 +1000843 comment = NULL;
844 }
Damien Miller98c7ad62000-03-09 21:27:49 +1100845
Damien Millerba3420a2010-06-26 09:39:07 +1000846 if ((f = fopen(identity_file, "r")) == NULL)
847 fatal("%s: %s: %s", __progname, identity_file, strerror(errno));
Damien Miller98c7ad62000-03-09 21:27:49 +1100848
Damien Millerba3420a2010-06-26 09:39:07 +1000849 while (fgets(line, sizeof(line), f)) {
850 if ((cp = strchr(line, '\n')) == NULL) {
851 error("line %d too long: %.40s...",
852 num + 1, line);
853 skip = 1;
854 continue;
Damien Miller95def091999-11-25 00:26:21 +1100855 }
Damien Millerba3420a2010-06-26 09:39:07 +1000856 num++;
857 if (skip) {
858 skip = 0;
859 continue;
860 }
861 *cp = '\0';
862
863 /* Skip leading whitespace, empty and comment lines. */
864 for (cp = line; *cp == ' ' || *cp == '\t'; cp++)
865 ;
866 if (!*cp || *cp == '\n' || *cp == '#')
867 continue;
868 i = strtol(cp, &ep, 10);
869 if (i == 0 || ep == NULL || (*ep != ' ' && *ep != '\t')) {
870 int quoted = 0;
871 comment = cp;
872 for (; *cp && (quoted || (*cp != ' ' &&
873 *cp != '\t')); cp++) {
874 if (*cp == '\\' && cp[1] == '"')
875 cp++; /* Skip both */
876 else if (*cp == '"')
877 quoted = !quoted;
878 }
879 if (!*cp)
880 continue;
881 *cp++ = '\0';
882 }
883 ep = cp;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000884 if ((public = sshkey_new(KEY_RSA1)) == NULL)
885 fatal("sshkey_new failed");
886 if ((r = sshkey_read(public, &cp)) != 0) {
Damien Millerba3420a2010-06-26 09:39:07 +1000887 cp = ep;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000888 sshkey_free(public);
889 if ((public = sshkey_new(KEY_UNSPEC)) == NULL)
890 fatal("sshkey_new failed");
891 if ((r = sshkey_read(public, &cp)) != 0) {
892 sshkey_free(public);
Damien Millerba3420a2010-06-26 09:39:07 +1000893 continue;
894 }
895 }
896 comment = *cp ? cp : comment;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000897 fp = sshkey_fingerprint(public, fptype, rep);
898 ra = sshkey_fingerprint(public, fingerprint_hash,
djm@openbsd.org56d1c832014-12-21 22:27:55 +0000899 SSH_FP_RANDOMART);
djm@openbsd.org9ce86c92015-01-28 22:36:00 +0000900 if (fp == NULL || ra == NULL)
901 fatal("%s: sshkey_fingerprint fail", __func__);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000902 printf("%u %s %s (%s)\n", sshkey_size(public), fp,
903 comment ? comment : "no comment", sshkey_type(public));
Damien Millerba3420a2010-06-26 09:39:07 +1000904 if (log_level >= SYSLOG_LEVEL_VERBOSE)
905 printf("%s\n", ra);
Darren Tuckera627d422013-06-02 07:31:17 +1000906 free(ra);
907 free(fp);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000908 sshkey_free(public);
Damien Millerba3420a2010-06-26 09:39:07 +1000909 invalid = 0;
Damien Miller95def091999-11-25 00:26:21 +1100910 }
Damien Millerba3420a2010-06-26 09:39:07 +1000911 fclose(f);
912
djm@openbsd.org3038a192015-04-17 13:19:22 +0000913 if (invalid)
914 fatal("%s is not a public key file.", identity_file);
Damien Miller95def091999-11-25 00:26:21 +1100915 exit(0);
Damien Miller10f6f6b1999-11-17 17:29:08 +1100916}
917
Damien Miller4b42d7f2005-03-01 21:48:35 +1100918static void
Damien Miller58f1baf2011-05-05 14:06:15 +1000919do_gen_all_hostkeys(struct passwd *pw)
920{
921 struct {
922 char *key_type;
923 char *key_type_display;
924 char *path;
925 } key_types[] = {
djm@openbsd.org5c27e3b2015-03-23 06:06:38 +0000926#ifdef WITH_OPENSSL
927#ifdef WITH_SSH1
Damien Miller58f1baf2011-05-05 14:06:15 +1000928 { "rsa1", "RSA1", _PATH_HOST_KEY_FILE },
djm@openbsd.org5c27e3b2015-03-23 06:06:38 +0000929#endif /* WITH_SSH1 */
Damien Miller58f1baf2011-05-05 14:06:15 +1000930 { "rsa", "RSA" ,_PATH_HOST_RSA_KEY_FILE },
931 { "dsa", "DSA", _PATH_HOST_DSA_KEY_FILE },
Damien Millerb56e4932012-02-06 07:41:27 +1100932#ifdef OPENSSL_HAS_ECC
Damien Miller58f1baf2011-05-05 14:06:15 +1000933 { "ecdsa", "ECDSA",_PATH_HOST_ECDSA_KEY_FILE },
djm@openbsd.org5c27e3b2015-03-23 06:06:38 +0000934#endif /* OPENSSL_HAS_ECC */
935#endif /* WITH_OPENSSL */
Damien Miller5be9d9e2013-12-07 11:24:01 +1100936 { "ed25519", "ED25519",_PATH_HOST_ED25519_KEY_FILE },
Damien Miller58f1baf2011-05-05 14:06:15 +1000937 { NULL, NULL, NULL }
938 };
939
940 int first = 0;
941 struct stat st;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000942 struct sshkey *private, *public;
Damien Miller58f1baf2011-05-05 14:06:15 +1000943 char comment[1024];
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000944 int i, type, fd, r;
Damien Miller58f1baf2011-05-05 14:06:15 +1000945 FILE *f;
946
947 for (i = 0; key_types[i].key_type; i++) {
948 if (stat(key_types[i].path, &st) == 0)
949 continue;
950 if (errno != ENOENT) {
djm@openbsd.org3038a192015-04-17 13:19:22 +0000951 error("Could not stat %s: %s", key_types[i].path,
Damien Miller58f1baf2011-05-05 14:06:15 +1000952 strerror(errno));
953 first = 0;
954 continue;
955 }
956
957 if (first == 0) {
958 first = 1;
959 printf("%s: generating new host keys: ", __progname);
960 }
961 printf("%s ", key_types[i].key_type_display);
962 fflush(stdout);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000963 type = sshkey_type_from_name(key_types[i].key_type);
Damien Miller58f1baf2011-05-05 14:06:15 +1000964 strlcpy(identity_file, key_types[i].path, sizeof(identity_file));
965 bits = 0;
djm@openbsd.org7efb4552015-01-18 13:22:28 +0000966 type_bits_valid(type, NULL, &bits);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000967 if ((r = sshkey_generate(type, bits, &private)) != 0) {
djm@openbsd.org3038a192015-04-17 13:19:22 +0000968 error("key_generate failed: %s", ssh_err(r));
Damien Miller58f1baf2011-05-05 14:06:15 +1000969 first = 0;
970 continue;
971 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000972 if ((r = sshkey_from_private(private, &public)) != 0)
973 fatal("sshkey_from_private failed: %s", ssh_err(r));
Damien Miller58f1baf2011-05-05 14:06:15 +1000974 snprintf(comment, sizeof comment, "%s@%s", pw->pw_name,
975 hostname);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000976 if ((r = sshkey_save_private(private, identity_file, "",
977 comment, use_new_format, new_format_cipher, rounds)) != 0) {
djm@openbsd.org3038a192015-04-17 13:19:22 +0000978 error("Saving key \"%s\" failed: %s",
979 identity_file, ssh_err(r));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000980 sshkey_free(private);
981 sshkey_free(public);
Damien Miller58f1baf2011-05-05 14:06:15 +1000982 first = 0;
983 continue;
984 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000985 sshkey_free(private);
Damien Miller58f1baf2011-05-05 14:06:15 +1000986 strlcat(identity_file, ".pub", sizeof(identity_file));
987 fd = open(identity_file, O_WRONLY | O_CREAT | O_TRUNC, 0644);
988 if (fd == -1) {
djm@openbsd.org3038a192015-04-17 13:19:22 +0000989 error("Could not save your public key in %s",
Damien Miller58f1baf2011-05-05 14:06:15 +1000990 identity_file);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000991 sshkey_free(public);
Damien Miller58f1baf2011-05-05 14:06:15 +1000992 first = 0;
993 continue;
994 }
995 f = fdopen(fd, "w");
996 if (f == NULL) {
djm@openbsd.org3038a192015-04-17 13:19:22 +0000997 error("fdopen %s failed", identity_file);
doug@openbsd.org7df88182014-08-21 01:08:52 +0000998 close(fd);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000999 sshkey_free(public);
Damien Miller58f1baf2011-05-05 14:06:15 +10001000 first = 0;
1001 continue;
1002 }
djm@openbsd.orgbb8b4422015-01-16 15:55:07 +00001003 if ((r = sshkey_write(public, f)) != 0) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00001004 error("write key failed: %s", ssh_err(r));
doug@openbsd.org7df88182014-08-21 01:08:52 +00001005 fclose(f);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001006 sshkey_free(public);
Damien Miller58f1baf2011-05-05 14:06:15 +10001007 first = 0;
1008 continue;
1009 }
1010 fprintf(f, " %s\n", comment);
1011 fclose(f);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001012 sshkey_free(public);
Damien Miller58f1baf2011-05-05 14:06:15 +10001013
1014 }
1015 if (first != 0)
1016 printf("\n");
1017}
1018
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001019struct known_hosts_ctx {
djm@openbsd.org2b3c3c72015-01-18 21:51:19 +00001020 const char *host; /* Hostname searched for in find/delete case */
1021 FILE *out; /* Output file, stdout for find_hosts case */
1022 int has_unhashed; /* When hashing, original had unhashed hosts */
1023 int found_key; /* For find/delete, host was found */
1024 int invalid; /* File contained invalid items; don't delete */
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001025};
1026
1027static int
1028known_hosts_hash(struct hostkey_foreach_line *l, void *_ctx)
Damien Miller4b42d7f2005-03-01 21:48:35 +11001029{
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001030 struct known_hosts_ctx *ctx = (struct known_hosts_ctx *)_ctx;
1031 char *hashed, *cp, *hosts, *ohosts;
1032 int has_wild = l->hosts && strcspn(l->hosts, "*?!") != strlen(l->hosts);
Darren Tucker0f7e9102008-06-08 12:54:29 +10001033
djm@openbsd.org6c5c9492015-02-16 22:08:57 +00001034 switch (l->status) {
1035 case HKF_STATUS_OK:
1036 case HKF_STATUS_MATCHED:
1037 /*
1038 * Don't hash hosts already already hashed, with wildcard
1039 * characters or a CA/revocation marker.
1040 */
1041 if ((l->match & HKF_MATCH_HOST_HASHED) != 0 ||
1042 has_wild || l->marker != MRK_NONE) {
1043 fprintf(ctx->out, "%s\n", l->line);
1044 if (has_wild && !find_host) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00001045 logit("%s:%ld: ignoring host name "
1046 "with wildcard: %.64s", l->path,
djm@openbsd.org6c5c9492015-02-16 22:08:57 +00001047 l->linenum, l->hosts);
1048 }
1049 return 0;
1050 }
1051 /*
1052 * Split any comma-separated hostnames from the host list,
1053 * hash and store separately.
1054 */
1055 ohosts = hosts = xstrdup(l->hosts);
1056 while ((cp = strsep(&hosts, ",")) != NULL && *cp != '\0') {
1057 if ((hashed = host_hash(cp, NULL, 0)) == NULL)
1058 fatal("hash_host failed");
1059 fprintf(ctx->out, "%s %s\n", hashed, l->rawkey);
1060 ctx->has_unhashed = 1;
1061 }
1062 free(ohosts);
1063 return 0;
1064 case HKF_STATUS_INVALID:
1065 /* Retain invalid lines, but mark file as invalid. */
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001066 ctx->invalid = 1;
djm@openbsd.org3038a192015-04-17 13:19:22 +00001067 logit("%s:%ld: invalid line", l->path, l->linenum);
djm@openbsd.org6c5c9492015-02-16 22:08:57 +00001068 /* FALLTHROUGH */
1069 default:
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001070 fprintf(ctx->out, "%s\n", l->line);
1071 return 0;
Darren Tucker0f7e9102008-06-08 12:54:29 +10001072 }
djm@openbsd.org6c5c9492015-02-16 22:08:57 +00001073 /* NOTREACHED */
1074 return -1;
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001075}
1076
1077static int
1078known_hosts_find_delete(struct hostkey_foreach_line *l, void *_ctx)
1079{
1080 struct known_hosts_ctx *ctx = (struct known_hosts_ctx *)_ctx;
djm@openbsd.org4739e8d2015-05-21 12:01:19 +00001081 enum sshkey_fp_rep rep;
1082 int fptype;
1083 char *fp;
1084
1085 fptype = print_bubblebabble ? SSH_DIGEST_SHA1 : fingerprint_hash;
1086 rep = print_bubblebabble ? SSH_FP_BUBBLEBABBLE : SSH_FP_DEFAULT;
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001087
djm@openbsd.org6c5c9492015-02-16 22:08:57 +00001088 if (l->status == HKF_STATUS_MATCHED) {
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001089 if (delete_host) {
1090 if (l->marker != MRK_NONE) {
1091 /* Don't remove CA and revocation lines */
1092 fprintf(ctx->out, "%s\n", l->line);
1093 } else {
1094 /*
1095 * Hostname matches and has no CA/revoke
1096 * marker, delete it by *not* writing the
1097 * line to ctx->out.
1098 */
1099 ctx->found_key = 1;
1100 if (!quiet)
1101 printf("# Host %s found: line %ld\n",
1102 ctx->host, l->linenum);
1103 }
1104 return 0;
1105 } else if (find_host) {
1106 ctx->found_key = 1;
1107 if (!quiet) {
1108 printf("# Host %s found: line %ld %s\n",
1109 ctx->host,
1110 l->linenum, l->marker == MRK_CA ? "CA" :
1111 (l->marker == MRK_REVOKE ? "REVOKED" : ""));
1112 }
1113 if (hash_hosts)
1114 known_hosts_hash(l, ctx);
djm@openbsd.org4739e8d2015-05-21 12:01:19 +00001115 else if (print_fingerprint) {
1116 fp = sshkey_fingerprint(l->key, fptype, rep);
1117 printf("%s %s %s %s\n", ctx->host,
1118 sshkey_type(l->key), fp, l->comment);
1119 free(fp);
1120 } else
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001121 fprintf(ctx->out, "%s\n", l->line);
1122 return 0;
1123 }
1124 } else if (delete_host) {
1125 /* Retain non-matching hosts when deleting */
1126 if (l->status == HKF_STATUS_INVALID) {
1127 ctx->invalid = 1;
djm@openbsd.org3038a192015-04-17 13:19:22 +00001128 logit("%s:%ld: invalid line", l->path, l->linenum);
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001129 }
1130 fprintf(ctx->out, "%s\n", l->line);
1131 }
1132 return 0;
Damien Miller4b42d7f2005-03-01 21:48:35 +11001133}
1134
1135static void
1136do_known_hosts(struct passwd *pw, const char *name)
1137{
deraadt@openbsd.orgd2099de2015-01-19 00:32:54 +00001138 char *cp, tmp[PATH_MAX], old[PATH_MAX];
djm@openbsd.org2b3c3c72015-01-18 21:51:19 +00001139 int r, fd, oerrno, inplace = 0;
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001140 struct known_hosts_ctx ctx;
djm@openbsd.org4739e8d2015-05-21 12:01:19 +00001141 u_int foreach_options;
Damien Miller4b42d7f2005-03-01 21:48:35 +11001142
1143 if (!have_identity) {
1144 cp = tilde_expand_filename(_PATH_SSH_USER_HOSTFILE, pw->pw_uid);
1145 if (strlcpy(identity_file, cp, sizeof(identity_file)) >=
1146 sizeof(identity_file))
1147 fatal("Specified known hosts path too long");
Darren Tuckera627d422013-06-02 07:31:17 +10001148 free(cp);
Damien Miller4b42d7f2005-03-01 21:48:35 +11001149 have_identity = 1;
1150 }
Damien Miller4b42d7f2005-03-01 21:48:35 +11001151
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001152 memset(&ctx, 0, sizeof(ctx));
1153 ctx.out = stdout;
1154 ctx.host = name;
1155
Damien Miller4b42d7f2005-03-01 21:48:35 +11001156 /*
1157 * Find hosts goes to stdout, hash and deletions happen in-place
1158 * A corner case is ssh-keygen -HF foo, which should go to stdout
1159 */
1160 if (!find_host && (hash_hosts || delete_host)) {
1161 if (strlcpy(tmp, identity_file, sizeof(tmp)) >= sizeof(tmp) ||
1162 strlcat(tmp, ".XXXXXXXXXX", sizeof(tmp)) >= sizeof(tmp) ||
1163 strlcpy(old, identity_file, sizeof(old)) >= sizeof(old) ||
1164 strlcat(old, ".old", sizeof(old)) >= sizeof(old))
1165 fatal("known_hosts path too long");
1166 umask(077);
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001167 if ((fd = mkstemp(tmp)) == -1)
Damien Miller4b42d7f2005-03-01 21:48:35 +11001168 fatal("mkstemp: %s", strerror(errno));
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001169 if ((ctx.out = fdopen(fd, "w")) == NULL) {
1170 oerrno = errno;
Damien Miller4b42d7f2005-03-01 21:48:35 +11001171 unlink(tmp);
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001172 fatal("fdopen: %s", strerror(oerrno));
Damien Miller4b42d7f2005-03-01 21:48:35 +11001173 }
djm@openbsd.org2b3c3c72015-01-18 21:51:19 +00001174 inplace = 1;
Damien Miller4b42d7f2005-03-01 21:48:35 +11001175 }
1176
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001177 /* XXX support identity_file == "-" for stdin */
djm@openbsd.org4739e8d2015-05-21 12:01:19 +00001178 foreach_options = find_host ? HKF_WANT_MATCH : 0;
1179 foreach_options |= print_fingerprint ? HKF_WANT_PARSE_KEY : 0;
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001180 if ((r = hostkeys_foreach(identity_file,
1181 hash_hosts ? known_hosts_hash : known_hosts_find_delete, &ctx,
djm@openbsd.org4739e8d2015-05-21 12:01:19 +00001182 name, NULL, foreach_options)) != 0)
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001183 fatal("%s: hostkeys_foreach failed: %s", __func__, ssh_err(r));
Damien Miller4b42d7f2005-03-01 21:48:35 +11001184
djm@openbsd.org2b3c3c72015-01-18 21:51:19 +00001185 if (inplace)
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001186 fclose(ctx.out);
Damien Miller0a80ca12010-02-27 07:55:05 +11001187
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001188 if (ctx.invalid) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00001189 error("%s is not a valid known_hosts file.", identity_file);
djm@openbsd.org2b3c3c72015-01-18 21:51:19 +00001190 if (inplace) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00001191 error("Not replacing existing known_hosts "
1192 "file because of errors");
Damien Miller4b42d7f2005-03-01 21:48:35 +11001193 unlink(tmp);
1194 }
1195 exit(1);
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001196 } else if (delete_host && !ctx.found_key) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00001197 logit("Host %s not found in %s", name, identity_file);
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001198 unlink(tmp);
djm@openbsd.org2b3c3c72015-01-18 21:51:19 +00001199 } else if (inplace) {
Damien Miller4b42d7f2005-03-01 21:48:35 +11001200 /* Backup existing file */
1201 if (unlink(old) == -1 && errno != ENOENT)
1202 fatal("unlink %.100s: %s", old, strerror(errno));
1203 if (link(identity_file, old) == -1)
1204 fatal("link %.100s to %.100s: %s", identity_file, old,
1205 strerror(errno));
1206 /* Move new one into place */
1207 if (rename(tmp, identity_file) == -1) {
1208 error("rename\"%s\" to \"%s\": %s", tmp, identity_file,
1209 strerror(errno));
1210 unlink(tmp);
1211 unlink(old);
1212 exit(1);
1213 }
1214
djm@openbsd.org3038a192015-04-17 13:19:22 +00001215 printf("%s updated.\n", identity_file);
1216 printf("Original contents retained as %s\n", old);
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001217 if (ctx.has_unhashed) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00001218 logit("WARNING: %s contains unhashed entries", old);
1219 logit("Delete this file to ensure privacy "
1220 "of hostnames");
Damien Miller4b42d7f2005-03-01 21:48:35 +11001221 }
1222 }
1223
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001224 exit (find_host && !ctx.found_key);
Damien Miller4b42d7f2005-03-01 21:48:35 +11001225}
1226
Damien Miller95def091999-11-25 00:26:21 +11001227/*
1228 * Perform changing a passphrase. The argument is the passwd structure
1229 * for the current user.
1230 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001231static void
Damien Miller10f6f6b1999-11-17 17:29:08 +11001232do_change_passphrase(struct passwd *pw)
1233{
Damien Miller95def091999-11-25 00:26:21 +11001234 char *comment;
1235 char *old_passphrase, *passphrase1, *passphrase2;
1236 struct stat st;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001237 struct sshkey *private;
1238 int r;
Damien Miller10f6f6b1999-11-17 17:29:08 +11001239
Damien Miller95def091999-11-25 00:26:21 +11001240 if (!have_identity)
1241 ask_filename(pw, "Enter file in which the key is");
djm@openbsd.org3038a192015-04-17 13:19:22 +00001242 if (stat(identity_file, &st) < 0)
1243 fatal("%s: %s", identity_file, strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +11001244 /* Try to load the file with empty passphrase. */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001245 r = sshkey_load_private(identity_file, "", &private, &comment);
1246 if (r == SSH_ERR_KEY_WRONG_PASSPHRASE) {
Damien Miller95def091999-11-25 00:26:21 +11001247 if (identity_passphrase)
1248 old_passphrase = xstrdup(identity_passphrase);
1249 else
Ben Lindstrom949974b2001-06-25 05:20:31 +00001250 old_passphrase =
1251 read_passphrase("Enter old passphrase: ",
1252 RP_ALLOW_STDIN);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001253 r = sshkey_load_private(identity_file, old_passphrase,
1254 &private, &comment);
Damien Millera5103f42014-02-04 11:20:14 +11001255 explicit_bzero(old_passphrase, strlen(old_passphrase));
Darren Tuckera627d422013-06-02 07:31:17 +10001256 free(old_passphrase);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001257 if (r != 0)
1258 goto badkey;
1259 } else if (r != 0) {
1260 badkey:
djm@openbsd.org3038a192015-04-17 13:19:22 +00001261 fatal("Failed to load key %s: %s", identity_file, ssh_err(r));
Damien Miller95def091999-11-25 00:26:21 +11001262 }
djm@openbsd.orgf43d1722015-02-26 20:45:47 +00001263 if (comment)
1264 printf("Key has comment '%s'\n", comment);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001265
Damien Miller95def091999-11-25 00:26:21 +11001266 /* Ask the new passphrase (twice). */
1267 if (identity_new_passphrase) {
1268 passphrase1 = xstrdup(identity_new_passphrase);
1269 passphrase2 = NULL;
1270 } else {
1271 passphrase1 =
Ben Lindstrom949974b2001-06-25 05:20:31 +00001272 read_passphrase("Enter new passphrase (empty for no "
1273 "passphrase): ", RP_ALLOW_STDIN);
1274 passphrase2 = read_passphrase("Enter same passphrase again: ",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001275 RP_ALLOW_STDIN);
Damien Miller95def091999-11-25 00:26:21 +11001276
1277 /* Verify that they are the same. */
1278 if (strcmp(passphrase1, passphrase2) != 0) {
Damien Millera5103f42014-02-04 11:20:14 +11001279 explicit_bzero(passphrase1, strlen(passphrase1));
1280 explicit_bzero(passphrase2, strlen(passphrase2));
Darren Tuckera627d422013-06-02 07:31:17 +10001281 free(passphrase1);
1282 free(passphrase2);
Damien Miller95def091999-11-25 00:26:21 +11001283 printf("Pass phrases do not match. Try again.\n");
1284 exit(1);
1285 }
1286 /* Destroy the other copy. */
Damien Millera5103f42014-02-04 11:20:14 +11001287 explicit_bzero(passphrase2, strlen(passphrase2));
Darren Tuckera627d422013-06-02 07:31:17 +10001288 free(passphrase2);
Damien Miller95def091999-11-25 00:26:21 +11001289 }
1290
1291 /* Save the file using the new passphrase. */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001292 if ((r = sshkey_save_private(private, identity_file, passphrase1,
1293 comment, use_new_format, new_format_cipher, rounds)) != 0) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00001294 error("Saving key \"%s\" failed: %s.",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001295 identity_file, ssh_err(r));
Damien Millera5103f42014-02-04 11:20:14 +11001296 explicit_bzero(passphrase1, strlen(passphrase1));
Darren Tuckera627d422013-06-02 07:31:17 +10001297 free(passphrase1);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001298 sshkey_free(private);
Darren Tuckera627d422013-06-02 07:31:17 +10001299 free(comment);
Damien Miller95def091999-11-25 00:26:21 +11001300 exit(1);
1301 }
1302 /* Destroy the passphrase and the copy of the key in memory. */
Damien Millera5103f42014-02-04 11:20:14 +11001303 explicit_bzero(passphrase1, strlen(passphrase1));
Darren Tuckera627d422013-06-02 07:31:17 +10001304 free(passphrase1);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001305 sshkey_free(private); /* Destroys contents */
Darren Tuckera627d422013-06-02 07:31:17 +10001306 free(comment);
Damien Miller95def091999-11-25 00:26:21 +11001307
1308 printf("Your identification has been saved with the new passphrase.\n");
1309 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001310}
1311
Damien Miller37876e92003-05-15 10:19:46 +10001312/*
1313 * Print the SSHFP RR.
1314 */
Damien Millercb314822006-03-26 13:48:01 +11001315static int
1316do_print_resource_record(struct passwd *pw, char *fname, char *hname)
Damien Miller37876e92003-05-15 10:19:46 +10001317{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001318 struct sshkey *public;
Damien Miller37876e92003-05-15 10:19:46 +10001319 char *comment = NULL;
1320 struct stat st;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001321 int r;
Damien Miller37876e92003-05-15 10:19:46 +10001322
Damien Millercb314822006-03-26 13:48:01 +11001323 if (fname == NULL)
Damien Miller5bb88332013-07-18 16:13:37 +10001324 fatal("%s: no filename", __func__);
Damien Millercb314822006-03-26 13:48:01 +11001325 if (stat(fname, &st) < 0) {
1326 if (errno == ENOENT)
1327 return 0;
djm@openbsd.org3038a192015-04-17 13:19:22 +00001328 fatal("%s: %s", fname, strerror(errno));
Damien Miller37876e92003-05-15 10:19:46 +10001329 }
djm@openbsd.org3038a192015-04-17 13:19:22 +00001330 if ((r = sshkey_load_public(fname, &public, &comment)) != 0)
1331 fatal("Failed to read v2 public key from \"%s\": %s.",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001332 fname, ssh_err(r));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001333 export_dns_rr(hname, public, stdout, print_generic);
1334 sshkey_free(public);
1335 free(comment);
1336 return 1;
Damien Miller37876e92003-05-15 10:19:46 +10001337}
Damien Miller37876e92003-05-15 10:19:46 +10001338
Damien Miller95def091999-11-25 00:26:21 +11001339/*
1340 * Change the comment of a private key file.
1341 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001342static void
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001343do_change_comment(struct passwd *pw)
1344{
Ben Lindstrom5fc62702001-03-09 18:19:24 +00001345 char new_comment[1024], *comment, *passphrase;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001346 struct sshkey *private;
1347 struct sshkey *public;
Damien Miller95def091999-11-25 00:26:21 +11001348 struct stat st;
1349 FILE *f;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001350 int r, fd;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001351
Damien Miller95def091999-11-25 00:26:21 +11001352 if (!have_identity)
1353 ask_filename(pw, "Enter file in which the key is");
djm@openbsd.org3038a192015-04-17 13:19:22 +00001354 if (stat(identity_file, &st) < 0)
1355 fatal("%s: %s", identity_file, strerror(errno));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001356 if ((r = sshkey_load_private(identity_file, "",
1357 &private, &comment)) == 0)
1358 passphrase = xstrdup("");
djm@openbsd.org3038a192015-04-17 13:19:22 +00001359 else if (r != SSH_ERR_KEY_WRONG_PASSPHRASE)
1360 fatal("Cannot load private key \"%s\": %s.",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001361 identity_file, ssh_err(r));
djm@openbsd.org3038a192015-04-17 13:19:22 +00001362 else {
Damien Miller95def091999-11-25 00:26:21 +11001363 if (identity_passphrase)
1364 passphrase = xstrdup(identity_passphrase);
1365 else if (identity_new_passphrase)
1366 passphrase = xstrdup(identity_new_passphrase);
1367 else
Ben Lindstrom949974b2001-06-25 05:20:31 +00001368 passphrase = read_passphrase("Enter passphrase: ",
1369 RP_ALLOW_STDIN);
Damien Miller95def091999-11-25 00:26:21 +11001370 /* Try to load using the passphrase. */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001371 if ((r = sshkey_load_private(identity_file, passphrase,
1372 &private, &comment)) != 0) {
Damien Millera5103f42014-02-04 11:20:14 +11001373 explicit_bzero(passphrase, strlen(passphrase));
Darren Tuckera627d422013-06-02 07:31:17 +10001374 free(passphrase);
djm@openbsd.org3038a192015-04-17 13:19:22 +00001375 fatal("Cannot load private key \"%s\": %s.",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001376 identity_file, ssh_err(r));
Damien Miller95def091999-11-25 00:26:21 +11001377 }
1378 }
djm@openbsd.org3038a192015-04-17 13:19:22 +00001379 /* XXX what about new-format keys? */
Ben Lindstromd0fca422001-03-26 13:44:06 +00001380 if (private->type != KEY_RSA1) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00001381 error("Comments are only supported for RSA1 keys.");
tobias@openbsd.org704d8c82015-03-31 11:06:49 +00001382 explicit_bzero(passphrase, strlen(passphrase));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001383 sshkey_free(private);
Ben Lindstromd0fca422001-03-26 13:44:06 +00001384 exit(1);
Damien Miller9f0f5c62001-12-21 14:45:46 +11001385 }
Damien Miller95def091999-11-25 00:26:21 +11001386 printf("Key now has comment '%s'\n", comment);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001387
Damien Miller95def091999-11-25 00:26:21 +11001388 if (identity_comment) {
1389 strlcpy(new_comment, identity_comment, sizeof(new_comment));
1390 } else {
1391 printf("Enter new comment: ");
1392 fflush(stdout);
1393 if (!fgets(new_comment, sizeof(new_comment), stdin)) {
Damien Millera5103f42014-02-04 11:20:14 +11001394 explicit_bzero(passphrase, strlen(passphrase));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001395 sshkey_free(private);
Damien Miller95def091999-11-25 00:26:21 +11001396 exit(1);
1397 }
Damien Miller14b017d2007-09-17 16:09:15 +10001398 new_comment[strcspn(new_comment, "\n")] = '\0';
Damien Miller95def091999-11-25 00:26:21 +11001399 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001400
Damien Miller95def091999-11-25 00:26:21 +11001401 /* Save the file using the new passphrase. */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001402 if ((r = sshkey_save_private(private, identity_file, passphrase,
1403 new_comment, use_new_format, new_format_cipher, rounds)) != 0) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00001404 error("Saving key \"%s\" failed: %s",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001405 identity_file, ssh_err(r));
Damien Millera5103f42014-02-04 11:20:14 +11001406 explicit_bzero(passphrase, strlen(passphrase));
Darren Tuckera627d422013-06-02 07:31:17 +10001407 free(passphrase);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001408 sshkey_free(private);
Darren Tuckera627d422013-06-02 07:31:17 +10001409 free(comment);
Damien Miller95def091999-11-25 00:26:21 +11001410 exit(1);
1411 }
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 if ((r = sshkey_from_private(private, &public)) != 0)
1415 fatal("key_from_private failed: %s", ssh_err(r));
1416 sshkey_free(private);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001417
Damien Miller95def091999-11-25 00:26:21 +11001418 strlcat(identity_file, ".pub", sizeof(identity_file));
Ben Lindstrom5fc62702001-03-09 18:19:24 +00001419 fd = open(identity_file, O_WRONLY | O_CREAT | O_TRUNC, 0644);
djm@openbsd.org3038a192015-04-17 13:19:22 +00001420 if (fd == -1)
1421 fatal("Could not save your public key in %s", identity_file);
Ben Lindstrom5fc62702001-03-09 18:19:24 +00001422 f = fdopen(fd, "w");
djm@openbsd.org3038a192015-04-17 13:19:22 +00001423 if (f == NULL)
1424 fatal("fdopen %s failed: %s", identity_file, strerror(errno));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001425 if ((r = sshkey_write(public, f)) != 0)
djm@openbsd.org3038a192015-04-17 13:19:22 +00001426 fatal("write key failed: %s", ssh_err(r));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001427 sshkey_free(public);
Damien Millereba71ba2000-04-29 23:57:08 +10001428 fprintf(f, " %s\n", new_comment);
Damien Miller95def091999-11-25 00:26:21 +11001429 fclose(f);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001430
Darren Tuckera627d422013-06-02 07:31:17 +10001431 free(comment);
Damien Miller95def091999-11-25 00:26:21 +11001432
1433 printf("The comment in your key file has been changed.\n");
1434 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001435}
1436
Damien Miller0a80ca12010-02-27 07:55:05 +11001437static const char *
Damien Millerf2b70ca2010-03-05 07:39:35 +11001438fmt_validity(u_int64_t valid_from, u_int64_t valid_to)
Damien Miller0a80ca12010-02-27 07:55:05 +11001439{
1440 char from[32], to[32];
1441 static char ret[64];
1442 time_t tt;
1443 struct tm *tm;
1444
1445 *from = *to = '\0';
Damien Millerf2b70ca2010-03-05 07:39:35 +11001446 if (valid_from == 0 && valid_to == 0xffffffffffffffffULL)
Damien Miller0a80ca12010-02-27 07:55:05 +11001447 return "forever";
1448
Damien Millerf2b70ca2010-03-05 07:39:35 +11001449 if (valid_from != 0) {
Damien Miller0a80ca12010-02-27 07:55:05 +11001450 /* XXX revisit INT_MAX in 2038 :) */
Damien Millerf2b70ca2010-03-05 07:39:35 +11001451 tt = valid_from > INT_MAX ? INT_MAX : valid_from;
Damien Miller0a80ca12010-02-27 07:55:05 +11001452 tm = localtime(&tt);
1453 strftime(from, sizeof(from), "%Y-%m-%dT%H:%M:%S", tm);
1454 }
Damien Millerf2b70ca2010-03-05 07:39:35 +11001455 if (valid_to != 0xffffffffffffffffULL) {
Damien Miller0a80ca12010-02-27 07:55:05 +11001456 /* XXX revisit INT_MAX in 2038 :) */
Damien Millerf2b70ca2010-03-05 07:39:35 +11001457 tt = valid_to > INT_MAX ? INT_MAX : valid_to;
Damien Miller0a80ca12010-02-27 07:55:05 +11001458 tm = localtime(&tt);
1459 strftime(to, sizeof(to), "%Y-%m-%dT%H:%M:%S", tm);
1460 }
1461
Damien Millerf2b70ca2010-03-05 07:39:35 +11001462 if (valid_from == 0) {
Damien Miller0a80ca12010-02-27 07:55:05 +11001463 snprintf(ret, sizeof(ret), "before %s", to);
1464 return ret;
1465 }
Damien Millerf2b70ca2010-03-05 07:39:35 +11001466 if (valid_to == 0xffffffffffffffffULL) {
Damien Miller0a80ca12010-02-27 07:55:05 +11001467 snprintf(ret, sizeof(ret), "after %s", from);
1468 return ret;
1469 }
1470
1471 snprintf(ret, sizeof(ret), "from %s to %s", from, to);
1472 return ret;
1473}
1474
1475static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001476add_flag_option(struct sshbuf *c, const char *name)
Damien Miller0a80ca12010-02-27 07:55:05 +11001477{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001478 int r;
1479
Damien Miller0a80ca12010-02-27 07:55:05 +11001480 debug3("%s: %s", __func__, name);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001481 if ((r = sshbuf_put_cstring(c, name)) != 0 ||
1482 (r = sshbuf_put_string(c, NULL, 0)) != 0)
1483 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Miller0a80ca12010-02-27 07:55:05 +11001484}
1485
1486static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001487add_string_option(struct sshbuf *c, const char *name, const char *value)
Damien Miller0a80ca12010-02-27 07:55:05 +11001488{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001489 struct sshbuf *b;
1490 int r;
Damien Miller0a80ca12010-02-27 07:55:05 +11001491
1492 debug3("%s: %s=%s", __func__, name, value);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001493 if ((b = sshbuf_new()) == NULL)
1494 fatal("%s: sshbuf_new failed", __func__);
1495 if ((r = sshbuf_put_cstring(b, value)) != 0 ||
1496 (r = sshbuf_put_cstring(c, name)) != 0 ||
1497 (r = sshbuf_put_stringb(c, b)) != 0)
1498 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Miller0a80ca12010-02-27 07:55:05 +11001499
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001500 sshbuf_free(b);
Damien Miller0a80ca12010-02-27 07:55:05 +11001501}
1502
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001503#define OPTIONS_CRITICAL 1
1504#define OPTIONS_EXTENSIONS 2
Damien Miller0a80ca12010-02-27 07:55:05 +11001505static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001506prepare_options_buf(struct sshbuf *c, int which)
Damien Miller0a80ca12010-02-27 07:55:05 +11001507{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001508 sshbuf_reset(c);
Damien Miller1da63882010-08-05 13:03:51 +10001509 if ((which & OPTIONS_CRITICAL) != 0 &&
1510 certflags_command != NULL)
1511 add_string_option(c, "force-command", certflags_command);
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001512 if ((which & OPTIONS_EXTENSIONS) != 0 &&
Damien Miller2ce12ef2011-05-05 14:17:18 +10001513 (certflags_flags & CERTOPT_X_FWD) != 0)
1514 add_flag_option(c, "permit-X11-forwarding");
1515 if ((which & OPTIONS_EXTENSIONS) != 0 &&
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001516 (certflags_flags & CERTOPT_AGENT_FWD) != 0)
Damien Miller4e270b02010-04-16 15:56:21 +10001517 add_flag_option(c, "permit-agent-forwarding");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001518 if ((which & OPTIONS_EXTENSIONS) != 0 &&
1519 (certflags_flags & CERTOPT_PORT_FWD) != 0)
Damien Miller4e270b02010-04-16 15:56:21 +10001520 add_flag_option(c, "permit-port-forwarding");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001521 if ((which & OPTIONS_EXTENSIONS) != 0 &&
1522 (certflags_flags & CERTOPT_PTY) != 0)
Damien Miller4e270b02010-04-16 15:56:21 +10001523 add_flag_option(c, "permit-pty");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001524 if ((which & OPTIONS_EXTENSIONS) != 0 &&
1525 (certflags_flags & CERTOPT_USER_RC) != 0)
Damien Miller4e270b02010-04-16 15:56:21 +10001526 add_flag_option(c, "permit-user-rc");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001527 if ((which & OPTIONS_CRITICAL) != 0 &&
1528 certflags_src_addr != NULL)
1529 add_string_option(c, "source-address", certflags_src_addr);
Damien Miller0a80ca12010-02-27 07:55:05 +11001530}
1531
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001532static struct sshkey *
Damien Miller757f34e2010-08-05 13:05:31 +10001533load_pkcs11_key(char *path)
1534{
1535#ifdef ENABLE_PKCS11
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001536 struct sshkey **keys = NULL, *public, *private = NULL;
1537 int r, i, nkeys;
Damien Miller757f34e2010-08-05 13:05:31 +10001538
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001539 if ((r = sshkey_load_public(path, &public, NULL)) != 0)
1540 fatal("Couldn't load CA public key \"%s\": %s",
1541 path, ssh_err(r));
Damien Miller757f34e2010-08-05 13:05:31 +10001542
1543 nkeys = pkcs11_add_provider(pkcs11provider, identity_passphrase, &keys);
1544 debug3("%s: %d keys", __func__, nkeys);
1545 if (nkeys <= 0)
1546 fatal("cannot read public key from pkcs11");
1547 for (i = 0; i < nkeys; i++) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001548 if (sshkey_equal_public(public, keys[i])) {
Damien Miller757f34e2010-08-05 13:05:31 +10001549 private = keys[i];
1550 continue;
1551 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001552 sshkey_free(keys[i]);
Damien Miller757f34e2010-08-05 13:05:31 +10001553 }
Darren Tuckera627d422013-06-02 07:31:17 +10001554 free(keys);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001555 sshkey_free(public);
Damien Miller757f34e2010-08-05 13:05:31 +10001556 return private;
1557#else
1558 fatal("no pkcs11 support");
1559#endif /* ENABLE_PKCS11 */
1560}
1561
Damien Miller0a80ca12010-02-27 07:55:05 +11001562static void
1563do_ca_sign(struct passwd *pw, int argc, char **argv)
1564{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001565 int r, i, fd;
Damien Miller0a80ca12010-02-27 07:55:05 +11001566 u_int n;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001567 struct sshkey *ca, *public;
Damien Miller0a80ca12010-02-27 07:55:05 +11001568 char *otmp, *tmp, *cp, *out, *comment, **plist = NULL;
1569 FILE *f;
Damien Miller4e270b02010-04-16 15:56:21 +10001570 int v00 = 0; /* legacy keys */
Damien Miller0a80ca12010-02-27 07:55:05 +11001571
Damien Miller4e270b02010-04-16 15:56:21 +10001572 if (key_type_name != NULL) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001573 switch (sshkey_type_from_name(key_type_name)) {
Damien Miller4e270b02010-04-16 15:56:21 +10001574 case KEY_RSA_CERT_V00:
1575 case KEY_DSA_CERT_V00:
1576 v00 = 1;
1577 break;
1578 case KEY_UNSPEC:
1579 if (strcasecmp(key_type_name, "v00") == 0) {
1580 v00 = 1;
1581 break;
1582 } else if (strcasecmp(key_type_name, "v01") == 0)
1583 break;
1584 /* FALLTHROUGH */
1585 default:
djm@openbsd.org3038a192015-04-17 13:19:22 +00001586 fatal("unknown key type %s", key_type_name);
Damien Miller4e270b02010-04-16 15:56:21 +10001587 }
1588 }
1589
Damien Miller1f0311c2014-05-15 14:24:09 +10001590#ifdef ENABLE_PKCS11
Damien Miller757f34e2010-08-05 13:05:31 +10001591 pkcs11_init(1);
Damien Miller1f0311c2014-05-15 14:24:09 +10001592#endif
Damien Miller757f34e2010-08-05 13:05:31 +10001593 tmp = tilde_expand_filename(ca_key_path, pw->pw_uid);
1594 if (pkcs11provider != NULL) {
1595 if ((ca = load_pkcs11_key(tmp)) == NULL)
1596 fatal("No PKCS#11 key matching %s found", ca_key_path);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001597 } else
1598 ca = load_identity(tmp);
Darren Tuckera627d422013-06-02 07:31:17 +10001599 free(tmp);
Damien Miller757f34e2010-08-05 13:05:31 +10001600
Damien Miller0a80ca12010-02-27 07:55:05 +11001601 for (i = 0; i < argc; i++) {
1602 /* Split list of principals */
1603 n = 0;
1604 if (cert_principals != NULL) {
1605 otmp = tmp = xstrdup(cert_principals);
1606 plist = NULL;
1607 for (; (cp = strsep(&tmp, ",")) != NULL; n++) {
deraadt@openbsd.org657a5fb2015-04-24 01:36:00 +00001608 plist = xreallocarray(plist, n + 1, sizeof(*plist));
Damien Miller0a80ca12010-02-27 07:55:05 +11001609 if (*(plist[n] = xstrdup(cp)) == '\0')
1610 fatal("Empty principal name");
1611 }
Darren Tuckera627d422013-06-02 07:31:17 +10001612 free(otmp);
Damien Miller0a80ca12010-02-27 07:55:05 +11001613 }
1614
1615 tmp = tilde_expand_filename(argv[i], pw->pw_uid);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001616 if ((r = sshkey_load_public(tmp, &public, &comment)) != 0)
1617 fatal("%s: unable to open \"%s\": %s",
1618 __func__, tmp, ssh_err(r));
Damien Millereb8b60e2010-08-31 22:41:14 +10001619 if (public->type != KEY_RSA && public->type != KEY_DSA &&
Damien Miller5be9d9e2013-12-07 11:24:01 +11001620 public->type != KEY_ECDSA && public->type != KEY_ED25519)
Damien Miller0a80ca12010-02-27 07:55:05 +11001621 fatal("%s: key \"%s\" type %s cannot be certified",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001622 __func__, tmp, sshkey_type(public));
Damien Miller0a80ca12010-02-27 07:55:05 +11001623
1624 /* Prepare certificate to sign */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001625 if ((r = sshkey_to_certified(public, v00)) != 0)
1626 fatal("Could not upgrade key %s to certificate: %s",
1627 tmp, ssh_err(r));
Damien Miller0a80ca12010-02-27 07:55:05 +11001628 public->cert->type = cert_key_type;
Damien Miller4e270b02010-04-16 15:56:21 +10001629 public->cert->serial = (u_int64_t)cert_serial;
Damien Miller0a80ca12010-02-27 07:55:05 +11001630 public->cert->key_id = xstrdup(cert_key_id);
1631 public->cert->nprincipals = n;
1632 public->cert->principals = plist;
1633 public->cert->valid_after = cert_valid_from;
1634 public->cert->valid_before = cert_valid_to;
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001635 if (v00) {
Damien Miller86687062014-07-02 15:28:02 +10001636 prepare_options_buf(public->cert->critical,
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001637 OPTIONS_CRITICAL|OPTIONS_EXTENSIONS);
1638 } else {
Damien Miller86687062014-07-02 15:28:02 +10001639 prepare_options_buf(public->cert->critical,
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001640 OPTIONS_CRITICAL);
Damien Miller86687062014-07-02 15:28:02 +10001641 prepare_options_buf(public->cert->extensions,
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001642 OPTIONS_EXTENSIONS);
1643 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001644 if ((r = sshkey_from_private(ca,
1645 &public->cert->signature_key)) != 0)
1646 fatal("key_from_private (ca key): %s", ssh_err(r));
Damien Miller0a80ca12010-02-27 07:55:05 +11001647
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001648 if (sshkey_certify(public, ca) != 0)
Damien Miller0a80ca12010-02-27 07:55:05 +11001649 fatal("Couldn't not certify key %s", tmp);
1650
1651 if ((cp = strrchr(tmp, '.')) != NULL && strcmp(cp, ".pub") == 0)
1652 *cp = '\0';
1653 xasprintf(&out, "%s-cert.pub", tmp);
Darren Tuckera627d422013-06-02 07:31:17 +10001654 free(tmp);
Damien Miller0a80ca12010-02-27 07:55:05 +11001655
1656 if ((fd = open(out, O_WRONLY|O_CREAT|O_TRUNC, 0644)) == -1)
1657 fatal("Could not open \"%s\" for writing: %s", out,
1658 strerror(errno));
1659 if ((f = fdopen(fd, "w")) == NULL)
1660 fatal("%s: fdopen: %s", __func__, strerror(errno));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001661 if ((r = sshkey_write(public, f)) != 0)
1662 fatal("Could not write certified key to %s: %s",
1663 out, ssh_err(r));
Damien Miller0a80ca12010-02-27 07:55:05 +11001664 fprintf(f, " %s\n", comment);
1665 fclose(f);
1666
Damien Miller4e270b02010-04-16 15:56:21 +10001667 if (!quiet) {
1668 logit("Signed %s key %s: id \"%s\" serial %llu%s%s "
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001669 "valid %s", sshkey_cert_type(public),
Damien Miller821de0a2011-01-11 17:20:29 +11001670 out, public->cert->key_id,
1671 (unsigned long long)public->cert->serial,
Damien Miller0a80ca12010-02-27 07:55:05 +11001672 cert_principals != NULL ? " for " : "",
1673 cert_principals != NULL ? cert_principals : "",
Damien Millerf2b70ca2010-03-05 07:39:35 +11001674 fmt_validity(cert_valid_from, cert_valid_to));
Damien Miller4e270b02010-04-16 15:56:21 +10001675 }
Damien Miller0a80ca12010-02-27 07:55:05 +11001676
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001677 sshkey_free(public);
Darren Tuckera627d422013-06-02 07:31:17 +10001678 free(out);
Damien Miller0a80ca12010-02-27 07:55:05 +11001679 }
Damien Miller1f0311c2014-05-15 14:24:09 +10001680#ifdef ENABLE_PKCS11
Damien Miller757f34e2010-08-05 13:05:31 +10001681 pkcs11_terminate();
Damien Miller1f0311c2014-05-15 14:24:09 +10001682#endif
Damien Miller0a80ca12010-02-27 07:55:05 +11001683 exit(0);
1684}
1685
1686static u_int64_t
1687parse_relative_time(const char *s, time_t now)
1688{
1689 int64_t mul, secs;
1690
1691 mul = *s == '-' ? -1 : 1;
1692
1693 if ((secs = convtime(s + 1)) == -1)
1694 fatal("Invalid relative certificate time %s", s);
1695 if (mul == -1 && secs > now)
1696 fatal("Certificate time %s cannot be represented", s);
1697 return now + (u_int64_t)(secs * mul);
1698}
1699
1700static u_int64_t
1701parse_absolute_time(const char *s)
1702{
1703 struct tm tm;
1704 time_t tt;
Damien Miller2ca342b2010-03-03 12:14:15 +11001705 char buf[32], *fmt;
Damien Miller0a80ca12010-02-27 07:55:05 +11001706
Damien Miller2ca342b2010-03-03 12:14:15 +11001707 /*
1708 * POSIX strptime says "The application shall ensure that there
1709 * is white-space or other non-alphanumeric characters between
1710 * any two conversion specifications" so arrange things this way.
1711 */
1712 switch (strlen(s)) {
1713 case 8:
Damien Miller3e1ee492010-03-08 09:24:11 +11001714 fmt = "%Y-%m-%d";
1715 snprintf(buf, sizeof(buf), "%.4s-%.2s-%.2s", s, s + 4, s + 6);
Damien Miller2ca342b2010-03-03 12:14:15 +11001716 break;
1717 case 14:
Damien Miller3e1ee492010-03-08 09:24:11 +11001718 fmt = "%Y-%m-%dT%H:%M:%S";
1719 snprintf(buf, sizeof(buf), "%.4s-%.2s-%.2sT%.2s:%.2s:%.2s",
Damien Miller2ca342b2010-03-03 12:14:15 +11001720 s, s + 4, s + 6, s + 8, s + 10, s + 12);
1721 break;
1722 default:
Damien Miller0a80ca12010-02-27 07:55:05 +11001723 fatal("Invalid certificate time format %s", s);
Damien Miller2ca342b2010-03-03 12:14:15 +11001724 }
Damien Miller0a80ca12010-02-27 07:55:05 +11001725
Damien Miller1d2c4562014-02-04 11:18:20 +11001726 memset(&tm, 0, sizeof(tm));
Damien Miller2ca342b2010-03-03 12:14:15 +11001727 if (strptime(buf, fmt, &tm) == NULL)
Damien Miller0a80ca12010-02-27 07:55:05 +11001728 fatal("Invalid certificate time %s", s);
1729 if ((tt = mktime(&tm)) < 0)
1730 fatal("Certificate time %s cannot be represented", s);
1731 return (u_int64_t)tt;
1732}
1733
1734static void
1735parse_cert_times(char *timespec)
1736{
1737 char *from, *to;
1738 time_t now = time(NULL);
1739 int64_t secs;
1740
1741 /* +timespec relative to now */
1742 if (*timespec == '+' && strchr(timespec, ':') == NULL) {
1743 if ((secs = convtime(timespec + 1)) == -1)
1744 fatal("Invalid relative certificate life %s", timespec);
1745 cert_valid_to = now + secs;
1746 /*
1747 * Backdate certificate one minute to avoid problems on hosts
1748 * with poorly-synchronised clocks.
1749 */
1750 cert_valid_from = ((now - 59)/ 60) * 60;
1751 return;
1752 }
1753
1754 /*
1755 * from:to, where
1756 * from := [+-]timespec | YYYYMMDD | YYYYMMDDHHMMSS
1757 * to := [+-]timespec | YYYYMMDD | YYYYMMDDHHMMSS
1758 */
1759 from = xstrdup(timespec);
1760 to = strchr(from, ':');
1761 if (to == NULL || from == to || *(to + 1) == '\0')
Damien Miller910f2092010-03-04 14:17:22 +11001762 fatal("Invalid certificate life specification %s", timespec);
Damien Miller0a80ca12010-02-27 07:55:05 +11001763 *to++ = '\0';
1764
1765 if (*from == '-' || *from == '+')
1766 cert_valid_from = parse_relative_time(from, now);
1767 else
1768 cert_valid_from = parse_absolute_time(from);
1769
1770 if (*to == '-' || *to == '+')
Damien Miller5b01b0d2013-10-23 16:31:31 +11001771 cert_valid_to = parse_relative_time(to, now);
Damien Miller0a80ca12010-02-27 07:55:05 +11001772 else
1773 cert_valid_to = parse_absolute_time(to);
1774
1775 if (cert_valid_to <= cert_valid_from)
1776 fatal("Empty certificate validity interval");
Darren Tuckera627d422013-06-02 07:31:17 +10001777 free(from);
Damien Miller0a80ca12010-02-27 07:55:05 +11001778}
1779
1780static void
Damien Miller4e270b02010-04-16 15:56:21 +10001781add_cert_option(char *opt)
Damien Miller0a80ca12010-02-27 07:55:05 +11001782{
1783 char *val;
1784
Damien Miller044f4a62011-05-05 14:14:08 +10001785 if (strcasecmp(opt, "clear") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001786 certflags_flags = 0;
Damien Miller0a80ca12010-02-27 07:55:05 +11001787 else if (strcasecmp(opt, "no-x11-forwarding") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001788 certflags_flags &= ~CERTOPT_X_FWD;
Damien Miller0a80ca12010-02-27 07:55:05 +11001789 else if (strcasecmp(opt, "permit-x11-forwarding") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001790 certflags_flags |= CERTOPT_X_FWD;
Damien Miller0a80ca12010-02-27 07:55:05 +11001791 else if (strcasecmp(opt, "no-agent-forwarding") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001792 certflags_flags &= ~CERTOPT_AGENT_FWD;
Damien Miller0a80ca12010-02-27 07:55:05 +11001793 else if (strcasecmp(opt, "permit-agent-forwarding") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001794 certflags_flags |= CERTOPT_AGENT_FWD;
Damien Miller0a80ca12010-02-27 07:55:05 +11001795 else if (strcasecmp(opt, "no-port-forwarding") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001796 certflags_flags &= ~CERTOPT_PORT_FWD;
Damien Miller0a80ca12010-02-27 07:55:05 +11001797 else if (strcasecmp(opt, "permit-port-forwarding") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001798 certflags_flags |= CERTOPT_PORT_FWD;
Damien Miller0a80ca12010-02-27 07:55:05 +11001799 else if (strcasecmp(opt, "no-pty") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001800 certflags_flags &= ~CERTOPT_PTY;
Damien Miller0a80ca12010-02-27 07:55:05 +11001801 else if (strcasecmp(opt, "permit-pty") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001802 certflags_flags |= CERTOPT_PTY;
Damien Miller0a80ca12010-02-27 07:55:05 +11001803 else if (strcasecmp(opt, "no-user-rc") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001804 certflags_flags &= ~CERTOPT_USER_RC;
Damien Miller0a80ca12010-02-27 07:55:05 +11001805 else if (strcasecmp(opt, "permit-user-rc") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001806 certflags_flags |= CERTOPT_USER_RC;
Damien Miller0a80ca12010-02-27 07:55:05 +11001807 else if (strncasecmp(opt, "force-command=", 14) == 0) {
1808 val = opt + 14;
1809 if (*val == '\0')
Damien Miller4e270b02010-04-16 15:56:21 +10001810 fatal("Empty force-command option");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001811 if (certflags_command != NULL)
Damien Miller0a80ca12010-02-27 07:55:05 +11001812 fatal("force-command already specified");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001813 certflags_command = xstrdup(val);
Damien Miller0a80ca12010-02-27 07:55:05 +11001814 } else if (strncasecmp(opt, "source-address=", 15) == 0) {
1815 val = opt + 15;
1816 if (*val == '\0')
Damien Miller4e270b02010-04-16 15:56:21 +10001817 fatal("Empty source-address option");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001818 if (certflags_src_addr != NULL)
Damien Miller0a80ca12010-02-27 07:55:05 +11001819 fatal("source-address already specified");
1820 if (addr_match_cidr_list(NULL, val) != 0)
1821 fatal("Invalid source-address list");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001822 certflags_src_addr = xstrdup(val);
Damien Miller0a80ca12010-02-27 07:55:05 +11001823 } else
Damien Miller4e270b02010-04-16 15:56:21 +10001824 fatal("Unsupported certificate option \"%s\"", opt);
Damien Miller0a80ca12010-02-27 07:55:05 +11001825}
1826
Ben Lindstrombba81212001-06-25 05:01:22 +00001827static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001828show_options(struct sshbuf *optbuf, int v00, int in_critical)
Damien Millerd834d352010-06-26 09:48:02 +10001829{
Damien Miller633de332014-05-15 13:48:26 +10001830 char *name, *arg;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001831 struct sshbuf *options, *option = NULL;
1832 int r;
Damien Millerd834d352010-06-26 09:48:02 +10001833
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001834 if ((options = sshbuf_fromb(optbuf)) == NULL)
1835 fatal("%s: sshbuf_fromb failed", __func__);
1836 while (sshbuf_len(options) != 0) {
1837 sshbuf_free(option);
1838 option = NULL;
1839 if ((r = sshbuf_get_cstring(options, &name, NULL)) != 0 ||
1840 (r = sshbuf_froms(options, &option)) != 0)
1841 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Millerd834d352010-06-26 09:48:02 +10001842 printf(" %s", name);
1843 if ((v00 || !in_critical) &&
1844 (strcmp(name, "permit-X11-forwarding") == 0 ||
1845 strcmp(name, "permit-agent-forwarding") == 0 ||
1846 strcmp(name, "permit-port-forwarding") == 0 ||
1847 strcmp(name, "permit-pty") == 0 ||
1848 strcmp(name, "permit-user-rc") == 0))
1849 printf("\n");
1850 else if ((v00 || in_critical) &&
1851 (strcmp(name, "force-command") == 0 ||
1852 strcmp(name, "source-address") == 0)) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001853 if ((r = sshbuf_get_cstring(option, &arg, NULL)) != 0)
1854 fatal("%s: buffer error: %s",
1855 __func__, ssh_err(r));
Damien Miller633de332014-05-15 13:48:26 +10001856 printf(" %s\n", arg);
1857 free(arg);
Damien Millerd834d352010-06-26 09:48:02 +10001858 } else {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001859 printf(" UNKNOWN OPTION (len %zu)\n",
1860 sshbuf_len(option));
1861 sshbuf_reset(option);
Damien Millerd834d352010-06-26 09:48:02 +10001862 }
Darren Tuckera627d422013-06-02 07:31:17 +10001863 free(name);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001864 if (sshbuf_len(option) != 0)
Damien Millerd834d352010-06-26 09:48:02 +10001865 fatal("Option corrupt: extra data at end");
1866 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001867 sshbuf_free(option);
1868 sshbuf_free(options);
Damien Millerd834d352010-06-26 09:48:02 +10001869}
1870
1871static void
Damien Millerf2b70ca2010-03-05 07:39:35 +11001872do_show_cert(struct passwd *pw)
1873{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001874 struct sshkey *key;
Damien Millerf2b70ca2010-03-05 07:39:35 +11001875 struct stat st;
1876 char *key_fp, *ca_fp;
Damien Millerd834d352010-06-26 09:48:02 +10001877 u_int i, v00;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001878 int r;
Damien Millerf2b70ca2010-03-05 07:39:35 +11001879
1880 if (!have_identity)
1881 ask_filename(pw, "Enter file in which the key is");
Damien Millerba3420a2010-06-26 09:39:07 +10001882 if (stat(identity_file, &st) < 0)
1883 fatal("%s: %s: %s", __progname, identity_file, strerror(errno));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001884 if ((r = sshkey_load_public(identity_file, &key, NULL)) != 0)
1885 fatal("Cannot load public key \"%s\": %s",
1886 identity_file, ssh_err(r));
1887 if (!sshkey_is_cert(key))
Damien Millerf2b70ca2010-03-05 07:39:35 +11001888 fatal("%s is not a certificate", identity_file);
Damien Miller4e270b02010-04-16 15:56:21 +10001889 v00 = key->type == KEY_RSA_CERT_V00 || key->type == KEY_DSA_CERT_V00;
1890
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001891 key_fp = sshkey_fingerprint(key, fingerprint_hash, SSH_FP_DEFAULT);
1892 ca_fp = sshkey_fingerprint(key->cert->signature_key,
djm@openbsd.org56d1c832014-12-21 22:27:55 +00001893 fingerprint_hash, SSH_FP_DEFAULT);
djm@openbsd.org9ce86c92015-01-28 22:36:00 +00001894 if (key_fp == NULL || ca_fp == NULL)
1895 fatal("%s: sshkey_fingerprint fail", __func__);
Damien Millerf2b70ca2010-03-05 07:39:35 +11001896
1897 printf("%s:\n", identity_file);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001898 printf(" Type: %s %s certificate\n", sshkey_ssh_name(key),
1899 sshkey_cert_type(key));
1900 printf(" Public key: %s %s\n", sshkey_type(key), key_fp);
Damien Miller4e270b02010-04-16 15:56:21 +10001901 printf(" Signing CA: %s %s\n",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001902 sshkey_type(key->cert->signature_key), ca_fp);
Damien Miller4e270b02010-04-16 15:56:21 +10001903 printf(" Key ID: \"%s\"\n", key->cert->key_id);
Damien Miller821de0a2011-01-11 17:20:29 +11001904 if (!v00) {
1905 printf(" Serial: %llu\n",
1906 (unsigned long long)key->cert->serial);
1907 }
Damien Millerf2b70ca2010-03-05 07:39:35 +11001908 printf(" Valid: %s\n",
1909 fmt_validity(key->cert->valid_after, key->cert->valid_before));
1910 printf(" Principals: ");
1911 if (key->cert->nprincipals == 0)
1912 printf("(none)\n");
1913 else {
1914 for (i = 0; i < key->cert->nprincipals; i++)
1915 printf("\n %s",
1916 key->cert->principals[i]);
1917 printf("\n");
1918 }
Damien Miller4e270b02010-04-16 15:56:21 +10001919 printf(" Critical Options: ");
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001920 if (sshbuf_len(key->cert->critical) == 0)
Damien Millerf2b70ca2010-03-05 07:39:35 +11001921 printf("(none)\n");
1922 else {
1923 printf("\n");
Damien Miller86687062014-07-02 15:28:02 +10001924 show_options(key->cert->critical, v00, 1);
Damien Millerf2b70ca2010-03-05 07:39:35 +11001925 }
Damien Miller4e270b02010-04-16 15:56:21 +10001926 if (!v00) {
1927 printf(" Extensions: ");
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001928 if (sshbuf_len(key->cert->extensions) == 0)
Damien Miller4e270b02010-04-16 15:56:21 +10001929 printf("(none)\n");
1930 else {
1931 printf("\n");
Damien Miller86687062014-07-02 15:28:02 +10001932 show_options(key->cert->extensions, v00, 0);
Damien Miller4e270b02010-04-16 15:56:21 +10001933 }
1934 }
Damien Millerf2b70ca2010-03-05 07:39:35 +11001935 exit(0);
1936}
1937
1938static void
Damien Millerf3747bf2013-01-18 11:44:04 +11001939load_krl(const char *path, struct ssh_krl **krlp)
1940{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001941 struct sshbuf *krlbuf;
1942 int r, fd;
Damien Millerf3747bf2013-01-18 11:44:04 +11001943
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001944 if ((krlbuf = sshbuf_new()) == NULL)
1945 fatal("sshbuf_new failed");
Damien Millerf3747bf2013-01-18 11:44:04 +11001946 if ((fd = open(path, O_RDONLY)) == -1)
1947 fatal("open %s: %s", path, strerror(errno));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001948 if ((r = sshkey_load_file(fd, krlbuf)) != 0)
1949 fatal("Unable to load KRL: %s", ssh_err(r));
Damien Millerf3747bf2013-01-18 11:44:04 +11001950 close(fd);
1951 /* XXX check sigs */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001952 if ((r = ssh_krl_from_blob(krlbuf, krlp, NULL, 0)) != 0 ||
Damien Millerf3747bf2013-01-18 11:44:04 +11001953 *krlp == NULL)
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001954 fatal("Invalid KRL file: %s", ssh_err(r));
1955 sshbuf_free(krlbuf);
Damien Millerf3747bf2013-01-18 11:44:04 +11001956}
1957
1958static void
djm@openbsd.org669aee92015-01-30 01:10:33 +00001959update_krl_from_file(struct passwd *pw, const char *file, int wild_ca,
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001960 const struct sshkey *ca, struct ssh_krl *krl)
Damien Millerf3747bf2013-01-18 11:44:04 +11001961{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001962 struct sshkey *key = NULL;
Damien Millerf3747bf2013-01-18 11:44:04 +11001963 u_long lnum = 0;
1964 char *path, *cp, *ep, line[SSH_MAX_PUBKEY_BYTES];
1965 unsigned long long serial, serial2;
1966 int i, was_explicit_key, was_sha1, r;
1967 FILE *krl_spec;
1968
1969 path = tilde_expand_filename(file, pw->pw_uid);
1970 if (strcmp(path, "-") == 0) {
1971 krl_spec = stdin;
1972 free(path);
1973 path = xstrdup("(standard input)");
1974 } else if ((krl_spec = fopen(path, "r")) == NULL)
1975 fatal("fopen %s: %s", path, strerror(errno));
1976
1977 if (!quiet)
1978 printf("Revoking from %s\n", path);
1979 while (read_keyfile_line(krl_spec, path, line, sizeof(line),
1980 &lnum) == 0) {
1981 was_explicit_key = was_sha1 = 0;
1982 cp = line + strspn(line, " \t");
1983 /* Trim trailing space, comments and strip \n */
1984 for (i = 0, r = -1; cp[i] != '\0'; i++) {
1985 if (cp[i] == '#' || cp[i] == '\n') {
1986 cp[i] = '\0';
1987 break;
1988 }
1989 if (cp[i] == ' ' || cp[i] == '\t') {
1990 /* Remember the start of a span of whitespace */
1991 if (r == -1)
1992 r = i;
1993 } else
1994 r = -1;
1995 }
1996 if (r != -1)
1997 cp[r] = '\0';
1998 if (*cp == '\0')
1999 continue;
2000 if (strncasecmp(cp, "serial:", 7) == 0) {
djm@openbsd.org669aee92015-01-30 01:10:33 +00002001 if (ca == NULL && !wild_ca) {
Damien Millerd234afb2013-08-21 02:42:58 +10002002 fatal("revoking certificates by serial number "
Damien Millerf3747bf2013-01-18 11:44:04 +11002003 "requires specification of a CA key");
2004 }
2005 cp += 7;
2006 cp = cp + strspn(cp, " \t");
2007 errno = 0;
2008 serial = strtoull(cp, &ep, 0);
2009 if (*cp == '\0' || (*ep != '\0' && *ep != '-'))
2010 fatal("%s:%lu: invalid serial \"%s\"",
2011 path, lnum, cp);
2012 if (errno == ERANGE && serial == ULLONG_MAX)
2013 fatal("%s:%lu: serial out of range",
2014 path, lnum);
2015 serial2 = serial;
2016 if (*ep == '-') {
2017 cp = ep + 1;
2018 errno = 0;
2019 serial2 = strtoull(cp, &ep, 0);
2020 if (*cp == '\0' || *ep != '\0')
2021 fatal("%s:%lu: invalid serial \"%s\"",
2022 path, lnum, cp);
2023 if (errno == ERANGE && serial2 == ULLONG_MAX)
2024 fatal("%s:%lu: serial out of range",
2025 path, lnum);
2026 if (serial2 <= serial)
2027 fatal("%s:%lu: invalid serial range "
2028 "%llu:%llu", path, lnum,
2029 (unsigned long long)serial,
2030 (unsigned long long)serial2);
2031 }
2032 if (ssh_krl_revoke_cert_by_serial_range(krl,
2033 ca, serial, serial2) != 0) {
2034 fatal("%s: revoke serial failed",
2035 __func__);
2036 }
2037 } else if (strncasecmp(cp, "id:", 3) == 0) {
djm@openbsd.org669aee92015-01-30 01:10:33 +00002038 if (ca == NULL && !wild_ca) {
Damien Millerd5d9d7b2013-08-21 02:43:27 +10002039 fatal("revoking certificates by key ID "
Damien Millerf3747bf2013-01-18 11:44:04 +11002040 "requires specification of a CA key");
2041 }
2042 cp += 3;
2043 cp = cp + strspn(cp, " \t");
2044 if (ssh_krl_revoke_cert_by_key_id(krl, ca, cp) != 0)
2045 fatal("%s: revoke key ID failed", __func__);
2046 } else {
2047 if (strncasecmp(cp, "key:", 4) == 0) {
2048 cp += 4;
2049 cp = cp + strspn(cp, " \t");
2050 was_explicit_key = 1;
2051 } else if (strncasecmp(cp, "sha1:", 5) == 0) {
2052 cp += 5;
2053 cp = cp + strspn(cp, " \t");
2054 was_sha1 = 1;
2055 } else {
2056 /*
2057 * Just try to process the line as a key.
2058 * Parsing will fail if it isn't.
2059 */
2060 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002061 if ((key = sshkey_new(KEY_UNSPEC)) == NULL)
Damien Millerf3747bf2013-01-18 11:44:04 +11002062 fatal("key_new");
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002063 if ((r = sshkey_read(key, &cp)) != 0)
2064 fatal("%s:%lu: invalid key: %s",
2065 path, lnum, ssh_err(r));
Damien Millerf3747bf2013-01-18 11:44:04 +11002066 if (was_explicit_key)
2067 r = ssh_krl_revoke_key_explicit(krl, key);
2068 else if (was_sha1)
2069 r = ssh_krl_revoke_key_sha1(krl, key);
2070 else
2071 r = ssh_krl_revoke_key(krl, key);
2072 if (r != 0)
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002073 fatal("%s: revoke key failed: %s",
2074 __func__, ssh_err(r));
2075 sshkey_free(key);
Damien Millerf3747bf2013-01-18 11:44:04 +11002076 }
2077 }
2078 if (strcmp(path, "-") != 0)
2079 fclose(krl_spec);
Damien Miller0d6771b2013-04-23 15:23:24 +10002080 free(path);
Damien Millerf3747bf2013-01-18 11:44:04 +11002081}
2082
2083static void
2084do_gen_krl(struct passwd *pw, int updating, int argc, char **argv)
2085{
2086 struct ssh_krl *krl;
2087 struct stat sb;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002088 struct sshkey *ca = NULL;
djm@openbsd.org669aee92015-01-30 01:10:33 +00002089 int fd, i, r, wild_ca = 0;
Damien Millerf3747bf2013-01-18 11:44:04 +11002090 char *tmp;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002091 struct sshbuf *kbuf;
Damien Millerf3747bf2013-01-18 11:44:04 +11002092
2093 if (*identity_file == '\0')
2094 fatal("KRL generation requires an output file");
2095 if (stat(identity_file, &sb) == -1) {
2096 if (errno != ENOENT)
2097 fatal("Cannot access KRL \"%s\": %s",
2098 identity_file, strerror(errno));
2099 if (updating)
2100 fatal("KRL \"%s\" does not exist", identity_file);
2101 }
2102 if (ca_key_path != NULL) {
djm@openbsd.org669aee92015-01-30 01:10:33 +00002103 if (strcasecmp(ca_key_path, "none") == 0)
2104 wild_ca = 1;
2105 else {
2106 tmp = tilde_expand_filename(ca_key_path, pw->pw_uid);
2107 if ((r = sshkey_load_public(tmp, &ca, NULL)) != 0)
2108 fatal("Cannot load CA public key %s: %s",
2109 tmp, ssh_err(r));
2110 free(tmp);
2111 }
Damien Millerf3747bf2013-01-18 11:44:04 +11002112 }
2113
2114 if (updating)
2115 load_krl(identity_file, &krl);
2116 else if ((krl = ssh_krl_init()) == NULL)
2117 fatal("couldn't create KRL");
2118
2119 if (cert_serial != 0)
2120 ssh_krl_set_version(krl, cert_serial);
2121 if (identity_comment != NULL)
2122 ssh_krl_set_comment(krl, identity_comment);
2123
2124 for (i = 0; i < argc; i++)
djm@openbsd.org669aee92015-01-30 01:10:33 +00002125 update_krl_from_file(pw, argv[i], wild_ca, ca, krl);
Damien Millerf3747bf2013-01-18 11:44:04 +11002126
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002127 if ((kbuf = sshbuf_new()) == NULL)
2128 fatal("sshbuf_new failed");
2129 if (ssh_krl_to_blob(krl, kbuf, NULL, 0) != 0)
Damien Millerf3747bf2013-01-18 11:44:04 +11002130 fatal("Couldn't generate KRL");
2131 if ((fd = open(identity_file, O_WRONLY|O_CREAT|O_TRUNC, 0644)) == -1)
2132 fatal("open %s: %s", identity_file, strerror(errno));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002133 if (atomicio(vwrite, fd, (void *)sshbuf_ptr(kbuf), sshbuf_len(kbuf)) !=
2134 sshbuf_len(kbuf))
Damien Millerf3747bf2013-01-18 11:44:04 +11002135 fatal("write %s: %s", identity_file, strerror(errno));
2136 close(fd);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002137 sshbuf_free(kbuf);
Damien Millerf3747bf2013-01-18 11:44:04 +11002138 ssh_krl_free(krl);
Damien Miller0d6771b2013-04-23 15:23:24 +10002139 if (ca != NULL)
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002140 sshkey_free(ca);
Damien Millerf3747bf2013-01-18 11:44:04 +11002141}
2142
2143static void
2144do_check_krl(struct passwd *pw, int argc, char **argv)
2145{
2146 int i, r, ret = 0;
2147 char *comment;
2148 struct ssh_krl *krl;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002149 struct sshkey *k;
Damien Millerf3747bf2013-01-18 11:44:04 +11002150
2151 if (*identity_file == '\0')
2152 fatal("KRL checking requires an input file");
2153 load_krl(identity_file, &krl);
2154 for (i = 0; i < argc; i++) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002155 if ((r = sshkey_load_public(argv[i], &k, &comment)) != 0)
2156 fatal("Cannot load public key %s: %s",
2157 argv[i], ssh_err(r));
Damien Millerf3747bf2013-01-18 11:44:04 +11002158 r = ssh_krl_check_key(krl, k);
2159 printf("%s%s%s%s: %s\n", argv[i],
2160 *comment ? " (" : "", comment, *comment ? ")" : "",
2161 r == 0 ? "ok" : "REVOKED");
2162 if (r != 0)
2163 ret = 1;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002164 sshkey_free(k);
Damien Millerf3747bf2013-01-18 11:44:04 +11002165 free(comment);
2166 }
2167 ssh_krl_free(krl);
2168 exit(ret);
2169}
2170
2171static void
Damien Miller431f66b1999-11-21 18:31:57 +11002172usage(void)
2173{
Damien Millerf0858de2014-04-20 13:01:30 +10002174 fprintf(stderr,
2175 "usage: ssh-keygen [-q] [-b bits] [-t dsa | ecdsa | ed25519 | rsa | rsa1]\n"
2176 " [-N new_passphrase] [-C comment] [-f output_keyfile]\n"
2177 " ssh-keygen -p [-P old_passphrase] [-N new_passphrase] [-f keyfile]\n"
2178 " ssh-keygen -i [-m key_format] [-f input_keyfile]\n"
2179 " ssh-keygen -e [-m key_format] [-f input_keyfile]\n"
2180 " ssh-keygen -y [-f input_keyfile]\n"
2181 " ssh-keygen -c [-P passphrase] [-C comment] [-f keyfile]\n"
naddy@openbsd.org6288e3a2015-02-24 15:24:05 +00002182 " ssh-keygen -l [-v] [-E fingerprint_hash] [-f input_keyfile]\n"
Damien Millerf0858de2014-04-20 13:01:30 +10002183 " ssh-keygen -B [-f input_keyfile]\n");
Damien Miller7ea845e2010-02-12 09:21:02 +11002184#ifdef ENABLE_PKCS11
Damien Millerf0858de2014-04-20 13:01:30 +10002185 fprintf(stderr,
2186 " ssh-keygen -D pkcs11\n");
Damien Miller7ea845e2010-02-12 09:21:02 +11002187#endif
Damien Millerf0858de2014-04-20 13:01:30 +10002188 fprintf(stderr,
2189 " ssh-keygen -F hostname [-f known_hosts_file] [-l]\n"
2190 " ssh-keygen -H [-f known_hosts_file]\n"
2191 " ssh-keygen -R hostname [-f known_hosts_file]\n"
2192 " ssh-keygen -r hostname [-f input_keyfile] [-g]\n"
2193 " ssh-keygen -G output_file [-v] [-b bits] [-M memory] [-S start_point]\n"
2194 " ssh-keygen -T output_file -f input_file [-v] [-a rounds] [-J num_lines]\n"
2195 " [-j start_line] [-K checkpt] [-W generator]\n"
2196 " ssh-keygen -s ca_key -I certificate_identity [-h] [-n principals]\n"
2197 " [-O option] [-V validity_interval] [-z serial_number] file ...\n"
2198 " ssh-keygen -L [-f input_keyfile]\n"
2199 " ssh-keygen -A\n"
2200 " ssh-keygen -k -f krl_file [-u] [-s ca_public] [-z version_number]\n"
2201 " file ...\n"
2202 " ssh-keygen -Q -f krl_file file ...\n");
Damien Miller95def091999-11-25 00:26:21 +11002203 exit(1);
Damien Miller431f66b1999-11-21 18:31:57 +11002204}
2205
Damien Miller95def091999-11-25 00:26:21 +11002206/*
2207 * Main program for key management.
2208 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002209int
Damien Millerdf8b7db2007-01-05 16:22:57 +11002210main(int argc, char **argv)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002211{
deraadt@openbsd.org2ae4f332015-01-16 06:40:12 +00002212 char dotsshdir[PATH_MAX], comment[1024], *passphrase1, *passphrase2;
Damien Miller390d0562011-10-18 16:05:19 +11002213 char *checkpoint = NULL;
djm@openbsd.org9ce86c92015-01-28 22:36:00 +00002214 char out_file[PATH_MAX], *rr_hostname = NULL, *ep, *fp, *ra;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002215 struct sshkey *private, *public;
Damien Miller95def091999-11-25 00:26:21 +11002216 struct passwd *pw;
Damien Miller95def091999-11-25 00:26:21 +11002217 struct stat st;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002218 int r, opt, type, fd;
Damien Millerbcd00ab2013-12-07 10:41:55 +11002219 u_int32_t memory = 0, generator_wanted = 0;
Darren Tucker019cefe2003-08-02 22:40:07 +10002220 int do_gen_candidates = 0, do_screen_candidates = 0;
Damien Millerf3747bf2013-01-18 11:44:04 +11002221 int gen_all_hostkeys = 0, gen_krl = 0, update_krl = 0, check_krl = 0;
Damien Millerdfceafe2012-07-06 13:44:19 +10002222 unsigned long start_lineno = 0, lines_to_process = 0;
Darren Tucker019cefe2003-08-02 22:40:07 +10002223 BIGNUM *start = NULL;
Damien Miller95def091999-11-25 00:26:21 +11002224 FILE *f;
Damien Miller02e754f2005-05-26 12:19:39 +10002225 const char *errstr;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002226
Damien Miller95def091999-11-25 00:26:21 +11002227 extern int optind;
2228 extern char *optarg;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002229
Darren Tuckerce321d82005-10-03 18:11:24 +10002230 /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
2231 sanitise_stdfd();
2232
Darren Tucker9ac56e92007-01-14 10:19:59 +11002233 __progname = ssh_get_progname(argv[0]);
Damien Millerf9b625c2000-07-09 22:42:32 +10002234
Damien Miller72ef7c12015-01-15 02:21:31 +11002235#ifdef WITH_OPENSSL
Damien Miller4314c2b2010-09-10 11:12:09 +10002236 OpenSSL_add_all_algorithms();
Damien Miller72ef7c12015-01-15 02:21:31 +11002237#endif
Damien Millerdf8b7db2007-01-05 16:22:57 +11002238 log_init(argv[0], SYSLOG_LEVEL_INFO, SYSLOG_FACILITY_USER, 1);
Darren Tucker019cefe2003-08-02 22:40:07 +10002239
Kevin Steves3a881912002-07-20 19:05:40 +00002240 seed_rng();
Damien Millereba71ba2000-04-29 23:57:08 +10002241
Damien Miller5428f641999-11-25 11:54:57 +11002242 /* we need this for the home * directory. */
Damien Miller95def091999-11-25 00:26:21 +11002243 pw = getpwuid(getuid());
djm@openbsd.org3038a192015-04-17 13:19:22 +00002244 if (!pw)
2245 fatal("No user exists for uid %lu", (u_long)getuid());
2246 if (gethostname(hostname, sizeof(hostname)) < 0)
2247 fatal("gethostname: %s", strerror(errno));
Damien Miller5428f641999-11-25 11:54:57 +11002248
djm@openbsd.org56d1c832014-12-21 22:27:55 +00002249 /* Remaining characters: UYdw */
Damien Millerbcd00ab2013-12-07 10:41:55 +11002250 while ((opt = getopt(argc, argv, "ABHLQXceghiklopquvxy"
djm@openbsd.org56d1c832014-12-21 22:27:55 +00002251 "C:D:E:F:G:I:J:K:M:N:O:P:R:S:T:V:W:Z:"
2252 "a:b:f:g:j:m:n:r:s:t:z:")) != -1) {
Damien Miller95def091999-11-25 00:26:21 +11002253 switch (opt) {
Damien Miller58f1baf2011-05-05 14:06:15 +10002254 case 'A':
2255 gen_all_hostkeys = 1;
2256 break;
Damien Miller95def091999-11-25 00:26:21 +11002257 case 'b':
Damien Miller57737942010-09-10 11:16:37 +10002258 bits = (u_int32_t)strtonum(optarg, 256, 32768, &errstr);
Damien Miller02e754f2005-05-26 12:19:39 +10002259 if (errstr)
2260 fatal("Bits has bad value %s (%s)",
2261 optarg, errstr);
Damien Miller95def091999-11-25 00:26:21 +11002262 break;
djm@openbsd.org56d1c832014-12-21 22:27:55 +00002263 case 'E':
2264 fingerprint_hash = ssh_digest_alg_by_name(optarg);
2265 if (fingerprint_hash == -1)
2266 fatal("Invalid hash algorithm \"%s\"", optarg);
2267 break;
Damien Miller4b42d7f2005-03-01 21:48:35 +11002268 case 'F':
2269 find_host = 1;
2270 rr_hostname = optarg;
2271 break;
2272 case 'H':
2273 hash_hosts = 1;
2274 break;
Damien Miller0a80ca12010-02-27 07:55:05 +11002275 case 'I':
2276 cert_key_id = optarg;
2277 break;
Damien Millerdfceafe2012-07-06 13:44:19 +10002278 case 'J':
2279 lines_to_process = strtoul(optarg, NULL, 10);
2280 break;
2281 case 'j':
2282 start_lineno = strtoul(optarg, NULL, 10);
2283 break;
Damien Miller4b42d7f2005-03-01 21:48:35 +11002284 case 'R':
2285 delete_host = 1;
2286 rr_hostname = optarg;
2287 break;
Damien Millerf2b70ca2010-03-05 07:39:35 +11002288 case 'L':
2289 show_cert = 1;
2290 break;
Damien Miller95def091999-11-25 00:26:21 +11002291 case 'l':
2292 print_fingerprint = 1;
2293 break;
Ben Lindstrom8fd372b2001-03-12 03:02:17 +00002294 case 'B':
2295 print_bubblebabble = 1;
2296 break;
Damien Miller44b25042010-07-02 13:35:01 +10002297 case 'm':
2298 if (strcasecmp(optarg, "RFC4716") == 0 ||
2299 strcasecmp(optarg, "ssh2") == 0) {
2300 convert_format = FMT_RFC4716;
2301 break;
2302 }
2303 if (strcasecmp(optarg, "PKCS8") == 0) {
2304 convert_format = FMT_PKCS8;
2305 break;
2306 }
2307 if (strcasecmp(optarg, "PEM") == 0) {
2308 convert_format = FMT_PEM;
2309 break;
2310 }
2311 fatal("Unsupported conversion format \"%s\"", optarg);
Damien Miller0a80ca12010-02-27 07:55:05 +11002312 case 'n':
2313 cert_principals = optarg;
2314 break;
Damien Millerbcd00ab2013-12-07 10:41:55 +11002315 case 'o':
2316 use_new_format = 1;
2317 break;
Damien Miller95def091999-11-25 00:26:21 +11002318 case 'p':
2319 change_passphrase = 1;
2320 break;
Damien Miller95def091999-11-25 00:26:21 +11002321 case 'c':
2322 change_comment = 1;
2323 break;
Damien Miller95def091999-11-25 00:26:21 +11002324 case 'f':
Damien Millerb089fb52005-05-26 12:16:18 +10002325 if (strlcpy(identity_file, optarg, sizeof(identity_file)) >=
2326 sizeof(identity_file))
2327 fatal("Identity filename too long");
Damien Miller95def091999-11-25 00:26:21 +11002328 have_identity = 1;
2329 break;
Damien Miller37876e92003-05-15 10:19:46 +10002330 case 'g':
2331 print_generic = 1;
2332 break;
Damien Miller95def091999-11-25 00:26:21 +11002333 case 'P':
2334 identity_passphrase = optarg;
2335 break;
Damien Miller95def091999-11-25 00:26:21 +11002336 case 'N':
2337 identity_new_passphrase = optarg;
2338 break;
Damien Millerf3747bf2013-01-18 11:44:04 +11002339 case 'Q':
2340 check_krl = 1;
2341 break;
Damien Miller0a80ca12010-02-27 07:55:05 +11002342 case 'O':
Damien Miller4e270b02010-04-16 15:56:21 +10002343 add_cert_option(optarg);
Damien Miller0a80ca12010-02-27 07:55:05 +11002344 break;
Damien Millerbcd00ab2013-12-07 10:41:55 +11002345 case 'Z':
2346 new_format_cipher = optarg;
2347 break;
Damien Miller95def091999-11-25 00:26:21 +11002348 case 'C':
2349 identity_comment = optarg;
2350 break;
Damien Miller95def091999-11-25 00:26:21 +11002351 case 'q':
2352 quiet = 1;
2353 break;
Ben Lindstrom5a707822001-04-22 17:15:46 +00002354 case 'e':
Damien Millereba71ba2000-04-29 23:57:08 +10002355 case 'x':
Ben Lindstrom5a707822001-04-22 17:15:46 +00002356 /* export key */
Damien Miller44b25042010-07-02 13:35:01 +10002357 convert_to = 1;
Damien Millereba71ba2000-04-29 23:57:08 +10002358 break;
Damien Miller0a80ca12010-02-27 07:55:05 +11002359 case 'h':
2360 cert_key_type = SSH2_CERT_TYPE_HOST;
Damien Millerd0e4a8e2010-05-21 14:58:32 +10002361 certflags_flags = 0;
Damien Miller0a80ca12010-02-27 07:55:05 +11002362 break;
Damien Millerf3747bf2013-01-18 11:44:04 +11002363 case 'k':
2364 gen_krl = 1;
2365 break;
Ben Lindstrom5a707822001-04-22 17:15:46 +00002366 case 'i':
Damien Millereba71ba2000-04-29 23:57:08 +10002367 case 'X':
Ben Lindstrom5a707822001-04-22 17:15:46 +00002368 /* import key */
Damien Miller44b25042010-07-02 13:35:01 +10002369 convert_from = 1;
Damien Millereba71ba2000-04-29 23:57:08 +10002370 break;
Damien Millereba71ba2000-04-29 23:57:08 +10002371 case 'y':
2372 print_public = 1;
2373 break;
Damien Miller0a80ca12010-02-27 07:55:05 +11002374 case 's':
2375 ca_key_path = optarg;
2376 break;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002377 case 't':
2378 key_type_name = optarg;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002379 break;
Ben Lindstrom8282d6a2001-08-06 21:44:05 +00002380 case 'D':
Damien Miller7ea845e2010-02-12 09:21:02 +11002381 pkcs11provider = optarg;
Ben Lindstromcd392282001-07-04 03:44:03 +00002382 break;
Damien Millerf3747bf2013-01-18 11:44:04 +11002383 case 'u':
2384 update_krl = 1;
2385 break;
Darren Tucker06930c72003-12-31 11:34:51 +11002386 case 'v':
2387 if (log_level == SYSLOG_LEVEL_INFO)
2388 log_level = SYSLOG_LEVEL_DEBUG1;
2389 else {
Darren Tuckerfc959702004-07-17 16:12:08 +10002390 if (log_level >= SYSLOG_LEVEL_DEBUG1 &&
Darren Tucker06930c72003-12-31 11:34:51 +11002391 log_level < SYSLOG_LEVEL_DEBUG3)
2392 log_level++;
2393 }
2394 break;
Damien Miller37876e92003-05-15 10:19:46 +10002395 case 'r':
Damien Miller4b42d7f2005-03-01 21:48:35 +11002396 rr_hostname = optarg;
Damien Miller37876e92003-05-15 10:19:46 +10002397 break;
Darren Tucker019cefe2003-08-02 22:40:07 +10002398 case 'W':
Damien Miller5f340062006-03-26 14:27:57 +11002399 generator_wanted = (u_int32_t)strtonum(optarg, 1,
2400 UINT_MAX, &errstr);
Damien Millerb089fb52005-05-26 12:16:18 +10002401 if (errstr)
2402 fatal("Desired generator has bad value: %s (%s)",
2403 optarg, errstr);
Darren Tucker019cefe2003-08-02 22:40:07 +10002404 break;
2405 case 'a':
Damien Millerbcd00ab2013-12-07 10:41:55 +11002406 rounds = (int)strtonum(optarg, 1, INT_MAX, &errstr);
Damien Millerb089fb52005-05-26 12:16:18 +10002407 if (errstr)
Damien Millerbcd00ab2013-12-07 10:41:55 +11002408 fatal("Invalid number: %s (%s)",
Damien Millerb089fb52005-05-26 12:16:18 +10002409 optarg, errstr);
Darren Tucker019cefe2003-08-02 22:40:07 +10002410 break;
Damien Miller72ef7c12015-01-15 02:21:31 +11002411#ifdef WITH_OPENSSL
Darren Tucker019cefe2003-08-02 22:40:07 +10002412 case 'M':
Damien Miller5f340062006-03-26 14:27:57 +11002413 memory = (u_int32_t)strtonum(optarg, 1, UINT_MAX, &errstr);
Damien Miller4e270b02010-04-16 15:56:21 +10002414 if (errstr)
Damien Millerb089fb52005-05-26 12:16:18 +10002415 fatal("Memory limit is %s: %s", errstr, optarg);
Darren Tucker019cefe2003-08-02 22:40:07 +10002416 break;
2417 case 'G':
2418 do_gen_candidates = 1;
Damien Millerb089fb52005-05-26 12:16:18 +10002419 if (strlcpy(out_file, optarg, sizeof(out_file)) >=
2420 sizeof(out_file))
2421 fatal("Output filename too long");
Darren Tucker019cefe2003-08-02 22:40:07 +10002422 break;
2423 case 'T':
2424 do_screen_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;
Damien Miller390d0562011-10-18 16:05:19 +11002429 case 'K':
deraadt@openbsd.org2ae4f332015-01-16 06:40:12 +00002430 if (strlen(optarg) >= PATH_MAX)
Damien Miller390d0562011-10-18 16:05:19 +11002431 fatal("Checkpoint filename too long");
2432 checkpoint = xstrdup(optarg);
2433 break;
Darren Tucker019cefe2003-08-02 22:40:07 +10002434 case 'S':
2435 /* XXX - also compare length against bits */
2436 if (BN_hex2bn(&start, optarg) == 0)
2437 fatal("Invalid start point.");
2438 break;
Damien Miller72ef7c12015-01-15 02:21:31 +11002439#endif /* WITH_OPENSSL */
Damien Miller0a80ca12010-02-27 07:55:05 +11002440 case 'V':
2441 parse_cert_times(optarg);
2442 break;
Damien Miller4e270b02010-04-16 15:56:21 +10002443 case 'z':
Damien Miller6f3b3622012-11-14 19:04:33 +11002444 errno = 0;
2445 cert_serial = strtoull(optarg, &ep, 10);
2446 if (*optarg < '0' || *optarg > '9' || *ep != '\0' ||
2447 (errno == ERANGE && cert_serial == ULLONG_MAX))
2448 fatal("Invalid serial number \"%s\"", optarg);
Damien Miller4e270b02010-04-16 15:56:21 +10002449 break;
Damien Miller95def091999-11-25 00:26:21 +11002450 case '?':
2451 default:
2452 usage();
2453 }
2454 }
Darren Tucker06930c72003-12-31 11:34:51 +11002455
2456 /* reinit */
Damien Millerdf8b7db2007-01-05 16:22:57 +11002457 log_init(argv[0], log_level, SYSLOG_FACILITY_USER, 1);
Darren Tucker06930c72003-12-31 11:34:51 +11002458
Damien Miller0a80ca12010-02-27 07:55:05 +11002459 argv += optind;
2460 argc -= optind;
2461
2462 if (ca_key_path != NULL) {
Damien Millerf3747bf2013-01-18 11:44:04 +11002463 if (argc < 1 && !gen_krl) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00002464 error("Too few arguments.");
Damien Miller0a80ca12010-02-27 07:55:05 +11002465 usage();
2466 }
Damien Millerf3747bf2013-01-18 11:44:04 +11002467 } else if (argc > 0 && !gen_krl && !check_krl) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00002468 error("Too many arguments.");
Damien Miller95def091999-11-25 00:26:21 +11002469 usage();
2470 }
2471 if (change_passphrase && change_comment) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00002472 error("Can only have one of -p and -c.");
Damien Miller95def091999-11-25 00:26:21 +11002473 usage();
2474 }
Darren Tucker0f7e9102008-06-08 12:54:29 +10002475 if (print_fingerprint && (delete_host || hash_hosts)) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00002476 error("Cannot use -l with -H or -R.");
Darren Tucker0f7e9102008-06-08 12:54:29 +10002477 usage();
2478 }
Damien Millerf3747bf2013-01-18 11:44:04 +11002479 if (gen_krl) {
2480 do_gen_krl(pw, update_krl, argc, argv);
2481 return (0);
2482 }
2483 if (check_krl) {
2484 do_check_krl(pw, argc, argv);
2485 return (0);
2486 }
Damien Miller0a80ca12010-02-27 07:55:05 +11002487 if (ca_key_path != NULL) {
2488 if (cert_key_id == NULL)
2489 fatal("Must specify key id (-I) when certifying");
2490 do_ca_sign(pw, argc, argv);
2491 }
Damien Millerf2b70ca2010-03-05 07:39:35 +11002492 if (show_cert)
2493 do_show_cert(pw);
Damien Miller4b42d7f2005-03-01 21:48:35 +11002494 if (delete_host || hash_hosts || find_host)
2495 do_known_hosts(pw, rr_hostname);
Damien Millerec77c952013-01-09 15:58:00 +11002496 if (pkcs11provider != NULL)
2497 do_download(pw);
Ben Lindstrom8fd372b2001-03-12 03:02:17 +00002498 if (print_fingerprint || print_bubblebabble)
Damien Miller95def091999-11-25 00:26:21 +11002499 do_fingerprint(pw);
Damien Miller95def091999-11-25 00:26:21 +11002500 if (change_passphrase)
2501 do_change_passphrase(pw);
Damien Miller4a10d2e2002-03-11 22:53:29 +11002502 if (change_comment)
2503 do_change_comment(pw);
Damien Miller1f0311c2014-05-15 14:24:09 +10002504#ifdef WITH_OPENSSL
Damien Miller44b25042010-07-02 13:35:01 +10002505 if (convert_to)
2506 do_convert_to(pw);
2507 if (convert_from)
2508 do_convert_from(pw);
Damien Miller1f0311c2014-05-15 14:24:09 +10002509#endif
Damien Millereba71ba2000-04-29 23:57:08 +10002510 if (print_public)
2511 do_print_public(pw);
Damien Miller4b42d7f2005-03-01 21:48:35 +11002512 if (rr_hostname != NULL) {
Damien Millercb314822006-03-26 13:48:01 +11002513 unsigned int n = 0;
2514
2515 if (have_identity) {
2516 n = do_print_resource_record(pw,
2517 identity_file, rr_hostname);
djm@openbsd.org3038a192015-04-17 13:19:22 +00002518 if (n == 0)
2519 fatal("%s: %s", identity_file, strerror(errno));
Damien Millercb314822006-03-26 13:48:01 +11002520 exit(0);
2521 } else {
2522
2523 n += do_print_resource_record(pw,
2524 _PATH_HOST_RSA_KEY_FILE, rr_hostname);
2525 n += do_print_resource_record(pw,
2526 _PATH_HOST_DSA_KEY_FILE, rr_hostname);
Damien Miller3bde12a2012-06-20 21:51:11 +10002527 n += do_print_resource_record(pw,
2528 _PATH_HOST_ECDSA_KEY_FILE, rr_hostname);
Damien Miller16cd3922014-05-15 13:45:58 +10002529 n += do_print_resource_record(pw,
2530 _PATH_HOST_ED25519_KEY_FILE, rr_hostname);
Damien Millercb314822006-03-26 13:48:01 +11002531 if (n == 0)
2532 fatal("no keys found.");
2533 exit(0);
2534 }
Damien Miller37876e92003-05-15 10:19:46 +10002535 }
Damien Miller95def091999-11-25 00:26:21 +11002536
Darren Tucker019cefe2003-08-02 22:40:07 +10002537 if (do_gen_candidates) {
2538 FILE *out = fopen(out_file, "w");
Damien Miller787b2ec2003-11-21 23:56:47 +11002539
Darren Tucker019cefe2003-08-02 22:40:07 +10002540 if (out == NULL) {
2541 error("Couldn't open modulus candidate file \"%s\": %s",
2542 out_file, strerror(errno));
2543 return (1);
2544 }
Damien Miller3f54a9f2005-11-05 14:52:18 +11002545 if (bits == 0)
2546 bits = DEFAULT_BITS;
Darren Tucker019cefe2003-08-02 22:40:07 +10002547 if (gen_candidates(out, memory, bits, start) != 0)
Damien Miller15d72a02005-11-05 15:07:33 +11002548 fatal("modulus candidate generation failed");
Darren Tucker019cefe2003-08-02 22:40:07 +10002549
2550 return (0);
2551 }
2552
2553 if (do_screen_candidates) {
2554 FILE *in;
Damien Miller78d22712013-02-12 11:03:36 +11002555 FILE *out = fopen(out_file, "a");
Darren Tucker019cefe2003-08-02 22:40:07 +10002556
2557 if (have_identity && strcmp(identity_file, "-") != 0) {
2558 if ((in = fopen(identity_file, "r")) == NULL) {
2559 fatal("Couldn't open modulus candidate "
Damien Millera8e06ce2003-11-21 23:48:55 +11002560 "file \"%s\": %s", identity_file,
Darren Tucker019cefe2003-08-02 22:40:07 +10002561 strerror(errno));
2562 }
2563 } else
2564 in = stdin;
2565
2566 if (out == NULL) {
2567 fatal("Couldn't open moduli file \"%s\": %s",
2568 out_file, strerror(errno));
2569 }
Damien Millerbcd00ab2013-12-07 10:41:55 +11002570 if (prime_test(in, out, rounds == 0 ? 100 : rounds,
2571 generator_wanted, checkpoint,
Damien Millerdfceafe2012-07-06 13:44:19 +10002572 start_lineno, lines_to_process) != 0)
Damien Miller15d72a02005-11-05 15:07:33 +11002573 fatal("modulus screening failed");
Darren Tuckerf4220e62003-08-21 16:44:07 +10002574 return (0);
Darren Tucker019cefe2003-08-02 22:40:07 +10002575 }
2576
Damien Miller58f1baf2011-05-05 14:06:15 +10002577 if (gen_all_hostkeys) {
2578 do_gen_all_hostkeys(pw);
2579 return (0);
2580 }
2581
Damien Millerf14be5c2005-11-05 15:15:49 +11002582 if (key_type_name == NULL)
2583 key_type_name = "rsa";
2584
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002585 type = sshkey_type_from_name(key_type_name);
djm@openbsd.org7efb4552015-01-18 13:22:28 +00002586 type_bits_valid(type, key_type_name, &bits);
Damien Miller58f1baf2011-05-05 14:06:15 +10002587
Darren Tucker3af2ac52005-11-29 13:10:24 +11002588 if (!quiet)
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002589 printf("Generating public/private %s key pair.\n",
2590 key_type_name);
djm@openbsd.org3038a192015-04-17 13:19:22 +00002591 if ((r = sshkey_generate(type, bits, &private)) != 0)
2592 fatal("key_generate failed");
2593 if ((r = sshkey_from_private(private, &public)) != 0)
2594 fatal("key_from_private failed: %s\n", ssh_err(r));
Damien Miller95def091999-11-25 00:26:21 +11002595
2596 if (!have_identity)
2597 ask_filename(pw, "Enter file in which to save the key");
2598
Damien Miller788f2122005-11-05 15:14:59 +11002599 /* Create ~/.ssh directory if it doesn't already exist. */
Damien Miller50af79b2010-05-10 11:52:00 +10002600 snprintf(dotsshdir, sizeof dotsshdir, "%s/%s",
2601 pw->pw_dir, _PATH_SSH_USER_DIR);
2602 if (strstr(identity_file, dotsshdir) != NULL) {
2603 if (stat(dotsshdir, &st) < 0) {
2604 if (errno != ENOENT) {
2605 error("Could not stat %s: %s", dotsshdir,
2606 strerror(errno));
2607 } else if (mkdir(dotsshdir, 0700) < 0) {
2608 error("Could not create directory '%s': %s",
2609 dotsshdir, strerror(errno));
2610 } else if (!quiet)
2611 printf("Created directory '%s'.\n", dotsshdir);
2612 }
Damien Miller95def091999-11-25 00:26:21 +11002613 }
2614 /* If the file already exists, ask the user to confirm. */
2615 if (stat(identity_file, &st) >= 0) {
2616 char yesno[3];
2617 printf("%s already exists.\n", identity_file);
2618 printf("Overwrite (y/n)? ");
2619 fflush(stdout);
2620 if (fgets(yesno, sizeof(yesno), stdin) == NULL)
2621 exit(1);
2622 if (yesno[0] != 'y' && yesno[0] != 'Y')
2623 exit(1);
2624 }
2625 /* Ask for a passphrase (twice). */
2626 if (identity_passphrase)
2627 passphrase1 = xstrdup(identity_passphrase);
2628 else if (identity_new_passphrase)
2629 passphrase1 = xstrdup(identity_new_passphrase);
2630 else {
2631passphrase_again:
2632 passphrase1 =
Ben Lindstrom949974b2001-06-25 05:20:31 +00002633 read_passphrase("Enter passphrase (empty for no "
2634 "passphrase): ", RP_ALLOW_STDIN);
2635 passphrase2 = read_passphrase("Enter same passphrase again: ",
2636 RP_ALLOW_STDIN);
Damien Miller95def091999-11-25 00:26:21 +11002637 if (strcmp(passphrase1, passphrase2) != 0) {
Ben Lindstrom949974b2001-06-25 05:20:31 +00002638 /*
2639 * The passphrases do not match. Clear them and
2640 * retry.
2641 */
Damien Millera5103f42014-02-04 11:20:14 +11002642 explicit_bzero(passphrase1, strlen(passphrase1));
2643 explicit_bzero(passphrase2, strlen(passphrase2));
Darren Tuckera627d422013-06-02 07:31:17 +10002644 free(passphrase1);
2645 free(passphrase2);
Damien Miller95def091999-11-25 00:26:21 +11002646 printf("Passphrases do not match. Try again.\n");
2647 goto passphrase_again;
2648 }
2649 /* Clear the other copy of the passphrase. */
Damien Millera5103f42014-02-04 11:20:14 +11002650 explicit_bzero(passphrase2, strlen(passphrase2));
Darren Tuckera627d422013-06-02 07:31:17 +10002651 free(passphrase2);
Damien Miller95def091999-11-25 00:26:21 +11002652 }
2653
Damien Miller95def091999-11-25 00:26:21 +11002654 if (identity_comment) {
2655 strlcpy(comment, identity_comment, sizeof(comment));
2656 } else {
Darren Tuckere15fb092008-11-11 16:31:43 +11002657 /* Create default comment field for the passphrase. */
Damien Miller95def091999-11-25 00:26:21 +11002658 snprintf(comment, sizeof comment, "%s@%s", pw->pw_name, hostname);
2659 }
2660
2661 /* Save the key with the given passphrase and comment. */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002662 if ((r = sshkey_save_private(private, identity_file, passphrase1,
2663 comment, use_new_format, new_format_cipher, rounds)) != 0) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00002664 error("Saving key \"%s\" failed: %s",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002665 identity_file, ssh_err(r));
Damien Millera5103f42014-02-04 11:20:14 +11002666 explicit_bzero(passphrase1, strlen(passphrase1));
Darren Tuckera627d422013-06-02 07:31:17 +10002667 free(passphrase1);
Damien Miller95def091999-11-25 00:26:21 +11002668 exit(1);
2669 }
2670 /* Clear the passphrase. */
Damien Millera5103f42014-02-04 11:20:14 +11002671 explicit_bzero(passphrase1, strlen(passphrase1));
Darren Tuckera627d422013-06-02 07:31:17 +10002672 free(passphrase1);
Damien Miller95def091999-11-25 00:26:21 +11002673
2674 /* Clear the private key and the random number generator. */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002675 sshkey_free(private);
Damien Miller95def091999-11-25 00:26:21 +11002676
2677 if (!quiet)
2678 printf("Your identification has been saved in %s.\n", identity_file);
2679
Damien Miller95def091999-11-25 00:26:21 +11002680 strlcat(identity_file, ".pub", sizeof(identity_file));
djm@openbsd.org3038a192015-04-17 13:19:22 +00002681 if ((fd = open(identity_file, O_WRONLY|O_CREAT|O_TRUNC, 0644)) == -1)
2682 fatal("Unable to save public key to %s: %s",
2683 identity_file, strerror(errno));
2684 if ((f = fdopen(fd, "w")) == NULL)
2685 fatal("fdopen %s failed: %s", identity_file, strerror(errno));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002686 if ((r = sshkey_write(public, f)) != 0)
djm@openbsd.org3038a192015-04-17 13:19:22 +00002687 error("write key failed: %s", ssh_err(r));
Damien Millereba71ba2000-04-29 23:57:08 +10002688 fprintf(f, " %s\n", comment);
Damien Miller95def091999-11-25 00:26:21 +11002689 fclose(f);
2690
2691 if (!quiet) {
djm@openbsd.org9ce86c92015-01-28 22:36:00 +00002692 fp = sshkey_fingerprint(public, fingerprint_hash,
djm@openbsd.org56d1c832014-12-21 22:27:55 +00002693 SSH_FP_DEFAULT);
djm@openbsd.org9ce86c92015-01-28 22:36:00 +00002694 ra = sshkey_fingerprint(public, fingerprint_hash,
Darren Tucker9c16ac92008-06-13 04:40:35 +10002695 SSH_FP_RANDOMART);
djm@openbsd.org9ce86c92015-01-28 22:36:00 +00002696 if (fp == NULL || ra == NULL)
2697 fatal("sshkey_fingerprint failed");
Damien Millereba71ba2000-04-29 23:57:08 +10002698 printf("Your public key has been saved in %s.\n",
2699 identity_file);
Damien Miller95def091999-11-25 00:26:21 +11002700 printf("The key fingerprint is:\n");
Ben Lindstromcfccef92001-03-13 04:57:58 +00002701 printf("%s %s\n", fp, comment);
Darren Tucker9c16ac92008-06-13 04:40:35 +10002702 printf("The key's randomart image is:\n");
2703 printf("%s\n", ra);
Darren Tuckera627d422013-06-02 07:31:17 +10002704 free(ra);
2705 free(fp);
Damien Miller95def091999-11-25 00:26:21 +11002706 }
Damien Millereba71ba2000-04-29 23:57:08 +10002707
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002708 sshkey_free(public);
Damien Miller95def091999-11-25 00:26:21 +11002709 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002710}