blob: f17af036bbfa55341e4e6ce9041b0582094dd67e [file] [log] [blame]
Greg Hartman9768ca42017-06-22 20:49:52 -07001/* $OpenBSD: ssh-keygen.c,v 1.299 2017/03/10 04:26:06 djm Exp $ */
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002/*
3 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1994 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5 * All rights reserved
6 * Identity and host key generation and maintenance.
7 *
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".
13 */
14
15#include "includes.h"
16
17#include <sys/types.h>
18#include <sys/socket.h>
19#include <sys/stat.h>
Greg Hartmanbd77cf72015-02-25 13:21:06 -080020
Adam Langleyd0592972015-03-30 14:49:51 -070021#ifdef WITH_OPENSSL
Greg Hartmanbd77cf72015-02-25 13:21:06 -080022#include <openssl/evp.h>
23#include <openssl/pem.h>
24#include "openbsd-compat/openssl-compat.h"
Adam Langleyd0592972015-03-30 14:49:51 -070025#endif
Greg Hartmanbd77cf72015-02-25 13:21:06 -080026
27#include <errno.h>
28#include <fcntl.h>
29#include <netdb.h>
30#ifdef HAVE_PATHS_H
31# include <paths.h>
32#endif
33#include <pwd.h>
34#include <stdarg.h>
35#include <stdio.h>
36#include <stdlib.h>
37#include <string.h>
38#include <unistd.h>
Adam Langleyd0592972015-03-30 14:49:51 -070039#include <limits.h>
Greg Hartman9768ca42017-06-22 20:49:52 -070040#include <locale.h>
Greg Hartmanbd77cf72015-02-25 13:21:06 -080041
42#include "xmalloc.h"
Adam Langleyd0592972015-03-30 14:49:51 -070043#include "sshkey.h"
Greg Hartmanbd77cf72015-02-25 13:21:06 -080044#include "rsa.h"
45#include "authfile.h"
46#include "uuencode.h"
Adam Langleyd0592972015-03-30 14:49:51 -070047#include "sshbuf.h"
Greg Hartmanbd77cf72015-02-25 13:21:06 -080048#include "pathnames.h"
49#include "log.h"
50#include "misc.h"
51#include "match.h"
52#include "hostfile.h"
53#include "dns.h"
Adam Langleyd0592972015-03-30 14:49:51 -070054#include "ssh.h"
Greg Hartmanbd77cf72015-02-25 13:21:06 -080055#include "ssh2.h"
Adam Langleyd0592972015-03-30 14:49:51 -070056#include "ssherr.h"
Greg Hartmanbd77cf72015-02-25 13:21:06 -080057#include "ssh-pkcs11.h"
Adam Langleyd0592972015-03-30 14:49:51 -070058#include "atomicio.h"
59#include "krl.h"
60#include "digest.h"
Greg Hartman9768ca42017-06-22 20:49:52 -070061#include "utf8.h"
Greg Hartmanbd77cf72015-02-25 13:21:06 -080062
Greg Hartmanccacbc92016-02-03 09:59:44 -080063#ifdef WITH_OPENSSL
64# define DEFAULT_KEY_TYPE_NAME "rsa"
65#else
66# define DEFAULT_KEY_TYPE_NAME "ed25519"
67#endif
68
Greg Hartmanbd77cf72015-02-25 13:21:06 -080069/* Number of bits in the RSA/DSA key. This value can be set on the command line. */
70#define DEFAULT_BITS 2048
71#define DEFAULT_BITS_DSA 1024
72#define DEFAULT_BITS_ECDSA 256
73u_int32_t bits = 0;
74
75/*
76 * Flag indicating that we just want to change the passphrase. This can be
77 * set on the command line.
78 */
79int change_passphrase = 0;
80
81/*
82 * Flag indicating that we just want to change the comment. This can be set
83 * on the command line.
84 */
85int change_comment = 0;
86
87int quiet = 0;
88
89int log_level = SYSLOG_LEVEL_INFO;
90
91/* Flag indicating that we want to hash a known_hosts file */
92int hash_hosts = 0;
93/* Flag indicating that we want lookup a host in known_hosts file */
94int find_host = 0;
95/* Flag indicating that we want to delete a host from a known_hosts file */
96int delete_host = 0;
97
98/* Flag indicating that we want to show the contents of a certificate */
99int show_cert = 0;
100
101/* Flag indicating that we just want to see the key fingerprint */
102int print_fingerprint = 0;
103int print_bubblebabble = 0;
104
Adam Langleyd0592972015-03-30 14:49:51 -0700105/* Hash algorithm to use for fingerprints. */
106int fingerprint_hash = SSH_FP_HASH_DEFAULT;
107
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800108/* The identity file name, given on the command line or entered by the user. */
109char identity_file[1024];
110int have_identity = 0;
111
112/* This is set to the passphrase if given on the command line. */
113char *identity_passphrase = NULL;
114
115/* This is set to the new passphrase if given on the command line. */
116char *identity_new_passphrase = NULL;
117
118/* This is set to the new comment if given on the command line. */
119char *identity_comment = NULL;
120
121/* Path to CA key when certifying keys. */
122char *ca_key_path = NULL;
123
124/* Certificate serial number */
Adam Langleyd0592972015-03-30 14:49:51 -0700125unsigned long long cert_serial = 0;
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800126
127/* Key type when certifying */
128u_int cert_key_type = SSH2_CERT_TYPE_USER;
129
130/* "key ID" of signed key */
131char *cert_key_id = NULL;
132
133/* Comma-separated list of principal names for certifying keys */
134char *cert_principals = NULL;
135
136/* Validity period for certificates */
137u_int64_t cert_valid_from = 0;
138u_int64_t cert_valid_to = ~0ULL;
139
140/* Certificate options */
141#define CERTOPT_X_FWD (1)
142#define CERTOPT_AGENT_FWD (1<<1)
143#define CERTOPT_PORT_FWD (1<<2)
144#define CERTOPT_PTY (1<<3)
145#define CERTOPT_USER_RC (1<<4)
146#define CERTOPT_DEFAULT (CERTOPT_X_FWD|CERTOPT_AGENT_FWD| \
147 CERTOPT_PORT_FWD|CERTOPT_PTY|CERTOPT_USER_RC)
148u_int32_t certflags_flags = CERTOPT_DEFAULT;
149char *certflags_command = NULL;
150char *certflags_src_addr = NULL;
151
152/* Conversion to/from various formats */
153int convert_to = 0;
154int convert_from = 0;
155enum {
156 FMT_RFC4716,
157 FMT_PKCS8,
158 FMT_PEM
159} convert_format = FMT_RFC4716;
160int print_public = 0;
161int print_generic = 0;
162
163char *key_type_name = NULL;
164
165/* Load key from this PKCS#11 provider */
166char *pkcs11provider = NULL;
167
Adam Langleyd0592972015-03-30 14:49:51 -0700168/* Use new OpenSSH private key format when writing SSH2 keys instead of PEM */
169int use_new_format = 0;
170
171/* Cipher for new-format private keys */
172char *new_format_cipher = NULL;
173
174/*
175 * Number of KDF rounds to derive new format keys /
176 * number of primality trials when screening moduli.
177 */
178int rounds = 0;
179
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800180/* argv0 */
181extern char *__progname;
182
Adam Langleyd0592972015-03-30 14:49:51 -0700183char hostname[NI_MAXHOST];
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800184
Greg Hartmanccacbc92016-02-03 09:59:44 -0800185#ifdef WITH_OPENSSL
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800186/* moduli.c */
187int gen_candidates(FILE *, u_int32_t, u_int32_t, BIGNUM *);
Adam Langleyd0592972015-03-30 14:49:51 -0700188int prime_test(FILE *, FILE *, u_int32_t, u_int32_t, char *, unsigned long,
189 unsigned long);
Greg Hartmanccacbc92016-02-03 09:59:44 -0800190#endif
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800191
192static void
Adam Langleyd0592972015-03-30 14:49:51 -0700193type_bits_valid(int type, const char *name, u_int32_t *bitsp)
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800194{
Adam Langleyd0592972015-03-30 14:49:51 -0700195#ifdef WITH_OPENSSL
Greg Hartmanccacbc92016-02-03 09:59:44 -0800196 u_int maxbits, nid;
Adam Langleyd0592972015-03-30 14:49:51 -0700197#endif
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800198
Greg Hartmanccacbc92016-02-03 09:59:44 -0800199 if (type == KEY_UNSPEC)
200 fatal("unknown key type %s", key_type_name);
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800201 if (*bitsp == 0) {
Adam Langleyd0592972015-03-30 14:49:51 -0700202#ifdef WITH_OPENSSL
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800203 if (type == KEY_DSA)
204 *bitsp = DEFAULT_BITS_DSA;
Adam Langleyd0592972015-03-30 14:49:51 -0700205 else if (type == KEY_ECDSA) {
206 if (name != NULL &&
207 (nid = sshkey_ecdsa_nid_from_name(name)) > 0)
208 *bitsp = sshkey_curve_nid_to_bits(nid);
209 if (*bitsp == 0)
210 *bitsp = DEFAULT_BITS_ECDSA;
211 } else
212#endif
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800213 *bitsp = DEFAULT_BITS;
214 }
Adam Langleyd0592972015-03-30 14:49:51 -0700215#ifdef WITH_OPENSSL
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800216 maxbits = (type == KEY_DSA) ?
217 OPENSSL_DSA_MAX_MODULUS_BITS : OPENSSL_RSA_MAX_MODULUS_BITS;
Greg Hartmanccacbc92016-02-03 09:59:44 -0800218 if (*bitsp > maxbits)
219 fatal("key bits exceeds maximum %d", maxbits);
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800220 if (type == KEY_DSA && *bitsp != 1024)
221 fatal("DSA keys must be 1024 bits");
Greg Hartmanccacbc92016-02-03 09:59:44 -0800222 else if (type != KEY_ECDSA && type != KEY_ED25519 && *bitsp < 1024)
223 fatal("Key must at least be 1024 bits");
Adam Langleyd0592972015-03-30 14:49:51 -0700224 else if (type == KEY_ECDSA && sshkey_ecdsa_bits_to_nid(*bitsp) == -1)
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800225 fatal("Invalid ECDSA key length - valid lengths are "
226 "256, 384 or 521 bits");
Adam Langleyd0592972015-03-30 14:49:51 -0700227#endif
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800228}
229
230static void
231ask_filename(struct passwd *pw, const char *prompt)
232{
233 char buf[1024];
234 char *name = NULL;
235
236 if (key_type_name == NULL)
237 name = _PATH_SSH_CLIENT_ID_RSA;
238 else {
Adam Langleyd0592972015-03-30 14:49:51 -0700239 switch (sshkey_type_from_name(key_type_name)) {
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800240 case KEY_RSA1:
241 name = _PATH_SSH_CLIENT_IDENTITY;
242 break;
243 case KEY_DSA_CERT:
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800244 case KEY_DSA:
245 name = _PATH_SSH_CLIENT_ID_DSA;
246 break;
247#ifdef OPENSSL_HAS_ECC
248 case KEY_ECDSA_CERT:
249 case KEY_ECDSA:
250 name = _PATH_SSH_CLIENT_ID_ECDSA;
251 break;
252#endif
253 case KEY_RSA_CERT:
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800254 case KEY_RSA:
255 name = _PATH_SSH_CLIENT_ID_RSA;
256 break;
Adam Langleyd0592972015-03-30 14:49:51 -0700257 case KEY_ED25519:
258 case KEY_ED25519_CERT:
259 name = _PATH_SSH_CLIENT_ID_ED25519;
260 break;
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800261 default:
Greg Hartmanccacbc92016-02-03 09:59:44 -0800262 fatal("bad key type");
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800263 }
264 }
Greg Hartmanccacbc92016-02-03 09:59:44 -0800265 snprintf(identity_file, sizeof(identity_file),
266 "%s/%s", pw->pw_dir, name);
267 printf("%s (%s): ", prompt, identity_file);
268 fflush(stdout);
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800269 if (fgets(buf, sizeof(buf), stdin) == NULL)
270 exit(1);
271 buf[strcspn(buf, "\n")] = '\0';
272 if (strcmp(buf, "") != 0)
273 strlcpy(identity_file, buf, sizeof(identity_file));
274 have_identity = 1;
275}
276
Adam Langleyd0592972015-03-30 14:49:51 -0700277static struct sshkey *
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800278load_identity(char *filename)
279{
280 char *pass;
Adam Langleyd0592972015-03-30 14:49:51 -0700281 struct sshkey *prv;
282 int r;
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800283
Adam Langleyd0592972015-03-30 14:49:51 -0700284 if ((r = sshkey_load_private(filename, "", &prv, NULL)) == 0)
285 return prv;
286 if (r != SSH_ERR_KEY_WRONG_PASSPHRASE)
287 fatal("Load key \"%s\": %s", filename, ssh_err(r));
288 if (identity_passphrase)
289 pass = xstrdup(identity_passphrase);
290 else
291 pass = read_passphrase("Enter passphrase: ", RP_ALLOW_STDIN);
292 r = sshkey_load_private(filename, pass, &prv, NULL);
293 explicit_bzero(pass, strlen(pass));
294 free(pass);
295 if (r != 0)
296 fatal("Load key \"%s\": %s", filename, ssh_err(r));
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800297 return prv;
298}
299
300#define SSH_COM_PUBLIC_BEGIN "---- BEGIN SSH2 PUBLIC KEY ----"
301#define SSH_COM_PUBLIC_END "---- END SSH2 PUBLIC KEY ----"
302#define SSH_COM_PRIVATE_BEGIN "---- BEGIN SSH2 ENCRYPTED PRIVATE KEY ----"
303#define SSH_COM_PRIVATE_KEY_MAGIC 0x3f6ff9eb
304
Adam Langleyd0592972015-03-30 14:49:51 -0700305#ifdef WITH_OPENSSL
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800306static void
Adam Langleyd0592972015-03-30 14:49:51 -0700307do_convert_to_ssh2(struct passwd *pw, struct sshkey *k)
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800308{
Adam Langleyd0592972015-03-30 14:49:51 -0700309 size_t len;
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800310 u_char *blob;
311 char comment[61];
Adam Langleyd0592972015-03-30 14:49:51 -0700312 int r;
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800313
Greg Hartmanccacbc92016-02-03 09:59:44 -0800314 if (k->type == KEY_RSA1)
315 fatal("version 1 keys are not supported");
316 if ((r = sshkey_to_blob(k, &blob, &len)) != 0)
317 fatal("key_to_blob failed: %s", ssh_err(r));
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800318 /* Comment + surrounds must fit into 72 chars (RFC 4716 sec 3.3) */
319 snprintf(comment, sizeof(comment),
320 "%u-bit %s, converted by %s@%s from OpenSSH",
Adam Langleyd0592972015-03-30 14:49:51 -0700321 sshkey_size(k), sshkey_type(k),
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800322 pw->pw_name, hostname);
323
324 fprintf(stdout, "%s\n", SSH_COM_PUBLIC_BEGIN);
325 fprintf(stdout, "Comment: \"%s\"\n", comment);
326 dump_base64(stdout, blob, len);
327 fprintf(stdout, "%s\n", SSH_COM_PUBLIC_END);
Adam Langleyd0592972015-03-30 14:49:51 -0700328 sshkey_free(k);
329 free(blob);
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800330 exit(0);
331}
332
333static void
Adam Langleyd0592972015-03-30 14:49:51 -0700334do_convert_to_pkcs8(struct sshkey *k)
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800335{
Adam Langleyd0592972015-03-30 14:49:51 -0700336 switch (sshkey_type_plain(k->type)) {
337 case KEY_RSA1:
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800338 case KEY_RSA:
339 if (!PEM_write_RSA_PUBKEY(stdout, k->rsa))
340 fatal("PEM_write_RSA_PUBKEY failed");
341 break;
342 case KEY_DSA:
343 if (!PEM_write_DSA_PUBKEY(stdout, k->dsa))
344 fatal("PEM_write_DSA_PUBKEY failed");
345 break;
346#ifdef OPENSSL_HAS_ECC
347 case KEY_ECDSA:
348 if (!PEM_write_EC_PUBKEY(stdout, k->ecdsa))
349 fatal("PEM_write_EC_PUBKEY failed");
350 break;
351#endif
352 default:
Adam Langleyd0592972015-03-30 14:49:51 -0700353 fatal("%s: unsupported key type %s", __func__, sshkey_type(k));
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800354 }
355 exit(0);
356}
357
358static void
Adam Langleyd0592972015-03-30 14:49:51 -0700359do_convert_to_pem(struct sshkey *k)
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800360{
Adam Langleyd0592972015-03-30 14:49:51 -0700361 switch (sshkey_type_plain(k->type)) {
362 case KEY_RSA1:
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800363 case KEY_RSA:
364 if (!PEM_write_RSAPublicKey(stdout, k->rsa))
365 fatal("PEM_write_RSAPublicKey failed");
366 break;
367#if notyet /* OpenSSH 0.9.8 lacks this function */
368 case KEY_DSA:
369 if (!PEM_write_DSAPublicKey(stdout, k->dsa))
370 fatal("PEM_write_DSAPublicKey failed");
371 break;
372#endif
373 /* XXX ECDSA? */
374 default:
Adam Langleyd0592972015-03-30 14:49:51 -0700375 fatal("%s: unsupported key type %s", __func__, sshkey_type(k));
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800376 }
377 exit(0);
378}
379
380static void
381do_convert_to(struct passwd *pw)
382{
Adam Langleyd0592972015-03-30 14:49:51 -0700383 struct sshkey *k;
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800384 struct stat st;
Adam Langleyd0592972015-03-30 14:49:51 -0700385 int r;
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800386
387 if (!have_identity)
388 ask_filename(pw, "Enter file in which the key is");
389 if (stat(identity_file, &st) < 0)
390 fatal("%s: %s: %s", __progname, identity_file, strerror(errno));
Adam Langleyd0592972015-03-30 14:49:51 -0700391 if ((r = sshkey_load_public(identity_file, &k, NULL)) != 0)
392 k = load_identity(identity_file);
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800393 switch (convert_format) {
394 case FMT_RFC4716:
395 do_convert_to_ssh2(pw, k);
396 break;
397 case FMT_PKCS8:
398 do_convert_to_pkcs8(k);
399 break;
400 case FMT_PEM:
401 do_convert_to_pem(k);
402 break;
403 default:
404 fatal("%s: unknown key format %d", __func__, convert_format);
405 }
406 exit(0);
407}
408
Adam Langleyd0592972015-03-30 14:49:51 -0700409/*
410 * This is almost exactly the bignum1 encoding, but with 32 bit for length
411 * instead of 16.
412 */
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800413static void
Adam Langleyd0592972015-03-30 14:49:51 -0700414buffer_get_bignum_bits(struct sshbuf *b, BIGNUM *value)
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800415{
Adam Langleyd0592972015-03-30 14:49:51 -0700416 u_int bytes, bignum_bits;
417 int r;
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800418
Adam Langleyd0592972015-03-30 14:49:51 -0700419 if ((r = sshbuf_get_u32(b, &bignum_bits)) != 0)
420 fatal("%s: buffer error: %s", __func__, ssh_err(r));
421 bytes = (bignum_bits + 7) / 8;
422 if (sshbuf_len(b) < bytes)
423 fatal("%s: input buffer too small: need %d have %zu",
424 __func__, bytes, sshbuf_len(b));
425 if (BN_bin2bn(sshbuf_ptr(b), bytes, value) == NULL)
426 fatal("%s: BN_bin2bn failed", __func__);
427 if ((r = sshbuf_consume(b, bytes)) != 0)
428 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800429}
430
Adam Langleyd0592972015-03-30 14:49:51 -0700431static struct sshkey *
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800432do_convert_private_ssh2_from_blob(u_char *blob, u_int blen)
433{
Adam Langleyd0592972015-03-30 14:49:51 -0700434 struct sshbuf *b;
435 struct sshkey *key = NULL;
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800436 char *type, *cipher;
Adam Langleyd0592972015-03-30 14:49:51 -0700437 u_char e1, e2, e3, *sig = NULL, data[] = "abcde12345";
438 int r, rlen, ktype;
439 u_int magic, i1, i2, i3, i4;
440 size_t slen;
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800441 u_long e;
442
Adam Langleyd0592972015-03-30 14:49:51 -0700443 if ((b = sshbuf_from(blob, blen)) == NULL)
444 fatal("%s: sshbuf_from failed", __func__);
445 if ((r = sshbuf_get_u32(b, &magic)) != 0)
446 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800447
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800448 if (magic != SSH_COM_PRIVATE_KEY_MAGIC) {
Adam Langleyd0592972015-03-30 14:49:51 -0700449 error("bad magic 0x%x != 0x%x", magic,
450 SSH_COM_PRIVATE_KEY_MAGIC);
451 sshbuf_free(b);
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800452 return NULL;
453 }
Adam Langleyd0592972015-03-30 14:49:51 -0700454 if ((r = sshbuf_get_u32(b, &i1)) != 0 ||
455 (r = sshbuf_get_cstring(b, &type, NULL)) != 0 ||
456 (r = sshbuf_get_cstring(b, &cipher, NULL)) != 0 ||
457 (r = sshbuf_get_u32(b, &i2)) != 0 ||
458 (r = sshbuf_get_u32(b, &i3)) != 0 ||
459 (r = sshbuf_get_u32(b, &i4)) != 0)
460 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800461 debug("ignore (%d %d %d %d)", i1, i2, i3, i4);
462 if (strcmp(cipher, "none") != 0) {
463 error("unsupported cipher %s", cipher);
Adam Langleyd0592972015-03-30 14:49:51 -0700464 free(cipher);
465 sshbuf_free(b);
466 free(type);
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800467 return NULL;
468 }
Adam Langleyd0592972015-03-30 14:49:51 -0700469 free(cipher);
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800470
471 if (strstr(type, "dsa")) {
472 ktype = KEY_DSA;
473 } else if (strstr(type, "rsa")) {
474 ktype = KEY_RSA;
475 } else {
Adam Langleyd0592972015-03-30 14:49:51 -0700476 sshbuf_free(b);
477 free(type);
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800478 return NULL;
479 }
Adam Langleyd0592972015-03-30 14:49:51 -0700480 if ((key = sshkey_new_private(ktype)) == NULL)
481 fatal("key_new_private failed");
482 free(type);
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800483
484 switch (key->type) {
485 case KEY_DSA:
Adam Langleyd0592972015-03-30 14:49:51 -0700486 buffer_get_bignum_bits(b, key->dsa->p);
487 buffer_get_bignum_bits(b, key->dsa->g);
488 buffer_get_bignum_bits(b, key->dsa->q);
489 buffer_get_bignum_bits(b, key->dsa->pub_key);
490 buffer_get_bignum_bits(b, key->dsa->priv_key);
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800491 break;
492 case KEY_RSA:
Adam Langleyd0592972015-03-30 14:49:51 -0700493 if ((r = sshbuf_get_u8(b, &e1)) != 0 ||
494 (e1 < 30 && (r = sshbuf_get_u8(b, &e2)) != 0) ||
495 (e1 < 30 && (r = sshbuf_get_u8(b, &e3)) != 0))
496 fatal("%s: buffer error: %s", __func__, ssh_err(r));
497 e = e1;
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800498 debug("e %lx", e);
499 if (e < 30) {
500 e <<= 8;
Adam Langleyd0592972015-03-30 14:49:51 -0700501 e += e2;
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800502 debug("e %lx", e);
503 e <<= 8;
Adam Langleyd0592972015-03-30 14:49:51 -0700504 e += e3;
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800505 debug("e %lx", e);
506 }
507 if (!BN_set_word(key->rsa->e, e)) {
Adam Langleyd0592972015-03-30 14:49:51 -0700508 sshbuf_free(b);
509 sshkey_free(key);
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800510 return NULL;
511 }
Adam Langleyd0592972015-03-30 14:49:51 -0700512 buffer_get_bignum_bits(b, key->rsa->d);
513 buffer_get_bignum_bits(b, key->rsa->n);
514 buffer_get_bignum_bits(b, key->rsa->iqmp);
515 buffer_get_bignum_bits(b, key->rsa->q);
516 buffer_get_bignum_bits(b, key->rsa->p);
517 if ((r = rsa_generate_additional_parameters(key->rsa)) != 0)
518 fatal("generate RSA parameters failed: %s", ssh_err(r));
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800519 break;
520 }
Adam Langleyd0592972015-03-30 14:49:51 -0700521 rlen = sshbuf_len(b);
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800522 if (rlen != 0)
523 error("do_convert_private_ssh2_from_blob: "
524 "remaining bytes in key blob %d", rlen);
Adam Langleyd0592972015-03-30 14:49:51 -0700525 sshbuf_free(b);
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800526
527 /* try the key */
Greg Hartman9768ca42017-06-22 20:49:52 -0700528 if (sshkey_sign(key, &sig, &slen, data, sizeof(data), NULL, 0) != 0 ||
Adam Langleyd0592972015-03-30 14:49:51 -0700529 sshkey_verify(key, sig, slen, data, sizeof(data), 0) != 0) {
530 sshkey_free(key);
531 free(sig);
532 return NULL;
533 }
534 free(sig);
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800535 return key;
536}
537
538static int
539get_line(FILE *fp, char *line, size_t len)
540{
541 int c;
542 size_t pos = 0;
543
544 line[0] = '\0';
545 while ((c = fgetc(fp)) != EOF) {
Greg Hartmanccacbc92016-02-03 09:59:44 -0800546 if (pos >= len - 1)
547 fatal("input line too long.");
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800548 switch (c) {
549 case '\r':
550 c = fgetc(fp);
Greg Hartmanccacbc92016-02-03 09:59:44 -0800551 if (c != EOF && c != '\n' && ungetc(c, fp) == EOF)
552 fatal("unget: %s", strerror(errno));
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800553 return pos;
554 case '\n':
555 return pos;
556 }
557 line[pos++] = c;
558 line[pos] = '\0';
559 }
560 /* We reached EOF */
561 return -1;
562}
563
564static void
Adam Langleyd0592972015-03-30 14:49:51 -0700565do_convert_from_ssh2(struct passwd *pw, struct sshkey **k, int *private)
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800566{
Adam Langleyd0592972015-03-30 14:49:51 -0700567 int r, blen, escaped = 0;
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800568 u_int len;
569 char line[1024];
570 u_char blob[8096];
571 char encoded[8096];
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800572 FILE *fp;
573
574 if ((fp = fopen(identity_file, "r")) == NULL)
575 fatal("%s: %s: %s", __progname, identity_file, strerror(errno));
576 encoded[0] = '\0';
577 while ((blen = get_line(fp, line, sizeof(line))) != -1) {
Adam Langleyd0592972015-03-30 14:49:51 -0700578 if (blen > 0 && line[blen - 1] == '\\')
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800579 escaped++;
580 if (strncmp(line, "----", 4) == 0 ||
581 strstr(line, ": ") != NULL) {
582 if (strstr(line, SSH_COM_PRIVATE_BEGIN) != NULL)
583 *private = 1;
584 if (strstr(line, " END ") != NULL) {
585 break;
586 }
587 /* fprintf(stderr, "ignore: %s", line); */
588 continue;
589 }
590 if (escaped) {
591 escaped--;
592 /* fprintf(stderr, "escaped: %s", line); */
593 continue;
594 }
595 strlcat(encoded, line, sizeof(encoded));
596 }
597 len = strlen(encoded);
598 if (((len % 4) == 3) &&
599 (encoded[len-1] == '=') &&
600 (encoded[len-2] == '=') &&
601 (encoded[len-3] == '='))
602 encoded[len-3] = '\0';
603 blen = uudecode(encoded, blob, sizeof(blob));
Greg Hartmanccacbc92016-02-03 09:59:44 -0800604 if (blen < 0)
605 fatal("uudecode failed.");
Adam Langleyd0592972015-03-30 14:49:51 -0700606 if (*private)
607 *k = do_convert_private_ssh2_from_blob(blob, blen);
Greg Hartmanccacbc92016-02-03 09:59:44 -0800608 else if ((r = sshkey_from_blob(blob, blen, k)) != 0)
609 fatal("decode blob failed: %s", ssh_err(r));
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800610 fclose(fp);
611}
612
613static void
Adam Langleyd0592972015-03-30 14:49:51 -0700614do_convert_from_pkcs8(struct sshkey **k, int *private)
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800615{
616 EVP_PKEY *pubkey;
617 FILE *fp;
618
619 if ((fp = fopen(identity_file, "r")) == NULL)
620 fatal("%s: %s: %s", __progname, identity_file, strerror(errno));
621 if ((pubkey = PEM_read_PUBKEY(fp, NULL, NULL, NULL)) == NULL) {
622 fatal("%s: %s is not a recognised public key format", __func__,
623 identity_file);
624 }
625 fclose(fp);
626 switch (EVP_PKEY_type(pubkey->type)) {
627 case EVP_PKEY_RSA:
Adam Langleyd0592972015-03-30 14:49:51 -0700628 if ((*k = sshkey_new(KEY_UNSPEC)) == NULL)
629 fatal("sshkey_new failed");
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800630 (*k)->type = KEY_RSA;
631 (*k)->rsa = EVP_PKEY_get1_RSA(pubkey);
632 break;
633 case EVP_PKEY_DSA:
Adam Langleyd0592972015-03-30 14:49:51 -0700634 if ((*k = sshkey_new(KEY_UNSPEC)) == NULL)
635 fatal("sshkey_new failed");
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800636 (*k)->type = KEY_DSA;
637 (*k)->dsa = EVP_PKEY_get1_DSA(pubkey);
638 break;
639#ifdef OPENSSL_HAS_ECC
640 case EVP_PKEY_EC:
Adam Langleyd0592972015-03-30 14:49:51 -0700641 if ((*k = sshkey_new(KEY_UNSPEC)) == NULL)
642 fatal("sshkey_new failed");
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800643 (*k)->type = KEY_ECDSA;
644 (*k)->ecdsa = EVP_PKEY_get1_EC_KEY(pubkey);
Adam Langleyd0592972015-03-30 14:49:51 -0700645 (*k)->ecdsa_nid = sshkey_ecdsa_key_to_nid((*k)->ecdsa);
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800646 break;
647#endif
648 default:
649 fatal("%s: unsupported pubkey type %d", __func__,
650 EVP_PKEY_type(pubkey->type));
651 }
652 EVP_PKEY_free(pubkey);
653 return;
654}
655
656static void
Adam Langleyd0592972015-03-30 14:49:51 -0700657do_convert_from_pem(struct sshkey **k, int *private)
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800658{
659 FILE *fp;
660 RSA *rsa;
661#ifdef notyet
662 DSA *dsa;
663#endif
664
665 if ((fp = fopen(identity_file, "r")) == NULL)
666 fatal("%s: %s: %s", __progname, identity_file, strerror(errno));
667 if ((rsa = PEM_read_RSAPublicKey(fp, NULL, NULL, NULL)) != NULL) {
Adam Langleyd0592972015-03-30 14:49:51 -0700668 if ((*k = sshkey_new(KEY_UNSPEC)) == NULL)
669 fatal("sshkey_new failed");
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800670 (*k)->type = KEY_RSA;
671 (*k)->rsa = rsa;
672 fclose(fp);
673 return;
674 }
675#if notyet /* OpenSSH 0.9.8 lacks this function */
676 rewind(fp);
677 if ((dsa = PEM_read_DSAPublicKey(fp, NULL, NULL, NULL)) != NULL) {
Adam Langleyd0592972015-03-30 14:49:51 -0700678 if ((*k = sshkey_new(KEY_UNSPEC)) == NULL)
679 fatal("sshkey_new failed");
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800680 (*k)->type = KEY_DSA;
681 (*k)->dsa = dsa;
682 fclose(fp);
683 return;
684 }
685 /* XXX ECDSA */
686#endif
687 fatal("%s: unrecognised raw private key format", __func__);
688}
689
690static void
691do_convert_from(struct passwd *pw)
692{
Adam Langleyd0592972015-03-30 14:49:51 -0700693 struct sshkey *k = NULL;
694 int r, private = 0, ok = 0;
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800695 struct stat st;
696
697 if (!have_identity)
698 ask_filename(pw, "Enter file in which the key is");
699 if (stat(identity_file, &st) < 0)
700 fatal("%s: %s: %s", __progname, identity_file, strerror(errno));
701
702 switch (convert_format) {
703 case FMT_RFC4716:
704 do_convert_from_ssh2(pw, &k, &private);
705 break;
706 case FMT_PKCS8:
707 do_convert_from_pkcs8(&k, &private);
708 break;
709 case FMT_PEM:
710 do_convert_from_pem(&k, &private);
711 break;
712 default:
713 fatal("%s: unknown key format %d", __func__, convert_format);
714 }
715
Adam Langleyd0592972015-03-30 14:49:51 -0700716 if (!private) {
717 if ((r = sshkey_write(k, stdout)) == 0)
718 ok = 1;
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800719 if (ok)
720 fprintf(stdout, "\n");
Adam Langleyd0592972015-03-30 14:49:51 -0700721 } else {
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800722 switch (k->type) {
723 case KEY_DSA:
724 ok = PEM_write_DSAPrivateKey(stdout, k->dsa, NULL,
725 NULL, 0, NULL, NULL);
726 break;
727#ifdef OPENSSL_HAS_ECC
728 case KEY_ECDSA:
729 ok = PEM_write_ECPrivateKey(stdout, k->ecdsa, NULL,
730 NULL, 0, NULL, NULL);
731 break;
732#endif
733 case KEY_RSA:
734 ok = PEM_write_RSAPrivateKey(stdout, k->rsa, NULL,
735 NULL, 0, NULL, NULL);
736 break;
737 default:
738 fatal("%s: unsupported key type %s", __func__,
Adam Langleyd0592972015-03-30 14:49:51 -0700739 sshkey_type(k));
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800740 }
741 }
742
Greg Hartmanccacbc92016-02-03 09:59:44 -0800743 if (!ok)
744 fatal("key write failed");
Adam Langleyd0592972015-03-30 14:49:51 -0700745 sshkey_free(k);
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800746 exit(0);
747}
Adam Langleyd0592972015-03-30 14:49:51 -0700748#endif
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800749
750static void
751do_print_public(struct passwd *pw)
752{
Adam Langleyd0592972015-03-30 14:49:51 -0700753 struct sshkey *prv;
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800754 struct stat st;
Adam Langleyd0592972015-03-30 14:49:51 -0700755 int r;
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800756
757 if (!have_identity)
758 ask_filename(pw, "Enter file in which the key is");
Greg Hartmanccacbc92016-02-03 09:59:44 -0800759 if (stat(identity_file, &st) < 0)
760 fatal("%s: %s", identity_file, strerror(errno));
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800761 prv = load_identity(identity_file);
Adam Langleyd0592972015-03-30 14:49:51 -0700762 if ((r = sshkey_write(prv, stdout)) != 0)
Greg Hartmanccacbc92016-02-03 09:59:44 -0800763 error("key_write failed: %s", ssh_err(r));
Adam Langleyd0592972015-03-30 14:49:51 -0700764 sshkey_free(prv);
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800765 fprintf(stdout, "\n");
766 exit(0);
767}
768
769static void
770do_download(struct passwd *pw)
771{
772#ifdef ENABLE_PKCS11
Adam Langleyd0592972015-03-30 14:49:51 -0700773 struct sshkey **keys = NULL;
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800774 int i, nkeys;
Adam Langleyd0592972015-03-30 14:49:51 -0700775 enum sshkey_fp_rep rep;
776 int fptype;
777 char *fp, *ra;
778
779 fptype = print_bubblebabble ? SSH_DIGEST_SHA1 : fingerprint_hash;
780 rep = print_bubblebabble ? SSH_FP_BUBBLEBABBLE : SSH_FP_DEFAULT;
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800781
782 pkcs11_init(0);
783 nkeys = pkcs11_add_provider(pkcs11provider, NULL, &keys);
784 if (nkeys <= 0)
785 fatal("cannot read public key from pkcs11");
786 for (i = 0; i < nkeys; i++) {
Adam Langleyd0592972015-03-30 14:49:51 -0700787 if (print_fingerprint) {
788 fp = sshkey_fingerprint(keys[i], fptype, rep);
789 ra = sshkey_fingerprint(keys[i], fingerprint_hash,
790 SSH_FP_RANDOMART);
791 if (fp == NULL || ra == NULL)
792 fatal("%s: sshkey_fingerprint fail", __func__);
793 printf("%u %s %s (PKCS11 key)\n", sshkey_size(keys[i]),
794 fp, sshkey_type(keys[i]));
795 if (log_level >= SYSLOG_LEVEL_VERBOSE)
796 printf("%s\n", ra);
797 free(ra);
798 free(fp);
799 } else {
800 (void) sshkey_write(keys[i], stdout); /* XXX check */
801 fprintf(stdout, "\n");
802 }
803 sshkey_free(keys[i]);
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800804 }
Adam Langleyd0592972015-03-30 14:49:51 -0700805 free(keys);
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800806 pkcs11_terminate();
807 exit(0);
808#else
809 fatal("no pkcs11 support");
810#endif /* ENABLE_PKCS11 */
811}
812
Greg Hartman9768ca42017-06-22 20:49:52 -0700813static struct sshkey *
814try_read_key(char **cpp)
815{
816 struct sshkey *ret;
817 int r;
818
819 if ((ret = sshkey_new(KEY_RSA1)) == NULL)
820 fatal("sshkey_new failed");
821 /* Try RSA1 */
822 if ((r = sshkey_read(ret, cpp)) == 0)
823 return ret;
824 /* Try modern */
825 sshkey_free(ret);
826 if ((ret = sshkey_new(KEY_UNSPEC)) == NULL)
827 fatal("sshkey_new failed");
828 if ((r = sshkey_read(ret, cpp)) == 0)
829 return ret;
830 /* Not a key */
831 sshkey_free(ret);
832 return NULL;
833}
834
835static void
836fingerprint_one_key(const struct sshkey *public, const char *comment)
837{
838 char *fp = NULL, *ra = NULL;
839 enum sshkey_fp_rep rep;
840 int fptype;
841
842 fptype = print_bubblebabble ? SSH_DIGEST_SHA1 : fingerprint_hash;
843 rep = print_bubblebabble ? SSH_FP_BUBBLEBABBLE : SSH_FP_DEFAULT;
844 fp = sshkey_fingerprint(public, fptype, rep);
845 ra = sshkey_fingerprint(public, fingerprint_hash, SSH_FP_RANDOMART);
846 if (fp == NULL || ra == NULL)
847 fatal("%s: sshkey_fingerprint failed", __func__);
848 mprintf("%u %s %s (%s)\n", sshkey_size(public), fp,
849 comment ? comment : "no comment", sshkey_type(public));
850 if (log_level >= SYSLOG_LEVEL_VERBOSE)
851 printf("%s\n", ra);
852 free(ra);
853 free(fp);
854}
855
856static void
857fingerprint_private(const char *path)
858{
859 struct stat st;
860 char *comment = NULL;
861 struct sshkey *public = NULL;
862 int r;
863
864 if (stat(identity_file, &st) < 0)
865 fatal("%s: %s", path, strerror(errno));
866 if ((r = sshkey_load_public(path, &public, &comment)) != 0) {
867 debug("load public \"%s\": %s", path, ssh_err(r));
868 if ((r = sshkey_load_private(path, NULL,
869 &public, &comment)) != 0) {
870 debug("load private \"%s\": %s", path, ssh_err(r));
871 fatal("%s is not a key file.", path);
872 }
873 }
874
875 fingerprint_one_key(public, comment);
876 sshkey_free(public);
877 free(comment);
878}
879
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800880static void
881do_fingerprint(struct passwd *pw)
882{
883 FILE *f;
Greg Hartman9768ca42017-06-22 20:49:52 -0700884 struct sshkey *public = NULL;
885 char *comment = NULL, *cp, *ep, line[SSH_MAX_PUBKEY_BYTES];
886 int i, invalid = 1;
887 const char *path;
888 u_long lnum = 0;
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800889
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800890 if (!have_identity)
891 ask_filename(pw, "Enter file in which the key is");
Greg Hartman9768ca42017-06-22 20:49:52 -0700892 path = identity_file;
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800893
Greg Hartman9768ca42017-06-22 20:49:52 -0700894 if (strcmp(identity_file, "-") == 0) {
895 f = stdin;
896 path = "(stdin)";
897 } else if ((f = fopen(path, "r")) == NULL)
898 fatal("%s: %s: %s", __progname, path, strerror(errno));
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800899
Greg Hartman9768ca42017-06-22 20:49:52 -0700900 while (read_keyfile_line(f, path, line, sizeof(line), &lnum) == 0) {
901 cp = line;
902 cp[strcspn(cp, "\n")] = '\0';
903 /* Trim leading space and comments */
904 cp = line + strspn(line, " \t");
905 if (*cp == '#' || *cp == '\0')
906 continue;
907
908 /*
909 * Input may be plain keys, private keys, authorized_keys
910 * or known_hosts.
911 */
912
913 /*
914 * Try private keys first. Assume a key is private if
915 * "SSH PRIVATE KEY" appears on the first line and we're
916 * not reading from stdin (XXX support private keys on stdin).
917 */
918 if (lnum == 1 && strcmp(identity_file, "-") != 0 &&
919 strstr(cp, "PRIVATE KEY") != NULL) {
920 fclose(f);
921 fingerprint_private(path);
922 exit(0);
923 }
924
925 /*
926 * If it's not a private key, then this must be prepared to
927 * accept a public key prefixed with a hostname or options.
928 * Try a bare key first, otherwise skip the leading stuff.
929 */
930 if ((public = try_read_key(&cp)) == NULL) {
931 i = strtol(cp, &ep, 10);
932 if (i == 0 || ep == NULL ||
933 (*ep != ' ' && *ep != '\t')) {
934 int quoted = 0;
935
936 comment = cp;
937 for (; *cp && (quoted || (*cp != ' ' &&
938 *cp != '\t')); cp++) {
939 if (*cp == '\\' && cp[1] == '"')
940 cp++; /* Skip both */
941 else if (*cp == '"')
942 quoted = !quoted;
943 }
944 if (!*cp)
945 continue;
946 *cp++ = '\0';
947 }
948 }
949 /* Retry after parsing leading hostname/key options */
950 if (public == NULL && (public = try_read_key(&cp)) == NULL) {
951 debug("%s:%lu: not a public key", path, lnum);
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800952 continue;
953 }
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800954
Greg Hartman9768ca42017-06-22 20:49:52 -0700955 /* Find trailing comment, if any */
956 for (; *cp == ' ' || *cp == '\t'; cp++)
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800957 ;
Greg Hartman9768ca42017-06-22 20:49:52 -0700958 if (*cp != '\0' && *cp != '#')
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800959 comment = cp;
Greg Hartman9768ca42017-06-22 20:49:52 -0700960
961 fingerprint_one_key(public, comment);
Adam Langleyd0592972015-03-30 14:49:51 -0700962 sshkey_free(public);
Greg Hartman9768ca42017-06-22 20:49:52 -0700963 invalid = 0; /* One good key in the file is sufficient */
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800964 }
965 fclose(f);
966
Greg Hartmanccacbc92016-02-03 09:59:44 -0800967 if (invalid)
Greg Hartman9768ca42017-06-22 20:49:52 -0700968 fatal("%s is not a public key file.", path);
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800969 exit(0);
970}
971
972static void
973do_gen_all_hostkeys(struct passwd *pw)
974{
975 struct {
976 char *key_type;
977 char *key_type_display;
978 char *path;
979 } key_types[] = {
Greg Hartmanccacbc92016-02-03 09:59:44 -0800980#ifdef WITH_OPENSSL
981#ifdef WITH_SSH1
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800982 { "rsa1", "RSA1", _PATH_HOST_KEY_FILE },
Greg Hartmanccacbc92016-02-03 09:59:44 -0800983#endif /* WITH_SSH1 */
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800984 { "rsa", "RSA" ,_PATH_HOST_RSA_KEY_FILE },
985 { "dsa", "DSA", _PATH_HOST_DSA_KEY_FILE },
Adam Langleyd0592972015-03-30 14:49:51 -0700986#ifdef OPENSSL_HAS_ECC
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800987 { "ecdsa", "ECDSA",_PATH_HOST_ECDSA_KEY_FILE },
Greg Hartmanccacbc92016-02-03 09:59:44 -0800988#endif /* OPENSSL_HAS_ECC */
989#endif /* WITH_OPENSSL */
Adam Langleyd0592972015-03-30 14:49:51 -0700990 { "ed25519", "ED25519",_PATH_HOST_ED25519_KEY_FILE },
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800991 { NULL, NULL, NULL }
992 };
993
994 int first = 0;
995 struct stat st;
Adam Langleyd0592972015-03-30 14:49:51 -0700996 struct sshkey *private, *public;
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800997 char comment[1024];
Adam Langleyd0592972015-03-30 14:49:51 -0700998 int i, type, fd, r;
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800999 FILE *f;
1000
1001 for (i = 0; key_types[i].key_type; i++) {
1002 if (stat(key_types[i].path, &st) == 0)
1003 continue;
1004 if (errno != ENOENT) {
Greg Hartmanccacbc92016-02-03 09:59:44 -08001005 error("Could not stat %s: %s", key_types[i].path,
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001006 strerror(errno));
1007 first = 0;
1008 continue;
1009 }
1010
1011 if (first == 0) {
1012 first = 1;
1013 printf("%s: generating new host keys: ", __progname);
1014 }
1015 printf("%s ", key_types[i].key_type_display);
1016 fflush(stdout);
Adam Langleyd0592972015-03-30 14:49:51 -07001017 type = sshkey_type_from_name(key_types[i].key_type);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001018 strlcpy(identity_file, key_types[i].path, sizeof(identity_file));
1019 bits = 0;
Adam Langleyd0592972015-03-30 14:49:51 -07001020 type_bits_valid(type, NULL, &bits);
1021 if ((r = sshkey_generate(type, bits, &private)) != 0) {
Greg Hartmanccacbc92016-02-03 09:59:44 -08001022 error("key_generate failed: %s", ssh_err(r));
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001023 first = 0;
1024 continue;
1025 }
Adam Langleyd0592972015-03-30 14:49:51 -07001026 if ((r = sshkey_from_private(private, &public)) != 0)
1027 fatal("sshkey_from_private failed: %s", ssh_err(r));
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001028 snprintf(comment, sizeof comment, "%s@%s", pw->pw_name,
1029 hostname);
Adam Langleyd0592972015-03-30 14:49:51 -07001030 if ((r = sshkey_save_private(private, identity_file, "",
1031 comment, use_new_format, new_format_cipher, rounds)) != 0) {
Greg Hartmanccacbc92016-02-03 09:59:44 -08001032 error("Saving key \"%s\" failed: %s",
1033 identity_file, ssh_err(r));
Adam Langleyd0592972015-03-30 14:49:51 -07001034 sshkey_free(private);
1035 sshkey_free(public);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001036 first = 0;
1037 continue;
1038 }
Adam Langleyd0592972015-03-30 14:49:51 -07001039 sshkey_free(private);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001040 strlcat(identity_file, ".pub", sizeof(identity_file));
1041 fd = open(identity_file, O_WRONLY | O_CREAT | O_TRUNC, 0644);
1042 if (fd == -1) {
Greg Hartmanccacbc92016-02-03 09:59:44 -08001043 error("Could not save your public key in %s",
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001044 identity_file);
Adam Langleyd0592972015-03-30 14:49:51 -07001045 sshkey_free(public);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001046 first = 0;
1047 continue;
1048 }
1049 f = fdopen(fd, "w");
1050 if (f == NULL) {
Greg Hartmanccacbc92016-02-03 09:59:44 -08001051 error("fdopen %s failed", identity_file);
Adam Langleyd0592972015-03-30 14:49:51 -07001052 close(fd);
1053 sshkey_free(public);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001054 first = 0;
1055 continue;
1056 }
Adam Langleyd0592972015-03-30 14:49:51 -07001057 if ((r = sshkey_write(public, f)) != 0) {
Greg Hartmanccacbc92016-02-03 09:59:44 -08001058 error("write key failed: %s", ssh_err(r));
Adam Langleyd0592972015-03-30 14:49:51 -07001059 fclose(f);
1060 sshkey_free(public);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001061 first = 0;
1062 continue;
1063 }
1064 fprintf(f, " %s\n", comment);
1065 fclose(f);
Adam Langleyd0592972015-03-30 14:49:51 -07001066 sshkey_free(public);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001067
1068 }
1069 if (first != 0)
1070 printf("\n");
1071}
1072
Adam Langleyd0592972015-03-30 14:49:51 -07001073struct known_hosts_ctx {
1074 const char *host; /* Hostname searched for in find/delete case */
1075 FILE *out; /* Output file, stdout for find_hosts case */
1076 int has_unhashed; /* When hashing, original had unhashed hosts */
1077 int found_key; /* For find/delete, host was found */
1078 int invalid; /* File contained invalid items; don't delete */
1079};
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001080
Adam Langleyd0592972015-03-30 14:49:51 -07001081static int
1082known_hosts_hash(struct hostkey_foreach_line *l, void *_ctx)
1083{
1084 struct known_hosts_ctx *ctx = (struct known_hosts_ctx *)_ctx;
1085 char *hashed, *cp, *hosts, *ohosts;
1086 int has_wild = l->hosts && strcspn(l->hosts, "*?!") != strlen(l->hosts);
Greg Hartman9768ca42017-06-22 20:49:52 -07001087 int was_hashed = l->hosts && l->hosts[0] == HASH_DELIM;
Adam Langleyd0592972015-03-30 14:49:51 -07001088
1089 switch (l->status) {
1090 case HKF_STATUS_OK:
1091 case HKF_STATUS_MATCHED:
1092 /*
1093 * Don't hash hosts already already hashed, with wildcard
1094 * characters or a CA/revocation marker.
1095 */
Greg Hartman9768ca42017-06-22 20:49:52 -07001096 if (was_hashed || has_wild || l->marker != MRK_NONE) {
Adam Langleyd0592972015-03-30 14:49:51 -07001097 fprintf(ctx->out, "%s\n", l->line);
1098 if (has_wild && !find_host) {
Greg Hartman9768ca42017-06-22 20:49:52 -07001099 logit("%s:%lu: ignoring host name "
Greg Hartmanccacbc92016-02-03 09:59:44 -08001100 "with wildcard: %.64s", l->path,
Adam Langleyd0592972015-03-30 14:49:51 -07001101 l->linenum, l->hosts);
1102 }
1103 return 0;
1104 }
1105 /*
1106 * Split any comma-separated hostnames from the host list,
1107 * hash and store separately.
1108 */
1109 ohosts = hosts = xstrdup(l->hosts);
1110 while ((cp = strsep(&hosts, ",")) != NULL && *cp != '\0') {
Greg Hartman9768ca42017-06-22 20:49:52 -07001111 lowercase(cp);
Adam Langleyd0592972015-03-30 14:49:51 -07001112 if ((hashed = host_hash(cp, NULL, 0)) == NULL)
1113 fatal("hash_host failed");
1114 fprintf(ctx->out, "%s %s\n", hashed, l->rawkey);
1115 ctx->has_unhashed = 1;
1116 }
1117 free(ohosts);
1118 return 0;
1119 case HKF_STATUS_INVALID:
1120 /* Retain invalid lines, but mark file as invalid. */
1121 ctx->invalid = 1;
Greg Hartman9768ca42017-06-22 20:49:52 -07001122 logit("%s:%lu: invalid line", l->path, l->linenum);
Adam Langleyd0592972015-03-30 14:49:51 -07001123 /* FALLTHROUGH */
1124 default:
1125 fprintf(ctx->out, "%s\n", l->line);
1126 return 0;
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001127 }
Adam Langleyd0592972015-03-30 14:49:51 -07001128 /* NOTREACHED */
1129 return -1;
1130}
1131
1132static int
1133known_hosts_find_delete(struct hostkey_foreach_line *l, void *_ctx)
1134{
1135 struct known_hosts_ctx *ctx = (struct known_hosts_ctx *)_ctx;
Greg Hartmanccacbc92016-02-03 09:59:44 -08001136 enum sshkey_fp_rep rep;
1137 int fptype;
1138 char *fp;
1139
1140 fptype = print_bubblebabble ? SSH_DIGEST_SHA1 : fingerprint_hash;
1141 rep = print_bubblebabble ? SSH_FP_BUBBLEBABBLE : SSH_FP_DEFAULT;
Adam Langleyd0592972015-03-30 14:49:51 -07001142
1143 if (l->status == HKF_STATUS_MATCHED) {
1144 if (delete_host) {
1145 if (l->marker != MRK_NONE) {
1146 /* Don't remove CA and revocation lines */
1147 fprintf(ctx->out, "%s\n", l->line);
1148 } else {
1149 /*
1150 * Hostname matches and has no CA/revoke
1151 * marker, delete it by *not* writing the
1152 * line to ctx->out.
1153 */
1154 ctx->found_key = 1;
1155 if (!quiet)
Greg Hartman9768ca42017-06-22 20:49:52 -07001156 printf("# Host %s found: line %lu\n",
Adam Langleyd0592972015-03-30 14:49:51 -07001157 ctx->host, l->linenum);
1158 }
1159 return 0;
1160 } else if (find_host) {
1161 ctx->found_key = 1;
1162 if (!quiet) {
Greg Hartman9768ca42017-06-22 20:49:52 -07001163 printf("# Host %s found: line %lu %s\n",
Adam Langleyd0592972015-03-30 14:49:51 -07001164 ctx->host,
1165 l->linenum, l->marker == MRK_CA ? "CA" :
1166 (l->marker == MRK_REVOKE ? "REVOKED" : ""));
1167 }
1168 if (hash_hosts)
1169 known_hosts_hash(l, ctx);
Greg Hartmanccacbc92016-02-03 09:59:44 -08001170 else if (print_fingerprint) {
1171 fp = sshkey_fingerprint(l->key, fptype, rep);
Greg Hartman9768ca42017-06-22 20:49:52 -07001172 mprintf("%s %s %s %s\n", ctx->host,
Greg Hartmanccacbc92016-02-03 09:59:44 -08001173 sshkey_type(l->key), fp, l->comment);
1174 free(fp);
1175 } else
Adam Langleyd0592972015-03-30 14:49:51 -07001176 fprintf(ctx->out, "%s\n", l->line);
1177 return 0;
1178 }
1179 } else if (delete_host) {
1180 /* Retain non-matching hosts when deleting */
1181 if (l->status == HKF_STATUS_INVALID) {
1182 ctx->invalid = 1;
Greg Hartman9768ca42017-06-22 20:49:52 -07001183 logit("%s:%lu: invalid line", l->path, l->linenum);
Adam Langleyd0592972015-03-30 14:49:51 -07001184 }
1185 fprintf(ctx->out, "%s\n", l->line);
1186 }
1187 return 0;
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001188}
1189
1190static void
1191do_known_hosts(struct passwd *pw, const char *name)
1192{
Adam Langleyd0592972015-03-30 14:49:51 -07001193 char *cp, tmp[PATH_MAX], old[PATH_MAX];
1194 int r, fd, oerrno, inplace = 0;
1195 struct known_hosts_ctx ctx;
Greg Hartmanccacbc92016-02-03 09:59:44 -08001196 u_int foreach_options;
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001197
1198 if (!have_identity) {
1199 cp = tilde_expand_filename(_PATH_SSH_USER_HOSTFILE, pw->pw_uid);
1200 if (strlcpy(identity_file, cp, sizeof(identity_file)) >=
1201 sizeof(identity_file))
1202 fatal("Specified known hosts path too long");
Adam Langleyd0592972015-03-30 14:49:51 -07001203 free(cp);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001204 have_identity = 1;
1205 }
Adam Langleyd0592972015-03-30 14:49:51 -07001206
1207 memset(&ctx, 0, sizeof(ctx));
1208 ctx.out = stdout;
1209 ctx.host = name;
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001210
1211 /*
1212 * Find hosts goes to stdout, hash and deletions happen in-place
1213 * A corner case is ssh-keygen -HF foo, which should go to stdout
1214 */
1215 if (!find_host && (hash_hosts || delete_host)) {
1216 if (strlcpy(tmp, identity_file, sizeof(tmp)) >= sizeof(tmp) ||
1217 strlcat(tmp, ".XXXXXXXXXX", sizeof(tmp)) >= sizeof(tmp) ||
1218 strlcpy(old, identity_file, sizeof(old)) >= sizeof(old) ||
1219 strlcat(old, ".old", sizeof(old)) >= sizeof(old))
1220 fatal("known_hosts path too long");
1221 umask(077);
Adam Langleyd0592972015-03-30 14:49:51 -07001222 if ((fd = mkstemp(tmp)) == -1)
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001223 fatal("mkstemp: %s", strerror(errno));
Adam Langleyd0592972015-03-30 14:49:51 -07001224 if ((ctx.out = fdopen(fd, "w")) == NULL) {
1225 oerrno = errno;
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001226 unlink(tmp);
Adam Langleyd0592972015-03-30 14:49:51 -07001227 fatal("fdopen: %s", strerror(oerrno));
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001228 }
1229 inplace = 1;
1230 }
1231
Adam Langleyd0592972015-03-30 14:49:51 -07001232 /* XXX support identity_file == "-" for stdin */
Greg Hartmanccacbc92016-02-03 09:59:44 -08001233 foreach_options = find_host ? HKF_WANT_MATCH : 0;
1234 foreach_options |= print_fingerprint ? HKF_WANT_PARSE_KEY : 0;
Adam Langleyd0592972015-03-30 14:49:51 -07001235 if ((r = hostkeys_foreach(identity_file,
1236 hash_hosts ? known_hosts_hash : known_hosts_find_delete, &ctx,
Greg Hartman9768ca42017-06-22 20:49:52 -07001237 name, NULL, foreach_options)) != 0) {
1238 if (inplace)
1239 unlink(tmp);
Adam Langleyd0592972015-03-30 14:49:51 -07001240 fatal("%s: hostkeys_foreach failed: %s", __func__, ssh_err(r));
Greg Hartman9768ca42017-06-22 20:49:52 -07001241 }
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001242
Adam Langleyd0592972015-03-30 14:49:51 -07001243 if (inplace)
1244 fclose(ctx.out);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001245
Adam Langleyd0592972015-03-30 14:49:51 -07001246 if (ctx.invalid) {
Greg Hartmanccacbc92016-02-03 09:59:44 -08001247 error("%s is not a valid known_hosts file.", identity_file);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001248 if (inplace) {
Greg Hartmanccacbc92016-02-03 09:59:44 -08001249 error("Not replacing existing known_hosts "
1250 "file because of errors");
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001251 unlink(tmp);
1252 }
1253 exit(1);
Adam Langleyd0592972015-03-30 14:49:51 -07001254 } else if (delete_host && !ctx.found_key) {
Greg Hartmanccacbc92016-02-03 09:59:44 -08001255 logit("Host %s not found in %s", name, identity_file);
1256 if (inplace)
1257 unlink(tmp);
Adam Langleyd0592972015-03-30 14:49:51 -07001258 } else if (inplace) {
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001259 /* Backup existing file */
1260 if (unlink(old) == -1 && errno != ENOENT)
1261 fatal("unlink %.100s: %s", old, strerror(errno));
1262 if (link(identity_file, old) == -1)
1263 fatal("link %.100s to %.100s: %s", identity_file, old,
1264 strerror(errno));
1265 /* Move new one into place */
1266 if (rename(tmp, identity_file) == -1) {
1267 error("rename\"%s\" to \"%s\": %s", tmp, identity_file,
1268 strerror(errno));
1269 unlink(tmp);
1270 unlink(old);
1271 exit(1);
1272 }
1273
Greg Hartmanccacbc92016-02-03 09:59:44 -08001274 printf("%s updated.\n", identity_file);
1275 printf("Original contents retained as %s\n", old);
Adam Langleyd0592972015-03-30 14:49:51 -07001276 if (ctx.has_unhashed) {
Greg Hartmanccacbc92016-02-03 09:59:44 -08001277 logit("WARNING: %s contains unhashed entries", old);
1278 logit("Delete this file to ensure privacy "
1279 "of hostnames");
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001280 }
1281 }
1282
Adam Langleyd0592972015-03-30 14:49:51 -07001283 exit (find_host && !ctx.found_key);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001284}
1285
1286/*
1287 * Perform changing a passphrase. The argument is the passwd structure
1288 * for the current user.
1289 */
1290static void
1291do_change_passphrase(struct passwd *pw)
1292{
1293 char *comment;
1294 char *old_passphrase, *passphrase1, *passphrase2;
1295 struct stat st;
Adam Langleyd0592972015-03-30 14:49:51 -07001296 struct sshkey *private;
1297 int r;
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001298
1299 if (!have_identity)
1300 ask_filename(pw, "Enter file in which the key is");
Greg Hartmanccacbc92016-02-03 09:59:44 -08001301 if (stat(identity_file, &st) < 0)
1302 fatal("%s: %s", identity_file, strerror(errno));
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001303 /* Try to load the file with empty passphrase. */
Adam Langleyd0592972015-03-30 14:49:51 -07001304 r = sshkey_load_private(identity_file, "", &private, &comment);
1305 if (r == SSH_ERR_KEY_WRONG_PASSPHRASE) {
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001306 if (identity_passphrase)
1307 old_passphrase = xstrdup(identity_passphrase);
1308 else
1309 old_passphrase =
1310 read_passphrase("Enter old passphrase: ",
1311 RP_ALLOW_STDIN);
Adam Langleyd0592972015-03-30 14:49:51 -07001312 r = sshkey_load_private(identity_file, old_passphrase,
1313 &private, &comment);
1314 explicit_bzero(old_passphrase, strlen(old_passphrase));
1315 free(old_passphrase);
1316 if (r != 0)
1317 goto badkey;
1318 } else if (r != 0) {
1319 badkey:
Greg Hartmanccacbc92016-02-03 09:59:44 -08001320 fatal("Failed to load key %s: %s", identity_file, ssh_err(r));
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001321 }
Adam Langleyd0592972015-03-30 14:49:51 -07001322 if (comment)
Greg Hartman9768ca42017-06-22 20:49:52 -07001323 mprintf("Key has comment '%s'\n", comment);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001324
1325 /* Ask the new passphrase (twice). */
1326 if (identity_new_passphrase) {
1327 passphrase1 = xstrdup(identity_new_passphrase);
1328 passphrase2 = NULL;
1329 } else {
1330 passphrase1 =
1331 read_passphrase("Enter new passphrase (empty for no "
1332 "passphrase): ", RP_ALLOW_STDIN);
1333 passphrase2 = read_passphrase("Enter same passphrase again: ",
1334 RP_ALLOW_STDIN);
1335
1336 /* Verify that they are the same. */
1337 if (strcmp(passphrase1, passphrase2) != 0) {
Adam Langleyd0592972015-03-30 14:49:51 -07001338 explicit_bzero(passphrase1, strlen(passphrase1));
1339 explicit_bzero(passphrase2, strlen(passphrase2));
1340 free(passphrase1);
1341 free(passphrase2);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001342 printf("Pass phrases do not match. Try again.\n");
1343 exit(1);
1344 }
1345 /* Destroy the other copy. */
Adam Langleyd0592972015-03-30 14:49:51 -07001346 explicit_bzero(passphrase2, strlen(passphrase2));
1347 free(passphrase2);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001348 }
1349
1350 /* Save the file using the new passphrase. */
Adam Langleyd0592972015-03-30 14:49:51 -07001351 if ((r = sshkey_save_private(private, identity_file, passphrase1,
1352 comment, use_new_format, new_format_cipher, rounds)) != 0) {
Greg Hartmanccacbc92016-02-03 09:59:44 -08001353 error("Saving key \"%s\" failed: %s.",
Adam Langleyd0592972015-03-30 14:49:51 -07001354 identity_file, ssh_err(r));
1355 explicit_bzero(passphrase1, strlen(passphrase1));
1356 free(passphrase1);
1357 sshkey_free(private);
1358 free(comment);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001359 exit(1);
1360 }
1361 /* Destroy the passphrase and the copy of the key in memory. */
Adam Langleyd0592972015-03-30 14:49:51 -07001362 explicit_bzero(passphrase1, strlen(passphrase1));
1363 free(passphrase1);
1364 sshkey_free(private); /* Destroys contents */
1365 free(comment);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001366
1367 printf("Your identification has been saved with the new passphrase.\n");
1368 exit(0);
1369}
1370
1371/*
1372 * Print the SSHFP RR.
1373 */
1374static int
1375do_print_resource_record(struct passwd *pw, char *fname, char *hname)
1376{
Adam Langleyd0592972015-03-30 14:49:51 -07001377 struct sshkey *public;
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001378 char *comment = NULL;
1379 struct stat st;
Adam Langleyd0592972015-03-30 14:49:51 -07001380 int r;
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001381
1382 if (fname == NULL)
Adam Langleyd0592972015-03-30 14:49:51 -07001383 fatal("%s: no filename", __func__);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001384 if (stat(fname, &st) < 0) {
1385 if (errno == ENOENT)
1386 return 0;
Greg Hartmanccacbc92016-02-03 09:59:44 -08001387 fatal("%s: %s", fname, strerror(errno));
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001388 }
Greg Hartmanccacbc92016-02-03 09:59:44 -08001389 if ((r = sshkey_load_public(fname, &public, &comment)) != 0)
1390 fatal("Failed to read v2 public key from \"%s\": %s.",
Adam Langleyd0592972015-03-30 14:49:51 -07001391 fname, ssh_err(r));
Adam Langleyd0592972015-03-30 14:49:51 -07001392 export_dns_rr(hname, public, stdout, print_generic);
1393 sshkey_free(public);
1394 free(comment);
1395 return 1;
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001396}
1397
1398/*
1399 * Change the comment of a private key file.
1400 */
1401static void
1402do_change_comment(struct passwd *pw)
1403{
1404 char new_comment[1024], *comment, *passphrase;
Adam Langleyd0592972015-03-30 14:49:51 -07001405 struct sshkey *private;
1406 struct sshkey *public;
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001407 struct stat st;
1408 FILE *f;
Adam Langleyd0592972015-03-30 14:49:51 -07001409 int r, fd;
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001410
1411 if (!have_identity)
1412 ask_filename(pw, "Enter file in which the key is");
Greg Hartmanccacbc92016-02-03 09:59:44 -08001413 if (stat(identity_file, &st) < 0)
1414 fatal("%s: %s", identity_file, strerror(errno));
Adam Langleyd0592972015-03-30 14:49:51 -07001415 if ((r = sshkey_load_private(identity_file, "",
1416 &private, &comment)) == 0)
1417 passphrase = xstrdup("");
Greg Hartmanccacbc92016-02-03 09:59:44 -08001418 else if (r != SSH_ERR_KEY_WRONG_PASSPHRASE)
1419 fatal("Cannot load private key \"%s\": %s.",
Adam Langleyd0592972015-03-30 14:49:51 -07001420 identity_file, ssh_err(r));
Greg Hartmanccacbc92016-02-03 09:59:44 -08001421 else {
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001422 if (identity_passphrase)
1423 passphrase = xstrdup(identity_passphrase);
1424 else if (identity_new_passphrase)
1425 passphrase = xstrdup(identity_new_passphrase);
1426 else
1427 passphrase = read_passphrase("Enter passphrase: ",
1428 RP_ALLOW_STDIN);
1429 /* Try to load using the passphrase. */
Adam Langleyd0592972015-03-30 14:49:51 -07001430 if ((r = sshkey_load_private(identity_file, passphrase,
1431 &private, &comment)) != 0) {
1432 explicit_bzero(passphrase, strlen(passphrase));
1433 free(passphrase);
Greg Hartmanccacbc92016-02-03 09:59:44 -08001434 fatal("Cannot load private key \"%s\": %s.",
Adam Langleyd0592972015-03-30 14:49:51 -07001435 identity_file, ssh_err(r));
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001436 }
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001437 }
Greg Hartman9768ca42017-06-22 20:49:52 -07001438
1439 if (private->type != KEY_RSA1 && private->type != KEY_ED25519 &&
1440 !use_new_format) {
1441 error("Comments are only supported for RSA1 or keys stored in "
1442 "the new format (-o).");
Greg Hartmanccacbc92016-02-03 09:59:44 -08001443 explicit_bzero(passphrase, strlen(passphrase));
Adam Langleyd0592972015-03-30 14:49:51 -07001444 sshkey_free(private);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001445 exit(1);
1446 }
Greg Hartman9768ca42017-06-22 20:49:52 -07001447 if (comment)
1448 printf("Key now has comment '%s'\n", comment);
1449 else
1450 printf("Key now has no comment\n");
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001451
1452 if (identity_comment) {
1453 strlcpy(new_comment, identity_comment, sizeof(new_comment));
1454 } else {
1455 printf("Enter new comment: ");
1456 fflush(stdout);
1457 if (!fgets(new_comment, sizeof(new_comment), stdin)) {
Adam Langleyd0592972015-03-30 14:49:51 -07001458 explicit_bzero(passphrase, strlen(passphrase));
1459 sshkey_free(private);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001460 exit(1);
1461 }
1462 new_comment[strcspn(new_comment, "\n")] = '\0';
1463 }
1464
1465 /* Save the file using the new passphrase. */
Adam Langleyd0592972015-03-30 14:49:51 -07001466 if ((r = sshkey_save_private(private, identity_file, passphrase,
1467 new_comment, use_new_format, new_format_cipher, rounds)) != 0) {
Greg Hartmanccacbc92016-02-03 09:59:44 -08001468 error("Saving key \"%s\" failed: %s",
Adam Langleyd0592972015-03-30 14:49:51 -07001469 identity_file, ssh_err(r));
1470 explicit_bzero(passphrase, strlen(passphrase));
1471 free(passphrase);
1472 sshkey_free(private);
1473 free(comment);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001474 exit(1);
1475 }
Adam Langleyd0592972015-03-30 14:49:51 -07001476 explicit_bzero(passphrase, strlen(passphrase));
1477 free(passphrase);
1478 if ((r = sshkey_from_private(private, &public)) != 0)
1479 fatal("key_from_private failed: %s", ssh_err(r));
1480 sshkey_free(private);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001481
1482 strlcat(identity_file, ".pub", sizeof(identity_file));
1483 fd = open(identity_file, O_WRONLY | O_CREAT | O_TRUNC, 0644);
Greg Hartmanccacbc92016-02-03 09:59:44 -08001484 if (fd == -1)
1485 fatal("Could not save your public key in %s", identity_file);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001486 f = fdopen(fd, "w");
Greg Hartmanccacbc92016-02-03 09:59:44 -08001487 if (f == NULL)
1488 fatal("fdopen %s failed: %s", identity_file, strerror(errno));
Adam Langleyd0592972015-03-30 14:49:51 -07001489 if ((r = sshkey_write(public, f)) != 0)
Greg Hartmanccacbc92016-02-03 09:59:44 -08001490 fatal("write key failed: %s", ssh_err(r));
Adam Langleyd0592972015-03-30 14:49:51 -07001491 sshkey_free(public);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001492 fprintf(f, " %s\n", new_comment);
1493 fclose(f);
1494
Adam Langleyd0592972015-03-30 14:49:51 -07001495 free(comment);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001496
1497 printf("The comment in your key file has been changed.\n");
1498 exit(0);
1499}
1500
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001501static void
Adam Langleyd0592972015-03-30 14:49:51 -07001502add_flag_option(struct sshbuf *c, const char *name)
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001503{
Adam Langleyd0592972015-03-30 14:49:51 -07001504 int r;
1505
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001506 debug3("%s: %s", __func__, name);
Adam Langleyd0592972015-03-30 14:49:51 -07001507 if ((r = sshbuf_put_cstring(c, name)) != 0 ||
1508 (r = sshbuf_put_string(c, NULL, 0)) != 0)
1509 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001510}
1511
1512static void
Adam Langleyd0592972015-03-30 14:49:51 -07001513add_string_option(struct sshbuf *c, const char *name, const char *value)
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001514{
Adam Langleyd0592972015-03-30 14:49:51 -07001515 struct sshbuf *b;
1516 int r;
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001517
1518 debug3("%s: %s=%s", __func__, name, value);
Adam Langleyd0592972015-03-30 14:49:51 -07001519 if ((b = sshbuf_new()) == NULL)
1520 fatal("%s: sshbuf_new failed", __func__);
1521 if ((r = sshbuf_put_cstring(b, value)) != 0 ||
1522 (r = sshbuf_put_cstring(c, name)) != 0 ||
1523 (r = sshbuf_put_stringb(c, b)) != 0)
1524 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001525
Adam Langleyd0592972015-03-30 14:49:51 -07001526 sshbuf_free(b);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001527}
1528
1529#define OPTIONS_CRITICAL 1
1530#define OPTIONS_EXTENSIONS 2
1531static void
Adam Langleyd0592972015-03-30 14:49:51 -07001532prepare_options_buf(struct sshbuf *c, int which)
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001533{
Adam Langleyd0592972015-03-30 14:49:51 -07001534 sshbuf_reset(c);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001535 if ((which & OPTIONS_CRITICAL) != 0 &&
1536 certflags_command != NULL)
1537 add_string_option(c, "force-command", certflags_command);
1538 if ((which & OPTIONS_EXTENSIONS) != 0 &&
1539 (certflags_flags & CERTOPT_X_FWD) != 0)
1540 add_flag_option(c, "permit-X11-forwarding");
1541 if ((which & OPTIONS_EXTENSIONS) != 0 &&
1542 (certflags_flags & CERTOPT_AGENT_FWD) != 0)
1543 add_flag_option(c, "permit-agent-forwarding");
1544 if ((which & OPTIONS_EXTENSIONS) != 0 &&
1545 (certflags_flags & CERTOPT_PORT_FWD) != 0)
1546 add_flag_option(c, "permit-port-forwarding");
1547 if ((which & OPTIONS_EXTENSIONS) != 0 &&
1548 (certflags_flags & CERTOPT_PTY) != 0)
1549 add_flag_option(c, "permit-pty");
1550 if ((which & OPTIONS_EXTENSIONS) != 0 &&
1551 (certflags_flags & CERTOPT_USER_RC) != 0)
1552 add_flag_option(c, "permit-user-rc");
1553 if ((which & OPTIONS_CRITICAL) != 0 &&
1554 certflags_src_addr != NULL)
1555 add_string_option(c, "source-address", certflags_src_addr);
1556}
1557
Adam Langleyd0592972015-03-30 14:49:51 -07001558static struct sshkey *
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001559load_pkcs11_key(char *path)
1560{
1561#ifdef ENABLE_PKCS11
Adam Langleyd0592972015-03-30 14:49:51 -07001562 struct sshkey **keys = NULL, *public, *private = NULL;
1563 int r, i, nkeys;
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001564
Adam Langleyd0592972015-03-30 14:49:51 -07001565 if ((r = sshkey_load_public(path, &public, NULL)) != 0)
1566 fatal("Couldn't load CA public key \"%s\": %s",
1567 path, ssh_err(r));
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001568
1569 nkeys = pkcs11_add_provider(pkcs11provider, identity_passphrase, &keys);
1570 debug3("%s: %d keys", __func__, nkeys);
1571 if (nkeys <= 0)
1572 fatal("cannot read public key from pkcs11");
1573 for (i = 0; i < nkeys; i++) {
Adam Langleyd0592972015-03-30 14:49:51 -07001574 if (sshkey_equal_public(public, keys[i])) {
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001575 private = keys[i];
1576 continue;
1577 }
Adam Langleyd0592972015-03-30 14:49:51 -07001578 sshkey_free(keys[i]);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001579 }
Adam Langleyd0592972015-03-30 14:49:51 -07001580 free(keys);
1581 sshkey_free(public);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001582 return private;
1583#else
1584 fatal("no pkcs11 support");
1585#endif /* ENABLE_PKCS11 */
1586}
1587
1588static void
1589do_ca_sign(struct passwd *pw, int argc, char **argv)
1590{
Adam Langleyd0592972015-03-30 14:49:51 -07001591 int r, i, fd;
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001592 u_int n;
Adam Langleyd0592972015-03-30 14:49:51 -07001593 struct sshkey *ca, *public;
Greg Hartman9768ca42017-06-22 20:49:52 -07001594 char valid[64], *otmp, *tmp, *cp, *out, *comment, **plist = NULL;
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001595 FILE *f;
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001596
Adam Langleyd0592972015-03-30 14:49:51 -07001597#ifdef ENABLE_PKCS11
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001598 pkcs11_init(1);
Adam Langleyd0592972015-03-30 14:49:51 -07001599#endif
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001600 tmp = tilde_expand_filename(ca_key_path, pw->pw_uid);
1601 if (pkcs11provider != NULL) {
1602 if ((ca = load_pkcs11_key(tmp)) == NULL)
1603 fatal("No PKCS#11 key matching %s found", ca_key_path);
Adam Langleyd0592972015-03-30 14:49:51 -07001604 } else
1605 ca = load_identity(tmp);
1606 free(tmp);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001607
Greg Hartman9768ca42017-06-22 20:49:52 -07001608 if (key_type_name != NULL &&
1609 sshkey_type_from_name(key_type_name) != ca->type) {
1610 fatal("CA key type %s doesn't match specified %s",
1611 sshkey_ssh_name(ca), key_type_name);
1612 }
1613
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001614 for (i = 0; i < argc; i++) {
1615 /* Split list of principals */
1616 n = 0;
1617 if (cert_principals != NULL) {
1618 otmp = tmp = xstrdup(cert_principals);
1619 plist = NULL;
1620 for (; (cp = strsep(&tmp, ",")) != NULL; n++) {
Greg Hartmanccacbc92016-02-03 09:59:44 -08001621 plist = xreallocarray(plist, n + 1, sizeof(*plist));
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001622 if (*(plist[n] = xstrdup(cp)) == '\0')
1623 fatal("Empty principal name");
1624 }
Adam Langleyd0592972015-03-30 14:49:51 -07001625 free(otmp);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001626 }
1627
1628 tmp = tilde_expand_filename(argv[i], pw->pw_uid);
Adam Langleyd0592972015-03-30 14:49:51 -07001629 if ((r = sshkey_load_public(tmp, &public, &comment)) != 0)
1630 fatal("%s: unable to open \"%s\": %s",
1631 __func__, tmp, ssh_err(r));
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001632 if (public->type != KEY_RSA && public->type != KEY_DSA &&
Adam Langleyd0592972015-03-30 14:49:51 -07001633 public->type != KEY_ECDSA && public->type != KEY_ED25519)
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001634 fatal("%s: key \"%s\" type %s cannot be certified",
Adam Langleyd0592972015-03-30 14:49:51 -07001635 __func__, tmp, sshkey_type(public));
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001636
1637 /* Prepare certificate to sign */
Greg Hartmanccacbc92016-02-03 09:59:44 -08001638 if ((r = sshkey_to_certified(public)) != 0)
Adam Langleyd0592972015-03-30 14:49:51 -07001639 fatal("Could not upgrade key %s to certificate: %s",
1640 tmp, ssh_err(r));
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001641 public->cert->type = cert_key_type;
1642 public->cert->serial = (u_int64_t)cert_serial;
1643 public->cert->key_id = xstrdup(cert_key_id);
1644 public->cert->nprincipals = n;
1645 public->cert->principals = plist;
1646 public->cert->valid_after = cert_valid_from;
1647 public->cert->valid_before = cert_valid_to;
Greg Hartmanccacbc92016-02-03 09:59:44 -08001648 prepare_options_buf(public->cert->critical, OPTIONS_CRITICAL);
1649 prepare_options_buf(public->cert->extensions,
1650 OPTIONS_EXTENSIONS);
Adam Langleyd0592972015-03-30 14:49:51 -07001651 if ((r = sshkey_from_private(ca,
1652 &public->cert->signature_key)) != 0)
1653 fatal("key_from_private (ca key): %s", ssh_err(r));
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001654
Greg Hartman9768ca42017-06-22 20:49:52 -07001655 if ((r = sshkey_certify(public, ca, key_type_name)) != 0)
1656 fatal("Couldn't certify key %s: %s", tmp, ssh_err(r));
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001657
1658 if ((cp = strrchr(tmp, '.')) != NULL && strcmp(cp, ".pub") == 0)
1659 *cp = '\0';
1660 xasprintf(&out, "%s-cert.pub", tmp);
Adam Langleyd0592972015-03-30 14:49:51 -07001661 free(tmp);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001662
1663 if ((fd = open(out, O_WRONLY|O_CREAT|O_TRUNC, 0644)) == -1)
1664 fatal("Could not open \"%s\" for writing: %s", out,
1665 strerror(errno));
1666 if ((f = fdopen(fd, "w")) == NULL)
1667 fatal("%s: fdopen: %s", __func__, strerror(errno));
Adam Langleyd0592972015-03-30 14:49:51 -07001668 if ((r = sshkey_write(public, f)) != 0)
1669 fatal("Could not write certified key to %s: %s",
1670 out, ssh_err(r));
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001671 fprintf(f, " %s\n", comment);
1672 fclose(f);
1673
1674 if (!quiet) {
Greg Hartman9768ca42017-06-22 20:49:52 -07001675 sshkey_format_cert_validity(public->cert,
1676 valid, sizeof(valid));
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001677 logit("Signed %s key %s: id \"%s\" serial %llu%s%s "
Greg Hartman9768ca42017-06-22 20:49:52 -07001678 "valid %s", sshkey_cert_type(public),
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001679 out, public->cert->key_id,
1680 (unsigned long long)public->cert->serial,
1681 cert_principals != NULL ? " for " : "",
1682 cert_principals != NULL ? cert_principals : "",
Greg Hartman9768ca42017-06-22 20:49:52 -07001683 valid);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001684 }
1685
Adam Langleyd0592972015-03-30 14:49:51 -07001686 sshkey_free(public);
1687 free(out);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001688 }
Adam Langleyd0592972015-03-30 14:49:51 -07001689#ifdef ENABLE_PKCS11
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001690 pkcs11_terminate();
Adam Langleyd0592972015-03-30 14:49:51 -07001691#endif
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001692 exit(0);
1693}
1694
1695static u_int64_t
1696parse_relative_time(const char *s, time_t now)
1697{
1698 int64_t mul, secs;
1699
1700 mul = *s == '-' ? -1 : 1;
1701
1702 if ((secs = convtime(s + 1)) == -1)
1703 fatal("Invalid relative certificate time %s", s);
1704 if (mul == -1 && secs > now)
1705 fatal("Certificate time %s cannot be represented", s);
1706 return now + (u_int64_t)(secs * mul);
1707}
1708
1709static u_int64_t
1710parse_absolute_time(const char *s)
1711{
1712 struct tm tm;
1713 time_t tt;
1714 char buf[32], *fmt;
1715
1716 /*
Greg Hartman9768ca42017-06-22 20:49:52 -07001717 * POSIX strptime says "The application shall ensure that there
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001718 * is white-space or other non-alphanumeric characters between
1719 * any two conversion specifications" so arrange things this way.
1720 */
1721 switch (strlen(s)) {
1722 case 8:
1723 fmt = "%Y-%m-%d";
1724 snprintf(buf, sizeof(buf), "%.4s-%.2s-%.2s", s, s + 4, s + 6);
1725 break;
1726 case 14:
1727 fmt = "%Y-%m-%dT%H:%M:%S";
1728 snprintf(buf, sizeof(buf), "%.4s-%.2s-%.2sT%.2s:%.2s:%.2s",
1729 s, s + 4, s + 6, s + 8, s + 10, s + 12);
1730 break;
1731 default:
1732 fatal("Invalid certificate time format %s", s);
1733 }
1734
Adam Langleyd0592972015-03-30 14:49:51 -07001735 memset(&tm, 0, sizeof(tm));
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001736 if (strptime(buf, fmt, &tm) == NULL)
1737 fatal("Invalid certificate time %s", s);
1738 if ((tt = mktime(&tm)) < 0)
1739 fatal("Certificate time %s cannot be represented", s);
1740 return (u_int64_t)tt;
1741}
1742
1743static void
1744parse_cert_times(char *timespec)
1745{
1746 char *from, *to;
1747 time_t now = time(NULL);
1748 int64_t secs;
1749
1750 /* +timespec relative to now */
1751 if (*timespec == '+' && strchr(timespec, ':') == NULL) {
1752 if ((secs = convtime(timespec + 1)) == -1)
1753 fatal("Invalid relative certificate life %s", timespec);
1754 cert_valid_to = now + secs;
1755 /*
1756 * Backdate certificate one minute to avoid problems on hosts
1757 * with poorly-synchronised clocks.
1758 */
1759 cert_valid_from = ((now - 59)/ 60) * 60;
1760 return;
1761 }
1762
1763 /*
1764 * from:to, where
1765 * from := [+-]timespec | YYYYMMDD | YYYYMMDDHHMMSS
1766 * to := [+-]timespec | YYYYMMDD | YYYYMMDDHHMMSS
1767 */
1768 from = xstrdup(timespec);
1769 to = strchr(from, ':');
1770 if (to == NULL || from == to || *(to + 1) == '\0')
1771 fatal("Invalid certificate life specification %s", timespec);
1772 *to++ = '\0';
1773
1774 if (*from == '-' || *from == '+')
1775 cert_valid_from = parse_relative_time(from, now);
1776 else
1777 cert_valid_from = parse_absolute_time(from);
1778
1779 if (*to == '-' || *to == '+')
Adam Langleyd0592972015-03-30 14:49:51 -07001780 cert_valid_to = parse_relative_time(to, now);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001781 else
1782 cert_valid_to = parse_absolute_time(to);
1783
1784 if (cert_valid_to <= cert_valid_from)
1785 fatal("Empty certificate validity interval");
Adam Langleyd0592972015-03-30 14:49:51 -07001786 free(from);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001787}
1788
1789static void
1790add_cert_option(char *opt)
1791{
1792 char *val;
1793
1794 if (strcasecmp(opt, "clear") == 0)
1795 certflags_flags = 0;
1796 else if (strcasecmp(opt, "no-x11-forwarding") == 0)
1797 certflags_flags &= ~CERTOPT_X_FWD;
1798 else if (strcasecmp(opt, "permit-x11-forwarding") == 0)
1799 certflags_flags |= CERTOPT_X_FWD;
1800 else if (strcasecmp(opt, "no-agent-forwarding") == 0)
1801 certflags_flags &= ~CERTOPT_AGENT_FWD;
1802 else if (strcasecmp(opt, "permit-agent-forwarding") == 0)
1803 certflags_flags |= CERTOPT_AGENT_FWD;
1804 else if (strcasecmp(opt, "no-port-forwarding") == 0)
1805 certflags_flags &= ~CERTOPT_PORT_FWD;
1806 else if (strcasecmp(opt, "permit-port-forwarding") == 0)
1807 certflags_flags |= CERTOPT_PORT_FWD;
1808 else if (strcasecmp(opt, "no-pty") == 0)
1809 certflags_flags &= ~CERTOPT_PTY;
1810 else if (strcasecmp(opt, "permit-pty") == 0)
1811 certflags_flags |= CERTOPT_PTY;
1812 else if (strcasecmp(opt, "no-user-rc") == 0)
1813 certflags_flags &= ~CERTOPT_USER_RC;
1814 else if (strcasecmp(opt, "permit-user-rc") == 0)
1815 certflags_flags |= CERTOPT_USER_RC;
1816 else if (strncasecmp(opt, "force-command=", 14) == 0) {
1817 val = opt + 14;
1818 if (*val == '\0')
1819 fatal("Empty force-command option");
1820 if (certflags_command != NULL)
1821 fatal("force-command already specified");
1822 certflags_command = xstrdup(val);
1823 } else if (strncasecmp(opt, "source-address=", 15) == 0) {
1824 val = opt + 15;
1825 if (*val == '\0')
1826 fatal("Empty source-address option");
1827 if (certflags_src_addr != NULL)
1828 fatal("source-address already specified");
1829 if (addr_match_cidr_list(NULL, val) != 0)
1830 fatal("Invalid source-address list");
1831 certflags_src_addr = xstrdup(val);
1832 } else
1833 fatal("Unsupported certificate option \"%s\"", opt);
1834}
1835
1836static void
Greg Hartmanccacbc92016-02-03 09:59:44 -08001837show_options(struct sshbuf *optbuf, int in_critical)
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001838{
Adam Langleyd0592972015-03-30 14:49:51 -07001839 char *name, *arg;
1840 struct sshbuf *options, *option = NULL;
1841 int r;
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001842
Adam Langleyd0592972015-03-30 14:49:51 -07001843 if ((options = sshbuf_fromb(optbuf)) == NULL)
1844 fatal("%s: sshbuf_fromb failed", __func__);
1845 while (sshbuf_len(options) != 0) {
1846 sshbuf_free(option);
1847 option = NULL;
1848 if ((r = sshbuf_get_cstring(options, &name, NULL)) != 0 ||
1849 (r = sshbuf_froms(options, &option)) != 0)
1850 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001851 printf(" %s", name);
Greg Hartmanccacbc92016-02-03 09:59:44 -08001852 if (!in_critical &&
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001853 (strcmp(name, "permit-X11-forwarding") == 0 ||
1854 strcmp(name, "permit-agent-forwarding") == 0 ||
1855 strcmp(name, "permit-port-forwarding") == 0 ||
1856 strcmp(name, "permit-pty") == 0 ||
1857 strcmp(name, "permit-user-rc") == 0))
1858 printf("\n");
Greg Hartmanccacbc92016-02-03 09:59:44 -08001859 else if (in_critical &&
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001860 (strcmp(name, "force-command") == 0 ||
1861 strcmp(name, "source-address") == 0)) {
Adam Langleyd0592972015-03-30 14:49:51 -07001862 if ((r = sshbuf_get_cstring(option, &arg, NULL)) != 0)
1863 fatal("%s: buffer error: %s",
1864 __func__, ssh_err(r));
1865 printf(" %s\n", arg);
1866 free(arg);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001867 } else {
Adam Langleyd0592972015-03-30 14:49:51 -07001868 printf(" UNKNOWN OPTION (len %zu)\n",
1869 sshbuf_len(option));
1870 sshbuf_reset(option);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001871 }
Adam Langleyd0592972015-03-30 14:49:51 -07001872 free(name);
1873 if (sshbuf_len(option) != 0)
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001874 fatal("Option corrupt: extra data at end");
1875 }
Adam Langleyd0592972015-03-30 14:49:51 -07001876 sshbuf_free(option);
1877 sshbuf_free(options);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001878}
1879
1880static void
Greg Hartman9768ca42017-06-22 20:49:52 -07001881print_cert(struct sshkey *key)
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001882{
Greg Hartman9768ca42017-06-22 20:49:52 -07001883 char valid[64], *key_fp, *ca_fp;
Greg Hartmanccacbc92016-02-03 09:59:44 -08001884 u_int i;
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001885
Adam Langleyd0592972015-03-30 14:49:51 -07001886 key_fp = sshkey_fingerprint(key, fingerprint_hash, SSH_FP_DEFAULT);
1887 ca_fp = sshkey_fingerprint(key->cert->signature_key,
1888 fingerprint_hash, SSH_FP_DEFAULT);
1889 if (key_fp == NULL || ca_fp == NULL)
1890 fatal("%s: sshkey_fingerprint fail", __func__);
Greg Hartman9768ca42017-06-22 20:49:52 -07001891 sshkey_format_cert_validity(key->cert, valid, sizeof(valid));
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001892
Adam Langleyd0592972015-03-30 14:49:51 -07001893 printf(" Type: %s %s certificate\n", sshkey_ssh_name(key),
1894 sshkey_cert_type(key));
1895 printf(" Public key: %s %s\n", sshkey_type(key), key_fp);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001896 printf(" Signing CA: %s %s\n",
Adam Langleyd0592972015-03-30 14:49:51 -07001897 sshkey_type(key->cert->signature_key), ca_fp);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001898 printf(" Key ID: \"%s\"\n", key->cert->key_id);
Greg Hartmanccacbc92016-02-03 09:59:44 -08001899 printf(" Serial: %llu\n", (unsigned long long)key->cert->serial);
Greg Hartman9768ca42017-06-22 20:49:52 -07001900 printf(" Valid: %s\n", valid);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001901 printf(" Principals: ");
1902 if (key->cert->nprincipals == 0)
1903 printf("(none)\n");
1904 else {
1905 for (i = 0; i < key->cert->nprincipals; i++)
1906 printf("\n %s",
1907 key->cert->principals[i]);
1908 printf("\n");
1909 }
1910 printf(" Critical Options: ");
Adam Langleyd0592972015-03-30 14:49:51 -07001911 if (sshbuf_len(key->cert->critical) == 0)
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001912 printf("(none)\n");
1913 else {
1914 printf("\n");
Greg Hartmanccacbc92016-02-03 09:59:44 -08001915 show_options(key->cert->critical, 1);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001916 }
Greg Hartmanccacbc92016-02-03 09:59:44 -08001917 printf(" Extensions: ");
1918 if (sshbuf_len(key->cert->extensions) == 0)
1919 printf("(none)\n");
1920 else {
1921 printf("\n");
1922 show_options(key->cert->extensions, 0);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001923 }
Greg Hartman9768ca42017-06-22 20:49:52 -07001924}
1925
1926static void
1927do_show_cert(struct passwd *pw)
1928{
1929 struct sshkey *key = NULL;
1930 struct stat st;
1931 int r, is_stdin = 0, ok = 0;
1932 FILE *f;
1933 char *cp, line[SSH_MAX_PUBKEY_BYTES];
1934 const char *path;
1935 u_long lnum = 0;
1936
1937 if (!have_identity)
1938 ask_filename(pw, "Enter file in which the key is");
1939 if (strcmp(identity_file, "-") != 0 && stat(identity_file, &st) < 0)
1940 fatal("%s: %s: %s", __progname, identity_file, strerror(errno));
1941
1942 path = identity_file;
1943 if (strcmp(path, "-") == 0) {
1944 f = stdin;
1945 path = "(stdin)";
1946 is_stdin = 1;
1947 } else if ((f = fopen(identity_file, "r")) == NULL)
1948 fatal("fopen %s: %s", identity_file, strerror(errno));
1949
1950 while (read_keyfile_line(f, path, line, sizeof(line), &lnum) == 0) {
1951 sshkey_free(key);
1952 key = NULL;
1953 /* Trim leading space and comments */
1954 cp = line + strspn(line, " \t");
1955 if (*cp == '#' || *cp == '\0')
1956 continue;
1957 if ((key = sshkey_new(KEY_UNSPEC)) == NULL)
1958 fatal("key_new");
1959 if ((r = sshkey_read(key, &cp)) != 0) {
1960 error("%s:%lu: invalid key: %s", path,
1961 lnum, ssh_err(r));
1962 continue;
1963 }
1964 if (!sshkey_is_cert(key)) {
1965 error("%s:%lu is not a certificate", path, lnum);
1966 continue;
1967 }
1968 ok = 1;
1969 if (!is_stdin && lnum == 1)
1970 printf("%s:\n", path);
1971 else
1972 printf("%s:%lu:\n", path, lnum);
1973 print_cert(key);
1974 }
1975 sshkey_free(key);
1976 fclose(f);
1977 exit(ok ? 0 : 1);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001978}
1979
1980static void
Adam Langleyd0592972015-03-30 14:49:51 -07001981load_krl(const char *path, struct ssh_krl **krlp)
1982{
1983 struct sshbuf *krlbuf;
1984 int r, fd;
1985
1986 if ((krlbuf = sshbuf_new()) == NULL)
1987 fatal("sshbuf_new failed");
1988 if ((fd = open(path, O_RDONLY)) == -1)
1989 fatal("open %s: %s", path, strerror(errno));
1990 if ((r = sshkey_load_file(fd, krlbuf)) != 0)
1991 fatal("Unable to load KRL: %s", ssh_err(r));
1992 close(fd);
1993 /* XXX check sigs */
1994 if ((r = ssh_krl_from_blob(krlbuf, krlp, NULL, 0)) != 0 ||
1995 *krlp == NULL)
1996 fatal("Invalid KRL file: %s", ssh_err(r));
1997 sshbuf_free(krlbuf);
1998}
1999
2000static void
2001update_krl_from_file(struct passwd *pw, const char *file, int wild_ca,
2002 const struct sshkey *ca, struct ssh_krl *krl)
2003{
2004 struct sshkey *key = NULL;
2005 u_long lnum = 0;
2006 char *path, *cp, *ep, line[SSH_MAX_PUBKEY_BYTES];
2007 unsigned long long serial, serial2;
2008 int i, was_explicit_key, was_sha1, r;
2009 FILE *krl_spec;
2010
2011 path = tilde_expand_filename(file, pw->pw_uid);
2012 if (strcmp(path, "-") == 0) {
2013 krl_spec = stdin;
2014 free(path);
2015 path = xstrdup("(standard input)");
2016 } else if ((krl_spec = fopen(path, "r")) == NULL)
2017 fatal("fopen %s: %s", path, strerror(errno));
2018
2019 if (!quiet)
2020 printf("Revoking from %s\n", path);
2021 while (read_keyfile_line(krl_spec, path, line, sizeof(line),
2022 &lnum) == 0) {
2023 was_explicit_key = was_sha1 = 0;
2024 cp = line + strspn(line, " \t");
2025 /* Trim trailing space, comments and strip \n */
2026 for (i = 0, r = -1; cp[i] != '\0'; i++) {
2027 if (cp[i] == '#' || cp[i] == '\n') {
2028 cp[i] = '\0';
2029 break;
2030 }
2031 if (cp[i] == ' ' || cp[i] == '\t') {
2032 /* Remember the start of a span of whitespace */
2033 if (r == -1)
2034 r = i;
2035 } else
2036 r = -1;
2037 }
2038 if (r != -1)
2039 cp[r] = '\0';
2040 if (*cp == '\0')
2041 continue;
2042 if (strncasecmp(cp, "serial:", 7) == 0) {
2043 if (ca == NULL && !wild_ca) {
2044 fatal("revoking certificates by serial number "
2045 "requires specification of a CA key");
2046 }
2047 cp += 7;
2048 cp = cp + strspn(cp, " \t");
2049 errno = 0;
2050 serial = strtoull(cp, &ep, 0);
2051 if (*cp == '\0' || (*ep != '\0' && *ep != '-'))
2052 fatal("%s:%lu: invalid serial \"%s\"",
2053 path, lnum, cp);
2054 if (errno == ERANGE && serial == ULLONG_MAX)
2055 fatal("%s:%lu: serial out of range",
2056 path, lnum);
2057 serial2 = serial;
2058 if (*ep == '-') {
2059 cp = ep + 1;
2060 errno = 0;
2061 serial2 = strtoull(cp, &ep, 0);
2062 if (*cp == '\0' || *ep != '\0')
2063 fatal("%s:%lu: invalid serial \"%s\"",
2064 path, lnum, cp);
2065 if (errno == ERANGE && serial2 == ULLONG_MAX)
2066 fatal("%s:%lu: serial out of range",
2067 path, lnum);
2068 if (serial2 <= serial)
2069 fatal("%s:%lu: invalid serial range "
2070 "%llu:%llu", path, lnum,
2071 (unsigned long long)serial,
2072 (unsigned long long)serial2);
2073 }
2074 if (ssh_krl_revoke_cert_by_serial_range(krl,
2075 ca, serial, serial2) != 0) {
2076 fatal("%s: revoke serial failed",
2077 __func__);
2078 }
2079 } else if (strncasecmp(cp, "id:", 3) == 0) {
2080 if (ca == NULL && !wild_ca) {
2081 fatal("revoking certificates by key ID "
2082 "requires specification of a CA key");
2083 }
2084 cp += 3;
2085 cp = cp + strspn(cp, " \t");
2086 if (ssh_krl_revoke_cert_by_key_id(krl, ca, cp) != 0)
2087 fatal("%s: revoke key ID failed", __func__);
2088 } else {
2089 if (strncasecmp(cp, "key:", 4) == 0) {
2090 cp += 4;
2091 cp = cp + strspn(cp, " \t");
2092 was_explicit_key = 1;
2093 } else if (strncasecmp(cp, "sha1:", 5) == 0) {
2094 cp += 5;
2095 cp = cp + strspn(cp, " \t");
2096 was_sha1 = 1;
2097 } else {
2098 /*
2099 * Just try to process the line as a key.
2100 * Parsing will fail if it isn't.
2101 */
2102 }
2103 if ((key = sshkey_new(KEY_UNSPEC)) == NULL)
2104 fatal("key_new");
2105 if ((r = sshkey_read(key, &cp)) != 0)
2106 fatal("%s:%lu: invalid key: %s",
2107 path, lnum, ssh_err(r));
2108 if (was_explicit_key)
2109 r = ssh_krl_revoke_key_explicit(krl, key);
2110 else if (was_sha1)
2111 r = ssh_krl_revoke_key_sha1(krl, key);
2112 else
2113 r = ssh_krl_revoke_key(krl, key);
2114 if (r != 0)
2115 fatal("%s: revoke key failed: %s",
2116 __func__, ssh_err(r));
2117 sshkey_free(key);
2118 }
2119 }
2120 if (strcmp(path, "-") != 0)
2121 fclose(krl_spec);
2122 free(path);
2123}
2124
2125static void
2126do_gen_krl(struct passwd *pw, int updating, int argc, char **argv)
2127{
2128 struct ssh_krl *krl;
2129 struct stat sb;
2130 struct sshkey *ca = NULL;
2131 int fd, i, r, wild_ca = 0;
2132 char *tmp;
2133 struct sshbuf *kbuf;
2134
2135 if (*identity_file == '\0')
2136 fatal("KRL generation requires an output file");
2137 if (stat(identity_file, &sb) == -1) {
2138 if (errno != ENOENT)
2139 fatal("Cannot access KRL \"%s\": %s",
2140 identity_file, strerror(errno));
2141 if (updating)
2142 fatal("KRL \"%s\" does not exist", identity_file);
2143 }
2144 if (ca_key_path != NULL) {
2145 if (strcasecmp(ca_key_path, "none") == 0)
2146 wild_ca = 1;
2147 else {
2148 tmp = tilde_expand_filename(ca_key_path, pw->pw_uid);
2149 if ((r = sshkey_load_public(tmp, &ca, NULL)) != 0)
2150 fatal("Cannot load CA public key %s: %s",
2151 tmp, ssh_err(r));
2152 free(tmp);
2153 }
2154 }
2155
2156 if (updating)
2157 load_krl(identity_file, &krl);
2158 else if ((krl = ssh_krl_init()) == NULL)
2159 fatal("couldn't create KRL");
2160
2161 if (cert_serial != 0)
2162 ssh_krl_set_version(krl, cert_serial);
2163 if (identity_comment != NULL)
2164 ssh_krl_set_comment(krl, identity_comment);
2165
2166 for (i = 0; i < argc; i++)
2167 update_krl_from_file(pw, argv[i], wild_ca, ca, krl);
2168
2169 if ((kbuf = sshbuf_new()) == NULL)
2170 fatal("sshbuf_new failed");
2171 if (ssh_krl_to_blob(krl, kbuf, NULL, 0) != 0)
2172 fatal("Couldn't generate KRL");
2173 if ((fd = open(identity_file, O_WRONLY|O_CREAT|O_TRUNC, 0644)) == -1)
2174 fatal("open %s: %s", identity_file, strerror(errno));
2175 if (atomicio(vwrite, fd, (void *)sshbuf_ptr(kbuf), sshbuf_len(kbuf)) !=
2176 sshbuf_len(kbuf))
2177 fatal("write %s: %s", identity_file, strerror(errno));
2178 close(fd);
2179 sshbuf_free(kbuf);
2180 ssh_krl_free(krl);
Greg Hartman9768ca42017-06-22 20:49:52 -07002181 sshkey_free(ca);
Adam Langleyd0592972015-03-30 14:49:51 -07002182}
2183
2184static void
2185do_check_krl(struct passwd *pw, int argc, char **argv)
2186{
2187 int i, r, ret = 0;
2188 char *comment;
2189 struct ssh_krl *krl;
2190 struct sshkey *k;
2191
2192 if (*identity_file == '\0')
2193 fatal("KRL checking requires an input file");
2194 load_krl(identity_file, &krl);
2195 for (i = 0; i < argc; i++) {
2196 if ((r = sshkey_load_public(argv[i], &k, &comment)) != 0)
2197 fatal("Cannot load public key %s: %s",
2198 argv[i], ssh_err(r));
2199 r = ssh_krl_check_key(krl, k);
2200 printf("%s%s%s%s: %s\n", argv[i],
2201 *comment ? " (" : "", comment, *comment ? ")" : "",
2202 r == 0 ? "ok" : "REVOKED");
2203 if (r != 0)
2204 ret = 1;
2205 sshkey_free(k);
2206 free(comment);
2207 }
2208 ssh_krl_free(krl);
2209 exit(ret);
2210}
2211
Greg Hartman9768ca42017-06-22 20:49:52 -07002212#ifdef WITH_SSH1
2213# define RSA1_USAGE " | rsa1"
2214#else
2215# define RSA1_USAGE ""
2216#endif
2217
Adam Langleyd0592972015-03-30 14:49:51 -07002218static void
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002219usage(void)
2220{
Adam Langleyd0592972015-03-30 14:49:51 -07002221 fprintf(stderr,
Greg Hartman9768ca42017-06-22 20:49:52 -07002222 "usage: ssh-keygen [-q] [-b bits] [-t dsa | ecdsa | ed25519 | rsa%s]\n"
Adam Langleyd0592972015-03-30 14:49:51 -07002223 " [-N new_passphrase] [-C comment] [-f output_keyfile]\n"
2224 " ssh-keygen -p [-P old_passphrase] [-N new_passphrase] [-f keyfile]\n"
2225 " ssh-keygen -i [-m key_format] [-f input_keyfile]\n"
2226 " ssh-keygen -e [-m key_format] [-f input_keyfile]\n"
2227 " ssh-keygen -y [-f input_keyfile]\n"
2228 " ssh-keygen -c [-P passphrase] [-C comment] [-f keyfile]\n"
2229 " ssh-keygen -l [-v] [-E fingerprint_hash] [-f input_keyfile]\n"
Greg Hartman9768ca42017-06-22 20:49:52 -07002230 " ssh-keygen -B [-f input_keyfile]\n", RSA1_USAGE);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002231#ifdef ENABLE_PKCS11
Adam Langleyd0592972015-03-30 14:49:51 -07002232 fprintf(stderr,
2233 " ssh-keygen -D pkcs11\n");
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002234#endif
Adam Langleyd0592972015-03-30 14:49:51 -07002235 fprintf(stderr,
2236 " ssh-keygen -F hostname [-f known_hosts_file] [-l]\n"
2237 " ssh-keygen -H [-f known_hosts_file]\n"
2238 " ssh-keygen -R hostname [-f known_hosts_file]\n"
2239 " ssh-keygen -r hostname [-f input_keyfile] [-g]\n"
Greg Hartmanccacbc92016-02-03 09:59:44 -08002240#ifdef WITH_OPENSSL
Adam Langleyd0592972015-03-30 14:49:51 -07002241 " ssh-keygen -G output_file [-v] [-b bits] [-M memory] [-S start_point]\n"
2242 " ssh-keygen -T output_file -f input_file [-v] [-a rounds] [-J num_lines]\n"
2243 " [-j start_line] [-K checkpt] [-W generator]\n"
Greg Hartmanccacbc92016-02-03 09:59:44 -08002244#endif
Adam Langleyd0592972015-03-30 14:49:51 -07002245 " ssh-keygen -s ca_key -I certificate_identity [-h] [-n principals]\n"
2246 " [-O option] [-V validity_interval] [-z serial_number] file ...\n"
2247 " ssh-keygen -L [-f input_keyfile]\n"
2248 " ssh-keygen -A\n"
2249 " ssh-keygen -k -f krl_file [-u] [-s ca_public] [-z version_number]\n"
2250 " file ...\n"
2251 " ssh-keygen -Q -f krl_file file ...\n");
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002252 exit(1);
2253}
2254
2255/*
2256 * Main program for key management.
2257 */
2258int
2259main(int argc, char **argv)
2260{
Adam Langleyd0592972015-03-30 14:49:51 -07002261 char dotsshdir[PATH_MAX], comment[1024], *passphrase1, *passphrase2;
Greg Hartmanccacbc92016-02-03 09:59:44 -08002262 char *rr_hostname = NULL, *ep, *fp, *ra;
Adam Langleyd0592972015-03-30 14:49:51 -07002263 struct sshkey *private, *public;
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002264 struct passwd *pw;
2265 struct stat st;
Adam Langleyd0592972015-03-30 14:49:51 -07002266 int r, opt, type, fd;
Adam Langleyd0592972015-03-30 14:49:51 -07002267 int gen_all_hostkeys = 0, gen_krl = 0, update_krl = 0, check_krl = 0;
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002268 FILE *f;
2269 const char *errstr;
Greg Hartmanccacbc92016-02-03 09:59:44 -08002270#ifdef WITH_OPENSSL
2271 /* Moduli generation/screening */
2272 char out_file[PATH_MAX], *checkpoint = NULL;
2273 u_int32_t memory = 0, generator_wanted = 0;
2274 int do_gen_candidates = 0, do_screen_candidates = 0;
2275 unsigned long start_lineno = 0, lines_to_process = 0;
2276 BIGNUM *start = NULL;
2277#endif
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002278
2279 extern int optind;
2280 extern char *optarg;
2281
Greg Hartman9768ca42017-06-22 20:49:52 -07002282 ssh_malloc_init(); /* must be called before any mallocs */
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002283 /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
2284 sanitise_stdfd();
2285
2286 __progname = ssh_get_progname(argv[0]);
2287
Adam Langleyd0592972015-03-30 14:49:51 -07002288#ifdef WITH_OPENSSL
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002289 OpenSSL_add_all_algorithms();
Adam Langleyd0592972015-03-30 14:49:51 -07002290#endif
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002291 log_init(argv[0], SYSLOG_LEVEL_INFO, SYSLOG_FACILITY_USER, 1);
2292
2293 seed_rng();
2294
Greg Hartman9768ca42017-06-22 20:49:52 -07002295 msetlocale();
2296
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002297 /* we need this for the home * directory. */
2298 pw = getpwuid(getuid());
Greg Hartmanccacbc92016-02-03 09:59:44 -08002299 if (!pw)
2300 fatal("No user exists for uid %lu", (u_long)getuid());
2301 if (gethostname(hostname, sizeof(hostname)) < 0)
2302 fatal("gethostname: %s", strerror(errno));
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002303
Adam Langleyd0592972015-03-30 14:49:51 -07002304 /* Remaining characters: UYdw */
2305 while ((opt = getopt(argc, argv, "ABHLQXceghiklopquvxy"
2306 "C:D:E:F:G:I:J:K:M:N:O:P:R:S:T:V:W:Z:"
2307 "a:b:f:g:j:m:n:r:s:t:z:")) != -1) {
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002308 switch (opt) {
2309 case 'A':
2310 gen_all_hostkeys = 1;
2311 break;
2312 case 'b':
2313 bits = (u_int32_t)strtonum(optarg, 256, 32768, &errstr);
2314 if (errstr)
2315 fatal("Bits has bad value %s (%s)",
2316 optarg, errstr);
2317 break;
Adam Langleyd0592972015-03-30 14:49:51 -07002318 case 'E':
2319 fingerprint_hash = ssh_digest_alg_by_name(optarg);
2320 if (fingerprint_hash == -1)
2321 fatal("Invalid hash algorithm \"%s\"", optarg);
2322 break;
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002323 case 'F':
2324 find_host = 1;
2325 rr_hostname = optarg;
2326 break;
2327 case 'H':
2328 hash_hosts = 1;
2329 break;
2330 case 'I':
2331 cert_key_id = optarg;
2332 break;
2333 case 'R':
2334 delete_host = 1;
2335 rr_hostname = optarg;
2336 break;
2337 case 'L':
2338 show_cert = 1;
2339 break;
2340 case 'l':
2341 print_fingerprint = 1;
2342 break;
2343 case 'B':
2344 print_bubblebabble = 1;
2345 break;
2346 case 'm':
2347 if (strcasecmp(optarg, "RFC4716") == 0 ||
2348 strcasecmp(optarg, "ssh2") == 0) {
2349 convert_format = FMT_RFC4716;
2350 break;
2351 }
2352 if (strcasecmp(optarg, "PKCS8") == 0) {
2353 convert_format = FMT_PKCS8;
2354 break;
2355 }
2356 if (strcasecmp(optarg, "PEM") == 0) {
2357 convert_format = FMT_PEM;
2358 break;
2359 }
2360 fatal("Unsupported conversion format \"%s\"", optarg);
2361 case 'n':
2362 cert_principals = optarg;
2363 break;
Adam Langleyd0592972015-03-30 14:49:51 -07002364 case 'o':
2365 use_new_format = 1;
2366 break;
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002367 case 'p':
2368 change_passphrase = 1;
2369 break;
2370 case 'c':
2371 change_comment = 1;
2372 break;
2373 case 'f':
Greg Hartmanccacbc92016-02-03 09:59:44 -08002374 if (strlcpy(identity_file, optarg,
2375 sizeof(identity_file)) >= sizeof(identity_file))
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002376 fatal("Identity filename too long");
2377 have_identity = 1;
2378 break;
2379 case 'g':
2380 print_generic = 1;
2381 break;
2382 case 'P':
2383 identity_passphrase = optarg;
2384 break;
2385 case 'N':
2386 identity_new_passphrase = optarg;
2387 break;
Adam Langleyd0592972015-03-30 14:49:51 -07002388 case 'Q':
2389 check_krl = 1;
2390 break;
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002391 case 'O':
2392 add_cert_option(optarg);
2393 break;
Adam Langleyd0592972015-03-30 14:49:51 -07002394 case 'Z':
2395 new_format_cipher = optarg;
2396 break;
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002397 case 'C':
2398 identity_comment = optarg;
2399 break;
2400 case 'q':
2401 quiet = 1;
2402 break;
2403 case 'e':
2404 case 'x':
2405 /* export key */
2406 convert_to = 1;
2407 break;
2408 case 'h':
2409 cert_key_type = SSH2_CERT_TYPE_HOST;
2410 certflags_flags = 0;
2411 break;
Adam Langleyd0592972015-03-30 14:49:51 -07002412 case 'k':
2413 gen_krl = 1;
2414 break;
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002415 case 'i':
2416 case 'X':
2417 /* import key */
2418 convert_from = 1;
2419 break;
2420 case 'y':
2421 print_public = 1;
2422 break;
2423 case 's':
2424 ca_key_path = optarg;
2425 break;
2426 case 't':
2427 key_type_name = optarg;
2428 break;
2429 case 'D':
2430 pkcs11provider = optarg;
2431 break;
Adam Langleyd0592972015-03-30 14:49:51 -07002432 case 'u':
2433 update_krl = 1;
2434 break;
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002435 case 'v':
2436 if (log_level == SYSLOG_LEVEL_INFO)
2437 log_level = SYSLOG_LEVEL_DEBUG1;
2438 else {
2439 if (log_level >= SYSLOG_LEVEL_DEBUG1 &&
2440 log_level < SYSLOG_LEVEL_DEBUG3)
2441 log_level++;
2442 }
2443 break;
2444 case 'r':
2445 rr_hostname = optarg;
2446 break;
Greg Hartmanccacbc92016-02-03 09:59:44 -08002447 case 'a':
2448 rounds = (int)strtonum(optarg, 1, INT_MAX, &errstr);
2449 if (errstr)
2450 fatal("Invalid number: %s (%s)",
2451 optarg, errstr);
2452 break;
2453 case 'V':
2454 parse_cert_times(optarg);
2455 break;
2456 case 'z':
2457 errno = 0;
2458 cert_serial = strtoull(optarg, &ep, 10);
2459 if (*optarg < '0' || *optarg > '9' || *ep != '\0' ||
2460 (errno == ERANGE && cert_serial == ULLONG_MAX))
2461 fatal("Invalid serial number \"%s\"", optarg);
2462 break;
2463#ifdef WITH_OPENSSL
2464 /* Moduli generation/screening */
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002465 case 'G':
2466 do_gen_candidates = 1;
2467 if (strlcpy(out_file, optarg, sizeof(out_file)) >=
2468 sizeof(out_file))
2469 fatal("Output filename too long");
2470 break;
Greg Hartman9768ca42017-06-22 20:49:52 -07002471 case 'J':
2472 lines_to_process = strtoul(optarg, NULL, 10);
2473 break;
2474 case 'j':
2475 start_lineno = strtoul(optarg, NULL, 10);
2476 break;
2477 case 'K':
2478 if (strlen(optarg) >= PATH_MAX)
2479 fatal("Checkpoint filename too long");
2480 checkpoint = xstrdup(optarg);
2481 break;
2482 case 'M':
2483 memory = (u_int32_t)strtonum(optarg, 1, UINT_MAX,
2484 &errstr);
2485 if (errstr)
2486 fatal("Memory limit is %s: %s", errstr, optarg);
2487 break;
2488 case 'S':
2489 /* XXX - also compare length against bits */
2490 if (BN_hex2bn(&start, optarg) == 0)
2491 fatal("Invalid start point.");
2492 break;
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002493 case 'T':
2494 do_screen_candidates = 1;
2495 if (strlcpy(out_file, optarg, sizeof(out_file)) >=
2496 sizeof(out_file))
2497 fatal("Output filename too long");
2498 break;
Greg Hartman9768ca42017-06-22 20:49:52 -07002499 case 'W':
2500 generator_wanted = (u_int32_t)strtonum(optarg, 1,
2501 UINT_MAX, &errstr);
2502 if (errstr != NULL)
2503 fatal("Desired generator invalid: %s (%s)",
2504 optarg, errstr);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002505 break;
Adam Langleyd0592972015-03-30 14:49:51 -07002506#endif /* WITH_OPENSSL */
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002507 case '?':
2508 default:
2509 usage();
2510 }
2511 }
2512
2513 /* reinit */
2514 log_init(argv[0], log_level, SYSLOG_FACILITY_USER, 1);
2515
2516 argv += optind;
2517 argc -= optind;
2518
2519 if (ca_key_path != NULL) {
Adam Langleyd0592972015-03-30 14:49:51 -07002520 if (argc < 1 && !gen_krl) {
Greg Hartmanccacbc92016-02-03 09:59:44 -08002521 error("Too few arguments.");
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002522 usage();
2523 }
Adam Langleyd0592972015-03-30 14:49:51 -07002524 } else if (argc > 0 && !gen_krl && !check_krl) {
Greg Hartmanccacbc92016-02-03 09:59:44 -08002525 error("Too many arguments.");
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002526 usage();
2527 }
2528 if (change_passphrase && change_comment) {
Greg Hartmanccacbc92016-02-03 09:59:44 -08002529 error("Can only have one of -p and -c.");
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002530 usage();
2531 }
2532 if (print_fingerprint && (delete_host || hash_hosts)) {
Greg Hartmanccacbc92016-02-03 09:59:44 -08002533 error("Cannot use -l with -H or -R.");
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002534 usage();
2535 }
Adam Langleyd0592972015-03-30 14:49:51 -07002536 if (gen_krl) {
2537 do_gen_krl(pw, update_krl, argc, argv);
2538 return (0);
2539 }
2540 if (check_krl) {
2541 do_check_krl(pw, argc, argv);
2542 return (0);
2543 }
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002544 if (ca_key_path != NULL) {
2545 if (cert_key_id == NULL)
2546 fatal("Must specify key id (-I) when certifying");
2547 do_ca_sign(pw, argc, argv);
2548 }
2549 if (show_cert)
2550 do_show_cert(pw);
2551 if (delete_host || hash_hosts || find_host)
2552 do_known_hosts(pw, rr_hostname);
Adam Langleyd0592972015-03-30 14:49:51 -07002553 if (pkcs11provider != NULL)
2554 do_download(pw);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002555 if (print_fingerprint || print_bubblebabble)
2556 do_fingerprint(pw);
2557 if (change_passphrase)
2558 do_change_passphrase(pw);
2559 if (change_comment)
2560 do_change_comment(pw);
Adam Langleyd0592972015-03-30 14:49:51 -07002561#ifdef WITH_OPENSSL
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002562 if (convert_to)
2563 do_convert_to(pw);
2564 if (convert_from)
2565 do_convert_from(pw);
Adam Langleyd0592972015-03-30 14:49:51 -07002566#endif
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002567 if (print_public)
2568 do_print_public(pw);
2569 if (rr_hostname != NULL) {
2570 unsigned int n = 0;
2571
2572 if (have_identity) {
2573 n = do_print_resource_record(pw,
2574 identity_file, rr_hostname);
Greg Hartmanccacbc92016-02-03 09:59:44 -08002575 if (n == 0)
2576 fatal("%s: %s", identity_file, strerror(errno));
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002577 exit(0);
2578 } else {
2579
2580 n += do_print_resource_record(pw,
2581 _PATH_HOST_RSA_KEY_FILE, rr_hostname);
2582 n += do_print_resource_record(pw,
2583 _PATH_HOST_DSA_KEY_FILE, rr_hostname);
Adam Langleyd0592972015-03-30 14:49:51 -07002584 n += do_print_resource_record(pw,
2585 _PATH_HOST_ECDSA_KEY_FILE, rr_hostname);
2586 n += do_print_resource_record(pw,
2587 _PATH_HOST_ED25519_KEY_FILE, rr_hostname);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002588 if (n == 0)
2589 fatal("no keys found.");
2590 exit(0);
2591 }
2592 }
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002593
Greg Hartmanccacbc92016-02-03 09:59:44 -08002594#ifdef WITH_OPENSSL
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002595 if (do_gen_candidates) {
2596 FILE *out = fopen(out_file, "w");
2597
2598 if (out == NULL) {
2599 error("Couldn't open modulus candidate file \"%s\": %s",
2600 out_file, strerror(errno));
2601 return (1);
2602 }
2603 if (bits == 0)
2604 bits = DEFAULT_BITS;
2605 if (gen_candidates(out, memory, bits, start) != 0)
2606 fatal("modulus candidate generation failed");
2607
2608 return (0);
2609 }
2610
2611 if (do_screen_candidates) {
2612 FILE *in;
Adam Langleyd0592972015-03-30 14:49:51 -07002613 FILE *out = fopen(out_file, "a");
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002614
2615 if (have_identity && strcmp(identity_file, "-") != 0) {
2616 if ((in = fopen(identity_file, "r")) == NULL) {
2617 fatal("Couldn't open modulus candidate "
2618 "file \"%s\": %s", identity_file,
2619 strerror(errno));
2620 }
2621 } else
2622 in = stdin;
2623
2624 if (out == NULL) {
2625 fatal("Couldn't open moduli file \"%s\": %s",
2626 out_file, strerror(errno));
2627 }
Adam Langleyd0592972015-03-30 14:49:51 -07002628 if (prime_test(in, out, rounds == 0 ? 100 : rounds,
2629 generator_wanted, checkpoint,
2630 start_lineno, lines_to_process) != 0)
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002631 fatal("modulus screening failed");
2632 return (0);
2633 }
Greg Hartmanccacbc92016-02-03 09:59:44 -08002634#endif
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002635
2636 if (gen_all_hostkeys) {
2637 do_gen_all_hostkeys(pw);
2638 return (0);
2639 }
2640
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002641 if (key_type_name == NULL)
Greg Hartmanccacbc92016-02-03 09:59:44 -08002642 key_type_name = DEFAULT_KEY_TYPE_NAME;
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002643
Adam Langleyd0592972015-03-30 14:49:51 -07002644 type = sshkey_type_from_name(key_type_name);
2645 type_bits_valid(type, key_type_name, &bits);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002646
2647 if (!quiet)
Adam Langleyd0592972015-03-30 14:49:51 -07002648 printf("Generating public/private %s key pair.\n",
2649 key_type_name);
Greg Hartmanccacbc92016-02-03 09:59:44 -08002650 if ((r = sshkey_generate(type, bits, &private)) != 0)
2651 fatal("key_generate failed");
2652 if ((r = sshkey_from_private(private, &public)) != 0)
2653 fatal("key_from_private failed: %s\n", ssh_err(r));
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002654
2655 if (!have_identity)
2656 ask_filename(pw, "Enter file in which to save the key");
2657
2658 /* Create ~/.ssh directory if it doesn't already exist. */
2659 snprintf(dotsshdir, sizeof dotsshdir, "%s/%s",
2660 pw->pw_dir, _PATH_SSH_USER_DIR);
2661 if (strstr(identity_file, dotsshdir) != NULL) {
2662 if (stat(dotsshdir, &st) < 0) {
2663 if (errno != ENOENT) {
2664 error("Could not stat %s: %s", dotsshdir,
2665 strerror(errno));
2666 } else if (mkdir(dotsshdir, 0700) < 0) {
2667 error("Could not create directory '%s': %s",
2668 dotsshdir, strerror(errno));
2669 } else if (!quiet)
2670 printf("Created directory '%s'.\n", dotsshdir);
2671 }
2672 }
2673 /* If the file already exists, ask the user to confirm. */
2674 if (stat(identity_file, &st) >= 0) {
2675 char yesno[3];
2676 printf("%s already exists.\n", identity_file);
2677 printf("Overwrite (y/n)? ");
2678 fflush(stdout);
2679 if (fgets(yesno, sizeof(yesno), stdin) == NULL)
2680 exit(1);
2681 if (yesno[0] != 'y' && yesno[0] != 'Y')
2682 exit(1);
2683 }
2684 /* Ask for a passphrase (twice). */
2685 if (identity_passphrase)
2686 passphrase1 = xstrdup(identity_passphrase);
2687 else if (identity_new_passphrase)
2688 passphrase1 = xstrdup(identity_new_passphrase);
2689 else {
2690passphrase_again:
2691 passphrase1 =
2692 read_passphrase("Enter passphrase (empty for no "
2693 "passphrase): ", RP_ALLOW_STDIN);
2694 passphrase2 = read_passphrase("Enter same passphrase again: ",
2695 RP_ALLOW_STDIN);
2696 if (strcmp(passphrase1, passphrase2) != 0) {
2697 /*
2698 * The passphrases do not match. Clear them and
2699 * retry.
2700 */
Adam Langleyd0592972015-03-30 14:49:51 -07002701 explicit_bzero(passphrase1, strlen(passphrase1));
2702 explicit_bzero(passphrase2, strlen(passphrase2));
2703 free(passphrase1);
2704 free(passphrase2);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002705 printf("Passphrases do not match. Try again.\n");
2706 goto passphrase_again;
2707 }
2708 /* Clear the other copy of the passphrase. */
Adam Langleyd0592972015-03-30 14:49:51 -07002709 explicit_bzero(passphrase2, strlen(passphrase2));
2710 free(passphrase2);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002711 }
2712
2713 if (identity_comment) {
2714 strlcpy(comment, identity_comment, sizeof(comment));
2715 } else {
2716 /* Create default comment field for the passphrase. */
2717 snprintf(comment, sizeof comment, "%s@%s", pw->pw_name, hostname);
2718 }
2719
2720 /* Save the key with the given passphrase and comment. */
Adam Langleyd0592972015-03-30 14:49:51 -07002721 if ((r = sshkey_save_private(private, identity_file, passphrase1,
2722 comment, use_new_format, new_format_cipher, rounds)) != 0) {
Greg Hartmanccacbc92016-02-03 09:59:44 -08002723 error("Saving key \"%s\" failed: %s",
Adam Langleyd0592972015-03-30 14:49:51 -07002724 identity_file, ssh_err(r));
2725 explicit_bzero(passphrase1, strlen(passphrase1));
2726 free(passphrase1);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002727 exit(1);
2728 }
2729 /* Clear the passphrase. */
Adam Langleyd0592972015-03-30 14:49:51 -07002730 explicit_bzero(passphrase1, strlen(passphrase1));
2731 free(passphrase1);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002732
2733 /* Clear the private key and the random number generator. */
Adam Langleyd0592972015-03-30 14:49:51 -07002734 sshkey_free(private);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002735
2736 if (!quiet)
2737 printf("Your identification has been saved in %s.\n", identity_file);
2738
2739 strlcat(identity_file, ".pub", sizeof(identity_file));
Greg Hartmanccacbc92016-02-03 09:59:44 -08002740 if ((fd = open(identity_file, O_WRONLY|O_CREAT|O_TRUNC, 0644)) == -1)
2741 fatal("Unable to save public key to %s: %s",
2742 identity_file, strerror(errno));
2743 if ((f = fdopen(fd, "w")) == NULL)
2744 fatal("fdopen %s failed: %s", identity_file, strerror(errno));
Adam Langleyd0592972015-03-30 14:49:51 -07002745 if ((r = sshkey_write(public, f)) != 0)
Greg Hartmanccacbc92016-02-03 09:59:44 -08002746 error("write key failed: %s", ssh_err(r));
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002747 fprintf(f, " %s\n", comment);
2748 fclose(f);
2749
2750 if (!quiet) {
Adam Langleyd0592972015-03-30 14:49:51 -07002751 fp = sshkey_fingerprint(public, fingerprint_hash,
2752 SSH_FP_DEFAULT);
2753 ra = sshkey_fingerprint(public, fingerprint_hash,
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002754 SSH_FP_RANDOMART);
Adam Langleyd0592972015-03-30 14:49:51 -07002755 if (fp == NULL || ra == NULL)
2756 fatal("sshkey_fingerprint failed");
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002757 printf("Your public key has been saved in %s.\n",
2758 identity_file);
2759 printf("The key fingerprint is:\n");
2760 printf("%s %s\n", fp, comment);
2761 printf("The key's randomart image is:\n");
2762 printf("%s\n", ra);
Adam Langleyd0592972015-03-30 14:49:51 -07002763 free(ra);
2764 free(fp);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002765 }
2766
Adam Langleyd0592972015-03-30 14:49:51 -07002767 sshkey_free(public);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002768 exit(0);
2769}