blob: c0d2d59420a0ec12efdf636c973c3d46bf83b195 [file] [log] [blame]
djm@openbsd.org249516e2017-04-29 04:12:25 +00001/* $OpenBSD: ssh-keygen.c,v 1.300 2017/04/29 04:12:25 djm Exp $ */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002/*
Damien Miller95def091999-11-25 00:26:21 +11003 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1994 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5 * All rights reserved
Damien Miller95def091999-11-25 00:26:21 +11006 * Identity and host key generation and maintenance.
Damien Millere4340be2000-09-16 13:29:08 +11007 *
8 * As far as I am concerned, the code I have written for this software
9 * can be used freely for any purpose. Any derived versions of this
10 * software must be clearly marked as such, and if the derived work is
11 * incompatible with the protocol description in the RFC file, it must be
12 * called by a name other than "ssh" or "Secure Shell".
Damien Miller95def091999-11-25 00:26:21 +110013 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100014
15#include "includes.h"
Damien Millerf17883e2006-03-15 11:45:54 +110016
17#include <sys/types.h>
Damien Millere3b60b52006-07-10 21:08:03 +100018#include <sys/socket.h>
Damien Millerf17883e2006-03-15 11:45:54 +110019#include <sys/stat.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100020
Damien Miller72ef7c12015-01-15 02:21:31 +110021#ifdef WITH_OPENSSL
Damien Millereba71ba2000-04-29 23:57:08 +100022#include <openssl/evp.h>
23#include <openssl/pem.h>
Darren Tuckerbfaaf962008-02-28 19:13:52 +110024#include "openbsd-compat/openssl-compat.h"
Damien Miller72ef7c12015-01-15 02:21:31 +110025#endif
Damien Millereba71ba2000-04-29 23:57:08 +100026
Darren Tucker39972492006-07-12 22:22:46 +100027#include <errno.h>
Damien Miller57cf6382006-07-10 21:13:46 +100028#include <fcntl.h>
Damien Millerb8fe89c2006-07-24 14:51:00 +100029#include <netdb.h>
Darren Tucker2ee50c52006-07-11 18:55:05 +100030#ifdef HAVE_PATHS_H
31# include <paths.h>
32#endif
Damien Miller9f2abc42006-07-10 20:53:08 +100033#include <pwd.h>
Damien Millerded319c2006-09-01 15:38:36 +100034#include <stdarg.h>
Damien Millera7a73ee2006-08-05 11:37:59 +100035#include <stdio.h>
Damien Millere7a1e5c2006-08-05 11:34:19 +100036#include <stdlib.h>
Damien Millere3476ed2006-07-24 14:13:33 +100037#include <string.h>
Damien Millere6b3b612006-07-24 14:01:23 +100038#include <unistd.h>
deraadt@openbsd.org2ae4f332015-01-16 06:40:12 +000039#include <limits.h>
djm@openbsd.orga287c5a2017-02-10 03:36:40 +000040#include <locale.h>
Damien Miller9f2abc42006-07-10 20:53:08 +100041
Damien Millerd4a8b7e1999-10-27 13:42:43 +100042#include "xmalloc.h"
djm@openbsd.org1129dcf2015-01-15 09:40:00 +000043#include "sshkey.h"
Ben Lindstromd09fcf52001-03-29 00:29:54 +000044#include "rsa.h"
Damien Millereba71ba2000-04-29 23:57:08 +100045#include "authfile.h"
46#include "uuencode.h"
djm@openbsd.org1129dcf2015-01-15 09:40:00 +000047#include "sshbuf.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000048#include "pathnames.h"
49#include "log.h"
Darren Tuckere608ca22004-05-13 16:15:47 +100050#include "misc.h"
Damien Miller4b42d7f2005-03-01 21:48:35 +110051#include "match.h"
52#include "hostfile.h"
Damien Miller69996102006-07-10 20:53:31 +100053#include "dns.h"
Damien Millerf3747bf2013-01-18 11:44:04 +110054#include "ssh.h"
Damien Miller0a80ca12010-02-27 07:55:05 +110055#include "ssh2.h"
djm@openbsd.org1129dcf2015-01-15 09:40:00 +000056#include "ssherr.h"
Damien Miller7ea845e2010-02-12 09:21:02 +110057#include "ssh-pkcs11.h"
Damien Millerf3747bf2013-01-18 11:44:04 +110058#include "atomicio.h"
59#include "krl.h"
djm@openbsd.org56d1c832014-12-21 22:27:55 +000060#include "digest.h"
djm@openbsd.orga287c5a2017-02-10 03:36:40 +000061#include "utf8.h"
Ben Lindstromcd392282001-07-04 03:44:03 +000062
djm@openbsd.orgd1958792015-05-28 04:40:13 +000063#ifdef WITH_OPENSSL
64# define DEFAULT_KEY_TYPE_NAME "rsa"
65#else
66# define DEFAULT_KEY_TYPE_NAME "ed25519"
67#endif
68
Damien Miller3f54a9f2005-11-05 14:52:18 +110069/* Number of bits in the RSA/DSA key. This value can be set on the command line. */
70#define DEFAULT_BITS 2048
71#define DEFAULT_BITS_DSA 1024
Damien Miller6e9f6802010-09-10 11:17:38 +100072#define DEFAULT_BITS_ECDSA 256
Damien Miller3f54a9f2005-11-05 14:52:18 +110073u_int32_t bits = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100074
Damien Miller5428f641999-11-25 11:54:57 +110075/*
76 * Flag indicating that we just want to change the passphrase. This can be
77 * set on the command line.
78 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100079int change_passphrase = 0;
80
Damien Miller5428f641999-11-25 11:54:57 +110081/*
82 * Flag indicating that we just want to change the comment. This can be set
83 * on the command line.
84 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100085int change_comment = 0;
86
87int quiet = 0;
88
Darren Tucker35c45532008-06-13 04:43:15 +100089int log_level = SYSLOG_LEVEL_INFO;
90
Damien Miller4b42d7f2005-03-01 21:48:35 +110091/* Flag indicating that we want to hash a known_hosts file */
92int hash_hosts = 0;
93/* Flag indicating that we want lookup a host in known_hosts file */
94int find_host = 0;
95/* Flag indicating that we want to delete a host from a known_hosts file */
96int delete_host = 0;
97
Damien Millerf2b70ca2010-03-05 07:39:35 +110098/* Flag indicating that we want to show the contents of a certificate */
99int show_cert = 0;
100
Damien Miller10f6f6b1999-11-17 17:29:08 +1100101/* Flag indicating that we just want to see the key fingerprint */
102int print_fingerprint = 0;
Ben Lindstrom8fd372b2001-03-12 03:02:17 +0000103int print_bubblebabble = 0;
Damien Miller10f6f6b1999-11-17 17:29:08 +1100104
djm@openbsd.org56d1c832014-12-21 22:27:55 +0000105/* Hash algorithm to use for fingerprints. */
106int fingerprint_hash = SSH_FP_HASH_DEFAULT;
107
Damien Miller431f66b1999-11-21 18:31:57 +1100108/* The identity file name, given on the command line or entered by the user. */
109char identity_file[1024];
110int have_identity = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000111
112/* This is set to the passphrase if given on the command line. */
113char *identity_passphrase = NULL;
114
115/* This is set to the new passphrase if given on the command line. */
116char *identity_new_passphrase = NULL;
117
118/* This is set to the new comment if given on the command line. */
119char *identity_comment = NULL;
120
Damien Miller0a80ca12010-02-27 07:55:05 +1100121/* Path to CA key when certifying keys. */
122char *ca_key_path = NULL;
123
Damien Miller4e270b02010-04-16 15:56:21 +1000124/* Certificate serial number */
Damien Miller55aca022012-12-03 11:25:30 +1100125unsigned long long cert_serial = 0;
Damien Miller4e270b02010-04-16 15:56:21 +1000126
Damien Miller0a80ca12010-02-27 07:55:05 +1100127/* Key type when certifying */
128u_int cert_key_type = SSH2_CERT_TYPE_USER;
129
130/* "key ID" of signed key */
131char *cert_key_id = NULL;
132
133/* Comma-separated list of principal names for certifying keys */
134char *cert_principals = NULL;
135
136/* Validity period for certificates */
137u_int64_t cert_valid_from = 0;
138u_int64_t cert_valid_to = ~0ULL;
139
Damien Miller4e270b02010-04-16 15:56:21 +1000140/* Certificate options */
Damien Millerd0e4a8e2010-05-21 14:58:32 +1000141#define CERTOPT_X_FWD (1)
142#define CERTOPT_AGENT_FWD (1<<1)
143#define CERTOPT_PORT_FWD (1<<2)
144#define CERTOPT_PTY (1<<3)
145#define CERTOPT_USER_RC (1<<4)
146#define CERTOPT_DEFAULT (CERTOPT_X_FWD|CERTOPT_AGENT_FWD| \
147 CERTOPT_PORT_FWD|CERTOPT_PTY|CERTOPT_USER_RC)
148u_int32_t certflags_flags = CERTOPT_DEFAULT;
149char *certflags_command = NULL;
150char *certflags_src_addr = NULL;
Damien Miller0a80ca12010-02-27 07:55:05 +1100151
djm@openbsd.org249516e2017-04-29 04:12:25 +0000152/* Arbitrary extensions specified by user */
153struct cert_userext {
154 char *key;
155 char *val;
156 int crit;
157};
158struct cert_userext *cert_userext;
159size_t ncert_userext;
160
Damien Miller44b25042010-07-02 13:35:01 +1000161/* Conversion to/from various formats */
162int convert_to = 0;
163int convert_from = 0;
164enum {
165 FMT_RFC4716,
166 FMT_PKCS8,
167 FMT_PEM
168} convert_format = FMT_RFC4716;
Damien Millereba71ba2000-04-29 23:57:08 +1000169int print_public = 0;
Damien Miller37876e92003-05-15 10:19:46 +1000170int print_generic = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100171
Damien Millera41c8b12002-01-22 23:05:08 +1100172char *key_type_name = NULL;
Damien Millereba71ba2000-04-29 23:57:08 +1000173
Damien Miller757f34e2010-08-05 13:05:31 +1000174/* Load key from this PKCS#11 provider */
175char *pkcs11provider = NULL;
Damien Miller44b25042010-07-02 13:35:01 +1000176
Damien Millerbcd00ab2013-12-07 10:41:55 +1100177/* Use new OpenSSH private key format when writing SSH2 keys instead of PEM */
178int use_new_format = 0;
179
180/* Cipher for new-format private keys */
181char *new_format_cipher = NULL;
182
183/*
184 * Number of KDF rounds to derive new format keys /
185 * number of primality trials when screening moduli.
186 */
187int rounds = 0;
188
Damien Miller431f66b1999-11-21 18:31:57 +1100189/* argv0 */
190extern char *__progname;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000191
Damien Millere5c0d522014-07-03 21:24:19 +1000192char hostname[NI_MAXHOST];
Damien Millereba71ba2000-04-29 23:57:08 +1000193
djm@openbsd.org1d9a2e22015-05-28 07:37:31 +0000194#ifdef WITH_OPENSSL
Darren Tucker770fc012004-05-13 16:24:32 +1000195/* moduli.c */
Damien Millerb089fb52005-05-26 12:16:18 +1000196int gen_candidates(FILE *, u_int32_t, u_int32_t, BIGNUM *);
Damien Millerdfceafe2012-07-06 13:44:19 +1000197int prime_test(FILE *, FILE *, u_int32_t, u_int32_t, char *, unsigned long,
198 unsigned long);
djm@openbsd.org1d9a2e22015-05-28 07:37:31 +0000199#endif
Darren Tucker770fc012004-05-13 16:24:32 +1000200
Ben Lindstrombba81212001-06-25 05:01:22 +0000201static void
djm@openbsd.org7efb4552015-01-18 13:22:28 +0000202type_bits_valid(int type, const char *name, u_int32_t *bitsp)
Damien Miller58f1baf2011-05-05 14:06:15 +1000203{
Damien Miller72ef7c12015-01-15 02:21:31 +1100204#ifdef WITH_OPENSSL
djm@openbsd.org1d9a2e22015-05-28 07:37:31 +0000205 u_int maxbits, nid;
Damien Miller72ef7c12015-01-15 02:21:31 +1100206#endif
Damien Miller58f1baf2011-05-05 14:06:15 +1000207
djm@openbsd.org3038a192015-04-17 13:19:22 +0000208 if (type == KEY_UNSPEC)
209 fatal("unknown key type %s", key_type_name);
Damien Miller884b63a2011-05-05 14:14:52 +1000210 if (*bitsp == 0) {
Damien Miller773dda22015-01-30 23:10:17 +1100211#ifdef WITH_OPENSSL
Damien Miller58f1baf2011-05-05 14:06:15 +1000212 if (type == KEY_DSA)
Damien Miller884b63a2011-05-05 14:14:52 +1000213 *bitsp = DEFAULT_BITS_DSA;
djm@openbsd.org7efb4552015-01-18 13:22:28 +0000214 else if (type == KEY_ECDSA) {
215 if (name != NULL &&
216 (nid = sshkey_ecdsa_nid_from_name(name)) > 0)
217 *bitsp = sshkey_curve_nid_to_bits(nid);
218 if (*bitsp == 0)
219 *bitsp = DEFAULT_BITS_ECDSA;
Damien Miller773dda22015-01-30 23:10:17 +1100220 } else
221#endif
Damien Miller884b63a2011-05-05 14:14:52 +1000222 *bitsp = DEFAULT_BITS;
Damien Miller58f1baf2011-05-05 14:06:15 +1000223 }
Damien Miller72ef7c12015-01-15 02:21:31 +1100224#ifdef WITH_OPENSSL
Damien Miller58f1baf2011-05-05 14:06:15 +1000225 maxbits = (type == KEY_DSA) ?
226 OPENSSL_DSA_MAX_MODULUS_BITS : OPENSSL_RSA_MAX_MODULUS_BITS;
djm@openbsd.org3038a192015-04-17 13:19:22 +0000227 if (*bitsp > maxbits)
228 fatal("key bits exceeds maximum %d", maxbits);
Damien Miller884b63a2011-05-05 14:14:52 +1000229 if (type == KEY_DSA && *bitsp != 1024)
Damien Miller58f1baf2011-05-05 14:06:15 +1000230 fatal("DSA keys must be 1024 bits");
djm@openbsd.org933935c2015-07-03 03:49:45 +0000231 else if (type != KEY_ECDSA && type != KEY_ED25519 && *bitsp < 1024)
232 fatal("Key must at least be 1024 bits");
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000233 else if (type == KEY_ECDSA && sshkey_ecdsa_bits_to_nid(*bitsp) == -1)
Damien Miller58f1baf2011-05-05 14:06:15 +1000234 fatal("Invalid ECDSA key length - valid lengths are "
235 "256, 384 or 521 bits");
Damien Miller1f0311c2014-05-15 14:24:09 +1000236#endif
Damien Miller58f1baf2011-05-05 14:06:15 +1000237}
238
239static void
Damien Miller431f66b1999-11-21 18:31:57 +1100240ask_filename(struct passwd *pw, const char *prompt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000241{
Damien Miller95def091999-11-25 00:26:21 +1100242 char buf[1024];
Damien Millere39cacc2000-11-29 12:18:44 +1100243 char *name = NULL;
244
Damien Miller993dd552002-02-19 15:22:47 +1100245 if (key_type_name == NULL)
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000246 name = _PATH_SSH_CLIENT_ID_RSA;
Damien Miller90967402006-03-26 14:07:26 +1100247 else {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000248 switch (sshkey_type_from_name(key_type_name)) {
Damien Miller993dd552002-02-19 15:22:47 +1100249 case KEY_RSA1:
250 name = _PATH_SSH_CLIENT_IDENTITY;
251 break;
Damien Miller4e270b02010-04-16 15:56:21 +1000252 case KEY_DSA_CERT:
Damien Miller993dd552002-02-19 15:22:47 +1100253 case KEY_DSA:
254 name = _PATH_SSH_CLIENT_ID_DSA;
255 break;
Damien Millerdd190dd2010-11-11 14:17:02 +1100256#ifdef OPENSSL_HAS_ECC
Damien Millereb8b60e2010-08-31 22:41:14 +1000257 case KEY_ECDSA_CERT:
258 case KEY_ECDSA:
259 name = _PATH_SSH_CLIENT_ID_ECDSA;
260 break;
Damien Millerdd190dd2010-11-11 14:17:02 +1100261#endif
Damien Miller4e270b02010-04-16 15:56:21 +1000262 case KEY_RSA_CERT:
Damien Miller993dd552002-02-19 15:22:47 +1100263 case KEY_RSA:
264 name = _PATH_SSH_CLIENT_ID_RSA;
265 break;
Damien Miller5be9d9e2013-12-07 11:24:01 +1100266 case KEY_ED25519:
267 case KEY_ED25519_CERT:
268 name = _PATH_SSH_CLIENT_ID_ED25519;
269 break;
Damien Miller993dd552002-02-19 15:22:47 +1100270 default:
djm@openbsd.org3038a192015-04-17 13:19:22 +0000271 fatal("bad key type");
Damien Miller993dd552002-02-19 15:22:47 +1100272 }
Damien Miller90967402006-03-26 14:07:26 +1100273 }
djm@openbsd.org3038a192015-04-17 13:19:22 +0000274 snprintf(identity_file, sizeof(identity_file),
275 "%s/%s", pw->pw_dir, name);
276 printf("%s (%s): ", prompt, identity_file);
277 fflush(stdout);
Damien Miller95def091999-11-25 00:26:21 +1100278 if (fgets(buf, sizeof(buf), stdin) == NULL)
279 exit(1);
Damien Miller14b017d2007-09-17 16:09:15 +1000280 buf[strcspn(buf, "\n")] = '\0';
Damien Miller95def091999-11-25 00:26:21 +1100281 if (strcmp(buf, "") != 0)
282 strlcpy(identity_file, buf, sizeof(identity_file));
283 have_identity = 1;
Damien Miller10f6f6b1999-11-17 17:29:08 +1100284}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000285
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000286static struct sshkey *
Ben Lindstromd78ae762001-06-05 20:35:09 +0000287load_identity(char *filename)
Damien Millereba71ba2000-04-29 23:57:08 +1000288{
Ben Lindstromd0fca422001-03-26 13:44:06 +0000289 char *pass;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000290 struct sshkey *prv;
291 int r;
Ben Lindstromd0fca422001-03-26 13:44:06 +0000292
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000293 if ((r = sshkey_load_private(filename, "", &prv, NULL)) == 0)
294 return prv;
295 if (r != SSH_ERR_KEY_WRONG_PASSPHRASE)
296 fatal("Load key \"%s\": %s", filename, ssh_err(r));
297 if (identity_passphrase)
298 pass = xstrdup(identity_passphrase);
299 else
300 pass = read_passphrase("Enter passphrase: ", RP_ALLOW_STDIN);
301 r = sshkey_load_private(filename, pass, &prv, NULL);
302 explicit_bzero(pass, strlen(pass));
303 free(pass);
304 if (r != 0)
305 fatal("Load key \"%s\": %s", filename, ssh_err(r));
Ben Lindstromd0fca422001-03-26 13:44:06 +0000306 return prv;
Damien Millereba71ba2000-04-29 23:57:08 +1000307}
308
Damien Miller874d77b2000-10-14 16:23:11 +1100309#define SSH_COM_PUBLIC_BEGIN "---- BEGIN SSH2 PUBLIC KEY ----"
Ben Lindstromcb72e4f2002-06-21 00:41:51 +0000310#define SSH_COM_PUBLIC_END "---- END SSH2 PUBLIC KEY ----"
Damien Miller874d77b2000-10-14 16:23:11 +1100311#define SSH_COM_PRIVATE_BEGIN "---- BEGIN SSH2 ENCRYPTED PRIVATE KEY ----"
Kevin Stevesef4eea92001-02-05 12:42:17 +0000312#define SSH_COM_PRIVATE_KEY_MAGIC 0x3f6ff9eb
Damien Millereba71ba2000-04-29 23:57:08 +1000313
Damien Miller1f0311c2014-05-15 14:24:09 +1000314#ifdef WITH_OPENSSL
Ben Lindstrombba81212001-06-25 05:01:22 +0000315static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000316do_convert_to_ssh2(struct passwd *pw, struct sshkey *k)
Damien Millereba71ba2000-04-29 23:57:08 +1000317{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000318 size_t len;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000319 u_char *blob;
Darren Tuckerd04758d2010-01-12 19:41:57 +1100320 char comment[61];
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000321 int r;
Damien Millereba71ba2000-04-29 23:57:08 +1000322
djm@openbsd.org3038a192015-04-17 13:19:22 +0000323 if (k->type == KEY_RSA1)
324 fatal("version 1 keys are not supported");
325 if ((r = sshkey_to_blob(k, &blob, &len)) != 0)
326 fatal("key_to_blob failed: %s", ssh_err(r));
Darren Tuckerd04758d2010-01-12 19:41:57 +1100327 /* Comment + surrounds must fit into 72 chars (RFC 4716 sec 3.3) */
328 snprintf(comment, sizeof(comment),
329 "%u-bit %s, converted by %s@%s from OpenSSH",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000330 sshkey_size(k), sshkey_type(k),
Damien Millereba71ba2000-04-29 23:57:08 +1000331 pw->pw_name, hostname);
Darren Tuckerd04758d2010-01-12 19:41:57 +1100332
333 fprintf(stdout, "%s\n", SSH_COM_PUBLIC_BEGIN);
334 fprintf(stdout, "Comment: \"%s\"\n", comment);
Damien Millereba71ba2000-04-29 23:57:08 +1000335 dump_base64(stdout, blob, len);
Damien Miller874d77b2000-10-14 16:23:11 +1100336 fprintf(stdout, "%s\n", SSH_COM_PUBLIC_END);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000337 sshkey_free(k);
Darren Tuckera627d422013-06-02 07:31:17 +1000338 free(blob);
Damien Millereba71ba2000-04-29 23:57:08 +1000339 exit(0);
340}
341
Ben Lindstrombba81212001-06-25 05:01:22 +0000342static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000343do_convert_to_pkcs8(struct sshkey *k)
Damien Miller44b25042010-07-02 13:35:01 +1000344{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000345 switch (sshkey_type_plain(k->type)) {
Damien Millera563cce2012-04-22 11:07:28 +1000346 case KEY_RSA1:
Damien Miller44b25042010-07-02 13:35:01 +1000347 case KEY_RSA:
348 if (!PEM_write_RSA_PUBKEY(stdout, k->rsa))
349 fatal("PEM_write_RSA_PUBKEY failed");
350 break;
351 case KEY_DSA:
352 if (!PEM_write_DSA_PUBKEY(stdout, k->dsa))
353 fatal("PEM_write_DSA_PUBKEY failed");
354 break;
Damien Miller6af914a2010-09-10 11:39:26 +1000355#ifdef OPENSSL_HAS_ECC
Damien Millereb8b60e2010-08-31 22:41:14 +1000356 case KEY_ECDSA:
357 if (!PEM_write_EC_PUBKEY(stdout, k->ecdsa))
358 fatal("PEM_write_EC_PUBKEY failed");
359 break;
Damien Miller6af914a2010-09-10 11:39:26 +1000360#endif
Damien Miller44b25042010-07-02 13:35:01 +1000361 default:
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000362 fatal("%s: unsupported key type %s", __func__, sshkey_type(k));
Damien Miller44b25042010-07-02 13:35:01 +1000363 }
364 exit(0);
365}
366
367static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000368do_convert_to_pem(struct sshkey *k)
Damien Miller44b25042010-07-02 13:35:01 +1000369{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000370 switch (sshkey_type_plain(k->type)) {
Damien Millera563cce2012-04-22 11:07:28 +1000371 case KEY_RSA1:
Damien Miller44b25042010-07-02 13:35:01 +1000372 case KEY_RSA:
373 if (!PEM_write_RSAPublicKey(stdout, k->rsa))
374 fatal("PEM_write_RSAPublicKey failed");
375 break;
376#if notyet /* OpenSSH 0.9.8 lacks this function */
377 case KEY_DSA:
378 if (!PEM_write_DSAPublicKey(stdout, k->dsa))
379 fatal("PEM_write_DSAPublicKey failed");
380 break;
381#endif
Damien Millereb8b60e2010-08-31 22:41:14 +1000382 /* XXX ECDSA? */
Damien Miller44b25042010-07-02 13:35:01 +1000383 default:
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000384 fatal("%s: unsupported key type %s", __func__, sshkey_type(k));
Damien Miller44b25042010-07-02 13:35:01 +1000385 }
386 exit(0);
387}
388
389static void
390do_convert_to(struct passwd *pw)
391{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000392 struct sshkey *k;
Damien Miller44b25042010-07-02 13:35:01 +1000393 struct stat st;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000394 int r;
Damien Miller44b25042010-07-02 13:35:01 +1000395
396 if (!have_identity)
397 ask_filename(pw, "Enter file in which the key is");
398 if (stat(identity_file, &st) < 0)
399 fatal("%s: %s: %s", __progname, identity_file, strerror(errno));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000400 if ((r = sshkey_load_public(identity_file, &k, NULL)) != 0)
401 k = load_identity(identity_file);
Damien Miller44b25042010-07-02 13:35:01 +1000402 switch (convert_format) {
403 case FMT_RFC4716:
404 do_convert_to_ssh2(pw, k);
405 break;
406 case FMT_PKCS8:
407 do_convert_to_pkcs8(k);
408 break;
409 case FMT_PEM:
410 do_convert_to_pem(k);
411 break;
412 default:
413 fatal("%s: unknown key format %d", __func__, convert_format);
414 }
415 exit(0);
416}
417
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000418/*
419 * This is almost exactly the bignum1 encoding, but with 32 bit for length
420 * instead of 16.
421 */
Damien Miller44b25042010-07-02 13:35:01 +1000422static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000423buffer_get_bignum_bits(struct sshbuf *b, BIGNUM *value)
Damien Miller874d77b2000-10-14 16:23:11 +1100424{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000425 u_int bytes, bignum_bits;
426 int r;
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000427
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000428 if ((r = sshbuf_get_u32(b, &bignum_bits)) != 0)
429 fatal("%s: buffer error: %s", __func__, ssh_err(r));
430 bytes = (bignum_bits + 7) / 8;
431 if (sshbuf_len(b) < bytes)
432 fatal("%s: input buffer too small: need %d have %zu",
433 __func__, bytes, sshbuf_len(b));
434 if (BN_bin2bn(sshbuf_ptr(b), bytes, value) == NULL)
435 fatal("%s: BN_bin2bn failed", __func__);
436 if ((r = sshbuf_consume(b, bytes)) != 0)
437 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Miller874d77b2000-10-14 16:23:11 +1100438}
439
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000440static struct sshkey *
Ben Lindstrom90fd8142002-02-26 18:09:42 +0000441do_convert_private_ssh2_from_blob(u_char *blob, u_int blen)
Damien Miller874d77b2000-10-14 16:23:11 +1100442{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000443 struct sshbuf *b;
444 struct sshkey *key = NULL;
Damien Miller874d77b2000-10-14 16:23:11 +1100445 char *type, *cipher;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000446 u_char e1, e2, e3, *sig = NULL, data[] = "abcde12345";
447 int r, rlen, ktype;
448 u_int magic, i1, i2, i3, i4;
449 size_t slen;
Ben Lindstrome586c4c2001-06-25 05:04:58 +0000450 u_long e;
Damien Miller874d77b2000-10-14 16:23:11 +1100451
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000452 if ((b = sshbuf_from(blob, blen)) == NULL)
453 fatal("%s: sshbuf_from failed", __func__);
454 if ((r = sshbuf_get_u32(b, &magic)) != 0)
455 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Miller874d77b2000-10-14 16:23:11 +1100456
Damien Miller874d77b2000-10-14 16:23:11 +1100457 if (magic != SSH_COM_PRIVATE_KEY_MAGIC) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000458 error("bad magic 0x%x != 0x%x", magic,
459 SSH_COM_PRIVATE_KEY_MAGIC);
460 sshbuf_free(b);
Damien Miller874d77b2000-10-14 16:23:11 +1100461 return NULL;
462 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000463 if ((r = sshbuf_get_u32(b, &i1)) != 0 ||
464 (r = sshbuf_get_cstring(b, &type, NULL)) != 0 ||
465 (r = sshbuf_get_cstring(b, &cipher, NULL)) != 0 ||
466 (r = sshbuf_get_u32(b, &i2)) != 0 ||
467 (r = sshbuf_get_u32(b, &i3)) != 0 ||
468 (r = sshbuf_get_u32(b, &i4)) != 0)
469 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Miller80163902007-01-05 16:30:16 +1100470 debug("ignore (%d %d %d %d)", i1, i2, i3, i4);
Damien Miller874d77b2000-10-14 16:23:11 +1100471 if (strcmp(cipher, "none") != 0) {
472 error("unsupported cipher %s", cipher);
Darren Tuckera627d422013-06-02 07:31:17 +1000473 free(cipher);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000474 sshbuf_free(b);
Darren Tuckera627d422013-06-02 07:31:17 +1000475 free(type);
Damien Miller874d77b2000-10-14 16:23:11 +1100476 return NULL;
477 }
Darren Tuckera627d422013-06-02 07:31:17 +1000478 free(cipher);
Damien Miller874d77b2000-10-14 16:23:11 +1100479
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000480 if (strstr(type, "dsa")) {
481 ktype = KEY_DSA;
482 } else if (strstr(type, "rsa")) {
483 ktype = KEY_RSA;
484 } else {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000485 sshbuf_free(b);
Darren Tuckera627d422013-06-02 07:31:17 +1000486 free(type);
Damien Miller874d77b2000-10-14 16:23:11 +1100487 return NULL;
488 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000489 if ((key = sshkey_new_private(ktype)) == NULL)
490 fatal("key_new_private failed");
Darren Tuckera627d422013-06-02 07:31:17 +1000491 free(type);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000492
493 switch (key->type) {
494 case KEY_DSA:
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000495 buffer_get_bignum_bits(b, key->dsa->p);
496 buffer_get_bignum_bits(b, key->dsa->g);
497 buffer_get_bignum_bits(b, key->dsa->q);
498 buffer_get_bignum_bits(b, key->dsa->pub_key);
499 buffer_get_bignum_bits(b, key->dsa->priv_key);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000500 break;
501 case KEY_RSA:
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000502 if ((r = sshbuf_get_u8(b, &e1)) != 0 ||
503 (e1 < 30 && (r = sshbuf_get_u8(b, &e2)) != 0) ||
504 (e1 < 30 && (r = sshbuf_get_u8(b, &e3)) != 0))
505 fatal("%s: buffer error: %s", __func__, ssh_err(r));
506 e = e1;
Ben Lindstrom34f91882001-06-25 04:47:54 +0000507 debug("e %lx", e);
508 if (e < 30) {
509 e <<= 8;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000510 e += e2;
Ben Lindstrom34f91882001-06-25 04:47:54 +0000511 debug("e %lx", e);
512 e <<= 8;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000513 e += e3;
Ben Lindstrom34f91882001-06-25 04:47:54 +0000514 debug("e %lx", e);
515 }
516 if (!BN_set_word(key->rsa->e, e)) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000517 sshbuf_free(b);
518 sshkey_free(key);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000519 return NULL;
520 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000521 buffer_get_bignum_bits(b, key->rsa->d);
522 buffer_get_bignum_bits(b, key->rsa->n);
523 buffer_get_bignum_bits(b, key->rsa->iqmp);
524 buffer_get_bignum_bits(b, key->rsa->q);
525 buffer_get_bignum_bits(b, key->rsa->p);
526 if ((r = rsa_generate_additional_parameters(key->rsa)) != 0)
527 fatal("generate RSA parameters failed: %s", ssh_err(r));
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000528 break;
529 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000530 rlen = sshbuf_len(b);
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +0000531 if (rlen != 0)
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000532 error("do_convert_private_ssh2_from_blob: "
533 "remaining bytes in key blob %d", rlen);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000534 sshbuf_free(b);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000535
Ben Lindstrome586c4c2001-06-25 05:04:58 +0000536 /* try the key */
markus@openbsd.org76c9fbb2015-12-04 16:41:28 +0000537 if (sshkey_sign(key, &sig, &slen, data, sizeof(data), NULL, 0) != 0 ||
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000538 sshkey_verify(key, sig, slen, data, sizeof(data), 0) != 0) {
539 sshkey_free(key);
540 free(sig);
541 return NULL;
542 }
Darren Tuckera627d422013-06-02 07:31:17 +1000543 free(sig);
Damien Miller874d77b2000-10-14 16:23:11 +1100544 return key;
545}
546
Damien Miller8056a9d2006-03-15 12:05:40 +1100547static int
548get_line(FILE *fp, char *line, size_t len)
549{
550 int c;
551 size_t pos = 0;
552
553 line[0] = '\0';
554 while ((c = fgetc(fp)) != EOF) {
djm@openbsd.org3038a192015-04-17 13:19:22 +0000555 if (pos >= len - 1)
556 fatal("input line too long.");
Damien Miller90967402006-03-26 14:07:26 +1100557 switch (c) {
Damien Miller8056a9d2006-03-15 12:05:40 +1100558 case '\r':
559 c = fgetc(fp);
djm@openbsd.org3038a192015-04-17 13:19:22 +0000560 if (c != EOF && c != '\n' && ungetc(c, fp) == EOF)
561 fatal("unget: %s", strerror(errno));
Damien Miller8056a9d2006-03-15 12:05:40 +1100562 return pos;
563 case '\n':
564 return pos;
565 }
566 line[pos++] = c;
567 line[pos] = '\0';
568 }
Damien Miller6c7439f2007-01-05 16:29:55 +1100569 /* We reached EOF */
570 return -1;
Damien Miller8056a9d2006-03-15 12:05:40 +1100571}
572
Ben Lindstrombba81212001-06-25 05:01:22 +0000573static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000574do_convert_from_ssh2(struct passwd *pw, struct sshkey **k, int *private)
Damien Millereba71ba2000-04-29 23:57:08 +1000575{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000576 int r, blen, escaped = 0;
Ben Lindstrom155b9812002-04-02 20:26:26 +0000577 u_int len;
Damien Miller8056a9d2006-03-15 12:05:40 +1100578 char line[1024];
Ben Lindstrom9e0ddd42001-09-18 05:41:19 +0000579 u_char blob[8096];
Damien Millereba71ba2000-04-29 23:57:08 +1000580 char encoded[8096];
Damien Millereba71ba2000-04-29 23:57:08 +1000581 FILE *fp;
582
Damien Millerba3420a2010-06-26 09:39:07 +1000583 if ((fp = fopen(identity_file, "r")) == NULL)
584 fatal("%s: %s: %s", __progname, identity_file, strerror(errno));
Damien Millereba71ba2000-04-29 23:57:08 +1000585 encoded[0] = '\0';
Damien Miller8056a9d2006-03-15 12:05:40 +1100586 while ((blen = get_line(fp, line, sizeof(line))) != -1) {
Damien Miller746d1a62013-07-18 16:13:02 +1000587 if (blen > 0 && line[blen - 1] == '\\')
Damien Miller30c3d422000-05-09 11:02:59 +1000588 escaped++;
Damien Millereba71ba2000-04-29 23:57:08 +1000589 if (strncmp(line, "----", 4) == 0 ||
590 strstr(line, ": ") != NULL) {
Damien Miller874d77b2000-10-14 16:23:11 +1100591 if (strstr(line, SSH_COM_PRIVATE_BEGIN) != NULL)
Damien Miller44b25042010-07-02 13:35:01 +1000592 *private = 1;
Ben Lindstrome586c4c2001-06-25 05:04:58 +0000593 if (strstr(line, " END ") != NULL) {
594 break;
595 }
Ben Lindstrom30358602001-04-24 16:59:28 +0000596 /* fprintf(stderr, "ignore: %s", line); */
Damien Millereba71ba2000-04-29 23:57:08 +1000597 continue;
598 }
Damien Miller30c3d422000-05-09 11:02:59 +1000599 if (escaped) {
600 escaped--;
Ben Lindstrom30358602001-04-24 16:59:28 +0000601 /* fprintf(stderr, "escaped: %s", line); */
Damien Miller30c3d422000-05-09 11:02:59 +1000602 continue;
Damien Millereba71ba2000-04-29 23:57:08 +1000603 }
Damien Millereba71ba2000-04-29 23:57:08 +1000604 strlcat(encoded, line, sizeof(encoded));
605 }
Ben Lindstrom155b9812002-04-02 20:26:26 +0000606 len = strlen(encoded);
607 if (((len % 4) == 3) &&
608 (encoded[len-1] == '=') &&
609 (encoded[len-2] == '=') &&
610 (encoded[len-3] == '='))
611 encoded[len-3] = '\0';
Damien Miller4a8ed542002-01-22 23:33:31 +1100612 blen = uudecode(encoded, blob, sizeof(blob));
djm@openbsd.org3038a192015-04-17 13:19:22 +0000613 if (blen < 0)
614 fatal("uudecode failed.");
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000615 if (*private)
616 *k = do_convert_private_ssh2_from_blob(blob, blen);
djm@openbsd.org3038a192015-04-17 13:19:22 +0000617 else if ((r = sshkey_from_blob(blob, blen, k)) != 0)
618 fatal("decode blob failed: %s", ssh_err(r));
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
djm@openbsd.org3038a192015-04-17 13:19:22 +0000752 if (!ok)
753 fatal("key write failed");
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000754 sshkey_free(k);
Damien Millereba71ba2000-04-29 23:57:08 +1000755 exit(0);
756}
Damien Miller1f0311c2014-05-15 14:24:09 +1000757#endif
Damien Millereba71ba2000-04-29 23:57:08 +1000758
Ben Lindstrombba81212001-06-25 05:01:22 +0000759static void
Damien Millereba71ba2000-04-29 23:57:08 +1000760do_print_public(struct passwd *pw)
761{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000762 struct sshkey *prv;
Damien Millereba71ba2000-04-29 23:57:08 +1000763 struct stat st;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000764 int r;
Damien Millereba71ba2000-04-29 23:57:08 +1000765
766 if (!have_identity)
767 ask_filename(pw, "Enter file in which the key is");
djm@openbsd.org3038a192015-04-17 13:19:22 +0000768 if (stat(identity_file, &st) < 0)
769 fatal("%s: %s", identity_file, strerror(errno));
Ben Lindstromd78ae762001-06-05 20:35:09 +0000770 prv = load_identity(identity_file);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000771 if ((r = sshkey_write(prv, stdout)) != 0)
djm@openbsd.org3038a192015-04-17 13:19:22 +0000772 error("key_write failed: %s", ssh_err(r));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000773 sshkey_free(prv);
Damien Millereba71ba2000-04-29 23:57:08 +1000774 fprintf(stdout, "\n");
775 exit(0);
776}
777
Ben Lindstromcd392282001-07-04 03:44:03 +0000778static void
Damien Miller757f34e2010-08-05 13:05:31 +1000779do_download(struct passwd *pw)
Ben Lindstromcd392282001-07-04 03:44:03 +0000780{
Damien Miller7ea845e2010-02-12 09:21:02 +1100781#ifdef ENABLE_PKCS11
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000782 struct sshkey **keys = NULL;
Damien Miller7ea845e2010-02-12 09:21:02 +1100783 int i, nkeys;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000784 enum sshkey_fp_rep rep;
djm@openbsd.org56d1c832014-12-21 22:27:55 +0000785 int fptype;
Damien Millerec77c952013-01-09 15:58:00 +1100786 char *fp, *ra;
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000787
djm@openbsd.org56d1c832014-12-21 22:27:55 +0000788 fptype = print_bubblebabble ? SSH_DIGEST_SHA1 : fingerprint_hash;
789 rep = print_bubblebabble ? SSH_FP_BUBBLEBABBLE : SSH_FP_DEFAULT;
Damien Miller1422c082013-01-09 16:44:54 +1100790
Damien Miller7ea845e2010-02-12 09:21:02 +1100791 pkcs11_init(0);
792 nkeys = pkcs11_add_provider(pkcs11provider, NULL, &keys);
793 if (nkeys <= 0)
794 fatal("cannot read public key from pkcs11");
795 for (i = 0; i < nkeys; i++) {
Damien Millerec77c952013-01-09 15:58:00 +1100796 if (print_fingerprint) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000797 fp = sshkey_fingerprint(keys[i], fptype, rep);
798 ra = sshkey_fingerprint(keys[i], fingerprint_hash,
Damien Millerec77c952013-01-09 15:58:00 +1100799 SSH_FP_RANDOMART);
djm@openbsd.org9ce86c92015-01-28 22:36:00 +0000800 if (fp == NULL || ra == NULL)
801 fatal("%s: sshkey_fingerprint fail", __func__);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000802 printf("%u %s %s (PKCS11 key)\n", sshkey_size(keys[i]),
803 fp, sshkey_type(keys[i]));
Damien Millerec77c952013-01-09 15:58:00 +1100804 if (log_level >= SYSLOG_LEVEL_VERBOSE)
805 printf("%s\n", ra);
Darren Tuckera627d422013-06-02 07:31:17 +1000806 free(ra);
807 free(fp);
Damien Millerec77c952013-01-09 15:58:00 +1100808 } else {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000809 (void) sshkey_write(keys[i], stdout); /* XXX check */
Damien Millerec77c952013-01-09 15:58:00 +1100810 fprintf(stdout, "\n");
811 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000812 sshkey_free(keys[i]);
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000813 }
Darren Tuckera627d422013-06-02 07:31:17 +1000814 free(keys);
Damien Miller7ea845e2010-02-12 09:21:02 +1100815 pkcs11_terminate();
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000816 exit(0);
Damien Miller7ea845e2010-02-12 09:21:02 +1100817#else
818 fatal("no pkcs11 support");
819#endif /* ENABLE_PKCS11 */
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000820}
Ben Lindstromcd392282001-07-04 03:44:03 +0000821
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000822static struct sshkey *
823try_read_key(char **cpp)
824{
825 struct sshkey *ret;
826 int r;
827
828 if ((ret = sshkey_new(KEY_RSA1)) == NULL)
829 fatal("sshkey_new failed");
830 /* Try RSA1 */
831 if ((r = sshkey_read(ret, cpp)) == 0)
832 return ret;
833 /* Try modern */
834 sshkey_free(ret);
835 if ((ret = sshkey_new(KEY_UNSPEC)) == NULL)
836 fatal("sshkey_new failed");
837 if ((r = sshkey_read(ret, cpp)) == 0)
838 return ret;
839 /* Not a key */
840 sshkey_free(ret);
841 return NULL;
842}
843
844static void
845fingerprint_one_key(const struct sshkey *public, const char *comment)
846{
847 char *fp = NULL, *ra = NULL;
848 enum sshkey_fp_rep rep;
849 int fptype;
850
851 fptype = print_bubblebabble ? SSH_DIGEST_SHA1 : fingerprint_hash;
852 rep = print_bubblebabble ? SSH_FP_BUBBLEBABBLE : SSH_FP_DEFAULT;
853 fp = sshkey_fingerprint(public, fptype, rep);
854 ra = sshkey_fingerprint(public, fingerprint_hash, SSH_FP_RANDOMART);
855 if (fp == NULL || ra == NULL)
856 fatal("%s: sshkey_fingerprint failed", __func__);
djm@openbsd.orga287c5a2017-02-10 03:36:40 +0000857 mprintf("%u %s %s (%s)\n", sshkey_size(public), fp,
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000858 comment ? comment : "no comment", sshkey_type(public));
859 if (log_level >= SYSLOG_LEVEL_VERBOSE)
860 printf("%s\n", ra);
861 free(ra);
862 free(fp);
863}
864
865static void
866fingerprint_private(const char *path)
867{
868 struct stat st;
869 char *comment = NULL;
870 struct sshkey *public = NULL;
871 int r;
872
873 if (stat(identity_file, &st) < 0)
874 fatal("%s: %s", path, strerror(errno));
djm@openbsd.orgbcb7bc72015-11-18 08:37:28 +0000875 if ((r = sshkey_load_public(path, &public, &comment)) != 0) {
876 debug("load public \"%s\": %s", path, ssh_err(r));
877 if ((r = sshkey_load_private(path, NULL,
878 &public, &comment)) != 0) {
879 debug("load private \"%s\": %s", path, ssh_err(r));
880 fatal("%s is not a key file.", path);
881 }
882 }
883
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000884 fingerprint_one_key(public, comment);
885 sshkey_free(public);
886 free(comment);
887}
888
Ben Lindstrombba81212001-06-25 05:01:22 +0000889static void
Damien Miller10f6f6b1999-11-17 17:29:08 +1100890do_fingerprint(struct passwd *pw)
891{
Damien Miller98c7ad62000-03-09 21:27:49 +1100892 FILE *f;
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000893 struct sshkey *public = NULL;
djm@openbsd.orgcce6a362015-12-11 03:19:09 +0000894 char *comment = NULL, *cp, *ep, line[SSH_MAX_PUBKEY_BYTES];
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000895 int i, invalid = 1;
896 const char *path;
djm@openbsd.org1a31d022016-05-02 08:49:03 +0000897 u_long lnum = 0;
Damien Miller10f6f6b1999-11-17 17:29:08 +1100898
Damien Miller95def091999-11-25 00:26:21 +1100899 if (!have_identity)
900 ask_filename(pw, "Enter file in which the key is");
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000901 path = identity_file;
Damien Miller98c7ad62000-03-09 21:27:49 +1100902
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000903 if (strcmp(identity_file, "-") == 0) {
904 f = stdin;
905 path = "(stdin)";
906 } else if ((f = fopen(path, "r")) == NULL)
907 fatal("%s: %s: %s", __progname, path, strerror(errno));
Damien Miller98c7ad62000-03-09 21:27:49 +1100908
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000909 while (read_keyfile_line(f, path, line, sizeof(line), &lnum) == 0) {
910 cp = line;
911 cp[strcspn(cp, "\n")] = '\0';
912 /* Trim leading space and comments */
913 cp = line + strspn(line, " \t");
914 if (*cp == '#' || *cp == '\0')
915 continue;
916
917 /*
918 * Input may be plain keys, private keys, authorized_keys
919 * or known_hosts.
920 */
921
922 /*
923 * Try private keys first. Assume a key is private if
924 * "SSH PRIVATE KEY" appears on the first line and we're
925 * not reading from stdin (XXX support private keys on stdin).
926 */
927 if (lnum == 1 && strcmp(identity_file, "-") != 0 &&
djm@openbsd.orgbcb7bc72015-11-18 08:37:28 +0000928 strstr(cp, "PRIVATE KEY") != NULL) {
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000929 fclose(f);
930 fingerprint_private(path);
931 exit(0);
932 }
933
934 /*
935 * If it's not a private key, then this must be prepared to
936 * accept a public key prefixed with a hostname or options.
937 * Try a bare key first, otherwise skip the leading stuff.
938 */
939 if ((public = try_read_key(&cp)) == NULL) {
940 i = strtol(cp, &ep, 10);
941 if (i == 0 || ep == NULL ||
942 (*ep != ' ' && *ep != '\t')) {
943 int quoted = 0;
944
945 comment = cp;
946 for (; *cp && (quoted || (*cp != ' ' &&
947 *cp != '\t')); cp++) {
948 if (*cp == '\\' && cp[1] == '"')
949 cp++; /* Skip both */
950 else if (*cp == '"')
951 quoted = !quoted;
952 }
953 if (!*cp)
954 continue;
955 *cp++ = '\0';
956 }
957 }
958 /* Retry after parsing leading hostname/key options */
959 if (public == NULL && (public = try_read_key(&cp)) == NULL) {
djm@openbsd.org1a31d022016-05-02 08:49:03 +0000960 debug("%s:%lu: not a public key", path, lnum);
Damien Millerba3420a2010-06-26 09:39:07 +1000961 continue;
Damien Miller95def091999-11-25 00:26:21 +1100962 }
Damien Millerba3420a2010-06-26 09:39:07 +1000963
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000964 /* Find trailing comment, if any */
965 for (; *cp == ' ' || *cp == '\t'; cp++)
Damien Millerba3420a2010-06-26 09:39:07 +1000966 ;
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000967 if (*cp != '\0' && *cp != '#')
Damien Millerba3420a2010-06-26 09:39:07 +1000968 comment = cp;
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000969
970 fingerprint_one_key(public, comment);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000971 sshkey_free(public);
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000972 invalid = 0; /* One good key in the file is sufficient */
Damien Miller95def091999-11-25 00:26:21 +1100973 }
Damien Millerba3420a2010-06-26 09:39:07 +1000974 fclose(f);
975
djm@openbsd.org3038a192015-04-17 13:19:22 +0000976 if (invalid)
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000977 fatal("%s is not a public key file.", path);
Damien Miller95def091999-11-25 00:26:21 +1100978 exit(0);
Damien Miller10f6f6b1999-11-17 17:29:08 +1100979}
980
Damien Miller4b42d7f2005-03-01 21:48:35 +1100981static void
Damien Miller58f1baf2011-05-05 14:06:15 +1000982do_gen_all_hostkeys(struct passwd *pw)
983{
984 struct {
985 char *key_type;
986 char *key_type_display;
987 char *path;
988 } key_types[] = {
djm@openbsd.org5c27e3b2015-03-23 06:06:38 +0000989#ifdef WITH_OPENSSL
990#ifdef WITH_SSH1
Damien Miller58f1baf2011-05-05 14:06:15 +1000991 { "rsa1", "RSA1", _PATH_HOST_KEY_FILE },
djm@openbsd.org5c27e3b2015-03-23 06:06:38 +0000992#endif /* WITH_SSH1 */
Damien Miller58f1baf2011-05-05 14:06:15 +1000993 { "rsa", "RSA" ,_PATH_HOST_RSA_KEY_FILE },
994 { "dsa", "DSA", _PATH_HOST_DSA_KEY_FILE },
Damien Millerb56e4932012-02-06 07:41:27 +1100995#ifdef OPENSSL_HAS_ECC
Damien Miller58f1baf2011-05-05 14:06:15 +1000996 { "ecdsa", "ECDSA",_PATH_HOST_ECDSA_KEY_FILE },
djm@openbsd.org5c27e3b2015-03-23 06:06:38 +0000997#endif /* OPENSSL_HAS_ECC */
998#endif /* WITH_OPENSSL */
Damien Miller5be9d9e2013-12-07 11:24:01 +1100999 { "ed25519", "ED25519",_PATH_HOST_ED25519_KEY_FILE },
Damien Miller58f1baf2011-05-05 14:06:15 +10001000 { NULL, NULL, NULL }
1001 };
1002
1003 int first = 0;
1004 struct stat st;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001005 struct sshkey *private, *public;
Damien Miller58f1baf2011-05-05 14:06:15 +10001006 char comment[1024];
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001007 int i, type, fd, r;
Damien Miller58f1baf2011-05-05 14:06:15 +10001008 FILE *f;
1009
1010 for (i = 0; key_types[i].key_type; i++) {
1011 if (stat(key_types[i].path, &st) == 0)
1012 continue;
1013 if (errno != ENOENT) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00001014 error("Could not stat %s: %s", key_types[i].path,
Damien Miller58f1baf2011-05-05 14:06:15 +10001015 strerror(errno));
1016 first = 0;
1017 continue;
1018 }
1019
1020 if (first == 0) {
1021 first = 1;
1022 printf("%s: generating new host keys: ", __progname);
1023 }
1024 printf("%s ", key_types[i].key_type_display);
1025 fflush(stdout);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001026 type = sshkey_type_from_name(key_types[i].key_type);
Damien Miller58f1baf2011-05-05 14:06:15 +10001027 strlcpy(identity_file, key_types[i].path, sizeof(identity_file));
1028 bits = 0;
djm@openbsd.org7efb4552015-01-18 13:22:28 +00001029 type_bits_valid(type, NULL, &bits);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001030 if ((r = sshkey_generate(type, bits, &private)) != 0) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00001031 error("key_generate failed: %s", ssh_err(r));
Damien Miller58f1baf2011-05-05 14:06:15 +10001032 first = 0;
1033 continue;
1034 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001035 if ((r = sshkey_from_private(private, &public)) != 0)
1036 fatal("sshkey_from_private failed: %s", ssh_err(r));
Damien Miller58f1baf2011-05-05 14:06:15 +10001037 snprintf(comment, sizeof comment, "%s@%s", pw->pw_name,
1038 hostname);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001039 if ((r = sshkey_save_private(private, identity_file, "",
1040 comment, use_new_format, new_format_cipher, rounds)) != 0) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00001041 error("Saving key \"%s\" failed: %s",
1042 identity_file, ssh_err(r));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001043 sshkey_free(private);
1044 sshkey_free(public);
Damien Miller58f1baf2011-05-05 14:06:15 +10001045 first = 0;
1046 continue;
1047 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001048 sshkey_free(private);
Damien Miller58f1baf2011-05-05 14:06:15 +10001049 strlcat(identity_file, ".pub", sizeof(identity_file));
1050 fd = open(identity_file, O_WRONLY | O_CREAT | O_TRUNC, 0644);
1051 if (fd == -1) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00001052 error("Could not save your public key in %s",
Damien Miller58f1baf2011-05-05 14:06:15 +10001053 identity_file);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001054 sshkey_free(public);
Damien Miller58f1baf2011-05-05 14:06:15 +10001055 first = 0;
1056 continue;
1057 }
1058 f = fdopen(fd, "w");
1059 if (f == NULL) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00001060 error("fdopen %s failed", identity_file);
doug@openbsd.org7df88182014-08-21 01:08:52 +00001061 close(fd);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001062 sshkey_free(public);
Damien Miller58f1baf2011-05-05 14:06:15 +10001063 first = 0;
1064 continue;
1065 }
djm@openbsd.orgbb8b4422015-01-16 15:55:07 +00001066 if ((r = sshkey_write(public, f)) != 0) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00001067 error("write key failed: %s", ssh_err(r));
doug@openbsd.org7df88182014-08-21 01:08:52 +00001068 fclose(f);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001069 sshkey_free(public);
Damien Miller58f1baf2011-05-05 14:06:15 +10001070 first = 0;
1071 continue;
1072 }
1073 fprintf(f, " %s\n", comment);
1074 fclose(f);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001075 sshkey_free(public);
Damien Miller58f1baf2011-05-05 14:06:15 +10001076
1077 }
1078 if (first != 0)
1079 printf("\n");
1080}
1081
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001082struct known_hosts_ctx {
djm@openbsd.org2b3c3c72015-01-18 21:51:19 +00001083 const char *host; /* Hostname searched for in find/delete case */
1084 FILE *out; /* Output file, stdout for find_hosts case */
1085 int has_unhashed; /* When hashing, original had unhashed hosts */
1086 int found_key; /* For find/delete, host was found */
1087 int invalid; /* File contained invalid items; don't delete */
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001088};
1089
1090static int
1091known_hosts_hash(struct hostkey_foreach_line *l, void *_ctx)
Damien Miller4b42d7f2005-03-01 21:48:35 +11001092{
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001093 struct known_hosts_ctx *ctx = (struct known_hosts_ctx *)_ctx;
1094 char *hashed, *cp, *hosts, *ohosts;
1095 int has_wild = l->hosts && strcspn(l->hosts, "*?!") != strlen(l->hosts);
dtucker@openbsd.org18501152017-03-06 02:03:20 +00001096 int was_hashed = l->hosts && l->hosts[0] == HASH_DELIM;
Darren Tucker0f7e9102008-06-08 12:54:29 +10001097
djm@openbsd.org6c5c9492015-02-16 22:08:57 +00001098 switch (l->status) {
1099 case HKF_STATUS_OK:
1100 case HKF_STATUS_MATCHED:
1101 /*
1102 * Don't hash hosts already already hashed, with wildcard
1103 * characters or a CA/revocation marker.
1104 */
djm@openbsd.org12d37672017-03-03 06:13:11 +00001105 if (was_hashed || has_wild || l->marker != MRK_NONE) {
djm@openbsd.org6c5c9492015-02-16 22:08:57 +00001106 fprintf(ctx->out, "%s\n", l->line);
1107 if (has_wild && !find_host) {
dtucker@openbsd.orgd0723702017-03-06 00:44:51 +00001108 logit("%s:%lu: ignoring host name "
djm@openbsd.org3038a192015-04-17 13:19:22 +00001109 "with wildcard: %.64s", l->path,
djm@openbsd.org6c5c9492015-02-16 22:08:57 +00001110 l->linenum, l->hosts);
1111 }
1112 return 0;
1113 }
1114 /*
1115 * Split any comma-separated hostnames from the host list,
1116 * hash and store separately.
1117 */
1118 ohosts = hosts = xstrdup(l->hosts);
1119 while ((cp = strsep(&hosts, ",")) != NULL && *cp != '\0') {
djm@openbsd.orgdb259722017-03-10 04:26:06 +00001120 lowercase(cp);
djm@openbsd.org6c5c9492015-02-16 22:08:57 +00001121 if ((hashed = host_hash(cp, NULL, 0)) == NULL)
1122 fatal("hash_host failed");
1123 fprintf(ctx->out, "%s %s\n", hashed, l->rawkey);
1124 ctx->has_unhashed = 1;
1125 }
1126 free(ohosts);
1127 return 0;
1128 case HKF_STATUS_INVALID:
1129 /* Retain invalid lines, but mark file as invalid. */
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001130 ctx->invalid = 1;
dtucker@openbsd.orgd0723702017-03-06 00:44:51 +00001131 logit("%s:%lu: invalid line", l->path, l->linenum);
djm@openbsd.org6c5c9492015-02-16 22:08:57 +00001132 /* FALLTHROUGH */
1133 default:
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001134 fprintf(ctx->out, "%s\n", l->line);
1135 return 0;
Darren Tucker0f7e9102008-06-08 12:54:29 +10001136 }
djm@openbsd.org6c5c9492015-02-16 22:08:57 +00001137 /* NOTREACHED */
1138 return -1;
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001139}
1140
1141static int
1142known_hosts_find_delete(struct hostkey_foreach_line *l, void *_ctx)
1143{
1144 struct known_hosts_ctx *ctx = (struct known_hosts_ctx *)_ctx;
djm@openbsd.org4739e8d2015-05-21 12:01:19 +00001145 enum sshkey_fp_rep rep;
1146 int fptype;
1147 char *fp;
1148
1149 fptype = print_bubblebabble ? SSH_DIGEST_SHA1 : fingerprint_hash;
1150 rep = print_bubblebabble ? SSH_FP_BUBBLEBABBLE : SSH_FP_DEFAULT;
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001151
djm@openbsd.org6c5c9492015-02-16 22:08:57 +00001152 if (l->status == HKF_STATUS_MATCHED) {
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001153 if (delete_host) {
1154 if (l->marker != MRK_NONE) {
1155 /* Don't remove CA and revocation lines */
1156 fprintf(ctx->out, "%s\n", l->line);
1157 } else {
1158 /*
1159 * Hostname matches and has no CA/revoke
1160 * marker, delete it by *not* writing the
1161 * line to ctx->out.
1162 */
1163 ctx->found_key = 1;
1164 if (!quiet)
dtucker@openbsd.orgd0723702017-03-06 00:44:51 +00001165 printf("# Host %s found: line %lu\n",
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001166 ctx->host, l->linenum);
1167 }
1168 return 0;
1169 } else if (find_host) {
1170 ctx->found_key = 1;
1171 if (!quiet) {
dtucker@openbsd.orgd0723702017-03-06 00:44:51 +00001172 printf("# Host %s found: line %lu %s\n",
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001173 ctx->host,
1174 l->linenum, l->marker == MRK_CA ? "CA" :
1175 (l->marker == MRK_REVOKE ? "REVOKED" : ""));
1176 }
1177 if (hash_hosts)
1178 known_hosts_hash(l, ctx);
djm@openbsd.org4739e8d2015-05-21 12:01:19 +00001179 else if (print_fingerprint) {
1180 fp = sshkey_fingerprint(l->key, fptype, rep);
djm@openbsd.orga287c5a2017-02-10 03:36:40 +00001181 mprintf("%s %s %s %s\n", ctx->host,
djm@openbsd.org4739e8d2015-05-21 12:01:19 +00001182 sshkey_type(l->key), fp, l->comment);
1183 free(fp);
1184 } else
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001185 fprintf(ctx->out, "%s\n", l->line);
1186 return 0;
1187 }
1188 } else if (delete_host) {
1189 /* Retain non-matching hosts when deleting */
1190 if (l->status == HKF_STATUS_INVALID) {
1191 ctx->invalid = 1;
dtucker@openbsd.orgd0723702017-03-06 00:44:51 +00001192 logit("%s:%lu: invalid line", l->path, l->linenum);
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001193 }
1194 fprintf(ctx->out, "%s\n", l->line);
1195 }
1196 return 0;
Damien Miller4b42d7f2005-03-01 21:48:35 +11001197}
1198
1199static void
1200do_known_hosts(struct passwd *pw, const char *name)
1201{
deraadt@openbsd.orgd2099de2015-01-19 00:32:54 +00001202 char *cp, tmp[PATH_MAX], old[PATH_MAX];
djm@openbsd.org2b3c3c72015-01-18 21:51:19 +00001203 int r, fd, oerrno, inplace = 0;
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001204 struct known_hosts_ctx ctx;
djm@openbsd.org4739e8d2015-05-21 12:01:19 +00001205 u_int foreach_options;
Damien Miller4b42d7f2005-03-01 21:48:35 +11001206
1207 if (!have_identity) {
1208 cp = tilde_expand_filename(_PATH_SSH_USER_HOSTFILE, pw->pw_uid);
1209 if (strlcpy(identity_file, cp, sizeof(identity_file)) >=
1210 sizeof(identity_file))
1211 fatal("Specified known hosts path too long");
Darren Tuckera627d422013-06-02 07:31:17 +10001212 free(cp);
Damien Miller4b42d7f2005-03-01 21:48:35 +11001213 have_identity = 1;
1214 }
Damien Miller4b42d7f2005-03-01 21:48:35 +11001215
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001216 memset(&ctx, 0, sizeof(ctx));
1217 ctx.out = stdout;
1218 ctx.host = name;
1219
Damien Miller4b42d7f2005-03-01 21:48:35 +11001220 /*
1221 * Find hosts goes to stdout, hash and deletions happen in-place
1222 * A corner case is ssh-keygen -HF foo, which should go to stdout
1223 */
1224 if (!find_host && (hash_hosts || delete_host)) {
1225 if (strlcpy(tmp, identity_file, sizeof(tmp)) >= sizeof(tmp) ||
1226 strlcat(tmp, ".XXXXXXXXXX", sizeof(tmp)) >= sizeof(tmp) ||
1227 strlcpy(old, identity_file, sizeof(old)) >= sizeof(old) ||
1228 strlcat(old, ".old", sizeof(old)) >= sizeof(old))
1229 fatal("known_hosts path too long");
1230 umask(077);
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001231 if ((fd = mkstemp(tmp)) == -1)
Damien Miller4b42d7f2005-03-01 21:48:35 +11001232 fatal("mkstemp: %s", strerror(errno));
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001233 if ((ctx.out = fdopen(fd, "w")) == NULL) {
1234 oerrno = errno;
Damien Miller4b42d7f2005-03-01 21:48:35 +11001235 unlink(tmp);
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001236 fatal("fdopen: %s", strerror(oerrno));
Damien Miller4b42d7f2005-03-01 21:48:35 +11001237 }
djm@openbsd.org2b3c3c72015-01-18 21:51:19 +00001238 inplace = 1;
Damien Miller4b42d7f2005-03-01 21:48:35 +11001239 }
1240
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001241 /* XXX support identity_file == "-" for stdin */
djm@openbsd.org4739e8d2015-05-21 12:01:19 +00001242 foreach_options = find_host ? HKF_WANT_MATCH : 0;
1243 foreach_options |= print_fingerprint ? HKF_WANT_PARSE_KEY : 0;
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001244 if ((r = hostkeys_foreach(identity_file,
1245 hash_hosts ? known_hosts_hash : known_hosts_find_delete, &ctx,
deraadt@openbsd.org6da413c2015-11-28 06:50:52 +00001246 name, NULL, foreach_options)) != 0) {
1247 if (inplace)
1248 unlink(tmp);
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001249 fatal("%s: hostkeys_foreach failed: %s", __func__, ssh_err(r));
deraadt@openbsd.org6da413c2015-11-28 06:50:52 +00001250 }
Damien Miller4b42d7f2005-03-01 21:48:35 +11001251
djm@openbsd.org2b3c3c72015-01-18 21:51:19 +00001252 if (inplace)
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001253 fclose(ctx.out);
Damien Miller0a80ca12010-02-27 07:55:05 +11001254
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001255 if (ctx.invalid) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00001256 error("%s is not a valid known_hosts file.", identity_file);
djm@openbsd.org2b3c3c72015-01-18 21:51:19 +00001257 if (inplace) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00001258 error("Not replacing existing known_hosts "
1259 "file because of errors");
Damien Miller4b42d7f2005-03-01 21:48:35 +11001260 unlink(tmp);
1261 }
1262 exit(1);
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001263 } else if (delete_host && !ctx.found_key) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00001264 logit("Host %s not found in %s", name, identity_file);
djm@openbsd.orgc8376432015-08-19 23:17:51 +00001265 if (inplace)
1266 unlink(tmp);
djm@openbsd.org2b3c3c72015-01-18 21:51:19 +00001267 } else if (inplace) {
Damien Miller4b42d7f2005-03-01 21:48:35 +11001268 /* Backup existing file */
1269 if (unlink(old) == -1 && errno != ENOENT)
1270 fatal("unlink %.100s: %s", old, strerror(errno));
1271 if (link(identity_file, old) == -1)
1272 fatal("link %.100s to %.100s: %s", identity_file, old,
1273 strerror(errno));
1274 /* Move new one into place */
1275 if (rename(tmp, identity_file) == -1) {
1276 error("rename\"%s\" to \"%s\": %s", tmp, identity_file,
1277 strerror(errno));
1278 unlink(tmp);
1279 unlink(old);
1280 exit(1);
1281 }
1282
djm@openbsd.org3038a192015-04-17 13:19:22 +00001283 printf("%s updated.\n", identity_file);
1284 printf("Original contents retained as %s\n", old);
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001285 if (ctx.has_unhashed) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00001286 logit("WARNING: %s contains unhashed entries", old);
1287 logit("Delete this file to ensure privacy "
1288 "of hostnames");
Damien Miller4b42d7f2005-03-01 21:48:35 +11001289 }
1290 }
1291
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001292 exit (find_host && !ctx.found_key);
Damien Miller4b42d7f2005-03-01 21:48:35 +11001293}
1294
Damien Miller95def091999-11-25 00:26:21 +11001295/*
1296 * Perform changing a passphrase. The argument is the passwd structure
1297 * for the current user.
1298 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001299static void
Damien Miller10f6f6b1999-11-17 17:29:08 +11001300do_change_passphrase(struct passwd *pw)
1301{
Damien Miller95def091999-11-25 00:26:21 +11001302 char *comment;
1303 char *old_passphrase, *passphrase1, *passphrase2;
1304 struct stat st;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001305 struct sshkey *private;
1306 int r;
Damien Miller10f6f6b1999-11-17 17:29:08 +11001307
Damien Miller95def091999-11-25 00:26:21 +11001308 if (!have_identity)
1309 ask_filename(pw, "Enter file in which the key is");
djm@openbsd.org3038a192015-04-17 13:19:22 +00001310 if (stat(identity_file, &st) < 0)
1311 fatal("%s: %s", identity_file, strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +11001312 /* Try to load the file with empty passphrase. */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001313 r = sshkey_load_private(identity_file, "", &private, &comment);
1314 if (r == SSH_ERR_KEY_WRONG_PASSPHRASE) {
Damien Miller95def091999-11-25 00:26:21 +11001315 if (identity_passphrase)
1316 old_passphrase = xstrdup(identity_passphrase);
1317 else
Ben Lindstrom949974b2001-06-25 05:20:31 +00001318 old_passphrase =
1319 read_passphrase("Enter old passphrase: ",
1320 RP_ALLOW_STDIN);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001321 r = sshkey_load_private(identity_file, old_passphrase,
1322 &private, &comment);
Damien Millera5103f42014-02-04 11:20:14 +11001323 explicit_bzero(old_passphrase, strlen(old_passphrase));
Darren Tuckera627d422013-06-02 07:31:17 +10001324 free(old_passphrase);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001325 if (r != 0)
1326 goto badkey;
1327 } else if (r != 0) {
1328 badkey:
djm@openbsd.org3038a192015-04-17 13:19:22 +00001329 fatal("Failed to load key %s: %s", identity_file, ssh_err(r));
Damien Miller95def091999-11-25 00:26:21 +11001330 }
djm@openbsd.orgf43d1722015-02-26 20:45:47 +00001331 if (comment)
djm@openbsd.orga287c5a2017-02-10 03:36:40 +00001332 mprintf("Key has comment '%s'\n", comment);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001333
Damien Miller95def091999-11-25 00:26:21 +11001334 /* Ask the new passphrase (twice). */
1335 if (identity_new_passphrase) {
1336 passphrase1 = xstrdup(identity_new_passphrase);
1337 passphrase2 = NULL;
1338 } else {
1339 passphrase1 =
Ben Lindstrom949974b2001-06-25 05:20:31 +00001340 read_passphrase("Enter new passphrase (empty for no "
1341 "passphrase): ", RP_ALLOW_STDIN);
1342 passphrase2 = read_passphrase("Enter same passphrase again: ",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001343 RP_ALLOW_STDIN);
Damien Miller95def091999-11-25 00:26:21 +11001344
1345 /* Verify that they are the same. */
1346 if (strcmp(passphrase1, passphrase2) != 0) {
Damien Millera5103f42014-02-04 11:20:14 +11001347 explicit_bzero(passphrase1, strlen(passphrase1));
1348 explicit_bzero(passphrase2, strlen(passphrase2));
Darren Tuckera627d422013-06-02 07:31:17 +10001349 free(passphrase1);
1350 free(passphrase2);
Damien Miller95def091999-11-25 00:26:21 +11001351 printf("Pass phrases do not match. Try again.\n");
1352 exit(1);
1353 }
1354 /* Destroy the other copy. */
Damien Millera5103f42014-02-04 11:20:14 +11001355 explicit_bzero(passphrase2, strlen(passphrase2));
Darren Tuckera627d422013-06-02 07:31:17 +10001356 free(passphrase2);
Damien Miller95def091999-11-25 00:26:21 +11001357 }
1358
1359 /* Save the file using the new passphrase. */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001360 if ((r = sshkey_save_private(private, identity_file, passphrase1,
1361 comment, use_new_format, new_format_cipher, rounds)) != 0) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00001362 error("Saving key \"%s\" failed: %s.",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001363 identity_file, ssh_err(r));
Damien Millera5103f42014-02-04 11:20:14 +11001364 explicit_bzero(passphrase1, strlen(passphrase1));
Darren Tuckera627d422013-06-02 07:31:17 +10001365 free(passphrase1);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001366 sshkey_free(private);
Darren Tuckera627d422013-06-02 07:31:17 +10001367 free(comment);
Damien Miller95def091999-11-25 00:26:21 +11001368 exit(1);
1369 }
1370 /* Destroy the passphrase and the copy of the key in memory. */
Damien Millera5103f42014-02-04 11:20:14 +11001371 explicit_bzero(passphrase1, strlen(passphrase1));
Darren Tuckera627d422013-06-02 07:31:17 +10001372 free(passphrase1);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001373 sshkey_free(private); /* Destroys contents */
Darren Tuckera627d422013-06-02 07:31:17 +10001374 free(comment);
Damien Miller95def091999-11-25 00:26:21 +11001375
1376 printf("Your identification has been saved with the new passphrase.\n");
1377 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001378}
1379
Damien Miller37876e92003-05-15 10:19:46 +10001380/*
1381 * Print the SSHFP RR.
1382 */
Damien Millercb314822006-03-26 13:48:01 +11001383static int
1384do_print_resource_record(struct passwd *pw, char *fname, char *hname)
Damien Miller37876e92003-05-15 10:19:46 +10001385{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001386 struct sshkey *public;
Damien Miller37876e92003-05-15 10:19:46 +10001387 char *comment = NULL;
1388 struct stat st;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001389 int r;
Damien Miller37876e92003-05-15 10:19:46 +10001390
Damien Millercb314822006-03-26 13:48:01 +11001391 if (fname == NULL)
Damien Miller5bb88332013-07-18 16:13:37 +10001392 fatal("%s: no filename", __func__);
Damien Millercb314822006-03-26 13:48:01 +11001393 if (stat(fname, &st) < 0) {
1394 if (errno == ENOENT)
1395 return 0;
djm@openbsd.org3038a192015-04-17 13:19:22 +00001396 fatal("%s: %s", fname, strerror(errno));
Damien Miller37876e92003-05-15 10:19:46 +10001397 }
djm@openbsd.org3038a192015-04-17 13:19:22 +00001398 if ((r = sshkey_load_public(fname, &public, &comment)) != 0)
1399 fatal("Failed to read v2 public key from \"%s\": %s.",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001400 fname, ssh_err(r));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001401 export_dns_rr(hname, public, stdout, print_generic);
1402 sshkey_free(public);
1403 free(comment);
1404 return 1;
Damien Miller37876e92003-05-15 10:19:46 +10001405}
Damien Miller37876e92003-05-15 10:19:46 +10001406
Damien Miller95def091999-11-25 00:26:21 +11001407/*
1408 * Change the comment of a private key file.
1409 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001410static void
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001411do_change_comment(struct passwd *pw)
1412{
Ben Lindstrom5fc62702001-03-09 18:19:24 +00001413 char new_comment[1024], *comment, *passphrase;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001414 struct sshkey *private;
1415 struct sshkey *public;
Damien Miller95def091999-11-25 00:26:21 +11001416 struct stat st;
1417 FILE *f;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001418 int r, fd;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001419
Damien Miller95def091999-11-25 00:26:21 +11001420 if (!have_identity)
1421 ask_filename(pw, "Enter file in which the key is");
djm@openbsd.org3038a192015-04-17 13:19:22 +00001422 if (stat(identity_file, &st) < 0)
1423 fatal("%s: %s", identity_file, strerror(errno));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001424 if ((r = sshkey_load_private(identity_file, "",
1425 &private, &comment)) == 0)
1426 passphrase = xstrdup("");
djm@openbsd.org3038a192015-04-17 13:19:22 +00001427 else if (r != SSH_ERR_KEY_WRONG_PASSPHRASE)
1428 fatal("Cannot load private key \"%s\": %s.",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001429 identity_file, ssh_err(r));
djm@openbsd.org3038a192015-04-17 13:19:22 +00001430 else {
Damien Miller95def091999-11-25 00:26:21 +11001431 if (identity_passphrase)
1432 passphrase = xstrdup(identity_passphrase);
1433 else if (identity_new_passphrase)
1434 passphrase = xstrdup(identity_new_passphrase);
1435 else
Ben Lindstrom949974b2001-06-25 05:20:31 +00001436 passphrase = read_passphrase("Enter passphrase: ",
1437 RP_ALLOW_STDIN);
Damien Miller95def091999-11-25 00:26:21 +11001438 /* Try to load using the passphrase. */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001439 if ((r = sshkey_load_private(identity_file, passphrase,
1440 &private, &comment)) != 0) {
Damien Millera5103f42014-02-04 11:20:14 +11001441 explicit_bzero(passphrase, strlen(passphrase));
Darren Tuckera627d422013-06-02 07:31:17 +10001442 free(passphrase);
djm@openbsd.org3038a192015-04-17 13:19:22 +00001443 fatal("Cannot load private key \"%s\": %s.",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001444 identity_file, ssh_err(r));
Damien Miller95def091999-11-25 00:26:21 +11001445 }
1446 }
halex@openbsd.org4d906252015-11-20 23:04:01 +00001447
1448 if (private->type != KEY_RSA1 && private->type != KEY_ED25519 &&
1449 !use_new_format) {
1450 error("Comments are only supported for RSA1 or keys stored in "
1451 "the new format (-o).");
tobias@openbsd.org704d8c82015-03-31 11:06:49 +00001452 explicit_bzero(passphrase, strlen(passphrase));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001453 sshkey_free(private);
Ben Lindstromd0fca422001-03-26 13:44:06 +00001454 exit(1);
Damien Miller9f0f5c62001-12-21 14:45:46 +11001455 }
millert@openbsd.orge40269b2017-02-08 20:32:43 +00001456 if (comment)
1457 printf("Key now has comment '%s'\n", comment);
1458 else
1459 printf("Key now has no comment\n");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001460
Damien Miller95def091999-11-25 00:26:21 +11001461 if (identity_comment) {
1462 strlcpy(new_comment, identity_comment, sizeof(new_comment));
1463 } else {
1464 printf("Enter new comment: ");
1465 fflush(stdout);
1466 if (!fgets(new_comment, sizeof(new_comment), stdin)) {
Damien Millera5103f42014-02-04 11:20:14 +11001467 explicit_bzero(passphrase, strlen(passphrase));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001468 sshkey_free(private);
Damien Miller95def091999-11-25 00:26:21 +11001469 exit(1);
1470 }
Damien Miller14b017d2007-09-17 16:09:15 +10001471 new_comment[strcspn(new_comment, "\n")] = '\0';
Damien Miller95def091999-11-25 00:26:21 +11001472 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001473
Damien Miller95def091999-11-25 00:26:21 +11001474 /* Save the file using the new passphrase. */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001475 if ((r = sshkey_save_private(private, identity_file, passphrase,
1476 new_comment, use_new_format, new_format_cipher, rounds)) != 0) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00001477 error("Saving key \"%s\" failed: %s",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001478 identity_file, ssh_err(r));
Damien Millera5103f42014-02-04 11:20:14 +11001479 explicit_bzero(passphrase, strlen(passphrase));
Darren Tuckera627d422013-06-02 07:31:17 +10001480 free(passphrase);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001481 sshkey_free(private);
Darren Tuckera627d422013-06-02 07:31:17 +10001482 free(comment);
Damien Miller95def091999-11-25 00:26:21 +11001483 exit(1);
1484 }
Damien Millera5103f42014-02-04 11:20:14 +11001485 explicit_bzero(passphrase, strlen(passphrase));
Darren Tuckera627d422013-06-02 07:31:17 +10001486 free(passphrase);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001487 if ((r = sshkey_from_private(private, &public)) != 0)
1488 fatal("key_from_private failed: %s", ssh_err(r));
1489 sshkey_free(private);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001490
Damien Miller95def091999-11-25 00:26:21 +11001491 strlcat(identity_file, ".pub", sizeof(identity_file));
Ben Lindstrom5fc62702001-03-09 18:19:24 +00001492 fd = open(identity_file, O_WRONLY | O_CREAT | O_TRUNC, 0644);
djm@openbsd.org3038a192015-04-17 13:19:22 +00001493 if (fd == -1)
1494 fatal("Could not save your public key in %s", identity_file);
Ben Lindstrom5fc62702001-03-09 18:19:24 +00001495 f = fdopen(fd, "w");
djm@openbsd.org3038a192015-04-17 13:19:22 +00001496 if (f == NULL)
1497 fatal("fdopen %s failed: %s", identity_file, strerror(errno));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001498 if ((r = sshkey_write(public, f)) != 0)
djm@openbsd.org3038a192015-04-17 13:19:22 +00001499 fatal("write key failed: %s", ssh_err(r));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001500 sshkey_free(public);
Damien Millereba71ba2000-04-29 23:57:08 +10001501 fprintf(f, " %s\n", new_comment);
Damien Miller95def091999-11-25 00:26:21 +11001502 fclose(f);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001503
Darren Tuckera627d422013-06-02 07:31:17 +10001504 free(comment);
Damien Miller95def091999-11-25 00:26:21 +11001505
1506 printf("The comment in your key file has been changed.\n");
1507 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001508}
1509
Damien Miller0a80ca12010-02-27 07:55:05 +11001510static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001511add_flag_option(struct sshbuf *c, const char *name)
Damien Miller0a80ca12010-02-27 07:55:05 +11001512{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001513 int r;
1514
Damien Miller0a80ca12010-02-27 07:55:05 +11001515 debug3("%s: %s", __func__, name);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001516 if ((r = sshbuf_put_cstring(c, name)) != 0 ||
1517 (r = sshbuf_put_string(c, NULL, 0)) != 0)
1518 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Miller0a80ca12010-02-27 07:55:05 +11001519}
1520
1521static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001522add_string_option(struct sshbuf *c, const char *name, const char *value)
Damien Miller0a80ca12010-02-27 07:55:05 +11001523{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001524 struct sshbuf *b;
1525 int r;
Damien Miller0a80ca12010-02-27 07:55:05 +11001526
1527 debug3("%s: %s=%s", __func__, name, value);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001528 if ((b = sshbuf_new()) == NULL)
1529 fatal("%s: sshbuf_new failed", __func__);
1530 if ((r = sshbuf_put_cstring(b, value)) != 0 ||
1531 (r = sshbuf_put_cstring(c, name)) != 0 ||
1532 (r = sshbuf_put_stringb(c, b)) != 0)
1533 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Miller0a80ca12010-02-27 07:55:05 +11001534
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001535 sshbuf_free(b);
Damien Miller0a80ca12010-02-27 07:55:05 +11001536}
1537
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001538#define OPTIONS_CRITICAL 1
1539#define OPTIONS_EXTENSIONS 2
Damien Miller0a80ca12010-02-27 07:55:05 +11001540static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001541prepare_options_buf(struct sshbuf *c, int which)
Damien Miller0a80ca12010-02-27 07:55:05 +11001542{
djm@openbsd.org249516e2017-04-29 04:12:25 +00001543 size_t i;
1544
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001545 sshbuf_reset(c);
Damien Miller1da63882010-08-05 13:03:51 +10001546 if ((which & OPTIONS_CRITICAL) != 0 &&
1547 certflags_command != NULL)
1548 add_string_option(c, "force-command", certflags_command);
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001549 if ((which & OPTIONS_EXTENSIONS) != 0 &&
Damien Miller2ce12ef2011-05-05 14:17:18 +10001550 (certflags_flags & CERTOPT_X_FWD) != 0)
1551 add_flag_option(c, "permit-X11-forwarding");
1552 if ((which & OPTIONS_EXTENSIONS) != 0 &&
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001553 (certflags_flags & CERTOPT_AGENT_FWD) != 0)
Damien Miller4e270b02010-04-16 15:56:21 +10001554 add_flag_option(c, "permit-agent-forwarding");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001555 if ((which & OPTIONS_EXTENSIONS) != 0 &&
1556 (certflags_flags & CERTOPT_PORT_FWD) != 0)
Damien Miller4e270b02010-04-16 15:56:21 +10001557 add_flag_option(c, "permit-port-forwarding");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001558 if ((which & OPTIONS_EXTENSIONS) != 0 &&
1559 (certflags_flags & CERTOPT_PTY) != 0)
Damien Miller4e270b02010-04-16 15:56:21 +10001560 add_flag_option(c, "permit-pty");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001561 if ((which & OPTIONS_EXTENSIONS) != 0 &&
1562 (certflags_flags & CERTOPT_USER_RC) != 0)
Damien Miller4e270b02010-04-16 15:56:21 +10001563 add_flag_option(c, "permit-user-rc");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001564 if ((which & OPTIONS_CRITICAL) != 0 &&
1565 certflags_src_addr != NULL)
1566 add_string_option(c, "source-address", certflags_src_addr);
djm@openbsd.org249516e2017-04-29 04:12:25 +00001567 for (i = 0; i < ncert_userext; i++) {
1568 if ((cert_userext[i].crit && (which & OPTIONS_EXTENSIONS)) ||
1569 (!cert_userext[i].crit && (which & OPTIONS_CRITICAL)))
1570 continue;
1571 if (cert_userext[i].val == NULL)
1572 add_flag_option(c, cert_userext[i].key);
1573 else {
1574 add_string_option(c, cert_userext[i].key,
1575 cert_userext[i].val);
1576 }
1577 }
Damien Miller0a80ca12010-02-27 07:55:05 +11001578}
1579
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001580static struct sshkey *
Damien Miller757f34e2010-08-05 13:05:31 +10001581load_pkcs11_key(char *path)
1582{
1583#ifdef ENABLE_PKCS11
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001584 struct sshkey **keys = NULL, *public, *private = NULL;
1585 int r, i, nkeys;
Damien Miller757f34e2010-08-05 13:05:31 +10001586
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001587 if ((r = sshkey_load_public(path, &public, NULL)) != 0)
1588 fatal("Couldn't load CA public key \"%s\": %s",
1589 path, ssh_err(r));
Damien Miller757f34e2010-08-05 13:05:31 +10001590
1591 nkeys = pkcs11_add_provider(pkcs11provider, identity_passphrase, &keys);
1592 debug3("%s: %d keys", __func__, nkeys);
1593 if (nkeys <= 0)
1594 fatal("cannot read public key from pkcs11");
1595 for (i = 0; i < nkeys; i++) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001596 if (sshkey_equal_public(public, keys[i])) {
Damien Miller757f34e2010-08-05 13:05:31 +10001597 private = keys[i];
1598 continue;
1599 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001600 sshkey_free(keys[i]);
Damien Miller757f34e2010-08-05 13:05:31 +10001601 }
Darren Tuckera627d422013-06-02 07:31:17 +10001602 free(keys);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001603 sshkey_free(public);
Damien Miller757f34e2010-08-05 13:05:31 +10001604 return private;
1605#else
1606 fatal("no pkcs11 support");
1607#endif /* ENABLE_PKCS11 */
1608}
1609
Damien Miller0a80ca12010-02-27 07:55:05 +11001610static void
1611do_ca_sign(struct passwd *pw, int argc, char **argv)
1612{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001613 int r, i, fd;
Damien Miller0a80ca12010-02-27 07:55:05 +11001614 u_int n;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001615 struct sshkey *ca, *public;
djm@openbsd.org499cf362015-11-19 01:08:55 +00001616 char valid[64], *otmp, *tmp, *cp, *out, *comment, **plist = NULL;
Damien Miller0a80ca12010-02-27 07:55:05 +11001617 FILE *f;
Damien Miller4e270b02010-04-16 15:56:21 +10001618
Damien Miller1f0311c2014-05-15 14:24:09 +10001619#ifdef ENABLE_PKCS11
Damien Miller757f34e2010-08-05 13:05:31 +10001620 pkcs11_init(1);
Damien Miller1f0311c2014-05-15 14:24:09 +10001621#endif
Damien Miller757f34e2010-08-05 13:05:31 +10001622 tmp = tilde_expand_filename(ca_key_path, pw->pw_uid);
1623 if (pkcs11provider != NULL) {
1624 if ((ca = load_pkcs11_key(tmp)) == NULL)
1625 fatal("No PKCS#11 key matching %s found", ca_key_path);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001626 } else
1627 ca = load_identity(tmp);
Darren Tuckera627d422013-06-02 07:31:17 +10001628 free(tmp);
Damien Miller757f34e2010-08-05 13:05:31 +10001629
djm@openbsd.org57464e32016-05-02 09:36:42 +00001630 if (key_type_name != NULL &&
1631 sshkey_type_from_name(key_type_name) != ca->type) {
1632 fatal("CA key type %s doesn't match specified %s",
1633 sshkey_ssh_name(ca), key_type_name);
1634 }
1635
Damien Miller0a80ca12010-02-27 07:55:05 +11001636 for (i = 0; i < argc; i++) {
1637 /* Split list of principals */
1638 n = 0;
1639 if (cert_principals != NULL) {
1640 otmp = tmp = xstrdup(cert_principals);
1641 plist = NULL;
1642 for (; (cp = strsep(&tmp, ",")) != NULL; n++) {
deraadt@openbsd.org657a5fb2015-04-24 01:36:00 +00001643 plist = xreallocarray(plist, n + 1, sizeof(*plist));
Damien Miller0a80ca12010-02-27 07:55:05 +11001644 if (*(plist[n] = xstrdup(cp)) == '\0')
1645 fatal("Empty principal name");
1646 }
Darren Tuckera627d422013-06-02 07:31:17 +10001647 free(otmp);
Damien Miller0a80ca12010-02-27 07:55:05 +11001648 }
1649
1650 tmp = tilde_expand_filename(argv[i], pw->pw_uid);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001651 if ((r = sshkey_load_public(tmp, &public, &comment)) != 0)
1652 fatal("%s: unable to open \"%s\": %s",
1653 __func__, tmp, ssh_err(r));
Damien Millereb8b60e2010-08-31 22:41:14 +10001654 if (public->type != KEY_RSA && public->type != KEY_DSA &&
Damien Miller5be9d9e2013-12-07 11:24:01 +11001655 public->type != KEY_ECDSA && public->type != KEY_ED25519)
Damien Miller0a80ca12010-02-27 07:55:05 +11001656 fatal("%s: key \"%s\" type %s cannot be certified",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001657 __func__, tmp, sshkey_type(public));
Damien Miller0a80ca12010-02-27 07:55:05 +11001658
1659 /* Prepare certificate to sign */
djm@openbsd.orgc28fc622015-07-03 03:43:18 +00001660 if ((r = sshkey_to_certified(public)) != 0)
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001661 fatal("Could not upgrade key %s to certificate: %s",
1662 tmp, ssh_err(r));
Damien Miller0a80ca12010-02-27 07:55:05 +11001663 public->cert->type = cert_key_type;
Damien Miller4e270b02010-04-16 15:56:21 +10001664 public->cert->serial = (u_int64_t)cert_serial;
Damien Miller0a80ca12010-02-27 07:55:05 +11001665 public->cert->key_id = xstrdup(cert_key_id);
1666 public->cert->nprincipals = n;
1667 public->cert->principals = plist;
1668 public->cert->valid_after = cert_valid_from;
1669 public->cert->valid_before = cert_valid_to;
djm@openbsd.orgc28fc622015-07-03 03:43:18 +00001670 prepare_options_buf(public->cert->critical, OPTIONS_CRITICAL);
1671 prepare_options_buf(public->cert->extensions,
1672 OPTIONS_EXTENSIONS);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001673 if ((r = sshkey_from_private(ca,
1674 &public->cert->signature_key)) != 0)
1675 fatal("key_from_private (ca key): %s", ssh_err(r));
Damien Miller0a80ca12010-02-27 07:55:05 +11001676
djm@openbsd.org57464e32016-05-02 09:36:42 +00001677 if ((r = sshkey_certify(public, ca, key_type_name)) != 0)
1678 fatal("Couldn't certify key %s: %s", tmp, ssh_err(r));
Damien Miller0a80ca12010-02-27 07:55:05 +11001679
1680 if ((cp = strrchr(tmp, '.')) != NULL && strcmp(cp, ".pub") == 0)
1681 *cp = '\0';
1682 xasprintf(&out, "%s-cert.pub", tmp);
Darren Tuckera627d422013-06-02 07:31:17 +10001683 free(tmp);
Damien Miller0a80ca12010-02-27 07:55:05 +11001684
1685 if ((fd = open(out, O_WRONLY|O_CREAT|O_TRUNC, 0644)) == -1)
1686 fatal("Could not open \"%s\" for writing: %s", out,
1687 strerror(errno));
1688 if ((f = fdopen(fd, "w")) == NULL)
1689 fatal("%s: fdopen: %s", __func__, strerror(errno));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001690 if ((r = sshkey_write(public, f)) != 0)
1691 fatal("Could not write certified key to %s: %s",
1692 out, ssh_err(r));
Damien Miller0a80ca12010-02-27 07:55:05 +11001693 fprintf(f, " %s\n", comment);
1694 fclose(f);
1695
Damien Miller4e270b02010-04-16 15:56:21 +10001696 if (!quiet) {
djm@openbsd.org964ab3e2015-11-19 01:12:32 +00001697 sshkey_format_cert_validity(public->cert,
djm@openbsd.org499cf362015-11-19 01:08:55 +00001698 valid, sizeof(valid));
Damien Miller4e270b02010-04-16 15:56:21 +10001699 logit("Signed %s key %s: id \"%s\" serial %llu%s%s "
djm@openbsd.org964ab3e2015-11-19 01:12:32 +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 : "",
djm@openbsd.org499cf362015-11-19 01:08:55 +00001705 valid);
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 /*
djm@openbsd.org964ab3e2015-11-19 01:12:32 +00001739 * POSIX strptime says "The application shall ensure that there
Damien Miller2ca342b2010-03-03 12:14:15 +11001740 * 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{
djm@openbsd.org249516e2017-04-29 04:12:25 +00001814 char *val, *cp;
1815 int iscrit = 0;
Damien Miller0a80ca12010-02-27 07:55:05 +11001816
Damien Miller044f4a62011-05-05 14:14:08 +10001817 if (strcasecmp(opt, "clear") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001818 certflags_flags = 0;
Damien Miller0a80ca12010-02-27 07:55:05 +11001819 else if (strcasecmp(opt, "no-x11-forwarding") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001820 certflags_flags &= ~CERTOPT_X_FWD;
Damien Miller0a80ca12010-02-27 07:55:05 +11001821 else if (strcasecmp(opt, "permit-x11-forwarding") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001822 certflags_flags |= CERTOPT_X_FWD;
Damien Miller0a80ca12010-02-27 07:55:05 +11001823 else if (strcasecmp(opt, "no-agent-forwarding") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001824 certflags_flags &= ~CERTOPT_AGENT_FWD;
Damien Miller0a80ca12010-02-27 07:55:05 +11001825 else if (strcasecmp(opt, "permit-agent-forwarding") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001826 certflags_flags |= CERTOPT_AGENT_FWD;
Damien Miller0a80ca12010-02-27 07:55:05 +11001827 else if (strcasecmp(opt, "no-port-forwarding") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001828 certflags_flags &= ~CERTOPT_PORT_FWD;
Damien Miller0a80ca12010-02-27 07:55:05 +11001829 else if (strcasecmp(opt, "permit-port-forwarding") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001830 certflags_flags |= CERTOPT_PORT_FWD;
Damien Miller0a80ca12010-02-27 07:55:05 +11001831 else if (strcasecmp(opt, "no-pty") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001832 certflags_flags &= ~CERTOPT_PTY;
Damien Miller0a80ca12010-02-27 07:55:05 +11001833 else if (strcasecmp(opt, "permit-pty") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001834 certflags_flags |= CERTOPT_PTY;
Damien Miller0a80ca12010-02-27 07:55:05 +11001835 else if (strcasecmp(opt, "no-user-rc") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001836 certflags_flags &= ~CERTOPT_USER_RC;
Damien Miller0a80ca12010-02-27 07:55:05 +11001837 else if (strcasecmp(opt, "permit-user-rc") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001838 certflags_flags |= CERTOPT_USER_RC;
Damien Miller0a80ca12010-02-27 07:55:05 +11001839 else if (strncasecmp(opt, "force-command=", 14) == 0) {
1840 val = opt + 14;
1841 if (*val == '\0')
Damien Miller4e270b02010-04-16 15:56:21 +10001842 fatal("Empty force-command option");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001843 if (certflags_command != NULL)
Damien Miller0a80ca12010-02-27 07:55:05 +11001844 fatal("force-command already specified");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001845 certflags_command = xstrdup(val);
Damien Miller0a80ca12010-02-27 07:55:05 +11001846 } else if (strncasecmp(opt, "source-address=", 15) == 0) {
1847 val = opt + 15;
1848 if (*val == '\0')
Damien Miller4e270b02010-04-16 15:56:21 +10001849 fatal("Empty source-address option");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001850 if (certflags_src_addr != NULL)
Damien Miller0a80ca12010-02-27 07:55:05 +11001851 fatal("source-address already specified");
1852 if (addr_match_cidr_list(NULL, val) != 0)
1853 fatal("Invalid source-address list");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001854 certflags_src_addr = xstrdup(val);
djm@openbsd.org249516e2017-04-29 04:12:25 +00001855 } else if (strncasecmp(opt, "extension:", 10) == 0 ||
1856 (iscrit = (strncasecmp(opt, "critical:", 9) == 0))) {
1857 val = xstrdup(strchr(opt, ':') + 1);
1858 if ((cp = strchr(val, '=')) != NULL)
1859 *cp++ = '\0';
1860 cert_userext = xreallocarray(cert_userext, ncert_userext + 1,
1861 sizeof(*cert_userext));
1862 cert_userext[ncert_userext].key = val;
1863 cert_userext[ncert_userext].val = cp == NULL ?
1864 NULL : xstrdup(cp);
1865 cert_userext[ncert_userext].crit = iscrit;
1866 ncert_userext++;
Damien Miller0a80ca12010-02-27 07:55:05 +11001867 } else
Damien Miller4e270b02010-04-16 15:56:21 +10001868 fatal("Unsupported certificate option \"%s\"", opt);
Damien Miller0a80ca12010-02-27 07:55:05 +11001869}
1870
Ben Lindstrombba81212001-06-25 05:01:22 +00001871static void
djm@openbsd.orgc28fc622015-07-03 03:43:18 +00001872show_options(struct sshbuf *optbuf, int in_critical)
Damien Millerd834d352010-06-26 09:48:02 +10001873{
Damien Miller633de332014-05-15 13:48:26 +10001874 char *name, *arg;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001875 struct sshbuf *options, *option = NULL;
1876 int r;
Damien Millerd834d352010-06-26 09:48:02 +10001877
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001878 if ((options = sshbuf_fromb(optbuf)) == NULL)
1879 fatal("%s: sshbuf_fromb failed", __func__);
1880 while (sshbuf_len(options) != 0) {
1881 sshbuf_free(option);
1882 option = NULL;
1883 if ((r = sshbuf_get_cstring(options, &name, NULL)) != 0 ||
1884 (r = sshbuf_froms(options, &option)) != 0)
1885 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Millerd834d352010-06-26 09:48:02 +10001886 printf(" %s", name);
djm@openbsd.orgc28fc622015-07-03 03:43:18 +00001887 if (!in_critical &&
Damien Millerd834d352010-06-26 09:48:02 +10001888 (strcmp(name, "permit-X11-forwarding") == 0 ||
1889 strcmp(name, "permit-agent-forwarding") == 0 ||
1890 strcmp(name, "permit-port-forwarding") == 0 ||
1891 strcmp(name, "permit-pty") == 0 ||
1892 strcmp(name, "permit-user-rc") == 0))
1893 printf("\n");
djm@openbsd.orgc28fc622015-07-03 03:43:18 +00001894 else if (in_critical &&
Damien Millerd834d352010-06-26 09:48:02 +10001895 (strcmp(name, "force-command") == 0 ||
1896 strcmp(name, "source-address") == 0)) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001897 if ((r = sshbuf_get_cstring(option, &arg, NULL)) != 0)
1898 fatal("%s: buffer error: %s",
1899 __func__, ssh_err(r));
Damien Miller633de332014-05-15 13:48:26 +10001900 printf(" %s\n", arg);
1901 free(arg);
Damien Millerd834d352010-06-26 09:48:02 +10001902 } else {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001903 printf(" UNKNOWN OPTION (len %zu)\n",
1904 sshbuf_len(option));
1905 sshbuf_reset(option);
Damien Millerd834d352010-06-26 09:48:02 +10001906 }
Darren Tuckera627d422013-06-02 07:31:17 +10001907 free(name);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001908 if (sshbuf_len(option) != 0)
Damien Millerd834d352010-06-26 09:48:02 +10001909 fatal("Option corrupt: extra data at end");
1910 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001911 sshbuf_free(option);
1912 sshbuf_free(options);
Damien Millerd834d352010-06-26 09:48:02 +10001913}
1914
1915static void
djm@openbsd.org94bc0b72015-11-13 04:34:15 +00001916print_cert(struct sshkey *key)
Damien Millerf2b70ca2010-03-05 07:39:35 +11001917{
djm@openbsd.org499cf362015-11-19 01:08:55 +00001918 char valid[64], *key_fp, *ca_fp;
djm@openbsd.orgc28fc622015-07-03 03:43:18 +00001919 u_int i;
Damien Miller4e270b02010-04-16 15:56:21 +10001920
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001921 key_fp = sshkey_fingerprint(key, fingerprint_hash, SSH_FP_DEFAULT);
1922 ca_fp = sshkey_fingerprint(key->cert->signature_key,
djm@openbsd.org56d1c832014-12-21 22:27:55 +00001923 fingerprint_hash, SSH_FP_DEFAULT);
djm@openbsd.org9ce86c92015-01-28 22:36:00 +00001924 if (key_fp == NULL || ca_fp == NULL)
1925 fatal("%s: sshkey_fingerprint fail", __func__);
djm@openbsd.org499cf362015-11-19 01:08:55 +00001926 sshkey_format_cert_validity(key->cert, valid, sizeof(valid));
Damien Millerf2b70ca2010-03-05 07:39:35 +11001927
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001928 printf(" Type: %s %s certificate\n", sshkey_ssh_name(key),
1929 sshkey_cert_type(key));
1930 printf(" Public key: %s %s\n", sshkey_type(key), key_fp);
Damien Miller4e270b02010-04-16 15:56:21 +10001931 printf(" Signing CA: %s %s\n",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001932 sshkey_type(key->cert->signature_key), ca_fp);
Damien Miller4e270b02010-04-16 15:56:21 +10001933 printf(" Key ID: \"%s\"\n", key->cert->key_id);
djm@openbsd.orgc28fc622015-07-03 03:43:18 +00001934 printf(" Serial: %llu\n", (unsigned long long)key->cert->serial);
djm@openbsd.org499cf362015-11-19 01:08:55 +00001935 printf(" Valid: %s\n", valid);
Damien Millerf2b70ca2010-03-05 07:39:35 +11001936 printf(" Principals: ");
1937 if (key->cert->nprincipals == 0)
1938 printf("(none)\n");
1939 else {
1940 for (i = 0; i < key->cert->nprincipals; i++)
1941 printf("\n %s",
1942 key->cert->principals[i]);
1943 printf("\n");
1944 }
Damien Miller4e270b02010-04-16 15:56:21 +10001945 printf(" Critical Options: ");
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001946 if (sshbuf_len(key->cert->critical) == 0)
Damien Millerf2b70ca2010-03-05 07:39:35 +11001947 printf("(none)\n");
1948 else {
1949 printf("\n");
djm@openbsd.orgc28fc622015-07-03 03:43:18 +00001950 show_options(key->cert->critical, 1);
Damien Millerf2b70ca2010-03-05 07:39:35 +11001951 }
djm@openbsd.orgc28fc622015-07-03 03:43:18 +00001952 printf(" Extensions: ");
1953 if (sshbuf_len(key->cert->extensions) == 0)
1954 printf("(none)\n");
1955 else {
1956 printf("\n");
1957 show_options(key->cert->extensions, 0);
Damien Miller4e270b02010-04-16 15:56:21 +10001958 }
djm@openbsd.org94bc0b72015-11-13 04:34:15 +00001959}
1960
1961static void
1962do_show_cert(struct passwd *pw)
1963{
1964 struct sshkey *key = NULL;
1965 struct stat st;
1966 int r, is_stdin = 0, ok = 0;
1967 FILE *f;
djm@openbsd.orgcce6a362015-12-11 03:19:09 +00001968 char *cp, line[SSH_MAX_PUBKEY_BYTES];
djm@openbsd.org94bc0b72015-11-13 04:34:15 +00001969 const char *path;
djm@openbsd.org1a31d022016-05-02 08:49:03 +00001970 u_long lnum = 0;
djm@openbsd.org94bc0b72015-11-13 04:34:15 +00001971
1972 if (!have_identity)
1973 ask_filename(pw, "Enter file in which the key is");
1974 if (strcmp(identity_file, "-") != 0 && stat(identity_file, &st) < 0)
1975 fatal("%s: %s: %s", __progname, identity_file, strerror(errno));
1976
1977 path = identity_file;
1978 if (strcmp(path, "-") == 0) {
1979 f = stdin;
1980 path = "(stdin)";
1981 is_stdin = 1;
1982 } else if ((f = fopen(identity_file, "r")) == NULL)
1983 fatal("fopen %s: %s", identity_file, strerror(errno));
1984
1985 while (read_keyfile_line(f, path, line, sizeof(line), &lnum) == 0) {
1986 sshkey_free(key);
1987 key = NULL;
1988 /* Trim leading space and comments */
1989 cp = line + strspn(line, " \t");
1990 if (*cp == '#' || *cp == '\0')
1991 continue;
1992 if ((key = sshkey_new(KEY_UNSPEC)) == NULL)
1993 fatal("key_new");
1994 if ((r = sshkey_read(key, &cp)) != 0) {
1995 error("%s:%lu: invalid key: %s", path,
1996 lnum, ssh_err(r));
1997 continue;
1998 }
1999 if (!sshkey_is_cert(key)) {
2000 error("%s:%lu is not a certificate", path, lnum);
2001 continue;
2002 }
2003 ok = 1;
2004 if (!is_stdin && lnum == 1)
2005 printf("%s:\n", path);
2006 else
2007 printf("%s:%lu:\n", path, lnum);
2008 print_cert(key);
2009 }
2010 sshkey_free(key);
2011 fclose(f);
2012 exit(ok ? 0 : 1);
Damien Millerf2b70ca2010-03-05 07:39:35 +11002013}
2014
2015static void
Damien Millerf3747bf2013-01-18 11:44:04 +11002016load_krl(const char *path, struct ssh_krl **krlp)
2017{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002018 struct sshbuf *krlbuf;
2019 int r, fd;
Damien Millerf3747bf2013-01-18 11:44:04 +11002020
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002021 if ((krlbuf = sshbuf_new()) == NULL)
2022 fatal("sshbuf_new failed");
Damien Millerf3747bf2013-01-18 11:44:04 +11002023 if ((fd = open(path, O_RDONLY)) == -1)
2024 fatal("open %s: %s", path, strerror(errno));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002025 if ((r = sshkey_load_file(fd, krlbuf)) != 0)
2026 fatal("Unable to load KRL: %s", ssh_err(r));
Damien Millerf3747bf2013-01-18 11:44:04 +11002027 close(fd);
2028 /* XXX check sigs */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002029 if ((r = ssh_krl_from_blob(krlbuf, krlp, NULL, 0)) != 0 ||
Damien Millerf3747bf2013-01-18 11:44:04 +11002030 *krlp == NULL)
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002031 fatal("Invalid KRL file: %s", ssh_err(r));
2032 sshbuf_free(krlbuf);
Damien Millerf3747bf2013-01-18 11:44:04 +11002033}
2034
2035static void
djm@openbsd.org669aee92015-01-30 01:10:33 +00002036update_krl_from_file(struct passwd *pw, const char *file, int wild_ca,
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002037 const struct sshkey *ca, struct ssh_krl *krl)
Damien Millerf3747bf2013-01-18 11:44:04 +11002038{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002039 struct sshkey *key = NULL;
Damien Millerf3747bf2013-01-18 11:44:04 +11002040 u_long lnum = 0;
2041 char *path, *cp, *ep, line[SSH_MAX_PUBKEY_BYTES];
2042 unsigned long long serial, serial2;
2043 int i, was_explicit_key, was_sha1, r;
2044 FILE *krl_spec;
2045
2046 path = tilde_expand_filename(file, pw->pw_uid);
2047 if (strcmp(path, "-") == 0) {
2048 krl_spec = stdin;
2049 free(path);
2050 path = xstrdup("(standard input)");
2051 } else if ((krl_spec = fopen(path, "r")) == NULL)
2052 fatal("fopen %s: %s", path, strerror(errno));
2053
2054 if (!quiet)
2055 printf("Revoking from %s\n", path);
2056 while (read_keyfile_line(krl_spec, path, line, sizeof(line),
2057 &lnum) == 0) {
2058 was_explicit_key = was_sha1 = 0;
2059 cp = line + strspn(line, " \t");
2060 /* Trim trailing space, comments and strip \n */
2061 for (i = 0, r = -1; cp[i] != '\0'; i++) {
2062 if (cp[i] == '#' || cp[i] == '\n') {
2063 cp[i] = '\0';
2064 break;
2065 }
2066 if (cp[i] == ' ' || cp[i] == '\t') {
2067 /* Remember the start of a span of whitespace */
2068 if (r == -1)
2069 r = i;
2070 } else
2071 r = -1;
2072 }
2073 if (r != -1)
2074 cp[r] = '\0';
2075 if (*cp == '\0')
2076 continue;
2077 if (strncasecmp(cp, "serial:", 7) == 0) {
djm@openbsd.org669aee92015-01-30 01:10:33 +00002078 if (ca == NULL && !wild_ca) {
Damien Millerd234afb2013-08-21 02:42:58 +10002079 fatal("revoking certificates by serial number "
Damien Millerf3747bf2013-01-18 11:44:04 +11002080 "requires specification of a CA key");
2081 }
2082 cp += 7;
2083 cp = cp + strspn(cp, " \t");
2084 errno = 0;
2085 serial = strtoull(cp, &ep, 0);
2086 if (*cp == '\0' || (*ep != '\0' && *ep != '-'))
2087 fatal("%s:%lu: invalid serial \"%s\"",
2088 path, lnum, cp);
2089 if (errno == ERANGE && serial == ULLONG_MAX)
2090 fatal("%s:%lu: serial out of range",
2091 path, lnum);
2092 serial2 = serial;
2093 if (*ep == '-') {
2094 cp = ep + 1;
2095 errno = 0;
2096 serial2 = strtoull(cp, &ep, 0);
2097 if (*cp == '\0' || *ep != '\0')
2098 fatal("%s:%lu: invalid serial \"%s\"",
2099 path, lnum, cp);
2100 if (errno == ERANGE && serial2 == ULLONG_MAX)
2101 fatal("%s:%lu: serial out of range",
2102 path, lnum);
2103 if (serial2 <= serial)
2104 fatal("%s:%lu: invalid serial range "
2105 "%llu:%llu", path, lnum,
2106 (unsigned long long)serial,
2107 (unsigned long long)serial2);
2108 }
2109 if (ssh_krl_revoke_cert_by_serial_range(krl,
2110 ca, serial, serial2) != 0) {
2111 fatal("%s: revoke serial failed",
2112 __func__);
2113 }
2114 } else if (strncasecmp(cp, "id:", 3) == 0) {
djm@openbsd.org669aee92015-01-30 01:10:33 +00002115 if (ca == NULL && !wild_ca) {
Damien Millerd5d9d7b2013-08-21 02:43:27 +10002116 fatal("revoking certificates by key ID "
Damien Millerf3747bf2013-01-18 11:44:04 +11002117 "requires specification of a CA key");
2118 }
2119 cp += 3;
2120 cp = cp + strspn(cp, " \t");
2121 if (ssh_krl_revoke_cert_by_key_id(krl, ca, cp) != 0)
2122 fatal("%s: revoke key ID failed", __func__);
2123 } else {
2124 if (strncasecmp(cp, "key:", 4) == 0) {
2125 cp += 4;
2126 cp = cp + strspn(cp, " \t");
2127 was_explicit_key = 1;
2128 } else if (strncasecmp(cp, "sha1:", 5) == 0) {
2129 cp += 5;
2130 cp = cp + strspn(cp, " \t");
2131 was_sha1 = 1;
2132 } else {
2133 /*
2134 * Just try to process the line as a key.
2135 * Parsing will fail if it isn't.
2136 */
2137 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002138 if ((key = sshkey_new(KEY_UNSPEC)) == NULL)
Damien Millerf3747bf2013-01-18 11:44:04 +11002139 fatal("key_new");
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002140 if ((r = sshkey_read(key, &cp)) != 0)
2141 fatal("%s:%lu: invalid key: %s",
2142 path, lnum, ssh_err(r));
Damien Millerf3747bf2013-01-18 11:44:04 +11002143 if (was_explicit_key)
2144 r = ssh_krl_revoke_key_explicit(krl, key);
2145 else if (was_sha1)
2146 r = ssh_krl_revoke_key_sha1(krl, key);
2147 else
2148 r = ssh_krl_revoke_key(krl, key);
2149 if (r != 0)
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002150 fatal("%s: revoke key failed: %s",
2151 __func__, ssh_err(r));
2152 sshkey_free(key);
Damien Millerf3747bf2013-01-18 11:44:04 +11002153 }
2154 }
2155 if (strcmp(path, "-") != 0)
2156 fclose(krl_spec);
Damien Miller0d6771b2013-04-23 15:23:24 +10002157 free(path);
Damien Millerf3747bf2013-01-18 11:44:04 +11002158}
2159
2160static void
2161do_gen_krl(struct passwd *pw, int updating, int argc, char **argv)
2162{
2163 struct ssh_krl *krl;
2164 struct stat sb;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002165 struct sshkey *ca = NULL;
djm@openbsd.org669aee92015-01-30 01:10:33 +00002166 int fd, i, r, wild_ca = 0;
Damien Millerf3747bf2013-01-18 11:44:04 +11002167 char *tmp;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002168 struct sshbuf *kbuf;
Damien Millerf3747bf2013-01-18 11:44:04 +11002169
2170 if (*identity_file == '\0')
2171 fatal("KRL generation requires an output file");
2172 if (stat(identity_file, &sb) == -1) {
2173 if (errno != ENOENT)
2174 fatal("Cannot access KRL \"%s\": %s",
2175 identity_file, strerror(errno));
2176 if (updating)
2177 fatal("KRL \"%s\" does not exist", identity_file);
2178 }
2179 if (ca_key_path != NULL) {
djm@openbsd.org669aee92015-01-30 01:10:33 +00002180 if (strcasecmp(ca_key_path, "none") == 0)
2181 wild_ca = 1;
2182 else {
2183 tmp = tilde_expand_filename(ca_key_path, pw->pw_uid);
2184 if ((r = sshkey_load_public(tmp, &ca, NULL)) != 0)
2185 fatal("Cannot load CA public key %s: %s",
2186 tmp, ssh_err(r));
2187 free(tmp);
2188 }
Damien Millerf3747bf2013-01-18 11:44:04 +11002189 }
2190
2191 if (updating)
2192 load_krl(identity_file, &krl);
2193 else if ((krl = ssh_krl_init()) == NULL)
2194 fatal("couldn't create KRL");
2195
2196 if (cert_serial != 0)
2197 ssh_krl_set_version(krl, cert_serial);
2198 if (identity_comment != NULL)
2199 ssh_krl_set_comment(krl, identity_comment);
2200
2201 for (i = 0; i < argc; i++)
djm@openbsd.org669aee92015-01-30 01:10:33 +00002202 update_krl_from_file(pw, argv[i], wild_ca, ca, krl);
Damien Millerf3747bf2013-01-18 11:44:04 +11002203
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002204 if ((kbuf = sshbuf_new()) == NULL)
2205 fatal("sshbuf_new failed");
2206 if (ssh_krl_to_blob(krl, kbuf, NULL, 0) != 0)
Damien Millerf3747bf2013-01-18 11:44:04 +11002207 fatal("Couldn't generate KRL");
2208 if ((fd = open(identity_file, O_WRONLY|O_CREAT|O_TRUNC, 0644)) == -1)
2209 fatal("open %s: %s", identity_file, strerror(errno));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002210 if (atomicio(vwrite, fd, (void *)sshbuf_ptr(kbuf), sshbuf_len(kbuf)) !=
2211 sshbuf_len(kbuf))
Damien Millerf3747bf2013-01-18 11:44:04 +11002212 fatal("write %s: %s", identity_file, strerror(errno));
2213 close(fd);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002214 sshbuf_free(kbuf);
Damien Millerf3747bf2013-01-18 11:44:04 +11002215 ssh_krl_free(krl);
mmcc@openbsd.org89540b62015-12-11 02:31:47 +00002216 sshkey_free(ca);
Damien Millerf3747bf2013-01-18 11:44:04 +11002217}
2218
2219static void
2220do_check_krl(struct passwd *pw, int argc, char **argv)
2221{
2222 int i, r, ret = 0;
2223 char *comment;
2224 struct ssh_krl *krl;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002225 struct sshkey *k;
Damien Millerf3747bf2013-01-18 11:44:04 +11002226
2227 if (*identity_file == '\0')
2228 fatal("KRL checking requires an input file");
2229 load_krl(identity_file, &krl);
2230 for (i = 0; i < argc; i++) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002231 if ((r = sshkey_load_public(argv[i], &k, &comment)) != 0)
2232 fatal("Cannot load public key %s: %s",
2233 argv[i], ssh_err(r));
Damien Millerf3747bf2013-01-18 11:44:04 +11002234 r = ssh_krl_check_key(krl, k);
2235 printf("%s%s%s%s: %s\n", argv[i],
2236 *comment ? " (" : "", comment, *comment ? ")" : "",
2237 r == 0 ? "ok" : "REVOKED");
2238 if (r != 0)
2239 ret = 1;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002240 sshkey_free(k);
Damien Millerf3747bf2013-01-18 11:44:04 +11002241 free(comment);
2242 }
2243 ssh_krl_free(krl);
2244 exit(ret);
2245}
2246
dtucker@openbsd.org3baa4cd2017-02-17 02:32:05 +00002247#ifdef WITH_SSH1
2248# define RSA1_USAGE " | rsa1"
2249#else
2250# define RSA1_USAGE ""
2251#endif
2252
Damien Millerf3747bf2013-01-18 11:44:04 +11002253static void
Damien Miller431f66b1999-11-21 18:31:57 +11002254usage(void)
2255{
Damien Millerf0858de2014-04-20 13:01:30 +10002256 fprintf(stderr,
dtucker@openbsd.org3baa4cd2017-02-17 02:32:05 +00002257 "usage: ssh-keygen [-q] [-b bits] [-t dsa | ecdsa | ed25519 | rsa%s]\n"
Damien Millerf0858de2014-04-20 13:01:30 +10002258 " [-N new_passphrase] [-C comment] [-f output_keyfile]\n"
2259 " ssh-keygen -p [-P old_passphrase] [-N new_passphrase] [-f keyfile]\n"
2260 " ssh-keygen -i [-m key_format] [-f input_keyfile]\n"
2261 " ssh-keygen -e [-m key_format] [-f input_keyfile]\n"
2262 " ssh-keygen -y [-f input_keyfile]\n"
2263 " ssh-keygen -c [-P passphrase] [-C comment] [-f keyfile]\n"
naddy@openbsd.org6288e3a2015-02-24 15:24:05 +00002264 " ssh-keygen -l [-v] [-E fingerprint_hash] [-f input_keyfile]\n"
dtucker@openbsd.org3baa4cd2017-02-17 02:32:05 +00002265 " ssh-keygen -B [-f input_keyfile]\n", RSA1_USAGE);
Damien Miller7ea845e2010-02-12 09:21:02 +11002266#ifdef ENABLE_PKCS11
Damien Millerf0858de2014-04-20 13:01:30 +10002267 fprintf(stderr,
2268 " ssh-keygen -D pkcs11\n");
Damien Miller7ea845e2010-02-12 09:21:02 +11002269#endif
Damien Millerf0858de2014-04-20 13:01:30 +10002270 fprintf(stderr,
2271 " ssh-keygen -F hostname [-f known_hosts_file] [-l]\n"
2272 " ssh-keygen -H [-f known_hosts_file]\n"
2273 " ssh-keygen -R hostname [-f known_hosts_file]\n"
2274 " ssh-keygen -r hostname [-f input_keyfile] [-g]\n"
djm@openbsd.org1d9a2e22015-05-28 07:37:31 +00002275#ifdef WITH_OPENSSL
Damien Millerf0858de2014-04-20 13:01:30 +10002276 " ssh-keygen -G output_file [-v] [-b bits] [-M memory] [-S start_point]\n"
2277 " ssh-keygen -T output_file -f input_file [-v] [-a rounds] [-J num_lines]\n"
2278 " [-j start_line] [-K checkpt] [-W generator]\n"
djm@openbsd.org1d9a2e22015-05-28 07:37:31 +00002279#endif
Damien Millerf0858de2014-04-20 13:01:30 +10002280 " ssh-keygen -s ca_key -I certificate_identity [-h] [-n principals]\n"
2281 " [-O option] [-V validity_interval] [-z serial_number] file ...\n"
2282 " ssh-keygen -L [-f input_keyfile]\n"
2283 " ssh-keygen -A\n"
2284 " ssh-keygen -k -f krl_file [-u] [-s ca_public] [-z version_number]\n"
2285 " file ...\n"
2286 " ssh-keygen -Q -f krl_file file ...\n");
Damien Miller95def091999-11-25 00:26:21 +11002287 exit(1);
Damien Miller431f66b1999-11-21 18:31:57 +11002288}
2289
Damien Miller95def091999-11-25 00:26:21 +11002290/*
2291 * Main program for key management.
2292 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002293int
Damien Millerdf8b7db2007-01-05 16:22:57 +11002294main(int argc, char **argv)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002295{
deraadt@openbsd.org2ae4f332015-01-16 06:40:12 +00002296 char dotsshdir[PATH_MAX], comment[1024], *passphrase1, *passphrase2;
djm@openbsd.org1d9a2e22015-05-28 07:37:31 +00002297 char *rr_hostname = NULL, *ep, *fp, *ra;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002298 struct sshkey *private, *public;
Damien Miller95def091999-11-25 00:26:21 +11002299 struct passwd *pw;
Damien Miller95def091999-11-25 00:26:21 +11002300 struct stat st;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002301 int r, opt, type, fd;
Damien Millerf3747bf2013-01-18 11:44:04 +11002302 int gen_all_hostkeys = 0, gen_krl = 0, update_krl = 0, check_krl = 0;
Damien Miller95def091999-11-25 00:26:21 +11002303 FILE *f;
Damien Miller02e754f2005-05-26 12:19:39 +10002304 const char *errstr;
djm@openbsd.org1d9a2e22015-05-28 07:37:31 +00002305#ifdef WITH_OPENSSL
2306 /* Moduli generation/screening */
2307 char out_file[PATH_MAX], *checkpoint = NULL;
2308 u_int32_t memory = 0, generator_wanted = 0;
2309 int do_gen_candidates = 0, do_screen_candidates = 0;
2310 unsigned long start_lineno = 0, lines_to_process = 0;
2311 BIGNUM *start = NULL;
2312#endif
Damien Miller0bc1bd82000-11-13 22:57:25 +11002313
Damien Miller95def091999-11-25 00:26:21 +11002314 extern int optind;
2315 extern char *optarg;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002316
dtucker@openbsd.orgffb1e7e2016-02-15 09:47:49 +00002317 ssh_malloc_init(); /* must be called before any mallocs */
Darren Tuckerce321d82005-10-03 18:11:24 +10002318 /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
2319 sanitise_stdfd();
2320
Darren Tucker9ac56e92007-01-14 10:19:59 +11002321 __progname = ssh_get_progname(argv[0]);
Damien Millerf9b625c2000-07-09 22:42:32 +10002322
Damien Miller72ef7c12015-01-15 02:21:31 +11002323#ifdef WITH_OPENSSL
Damien Miller4314c2b2010-09-10 11:12:09 +10002324 OpenSSL_add_all_algorithms();
Damien Miller72ef7c12015-01-15 02:21:31 +11002325#endif
Damien Millerdf8b7db2007-01-05 16:22:57 +11002326 log_init(argv[0], SYSLOG_LEVEL_INFO, SYSLOG_FACILITY_USER, 1);
Darren Tucker019cefe2003-08-02 22:40:07 +10002327
Kevin Steves3a881912002-07-20 19:05:40 +00002328 seed_rng();
Damien Millereba71ba2000-04-29 23:57:08 +10002329
djm@openbsd.orga287c5a2017-02-10 03:36:40 +00002330 msetlocale();
2331
Damien Miller5428f641999-11-25 11:54:57 +11002332 /* we need this for the home * directory. */
Damien Miller95def091999-11-25 00:26:21 +11002333 pw = getpwuid(getuid());
djm@openbsd.org3038a192015-04-17 13:19:22 +00002334 if (!pw)
2335 fatal("No user exists for uid %lu", (u_long)getuid());
2336 if (gethostname(hostname, sizeof(hostname)) < 0)
2337 fatal("gethostname: %s", strerror(errno));
Damien Miller5428f641999-11-25 11:54:57 +11002338
djm@openbsd.org56d1c832014-12-21 22:27:55 +00002339 /* Remaining characters: UYdw */
Damien Millerbcd00ab2013-12-07 10:41:55 +11002340 while ((opt = getopt(argc, argv, "ABHLQXceghiklopquvxy"
djm@openbsd.org56d1c832014-12-21 22:27:55 +00002341 "C:D:E:F:G:I:J:K:M:N:O:P:R:S:T:V:W:Z:"
2342 "a:b:f:g:j:m:n:r:s:t:z:")) != -1) {
Damien Miller95def091999-11-25 00:26:21 +11002343 switch (opt) {
Damien Miller58f1baf2011-05-05 14:06:15 +10002344 case 'A':
2345 gen_all_hostkeys = 1;
2346 break;
Damien Miller95def091999-11-25 00:26:21 +11002347 case 'b':
Damien Miller57737942010-09-10 11:16:37 +10002348 bits = (u_int32_t)strtonum(optarg, 256, 32768, &errstr);
Damien Miller02e754f2005-05-26 12:19:39 +10002349 if (errstr)
2350 fatal("Bits has bad value %s (%s)",
2351 optarg, errstr);
Damien Miller95def091999-11-25 00:26:21 +11002352 break;
djm@openbsd.org56d1c832014-12-21 22:27:55 +00002353 case 'E':
2354 fingerprint_hash = ssh_digest_alg_by_name(optarg);
2355 if (fingerprint_hash == -1)
2356 fatal("Invalid hash algorithm \"%s\"", optarg);
2357 break;
Damien Miller4b42d7f2005-03-01 21:48:35 +11002358 case 'F':
2359 find_host = 1;
2360 rr_hostname = optarg;
2361 break;
2362 case 'H':
2363 hash_hosts = 1;
2364 break;
Damien Miller0a80ca12010-02-27 07:55:05 +11002365 case 'I':
2366 cert_key_id = optarg;
2367 break;
Damien Miller4b42d7f2005-03-01 21:48:35 +11002368 case 'R':
2369 delete_host = 1;
2370 rr_hostname = optarg;
2371 break;
Damien Millerf2b70ca2010-03-05 07:39:35 +11002372 case 'L':
2373 show_cert = 1;
2374 break;
Damien Miller95def091999-11-25 00:26:21 +11002375 case 'l':
2376 print_fingerprint = 1;
2377 break;
Ben Lindstrom8fd372b2001-03-12 03:02:17 +00002378 case 'B':
2379 print_bubblebabble = 1;
2380 break;
Damien Miller44b25042010-07-02 13:35:01 +10002381 case 'm':
2382 if (strcasecmp(optarg, "RFC4716") == 0 ||
2383 strcasecmp(optarg, "ssh2") == 0) {
2384 convert_format = FMT_RFC4716;
2385 break;
2386 }
2387 if (strcasecmp(optarg, "PKCS8") == 0) {
2388 convert_format = FMT_PKCS8;
2389 break;
2390 }
2391 if (strcasecmp(optarg, "PEM") == 0) {
2392 convert_format = FMT_PEM;
2393 break;
2394 }
2395 fatal("Unsupported conversion format \"%s\"", optarg);
Damien Miller0a80ca12010-02-27 07:55:05 +11002396 case 'n':
2397 cert_principals = optarg;
2398 break;
Damien Millerbcd00ab2013-12-07 10:41:55 +11002399 case 'o':
2400 use_new_format = 1;
2401 break;
Damien Miller95def091999-11-25 00:26:21 +11002402 case 'p':
2403 change_passphrase = 1;
2404 break;
Damien Miller95def091999-11-25 00:26:21 +11002405 case 'c':
2406 change_comment = 1;
2407 break;
Damien Miller95def091999-11-25 00:26:21 +11002408 case 'f':
djm@openbsd.org1d9a2e22015-05-28 07:37:31 +00002409 if (strlcpy(identity_file, optarg,
2410 sizeof(identity_file)) >= sizeof(identity_file))
Damien Millerb089fb52005-05-26 12:16:18 +10002411 fatal("Identity filename too long");
Damien Miller95def091999-11-25 00:26:21 +11002412 have_identity = 1;
2413 break;
Damien Miller37876e92003-05-15 10:19:46 +10002414 case 'g':
2415 print_generic = 1;
2416 break;
Damien Miller95def091999-11-25 00:26:21 +11002417 case 'P':
2418 identity_passphrase = optarg;
2419 break;
Damien Miller95def091999-11-25 00:26:21 +11002420 case 'N':
2421 identity_new_passphrase = optarg;
2422 break;
Damien Millerf3747bf2013-01-18 11:44:04 +11002423 case 'Q':
2424 check_krl = 1;
2425 break;
Damien Miller0a80ca12010-02-27 07:55:05 +11002426 case 'O':
Damien Miller4e270b02010-04-16 15:56:21 +10002427 add_cert_option(optarg);
Damien Miller0a80ca12010-02-27 07:55:05 +11002428 break;
Damien Millerbcd00ab2013-12-07 10:41:55 +11002429 case 'Z':
2430 new_format_cipher = optarg;
2431 break;
Damien Miller95def091999-11-25 00:26:21 +11002432 case 'C':
2433 identity_comment = optarg;
2434 break;
Damien Miller95def091999-11-25 00:26:21 +11002435 case 'q':
2436 quiet = 1;
2437 break;
Ben Lindstrom5a707822001-04-22 17:15:46 +00002438 case 'e':
Damien Millereba71ba2000-04-29 23:57:08 +10002439 case 'x':
Ben Lindstrom5a707822001-04-22 17:15:46 +00002440 /* export key */
Damien Miller44b25042010-07-02 13:35:01 +10002441 convert_to = 1;
Damien Millereba71ba2000-04-29 23:57:08 +10002442 break;
Damien Miller0a80ca12010-02-27 07:55:05 +11002443 case 'h':
2444 cert_key_type = SSH2_CERT_TYPE_HOST;
Damien Millerd0e4a8e2010-05-21 14:58:32 +10002445 certflags_flags = 0;
Damien Miller0a80ca12010-02-27 07:55:05 +11002446 break;
Damien Millerf3747bf2013-01-18 11:44:04 +11002447 case 'k':
2448 gen_krl = 1;
2449 break;
Ben Lindstrom5a707822001-04-22 17:15:46 +00002450 case 'i':
Damien Millereba71ba2000-04-29 23:57:08 +10002451 case 'X':
Ben Lindstrom5a707822001-04-22 17:15:46 +00002452 /* import key */
Damien Miller44b25042010-07-02 13:35:01 +10002453 convert_from = 1;
Damien Millereba71ba2000-04-29 23:57:08 +10002454 break;
Damien Millereba71ba2000-04-29 23:57:08 +10002455 case 'y':
2456 print_public = 1;
2457 break;
Damien Miller0a80ca12010-02-27 07:55:05 +11002458 case 's':
2459 ca_key_path = optarg;
2460 break;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002461 case 't':
2462 key_type_name = optarg;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002463 break;
Ben Lindstrom8282d6a2001-08-06 21:44:05 +00002464 case 'D':
Damien Miller7ea845e2010-02-12 09:21:02 +11002465 pkcs11provider = optarg;
Ben Lindstromcd392282001-07-04 03:44:03 +00002466 break;
Damien Millerf3747bf2013-01-18 11:44:04 +11002467 case 'u':
2468 update_krl = 1;
2469 break;
Darren Tucker06930c72003-12-31 11:34:51 +11002470 case 'v':
2471 if (log_level == SYSLOG_LEVEL_INFO)
2472 log_level = SYSLOG_LEVEL_DEBUG1;
2473 else {
Darren Tuckerfc959702004-07-17 16:12:08 +10002474 if (log_level >= SYSLOG_LEVEL_DEBUG1 &&
Darren Tucker06930c72003-12-31 11:34:51 +11002475 log_level < SYSLOG_LEVEL_DEBUG3)
2476 log_level++;
2477 }
2478 break;
Damien Miller37876e92003-05-15 10:19:46 +10002479 case 'r':
Damien Miller4b42d7f2005-03-01 21:48:35 +11002480 rr_hostname = optarg;
Damien Miller37876e92003-05-15 10:19:46 +10002481 break;
djm@openbsd.org1d9a2e22015-05-28 07:37:31 +00002482 case 'a':
2483 rounds = (int)strtonum(optarg, 1, INT_MAX, &errstr);
2484 if (errstr)
2485 fatal("Invalid number: %s (%s)",
2486 optarg, errstr);
2487 break;
2488 case 'V':
2489 parse_cert_times(optarg);
2490 break;
2491 case 'z':
2492 errno = 0;
2493 cert_serial = strtoull(optarg, &ep, 10);
2494 if (*optarg < '0' || *optarg > '9' || *ep != '\0' ||
2495 (errno == ERANGE && cert_serial == ULLONG_MAX))
2496 fatal("Invalid serial number \"%s\"", optarg);
2497 break;
2498#ifdef WITH_OPENSSL
2499 /* Moduli generation/screening */
Darren Tucker019cefe2003-08-02 22:40:07 +10002500 case 'G':
2501 do_gen_candidates = 1;
Damien Millerb089fb52005-05-26 12:16:18 +10002502 if (strlcpy(out_file, optarg, sizeof(out_file)) >=
2503 sizeof(out_file))
2504 fatal("Output filename too long");
Darren Tucker019cefe2003-08-02 22:40:07 +10002505 break;
Darren Tucker0bb29802016-09-12 11:07:00 +10002506 case 'J':
2507 lines_to_process = strtoul(optarg, NULL, 10);
dtucker@openbsd.org7b63cf62016-09-12 03:29:16 +00002508 break;
Darren Tucker0bb29802016-09-12 11:07:00 +10002509 case 'j':
2510 start_lineno = strtoul(optarg, NULL, 10);
dtucker@openbsd.org7b63cf62016-09-12 03:29:16 +00002511 break;
Damien Miller390d0562011-10-18 16:05:19 +11002512 case 'K':
deraadt@openbsd.org2ae4f332015-01-16 06:40:12 +00002513 if (strlen(optarg) >= PATH_MAX)
Damien Miller390d0562011-10-18 16:05:19 +11002514 fatal("Checkpoint filename too long");
2515 checkpoint = xstrdup(optarg);
2516 break;
Darren Tuckerd8c3cfb2016-09-12 13:30:50 +10002517 case 'M':
2518 memory = (u_int32_t)strtonum(optarg, 1, UINT_MAX,
2519 &errstr);
2520 if (errstr)
2521 fatal("Memory limit is %s: %s", errstr, optarg);
2522 break;
Darren Tucker019cefe2003-08-02 22:40:07 +10002523 case 'S':
2524 /* XXX - also compare length against bits */
2525 if (BN_hex2bn(&start, optarg) == 0)
2526 fatal("Invalid start point.");
2527 break;
Darren Tuckeraf48d542016-09-12 13:52:17 +10002528 case 'T':
2529 do_screen_candidates = 1;
2530 if (strlcpy(out_file, optarg, sizeof(out_file)) >=
2531 sizeof(out_file))
2532 fatal("Output filename too long");
2533 break;
Darren Tucker43cceff2016-09-12 13:55:37 +10002534 case 'W':
2535 generator_wanted = (u_int32_t)strtonum(optarg, 1,
2536 UINT_MAX, &errstr);
Darren Tucker70508962016-09-12 13:57:28 +10002537 if (errstr != NULL)
2538 fatal("Desired generator invalid: %s (%s)",
2539 optarg, errstr);
Darren Tucker43cceff2016-09-12 13:55:37 +10002540 break;
Damien Miller72ef7c12015-01-15 02:21:31 +11002541#endif /* WITH_OPENSSL */
Damien Miller95def091999-11-25 00:26:21 +11002542 case '?':
2543 default:
2544 usage();
2545 }
2546 }
Darren Tucker06930c72003-12-31 11:34:51 +11002547
2548 /* reinit */
Damien Millerdf8b7db2007-01-05 16:22:57 +11002549 log_init(argv[0], log_level, SYSLOG_FACILITY_USER, 1);
Darren Tucker06930c72003-12-31 11:34:51 +11002550
Damien Miller0a80ca12010-02-27 07:55:05 +11002551 argv += optind;
2552 argc -= optind;
2553
2554 if (ca_key_path != NULL) {
Damien Millerf3747bf2013-01-18 11:44:04 +11002555 if (argc < 1 && !gen_krl) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00002556 error("Too few arguments.");
Damien Miller0a80ca12010-02-27 07:55:05 +11002557 usage();
2558 }
Damien Millerf3747bf2013-01-18 11:44:04 +11002559 } else if (argc > 0 && !gen_krl && !check_krl) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00002560 error("Too many arguments.");
Damien Miller95def091999-11-25 00:26:21 +11002561 usage();
2562 }
2563 if (change_passphrase && change_comment) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00002564 error("Can only have one of -p and -c.");
Damien Miller95def091999-11-25 00:26:21 +11002565 usage();
2566 }
Darren Tucker0f7e9102008-06-08 12:54:29 +10002567 if (print_fingerprint && (delete_host || hash_hosts)) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00002568 error("Cannot use -l with -H or -R.");
Darren Tucker0f7e9102008-06-08 12:54:29 +10002569 usage();
2570 }
Damien Millerf3747bf2013-01-18 11:44:04 +11002571 if (gen_krl) {
2572 do_gen_krl(pw, update_krl, argc, argv);
2573 return (0);
2574 }
2575 if (check_krl) {
2576 do_check_krl(pw, argc, argv);
2577 return (0);
2578 }
Damien Miller0a80ca12010-02-27 07:55:05 +11002579 if (ca_key_path != NULL) {
2580 if (cert_key_id == NULL)
2581 fatal("Must specify key id (-I) when certifying");
2582 do_ca_sign(pw, argc, argv);
2583 }
Damien Millerf2b70ca2010-03-05 07:39:35 +11002584 if (show_cert)
2585 do_show_cert(pw);
Damien Miller4b42d7f2005-03-01 21:48:35 +11002586 if (delete_host || hash_hosts || find_host)
2587 do_known_hosts(pw, rr_hostname);
Damien Millerec77c952013-01-09 15:58:00 +11002588 if (pkcs11provider != NULL)
2589 do_download(pw);
Ben Lindstrom8fd372b2001-03-12 03:02:17 +00002590 if (print_fingerprint || print_bubblebabble)
Damien Miller95def091999-11-25 00:26:21 +11002591 do_fingerprint(pw);
Damien Miller95def091999-11-25 00:26:21 +11002592 if (change_passphrase)
2593 do_change_passphrase(pw);
Damien Miller4a10d2e2002-03-11 22:53:29 +11002594 if (change_comment)
2595 do_change_comment(pw);
Damien Miller1f0311c2014-05-15 14:24:09 +10002596#ifdef WITH_OPENSSL
Damien Miller44b25042010-07-02 13:35:01 +10002597 if (convert_to)
2598 do_convert_to(pw);
2599 if (convert_from)
2600 do_convert_from(pw);
Damien Miller1f0311c2014-05-15 14:24:09 +10002601#endif
Damien Millereba71ba2000-04-29 23:57:08 +10002602 if (print_public)
2603 do_print_public(pw);
Damien Miller4b42d7f2005-03-01 21:48:35 +11002604 if (rr_hostname != NULL) {
Damien Millercb314822006-03-26 13:48:01 +11002605 unsigned int n = 0;
2606
2607 if (have_identity) {
2608 n = do_print_resource_record(pw,
2609 identity_file, rr_hostname);
djm@openbsd.org3038a192015-04-17 13:19:22 +00002610 if (n == 0)
2611 fatal("%s: %s", identity_file, strerror(errno));
Damien Millercb314822006-03-26 13:48:01 +11002612 exit(0);
2613 } else {
2614
2615 n += do_print_resource_record(pw,
2616 _PATH_HOST_RSA_KEY_FILE, rr_hostname);
2617 n += do_print_resource_record(pw,
2618 _PATH_HOST_DSA_KEY_FILE, rr_hostname);
Damien Miller3bde12a2012-06-20 21:51:11 +10002619 n += do_print_resource_record(pw,
2620 _PATH_HOST_ECDSA_KEY_FILE, rr_hostname);
Damien Miller16cd3922014-05-15 13:45:58 +10002621 n += do_print_resource_record(pw,
2622 _PATH_HOST_ED25519_KEY_FILE, rr_hostname);
Damien Millercb314822006-03-26 13:48:01 +11002623 if (n == 0)
2624 fatal("no keys found.");
2625 exit(0);
2626 }
Damien Miller37876e92003-05-15 10:19:46 +10002627 }
Damien Miller95def091999-11-25 00:26:21 +11002628
djm@openbsd.org1d9a2e22015-05-28 07:37:31 +00002629#ifdef WITH_OPENSSL
Darren Tucker019cefe2003-08-02 22:40:07 +10002630 if (do_gen_candidates) {
2631 FILE *out = fopen(out_file, "w");
Damien Miller787b2ec2003-11-21 23:56:47 +11002632
Darren Tucker019cefe2003-08-02 22:40:07 +10002633 if (out == NULL) {
2634 error("Couldn't open modulus candidate file \"%s\": %s",
2635 out_file, strerror(errno));
2636 return (1);
2637 }
Damien Miller3f54a9f2005-11-05 14:52:18 +11002638 if (bits == 0)
2639 bits = DEFAULT_BITS;
Darren Tucker019cefe2003-08-02 22:40:07 +10002640 if (gen_candidates(out, memory, bits, start) != 0)
Damien Miller15d72a02005-11-05 15:07:33 +11002641 fatal("modulus candidate generation failed");
Darren Tucker019cefe2003-08-02 22:40:07 +10002642
2643 return (0);
2644 }
2645
2646 if (do_screen_candidates) {
2647 FILE *in;
Damien Miller78d22712013-02-12 11:03:36 +11002648 FILE *out = fopen(out_file, "a");
Darren Tucker019cefe2003-08-02 22:40:07 +10002649
2650 if (have_identity && strcmp(identity_file, "-") != 0) {
2651 if ((in = fopen(identity_file, "r")) == NULL) {
2652 fatal("Couldn't open modulus candidate "
Damien Millera8e06ce2003-11-21 23:48:55 +11002653 "file \"%s\": %s", identity_file,
Darren Tucker019cefe2003-08-02 22:40:07 +10002654 strerror(errno));
2655 }
2656 } else
2657 in = stdin;
2658
2659 if (out == NULL) {
2660 fatal("Couldn't open moduli file \"%s\": %s",
2661 out_file, strerror(errno));
2662 }
Damien Millerbcd00ab2013-12-07 10:41:55 +11002663 if (prime_test(in, out, rounds == 0 ? 100 : rounds,
2664 generator_wanted, checkpoint,
Damien Millerdfceafe2012-07-06 13:44:19 +10002665 start_lineno, lines_to_process) != 0)
Damien Miller15d72a02005-11-05 15:07:33 +11002666 fatal("modulus screening failed");
Darren Tuckerf4220e62003-08-21 16:44:07 +10002667 return (0);
Darren Tucker019cefe2003-08-02 22:40:07 +10002668 }
djm@openbsd.org1d9a2e22015-05-28 07:37:31 +00002669#endif
Darren Tucker019cefe2003-08-02 22:40:07 +10002670
Damien Miller58f1baf2011-05-05 14:06:15 +10002671 if (gen_all_hostkeys) {
2672 do_gen_all_hostkeys(pw);
2673 return (0);
2674 }
2675
Damien Millerf14be5c2005-11-05 15:15:49 +11002676 if (key_type_name == NULL)
djm@openbsd.orgd1958792015-05-28 04:40:13 +00002677 key_type_name = DEFAULT_KEY_TYPE_NAME;
Damien Millerf14be5c2005-11-05 15:15:49 +11002678
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002679 type = sshkey_type_from_name(key_type_name);
djm@openbsd.org7efb4552015-01-18 13:22:28 +00002680 type_bits_valid(type, key_type_name, &bits);
Damien Miller58f1baf2011-05-05 14:06:15 +10002681
Darren Tucker3af2ac52005-11-29 13:10:24 +11002682 if (!quiet)
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002683 printf("Generating public/private %s key pair.\n",
2684 key_type_name);
djm@openbsd.org3038a192015-04-17 13:19:22 +00002685 if ((r = sshkey_generate(type, bits, &private)) != 0)
2686 fatal("key_generate failed");
2687 if ((r = sshkey_from_private(private, &public)) != 0)
2688 fatal("key_from_private failed: %s\n", ssh_err(r));
Damien Miller95def091999-11-25 00:26:21 +11002689
2690 if (!have_identity)
2691 ask_filename(pw, "Enter file in which to save the key");
2692
Damien Miller788f2122005-11-05 15:14:59 +11002693 /* Create ~/.ssh directory if it doesn't already exist. */
Damien Miller50af79b2010-05-10 11:52:00 +10002694 snprintf(dotsshdir, sizeof dotsshdir, "%s/%s",
2695 pw->pw_dir, _PATH_SSH_USER_DIR);
2696 if (strstr(identity_file, dotsshdir) != NULL) {
2697 if (stat(dotsshdir, &st) < 0) {
2698 if (errno != ENOENT) {
2699 error("Could not stat %s: %s", dotsshdir,
2700 strerror(errno));
2701 } else if (mkdir(dotsshdir, 0700) < 0) {
2702 error("Could not create directory '%s': %s",
2703 dotsshdir, strerror(errno));
2704 } else if (!quiet)
2705 printf("Created directory '%s'.\n", dotsshdir);
2706 }
Damien Miller95def091999-11-25 00:26:21 +11002707 }
2708 /* If the file already exists, ask the user to confirm. */
2709 if (stat(identity_file, &st) >= 0) {
2710 char yesno[3];
2711 printf("%s already exists.\n", identity_file);
2712 printf("Overwrite (y/n)? ");
2713 fflush(stdout);
2714 if (fgets(yesno, sizeof(yesno), stdin) == NULL)
2715 exit(1);
2716 if (yesno[0] != 'y' && yesno[0] != 'Y')
2717 exit(1);
2718 }
2719 /* Ask for a passphrase (twice). */
2720 if (identity_passphrase)
2721 passphrase1 = xstrdup(identity_passphrase);
2722 else if (identity_new_passphrase)
2723 passphrase1 = xstrdup(identity_new_passphrase);
2724 else {
2725passphrase_again:
2726 passphrase1 =
Ben Lindstrom949974b2001-06-25 05:20:31 +00002727 read_passphrase("Enter passphrase (empty for no "
2728 "passphrase): ", RP_ALLOW_STDIN);
2729 passphrase2 = read_passphrase("Enter same passphrase again: ",
2730 RP_ALLOW_STDIN);
Damien Miller95def091999-11-25 00:26:21 +11002731 if (strcmp(passphrase1, passphrase2) != 0) {
Ben Lindstrom949974b2001-06-25 05:20:31 +00002732 /*
2733 * The passphrases do not match. Clear them and
2734 * retry.
2735 */
Damien Millera5103f42014-02-04 11:20:14 +11002736 explicit_bzero(passphrase1, strlen(passphrase1));
2737 explicit_bzero(passphrase2, strlen(passphrase2));
Darren Tuckera627d422013-06-02 07:31:17 +10002738 free(passphrase1);
2739 free(passphrase2);
Damien Miller95def091999-11-25 00:26:21 +11002740 printf("Passphrases do not match. Try again.\n");
2741 goto passphrase_again;
2742 }
2743 /* Clear the other copy of the passphrase. */
Damien Millera5103f42014-02-04 11:20:14 +11002744 explicit_bzero(passphrase2, strlen(passphrase2));
Darren Tuckera627d422013-06-02 07:31:17 +10002745 free(passphrase2);
Damien Miller95def091999-11-25 00:26:21 +11002746 }
2747
Damien Miller95def091999-11-25 00:26:21 +11002748 if (identity_comment) {
2749 strlcpy(comment, identity_comment, sizeof(comment));
2750 } else {
Darren Tuckere15fb092008-11-11 16:31:43 +11002751 /* Create default comment field for the passphrase. */
Damien Miller95def091999-11-25 00:26:21 +11002752 snprintf(comment, sizeof comment, "%s@%s", pw->pw_name, hostname);
2753 }
2754
2755 /* Save the key with the given passphrase and comment. */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002756 if ((r = sshkey_save_private(private, identity_file, passphrase1,
2757 comment, use_new_format, new_format_cipher, rounds)) != 0) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00002758 error("Saving key \"%s\" failed: %s",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002759 identity_file, ssh_err(r));
Damien Millera5103f42014-02-04 11:20:14 +11002760 explicit_bzero(passphrase1, strlen(passphrase1));
Darren Tuckera627d422013-06-02 07:31:17 +10002761 free(passphrase1);
Damien Miller95def091999-11-25 00:26:21 +11002762 exit(1);
2763 }
2764 /* Clear the passphrase. */
Damien Millera5103f42014-02-04 11:20:14 +11002765 explicit_bzero(passphrase1, strlen(passphrase1));
Darren Tuckera627d422013-06-02 07:31:17 +10002766 free(passphrase1);
Damien Miller95def091999-11-25 00:26:21 +11002767
2768 /* Clear the private key and the random number generator. */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002769 sshkey_free(private);
Damien Miller95def091999-11-25 00:26:21 +11002770
2771 if (!quiet)
2772 printf("Your identification has been saved in %s.\n", identity_file);
2773
Damien Miller95def091999-11-25 00:26:21 +11002774 strlcat(identity_file, ".pub", sizeof(identity_file));
djm@openbsd.org3038a192015-04-17 13:19:22 +00002775 if ((fd = open(identity_file, O_WRONLY|O_CREAT|O_TRUNC, 0644)) == -1)
2776 fatal("Unable to save public key to %s: %s",
2777 identity_file, strerror(errno));
2778 if ((f = fdopen(fd, "w")) == NULL)
2779 fatal("fdopen %s failed: %s", identity_file, strerror(errno));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002780 if ((r = sshkey_write(public, f)) != 0)
djm@openbsd.org3038a192015-04-17 13:19:22 +00002781 error("write key failed: %s", ssh_err(r));
Damien Millereba71ba2000-04-29 23:57:08 +10002782 fprintf(f, " %s\n", comment);
Damien Miller95def091999-11-25 00:26:21 +11002783 fclose(f);
2784
2785 if (!quiet) {
djm@openbsd.org9ce86c92015-01-28 22:36:00 +00002786 fp = sshkey_fingerprint(public, fingerprint_hash,
djm@openbsd.org56d1c832014-12-21 22:27:55 +00002787 SSH_FP_DEFAULT);
djm@openbsd.org9ce86c92015-01-28 22:36:00 +00002788 ra = sshkey_fingerprint(public, fingerprint_hash,
Darren Tucker9c16ac92008-06-13 04:40:35 +10002789 SSH_FP_RANDOMART);
djm@openbsd.org9ce86c92015-01-28 22:36:00 +00002790 if (fp == NULL || ra == NULL)
2791 fatal("sshkey_fingerprint failed");
Damien Millereba71ba2000-04-29 23:57:08 +10002792 printf("Your public key has been saved in %s.\n",
2793 identity_file);
Damien Miller95def091999-11-25 00:26:21 +11002794 printf("The key fingerprint is:\n");
Ben Lindstromcfccef92001-03-13 04:57:58 +00002795 printf("%s %s\n", fp, comment);
Darren Tucker9c16ac92008-06-13 04:40:35 +10002796 printf("The key's randomart image is:\n");
2797 printf("%s\n", ra);
Darren Tuckera627d422013-06-02 07:31:17 +10002798 free(ra);
2799 free(fp);
Damien Miller95def091999-11-25 00:26:21 +11002800 }
Damien Millereba71ba2000-04-29 23:57:08 +10002801
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002802 sshkey_free(public);
Damien Miller95def091999-11-25 00:26:21 +11002803 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002804}