blob: 4ec479de71b9c0a990e06fbdff4622f5bc3ddfab [file] [log] [blame]
jmc@openbsd.org6c91d422019-09-29 16:31:57 +00001/* $OpenBSD: ssh-keygen.c,v 1.352 2019/09/29 16:31:57 jmc 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
djm@openbsd.orgbe02d7c2019-09-06 04:53:27 +000027#include <stdint.h>
Darren Tucker39972492006-07-12 22:22:46 +100028#include <errno.h>
Damien Miller57cf6382006-07-10 21:13:46 +100029#include <fcntl.h>
Damien Millerb8fe89c2006-07-24 14:51:00 +100030#include <netdb.h>
Darren Tucker2ee50c52006-07-11 18:55:05 +100031#ifdef HAVE_PATHS_H
32# include <paths.h>
33#endif
Damien Miller9f2abc42006-07-10 20:53:08 +100034#include <pwd.h>
Damien Millerded319c2006-09-01 15:38:36 +100035#include <stdarg.h>
Damien Millera7a73ee2006-08-05 11:37:59 +100036#include <stdio.h>
Damien Millere7a1e5c2006-08-05 11:34:19 +100037#include <stdlib.h>
Damien Millere3476ed2006-07-24 14:13:33 +100038#include <string.h>
Damien Millere6b3b612006-07-24 14:01:23 +100039#include <unistd.h>
deraadt@openbsd.org2ae4f332015-01-16 06:40:12 +000040#include <limits.h>
djm@openbsd.orga287c5a2017-02-10 03:36:40 +000041#include <locale.h>
Damien Miller4d3b2f32018-07-12 14:49:14 +100042#include <time.h>
Damien Miller9f2abc42006-07-10 20:53:08 +100043
Damien Millerd4a8b7e1999-10-27 13:42:43 +100044#include "xmalloc.h"
djm@openbsd.org1129dcf2015-01-15 09:40:00 +000045#include "sshkey.h"
Damien Millereba71ba2000-04-29 23:57:08 +100046#include "authfile.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"
djm@openbsd.orga98339e2017-06-28 01:09:22 +000062#include "authfd.h"
djm@openbsd.org2a9c9f72019-09-03 08:34:19 +000063#include "sshsig.h"
Ben Lindstromcd392282001-07-04 03:44:03 +000064
djm@openbsd.orgd1958792015-05-28 04:40:13 +000065#ifdef WITH_OPENSSL
66# define DEFAULT_KEY_TYPE_NAME "rsa"
67#else
68# define DEFAULT_KEY_TYPE_NAME "ed25519"
69#endif
70
dtucker@openbsd.orgf47269e2019-03-25 15:49:00 +000071/*
dtucker@openbsd.org26e0cef2019-03-25 16:19:44 +000072 * Default number of bits in the RSA, DSA and ECDSA keys. These value can be
73 * overridden on the command line.
74 *
75 * These values, with the exception of DSA, provide security equivalent to at
76 * least 128 bits of security according to NIST Special Publication 800-57:
77 * Recommendation for Key Management Part 1 rev 4 section 5.6.1.
78 * For DSA it (and FIPS-186-4 section 4.2) specifies that the only size for
79 * which a 160bit hash is acceptable is 1kbit, and since ssh-dss specifies only
80 * SHA1 we limit the DSA key size 1k bits.
dtucker@openbsd.orgf47269e2019-03-25 15:49:00 +000081 */
82#define DEFAULT_BITS 3072
Damien Miller3f54a9f2005-11-05 14:52:18 +110083#define DEFAULT_BITS_DSA 1024
Damien Miller6e9f6802010-09-10 11:17:38 +100084#define DEFAULT_BITS_ECDSA 256
Damien Millerd4a8b7e1999-10-27 13:42:43 +100085
djm@openbsd.org851f8032019-01-23 04:16:22 +000086static int quiet = 0;
Damien Millerf2b70ca2010-03-05 07:39:35 +110087
Damien Miller10f6f6b1999-11-17 17:29:08 +110088/* Flag indicating that we just want to see the key fingerprint */
djm@openbsd.org851f8032019-01-23 04:16:22 +000089static int print_fingerprint = 0;
90static int print_bubblebabble = 0;
Damien Miller10f6f6b1999-11-17 17:29:08 +110091
djm@openbsd.org56d1c832014-12-21 22:27:55 +000092/* Hash algorithm to use for fingerprints. */
djm@openbsd.org851f8032019-01-23 04:16:22 +000093static int fingerprint_hash = SSH_FP_HASH_DEFAULT;
djm@openbsd.org56d1c832014-12-21 22:27:55 +000094
Damien Miller431f66b1999-11-21 18:31:57 +110095/* The identity file name, given on the command line or entered by the user. */
deraadt@openbsd.org3e53ef22019-09-24 12:50:46 +000096static char identity_file[PATH_MAX];
djm@openbsd.org851f8032019-01-23 04:16:22 +000097static int have_identity = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100098
99/* This is set to the passphrase if given on the command line. */
djm@openbsd.org851f8032019-01-23 04:16:22 +0000100static char *identity_passphrase = NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000101
102/* This is set to the new passphrase if given on the command line. */
djm@openbsd.org851f8032019-01-23 04:16:22 +0000103static char *identity_new_passphrase = NULL;
Damien Miller4e270b02010-04-16 15:56:21 +1000104
Damien Miller0a80ca12010-02-27 07:55:05 +1100105/* Key type when certifying */
djm@openbsd.org851f8032019-01-23 04:16:22 +0000106static u_int cert_key_type = SSH2_CERT_TYPE_USER;
Damien Miller0a80ca12010-02-27 07:55:05 +1100107
108/* "key ID" of signed key */
djm@openbsd.org851f8032019-01-23 04:16:22 +0000109static char *cert_key_id = NULL;
Damien Miller0a80ca12010-02-27 07:55:05 +1100110
111/* Comma-separated list of principal names for certifying keys */
djm@openbsd.org851f8032019-01-23 04:16:22 +0000112static char *cert_principals = NULL;
Damien Miller0a80ca12010-02-27 07:55:05 +1100113
114/* Validity period for certificates */
djm@openbsd.org851f8032019-01-23 04:16:22 +0000115static u_int64_t cert_valid_from = 0;
116static u_int64_t cert_valid_to = ~0ULL;
Damien Miller0a80ca12010-02-27 07:55:05 +1100117
Damien Miller4e270b02010-04-16 15:56:21 +1000118/* Certificate options */
Damien Millerd0e4a8e2010-05-21 14:58:32 +1000119#define CERTOPT_X_FWD (1)
120#define CERTOPT_AGENT_FWD (1<<1)
121#define CERTOPT_PORT_FWD (1<<2)
122#define CERTOPT_PTY (1<<3)
123#define CERTOPT_USER_RC (1<<4)
124#define CERTOPT_DEFAULT (CERTOPT_X_FWD|CERTOPT_AGENT_FWD| \
125 CERTOPT_PORT_FWD|CERTOPT_PTY|CERTOPT_USER_RC)
djm@openbsd.org851f8032019-01-23 04:16:22 +0000126static u_int32_t certflags_flags = CERTOPT_DEFAULT;
127static char *certflags_command = NULL;
128static char *certflags_src_addr = NULL;
Damien Miller0a80ca12010-02-27 07:55:05 +1100129
djm@openbsd.org249516e2017-04-29 04:12:25 +0000130/* Arbitrary extensions specified by user */
131struct cert_userext {
132 char *key;
133 char *val;
134 int crit;
135};
djm@openbsd.org851f8032019-01-23 04:16:22 +0000136static struct cert_userext *cert_userext;
137static size_t ncert_userext;
djm@openbsd.org249516e2017-04-29 04:12:25 +0000138
Damien Miller44b25042010-07-02 13:35:01 +1000139/* Conversion to/from various formats */
Damien Miller44b25042010-07-02 13:35:01 +1000140enum {
141 FMT_RFC4716,
142 FMT_PKCS8,
143 FMT_PEM
144} convert_format = FMT_RFC4716;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100145
djm@openbsd.org851f8032019-01-23 04:16:22 +0000146static char *key_type_name = NULL;
Damien Millereba71ba2000-04-29 23:57:08 +1000147
Damien Miller757f34e2010-08-05 13:05:31 +1000148/* Load key from this PKCS#11 provider */
djm@openbsd.org851f8032019-01-23 04:16:22 +0000149static char *pkcs11provider = NULL;
Damien Miller44b25042010-07-02 13:35:01 +1000150
djm@openbsd.orgeb0d8e72019-07-15 13:16:29 +0000151/* Format for writing private keys */
152static int private_key_format = SSHKEY_PRIVATE_OPENSSH;
Damien Millerbcd00ab2013-12-07 10:41:55 +1100153
154/* Cipher for new-format private keys */
djm@openbsd.orgeb0d8e72019-07-15 13:16:29 +0000155static char *openssh_format_cipher = NULL;
Damien Millerbcd00ab2013-12-07 10:41:55 +1100156
157/*
158 * Number of KDF rounds to derive new format keys /
159 * number of primality trials when screening moduli.
160 */
djm@openbsd.org851f8032019-01-23 04:16:22 +0000161static int rounds = 0;
Damien Millerbcd00ab2013-12-07 10:41:55 +1100162
Damien Miller431f66b1999-11-21 18:31:57 +1100163/* argv0 */
164extern char *__progname;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000165
djm@openbsd.org851f8032019-01-23 04:16:22 +0000166static char hostname[NI_MAXHOST];
Damien Millereba71ba2000-04-29 23:57:08 +1000167
djm@openbsd.org1d9a2e22015-05-28 07:37:31 +0000168#ifdef WITH_OPENSSL
Darren Tucker770fc012004-05-13 16:24:32 +1000169/* moduli.c */
Damien Millerb089fb52005-05-26 12:16:18 +1000170int gen_candidates(FILE *, u_int32_t, u_int32_t, BIGNUM *);
Damien Millerdfceafe2012-07-06 13:44:19 +1000171int prime_test(FILE *, FILE *, u_int32_t, u_int32_t, char *, unsigned long,
172 unsigned long);
djm@openbsd.org1d9a2e22015-05-28 07:37:31 +0000173#endif
Darren Tucker770fc012004-05-13 16:24:32 +1000174
Ben Lindstrombba81212001-06-25 05:01:22 +0000175static void
djm@openbsd.org7efb4552015-01-18 13:22:28 +0000176type_bits_valid(int type, const char *name, u_int32_t *bitsp)
Damien Miller58f1baf2011-05-05 14:06:15 +1000177{
djm@openbsd.org3038a192015-04-17 13:19:22 +0000178 if (type == KEY_UNSPEC)
179 fatal("unknown key type %s", key_type_name);
Damien Miller884b63a2011-05-05 14:14:52 +1000180 if (*bitsp == 0) {
Damien Miller773dda22015-01-30 23:10:17 +1100181#ifdef WITH_OPENSSL
naddy@openbsd.orgc31e4f52019-08-05 21:45:27 +0000182 u_int nid;
183
184 switch(type) {
185 case KEY_DSA:
Damien Miller884b63a2011-05-05 14:14:52 +1000186 *bitsp = DEFAULT_BITS_DSA;
naddy@openbsd.orgc31e4f52019-08-05 21:45:27 +0000187 break;
188 case KEY_ECDSA:
djm@openbsd.org7efb4552015-01-18 13:22:28 +0000189 if (name != NULL &&
190 (nid = sshkey_ecdsa_nid_from_name(name)) > 0)
191 *bitsp = sshkey_curve_nid_to_bits(nid);
192 if (*bitsp == 0)
193 *bitsp = DEFAULT_BITS_ECDSA;
naddy@openbsd.orgc31e4f52019-08-05 21:45:27 +0000194 break;
195 case KEY_RSA:
Damien Miller884b63a2011-05-05 14:14:52 +1000196 *bitsp = DEFAULT_BITS;
naddy@openbsd.orgc31e4f52019-08-05 21:45:27 +0000197 break;
198 }
199#endif
Damien Miller58f1baf2011-05-05 14:06:15 +1000200 }
Damien Miller72ef7c12015-01-15 02:21:31 +1100201#ifdef WITH_OPENSSL
djm@openbsd.orgbd636f42017-05-07 23:15:59 +0000202 switch (type) {
203 case KEY_DSA:
204 if (*bitsp != 1024)
205 fatal("Invalid DSA key length: must be 1024 bits");
206 break;
207 case KEY_RSA:
208 if (*bitsp < SSH_RSA_MINIMUM_MODULUS_SIZE)
209 fatal("Invalid RSA key length: minimum is %d bits",
210 SSH_RSA_MINIMUM_MODULUS_SIZE);
naddy@openbsd.orgc31e4f52019-08-05 21:45:27 +0000211 else if (*bitsp > OPENSSL_RSA_MAX_MODULUS_BITS)
212 fatal("Invalid RSA key length: maximum is %d bits",
213 OPENSSL_RSA_MAX_MODULUS_BITS);
djm@openbsd.orgbd636f42017-05-07 23:15:59 +0000214 break;
215 case KEY_ECDSA:
216 if (sshkey_ecdsa_bits_to_nid(*bitsp) == -1)
217 fatal("Invalid ECDSA key length: valid lengths are "
Manoj Ampalam9b47b082018-11-08 22:41:59 -0800218#ifdef OPENSSL_HAS_NISTP521
djm@openbsd.orgbd636f42017-05-07 23:15:59 +0000219 "256, 384 or 521 bits");
Manoj Ampalam9b47b082018-11-08 22:41:59 -0800220#else
221 "256 or 384 bits");
222#endif
djm@openbsd.orgbd636f42017-05-07 23:15:59 +0000223 }
Damien Miller1f0311c2014-05-15 14:24:09 +1000224#endif
Damien Miller58f1baf2011-05-05 14:06:15 +1000225}
226
djm@openbsd.org85443f12019-09-03 08:27:52 +0000227/*
228 * Checks whether a file exists and, if so, asks the user whether they wish
229 * to overwrite it.
230 * Returns nonzero if the file does not already exist or if the user agrees to
231 * overwrite, or zero otherwise.
232 */
233static int
234confirm_overwrite(const char *filename)
235{
236 char yesno[3];
237 struct stat st;
238
239 if (stat(filename, &st) != 0)
240 return 1;
241 printf("%s already exists.\n", filename);
242 printf("Overwrite (y/n)? ");
243 fflush(stdout);
244 if (fgets(yesno, sizeof(yesno), stdin) == NULL)
245 return 0;
246 if (yesno[0] != 'y' && yesno[0] != 'Y')
247 return 0;
248 return 1;
249}
250
Damien Miller58f1baf2011-05-05 14:06:15 +1000251static void
Damien Miller431f66b1999-11-21 18:31:57 +1100252ask_filename(struct passwd *pw, const char *prompt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000253{
Damien Miller95def091999-11-25 00:26:21 +1100254 char buf[1024];
Damien Millere39cacc2000-11-29 12:18:44 +1100255 char *name = NULL;
256
Damien Miller993dd552002-02-19 15:22:47 +1100257 if (key_type_name == NULL)
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000258 name = _PATH_SSH_CLIENT_ID_RSA;
Damien Miller90967402006-03-26 14:07:26 +1100259 else {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000260 switch (sshkey_type_from_name(key_type_name)) {
Damien Miller4e270b02010-04-16 15:56:21 +1000261 case KEY_DSA_CERT:
Damien Miller993dd552002-02-19 15:22:47 +1100262 case KEY_DSA:
263 name = _PATH_SSH_CLIENT_ID_DSA;
264 break;
Damien Millerdd190dd2010-11-11 14:17:02 +1100265#ifdef OPENSSL_HAS_ECC
Damien Millereb8b60e2010-08-31 22:41:14 +1000266 case KEY_ECDSA_CERT:
267 case KEY_ECDSA:
268 name = _PATH_SSH_CLIENT_ID_ECDSA;
269 break;
Damien Millerdd190dd2010-11-11 14:17:02 +1100270#endif
Damien Miller4e270b02010-04-16 15:56:21 +1000271 case KEY_RSA_CERT:
Damien Miller993dd552002-02-19 15:22:47 +1100272 case KEY_RSA:
273 name = _PATH_SSH_CLIENT_ID_RSA;
274 break;
Damien Miller5be9d9e2013-12-07 11:24:01 +1100275 case KEY_ED25519:
276 case KEY_ED25519_CERT:
277 name = _PATH_SSH_CLIENT_ID_ED25519;
278 break;
markus@openbsd.org1b11ea72018-02-23 15:58:37 +0000279 case KEY_XMSS:
280 case KEY_XMSS_CERT:
281 name = _PATH_SSH_CLIENT_ID_XMSS;
282 break;
Damien Miller993dd552002-02-19 15:22:47 +1100283 default:
djm@openbsd.org3038a192015-04-17 13:19:22 +0000284 fatal("bad key type");
Damien Miller993dd552002-02-19 15:22:47 +1100285 }
Damien Miller90967402006-03-26 14:07:26 +1100286 }
djm@openbsd.org3038a192015-04-17 13:19:22 +0000287 snprintf(identity_file, sizeof(identity_file),
288 "%s/%s", pw->pw_dir, name);
289 printf("%s (%s): ", prompt, identity_file);
290 fflush(stdout);
Damien Miller95def091999-11-25 00:26:21 +1100291 if (fgets(buf, sizeof(buf), stdin) == NULL)
292 exit(1);
Damien Miller14b017d2007-09-17 16:09:15 +1000293 buf[strcspn(buf, "\n")] = '\0';
Damien Miller95def091999-11-25 00:26:21 +1100294 if (strcmp(buf, "") != 0)
295 strlcpy(identity_file, buf, sizeof(identity_file));
296 have_identity = 1;
Damien Miller10f6f6b1999-11-17 17:29:08 +1100297}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000298
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000299static struct sshkey *
djm@openbsd.org9a396e32019-09-02 23:46:46 +0000300load_identity(const char *filename, char **commentp)
Damien Millereba71ba2000-04-29 23:57:08 +1000301{
Ben Lindstromd0fca422001-03-26 13:44:06 +0000302 char *pass;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000303 struct sshkey *prv;
304 int r;
Ben Lindstromd0fca422001-03-26 13:44:06 +0000305
djm@openbsd.org07133222019-09-01 23:47:32 +0000306 if (commentp != NULL)
307 *commentp = NULL;
308 if ((r = sshkey_load_private(filename, "", &prv, commentp)) == 0)
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000309 return prv;
310 if (r != SSH_ERR_KEY_WRONG_PASSPHRASE)
311 fatal("Load key \"%s\": %s", filename, ssh_err(r));
312 if (identity_passphrase)
313 pass = xstrdup(identity_passphrase);
314 else
315 pass = read_passphrase("Enter passphrase: ", RP_ALLOW_STDIN);
djm@openbsd.org07133222019-09-01 23:47:32 +0000316 r = sshkey_load_private(filename, pass, &prv, commentp);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000317 explicit_bzero(pass, strlen(pass));
318 free(pass);
319 if (r != 0)
320 fatal("Load key \"%s\": %s", filename, ssh_err(r));
Ben Lindstromd0fca422001-03-26 13:44:06 +0000321 return prv;
Damien Millereba71ba2000-04-29 23:57:08 +1000322}
323
Damien Miller874d77b2000-10-14 16:23:11 +1100324#define SSH_COM_PUBLIC_BEGIN "---- BEGIN SSH2 PUBLIC KEY ----"
Ben Lindstromcb72e4f2002-06-21 00:41:51 +0000325#define SSH_COM_PUBLIC_END "---- END SSH2 PUBLIC KEY ----"
Damien Miller874d77b2000-10-14 16:23:11 +1100326#define SSH_COM_PRIVATE_BEGIN "---- BEGIN SSH2 ENCRYPTED PRIVATE KEY ----"
Kevin Stevesef4eea92001-02-05 12:42:17 +0000327#define SSH_COM_PRIVATE_KEY_MAGIC 0x3f6ff9eb
Damien Millereba71ba2000-04-29 23:57:08 +1000328
Damien Miller1f0311c2014-05-15 14:24:09 +1000329#ifdef WITH_OPENSSL
Ben Lindstrombba81212001-06-25 05:01:22 +0000330static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000331do_convert_to_ssh2(struct passwd *pw, struct sshkey *k)
Damien Millereba71ba2000-04-29 23:57:08 +1000332{
djm@openbsd.org16dd8b22019-07-16 13:18:39 +0000333 struct sshbuf *b;
334 char comment[61], *b64;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000335 int r;
Damien Millereba71ba2000-04-29 23:57:08 +1000336
djm@openbsd.org16dd8b22019-07-16 13:18:39 +0000337 if ((b = sshbuf_new()) == NULL)
338 fatal("%s: sshbuf_new failed", __func__);
339 if ((r = sshkey_putb(k, b)) != 0)
djm@openbsd.org3038a192015-04-17 13:19:22 +0000340 fatal("key_to_blob failed: %s", ssh_err(r));
djm@openbsd.org16dd8b22019-07-16 13:18:39 +0000341 if ((b64 = sshbuf_dtob64_string(b, 1)) == NULL)
342 fatal("%s: sshbuf_dtob64_string failed", __func__);
343
Darren Tuckerd04758d2010-01-12 19:41:57 +1100344 /* Comment + surrounds must fit into 72 chars (RFC 4716 sec 3.3) */
345 snprintf(comment, sizeof(comment),
346 "%u-bit %s, converted by %s@%s from OpenSSH",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000347 sshkey_size(k), sshkey_type(k),
Damien Millereba71ba2000-04-29 23:57:08 +1000348 pw->pw_name, hostname);
Darren Tuckerd04758d2010-01-12 19:41:57 +1100349
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000350 sshkey_free(k);
djm@openbsd.org16dd8b22019-07-16 13:18:39 +0000351 sshbuf_free(b);
352
353 fprintf(stdout, "%s\n", SSH_COM_PUBLIC_BEGIN);
354 fprintf(stdout, "Comment: \"%s\"\n%s", comment, b64);
355 fprintf(stdout, "%s\n", SSH_COM_PUBLIC_END);
356 free(b64);
Damien Millereba71ba2000-04-29 23:57:08 +1000357 exit(0);
358}
359
Ben Lindstrombba81212001-06-25 05:01:22 +0000360static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000361do_convert_to_pkcs8(struct sshkey *k)
Damien Miller44b25042010-07-02 13:35:01 +1000362{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000363 switch (sshkey_type_plain(k->type)) {
Damien Miller44b25042010-07-02 13:35:01 +1000364 case KEY_RSA:
365 if (!PEM_write_RSA_PUBKEY(stdout, k->rsa))
366 fatal("PEM_write_RSA_PUBKEY failed");
367 break;
368 case KEY_DSA:
369 if (!PEM_write_DSA_PUBKEY(stdout, k->dsa))
370 fatal("PEM_write_DSA_PUBKEY failed");
371 break;
Damien Miller6af914a2010-09-10 11:39:26 +1000372#ifdef OPENSSL_HAS_ECC
Damien Millereb8b60e2010-08-31 22:41:14 +1000373 case KEY_ECDSA:
374 if (!PEM_write_EC_PUBKEY(stdout, k->ecdsa))
375 fatal("PEM_write_EC_PUBKEY failed");
376 break;
Damien Miller6af914a2010-09-10 11:39:26 +1000377#endif
Damien Miller44b25042010-07-02 13:35:01 +1000378 default:
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000379 fatal("%s: unsupported key type %s", __func__, sshkey_type(k));
Damien Miller44b25042010-07-02 13:35:01 +1000380 }
381 exit(0);
382}
383
384static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000385do_convert_to_pem(struct sshkey *k)
Damien Miller44b25042010-07-02 13:35:01 +1000386{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000387 switch (sshkey_type_plain(k->type)) {
Damien Miller44b25042010-07-02 13:35:01 +1000388 case KEY_RSA:
389 if (!PEM_write_RSAPublicKey(stdout, k->rsa))
390 fatal("PEM_write_RSAPublicKey failed");
391 break;
Damien Miller44b25042010-07-02 13:35:01 +1000392 default:
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000393 fatal("%s: unsupported key type %s", __func__, sshkey_type(k));
Damien Miller44b25042010-07-02 13:35:01 +1000394 }
395 exit(0);
396}
397
398static void
399do_convert_to(struct passwd *pw)
400{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000401 struct sshkey *k;
Damien Miller44b25042010-07-02 13:35:01 +1000402 struct stat st;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000403 int r;
Damien Miller44b25042010-07-02 13:35:01 +1000404
405 if (!have_identity)
406 ask_filename(pw, "Enter file in which the key is");
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +0000407 if (stat(identity_file, &st) == -1)
Damien Miller44b25042010-07-02 13:35:01 +1000408 fatal("%s: %s: %s", __progname, identity_file, strerror(errno));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000409 if ((r = sshkey_load_public(identity_file, &k, NULL)) != 0)
djm@openbsd.org07133222019-09-01 23:47:32 +0000410 k = load_identity(identity_file, NULL);
Damien Miller44b25042010-07-02 13:35:01 +1000411 switch (convert_format) {
412 case FMT_RFC4716:
413 do_convert_to_ssh2(pw, k);
414 break;
415 case FMT_PKCS8:
416 do_convert_to_pkcs8(k);
417 break;
418 case FMT_PEM:
419 do_convert_to_pem(k);
420 break;
421 default:
422 fatal("%s: unknown key format %d", __func__, convert_format);
423 }
424 exit(0);
425}
426
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000427/*
428 * This is almost exactly the bignum1 encoding, but with 32 bit for length
429 * instead of 16.
430 */
Damien Miller44b25042010-07-02 13:35:01 +1000431static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000432buffer_get_bignum_bits(struct sshbuf *b, BIGNUM *value)
Damien Miller874d77b2000-10-14 16:23:11 +1100433{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000434 u_int bytes, bignum_bits;
435 int r;
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000436
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000437 if ((r = sshbuf_get_u32(b, &bignum_bits)) != 0)
438 fatal("%s: buffer error: %s", __func__, ssh_err(r));
439 bytes = (bignum_bits + 7) / 8;
440 if (sshbuf_len(b) < bytes)
441 fatal("%s: input buffer too small: need %d have %zu",
442 __func__, bytes, sshbuf_len(b));
443 if (BN_bin2bn(sshbuf_ptr(b), bytes, value) == NULL)
444 fatal("%s: BN_bin2bn failed", __func__);
445 if ((r = sshbuf_consume(b, bytes)) != 0)
446 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Miller874d77b2000-10-14 16:23:11 +1100447}
448
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000449static struct sshkey *
djm@openbsd.org16dd8b22019-07-16 13:18:39 +0000450do_convert_private_ssh2(struct sshbuf *b)
Damien Miller874d77b2000-10-14 16:23:11 +1100451{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000452 struct sshkey *key = NULL;
Damien Miller874d77b2000-10-14 16:23:11 +1100453 char *type, *cipher;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000454 u_char e1, e2, e3, *sig = NULL, data[] = "abcde12345";
455 int r, rlen, ktype;
456 u_int magic, i1, i2, i3, i4;
457 size_t slen;
Ben Lindstrome586c4c2001-06-25 05:04:58 +0000458 u_long e;
djm@openbsd.org482d23b2018-09-13 02:08:33 +0000459 BIGNUM *dsa_p = NULL, *dsa_q = NULL, *dsa_g = NULL;
460 BIGNUM *dsa_pub_key = NULL, *dsa_priv_key = NULL;
461 BIGNUM *rsa_n = NULL, *rsa_e = NULL, *rsa_d = NULL;
462 BIGNUM *rsa_p = NULL, *rsa_q = NULL, *rsa_iqmp = NULL;
djm@openbsd.org16dd8b22019-07-16 13:18:39 +0000463
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000464 if ((r = sshbuf_get_u32(b, &magic)) != 0)
465 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Miller874d77b2000-10-14 16:23:11 +1100466
Damien Miller874d77b2000-10-14 16:23:11 +1100467 if (magic != SSH_COM_PRIVATE_KEY_MAGIC) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000468 error("bad magic 0x%x != 0x%x", magic,
469 SSH_COM_PRIVATE_KEY_MAGIC);
Damien Miller874d77b2000-10-14 16:23:11 +1100470 return NULL;
471 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000472 if ((r = sshbuf_get_u32(b, &i1)) != 0 ||
473 (r = sshbuf_get_cstring(b, &type, NULL)) != 0 ||
474 (r = sshbuf_get_cstring(b, &cipher, NULL)) != 0 ||
475 (r = sshbuf_get_u32(b, &i2)) != 0 ||
476 (r = sshbuf_get_u32(b, &i3)) != 0 ||
477 (r = sshbuf_get_u32(b, &i4)) != 0)
478 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Miller80163902007-01-05 16:30:16 +1100479 debug("ignore (%d %d %d %d)", i1, i2, i3, i4);
Damien Miller874d77b2000-10-14 16:23:11 +1100480 if (strcmp(cipher, "none") != 0) {
481 error("unsupported cipher %s", cipher);
Darren Tuckera627d422013-06-02 07:31:17 +1000482 free(cipher);
Darren Tuckera627d422013-06-02 07:31:17 +1000483 free(type);
Damien Miller874d77b2000-10-14 16:23:11 +1100484 return NULL;
485 }
Darren Tuckera627d422013-06-02 07:31:17 +1000486 free(cipher);
Damien Miller874d77b2000-10-14 16:23:11 +1100487
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000488 if (strstr(type, "dsa")) {
489 ktype = KEY_DSA;
490 } else if (strstr(type, "rsa")) {
491 ktype = KEY_RSA;
492 } else {
Darren Tuckera627d422013-06-02 07:31:17 +1000493 free(type);
Damien Miller874d77b2000-10-14 16:23:11 +1100494 return NULL;
495 }
djm@openbsd.org6da046f2018-09-14 04:17:44 +0000496 if ((key = sshkey_new(ktype)) == NULL)
497 fatal("sshkey_new failed");
Darren Tuckera627d422013-06-02 07:31:17 +1000498 free(type);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000499
500 switch (key->type) {
501 case KEY_DSA:
djm@openbsd.org482d23b2018-09-13 02:08:33 +0000502 if ((dsa_p = BN_new()) == NULL ||
503 (dsa_q = BN_new()) == NULL ||
504 (dsa_g = BN_new()) == NULL ||
505 (dsa_pub_key = BN_new()) == NULL ||
506 (dsa_priv_key = BN_new()) == NULL)
507 fatal("%s: BN_new", __func__);
508 buffer_get_bignum_bits(b, dsa_p);
509 buffer_get_bignum_bits(b, dsa_g);
510 buffer_get_bignum_bits(b, dsa_q);
511 buffer_get_bignum_bits(b, dsa_pub_key);
512 buffer_get_bignum_bits(b, dsa_priv_key);
513 if (!DSA_set0_pqg(key->dsa, dsa_p, dsa_q, dsa_g))
514 fatal("%s: DSA_set0_pqg failed", __func__);
515 dsa_p = dsa_q = dsa_g = NULL; /* transferred */
516 if (!DSA_set0_key(key->dsa, dsa_pub_key, dsa_priv_key))
517 fatal("%s: DSA_set0_key failed", __func__);
518 dsa_pub_key = dsa_priv_key = NULL; /* transferred */
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000519 break;
520 case KEY_RSA:
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000521 if ((r = sshbuf_get_u8(b, &e1)) != 0 ||
522 (e1 < 30 && (r = sshbuf_get_u8(b, &e2)) != 0) ||
523 (e1 < 30 && (r = sshbuf_get_u8(b, &e3)) != 0))
524 fatal("%s: buffer error: %s", __func__, ssh_err(r));
525 e = e1;
Ben Lindstrom34f91882001-06-25 04:47:54 +0000526 debug("e %lx", e);
527 if (e < 30) {
528 e <<= 8;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000529 e += e2;
Ben Lindstrom34f91882001-06-25 04:47:54 +0000530 debug("e %lx", e);
531 e <<= 8;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000532 e += e3;
Ben Lindstrom34f91882001-06-25 04:47:54 +0000533 debug("e %lx", e);
534 }
djm@openbsd.org482d23b2018-09-13 02:08:33 +0000535 if ((rsa_e = BN_new()) == NULL)
536 fatal("%s: BN_new", __func__);
537 if (!BN_set_word(rsa_e, e)) {
538 BN_clear_free(rsa_e);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000539 sshkey_free(key);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000540 return NULL;
541 }
djm@openbsd.org482d23b2018-09-13 02:08:33 +0000542 if ((rsa_n = BN_new()) == NULL ||
543 (rsa_d = BN_new()) == NULL ||
544 (rsa_p = BN_new()) == NULL ||
545 (rsa_q = BN_new()) == NULL ||
546 (rsa_iqmp = BN_new()) == NULL)
547 fatal("%s: BN_new", __func__);
548 buffer_get_bignum_bits(b, rsa_d);
549 buffer_get_bignum_bits(b, rsa_n);
550 buffer_get_bignum_bits(b, rsa_iqmp);
551 buffer_get_bignum_bits(b, rsa_q);
552 buffer_get_bignum_bits(b, rsa_p);
553 if (!RSA_set0_key(key->rsa, rsa_n, rsa_e, rsa_d))
554 fatal("%s: RSA_set0_key failed", __func__);
555 rsa_n = rsa_e = rsa_d = NULL; /* transferred */
556 if (!RSA_set0_factors(key->rsa, rsa_p, rsa_q))
557 fatal("%s: RSA_set0_factors failed", __func__);
558 rsa_p = rsa_q = NULL; /* transferred */
559 if ((r = ssh_rsa_complete_crt_parameters(key, rsa_iqmp)) != 0)
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000560 fatal("generate RSA parameters failed: %s", ssh_err(r));
djm@openbsd.org482d23b2018-09-13 02:08:33 +0000561 BN_clear_free(rsa_iqmp);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000562 break;
563 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000564 rlen = sshbuf_len(b);
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +0000565 if (rlen != 0)
djm@openbsd.org16dd8b22019-07-16 13:18:39 +0000566 error("%s: remaining bytes in key blob %d", __func__, rlen);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000567
Ben Lindstrome586c4c2001-06-25 05:04:58 +0000568 /* try the key */
markus@openbsd.org76c9fbb2015-12-04 16:41:28 +0000569 if (sshkey_sign(key, &sig, &slen, data, sizeof(data), NULL, 0) != 0 ||
djm@openbsd.org04c7e282017-12-18 02:25:15 +0000570 sshkey_verify(key, sig, slen, data, sizeof(data), NULL, 0) != 0) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000571 sshkey_free(key);
572 free(sig);
573 return NULL;
574 }
Darren Tuckera627d422013-06-02 07:31:17 +1000575 free(sig);
Damien Miller874d77b2000-10-14 16:23:11 +1100576 return key;
577}
578
Damien Miller8056a9d2006-03-15 12:05:40 +1100579static int
580get_line(FILE *fp, char *line, size_t len)
581{
582 int c;
583 size_t pos = 0;
584
585 line[0] = '\0';
586 while ((c = fgetc(fp)) != EOF) {
djm@openbsd.org3038a192015-04-17 13:19:22 +0000587 if (pos >= len - 1)
588 fatal("input line too long.");
Damien Miller90967402006-03-26 14:07:26 +1100589 switch (c) {
Damien Miller8056a9d2006-03-15 12:05:40 +1100590 case '\r':
591 c = fgetc(fp);
djm@openbsd.org3038a192015-04-17 13:19:22 +0000592 if (c != EOF && c != '\n' && ungetc(c, fp) == EOF)
593 fatal("unget: %s", strerror(errno));
Damien Miller8056a9d2006-03-15 12:05:40 +1100594 return pos;
595 case '\n':
596 return pos;
597 }
598 line[pos++] = c;
599 line[pos] = '\0';
600 }
Damien Miller6c7439f2007-01-05 16:29:55 +1100601 /* We reached EOF */
602 return -1;
Damien Miller8056a9d2006-03-15 12:05:40 +1100603}
604
Ben Lindstrombba81212001-06-25 05:01:22 +0000605static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000606do_convert_from_ssh2(struct passwd *pw, struct sshkey **k, int *private)
Damien Millereba71ba2000-04-29 23:57:08 +1000607{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000608 int r, blen, escaped = 0;
Ben Lindstrom155b9812002-04-02 20:26:26 +0000609 u_int len;
Damien Miller8056a9d2006-03-15 12:05:40 +1100610 char line[1024];
djm@openbsd.org16dd8b22019-07-16 13:18:39 +0000611 struct sshbuf *buf;
Damien Millereba71ba2000-04-29 23:57:08 +1000612 char encoded[8096];
Damien Millereba71ba2000-04-29 23:57:08 +1000613 FILE *fp;
614
djm@openbsd.org16dd8b22019-07-16 13:18:39 +0000615 if ((buf = sshbuf_new()) == NULL)
616 fatal("sshbuf_new failed");
Damien Millerba3420a2010-06-26 09:39:07 +1000617 if ((fp = fopen(identity_file, "r")) == NULL)
618 fatal("%s: %s: %s", __progname, identity_file, strerror(errno));
Damien Millereba71ba2000-04-29 23:57:08 +1000619 encoded[0] = '\0';
Damien Miller8056a9d2006-03-15 12:05:40 +1100620 while ((blen = get_line(fp, line, sizeof(line))) != -1) {
Damien Miller746d1a62013-07-18 16:13:02 +1000621 if (blen > 0 && line[blen - 1] == '\\')
Damien Miller30c3d422000-05-09 11:02:59 +1000622 escaped++;
Damien Millereba71ba2000-04-29 23:57:08 +1000623 if (strncmp(line, "----", 4) == 0 ||
624 strstr(line, ": ") != NULL) {
Damien Miller874d77b2000-10-14 16:23:11 +1100625 if (strstr(line, SSH_COM_PRIVATE_BEGIN) != NULL)
Damien Miller44b25042010-07-02 13:35:01 +1000626 *private = 1;
Ben Lindstrome586c4c2001-06-25 05:04:58 +0000627 if (strstr(line, " END ") != NULL) {
628 break;
629 }
Ben Lindstrom30358602001-04-24 16:59:28 +0000630 /* fprintf(stderr, "ignore: %s", line); */
Damien Millereba71ba2000-04-29 23:57:08 +1000631 continue;
632 }
Damien Miller30c3d422000-05-09 11:02:59 +1000633 if (escaped) {
634 escaped--;
Ben Lindstrom30358602001-04-24 16:59:28 +0000635 /* fprintf(stderr, "escaped: %s", line); */
Damien Miller30c3d422000-05-09 11:02:59 +1000636 continue;
Damien Millereba71ba2000-04-29 23:57:08 +1000637 }
Damien Millereba71ba2000-04-29 23:57:08 +1000638 strlcat(encoded, line, sizeof(encoded));
639 }
Ben Lindstrom155b9812002-04-02 20:26:26 +0000640 len = strlen(encoded);
641 if (((len % 4) == 3) &&
642 (encoded[len-1] == '=') &&
643 (encoded[len-2] == '=') &&
644 (encoded[len-3] == '='))
645 encoded[len-3] = '\0';
djm@openbsd.org16dd8b22019-07-16 13:18:39 +0000646 if ((r = sshbuf_b64tod(buf, encoded)) != 0)
647 fatal("%s: base64 decoding failed: %s", __func__, ssh_err(r));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000648 if (*private)
djm@openbsd.org16dd8b22019-07-16 13:18:39 +0000649 *k = do_convert_private_ssh2(buf);
650 else if ((r = sshkey_fromb(buf, k)) != 0)
djm@openbsd.org3038a192015-04-17 13:19:22 +0000651 fatal("decode blob failed: %s", ssh_err(r));
Damien Miller44b25042010-07-02 13:35:01 +1000652 fclose(fp);
653}
654
655static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000656do_convert_from_pkcs8(struct sshkey **k, int *private)
Damien Miller44b25042010-07-02 13:35:01 +1000657{
658 EVP_PKEY *pubkey;
659 FILE *fp;
660
661 if ((fp = fopen(identity_file, "r")) == NULL)
662 fatal("%s: %s: %s", __progname, identity_file, strerror(errno));
663 if ((pubkey = PEM_read_PUBKEY(fp, NULL, NULL, NULL)) == NULL) {
664 fatal("%s: %s is not a recognised public key format", __func__,
665 identity_file);
666 }
667 fclose(fp);
djm@openbsd.org482d23b2018-09-13 02:08:33 +0000668 switch (EVP_PKEY_base_id(pubkey)) {
Damien Miller44b25042010-07-02 13:35:01 +1000669 case EVP_PKEY_RSA:
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000670 if ((*k = sshkey_new(KEY_UNSPEC)) == NULL)
671 fatal("sshkey_new failed");
Damien Miller44b25042010-07-02 13:35:01 +1000672 (*k)->type = KEY_RSA;
673 (*k)->rsa = EVP_PKEY_get1_RSA(pubkey);
674 break;
675 case EVP_PKEY_DSA:
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000676 if ((*k = sshkey_new(KEY_UNSPEC)) == NULL)
677 fatal("sshkey_new failed");
Damien Miller44b25042010-07-02 13:35:01 +1000678 (*k)->type = KEY_DSA;
679 (*k)->dsa = EVP_PKEY_get1_DSA(pubkey);
680 break;
Damien Miller6af914a2010-09-10 11:39:26 +1000681#ifdef OPENSSL_HAS_ECC
Damien Millereb8b60e2010-08-31 22:41:14 +1000682 case EVP_PKEY_EC:
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000683 if ((*k = sshkey_new(KEY_UNSPEC)) == NULL)
684 fatal("sshkey_new failed");
Damien Millereb8b60e2010-08-31 22:41:14 +1000685 (*k)->type = KEY_ECDSA;
686 (*k)->ecdsa = EVP_PKEY_get1_EC_KEY(pubkey);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000687 (*k)->ecdsa_nid = sshkey_ecdsa_key_to_nid((*k)->ecdsa);
Damien Millereb8b60e2010-08-31 22:41:14 +1000688 break;
Damien Miller6af914a2010-09-10 11:39:26 +1000689#endif
Damien Miller44b25042010-07-02 13:35:01 +1000690 default:
691 fatal("%s: unsupported pubkey type %d", __func__,
djm@openbsd.org482d23b2018-09-13 02:08:33 +0000692 EVP_PKEY_base_id(pubkey));
Damien Miller44b25042010-07-02 13:35:01 +1000693 }
694 EVP_PKEY_free(pubkey);
695 return;
696}
697
698static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000699do_convert_from_pem(struct sshkey **k, int *private)
Damien Miller44b25042010-07-02 13:35:01 +1000700{
701 FILE *fp;
702 RSA *rsa;
Damien Miller44b25042010-07-02 13:35:01 +1000703
704 if ((fp = fopen(identity_file, "r")) == NULL)
705 fatal("%s: %s: %s", __progname, identity_file, strerror(errno));
706 if ((rsa = PEM_read_RSAPublicKey(fp, NULL, NULL, NULL)) != NULL) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000707 if ((*k = sshkey_new(KEY_UNSPEC)) == NULL)
708 fatal("sshkey_new failed");
Damien Miller44b25042010-07-02 13:35:01 +1000709 (*k)->type = KEY_RSA;
710 (*k)->rsa = rsa;
711 fclose(fp);
712 return;
713 }
Damien Miller44b25042010-07-02 13:35:01 +1000714 fatal("%s: unrecognised raw private key format", __func__);
715}
716
717static void
718do_convert_from(struct passwd *pw)
719{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000720 struct sshkey *k = NULL;
721 int r, private = 0, ok = 0;
Damien Miller44b25042010-07-02 13:35:01 +1000722 struct stat st;
723
724 if (!have_identity)
725 ask_filename(pw, "Enter file in which the key is");
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +0000726 if (stat(identity_file, &st) == -1)
Damien Miller44b25042010-07-02 13:35:01 +1000727 fatal("%s: %s: %s", __progname, identity_file, strerror(errno));
728
729 switch (convert_format) {
730 case FMT_RFC4716:
731 do_convert_from_ssh2(pw, &k, &private);
732 break;
733 case FMT_PKCS8:
734 do_convert_from_pkcs8(&k, &private);
735 break;
736 case FMT_PEM:
737 do_convert_from_pem(&k, &private);
738 break;
739 default:
740 fatal("%s: unknown key format %d", __func__, convert_format);
741 }
742
djm@openbsd.org7a2c3682015-01-30 00:59:19 +0000743 if (!private) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000744 if ((r = sshkey_write(k, stdout)) == 0)
745 ok = 1;
Damien Miller44b25042010-07-02 13:35:01 +1000746 if (ok)
747 fprintf(stdout, "\n");
djm@openbsd.org7a2c3682015-01-30 00:59:19 +0000748 } else {
Damien Miller44b25042010-07-02 13:35:01 +1000749 switch (k->type) {
750 case KEY_DSA:
751 ok = PEM_write_DSAPrivateKey(stdout, k->dsa, NULL,
752 NULL, 0, NULL, NULL);
753 break;
Damien Miller6af914a2010-09-10 11:39:26 +1000754#ifdef OPENSSL_HAS_ECC
Damien Millereb8b60e2010-08-31 22:41:14 +1000755 case KEY_ECDSA:
756 ok = PEM_write_ECPrivateKey(stdout, k->ecdsa, NULL,
757 NULL, 0, NULL, NULL);
758 break;
Damien Miller6af914a2010-09-10 11:39:26 +1000759#endif
Damien Miller44b25042010-07-02 13:35:01 +1000760 case KEY_RSA:
761 ok = PEM_write_RSAPrivateKey(stdout, k->rsa, NULL,
762 NULL, 0, NULL, NULL);
763 break;
764 default:
765 fatal("%s: unsupported key type %s", __func__,
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000766 sshkey_type(k));
Damien Miller44b25042010-07-02 13:35:01 +1000767 }
768 }
769
djm@openbsd.org3038a192015-04-17 13:19:22 +0000770 if (!ok)
771 fatal("key write failed");
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000772 sshkey_free(k);
Damien Millereba71ba2000-04-29 23:57:08 +1000773 exit(0);
774}
Damien Miller1f0311c2014-05-15 14:24:09 +1000775#endif
Damien Millereba71ba2000-04-29 23:57:08 +1000776
Ben Lindstrombba81212001-06-25 05:01:22 +0000777static void
Damien Millereba71ba2000-04-29 23:57:08 +1000778do_print_public(struct passwd *pw)
779{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000780 struct sshkey *prv;
Damien Millereba71ba2000-04-29 23:57:08 +1000781 struct stat st;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000782 int r;
djm@openbsd.org07133222019-09-01 23:47:32 +0000783 char *comment = NULL;
Damien Millereba71ba2000-04-29 23:57:08 +1000784
785 if (!have_identity)
786 ask_filename(pw, "Enter file in which the key is");
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +0000787 if (stat(identity_file, &st) == -1)
djm@openbsd.org3038a192015-04-17 13:19:22 +0000788 fatal("%s: %s", identity_file, strerror(errno));
djm@openbsd.org07133222019-09-01 23:47:32 +0000789 prv = load_identity(identity_file, &comment);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000790 if ((r = sshkey_write(prv, stdout)) != 0)
markus@openbsd.org7da5df12017-05-30 14:16:41 +0000791 error("sshkey_write failed: %s", ssh_err(r));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000792 sshkey_free(prv);
djm@openbsd.org07133222019-09-01 23:47:32 +0000793 if (comment != NULL && *comment != '\0')
794 fprintf(stdout, " %s", comment);
Damien Millereba71ba2000-04-29 23:57:08 +1000795 fprintf(stdout, "\n");
djm@openbsd.org07133222019-09-01 23:47:32 +0000796 free(comment);
Damien Millereba71ba2000-04-29 23:57:08 +1000797 exit(0);
798}
799
Ben Lindstromcd392282001-07-04 03:44:03 +0000800static void
Damien Miller757f34e2010-08-05 13:05:31 +1000801do_download(struct passwd *pw)
Ben Lindstromcd392282001-07-04 03:44:03 +0000802{
Damien Miller7ea845e2010-02-12 09:21:02 +1100803#ifdef ENABLE_PKCS11
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000804 struct sshkey **keys = NULL;
Damien Miller7ea845e2010-02-12 09:21:02 +1100805 int i, nkeys;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000806 enum sshkey_fp_rep rep;
djm@openbsd.org56d1c832014-12-21 22:27:55 +0000807 int fptype;
Damien Millerec77c952013-01-09 15:58:00 +1100808 char *fp, *ra;
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000809
djm@openbsd.org56d1c832014-12-21 22:27:55 +0000810 fptype = print_bubblebabble ? SSH_DIGEST_SHA1 : fingerprint_hash;
811 rep = print_bubblebabble ? SSH_FP_BUBBLEBABBLE : SSH_FP_DEFAULT;
Damien Miller1422c082013-01-09 16:44:54 +1100812
benno@openbsd.orga8c807f2019-02-10 16:35:41 +0000813 pkcs11_init(1);
Damien Miller7ea845e2010-02-12 09:21:02 +1100814 nkeys = pkcs11_add_provider(pkcs11provider, NULL, &keys);
815 if (nkeys <= 0)
816 fatal("cannot read public key from pkcs11");
817 for (i = 0; i < nkeys; i++) {
Damien Millerec77c952013-01-09 15:58:00 +1100818 if (print_fingerprint) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000819 fp = sshkey_fingerprint(keys[i], fptype, rep);
820 ra = sshkey_fingerprint(keys[i], fingerprint_hash,
Damien Millerec77c952013-01-09 15:58:00 +1100821 SSH_FP_RANDOMART);
djm@openbsd.org9ce86c92015-01-28 22:36:00 +0000822 if (fp == NULL || ra == NULL)
823 fatal("%s: sshkey_fingerprint fail", __func__);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000824 printf("%u %s %s (PKCS11 key)\n", sshkey_size(keys[i]),
825 fp, sshkey_type(keys[i]));
djm@openbsd.org851f8032019-01-23 04:16:22 +0000826 if (log_level_get() >= SYSLOG_LEVEL_VERBOSE)
Damien Millerec77c952013-01-09 15:58:00 +1100827 printf("%s\n", ra);
Darren Tuckera627d422013-06-02 07:31:17 +1000828 free(ra);
829 free(fp);
Damien Millerec77c952013-01-09 15:58:00 +1100830 } else {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000831 (void) sshkey_write(keys[i], stdout); /* XXX check */
Damien Millerec77c952013-01-09 15:58:00 +1100832 fprintf(stdout, "\n");
833 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000834 sshkey_free(keys[i]);
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000835 }
Darren Tuckera627d422013-06-02 07:31:17 +1000836 free(keys);
Damien Miller7ea845e2010-02-12 09:21:02 +1100837 pkcs11_terminate();
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000838 exit(0);
Damien Miller7ea845e2010-02-12 09:21:02 +1100839#else
840 fatal("no pkcs11 support");
841#endif /* ENABLE_PKCS11 */
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000842}
Ben Lindstromcd392282001-07-04 03:44:03 +0000843
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000844static struct sshkey *
845try_read_key(char **cpp)
846{
847 struct sshkey *ret;
848 int r;
849
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000850 if ((ret = sshkey_new(KEY_UNSPEC)) == NULL)
851 fatal("sshkey_new failed");
852 if ((r = sshkey_read(ret, cpp)) == 0)
853 return ret;
854 /* Not a key */
855 sshkey_free(ret);
856 return NULL;
857}
858
859static void
860fingerprint_one_key(const struct sshkey *public, const char *comment)
861{
862 char *fp = NULL, *ra = NULL;
863 enum sshkey_fp_rep rep;
864 int fptype;
865
866 fptype = print_bubblebabble ? SSH_DIGEST_SHA1 : fingerprint_hash;
867 rep = print_bubblebabble ? SSH_FP_BUBBLEBABBLE : SSH_FP_DEFAULT;
868 fp = sshkey_fingerprint(public, fptype, rep);
869 ra = sshkey_fingerprint(public, fingerprint_hash, SSH_FP_RANDOMART);
870 if (fp == NULL || ra == NULL)
871 fatal("%s: sshkey_fingerprint failed", __func__);
djm@openbsd.orga287c5a2017-02-10 03:36:40 +0000872 mprintf("%u %s %s (%s)\n", sshkey_size(public), fp,
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000873 comment ? comment : "no comment", sshkey_type(public));
djm@openbsd.org851f8032019-01-23 04:16:22 +0000874 if (log_level_get() >= SYSLOG_LEVEL_VERBOSE)
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000875 printf("%s\n", ra);
876 free(ra);
877 free(fp);
878}
879
880static void
881fingerprint_private(const char *path)
882{
883 struct stat st;
884 char *comment = NULL;
885 struct sshkey *public = NULL;
886 int r;
887
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +0000888 if (stat(identity_file, &st) == -1)
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000889 fatal("%s: %s", path, strerror(errno));
djm@openbsd.orgbcb7bc72015-11-18 08:37:28 +0000890 if ((r = sshkey_load_public(path, &public, &comment)) != 0) {
891 debug("load public \"%s\": %s", path, ssh_err(r));
892 if ((r = sshkey_load_private(path, NULL,
893 &public, &comment)) != 0) {
894 debug("load private \"%s\": %s", path, ssh_err(r));
895 fatal("%s is not a key file.", path);
896 }
897 }
898
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000899 fingerprint_one_key(public, comment);
900 sshkey_free(public);
901 free(comment);
902}
903
Ben Lindstrombba81212001-06-25 05:01:22 +0000904static void
Damien Miller10f6f6b1999-11-17 17:29:08 +1100905do_fingerprint(struct passwd *pw)
906{
Damien Miller98c7ad62000-03-09 21:27:49 +1100907 FILE *f;
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000908 struct sshkey *public = NULL;
markus@openbsd.org7f906352018-06-06 18:29:18 +0000909 char *comment = NULL, *cp, *ep, *line = NULL;
910 size_t linesize = 0;
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000911 int i, invalid = 1;
912 const char *path;
djm@openbsd.org1a31d022016-05-02 08:49:03 +0000913 u_long lnum = 0;
Damien Miller10f6f6b1999-11-17 17:29:08 +1100914
Damien Miller95def091999-11-25 00:26:21 +1100915 if (!have_identity)
916 ask_filename(pw, "Enter file in which the key is");
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000917 path = identity_file;
Damien Miller98c7ad62000-03-09 21:27:49 +1100918
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000919 if (strcmp(identity_file, "-") == 0) {
920 f = stdin;
921 path = "(stdin)";
922 } else if ((f = fopen(path, "r")) == NULL)
923 fatal("%s: %s: %s", __progname, path, strerror(errno));
Damien Miller98c7ad62000-03-09 21:27:49 +1100924
markus@openbsd.org7f906352018-06-06 18:29:18 +0000925 while (getline(&line, &linesize, f) != -1) {
926 lnum++;
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000927 cp = line;
928 cp[strcspn(cp, "\n")] = '\0';
929 /* Trim leading space and comments */
930 cp = line + strspn(line, " \t");
931 if (*cp == '#' || *cp == '\0')
932 continue;
933
934 /*
935 * Input may be plain keys, private keys, authorized_keys
936 * or known_hosts.
937 */
938
939 /*
940 * Try private keys first. Assume a key is private if
941 * "SSH PRIVATE KEY" appears on the first line and we're
942 * not reading from stdin (XXX support private keys on stdin).
943 */
944 if (lnum == 1 && strcmp(identity_file, "-") != 0 &&
djm@openbsd.orgbcb7bc72015-11-18 08:37:28 +0000945 strstr(cp, "PRIVATE KEY") != NULL) {
markus@openbsd.org7f906352018-06-06 18:29:18 +0000946 free(line);
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000947 fclose(f);
948 fingerprint_private(path);
949 exit(0);
950 }
951
952 /*
953 * If it's not a private key, then this must be prepared to
954 * accept a public key prefixed with a hostname or options.
955 * Try a bare key first, otherwise skip the leading stuff.
956 */
957 if ((public = try_read_key(&cp)) == NULL) {
958 i = strtol(cp, &ep, 10);
959 if (i == 0 || ep == NULL ||
960 (*ep != ' ' && *ep != '\t')) {
961 int quoted = 0;
962
963 comment = cp;
964 for (; *cp && (quoted || (*cp != ' ' &&
965 *cp != '\t')); cp++) {
966 if (*cp == '\\' && cp[1] == '"')
967 cp++; /* Skip both */
968 else if (*cp == '"')
969 quoted = !quoted;
970 }
971 if (!*cp)
972 continue;
973 *cp++ = '\0';
974 }
975 }
976 /* Retry after parsing leading hostname/key options */
977 if (public == NULL && (public = try_read_key(&cp)) == NULL) {
djm@openbsd.org1a31d022016-05-02 08:49:03 +0000978 debug("%s:%lu: not a public key", path, lnum);
Damien Millerba3420a2010-06-26 09:39:07 +1000979 continue;
Damien Miller95def091999-11-25 00:26:21 +1100980 }
Damien Millerba3420a2010-06-26 09:39:07 +1000981
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000982 /* Find trailing comment, if any */
983 for (; *cp == ' ' || *cp == '\t'; cp++)
Damien Millerba3420a2010-06-26 09:39:07 +1000984 ;
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000985 if (*cp != '\0' && *cp != '#')
Damien Millerba3420a2010-06-26 09:39:07 +1000986 comment = cp;
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000987
988 fingerprint_one_key(public, comment);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +0000989 sshkey_free(public);
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000990 invalid = 0; /* One good key in the file is sufficient */
Damien Miller95def091999-11-25 00:26:21 +1100991 }
Damien Millerba3420a2010-06-26 09:39:07 +1000992 fclose(f);
markus@openbsd.org7f906352018-06-06 18:29:18 +0000993 free(line);
Damien Millerba3420a2010-06-26 09:39:07 +1000994
djm@openbsd.org3038a192015-04-17 13:19:22 +0000995 if (invalid)
djm@openbsd.orgc56a2552015-11-16 22:53:07 +0000996 fatal("%s is not a public key file.", path);
Damien Miller95def091999-11-25 00:26:21 +1100997 exit(0);
Damien Miller10f6f6b1999-11-17 17:29:08 +1100998}
999
Damien Miller4b42d7f2005-03-01 21:48:35 +11001000static void
Damien Miller58f1baf2011-05-05 14:06:15 +10001001do_gen_all_hostkeys(struct passwd *pw)
1002{
1003 struct {
1004 char *key_type;
1005 char *key_type_display;
1006 char *path;
1007 } key_types[] = {
djm@openbsd.org5c27e3b2015-03-23 06:06:38 +00001008#ifdef WITH_OPENSSL
Damien Miller58f1baf2011-05-05 14:06:15 +10001009 { "rsa", "RSA" ,_PATH_HOST_RSA_KEY_FILE },
1010 { "dsa", "DSA", _PATH_HOST_DSA_KEY_FILE },
Damien Millerb56e4932012-02-06 07:41:27 +11001011#ifdef OPENSSL_HAS_ECC
Damien Miller58f1baf2011-05-05 14:06:15 +10001012 { "ecdsa", "ECDSA",_PATH_HOST_ECDSA_KEY_FILE },
djm@openbsd.org5c27e3b2015-03-23 06:06:38 +00001013#endif /* OPENSSL_HAS_ECC */
1014#endif /* WITH_OPENSSL */
Damien Miller5be9d9e2013-12-07 11:24:01 +11001015 { "ed25519", "ED25519",_PATH_HOST_ED25519_KEY_FILE },
markus@openbsd.org1b11ea72018-02-23 15:58:37 +00001016#ifdef WITH_XMSS
1017 { "xmss", "XMSS",_PATH_HOST_XMSS_KEY_FILE },
1018#endif /* WITH_XMSS */
Damien Miller58f1baf2011-05-05 14:06:15 +10001019 { NULL, NULL, NULL }
1020 };
1021
dtucker@openbsd.org7afc45c2019-08-08 08:02:57 +00001022 u_int32_t bits = 0;
Damien Miller58f1baf2011-05-05 14:06:15 +10001023 int first = 0;
1024 struct stat st;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001025 struct sshkey *private, *public;
djm@openbsd.org853edbe2017-07-07 03:53:12 +00001026 char comment[1024], *prv_tmp, *pub_tmp, *prv_file, *pub_file;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001027 int i, type, fd, r;
Damien Miller58f1baf2011-05-05 14:06:15 +10001028 FILE *f;
1029
1030 for (i = 0; key_types[i].key_type; i++) {
djm@openbsd.org853edbe2017-07-07 03:53:12 +00001031 public = private = NULL;
1032 prv_tmp = pub_tmp = prv_file = pub_file = NULL;
1033
1034 xasprintf(&prv_file, "%s%s",
1035 identity_file, key_types[i].path);
1036
1037 /* Check whether private key exists and is not zero-length */
1038 if (stat(prv_file, &st) == 0) {
1039 if (st.st_size != 0)
1040 goto next;
1041 } else if (errno != ENOENT) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00001042 error("Could not stat %s: %s", key_types[i].path,
Damien Miller58f1baf2011-05-05 14:06:15 +10001043 strerror(errno));
djm@openbsd.org853edbe2017-07-07 03:53:12 +00001044 goto failnext;
Damien Miller58f1baf2011-05-05 14:06:15 +10001045 }
1046
djm@openbsd.org853edbe2017-07-07 03:53:12 +00001047 /*
1048 * Private key doesn't exist or is invalid; proceed with
1049 * key generation.
1050 */
1051 xasprintf(&prv_tmp, "%s%s.XXXXXXXXXX",
1052 identity_file, key_types[i].path);
1053 xasprintf(&pub_tmp, "%s%s.pub.XXXXXXXXXX",
1054 identity_file, key_types[i].path);
1055 xasprintf(&pub_file, "%s%s.pub",
1056 identity_file, key_types[i].path);
1057
Damien Miller58f1baf2011-05-05 14:06:15 +10001058 if (first == 0) {
1059 first = 1;
1060 printf("%s: generating new host keys: ", __progname);
1061 }
1062 printf("%s ", key_types[i].key_type_display);
1063 fflush(stdout);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001064 type = sshkey_type_from_name(key_types[i].key_type);
djm@openbsd.org853edbe2017-07-07 03:53:12 +00001065 if ((fd = mkstemp(prv_tmp)) == -1) {
1066 error("Could not save your public key in %s: %s",
1067 prv_tmp, strerror(errno));
1068 goto failnext;
1069 }
1070 close(fd); /* just using mkstemp() to generate/reserve a name */
Damien Miller58f1baf2011-05-05 14:06:15 +10001071 bits = 0;
djm@openbsd.org7efb4552015-01-18 13:22:28 +00001072 type_bits_valid(type, NULL, &bits);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001073 if ((r = sshkey_generate(type, bits, &private)) != 0) {
markus@openbsd.org7da5df12017-05-30 14:16:41 +00001074 error("sshkey_generate failed: %s", ssh_err(r));
djm@openbsd.org853edbe2017-07-07 03:53:12 +00001075 goto failnext;
Damien Miller58f1baf2011-05-05 14:06:15 +10001076 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001077 if ((r = sshkey_from_private(private, &public)) != 0)
1078 fatal("sshkey_from_private failed: %s", ssh_err(r));
Damien Miller58f1baf2011-05-05 14:06:15 +10001079 snprintf(comment, sizeof comment, "%s@%s", pw->pw_name,
1080 hostname);
djm@openbsd.org853edbe2017-07-07 03:53:12 +00001081 if ((r = sshkey_save_private(private, prv_tmp, "",
djm@openbsd.orgeb0d8e72019-07-15 13:16:29 +00001082 comment, private_key_format, openssh_format_cipher,
1083 rounds)) != 0) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00001084 error("Saving key \"%s\" failed: %s",
djm@openbsd.org853edbe2017-07-07 03:53:12 +00001085 prv_tmp, ssh_err(r));
1086 goto failnext;
Damien Miller58f1baf2011-05-05 14:06:15 +10001087 }
djm@openbsd.org853edbe2017-07-07 03:53:12 +00001088 if ((fd = mkstemp(pub_tmp)) == -1) {
1089 error("Could not save your public key in %s: %s",
1090 pub_tmp, strerror(errno));
1091 goto failnext;
Damien Miller58f1baf2011-05-05 14:06:15 +10001092 }
djm@openbsd.org853edbe2017-07-07 03:53:12 +00001093 (void)fchmod(fd, 0644);
Damien Miller58f1baf2011-05-05 14:06:15 +10001094 f = fdopen(fd, "w");
1095 if (f == NULL) {
djm@openbsd.org853edbe2017-07-07 03:53:12 +00001096 error("fdopen %s failed: %s", pub_tmp, strerror(errno));
doug@openbsd.org7df88182014-08-21 01:08:52 +00001097 close(fd);
djm@openbsd.org853edbe2017-07-07 03:53:12 +00001098 goto failnext;
Damien Miller58f1baf2011-05-05 14:06:15 +10001099 }
djm@openbsd.orgbb8b4422015-01-16 15:55:07 +00001100 if ((r = sshkey_write(public, f)) != 0) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00001101 error("write key failed: %s", ssh_err(r));
doug@openbsd.org7df88182014-08-21 01:08:52 +00001102 fclose(f);
djm@openbsd.org853edbe2017-07-07 03:53:12 +00001103 goto failnext;
Damien Miller58f1baf2011-05-05 14:06:15 +10001104 }
1105 fprintf(f, " %s\n", comment);
djm@openbsd.org853edbe2017-07-07 03:53:12 +00001106 if (ferror(f) != 0) {
1107 error("write key failed: %s", strerror(errno));
1108 fclose(f);
1109 goto failnext;
1110 }
1111 if (fclose(f) != 0) {
1112 error("key close failed: %s", strerror(errno));
1113 goto failnext;
1114 }
Damien Miller58f1baf2011-05-05 14:06:15 +10001115
djm@openbsd.org853edbe2017-07-07 03:53:12 +00001116 /* Rename temporary files to their permanent locations. */
1117 if (rename(pub_tmp, pub_file) != 0) {
1118 error("Unable to move %s into position: %s",
1119 pub_file, strerror(errno));
1120 goto failnext;
1121 }
1122 if (rename(prv_tmp, prv_file) != 0) {
1123 error("Unable to move %s into position: %s",
1124 key_types[i].path, strerror(errno));
1125 failnext:
1126 first = 0;
1127 goto next;
1128 }
1129 next:
1130 sshkey_free(private);
1131 sshkey_free(public);
1132 free(prv_tmp);
1133 free(pub_tmp);
1134 free(prv_file);
1135 free(pub_file);
Damien Miller58f1baf2011-05-05 14:06:15 +10001136 }
1137 if (first != 0)
1138 printf("\n");
1139}
1140
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001141struct known_hosts_ctx {
djm@openbsd.org2b3c3c72015-01-18 21:51:19 +00001142 const char *host; /* Hostname searched for in find/delete case */
1143 FILE *out; /* Output file, stdout for find_hosts case */
1144 int has_unhashed; /* When hashing, original had unhashed hosts */
1145 int found_key; /* For find/delete, host was found */
1146 int invalid; /* File contained invalid items; don't delete */
djm@openbsd.org851f8032019-01-23 04:16:22 +00001147 int hash_hosts; /* Hash hostnames as we go */
1148 int find_host; /* Search for specific hostname */
1149 int delete_host; /* Delete host from known_hosts */
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001150};
1151
1152static int
1153known_hosts_hash(struct hostkey_foreach_line *l, void *_ctx)
Damien Miller4b42d7f2005-03-01 21:48:35 +11001154{
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001155 struct known_hosts_ctx *ctx = (struct known_hosts_ctx *)_ctx;
1156 char *hashed, *cp, *hosts, *ohosts;
1157 int has_wild = l->hosts && strcspn(l->hosts, "*?!") != strlen(l->hosts);
dtucker@openbsd.org18501152017-03-06 02:03:20 +00001158 int was_hashed = l->hosts && l->hosts[0] == HASH_DELIM;
Darren Tucker0f7e9102008-06-08 12:54:29 +10001159
djm@openbsd.org6c5c9492015-02-16 22:08:57 +00001160 switch (l->status) {
1161 case HKF_STATUS_OK:
1162 case HKF_STATUS_MATCHED:
1163 /*
1164 * Don't hash hosts already already hashed, with wildcard
1165 * characters or a CA/revocation marker.
1166 */
djm@openbsd.org12d37672017-03-03 06:13:11 +00001167 if (was_hashed || has_wild || l->marker != MRK_NONE) {
djm@openbsd.org6c5c9492015-02-16 22:08:57 +00001168 fprintf(ctx->out, "%s\n", l->line);
djm@openbsd.org851f8032019-01-23 04:16:22 +00001169 if (has_wild && !ctx->find_host) {
dtucker@openbsd.orgd0723702017-03-06 00:44:51 +00001170 logit("%s:%lu: ignoring host name "
djm@openbsd.org3038a192015-04-17 13:19:22 +00001171 "with wildcard: %.64s", l->path,
djm@openbsd.org6c5c9492015-02-16 22:08:57 +00001172 l->linenum, l->hosts);
1173 }
1174 return 0;
1175 }
1176 /*
1177 * Split any comma-separated hostnames from the host list,
1178 * hash and store separately.
1179 */
1180 ohosts = hosts = xstrdup(l->hosts);
1181 while ((cp = strsep(&hosts, ",")) != NULL && *cp != '\0') {
djm@openbsd.orgdb259722017-03-10 04:26:06 +00001182 lowercase(cp);
djm@openbsd.org6c5c9492015-02-16 22:08:57 +00001183 if ((hashed = host_hash(cp, NULL, 0)) == NULL)
1184 fatal("hash_host failed");
1185 fprintf(ctx->out, "%s %s\n", hashed, l->rawkey);
1186 ctx->has_unhashed = 1;
1187 }
1188 free(ohosts);
1189 return 0;
1190 case HKF_STATUS_INVALID:
1191 /* Retain invalid lines, but mark file as invalid. */
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001192 ctx->invalid = 1;
dtucker@openbsd.orgd0723702017-03-06 00:44:51 +00001193 logit("%s:%lu: invalid line", l->path, l->linenum);
djm@openbsd.org6c5c9492015-02-16 22:08:57 +00001194 /* FALLTHROUGH */
1195 default:
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001196 fprintf(ctx->out, "%s\n", l->line);
1197 return 0;
Darren Tucker0f7e9102008-06-08 12:54:29 +10001198 }
djm@openbsd.org6c5c9492015-02-16 22:08:57 +00001199 /* NOTREACHED */
1200 return -1;
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001201}
1202
1203static int
1204known_hosts_find_delete(struct hostkey_foreach_line *l, void *_ctx)
1205{
1206 struct known_hosts_ctx *ctx = (struct known_hosts_ctx *)_ctx;
djm@openbsd.org4739e8d2015-05-21 12:01:19 +00001207 enum sshkey_fp_rep rep;
1208 int fptype;
djm@openbsd.orgbca05822019-07-19 03:38:01 +00001209 char *fp = NULL, *ra = NULL;
djm@openbsd.org4739e8d2015-05-21 12:01:19 +00001210
1211 fptype = print_bubblebabble ? SSH_DIGEST_SHA1 : fingerprint_hash;
1212 rep = print_bubblebabble ? SSH_FP_BUBBLEBABBLE : SSH_FP_DEFAULT;
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001213
djm@openbsd.org6c5c9492015-02-16 22:08:57 +00001214 if (l->status == HKF_STATUS_MATCHED) {
djm@openbsd.org851f8032019-01-23 04:16:22 +00001215 if (ctx->delete_host) {
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001216 if (l->marker != MRK_NONE) {
1217 /* Don't remove CA and revocation lines */
1218 fprintf(ctx->out, "%s\n", l->line);
1219 } else {
1220 /*
1221 * Hostname matches and has no CA/revoke
1222 * marker, delete it by *not* writing the
1223 * line to ctx->out.
1224 */
1225 ctx->found_key = 1;
1226 if (!quiet)
dtucker@openbsd.orgd0723702017-03-06 00:44:51 +00001227 printf("# Host %s found: line %lu\n",
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001228 ctx->host, l->linenum);
1229 }
1230 return 0;
djm@openbsd.org851f8032019-01-23 04:16:22 +00001231 } else if (ctx->find_host) {
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001232 ctx->found_key = 1;
1233 if (!quiet) {
dtucker@openbsd.orgd0723702017-03-06 00:44:51 +00001234 printf("# Host %s found: line %lu %s\n",
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001235 ctx->host,
1236 l->linenum, l->marker == MRK_CA ? "CA" :
1237 (l->marker == MRK_REVOKE ? "REVOKED" : ""));
1238 }
djm@openbsd.org851f8032019-01-23 04:16:22 +00001239 if (ctx->hash_hosts)
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001240 known_hosts_hash(l, ctx);
djm@openbsd.org4739e8d2015-05-21 12:01:19 +00001241 else if (print_fingerprint) {
1242 fp = sshkey_fingerprint(l->key, fptype, rep);
djm@openbsd.orgbca05822019-07-19 03:38:01 +00001243 ra = sshkey_fingerprint(l->key,
1244 fingerprint_hash, SSH_FP_RANDOMART);
1245 if (fp == NULL || ra == NULL)
1246 fatal("%s: sshkey_fingerprint failed",
1247 __func__);
djm@openbsd.orga287c5a2017-02-10 03:36:40 +00001248 mprintf("%s %s %s %s\n", ctx->host,
djm@openbsd.org4739e8d2015-05-21 12:01:19 +00001249 sshkey_type(l->key), fp, l->comment);
djm@openbsd.orgbca05822019-07-19 03:38:01 +00001250 if (log_level_get() >= SYSLOG_LEVEL_VERBOSE)
1251 printf("%s\n", ra);
1252 free(ra);
djm@openbsd.org4739e8d2015-05-21 12:01:19 +00001253 free(fp);
1254 } else
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001255 fprintf(ctx->out, "%s\n", l->line);
1256 return 0;
1257 }
djm@openbsd.org851f8032019-01-23 04:16:22 +00001258 } else if (ctx->delete_host) {
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001259 /* Retain non-matching hosts when deleting */
1260 if (l->status == HKF_STATUS_INVALID) {
1261 ctx->invalid = 1;
dtucker@openbsd.orgd0723702017-03-06 00:44:51 +00001262 logit("%s:%lu: invalid line", l->path, l->linenum);
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001263 }
1264 fprintf(ctx->out, "%s\n", l->line);
1265 }
1266 return 0;
Damien Miller4b42d7f2005-03-01 21:48:35 +11001267}
1268
1269static void
djm@openbsd.org851f8032019-01-23 04:16:22 +00001270do_known_hosts(struct passwd *pw, const char *name, int find_host,
1271 int delete_host, int hash_hosts)
Damien Miller4b42d7f2005-03-01 21:48:35 +11001272{
deraadt@openbsd.orgd2099de2015-01-19 00:32:54 +00001273 char *cp, tmp[PATH_MAX], old[PATH_MAX];
djm@openbsd.org2b3c3c72015-01-18 21:51:19 +00001274 int r, fd, oerrno, inplace = 0;
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001275 struct known_hosts_ctx ctx;
djm@openbsd.org4739e8d2015-05-21 12:01:19 +00001276 u_int foreach_options;
Damien Miller4b42d7f2005-03-01 21:48:35 +11001277
1278 if (!have_identity) {
1279 cp = tilde_expand_filename(_PATH_SSH_USER_HOSTFILE, pw->pw_uid);
1280 if (strlcpy(identity_file, cp, sizeof(identity_file)) >=
1281 sizeof(identity_file))
1282 fatal("Specified known hosts path too long");
Darren Tuckera627d422013-06-02 07:31:17 +10001283 free(cp);
Damien Miller4b42d7f2005-03-01 21:48:35 +11001284 have_identity = 1;
1285 }
Damien Miller4b42d7f2005-03-01 21:48:35 +11001286
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001287 memset(&ctx, 0, sizeof(ctx));
1288 ctx.out = stdout;
1289 ctx.host = name;
djm@openbsd.org851f8032019-01-23 04:16:22 +00001290 ctx.hash_hosts = hash_hosts;
1291 ctx.find_host = find_host;
1292 ctx.delete_host = delete_host;
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001293
Damien Miller4b42d7f2005-03-01 21:48:35 +11001294 /*
1295 * Find hosts goes to stdout, hash and deletions happen in-place
1296 * A corner case is ssh-keygen -HF foo, which should go to stdout
1297 */
1298 if (!find_host && (hash_hosts || delete_host)) {
1299 if (strlcpy(tmp, identity_file, sizeof(tmp)) >= sizeof(tmp) ||
1300 strlcat(tmp, ".XXXXXXXXXX", sizeof(tmp)) >= sizeof(tmp) ||
1301 strlcpy(old, identity_file, sizeof(old)) >= sizeof(old) ||
1302 strlcat(old, ".old", sizeof(old)) >= sizeof(old))
1303 fatal("known_hosts path too long");
1304 umask(077);
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001305 if ((fd = mkstemp(tmp)) == -1)
Damien Miller4b42d7f2005-03-01 21:48:35 +11001306 fatal("mkstemp: %s", strerror(errno));
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001307 if ((ctx.out = fdopen(fd, "w")) == NULL) {
1308 oerrno = errno;
Damien Miller4b42d7f2005-03-01 21:48:35 +11001309 unlink(tmp);
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001310 fatal("fdopen: %s", strerror(oerrno));
Damien Miller4b42d7f2005-03-01 21:48:35 +11001311 }
djm@openbsd.org2b3c3c72015-01-18 21:51:19 +00001312 inplace = 1;
Damien Miller4b42d7f2005-03-01 21:48:35 +11001313 }
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001314 /* XXX support identity_file == "-" for stdin */
djm@openbsd.org4739e8d2015-05-21 12:01:19 +00001315 foreach_options = find_host ? HKF_WANT_MATCH : 0;
1316 foreach_options |= print_fingerprint ? HKF_WANT_PARSE_KEY : 0;
djm@openbsd.org01b048c2018-06-01 04:21:29 +00001317 if ((r = hostkeys_foreach(identity_file, (find_host || !hash_hosts) ?
djm@openbsd.org3e088aa2018-06-01 03:51:34 +00001318 known_hosts_find_delete : known_hosts_hash, &ctx, name, NULL,
1319 foreach_options)) != 0) {
deraadt@openbsd.org6da413c2015-11-28 06:50:52 +00001320 if (inplace)
1321 unlink(tmp);
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001322 fatal("%s: hostkeys_foreach failed: %s", __func__, ssh_err(r));
deraadt@openbsd.org6da413c2015-11-28 06:50:52 +00001323 }
Damien Miller4b42d7f2005-03-01 21:48:35 +11001324
djm@openbsd.org2b3c3c72015-01-18 21:51:19 +00001325 if (inplace)
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001326 fclose(ctx.out);
Damien Miller0a80ca12010-02-27 07:55:05 +11001327
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001328 if (ctx.invalid) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00001329 error("%s is not a valid known_hosts file.", identity_file);
djm@openbsd.org2b3c3c72015-01-18 21:51:19 +00001330 if (inplace) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00001331 error("Not replacing existing known_hosts "
1332 "file because of errors");
Damien Miller4b42d7f2005-03-01 21:48:35 +11001333 unlink(tmp);
1334 }
1335 exit(1);
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001336 } else if (delete_host && !ctx.found_key) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00001337 logit("Host %s not found in %s", name, identity_file);
djm@openbsd.orgc8376432015-08-19 23:17:51 +00001338 if (inplace)
1339 unlink(tmp);
djm@openbsd.org2b3c3c72015-01-18 21:51:19 +00001340 } else if (inplace) {
Damien Miller4b42d7f2005-03-01 21:48:35 +11001341 /* Backup existing file */
1342 if (unlink(old) == -1 && errno != ENOENT)
1343 fatal("unlink %.100s: %s", old, strerror(errno));
1344 if (link(identity_file, old) == -1)
1345 fatal("link %.100s to %.100s: %s", identity_file, old,
1346 strerror(errno));
1347 /* Move new one into place */
1348 if (rename(tmp, identity_file) == -1) {
1349 error("rename\"%s\" to \"%s\": %s", tmp, identity_file,
1350 strerror(errno));
1351 unlink(tmp);
1352 unlink(old);
1353 exit(1);
1354 }
1355
djm@openbsd.org3038a192015-04-17 13:19:22 +00001356 printf("%s updated.\n", identity_file);
1357 printf("Original contents retained as %s\n", old);
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001358 if (ctx.has_unhashed) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00001359 logit("WARNING: %s contains unhashed entries", old);
1360 logit("Delete this file to ensure privacy "
1361 "of hostnames");
Damien Miller4b42d7f2005-03-01 21:48:35 +11001362 }
1363 }
1364
djm@openbsd.orgcecb30b2015-01-18 21:49:42 +00001365 exit (find_host && !ctx.found_key);
Damien Miller4b42d7f2005-03-01 21:48:35 +11001366}
1367
Damien Miller95def091999-11-25 00:26:21 +11001368/*
1369 * Perform changing a passphrase. The argument is the passwd structure
1370 * for the current user.
1371 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001372static void
Damien Miller10f6f6b1999-11-17 17:29:08 +11001373do_change_passphrase(struct passwd *pw)
1374{
Damien Miller95def091999-11-25 00:26:21 +11001375 char *comment;
1376 char *old_passphrase, *passphrase1, *passphrase2;
1377 struct stat st;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001378 struct sshkey *private;
1379 int r;
Damien Miller10f6f6b1999-11-17 17:29:08 +11001380
Damien Miller95def091999-11-25 00:26:21 +11001381 if (!have_identity)
1382 ask_filename(pw, "Enter file in which the key is");
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +00001383 if (stat(identity_file, &st) == -1)
djm@openbsd.org3038a192015-04-17 13:19:22 +00001384 fatal("%s: %s", identity_file, strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +11001385 /* Try to load the file with empty passphrase. */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001386 r = sshkey_load_private(identity_file, "", &private, &comment);
1387 if (r == SSH_ERR_KEY_WRONG_PASSPHRASE) {
Damien Miller95def091999-11-25 00:26:21 +11001388 if (identity_passphrase)
1389 old_passphrase = xstrdup(identity_passphrase);
1390 else
Ben Lindstrom949974b2001-06-25 05:20:31 +00001391 old_passphrase =
1392 read_passphrase("Enter old passphrase: ",
1393 RP_ALLOW_STDIN);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001394 r = sshkey_load_private(identity_file, old_passphrase,
1395 &private, &comment);
Damien Millera5103f42014-02-04 11:20:14 +11001396 explicit_bzero(old_passphrase, strlen(old_passphrase));
Darren Tuckera627d422013-06-02 07:31:17 +10001397 free(old_passphrase);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001398 if (r != 0)
1399 goto badkey;
1400 } else if (r != 0) {
1401 badkey:
djm@openbsd.org3038a192015-04-17 13:19:22 +00001402 fatal("Failed to load key %s: %s", identity_file, ssh_err(r));
Damien Miller95def091999-11-25 00:26:21 +11001403 }
djm@openbsd.orgf43d1722015-02-26 20:45:47 +00001404 if (comment)
djm@openbsd.orga287c5a2017-02-10 03:36:40 +00001405 mprintf("Key has comment '%s'\n", comment);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001406
Damien Miller95def091999-11-25 00:26:21 +11001407 /* Ask the new passphrase (twice). */
1408 if (identity_new_passphrase) {
1409 passphrase1 = xstrdup(identity_new_passphrase);
1410 passphrase2 = NULL;
1411 } else {
1412 passphrase1 =
Ben Lindstrom949974b2001-06-25 05:20:31 +00001413 read_passphrase("Enter new passphrase (empty for no "
1414 "passphrase): ", RP_ALLOW_STDIN);
1415 passphrase2 = read_passphrase("Enter same passphrase again: ",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001416 RP_ALLOW_STDIN);
Damien Miller95def091999-11-25 00:26:21 +11001417
1418 /* Verify that they are the same. */
1419 if (strcmp(passphrase1, passphrase2) != 0) {
Damien Millera5103f42014-02-04 11:20:14 +11001420 explicit_bzero(passphrase1, strlen(passphrase1));
1421 explicit_bzero(passphrase2, strlen(passphrase2));
Darren Tuckera627d422013-06-02 07:31:17 +10001422 free(passphrase1);
1423 free(passphrase2);
Damien Miller95def091999-11-25 00:26:21 +11001424 printf("Pass phrases do not match. Try again.\n");
1425 exit(1);
1426 }
1427 /* Destroy the other copy. */
Damien Millera5103f42014-02-04 11:20:14 +11001428 explicit_bzero(passphrase2, strlen(passphrase2));
Darren Tuckera627d422013-06-02 07:31:17 +10001429 free(passphrase2);
Damien Miller95def091999-11-25 00:26:21 +11001430 }
1431
1432 /* Save the file using the new passphrase. */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001433 if ((r = sshkey_save_private(private, identity_file, passphrase1,
djm@openbsd.orgeb0d8e72019-07-15 13:16:29 +00001434 comment, private_key_format, openssh_format_cipher, rounds)) != 0) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00001435 error("Saving key \"%s\" failed: %s.",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001436 identity_file, ssh_err(r));
Damien Millera5103f42014-02-04 11:20:14 +11001437 explicit_bzero(passphrase1, strlen(passphrase1));
Darren Tuckera627d422013-06-02 07:31:17 +10001438 free(passphrase1);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001439 sshkey_free(private);
Darren Tuckera627d422013-06-02 07:31:17 +10001440 free(comment);
Damien Miller95def091999-11-25 00:26:21 +11001441 exit(1);
1442 }
1443 /* Destroy the passphrase and the copy of the key in memory. */
Damien Millera5103f42014-02-04 11:20:14 +11001444 explicit_bzero(passphrase1, strlen(passphrase1));
Darren Tuckera627d422013-06-02 07:31:17 +10001445 free(passphrase1);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001446 sshkey_free(private); /* Destroys contents */
Darren Tuckera627d422013-06-02 07:31:17 +10001447 free(comment);
Damien Miller95def091999-11-25 00:26:21 +11001448
1449 printf("Your identification has been saved with the new passphrase.\n");
1450 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001451}
1452
Damien Miller37876e92003-05-15 10:19:46 +10001453/*
1454 * Print the SSHFP RR.
1455 */
Damien Millercb314822006-03-26 13:48:01 +11001456static int
djm@openbsd.org851f8032019-01-23 04:16:22 +00001457do_print_resource_record(struct passwd *pw, char *fname, char *hname,
1458 int print_generic)
Damien Miller37876e92003-05-15 10:19:46 +10001459{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001460 struct sshkey *public;
Damien Miller37876e92003-05-15 10:19:46 +10001461 char *comment = NULL;
1462 struct stat st;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001463 int r;
Damien Miller37876e92003-05-15 10:19:46 +10001464
Damien Millercb314822006-03-26 13:48:01 +11001465 if (fname == NULL)
Damien Miller5bb88332013-07-18 16:13:37 +10001466 fatal("%s: no filename", __func__);
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +00001467 if (stat(fname, &st) == -1) {
Damien Millercb314822006-03-26 13:48:01 +11001468 if (errno == ENOENT)
1469 return 0;
djm@openbsd.org3038a192015-04-17 13:19:22 +00001470 fatal("%s: %s", fname, strerror(errno));
Damien Miller37876e92003-05-15 10:19:46 +10001471 }
djm@openbsd.org3038a192015-04-17 13:19:22 +00001472 if ((r = sshkey_load_public(fname, &public, &comment)) != 0)
1473 fatal("Failed to read v2 public key from \"%s\": %s.",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001474 fname, ssh_err(r));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001475 export_dns_rr(hname, public, stdout, print_generic);
1476 sshkey_free(public);
1477 free(comment);
1478 return 1;
Damien Miller37876e92003-05-15 10:19:46 +10001479}
Damien Miller37876e92003-05-15 10:19:46 +10001480
Damien Miller95def091999-11-25 00:26:21 +11001481/*
1482 * Change the comment of a private key file.
1483 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001484static void
djm@openbsd.org851f8032019-01-23 04:16:22 +00001485do_change_comment(struct passwd *pw, const char *identity_comment)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001486{
Ben Lindstrom5fc62702001-03-09 18:19:24 +00001487 char new_comment[1024], *comment, *passphrase;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001488 struct sshkey *private;
1489 struct sshkey *public;
Damien Miller95def091999-11-25 00:26:21 +11001490 struct stat st;
1491 FILE *f;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001492 int r, fd;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001493
Damien Miller95def091999-11-25 00:26:21 +11001494 if (!have_identity)
1495 ask_filename(pw, "Enter file in which the key is");
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +00001496 if (stat(identity_file, &st) == -1)
djm@openbsd.org3038a192015-04-17 13:19:22 +00001497 fatal("%s: %s", identity_file, strerror(errno));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001498 if ((r = sshkey_load_private(identity_file, "",
1499 &private, &comment)) == 0)
1500 passphrase = xstrdup("");
djm@openbsd.org3038a192015-04-17 13:19:22 +00001501 else if (r != SSH_ERR_KEY_WRONG_PASSPHRASE)
1502 fatal("Cannot load private key \"%s\": %s.",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001503 identity_file, ssh_err(r));
djm@openbsd.org3038a192015-04-17 13:19:22 +00001504 else {
Damien Miller95def091999-11-25 00:26:21 +11001505 if (identity_passphrase)
1506 passphrase = xstrdup(identity_passphrase);
1507 else if (identity_new_passphrase)
1508 passphrase = xstrdup(identity_new_passphrase);
1509 else
Ben Lindstrom949974b2001-06-25 05:20:31 +00001510 passphrase = read_passphrase("Enter passphrase: ",
1511 RP_ALLOW_STDIN);
Damien Miller95def091999-11-25 00:26:21 +11001512 /* Try to load using the passphrase. */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001513 if ((r = sshkey_load_private(identity_file, passphrase,
1514 &private, &comment)) != 0) {
Damien Millera5103f42014-02-04 11:20:14 +11001515 explicit_bzero(passphrase, strlen(passphrase));
Darren Tuckera627d422013-06-02 07:31:17 +10001516 free(passphrase);
djm@openbsd.org3038a192015-04-17 13:19:22 +00001517 fatal("Cannot load private key \"%s\": %s.",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001518 identity_file, ssh_err(r));
Damien Miller95def091999-11-25 00:26:21 +11001519 }
1520 }
halex@openbsd.org4d906252015-11-20 23:04:01 +00001521
markus@openbsd.org1b11ea72018-02-23 15:58:37 +00001522 if (private->type != KEY_ED25519 && private->type != KEY_XMSS &&
djm@openbsd.orgeb0d8e72019-07-15 13:16:29 +00001523 private_key_format != SSHKEY_PRIVATE_OPENSSH) {
djm@openbsd.org873d3e72017-04-30 23:18:44 +00001524 error("Comments are only supported for keys stored in "
halex@openbsd.org4d906252015-11-20 23:04:01 +00001525 "the new format (-o).");
tobias@openbsd.org704d8c82015-03-31 11:06:49 +00001526 explicit_bzero(passphrase, strlen(passphrase));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001527 sshkey_free(private);
Ben Lindstromd0fca422001-03-26 13:44:06 +00001528 exit(1);
Damien Miller9f0f5c62001-12-21 14:45:46 +11001529 }
millert@openbsd.orge40269b2017-02-08 20:32:43 +00001530 if (comment)
lum@openbsd.org410b2312019-05-29 08:30:26 +00001531 printf("Old comment: %s\n", comment);
millert@openbsd.orge40269b2017-02-08 20:32:43 +00001532 else
lum@openbsd.org410b2312019-05-29 08:30:26 +00001533 printf("No existing comment\n");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001534
Damien Miller95def091999-11-25 00:26:21 +11001535 if (identity_comment) {
1536 strlcpy(new_comment, identity_comment, sizeof(new_comment));
1537 } else {
lum@openbsd.org410b2312019-05-29 08:30:26 +00001538 printf("New comment: ");
Damien Miller95def091999-11-25 00:26:21 +11001539 fflush(stdout);
1540 if (!fgets(new_comment, sizeof(new_comment), stdin)) {
Damien Millera5103f42014-02-04 11:20:14 +11001541 explicit_bzero(passphrase, strlen(passphrase));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001542 sshkey_free(private);
Damien Miller95def091999-11-25 00:26:21 +11001543 exit(1);
1544 }
Damien Miller14b017d2007-09-17 16:09:15 +10001545 new_comment[strcspn(new_comment, "\n")] = '\0';
Damien Miller95def091999-11-25 00:26:21 +11001546 }
lum@openbsd.org410b2312019-05-29 08:30:26 +00001547 if (comment != NULL && strcmp(comment, new_comment) == 0) {
1548 printf("No change to comment\n");
1549 free(passphrase);
1550 sshkey_free(private);
1551 free(comment);
1552 exit(0);
1553 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001554
Damien Miller95def091999-11-25 00:26:21 +11001555 /* Save the file using the new passphrase. */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001556 if ((r = sshkey_save_private(private, identity_file, passphrase,
djm@openbsd.orgeb0d8e72019-07-15 13:16:29 +00001557 new_comment, private_key_format, openssh_format_cipher,
1558 rounds)) != 0) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00001559 error("Saving key \"%s\" failed: %s",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001560 identity_file, ssh_err(r));
Damien Millera5103f42014-02-04 11:20:14 +11001561 explicit_bzero(passphrase, strlen(passphrase));
Darren Tuckera627d422013-06-02 07:31:17 +10001562 free(passphrase);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001563 sshkey_free(private);
Darren Tuckera627d422013-06-02 07:31:17 +10001564 free(comment);
Damien Miller95def091999-11-25 00:26:21 +11001565 exit(1);
1566 }
Damien Millera5103f42014-02-04 11:20:14 +11001567 explicit_bzero(passphrase, strlen(passphrase));
Darren Tuckera627d422013-06-02 07:31:17 +10001568 free(passphrase);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001569 if ((r = sshkey_from_private(private, &public)) != 0)
markus@openbsd.org7da5df12017-05-30 14:16:41 +00001570 fatal("sshkey_from_private failed: %s", ssh_err(r));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001571 sshkey_free(private);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001572
Damien Miller95def091999-11-25 00:26:21 +11001573 strlcat(identity_file, ".pub", sizeof(identity_file));
Ben Lindstrom5fc62702001-03-09 18:19:24 +00001574 fd = open(identity_file, O_WRONLY | O_CREAT | O_TRUNC, 0644);
djm@openbsd.org3038a192015-04-17 13:19:22 +00001575 if (fd == -1)
1576 fatal("Could not save your public key in %s", identity_file);
Ben Lindstrom5fc62702001-03-09 18:19:24 +00001577 f = fdopen(fd, "w");
djm@openbsd.org3038a192015-04-17 13:19:22 +00001578 if (f == NULL)
1579 fatal("fdopen %s failed: %s", identity_file, strerror(errno));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001580 if ((r = sshkey_write(public, f)) != 0)
djm@openbsd.org3038a192015-04-17 13:19:22 +00001581 fatal("write key failed: %s", ssh_err(r));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001582 sshkey_free(public);
Damien Millereba71ba2000-04-29 23:57:08 +10001583 fprintf(f, " %s\n", new_comment);
Damien Miller95def091999-11-25 00:26:21 +11001584 fclose(f);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001585
Darren Tuckera627d422013-06-02 07:31:17 +10001586 free(comment);
Damien Miller95def091999-11-25 00:26:21 +11001587
lum@openbsd.org410b2312019-05-29 08:30:26 +00001588 if (strlen(new_comment) > 0)
1589 printf("Comment '%s' applied\n", new_comment);
1590 else
1591 printf("Comment removed\n");
1592
Damien Miller95def091999-11-25 00:26:21 +11001593 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001594}
1595
Damien Miller0a80ca12010-02-27 07:55:05 +11001596static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001597add_flag_option(struct sshbuf *c, const char *name)
Damien Miller0a80ca12010-02-27 07:55:05 +11001598{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001599 int r;
1600
Damien Miller0a80ca12010-02-27 07:55:05 +11001601 debug3("%s: %s", __func__, name);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001602 if ((r = sshbuf_put_cstring(c, name)) != 0 ||
1603 (r = sshbuf_put_string(c, NULL, 0)) != 0)
1604 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Miller0a80ca12010-02-27 07:55:05 +11001605}
1606
1607static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001608add_string_option(struct sshbuf *c, const char *name, const char *value)
Damien Miller0a80ca12010-02-27 07:55:05 +11001609{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001610 struct sshbuf *b;
1611 int r;
Damien Miller0a80ca12010-02-27 07:55:05 +11001612
1613 debug3("%s: %s=%s", __func__, name, value);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001614 if ((b = sshbuf_new()) == NULL)
1615 fatal("%s: sshbuf_new failed", __func__);
1616 if ((r = sshbuf_put_cstring(b, value)) != 0 ||
1617 (r = sshbuf_put_cstring(c, name)) != 0 ||
1618 (r = sshbuf_put_stringb(c, b)) != 0)
1619 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Miller0a80ca12010-02-27 07:55:05 +11001620
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001621 sshbuf_free(b);
Damien Miller0a80ca12010-02-27 07:55:05 +11001622}
1623
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001624#define OPTIONS_CRITICAL 1
1625#define OPTIONS_EXTENSIONS 2
Damien Miller0a80ca12010-02-27 07:55:05 +11001626static void
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001627prepare_options_buf(struct sshbuf *c, int which)
Damien Miller0a80ca12010-02-27 07:55:05 +11001628{
djm@openbsd.org249516e2017-04-29 04:12:25 +00001629 size_t i;
1630
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001631 sshbuf_reset(c);
Damien Miller1da63882010-08-05 13:03:51 +10001632 if ((which & OPTIONS_CRITICAL) != 0 &&
1633 certflags_command != NULL)
1634 add_string_option(c, "force-command", certflags_command);
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001635 if ((which & OPTIONS_EXTENSIONS) != 0 &&
Damien Miller2ce12ef2011-05-05 14:17:18 +10001636 (certflags_flags & CERTOPT_X_FWD) != 0)
1637 add_flag_option(c, "permit-X11-forwarding");
1638 if ((which & OPTIONS_EXTENSIONS) != 0 &&
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001639 (certflags_flags & CERTOPT_AGENT_FWD) != 0)
Damien Miller4e270b02010-04-16 15:56:21 +10001640 add_flag_option(c, "permit-agent-forwarding");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001641 if ((which & OPTIONS_EXTENSIONS) != 0 &&
1642 (certflags_flags & CERTOPT_PORT_FWD) != 0)
Damien Miller4e270b02010-04-16 15:56:21 +10001643 add_flag_option(c, "permit-port-forwarding");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001644 if ((which & OPTIONS_EXTENSIONS) != 0 &&
1645 (certflags_flags & CERTOPT_PTY) != 0)
Damien Miller4e270b02010-04-16 15:56:21 +10001646 add_flag_option(c, "permit-pty");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001647 if ((which & OPTIONS_EXTENSIONS) != 0 &&
1648 (certflags_flags & CERTOPT_USER_RC) != 0)
Damien Miller4e270b02010-04-16 15:56:21 +10001649 add_flag_option(c, "permit-user-rc");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001650 if ((which & OPTIONS_CRITICAL) != 0 &&
1651 certflags_src_addr != NULL)
1652 add_string_option(c, "source-address", certflags_src_addr);
djm@openbsd.org249516e2017-04-29 04:12:25 +00001653 for (i = 0; i < ncert_userext; i++) {
1654 if ((cert_userext[i].crit && (which & OPTIONS_EXTENSIONS)) ||
1655 (!cert_userext[i].crit && (which & OPTIONS_CRITICAL)))
1656 continue;
1657 if (cert_userext[i].val == NULL)
1658 add_flag_option(c, cert_userext[i].key);
1659 else {
1660 add_string_option(c, cert_userext[i].key,
1661 cert_userext[i].val);
1662 }
1663 }
Damien Miller0a80ca12010-02-27 07:55:05 +11001664}
1665
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001666static struct sshkey *
Damien Miller757f34e2010-08-05 13:05:31 +10001667load_pkcs11_key(char *path)
1668{
1669#ifdef ENABLE_PKCS11
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001670 struct sshkey **keys = NULL, *public, *private = NULL;
1671 int r, i, nkeys;
Damien Miller757f34e2010-08-05 13:05:31 +10001672
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001673 if ((r = sshkey_load_public(path, &public, NULL)) != 0)
1674 fatal("Couldn't load CA public key \"%s\": %s",
1675 path, ssh_err(r));
Damien Miller757f34e2010-08-05 13:05:31 +10001676
1677 nkeys = pkcs11_add_provider(pkcs11provider, identity_passphrase, &keys);
1678 debug3("%s: %d keys", __func__, nkeys);
1679 if (nkeys <= 0)
1680 fatal("cannot read public key from pkcs11");
1681 for (i = 0; i < nkeys; i++) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001682 if (sshkey_equal_public(public, keys[i])) {
Damien Miller757f34e2010-08-05 13:05:31 +10001683 private = keys[i];
1684 continue;
1685 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001686 sshkey_free(keys[i]);
Damien Miller757f34e2010-08-05 13:05:31 +10001687 }
Darren Tuckera627d422013-06-02 07:31:17 +10001688 free(keys);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001689 sshkey_free(public);
Damien Miller757f34e2010-08-05 13:05:31 +10001690 return private;
1691#else
1692 fatal("no pkcs11 support");
1693#endif /* ENABLE_PKCS11 */
1694}
1695
djm@openbsd.orga98339e2017-06-28 01:09:22 +00001696/* Signer for sshkey_certify_custom that uses the agent */
1697static int
djm@openbsd.org4f7a56d2019-06-21 04:21:04 +00001698agent_signer(struct sshkey *key, u_char **sigp, size_t *lenp,
djm@openbsd.orga98339e2017-06-28 01:09:22 +00001699 const u_char *data, size_t datalen,
1700 const char *alg, u_int compat, void *ctx)
1701{
1702 int *agent_fdp = (int *)ctx;
1703
1704 return ssh_agent_sign(*agent_fdp, key, sigp, lenp,
1705 data, datalen, alg, compat);
1706}
1707
Damien Miller0a80ca12010-02-27 07:55:05 +11001708static void
djm@openbsd.org851f8032019-01-23 04:16:22 +00001709do_ca_sign(struct passwd *pw, const char *ca_key_path, int prefer_agent,
djm@openbsd.orgbe063942019-01-23 04:51:02 +00001710 unsigned long long cert_serial, int cert_serial_autoinc,
1711 int argc, char **argv)
Damien Miller0a80ca12010-02-27 07:55:05 +11001712{
djm@openbsd.orga98339e2017-06-28 01:09:22 +00001713 int r, i, fd, found, agent_fd = -1;
Damien Miller0a80ca12010-02-27 07:55:05 +11001714 u_int n;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001715 struct sshkey *ca, *public;
djm@openbsd.org499cf362015-11-19 01:08:55 +00001716 char valid[64], *otmp, *tmp, *cp, *out, *comment, **plist = NULL;
Damien Miller0a80ca12010-02-27 07:55:05 +11001717 FILE *f;
djm@openbsd.orga98339e2017-06-28 01:09:22 +00001718 struct ssh_identitylist *agent_ids;
1719 size_t j;
Damien Miller4e270b02010-04-16 15:56:21 +10001720
Damien Miller1f0311c2014-05-15 14:24:09 +10001721#ifdef ENABLE_PKCS11
Damien Miller757f34e2010-08-05 13:05:31 +10001722 pkcs11_init(1);
Damien Miller1f0311c2014-05-15 14:24:09 +10001723#endif
Damien Miller757f34e2010-08-05 13:05:31 +10001724 tmp = tilde_expand_filename(ca_key_path, pw->pw_uid);
1725 if (pkcs11provider != NULL) {
djm@openbsd.orga98339e2017-06-28 01:09:22 +00001726 /* If a PKCS#11 token was specified then try to use it */
Damien Miller757f34e2010-08-05 13:05:31 +10001727 if ((ca = load_pkcs11_key(tmp)) == NULL)
1728 fatal("No PKCS#11 key matching %s found", ca_key_path);
djm@openbsd.orga98339e2017-06-28 01:09:22 +00001729 } else if (prefer_agent) {
1730 /*
1731 * Agent signature requested. Try to use agent after making
1732 * sure the public key specified is actually present in the
1733 * agent.
1734 */
1735 if ((r = sshkey_load_public(tmp, &ca, NULL)) != 0)
1736 fatal("Cannot load CA public key %s: %s",
1737 tmp, ssh_err(r));
1738 if ((r = ssh_get_authentication_socket(&agent_fd)) != 0)
1739 fatal("Cannot use public key for CA signature: %s",
1740 ssh_err(r));
1741 if ((r = ssh_fetch_identitylist(agent_fd, &agent_ids)) != 0)
1742 fatal("Retrieve agent key list: %s", ssh_err(r));
1743 found = 0;
1744 for (j = 0; j < agent_ids->nkeys; j++) {
1745 if (sshkey_equal(ca, agent_ids->keys[j])) {
1746 found = 1;
1747 break;
1748 }
1749 }
1750 if (!found)
1751 fatal("CA key %s not found in agent", tmp);
1752 ssh_free_identitylist(agent_ids);
1753 ca->flags |= SSHKEY_FLAG_EXT;
1754 } else {
1755 /* CA key is assumed to be a private key on the filesystem */
djm@openbsd.org07133222019-09-01 23:47:32 +00001756 ca = load_identity(tmp, NULL);
djm@openbsd.orga98339e2017-06-28 01:09:22 +00001757 }
Darren Tuckera627d422013-06-02 07:31:17 +10001758 free(tmp);
Damien Miller757f34e2010-08-05 13:05:31 +10001759
djm@openbsd.org57464e32016-05-02 09:36:42 +00001760 if (key_type_name != NULL &&
1761 sshkey_type_from_name(key_type_name) != ca->type) {
1762 fatal("CA key type %s doesn't match specified %s",
1763 sshkey_ssh_name(ca), key_type_name);
1764 }
1765
Damien Miller0a80ca12010-02-27 07:55:05 +11001766 for (i = 0; i < argc; i++) {
1767 /* Split list of principals */
1768 n = 0;
1769 if (cert_principals != NULL) {
1770 otmp = tmp = xstrdup(cert_principals);
1771 plist = NULL;
1772 for (; (cp = strsep(&tmp, ",")) != NULL; n++) {
deraadt@openbsd.org657a5fb2015-04-24 01:36:00 +00001773 plist = xreallocarray(plist, n + 1, sizeof(*plist));
Damien Miller0a80ca12010-02-27 07:55:05 +11001774 if (*(plist[n] = xstrdup(cp)) == '\0')
1775 fatal("Empty principal name");
1776 }
Darren Tuckera627d422013-06-02 07:31:17 +10001777 free(otmp);
Damien Miller0a80ca12010-02-27 07:55:05 +11001778 }
djm@openbsd.orgca613242018-02-10 05:48:46 +00001779 if (n > SSHKEY_CERT_MAX_PRINCIPALS)
1780 fatal("Too many certificate principals specified");
djm@openbsd.org16dd8b22019-07-16 13:18:39 +00001781
Damien Miller0a80ca12010-02-27 07:55:05 +11001782 tmp = tilde_expand_filename(argv[i], pw->pw_uid);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001783 if ((r = sshkey_load_public(tmp, &public, &comment)) != 0)
1784 fatal("%s: unable to open \"%s\": %s",
1785 __func__, tmp, ssh_err(r));
Damien Millereb8b60e2010-08-31 22:41:14 +10001786 if (public->type != KEY_RSA && public->type != KEY_DSA &&
markus@openbsd.org1b11ea72018-02-23 15:58:37 +00001787 public->type != KEY_ECDSA && public->type != KEY_ED25519 &&
1788 public->type != KEY_XMSS)
Damien Miller0a80ca12010-02-27 07:55:05 +11001789 fatal("%s: key \"%s\" type %s cannot be certified",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001790 __func__, tmp, sshkey_type(public));
Damien Miller0a80ca12010-02-27 07:55:05 +11001791
1792 /* Prepare certificate to sign */
djm@openbsd.orgc28fc622015-07-03 03:43:18 +00001793 if ((r = sshkey_to_certified(public)) != 0)
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001794 fatal("Could not upgrade key %s to certificate: %s",
1795 tmp, ssh_err(r));
Damien Miller0a80ca12010-02-27 07:55:05 +11001796 public->cert->type = cert_key_type;
Damien Miller4e270b02010-04-16 15:56:21 +10001797 public->cert->serial = (u_int64_t)cert_serial;
Damien Miller0a80ca12010-02-27 07:55:05 +11001798 public->cert->key_id = xstrdup(cert_key_id);
1799 public->cert->nprincipals = n;
1800 public->cert->principals = plist;
1801 public->cert->valid_after = cert_valid_from;
1802 public->cert->valid_before = cert_valid_to;
djm@openbsd.orgc28fc622015-07-03 03:43:18 +00001803 prepare_options_buf(public->cert->critical, OPTIONS_CRITICAL);
1804 prepare_options_buf(public->cert->extensions,
1805 OPTIONS_EXTENSIONS);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001806 if ((r = sshkey_from_private(ca,
1807 &public->cert->signature_key)) != 0)
markus@openbsd.org7da5df12017-05-30 14:16:41 +00001808 fatal("sshkey_from_private (ca key): %s", ssh_err(r));
Damien Miller0a80ca12010-02-27 07:55:05 +11001809
djm@openbsd.orga98339e2017-06-28 01:09:22 +00001810 if (agent_fd != -1 && (ca->flags & SSHKEY_FLAG_EXT) != 0) {
1811 if ((r = sshkey_certify_custom(public, ca,
1812 key_type_name, agent_signer, &agent_fd)) != 0)
1813 fatal("Couldn't certify key %s via agent: %s",
1814 tmp, ssh_err(r));
1815 } else {
1816 if ((sshkey_certify(public, ca, key_type_name)) != 0)
1817 fatal("Couldn't certify key %s: %s",
1818 tmp, ssh_err(r));
1819 }
Damien Miller0a80ca12010-02-27 07:55:05 +11001820
1821 if ((cp = strrchr(tmp, '.')) != NULL && strcmp(cp, ".pub") == 0)
1822 *cp = '\0';
1823 xasprintf(&out, "%s-cert.pub", tmp);
Darren Tuckera627d422013-06-02 07:31:17 +10001824 free(tmp);
Damien Miller0a80ca12010-02-27 07:55:05 +11001825
1826 if ((fd = open(out, O_WRONLY|O_CREAT|O_TRUNC, 0644)) == -1)
1827 fatal("Could not open \"%s\" for writing: %s", out,
1828 strerror(errno));
1829 if ((f = fdopen(fd, "w")) == NULL)
1830 fatal("%s: fdopen: %s", __func__, strerror(errno));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001831 if ((r = sshkey_write(public, f)) != 0)
1832 fatal("Could not write certified key to %s: %s",
1833 out, ssh_err(r));
Damien Miller0a80ca12010-02-27 07:55:05 +11001834 fprintf(f, " %s\n", comment);
1835 fclose(f);
1836
Damien Miller4e270b02010-04-16 15:56:21 +10001837 if (!quiet) {
djm@openbsd.org964ab3e2015-11-19 01:12:32 +00001838 sshkey_format_cert_validity(public->cert,
djm@openbsd.org499cf362015-11-19 01:08:55 +00001839 valid, sizeof(valid));
Damien Miller4e270b02010-04-16 15:56:21 +10001840 logit("Signed %s key %s: id \"%s\" serial %llu%s%s "
djm@openbsd.org964ab3e2015-11-19 01:12:32 +00001841 "valid %s", sshkey_cert_type(public),
Damien Miller821de0a2011-01-11 17:20:29 +11001842 out, public->cert->key_id,
1843 (unsigned long long)public->cert->serial,
Damien Miller0a80ca12010-02-27 07:55:05 +11001844 cert_principals != NULL ? " for " : "",
1845 cert_principals != NULL ? cert_principals : "",
djm@openbsd.org499cf362015-11-19 01:08:55 +00001846 valid);
Damien Miller4e270b02010-04-16 15:56:21 +10001847 }
Damien Miller0a80ca12010-02-27 07:55:05 +11001848
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001849 sshkey_free(public);
Darren Tuckera627d422013-06-02 07:31:17 +10001850 free(out);
djm@openbsd.orgbe063942019-01-23 04:51:02 +00001851 if (cert_serial_autoinc)
1852 cert_serial++;
Damien Miller0a80ca12010-02-27 07:55:05 +11001853 }
Damien Miller1f0311c2014-05-15 14:24:09 +10001854#ifdef ENABLE_PKCS11
Damien Miller757f34e2010-08-05 13:05:31 +10001855 pkcs11_terminate();
Damien Miller1f0311c2014-05-15 14:24:09 +10001856#endif
Damien Miller0a80ca12010-02-27 07:55:05 +11001857 exit(0);
1858}
1859
1860static u_int64_t
1861parse_relative_time(const char *s, time_t now)
1862{
1863 int64_t mul, secs;
1864
1865 mul = *s == '-' ? -1 : 1;
1866
1867 if ((secs = convtime(s + 1)) == -1)
1868 fatal("Invalid relative certificate time %s", s);
1869 if (mul == -1 && secs > now)
1870 fatal("Certificate time %s cannot be represented", s);
1871 return now + (u_int64_t)(secs * mul);
1872}
1873
Damien Miller0a80ca12010-02-27 07:55:05 +11001874static void
1875parse_cert_times(char *timespec)
1876{
1877 char *from, *to;
1878 time_t now = time(NULL);
1879 int64_t secs;
1880
1881 /* +timespec relative to now */
1882 if (*timespec == '+' && strchr(timespec, ':') == NULL) {
1883 if ((secs = convtime(timespec + 1)) == -1)
1884 fatal("Invalid relative certificate life %s", timespec);
1885 cert_valid_to = now + secs;
1886 /*
1887 * Backdate certificate one minute to avoid problems on hosts
1888 * with poorly-synchronised clocks.
1889 */
1890 cert_valid_from = ((now - 59)/ 60) * 60;
1891 return;
1892 }
1893
1894 /*
1895 * from:to, where
djm@openbsd.org@openbsd.orgd52131a2017-11-03 05:14:04 +00001896 * from := [+-]timespec | YYYYMMDD | YYYYMMDDHHMMSS | "always"
1897 * to := [+-]timespec | YYYYMMDD | YYYYMMDDHHMMSS | "forever"
Damien Miller0a80ca12010-02-27 07:55:05 +11001898 */
1899 from = xstrdup(timespec);
1900 to = strchr(from, ':');
1901 if (to == NULL || from == to || *(to + 1) == '\0')
Damien Miller910f2092010-03-04 14:17:22 +11001902 fatal("Invalid certificate life specification %s", timespec);
Damien Miller0a80ca12010-02-27 07:55:05 +11001903 *to++ = '\0';
1904
1905 if (*from == '-' || *from == '+')
1906 cert_valid_from = parse_relative_time(from, now);
djm@openbsd.org@openbsd.orgd52131a2017-11-03 05:14:04 +00001907 else if (strcmp(from, "always") == 0)
1908 cert_valid_from = 0;
djm@openbsd.orgbf0fbf22018-03-12 00:52:01 +00001909 else if (parse_absolute_time(from, &cert_valid_from) != 0)
1910 fatal("Invalid from time \"%s\"", from);
Damien Miller0a80ca12010-02-27 07:55:05 +11001911
1912 if (*to == '-' || *to == '+')
Damien Miller5b01b0d2013-10-23 16:31:31 +11001913 cert_valid_to = parse_relative_time(to, now);
djm@openbsd.org@openbsd.orgd52131a2017-11-03 05:14:04 +00001914 else if (strcmp(to, "forever") == 0)
1915 cert_valid_to = ~(u_int64_t)0;
djm@openbsd.orgbf0fbf22018-03-12 00:52:01 +00001916 else if (parse_absolute_time(to, &cert_valid_to) != 0)
1917 fatal("Invalid to time \"%s\"", to);
Damien Miller0a80ca12010-02-27 07:55:05 +11001918
1919 if (cert_valid_to <= cert_valid_from)
1920 fatal("Empty certificate validity interval");
Darren Tuckera627d422013-06-02 07:31:17 +10001921 free(from);
Damien Miller0a80ca12010-02-27 07:55:05 +11001922}
1923
1924static void
Damien Miller4e270b02010-04-16 15:56:21 +10001925add_cert_option(char *opt)
Damien Miller0a80ca12010-02-27 07:55:05 +11001926{
djm@openbsd.org249516e2017-04-29 04:12:25 +00001927 char *val, *cp;
1928 int iscrit = 0;
Damien Miller0a80ca12010-02-27 07:55:05 +11001929
Damien Miller044f4a62011-05-05 14:14:08 +10001930 if (strcasecmp(opt, "clear") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001931 certflags_flags = 0;
Damien Miller0a80ca12010-02-27 07:55:05 +11001932 else if (strcasecmp(opt, "no-x11-forwarding") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001933 certflags_flags &= ~CERTOPT_X_FWD;
Damien Miller0a80ca12010-02-27 07:55:05 +11001934 else if (strcasecmp(opt, "permit-x11-forwarding") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001935 certflags_flags |= CERTOPT_X_FWD;
Damien Miller0a80ca12010-02-27 07:55:05 +11001936 else if (strcasecmp(opt, "no-agent-forwarding") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001937 certflags_flags &= ~CERTOPT_AGENT_FWD;
Damien Miller0a80ca12010-02-27 07:55:05 +11001938 else if (strcasecmp(opt, "permit-agent-forwarding") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001939 certflags_flags |= CERTOPT_AGENT_FWD;
Damien Miller0a80ca12010-02-27 07:55:05 +11001940 else if (strcasecmp(opt, "no-port-forwarding") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001941 certflags_flags &= ~CERTOPT_PORT_FWD;
Damien Miller0a80ca12010-02-27 07:55:05 +11001942 else if (strcasecmp(opt, "permit-port-forwarding") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001943 certflags_flags |= CERTOPT_PORT_FWD;
Damien Miller0a80ca12010-02-27 07:55:05 +11001944 else if (strcasecmp(opt, "no-pty") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001945 certflags_flags &= ~CERTOPT_PTY;
Damien Miller0a80ca12010-02-27 07:55:05 +11001946 else if (strcasecmp(opt, "permit-pty") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001947 certflags_flags |= CERTOPT_PTY;
Damien Miller0a80ca12010-02-27 07:55:05 +11001948 else if (strcasecmp(opt, "no-user-rc") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001949 certflags_flags &= ~CERTOPT_USER_RC;
Damien Miller0a80ca12010-02-27 07:55:05 +11001950 else if (strcasecmp(opt, "permit-user-rc") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001951 certflags_flags |= CERTOPT_USER_RC;
Damien Miller0a80ca12010-02-27 07:55:05 +11001952 else if (strncasecmp(opt, "force-command=", 14) == 0) {
1953 val = opt + 14;
1954 if (*val == '\0')
Damien Miller4e270b02010-04-16 15:56:21 +10001955 fatal("Empty force-command option");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001956 if (certflags_command != NULL)
Damien Miller0a80ca12010-02-27 07:55:05 +11001957 fatal("force-command already specified");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001958 certflags_command = xstrdup(val);
Damien Miller0a80ca12010-02-27 07:55:05 +11001959 } else if (strncasecmp(opt, "source-address=", 15) == 0) {
1960 val = opt + 15;
1961 if (*val == '\0')
Damien Miller4e270b02010-04-16 15:56:21 +10001962 fatal("Empty source-address option");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001963 if (certflags_src_addr != NULL)
Damien Miller0a80ca12010-02-27 07:55:05 +11001964 fatal("source-address already specified");
1965 if (addr_match_cidr_list(NULL, val) != 0)
1966 fatal("Invalid source-address list");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001967 certflags_src_addr = xstrdup(val);
djm@openbsd.org249516e2017-04-29 04:12:25 +00001968 } else if (strncasecmp(opt, "extension:", 10) == 0 ||
1969 (iscrit = (strncasecmp(opt, "critical:", 9) == 0))) {
1970 val = xstrdup(strchr(opt, ':') + 1);
1971 if ((cp = strchr(val, '=')) != NULL)
1972 *cp++ = '\0';
1973 cert_userext = xreallocarray(cert_userext, ncert_userext + 1,
1974 sizeof(*cert_userext));
1975 cert_userext[ncert_userext].key = val;
1976 cert_userext[ncert_userext].val = cp == NULL ?
1977 NULL : xstrdup(cp);
1978 cert_userext[ncert_userext].crit = iscrit;
1979 ncert_userext++;
Damien Miller0a80ca12010-02-27 07:55:05 +11001980 } else
Damien Miller4e270b02010-04-16 15:56:21 +10001981 fatal("Unsupported certificate option \"%s\"", opt);
Damien Miller0a80ca12010-02-27 07:55:05 +11001982}
1983
Ben Lindstrombba81212001-06-25 05:01:22 +00001984static void
djm@openbsd.orgc28fc622015-07-03 03:43:18 +00001985show_options(struct sshbuf *optbuf, int in_critical)
Damien Millerd834d352010-06-26 09:48:02 +10001986{
Damien Miller633de332014-05-15 13:48:26 +10001987 char *name, *arg;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001988 struct sshbuf *options, *option = NULL;
1989 int r;
Damien Millerd834d352010-06-26 09:48:02 +10001990
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00001991 if ((options = sshbuf_fromb(optbuf)) == NULL)
1992 fatal("%s: sshbuf_fromb failed", __func__);
1993 while (sshbuf_len(options) != 0) {
1994 sshbuf_free(option);
1995 option = NULL;
1996 if ((r = sshbuf_get_cstring(options, &name, NULL)) != 0 ||
1997 (r = sshbuf_froms(options, &option)) != 0)
1998 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Millerd834d352010-06-26 09:48:02 +10001999 printf(" %s", name);
djm@openbsd.orgc28fc622015-07-03 03:43:18 +00002000 if (!in_critical &&
Damien Millerd834d352010-06-26 09:48:02 +10002001 (strcmp(name, "permit-X11-forwarding") == 0 ||
2002 strcmp(name, "permit-agent-forwarding") == 0 ||
2003 strcmp(name, "permit-port-forwarding") == 0 ||
2004 strcmp(name, "permit-pty") == 0 ||
2005 strcmp(name, "permit-user-rc") == 0))
2006 printf("\n");
djm@openbsd.orgc28fc622015-07-03 03:43:18 +00002007 else if (in_critical &&
Damien Millerd834d352010-06-26 09:48:02 +10002008 (strcmp(name, "force-command") == 0 ||
2009 strcmp(name, "source-address") == 0)) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002010 if ((r = sshbuf_get_cstring(option, &arg, NULL)) != 0)
2011 fatal("%s: buffer error: %s",
2012 __func__, ssh_err(r));
Damien Miller633de332014-05-15 13:48:26 +10002013 printf(" %s\n", arg);
2014 free(arg);
Damien Millerd834d352010-06-26 09:48:02 +10002015 } else {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002016 printf(" UNKNOWN OPTION (len %zu)\n",
2017 sshbuf_len(option));
2018 sshbuf_reset(option);
Damien Millerd834d352010-06-26 09:48:02 +10002019 }
Darren Tuckera627d422013-06-02 07:31:17 +10002020 free(name);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002021 if (sshbuf_len(option) != 0)
Damien Millerd834d352010-06-26 09:48:02 +10002022 fatal("Option corrupt: extra data at end");
2023 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002024 sshbuf_free(option);
2025 sshbuf_free(options);
Damien Millerd834d352010-06-26 09:48:02 +10002026}
2027
2028static void
djm@openbsd.org94bc0b72015-11-13 04:34:15 +00002029print_cert(struct sshkey *key)
Damien Millerf2b70ca2010-03-05 07:39:35 +11002030{
djm@openbsd.org499cf362015-11-19 01:08:55 +00002031 char valid[64], *key_fp, *ca_fp;
djm@openbsd.orgc28fc622015-07-03 03:43:18 +00002032 u_int i;
Damien Miller4e270b02010-04-16 15:56:21 +10002033
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002034 key_fp = sshkey_fingerprint(key, fingerprint_hash, SSH_FP_DEFAULT);
2035 ca_fp = sshkey_fingerprint(key->cert->signature_key,
djm@openbsd.org56d1c832014-12-21 22:27:55 +00002036 fingerprint_hash, SSH_FP_DEFAULT);
djm@openbsd.org9ce86c92015-01-28 22:36:00 +00002037 if (key_fp == NULL || ca_fp == NULL)
2038 fatal("%s: sshkey_fingerprint fail", __func__);
djm@openbsd.org499cf362015-11-19 01:08:55 +00002039 sshkey_format_cert_validity(key->cert, valid, sizeof(valid));
Damien Millerf2b70ca2010-03-05 07:39:35 +11002040
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002041 printf(" Type: %s %s certificate\n", sshkey_ssh_name(key),
2042 sshkey_cert_type(key));
2043 printf(" Public key: %s %s\n", sshkey_type(key), key_fp);
djm@openbsd.orga4fc2532018-10-19 03:12:42 +00002044 printf(" Signing CA: %s %s (using %s)\n",
2045 sshkey_type(key->cert->signature_key), ca_fp,
2046 key->cert->signature_type);
Damien Miller4e270b02010-04-16 15:56:21 +10002047 printf(" Key ID: \"%s\"\n", key->cert->key_id);
djm@openbsd.orgc28fc622015-07-03 03:43:18 +00002048 printf(" Serial: %llu\n", (unsigned long long)key->cert->serial);
djm@openbsd.org499cf362015-11-19 01:08:55 +00002049 printf(" Valid: %s\n", valid);
Damien Millerf2b70ca2010-03-05 07:39:35 +11002050 printf(" Principals: ");
2051 if (key->cert->nprincipals == 0)
2052 printf("(none)\n");
2053 else {
2054 for (i = 0; i < key->cert->nprincipals; i++)
2055 printf("\n %s",
2056 key->cert->principals[i]);
2057 printf("\n");
2058 }
Damien Miller4e270b02010-04-16 15:56:21 +10002059 printf(" Critical Options: ");
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002060 if (sshbuf_len(key->cert->critical) == 0)
Damien Millerf2b70ca2010-03-05 07:39:35 +11002061 printf("(none)\n");
2062 else {
2063 printf("\n");
djm@openbsd.orgc28fc622015-07-03 03:43:18 +00002064 show_options(key->cert->critical, 1);
Damien Millerf2b70ca2010-03-05 07:39:35 +11002065 }
djm@openbsd.orgc28fc622015-07-03 03:43:18 +00002066 printf(" Extensions: ");
2067 if (sshbuf_len(key->cert->extensions) == 0)
2068 printf("(none)\n");
2069 else {
2070 printf("\n");
2071 show_options(key->cert->extensions, 0);
Damien Miller4e270b02010-04-16 15:56:21 +10002072 }
djm@openbsd.org94bc0b72015-11-13 04:34:15 +00002073}
2074
2075static void
2076do_show_cert(struct passwd *pw)
2077{
2078 struct sshkey *key = NULL;
2079 struct stat st;
2080 int r, is_stdin = 0, ok = 0;
2081 FILE *f;
markus@openbsd.org7f906352018-06-06 18:29:18 +00002082 char *cp, *line = NULL;
djm@openbsd.org94bc0b72015-11-13 04:34:15 +00002083 const char *path;
markus@openbsd.org7f906352018-06-06 18:29:18 +00002084 size_t linesize = 0;
djm@openbsd.org1a31d022016-05-02 08:49:03 +00002085 u_long lnum = 0;
djm@openbsd.org94bc0b72015-11-13 04:34:15 +00002086
2087 if (!have_identity)
2088 ask_filename(pw, "Enter file in which the key is");
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +00002089 if (strcmp(identity_file, "-") != 0 && stat(identity_file, &st) == -1)
djm@openbsd.org94bc0b72015-11-13 04:34:15 +00002090 fatal("%s: %s: %s", __progname, identity_file, strerror(errno));
2091
2092 path = identity_file;
2093 if (strcmp(path, "-") == 0) {
2094 f = stdin;
2095 path = "(stdin)";
2096 is_stdin = 1;
2097 } else if ((f = fopen(identity_file, "r")) == NULL)
2098 fatal("fopen %s: %s", identity_file, strerror(errno));
2099
markus@openbsd.org7f906352018-06-06 18:29:18 +00002100 while (getline(&line, &linesize, f) != -1) {
2101 lnum++;
djm@openbsd.org94bc0b72015-11-13 04:34:15 +00002102 sshkey_free(key);
2103 key = NULL;
2104 /* Trim leading space and comments */
2105 cp = line + strspn(line, " \t");
2106 if (*cp == '#' || *cp == '\0')
2107 continue;
2108 if ((key = sshkey_new(KEY_UNSPEC)) == NULL)
markus@openbsd.org7da5df12017-05-30 14:16:41 +00002109 fatal("sshkey_new");
djm@openbsd.org94bc0b72015-11-13 04:34:15 +00002110 if ((r = sshkey_read(key, &cp)) != 0) {
2111 error("%s:%lu: invalid key: %s", path,
2112 lnum, ssh_err(r));
2113 continue;
2114 }
2115 if (!sshkey_is_cert(key)) {
2116 error("%s:%lu is not a certificate", path, lnum);
2117 continue;
2118 }
2119 ok = 1;
2120 if (!is_stdin && lnum == 1)
2121 printf("%s:\n", path);
2122 else
2123 printf("%s:%lu:\n", path, lnum);
2124 print_cert(key);
2125 }
markus@openbsd.org7f906352018-06-06 18:29:18 +00002126 free(line);
djm@openbsd.org94bc0b72015-11-13 04:34:15 +00002127 sshkey_free(key);
2128 fclose(f);
2129 exit(ok ? 0 : 1);
Damien Millerf2b70ca2010-03-05 07:39:35 +11002130}
2131
2132static void
Damien Millerf3747bf2013-01-18 11:44:04 +11002133load_krl(const char *path, struct ssh_krl **krlp)
2134{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002135 struct sshbuf *krlbuf;
2136 int r, fd;
Damien Millerf3747bf2013-01-18 11:44:04 +11002137
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002138 if ((krlbuf = sshbuf_new()) == NULL)
2139 fatal("sshbuf_new failed");
Damien Millerf3747bf2013-01-18 11:44:04 +11002140 if ((fd = open(path, O_RDONLY)) == -1)
2141 fatal("open %s: %s", path, strerror(errno));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002142 if ((r = sshkey_load_file(fd, krlbuf)) != 0)
2143 fatal("Unable to load KRL: %s", ssh_err(r));
Damien Millerf3747bf2013-01-18 11:44:04 +11002144 close(fd);
2145 /* XXX check sigs */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002146 if ((r = ssh_krl_from_blob(krlbuf, krlp, NULL, 0)) != 0 ||
Damien Millerf3747bf2013-01-18 11:44:04 +11002147 *krlp == NULL)
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002148 fatal("Invalid KRL file: %s", ssh_err(r));
2149 sshbuf_free(krlbuf);
Damien Millerf3747bf2013-01-18 11:44:04 +11002150}
2151
2152static void
djm@openbsd.org9405c622018-09-12 01:21:34 +00002153hash_to_blob(const char *cp, u_char **blobp, size_t *lenp,
2154 const char *file, u_long lnum)
2155{
2156 char *tmp;
2157 size_t tlen;
2158 struct sshbuf *b;
2159 int r;
2160
2161 if (strncmp(cp, "SHA256:", 7) != 0)
2162 fatal("%s:%lu: unsupported hash algorithm", file, lnum);
2163 cp += 7;
2164
2165 /*
2166 * OpenSSH base64 hashes omit trailing '='
2167 * characters; put them back for decode.
2168 */
2169 tlen = strlen(cp);
2170 tmp = xmalloc(tlen + 4 + 1);
2171 strlcpy(tmp, cp, tlen + 1);
2172 while ((tlen % 4) != 0) {
2173 tmp[tlen++] = '=';
2174 tmp[tlen] = '\0';
2175 }
2176 if ((b = sshbuf_new()) == NULL)
2177 fatal("%s: sshbuf_new failed", __func__);
2178 if ((r = sshbuf_b64tod(b, tmp)) != 0)
2179 fatal("%s:%lu: decode hash failed: %s", file, lnum, ssh_err(r));
2180 free(tmp);
2181 *lenp = sshbuf_len(b);
2182 *blobp = xmalloc(*lenp);
2183 memcpy(*blobp, sshbuf_ptr(b), *lenp);
2184 sshbuf_free(b);
2185}
2186
2187static void
djm@openbsd.org669aee92015-01-30 01:10:33 +00002188update_krl_from_file(struct passwd *pw, const char *file, int wild_ca,
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002189 const struct sshkey *ca, struct ssh_krl *krl)
Damien Millerf3747bf2013-01-18 11:44:04 +11002190{
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002191 struct sshkey *key = NULL;
Damien Millerf3747bf2013-01-18 11:44:04 +11002192 u_long lnum = 0;
markus@openbsd.org7f906352018-06-06 18:29:18 +00002193 char *path, *cp, *ep, *line = NULL;
djm@openbsd.org9405c622018-09-12 01:21:34 +00002194 u_char *blob = NULL;
2195 size_t blen = 0, linesize = 0;
Damien Millerf3747bf2013-01-18 11:44:04 +11002196 unsigned long long serial, serial2;
djm@openbsd.org9405c622018-09-12 01:21:34 +00002197 int i, was_explicit_key, was_sha1, was_sha256, was_hash, r;
Damien Millerf3747bf2013-01-18 11:44:04 +11002198 FILE *krl_spec;
2199
2200 path = tilde_expand_filename(file, pw->pw_uid);
2201 if (strcmp(path, "-") == 0) {
2202 krl_spec = stdin;
2203 free(path);
2204 path = xstrdup("(standard input)");
2205 } else if ((krl_spec = fopen(path, "r")) == NULL)
2206 fatal("fopen %s: %s", path, strerror(errno));
2207
2208 if (!quiet)
2209 printf("Revoking from %s\n", path);
markus@openbsd.org7f906352018-06-06 18:29:18 +00002210 while (getline(&line, &linesize, krl_spec) != -1) {
2211 lnum++;
djm@openbsd.org9405c622018-09-12 01:21:34 +00002212 was_explicit_key = was_sha1 = was_sha256 = was_hash = 0;
Damien Millerf3747bf2013-01-18 11:44:04 +11002213 cp = line + strspn(line, " \t");
2214 /* Trim trailing space, comments and strip \n */
2215 for (i = 0, r = -1; cp[i] != '\0'; i++) {
2216 if (cp[i] == '#' || cp[i] == '\n') {
2217 cp[i] = '\0';
2218 break;
2219 }
2220 if (cp[i] == ' ' || cp[i] == '\t') {
2221 /* Remember the start of a span of whitespace */
2222 if (r == -1)
2223 r = i;
2224 } else
2225 r = -1;
2226 }
2227 if (r != -1)
2228 cp[r] = '\0';
2229 if (*cp == '\0')
2230 continue;
2231 if (strncasecmp(cp, "serial:", 7) == 0) {
djm@openbsd.org669aee92015-01-30 01:10:33 +00002232 if (ca == NULL && !wild_ca) {
Damien Millerd234afb2013-08-21 02:42:58 +10002233 fatal("revoking certificates by serial number "
Damien Millerf3747bf2013-01-18 11:44:04 +11002234 "requires specification of a CA key");
2235 }
2236 cp += 7;
2237 cp = cp + strspn(cp, " \t");
2238 errno = 0;
2239 serial = strtoull(cp, &ep, 0);
2240 if (*cp == '\0' || (*ep != '\0' && *ep != '-'))
2241 fatal("%s:%lu: invalid serial \"%s\"",
2242 path, lnum, cp);
2243 if (errno == ERANGE && serial == ULLONG_MAX)
2244 fatal("%s:%lu: serial out of range",
2245 path, lnum);
2246 serial2 = serial;
2247 if (*ep == '-') {
2248 cp = ep + 1;
2249 errno = 0;
2250 serial2 = strtoull(cp, &ep, 0);
2251 if (*cp == '\0' || *ep != '\0')
2252 fatal("%s:%lu: invalid serial \"%s\"",
2253 path, lnum, cp);
2254 if (errno == ERANGE && serial2 == ULLONG_MAX)
2255 fatal("%s:%lu: serial out of range",
2256 path, lnum);
2257 if (serial2 <= serial)
2258 fatal("%s:%lu: invalid serial range "
2259 "%llu:%llu", path, lnum,
2260 (unsigned long long)serial,
2261 (unsigned long long)serial2);
2262 }
2263 if (ssh_krl_revoke_cert_by_serial_range(krl,
2264 ca, serial, serial2) != 0) {
2265 fatal("%s: revoke serial failed",
2266 __func__);
2267 }
2268 } else if (strncasecmp(cp, "id:", 3) == 0) {
djm@openbsd.org669aee92015-01-30 01:10:33 +00002269 if (ca == NULL && !wild_ca) {
Damien Millerd5d9d7b2013-08-21 02:43:27 +10002270 fatal("revoking certificates by key ID "
Damien Millerf3747bf2013-01-18 11:44:04 +11002271 "requires specification of a CA key");
2272 }
2273 cp += 3;
2274 cp = cp + strspn(cp, " \t");
2275 if (ssh_krl_revoke_cert_by_key_id(krl, ca, cp) != 0)
2276 fatal("%s: revoke key ID failed", __func__);
djm@openbsd.org9405c622018-09-12 01:21:34 +00002277 } else if (strncasecmp(cp, "hash:", 5) == 0) {
2278 cp += 5;
2279 cp = cp + strspn(cp, " \t");
2280 hash_to_blob(cp, &blob, &blen, file, lnum);
2281 r = ssh_krl_revoke_key_sha256(krl, blob, blen);
Damien Millerf3747bf2013-01-18 11:44:04 +11002282 } else {
2283 if (strncasecmp(cp, "key:", 4) == 0) {
2284 cp += 4;
2285 cp = cp + strspn(cp, " \t");
2286 was_explicit_key = 1;
2287 } else if (strncasecmp(cp, "sha1:", 5) == 0) {
2288 cp += 5;
2289 cp = cp + strspn(cp, " \t");
2290 was_sha1 = 1;
djm@openbsd.org9405c622018-09-12 01:21:34 +00002291 } else if (strncasecmp(cp, "sha256:", 7) == 0) {
2292 cp += 7;
2293 cp = cp + strspn(cp, " \t");
2294 was_sha256 = 1;
Damien Millerf3747bf2013-01-18 11:44:04 +11002295 /*
2296 * Just try to process the line as a key.
2297 * Parsing will fail if it isn't.
2298 */
2299 }
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002300 if ((key = sshkey_new(KEY_UNSPEC)) == NULL)
markus@openbsd.org7da5df12017-05-30 14:16:41 +00002301 fatal("sshkey_new");
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002302 if ((r = sshkey_read(key, &cp)) != 0)
2303 fatal("%s:%lu: invalid key: %s",
2304 path, lnum, ssh_err(r));
Damien Millerf3747bf2013-01-18 11:44:04 +11002305 if (was_explicit_key)
2306 r = ssh_krl_revoke_key_explicit(krl, key);
djm@openbsd.org9405c622018-09-12 01:21:34 +00002307 else if (was_sha1) {
2308 if (sshkey_fingerprint_raw(key,
2309 SSH_DIGEST_SHA1, &blob, &blen) != 0) {
2310 fatal("%s:%lu: fingerprint failed",
2311 file, lnum);
2312 }
2313 r = ssh_krl_revoke_key_sha1(krl, blob, blen);
2314 } else if (was_sha256) {
2315 if (sshkey_fingerprint_raw(key,
2316 SSH_DIGEST_SHA256, &blob, &blen) != 0) {
2317 fatal("%s:%lu: fingerprint failed",
2318 file, lnum);
2319 }
2320 r = ssh_krl_revoke_key_sha256(krl, blob, blen);
2321 } else
Damien Millerf3747bf2013-01-18 11:44:04 +11002322 r = ssh_krl_revoke_key(krl, key);
2323 if (r != 0)
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002324 fatal("%s: revoke key failed: %s",
2325 __func__, ssh_err(r));
djm@openbsd.org9405c622018-09-12 01:21:34 +00002326 freezero(blob, blen);
2327 blob = NULL;
2328 blen = 0;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002329 sshkey_free(key);
Damien Millerf3747bf2013-01-18 11:44:04 +11002330 }
2331 }
2332 if (strcmp(path, "-") != 0)
2333 fclose(krl_spec);
markus@openbsd.org7f906352018-06-06 18:29:18 +00002334 free(line);
Damien Miller0d6771b2013-04-23 15:23:24 +10002335 free(path);
Damien Millerf3747bf2013-01-18 11:44:04 +11002336}
2337
2338static void
djm@openbsd.org851f8032019-01-23 04:16:22 +00002339do_gen_krl(struct passwd *pw, int updating, const char *ca_key_path,
2340 unsigned long long krl_version, const char *krl_comment,
2341 int argc, char **argv)
Damien Millerf3747bf2013-01-18 11:44:04 +11002342{
2343 struct ssh_krl *krl;
2344 struct stat sb;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002345 struct sshkey *ca = NULL;
djm@openbsd.org669aee92015-01-30 01:10:33 +00002346 int fd, i, r, wild_ca = 0;
Damien Millerf3747bf2013-01-18 11:44:04 +11002347 char *tmp;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002348 struct sshbuf *kbuf;
Damien Millerf3747bf2013-01-18 11:44:04 +11002349
2350 if (*identity_file == '\0')
2351 fatal("KRL generation requires an output file");
2352 if (stat(identity_file, &sb) == -1) {
2353 if (errno != ENOENT)
2354 fatal("Cannot access KRL \"%s\": %s",
2355 identity_file, strerror(errno));
2356 if (updating)
2357 fatal("KRL \"%s\" does not exist", identity_file);
2358 }
2359 if (ca_key_path != NULL) {
djm@openbsd.org669aee92015-01-30 01:10:33 +00002360 if (strcasecmp(ca_key_path, "none") == 0)
2361 wild_ca = 1;
2362 else {
2363 tmp = tilde_expand_filename(ca_key_path, pw->pw_uid);
2364 if ((r = sshkey_load_public(tmp, &ca, NULL)) != 0)
2365 fatal("Cannot load CA public key %s: %s",
2366 tmp, ssh_err(r));
2367 free(tmp);
2368 }
Damien Millerf3747bf2013-01-18 11:44:04 +11002369 }
2370
2371 if (updating)
2372 load_krl(identity_file, &krl);
2373 else if ((krl = ssh_krl_init()) == NULL)
2374 fatal("couldn't create KRL");
2375
djm@openbsd.org851f8032019-01-23 04:16:22 +00002376 if (krl_version != 0)
2377 ssh_krl_set_version(krl, krl_version);
2378 if (krl_comment != NULL)
2379 ssh_krl_set_comment(krl, krl_comment);
Damien Millerf3747bf2013-01-18 11:44:04 +11002380
2381 for (i = 0; i < argc; i++)
djm@openbsd.org669aee92015-01-30 01:10:33 +00002382 update_krl_from_file(pw, argv[i], wild_ca, ca, krl);
Damien Millerf3747bf2013-01-18 11:44:04 +11002383
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002384 if ((kbuf = sshbuf_new()) == NULL)
2385 fatal("sshbuf_new failed");
2386 if (ssh_krl_to_blob(krl, kbuf, NULL, 0) != 0)
Damien Millerf3747bf2013-01-18 11:44:04 +11002387 fatal("Couldn't generate KRL");
2388 if ((fd = open(identity_file, O_WRONLY|O_CREAT|O_TRUNC, 0644)) == -1)
2389 fatal("open %s: %s", identity_file, strerror(errno));
markus@openbsd.org49f47e62018-07-09 21:59:10 +00002390 if (atomicio(vwrite, fd, sshbuf_mutable_ptr(kbuf), sshbuf_len(kbuf)) !=
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002391 sshbuf_len(kbuf))
Damien Millerf3747bf2013-01-18 11:44:04 +11002392 fatal("write %s: %s", identity_file, strerror(errno));
2393 close(fd);
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002394 sshbuf_free(kbuf);
Damien Millerf3747bf2013-01-18 11:44:04 +11002395 ssh_krl_free(krl);
mmcc@openbsd.org89540b62015-12-11 02:31:47 +00002396 sshkey_free(ca);
Damien Millerf3747bf2013-01-18 11:44:04 +11002397}
2398
2399static void
2400do_check_krl(struct passwd *pw, int argc, char **argv)
2401{
2402 int i, r, ret = 0;
2403 char *comment;
2404 struct ssh_krl *krl;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002405 struct sshkey *k;
Damien Millerf3747bf2013-01-18 11:44:04 +11002406
2407 if (*identity_file == '\0')
2408 fatal("KRL checking requires an input file");
2409 load_krl(identity_file, &krl);
2410 for (i = 0; i < argc; i++) {
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002411 if ((r = sshkey_load_public(argv[i], &k, &comment)) != 0)
2412 fatal("Cannot load public key %s: %s",
2413 argv[i], ssh_err(r));
Damien Millerf3747bf2013-01-18 11:44:04 +11002414 r = ssh_krl_check_key(krl, k);
2415 printf("%s%s%s%s: %s\n", argv[i],
2416 *comment ? " (" : "", comment, *comment ? ")" : "",
2417 r == 0 ? "ok" : "REVOKED");
2418 if (r != 0)
2419 ret = 1;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002420 sshkey_free(k);
Damien Millerf3747bf2013-01-18 11:44:04 +11002421 free(comment);
2422 }
2423 ssh_krl_free(krl);
2424 exit(ret);
2425}
2426
djm@openbsd.org2a9c9f72019-09-03 08:34:19 +00002427static struct sshkey *
2428load_sign_key(const char *keypath, const struct sshkey *pubkey)
2429{
2430 size_t i, slen, plen = strlen(keypath);
2431 char *privpath = xstrdup(keypath);
2432 const char *suffixes[] = { "-cert.pub", ".pub", NULL };
2433 struct sshkey *ret = NULL, *privkey = NULL;
2434 int r;
2435
2436 /*
2437 * If passed a public key filename, then try to locate the correponding
2438 * private key. This lets us specify certificates on the command-line
2439 * and have ssh-keygen find the appropriate private key.
2440 */
2441 for (i = 0; suffixes[i]; i++) {
2442 slen = strlen(suffixes[i]);
2443 if (plen <= slen ||
2444 strcmp(privpath + plen - slen, suffixes[i]) != 0)
2445 continue;
2446 privpath[plen - slen] = '\0';
2447 debug("%s: %s looks like a public key, using private key "
2448 "path %s instead", __func__, keypath, privpath);
2449 }
2450 if ((privkey = load_identity(privpath, NULL)) == NULL) {
2451 error("Couldn't load identity %s", keypath);
2452 goto done;
2453 }
2454 if (!sshkey_equal_public(pubkey, privkey)) {
2455 error("Public key %s doesn't match private %s",
2456 keypath, privpath);
2457 goto done;
2458 }
2459 if (sshkey_is_cert(pubkey) && !sshkey_is_cert(privkey)) {
2460 /*
2461 * Graft the certificate onto the private key to make
2462 * it capable of signing.
2463 */
2464 if ((r = sshkey_to_certified(privkey)) != 0) {
2465 error("%s: sshkey_to_certified: %s", __func__,
2466 ssh_err(r));
2467 goto done;
2468 }
2469 if ((r = sshkey_cert_copy(pubkey, privkey)) != 0) {
2470 error("%s: sshkey_cert_copy: %s", __func__, ssh_err(r));
2471 goto done;
2472 }
2473 }
2474 /* success */
2475 ret = privkey;
2476 privkey = NULL;
2477 done:
2478 sshkey_free(privkey);
2479 free(privpath);
2480 return ret;
2481}
2482
2483static int
2484sign_one(struct sshkey *signkey, const char *filename, int fd,
2485 const char *sig_namespace, sshsig_signer *signer, void *signer_ctx)
2486{
2487 struct sshbuf *sigbuf = NULL, *abuf = NULL;
2488 int r = SSH_ERR_INTERNAL_ERROR, wfd = -1, oerrno;
2489 char *wfile = NULL;
2490 char *asig = NULL;
2491
2492 if (!quiet) {
2493 if (fd == STDIN_FILENO)
2494 fprintf(stderr, "Signing data on standard input\n");
2495 else
2496 fprintf(stderr, "Signing file %s\n", filename);
2497 }
2498 if ((r = sshsig_sign_fd(signkey, NULL, fd, sig_namespace,
2499 &sigbuf, signer, signer_ctx)) != 0) {
2500 error("Signing %s failed: %s", filename, ssh_err(r));
2501 goto out;
2502 }
2503 if ((r = sshsig_armor(sigbuf, &abuf)) != 0) {
2504 error("%s: sshsig_armor: %s", __func__, ssh_err(r));
2505 goto out;
2506 }
2507 if ((asig = sshbuf_dup_string(abuf)) == NULL) {
2508 error("%s: buffer error", __func__);
2509 r = SSH_ERR_ALLOC_FAIL;
2510 goto out;
2511 }
2512
2513 if (fd == STDIN_FILENO) {
2514 fputs(asig, stdout);
2515 fflush(stdout);
2516 } else {
2517 xasprintf(&wfile, "%s.sig", filename);
2518 if (confirm_overwrite(wfile)) {
2519 if ((wfd = open(wfile, O_WRONLY|O_CREAT|O_TRUNC,
2520 0666)) == -1) {
2521 oerrno = errno;
2522 error("Cannot open %s: %s",
2523 wfile, strerror(errno));
2524 errno = oerrno;
2525 r = SSH_ERR_SYSTEM_ERROR;
2526 goto out;
2527 }
2528 if (atomicio(vwrite, wfd, asig,
2529 strlen(asig)) != strlen(asig)) {
2530 oerrno = errno;
2531 error("Cannot write to %s: %s",
2532 wfile, strerror(errno));
2533 errno = oerrno;
2534 r = SSH_ERR_SYSTEM_ERROR;
2535 goto out;
2536 }
2537 if (!quiet) {
2538 fprintf(stderr, "Write signature to %s\n",
2539 wfile);
2540 }
2541 }
2542 }
2543 /* success */
2544 r = 0;
2545 out:
2546 free(wfile);
2547 free(asig);
2548 sshbuf_free(abuf);
2549 sshbuf_free(sigbuf);
2550 if (wfd != -1)
2551 close(wfd);
2552 return r;
2553}
2554
2555static int
2556sign(const char *keypath, const char *sig_namespace, int argc, char **argv)
2557{
2558 int i, fd = -1, r, ret = -1;
2559 int agent_fd = -1;
2560 struct sshkey *pubkey = NULL, *privkey = NULL, *signkey = NULL;
2561 sshsig_signer *signer = NULL;
2562
2563 /* Check file arguments. */
2564 for (i = 0; i < argc; i++) {
2565 if (strcmp(argv[i], "-") != 0)
2566 continue;
2567 if (i > 0 || argc > 1)
2568 fatal("Cannot sign mix of paths and standard input");
2569 }
2570
2571 if ((r = sshkey_load_public(keypath, &pubkey, NULL)) != 0) {
2572 error("Couldn't load public key %s: %s", keypath, ssh_err(r));
2573 goto done;
2574 }
2575
2576 if ((r = ssh_get_authentication_socket(&agent_fd)) != 0)
2577 debug("Couldn't get agent socket: %s", ssh_err(r));
2578 else {
2579 if ((r = ssh_agent_has_key(agent_fd, pubkey)) == 0)
2580 signer = agent_signer;
2581 else
2582 debug("Couldn't find key in agent: %s", ssh_err(r));
2583 }
2584
2585 if (signer == NULL) {
2586 /* Not using agent - try to load private key */
2587 if ((privkey = load_sign_key(keypath, pubkey)) == NULL)
2588 goto done;
2589 signkey = privkey;
2590 } else {
2591 /* Will use key in agent */
2592 signkey = pubkey;
2593 }
2594
2595 if (argc == 0) {
2596 if ((r = sign_one(signkey, "(stdin)", STDIN_FILENO,
2597 sig_namespace, signer, &agent_fd)) != 0)
2598 goto done;
2599 } else {
2600 for (i = 0; i < argc; i++) {
2601 if (strcmp(argv[i], "-") == 0)
2602 fd = STDIN_FILENO;
2603 else if ((fd = open(argv[i], O_RDONLY)) == -1) {
2604 error("Cannot open %s for signing: %s",
2605 argv[i], strerror(errno));
2606 goto done;
2607 }
2608 if ((r = sign_one(signkey, argv[i], fd, sig_namespace,
2609 signer, &agent_fd)) != 0)
2610 goto done;
2611 if (fd != STDIN_FILENO)
2612 close(fd);
2613 fd = -1;
2614 }
2615 }
2616
2617 ret = 0;
2618done:
2619 if (fd != -1 && fd != STDIN_FILENO)
2620 close(fd);
2621 sshkey_free(pubkey);
2622 sshkey_free(privkey);
2623 return ret;
2624}
2625
2626static int
2627verify(const char *signature, const char *sig_namespace, const char *principal,
2628 const char *allowed_keys, const char *revoked_keys)
2629{
2630 int r, ret = -1, sigfd = -1;
2631 struct sshbuf *sigbuf = NULL, *abuf = NULL;
2632 struct sshkey *sign_key = NULL;
2633 char *fp = NULL;
2634
2635 if ((abuf = sshbuf_new()) == NULL)
2636 fatal("%s: sshbuf_new() failed", __func__);
2637
2638 if ((sigfd = open(signature, O_RDONLY)) < 0) {
2639 error("Couldn't open signature file %s", signature);
2640 goto done;
2641 }
2642
2643 if ((r = sshkey_load_file(sigfd, abuf)) != 0) {
2644 error("Couldn't read signature file: %s", ssh_err(r));
2645 goto done;
2646 }
2647 if ((r = sshsig_dearmor(abuf, &sigbuf)) != 0) {
2648 error("%s: sshsig_armor: %s", __func__, ssh_err(r));
2649 return r;
2650 }
2651 if ((r = sshsig_verify_fd(sigbuf, STDIN_FILENO, sig_namespace,
2652 &sign_key)) != 0)
2653 goto done; /* sshsig_verify() prints error */
2654
2655 if ((fp = sshkey_fingerprint(sign_key, fingerprint_hash,
2656 SSH_FP_DEFAULT)) == NULL)
2657 fatal("%s: sshkey_fingerprint failed", __func__);
2658 debug("Valid (unverified) signature from key %s", fp);
2659 free(fp);
2660 fp = NULL;
2661
2662 if (revoked_keys != NULL) {
djm@openbsd.orgd637c4a2019-09-03 08:35:27 +00002663 if ((r = sshkey_check_revoked(sign_key, revoked_keys)) != 0) {
2664 debug3("sshkey_check_revoked failed: %s", ssh_err(r));
2665 goto done;
2666 }
djm@openbsd.org2a9c9f72019-09-03 08:34:19 +00002667 }
2668
djm@openbsd.org8aa2aa32019-09-16 03:23:02 +00002669 if (allowed_keys != NULL &&
2670 (r = sshsig_check_allowed_keys(allowed_keys, sign_key,
2671 principal, sig_namespace)) != 0) {
djm@openbsd.org2a9c9f72019-09-03 08:34:19 +00002672 debug3("sshsig_check_allowed_keys failed: %s", ssh_err(r));
2673 goto done;
2674 }
2675 /* success */
2676 ret = 0;
2677done:
2678 if (!quiet) {
2679 if (ret == 0) {
2680 if ((fp = sshkey_fingerprint(sign_key, fingerprint_hash,
2681 SSH_FP_DEFAULT)) == NULL) {
2682 fatal("%s: sshkey_fingerprint failed",
2683 __func__);
2684 }
djm@openbsd.org8aa2aa32019-09-16 03:23:02 +00002685 if (principal == NULL) {
2686 printf("Good \"%s\" signature with %s key %s\n",
2687 sig_namespace, sshkey_type(sign_key), fp);
2688
2689 } else {
2690 printf("Good \"%s\" signature for %s with %s key %s\n",
2691 sig_namespace, principal,
2692 sshkey_type(sign_key), fp);
2693 }
djm@openbsd.org2a9c9f72019-09-03 08:34:19 +00002694 } else {
2695 printf("Could not verify signature.\n");
2696 }
2697 }
2698 if (sigfd != -1)
2699 close(sigfd);
2700 sshbuf_free(sigbuf);
2701 sshbuf_free(abuf);
2702 sshkey_free(sign_key);
2703 free(fp);
2704 return ret;
2705}
2706
Damien Millerf3747bf2013-01-18 11:44:04 +11002707static void
Damien Miller431f66b1999-11-21 18:31:57 +11002708usage(void)
2709{
Damien Millerf0858de2014-04-20 13:01:30 +10002710 fprintf(stderr,
djm@openbsd.orgf99ef8d2019-01-22 20:48:01 +00002711 "usage: ssh-keygen [-q] [-b bits] [-t dsa | ecdsa | ed25519 | rsa] [-m format]\n"
Damien Millerf0858de2014-04-20 13:01:30 +10002712 " [-N new_passphrase] [-C comment] [-f output_keyfile]\n"
djm@openbsd.orgf99ef8d2019-01-22 20:48:01 +00002713 " ssh-keygen -p [-P old_passphrase] [-N new_passphrase] [-m format]\n"
2714 " [-f keyfile]\n"
Damien Millerf0858de2014-04-20 13:01:30 +10002715 " ssh-keygen -i [-m key_format] [-f input_keyfile]\n"
2716 " ssh-keygen -e [-m key_format] [-f input_keyfile]\n"
2717 " ssh-keygen -y [-f input_keyfile]\n"
2718 " ssh-keygen -c [-P passphrase] [-C comment] [-f keyfile]\n"
naddy@openbsd.org6288e3a2015-02-24 15:24:05 +00002719 " ssh-keygen -l [-v] [-E fingerprint_hash] [-f input_keyfile]\n"
djm@openbsd.org873d3e72017-04-30 23:18:44 +00002720 " ssh-keygen -B [-f input_keyfile]\n");
Damien Miller7ea845e2010-02-12 09:21:02 +11002721#ifdef ENABLE_PKCS11
Damien Millerf0858de2014-04-20 13:01:30 +10002722 fprintf(stderr,
2723 " ssh-keygen -D pkcs11\n");
Damien Miller7ea845e2010-02-12 09:21:02 +11002724#endif
Damien Millerf0858de2014-04-20 13:01:30 +10002725 fprintf(stderr,
jmc@openbsd.org6c91d422019-09-29 16:31:57 +00002726 " ssh-keygen -F hostname [-lv] [-f known_hosts_file]\n"
Damien Millerf0858de2014-04-20 13:01:30 +10002727 " ssh-keygen -H [-f known_hosts_file]\n"
2728 " ssh-keygen -R hostname [-f known_hosts_file]\n"
jmc@openbsd.org6c91d422019-09-29 16:31:57 +00002729 " ssh-keygen -r hostname [-g] [-f input_keyfile]\n"
djm@openbsd.org1d9a2e22015-05-28 07:37:31 +00002730#ifdef WITH_OPENSSL
Damien Millerf0858de2014-04-20 13:01:30 +10002731 " ssh-keygen -G output_file [-v] [-b bits] [-M memory] [-S start_point]\n"
2732 " ssh-keygen -T output_file -f input_file [-v] [-a rounds] [-J num_lines]\n"
2733 " [-j start_line] [-K checkpt] [-W generator]\n"
djm@openbsd.org1d9a2e22015-05-28 07:37:31 +00002734#endif
jmc@openbsd.org6c91d422019-09-29 16:31:57 +00002735 " ssh-keygen -s ca_key -I certificate_identity [-hU]\n"
djm@openbsd.orga98339e2017-06-28 01:09:22 +00002736 " [-D pkcs11_provider] [-n principals] [-O option]\n"
2737 " [-V validity_interval] [-z serial_number] file ...\n"
Damien Millerf0858de2014-04-20 13:01:30 +10002738 " ssh-keygen -L [-f input_keyfile]\n"
2739 " ssh-keygen -A\n"
2740 " ssh-keygen -k -f krl_file [-u] [-s ca_public] [-z version_number]\n"
2741 " file ...\n"
naddy@openbsd.org0f44e592019-09-03 20:51:49 +00002742 " ssh-keygen -Q -f krl_file file ...\n"
djm@openbsd.org2a9c9f72019-09-03 08:34:19 +00002743 " ssh-keygen -Y sign -f sign_key -n namespace\n"
2744 " ssh-keygen -Y verify -I signer_identity -s signature_file\n"
djm@openbsd.org8aa2aa32019-09-16 03:23:02 +00002745 " -n namespace -f allowed_keys [-r revoked_keys]\n"
2746 " ssh-keygen -Y check-novalidate -s signature_file -n namespace\n");
Damien Miller95def091999-11-25 00:26:21 +11002747 exit(1);
Damien Miller431f66b1999-11-21 18:31:57 +11002748}
2749
Damien Miller95def091999-11-25 00:26:21 +11002750/*
2751 * Main program for key management.
2752 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002753int
Damien Millerdf8b7db2007-01-05 16:22:57 +11002754main(int argc, char **argv)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002755{
deraadt@openbsd.org2ae4f332015-01-16 06:40:12 +00002756 char dotsshdir[PATH_MAX], comment[1024], *passphrase1, *passphrase2;
djm@openbsd.org1d9a2e22015-05-28 07:37:31 +00002757 char *rr_hostname = NULL, *ep, *fp, *ra;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002758 struct sshkey *private, *public;
Damien Miller95def091999-11-25 00:26:21 +11002759 struct passwd *pw;
Damien Miller95def091999-11-25 00:26:21 +11002760 struct stat st;
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00002761 int r, opt, type, fd;
djm@openbsd.org851f8032019-01-23 04:16:22 +00002762 int change_passphrase = 0, change_comment = 0, show_cert = 0;
2763 int find_host = 0, delete_host = 0, hash_hosts = 0;
Damien Millerf3747bf2013-01-18 11:44:04 +11002764 int gen_all_hostkeys = 0, gen_krl = 0, update_krl = 0, check_krl = 0;
djm@openbsd.org851f8032019-01-23 04:16:22 +00002765 int prefer_agent = 0, convert_to = 0, convert_from = 0;
djm@openbsd.orgbe063942019-01-23 04:51:02 +00002766 int print_public = 0, print_generic = 0, cert_serial_autoinc = 0;
djm@openbsd.org851f8032019-01-23 04:16:22 +00002767 unsigned long long cert_serial = 0;
2768 char *identity_comment = NULL, *ca_key_path = NULL;
dtucker@openbsd.org7afc45c2019-08-08 08:02:57 +00002769 u_int32_t bits = 0;
Damien Miller95def091999-11-25 00:26:21 +11002770 FILE *f;
Damien Miller02e754f2005-05-26 12:19:39 +10002771 const char *errstr;
djm@openbsd.org851f8032019-01-23 04:16:22 +00002772 int log_level = SYSLOG_LEVEL_INFO;
djm@openbsd.org2a9c9f72019-09-03 08:34:19 +00002773 char *sign_op = NULL;
djm@openbsd.org1d9a2e22015-05-28 07:37:31 +00002774#ifdef WITH_OPENSSL
2775 /* Moduli generation/screening */
2776 char out_file[PATH_MAX], *checkpoint = NULL;
2777 u_int32_t memory = 0, generator_wanted = 0;
2778 int do_gen_candidates = 0, do_screen_candidates = 0;
2779 unsigned long start_lineno = 0, lines_to_process = 0;
2780 BIGNUM *start = NULL;
2781#endif
Damien Miller0bc1bd82000-11-13 22:57:25 +11002782
Damien Miller95def091999-11-25 00:26:21 +11002783 extern int optind;
2784 extern char *optarg;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002785
Darren Tuckerce321d82005-10-03 18:11:24 +10002786 /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
2787 sanitise_stdfd();
2788
Darren Tucker9ac56e92007-01-14 10:19:59 +11002789 __progname = ssh_get_progname(argv[0]);
Damien Millerf9b625c2000-07-09 22:42:32 +10002790
Kevin Steves3a881912002-07-20 19:05:40 +00002791 seed_rng();
Damien Millereba71ba2000-04-29 23:57:08 +10002792
Damien Miller42c5ec42018-11-23 10:40:06 +11002793 log_init(argv[0], SYSLOG_LEVEL_INFO, SYSLOG_FACILITY_USER, 1);
2794
djm@openbsd.orga287c5a2017-02-10 03:36:40 +00002795 msetlocale();
2796
Damien Miller5428f641999-11-25 11:54:57 +11002797 /* we need this for the home * directory. */
Damien Miller95def091999-11-25 00:26:21 +11002798 pw = getpwuid(getuid());
djm@openbsd.org3038a192015-04-17 13:19:22 +00002799 if (!pw)
2800 fatal("No user exists for uid %lu", (u_long)getuid());
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +00002801 if (gethostname(hostname, sizeof(hostname)) == -1)
djm@openbsd.org3038a192015-04-17 13:19:22 +00002802 fatal("gethostname: %s", strerror(errno));
Damien Miller5428f641999-11-25 11:54:57 +11002803
djm@openbsd.org2a9c9f72019-09-03 08:34:19 +00002804 /* Remaining characters: dw */
djm@openbsd.orga98339e2017-06-28 01:09:22 +00002805 while ((opt = getopt(argc, argv, "ABHLQUXceghiklopquvxy"
djm@openbsd.org2a9c9f72019-09-03 08:34:19 +00002806 "C:D:E:F:G:I:J:K:M:N:O:P:R:S:T:V:W:Y:Z:"
djm@openbsd.org56d1c832014-12-21 22:27:55 +00002807 "a:b:f:g:j:m:n:r:s:t:z:")) != -1) {
Damien Miller95def091999-11-25 00:26:21 +11002808 switch (opt) {
Damien Miller58f1baf2011-05-05 14:06:15 +10002809 case 'A':
2810 gen_all_hostkeys = 1;
2811 break;
Damien Miller95def091999-11-25 00:26:21 +11002812 case 'b':
dtucker@openbsd.org7afc45c2019-08-08 08:02:57 +00002813 bits = (u_int32_t)strtonum(optarg, 1, UINT32_MAX,
2814 &errstr);
Damien Miller02e754f2005-05-26 12:19:39 +10002815 if (errstr)
2816 fatal("Bits has bad value %s (%s)",
2817 optarg, errstr);
Damien Miller95def091999-11-25 00:26:21 +11002818 break;
djm@openbsd.org56d1c832014-12-21 22:27:55 +00002819 case 'E':
2820 fingerprint_hash = ssh_digest_alg_by_name(optarg);
2821 if (fingerprint_hash == -1)
2822 fatal("Invalid hash algorithm \"%s\"", optarg);
2823 break;
Damien Miller4b42d7f2005-03-01 21:48:35 +11002824 case 'F':
2825 find_host = 1;
2826 rr_hostname = optarg;
2827 break;
2828 case 'H':
2829 hash_hosts = 1;
2830 break;
Damien Miller0a80ca12010-02-27 07:55:05 +11002831 case 'I':
2832 cert_key_id = optarg;
2833 break;
Damien Miller4b42d7f2005-03-01 21:48:35 +11002834 case 'R':
2835 delete_host = 1;
2836 rr_hostname = optarg;
2837 break;
Damien Millerf2b70ca2010-03-05 07:39:35 +11002838 case 'L':
2839 show_cert = 1;
2840 break;
Damien Miller95def091999-11-25 00:26:21 +11002841 case 'l':
2842 print_fingerprint = 1;
2843 break;
Ben Lindstrom8fd372b2001-03-12 03:02:17 +00002844 case 'B':
2845 print_bubblebabble = 1;
2846 break;
Damien Miller44b25042010-07-02 13:35:01 +10002847 case 'm':
2848 if (strcasecmp(optarg, "RFC4716") == 0 ||
2849 strcasecmp(optarg, "ssh2") == 0) {
2850 convert_format = FMT_RFC4716;
2851 break;
2852 }
2853 if (strcasecmp(optarg, "PKCS8") == 0) {
2854 convert_format = FMT_PKCS8;
djm@openbsd.orgeb0d8e72019-07-15 13:16:29 +00002855 private_key_format = SSHKEY_PRIVATE_PKCS8;
Damien Miller44b25042010-07-02 13:35:01 +10002856 break;
2857 }
2858 if (strcasecmp(optarg, "PEM") == 0) {
2859 convert_format = FMT_PEM;
djm@openbsd.orgeb0d8e72019-07-15 13:16:29 +00002860 private_key_format = SSHKEY_PRIVATE_PEM;
Damien Miller44b25042010-07-02 13:35:01 +10002861 break;
2862 }
2863 fatal("Unsupported conversion format \"%s\"", optarg);
Damien Miller0a80ca12010-02-27 07:55:05 +11002864 case 'n':
2865 cert_principals = optarg;
2866 break;
Damien Millerbcd00ab2013-12-07 10:41:55 +11002867 case 'o':
djm@openbsd.orged7bd5d2018-08-08 01:16:01 +00002868 /* no-op; new format is already the default */
Damien Millerbcd00ab2013-12-07 10:41:55 +11002869 break;
Damien Miller95def091999-11-25 00:26:21 +11002870 case 'p':
2871 change_passphrase = 1;
2872 break;
Damien Miller95def091999-11-25 00:26:21 +11002873 case 'c':
2874 change_comment = 1;
2875 break;
Damien Miller95def091999-11-25 00:26:21 +11002876 case 'f':
djm@openbsd.org1d9a2e22015-05-28 07:37:31 +00002877 if (strlcpy(identity_file, optarg,
2878 sizeof(identity_file)) >= sizeof(identity_file))
Damien Millerb089fb52005-05-26 12:16:18 +10002879 fatal("Identity filename too long");
Damien Miller95def091999-11-25 00:26:21 +11002880 have_identity = 1;
2881 break;
Damien Miller37876e92003-05-15 10:19:46 +10002882 case 'g':
2883 print_generic = 1;
2884 break;
Damien Miller95def091999-11-25 00:26:21 +11002885 case 'P':
2886 identity_passphrase = optarg;
2887 break;
Damien Miller95def091999-11-25 00:26:21 +11002888 case 'N':
2889 identity_new_passphrase = optarg;
2890 break;
Damien Millerf3747bf2013-01-18 11:44:04 +11002891 case 'Q':
2892 check_krl = 1;
2893 break;
Damien Miller0a80ca12010-02-27 07:55:05 +11002894 case 'O':
Damien Miller4e270b02010-04-16 15:56:21 +10002895 add_cert_option(optarg);
Damien Miller0a80ca12010-02-27 07:55:05 +11002896 break;
Damien Millerbcd00ab2013-12-07 10:41:55 +11002897 case 'Z':
djm@openbsd.orgeb0d8e72019-07-15 13:16:29 +00002898 openssh_format_cipher = optarg;
Damien Millerbcd00ab2013-12-07 10:41:55 +11002899 break;
Damien Miller95def091999-11-25 00:26:21 +11002900 case 'C':
2901 identity_comment = optarg;
2902 break;
Damien Miller95def091999-11-25 00:26:21 +11002903 case 'q':
2904 quiet = 1;
2905 break;
Ben Lindstrom5a707822001-04-22 17:15:46 +00002906 case 'e':
Damien Millereba71ba2000-04-29 23:57:08 +10002907 case 'x':
Ben Lindstrom5a707822001-04-22 17:15:46 +00002908 /* export key */
Damien Miller44b25042010-07-02 13:35:01 +10002909 convert_to = 1;
Damien Millereba71ba2000-04-29 23:57:08 +10002910 break;
Damien Miller0a80ca12010-02-27 07:55:05 +11002911 case 'h':
2912 cert_key_type = SSH2_CERT_TYPE_HOST;
Damien Millerd0e4a8e2010-05-21 14:58:32 +10002913 certflags_flags = 0;
Damien Miller0a80ca12010-02-27 07:55:05 +11002914 break;
Damien Millerf3747bf2013-01-18 11:44:04 +11002915 case 'k':
2916 gen_krl = 1;
2917 break;
Ben Lindstrom5a707822001-04-22 17:15:46 +00002918 case 'i':
Damien Millereba71ba2000-04-29 23:57:08 +10002919 case 'X':
Ben Lindstrom5a707822001-04-22 17:15:46 +00002920 /* import key */
Damien Miller44b25042010-07-02 13:35:01 +10002921 convert_from = 1;
Damien Millereba71ba2000-04-29 23:57:08 +10002922 break;
Damien Millereba71ba2000-04-29 23:57:08 +10002923 case 'y':
2924 print_public = 1;
2925 break;
Damien Miller0a80ca12010-02-27 07:55:05 +11002926 case 's':
2927 ca_key_path = optarg;
2928 break;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002929 case 't':
2930 key_type_name = optarg;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002931 break;
Ben Lindstrom8282d6a2001-08-06 21:44:05 +00002932 case 'D':
Damien Miller7ea845e2010-02-12 09:21:02 +11002933 pkcs11provider = optarg;
Ben Lindstromcd392282001-07-04 03:44:03 +00002934 break;
djm@openbsd.orga98339e2017-06-28 01:09:22 +00002935 case 'U':
2936 prefer_agent = 1;
2937 break;
Damien Millerf3747bf2013-01-18 11:44:04 +11002938 case 'u':
2939 update_krl = 1;
2940 break;
Darren Tucker06930c72003-12-31 11:34:51 +11002941 case 'v':
2942 if (log_level == SYSLOG_LEVEL_INFO)
2943 log_level = SYSLOG_LEVEL_DEBUG1;
2944 else {
Darren Tuckerfc959702004-07-17 16:12:08 +10002945 if (log_level >= SYSLOG_LEVEL_DEBUG1 &&
Darren Tucker06930c72003-12-31 11:34:51 +11002946 log_level < SYSLOG_LEVEL_DEBUG3)
2947 log_level++;
2948 }
2949 break;
Damien Miller37876e92003-05-15 10:19:46 +10002950 case 'r':
Damien Miller4b42d7f2005-03-01 21:48:35 +11002951 rr_hostname = optarg;
Damien Miller37876e92003-05-15 10:19:46 +10002952 break;
djm@openbsd.org1d9a2e22015-05-28 07:37:31 +00002953 case 'a':
2954 rounds = (int)strtonum(optarg, 1, INT_MAX, &errstr);
2955 if (errstr)
2956 fatal("Invalid number: %s (%s)",
2957 optarg, errstr);
2958 break;
2959 case 'V':
2960 parse_cert_times(optarg);
2961 break;
djm@openbsd.org2a9c9f72019-09-03 08:34:19 +00002962 case 'Y':
2963 sign_op = optarg;
2964 break;
djm@openbsd.org1d9a2e22015-05-28 07:37:31 +00002965 case 'z':
2966 errno = 0;
djm@openbsd.orgbe063942019-01-23 04:51:02 +00002967 if (*optarg == '+') {
2968 cert_serial_autoinc = 1;
2969 optarg++;
2970 }
djm@openbsd.org1d9a2e22015-05-28 07:37:31 +00002971 cert_serial = strtoull(optarg, &ep, 10);
2972 if (*optarg < '0' || *optarg > '9' || *ep != '\0' ||
2973 (errno == ERANGE && cert_serial == ULLONG_MAX))
2974 fatal("Invalid serial number \"%s\"", optarg);
2975 break;
2976#ifdef WITH_OPENSSL
2977 /* Moduli generation/screening */
Darren Tucker019cefe2003-08-02 22:40:07 +10002978 case 'G':
2979 do_gen_candidates = 1;
Damien Millerb089fb52005-05-26 12:16:18 +10002980 if (strlcpy(out_file, optarg, sizeof(out_file)) >=
2981 sizeof(out_file))
2982 fatal("Output filename too long");
Darren Tucker019cefe2003-08-02 22:40:07 +10002983 break;
Darren Tucker0bb29802016-09-12 11:07:00 +10002984 case 'J':
2985 lines_to_process = strtoul(optarg, NULL, 10);
dtucker@openbsd.org7b63cf62016-09-12 03:29:16 +00002986 break;
Darren Tucker0bb29802016-09-12 11:07:00 +10002987 case 'j':
2988 start_lineno = strtoul(optarg, NULL, 10);
dtucker@openbsd.org7b63cf62016-09-12 03:29:16 +00002989 break;
Damien Miller390d0562011-10-18 16:05:19 +11002990 case 'K':
deraadt@openbsd.org2ae4f332015-01-16 06:40:12 +00002991 if (strlen(optarg) >= PATH_MAX)
Damien Miller390d0562011-10-18 16:05:19 +11002992 fatal("Checkpoint filename too long");
2993 checkpoint = xstrdup(optarg);
2994 break;
Darren Tuckerd8c3cfb2016-09-12 13:30:50 +10002995 case 'M':
2996 memory = (u_int32_t)strtonum(optarg, 1, UINT_MAX,
2997 &errstr);
2998 if (errstr)
2999 fatal("Memory limit is %s: %s", errstr, optarg);
3000 break;
Darren Tucker019cefe2003-08-02 22:40:07 +10003001 case 'S':
3002 /* XXX - also compare length against bits */
3003 if (BN_hex2bn(&start, optarg) == 0)
3004 fatal("Invalid start point.");
3005 break;
Darren Tuckeraf48d542016-09-12 13:52:17 +10003006 case 'T':
3007 do_screen_candidates = 1;
3008 if (strlcpy(out_file, optarg, sizeof(out_file)) >=
3009 sizeof(out_file))
3010 fatal("Output filename too long");
3011 break;
Darren Tucker43cceff2016-09-12 13:55:37 +10003012 case 'W':
3013 generator_wanted = (u_int32_t)strtonum(optarg, 1,
3014 UINT_MAX, &errstr);
Darren Tucker70508962016-09-12 13:57:28 +10003015 if (errstr != NULL)
3016 fatal("Desired generator invalid: %s (%s)",
3017 optarg, errstr);
Darren Tucker43cceff2016-09-12 13:55:37 +10003018 break;
Damien Miller72ef7c12015-01-15 02:21:31 +11003019#endif /* WITH_OPENSSL */
Damien Miller95def091999-11-25 00:26:21 +11003020 case '?':
3021 default:
3022 usage();
3023 }
3024 }
Darren Tucker06930c72003-12-31 11:34:51 +11003025
3026 /* reinit */
Damien Millerdf8b7db2007-01-05 16:22:57 +11003027 log_init(argv[0], log_level, SYSLOG_FACILITY_USER, 1);
Darren Tucker06930c72003-12-31 11:34:51 +11003028
Damien Miller0a80ca12010-02-27 07:55:05 +11003029 argv += optind;
3030 argc -= optind;
3031
djm@openbsd.org2a9c9f72019-09-03 08:34:19 +00003032 if (sign_op != NULL) {
3033 if (cert_principals == NULL) {
3034 error("Too few arguments for sign/verify: "
3035 "missing namespace");
3036 exit(1);
3037 }
3038 if (strncmp(sign_op, "sign", 4) == 0) {
3039 if (!have_identity) {
3040 error("Too few arguments for sign: "
3041 "missing key");
3042 exit(1);
3043 }
3044 return sign(identity_file, cert_principals, argc, argv);
djm@openbsd.org8aa2aa32019-09-16 03:23:02 +00003045 } else if (strncmp(sign_op, "check-novalidate", 16) == 0) {
3046 if (ca_key_path == NULL) {
3047 error("Too few arguments for check-novalidate: "
3048 "missing signature file");
3049 exit(1);
3050 }
3051 return verify(ca_key_path, cert_principals,
3052 NULL, NULL, NULL);
djm@openbsd.org2a9c9f72019-09-03 08:34:19 +00003053 } else if (strncmp(sign_op, "verify", 6) == 0) {
3054 if (ca_key_path == NULL) {
3055 error("Too few arguments for verify: "
3056 "missing signature file");
3057 exit(1);
3058 }
3059 if (!have_identity) {
3060 error("Too few arguments for sign: "
3061 "missing allowed keys file");
3062 exit(1);
3063 }
3064 if (cert_key_id == NULL) {
3065 error("Too few arguments for verify: "
3066 "missing principal ID");
3067 exit(1);
3068 }
3069 return verify(ca_key_path, cert_principals,
3070 cert_key_id, identity_file, rr_hostname);
3071 }
3072 usage();
3073 /* NOTREACHED */
3074 }
3075
Damien Miller0a80ca12010-02-27 07:55:05 +11003076 if (ca_key_path != NULL) {
Damien Millerf3747bf2013-01-18 11:44:04 +11003077 if (argc < 1 && !gen_krl) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00003078 error("Too few arguments.");
Damien Miller0a80ca12010-02-27 07:55:05 +11003079 usage();
3080 }
Damien Millerf3747bf2013-01-18 11:44:04 +11003081 } else if (argc > 0 && !gen_krl && !check_krl) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00003082 error("Too many arguments.");
Damien Miller95def091999-11-25 00:26:21 +11003083 usage();
3084 }
3085 if (change_passphrase && change_comment) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00003086 error("Can only have one of -p and -c.");
Damien Miller95def091999-11-25 00:26:21 +11003087 usage();
3088 }
Darren Tucker0f7e9102008-06-08 12:54:29 +10003089 if (print_fingerprint && (delete_host || hash_hosts)) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00003090 error("Cannot use -l with -H or -R.");
Darren Tucker0f7e9102008-06-08 12:54:29 +10003091 usage();
3092 }
Damien Millerf3747bf2013-01-18 11:44:04 +11003093 if (gen_krl) {
djm@openbsd.org851f8032019-01-23 04:16:22 +00003094 do_gen_krl(pw, update_krl, ca_key_path,
3095 cert_serial, identity_comment, argc, argv);
Damien Millerf3747bf2013-01-18 11:44:04 +11003096 return (0);
3097 }
3098 if (check_krl) {
3099 do_check_krl(pw, argc, argv);
3100 return (0);
3101 }
Damien Miller0a80ca12010-02-27 07:55:05 +11003102 if (ca_key_path != NULL) {
3103 if (cert_key_id == NULL)
3104 fatal("Must specify key id (-I) when certifying");
djm@openbsd.orgbe063942019-01-23 04:51:02 +00003105 do_ca_sign(pw, ca_key_path, prefer_agent,
3106 cert_serial, cert_serial_autoinc, argc, argv);
Damien Miller0a80ca12010-02-27 07:55:05 +11003107 }
Damien Millerf2b70ca2010-03-05 07:39:35 +11003108 if (show_cert)
3109 do_show_cert(pw);
djm@openbsd.org851f8032019-01-23 04:16:22 +00003110 if (delete_host || hash_hosts || find_host) {
3111 do_known_hosts(pw, rr_hostname, find_host,
3112 delete_host, hash_hosts);
3113 }
Damien Millerec77c952013-01-09 15:58:00 +11003114 if (pkcs11provider != NULL)
3115 do_download(pw);
Ben Lindstrom8fd372b2001-03-12 03:02:17 +00003116 if (print_fingerprint || print_bubblebabble)
Damien Miller95def091999-11-25 00:26:21 +11003117 do_fingerprint(pw);
Damien Miller95def091999-11-25 00:26:21 +11003118 if (change_passphrase)
3119 do_change_passphrase(pw);
Damien Miller4a10d2e2002-03-11 22:53:29 +11003120 if (change_comment)
djm@openbsd.org851f8032019-01-23 04:16:22 +00003121 do_change_comment(pw, identity_comment);
Damien Miller1f0311c2014-05-15 14:24:09 +10003122#ifdef WITH_OPENSSL
Damien Miller44b25042010-07-02 13:35:01 +10003123 if (convert_to)
3124 do_convert_to(pw);
3125 if (convert_from)
3126 do_convert_from(pw);
djm@openbsd.orgc8bdd2d2019-09-06 07:53:40 +00003127#else /* WITH_OPENSSL */
3128 if (convert_to || convert_from)
3129 fatal("key conversion disabled at compile time");
3130#endif /* WITH_OPENSSL */
Damien Millereba71ba2000-04-29 23:57:08 +10003131 if (print_public)
3132 do_print_public(pw);
Damien Miller4b42d7f2005-03-01 21:48:35 +11003133 if (rr_hostname != NULL) {
Damien Millercb314822006-03-26 13:48:01 +11003134 unsigned int n = 0;
3135
3136 if (have_identity) {
djm@openbsd.org851f8032019-01-23 04:16:22 +00003137 n = do_print_resource_record(pw, identity_file,
3138 rr_hostname, print_generic);
djm@openbsd.org3038a192015-04-17 13:19:22 +00003139 if (n == 0)
3140 fatal("%s: %s", identity_file, strerror(errno));
Damien Millercb314822006-03-26 13:48:01 +11003141 exit(0);
3142 } else {
3143
3144 n += do_print_resource_record(pw,
djm@openbsd.org851f8032019-01-23 04:16:22 +00003145 _PATH_HOST_RSA_KEY_FILE, rr_hostname,
3146 print_generic);
Damien Millercb314822006-03-26 13:48:01 +11003147 n += do_print_resource_record(pw,
djm@openbsd.org851f8032019-01-23 04:16:22 +00003148 _PATH_HOST_DSA_KEY_FILE, rr_hostname,
3149 print_generic);
Damien Miller3bde12a2012-06-20 21:51:11 +10003150 n += do_print_resource_record(pw,
djm@openbsd.org851f8032019-01-23 04:16:22 +00003151 _PATH_HOST_ECDSA_KEY_FILE, rr_hostname,
3152 print_generic);
Damien Miller16cd3922014-05-15 13:45:58 +10003153 n += do_print_resource_record(pw,
djm@openbsd.org851f8032019-01-23 04:16:22 +00003154 _PATH_HOST_ED25519_KEY_FILE, rr_hostname,
3155 print_generic);
markus@openbsd.org1b11ea72018-02-23 15:58:37 +00003156 n += do_print_resource_record(pw,
djm@openbsd.org851f8032019-01-23 04:16:22 +00003157 _PATH_HOST_XMSS_KEY_FILE, rr_hostname,
3158 print_generic);
Damien Millercb314822006-03-26 13:48:01 +11003159 if (n == 0)
3160 fatal("no keys found.");
3161 exit(0);
3162 }
Damien Miller37876e92003-05-15 10:19:46 +10003163 }
Damien Miller95def091999-11-25 00:26:21 +11003164
djm@openbsd.org1d9a2e22015-05-28 07:37:31 +00003165#ifdef WITH_OPENSSL
Darren Tucker019cefe2003-08-02 22:40:07 +10003166 if (do_gen_candidates) {
3167 FILE *out = fopen(out_file, "w");
Damien Miller787b2ec2003-11-21 23:56:47 +11003168
Darren Tucker019cefe2003-08-02 22:40:07 +10003169 if (out == NULL) {
3170 error("Couldn't open modulus candidate file \"%s\": %s",
3171 out_file, strerror(errno));
3172 return (1);
3173 }
Damien Miller3f54a9f2005-11-05 14:52:18 +11003174 if (bits == 0)
3175 bits = DEFAULT_BITS;
Darren Tucker019cefe2003-08-02 22:40:07 +10003176 if (gen_candidates(out, memory, bits, start) != 0)
Damien Miller15d72a02005-11-05 15:07:33 +11003177 fatal("modulus candidate generation failed");
Darren Tucker019cefe2003-08-02 22:40:07 +10003178
3179 return (0);
3180 }
3181
3182 if (do_screen_candidates) {
3183 FILE *in;
Damien Miller78d22712013-02-12 11:03:36 +11003184 FILE *out = fopen(out_file, "a");
Darren Tucker019cefe2003-08-02 22:40:07 +10003185
3186 if (have_identity && strcmp(identity_file, "-") != 0) {
3187 if ((in = fopen(identity_file, "r")) == NULL) {
3188 fatal("Couldn't open modulus candidate "
Damien Millera8e06ce2003-11-21 23:48:55 +11003189 "file \"%s\": %s", identity_file,
Darren Tucker019cefe2003-08-02 22:40:07 +10003190 strerror(errno));
3191 }
3192 } else
3193 in = stdin;
3194
3195 if (out == NULL) {
3196 fatal("Couldn't open moduli file \"%s\": %s",
3197 out_file, strerror(errno));
3198 }
Damien Millerbcd00ab2013-12-07 10:41:55 +11003199 if (prime_test(in, out, rounds == 0 ? 100 : rounds,
3200 generator_wanted, checkpoint,
Damien Millerdfceafe2012-07-06 13:44:19 +10003201 start_lineno, lines_to_process) != 0)
Damien Miller15d72a02005-11-05 15:07:33 +11003202 fatal("modulus screening failed");
Darren Tuckerf4220e62003-08-21 16:44:07 +10003203 return (0);
Darren Tucker019cefe2003-08-02 22:40:07 +10003204 }
djm@openbsd.org1d9a2e22015-05-28 07:37:31 +00003205#endif
Darren Tucker019cefe2003-08-02 22:40:07 +10003206
Damien Miller58f1baf2011-05-05 14:06:15 +10003207 if (gen_all_hostkeys) {
3208 do_gen_all_hostkeys(pw);
3209 return (0);
3210 }
3211
Damien Millerf14be5c2005-11-05 15:15:49 +11003212 if (key_type_name == NULL)
djm@openbsd.orgd1958792015-05-28 04:40:13 +00003213 key_type_name = DEFAULT_KEY_TYPE_NAME;
Damien Millerf14be5c2005-11-05 15:15:49 +11003214
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00003215 type = sshkey_type_from_name(key_type_name);
djm@openbsd.org7efb4552015-01-18 13:22:28 +00003216 type_bits_valid(type, key_type_name, &bits);
Damien Miller58f1baf2011-05-05 14:06:15 +10003217
Darren Tucker3af2ac52005-11-29 13:10:24 +11003218 if (!quiet)
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00003219 printf("Generating public/private %s key pair.\n",
3220 key_type_name);
djm@openbsd.org3038a192015-04-17 13:19:22 +00003221 if ((r = sshkey_generate(type, bits, &private)) != 0)
markus@openbsd.org7da5df12017-05-30 14:16:41 +00003222 fatal("sshkey_generate failed");
djm@openbsd.org3038a192015-04-17 13:19:22 +00003223 if ((r = sshkey_from_private(private, &public)) != 0)
markus@openbsd.org7da5df12017-05-30 14:16:41 +00003224 fatal("sshkey_from_private failed: %s\n", ssh_err(r));
Damien Miller95def091999-11-25 00:26:21 +11003225
3226 if (!have_identity)
3227 ask_filename(pw, "Enter file in which to save the key");
3228
Damien Miller788f2122005-11-05 15:14:59 +11003229 /* Create ~/.ssh directory if it doesn't already exist. */
Damien Miller50af79b2010-05-10 11:52:00 +10003230 snprintf(dotsshdir, sizeof dotsshdir, "%s/%s",
3231 pw->pw_dir, _PATH_SSH_USER_DIR);
3232 if (strstr(identity_file, dotsshdir) != NULL) {
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +00003233 if (stat(dotsshdir, &st) == -1) {
Damien Miller50af79b2010-05-10 11:52:00 +10003234 if (errno != ENOENT) {
3235 error("Could not stat %s: %s", dotsshdir,
3236 strerror(errno));
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +00003237 } else if (mkdir(dotsshdir, 0700) == -1) {
Damien Miller50af79b2010-05-10 11:52:00 +10003238 error("Could not create directory '%s': %s",
3239 dotsshdir, strerror(errno));
3240 } else if (!quiet)
3241 printf("Created directory '%s'.\n", dotsshdir);
3242 }
Damien Miller95def091999-11-25 00:26:21 +11003243 }
3244 /* If the file already exists, ask the user to confirm. */
djm@openbsd.org85443f12019-09-03 08:27:52 +00003245 if (!confirm_overwrite(identity_file))
3246 exit(1);
Damien Miller95def091999-11-25 00:26:21 +11003247 /* Ask for a passphrase (twice). */
3248 if (identity_passphrase)
3249 passphrase1 = xstrdup(identity_passphrase);
3250 else if (identity_new_passphrase)
3251 passphrase1 = xstrdup(identity_new_passphrase);
3252 else {
3253passphrase_again:
3254 passphrase1 =
Ben Lindstrom949974b2001-06-25 05:20:31 +00003255 read_passphrase("Enter passphrase (empty for no "
3256 "passphrase): ", RP_ALLOW_STDIN);
3257 passphrase2 = read_passphrase("Enter same passphrase again: ",
3258 RP_ALLOW_STDIN);
Damien Miller95def091999-11-25 00:26:21 +11003259 if (strcmp(passphrase1, passphrase2) != 0) {
Ben Lindstrom949974b2001-06-25 05:20:31 +00003260 /*
3261 * The passphrases do not match. Clear them and
3262 * retry.
3263 */
Damien Millera5103f42014-02-04 11:20:14 +11003264 explicit_bzero(passphrase1, strlen(passphrase1));
3265 explicit_bzero(passphrase2, strlen(passphrase2));
Darren Tuckera627d422013-06-02 07:31:17 +10003266 free(passphrase1);
3267 free(passphrase2);
Damien Miller95def091999-11-25 00:26:21 +11003268 printf("Passphrases do not match. Try again.\n");
3269 goto passphrase_again;
3270 }
3271 /* Clear the other copy of the passphrase. */
Damien Millera5103f42014-02-04 11:20:14 +11003272 explicit_bzero(passphrase2, strlen(passphrase2));
Darren Tuckera627d422013-06-02 07:31:17 +10003273 free(passphrase2);
Damien Miller95def091999-11-25 00:26:21 +11003274 }
3275
Damien Miller95def091999-11-25 00:26:21 +11003276 if (identity_comment) {
3277 strlcpy(comment, identity_comment, sizeof(comment));
3278 } else {
Darren Tuckere15fb092008-11-11 16:31:43 +11003279 /* Create default comment field for the passphrase. */
Damien Miller95def091999-11-25 00:26:21 +11003280 snprintf(comment, sizeof comment, "%s@%s", pw->pw_name, hostname);
3281 }
3282
3283 /* Save the key with the given passphrase and comment. */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00003284 if ((r = sshkey_save_private(private, identity_file, passphrase1,
djm@openbsd.orgeb0d8e72019-07-15 13:16:29 +00003285 comment, private_key_format, openssh_format_cipher, rounds)) != 0) {
djm@openbsd.org3038a192015-04-17 13:19:22 +00003286 error("Saving key \"%s\" failed: %s",
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00003287 identity_file, ssh_err(r));
Damien Millera5103f42014-02-04 11:20:14 +11003288 explicit_bzero(passphrase1, strlen(passphrase1));
Darren Tuckera627d422013-06-02 07:31:17 +10003289 free(passphrase1);
Damien Miller95def091999-11-25 00:26:21 +11003290 exit(1);
3291 }
3292 /* Clear the passphrase. */
Damien Millera5103f42014-02-04 11:20:14 +11003293 explicit_bzero(passphrase1, strlen(passphrase1));
Darren Tuckera627d422013-06-02 07:31:17 +10003294 free(passphrase1);
Damien Miller95def091999-11-25 00:26:21 +11003295
3296 /* Clear the private key and the random number generator. */
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00003297 sshkey_free(private);
Damien Miller95def091999-11-25 00:26:21 +11003298
3299 if (!quiet)
3300 printf("Your identification has been saved in %s.\n", identity_file);
3301
Damien Miller95def091999-11-25 00:26:21 +11003302 strlcat(identity_file, ".pub", sizeof(identity_file));
djm@openbsd.org3038a192015-04-17 13:19:22 +00003303 if ((fd = open(identity_file, O_WRONLY|O_CREAT|O_TRUNC, 0644)) == -1)
3304 fatal("Unable to save public key to %s: %s",
3305 identity_file, strerror(errno));
3306 if ((f = fdopen(fd, "w")) == NULL)
3307 fatal("fdopen %s failed: %s", identity_file, strerror(errno));
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00003308 if ((r = sshkey_write(public, f)) != 0)
djm@openbsd.org3038a192015-04-17 13:19:22 +00003309 error("write key failed: %s", ssh_err(r));
Damien Millereba71ba2000-04-29 23:57:08 +10003310 fprintf(f, " %s\n", comment);
djm@openbsd.orgb56ac062018-02-10 05:43:26 +00003311 if (ferror(f) || fclose(f) != 0)
3312 fatal("write public failed: %s", strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +11003313
3314 if (!quiet) {
djm@openbsd.org9ce86c92015-01-28 22:36:00 +00003315 fp = sshkey_fingerprint(public, fingerprint_hash,
djm@openbsd.org56d1c832014-12-21 22:27:55 +00003316 SSH_FP_DEFAULT);
djm@openbsd.org9ce86c92015-01-28 22:36:00 +00003317 ra = sshkey_fingerprint(public, fingerprint_hash,
Darren Tucker9c16ac92008-06-13 04:40:35 +10003318 SSH_FP_RANDOMART);
djm@openbsd.org9ce86c92015-01-28 22:36:00 +00003319 if (fp == NULL || ra == NULL)
3320 fatal("sshkey_fingerprint failed");
Damien Millereba71ba2000-04-29 23:57:08 +10003321 printf("Your public key has been saved in %s.\n",
3322 identity_file);
Damien Miller95def091999-11-25 00:26:21 +11003323 printf("The key fingerprint is:\n");
Ben Lindstromcfccef92001-03-13 04:57:58 +00003324 printf("%s %s\n", fp, comment);
Darren Tucker9c16ac92008-06-13 04:40:35 +10003325 printf("The key's randomart image is:\n");
3326 printf("%s\n", ra);
Darren Tuckera627d422013-06-02 07:31:17 +10003327 free(ra);
3328 free(fp);
Damien Miller95def091999-11-25 00:26:21 +11003329 }
Damien Millereba71ba2000-04-29 23:57:08 +10003330
djm@openbsd.org1129dcf2015-01-15 09:40:00 +00003331 sshkey_free(public);
Damien Miller95def091999-11-25 00:26:21 +11003332 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003333}