blob: 500a36633b30b952606757859788caf653a68b66 [file] [log] [blame]
djm@openbsd.org7efb4552015-01-18 13:22:28 +00001/* $OpenBSD: ssh-keygen.c,v 1.255 2015/01/18 13:22:28 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
Damien Miller58f1baf2011-05-05 14:06:15 +1000186 u_int maxbits;
djm@openbsd.org7efb4552015-01-18 13:22:28 +0000187 int nid;
Damien Miller72ef7c12015-01-15 02:21:31 +1100188#endif
Damien Miller58f1baf2011-05-05 14:06:15 +1000189
190 if (type == KEY_UNSPEC) {
191 fprintf(stderr, "unknown key type %s\n", key_type_name);
192 exit(1);
193 }
Damien Miller884b63a2011-05-05 14:14:52 +1000194 if (*bitsp == 0) {
Damien Miller58f1baf2011-05-05 14:06:15 +1000195 if (type == KEY_DSA)
Damien Miller884b63a2011-05-05 14:14:52 +1000196 *bitsp = DEFAULT_BITS_DSA;
djm@openbsd.org7efb4552015-01-18 13:22:28 +0000197 else if (type == KEY_ECDSA) {
198 if (name != NULL &&
199 (nid = sshkey_ecdsa_nid_from_name(name)) > 0)
200 *bitsp = sshkey_curve_nid_to_bits(nid);
201 if (*bitsp == 0)
202 *bitsp = DEFAULT_BITS_ECDSA;
203 }
Damien Miller58f1baf2011-05-05 14:06:15 +1000204 else
Damien Miller884b63a2011-05-05 14:14:52 +1000205 *bitsp = DEFAULT_BITS;
Damien Miller58f1baf2011-05-05 14:06:15 +1000206 }
Damien Miller72ef7c12015-01-15 02:21:31 +1100207#ifdef WITH_OPENSSL
Damien Miller58f1baf2011-05-05 14:06:15 +1000208 maxbits = (type == KEY_DSA) ?
209 OPENSSL_DSA_MAX_MODULUS_BITS : OPENSSL_RSA_MAX_MODULUS_BITS;
Damien Miller884b63a2011-05-05 14:14:52 +1000210 if (*bitsp > maxbits) {
Damien Miller58f1baf2011-05-05 14:06:15 +1000211 fprintf(stderr, "key bits exceeds maximum %d\n", maxbits);
212 exit(1);
213 }
Damien Miller884b63a2011-05-05 14:14:52 +1000214 if (type == KEY_DSA && *bitsp != 1024)
Damien Miller58f1baf2011-05-05 14:06:15 +1000215 fatal("DSA keys must be 1024 bits");
Damien Miller5be9d9e2013-12-07 11:24:01 +1100216 else if (type != KEY_ECDSA && type != KEY_ED25519 && *bitsp < 768)
Damien Miller58f1baf2011-05-05 14:06:15 +1000217 fatal("Key must at least be 768 bits");
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000218 else if (type == KEY_ECDSA && sshkey_ecdsa_bits_to_nid(*bitsp) == -1)
Damien Miller58f1baf2011-05-05 14:06:15 +1000219 fatal("Invalid ECDSA key length - valid lengths are "
220 "256, 384 or 521 bits");
Damien Miller1f0311c2014-05-15 14:24:09 +1000221#endif
Damien Miller58f1baf2011-05-05 14:06:15 +1000222}
223
224static void
Damien Miller431f66b1999-11-21 18:31:57 +1100225ask_filename(struct passwd *pw, const char *prompt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000226{
Damien Miller95def091999-11-25 00:26:21 +1100227 char buf[1024];
Damien Millere39cacc2000-11-29 12:18:44 +1100228 char *name = NULL;
229
Damien Miller993dd552002-02-19 15:22:47 +1100230 if (key_type_name == NULL)
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000231 name = _PATH_SSH_CLIENT_ID_RSA;
Damien Miller90967402006-03-26 14:07:26 +1100232 else {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000233 switch (sshkey_type_from_name(key_type_name)) {
Damien Miller993dd552002-02-19 15:22:47 +1100234 case KEY_RSA1:
235 name = _PATH_SSH_CLIENT_IDENTITY;
236 break;
Damien Miller4e270b02010-04-16 15:56:21 +1000237 case KEY_DSA_CERT:
238 case KEY_DSA_CERT_V00:
Damien Miller993dd552002-02-19 15:22:47 +1100239 case KEY_DSA:
240 name = _PATH_SSH_CLIENT_ID_DSA;
241 break;
Damien Millerdd190dd2010-11-11 14:17:02 +1100242#ifdef OPENSSL_HAS_ECC
Damien Millereb8b60e2010-08-31 22:41:14 +1000243 case KEY_ECDSA_CERT:
244 case KEY_ECDSA:
245 name = _PATH_SSH_CLIENT_ID_ECDSA;
246 break;
Damien Millerdd190dd2010-11-11 14:17:02 +1100247#endif
Damien Miller4e270b02010-04-16 15:56:21 +1000248 case KEY_RSA_CERT:
249 case KEY_RSA_CERT_V00:
Damien Miller993dd552002-02-19 15:22:47 +1100250 case KEY_RSA:
251 name = _PATH_SSH_CLIENT_ID_RSA;
252 break;
Damien Miller5be9d9e2013-12-07 11:24:01 +1100253 case KEY_ED25519:
254 case KEY_ED25519_CERT:
255 name = _PATH_SSH_CLIENT_ID_ED25519;
256 break;
Damien Miller993dd552002-02-19 15:22:47 +1100257 default:
Damien Miller9eab9562009-02-22 08:47:02 +1100258 fprintf(stderr, "bad key type\n");
Damien Miller993dd552002-02-19 15:22:47 +1100259 exit(1);
260 break;
261 }
Damien Miller90967402006-03-26 14:07:26 +1100262 }
Damien Millere39cacc2000-11-29 12:18:44 +1100263 snprintf(identity_file, sizeof(identity_file), "%s/%s", pw->pw_dir, name);
Ben Lindstrom3deda8b2000-12-22 20:27:43 +0000264 fprintf(stderr, "%s (%s): ", prompt, identity_file);
Damien Miller95def091999-11-25 00:26:21 +1100265 if (fgets(buf, sizeof(buf), stdin) == NULL)
266 exit(1);
Damien Miller14b017d2007-09-17 16:09:15 +1000267 buf[strcspn(buf, "\n")] = '\0';
Damien Miller95def091999-11-25 00:26:21 +1100268 if (strcmp(buf, "") != 0)
269 strlcpy(identity_file, buf, sizeof(identity_file));
270 have_identity = 1;
Damien Miller10f6f6b1999-11-17 17:29:08 +1100271}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000272
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000273static struct sshkey *
Ben Lindstromd78ae762001-06-05 20:35:09 +0000274load_identity(char *filename)
Damien Millereba71ba2000-04-29 23:57:08 +1000275{
Ben Lindstromd0fca422001-03-26 13:44:06 +0000276 char *pass;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000277 struct sshkey *prv;
278 int r;
Ben Lindstromd0fca422001-03-26 13:44:06 +0000279
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000280 if ((r = sshkey_load_private(filename, "", &prv, NULL)) == 0)
281 return prv;
282 if (r != SSH_ERR_KEY_WRONG_PASSPHRASE)
283 fatal("Load key \"%s\": %s", filename, ssh_err(r));
284 if (identity_passphrase)
285 pass = xstrdup(identity_passphrase);
286 else
287 pass = read_passphrase("Enter passphrase: ", RP_ALLOW_STDIN);
288 r = sshkey_load_private(filename, pass, &prv, NULL);
289 explicit_bzero(pass, strlen(pass));
290 free(pass);
291 if (r != 0)
292 fatal("Load key \"%s\": %s", filename, ssh_err(r));
Ben Lindstromd0fca422001-03-26 13:44:06 +0000293 return prv;
Damien Millereba71ba2000-04-29 23:57:08 +1000294}
295
Damien Miller874d77b2000-10-14 16:23:11 +1100296#define SSH_COM_PUBLIC_BEGIN "---- BEGIN SSH2 PUBLIC KEY ----"
Ben Lindstromcb72e4f2002-06-21 00:41:51 +0000297#define SSH_COM_PUBLIC_END "---- END SSH2 PUBLIC KEY ----"
Damien Miller874d77b2000-10-14 16:23:11 +1100298#define SSH_COM_PRIVATE_BEGIN "---- BEGIN SSH2 ENCRYPTED PRIVATE KEY ----"
Kevin Stevesef4eea92001-02-05 12:42:17 +0000299#define SSH_COM_PRIVATE_KEY_MAGIC 0x3f6ff9eb
Damien Millereba71ba2000-04-29 23:57:08 +1000300
Damien Miller1f0311c2014-05-15 14:24:09 +1000301#ifdef WITH_OPENSSL
Ben Lindstrombba81212001-06-25 05:01:22 +0000302static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000303do_convert_to_ssh2(struct passwd *pw, struct sshkey *k)
Damien Millereba71ba2000-04-29 23:57:08 +1000304{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000305 size_t len;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000306 u_char *blob;
Darren Tuckerd04758d2010-01-12 19:41:57 +1100307 char comment[61];
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000308 int r;
Damien Millereba71ba2000-04-29 23:57:08 +1000309
Damien Millera563cce2012-04-22 11:07:28 +1000310 if (k->type == KEY_RSA1) {
311 fprintf(stderr, "version 1 keys are not supported\n");
312 exit(1);
313 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000314 if ((r = sshkey_to_blob(k, &blob, &len)) != 0) {
315 fprintf(stderr, "key_to_blob failed: %s\n", ssh_err(r));
Ben Lindstrom99a30f12001-09-18 05:49:14 +0000316 exit(1);
317 }
Darren Tuckerd04758d2010-01-12 19:41:57 +1100318 /* Comment + surrounds must fit into 72 chars (RFC 4716 sec 3.3) */
319 snprintf(comment, sizeof(comment),
320 "%u-bit %s, converted by %s@%s from OpenSSH",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000321 sshkey_size(k), sshkey_type(k),
Damien Millereba71ba2000-04-29 23:57:08 +1000322 pw->pw_name, hostname);
Darren Tuckerd04758d2010-01-12 19:41:57 +1100323
324 fprintf(stdout, "%s\n", SSH_COM_PUBLIC_BEGIN);
325 fprintf(stdout, "Comment: \"%s\"\n", comment);
Damien Millereba71ba2000-04-29 23:57:08 +1000326 dump_base64(stdout, blob, len);
Damien Miller874d77b2000-10-14 16:23:11 +1100327 fprintf(stdout, "%s\n", SSH_COM_PUBLIC_END);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000328 sshkey_free(k);
Darren Tuckera627d422013-06-02 07:31:17 +1000329 free(blob);
Damien Millereba71ba2000-04-29 23:57:08 +1000330 exit(0);
331}
332
Ben Lindstrombba81212001-06-25 05:01:22 +0000333static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000334do_convert_to_pkcs8(struct sshkey *k)
Damien Miller44b25042010-07-02 13:35:01 +1000335{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000336 switch (sshkey_type_plain(k->type)) {
Damien Millera563cce2012-04-22 11:07:28 +1000337 case KEY_RSA1:
Damien Miller44b25042010-07-02 13:35:01 +1000338 case KEY_RSA:
339 if (!PEM_write_RSA_PUBKEY(stdout, k->rsa))
340 fatal("PEM_write_RSA_PUBKEY failed");
341 break;
342 case KEY_DSA:
343 if (!PEM_write_DSA_PUBKEY(stdout, k->dsa))
344 fatal("PEM_write_DSA_PUBKEY failed");
345 break;
Damien Miller6af914a2010-09-10 11:39:26 +1000346#ifdef OPENSSL_HAS_ECC
Damien Millereb8b60e2010-08-31 22:41:14 +1000347 case KEY_ECDSA:
348 if (!PEM_write_EC_PUBKEY(stdout, k->ecdsa))
349 fatal("PEM_write_EC_PUBKEY failed");
350 break;
Damien Miller6af914a2010-09-10 11:39:26 +1000351#endif
Damien Miller44b25042010-07-02 13:35:01 +1000352 default:
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000353 fatal("%s: unsupported key type %s", __func__, sshkey_type(k));
Damien Miller44b25042010-07-02 13:35:01 +1000354 }
355 exit(0);
356}
357
358static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000359do_convert_to_pem(struct sshkey *k)
Damien Miller44b25042010-07-02 13:35:01 +1000360{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000361 switch (sshkey_type_plain(k->type)) {
Damien Millera563cce2012-04-22 11:07:28 +1000362 case KEY_RSA1:
Damien Miller44b25042010-07-02 13:35:01 +1000363 case KEY_RSA:
364 if (!PEM_write_RSAPublicKey(stdout, k->rsa))
365 fatal("PEM_write_RSAPublicKey failed");
366 break;
367#if notyet /* OpenSSH 0.9.8 lacks this function */
368 case KEY_DSA:
369 if (!PEM_write_DSAPublicKey(stdout, k->dsa))
370 fatal("PEM_write_DSAPublicKey failed");
371 break;
372#endif
Damien Millereb8b60e2010-08-31 22:41:14 +1000373 /* XXX ECDSA? */
Damien Miller44b25042010-07-02 13:35:01 +1000374 default:
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000375 fatal("%s: unsupported key type %s", __func__, sshkey_type(k));
Damien Miller44b25042010-07-02 13:35:01 +1000376 }
377 exit(0);
378}
379
380static void
381do_convert_to(struct passwd *pw)
382{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000383 struct sshkey *k;
Damien Miller44b25042010-07-02 13:35:01 +1000384 struct stat st;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000385 int r;
Damien Miller44b25042010-07-02 13:35:01 +1000386
387 if (!have_identity)
388 ask_filename(pw, "Enter file in which the key is");
389 if (stat(identity_file, &st) < 0)
390 fatal("%s: %s: %s", __progname, identity_file, strerror(errno));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000391 if ((r = sshkey_load_public(identity_file, &k, NULL)) != 0)
392 k = load_identity(identity_file);
Damien Miller44b25042010-07-02 13:35:01 +1000393 switch (convert_format) {
394 case FMT_RFC4716:
395 do_convert_to_ssh2(pw, k);
396 break;
397 case FMT_PKCS8:
398 do_convert_to_pkcs8(k);
399 break;
400 case FMT_PEM:
401 do_convert_to_pem(k);
402 break;
403 default:
404 fatal("%s: unknown key format %d", __func__, convert_format);
405 }
406 exit(0);
407}
408
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000409/*
410 * This is almost exactly the bignum1 encoding, but with 32 bit for length
411 * instead of 16.
412 */
Damien Miller44b25042010-07-02 13:35:01 +1000413static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000414buffer_get_bignum_bits(struct sshbuf *b, BIGNUM *value)
Damien Miller874d77b2000-10-14 16:23:11 +1100415{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000416 u_int bytes, bignum_bits;
417 int r;
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000418
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000419 if ((r = sshbuf_get_u32(b, &bignum_bits)) != 0)
420 fatal("%s: buffer error: %s", __func__, ssh_err(r));
421 bytes = (bignum_bits + 7) / 8;
422 if (sshbuf_len(b) < bytes)
423 fatal("%s: input buffer too small: need %d have %zu",
424 __func__, bytes, sshbuf_len(b));
425 if (BN_bin2bn(sshbuf_ptr(b), bytes, value) == NULL)
426 fatal("%s: BN_bin2bn failed", __func__);
427 if ((r = sshbuf_consume(b, bytes)) != 0)
428 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Miller874d77b2000-10-14 16:23:11 +1100429}
430
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000431static struct sshkey *
Ben Lindstrom90fd8142002-02-26 18:09:42 +0000432do_convert_private_ssh2_from_blob(u_char *blob, u_int blen)
Damien Miller874d77b2000-10-14 16:23:11 +1100433{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000434 struct sshbuf *b;
435 struct sshkey *key = NULL;
Damien Miller874d77b2000-10-14 16:23:11 +1100436 char *type, *cipher;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000437 u_char e1, e2, e3, *sig = NULL, data[] = "abcde12345";
438 int r, rlen, ktype;
439 u_int magic, i1, i2, i3, i4;
440 size_t slen;
Ben Lindstrome586c4c2001-06-25 05:04:58 +0000441 u_long e;
Damien Miller874d77b2000-10-14 16:23:11 +1100442
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000443 if ((b = sshbuf_from(blob, blen)) == NULL)
444 fatal("%s: sshbuf_from failed", __func__);
445 if ((r = sshbuf_get_u32(b, &magic)) != 0)
446 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Miller874d77b2000-10-14 16:23:11 +1100447
Damien Miller874d77b2000-10-14 16:23:11 +1100448 if (magic != SSH_COM_PRIVATE_KEY_MAGIC) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000449 error("bad magic 0x%x != 0x%x", magic,
450 SSH_COM_PRIVATE_KEY_MAGIC);
451 sshbuf_free(b);
Damien Miller874d77b2000-10-14 16:23:11 +1100452 return NULL;
453 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000454 if ((r = sshbuf_get_u32(b, &i1)) != 0 ||
455 (r = sshbuf_get_cstring(b, &type, NULL)) != 0 ||
456 (r = sshbuf_get_cstring(b, &cipher, NULL)) != 0 ||
457 (r = sshbuf_get_u32(b, &i2)) != 0 ||
458 (r = sshbuf_get_u32(b, &i3)) != 0 ||
459 (r = sshbuf_get_u32(b, &i4)) != 0)
460 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Miller80163902007-01-05 16:30:16 +1100461 debug("ignore (%d %d %d %d)", i1, i2, i3, i4);
Damien Miller874d77b2000-10-14 16:23:11 +1100462 if (strcmp(cipher, "none") != 0) {
463 error("unsupported cipher %s", cipher);
Darren Tuckera627d422013-06-02 07:31:17 +1000464 free(cipher);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000465 sshbuf_free(b);
Darren Tuckera627d422013-06-02 07:31:17 +1000466 free(type);
Damien Miller874d77b2000-10-14 16:23:11 +1100467 return NULL;
468 }
Darren Tuckera627d422013-06-02 07:31:17 +1000469 free(cipher);
Damien Miller874d77b2000-10-14 16:23:11 +1100470
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000471 if (strstr(type, "dsa")) {
472 ktype = KEY_DSA;
473 } else if (strstr(type, "rsa")) {
474 ktype = KEY_RSA;
475 } else {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000476 sshbuf_free(b);
Darren Tuckera627d422013-06-02 07:31:17 +1000477 free(type);
Damien Miller874d77b2000-10-14 16:23:11 +1100478 return NULL;
479 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000480 if ((key = sshkey_new_private(ktype)) == NULL)
481 fatal("key_new_private failed");
Darren Tuckera627d422013-06-02 07:31:17 +1000482 free(type);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000483
484 switch (key->type) {
485 case KEY_DSA:
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000486 buffer_get_bignum_bits(b, key->dsa->p);
487 buffer_get_bignum_bits(b, key->dsa->g);
488 buffer_get_bignum_bits(b, key->dsa->q);
489 buffer_get_bignum_bits(b, key->dsa->pub_key);
490 buffer_get_bignum_bits(b, key->dsa->priv_key);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000491 break;
492 case KEY_RSA:
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000493 if ((r = sshbuf_get_u8(b, &e1)) != 0 ||
494 (e1 < 30 && (r = sshbuf_get_u8(b, &e2)) != 0) ||
495 (e1 < 30 && (r = sshbuf_get_u8(b, &e3)) != 0))
496 fatal("%s: buffer error: %s", __func__, ssh_err(r));
497 e = e1;
Ben Lindstrom34f91882001-06-25 04:47:54 +0000498 debug("e %lx", e);
499 if (e < 30) {
500 e <<= 8;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000501 e += e2;
Ben Lindstrom34f91882001-06-25 04:47:54 +0000502 debug("e %lx", e);
503 e <<= 8;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000504 e += e3;
Ben Lindstrom34f91882001-06-25 04:47:54 +0000505 debug("e %lx", e);
506 }
507 if (!BN_set_word(key->rsa->e, e)) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000508 sshbuf_free(b);
509 sshkey_free(key);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000510 return NULL;
511 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000512 buffer_get_bignum_bits(b, key->rsa->d);
513 buffer_get_bignum_bits(b, key->rsa->n);
514 buffer_get_bignum_bits(b, key->rsa->iqmp);
515 buffer_get_bignum_bits(b, key->rsa->q);
516 buffer_get_bignum_bits(b, key->rsa->p);
517 if ((r = rsa_generate_additional_parameters(key->rsa)) != 0)
518 fatal("generate RSA parameters failed: %s", ssh_err(r));
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000519 break;
520 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000521 rlen = sshbuf_len(b);
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +0000522 if (rlen != 0)
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000523 error("do_convert_private_ssh2_from_blob: "
524 "remaining bytes in key blob %d", rlen);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000525 sshbuf_free(b);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000526
Ben Lindstrome586c4c2001-06-25 05:04:58 +0000527 /* try the key */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000528 if (sshkey_sign(key, &sig, &slen, data, sizeof(data), 0) != 0 ||
529 sshkey_verify(key, sig, slen, data, sizeof(data), 0) != 0) {
530 sshkey_free(key);
531 free(sig);
532 return NULL;
533 }
Darren Tuckera627d422013-06-02 07:31:17 +1000534 free(sig);
Damien Miller874d77b2000-10-14 16:23:11 +1100535 return key;
536}
537
Damien Miller8056a9d2006-03-15 12:05:40 +1100538static int
539get_line(FILE *fp, char *line, size_t len)
540{
541 int c;
542 size_t pos = 0;
543
544 line[0] = '\0';
545 while ((c = fgetc(fp)) != EOF) {
546 if (pos >= len - 1) {
547 fprintf(stderr, "input line too long.\n");
548 exit(1);
549 }
Damien Miller90967402006-03-26 14:07:26 +1100550 switch (c) {
Damien Miller8056a9d2006-03-15 12:05:40 +1100551 case '\r':
552 c = fgetc(fp);
553 if (c != EOF && c != '\n' && ungetc(c, fp) == EOF) {
554 fprintf(stderr, "unget: %s\n", strerror(errno));
555 exit(1);
556 }
557 return pos;
558 case '\n':
559 return pos;
560 }
561 line[pos++] = c;
562 line[pos] = '\0';
563 }
Damien Miller6c7439f2007-01-05 16:29:55 +1100564 /* We reached EOF */
565 return -1;
Damien Miller8056a9d2006-03-15 12:05:40 +1100566}
567
Ben Lindstrombba81212001-06-25 05:01:22 +0000568static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000569do_convert_from_ssh2(struct passwd *pw, struct sshkey **k, int *private)
Damien Millereba71ba2000-04-29 23:57:08 +1000570{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000571 int r, blen, escaped = 0;
Ben Lindstrom155b9812002-04-02 20:26:26 +0000572 u_int len;
Damien Miller8056a9d2006-03-15 12:05:40 +1100573 char line[1024];
Ben Lindstrom9e0ddd42001-09-18 05:41:19 +0000574 u_char blob[8096];
Damien Millereba71ba2000-04-29 23:57:08 +1000575 char encoded[8096];
Damien Millereba71ba2000-04-29 23:57:08 +1000576 FILE *fp;
577
Damien Millerba3420a2010-06-26 09:39:07 +1000578 if ((fp = fopen(identity_file, "r")) == NULL)
579 fatal("%s: %s: %s", __progname, identity_file, strerror(errno));
Damien Millereba71ba2000-04-29 23:57:08 +1000580 encoded[0] = '\0';
Damien Miller8056a9d2006-03-15 12:05:40 +1100581 while ((blen = get_line(fp, line, sizeof(line))) != -1) {
Damien Miller746d1a62013-07-18 16:13:02 +1000582 if (blen > 0 && line[blen - 1] == '\\')
Damien Miller30c3d422000-05-09 11:02:59 +1000583 escaped++;
Damien Millereba71ba2000-04-29 23:57:08 +1000584 if (strncmp(line, "----", 4) == 0 ||
585 strstr(line, ": ") != NULL) {
Damien Miller874d77b2000-10-14 16:23:11 +1100586 if (strstr(line, SSH_COM_PRIVATE_BEGIN) != NULL)
Damien Miller44b25042010-07-02 13:35:01 +1000587 *private = 1;
Ben Lindstrome586c4c2001-06-25 05:04:58 +0000588 if (strstr(line, " END ") != NULL) {
589 break;
590 }
Ben Lindstrom30358602001-04-24 16:59:28 +0000591 /* fprintf(stderr, "ignore: %s", line); */
Damien Millereba71ba2000-04-29 23:57:08 +1000592 continue;
593 }
Damien Miller30c3d422000-05-09 11:02:59 +1000594 if (escaped) {
595 escaped--;
Ben Lindstrom30358602001-04-24 16:59:28 +0000596 /* fprintf(stderr, "escaped: %s", line); */
Damien Miller30c3d422000-05-09 11:02:59 +1000597 continue;
Damien Millereba71ba2000-04-29 23:57:08 +1000598 }
Damien Millereba71ba2000-04-29 23:57:08 +1000599 strlcat(encoded, line, sizeof(encoded));
600 }
Ben Lindstrom155b9812002-04-02 20:26:26 +0000601 len = strlen(encoded);
602 if (((len % 4) == 3) &&
603 (encoded[len-1] == '=') &&
604 (encoded[len-2] == '=') &&
605 (encoded[len-3] == '='))
606 encoded[len-3] = '\0';
Damien Miller4a8ed542002-01-22 23:33:31 +1100607 blen = uudecode(encoded, blob, sizeof(blob));
Damien Millereba71ba2000-04-29 23:57:08 +1000608 if (blen < 0) {
609 fprintf(stderr, "uudecode failed.\n");
610 exit(1);
611 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000612 if (*private)
613 *k = do_convert_private_ssh2_from_blob(blob, blen);
614 else if ((r = sshkey_from_blob(blob, blen, k)) != 0) {
615 fprintf(stderr, "decode blob failed: %s\n", ssh_err(r));
Damien Miller874d77b2000-10-14 16:23:11 +1100616 exit(1);
617 }
Damien Miller44b25042010-07-02 13:35:01 +1000618 fclose(fp);
619}
620
621static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000622do_convert_from_pkcs8(struct sshkey **k, int *private)
Damien Miller44b25042010-07-02 13:35:01 +1000623{
624 EVP_PKEY *pubkey;
625 FILE *fp;
626
627 if ((fp = fopen(identity_file, "r")) == NULL)
628 fatal("%s: %s: %s", __progname, identity_file, strerror(errno));
629 if ((pubkey = PEM_read_PUBKEY(fp, NULL, NULL, NULL)) == NULL) {
630 fatal("%s: %s is not a recognised public key format", __func__,
631 identity_file);
632 }
633 fclose(fp);
634 switch (EVP_PKEY_type(pubkey->type)) {
635 case EVP_PKEY_RSA:
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000636 if ((*k = sshkey_new(KEY_UNSPEC)) == NULL)
637 fatal("sshkey_new failed");
Damien Miller44b25042010-07-02 13:35:01 +1000638 (*k)->type = KEY_RSA;
639 (*k)->rsa = EVP_PKEY_get1_RSA(pubkey);
640 break;
641 case EVP_PKEY_DSA:
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000642 if ((*k = sshkey_new(KEY_UNSPEC)) == NULL)
643 fatal("sshkey_new failed");
Damien Miller44b25042010-07-02 13:35:01 +1000644 (*k)->type = KEY_DSA;
645 (*k)->dsa = EVP_PKEY_get1_DSA(pubkey);
646 break;
Damien Miller6af914a2010-09-10 11:39:26 +1000647#ifdef OPENSSL_HAS_ECC
Damien Millereb8b60e2010-08-31 22:41:14 +1000648 case EVP_PKEY_EC:
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000649 if ((*k = sshkey_new(KEY_UNSPEC)) == NULL)
650 fatal("sshkey_new failed");
Damien Millereb8b60e2010-08-31 22:41:14 +1000651 (*k)->type = KEY_ECDSA;
652 (*k)->ecdsa = EVP_PKEY_get1_EC_KEY(pubkey);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000653 (*k)->ecdsa_nid = sshkey_ecdsa_key_to_nid((*k)->ecdsa);
Damien Millereb8b60e2010-08-31 22:41:14 +1000654 break;
Damien Miller6af914a2010-09-10 11:39:26 +1000655#endif
Damien Miller44b25042010-07-02 13:35:01 +1000656 default:
657 fatal("%s: unsupported pubkey type %d", __func__,
658 EVP_PKEY_type(pubkey->type));
659 }
660 EVP_PKEY_free(pubkey);
661 return;
662}
663
664static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000665do_convert_from_pem(struct sshkey **k, int *private)
Damien Miller44b25042010-07-02 13:35:01 +1000666{
667 FILE *fp;
668 RSA *rsa;
669#ifdef notyet
670 DSA *dsa;
671#endif
672
673 if ((fp = fopen(identity_file, "r")) == NULL)
674 fatal("%s: %s: %s", __progname, identity_file, strerror(errno));
675 if ((rsa = PEM_read_RSAPublicKey(fp, NULL, NULL, NULL)) != NULL) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000676 if ((*k = sshkey_new(KEY_UNSPEC)) == NULL)
677 fatal("sshkey_new failed");
Damien Miller44b25042010-07-02 13:35:01 +1000678 (*k)->type = KEY_RSA;
679 (*k)->rsa = rsa;
680 fclose(fp);
681 return;
682 }
683#if notyet /* OpenSSH 0.9.8 lacks this function */
684 rewind(fp);
685 if ((dsa = PEM_read_DSAPublicKey(fp, NULL, NULL, NULL)) != NULL) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000686 if ((*k = sshkey_new(KEY_UNSPEC)) == NULL)
687 fatal("sshkey_new failed");
Damien Miller44b25042010-07-02 13:35:01 +1000688 (*k)->type = KEY_DSA;
689 (*k)->dsa = dsa;
690 fclose(fp);
691 return;
692 }
Damien Millereb8b60e2010-08-31 22:41:14 +1000693 /* XXX ECDSA */
Damien Miller44b25042010-07-02 13:35:01 +1000694#endif
695 fatal("%s: unrecognised raw private key format", __func__);
696}
697
698static void
699do_convert_from(struct passwd *pw)
700{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000701 struct sshkey *k = NULL;
702 int r, private = 0, ok = 0;
Damien Miller44b25042010-07-02 13:35:01 +1000703 struct stat st;
704
705 if (!have_identity)
706 ask_filename(pw, "Enter file in which the key is");
707 if (stat(identity_file, &st) < 0)
708 fatal("%s: %s: %s", __progname, identity_file, strerror(errno));
709
710 switch (convert_format) {
711 case FMT_RFC4716:
712 do_convert_from_ssh2(pw, &k, &private);
713 break;
714 case FMT_PKCS8:
715 do_convert_from_pkcs8(&k, &private);
716 break;
717 case FMT_PEM:
718 do_convert_from_pem(&k, &private);
719 break;
720 default:
721 fatal("%s: unknown key format %d", __func__, convert_format);
722 }
723
724 if (!private)
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000725 if ((r = sshkey_write(k, stdout)) == 0)
726 ok = 1;
Damien Miller44b25042010-07-02 13:35:01 +1000727 if (ok)
728 fprintf(stdout, "\n");
729 else {
730 switch (k->type) {
731 case KEY_DSA:
732 ok = PEM_write_DSAPrivateKey(stdout, k->dsa, NULL,
733 NULL, 0, NULL, NULL);
734 break;
Damien Miller6af914a2010-09-10 11:39:26 +1000735#ifdef OPENSSL_HAS_ECC
Damien Millereb8b60e2010-08-31 22:41:14 +1000736 case KEY_ECDSA:
737 ok = PEM_write_ECPrivateKey(stdout, k->ecdsa, NULL,
738 NULL, 0, NULL, NULL);
739 break;
Damien Miller6af914a2010-09-10 11:39:26 +1000740#endif
Damien Miller44b25042010-07-02 13:35:01 +1000741 case KEY_RSA:
742 ok = PEM_write_RSAPrivateKey(stdout, k->rsa, NULL,
743 NULL, 0, NULL, NULL);
744 break;
745 default:
746 fatal("%s: unsupported key type %s", __func__,
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000747 sshkey_type(k));
Damien Miller44b25042010-07-02 13:35:01 +1000748 }
749 }
750
Damien Miller874d77b2000-10-14 16:23:11 +1100751 if (!ok) {
Damien Miller9eab9562009-02-22 08:47:02 +1100752 fprintf(stderr, "key write failed\n");
Damien Miller874d77b2000-10-14 16:23:11 +1100753 exit(1);
754 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000755 sshkey_free(k);
Damien Millereba71ba2000-04-29 23:57:08 +1000756 exit(0);
757}
Damien Miller1f0311c2014-05-15 14:24:09 +1000758#endif
Damien Millereba71ba2000-04-29 23:57:08 +1000759
Ben Lindstrombba81212001-06-25 05:01:22 +0000760static void
Damien Millereba71ba2000-04-29 23:57:08 +1000761do_print_public(struct passwd *pw)
762{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000763 struct sshkey *prv;
Damien Millereba71ba2000-04-29 23:57:08 +1000764 struct stat st;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000765 int r;
Damien Millereba71ba2000-04-29 23:57:08 +1000766
767 if (!have_identity)
768 ask_filename(pw, "Enter file in which the key is");
769 if (stat(identity_file, &st) < 0) {
770 perror(identity_file);
771 exit(1);
772 }
Ben Lindstromd78ae762001-06-05 20:35:09 +0000773 prv = load_identity(identity_file);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000774 if ((r = sshkey_write(prv, stdout)) != 0)
775 fprintf(stderr, "key_write failed: %s", ssh_err(r));
776 sshkey_free(prv);
Damien Millereba71ba2000-04-29 23:57:08 +1000777 fprintf(stdout, "\n");
778 exit(0);
779}
780
Ben Lindstromcd392282001-07-04 03:44:03 +0000781static void
Damien Miller757f34e2010-08-05 13:05:31 +1000782do_download(struct passwd *pw)
Ben Lindstromcd392282001-07-04 03:44:03 +0000783{
Damien Miller7ea845e2010-02-12 09:21:02 +1100784#ifdef ENABLE_PKCS11
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000785 struct sshkey **keys = NULL;
Damien Miller7ea845e2010-02-12 09:21:02 +1100786 int i, nkeys;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000787 enum sshkey_fp_rep rep;
djm@openbsd.org56d1c832014-12-21 22:27:55 +0000788 int fptype;
Damien Millerec77c952013-01-09 15:58:00 +1100789 char *fp, *ra;
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000790
djm@openbsd.org56d1c832014-12-21 22:27:55 +0000791 fptype = print_bubblebabble ? SSH_DIGEST_SHA1 : fingerprint_hash;
792 rep = print_bubblebabble ? SSH_FP_BUBBLEBABBLE : SSH_FP_DEFAULT;
Damien Miller1422c082013-01-09 16:44:54 +1100793
Damien Miller7ea845e2010-02-12 09:21:02 +1100794 pkcs11_init(0);
795 nkeys = pkcs11_add_provider(pkcs11provider, NULL, &keys);
796 if (nkeys <= 0)
797 fatal("cannot read public key from pkcs11");
798 for (i = 0; i < nkeys; i++) {
Damien Millerec77c952013-01-09 15:58:00 +1100799 if (print_fingerprint) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000800 fp = sshkey_fingerprint(keys[i], fptype, rep);
801 ra = sshkey_fingerprint(keys[i], fingerprint_hash,
Damien Millerec77c952013-01-09 15:58:00 +1100802 SSH_FP_RANDOMART);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000803 printf("%u %s %s (PKCS11 key)\n", sshkey_size(keys[i]),
804 fp, sshkey_type(keys[i]));
Damien Millerec77c952013-01-09 15:58:00 +1100805 if (log_level >= SYSLOG_LEVEL_VERBOSE)
806 printf("%s\n", ra);
Darren Tuckera627d422013-06-02 07:31:17 +1000807 free(ra);
808 free(fp);
Damien Millerec77c952013-01-09 15:58:00 +1100809 } else {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000810 (void) sshkey_write(keys[i], stdout); /* XXX check */
Damien Millerec77c952013-01-09 15:58:00 +1100811 fprintf(stdout, "\n");
812 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000813 sshkey_free(keys[i]);
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000814 }
Darren Tuckera627d422013-06-02 07:31:17 +1000815 free(keys);
Damien Miller7ea845e2010-02-12 09:21:02 +1100816 pkcs11_terminate();
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000817 exit(0);
Damien Miller7ea845e2010-02-12 09:21:02 +1100818#else
819 fatal("no pkcs11 support");
820#endif /* ENABLE_PKCS11 */
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000821}
Ben Lindstromcd392282001-07-04 03:44:03 +0000822
Ben Lindstrombba81212001-06-25 05:01:22 +0000823static void
Damien Miller10f6f6b1999-11-17 17:29:08 +1100824do_fingerprint(struct passwd *pw)
825{
Damien Miller98c7ad62000-03-09 21:27:49 +1100826 FILE *f;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000827 struct sshkey *public;
Darren Tucker9c16ac92008-06-13 04:40:35 +1000828 char *comment = NULL, *cp, *ep, line[16*1024], *fp, *ra;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000829 int r, i, skip = 0, num = 0, invalid = 1;
830 enum sshkey_fp_rep rep;
djm@openbsd.org56d1c832014-12-21 22:27:55 +0000831 int fptype;
Damien Miller95def091999-11-25 00:26:21 +1100832 struct stat st;
Damien Miller10f6f6b1999-11-17 17:29:08 +1100833
djm@openbsd.org56d1c832014-12-21 22:27:55 +0000834 fptype = print_bubblebabble ? SSH_DIGEST_SHA1 : fingerprint_hash;
835 rep = print_bubblebabble ? SSH_FP_BUBBLEBABBLE : SSH_FP_DEFAULT;
Damien Miller95def091999-11-25 00:26:21 +1100836 if (!have_identity)
837 ask_filename(pw, "Enter file in which the key is");
838 if (stat(identity_file, &st) < 0) {
839 perror(identity_file);
840 exit(1);
841 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000842 if ((r = sshkey_load_public(identity_file, &public, &comment)) != 0)
843 error("Error loading public key \"%s\": %s",
844 identity_file, ssh_err(r));
845 else {
846 fp = sshkey_fingerprint(public, fptype, rep);
847 ra = sshkey_fingerprint(public, fingerprint_hash,
djm@openbsd.org56d1c832014-12-21 22:27:55 +0000848 SSH_FP_RANDOMART);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000849 printf("%u %s %s (%s)\n", sshkey_size(public), fp, comment,
850 sshkey_type(public));
Darren Tucker35c45532008-06-13 04:43:15 +1000851 if (log_level >= SYSLOG_LEVEL_VERBOSE)
852 printf("%s\n", ra);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000853 sshkey_free(public);
Darren Tuckera627d422013-06-02 07:31:17 +1000854 free(comment);
855 free(ra);
856 free(fp);
Damien Miller98c7ad62000-03-09 21:27:49 +1100857 exit(0);
858 }
Damien Miller40b59852006-06-13 13:00:25 +1000859 if (comment) {
Darren Tuckera627d422013-06-02 07:31:17 +1000860 free(comment);
Damien Miller40b59852006-06-13 13:00:25 +1000861 comment = NULL;
862 }
Damien Miller98c7ad62000-03-09 21:27:49 +1100863
Damien Millerba3420a2010-06-26 09:39:07 +1000864 if ((f = fopen(identity_file, "r")) == NULL)
865 fatal("%s: %s: %s", __progname, identity_file, strerror(errno));
Damien Miller98c7ad62000-03-09 21:27:49 +1100866
Damien Millerba3420a2010-06-26 09:39:07 +1000867 while (fgets(line, sizeof(line), f)) {
868 if ((cp = strchr(line, '\n')) == NULL) {
869 error("line %d too long: %.40s...",
870 num + 1, line);
871 skip = 1;
872 continue;
Damien Miller95def091999-11-25 00:26:21 +1100873 }
Damien Millerba3420a2010-06-26 09:39:07 +1000874 num++;
875 if (skip) {
876 skip = 0;
877 continue;
878 }
879 *cp = '\0';
880
881 /* Skip leading whitespace, empty and comment lines. */
882 for (cp = line; *cp == ' ' || *cp == '\t'; cp++)
883 ;
884 if (!*cp || *cp == '\n' || *cp == '#')
885 continue;
886 i = strtol(cp, &ep, 10);
887 if (i == 0 || ep == NULL || (*ep != ' ' && *ep != '\t')) {
888 int quoted = 0;
889 comment = cp;
890 for (; *cp && (quoted || (*cp != ' ' &&
891 *cp != '\t')); cp++) {
892 if (*cp == '\\' && cp[1] == '"')
893 cp++; /* Skip both */
894 else if (*cp == '"')
895 quoted = !quoted;
896 }
897 if (!*cp)
898 continue;
899 *cp++ = '\0';
900 }
901 ep = cp;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000902 if ((public = sshkey_new(KEY_RSA1)) == NULL)
903 fatal("sshkey_new failed");
904 if ((r = sshkey_read(public, &cp)) != 0) {
Damien Millerba3420a2010-06-26 09:39:07 +1000905 cp = ep;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000906 sshkey_free(public);
907 if ((public = sshkey_new(KEY_UNSPEC)) == NULL)
908 fatal("sshkey_new failed");
909 if ((r = sshkey_read(public, &cp)) != 0) {
910 sshkey_free(public);
Damien Millerba3420a2010-06-26 09:39:07 +1000911 continue;
912 }
913 }
914 comment = *cp ? cp : comment;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000915 fp = sshkey_fingerprint(public, fptype, rep);
916 ra = sshkey_fingerprint(public, fingerprint_hash,
djm@openbsd.org56d1c832014-12-21 22:27:55 +0000917 SSH_FP_RANDOMART);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000918 printf("%u %s %s (%s)\n", sshkey_size(public), fp,
919 comment ? comment : "no comment", sshkey_type(public));
Damien Millerba3420a2010-06-26 09:39:07 +1000920 if (log_level >= SYSLOG_LEVEL_VERBOSE)
921 printf("%s\n", ra);
Darren Tuckera627d422013-06-02 07:31:17 +1000922 free(ra);
923 free(fp);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000924 sshkey_free(public);
Damien Millerba3420a2010-06-26 09:39:07 +1000925 invalid = 0;
Damien Miller95def091999-11-25 00:26:21 +1100926 }
Damien Millerba3420a2010-06-26 09:39:07 +1000927 fclose(f);
928
Damien Miller98c7ad62000-03-09 21:27:49 +1100929 if (invalid) {
Damien Millereb5fec62001-11-12 10:52:44 +1100930 printf("%s is not a public key file.\n", identity_file);
Damien Miller98c7ad62000-03-09 21:27:49 +1100931 exit(1);
932 }
Damien Miller95def091999-11-25 00:26:21 +1100933 exit(0);
Damien Miller10f6f6b1999-11-17 17:29:08 +1100934}
935
Damien Miller4b42d7f2005-03-01 21:48:35 +1100936static void
Damien Miller58f1baf2011-05-05 14:06:15 +1000937do_gen_all_hostkeys(struct passwd *pw)
938{
939 struct {
940 char *key_type;
941 char *key_type_display;
942 char *path;
943 } key_types[] = {
944 { "rsa1", "RSA1", _PATH_HOST_KEY_FILE },
945 { "rsa", "RSA" ,_PATH_HOST_RSA_KEY_FILE },
946 { "dsa", "DSA", _PATH_HOST_DSA_KEY_FILE },
Damien Millerb56e4932012-02-06 07:41:27 +1100947#ifdef OPENSSL_HAS_ECC
Damien Miller58f1baf2011-05-05 14:06:15 +1000948 { "ecdsa", "ECDSA",_PATH_HOST_ECDSA_KEY_FILE },
Damien Millerb56e4932012-02-06 07:41:27 +1100949#endif
Damien Miller5be9d9e2013-12-07 11:24:01 +1100950 { "ed25519", "ED25519",_PATH_HOST_ED25519_KEY_FILE },
Damien Miller58f1baf2011-05-05 14:06:15 +1000951 { NULL, NULL, NULL }
952 };
953
954 int first = 0;
955 struct stat st;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000956 struct sshkey *private, *public;
Damien Miller58f1baf2011-05-05 14:06:15 +1000957 char comment[1024];
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000958 int i, type, fd, r;
Damien Miller58f1baf2011-05-05 14:06:15 +1000959 FILE *f;
960
961 for (i = 0; key_types[i].key_type; i++) {
962 if (stat(key_types[i].path, &st) == 0)
963 continue;
964 if (errno != ENOENT) {
965 printf("Could not stat %s: %s", key_types[i].path,
966 strerror(errno));
967 first = 0;
968 continue;
969 }
970
971 if (first == 0) {
972 first = 1;
973 printf("%s: generating new host keys: ", __progname);
974 }
975 printf("%s ", key_types[i].key_type_display);
976 fflush(stdout);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000977 type = sshkey_type_from_name(key_types[i].key_type);
Damien Miller58f1baf2011-05-05 14:06:15 +1000978 strlcpy(identity_file, key_types[i].path, sizeof(identity_file));
979 bits = 0;
djm@openbsd.org7efb4552015-01-18 13:22:28 +0000980 type_bits_valid(type, NULL, &bits);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000981 if ((r = sshkey_generate(type, bits, &private)) != 0) {
982 fprintf(stderr, "key_generate failed: %s\n",
983 ssh_err(r));
Damien Miller58f1baf2011-05-05 14:06:15 +1000984 first = 0;
985 continue;
986 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000987 if ((r = sshkey_from_private(private, &public)) != 0)
988 fatal("sshkey_from_private failed: %s", ssh_err(r));
Damien Miller58f1baf2011-05-05 14:06:15 +1000989 snprintf(comment, sizeof comment, "%s@%s", pw->pw_name,
990 hostname);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000991 if ((r = sshkey_save_private(private, identity_file, "",
992 comment, use_new_format, new_format_cipher, rounds)) != 0) {
993 printf("Saving key \"%s\" failed: %s\n", identity_file,
994 ssh_err(r));
995 sshkey_free(private);
996 sshkey_free(public);
Damien Miller58f1baf2011-05-05 14:06:15 +1000997 first = 0;
998 continue;
999 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001000 sshkey_free(private);
Damien Miller58f1baf2011-05-05 14:06:15 +10001001 strlcat(identity_file, ".pub", sizeof(identity_file));
1002 fd = open(identity_file, O_WRONLY | O_CREAT | O_TRUNC, 0644);
1003 if (fd == -1) {
1004 printf("Could not save your public key in %s\n",
1005 identity_file);
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 f = fdopen(fd, "w");
1011 if (f == NULL) {
1012 printf("fdopen %s failed\n", identity_file);
doug@openbsd.org7df88182014-08-21 01:08:52 +00001013 close(fd);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001014 sshkey_free(public);
Damien Miller58f1baf2011-05-05 14:06:15 +10001015 first = 0;
1016 continue;
1017 }
djm@openbsd.orgbb8b4422015-01-16 15:55:07 +00001018 if ((r = sshkey_write(public, f)) != 0) {
1019 fprintf(stderr, "write key failed: %s\n", ssh_err(r));
doug@openbsd.org7df88182014-08-21 01:08:52 +00001020 fclose(f);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001021 sshkey_free(public);
Damien Miller58f1baf2011-05-05 14:06:15 +10001022 first = 0;
1023 continue;
1024 }
1025 fprintf(f, " %s\n", comment);
1026 fclose(f);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001027 sshkey_free(public);
Damien Miller58f1baf2011-05-05 14:06:15 +10001028
1029 }
1030 if (first != 0)
1031 printf("\n");
1032}
1033
1034static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001035printhost(FILE *f, const char *name, struct sshkey *public,
1036 int ca, int revoked, int hash)
Damien Miller4b42d7f2005-03-01 21:48:35 +11001037{
Darren Tucker0f7e9102008-06-08 12:54:29 +10001038 if (print_fingerprint) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001039 enum sshkey_fp_rep rep;
djm@openbsd.org56d1c832014-12-21 22:27:55 +00001040 int fptype;
Darren Tucker9c16ac92008-06-13 04:40:35 +10001041 char *fp, *ra;
Darren Tucker0f7e9102008-06-08 12:54:29 +10001042
djm@openbsd.org56d1c832014-12-21 22:27:55 +00001043 fptype = print_bubblebabble ?
1044 SSH_DIGEST_SHA1 : fingerprint_hash;
1045 rep = print_bubblebabble ? SSH_FP_BUBBLEBABBLE : SSH_FP_DEFAULT;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001046 fp = sshkey_fingerprint(public, fptype, rep);
1047 ra = sshkey_fingerprint(public, fingerprint_hash,
djm@openbsd.org56d1c832014-12-21 22:27:55 +00001048 SSH_FP_RANDOMART);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001049 printf("%u %s %s (%s)\n", sshkey_size(public), fp, name,
1050 sshkey_type(public));
Damien Miller81dec052008-07-14 11:28:29 +10001051 if (log_level >= SYSLOG_LEVEL_VERBOSE)
1052 printf("%s\n", ra);
Darren Tuckera627d422013-06-02 07:31:17 +10001053 free(ra);
1054 free(fp);
Darren Tucker0f7e9102008-06-08 12:54:29 +10001055 } else {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001056 int r;
1057
Darren Tucker0f7e9102008-06-08 12:54:29 +10001058 if (hash && (name = host_hash(name, NULL, 0)) == NULL)
1059 fatal("hash_host failed");
Damien Miller4a1d3d52014-07-03 21:24:40 +10001060 fprintf(f, "%s%s%s ", ca ? CA_MARKER " " : "",
1061 revoked ? REVOKE_MARKER " " : "" , name);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001062 if ((r = sshkey_write(public, f)) != 0)
1063 fatal("key_write failed: %s", ssh_err(r));
Darren Tucker0f7e9102008-06-08 12:54:29 +10001064 fprintf(f, "\n");
1065 }
Damien Miller4b42d7f2005-03-01 21:48:35 +11001066}
1067
1068static void
1069do_known_hosts(struct passwd *pw, const char *name)
1070{
1071 FILE *in, *out = stdout;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001072 struct sshkey *pub;
Damien Miller4b42d7f2005-03-01 21:48:35 +11001073 char *cp, *cp2, *kp, *kp2;
deraadt@openbsd.org2ae4f332015-01-16 06:40:12 +00001074 char line[16*1024], tmp[PATH_MAX], old[PATH_MAX];
Damien Millercb2fbb22008-02-10 22:24:55 +11001075 int c, skip = 0, inplace = 0, num = 0, invalid = 0, has_unhashed = 0;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001076 int r, ca, revoked;
Damien Miller66085482013-09-14 09:45:03 +10001077 int found_key = 0;
Damien Miller4b42d7f2005-03-01 21:48:35 +11001078
1079 if (!have_identity) {
1080 cp = tilde_expand_filename(_PATH_SSH_USER_HOSTFILE, pw->pw_uid);
1081 if (strlcpy(identity_file, cp, sizeof(identity_file)) >=
1082 sizeof(identity_file))
1083 fatal("Specified known hosts path too long");
Darren Tuckera627d422013-06-02 07:31:17 +10001084 free(cp);
Damien Miller4b42d7f2005-03-01 21:48:35 +11001085 have_identity = 1;
1086 }
1087 if ((in = fopen(identity_file, "r")) == NULL)
Damien Millerba3420a2010-06-26 09:39:07 +10001088 fatal("%s: %s: %s", __progname, identity_file, strerror(errno));
Damien Miller4b42d7f2005-03-01 21:48:35 +11001089
Damien Miller4a1d3d52014-07-03 21:24:40 +10001090 /* XXX this code is a mess; refactor -djm */
Damien Miller4b42d7f2005-03-01 21:48:35 +11001091 /*
1092 * Find hosts goes to stdout, hash and deletions happen in-place
1093 * A corner case is ssh-keygen -HF foo, which should go to stdout
1094 */
1095 if (!find_host && (hash_hosts || delete_host)) {
1096 if (strlcpy(tmp, identity_file, sizeof(tmp)) >= sizeof(tmp) ||
1097 strlcat(tmp, ".XXXXXXXXXX", sizeof(tmp)) >= sizeof(tmp) ||
1098 strlcpy(old, identity_file, sizeof(old)) >= sizeof(old) ||
1099 strlcat(old, ".old", sizeof(old)) >= sizeof(old))
1100 fatal("known_hosts path too long");
1101 umask(077);
1102 if ((c = mkstemp(tmp)) == -1)
1103 fatal("mkstemp: %s", strerror(errno));
1104 if ((out = fdopen(c, "w")) == NULL) {
1105 c = errno;
1106 unlink(tmp);
1107 fatal("fdopen: %s", strerror(c));
1108 }
1109 inplace = 1;
1110 }
1111
1112 while (fgets(line, sizeof(line), in)) {
Damien Miller0f4ed692007-10-26 14:26:32 +10001113 if ((cp = strchr(line, '\n')) == NULL) {
Damien Millercb2fbb22008-02-10 22:24:55 +11001114 error("line %d too long: %.40s...", num + 1, line);
Damien Miller4b42d7f2005-03-01 21:48:35 +11001115 skip = 1;
1116 invalid = 1;
1117 continue;
1118 }
Damien Miller0f4ed692007-10-26 14:26:32 +10001119 num++;
Damien Miller4b42d7f2005-03-01 21:48:35 +11001120 if (skip) {
1121 skip = 0;
1122 continue;
1123 }
Damien Miller0f4ed692007-10-26 14:26:32 +10001124 *cp = '\0';
Damien Miller4b42d7f2005-03-01 21:48:35 +11001125
1126 /* Skip leading whitespace, empty and comment lines. */
1127 for (cp = line; *cp == ' ' || *cp == '\t'; cp++)
1128 ;
1129 if (!*cp || *cp == '\n' || *cp == '#') {
1130 if (inplace)
1131 fprintf(out, "%s\n", cp);
1132 continue;
1133 }
Damien Miller4a1d3d52014-07-03 21:24:40 +10001134 /* Check whether this is a CA key or revocation marker */
Damien Miller0a80ca12010-02-27 07:55:05 +11001135 if (strncasecmp(cp, CA_MARKER, sizeof(CA_MARKER) - 1) == 0 &&
1136 (cp[sizeof(CA_MARKER) - 1] == ' ' ||
1137 cp[sizeof(CA_MARKER) - 1] == '\t')) {
1138 ca = 1;
1139 cp += sizeof(CA_MARKER);
1140 } else
1141 ca = 0;
Damien Miller4a1d3d52014-07-03 21:24:40 +10001142 if (strncasecmp(cp, REVOKE_MARKER,
1143 sizeof(REVOKE_MARKER) - 1) == 0 &&
1144 (cp[sizeof(REVOKE_MARKER) - 1] == ' ' ||
1145 cp[sizeof(REVOKE_MARKER) - 1] == '\t')) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001146 revoked = 1;
Damien Miller4a1d3d52014-07-03 21:24:40 +10001147 cp += sizeof(REVOKE_MARKER);
1148 } else
1149 revoked = 0;
Damien Miller0a80ca12010-02-27 07:55:05 +11001150
Damien Miller4b42d7f2005-03-01 21:48:35 +11001151 /* Find the end of the host name portion. */
1152 for (kp = cp; *kp && *kp != ' ' && *kp != '\t'; kp++)
1153 ;
Damien Miller0a80ca12010-02-27 07:55:05 +11001154
Damien Miller4b42d7f2005-03-01 21:48:35 +11001155 if (*kp == '\0' || *(kp + 1) == '\0') {
1156 error("line %d missing key: %.40s...",
1157 num, line);
1158 invalid = 1;
1159 continue;
1160 }
1161 *kp++ = '\0';
1162 kp2 = kp;
1163
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001164 if ((pub = sshkey_new(KEY_RSA1)) == NULL)
1165 fatal("sshkey_new failed");
1166 if ((r = sshkey_read(pub, &kp)) != 0) {
Damien Miller4b42d7f2005-03-01 21:48:35 +11001167 kp = kp2;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001168 sshkey_free(pub);
1169 if ((pub = sshkey_new(KEY_UNSPEC)) == NULL)
1170 fatal("sshkey_new failed");
1171 if ((r = sshkey_read(pub, &kp)) != 0) {
Damien Miller4b42d7f2005-03-01 21:48:35 +11001172 error("line %d invalid key: %.40s...",
1173 num, line);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001174 sshkey_free(pub);
Damien Miller4b42d7f2005-03-01 21:48:35 +11001175 invalid = 1;
1176 continue;
1177 }
1178 }
1179
1180 if (*cp == HASH_DELIM) {
1181 if (find_host || delete_host) {
1182 cp2 = host_hash(name, cp, strlen(cp));
1183 if (cp2 == NULL) {
1184 error("line %d: invalid hashed "
1185 "name: %.64s...", num, line);
1186 invalid = 1;
1187 continue;
1188 }
1189 c = (strcmp(cp2, cp) == 0);
1190 if (find_host && c) {
Damien Miller66085482013-09-14 09:45:03 +10001191 if (!quiet)
1192 printf("# Host %s found: "
1193 "line %d type %s%s\n", name,
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001194 num, sshkey_type(pub),
Damien Miller4a1d3d52014-07-03 21:24:40 +10001195 ca ? " (CA key)" :
1196 revoked? " (revoked)" : "");
1197 printhost(out, cp, pub, ca, revoked, 0);
Damien Miller66085482013-09-14 09:45:03 +10001198 found_key = 1;
Damien Miller4b42d7f2005-03-01 21:48:35 +11001199 }
Darren Tuckerf09a8a62012-09-06 21:20:39 +10001200 if (delete_host) {
Damien Miller4a1d3d52014-07-03 21:24:40 +10001201 if (!c || ca || revoked) {
1202 printhost(out, cp, pub,
1203 ca, revoked, 0);
1204 } else {
Darren Tuckerf09a8a62012-09-06 21:20:39 +10001205 printf("# Host %s found: "
1206 "line %d type %s\n", name,
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001207 num, sshkey_type(pub));
Damien Miller4a1d3d52014-07-03 21:24:40 +10001208 }
Darren Tuckerf09a8a62012-09-06 21:20:39 +10001209 }
Damien Miller4b42d7f2005-03-01 21:48:35 +11001210 } else if (hash_hosts)
Damien Miller4a1d3d52014-07-03 21:24:40 +10001211 printhost(out, cp, pub, ca, revoked, 0);
Damien Miller4b42d7f2005-03-01 21:48:35 +11001212 } else {
1213 if (find_host || delete_host) {
1214 c = (match_hostname(name, cp,
1215 strlen(cp)) == 1);
1216 if (find_host && c) {
Damien Miller66085482013-09-14 09:45:03 +10001217 if (!quiet)
1218 printf("# Host %s found: "
1219 "line %d type %s%s\n", name,
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001220 num, sshkey_type(pub),
Damien Miller66085482013-09-14 09:45:03 +10001221 ca ? " (CA key)" : "");
Damien Miller4a1d3d52014-07-03 21:24:40 +10001222 printhost(out, name, pub, ca, revoked,
1223 hash_hosts && !(ca || revoked));
Damien Miller66085482013-09-14 09:45:03 +10001224 found_key = 1;
Damien Miller4b42d7f2005-03-01 21:48:35 +11001225 }
Darren Tuckerf09a8a62012-09-06 21:20:39 +10001226 if (delete_host) {
Damien Miller4a1d3d52014-07-03 21:24:40 +10001227 if (!c || ca || revoked) {
1228 printhost(out, cp, pub,
1229 ca, revoked, 0);
1230 } else {
Darren Tuckerf09a8a62012-09-06 21:20:39 +10001231 printf("# Host %s found: "
1232 "line %d type %s\n", name,
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001233 num, sshkey_type(pub));
Damien Miller4a1d3d52014-07-03 21:24:40 +10001234 }
Darren Tuckerf09a8a62012-09-06 21:20:39 +10001235 }
Damien Miller4a1d3d52014-07-03 21:24:40 +10001236 } else if (hash_hosts && (ca || revoked)) {
1237 /* Don't hash CA and revoked keys' hostnames */
1238 printhost(out, cp, pub, ca, revoked, 0);
1239 has_unhashed = 1;
Damien Miller4b42d7f2005-03-01 21:48:35 +11001240 } else if (hash_hosts) {
Damien Miller4a1d3d52014-07-03 21:24:40 +10001241 /* Hash each hostname separately */
Darren Tucker47eede72005-03-14 23:08:12 +11001242 for (cp2 = strsep(&cp, ",");
Damien Miller4b42d7f2005-03-01 21:48:35 +11001243 cp2 != NULL && *cp2 != '\0';
Damien Miller89eac802005-03-02 12:33:04 +11001244 cp2 = strsep(&cp, ",")) {
Damien Miller4a1d3d52014-07-03 21:24:40 +10001245 if (strcspn(cp2, "*?!") !=
Damien Miller0a80ca12010-02-27 07:55:05 +11001246 strlen(cp2)) {
Damien Miller89eac802005-03-02 12:33:04 +11001247 fprintf(stderr, "Warning: "
1248 "ignoring host name with "
1249 "metacharacters: %.64s\n",
1250 cp2);
Damien Miller4a1d3d52014-07-03 21:24:40 +10001251 printhost(out, cp2, pub, ca,
1252 revoked, 0);
1253 has_unhashed = 1;
1254 } else {
1255 printhost(out, cp2, pub, ca,
1256 revoked, 1);
1257 }
Damien Miller89eac802005-03-02 12:33:04 +11001258 }
Damien Miller4b42d7f2005-03-01 21:48:35 +11001259 }
1260 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001261 sshkey_free(pub);
Damien Miller4b42d7f2005-03-01 21:48:35 +11001262 }
1263 fclose(in);
1264
1265 if (invalid) {
Damien Millercb2fbb22008-02-10 22:24:55 +11001266 fprintf(stderr, "%s is not a valid known_hosts file.\n",
Damien Miller4b42d7f2005-03-01 21:48:35 +11001267 identity_file);
1268 if (inplace) {
1269 fprintf(stderr, "Not replacing existing known_hosts "
Darren Tucker9f438a92005-03-14 23:09:18 +11001270 "file because of errors\n");
Damien Miller4b42d7f2005-03-01 21:48:35 +11001271 fclose(out);
1272 unlink(tmp);
1273 }
1274 exit(1);
1275 }
1276
1277 if (inplace) {
1278 fclose(out);
1279
1280 /* Backup existing file */
1281 if (unlink(old) == -1 && errno != ENOENT)
1282 fatal("unlink %.100s: %s", old, strerror(errno));
1283 if (link(identity_file, old) == -1)
1284 fatal("link %.100s to %.100s: %s", identity_file, old,
1285 strerror(errno));
1286 /* Move new one into place */
1287 if (rename(tmp, identity_file) == -1) {
1288 error("rename\"%s\" to \"%s\": %s", tmp, identity_file,
1289 strerror(errno));
1290 unlink(tmp);
1291 unlink(old);
1292 exit(1);
1293 }
1294
1295 fprintf(stderr, "%s updated.\n", identity_file);
1296 fprintf(stderr, "Original contents retained as %s\n", old);
1297 if (has_unhashed) {
1298 fprintf(stderr, "WARNING: %s contains unhashed "
1299 "entries\n", old);
1300 fprintf(stderr, "Delete this file to ensure privacy "
Damien Miller0dc1bef2005-07-17 17:22:45 +10001301 "of hostnames\n");
Damien Miller4b42d7f2005-03-01 21:48:35 +11001302 }
1303 }
1304
Damien Miller66085482013-09-14 09:45:03 +10001305 exit (find_host && !found_key);
Damien Miller4b42d7f2005-03-01 21:48:35 +11001306}
1307
Damien Miller95def091999-11-25 00:26:21 +11001308/*
1309 * Perform changing a passphrase. The argument is the passwd structure
1310 * for the current user.
1311 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001312static void
Damien Miller10f6f6b1999-11-17 17:29:08 +11001313do_change_passphrase(struct passwd *pw)
1314{
Damien Miller95def091999-11-25 00:26:21 +11001315 char *comment;
1316 char *old_passphrase, *passphrase1, *passphrase2;
1317 struct stat st;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001318 struct sshkey *private;
1319 int r;
Damien Miller10f6f6b1999-11-17 17:29:08 +11001320
Damien Miller95def091999-11-25 00:26:21 +11001321 if (!have_identity)
1322 ask_filename(pw, "Enter file in which the key is");
Damien Miller95def091999-11-25 00:26:21 +11001323 if (stat(identity_file, &st) < 0) {
1324 perror(identity_file);
1325 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001326 }
Damien Miller95def091999-11-25 00:26:21 +11001327 /* Try to load the file with empty passphrase. */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001328 r = sshkey_load_private(identity_file, "", &private, &comment);
1329 if (r == SSH_ERR_KEY_WRONG_PASSPHRASE) {
Damien Miller95def091999-11-25 00:26:21 +11001330 if (identity_passphrase)
1331 old_passphrase = xstrdup(identity_passphrase);
1332 else
Ben Lindstrom949974b2001-06-25 05:20:31 +00001333 old_passphrase =
1334 read_passphrase("Enter old passphrase: ",
1335 RP_ALLOW_STDIN);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001336 r = sshkey_load_private(identity_file, old_passphrase,
1337 &private, &comment);
Damien Millera5103f42014-02-04 11:20:14 +11001338 explicit_bzero(old_passphrase, strlen(old_passphrase));
Darren Tuckera627d422013-06-02 07:31:17 +10001339 free(old_passphrase);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001340 if (r != 0)
1341 goto badkey;
1342 } else if (r != 0) {
1343 badkey:
1344 fprintf(stderr, "Failed to load key \"%s\": %s\n",
1345 identity_file, ssh_err(r));
1346 exit(1);
Damien Miller95def091999-11-25 00:26:21 +11001347 }
1348 printf("Key has comment '%s'\n", comment);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001349
Damien Miller95def091999-11-25 00:26:21 +11001350 /* Ask the new passphrase (twice). */
1351 if (identity_new_passphrase) {
1352 passphrase1 = xstrdup(identity_new_passphrase);
1353 passphrase2 = NULL;
1354 } else {
1355 passphrase1 =
Ben Lindstrom949974b2001-06-25 05:20:31 +00001356 read_passphrase("Enter new passphrase (empty for no "
1357 "passphrase): ", RP_ALLOW_STDIN);
1358 passphrase2 = read_passphrase("Enter same passphrase again: ",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001359 RP_ALLOW_STDIN);
Damien Miller95def091999-11-25 00:26:21 +11001360
1361 /* Verify that they are the same. */
1362 if (strcmp(passphrase1, passphrase2) != 0) {
Damien Millera5103f42014-02-04 11:20:14 +11001363 explicit_bzero(passphrase1, strlen(passphrase1));
1364 explicit_bzero(passphrase2, strlen(passphrase2));
Darren Tuckera627d422013-06-02 07:31:17 +10001365 free(passphrase1);
1366 free(passphrase2);
Damien Miller95def091999-11-25 00:26:21 +11001367 printf("Pass phrases do not match. Try again.\n");
1368 exit(1);
1369 }
1370 /* Destroy the other copy. */
Damien Millera5103f42014-02-04 11:20:14 +11001371 explicit_bzero(passphrase2, strlen(passphrase2));
Darren Tuckera627d422013-06-02 07:31:17 +10001372 free(passphrase2);
Damien Miller95def091999-11-25 00:26:21 +11001373 }
1374
1375 /* Save the file using the new passphrase. */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001376 if ((r = sshkey_save_private(private, identity_file, passphrase1,
1377 comment, use_new_format, new_format_cipher, rounds)) != 0) {
1378 printf("Saving key \"%s\" failed: %s.\n",
1379 identity_file, ssh_err(r));
Damien Millera5103f42014-02-04 11:20:14 +11001380 explicit_bzero(passphrase1, strlen(passphrase1));
Darren Tuckera627d422013-06-02 07:31:17 +10001381 free(passphrase1);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001382 sshkey_free(private);
Darren Tuckera627d422013-06-02 07:31:17 +10001383 free(comment);
Damien Miller95def091999-11-25 00:26:21 +11001384 exit(1);
1385 }
1386 /* Destroy the passphrase and the copy of the key in memory. */
Damien Millera5103f42014-02-04 11:20:14 +11001387 explicit_bzero(passphrase1, strlen(passphrase1));
Darren Tuckera627d422013-06-02 07:31:17 +10001388 free(passphrase1);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001389 sshkey_free(private); /* Destroys contents */
Darren Tuckera627d422013-06-02 07:31:17 +10001390 free(comment);
Damien Miller95def091999-11-25 00:26:21 +11001391
1392 printf("Your identification has been saved with the new passphrase.\n");
1393 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001394}
1395
Damien Miller37876e92003-05-15 10:19:46 +10001396/*
1397 * Print the SSHFP RR.
1398 */
Damien Millercb314822006-03-26 13:48:01 +11001399static int
1400do_print_resource_record(struct passwd *pw, char *fname, char *hname)
Damien Miller37876e92003-05-15 10:19:46 +10001401{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001402 struct sshkey *public;
Damien Miller37876e92003-05-15 10:19:46 +10001403 char *comment = NULL;
1404 struct stat st;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001405 int r;
Damien Miller37876e92003-05-15 10:19:46 +10001406
Damien Millercb314822006-03-26 13:48:01 +11001407 if (fname == NULL)
Damien Miller5bb88332013-07-18 16:13:37 +10001408 fatal("%s: no filename", __func__);
Damien Millercb314822006-03-26 13:48:01 +11001409 if (stat(fname, &st) < 0) {
1410 if (errno == ENOENT)
1411 return 0;
1412 perror(fname);
Damien Miller37876e92003-05-15 10:19:46 +10001413 exit(1);
1414 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001415 if ((r = sshkey_load_public(fname, &public, &comment)) != 0) {
1416 printf("Failed to read v2 public key from \"%s\": %s.\n",
1417 fname, ssh_err(r));
1418 exit(1);
Damien Miller37876e92003-05-15 10:19:46 +10001419 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001420 export_dns_rr(hname, public, stdout, print_generic);
1421 sshkey_free(public);
1422 free(comment);
1423 return 1;
Damien Miller37876e92003-05-15 10:19:46 +10001424}
Damien Miller37876e92003-05-15 10:19:46 +10001425
Damien Miller95def091999-11-25 00:26:21 +11001426/*
1427 * Change the comment of a private key file.
1428 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001429static void
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001430do_change_comment(struct passwd *pw)
1431{
Ben Lindstrom5fc62702001-03-09 18:19:24 +00001432 char new_comment[1024], *comment, *passphrase;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001433 struct sshkey *private;
1434 struct sshkey *public;
Damien Miller95def091999-11-25 00:26:21 +11001435 struct stat st;
1436 FILE *f;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001437 int r, fd;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001438
Damien Miller95def091999-11-25 00:26:21 +11001439 if (!have_identity)
1440 ask_filename(pw, "Enter file in which the key is");
Damien Miller95def091999-11-25 00:26:21 +11001441 if (stat(identity_file, &st) < 0) {
1442 perror(identity_file);
1443 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001444 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001445 if ((r = sshkey_load_private(identity_file, "",
1446 &private, &comment)) == 0)
1447 passphrase = xstrdup("");
1448 else if (r != SSH_ERR_KEY_WRONG_PASSPHRASE) {
1449 printf("Cannot load private key \"%s\": %s.\n",
1450 identity_file, ssh_err(r));
1451 exit(1);
1452 } else {
Damien Miller95def091999-11-25 00:26:21 +11001453 if (identity_passphrase)
1454 passphrase = xstrdup(identity_passphrase);
1455 else if (identity_new_passphrase)
1456 passphrase = xstrdup(identity_new_passphrase);
1457 else
Ben Lindstrom949974b2001-06-25 05:20:31 +00001458 passphrase = read_passphrase("Enter passphrase: ",
1459 RP_ALLOW_STDIN);
Damien Miller95def091999-11-25 00:26:21 +11001460 /* Try to load using the passphrase. */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001461 if ((r = sshkey_load_private(identity_file, passphrase,
1462 &private, &comment)) != 0) {
Damien Millera5103f42014-02-04 11:20:14 +11001463 explicit_bzero(passphrase, strlen(passphrase));
Darren Tuckera627d422013-06-02 07:31:17 +10001464 free(passphrase);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001465 printf("Cannot load private key \"%s\": %s.\n",
1466 identity_file, ssh_err(r));
Damien Miller95def091999-11-25 00:26:21 +11001467 exit(1);
1468 }
1469 }
Ben Lindstromd0fca422001-03-26 13:44:06 +00001470 if (private->type != KEY_RSA1) {
1471 fprintf(stderr, "Comments are only supported for RSA1 keys.\n");
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001472 sshkey_free(private);
Ben Lindstromd0fca422001-03-26 13:44:06 +00001473 exit(1);
Damien Miller9f0f5c62001-12-21 14:45:46 +11001474 }
Damien Miller95def091999-11-25 00:26:21 +11001475 printf("Key now has comment '%s'\n", comment);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001476
Damien Miller95def091999-11-25 00:26:21 +11001477 if (identity_comment) {
1478 strlcpy(new_comment, identity_comment, sizeof(new_comment));
1479 } else {
1480 printf("Enter new comment: ");
1481 fflush(stdout);
1482 if (!fgets(new_comment, sizeof(new_comment), stdin)) {
Damien Millera5103f42014-02-04 11:20:14 +11001483 explicit_bzero(passphrase, strlen(passphrase));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001484 sshkey_free(private);
Damien Miller95def091999-11-25 00:26:21 +11001485 exit(1);
1486 }
Damien Miller14b017d2007-09-17 16:09:15 +10001487 new_comment[strcspn(new_comment, "\n")] = '\0';
Damien Miller95def091999-11-25 00:26:21 +11001488 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001489
Damien Miller95def091999-11-25 00:26:21 +11001490 /* Save the file using the new passphrase. */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001491 if ((r = sshkey_save_private(private, identity_file, passphrase,
1492 new_comment, use_new_format, new_format_cipher, rounds)) != 0) {
1493 printf("Saving key \"%s\" failed: %s\n",
1494 identity_file, ssh_err(r));
Damien Millera5103f42014-02-04 11:20:14 +11001495 explicit_bzero(passphrase, strlen(passphrase));
Darren Tuckera627d422013-06-02 07:31:17 +10001496 free(passphrase);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001497 sshkey_free(private);
Darren Tuckera627d422013-06-02 07:31:17 +10001498 free(comment);
Damien Miller95def091999-11-25 00:26:21 +11001499 exit(1);
1500 }
Damien Millera5103f42014-02-04 11:20:14 +11001501 explicit_bzero(passphrase, strlen(passphrase));
Darren Tuckera627d422013-06-02 07:31:17 +10001502 free(passphrase);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001503 if ((r = sshkey_from_private(private, &public)) != 0)
1504 fatal("key_from_private failed: %s", ssh_err(r));
1505 sshkey_free(private);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001506
Damien Miller95def091999-11-25 00:26:21 +11001507 strlcat(identity_file, ".pub", sizeof(identity_file));
Ben Lindstrom5fc62702001-03-09 18:19:24 +00001508 fd = open(identity_file, O_WRONLY | O_CREAT | O_TRUNC, 0644);
1509 if (fd == -1) {
Damien Miller95def091999-11-25 00:26:21 +11001510 printf("Could not save your public key in %s\n", identity_file);
1511 exit(1);
1512 }
Ben Lindstrom5fc62702001-03-09 18:19:24 +00001513 f = fdopen(fd, "w");
1514 if (f == NULL) {
Damien Miller9eab9562009-02-22 08:47:02 +11001515 printf("fdopen %s failed\n", identity_file);
Ben Lindstrom5fc62702001-03-09 18:19:24 +00001516 exit(1);
1517 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001518 if ((r = sshkey_write(public, f)) != 0)
1519 fprintf(stderr, "write key failed: %s\n", ssh_err(r));
1520 sshkey_free(public);
Damien Millereba71ba2000-04-29 23:57:08 +10001521 fprintf(f, " %s\n", new_comment);
Damien Miller95def091999-11-25 00:26:21 +11001522 fclose(f);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001523
Darren Tuckera627d422013-06-02 07:31:17 +10001524 free(comment);
Damien Miller95def091999-11-25 00:26:21 +11001525
1526 printf("The comment in your key file has been changed.\n");
1527 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001528}
1529
Damien Miller0a80ca12010-02-27 07:55:05 +11001530static const char *
Damien Millerf2b70ca2010-03-05 07:39:35 +11001531fmt_validity(u_int64_t valid_from, u_int64_t valid_to)
Damien Miller0a80ca12010-02-27 07:55:05 +11001532{
1533 char from[32], to[32];
1534 static char ret[64];
1535 time_t tt;
1536 struct tm *tm;
1537
1538 *from = *to = '\0';
Damien Millerf2b70ca2010-03-05 07:39:35 +11001539 if (valid_from == 0 && valid_to == 0xffffffffffffffffULL)
Damien Miller0a80ca12010-02-27 07:55:05 +11001540 return "forever";
1541
Damien Millerf2b70ca2010-03-05 07:39:35 +11001542 if (valid_from != 0) {
Damien Miller0a80ca12010-02-27 07:55:05 +11001543 /* XXX revisit INT_MAX in 2038 :) */
Damien Millerf2b70ca2010-03-05 07:39:35 +11001544 tt = valid_from > INT_MAX ? INT_MAX : valid_from;
Damien Miller0a80ca12010-02-27 07:55:05 +11001545 tm = localtime(&tt);
1546 strftime(from, sizeof(from), "%Y-%m-%dT%H:%M:%S", tm);
1547 }
Damien Millerf2b70ca2010-03-05 07:39:35 +11001548 if (valid_to != 0xffffffffffffffffULL) {
Damien Miller0a80ca12010-02-27 07:55:05 +11001549 /* XXX revisit INT_MAX in 2038 :) */
Damien Millerf2b70ca2010-03-05 07:39:35 +11001550 tt = valid_to > INT_MAX ? INT_MAX : valid_to;
Damien Miller0a80ca12010-02-27 07:55:05 +11001551 tm = localtime(&tt);
1552 strftime(to, sizeof(to), "%Y-%m-%dT%H:%M:%S", tm);
1553 }
1554
Damien Millerf2b70ca2010-03-05 07:39:35 +11001555 if (valid_from == 0) {
Damien Miller0a80ca12010-02-27 07:55:05 +11001556 snprintf(ret, sizeof(ret), "before %s", to);
1557 return ret;
1558 }
Damien Millerf2b70ca2010-03-05 07:39:35 +11001559 if (valid_to == 0xffffffffffffffffULL) {
Damien Miller0a80ca12010-02-27 07:55:05 +11001560 snprintf(ret, sizeof(ret), "after %s", from);
1561 return ret;
1562 }
1563
1564 snprintf(ret, sizeof(ret), "from %s to %s", from, to);
1565 return ret;
1566}
1567
1568static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001569add_flag_option(struct sshbuf *c, const char *name)
Damien Miller0a80ca12010-02-27 07:55:05 +11001570{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001571 int r;
1572
Damien Miller0a80ca12010-02-27 07:55:05 +11001573 debug3("%s: %s", __func__, name);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001574 if ((r = sshbuf_put_cstring(c, name)) != 0 ||
1575 (r = sshbuf_put_string(c, NULL, 0)) != 0)
1576 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Miller0a80ca12010-02-27 07:55:05 +11001577}
1578
1579static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001580add_string_option(struct sshbuf *c, const char *name, const char *value)
Damien Miller0a80ca12010-02-27 07:55:05 +11001581{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001582 struct sshbuf *b;
1583 int r;
Damien Miller0a80ca12010-02-27 07:55:05 +11001584
1585 debug3("%s: %s=%s", __func__, name, value);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001586 if ((b = sshbuf_new()) == NULL)
1587 fatal("%s: sshbuf_new failed", __func__);
1588 if ((r = sshbuf_put_cstring(b, value)) != 0 ||
1589 (r = sshbuf_put_cstring(c, name)) != 0 ||
1590 (r = sshbuf_put_stringb(c, b)) != 0)
1591 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Miller0a80ca12010-02-27 07:55:05 +11001592
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001593 sshbuf_free(b);
Damien Miller0a80ca12010-02-27 07:55:05 +11001594}
1595
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001596#define OPTIONS_CRITICAL 1
1597#define OPTIONS_EXTENSIONS 2
Damien Miller0a80ca12010-02-27 07:55:05 +11001598static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001599prepare_options_buf(struct sshbuf *c, int which)
Damien Miller0a80ca12010-02-27 07:55:05 +11001600{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001601 sshbuf_reset(c);
Damien Miller1da63882010-08-05 13:03:51 +10001602 if ((which & OPTIONS_CRITICAL) != 0 &&
1603 certflags_command != NULL)
1604 add_string_option(c, "force-command", certflags_command);
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001605 if ((which & OPTIONS_EXTENSIONS) != 0 &&
Damien Miller2ce12ef2011-05-05 14:17:18 +10001606 (certflags_flags & CERTOPT_X_FWD) != 0)
1607 add_flag_option(c, "permit-X11-forwarding");
1608 if ((which & OPTIONS_EXTENSIONS) != 0 &&
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001609 (certflags_flags & CERTOPT_AGENT_FWD) != 0)
Damien Miller4e270b02010-04-16 15:56:21 +10001610 add_flag_option(c, "permit-agent-forwarding");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001611 if ((which & OPTIONS_EXTENSIONS) != 0 &&
1612 (certflags_flags & CERTOPT_PORT_FWD) != 0)
Damien Miller4e270b02010-04-16 15:56:21 +10001613 add_flag_option(c, "permit-port-forwarding");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001614 if ((which & OPTIONS_EXTENSIONS) != 0 &&
1615 (certflags_flags & CERTOPT_PTY) != 0)
Damien Miller4e270b02010-04-16 15:56:21 +10001616 add_flag_option(c, "permit-pty");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001617 if ((which & OPTIONS_EXTENSIONS) != 0 &&
1618 (certflags_flags & CERTOPT_USER_RC) != 0)
Damien Miller4e270b02010-04-16 15:56:21 +10001619 add_flag_option(c, "permit-user-rc");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001620 if ((which & OPTIONS_CRITICAL) != 0 &&
1621 certflags_src_addr != NULL)
1622 add_string_option(c, "source-address", certflags_src_addr);
Damien Miller0a80ca12010-02-27 07:55:05 +11001623}
1624
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001625static struct sshkey *
Damien Miller757f34e2010-08-05 13:05:31 +10001626load_pkcs11_key(char *path)
1627{
1628#ifdef ENABLE_PKCS11
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001629 struct sshkey **keys = NULL, *public, *private = NULL;
1630 int r, i, nkeys;
Damien Miller757f34e2010-08-05 13:05:31 +10001631
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001632 if ((r = sshkey_load_public(path, &public, NULL)) != 0)
1633 fatal("Couldn't load CA public key \"%s\": %s",
1634 path, ssh_err(r));
Damien Miller757f34e2010-08-05 13:05:31 +10001635
1636 nkeys = pkcs11_add_provider(pkcs11provider, identity_passphrase, &keys);
1637 debug3("%s: %d keys", __func__, nkeys);
1638 if (nkeys <= 0)
1639 fatal("cannot read public key from pkcs11");
1640 for (i = 0; i < nkeys; i++) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001641 if (sshkey_equal_public(public, keys[i])) {
Damien Miller757f34e2010-08-05 13:05:31 +10001642 private = keys[i];
1643 continue;
1644 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001645 sshkey_free(keys[i]);
Damien Miller757f34e2010-08-05 13:05:31 +10001646 }
Darren Tuckera627d422013-06-02 07:31:17 +10001647 free(keys);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001648 sshkey_free(public);
Damien Miller757f34e2010-08-05 13:05:31 +10001649 return private;
1650#else
1651 fatal("no pkcs11 support");
1652#endif /* ENABLE_PKCS11 */
1653}
1654
Damien Miller0a80ca12010-02-27 07:55:05 +11001655static void
1656do_ca_sign(struct passwd *pw, int argc, char **argv)
1657{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001658 int r, i, fd;
Damien Miller0a80ca12010-02-27 07:55:05 +11001659 u_int n;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001660 struct sshkey *ca, *public;
Damien Miller0a80ca12010-02-27 07:55:05 +11001661 char *otmp, *tmp, *cp, *out, *comment, **plist = NULL;
1662 FILE *f;
Damien Miller4e270b02010-04-16 15:56:21 +10001663 int v00 = 0; /* legacy keys */
Damien Miller0a80ca12010-02-27 07:55:05 +11001664
Damien Miller4e270b02010-04-16 15:56:21 +10001665 if (key_type_name != NULL) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001666 switch (sshkey_type_from_name(key_type_name)) {
Damien Miller4e270b02010-04-16 15:56:21 +10001667 case KEY_RSA_CERT_V00:
1668 case KEY_DSA_CERT_V00:
1669 v00 = 1;
1670 break;
1671 case KEY_UNSPEC:
1672 if (strcasecmp(key_type_name, "v00") == 0) {
1673 v00 = 1;
1674 break;
1675 } else if (strcasecmp(key_type_name, "v01") == 0)
1676 break;
1677 /* FALLTHROUGH */
1678 default:
1679 fprintf(stderr, "unknown key type %s\n", key_type_name);
1680 exit(1);
1681 }
1682 }
1683
Damien Miller1f0311c2014-05-15 14:24:09 +10001684#ifdef ENABLE_PKCS11
Damien Miller757f34e2010-08-05 13:05:31 +10001685 pkcs11_init(1);
Damien Miller1f0311c2014-05-15 14:24:09 +10001686#endif
Damien Miller757f34e2010-08-05 13:05:31 +10001687 tmp = tilde_expand_filename(ca_key_path, pw->pw_uid);
1688 if (pkcs11provider != NULL) {
1689 if ((ca = load_pkcs11_key(tmp)) == NULL)
1690 fatal("No PKCS#11 key matching %s found", ca_key_path);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001691 } else
1692 ca = load_identity(tmp);
Darren Tuckera627d422013-06-02 07:31:17 +10001693 free(tmp);
Damien Miller757f34e2010-08-05 13:05:31 +10001694
Damien Miller0a80ca12010-02-27 07:55:05 +11001695 for (i = 0; i < argc; i++) {
1696 /* Split list of principals */
1697 n = 0;
1698 if (cert_principals != NULL) {
1699 otmp = tmp = xstrdup(cert_principals);
1700 plist = NULL;
1701 for (; (cp = strsep(&tmp, ",")) != NULL; n++) {
1702 plist = xrealloc(plist, n + 1, sizeof(*plist));
1703 if (*(plist[n] = xstrdup(cp)) == '\0')
1704 fatal("Empty principal name");
1705 }
Darren Tuckera627d422013-06-02 07:31:17 +10001706 free(otmp);
Damien Miller0a80ca12010-02-27 07:55:05 +11001707 }
1708
1709 tmp = tilde_expand_filename(argv[i], pw->pw_uid);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001710 if ((r = sshkey_load_public(tmp, &public, &comment)) != 0)
1711 fatal("%s: unable to open \"%s\": %s",
1712 __func__, tmp, ssh_err(r));
Damien Millereb8b60e2010-08-31 22:41:14 +10001713 if (public->type != KEY_RSA && public->type != KEY_DSA &&
Damien Miller5be9d9e2013-12-07 11:24:01 +11001714 public->type != KEY_ECDSA && public->type != KEY_ED25519)
Damien Miller0a80ca12010-02-27 07:55:05 +11001715 fatal("%s: key \"%s\" type %s cannot be certified",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001716 __func__, tmp, sshkey_type(public));
Damien Miller0a80ca12010-02-27 07:55:05 +11001717
1718 /* Prepare certificate to sign */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001719 if ((r = sshkey_to_certified(public, v00)) != 0)
1720 fatal("Could not upgrade key %s to certificate: %s",
1721 tmp, ssh_err(r));
Damien Miller0a80ca12010-02-27 07:55:05 +11001722 public->cert->type = cert_key_type;
Damien Miller4e270b02010-04-16 15:56:21 +10001723 public->cert->serial = (u_int64_t)cert_serial;
Damien Miller0a80ca12010-02-27 07:55:05 +11001724 public->cert->key_id = xstrdup(cert_key_id);
1725 public->cert->nprincipals = n;
1726 public->cert->principals = plist;
1727 public->cert->valid_after = cert_valid_from;
1728 public->cert->valid_before = cert_valid_to;
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001729 if (v00) {
Damien Miller86687062014-07-02 15:28:02 +10001730 prepare_options_buf(public->cert->critical,
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001731 OPTIONS_CRITICAL|OPTIONS_EXTENSIONS);
1732 } else {
Damien Miller86687062014-07-02 15:28:02 +10001733 prepare_options_buf(public->cert->critical,
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001734 OPTIONS_CRITICAL);
Damien Miller86687062014-07-02 15:28:02 +10001735 prepare_options_buf(public->cert->extensions,
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001736 OPTIONS_EXTENSIONS);
1737 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001738 if ((r = sshkey_from_private(ca,
1739 &public->cert->signature_key)) != 0)
1740 fatal("key_from_private (ca key): %s", ssh_err(r));
Damien Miller0a80ca12010-02-27 07:55:05 +11001741
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001742 if (sshkey_certify(public, ca) != 0)
Damien Miller0a80ca12010-02-27 07:55:05 +11001743 fatal("Couldn't not certify key %s", tmp);
1744
1745 if ((cp = strrchr(tmp, '.')) != NULL && strcmp(cp, ".pub") == 0)
1746 *cp = '\0';
1747 xasprintf(&out, "%s-cert.pub", tmp);
Darren Tuckera627d422013-06-02 07:31:17 +10001748 free(tmp);
Damien Miller0a80ca12010-02-27 07:55:05 +11001749
1750 if ((fd = open(out, O_WRONLY|O_CREAT|O_TRUNC, 0644)) == -1)
1751 fatal("Could not open \"%s\" for writing: %s", out,
1752 strerror(errno));
1753 if ((f = fdopen(fd, "w")) == NULL)
1754 fatal("%s: fdopen: %s", __func__, strerror(errno));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001755 if ((r = sshkey_write(public, f)) != 0)
1756 fatal("Could not write certified key to %s: %s",
1757 out, ssh_err(r));
Damien Miller0a80ca12010-02-27 07:55:05 +11001758 fprintf(f, " %s\n", comment);
1759 fclose(f);
1760
Damien Miller4e270b02010-04-16 15:56:21 +10001761 if (!quiet) {
1762 logit("Signed %s key %s: id \"%s\" serial %llu%s%s "
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001763 "valid %s", sshkey_cert_type(public),
Damien Miller821de0a2011-01-11 17:20:29 +11001764 out, public->cert->key_id,
1765 (unsigned long long)public->cert->serial,
Damien Miller0a80ca12010-02-27 07:55:05 +11001766 cert_principals != NULL ? " for " : "",
1767 cert_principals != NULL ? cert_principals : "",
Damien Millerf2b70ca2010-03-05 07:39:35 +11001768 fmt_validity(cert_valid_from, cert_valid_to));
Damien Miller4e270b02010-04-16 15:56:21 +10001769 }
Damien Miller0a80ca12010-02-27 07:55:05 +11001770
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001771 sshkey_free(public);
Darren Tuckera627d422013-06-02 07:31:17 +10001772 free(out);
Damien Miller0a80ca12010-02-27 07:55:05 +11001773 }
Damien Miller1f0311c2014-05-15 14:24:09 +10001774#ifdef ENABLE_PKCS11
Damien Miller757f34e2010-08-05 13:05:31 +10001775 pkcs11_terminate();
Damien Miller1f0311c2014-05-15 14:24:09 +10001776#endif
Damien Miller0a80ca12010-02-27 07:55:05 +11001777 exit(0);
1778}
1779
1780static u_int64_t
1781parse_relative_time(const char *s, time_t now)
1782{
1783 int64_t mul, secs;
1784
1785 mul = *s == '-' ? -1 : 1;
1786
1787 if ((secs = convtime(s + 1)) == -1)
1788 fatal("Invalid relative certificate time %s", s);
1789 if (mul == -1 && secs > now)
1790 fatal("Certificate time %s cannot be represented", s);
1791 return now + (u_int64_t)(secs * mul);
1792}
1793
1794static u_int64_t
1795parse_absolute_time(const char *s)
1796{
1797 struct tm tm;
1798 time_t tt;
Damien Miller2ca342b2010-03-03 12:14:15 +11001799 char buf[32], *fmt;
Damien Miller0a80ca12010-02-27 07:55:05 +11001800
Damien Miller2ca342b2010-03-03 12:14:15 +11001801 /*
1802 * POSIX strptime says "The application shall ensure that there
1803 * is white-space or other non-alphanumeric characters between
1804 * any two conversion specifications" so arrange things this way.
1805 */
1806 switch (strlen(s)) {
1807 case 8:
Damien Miller3e1ee492010-03-08 09:24:11 +11001808 fmt = "%Y-%m-%d";
1809 snprintf(buf, sizeof(buf), "%.4s-%.2s-%.2s", s, s + 4, s + 6);
Damien Miller2ca342b2010-03-03 12:14:15 +11001810 break;
1811 case 14:
Damien Miller3e1ee492010-03-08 09:24:11 +11001812 fmt = "%Y-%m-%dT%H:%M:%S";
1813 snprintf(buf, sizeof(buf), "%.4s-%.2s-%.2sT%.2s:%.2s:%.2s",
Damien Miller2ca342b2010-03-03 12:14:15 +11001814 s, s + 4, s + 6, s + 8, s + 10, s + 12);
1815 break;
1816 default:
Damien Miller0a80ca12010-02-27 07:55:05 +11001817 fatal("Invalid certificate time format %s", s);
Damien Miller2ca342b2010-03-03 12:14:15 +11001818 }
Damien Miller0a80ca12010-02-27 07:55:05 +11001819
Damien Miller1d2c4562014-02-04 11:18:20 +11001820 memset(&tm, 0, sizeof(tm));
Damien Miller2ca342b2010-03-03 12:14:15 +11001821 if (strptime(buf, fmt, &tm) == NULL)
Damien Miller0a80ca12010-02-27 07:55:05 +11001822 fatal("Invalid certificate time %s", s);
1823 if ((tt = mktime(&tm)) < 0)
1824 fatal("Certificate time %s cannot be represented", s);
1825 return (u_int64_t)tt;
1826}
1827
1828static void
1829parse_cert_times(char *timespec)
1830{
1831 char *from, *to;
1832 time_t now = time(NULL);
1833 int64_t secs;
1834
1835 /* +timespec relative to now */
1836 if (*timespec == '+' && strchr(timespec, ':') == NULL) {
1837 if ((secs = convtime(timespec + 1)) == -1)
1838 fatal("Invalid relative certificate life %s", timespec);
1839 cert_valid_to = now + secs;
1840 /*
1841 * Backdate certificate one minute to avoid problems on hosts
1842 * with poorly-synchronised clocks.
1843 */
1844 cert_valid_from = ((now - 59)/ 60) * 60;
1845 return;
1846 }
1847
1848 /*
1849 * from:to, where
1850 * from := [+-]timespec | YYYYMMDD | YYYYMMDDHHMMSS
1851 * to := [+-]timespec | YYYYMMDD | YYYYMMDDHHMMSS
1852 */
1853 from = xstrdup(timespec);
1854 to = strchr(from, ':');
1855 if (to == NULL || from == to || *(to + 1) == '\0')
Damien Miller910f2092010-03-04 14:17:22 +11001856 fatal("Invalid certificate life specification %s", timespec);
Damien Miller0a80ca12010-02-27 07:55:05 +11001857 *to++ = '\0';
1858
1859 if (*from == '-' || *from == '+')
1860 cert_valid_from = parse_relative_time(from, now);
1861 else
1862 cert_valid_from = parse_absolute_time(from);
1863
1864 if (*to == '-' || *to == '+')
Damien Miller5b01b0d2013-10-23 16:31:31 +11001865 cert_valid_to = parse_relative_time(to, now);
Damien Miller0a80ca12010-02-27 07:55:05 +11001866 else
1867 cert_valid_to = parse_absolute_time(to);
1868
1869 if (cert_valid_to <= cert_valid_from)
1870 fatal("Empty certificate validity interval");
Darren Tuckera627d422013-06-02 07:31:17 +10001871 free(from);
Damien Miller0a80ca12010-02-27 07:55:05 +11001872}
1873
1874static void
Damien Miller4e270b02010-04-16 15:56:21 +10001875add_cert_option(char *opt)
Damien Miller0a80ca12010-02-27 07:55:05 +11001876{
1877 char *val;
1878
Damien Miller044f4a62011-05-05 14:14:08 +10001879 if (strcasecmp(opt, "clear") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001880 certflags_flags = 0;
Damien Miller0a80ca12010-02-27 07:55:05 +11001881 else if (strcasecmp(opt, "no-x11-forwarding") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001882 certflags_flags &= ~CERTOPT_X_FWD;
Damien Miller0a80ca12010-02-27 07:55:05 +11001883 else if (strcasecmp(opt, "permit-x11-forwarding") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001884 certflags_flags |= CERTOPT_X_FWD;
Damien Miller0a80ca12010-02-27 07:55:05 +11001885 else if (strcasecmp(opt, "no-agent-forwarding") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001886 certflags_flags &= ~CERTOPT_AGENT_FWD;
Damien Miller0a80ca12010-02-27 07:55:05 +11001887 else if (strcasecmp(opt, "permit-agent-forwarding") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001888 certflags_flags |= CERTOPT_AGENT_FWD;
Damien Miller0a80ca12010-02-27 07:55:05 +11001889 else if (strcasecmp(opt, "no-port-forwarding") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001890 certflags_flags &= ~CERTOPT_PORT_FWD;
Damien Miller0a80ca12010-02-27 07:55:05 +11001891 else if (strcasecmp(opt, "permit-port-forwarding") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001892 certflags_flags |= CERTOPT_PORT_FWD;
Damien Miller0a80ca12010-02-27 07:55:05 +11001893 else if (strcasecmp(opt, "no-pty") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001894 certflags_flags &= ~CERTOPT_PTY;
Damien Miller0a80ca12010-02-27 07:55:05 +11001895 else if (strcasecmp(opt, "permit-pty") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001896 certflags_flags |= CERTOPT_PTY;
Damien Miller0a80ca12010-02-27 07:55:05 +11001897 else if (strcasecmp(opt, "no-user-rc") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001898 certflags_flags &= ~CERTOPT_USER_RC;
Damien Miller0a80ca12010-02-27 07:55:05 +11001899 else if (strcasecmp(opt, "permit-user-rc") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001900 certflags_flags |= CERTOPT_USER_RC;
Damien Miller0a80ca12010-02-27 07:55:05 +11001901 else if (strncasecmp(opt, "force-command=", 14) == 0) {
1902 val = opt + 14;
1903 if (*val == '\0')
Damien Miller4e270b02010-04-16 15:56:21 +10001904 fatal("Empty force-command option");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001905 if (certflags_command != NULL)
Damien Miller0a80ca12010-02-27 07:55:05 +11001906 fatal("force-command already specified");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001907 certflags_command = xstrdup(val);
Damien Miller0a80ca12010-02-27 07:55:05 +11001908 } else if (strncasecmp(opt, "source-address=", 15) == 0) {
1909 val = opt + 15;
1910 if (*val == '\0')
Damien Miller4e270b02010-04-16 15:56:21 +10001911 fatal("Empty source-address option");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001912 if (certflags_src_addr != NULL)
Damien Miller0a80ca12010-02-27 07:55:05 +11001913 fatal("source-address already specified");
1914 if (addr_match_cidr_list(NULL, val) != 0)
1915 fatal("Invalid source-address list");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001916 certflags_src_addr = xstrdup(val);
Damien Miller0a80ca12010-02-27 07:55:05 +11001917 } else
Damien Miller4e270b02010-04-16 15:56:21 +10001918 fatal("Unsupported certificate option \"%s\"", opt);
Damien Miller0a80ca12010-02-27 07:55:05 +11001919}
1920
Ben Lindstrombba81212001-06-25 05:01:22 +00001921static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001922show_options(struct sshbuf *optbuf, int v00, int in_critical)
Damien Millerd834d352010-06-26 09:48:02 +10001923{
Damien Miller633de332014-05-15 13:48:26 +10001924 char *name, *arg;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001925 struct sshbuf *options, *option = NULL;
1926 int r;
Damien Millerd834d352010-06-26 09:48:02 +10001927
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001928 if ((options = sshbuf_fromb(optbuf)) == NULL)
1929 fatal("%s: sshbuf_fromb failed", __func__);
1930 while (sshbuf_len(options) != 0) {
1931 sshbuf_free(option);
1932 option = NULL;
1933 if ((r = sshbuf_get_cstring(options, &name, NULL)) != 0 ||
1934 (r = sshbuf_froms(options, &option)) != 0)
1935 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Millerd834d352010-06-26 09:48:02 +10001936 printf(" %s", name);
1937 if ((v00 || !in_critical) &&
1938 (strcmp(name, "permit-X11-forwarding") == 0 ||
1939 strcmp(name, "permit-agent-forwarding") == 0 ||
1940 strcmp(name, "permit-port-forwarding") == 0 ||
1941 strcmp(name, "permit-pty") == 0 ||
1942 strcmp(name, "permit-user-rc") == 0))
1943 printf("\n");
1944 else if ((v00 || in_critical) &&
1945 (strcmp(name, "force-command") == 0 ||
1946 strcmp(name, "source-address") == 0)) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001947 if ((r = sshbuf_get_cstring(option, &arg, NULL)) != 0)
1948 fatal("%s: buffer error: %s",
1949 __func__, ssh_err(r));
Damien Miller633de332014-05-15 13:48:26 +10001950 printf(" %s\n", arg);
1951 free(arg);
Damien Millerd834d352010-06-26 09:48:02 +10001952 } else {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001953 printf(" UNKNOWN OPTION (len %zu)\n",
1954 sshbuf_len(option));
1955 sshbuf_reset(option);
Damien Millerd834d352010-06-26 09:48:02 +10001956 }
Darren Tuckera627d422013-06-02 07:31:17 +10001957 free(name);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001958 if (sshbuf_len(option) != 0)
Damien Millerd834d352010-06-26 09:48:02 +10001959 fatal("Option corrupt: extra data at end");
1960 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001961 sshbuf_free(option);
1962 sshbuf_free(options);
Damien Millerd834d352010-06-26 09:48:02 +10001963}
1964
1965static void
Damien Millerf2b70ca2010-03-05 07:39:35 +11001966do_show_cert(struct passwd *pw)
1967{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001968 struct sshkey *key;
Damien Millerf2b70ca2010-03-05 07:39:35 +11001969 struct stat st;
1970 char *key_fp, *ca_fp;
Damien Millerd834d352010-06-26 09:48:02 +10001971 u_int i, v00;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001972 int r;
Damien Millerf2b70ca2010-03-05 07:39:35 +11001973
1974 if (!have_identity)
1975 ask_filename(pw, "Enter file in which the key is");
Damien Millerba3420a2010-06-26 09:39:07 +10001976 if (stat(identity_file, &st) < 0)
1977 fatal("%s: %s: %s", __progname, identity_file, strerror(errno));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001978 if ((r = sshkey_load_public(identity_file, &key, NULL)) != 0)
1979 fatal("Cannot load public key \"%s\": %s",
1980 identity_file, ssh_err(r));
1981 if (!sshkey_is_cert(key))
Damien Millerf2b70ca2010-03-05 07:39:35 +11001982 fatal("%s is not a certificate", identity_file);
Damien Miller4e270b02010-04-16 15:56:21 +10001983 v00 = key->type == KEY_RSA_CERT_V00 || key->type == KEY_DSA_CERT_V00;
1984
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001985 key_fp = sshkey_fingerprint(key, fingerprint_hash, SSH_FP_DEFAULT);
1986 ca_fp = sshkey_fingerprint(key->cert->signature_key,
djm@openbsd.org56d1c832014-12-21 22:27:55 +00001987 fingerprint_hash, SSH_FP_DEFAULT);
Damien Millerf2b70ca2010-03-05 07:39:35 +11001988
1989 printf("%s:\n", identity_file);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001990 printf(" Type: %s %s certificate\n", sshkey_ssh_name(key),
1991 sshkey_cert_type(key));
1992 printf(" Public key: %s %s\n", sshkey_type(key), key_fp);
Damien Miller4e270b02010-04-16 15:56:21 +10001993 printf(" Signing CA: %s %s\n",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001994 sshkey_type(key->cert->signature_key), ca_fp);
Damien Miller4e270b02010-04-16 15:56:21 +10001995 printf(" Key ID: \"%s\"\n", key->cert->key_id);
Damien Miller821de0a2011-01-11 17:20:29 +11001996 if (!v00) {
1997 printf(" Serial: %llu\n",
1998 (unsigned long long)key->cert->serial);
1999 }
Damien Millerf2b70ca2010-03-05 07:39:35 +11002000 printf(" Valid: %s\n",
2001 fmt_validity(key->cert->valid_after, key->cert->valid_before));
2002 printf(" Principals: ");
2003 if (key->cert->nprincipals == 0)
2004 printf("(none)\n");
2005 else {
2006 for (i = 0; i < key->cert->nprincipals; i++)
2007 printf("\n %s",
2008 key->cert->principals[i]);
2009 printf("\n");
2010 }
Damien Miller4e270b02010-04-16 15:56:21 +10002011 printf(" Critical Options: ");
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002012 if (sshbuf_len(key->cert->critical) == 0)
Damien Millerf2b70ca2010-03-05 07:39:35 +11002013 printf("(none)\n");
2014 else {
2015 printf("\n");
Damien Miller86687062014-07-02 15:28:02 +10002016 show_options(key->cert->critical, v00, 1);
Damien Millerf2b70ca2010-03-05 07:39:35 +11002017 }
Damien Miller4e270b02010-04-16 15:56:21 +10002018 if (!v00) {
2019 printf(" Extensions: ");
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002020 if (sshbuf_len(key->cert->extensions) == 0)
Damien Miller4e270b02010-04-16 15:56:21 +10002021 printf("(none)\n");
2022 else {
2023 printf("\n");
Damien Miller86687062014-07-02 15:28:02 +10002024 show_options(key->cert->extensions, v00, 0);
Damien Miller4e270b02010-04-16 15:56:21 +10002025 }
2026 }
Damien Millerf2b70ca2010-03-05 07:39:35 +11002027 exit(0);
2028}
2029
2030static void
Damien Millerf3747bf2013-01-18 11:44:04 +11002031load_krl(const char *path, struct ssh_krl **krlp)
2032{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002033 struct sshbuf *krlbuf;
2034 int r, fd;
Damien Millerf3747bf2013-01-18 11:44:04 +11002035
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002036 if ((krlbuf = sshbuf_new()) == NULL)
2037 fatal("sshbuf_new failed");
Damien Millerf3747bf2013-01-18 11:44:04 +11002038 if ((fd = open(path, O_RDONLY)) == -1)
2039 fatal("open %s: %s", path, strerror(errno));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002040 if ((r = sshkey_load_file(fd, krlbuf)) != 0)
2041 fatal("Unable to load KRL: %s", ssh_err(r));
Damien Millerf3747bf2013-01-18 11:44:04 +11002042 close(fd);
2043 /* XXX check sigs */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002044 if ((r = ssh_krl_from_blob(krlbuf, krlp, NULL, 0)) != 0 ||
Damien Millerf3747bf2013-01-18 11:44:04 +11002045 *krlp == NULL)
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002046 fatal("Invalid KRL file: %s", ssh_err(r));
2047 sshbuf_free(krlbuf);
Damien Millerf3747bf2013-01-18 11:44:04 +11002048}
2049
2050static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002051update_krl_from_file(struct passwd *pw, const char *file,
2052 const struct sshkey *ca, struct ssh_krl *krl)
Damien Millerf3747bf2013-01-18 11:44:04 +11002053{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002054 struct sshkey *key = NULL;
Damien Millerf3747bf2013-01-18 11:44:04 +11002055 u_long lnum = 0;
2056 char *path, *cp, *ep, line[SSH_MAX_PUBKEY_BYTES];
2057 unsigned long long serial, serial2;
2058 int i, was_explicit_key, was_sha1, r;
2059 FILE *krl_spec;
2060
2061 path = tilde_expand_filename(file, pw->pw_uid);
2062 if (strcmp(path, "-") == 0) {
2063 krl_spec = stdin;
2064 free(path);
2065 path = xstrdup("(standard input)");
2066 } else if ((krl_spec = fopen(path, "r")) == NULL)
2067 fatal("fopen %s: %s", path, strerror(errno));
2068
2069 if (!quiet)
2070 printf("Revoking from %s\n", path);
2071 while (read_keyfile_line(krl_spec, path, line, sizeof(line),
2072 &lnum) == 0) {
2073 was_explicit_key = was_sha1 = 0;
2074 cp = line + strspn(line, " \t");
2075 /* Trim trailing space, comments and strip \n */
2076 for (i = 0, r = -1; cp[i] != '\0'; i++) {
2077 if (cp[i] == '#' || cp[i] == '\n') {
2078 cp[i] = '\0';
2079 break;
2080 }
2081 if (cp[i] == ' ' || cp[i] == '\t') {
2082 /* Remember the start of a span of whitespace */
2083 if (r == -1)
2084 r = i;
2085 } else
2086 r = -1;
2087 }
2088 if (r != -1)
2089 cp[r] = '\0';
2090 if (*cp == '\0')
2091 continue;
2092 if (strncasecmp(cp, "serial:", 7) == 0) {
2093 if (ca == NULL) {
Damien Millerd234afb2013-08-21 02:42:58 +10002094 fatal("revoking certificates by serial number "
Damien Millerf3747bf2013-01-18 11:44:04 +11002095 "requires specification of a CA key");
2096 }
2097 cp += 7;
2098 cp = cp + strspn(cp, " \t");
2099 errno = 0;
2100 serial = strtoull(cp, &ep, 0);
2101 if (*cp == '\0' || (*ep != '\0' && *ep != '-'))
2102 fatal("%s:%lu: invalid serial \"%s\"",
2103 path, lnum, cp);
2104 if (errno == ERANGE && serial == ULLONG_MAX)
2105 fatal("%s:%lu: serial out of range",
2106 path, lnum);
2107 serial2 = serial;
2108 if (*ep == '-') {
2109 cp = ep + 1;
2110 errno = 0;
2111 serial2 = strtoull(cp, &ep, 0);
2112 if (*cp == '\0' || *ep != '\0')
2113 fatal("%s:%lu: invalid serial \"%s\"",
2114 path, lnum, cp);
2115 if (errno == ERANGE && serial2 == ULLONG_MAX)
2116 fatal("%s:%lu: serial out of range",
2117 path, lnum);
2118 if (serial2 <= serial)
2119 fatal("%s:%lu: invalid serial range "
2120 "%llu:%llu", path, lnum,
2121 (unsigned long long)serial,
2122 (unsigned long long)serial2);
2123 }
2124 if (ssh_krl_revoke_cert_by_serial_range(krl,
2125 ca, serial, serial2) != 0) {
2126 fatal("%s: revoke serial failed",
2127 __func__);
2128 }
2129 } else if (strncasecmp(cp, "id:", 3) == 0) {
2130 if (ca == NULL) {
Damien Millerd5d9d7b2013-08-21 02:43:27 +10002131 fatal("revoking certificates by key ID "
Damien Millerf3747bf2013-01-18 11:44:04 +11002132 "requires specification of a CA key");
2133 }
2134 cp += 3;
2135 cp = cp + strspn(cp, " \t");
2136 if (ssh_krl_revoke_cert_by_key_id(krl, ca, cp) != 0)
2137 fatal("%s: revoke key ID failed", __func__);
2138 } else {
2139 if (strncasecmp(cp, "key:", 4) == 0) {
2140 cp += 4;
2141 cp = cp + strspn(cp, " \t");
2142 was_explicit_key = 1;
2143 } else if (strncasecmp(cp, "sha1:", 5) == 0) {
2144 cp += 5;
2145 cp = cp + strspn(cp, " \t");
2146 was_sha1 = 1;
2147 } else {
2148 /*
2149 * Just try to process the line as a key.
2150 * Parsing will fail if it isn't.
2151 */
2152 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002153 if ((key = sshkey_new(KEY_UNSPEC)) == NULL)
Damien Millerf3747bf2013-01-18 11:44:04 +11002154 fatal("key_new");
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002155 if ((r = sshkey_read(key, &cp)) != 0)
2156 fatal("%s:%lu: invalid key: %s",
2157 path, lnum, ssh_err(r));
Damien Millerf3747bf2013-01-18 11:44:04 +11002158 if (was_explicit_key)
2159 r = ssh_krl_revoke_key_explicit(krl, key);
2160 else if (was_sha1)
2161 r = ssh_krl_revoke_key_sha1(krl, key);
2162 else
2163 r = ssh_krl_revoke_key(krl, key);
2164 if (r != 0)
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002165 fatal("%s: revoke key failed: %s",
2166 __func__, ssh_err(r));
2167 sshkey_free(key);
Damien Millerf3747bf2013-01-18 11:44:04 +11002168 }
2169 }
2170 if (strcmp(path, "-") != 0)
2171 fclose(krl_spec);
Damien Miller0d6771b2013-04-23 15:23:24 +10002172 free(path);
Damien Millerf3747bf2013-01-18 11:44:04 +11002173}
2174
2175static void
2176do_gen_krl(struct passwd *pw, int updating, int argc, char **argv)
2177{
2178 struct ssh_krl *krl;
2179 struct stat sb;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002180 struct sshkey *ca = NULL;
2181 int fd, i, r;
Damien Millerf3747bf2013-01-18 11:44:04 +11002182 char *tmp;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002183 struct sshbuf *kbuf;
Damien Millerf3747bf2013-01-18 11:44:04 +11002184
2185 if (*identity_file == '\0')
2186 fatal("KRL generation requires an output file");
2187 if (stat(identity_file, &sb) == -1) {
2188 if (errno != ENOENT)
2189 fatal("Cannot access KRL \"%s\": %s",
2190 identity_file, strerror(errno));
2191 if (updating)
2192 fatal("KRL \"%s\" does not exist", identity_file);
2193 }
2194 if (ca_key_path != NULL) {
2195 tmp = tilde_expand_filename(ca_key_path, pw->pw_uid);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002196 if ((r = sshkey_load_public(tmp, &ca, NULL)) != 0)
2197 fatal("Cannot load CA public key %s: %s",
2198 tmp, ssh_err(r));
Darren Tuckera627d422013-06-02 07:31:17 +10002199 free(tmp);
Damien Millerf3747bf2013-01-18 11:44:04 +11002200 }
2201
2202 if (updating)
2203 load_krl(identity_file, &krl);
2204 else if ((krl = ssh_krl_init()) == NULL)
2205 fatal("couldn't create KRL");
2206
2207 if (cert_serial != 0)
2208 ssh_krl_set_version(krl, cert_serial);
2209 if (identity_comment != NULL)
2210 ssh_krl_set_comment(krl, identity_comment);
2211
2212 for (i = 0; i < argc; i++)
2213 update_krl_from_file(pw, argv[i], ca, krl);
2214
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002215 if ((kbuf = sshbuf_new()) == NULL)
2216 fatal("sshbuf_new failed");
2217 if (ssh_krl_to_blob(krl, kbuf, NULL, 0) != 0)
Damien Millerf3747bf2013-01-18 11:44:04 +11002218 fatal("Couldn't generate KRL");
2219 if ((fd = open(identity_file, O_WRONLY|O_CREAT|O_TRUNC, 0644)) == -1)
2220 fatal("open %s: %s", identity_file, strerror(errno));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002221 if (atomicio(vwrite, fd, (void *)sshbuf_ptr(kbuf), sshbuf_len(kbuf)) !=
2222 sshbuf_len(kbuf))
Damien Millerf3747bf2013-01-18 11:44:04 +11002223 fatal("write %s: %s", identity_file, strerror(errno));
2224 close(fd);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002225 sshbuf_free(kbuf);
Damien Millerf3747bf2013-01-18 11:44:04 +11002226 ssh_krl_free(krl);
Damien Miller0d6771b2013-04-23 15:23:24 +10002227 if (ca != NULL)
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002228 sshkey_free(ca);
Damien Millerf3747bf2013-01-18 11:44:04 +11002229}
2230
2231static void
2232do_check_krl(struct passwd *pw, int argc, char **argv)
2233{
2234 int i, r, ret = 0;
2235 char *comment;
2236 struct ssh_krl *krl;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002237 struct sshkey *k;
Damien Millerf3747bf2013-01-18 11:44:04 +11002238
2239 if (*identity_file == '\0')
2240 fatal("KRL checking requires an input file");
2241 load_krl(identity_file, &krl);
2242 for (i = 0; i < argc; i++) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002243 if ((r = sshkey_load_public(argv[i], &k, &comment)) != 0)
2244 fatal("Cannot load public key %s: %s",
2245 argv[i], ssh_err(r));
Damien Millerf3747bf2013-01-18 11:44:04 +11002246 r = ssh_krl_check_key(krl, k);
2247 printf("%s%s%s%s: %s\n", argv[i],
2248 *comment ? " (" : "", comment, *comment ? ")" : "",
2249 r == 0 ? "ok" : "REVOKED");
2250 if (r != 0)
2251 ret = 1;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002252 sshkey_free(k);
Damien Millerf3747bf2013-01-18 11:44:04 +11002253 free(comment);
2254 }
2255 ssh_krl_free(krl);
2256 exit(ret);
2257}
2258
2259static void
Damien Miller431f66b1999-11-21 18:31:57 +11002260usage(void)
2261{
Damien Millerf0858de2014-04-20 13:01:30 +10002262 fprintf(stderr,
2263 "usage: ssh-keygen [-q] [-b bits] [-t dsa | ecdsa | ed25519 | rsa | rsa1]\n"
2264 " [-N new_passphrase] [-C comment] [-f output_keyfile]\n"
2265 " ssh-keygen -p [-P old_passphrase] [-N new_passphrase] [-f keyfile]\n"
2266 " ssh-keygen -i [-m key_format] [-f input_keyfile]\n"
2267 " ssh-keygen -e [-m key_format] [-f input_keyfile]\n"
2268 " ssh-keygen -y [-f input_keyfile]\n"
2269 " ssh-keygen -c [-P passphrase] [-C comment] [-f keyfile]\n"
djm@openbsd.org56d1c832014-12-21 22:27:55 +00002270 " ssh-keygen -l [-E fingerprint_hash] [-f input_keyfile]\n"
Damien Millerf0858de2014-04-20 13:01:30 +10002271 " ssh-keygen -B [-f input_keyfile]\n");
Damien Miller7ea845e2010-02-12 09:21:02 +11002272#ifdef ENABLE_PKCS11
Damien Millerf0858de2014-04-20 13:01:30 +10002273 fprintf(stderr,
2274 " ssh-keygen -D pkcs11\n");
Damien Miller7ea845e2010-02-12 09:21:02 +11002275#endif
Damien Millerf0858de2014-04-20 13:01:30 +10002276 fprintf(stderr,
2277 " ssh-keygen -F hostname [-f known_hosts_file] [-l]\n"
2278 " ssh-keygen -H [-f known_hosts_file]\n"
2279 " ssh-keygen -R hostname [-f known_hosts_file]\n"
2280 " ssh-keygen -r hostname [-f input_keyfile] [-g]\n"
2281 " ssh-keygen -G output_file [-v] [-b bits] [-M memory] [-S start_point]\n"
2282 " ssh-keygen -T output_file -f input_file [-v] [-a rounds] [-J num_lines]\n"
2283 " [-j start_line] [-K checkpt] [-W generator]\n"
2284 " ssh-keygen -s ca_key -I certificate_identity [-h] [-n principals]\n"
2285 " [-O option] [-V validity_interval] [-z serial_number] file ...\n"
2286 " ssh-keygen -L [-f input_keyfile]\n"
2287 " ssh-keygen -A\n"
2288 " ssh-keygen -k -f krl_file [-u] [-s ca_public] [-z version_number]\n"
2289 " file ...\n"
2290 " ssh-keygen -Q -f krl_file file ...\n");
Damien Miller95def091999-11-25 00:26:21 +11002291 exit(1);
Damien Miller431f66b1999-11-21 18:31:57 +11002292}
2293
Damien Miller95def091999-11-25 00:26:21 +11002294/*
2295 * Main program for key management.
2296 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002297int
Damien Millerdf8b7db2007-01-05 16:22:57 +11002298main(int argc, char **argv)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002299{
deraadt@openbsd.org2ae4f332015-01-16 06:40:12 +00002300 char dotsshdir[PATH_MAX], comment[1024], *passphrase1, *passphrase2;
Damien Miller390d0562011-10-18 16:05:19 +11002301 char *checkpoint = NULL;
deraadt@openbsd.org2ae4f332015-01-16 06:40:12 +00002302 char out_file[PATH_MAX], *rr_hostname = NULL, *ep;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002303 struct sshkey *private, *public;
Damien Miller95def091999-11-25 00:26:21 +11002304 struct passwd *pw;
Damien Miller95def091999-11-25 00:26:21 +11002305 struct stat st;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002306 int r, opt, type, fd;
Damien Millerbcd00ab2013-12-07 10:41:55 +11002307 u_int32_t memory = 0, generator_wanted = 0;
Darren Tucker019cefe2003-08-02 22:40:07 +10002308 int do_gen_candidates = 0, do_screen_candidates = 0;
Damien Millerf3747bf2013-01-18 11:44:04 +11002309 int gen_all_hostkeys = 0, gen_krl = 0, update_krl = 0, check_krl = 0;
Damien Millerdfceafe2012-07-06 13:44:19 +10002310 unsigned long start_lineno = 0, lines_to_process = 0;
Darren Tucker019cefe2003-08-02 22:40:07 +10002311 BIGNUM *start = NULL;
Damien Miller95def091999-11-25 00:26:21 +11002312 FILE *f;
Damien Miller02e754f2005-05-26 12:19:39 +10002313 const char *errstr;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002314
Damien Miller95def091999-11-25 00:26:21 +11002315 extern int optind;
2316 extern char *optarg;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002317
Darren Tuckerce321d82005-10-03 18:11:24 +10002318 /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
2319 sanitise_stdfd();
2320
Darren Tucker9ac56e92007-01-14 10:19:59 +11002321 __progname = ssh_get_progname(argv[0]);
Damien Millerf9b625c2000-07-09 22:42:32 +10002322
Damien Miller72ef7c12015-01-15 02:21:31 +11002323#ifdef WITH_OPENSSL
Damien Miller4314c2b2010-09-10 11:12:09 +10002324 OpenSSL_add_all_algorithms();
Damien Miller72ef7c12015-01-15 02:21:31 +11002325#endif
Damien Millerdf8b7db2007-01-05 16:22:57 +11002326 log_init(argv[0], SYSLOG_LEVEL_INFO, SYSLOG_FACILITY_USER, 1);
Darren Tucker019cefe2003-08-02 22:40:07 +10002327
Kevin Steves3a881912002-07-20 19:05:40 +00002328 seed_rng();
Damien Millereba71ba2000-04-29 23:57:08 +10002329
Damien Miller5428f641999-11-25 11:54:57 +11002330 /* we need this for the home * directory. */
Damien Miller95def091999-11-25 00:26:21 +11002331 pw = getpwuid(getuid());
2332 if (!pw) {
Damien Miller3009d3c2013-07-20 13:22:31 +10002333 printf("No user exists for uid %lu\n", (u_long)getuid());
Damien Miller95def091999-11-25 00:26:21 +11002334 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002335 }
Damien Millereba71ba2000-04-29 23:57:08 +10002336 if (gethostname(hostname, sizeof(hostname)) < 0) {
2337 perror("gethostname");
2338 exit(1);
2339 }
Damien Miller5428f641999-11-25 11:54:57 +11002340
djm@openbsd.org56d1c832014-12-21 22:27:55 +00002341 /* Remaining characters: UYdw */
Damien Millerbcd00ab2013-12-07 10:41:55 +11002342 while ((opt = getopt(argc, argv, "ABHLQXceghiklopquvxy"
djm@openbsd.org56d1c832014-12-21 22:27:55 +00002343 "C:D:E:F:G:I:J:K:M:N:O:P:R:S:T:V:W:Z:"
2344 "a:b:f:g:j:m:n:r:s:t:z:")) != -1) {
Damien Miller95def091999-11-25 00:26:21 +11002345 switch (opt) {
Damien Miller58f1baf2011-05-05 14:06:15 +10002346 case 'A':
2347 gen_all_hostkeys = 1;
2348 break;
Damien Miller95def091999-11-25 00:26:21 +11002349 case 'b':
Damien Miller57737942010-09-10 11:16:37 +10002350 bits = (u_int32_t)strtonum(optarg, 256, 32768, &errstr);
Damien Miller02e754f2005-05-26 12:19:39 +10002351 if (errstr)
2352 fatal("Bits has bad value %s (%s)",
2353 optarg, errstr);
Damien Miller95def091999-11-25 00:26:21 +11002354 break;
djm@openbsd.org56d1c832014-12-21 22:27:55 +00002355 case 'E':
2356 fingerprint_hash = ssh_digest_alg_by_name(optarg);
2357 if (fingerprint_hash == -1)
2358 fatal("Invalid hash algorithm \"%s\"", optarg);
2359 break;
Damien Miller4b42d7f2005-03-01 21:48:35 +11002360 case 'F':
2361 find_host = 1;
2362 rr_hostname = optarg;
2363 break;
2364 case 'H':
2365 hash_hosts = 1;
2366 break;
Damien Miller0a80ca12010-02-27 07:55:05 +11002367 case 'I':
2368 cert_key_id = optarg;
2369 break;
Damien Millerdfceafe2012-07-06 13:44:19 +10002370 case 'J':
2371 lines_to_process = strtoul(optarg, NULL, 10);
2372 break;
2373 case 'j':
2374 start_lineno = strtoul(optarg, NULL, 10);
2375 break;
Damien Miller4b42d7f2005-03-01 21:48:35 +11002376 case 'R':
2377 delete_host = 1;
2378 rr_hostname = optarg;
2379 break;
Damien Millerf2b70ca2010-03-05 07:39:35 +11002380 case 'L':
2381 show_cert = 1;
2382 break;
Damien Miller95def091999-11-25 00:26:21 +11002383 case 'l':
2384 print_fingerprint = 1;
2385 break;
Ben Lindstrom8fd372b2001-03-12 03:02:17 +00002386 case 'B':
2387 print_bubblebabble = 1;
2388 break;
Damien Miller44b25042010-07-02 13:35:01 +10002389 case 'm':
2390 if (strcasecmp(optarg, "RFC4716") == 0 ||
2391 strcasecmp(optarg, "ssh2") == 0) {
2392 convert_format = FMT_RFC4716;
2393 break;
2394 }
2395 if (strcasecmp(optarg, "PKCS8") == 0) {
2396 convert_format = FMT_PKCS8;
2397 break;
2398 }
2399 if (strcasecmp(optarg, "PEM") == 0) {
2400 convert_format = FMT_PEM;
2401 break;
2402 }
2403 fatal("Unsupported conversion format \"%s\"", optarg);
Damien Miller0a80ca12010-02-27 07:55:05 +11002404 case 'n':
2405 cert_principals = optarg;
2406 break;
Damien Millerbcd00ab2013-12-07 10:41:55 +11002407 case 'o':
2408 use_new_format = 1;
2409 break;
Damien Miller95def091999-11-25 00:26:21 +11002410 case 'p':
2411 change_passphrase = 1;
2412 break;
Damien Miller95def091999-11-25 00:26:21 +11002413 case 'c':
2414 change_comment = 1;
2415 break;
Damien Miller95def091999-11-25 00:26:21 +11002416 case 'f':
Damien Millerb089fb52005-05-26 12:16:18 +10002417 if (strlcpy(identity_file, optarg, sizeof(identity_file)) >=
2418 sizeof(identity_file))
2419 fatal("Identity filename too long");
Damien Miller95def091999-11-25 00:26:21 +11002420 have_identity = 1;
2421 break;
Damien Miller37876e92003-05-15 10:19:46 +10002422 case 'g':
2423 print_generic = 1;
2424 break;
Damien Miller95def091999-11-25 00:26:21 +11002425 case 'P':
2426 identity_passphrase = optarg;
2427 break;
Damien Miller95def091999-11-25 00:26:21 +11002428 case 'N':
2429 identity_new_passphrase = optarg;
2430 break;
Damien Millerf3747bf2013-01-18 11:44:04 +11002431 case 'Q':
2432 check_krl = 1;
2433 break;
Damien Miller0a80ca12010-02-27 07:55:05 +11002434 case 'O':
Damien Miller4e270b02010-04-16 15:56:21 +10002435 add_cert_option(optarg);
Damien Miller0a80ca12010-02-27 07:55:05 +11002436 break;
Damien Millerbcd00ab2013-12-07 10:41:55 +11002437 case 'Z':
2438 new_format_cipher = optarg;
2439 break;
Damien Miller95def091999-11-25 00:26:21 +11002440 case 'C':
2441 identity_comment = optarg;
2442 break;
Damien Miller95def091999-11-25 00:26:21 +11002443 case 'q':
2444 quiet = 1;
2445 break;
Ben Lindstrom5a707822001-04-22 17:15:46 +00002446 case 'e':
Damien Millereba71ba2000-04-29 23:57:08 +10002447 case 'x':
Ben Lindstrom5a707822001-04-22 17:15:46 +00002448 /* export key */
Damien Miller44b25042010-07-02 13:35:01 +10002449 convert_to = 1;
Damien Millereba71ba2000-04-29 23:57:08 +10002450 break;
Damien Miller0a80ca12010-02-27 07:55:05 +11002451 case 'h':
2452 cert_key_type = SSH2_CERT_TYPE_HOST;
Damien Millerd0e4a8e2010-05-21 14:58:32 +10002453 certflags_flags = 0;
Damien Miller0a80ca12010-02-27 07:55:05 +11002454 break;
Damien Millerf3747bf2013-01-18 11:44:04 +11002455 case 'k':
2456 gen_krl = 1;
2457 break;
Ben Lindstrom5a707822001-04-22 17:15:46 +00002458 case 'i':
Damien Millereba71ba2000-04-29 23:57:08 +10002459 case 'X':
Ben Lindstrom5a707822001-04-22 17:15:46 +00002460 /* import key */
Damien Miller44b25042010-07-02 13:35:01 +10002461 convert_from = 1;
Damien Millereba71ba2000-04-29 23:57:08 +10002462 break;
Damien Millereba71ba2000-04-29 23:57:08 +10002463 case 'y':
2464 print_public = 1;
2465 break;
Damien Miller0a80ca12010-02-27 07:55:05 +11002466 case 's':
2467 ca_key_path = optarg;
2468 break;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002469 case 't':
2470 key_type_name = optarg;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002471 break;
Ben Lindstrom8282d6a2001-08-06 21:44:05 +00002472 case 'D':
Damien Miller7ea845e2010-02-12 09:21:02 +11002473 pkcs11provider = optarg;
Ben Lindstromcd392282001-07-04 03:44:03 +00002474 break;
Damien Millerf3747bf2013-01-18 11:44:04 +11002475 case 'u':
2476 update_krl = 1;
2477 break;
Darren Tucker06930c72003-12-31 11:34:51 +11002478 case 'v':
2479 if (log_level == SYSLOG_LEVEL_INFO)
2480 log_level = SYSLOG_LEVEL_DEBUG1;
2481 else {
Darren Tuckerfc959702004-07-17 16:12:08 +10002482 if (log_level >= SYSLOG_LEVEL_DEBUG1 &&
Darren Tucker06930c72003-12-31 11:34:51 +11002483 log_level < SYSLOG_LEVEL_DEBUG3)
2484 log_level++;
2485 }
2486 break;
Damien Miller37876e92003-05-15 10:19:46 +10002487 case 'r':
Damien Miller4b42d7f2005-03-01 21:48:35 +11002488 rr_hostname = optarg;
Damien Miller37876e92003-05-15 10:19:46 +10002489 break;
Darren Tucker019cefe2003-08-02 22:40:07 +10002490 case 'W':
Damien Miller5f340062006-03-26 14:27:57 +11002491 generator_wanted = (u_int32_t)strtonum(optarg, 1,
2492 UINT_MAX, &errstr);
Damien Millerb089fb52005-05-26 12:16:18 +10002493 if (errstr)
2494 fatal("Desired generator has bad value: %s (%s)",
2495 optarg, errstr);
Darren Tucker019cefe2003-08-02 22:40:07 +10002496 break;
2497 case 'a':
Damien Millerbcd00ab2013-12-07 10:41:55 +11002498 rounds = (int)strtonum(optarg, 1, INT_MAX, &errstr);
Damien Millerb089fb52005-05-26 12:16:18 +10002499 if (errstr)
Damien Millerbcd00ab2013-12-07 10:41:55 +11002500 fatal("Invalid number: %s (%s)",
Damien Millerb089fb52005-05-26 12:16:18 +10002501 optarg, errstr);
Darren Tucker019cefe2003-08-02 22:40:07 +10002502 break;
Damien Miller72ef7c12015-01-15 02:21:31 +11002503#ifdef WITH_OPENSSL
Darren Tucker019cefe2003-08-02 22:40:07 +10002504 case 'M':
Damien Miller5f340062006-03-26 14:27:57 +11002505 memory = (u_int32_t)strtonum(optarg, 1, UINT_MAX, &errstr);
Damien Miller4e270b02010-04-16 15:56:21 +10002506 if (errstr)
Damien Millerb089fb52005-05-26 12:16:18 +10002507 fatal("Memory limit is %s: %s", errstr, optarg);
Darren Tucker019cefe2003-08-02 22:40:07 +10002508 break;
2509 case 'G':
2510 do_gen_candidates = 1;
Damien Millerb089fb52005-05-26 12:16:18 +10002511 if (strlcpy(out_file, optarg, sizeof(out_file)) >=
2512 sizeof(out_file))
2513 fatal("Output filename too long");
Darren Tucker019cefe2003-08-02 22:40:07 +10002514 break;
2515 case 'T':
2516 do_screen_candidates = 1;
Damien Millerb089fb52005-05-26 12:16:18 +10002517 if (strlcpy(out_file, optarg, sizeof(out_file)) >=
2518 sizeof(out_file))
2519 fatal("Output filename too long");
Darren Tucker019cefe2003-08-02 22:40:07 +10002520 break;
Damien Miller390d0562011-10-18 16:05:19 +11002521 case 'K':
deraadt@openbsd.org2ae4f332015-01-16 06:40:12 +00002522 if (strlen(optarg) >= PATH_MAX)
Damien Miller390d0562011-10-18 16:05:19 +11002523 fatal("Checkpoint filename too long");
2524 checkpoint = xstrdup(optarg);
2525 break;
Darren Tucker019cefe2003-08-02 22:40:07 +10002526 case 'S':
2527 /* XXX - also compare length against bits */
2528 if (BN_hex2bn(&start, optarg) == 0)
2529 fatal("Invalid start point.");
2530 break;
Damien Miller72ef7c12015-01-15 02:21:31 +11002531#endif /* WITH_OPENSSL */
Damien Miller0a80ca12010-02-27 07:55:05 +11002532 case 'V':
2533 parse_cert_times(optarg);
2534 break;
Damien Miller4e270b02010-04-16 15:56:21 +10002535 case 'z':
Damien Miller6f3b3622012-11-14 19:04:33 +11002536 errno = 0;
2537 cert_serial = strtoull(optarg, &ep, 10);
2538 if (*optarg < '0' || *optarg > '9' || *ep != '\0' ||
2539 (errno == ERANGE && cert_serial == ULLONG_MAX))
2540 fatal("Invalid serial number \"%s\"", optarg);
Damien Miller4e270b02010-04-16 15:56:21 +10002541 break;
Damien Miller95def091999-11-25 00:26:21 +11002542 case '?':
2543 default:
2544 usage();
2545 }
2546 }
Darren Tucker06930c72003-12-31 11:34:51 +11002547
2548 /* reinit */
Damien Millerdf8b7db2007-01-05 16:22:57 +11002549 log_init(argv[0], log_level, SYSLOG_FACILITY_USER, 1);
Darren Tucker06930c72003-12-31 11:34:51 +11002550
Damien Miller0a80ca12010-02-27 07:55:05 +11002551 argv += optind;
2552 argc -= optind;
2553
2554 if (ca_key_path != NULL) {
Damien Millerf3747bf2013-01-18 11:44:04 +11002555 if (argc < 1 && !gen_krl) {
Damien Miller0a80ca12010-02-27 07:55:05 +11002556 printf("Too few arguments.\n");
2557 usage();
2558 }
Damien Millerf3747bf2013-01-18 11:44:04 +11002559 } else if (argc > 0 && !gen_krl && !check_krl) {
Damien Miller95def091999-11-25 00:26:21 +11002560 printf("Too many arguments.\n");
2561 usage();
2562 }
2563 if (change_passphrase && change_comment) {
2564 printf("Can only have one of -p and -c.\n");
2565 usage();
2566 }
Darren Tucker0f7e9102008-06-08 12:54:29 +10002567 if (print_fingerprint && (delete_host || hash_hosts)) {
Damien Millerec77c952013-01-09 15:58:00 +11002568 printf("Cannot use -l with -H or -R.\n");
Darren Tucker0f7e9102008-06-08 12:54:29 +10002569 usage();
2570 }
Damien Millerf3747bf2013-01-18 11:44:04 +11002571 if (gen_krl) {
2572 do_gen_krl(pw, update_krl, argc, argv);
2573 return (0);
2574 }
2575 if (check_krl) {
2576 do_check_krl(pw, argc, argv);
2577 return (0);
2578 }
Damien Miller0a80ca12010-02-27 07:55:05 +11002579 if (ca_key_path != NULL) {
2580 if (cert_key_id == NULL)
2581 fatal("Must specify key id (-I) when certifying");
2582 do_ca_sign(pw, argc, argv);
2583 }
Damien Millerf2b70ca2010-03-05 07:39:35 +11002584 if (show_cert)
2585 do_show_cert(pw);
Damien Miller4b42d7f2005-03-01 21:48:35 +11002586 if (delete_host || hash_hosts || find_host)
2587 do_known_hosts(pw, rr_hostname);
Damien Millerec77c952013-01-09 15:58:00 +11002588 if (pkcs11provider != NULL)
2589 do_download(pw);
Ben Lindstrom8fd372b2001-03-12 03:02:17 +00002590 if (print_fingerprint || print_bubblebabble)
Damien Miller95def091999-11-25 00:26:21 +11002591 do_fingerprint(pw);
Damien Miller95def091999-11-25 00:26:21 +11002592 if (change_passphrase)
2593 do_change_passphrase(pw);
Damien Miller4a10d2e2002-03-11 22:53:29 +11002594 if (change_comment)
2595 do_change_comment(pw);
Damien Miller1f0311c2014-05-15 14:24:09 +10002596#ifdef WITH_OPENSSL
Damien Miller44b25042010-07-02 13:35:01 +10002597 if (convert_to)
2598 do_convert_to(pw);
2599 if (convert_from)
2600 do_convert_from(pw);
Damien Miller1f0311c2014-05-15 14:24:09 +10002601#endif
Damien Millereba71ba2000-04-29 23:57:08 +10002602 if (print_public)
2603 do_print_public(pw);
Damien Miller4b42d7f2005-03-01 21:48:35 +11002604 if (rr_hostname != NULL) {
Damien Millercb314822006-03-26 13:48:01 +11002605 unsigned int n = 0;
2606
2607 if (have_identity) {
2608 n = do_print_resource_record(pw,
2609 identity_file, rr_hostname);
2610 if (n == 0) {
2611 perror(identity_file);
2612 exit(1);
2613 }
2614 exit(0);
2615 } else {
2616
2617 n += do_print_resource_record(pw,
2618 _PATH_HOST_RSA_KEY_FILE, rr_hostname);
2619 n += do_print_resource_record(pw,
2620 _PATH_HOST_DSA_KEY_FILE, rr_hostname);
Damien Miller3bde12a2012-06-20 21:51:11 +10002621 n += do_print_resource_record(pw,
2622 _PATH_HOST_ECDSA_KEY_FILE, rr_hostname);
Damien Miller16cd3922014-05-15 13:45:58 +10002623 n += do_print_resource_record(pw,
2624 _PATH_HOST_ED25519_KEY_FILE, rr_hostname);
Damien Millercb314822006-03-26 13:48:01 +11002625 if (n == 0)
2626 fatal("no keys found.");
2627 exit(0);
2628 }
Damien Miller37876e92003-05-15 10:19:46 +10002629 }
Damien Miller95def091999-11-25 00:26:21 +11002630
Darren Tucker019cefe2003-08-02 22:40:07 +10002631 if (do_gen_candidates) {
2632 FILE *out = fopen(out_file, "w");
Damien Miller787b2ec2003-11-21 23:56:47 +11002633
Darren Tucker019cefe2003-08-02 22:40:07 +10002634 if (out == NULL) {
2635 error("Couldn't open modulus candidate file \"%s\": %s",
2636 out_file, strerror(errno));
2637 return (1);
2638 }
Damien Miller3f54a9f2005-11-05 14:52:18 +11002639 if (bits == 0)
2640 bits = DEFAULT_BITS;
Darren Tucker019cefe2003-08-02 22:40:07 +10002641 if (gen_candidates(out, memory, bits, start) != 0)
Damien Miller15d72a02005-11-05 15:07:33 +11002642 fatal("modulus candidate generation failed");
Darren Tucker019cefe2003-08-02 22:40:07 +10002643
2644 return (0);
2645 }
2646
2647 if (do_screen_candidates) {
2648 FILE *in;
Damien Miller78d22712013-02-12 11:03:36 +11002649 FILE *out = fopen(out_file, "a");
Darren Tucker019cefe2003-08-02 22:40:07 +10002650
2651 if (have_identity && strcmp(identity_file, "-") != 0) {
2652 if ((in = fopen(identity_file, "r")) == NULL) {
2653 fatal("Couldn't open modulus candidate "
Damien Millera8e06ce2003-11-21 23:48:55 +11002654 "file \"%s\": %s", identity_file,
Darren Tucker019cefe2003-08-02 22:40:07 +10002655 strerror(errno));
2656 }
2657 } else
2658 in = stdin;
2659
2660 if (out == NULL) {
2661 fatal("Couldn't open moduli file \"%s\": %s",
2662 out_file, strerror(errno));
2663 }
Damien Millerbcd00ab2013-12-07 10:41:55 +11002664 if (prime_test(in, out, rounds == 0 ? 100 : rounds,
2665 generator_wanted, checkpoint,
Damien Millerdfceafe2012-07-06 13:44:19 +10002666 start_lineno, lines_to_process) != 0)
Damien Miller15d72a02005-11-05 15:07:33 +11002667 fatal("modulus screening failed");
Darren Tuckerf4220e62003-08-21 16:44:07 +10002668 return (0);
Darren Tucker019cefe2003-08-02 22:40:07 +10002669 }
2670
Damien Miller58f1baf2011-05-05 14:06:15 +10002671 if (gen_all_hostkeys) {
2672 do_gen_all_hostkeys(pw);
2673 return (0);
2674 }
2675
Damien Millerf14be5c2005-11-05 15:15:49 +11002676 if (key_type_name == NULL)
2677 key_type_name = "rsa";
2678
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002679 type = sshkey_type_from_name(key_type_name);
djm@openbsd.org7efb4552015-01-18 13:22:28 +00002680 type_bits_valid(type, key_type_name, &bits);
Damien Miller58f1baf2011-05-05 14:06:15 +10002681
Darren Tucker3af2ac52005-11-29 13:10:24 +11002682 if (!quiet)
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002683 printf("Generating public/private %s key pair.\n",
2684 key_type_name);
2685 if ((r = sshkey_generate(type, bits, &private)) != 0) {
Damien Miller9eab9562009-02-22 08:47:02 +11002686 fprintf(stderr, "key_generate failed\n");
Damien Miller0bc1bd82000-11-13 22:57:25 +11002687 exit(1);
2688 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002689 if ((r = sshkey_from_private(private, &public)) != 0) {
2690 fprintf(stderr, "key_from_private failed: %s\n", ssh_err(r));
2691 exit(1);
2692 }
Damien Miller95def091999-11-25 00:26:21 +11002693
2694 if (!have_identity)
2695 ask_filename(pw, "Enter file in which to save the key");
2696
Damien Miller788f2122005-11-05 15:14:59 +11002697 /* Create ~/.ssh directory if it doesn't already exist. */
Damien Miller50af79b2010-05-10 11:52:00 +10002698 snprintf(dotsshdir, sizeof dotsshdir, "%s/%s",
2699 pw->pw_dir, _PATH_SSH_USER_DIR);
2700 if (strstr(identity_file, dotsshdir) != NULL) {
2701 if (stat(dotsshdir, &st) < 0) {
2702 if (errno != ENOENT) {
2703 error("Could not stat %s: %s", dotsshdir,
2704 strerror(errno));
2705 } else if (mkdir(dotsshdir, 0700) < 0) {
2706 error("Could not create directory '%s': %s",
2707 dotsshdir, strerror(errno));
2708 } else if (!quiet)
2709 printf("Created directory '%s'.\n", dotsshdir);
2710 }
Damien Miller95def091999-11-25 00:26:21 +11002711 }
2712 /* If the file already exists, ask the user to confirm. */
2713 if (stat(identity_file, &st) >= 0) {
2714 char yesno[3];
2715 printf("%s already exists.\n", identity_file);
2716 printf("Overwrite (y/n)? ");
2717 fflush(stdout);
2718 if (fgets(yesno, sizeof(yesno), stdin) == NULL)
2719 exit(1);
2720 if (yesno[0] != 'y' && yesno[0] != 'Y')
2721 exit(1);
2722 }
2723 /* Ask for a passphrase (twice). */
2724 if (identity_passphrase)
2725 passphrase1 = xstrdup(identity_passphrase);
2726 else if (identity_new_passphrase)
2727 passphrase1 = xstrdup(identity_new_passphrase);
2728 else {
2729passphrase_again:
2730 passphrase1 =
Ben Lindstrom949974b2001-06-25 05:20:31 +00002731 read_passphrase("Enter passphrase (empty for no "
2732 "passphrase): ", RP_ALLOW_STDIN);
2733 passphrase2 = read_passphrase("Enter same passphrase again: ",
2734 RP_ALLOW_STDIN);
Damien Miller95def091999-11-25 00:26:21 +11002735 if (strcmp(passphrase1, passphrase2) != 0) {
Ben Lindstrom949974b2001-06-25 05:20:31 +00002736 /*
2737 * The passphrases do not match. Clear them and
2738 * retry.
2739 */
Damien Millera5103f42014-02-04 11:20:14 +11002740 explicit_bzero(passphrase1, strlen(passphrase1));
2741 explicit_bzero(passphrase2, strlen(passphrase2));
Darren Tuckera627d422013-06-02 07:31:17 +10002742 free(passphrase1);
2743 free(passphrase2);
Damien Miller95def091999-11-25 00:26:21 +11002744 printf("Passphrases do not match. Try again.\n");
2745 goto passphrase_again;
2746 }
2747 /* Clear the other copy of the passphrase. */
Damien Millera5103f42014-02-04 11:20:14 +11002748 explicit_bzero(passphrase2, strlen(passphrase2));
Darren Tuckera627d422013-06-02 07:31:17 +10002749 free(passphrase2);
Damien Miller95def091999-11-25 00:26:21 +11002750 }
2751
Damien Miller95def091999-11-25 00:26:21 +11002752 if (identity_comment) {
2753 strlcpy(comment, identity_comment, sizeof(comment));
2754 } else {
Darren Tuckere15fb092008-11-11 16:31:43 +11002755 /* Create default comment field for the passphrase. */
Damien Miller95def091999-11-25 00:26:21 +11002756 snprintf(comment, sizeof comment, "%s@%s", pw->pw_name, hostname);
2757 }
2758
2759 /* Save the key with the given passphrase and comment. */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002760 if ((r = sshkey_save_private(private, identity_file, passphrase1,
2761 comment, use_new_format, new_format_cipher, rounds)) != 0) {
2762 printf("Saving key \"%s\" failed: %s\n",
2763 identity_file, ssh_err(r));
Damien Millera5103f42014-02-04 11:20:14 +11002764 explicit_bzero(passphrase1, strlen(passphrase1));
Darren Tuckera627d422013-06-02 07:31:17 +10002765 free(passphrase1);
Damien Miller95def091999-11-25 00:26:21 +11002766 exit(1);
2767 }
2768 /* Clear the passphrase. */
Damien Millera5103f42014-02-04 11:20:14 +11002769 explicit_bzero(passphrase1, strlen(passphrase1));
Darren Tuckera627d422013-06-02 07:31:17 +10002770 free(passphrase1);
Damien Miller95def091999-11-25 00:26:21 +11002771
2772 /* Clear the private key and the random number generator. */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002773 sshkey_free(private);
Damien Miller95def091999-11-25 00:26:21 +11002774
2775 if (!quiet)
2776 printf("Your identification has been saved in %s.\n", identity_file);
2777
Damien Miller95def091999-11-25 00:26:21 +11002778 strlcat(identity_file, ".pub", sizeof(identity_file));
Ben Lindstrom5fc62702001-03-09 18:19:24 +00002779 fd = open(identity_file, O_WRONLY | O_CREAT | O_TRUNC, 0644);
2780 if (fd == -1) {
Damien Miller95def091999-11-25 00:26:21 +11002781 printf("Could not save your public key in %s\n", identity_file);
2782 exit(1);
2783 }
Ben Lindstrom5fc62702001-03-09 18:19:24 +00002784 f = fdopen(fd, "w");
2785 if (f == NULL) {
Damien Miller9eab9562009-02-22 08:47:02 +11002786 printf("fdopen %s failed\n", identity_file);
Ben Lindstrom5fc62702001-03-09 18:19:24 +00002787 exit(1);
2788 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002789 if ((r = sshkey_write(public, f)) != 0)
2790 fprintf(stderr, "write key failed: %s\n", ssh_err(r));
Damien Millereba71ba2000-04-29 23:57:08 +10002791 fprintf(f, " %s\n", comment);
Damien Miller95def091999-11-25 00:26:21 +11002792 fclose(f);
2793
2794 if (!quiet) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002795 char *fp = sshkey_fingerprint(public, fingerprint_hash,
djm@openbsd.org56d1c832014-12-21 22:27:55 +00002796 SSH_FP_DEFAULT);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002797 char *ra = sshkey_fingerprint(public, fingerprint_hash,
Darren Tucker9c16ac92008-06-13 04:40:35 +10002798 SSH_FP_RANDOMART);
Damien Millereba71ba2000-04-29 23:57:08 +10002799 printf("Your public key has been saved in %s.\n",
2800 identity_file);
Damien Miller95def091999-11-25 00:26:21 +11002801 printf("The key fingerprint is:\n");
Ben Lindstromcfccef92001-03-13 04:57:58 +00002802 printf("%s %s\n", fp, comment);
Darren Tucker9c16ac92008-06-13 04:40:35 +10002803 printf("The key's randomart image is:\n");
2804 printf("%s\n", ra);
Darren Tuckera627d422013-06-02 07:31:17 +10002805 free(ra);
2806 free(fp);
Damien Miller95def091999-11-25 00:26:21 +11002807 }
Damien Millereba71ba2000-04-29 23:57:08 +10002808
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002809 sshkey_free(public);
Damien Miller95def091999-11-25 00:26:21 +11002810 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002811}