blob: 0518638e0e6d385d546c9a81db911d19d72bcf1c [file] [log] [blame]
tobias@openbsd.org704d8c82015-03-31 11:06:49 +00001/* $OpenBSD: ssh-keygen.c,v 1.268 2015/03/31 11:06:49 tobias 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 Miller773dda22015-01-30 23:10:17 +1100195#ifdef WITH_OPENSSL
Damien Miller58f1baf2011-05-05 14:06:15 +1000196 if (type == KEY_DSA)
Damien Miller884b63a2011-05-05 14:14:52 +1000197 *bitsp = DEFAULT_BITS_DSA;
djm@openbsd.org7efb4552015-01-18 13:22:28 +0000198 else if (type == KEY_ECDSA) {
199 if (name != NULL &&
200 (nid = sshkey_ecdsa_nid_from_name(name)) > 0)
201 *bitsp = sshkey_curve_nid_to_bits(nid);
202 if (*bitsp == 0)
203 *bitsp = DEFAULT_BITS_ECDSA;
Damien Miller773dda22015-01-30 23:10:17 +1100204 } else
205#endif
Damien Miller884b63a2011-05-05 14:14:52 +1000206 *bitsp = DEFAULT_BITS;
Damien Miller58f1baf2011-05-05 14:06:15 +1000207 }
Damien Miller72ef7c12015-01-15 02:21:31 +1100208#ifdef WITH_OPENSSL
Damien Miller58f1baf2011-05-05 14:06:15 +1000209 maxbits = (type == KEY_DSA) ?
210 OPENSSL_DSA_MAX_MODULUS_BITS : OPENSSL_RSA_MAX_MODULUS_BITS;
Damien Miller884b63a2011-05-05 14:14:52 +1000211 if (*bitsp > maxbits) {
Damien Miller58f1baf2011-05-05 14:06:15 +1000212 fprintf(stderr, "key bits exceeds maximum %d\n", maxbits);
213 exit(1);
214 }
Damien Miller884b63a2011-05-05 14:14:52 +1000215 if (type == KEY_DSA && *bitsp != 1024)
Damien Miller58f1baf2011-05-05 14:06:15 +1000216 fatal("DSA keys must be 1024 bits");
Damien Miller5be9d9e2013-12-07 11:24:01 +1100217 else if (type != KEY_ECDSA && type != KEY_ED25519 && *bitsp < 768)
Damien Miller58f1baf2011-05-05 14:06:15 +1000218 fatal("Key must at least be 768 bits");
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000219 else if (type == KEY_ECDSA && sshkey_ecdsa_bits_to_nid(*bitsp) == -1)
Damien Miller58f1baf2011-05-05 14:06:15 +1000220 fatal("Invalid ECDSA key length - valid lengths are "
221 "256, 384 or 521 bits");
Damien Miller1f0311c2014-05-15 14:24:09 +1000222#endif
Damien Miller58f1baf2011-05-05 14:06:15 +1000223}
224
225static void
Damien Miller431f66b1999-11-21 18:31:57 +1100226ask_filename(struct passwd *pw, const char *prompt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000227{
Damien Miller95def091999-11-25 00:26:21 +1100228 char buf[1024];
Damien Millere39cacc2000-11-29 12:18:44 +1100229 char *name = NULL;
230
Damien Miller993dd552002-02-19 15:22:47 +1100231 if (key_type_name == NULL)
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000232 name = _PATH_SSH_CLIENT_ID_RSA;
Damien Miller90967402006-03-26 14:07:26 +1100233 else {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000234 switch (sshkey_type_from_name(key_type_name)) {
Damien Miller993dd552002-02-19 15:22:47 +1100235 case KEY_RSA1:
236 name = _PATH_SSH_CLIENT_IDENTITY;
237 break;
Damien Miller4e270b02010-04-16 15:56:21 +1000238 case KEY_DSA_CERT:
239 case KEY_DSA_CERT_V00:
Damien Miller993dd552002-02-19 15:22:47 +1100240 case KEY_DSA:
241 name = _PATH_SSH_CLIENT_ID_DSA;
242 break;
Damien Millerdd190dd2010-11-11 14:17:02 +1100243#ifdef OPENSSL_HAS_ECC
Damien Millereb8b60e2010-08-31 22:41:14 +1000244 case KEY_ECDSA_CERT:
245 case KEY_ECDSA:
246 name = _PATH_SSH_CLIENT_ID_ECDSA;
247 break;
Damien Millerdd190dd2010-11-11 14:17:02 +1100248#endif
Damien Miller4e270b02010-04-16 15:56:21 +1000249 case KEY_RSA_CERT:
250 case KEY_RSA_CERT_V00:
Damien Miller993dd552002-02-19 15:22:47 +1100251 case KEY_RSA:
252 name = _PATH_SSH_CLIENT_ID_RSA;
253 break;
Damien Miller5be9d9e2013-12-07 11:24:01 +1100254 case KEY_ED25519:
255 case KEY_ED25519_CERT:
256 name = _PATH_SSH_CLIENT_ID_ED25519;
257 break;
Damien Miller993dd552002-02-19 15:22:47 +1100258 default:
Damien Miller9eab9562009-02-22 08:47:02 +1100259 fprintf(stderr, "bad key type\n");
Damien Miller993dd552002-02-19 15:22:47 +1100260 exit(1);
261 break;
262 }
Damien Miller90967402006-03-26 14:07:26 +1100263 }
Damien Millere39cacc2000-11-29 12:18:44 +1100264 snprintf(identity_file, sizeof(identity_file), "%s/%s", pw->pw_dir, name);
Ben Lindstrom3deda8b2000-12-22 20:27:43 +0000265 fprintf(stderr, "%s (%s): ", prompt, identity_file);
Damien Miller95def091999-11-25 00:26:21 +1100266 if (fgets(buf, sizeof(buf), stdin) == NULL)
267 exit(1);
Damien Miller14b017d2007-09-17 16:09:15 +1000268 buf[strcspn(buf, "\n")] = '\0';
Damien Miller95def091999-11-25 00:26:21 +1100269 if (strcmp(buf, "") != 0)
270 strlcpy(identity_file, buf, sizeof(identity_file));
271 have_identity = 1;
Damien Miller10f6f6b1999-11-17 17:29:08 +1100272}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000273
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000274static struct sshkey *
Ben Lindstromd78ae762001-06-05 20:35:09 +0000275load_identity(char *filename)
Damien Millereba71ba2000-04-29 23:57:08 +1000276{
Ben Lindstromd0fca422001-03-26 13:44:06 +0000277 char *pass;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000278 struct sshkey *prv;
279 int r;
Ben Lindstromd0fca422001-03-26 13:44:06 +0000280
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000281 if ((r = sshkey_load_private(filename, "", &prv, NULL)) == 0)
282 return prv;
283 if (r != SSH_ERR_KEY_WRONG_PASSPHRASE)
284 fatal("Load key \"%s\": %s", filename, ssh_err(r));
285 if (identity_passphrase)
286 pass = xstrdup(identity_passphrase);
287 else
288 pass = read_passphrase("Enter passphrase: ", RP_ALLOW_STDIN);
289 r = sshkey_load_private(filename, pass, &prv, NULL);
290 explicit_bzero(pass, strlen(pass));
291 free(pass);
292 if (r != 0)
293 fatal("Load key \"%s\": %s", filename, ssh_err(r));
Ben Lindstromd0fca422001-03-26 13:44:06 +0000294 return prv;
Damien Millereba71ba2000-04-29 23:57:08 +1000295}
296
Damien Miller874d77b2000-10-14 16:23:11 +1100297#define SSH_COM_PUBLIC_BEGIN "---- BEGIN SSH2 PUBLIC KEY ----"
Ben Lindstromcb72e4f2002-06-21 00:41:51 +0000298#define SSH_COM_PUBLIC_END "---- END SSH2 PUBLIC KEY ----"
Damien Miller874d77b2000-10-14 16:23:11 +1100299#define SSH_COM_PRIVATE_BEGIN "---- BEGIN SSH2 ENCRYPTED PRIVATE KEY ----"
Kevin Stevesef4eea92001-02-05 12:42:17 +0000300#define SSH_COM_PRIVATE_KEY_MAGIC 0x3f6ff9eb
Damien Millereba71ba2000-04-29 23:57:08 +1000301
Damien Miller1f0311c2014-05-15 14:24:09 +1000302#ifdef WITH_OPENSSL
Ben Lindstrombba81212001-06-25 05:01:22 +0000303static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000304do_convert_to_ssh2(struct passwd *pw, struct sshkey *k)
Damien Millereba71ba2000-04-29 23:57:08 +1000305{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000306 size_t len;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000307 u_char *blob;
Darren Tuckerd04758d2010-01-12 19:41:57 +1100308 char comment[61];
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000309 int r;
Damien Millereba71ba2000-04-29 23:57:08 +1000310
Damien Millera563cce2012-04-22 11:07:28 +1000311 if (k->type == KEY_RSA1) {
312 fprintf(stderr, "version 1 keys are not supported\n");
313 exit(1);
314 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000315 if ((r = sshkey_to_blob(k, &blob, &len)) != 0) {
316 fprintf(stderr, "key_to_blob failed: %s\n", ssh_err(r));
Ben Lindstrom99a30f12001-09-18 05:49:14 +0000317 exit(1);
318 }
Darren Tuckerd04758d2010-01-12 19:41:57 +1100319 /* Comment + surrounds must fit into 72 chars (RFC 4716 sec 3.3) */
320 snprintf(comment, sizeof(comment),
321 "%u-bit %s, converted by %s@%s from OpenSSH",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000322 sshkey_size(k), sshkey_type(k),
Damien Millereba71ba2000-04-29 23:57:08 +1000323 pw->pw_name, hostname);
Darren Tuckerd04758d2010-01-12 19:41:57 +1100324
325 fprintf(stdout, "%s\n", SSH_COM_PUBLIC_BEGIN);
326 fprintf(stdout, "Comment: \"%s\"\n", comment);
Damien Millereba71ba2000-04-29 23:57:08 +1000327 dump_base64(stdout, blob, len);
Damien Miller874d77b2000-10-14 16:23:11 +1100328 fprintf(stdout, "%s\n", SSH_COM_PUBLIC_END);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000329 sshkey_free(k);
Darren Tuckera627d422013-06-02 07:31:17 +1000330 free(blob);
Damien Millereba71ba2000-04-29 23:57:08 +1000331 exit(0);
332}
333
Ben Lindstrombba81212001-06-25 05:01:22 +0000334static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000335do_convert_to_pkcs8(struct sshkey *k)
Damien Miller44b25042010-07-02 13:35:01 +1000336{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000337 switch (sshkey_type_plain(k->type)) {
Damien Millera563cce2012-04-22 11:07:28 +1000338 case KEY_RSA1:
Damien Miller44b25042010-07-02 13:35:01 +1000339 case KEY_RSA:
340 if (!PEM_write_RSA_PUBKEY(stdout, k->rsa))
341 fatal("PEM_write_RSA_PUBKEY failed");
342 break;
343 case KEY_DSA:
344 if (!PEM_write_DSA_PUBKEY(stdout, k->dsa))
345 fatal("PEM_write_DSA_PUBKEY failed");
346 break;
Damien Miller6af914a2010-09-10 11:39:26 +1000347#ifdef OPENSSL_HAS_ECC
Damien Millereb8b60e2010-08-31 22:41:14 +1000348 case KEY_ECDSA:
349 if (!PEM_write_EC_PUBKEY(stdout, k->ecdsa))
350 fatal("PEM_write_EC_PUBKEY failed");
351 break;
Damien Miller6af914a2010-09-10 11:39:26 +1000352#endif
Damien Miller44b25042010-07-02 13:35:01 +1000353 default:
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000354 fatal("%s: unsupported key type %s", __func__, sshkey_type(k));
Damien Miller44b25042010-07-02 13:35:01 +1000355 }
356 exit(0);
357}
358
359static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000360do_convert_to_pem(struct sshkey *k)
Damien Miller44b25042010-07-02 13:35:01 +1000361{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000362 switch (sshkey_type_plain(k->type)) {
Damien Millera563cce2012-04-22 11:07:28 +1000363 case KEY_RSA1:
Damien Miller44b25042010-07-02 13:35:01 +1000364 case KEY_RSA:
365 if (!PEM_write_RSAPublicKey(stdout, k->rsa))
366 fatal("PEM_write_RSAPublicKey failed");
367 break;
368#if notyet /* OpenSSH 0.9.8 lacks this function */
369 case KEY_DSA:
370 if (!PEM_write_DSAPublicKey(stdout, k->dsa))
371 fatal("PEM_write_DSAPublicKey failed");
372 break;
373#endif
Damien Millereb8b60e2010-08-31 22:41:14 +1000374 /* XXX ECDSA? */
Damien Miller44b25042010-07-02 13:35:01 +1000375 default:
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000376 fatal("%s: unsupported key type %s", __func__, sshkey_type(k));
Damien Miller44b25042010-07-02 13:35:01 +1000377 }
378 exit(0);
379}
380
381static void
382do_convert_to(struct passwd *pw)
383{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000384 struct sshkey *k;
Damien Miller44b25042010-07-02 13:35:01 +1000385 struct stat st;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000386 int r;
Damien Miller44b25042010-07-02 13:35:01 +1000387
388 if (!have_identity)
389 ask_filename(pw, "Enter file in which the key is");
390 if (stat(identity_file, &st) < 0)
391 fatal("%s: %s: %s", __progname, identity_file, strerror(errno));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000392 if ((r = sshkey_load_public(identity_file, &k, NULL)) != 0)
393 k = load_identity(identity_file);
Damien Miller44b25042010-07-02 13:35:01 +1000394 switch (convert_format) {
395 case FMT_RFC4716:
396 do_convert_to_ssh2(pw, k);
397 break;
398 case FMT_PKCS8:
399 do_convert_to_pkcs8(k);
400 break;
401 case FMT_PEM:
402 do_convert_to_pem(k);
403 break;
404 default:
405 fatal("%s: unknown key format %d", __func__, convert_format);
406 }
407 exit(0);
408}
409
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000410/*
411 * This is almost exactly the bignum1 encoding, but with 32 bit for length
412 * instead of 16.
413 */
Damien Miller44b25042010-07-02 13:35:01 +1000414static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000415buffer_get_bignum_bits(struct sshbuf *b, BIGNUM *value)
Damien Miller874d77b2000-10-14 16:23:11 +1100416{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000417 u_int bytes, bignum_bits;
418 int r;
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000419
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000420 if ((r = sshbuf_get_u32(b, &bignum_bits)) != 0)
421 fatal("%s: buffer error: %s", __func__, ssh_err(r));
422 bytes = (bignum_bits + 7) / 8;
423 if (sshbuf_len(b) < bytes)
424 fatal("%s: input buffer too small: need %d have %zu",
425 __func__, bytes, sshbuf_len(b));
426 if (BN_bin2bn(sshbuf_ptr(b), bytes, value) == NULL)
427 fatal("%s: BN_bin2bn failed", __func__);
428 if ((r = sshbuf_consume(b, bytes)) != 0)
429 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Miller874d77b2000-10-14 16:23:11 +1100430}
431
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000432static struct sshkey *
Ben Lindstrom90fd8142002-02-26 18:09:42 +0000433do_convert_private_ssh2_from_blob(u_char *blob, u_int blen)
Damien Miller874d77b2000-10-14 16:23:11 +1100434{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000435 struct sshbuf *b;
436 struct sshkey *key = NULL;
Damien Miller874d77b2000-10-14 16:23:11 +1100437 char *type, *cipher;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000438 u_char e1, e2, e3, *sig = NULL, data[] = "abcde12345";
439 int r, rlen, ktype;
440 u_int magic, i1, i2, i3, i4;
441 size_t slen;
Ben Lindstrome586c4c2001-06-25 05:04:58 +0000442 u_long e;
Damien Miller874d77b2000-10-14 16:23:11 +1100443
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000444 if ((b = sshbuf_from(blob, blen)) == NULL)
445 fatal("%s: sshbuf_from failed", __func__);
446 if ((r = sshbuf_get_u32(b, &magic)) != 0)
447 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Miller874d77b2000-10-14 16:23:11 +1100448
Damien Miller874d77b2000-10-14 16:23:11 +1100449 if (magic != SSH_COM_PRIVATE_KEY_MAGIC) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000450 error("bad magic 0x%x != 0x%x", magic,
451 SSH_COM_PRIVATE_KEY_MAGIC);
452 sshbuf_free(b);
Damien Miller874d77b2000-10-14 16:23:11 +1100453 return NULL;
454 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000455 if ((r = sshbuf_get_u32(b, &i1)) != 0 ||
456 (r = sshbuf_get_cstring(b, &type, NULL)) != 0 ||
457 (r = sshbuf_get_cstring(b, &cipher, NULL)) != 0 ||
458 (r = sshbuf_get_u32(b, &i2)) != 0 ||
459 (r = sshbuf_get_u32(b, &i3)) != 0 ||
460 (r = sshbuf_get_u32(b, &i4)) != 0)
461 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Miller80163902007-01-05 16:30:16 +1100462 debug("ignore (%d %d %d %d)", i1, i2, i3, i4);
Damien Miller874d77b2000-10-14 16:23:11 +1100463 if (strcmp(cipher, "none") != 0) {
464 error("unsupported cipher %s", cipher);
Darren Tuckera627d422013-06-02 07:31:17 +1000465 free(cipher);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000466 sshbuf_free(b);
Darren Tuckera627d422013-06-02 07:31:17 +1000467 free(type);
Damien Miller874d77b2000-10-14 16:23:11 +1100468 return NULL;
469 }
Darren Tuckera627d422013-06-02 07:31:17 +1000470 free(cipher);
Damien Miller874d77b2000-10-14 16:23:11 +1100471
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000472 if (strstr(type, "dsa")) {
473 ktype = KEY_DSA;
474 } else if (strstr(type, "rsa")) {
475 ktype = KEY_RSA;
476 } else {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000477 sshbuf_free(b);
Darren Tuckera627d422013-06-02 07:31:17 +1000478 free(type);
Damien Miller874d77b2000-10-14 16:23:11 +1100479 return NULL;
480 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000481 if ((key = sshkey_new_private(ktype)) == NULL)
482 fatal("key_new_private failed");
Darren Tuckera627d422013-06-02 07:31:17 +1000483 free(type);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000484
485 switch (key->type) {
486 case KEY_DSA:
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000487 buffer_get_bignum_bits(b, key->dsa->p);
488 buffer_get_bignum_bits(b, key->dsa->g);
489 buffer_get_bignum_bits(b, key->dsa->q);
490 buffer_get_bignum_bits(b, key->dsa->pub_key);
491 buffer_get_bignum_bits(b, key->dsa->priv_key);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000492 break;
493 case KEY_RSA:
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000494 if ((r = sshbuf_get_u8(b, &e1)) != 0 ||
495 (e1 < 30 && (r = sshbuf_get_u8(b, &e2)) != 0) ||
496 (e1 < 30 && (r = sshbuf_get_u8(b, &e3)) != 0))
497 fatal("%s: buffer error: %s", __func__, ssh_err(r));
498 e = e1;
Ben Lindstrom34f91882001-06-25 04:47:54 +0000499 debug("e %lx", e);
500 if (e < 30) {
501 e <<= 8;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000502 e += e2;
Ben Lindstrom34f91882001-06-25 04:47:54 +0000503 debug("e %lx", e);
504 e <<= 8;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000505 e += e3;
Ben Lindstrom34f91882001-06-25 04:47:54 +0000506 debug("e %lx", e);
507 }
508 if (!BN_set_word(key->rsa->e, e)) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000509 sshbuf_free(b);
510 sshkey_free(key);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000511 return NULL;
512 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000513 buffer_get_bignum_bits(b, key->rsa->d);
514 buffer_get_bignum_bits(b, key->rsa->n);
515 buffer_get_bignum_bits(b, key->rsa->iqmp);
516 buffer_get_bignum_bits(b, key->rsa->q);
517 buffer_get_bignum_bits(b, key->rsa->p);
518 if ((r = rsa_generate_additional_parameters(key->rsa)) != 0)
519 fatal("generate RSA parameters failed: %s", ssh_err(r));
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000520 break;
521 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000522 rlen = sshbuf_len(b);
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +0000523 if (rlen != 0)
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000524 error("do_convert_private_ssh2_from_blob: "
525 "remaining bytes in key blob %d", rlen);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000526 sshbuf_free(b);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000527
Ben Lindstrome586c4c2001-06-25 05:04:58 +0000528 /* try the key */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000529 if (sshkey_sign(key, &sig, &slen, data, sizeof(data), 0) != 0 ||
530 sshkey_verify(key, sig, slen, data, sizeof(data), 0) != 0) {
531 sshkey_free(key);
532 free(sig);
533 return NULL;
534 }
Darren Tuckera627d422013-06-02 07:31:17 +1000535 free(sig);
Damien Miller874d77b2000-10-14 16:23:11 +1100536 return key;
537}
538
Damien Miller8056a9d2006-03-15 12:05:40 +1100539static int
540get_line(FILE *fp, char *line, size_t len)
541{
542 int c;
543 size_t pos = 0;
544
545 line[0] = '\0';
546 while ((c = fgetc(fp)) != EOF) {
547 if (pos >= len - 1) {
548 fprintf(stderr, "input line too long.\n");
549 exit(1);
550 }
Damien Miller90967402006-03-26 14:07:26 +1100551 switch (c) {
Damien Miller8056a9d2006-03-15 12:05:40 +1100552 case '\r':
553 c = fgetc(fp);
554 if (c != EOF && c != '\n' && ungetc(c, fp) == EOF) {
555 fprintf(stderr, "unget: %s\n", strerror(errno));
556 exit(1);
557 }
558 return pos;
559 case '\n':
560 return pos;
561 }
562 line[pos++] = c;
563 line[pos] = '\0';
564 }
Damien Miller6c7439f2007-01-05 16:29:55 +1100565 /* We reached EOF */
566 return -1;
Damien Miller8056a9d2006-03-15 12:05:40 +1100567}
568
Ben Lindstrombba81212001-06-25 05:01:22 +0000569static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000570do_convert_from_ssh2(struct passwd *pw, struct sshkey **k, int *private)
Damien Millereba71ba2000-04-29 23:57:08 +1000571{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000572 int r, blen, escaped = 0;
Ben Lindstrom155b9812002-04-02 20:26:26 +0000573 u_int len;
Damien Miller8056a9d2006-03-15 12:05:40 +1100574 char line[1024];
Ben Lindstrom9e0ddd42001-09-18 05:41:19 +0000575 u_char blob[8096];
Damien Millereba71ba2000-04-29 23:57:08 +1000576 char encoded[8096];
Damien Millereba71ba2000-04-29 23:57:08 +1000577 FILE *fp;
578
Damien Millerba3420a2010-06-26 09:39:07 +1000579 if ((fp = fopen(identity_file, "r")) == NULL)
580 fatal("%s: %s: %s", __progname, identity_file, strerror(errno));
Damien Millereba71ba2000-04-29 23:57:08 +1000581 encoded[0] = '\0';
Damien Miller8056a9d2006-03-15 12:05:40 +1100582 while ((blen = get_line(fp, line, sizeof(line))) != -1) {
Damien Miller746d1a62013-07-18 16:13:02 +1000583 if (blen > 0 && line[blen - 1] == '\\')
Damien Miller30c3d422000-05-09 11:02:59 +1000584 escaped++;
Damien Millereba71ba2000-04-29 23:57:08 +1000585 if (strncmp(line, "----", 4) == 0 ||
586 strstr(line, ": ") != NULL) {
Damien Miller874d77b2000-10-14 16:23:11 +1100587 if (strstr(line, SSH_COM_PRIVATE_BEGIN) != NULL)
Damien Miller44b25042010-07-02 13:35:01 +1000588 *private = 1;
Ben Lindstrome586c4c2001-06-25 05:04:58 +0000589 if (strstr(line, " END ") != NULL) {
590 break;
591 }
Ben Lindstrom30358602001-04-24 16:59:28 +0000592 /* fprintf(stderr, "ignore: %s", line); */
Damien Millereba71ba2000-04-29 23:57:08 +1000593 continue;
594 }
Damien Miller30c3d422000-05-09 11:02:59 +1000595 if (escaped) {
596 escaped--;
Ben Lindstrom30358602001-04-24 16:59:28 +0000597 /* fprintf(stderr, "escaped: %s", line); */
Damien Miller30c3d422000-05-09 11:02:59 +1000598 continue;
Damien Millereba71ba2000-04-29 23:57:08 +1000599 }
Damien Millereba71ba2000-04-29 23:57:08 +1000600 strlcat(encoded, line, sizeof(encoded));
601 }
Ben Lindstrom155b9812002-04-02 20:26:26 +0000602 len = strlen(encoded);
603 if (((len % 4) == 3) &&
604 (encoded[len-1] == '=') &&
605 (encoded[len-2] == '=') &&
606 (encoded[len-3] == '='))
607 encoded[len-3] = '\0';
Damien Miller4a8ed542002-01-22 23:33:31 +1100608 blen = uudecode(encoded, blob, sizeof(blob));
Damien Millereba71ba2000-04-29 23:57:08 +1000609 if (blen < 0) {
610 fprintf(stderr, "uudecode failed.\n");
611 exit(1);
612 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000613 if (*private)
614 *k = do_convert_private_ssh2_from_blob(blob, blen);
615 else if ((r = sshkey_from_blob(blob, blen, k)) != 0) {
616 fprintf(stderr, "decode blob failed: %s\n", ssh_err(r));
Damien Miller874d77b2000-10-14 16:23:11 +1100617 exit(1);
618 }
Damien Miller44b25042010-07-02 13:35:01 +1000619 fclose(fp);
620}
621
622static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000623do_convert_from_pkcs8(struct sshkey **k, int *private)
Damien Miller44b25042010-07-02 13:35:01 +1000624{
625 EVP_PKEY *pubkey;
626 FILE *fp;
627
628 if ((fp = fopen(identity_file, "r")) == NULL)
629 fatal("%s: %s: %s", __progname, identity_file, strerror(errno));
630 if ((pubkey = PEM_read_PUBKEY(fp, NULL, NULL, NULL)) == NULL) {
631 fatal("%s: %s is not a recognised public key format", __func__,
632 identity_file);
633 }
634 fclose(fp);
635 switch (EVP_PKEY_type(pubkey->type)) {
636 case EVP_PKEY_RSA:
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000637 if ((*k = sshkey_new(KEY_UNSPEC)) == NULL)
638 fatal("sshkey_new failed");
Damien Miller44b25042010-07-02 13:35:01 +1000639 (*k)->type = KEY_RSA;
640 (*k)->rsa = EVP_PKEY_get1_RSA(pubkey);
641 break;
642 case EVP_PKEY_DSA:
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000643 if ((*k = sshkey_new(KEY_UNSPEC)) == NULL)
644 fatal("sshkey_new failed");
Damien Miller44b25042010-07-02 13:35:01 +1000645 (*k)->type = KEY_DSA;
646 (*k)->dsa = EVP_PKEY_get1_DSA(pubkey);
647 break;
Damien Miller6af914a2010-09-10 11:39:26 +1000648#ifdef OPENSSL_HAS_ECC
Damien Millereb8b60e2010-08-31 22:41:14 +1000649 case EVP_PKEY_EC:
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000650 if ((*k = sshkey_new(KEY_UNSPEC)) == NULL)
651 fatal("sshkey_new failed");
Damien Millereb8b60e2010-08-31 22:41:14 +1000652 (*k)->type = KEY_ECDSA;
653 (*k)->ecdsa = EVP_PKEY_get1_EC_KEY(pubkey);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000654 (*k)->ecdsa_nid = sshkey_ecdsa_key_to_nid((*k)->ecdsa);
Damien Millereb8b60e2010-08-31 22:41:14 +1000655 break;
Damien Miller6af914a2010-09-10 11:39:26 +1000656#endif
Damien Miller44b25042010-07-02 13:35:01 +1000657 default:
658 fatal("%s: unsupported pubkey type %d", __func__,
659 EVP_PKEY_type(pubkey->type));
660 }
661 EVP_PKEY_free(pubkey);
662 return;
663}
664
665static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000666do_convert_from_pem(struct sshkey **k, int *private)
Damien Miller44b25042010-07-02 13:35:01 +1000667{
668 FILE *fp;
669 RSA *rsa;
670#ifdef notyet
671 DSA *dsa;
672#endif
673
674 if ((fp = fopen(identity_file, "r")) == NULL)
675 fatal("%s: %s: %s", __progname, identity_file, strerror(errno));
676 if ((rsa = PEM_read_RSAPublicKey(fp, NULL, NULL, NULL)) != NULL) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000677 if ((*k = sshkey_new(KEY_UNSPEC)) == NULL)
678 fatal("sshkey_new failed");
Damien Miller44b25042010-07-02 13:35:01 +1000679 (*k)->type = KEY_RSA;
680 (*k)->rsa = rsa;
681 fclose(fp);
682 return;
683 }
684#if notyet /* OpenSSH 0.9.8 lacks this function */
685 rewind(fp);
686 if ((dsa = PEM_read_DSAPublicKey(fp, NULL, NULL, NULL)) != NULL) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000687 if ((*k = sshkey_new(KEY_UNSPEC)) == NULL)
688 fatal("sshkey_new failed");
Damien Miller44b25042010-07-02 13:35:01 +1000689 (*k)->type = KEY_DSA;
690 (*k)->dsa = dsa;
691 fclose(fp);
692 return;
693 }
Damien Millereb8b60e2010-08-31 22:41:14 +1000694 /* XXX ECDSA */
Damien Miller44b25042010-07-02 13:35:01 +1000695#endif
696 fatal("%s: unrecognised raw private key format", __func__);
697}
698
699static void
700do_convert_from(struct passwd *pw)
701{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000702 struct sshkey *k = NULL;
703 int r, private = 0, ok = 0;
Damien Miller44b25042010-07-02 13:35:01 +1000704 struct stat st;
705
706 if (!have_identity)
707 ask_filename(pw, "Enter file in which the key is");
708 if (stat(identity_file, &st) < 0)
709 fatal("%s: %s: %s", __progname, identity_file, strerror(errno));
710
711 switch (convert_format) {
712 case FMT_RFC4716:
713 do_convert_from_ssh2(pw, &k, &private);
714 break;
715 case FMT_PKCS8:
716 do_convert_from_pkcs8(&k, &private);
717 break;
718 case FMT_PEM:
719 do_convert_from_pem(&k, &private);
720 break;
721 default:
722 fatal("%s: unknown key format %d", __func__, convert_format);
723 }
724
djm@openbsd.org7a2c3682015-01-30 00:59:19 +0000725 if (!private) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000726 if ((r = sshkey_write(k, stdout)) == 0)
727 ok = 1;
Damien Miller44b25042010-07-02 13:35:01 +1000728 if (ok)
729 fprintf(stdout, "\n");
djm@openbsd.org7a2c3682015-01-30 00:59:19 +0000730 } else {
Damien Miller44b25042010-07-02 13:35:01 +1000731 switch (k->type) {
732 case KEY_DSA:
733 ok = PEM_write_DSAPrivateKey(stdout, k->dsa, NULL,
734 NULL, 0, NULL, NULL);
735 break;
Damien Miller6af914a2010-09-10 11:39:26 +1000736#ifdef OPENSSL_HAS_ECC
Damien Millereb8b60e2010-08-31 22:41:14 +1000737 case KEY_ECDSA:
738 ok = PEM_write_ECPrivateKey(stdout, k->ecdsa, NULL,
739 NULL, 0, NULL, NULL);
740 break;
Damien Miller6af914a2010-09-10 11:39:26 +1000741#endif
Damien Miller44b25042010-07-02 13:35:01 +1000742 case KEY_RSA:
743 ok = PEM_write_RSAPrivateKey(stdout, k->rsa, NULL,
744 NULL, 0, NULL, NULL);
745 break;
746 default:
747 fatal("%s: unsupported key type %s", __func__,
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000748 sshkey_type(k));
Damien Miller44b25042010-07-02 13:35:01 +1000749 }
750 }
751
Damien Miller874d77b2000-10-14 16:23:11 +1100752 if (!ok) {
Damien Miller9eab9562009-02-22 08:47:02 +1100753 fprintf(stderr, "key write failed\n");
Damien Miller874d77b2000-10-14 16:23:11 +1100754 exit(1);
755 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000756 sshkey_free(k);
Damien Millereba71ba2000-04-29 23:57:08 +1000757 exit(0);
758}
Damien Miller1f0311c2014-05-15 14:24:09 +1000759#endif
Damien Millereba71ba2000-04-29 23:57:08 +1000760
Ben Lindstrombba81212001-06-25 05:01:22 +0000761static void
Damien Millereba71ba2000-04-29 23:57:08 +1000762do_print_public(struct passwd *pw)
763{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000764 struct sshkey *prv;
Damien Millereba71ba2000-04-29 23:57:08 +1000765 struct stat st;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000766 int r;
Damien Millereba71ba2000-04-29 23:57:08 +1000767
768 if (!have_identity)
769 ask_filename(pw, "Enter file in which the key is");
770 if (stat(identity_file, &st) < 0) {
771 perror(identity_file);
772 exit(1);
773 }
Ben Lindstromd78ae762001-06-05 20:35:09 +0000774 prv = load_identity(identity_file);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000775 if ((r = sshkey_write(prv, stdout)) != 0)
776 fprintf(stderr, "key_write failed: %s", ssh_err(r));
777 sshkey_free(prv);
Damien Millereba71ba2000-04-29 23:57:08 +1000778 fprintf(stdout, "\n");
779 exit(0);
780}
781
Ben Lindstromcd392282001-07-04 03:44:03 +0000782static void
Damien Miller757f34e2010-08-05 13:05:31 +1000783do_download(struct passwd *pw)
Ben Lindstromcd392282001-07-04 03:44:03 +0000784{
Damien Miller7ea845e2010-02-12 09:21:02 +1100785#ifdef ENABLE_PKCS11
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000786 struct sshkey **keys = NULL;
Damien Miller7ea845e2010-02-12 09:21:02 +1100787 int i, nkeys;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000788 enum sshkey_fp_rep rep;
djm@openbsd.org56d1c832014-12-21 22:27:55 +0000789 int fptype;
Damien Millerec77c952013-01-09 15:58:00 +1100790 char *fp, *ra;
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000791
djm@openbsd.org56d1c832014-12-21 22:27:55 +0000792 fptype = print_bubblebabble ? SSH_DIGEST_SHA1 : fingerprint_hash;
793 rep = print_bubblebabble ? SSH_FP_BUBBLEBABBLE : SSH_FP_DEFAULT;
Damien Miller1422c082013-01-09 16:44:54 +1100794
Damien Miller7ea845e2010-02-12 09:21:02 +1100795 pkcs11_init(0);
796 nkeys = pkcs11_add_provider(pkcs11provider, NULL, &keys);
797 if (nkeys <= 0)
798 fatal("cannot read public key from pkcs11");
799 for (i = 0; i < nkeys; i++) {
Damien Millerec77c952013-01-09 15:58:00 +1100800 if (print_fingerprint) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000801 fp = sshkey_fingerprint(keys[i], fptype, rep);
802 ra = sshkey_fingerprint(keys[i], fingerprint_hash,
Damien Millerec77c952013-01-09 15:58:00 +1100803 SSH_FP_RANDOMART);
djm@openbsd.org9ce86c92015-01-28 22:36:00 +0000804 if (fp == NULL || ra == NULL)
805 fatal("%s: sshkey_fingerprint fail", __func__);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000806 printf("%u %s %s (PKCS11 key)\n", sshkey_size(keys[i]),
807 fp, sshkey_type(keys[i]));
Damien Millerec77c952013-01-09 15:58:00 +1100808 if (log_level >= SYSLOG_LEVEL_VERBOSE)
809 printf("%s\n", ra);
Darren Tuckera627d422013-06-02 07:31:17 +1000810 free(ra);
811 free(fp);
Damien Millerec77c952013-01-09 15:58:00 +1100812 } else {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000813 (void) sshkey_write(keys[i], stdout); /* XXX check */
Damien Millerec77c952013-01-09 15:58:00 +1100814 fprintf(stdout, "\n");
815 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000816 sshkey_free(keys[i]);
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000817 }
Darren Tuckera627d422013-06-02 07:31:17 +1000818 free(keys);
Damien Miller7ea845e2010-02-12 09:21:02 +1100819 pkcs11_terminate();
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000820 exit(0);
Damien Miller7ea845e2010-02-12 09:21:02 +1100821#else
822 fatal("no pkcs11 support");
823#endif /* ENABLE_PKCS11 */
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000824}
Ben Lindstromcd392282001-07-04 03:44:03 +0000825
Ben Lindstrombba81212001-06-25 05:01:22 +0000826static void
Damien Miller10f6f6b1999-11-17 17:29:08 +1100827do_fingerprint(struct passwd *pw)
828{
Damien Miller98c7ad62000-03-09 21:27:49 +1100829 FILE *f;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000830 struct sshkey *public;
Darren Tucker9c16ac92008-06-13 04:40:35 +1000831 char *comment = NULL, *cp, *ep, line[16*1024], *fp, *ra;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000832 int r, i, skip = 0, num = 0, invalid = 1;
833 enum sshkey_fp_rep rep;
djm@openbsd.org56d1c832014-12-21 22:27:55 +0000834 int fptype;
Damien Miller95def091999-11-25 00:26:21 +1100835 struct stat st;
Damien Miller10f6f6b1999-11-17 17:29:08 +1100836
djm@openbsd.org56d1c832014-12-21 22:27:55 +0000837 fptype = print_bubblebabble ? SSH_DIGEST_SHA1 : fingerprint_hash;
838 rep = print_bubblebabble ? SSH_FP_BUBBLEBABBLE : SSH_FP_DEFAULT;
Damien Miller95def091999-11-25 00:26:21 +1100839 if (!have_identity)
840 ask_filename(pw, "Enter file in which the key is");
841 if (stat(identity_file, &st) < 0) {
842 perror(identity_file);
843 exit(1);
844 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000845 if ((r = sshkey_load_public(identity_file, &public, &comment)) != 0)
djm@openbsd.org2285c302015-02-23 22:21:21 +0000846 debug2("Error loading public key \"%s\": %s",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000847 identity_file, ssh_err(r));
848 else {
849 fp = sshkey_fingerprint(public, fptype, rep);
850 ra = sshkey_fingerprint(public, fingerprint_hash,
djm@openbsd.org56d1c832014-12-21 22:27:55 +0000851 SSH_FP_RANDOMART);
djm@openbsd.org9ce86c92015-01-28 22:36:00 +0000852 if (fp == NULL || ra == NULL)
853 fatal("%s: sshkey_fingerprint fail", __func__);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000854 printf("%u %s %s (%s)\n", sshkey_size(public), fp, comment,
855 sshkey_type(public));
Darren Tucker35c45532008-06-13 04:43:15 +1000856 if (log_level >= SYSLOG_LEVEL_VERBOSE)
857 printf("%s\n", ra);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000858 sshkey_free(public);
Darren Tuckera627d422013-06-02 07:31:17 +1000859 free(comment);
860 free(ra);
861 free(fp);
Damien Miller98c7ad62000-03-09 21:27:49 +1100862 exit(0);
863 }
Damien Miller40b59852006-06-13 13:00:25 +1000864 if (comment) {
Darren Tuckera627d422013-06-02 07:31:17 +1000865 free(comment);
Damien Miller40b59852006-06-13 13:00:25 +1000866 comment = NULL;
867 }
Damien Miller98c7ad62000-03-09 21:27:49 +1100868
Damien Millerba3420a2010-06-26 09:39:07 +1000869 if ((f = fopen(identity_file, "r")) == NULL)
870 fatal("%s: %s: %s", __progname, identity_file, strerror(errno));
Damien Miller98c7ad62000-03-09 21:27:49 +1100871
Damien Millerba3420a2010-06-26 09:39:07 +1000872 while (fgets(line, sizeof(line), f)) {
873 if ((cp = strchr(line, '\n')) == NULL) {
874 error("line %d too long: %.40s...",
875 num + 1, line);
876 skip = 1;
877 continue;
Damien Miller95def091999-11-25 00:26:21 +1100878 }
Damien Millerba3420a2010-06-26 09:39:07 +1000879 num++;
880 if (skip) {
881 skip = 0;
882 continue;
883 }
884 *cp = '\0';
885
886 /* Skip leading whitespace, empty and comment lines. */
887 for (cp = line; *cp == ' ' || *cp == '\t'; cp++)
888 ;
889 if (!*cp || *cp == '\n' || *cp == '#')
890 continue;
891 i = strtol(cp, &ep, 10);
892 if (i == 0 || ep == NULL || (*ep != ' ' && *ep != '\t')) {
893 int quoted = 0;
894 comment = cp;
895 for (; *cp && (quoted || (*cp != ' ' &&
896 *cp != '\t')); cp++) {
897 if (*cp == '\\' && cp[1] == '"')
898 cp++; /* Skip both */
899 else if (*cp == '"')
900 quoted = !quoted;
901 }
902 if (!*cp)
903 continue;
904 *cp++ = '\0';
905 }
906 ep = cp;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000907 if ((public = sshkey_new(KEY_RSA1)) == NULL)
908 fatal("sshkey_new failed");
909 if ((r = sshkey_read(public, &cp)) != 0) {
Damien Millerba3420a2010-06-26 09:39:07 +1000910 cp = ep;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000911 sshkey_free(public);
912 if ((public = sshkey_new(KEY_UNSPEC)) == NULL)
913 fatal("sshkey_new failed");
914 if ((r = sshkey_read(public, &cp)) != 0) {
915 sshkey_free(public);
Damien Millerba3420a2010-06-26 09:39:07 +1000916 continue;
917 }
918 }
919 comment = *cp ? cp : comment;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000920 fp = sshkey_fingerprint(public, fptype, rep);
921 ra = sshkey_fingerprint(public, fingerprint_hash,
djm@openbsd.org56d1c832014-12-21 22:27:55 +0000922 SSH_FP_RANDOMART);
djm@openbsd.org9ce86c92015-01-28 22:36:00 +0000923 if (fp == NULL || ra == NULL)
924 fatal("%s: sshkey_fingerprint fail", __func__);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000925 printf("%u %s %s (%s)\n", sshkey_size(public), fp,
926 comment ? comment : "no comment", sshkey_type(public));
Damien Millerba3420a2010-06-26 09:39:07 +1000927 if (log_level >= SYSLOG_LEVEL_VERBOSE)
928 printf("%s\n", ra);
Darren Tuckera627d422013-06-02 07:31:17 +1000929 free(ra);
930 free(fp);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000931 sshkey_free(public);
Damien Millerba3420a2010-06-26 09:39:07 +1000932 invalid = 0;
Damien Miller95def091999-11-25 00:26:21 +1100933 }
Damien Millerba3420a2010-06-26 09:39:07 +1000934 fclose(f);
935
Damien Miller98c7ad62000-03-09 21:27:49 +1100936 if (invalid) {
Damien Millereb5fec62001-11-12 10:52:44 +1100937 printf("%s is not a public key file.\n", identity_file);
Damien Miller98c7ad62000-03-09 21:27:49 +1100938 exit(1);
939 }
Damien Miller95def091999-11-25 00:26:21 +1100940 exit(0);
Damien Miller10f6f6b1999-11-17 17:29:08 +1100941}
942
Damien Miller4b42d7f2005-03-01 21:48:35 +1100943static void
Damien Miller58f1baf2011-05-05 14:06:15 +1000944do_gen_all_hostkeys(struct passwd *pw)
945{
946 struct {
947 char *key_type;
948 char *key_type_display;
949 char *path;
950 } key_types[] = {
djm@openbsd.org5c27e3b2015-03-23 06:06:38 +0000951#ifdef WITH_OPENSSL
952#ifdef WITH_SSH1
Damien Miller58f1baf2011-05-05 14:06:15 +1000953 { "rsa1", "RSA1", _PATH_HOST_KEY_FILE },
djm@openbsd.org5c27e3b2015-03-23 06:06:38 +0000954#endif /* WITH_SSH1 */
Damien Miller58f1baf2011-05-05 14:06:15 +1000955 { "rsa", "RSA" ,_PATH_HOST_RSA_KEY_FILE },
956 { "dsa", "DSA", _PATH_HOST_DSA_KEY_FILE },
Damien Millerb56e4932012-02-06 07:41:27 +1100957#ifdef OPENSSL_HAS_ECC
Damien Miller58f1baf2011-05-05 14:06:15 +1000958 { "ecdsa", "ECDSA",_PATH_HOST_ECDSA_KEY_FILE },
djm@openbsd.org5c27e3b2015-03-23 06:06:38 +0000959#endif /* OPENSSL_HAS_ECC */
960#endif /* WITH_OPENSSL */
Damien Miller5be9d9e2013-12-07 11:24:01 +1100961 { "ed25519", "ED25519",_PATH_HOST_ED25519_KEY_FILE },
Damien Miller58f1baf2011-05-05 14:06:15 +1000962 { NULL, NULL, NULL }
963 };
964
965 int first = 0;
966 struct stat st;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000967 struct sshkey *private, *public;
Damien Miller58f1baf2011-05-05 14:06:15 +1000968 char comment[1024];
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000969 int i, type, fd, r;
Damien Miller58f1baf2011-05-05 14:06:15 +1000970 FILE *f;
971
972 for (i = 0; key_types[i].key_type; i++) {
973 if (stat(key_types[i].path, &st) == 0)
974 continue;
975 if (errno != ENOENT) {
976 printf("Could not stat %s: %s", key_types[i].path,
977 strerror(errno));
978 first = 0;
979 continue;
980 }
981
982 if (first == 0) {
983 first = 1;
984 printf("%s: generating new host keys: ", __progname);
985 }
986 printf("%s ", key_types[i].key_type_display);
987 fflush(stdout);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000988 type = sshkey_type_from_name(key_types[i].key_type);
Damien Miller58f1baf2011-05-05 14:06:15 +1000989 strlcpy(identity_file, key_types[i].path, sizeof(identity_file));
990 bits = 0;
djm@openbsd.org7efb4552015-01-18 13:22:28 +0000991 type_bits_valid(type, NULL, &bits);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000992 if ((r = sshkey_generate(type, bits, &private)) != 0) {
993 fprintf(stderr, "key_generate failed: %s\n",
994 ssh_err(r));
Damien Miller58f1baf2011-05-05 14:06:15 +1000995 first = 0;
996 continue;
997 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000998 if ((r = sshkey_from_private(private, &public)) != 0)
999 fatal("sshkey_from_private failed: %s", ssh_err(r));
Damien Miller58f1baf2011-05-05 14:06:15 +10001000 snprintf(comment, sizeof comment, "%s@%s", pw->pw_name,
1001 hostname);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001002 if ((r = sshkey_save_private(private, identity_file, "",
1003 comment, use_new_format, new_format_cipher, rounds)) != 0) {
1004 printf("Saving key \"%s\" failed: %s\n", identity_file,
1005 ssh_err(r));
1006 sshkey_free(private);
1007 sshkey_free(public);
Damien Miller58f1baf2011-05-05 14:06:15 +10001008 first = 0;
1009 continue;
1010 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001011 sshkey_free(private);
Damien Miller58f1baf2011-05-05 14:06:15 +10001012 strlcat(identity_file, ".pub", sizeof(identity_file));
1013 fd = open(identity_file, O_WRONLY | O_CREAT | O_TRUNC, 0644);
1014 if (fd == -1) {
1015 printf("Could not save your public key in %s\n",
1016 identity_file);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001017 sshkey_free(public);
Damien Miller58f1baf2011-05-05 14:06:15 +10001018 first = 0;
1019 continue;
1020 }
1021 f = fdopen(fd, "w");
1022 if (f == NULL) {
1023 printf("fdopen %s failed\n", identity_file);
doug@openbsd.org7df88182014-08-21 01:08:52 +00001024 close(fd);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001025 sshkey_free(public);
Damien Miller58f1baf2011-05-05 14:06:15 +10001026 first = 0;
1027 continue;
1028 }
djm@openbsd.orgbb8b4422015-01-16 15:55:07 +00001029 if ((r = sshkey_write(public, f)) != 0) {
1030 fprintf(stderr, "write key failed: %s\n", ssh_err(r));
doug@openbsd.org7df88182014-08-21 01:08:52 +00001031 fclose(f);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001032 sshkey_free(public);
Damien Miller58f1baf2011-05-05 14:06:15 +10001033 first = 0;
1034 continue;
1035 }
1036 fprintf(f, " %s\n", comment);
1037 fclose(f);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001038 sshkey_free(public);
Damien Miller58f1baf2011-05-05 14:06:15 +10001039
1040 }
1041 if (first != 0)
1042 printf("\n");
1043}
1044
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001045struct known_hosts_ctx {
djm@openbsd.org2b3c3c72015-01-18 21:51:19 +00001046 const char *host; /* Hostname searched for in find/delete case */
1047 FILE *out; /* Output file, stdout for find_hosts case */
1048 int has_unhashed; /* When hashing, original had unhashed hosts */
1049 int found_key; /* For find/delete, host was found */
1050 int invalid; /* File contained invalid items; don't delete */
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001051};
1052
1053static int
1054known_hosts_hash(struct hostkey_foreach_line *l, void *_ctx)
Damien Miller4b42d7f2005-03-01 21:48:35 +11001055{
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001056 struct known_hosts_ctx *ctx = (struct known_hosts_ctx *)_ctx;
1057 char *hashed, *cp, *hosts, *ohosts;
1058 int has_wild = l->hosts && strcspn(l->hosts, "*?!") != strlen(l->hosts);
Darren Tucker0f7e9102008-06-08 12:54:29 +10001059
djm@openbsd.org6c5c9492015-02-16 22:08:57 +00001060 switch (l->status) {
1061 case HKF_STATUS_OK:
1062 case HKF_STATUS_MATCHED:
1063 /*
1064 * Don't hash hosts already already hashed, with wildcard
1065 * characters or a CA/revocation marker.
1066 */
1067 if ((l->match & HKF_MATCH_HOST_HASHED) != 0 ||
1068 has_wild || l->marker != MRK_NONE) {
1069 fprintf(ctx->out, "%s\n", l->line);
1070 if (has_wild && !find_host) {
1071 fprintf(stderr, "%s:%ld: ignoring host name "
1072 "with wildcard: %.64s\n", l->path,
1073 l->linenum, l->hosts);
1074 }
1075 return 0;
1076 }
1077 /*
1078 * Split any comma-separated hostnames from the host list,
1079 * hash and store separately.
1080 */
1081 ohosts = hosts = xstrdup(l->hosts);
1082 while ((cp = strsep(&hosts, ",")) != NULL && *cp != '\0') {
1083 if ((hashed = host_hash(cp, NULL, 0)) == NULL)
1084 fatal("hash_host failed");
1085 fprintf(ctx->out, "%s %s\n", hashed, l->rawkey);
1086 ctx->has_unhashed = 1;
1087 }
1088 free(ohosts);
1089 return 0;
1090 case HKF_STATUS_INVALID:
1091 /* Retain invalid lines, but mark file as invalid. */
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001092 ctx->invalid = 1;
1093 fprintf(stderr, "%s:%ld: invalid line\n", l->path, l->linenum);
djm@openbsd.org6c5c9492015-02-16 22:08:57 +00001094 /* FALLTHROUGH */
1095 default:
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001096 fprintf(ctx->out, "%s\n", l->line);
1097 return 0;
Darren Tucker0f7e9102008-06-08 12:54:29 +10001098 }
djm@openbsd.org6c5c9492015-02-16 22:08:57 +00001099 /* NOTREACHED */
1100 return -1;
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001101}
1102
1103static int
1104known_hosts_find_delete(struct hostkey_foreach_line *l, void *_ctx)
1105{
1106 struct known_hosts_ctx *ctx = (struct known_hosts_ctx *)_ctx;
1107
djm@openbsd.org6c5c9492015-02-16 22:08:57 +00001108 if (l->status == HKF_STATUS_MATCHED) {
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001109 if (delete_host) {
1110 if (l->marker != MRK_NONE) {
1111 /* Don't remove CA and revocation lines */
1112 fprintf(ctx->out, "%s\n", l->line);
1113 } else {
1114 /*
1115 * Hostname matches and has no CA/revoke
1116 * marker, delete it by *not* writing the
1117 * line to ctx->out.
1118 */
1119 ctx->found_key = 1;
1120 if (!quiet)
1121 printf("# Host %s found: line %ld\n",
1122 ctx->host, l->linenum);
1123 }
1124 return 0;
1125 } else if (find_host) {
1126 ctx->found_key = 1;
1127 if (!quiet) {
1128 printf("# Host %s found: line %ld %s\n",
1129 ctx->host,
1130 l->linenum, l->marker == MRK_CA ? "CA" :
1131 (l->marker == MRK_REVOKE ? "REVOKED" : ""));
1132 }
1133 if (hash_hosts)
1134 known_hosts_hash(l, ctx);
1135 else
1136 fprintf(ctx->out, "%s\n", l->line);
1137 return 0;
1138 }
1139 } else if (delete_host) {
1140 /* Retain non-matching hosts when deleting */
1141 if (l->status == HKF_STATUS_INVALID) {
1142 ctx->invalid = 1;
1143 fprintf(stderr, "%s:%ld: invalid line\n",
1144 l->path, l->linenum);
1145 }
1146 fprintf(ctx->out, "%s\n", l->line);
1147 }
1148 return 0;
Damien Miller4b42d7f2005-03-01 21:48:35 +11001149}
1150
1151static void
1152do_known_hosts(struct passwd *pw, const char *name)
1153{
deraadt@openbsd.orgd2099de2015-01-19 00:32:54 +00001154 char *cp, tmp[PATH_MAX], old[PATH_MAX];
djm@openbsd.org2b3c3c72015-01-18 21:51:19 +00001155 int r, fd, oerrno, inplace = 0;
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001156 struct known_hosts_ctx ctx;
Damien Miller4b42d7f2005-03-01 21:48:35 +11001157
1158 if (!have_identity) {
1159 cp = tilde_expand_filename(_PATH_SSH_USER_HOSTFILE, pw->pw_uid);
1160 if (strlcpy(identity_file, cp, sizeof(identity_file)) >=
1161 sizeof(identity_file))
1162 fatal("Specified known hosts path too long");
Darren Tuckera627d422013-06-02 07:31:17 +10001163 free(cp);
Damien Miller4b42d7f2005-03-01 21:48:35 +11001164 have_identity = 1;
1165 }
Damien Miller4b42d7f2005-03-01 21:48:35 +11001166
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001167 memset(&ctx, 0, sizeof(ctx));
1168 ctx.out = stdout;
1169 ctx.host = name;
1170
Damien Miller4b42d7f2005-03-01 21:48:35 +11001171 /*
1172 * Find hosts goes to stdout, hash and deletions happen in-place
1173 * A corner case is ssh-keygen -HF foo, which should go to stdout
1174 */
1175 if (!find_host && (hash_hosts || delete_host)) {
1176 if (strlcpy(tmp, identity_file, sizeof(tmp)) >= sizeof(tmp) ||
1177 strlcat(tmp, ".XXXXXXXXXX", sizeof(tmp)) >= sizeof(tmp) ||
1178 strlcpy(old, identity_file, sizeof(old)) >= sizeof(old) ||
1179 strlcat(old, ".old", sizeof(old)) >= sizeof(old))
1180 fatal("known_hosts path too long");
1181 umask(077);
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001182 if ((fd = mkstemp(tmp)) == -1)
Damien Miller4b42d7f2005-03-01 21:48:35 +11001183 fatal("mkstemp: %s", strerror(errno));
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001184 if ((ctx.out = fdopen(fd, "w")) == NULL) {
1185 oerrno = errno;
Damien Miller4b42d7f2005-03-01 21:48:35 +11001186 unlink(tmp);
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001187 fatal("fdopen: %s", strerror(oerrno));
Damien Miller4b42d7f2005-03-01 21:48:35 +11001188 }
djm@openbsd.org2b3c3c72015-01-18 21:51:19 +00001189 inplace = 1;
Damien Miller4b42d7f2005-03-01 21:48:35 +11001190 }
1191
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001192 /* XXX support identity_file == "-" for stdin */
1193 if ((r = hostkeys_foreach(identity_file,
1194 hash_hosts ? known_hosts_hash : known_hosts_find_delete, &ctx,
djm@openbsd.org6c5c9492015-02-16 22:08:57 +00001195 name, NULL, find_host ? HKF_WANT_MATCH : 0)) != 0)
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001196 fatal("%s: hostkeys_foreach failed: %s", __func__, ssh_err(r));
Damien Miller4b42d7f2005-03-01 21:48:35 +11001197
djm@openbsd.org2b3c3c72015-01-18 21:51:19 +00001198 if (inplace)
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001199 fclose(ctx.out);
Damien Miller0a80ca12010-02-27 07:55:05 +11001200
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001201 if (ctx.invalid) {
Damien Millercb2fbb22008-02-10 22:24:55 +11001202 fprintf(stderr, "%s is not a valid known_hosts file.\n",
Damien Miller4b42d7f2005-03-01 21:48:35 +11001203 identity_file);
djm@openbsd.org2b3c3c72015-01-18 21:51:19 +00001204 if (inplace) {
Damien Miller4b42d7f2005-03-01 21:48:35 +11001205 fprintf(stderr, "Not replacing existing known_hosts "
Darren Tucker9f438a92005-03-14 23:09:18 +11001206 "file because of errors\n");
Damien Miller4b42d7f2005-03-01 21:48:35 +11001207 unlink(tmp);
1208 }
1209 exit(1);
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001210 } else if (delete_host && !ctx.found_key) {
1211 fprintf(stderr, "Host %s not found in %s\n",
1212 name, identity_file);
1213 unlink(tmp);
djm@openbsd.org2b3c3c72015-01-18 21:51:19 +00001214 } else if (inplace) {
Damien Miller4b42d7f2005-03-01 21:48:35 +11001215 /* Backup existing file */
1216 if (unlink(old) == -1 && errno != ENOENT)
1217 fatal("unlink %.100s: %s", old, strerror(errno));
1218 if (link(identity_file, old) == -1)
1219 fatal("link %.100s to %.100s: %s", identity_file, old,
1220 strerror(errno));
1221 /* Move new one into place */
1222 if (rename(tmp, identity_file) == -1) {
1223 error("rename\"%s\" to \"%s\": %s", tmp, identity_file,
1224 strerror(errno));
1225 unlink(tmp);
1226 unlink(old);
1227 exit(1);
1228 }
1229
1230 fprintf(stderr, "%s updated.\n", identity_file);
1231 fprintf(stderr, "Original contents retained as %s\n", old);
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001232 if (ctx.has_unhashed) {
Damien Miller4b42d7f2005-03-01 21:48:35 +11001233 fprintf(stderr, "WARNING: %s contains unhashed "
1234 "entries\n", old);
1235 fprintf(stderr, "Delete this file to ensure privacy "
Damien Miller0dc1bef2005-07-17 17:22:45 +10001236 "of hostnames\n");
Damien Miller4b42d7f2005-03-01 21:48:35 +11001237 }
1238 }
1239
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001240 exit (find_host && !ctx.found_key);
Damien Miller4b42d7f2005-03-01 21:48:35 +11001241}
1242
Damien Miller95def091999-11-25 00:26:21 +11001243/*
1244 * Perform changing a passphrase. The argument is the passwd structure
1245 * for the current user.
1246 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001247static void
Damien Miller10f6f6b1999-11-17 17:29:08 +11001248do_change_passphrase(struct passwd *pw)
1249{
Damien Miller95def091999-11-25 00:26:21 +11001250 char *comment;
1251 char *old_passphrase, *passphrase1, *passphrase2;
1252 struct stat st;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001253 struct sshkey *private;
1254 int r;
Damien Miller10f6f6b1999-11-17 17:29:08 +11001255
Damien Miller95def091999-11-25 00:26:21 +11001256 if (!have_identity)
1257 ask_filename(pw, "Enter file in which the key is");
Damien Miller95def091999-11-25 00:26:21 +11001258 if (stat(identity_file, &st) < 0) {
1259 perror(identity_file);
1260 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001261 }
Damien Miller95def091999-11-25 00:26:21 +11001262 /* Try to load the file with empty passphrase. */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001263 r = sshkey_load_private(identity_file, "", &private, &comment);
1264 if (r == SSH_ERR_KEY_WRONG_PASSPHRASE) {
Damien Miller95def091999-11-25 00:26:21 +11001265 if (identity_passphrase)
1266 old_passphrase = xstrdup(identity_passphrase);
1267 else
Ben Lindstrom949974b2001-06-25 05:20:31 +00001268 old_passphrase =
1269 read_passphrase("Enter old passphrase: ",
1270 RP_ALLOW_STDIN);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001271 r = sshkey_load_private(identity_file, old_passphrase,
1272 &private, &comment);
Damien Millera5103f42014-02-04 11:20:14 +11001273 explicit_bzero(old_passphrase, strlen(old_passphrase));
Darren Tuckera627d422013-06-02 07:31:17 +10001274 free(old_passphrase);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001275 if (r != 0)
1276 goto badkey;
1277 } else if (r != 0) {
1278 badkey:
1279 fprintf(stderr, "Failed to load key \"%s\": %s\n",
1280 identity_file, ssh_err(r));
1281 exit(1);
Damien Miller95def091999-11-25 00:26:21 +11001282 }
djm@openbsd.orgf43d1722015-02-26 20:45:47 +00001283 if (comment)
1284 printf("Key has comment '%s'\n", comment);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001285
Damien Miller95def091999-11-25 00:26:21 +11001286 /* Ask the new passphrase (twice). */
1287 if (identity_new_passphrase) {
1288 passphrase1 = xstrdup(identity_new_passphrase);
1289 passphrase2 = NULL;
1290 } else {
1291 passphrase1 =
Ben Lindstrom949974b2001-06-25 05:20:31 +00001292 read_passphrase("Enter new passphrase (empty for no "
1293 "passphrase): ", RP_ALLOW_STDIN);
1294 passphrase2 = read_passphrase("Enter same passphrase again: ",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001295 RP_ALLOW_STDIN);
Damien Miller95def091999-11-25 00:26:21 +11001296
1297 /* Verify that they are the same. */
1298 if (strcmp(passphrase1, passphrase2) != 0) {
Damien Millera5103f42014-02-04 11:20:14 +11001299 explicit_bzero(passphrase1, strlen(passphrase1));
1300 explicit_bzero(passphrase2, strlen(passphrase2));
Darren Tuckera627d422013-06-02 07:31:17 +10001301 free(passphrase1);
1302 free(passphrase2);
Damien Miller95def091999-11-25 00:26:21 +11001303 printf("Pass phrases do not match. Try again.\n");
1304 exit(1);
1305 }
1306 /* Destroy the other copy. */
Damien Millera5103f42014-02-04 11:20:14 +11001307 explicit_bzero(passphrase2, strlen(passphrase2));
Darren Tuckera627d422013-06-02 07:31:17 +10001308 free(passphrase2);
Damien Miller95def091999-11-25 00:26:21 +11001309 }
1310
1311 /* Save the file using the new passphrase. */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001312 if ((r = sshkey_save_private(private, identity_file, passphrase1,
1313 comment, use_new_format, new_format_cipher, rounds)) != 0) {
1314 printf("Saving key \"%s\" failed: %s.\n",
1315 identity_file, ssh_err(r));
Damien Millera5103f42014-02-04 11:20:14 +11001316 explicit_bzero(passphrase1, strlen(passphrase1));
Darren Tuckera627d422013-06-02 07:31:17 +10001317 free(passphrase1);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001318 sshkey_free(private);
Darren Tuckera627d422013-06-02 07:31:17 +10001319 free(comment);
Damien Miller95def091999-11-25 00:26:21 +11001320 exit(1);
1321 }
1322 /* Destroy the passphrase and the copy of the key in memory. */
Damien Millera5103f42014-02-04 11:20:14 +11001323 explicit_bzero(passphrase1, strlen(passphrase1));
Darren Tuckera627d422013-06-02 07:31:17 +10001324 free(passphrase1);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001325 sshkey_free(private); /* Destroys contents */
Darren Tuckera627d422013-06-02 07:31:17 +10001326 free(comment);
Damien Miller95def091999-11-25 00:26:21 +11001327
1328 printf("Your identification has been saved with the new passphrase.\n");
1329 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001330}
1331
Damien Miller37876e92003-05-15 10:19:46 +10001332/*
1333 * Print the SSHFP RR.
1334 */
Damien Millercb314822006-03-26 13:48:01 +11001335static int
1336do_print_resource_record(struct passwd *pw, char *fname, char *hname)
Damien Miller37876e92003-05-15 10:19:46 +10001337{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001338 struct sshkey *public;
Damien Miller37876e92003-05-15 10:19:46 +10001339 char *comment = NULL;
1340 struct stat st;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001341 int r;
Damien Miller37876e92003-05-15 10:19:46 +10001342
Damien Millercb314822006-03-26 13:48:01 +11001343 if (fname == NULL)
Damien Miller5bb88332013-07-18 16:13:37 +10001344 fatal("%s: no filename", __func__);
Damien Millercb314822006-03-26 13:48:01 +11001345 if (stat(fname, &st) < 0) {
1346 if (errno == ENOENT)
1347 return 0;
1348 perror(fname);
Damien Miller37876e92003-05-15 10:19:46 +10001349 exit(1);
1350 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001351 if ((r = sshkey_load_public(fname, &public, &comment)) != 0) {
1352 printf("Failed to read v2 public key from \"%s\": %s.\n",
1353 fname, ssh_err(r));
1354 exit(1);
Damien Miller37876e92003-05-15 10:19:46 +10001355 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001356 export_dns_rr(hname, public, stdout, print_generic);
1357 sshkey_free(public);
1358 free(comment);
1359 return 1;
Damien Miller37876e92003-05-15 10:19:46 +10001360}
Damien Miller37876e92003-05-15 10:19:46 +10001361
Damien Miller95def091999-11-25 00:26:21 +11001362/*
1363 * Change the comment of a private key file.
1364 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001365static void
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001366do_change_comment(struct passwd *pw)
1367{
Ben Lindstrom5fc62702001-03-09 18:19:24 +00001368 char new_comment[1024], *comment, *passphrase;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001369 struct sshkey *private;
1370 struct sshkey *public;
Damien Miller95def091999-11-25 00:26:21 +11001371 struct stat st;
1372 FILE *f;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001373 int r, fd;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001374
Damien Miller95def091999-11-25 00:26:21 +11001375 if (!have_identity)
1376 ask_filename(pw, "Enter file in which the key is");
Damien Miller95def091999-11-25 00:26:21 +11001377 if (stat(identity_file, &st) < 0) {
1378 perror(identity_file);
1379 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001380 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001381 if ((r = sshkey_load_private(identity_file, "",
1382 &private, &comment)) == 0)
1383 passphrase = xstrdup("");
1384 else if (r != SSH_ERR_KEY_WRONG_PASSPHRASE) {
1385 printf("Cannot load private key \"%s\": %s.\n",
1386 identity_file, ssh_err(r));
1387 exit(1);
1388 } else {
Damien Miller95def091999-11-25 00:26:21 +11001389 if (identity_passphrase)
1390 passphrase = xstrdup(identity_passphrase);
1391 else if (identity_new_passphrase)
1392 passphrase = xstrdup(identity_new_passphrase);
1393 else
Ben Lindstrom949974b2001-06-25 05:20:31 +00001394 passphrase = read_passphrase("Enter passphrase: ",
1395 RP_ALLOW_STDIN);
Damien Miller95def091999-11-25 00:26:21 +11001396 /* Try to load using the passphrase. */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001397 if ((r = sshkey_load_private(identity_file, passphrase,
1398 &private, &comment)) != 0) {
Damien Millera5103f42014-02-04 11:20:14 +11001399 explicit_bzero(passphrase, strlen(passphrase));
Darren Tuckera627d422013-06-02 07:31:17 +10001400 free(passphrase);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001401 printf("Cannot load private key \"%s\": %s.\n",
1402 identity_file, ssh_err(r));
Damien Miller95def091999-11-25 00:26:21 +11001403 exit(1);
1404 }
1405 }
Ben Lindstromd0fca422001-03-26 13:44:06 +00001406 if (private->type != KEY_RSA1) {
1407 fprintf(stderr, "Comments are only supported for RSA1 keys.\n");
tobias@openbsd.org704d8c82015-03-31 11:06:49 +00001408 explicit_bzero(passphrase, strlen(passphrase));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001409 sshkey_free(private);
Ben Lindstromd0fca422001-03-26 13:44:06 +00001410 exit(1);
Damien Miller9f0f5c62001-12-21 14:45:46 +11001411 }
Damien Miller95def091999-11-25 00:26:21 +11001412 printf("Key now has comment '%s'\n", comment);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001413
Damien Miller95def091999-11-25 00:26:21 +11001414 if (identity_comment) {
1415 strlcpy(new_comment, identity_comment, sizeof(new_comment));
1416 } else {
1417 printf("Enter new comment: ");
1418 fflush(stdout);
1419 if (!fgets(new_comment, sizeof(new_comment), stdin)) {
Damien Millera5103f42014-02-04 11:20:14 +11001420 explicit_bzero(passphrase, strlen(passphrase));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001421 sshkey_free(private);
Damien Miller95def091999-11-25 00:26:21 +11001422 exit(1);
1423 }
Damien Miller14b017d2007-09-17 16:09:15 +10001424 new_comment[strcspn(new_comment, "\n")] = '\0';
Damien Miller95def091999-11-25 00:26:21 +11001425 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001426
Damien Miller95def091999-11-25 00:26:21 +11001427 /* Save the file using the new passphrase. */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001428 if ((r = sshkey_save_private(private, identity_file, passphrase,
1429 new_comment, use_new_format, new_format_cipher, rounds)) != 0) {
1430 printf("Saving key \"%s\" failed: %s\n",
1431 identity_file, ssh_err(r));
Damien Millera5103f42014-02-04 11:20:14 +11001432 explicit_bzero(passphrase, strlen(passphrase));
Darren Tuckera627d422013-06-02 07:31:17 +10001433 free(passphrase);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001434 sshkey_free(private);
Darren Tuckera627d422013-06-02 07:31:17 +10001435 free(comment);
Damien Miller95def091999-11-25 00:26:21 +11001436 exit(1);
1437 }
Damien Millera5103f42014-02-04 11:20:14 +11001438 explicit_bzero(passphrase, strlen(passphrase));
Darren Tuckera627d422013-06-02 07:31:17 +10001439 free(passphrase);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001440 if ((r = sshkey_from_private(private, &public)) != 0)
1441 fatal("key_from_private failed: %s", ssh_err(r));
1442 sshkey_free(private);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001443
Damien Miller95def091999-11-25 00:26:21 +11001444 strlcat(identity_file, ".pub", sizeof(identity_file));
Ben Lindstrom5fc62702001-03-09 18:19:24 +00001445 fd = open(identity_file, O_WRONLY | O_CREAT | O_TRUNC, 0644);
1446 if (fd == -1) {
Damien Miller95def091999-11-25 00:26:21 +11001447 printf("Could not save your public key in %s\n", identity_file);
1448 exit(1);
1449 }
Ben Lindstrom5fc62702001-03-09 18:19:24 +00001450 f = fdopen(fd, "w");
1451 if (f == NULL) {
Damien Miller9eab9562009-02-22 08:47:02 +11001452 printf("fdopen %s failed\n", identity_file);
Ben Lindstrom5fc62702001-03-09 18:19:24 +00001453 exit(1);
1454 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001455 if ((r = sshkey_write(public, f)) != 0)
1456 fprintf(stderr, "write key failed: %s\n", ssh_err(r));
1457 sshkey_free(public);
Damien Millereba71ba2000-04-29 23:57:08 +10001458 fprintf(f, " %s\n", new_comment);
Damien Miller95def091999-11-25 00:26:21 +11001459 fclose(f);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001460
Darren Tuckera627d422013-06-02 07:31:17 +10001461 free(comment);
Damien Miller95def091999-11-25 00:26:21 +11001462
1463 printf("The comment in your key file has been changed.\n");
1464 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001465}
1466
Damien Miller0a80ca12010-02-27 07:55:05 +11001467static const char *
Damien Millerf2b70ca2010-03-05 07:39:35 +11001468fmt_validity(u_int64_t valid_from, u_int64_t valid_to)
Damien Miller0a80ca12010-02-27 07:55:05 +11001469{
1470 char from[32], to[32];
1471 static char ret[64];
1472 time_t tt;
1473 struct tm *tm;
1474
1475 *from = *to = '\0';
Damien Millerf2b70ca2010-03-05 07:39:35 +11001476 if (valid_from == 0 && valid_to == 0xffffffffffffffffULL)
Damien Miller0a80ca12010-02-27 07:55:05 +11001477 return "forever";
1478
Damien Millerf2b70ca2010-03-05 07:39:35 +11001479 if (valid_from != 0) {
Damien Miller0a80ca12010-02-27 07:55:05 +11001480 /* XXX revisit INT_MAX in 2038 :) */
Damien Millerf2b70ca2010-03-05 07:39:35 +11001481 tt = valid_from > INT_MAX ? INT_MAX : valid_from;
Damien Miller0a80ca12010-02-27 07:55:05 +11001482 tm = localtime(&tt);
1483 strftime(from, sizeof(from), "%Y-%m-%dT%H:%M:%S", tm);
1484 }
Damien Millerf2b70ca2010-03-05 07:39:35 +11001485 if (valid_to != 0xffffffffffffffffULL) {
Damien Miller0a80ca12010-02-27 07:55:05 +11001486 /* XXX revisit INT_MAX in 2038 :) */
Damien Millerf2b70ca2010-03-05 07:39:35 +11001487 tt = valid_to > INT_MAX ? INT_MAX : valid_to;
Damien Miller0a80ca12010-02-27 07:55:05 +11001488 tm = localtime(&tt);
1489 strftime(to, sizeof(to), "%Y-%m-%dT%H:%M:%S", tm);
1490 }
1491
Damien Millerf2b70ca2010-03-05 07:39:35 +11001492 if (valid_from == 0) {
Damien Miller0a80ca12010-02-27 07:55:05 +11001493 snprintf(ret, sizeof(ret), "before %s", to);
1494 return ret;
1495 }
Damien Millerf2b70ca2010-03-05 07:39:35 +11001496 if (valid_to == 0xffffffffffffffffULL) {
Damien Miller0a80ca12010-02-27 07:55:05 +11001497 snprintf(ret, sizeof(ret), "after %s", from);
1498 return ret;
1499 }
1500
1501 snprintf(ret, sizeof(ret), "from %s to %s", from, to);
1502 return ret;
1503}
1504
1505static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001506add_flag_option(struct sshbuf *c, const char *name)
Damien Miller0a80ca12010-02-27 07:55:05 +11001507{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001508 int r;
1509
Damien Miller0a80ca12010-02-27 07:55:05 +11001510 debug3("%s: %s", __func__, name);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001511 if ((r = sshbuf_put_cstring(c, name)) != 0 ||
1512 (r = sshbuf_put_string(c, NULL, 0)) != 0)
1513 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Miller0a80ca12010-02-27 07:55:05 +11001514}
1515
1516static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001517add_string_option(struct sshbuf *c, const char *name, const char *value)
Damien Miller0a80ca12010-02-27 07:55:05 +11001518{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001519 struct sshbuf *b;
1520 int r;
Damien Miller0a80ca12010-02-27 07:55:05 +11001521
1522 debug3("%s: %s=%s", __func__, name, value);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001523 if ((b = sshbuf_new()) == NULL)
1524 fatal("%s: sshbuf_new failed", __func__);
1525 if ((r = sshbuf_put_cstring(b, value)) != 0 ||
1526 (r = sshbuf_put_cstring(c, name)) != 0 ||
1527 (r = sshbuf_put_stringb(c, b)) != 0)
1528 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Miller0a80ca12010-02-27 07:55:05 +11001529
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001530 sshbuf_free(b);
Damien Miller0a80ca12010-02-27 07:55:05 +11001531}
1532
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001533#define OPTIONS_CRITICAL 1
1534#define OPTIONS_EXTENSIONS 2
Damien Miller0a80ca12010-02-27 07:55:05 +11001535static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001536prepare_options_buf(struct sshbuf *c, int which)
Damien Miller0a80ca12010-02-27 07:55:05 +11001537{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001538 sshbuf_reset(c);
Damien Miller1da63882010-08-05 13:03:51 +10001539 if ((which & OPTIONS_CRITICAL) != 0 &&
1540 certflags_command != NULL)
1541 add_string_option(c, "force-command", certflags_command);
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001542 if ((which & OPTIONS_EXTENSIONS) != 0 &&
Damien Miller2ce12ef2011-05-05 14:17:18 +10001543 (certflags_flags & CERTOPT_X_FWD) != 0)
1544 add_flag_option(c, "permit-X11-forwarding");
1545 if ((which & OPTIONS_EXTENSIONS) != 0 &&
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001546 (certflags_flags & CERTOPT_AGENT_FWD) != 0)
Damien Miller4e270b02010-04-16 15:56:21 +10001547 add_flag_option(c, "permit-agent-forwarding");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001548 if ((which & OPTIONS_EXTENSIONS) != 0 &&
1549 (certflags_flags & CERTOPT_PORT_FWD) != 0)
Damien Miller4e270b02010-04-16 15:56:21 +10001550 add_flag_option(c, "permit-port-forwarding");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001551 if ((which & OPTIONS_EXTENSIONS) != 0 &&
1552 (certflags_flags & CERTOPT_PTY) != 0)
Damien Miller4e270b02010-04-16 15:56:21 +10001553 add_flag_option(c, "permit-pty");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001554 if ((which & OPTIONS_EXTENSIONS) != 0 &&
1555 (certflags_flags & CERTOPT_USER_RC) != 0)
Damien Miller4e270b02010-04-16 15:56:21 +10001556 add_flag_option(c, "permit-user-rc");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001557 if ((which & OPTIONS_CRITICAL) != 0 &&
1558 certflags_src_addr != NULL)
1559 add_string_option(c, "source-address", certflags_src_addr);
Damien Miller0a80ca12010-02-27 07:55:05 +11001560}
1561
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001562static struct sshkey *
Damien Miller757f34e2010-08-05 13:05:31 +10001563load_pkcs11_key(char *path)
1564{
1565#ifdef ENABLE_PKCS11
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001566 struct sshkey **keys = NULL, *public, *private = NULL;
1567 int r, i, nkeys;
Damien Miller757f34e2010-08-05 13:05:31 +10001568
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001569 if ((r = sshkey_load_public(path, &public, NULL)) != 0)
1570 fatal("Couldn't load CA public key \"%s\": %s",
1571 path, ssh_err(r));
Damien Miller757f34e2010-08-05 13:05:31 +10001572
1573 nkeys = pkcs11_add_provider(pkcs11provider, identity_passphrase, &keys);
1574 debug3("%s: %d keys", __func__, nkeys);
1575 if (nkeys <= 0)
1576 fatal("cannot read public key from pkcs11");
1577 for (i = 0; i < nkeys; i++) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001578 if (sshkey_equal_public(public, keys[i])) {
Damien Miller757f34e2010-08-05 13:05:31 +10001579 private = keys[i];
1580 continue;
1581 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001582 sshkey_free(keys[i]);
Damien Miller757f34e2010-08-05 13:05:31 +10001583 }
Darren Tuckera627d422013-06-02 07:31:17 +10001584 free(keys);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001585 sshkey_free(public);
Damien Miller757f34e2010-08-05 13:05:31 +10001586 return private;
1587#else
1588 fatal("no pkcs11 support");
1589#endif /* ENABLE_PKCS11 */
1590}
1591
Damien Miller0a80ca12010-02-27 07:55:05 +11001592static void
1593do_ca_sign(struct passwd *pw, int argc, char **argv)
1594{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001595 int r, i, fd;
Damien Miller0a80ca12010-02-27 07:55:05 +11001596 u_int n;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001597 struct sshkey *ca, *public;
Damien Miller0a80ca12010-02-27 07:55:05 +11001598 char *otmp, *tmp, *cp, *out, *comment, **plist = NULL;
1599 FILE *f;
Damien Miller4e270b02010-04-16 15:56:21 +10001600 int v00 = 0; /* legacy keys */
Damien Miller0a80ca12010-02-27 07:55:05 +11001601
Damien Miller4e270b02010-04-16 15:56:21 +10001602 if (key_type_name != NULL) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001603 switch (sshkey_type_from_name(key_type_name)) {
Damien Miller4e270b02010-04-16 15:56:21 +10001604 case KEY_RSA_CERT_V00:
1605 case KEY_DSA_CERT_V00:
1606 v00 = 1;
1607 break;
1608 case KEY_UNSPEC:
1609 if (strcasecmp(key_type_name, "v00") == 0) {
1610 v00 = 1;
1611 break;
1612 } else if (strcasecmp(key_type_name, "v01") == 0)
1613 break;
1614 /* FALLTHROUGH */
1615 default:
1616 fprintf(stderr, "unknown key type %s\n", key_type_name);
1617 exit(1);
1618 }
1619 }
1620
Damien Miller1f0311c2014-05-15 14:24:09 +10001621#ifdef ENABLE_PKCS11
Damien Miller757f34e2010-08-05 13:05:31 +10001622 pkcs11_init(1);
Damien Miller1f0311c2014-05-15 14:24:09 +10001623#endif
Damien Miller757f34e2010-08-05 13:05:31 +10001624 tmp = tilde_expand_filename(ca_key_path, pw->pw_uid);
1625 if (pkcs11provider != NULL) {
1626 if ((ca = load_pkcs11_key(tmp)) == NULL)
1627 fatal("No PKCS#11 key matching %s found", ca_key_path);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001628 } else
1629 ca = load_identity(tmp);
Darren Tuckera627d422013-06-02 07:31:17 +10001630 free(tmp);
Damien Miller757f34e2010-08-05 13:05:31 +10001631
Damien Miller0a80ca12010-02-27 07:55:05 +11001632 for (i = 0; i < argc; i++) {
1633 /* Split list of principals */
1634 n = 0;
1635 if (cert_principals != NULL) {
1636 otmp = tmp = xstrdup(cert_principals);
1637 plist = NULL;
1638 for (; (cp = strsep(&tmp, ",")) != NULL; n++) {
1639 plist = xrealloc(plist, n + 1, sizeof(*plist));
1640 if (*(plist[n] = xstrdup(cp)) == '\0')
1641 fatal("Empty principal name");
1642 }
Darren Tuckera627d422013-06-02 07:31:17 +10001643 free(otmp);
Damien Miller0a80ca12010-02-27 07:55:05 +11001644 }
1645
1646 tmp = tilde_expand_filename(argv[i], pw->pw_uid);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001647 if ((r = sshkey_load_public(tmp, &public, &comment)) != 0)
1648 fatal("%s: unable to open \"%s\": %s",
1649 __func__, tmp, ssh_err(r));
Damien Millereb8b60e2010-08-31 22:41:14 +10001650 if (public->type != KEY_RSA && public->type != KEY_DSA &&
Damien Miller5be9d9e2013-12-07 11:24:01 +11001651 public->type != KEY_ECDSA && public->type != KEY_ED25519)
Damien Miller0a80ca12010-02-27 07:55:05 +11001652 fatal("%s: key \"%s\" type %s cannot be certified",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001653 __func__, tmp, sshkey_type(public));
Damien Miller0a80ca12010-02-27 07:55:05 +11001654
1655 /* Prepare certificate to sign */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001656 if ((r = sshkey_to_certified(public, v00)) != 0)
1657 fatal("Could not upgrade key %s to certificate: %s",
1658 tmp, ssh_err(r));
Damien Miller0a80ca12010-02-27 07:55:05 +11001659 public->cert->type = cert_key_type;
Damien Miller4e270b02010-04-16 15:56:21 +10001660 public->cert->serial = (u_int64_t)cert_serial;
Damien Miller0a80ca12010-02-27 07:55:05 +11001661 public->cert->key_id = xstrdup(cert_key_id);
1662 public->cert->nprincipals = n;
1663 public->cert->principals = plist;
1664 public->cert->valid_after = cert_valid_from;
1665 public->cert->valid_before = cert_valid_to;
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001666 if (v00) {
Damien Miller86687062014-07-02 15:28:02 +10001667 prepare_options_buf(public->cert->critical,
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001668 OPTIONS_CRITICAL|OPTIONS_EXTENSIONS);
1669 } else {
Damien Miller86687062014-07-02 15:28:02 +10001670 prepare_options_buf(public->cert->critical,
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001671 OPTIONS_CRITICAL);
Damien Miller86687062014-07-02 15:28:02 +10001672 prepare_options_buf(public->cert->extensions,
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001673 OPTIONS_EXTENSIONS);
1674 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001675 if ((r = sshkey_from_private(ca,
1676 &public->cert->signature_key)) != 0)
1677 fatal("key_from_private (ca key): %s", ssh_err(r));
Damien Miller0a80ca12010-02-27 07:55:05 +11001678
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001679 if (sshkey_certify(public, ca) != 0)
Damien Miller0a80ca12010-02-27 07:55:05 +11001680 fatal("Couldn't not certify key %s", tmp);
1681
1682 if ((cp = strrchr(tmp, '.')) != NULL && strcmp(cp, ".pub") == 0)
1683 *cp = '\0';
1684 xasprintf(&out, "%s-cert.pub", tmp);
Darren Tuckera627d422013-06-02 07:31:17 +10001685 free(tmp);
Damien Miller0a80ca12010-02-27 07:55:05 +11001686
1687 if ((fd = open(out, O_WRONLY|O_CREAT|O_TRUNC, 0644)) == -1)
1688 fatal("Could not open \"%s\" for writing: %s", out,
1689 strerror(errno));
1690 if ((f = fdopen(fd, "w")) == NULL)
1691 fatal("%s: fdopen: %s", __func__, strerror(errno));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001692 if ((r = sshkey_write(public, f)) != 0)
1693 fatal("Could not write certified key to %s: %s",
1694 out, ssh_err(r));
Damien Miller0a80ca12010-02-27 07:55:05 +11001695 fprintf(f, " %s\n", comment);
1696 fclose(f);
1697
Damien Miller4e270b02010-04-16 15:56:21 +10001698 if (!quiet) {
1699 logit("Signed %s key %s: id \"%s\" serial %llu%s%s "
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001700 "valid %s", sshkey_cert_type(public),
Damien Miller821de0a2011-01-11 17:20:29 +11001701 out, public->cert->key_id,
1702 (unsigned long long)public->cert->serial,
Damien Miller0a80ca12010-02-27 07:55:05 +11001703 cert_principals != NULL ? " for " : "",
1704 cert_principals != NULL ? cert_principals : "",
Damien Millerf2b70ca2010-03-05 07:39:35 +11001705 fmt_validity(cert_valid_from, cert_valid_to));
Damien Miller4e270b02010-04-16 15:56:21 +10001706 }
Damien Miller0a80ca12010-02-27 07:55:05 +11001707
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001708 sshkey_free(public);
Darren Tuckera627d422013-06-02 07:31:17 +10001709 free(out);
Damien Miller0a80ca12010-02-27 07:55:05 +11001710 }
Damien Miller1f0311c2014-05-15 14:24:09 +10001711#ifdef ENABLE_PKCS11
Damien Miller757f34e2010-08-05 13:05:31 +10001712 pkcs11_terminate();
Damien Miller1f0311c2014-05-15 14:24:09 +10001713#endif
Damien Miller0a80ca12010-02-27 07:55:05 +11001714 exit(0);
1715}
1716
1717static u_int64_t
1718parse_relative_time(const char *s, time_t now)
1719{
1720 int64_t mul, secs;
1721
1722 mul = *s == '-' ? -1 : 1;
1723
1724 if ((secs = convtime(s + 1)) == -1)
1725 fatal("Invalid relative certificate time %s", s);
1726 if (mul == -1 && secs > now)
1727 fatal("Certificate time %s cannot be represented", s);
1728 return now + (u_int64_t)(secs * mul);
1729}
1730
1731static u_int64_t
1732parse_absolute_time(const char *s)
1733{
1734 struct tm tm;
1735 time_t tt;
Damien Miller2ca342b2010-03-03 12:14:15 +11001736 char buf[32], *fmt;
Damien Miller0a80ca12010-02-27 07:55:05 +11001737
Damien Miller2ca342b2010-03-03 12:14:15 +11001738 /*
1739 * POSIX strptime says "The application shall ensure that there
1740 * is white-space or other non-alphanumeric characters between
1741 * any two conversion specifications" so arrange things this way.
1742 */
1743 switch (strlen(s)) {
1744 case 8:
Damien Miller3e1ee492010-03-08 09:24:11 +11001745 fmt = "%Y-%m-%d";
1746 snprintf(buf, sizeof(buf), "%.4s-%.2s-%.2s", s, s + 4, s + 6);
Damien Miller2ca342b2010-03-03 12:14:15 +11001747 break;
1748 case 14:
Damien Miller3e1ee492010-03-08 09:24:11 +11001749 fmt = "%Y-%m-%dT%H:%M:%S";
1750 snprintf(buf, sizeof(buf), "%.4s-%.2s-%.2sT%.2s:%.2s:%.2s",
Damien Miller2ca342b2010-03-03 12:14:15 +11001751 s, s + 4, s + 6, s + 8, s + 10, s + 12);
1752 break;
1753 default:
Damien Miller0a80ca12010-02-27 07:55:05 +11001754 fatal("Invalid certificate time format %s", s);
Damien Miller2ca342b2010-03-03 12:14:15 +11001755 }
Damien Miller0a80ca12010-02-27 07:55:05 +11001756
Damien Miller1d2c4562014-02-04 11:18:20 +11001757 memset(&tm, 0, sizeof(tm));
Damien Miller2ca342b2010-03-03 12:14:15 +11001758 if (strptime(buf, fmt, &tm) == NULL)
Damien Miller0a80ca12010-02-27 07:55:05 +11001759 fatal("Invalid certificate time %s", s);
1760 if ((tt = mktime(&tm)) < 0)
1761 fatal("Certificate time %s cannot be represented", s);
1762 return (u_int64_t)tt;
1763}
1764
1765static void
1766parse_cert_times(char *timespec)
1767{
1768 char *from, *to;
1769 time_t now = time(NULL);
1770 int64_t secs;
1771
1772 /* +timespec relative to now */
1773 if (*timespec == '+' && strchr(timespec, ':') == NULL) {
1774 if ((secs = convtime(timespec + 1)) == -1)
1775 fatal("Invalid relative certificate life %s", timespec);
1776 cert_valid_to = now + secs;
1777 /*
1778 * Backdate certificate one minute to avoid problems on hosts
1779 * with poorly-synchronised clocks.
1780 */
1781 cert_valid_from = ((now - 59)/ 60) * 60;
1782 return;
1783 }
1784
1785 /*
1786 * from:to, where
1787 * from := [+-]timespec | YYYYMMDD | YYYYMMDDHHMMSS
1788 * to := [+-]timespec | YYYYMMDD | YYYYMMDDHHMMSS
1789 */
1790 from = xstrdup(timespec);
1791 to = strchr(from, ':');
1792 if (to == NULL || from == to || *(to + 1) == '\0')
Damien Miller910f2092010-03-04 14:17:22 +11001793 fatal("Invalid certificate life specification %s", timespec);
Damien Miller0a80ca12010-02-27 07:55:05 +11001794 *to++ = '\0';
1795
1796 if (*from == '-' || *from == '+')
1797 cert_valid_from = parse_relative_time(from, now);
1798 else
1799 cert_valid_from = parse_absolute_time(from);
1800
1801 if (*to == '-' || *to == '+')
Damien Miller5b01b0d2013-10-23 16:31:31 +11001802 cert_valid_to = parse_relative_time(to, now);
Damien Miller0a80ca12010-02-27 07:55:05 +11001803 else
1804 cert_valid_to = parse_absolute_time(to);
1805
1806 if (cert_valid_to <= cert_valid_from)
1807 fatal("Empty certificate validity interval");
Darren Tuckera627d422013-06-02 07:31:17 +10001808 free(from);
Damien Miller0a80ca12010-02-27 07:55:05 +11001809}
1810
1811static void
Damien Miller4e270b02010-04-16 15:56:21 +10001812add_cert_option(char *opt)
Damien Miller0a80ca12010-02-27 07:55:05 +11001813{
1814 char *val;
1815
Damien Miller044f4a62011-05-05 14:14:08 +10001816 if (strcasecmp(opt, "clear") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001817 certflags_flags = 0;
Damien Miller0a80ca12010-02-27 07:55:05 +11001818 else if (strcasecmp(opt, "no-x11-forwarding") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001819 certflags_flags &= ~CERTOPT_X_FWD;
Damien Miller0a80ca12010-02-27 07:55:05 +11001820 else if (strcasecmp(opt, "permit-x11-forwarding") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001821 certflags_flags |= CERTOPT_X_FWD;
Damien Miller0a80ca12010-02-27 07:55:05 +11001822 else if (strcasecmp(opt, "no-agent-forwarding") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001823 certflags_flags &= ~CERTOPT_AGENT_FWD;
Damien Miller0a80ca12010-02-27 07:55:05 +11001824 else if (strcasecmp(opt, "permit-agent-forwarding") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001825 certflags_flags |= CERTOPT_AGENT_FWD;
Damien Miller0a80ca12010-02-27 07:55:05 +11001826 else if (strcasecmp(opt, "no-port-forwarding") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001827 certflags_flags &= ~CERTOPT_PORT_FWD;
Damien Miller0a80ca12010-02-27 07:55:05 +11001828 else if (strcasecmp(opt, "permit-port-forwarding") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001829 certflags_flags |= CERTOPT_PORT_FWD;
Damien Miller0a80ca12010-02-27 07:55:05 +11001830 else if (strcasecmp(opt, "no-pty") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001831 certflags_flags &= ~CERTOPT_PTY;
Damien Miller0a80ca12010-02-27 07:55:05 +11001832 else if (strcasecmp(opt, "permit-pty") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001833 certflags_flags |= CERTOPT_PTY;
Damien Miller0a80ca12010-02-27 07:55:05 +11001834 else if (strcasecmp(opt, "no-user-rc") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001835 certflags_flags &= ~CERTOPT_USER_RC;
Damien Miller0a80ca12010-02-27 07:55:05 +11001836 else if (strcasecmp(opt, "permit-user-rc") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001837 certflags_flags |= CERTOPT_USER_RC;
Damien Miller0a80ca12010-02-27 07:55:05 +11001838 else if (strncasecmp(opt, "force-command=", 14) == 0) {
1839 val = opt + 14;
1840 if (*val == '\0')
Damien Miller4e270b02010-04-16 15:56:21 +10001841 fatal("Empty force-command option");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001842 if (certflags_command != NULL)
Damien Miller0a80ca12010-02-27 07:55:05 +11001843 fatal("force-command already specified");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001844 certflags_command = xstrdup(val);
Damien Miller0a80ca12010-02-27 07:55:05 +11001845 } else if (strncasecmp(opt, "source-address=", 15) == 0) {
1846 val = opt + 15;
1847 if (*val == '\0')
Damien Miller4e270b02010-04-16 15:56:21 +10001848 fatal("Empty source-address option");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001849 if (certflags_src_addr != NULL)
Damien Miller0a80ca12010-02-27 07:55:05 +11001850 fatal("source-address already specified");
1851 if (addr_match_cidr_list(NULL, val) != 0)
1852 fatal("Invalid source-address list");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001853 certflags_src_addr = xstrdup(val);
Damien Miller0a80ca12010-02-27 07:55:05 +11001854 } else
Damien Miller4e270b02010-04-16 15:56:21 +10001855 fatal("Unsupported certificate option \"%s\"", opt);
Damien Miller0a80ca12010-02-27 07:55:05 +11001856}
1857
Ben Lindstrombba81212001-06-25 05:01:22 +00001858static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001859show_options(struct sshbuf *optbuf, int v00, int in_critical)
Damien Millerd834d352010-06-26 09:48:02 +10001860{
Damien Miller633de332014-05-15 13:48:26 +10001861 char *name, *arg;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001862 struct sshbuf *options, *option = NULL;
1863 int r;
Damien Millerd834d352010-06-26 09:48:02 +10001864
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001865 if ((options = sshbuf_fromb(optbuf)) == NULL)
1866 fatal("%s: sshbuf_fromb failed", __func__);
1867 while (sshbuf_len(options) != 0) {
1868 sshbuf_free(option);
1869 option = NULL;
1870 if ((r = sshbuf_get_cstring(options, &name, NULL)) != 0 ||
1871 (r = sshbuf_froms(options, &option)) != 0)
1872 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Millerd834d352010-06-26 09:48:02 +10001873 printf(" %s", name);
1874 if ((v00 || !in_critical) &&
1875 (strcmp(name, "permit-X11-forwarding") == 0 ||
1876 strcmp(name, "permit-agent-forwarding") == 0 ||
1877 strcmp(name, "permit-port-forwarding") == 0 ||
1878 strcmp(name, "permit-pty") == 0 ||
1879 strcmp(name, "permit-user-rc") == 0))
1880 printf("\n");
1881 else if ((v00 || in_critical) &&
1882 (strcmp(name, "force-command") == 0 ||
1883 strcmp(name, "source-address") == 0)) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001884 if ((r = sshbuf_get_cstring(option, &arg, NULL)) != 0)
1885 fatal("%s: buffer error: %s",
1886 __func__, ssh_err(r));
Damien Miller633de332014-05-15 13:48:26 +10001887 printf(" %s\n", arg);
1888 free(arg);
Damien Millerd834d352010-06-26 09:48:02 +10001889 } else {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001890 printf(" UNKNOWN OPTION (len %zu)\n",
1891 sshbuf_len(option));
1892 sshbuf_reset(option);
Damien Millerd834d352010-06-26 09:48:02 +10001893 }
Darren Tuckera627d422013-06-02 07:31:17 +10001894 free(name);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001895 if (sshbuf_len(option) != 0)
Damien Millerd834d352010-06-26 09:48:02 +10001896 fatal("Option corrupt: extra data at end");
1897 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001898 sshbuf_free(option);
1899 sshbuf_free(options);
Damien Millerd834d352010-06-26 09:48:02 +10001900}
1901
1902static void
Damien Millerf2b70ca2010-03-05 07:39:35 +11001903do_show_cert(struct passwd *pw)
1904{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001905 struct sshkey *key;
Damien Millerf2b70ca2010-03-05 07:39:35 +11001906 struct stat st;
1907 char *key_fp, *ca_fp;
Damien Millerd834d352010-06-26 09:48:02 +10001908 u_int i, v00;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001909 int r;
Damien Millerf2b70ca2010-03-05 07:39:35 +11001910
1911 if (!have_identity)
1912 ask_filename(pw, "Enter file in which the key is");
Damien Millerba3420a2010-06-26 09:39:07 +10001913 if (stat(identity_file, &st) < 0)
1914 fatal("%s: %s: %s", __progname, identity_file, strerror(errno));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001915 if ((r = sshkey_load_public(identity_file, &key, NULL)) != 0)
1916 fatal("Cannot load public key \"%s\": %s",
1917 identity_file, ssh_err(r));
1918 if (!sshkey_is_cert(key))
Damien Millerf2b70ca2010-03-05 07:39:35 +11001919 fatal("%s is not a certificate", identity_file);
Damien Miller4e270b02010-04-16 15:56:21 +10001920 v00 = key->type == KEY_RSA_CERT_V00 || key->type == KEY_DSA_CERT_V00;
1921
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001922 key_fp = sshkey_fingerprint(key, fingerprint_hash, SSH_FP_DEFAULT);
1923 ca_fp = sshkey_fingerprint(key->cert->signature_key,
djm@openbsd.org56d1c832014-12-21 22:27:55 +00001924 fingerprint_hash, SSH_FP_DEFAULT);
djm@openbsd.org9ce86c92015-01-28 22:36:00 +00001925 if (key_fp == NULL || ca_fp == NULL)
1926 fatal("%s: sshkey_fingerprint fail", __func__);
Damien Millerf2b70ca2010-03-05 07:39:35 +11001927
1928 printf("%s:\n", identity_file);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001929 printf(" Type: %s %s certificate\n", sshkey_ssh_name(key),
1930 sshkey_cert_type(key));
1931 printf(" Public key: %s %s\n", sshkey_type(key), key_fp);
Damien Miller4e270b02010-04-16 15:56:21 +10001932 printf(" Signing CA: %s %s\n",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001933 sshkey_type(key->cert->signature_key), ca_fp);
Damien Miller4e270b02010-04-16 15:56:21 +10001934 printf(" Key ID: \"%s\"\n", key->cert->key_id);
Damien Miller821de0a2011-01-11 17:20:29 +11001935 if (!v00) {
1936 printf(" Serial: %llu\n",
1937 (unsigned long long)key->cert->serial);
1938 }
Damien Millerf2b70ca2010-03-05 07:39:35 +11001939 printf(" Valid: %s\n",
1940 fmt_validity(key->cert->valid_after, key->cert->valid_before));
1941 printf(" Principals: ");
1942 if (key->cert->nprincipals == 0)
1943 printf("(none)\n");
1944 else {
1945 for (i = 0; i < key->cert->nprincipals; i++)
1946 printf("\n %s",
1947 key->cert->principals[i]);
1948 printf("\n");
1949 }
Damien Miller4e270b02010-04-16 15:56:21 +10001950 printf(" Critical Options: ");
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001951 if (sshbuf_len(key->cert->critical) == 0)
Damien Millerf2b70ca2010-03-05 07:39:35 +11001952 printf("(none)\n");
1953 else {
1954 printf("\n");
Damien Miller86687062014-07-02 15:28:02 +10001955 show_options(key->cert->critical, v00, 1);
Damien Millerf2b70ca2010-03-05 07:39:35 +11001956 }
Damien Miller4e270b02010-04-16 15:56:21 +10001957 if (!v00) {
1958 printf(" Extensions: ");
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001959 if (sshbuf_len(key->cert->extensions) == 0)
Damien Miller4e270b02010-04-16 15:56:21 +10001960 printf("(none)\n");
1961 else {
1962 printf("\n");
Damien Miller86687062014-07-02 15:28:02 +10001963 show_options(key->cert->extensions, v00, 0);
Damien Miller4e270b02010-04-16 15:56:21 +10001964 }
1965 }
Damien Millerf2b70ca2010-03-05 07:39:35 +11001966 exit(0);
1967}
1968
1969static void
Damien Millerf3747bf2013-01-18 11:44:04 +11001970load_krl(const char *path, struct ssh_krl **krlp)
1971{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001972 struct sshbuf *krlbuf;
1973 int r, fd;
Damien Millerf3747bf2013-01-18 11:44:04 +11001974
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001975 if ((krlbuf = sshbuf_new()) == NULL)
1976 fatal("sshbuf_new failed");
Damien Millerf3747bf2013-01-18 11:44:04 +11001977 if ((fd = open(path, O_RDONLY)) == -1)
1978 fatal("open %s: %s", path, strerror(errno));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001979 if ((r = sshkey_load_file(fd, krlbuf)) != 0)
1980 fatal("Unable to load KRL: %s", ssh_err(r));
Damien Millerf3747bf2013-01-18 11:44:04 +11001981 close(fd);
1982 /* XXX check sigs */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001983 if ((r = ssh_krl_from_blob(krlbuf, krlp, NULL, 0)) != 0 ||
Damien Millerf3747bf2013-01-18 11:44:04 +11001984 *krlp == NULL)
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001985 fatal("Invalid KRL file: %s", ssh_err(r));
1986 sshbuf_free(krlbuf);
Damien Millerf3747bf2013-01-18 11:44:04 +11001987}
1988
1989static void
djm@openbsd.org669aee92015-01-30 01:10:33 +00001990update_krl_from_file(struct passwd *pw, const char *file, int wild_ca,
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001991 const struct sshkey *ca, struct ssh_krl *krl)
Damien Millerf3747bf2013-01-18 11:44:04 +11001992{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001993 struct sshkey *key = NULL;
Damien Millerf3747bf2013-01-18 11:44:04 +11001994 u_long lnum = 0;
1995 char *path, *cp, *ep, line[SSH_MAX_PUBKEY_BYTES];
1996 unsigned long long serial, serial2;
1997 int i, was_explicit_key, was_sha1, r;
1998 FILE *krl_spec;
1999
2000 path = tilde_expand_filename(file, pw->pw_uid);
2001 if (strcmp(path, "-") == 0) {
2002 krl_spec = stdin;
2003 free(path);
2004 path = xstrdup("(standard input)");
2005 } else if ((krl_spec = fopen(path, "r")) == NULL)
2006 fatal("fopen %s: %s", path, strerror(errno));
2007
2008 if (!quiet)
2009 printf("Revoking from %s\n", path);
2010 while (read_keyfile_line(krl_spec, path, line, sizeof(line),
2011 &lnum) == 0) {
2012 was_explicit_key = was_sha1 = 0;
2013 cp = line + strspn(line, " \t");
2014 /* Trim trailing space, comments and strip \n */
2015 for (i = 0, r = -1; cp[i] != '\0'; i++) {
2016 if (cp[i] == '#' || cp[i] == '\n') {
2017 cp[i] = '\0';
2018 break;
2019 }
2020 if (cp[i] == ' ' || cp[i] == '\t') {
2021 /* Remember the start of a span of whitespace */
2022 if (r == -1)
2023 r = i;
2024 } else
2025 r = -1;
2026 }
2027 if (r != -1)
2028 cp[r] = '\0';
2029 if (*cp == '\0')
2030 continue;
2031 if (strncasecmp(cp, "serial:", 7) == 0) {
djm@openbsd.org669aee92015-01-30 01:10:33 +00002032 if (ca == NULL && !wild_ca) {
Damien Millerd234afb2013-08-21 02:42:58 +10002033 fatal("revoking certificates by serial number "
Damien Millerf3747bf2013-01-18 11:44:04 +11002034 "requires specification of a CA key");
2035 }
2036 cp += 7;
2037 cp = cp + strspn(cp, " \t");
2038 errno = 0;
2039 serial = strtoull(cp, &ep, 0);
2040 if (*cp == '\0' || (*ep != '\0' && *ep != '-'))
2041 fatal("%s:%lu: invalid serial \"%s\"",
2042 path, lnum, cp);
2043 if (errno == ERANGE && serial == ULLONG_MAX)
2044 fatal("%s:%lu: serial out of range",
2045 path, lnum);
2046 serial2 = serial;
2047 if (*ep == '-') {
2048 cp = ep + 1;
2049 errno = 0;
2050 serial2 = strtoull(cp, &ep, 0);
2051 if (*cp == '\0' || *ep != '\0')
2052 fatal("%s:%lu: invalid serial \"%s\"",
2053 path, lnum, cp);
2054 if (errno == ERANGE && serial2 == ULLONG_MAX)
2055 fatal("%s:%lu: serial out of range",
2056 path, lnum);
2057 if (serial2 <= serial)
2058 fatal("%s:%lu: invalid serial range "
2059 "%llu:%llu", path, lnum,
2060 (unsigned long long)serial,
2061 (unsigned long long)serial2);
2062 }
2063 if (ssh_krl_revoke_cert_by_serial_range(krl,
2064 ca, serial, serial2) != 0) {
2065 fatal("%s: revoke serial failed",
2066 __func__);
2067 }
2068 } else if (strncasecmp(cp, "id:", 3) == 0) {
djm@openbsd.org669aee92015-01-30 01:10:33 +00002069 if (ca == NULL && !wild_ca) {
Damien Millerd5d9d7b2013-08-21 02:43:27 +10002070 fatal("revoking certificates by key ID "
Damien Millerf3747bf2013-01-18 11:44:04 +11002071 "requires specification of a CA key");
2072 }
2073 cp += 3;
2074 cp = cp + strspn(cp, " \t");
2075 if (ssh_krl_revoke_cert_by_key_id(krl, ca, cp) != 0)
2076 fatal("%s: revoke key ID failed", __func__);
2077 } else {
2078 if (strncasecmp(cp, "key:", 4) == 0) {
2079 cp += 4;
2080 cp = cp + strspn(cp, " \t");
2081 was_explicit_key = 1;
2082 } else if (strncasecmp(cp, "sha1:", 5) == 0) {
2083 cp += 5;
2084 cp = cp + strspn(cp, " \t");
2085 was_sha1 = 1;
2086 } else {
2087 /*
2088 * Just try to process the line as a key.
2089 * Parsing will fail if it isn't.
2090 */
2091 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002092 if ((key = sshkey_new(KEY_UNSPEC)) == NULL)
Damien Millerf3747bf2013-01-18 11:44:04 +11002093 fatal("key_new");
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002094 if ((r = sshkey_read(key, &cp)) != 0)
2095 fatal("%s:%lu: invalid key: %s",
2096 path, lnum, ssh_err(r));
Damien Millerf3747bf2013-01-18 11:44:04 +11002097 if (was_explicit_key)
2098 r = ssh_krl_revoke_key_explicit(krl, key);
2099 else if (was_sha1)
2100 r = ssh_krl_revoke_key_sha1(krl, key);
2101 else
2102 r = ssh_krl_revoke_key(krl, key);
2103 if (r != 0)
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002104 fatal("%s: revoke key failed: %s",
2105 __func__, ssh_err(r));
2106 sshkey_free(key);
Damien Millerf3747bf2013-01-18 11:44:04 +11002107 }
2108 }
2109 if (strcmp(path, "-") != 0)
2110 fclose(krl_spec);
Damien Miller0d6771b2013-04-23 15:23:24 +10002111 free(path);
Damien Millerf3747bf2013-01-18 11:44:04 +11002112}
2113
2114static void
2115do_gen_krl(struct passwd *pw, int updating, int argc, char **argv)
2116{
2117 struct ssh_krl *krl;
2118 struct stat sb;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002119 struct sshkey *ca = NULL;
djm@openbsd.org669aee92015-01-30 01:10:33 +00002120 int fd, i, r, wild_ca = 0;
Damien Millerf3747bf2013-01-18 11:44:04 +11002121 char *tmp;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002122 struct sshbuf *kbuf;
Damien Millerf3747bf2013-01-18 11:44:04 +11002123
2124 if (*identity_file == '\0')
2125 fatal("KRL generation requires an output file");
2126 if (stat(identity_file, &sb) == -1) {
2127 if (errno != ENOENT)
2128 fatal("Cannot access KRL \"%s\": %s",
2129 identity_file, strerror(errno));
2130 if (updating)
2131 fatal("KRL \"%s\" does not exist", identity_file);
2132 }
2133 if (ca_key_path != NULL) {
djm@openbsd.org669aee92015-01-30 01:10:33 +00002134 if (strcasecmp(ca_key_path, "none") == 0)
2135 wild_ca = 1;
2136 else {
2137 tmp = tilde_expand_filename(ca_key_path, pw->pw_uid);
2138 if ((r = sshkey_load_public(tmp, &ca, NULL)) != 0)
2139 fatal("Cannot load CA public key %s: %s",
2140 tmp, ssh_err(r));
2141 free(tmp);
2142 }
Damien Millerf3747bf2013-01-18 11:44:04 +11002143 }
2144
2145 if (updating)
2146 load_krl(identity_file, &krl);
2147 else if ((krl = ssh_krl_init()) == NULL)
2148 fatal("couldn't create KRL");
2149
2150 if (cert_serial != 0)
2151 ssh_krl_set_version(krl, cert_serial);
2152 if (identity_comment != NULL)
2153 ssh_krl_set_comment(krl, identity_comment);
2154
2155 for (i = 0; i < argc; i++)
djm@openbsd.org669aee92015-01-30 01:10:33 +00002156 update_krl_from_file(pw, argv[i], wild_ca, ca, krl);
Damien Millerf3747bf2013-01-18 11:44:04 +11002157
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002158 if ((kbuf = sshbuf_new()) == NULL)
2159 fatal("sshbuf_new failed");
2160 if (ssh_krl_to_blob(krl, kbuf, NULL, 0) != 0)
Damien Millerf3747bf2013-01-18 11:44:04 +11002161 fatal("Couldn't generate KRL");
2162 if ((fd = open(identity_file, O_WRONLY|O_CREAT|O_TRUNC, 0644)) == -1)
2163 fatal("open %s: %s", identity_file, strerror(errno));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002164 if (atomicio(vwrite, fd, (void *)sshbuf_ptr(kbuf), sshbuf_len(kbuf)) !=
2165 sshbuf_len(kbuf))
Damien Millerf3747bf2013-01-18 11:44:04 +11002166 fatal("write %s: %s", identity_file, strerror(errno));
2167 close(fd);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002168 sshbuf_free(kbuf);
Damien Millerf3747bf2013-01-18 11:44:04 +11002169 ssh_krl_free(krl);
Damien Miller0d6771b2013-04-23 15:23:24 +10002170 if (ca != NULL)
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002171 sshkey_free(ca);
Damien Millerf3747bf2013-01-18 11:44:04 +11002172}
2173
2174static void
2175do_check_krl(struct passwd *pw, int argc, char **argv)
2176{
2177 int i, r, ret = 0;
2178 char *comment;
2179 struct ssh_krl *krl;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002180 struct sshkey *k;
Damien Millerf3747bf2013-01-18 11:44:04 +11002181
2182 if (*identity_file == '\0')
2183 fatal("KRL checking requires an input file");
2184 load_krl(identity_file, &krl);
2185 for (i = 0; i < argc; i++) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002186 if ((r = sshkey_load_public(argv[i], &k, &comment)) != 0)
2187 fatal("Cannot load public key %s: %s",
2188 argv[i], ssh_err(r));
Damien Millerf3747bf2013-01-18 11:44:04 +11002189 r = ssh_krl_check_key(krl, k);
2190 printf("%s%s%s%s: %s\n", argv[i],
2191 *comment ? " (" : "", comment, *comment ? ")" : "",
2192 r == 0 ? "ok" : "REVOKED");
2193 if (r != 0)
2194 ret = 1;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002195 sshkey_free(k);
Damien Millerf3747bf2013-01-18 11:44:04 +11002196 free(comment);
2197 }
2198 ssh_krl_free(krl);
2199 exit(ret);
2200}
2201
2202static void
Damien Miller431f66b1999-11-21 18:31:57 +11002203usage(void)
2204{
Damien Millerf0858de2014-04-20 13:01:30 +10002205 fprintf(stderr,
2206 "usage: ssh-keygen [-q] [-b bits] [-t dsa | ecdsa | ed25519 | rsa | rsa1]\n"
2207 " [-N new_passphrase] [-C comment] [-f output_keyfile]\n"
2208 " ssh-keygen -p [-P old_passphrase] [-N new_passphrase] [-f keyfile]\n"
2209 " ssh-keygen -i [-m key_format] [-f input_keyfile]\n"
2210 " ssh-keygen -e [-m key_format] [-f input_keyfile]\n"
2211 " ssh-keygen -y [-f input_keyfile]\n"
2212 " ssh-keygen -c [-P passphrase] [-C comment] [-f keyfile]\n"
naddy@openbsd.org6288e3a2015-02-24 15:24:05 +00002213 " ssh-keygen -l [-v] [-E fingerprint_hash] [-f input_keyfile]\n"
Damien Millerf0858de2014-04-20 13:01:30 +10002214 " ssh-keygen -B [-f input_keyfile]\n");
Damien Miller7ea845e2010-02-12 09:21:02 +11002215#ifdef ENABLE_PKCS11
Damien Millerf0858de2014-04-20 13:01:30 +10002216 fprintf(stderr,
2217 " ssh-keygen -D pkcs11\n");
Damien Miller7ea845e2010-02-12 09:21:02 +11002218#endif
Damien Millerf0858de2014-04-20 13:01:30 +10002219 fprintf(stderr,
2220 " ssh-keygen -F hostname [-f known_hosts_file] [-l]\n"
2221 " ssh-keygen -H [-f known_hosts_file]\n"
2222 " ssh-keygen -R hostname [-f known_hosts_file]\n"
2223 " ssh-keygen -r hostname [-f input_keyfile] [-g]\n"
2224 " ssh-keygen -G output_file [-v] [-b bits] [-M memory] [-S start_point]\n"
2225 " ssh-keygen -T output_file -f input_file [-v] [-a rounds] [-J num_lines]\n"
2226 " [-j start_line] [-K checkpt] [-W generator]\n"
2227 " ssh-keygen -s ca_key -I certificate_identity [-h] [-n principals]\n"
2228 " [-O option] [-V validity_interval] [-z serial_number] file ...\n"
2229 " ssh-keygen -L [-f input_keyfile]\n"
2230 " ssh-keygen -A\n"
2231 " ssh-keygen -k -f krl_file [-u] [-s ca_public] [-z version_number]\n"
2232 " file ...\n"
2233 " ssh-keygen -Q -f krl_file file ...\n");
Damien Miller95def091999-11-25 00:26:21 +11002234 exit(1);
Damien Miller431f66b1999-11-21 18:31:57 +11002235}
2236
Damien Miller95def091999-11-25 00:26:21 +11002237/*
2238 * Main program for key management.
2239 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002240int
Damien Millerdf8b7db2007-01-05 16:22:57 +11002241main(int argc, char **argv)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002242{
deraadt@openbsd.org2ae4f332015-01-16 06:40:12 +00002243 char dotsshdir[PATH_MAX], comment[1024], *passphrase1, *passphrase2;
Damien Miller390d0562011-10-18 16:05:19 +11002244 char *checkpoint = NULL;
djm@openbsd.org9ce86c92015-01-28 22:36:00 +00002245 char out_file[PATH_MAX], *rr_hostname = NULL, *ep, *fp, *ra;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002246 struct sshkey *private, *public;
Damien Miller95def091999-11-25 00:26:21 +11002247 struct passwd *pw;
Damien Miller95def091999-11-25 00:26:21 +11002248 struct stat st;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002249 int r, opt, type, fd;
Damien Millerbcd00ab2013-12-07 10:41:55 +11002250 u_int32_t memory = 0, generator_wanted = 0;
Darren Tucker019cefe2003-08-02 22:40:07 +10002251 int do_gen_candidates = 0, do_screen_candidates = 0;
Damien Millerf3747bf2013-01-18 11:44:04 +11002252 int gen_all_hostkeys = 0, gen_krl = 0, update_krl = 0, check_krl = 0;
Damien Millerdfceafe2012-07-06 13:44:19 +10002253 unsigned long start_lineno = 0, lines_to_process = 0;
Darren Tucker019cefe2003-08-02 22:40:07 +10002254 BIGNUM *start = NULL;
Damien Miller95def091999-11-25 00:26:21 +11002255 FILE *f;
Damien Miller02e754f2005-05-26 12:19:39 +10002256 const char *errstr;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002257
Damien Miller95def091999-11-25 00:26:21 +11002258 extern int optind;
2259 extern char *optarg;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002260
Darren Tuckerce321d82005-10-03 18:11:24 +10002261 /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
2262 sanitise_stdfd();
2263
Darren Tucker9ac56e92007-01-14 10:19:59 +11002264 __progname = ssh_get_progname(argv[0]);
Damien Millerf9b625c2000-07-09 22:42:32 +10002265
Damien Miller72ef7c12015-01-15 02:21:31 +11002266#ifdef WITH_OPENSSL
Damien Miller4314c2b2010-09-10 11:12:09 +10002267 OpenSSL_add_all_algorithms();
Damien Miller72ef7c12015-01-15 02:21:31 +11002268#endif
Damien Millerdf8b7db2007-01-05 16:22:57 +11002269 log_init(argv[0], SYSLOG_LEVEL_INFO, SYSLOG_FACILITY_USER, 1);
Darren Tucker019cefe2003-08-02 22:40:07 +10002270
Kevin Steves3a881912002-07-20 19:05:40 +00002271 seed_rng();
Damien Millereba71ba2000-04-29 23:57:08 +10002272
Damien Miller5428f641999-11-25 11:54:57 +11002273 /* we need this for the home * directory. */
Damien Miller95def091999-11-25 00:26:21 +11002274 pw = getpwuid(getuid());
2275 if (!pw) {
Damien Miller3009d3c2013-07-20 13:22:31 +10002276 printf("No user exists for uid %lu\n", (u_long)getuid());
Damien Miller95def091999-11-25 00:26:21 +11002277 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002278 }
Damien Millereba71ba2000-04-29 23:57:08 +10002279 if (gethostname(hostname, sizeof(hostname)) < 0) {
2280 perror("gethostname");
2281 exit(1);
2282 }
Damien Miller5428f641999-11-25 11:54:57 +11002283
djm@openbsd.org56d1c832014-12-21 22:27:55 +00002284 /* Remaining characters: UYdw */
Damien Millerbcd00ab2013-12-07 10:41:55 +11002285 while ((opt = getopt(argc, argv, "ABHLQXceghiklopquvxy"
djm@openbsd.org56d1c832014-12-21 22:27:55 +00002286 "C:D:E:F:G:I:J:K:M:N:O:P:R:S:T:V:W:Z:"
2287 "a:b:f:g:j:m:n:r:s:t:z:")) != -1) {
Damien Miller95def091999-11-25 00:26:21 +11002288 switch (opt) {
Damien Miller58f1baf2011-05-05 14:06:15 +10002289 case 'A':
2290 gen_all_hostkeys = 1;
2291 break;
Damien Miller95def091999-11-25 00:26:21 +11002292 case 'b':
Damien Miller57737942010-09-10 11:16:37 +10002293 bits = (u_int32_t)strtonum(optarg, 256, 32768, &errstr);
Damien Miller02e754f2005-05-26 12:19:39 +10002294 if (errstr)
2295 fatal("Bits has bad value %s (%s)",
2296 optarg, errstr);
Damien Miller95def091999-11-25 00:26:21 +11002297 break;
djm@openbsd.org56d1c832014-12-21 22:27:55 +00002298 case 'E':
2299 fingerprint_hash = ssh_digest_alg_by_name(optarg);
2300 if (fingerprint_hash == -1)
2301 fatal("Invalid hash algorithm \"%s\"", optarg);
2302 break;
Damien Miller4b42d7f2005-03-01 21:48:35 +11002303 case 'F':
2304 find_host = 1;
2305 rr_hostname = optarg;
2306 break;
2307 case 'H':
2308 hash_hosts = 1;
2309 break;
Damien Miller0a80ca12010-02-27 07:55:05 +11002310 case 'I':
2311 cert_key_id = optarg;
2312 break;
Damien Millerdfceafe2012-07-06 13:44:19 +10002313 case 'J':
2314 lines_to_process = strtoul(optarg, NULL, 10);
2315 break;
2316 case 'j':
2317 start_lineno = strtoul(optarg, NULL, 10);
2318 break;
Damien Miller4b42d7f2005-03-01 21:48:35 +11002319 case 'R':
2320 delete_host = 1;
2321 rr_hostname = optarg;
2322 break;
Damien Millerf2b70ca2010-03-05 07:39:35 +11002323 case 'L':
2324 show_cert = 1;
2325 break;
Damien Miller95def091999-11-25 00:26:21 +11002326 case 'l':
2327 print_fingerprint = 1;
2328 break;
Ben Lindstrom8fd372b2001-03-12 03:02:17 +00002329 case 'B':
2330 print_bubblebabble = 1;
2331 break;
Damien Miller44b25042010-07-02 13:35:01 +10002332 case 'm':
2333 if (strcasecmp(optarg, "RFC4716") == 0 ||
2334 strcasecmp(optarg, "ssh2") == 0) {
2335 convert_format = FMT_RFC4716;
2336 break;
2337 }
2338 if (strcasecmp(optarg, "PKCS8") == 0) {
2339 convert_format = FMT_PKCS8;
2340 break;
2341 }
2342 if (strcasecmp(optarg, "PEM") == 0) {
2343 convert_format = FMT_PEM;
2344 break;
2345 }
2346 fatal("Unsupported conversion format \"%s\"", optarg);
Damien Miller0a80ca12010-02-27 07:55:05 +11002347 case 'n':
2348 cert_principals = optarg;
2349 break;
Damien Millerbcd00ab2013-12-07 10:41:55 +11002350 case 'o':
2351 use_new_format = 1;
2352 break;
Damien Miller95def091999-11-25 00:26:21 +11002353 case 'p':
2354 change_passphrase = 1;
2355 break;
Damien Miller95def091999-11-25 00:26:21 +11002356 case 'c':
2357 change_comment = 1;
2358 break;
Damien Miller95def091999-11-25 00:26:21 +11002359 case 'f':
Damien Millerb089fb52005-05-26 12:16:18 +10002360 if (strlcpy(identity_file, optarg, sizeof(identity_file)) >=
2361 sizeof(identity_file))
2362 fatal("Identity filename too long");
Damien Miller95def091999-11-25 00:26:21 +11002363 have_identity = 1;
2364 break;
Damien Miller37876e92003-05-15 10:19:46 +10002365 case 'g':
2366 print_generic = 1;
2367 break;
Damien Miller95def091999-11-25 00:26:21 +11002368 case 'P':
2369 identity_passphrase = optarg;
2370 break;
Damien Miller95def091999-11-25 00:26:21 +11002371 case 'N':
2372 identity_new_passphrase = optarg;
2373 break;
Damien Millerf3747bf2013-01-18 11:44:04 +11002374 case 'Q':
2375 check_krl = 1;
2376 break;
Damien Miller0a80ca12010-02-27 07:55:05 +11002377 case 'O':
Damien Miller4e270b02010-04-16 15:56:21 +10002378 add_cert_option(optarg);
Damien Miller0a80ca12010-02-27 07:55:05 +11002379 break;
Damien Millerbcd00ab2013-12-07 10:41:55 +11002380 case 'Z':
2381 new_format_cipher = optarg;
2382 break;
Damien Miller95def091999-11-25 00:26:21 +11002383 case 'C':
2384 identity_comment = optarg;
2385 break;
Damien Miller95def091999-11-25 00:26:21 +11002386 case 'q':
2387 quiet = 1;
2388 break;
Ben Lindstrom5a707822001-04-22 17:15:46 +00002389 case 'e':
Damien Millereba71ba2000-04-29 23:57:08 +10002390 case 'x':
Ben Lindstrom5a707822001-04-22 17:15:46 +00002391 /* export key */
Damien Miller44b25042010-07-02 13:35:01 +10002392 convert_to = 1;
Damien Millereba71ba2000-04-29 23:57:08 +10002393 break;
Damien Miller0a80ca12010-02-27 07:55:05 +11002394 case 'h':
2395 cert_key_type = SSH2_CERT_TYPE_HOST;
Damien Millerd0e4a8e2010-05-21 14:58:32 +10002396 certflags_flags = 0;
Damien Miller0a80ca12010-02-27 07:55:05 +11002397 break;
Damien Millerf3747bf2013-01-18 11:44:04 +11002398 case 'k':
2399 gen_krl = 1;
2400 break;
Ben Lindstrom5a707822001-04-22 17:15:46 +00002401 case 'i':
Damien Millereba71ba2000-04-29 23:57:08 +10002402 case 'X':
Ben Lindstrom5a707822001-04-22 17:15:46 +00002403 /* import key */
Damien Miller44b25042010-07-02 13:35:01 +10002404 convert_from = 1;
Damien Millereba71ba2000-04-29 23:57:08 +10002405 break;
Damien Millereba71ba2000-04-29 23:57:08 +10002406 case 'y':
2407 print_public = 1;
2408 break;
Damien Miller0a80ca12010-02-27 07:55:05 +11002409 case 's':
2410 ca_key_path = optarg;
2411 break;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002412 case 't':
2413 key_type_name = optarg;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002414 break;
Ben Lindstrom8282d6a2001-08-06 21:44:05 +00002415 case 'D':
Damien Miller7ea845e2010-02-12 09:21:02 +11002416 pkcs11provider = optarg;
Ben Lindstromcd392282001-07-04 03:44:03 +00002417 break;
Damien Millerf3747bf2013-01-18 11:44:04 +11002418 case 'u':
2419 update_krl = 1;
2420 break;
Darren Tucker06930c72003-12-31 11:34:51 +11002421 case 'v':
2422 if (log_level == SYSLOG_LEVEL_INFO)
2423 log_level = SYSLOG_LEVEL_DEBUG1;
2424 else {
Darren Tuckerfc959702004-07-17 16:12:08 +10002425 if (log_level >= SYSLOG_LEVEL_DEBUG1 &&
Darren Tucker06930c72003-12-31 11:34:51 +11002426 log_level < SYSLOG_LEVEL_DEBUG3)
2427 log_level++;
2428 }
2429 break;
Damien Miller37876e92003-05-15 10:19:46 +10002430 case 'r':
Damien Miller4b42d7f2005-03-01 21:48:35 +11002431 rr_hostname = optarg;
Damien Miller37876e92003-05-15 10:19:46 +10002432 break;
Darren Tucker019cefe2003-08-02 22:40:07 +10002433 case 'W':
Damien Miller5f340062006-03-26 14:27:57 +11002434 generator_wanted = (u_int32_t)strtonum(optarg, 1,
2435 UINT_MAX, &errstr);
Damien Millerb089fb52005-05-26 12:16:18 +10002436 if (errstr)
2437 fatal("Desired generator has bad value: %s (%s)",
2438 optarg, errstr);
Darren Tucker019cefe2003-08-02 22:40:07 +10002439 break;
2440 case 'a':
Damien Millerbcd00ab2013-12-07 10:41:55 +11002441 rounds = (int)strtonum(optarg, 1, INT_MAX, &errstr);
Damien Millerb089fb52005-05-26 12:16:18 +10002442 if (errstr)
Damien Millerbcd00ab2013-12-07 10:41:55 +11002443 fatal("Invalid number: %s (%s)",
Damien Millerb089fb52005-05-26 12:16:18 +10002444 optarg, errstr);
Darren Tucker019cefe2003-08-02 22:40:07 +10002445 break;
Damien Miller72ef7c12015-01-15 02:21:31 +11002446#ifdef WITH_OPENSSL
Darren Tucker019cefe2003-08-02 22:40:07 +10002447 case 'M':
Damien Miller5f340062006-03-26 14:27:57 +11002448 memory = (u_int32_t)strtonum(optarg, 1, UINT_MAX, &errstr);
Damien Miller4e270b02010-04-16 15:56:21 +10002449 if (errstr)
Damien Millerb089fb52005-05-26 12:16:18 +10002450 fatal("Memory limit is %s: %s", errstr, optarg);
Darren Tucker019cefe2003-08-02 22:40:07 +10002451 break;
2452 case 'G':
2453 do_gen_candidates = 1;
Damien Millerb089fb52005-05-26 12:16:18 +10002454 if (strlcpy(out_file, optarg, sizeof(out_file)) >=
2455 sizeof(out_file))
2456 fatal("Output filename too long");
Darren Tucker019cefe2003-08-02 22:40:07 +10002457 break;
2458 case 'T':
2459 do_screen_candidates = 1;
Damien Millerb089fb52005-05-26 12:16:18 +10002460 if (strlcpy(out_file, optarg, sizeof(out_file)) >=
2461 sizeof(out_file))
2462 fatal("Output filename too long");
Darren Tucker019cefe2003-08-02 22:40:07 +10002463 break;
Damien Miller390d0562011-10-18 16:05:19 +11002464 case 'K':
deraadt@openbsd.org2ae4f332015-01-16 06:40:12 +00002465 if (strlen(optarg) >= PATH_MAX)
Damien Miller390d0562011-10-18 16:05:19 +11002466 fatal("Checkpoint filename too long");
2467 checkpoint = xstrdup(optarg);
2468 break;
Darren Tucker019cefe2003-08-02 22:40:07 +10002469 case 'S':
2470 /* XXX - also compare length against bits */
2471 if (BN_hex2bn(&start, optarg) == 0)
2472 fatal("Invalid start point.");
2473 break;
Damien Miller72ef7c12015-01-15 02:21:31 +11002474#endif /* WITH_OPENSSL */
Damien Miller0a80ca12010-02-27 07:55:05 +11002475 case 'V':
2476 parse_cert_times(optarg);
2477 break;
Damien Miller4e270b02010-04-16 15:56:21 +10002478 case 'z':
Damien Miller6f3b3622012-11-14 19:04:33 +11002479 errno = 0;
2480 cert_serial = strtoull(optarg, &ep, 10);
2481 if (*optarg < '0' || *optarg > '9' || *ep != '\0' ||
2482 (errno == ERANGE && cert_serial == ULLONG_MAX))
2483 fatal("Invalid serial number \"%s\"", optarg);
Damien Miller4e270b02010-04-16 15:56:21 +10002484 break;
Damien Miller95def091999-11-25 00:26:21 +11002485 case '?':
2486 default:
2487 usage();
2488 }
2489 }
Darren Tucker06930c72003-12-31 11:34:51 +11002490
2491 /* reinit */
Damien Millerdf8b7db2007-01-05 16:22:57 +11002492 log_init(argv[0], log_level, SYSLOG_FACILITY_USER, 1);
Darren Tucker06930c72003-12-31 11:34:51 +11002493
Damien Miller0a80ca12010-02-27 07:55:05 +11002494 argv += optind;
2495 argc -= optind;
2496
2497 if (ca_key_path != NULL) {
Damien Millerf3747bf2013-01-18 11:44:04 +11002498 if (argc < 1 && !gen_krl) {
Damien Miller0a80ca12010-02-27 07:55:05 +11002499 printf("Too few arguments.\n");
2500 usage();
2501 }
Damien Millerf3747bf2013-01-18 11:44:04 +11002502 } else if (argc > 0 && !gen_krl && !check_krl) {
Damien Miller95def091999-11-25 00:26:21 +11002503 printf("Too many arguments.\n");
2504 usage();
2505 }
2506 if (change_passphrase && change_comment) {
2507 printf("Can only have one of -p and -c.\n");
2508 usage();
2509 }
Darren Tucker0f7e9102008-06-08 12:54:29 +10002510 if (print_fingerprint && (delete_host || hash_hosts)) {
Damien Millerec77c952013-01-09 15:58:00 +11002511 printf("Cannot use -l with -H or -R.\n");
Darren Tucker0f7e9102008-06-08 12:54:29 +10002512 usage();
2513 }
Damien Millerf3747bf2013-01-18 11:44:04 +11002514 if (gen_krl) {
2515 do_gen_krl(pw, update_krl, argc, argv);
2516 return (0);
2517 }
2518 if (check_krl) {
2519 do_check_krl(pw, argc, argv);
2520 return (0);
2521 }
Damien Miller0a80ca12010-02-27 07:55:05 +11002522 if (ca_key_path != NULL) {
2523 if (cert_key_id == NULL)
2524 fatal("Must specify key id (-I) when certifying");
2525 do_ca_sign(pw, argc, argv);
2526 }
Damien Millerf2b70ca2010-03-05 07:39:35 +11002527 if (show_cert)
2528 do_show_cert(pw);
Damien Miller4b42d7f2005-03-01 21:48:35 +11002529 if (delete_host || hash_hosts || find_host)
2530 do_known_hosts(pw, rr_hostname);
Damien Millerec77c952013-01-09 15:58:00 +11002531 if (pkcs11provider != NULL)
2532 do_download(pw);
Ben Lindstrom8fd372b2001-03-12 03:02:17 +00002533 if (print_fingerprint || print_bubblebabble)
Damien Miller95def091999-11-25 00:26:21 +11002534 do_fingerprint(pw);
Damien Miller95def091999-11-25 00:26:21 +11002535 if (change_passphrase)
2536 do_change_passphrase(pw);
Damien Miller4a10d2e2002-03-11 22:53:29 +11002537 if (change_comment)
2538 do_change_comment(pw);
Damien Miller1f0311c2014-05-15 14:24:09 +10002539#ifdef WITH_OPENSSL
Damien Miller44b25042010-07-02 13:35:01 +10002540 if (convert_to)
2541 do_convert_to(pw);
2542 if (convert_from)
2543 do_convert_from(pw);
Damien Miller1f0311c2014-05-15 14:24:09 +10002544#endif
Damien Millereba71ba2000-04-29 23:57:08 +10002545 if (print_public)
2546 do_print_public(pw);
Damien Miller4b42d7f2005-03-01 21:48:35 +11002547 if (rr_hostname != NULL) {
Damien Millercb314822006-03-26 13:48:01 +11002548 unsigned int n = 0;
2549
2550 if (have_identity) {
2551 n = do_print_resource_record(pw,
2552 identity_file, rr_hostname);
2553 if (n == 0) {
2554 perror(identity_file);
2555 exit(1);
2556 }
2557 exit(0);
2558 } else {
2559
2560 n += do_print_resource_record(pw,
2561 _PATH_HOST_RSA_KEY_FILE, rr_hostname);
2562 n += do_print_resource_record(pw,
2563 _PATH_HOST_DSA_KEY_FILE, rr_hostname);
Damien Miller3bde12a2012-06-20 21:51:11 +10002564 n += do_print_resource_record(pw,
2565 _PATH_HOST_ECDSA_KEY_FILE, rr_hostname);
Damien Miller16cd3922014-05-15 13:45:58 +10002566 n += do_print_resource_record(pw,
2567 _PATH_HOST_ED25519_KEY_FILE, rr_hostname);
Damien Millercb314822006-03-26 13:48:01 +11002568 if (n == 0)
2569 fatal("no keys found.");
2570 exit(0);
2571 }
Damien Miller37876e92003-05-15 10:19:46 +10002572 }
Damien Miller95def091999-11-25 00:26:21 +11002573
Darren Tucker019cefe2003-08-02 22:40:07 +10002574 if (do_gen_candidates) {
2575 FILE *out = fopen(out_file, "w");
Damien Miller787b2ec2003-11-21 23:56:47 +11002576
Darren Tucker019cefe2003-08-02 22:40:07 +10002577 if (out == NULL) {
2578 error("Couldn't open modulus candidate file \"%s\": %s",
2579 out_file, strerror(errno));
2580 return (1);
2581 }
Damien Miller3f54a9f2005-11-05 14:52:18 +11002582 if (bits == 0)
2583 bits = DEFAULT_BITS;
Darren Tucker019cefe2003-08-02 22:40:07 +10002584 if (gen_candidates(out, memory, bits, start) != 0)
Damien Miller15d72a02005-11-05 15:07:33 +11002585 fatal("modulus candidate generation failed");
Darren Tucker019cefe2003-08-02 22:40:07 +10002586
2587 return (0);
2588 }
2589
2590 if (do_screen_candidates) {
2591 FILE *in;
Damien Miller78d22712013-02-12 11:03:36 +11002592 FILE *out = fopen(out_file, "a");
Darren Tucker019cefe2003-08-02 22:40:07 +10002593
2594 if (have_identity && strcmp(identity_file, "-") != 0) {
2595 if ((in = fopen(identity_file, "r")) == NULL) {
2596 fatal("Couldn't open modulus candidate "
Damien Millera8e06ce2003-11-21 23:48:55 +11002597 "file \"%s\": %s", identity_file,
Darren Tucker019cefe2003-08-02 22:40:07 +10002598 strerror(errno));
2599 }
2600 } else
2601 in = stdin;
2602
2603 if (out == NULL) {
2604 fatal("Couldn't open moduli file \"%s\": %s",
2605 out_file, strerror(errno));
2606 }
Damien Millerbcd00ab2013-12-07 10:41:55 +11002607 if (prime_test(in, out, rounds == 0 ? 100 : rounds,
2608 generator_wanted, checkpoint,
Damien Millerdfceafe2012-07-06 13:44:19 +10002609 start_lineno, lines_to_process) != 0)
Damien Miller15d72a02005-11-05 15:07:33 +11002610 fatal("modulus screening failed");
Darren Tuckerf4220e62003-08-21 16:44:07 +10002611 return (0);
Darren Tucker019cefe2003-08-02 22:40:07 +10002612 }
2613
Damien Miller58f1baf2011-05-05 14:06:15 +10002614 if (gen_all_hostkeys) {
2615 do_gen_all_hostkeys(pw);
2616 return (0);
2617 }
2618
Damien Millerf14be5c2005-11-05 15:15:49 +11002619 if (key_type_name == NULL)
2620 key_type_name = "rsa";
2621
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002622 type = sshkey_type_from_name(key_type_name);
djm@openbsd.org7efb4552015-01-18 13:22:28 +00002623 type_bits_valid(type, key_type_name, &bits);
Damien Miller58f1baf2011-05-05 14:06:15 +10002624
Darren Tucker3af2ac52005-11-29 13:10:24 +11002625 if (!quiet)
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002626 printf("Generating public/private %s key pair.\n",
2627 key_type_name);
2628 if ((r = sshkey_generate(type, bits, &private)) != 0) {
Damien Miller9eab9562009-02-22 08:47:02 +11002629 fprintf(stderr, "key_generate failed\n");
Damien Miller0bc1bd82000-11-13 22:57:25 +11002630 exit(1);
2631 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002632 if ((r = sshkey_from_private(private, &public)) != 0) {
2633 fprintf(stderr, "key_from_private failed: %s\n", ssh_err(r));
2634 exit(1);
2635 }
Damien Miller95def091999-11-25 00:26:21 +11002636
2637 if (!have_identity)
2638 ask_filename(pw, "Enter file in which to save the key");
2639
Damien Miller788f2122005-11-05 15:14:59 +11002640 /* Create ~/.ssh directory if it doesn't already exist. */
Damien Miller50af79b2010-05-10 11:52:00 +10002641 snprintf(dotsshdir, sizeof dotsshdir, "%s/%s",
2642 pw->pw_dir, _PATH_SSH_USER_DIR);
2643 if (strstr(identity_file, dotsshdir) != NULL) {
2644 if (stat(dotsshdir, &st) < 0) {
2645 if (errno != ENOENT) {
2646 error("Could not stat %s: %s", dotsshdir,
2647 strerror(errno));
2648 } else if (mkdir(dotsshdir, 0700) < 0) {
2649 error("Could not create directory '%s': %s",
2650 dotsshdir, strerror(errno));
2651 } else if (!quiet)
2652 printf("Created directory '%s'.\n", dotsshdir);
2653 }
Damien Miller95def091999-11-25 00:26:21 +11002654 }
2655 /* If the file already exists, ask the user to confirm. */
2656 if (stat(identity_file, &st) >= 0) {
2657 char yesno[3];
2658 printf("%s already exists.\n", identity_file);
2659 printf("Overwrite (y/n)? ");
2660 fflush(stdout);
2661 if (fgets(yesno, sizeof(yesno), stdin) == NULL)
2662 exit(1);
2663 if (yesno[0] != 'y' && yesno[0] != 'Y')
2664 exit(1);
2665 }
2666 /* Ask for a passphrase (twice). */
2667 if (identity_passphrase)
2668 passphrase1 = xstrdup(identity_passphrase);
2669 else if (identity_new_passphrase)
2670 passphrase1 = xstrdup(identity_new_passphrase);
2671 else {
2672passphrase_again:
2673 passphrase1 =
Ben Lindstrom949974b2001-06-25 05:20:31 +00002674 read_passphrase("Enter passphrase (empty for no "
2675 "passphrase): ", RP_ALLOW_STDIN);
2676 passphrase2 = read_passphrase("Enter same passphrase again: ",
2677 RP_ALLOW_STDIN);
Damien Miller95def091999-11-25 00:26:21 +11002678 if (strcmp(passphrase1, passphrase2) != 0) {
Ben Lindstrom949974b2001-06-25 05:20:31 +00002679 /*
2680 * The passphrases do not match. Clear them and
2681 * retry.
2682 */
Damien Millera5103f42014-02-04 11:20:14 +11002683 explicit_bzero(passphrase1, strlen(passphrase1));
2684 explicit_bzero(passphrase2, strlen(passphrase2));
Darren Tuckera627d422013-06-02 07:31:17 +10002685 free(passphrase1);
2686 free(passphrase2);
Damien Miller95def091999-11-25 00:26:21 +11002687 printf("Passphrases do not match. Try again.\n");
2688 goto passphrase_again;
2689 }
2690 /* Clear the other copy of the passphrase. */
Damien Millera5103f42014-02-04 11:20:14 +11002691 explicit_bzero(passphrase2, strlen(passphrase2));
Darren Tuckera627d422013-06-02 07:31:17 +10002692 free(passphrase2);
Damien Miller95def091999-11-25 00:26:21 +11002693 }
2694
Damien Miller95def091999-11-25 00:26:21 +11002695 if (identity_comment) {
2696 strlcpy(comment, identity_comment, sizeof(comment));
2697 } else {
Darren Tuckere15fb092008-11-11 16:31:43 +11002698 /* Create default comment field for the passphrase. */
Damien Miller95def091999-11-25 00:26:21 +11002699 snprintf(comment, sizeof comment, "%s@%s", pw->pw_name, hostname);
2700 }
2701
2702 /* Save the key with the given passphrase and comment. */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002703 if ((r = sshkey_save_private(private, identity_file, passphrase1,
2704 comment, use_new_format, new_format_cipher, rounds)) != 0) {
2705 printf("Saving key \"%s\" failed: %s\n",
2706 identity_file, ssh_err(r));
Damien Millera5103f42014-02-04 11:20:14 +11002707 explicit_bzero(passphrase1, strlen(passphrase1));
Darren Tuckera627d422013-06-02 07:31:17 +10002708 free(passphrase1);
Damien Miller95def091999-11-25 00:26:21 +11002709 exit(1);
2710 }
2711 /* Clear the passphrase. */
Damien Millera5103f42014-02-04 11:20:14 +11002712 explicit_bzero(passphrase1, strlen(passphrase1));
Darren Tuckera627d422013-06-02 07:31:17 +10002713 free(passphrase1);
Damien Miller95def091999-11-25 00:26:21 +11002714
2715 /* Clear the private key and the random number generator. */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002716 sshkey_free(private);
Damien Miller95def091999-11-25 00:26:21 +11002717
2718 if (!quiet)
2719 printf("Your identification has been saved in %s.\n", identity_file);
2720
Damien Miller95def091999-11-25 00:26:21 +11002721 strlcat(identity_file, ".pub", sizeof(identity_file));
Ben Lindstrom5fc62702001-03-09 18:19:24 +00002722 fd = open(identity_file, O_WRONLY | O_CREAT | O_TRUNC, 0644);
2723 if (fd == -1) {
Damien Miller95def091999-11-25 00:26:21 +11002724 printf("Could not save your public key in %s\n", identity_file);
2725 exit(1);
2726 }
Ben Lindstrom5fc62702001-03-09 18:19:24 +00002727 f = fdopen(fd, "w");
2728 if (f == NULL) {
Damien Miller9eab9562009-02-22 08:47:02 +11002729 printf("fdopen %s failed\n", identity_file);
Ben Lindstrom5fc62702001-03-09 18:19:24 +00002730 exit(1);
2731 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002732 if ((r = sshkey_write(public, f)) != 0)
2733 fprintf(stderr, "write key failed: %s\n", ssh_err(r));
Damien Millereba71ba2000-04-29 23:57:08 +10002734 fprintf(f, " %s\n", comment);
Damien Miller95def091999-11-25 00:26:21 +11002735 fclose(f);
2736
2737 if (!quiet) {
djm@openbsd.org9ce86c92015-01-28 22:36:00 +00002738 fp = sshkey_fingerprint(public, fingerprint_hash,
djm@openbsd.org56d1c832014-12-21 22:27:55 +00002739 SSH_FP_DEFAULT);
djm@openbsd.org9ce86c92015-01-28 22:36:00 +00002740 ra = sshkey_fingerprint(public, fingerprint_hash,
Darren Tucker9c16ac92008-06-13 04:40:35 +10002741 SSH_FP_RANDOMART);
djm@openbsd.org9ce86c92015-01-28 22:36:00 +00002742 if (fp == NULL || ra == NULL)
2743 fatal("sshkey_fingerprint failed");
Damien Millereba71ba2000-04-29 23:57:08 +10002744 printf("Your public key has been saved in %s.\n",
2745 identity_file);
Damien Miller95def091999-11-25 00:26:21 +11002746 printf("The key fingerprint is:\n");
Ben Lindstromcfccef92001-03-13 04:57:58 +00002747 printf("%s %s\n", fp, comment);
Darren Tucker9c16ac92008-06-13 04:40:35 +10002748 printf("The key's randomart image is:\n");
2749 printf("%s\n", ra);
Darren Tuckera627d422013-06-02 07:31:17 +10002750 free(ra);
2751 free(fp);
Damien Miller95def091999-11-25 00:26:21 +11002752 }
Damien Millereba71ba2000-04-29 23:57:08 +10002753
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002754 sshkey_free(public);
Damien Miller95def091999-11-25 00:26:21 +11002755 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002756}