blob: b664a5f1feb7ce2fa3a6b67f914fd771b03a4c08 [file] [log] [blame]
Damien Miller5b01b0d2013-10-23 16:31:31 +11001/* $OpenBSD: ssh-keygen.c,v 1.235 2013/10/23 04:16:22 djm Exp $ */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002/*
Damien Miller95def091999-11-25 00:26:21 +11003 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1994 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5 * All rights reserved
Damien Miller95def091999-11-25 00:26:21 +11006 * Identity and host key generation and maintenance.
Damien Millere4340be2000-09-16 13:29:08 +11007 *
8 * As far as I am concerned, the code I have written for this software
9 * can be used freely for any purpose. Any derived versions of this
10 * software must be clearly marked as such, and if the derived work is
11 * incompatible with the protocol description in the RFC file, it must be
12 * called by a name other than "ssh" or "Secure Shell".
Damien Miller95def091999-11-25 00:26:21 +110013 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100014
15#include "includes.h"
Damien Millerf17883e2006-03-15 11:45:54 +110016
17#include <sys/types.h>
Damien Millere3b60b52006-07-10 21:08:03 +100018#include <sys/socket.h>
Damien Millerf17883e2006-03-15 11:45:54 +110019#include <sys/stat.h>
Damien Miller8dbffe72006-08-05 11:02:17 +100020#include <sys/param.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100021
Damien Millereba71ba2000-04-29 23:57:08 +100022#include <openssl/evp.h>
23#include <openssl/pem.h>
Darren Tuckerbfaaf962008-02-28 19:13:52 +110024#include "openbsd-compat/openssl-compat.h"
Damien Millereba71ba2000-04-29 23:57:08 +100025
Darren Tucker39972492006-07-12 22:22:46 +100026#include <errno.h>
Damien Miller57cf6382006-07-10 21:13:46 +100027#include <fcntl.h>
Damien Millerb8fe89c2006-07-24 14:51:00 +100028#include <netdb.h>
Darren Tucker2ee50c52006-07-11 18:55:05 +100029#ifdef HAVE_PATHS_H
30# include <paths.h>
31#endif
Damien Miller9f2abc42006-07-10 20:53:08 +100032#include <pwd.h>
Damien Millerded319c2006-09-01 15:38:36 +100033#include <stdarg.h>
Damien Millera7a73ee2006-08-05 11:37:59 +100034#include <stdio.h>
Damien Millere7a1e5c2006-08-05 11:34:19 +100035#include <stdlib.h>
Damien Millere3476ed2006-07-24 14:13:33 +100036#include <string.h>
Damien Millere6b3b612006-07-24 14:01:23 +100037#include <unistd.h>
Damien Miller9f2abc42006-07-10 20:53:08 +100038
Damien Millerd4a8b7e1999-10-27 13:42:43 +100039#include "xmalloc.h"
Damien Millereba71ba2000-04-29 23:57:08 +100040#include "key.h"
Ben Lindstromd09fcf52001-03-29 00:29:54 +000041#include "rsa.h"
Damien Millereba71ba2000-04-29 23:57:08 +100042#include "authfile.h"
43#include "uuencode.h"
Damien Miller874d77b2000-10-14 16:23:11 +110044#include "buffer.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000045#include "pathnames.h"
46#include "log.h"
Darren Tuckere608ca22004-05-13 16:15:47 +100047#include "misc.h"
Damien Miller4b42d7f2005-03-01 21:48:35 +110048#include "match.h"
49#include "hostfile.h"
Damien Miller69996102006-07-10 20:53:31 +100050#include "dns.h"
Damien Millerf3747bf2013-01-18 11:44:04 +110051#include "ssh.h"
Damien Miller0a80ca12010-02-27 07:55:05 +110052#include "ssh2.h"
Damien Miller7ea845e2010-02-12 09:21:02 +110053#include "ssh-pkcs11.h"
Damien Millerf3747bf2013-01-18 11:44:04 +110054#include "atomicio.h"
55#include "krl.h"
Ben Lindstromcd392282001-07-04 03:44:03 +000056
Damien Miller3f54a9f2005-11-05 14:52:18 +110057/* Number of bits in the RSA/DSA key. This value can be set on the command line. */
58#define DEFAULT_BITS 2048
59#define DEFAULT_BITS_DSA 1024
Damien Miller6e9f6802010-09-10 11:17:38 +100060#define DEFAULT_BITS_ECDSA 256
Damien Miller3f54a9f2005-11-05 14:52:18 +110061u_int32_t bits = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100062
Damien Miller5428f641999-11-25 11:54:57 +110063/*
64 * Flag indicating that we just want to change the passphrase. This can be
65 * set on the command line.
66 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100067int change_passphrase = 0;
68
Damien Miller5428f641999-11-25 11:54:57 +110069/*
70 * Flag indicating that we just want to change the comment. This can be set
71 * on the command line.
72 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100073int change_comment = 0;
74
75int quiet = 0;
76
Darren Tucker35c45532008-06-13 04:43:15 +100077int log_level = SYSLOG_LEVEL_INFO;
78
Damien Miller4b42d7f2005-03-01 21:48:35 +110079/* Flag indicating that we want to hash a known_hosts file */
80int hash_hosts = 0;
81/* Flag indicating that we want lookup a host in known_hosts file */
82int find_host = 0;
83/* Flag indicating that we want to delete a host from a known_hosts file */
84int delete_host = 0;
85
Damien Millerf2b70ca2010-03-05 07:39:35 +110086/* Flag indicating that we want to show the contents of a certificate */
87int show_cert = 0;
88
Damien Miller10f6f6b1999-11-17 17:29:08 +110089/* Flag indicating that we just want to see the key fingerprint */
90int print_fingerprint = 0;
Ben Lindstrom8fd372b2001-03-12 03:02:17 +000091int print_bubblebabble = 0;
Damien Miller10f6f6b1999-11-17 17:29:08 +110092
Damien Miller431f66b1999-11-21 18:31:57 +110093/* The identity file name, given on the command line or entered by the user. */
94char identity_file[1024];
95int have_identity = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100096
97/* This is set to the passphrase if given on the command line. */
98char *identity_passphrase = NULL;
99
100/* This is set to the new passphrase if given on the command line. */
101char *identity_new_passphrase = NULL;
102
103/* This is set to the new comment if given on the command line. */
104char *identity_comment = NULL;
105
Damien Miller0a80ca12010-02-27 07:55:05 +1100106/* Path to CA key when certifying keys. */
107char *ca_key_path = NULL;
108
Damien Miller4e270b02010-04-16 15:56:21 +1000109/* Certificate serial number */
Damien Miller55aca022012-12-03 11:25:30 +1100110unsigned long long cert_serial = 0;
Damien Miller4e270b02010-04-16 15:56:21 +1000111
Damien Miller0a80ca12010-02-27 07:55:05 +1100112/* Key type when certifying */
113u_int cert_key_type = SSH2_CERT_TYPE_USER;
114
115/* "key ID" of signed key */
116char *cert_key_id = NULL;
117
118/* Comma-separated list of principal names for certifying keys */
119char *cert_principals = NULL;
120
121/* Validity period for certificates */
122u_int64_t cert_valid_from = 0;
123u_int64_t cert_valid_to = ~0ULL;
124
Damien Miller4e270b02010-04-16 15:56:21 +1000125/* Certificate options */
Damien Millerd0e4a8e2010-05-21 14:58:32 +1000126#define CERTOPT_X_FWD (1)
127#define CERTOPT_AGENT_FWD (1<<1)
128#define CERTOPT_PORT_FWD (1<<2)
129#define CERTOPT_PTY (1<<3)
130#define CERTOPT_USER_RC (1<<4)
131#define CERTOPT_DEFAULT (CERTOPT_X_FWD|CERTOPT_AGENT_FWD| \
132 CERTOPT_PORT_FWD|CERTOPT_PTY|CERTOPT_USER_RC)
133u_int32_t certflags_flags = CERTOPT_DEFAULT;
134char *certflags_command = NULL;
135char *certflags_src_addr = NULL;
Damien Miller0a80ca12010-02-27 07:55:05 +1100136
Damien Miller44b25042010-07-02 13:35:01 +1000137/* Conversion to/from various formats */
138int convert_to = 0;
139int convert_from = 0;
140enum {
141 FMT_RFC4716,
142 FMT_PKCS8,
143 FMT_PEM
144} convert_format = FMT_RFC4716;
Damien Millereba71ba2000-04-29 23:57:08 +1000145int print_public = 0;
Damien Miller37876e92003-05-15 10:19:46 +1000146int print_generic = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100147
Damien Millera41c8b12002-01-22 23:05:08 +1100148char *key_type_name = NULL;
Damien Millereba71ba2000-04-29 23:57:08 +1000149
Damien Miller757f34e2010-08-05 13:05:31 +1000150/* Load key from this PKCS#11 provider */
151char *pkcs11provider = NULL;
Damien Miller44b25042010-07-02 13:35:01 +1000152
Damien Miller431f66b1999-11-21 18:31:57 +1100153/* argv0 */
154extern char *__progname;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000155
Damien Millereba71ba2000-04-29 23:57:08 +1000156char hostname[MAXHOSTNAMELEN];
157
Darren Tucker770fc012004-05-13 16:24:32 +1000158/* moduli.c */
Damien Millerb089fb52005-05-26 12:16:18 +1000159int gen_candidates(FILE *, u_int32_t, u_int32_t, BIGNUM *);
Damien Millerdfceafe2012-07-06 13:44:19 +1000160int prime_test(FILE *, FILE *, u_int32_t, u_int32_t, char *, unsigned long,
161 unsigned long);
Darren Tucker770fc012004-05-13 16:24:32 +1000162
Ben Lindstrombba81212001-06-25 05:01:22 +0000163static void
Damien Miller884b63a2011-05-05 14:14:52 +1000164type_bits_valid(int type, u_int32_t *bitsp)
Damien Miller58f1baf2011-05-05 14:06:15 +1000165{
166 u_int maxbits;
167
168 if (type == KEY_UNSPEC) {
169 fprintf(stderr, "unknown key type %s\n", key_type_name);
170 exit(1);
171 }
Damien Miller884b63a2011-05-05 14:14:52 +1000172 if (*bitsp == 0) {
Damien Miller58f1baf2011-05-05 14:06:15 +1000173 if (type == KEY_DSA)
Damien Miller884b63a2011-05-05 14:14:52 +1000174 *bitsp = DEFAULT_BITS_DSA;
Damien Miller58f1baf2011-05-05 14:06:15 +1000175 else if (type == KEY_ECDSA)
Damien Miller884b63a2011-05-05 14:14:52 +1000176 *bitsp = DEFAULT_BITS_ECDSA;
Damien Miller58f1baf2011-05-05 14:06:15 +1000177 else
Damien Miller884b63a2011-05-05 14:14:52 +1000178 *bitsp = DEFAULT_BITS;
Damien Miller58f1baf2011-05-05 14:06:15 +1000179 }
180 maxbits = (type == KEY_DSA) ?
181 OPENSSL_DSA_MAX_MODULUS_BITS : OPENSSL_RSA_MAX_MODULUS_BITS;
Damien Miller884b63a2011-05-05 14:14:52 +1000182 if (*bitsp > maxbits) {
Damien Miller58f1baf2011-05-05 14:06:15 +1000183 fprintf(stderr, "key bits exceeds maximum %d\n", maxbits);
184 exit(1);
185 }
Damien Miller884b63a2011-05-05 14:14:52 +1000186 if (type == KEY_DSA && *bitsp != 1024)
Damien Miller58f1baf2011-05-05 14:06:15 +1000187 fatal("DSA keys must be 1024 bits");
Damien Miller884b63a2011-05-05 14:14:52 +1000188 else if (type != KEY_ECDSA && *bitsp < 768)
Damien Miller58f1baf2011-05-05 14:06:15 +1000189 fatal("Key must at least be 768 bits");
Damien Miller884b63a2011-05-05 14:14:52 +1000190 else if (type == KEY_ECDSA && key_ecdsa_bits_to_nid(*bitsp) == -1)
Damien Miller58f1baf2011-05-05 14:06:15 +1000191 fatal("Invalid ECDSA key length - valid lengths are "
192 "256, 384 or 521 bits");
193}
194
195static void
Damien Miller431f66b1999-11-21 18:31:57 +1100196ask_filename(struct passwd *pw, const char *prompt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000197{
Damien Miller95def091999-11-25 00:26:21 +1100198 char buf[1024];
Damien Millere39cacc2000-11-29 12:18:44 +1100199 char *name = NULL;
200
Damien Miller993dd552002-02-19 15:22:47 +1100201 if (key_type_name == NULL)
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000202 name = _PATH_SSH_CLIENT_ID_RSA;
Damien Miller90967402006-03-26 14:07:26 +1100203 else {
Damien Miller993dd552002-02-19 15:22:47 +1100204 switch (key_type_from_name(key_type_name)) {
205 case KEY_RSA1:
206 name = _PATH_SSH_CLIENT_IDENTITY;
207 break;
Damien Miller4e270b02010-04-16 15:56:21 +1000208 case KEY_DSA_CERT:
209 case KEY_DSA_CERT_V00:
Damien Miller993dd552002-02-19 15:22:47 +1100210 case KEY_DSA:
211 name = _PATH_SSH_CLIENT_ID_DSA;
212 break;
Damien Millerdd190dd2010-11-11 14:17:02 +1100213#ifdef OPENSSL_HAS_ECC
Damien Millereb8b60e2010-08-31 22:41:14 +1000214 case KEY_ECDSA_CERT:
215 case KEY_ECDSA:
216 name = _PATH_SSH_CLIENT_ID_ECDSA;
217 break;
Damien Millerdd190dd2010-11-11 14:17:02 +1100218#endif
Damien Miller4e270b02010-04-16 15:56:21 +1000219 case KEY_RSA_CERT:
220 case KEY_RSA_CERT_V00:
Damien Miller993dd552002-02-19 15:22:47 +1100221 case KEY_RSA:
222 name = _PATH_SSH_CLIENT_ID_RSA;
223 break;
224 default:
Damien Miller9eab9562009-02-22 08:47:02 +1100225 fprintf(stderr, "bad key type\n");
Damien Miller993dd552002-02-19 15:22:47 +1100226 exit(1);
227 break;
228 }
Damien Miller90967402006-03-26 14:07:26 +1100229 }
Damien Millere39cacc2000-11-29 12:18:44 +1100230 snprintf(identity_file, sizeof(identity_file), "%s/%s", pw->pw_dir, name);
Ben Lindstrom3deda8b2000-12-22 20:27:43 +0000231 fprintf(stderr, "%s (%s): ", prompt, identity_file);
Damien Miller95def091999-11-25 00:26:21 +1100232 if (fgets(buf, sizeof(buf), stdin) == NULL)
233 exit(1);
Damien Miller14b017d2007-09-17 16:09:15 +1000234 buf[strcspn(buf, "\n")] = '\0';
Damien Miller95def091999-11-25 00:26:21 +1100235 if (strcmp(buf, "") != 0)
236 strlcpy(identity_file, buf, sizeof(identity_file));
237 have_identity = 1;
Damien Miller10f6f6b1999-11-17 17:29:08 +1100238}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000239
Ben Lindstrombba81212001-06-25 05:01:22 +0000240static Key *
Ben Lindstromd78ae762001-06-05 20:35:09 +0000241load_identity(char *filename)
Damien Millereba71ba2000-04-29 23:57:08 +1000242{
Ben Lindstromd0fca422001-03-26 13:44:06 +0000243 char *pass;
244 Key *prv;
245
Ben Lindstroma3700052001-04-05 23:26:32 +0000246 prv = key_load_private(filename, "", NULL);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000247 if (prv == NULL) {
Ben Lindstromd78ae762001-06-05 20:35:09 +0000248 if (identity_passphrase)
249 pass = xstrdup(identity_passphrase);
250 else
Ben Lindstrom949974b2001-06-25 05:20:31 +0000251 pass = read_passphrase("Enter passphrase: ",
252 RP_ALLOW_STDIN);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000253 prv = key_load_private(filename, pass, NULL);
Damien Millereba71ba2000-04-29 23:57:08 +1000254 memset(pass, 0, strlen(pass));
Darren Tuckera627d422013-06-02 07:31:17 +1000255 free(pass);
Damien Millereba71ba2000-04-29 23:57:08 +1000256 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000257 return prv;
Damien Millereba71ba2000-04-29 23:57:08 +1000258}
259
Damien Miller874d77b2000-10-14 16:23:11 +1100260#define SSH_COM_PUBLIC_BEGIN "---- BEGIN SSH2 PUBLIC KEY ----"
Ben Lindstromcb72e4f2002-06-21 00:41:51 +0000261#define SSH_COM_PUBLIC_END "---- END SSH2 PUBLIC KEY ----"
Damien Miller874d77b2000-10-14 16:23:11 +1100262#define SSH_COM_PRIVATE_BEGIN "---- BEGIN SSH2 ENCRYPTED PRIVATE KEY ----"
Kevin Stevesef4eea92001-02-05 12:42:17 +0000263#define SSH_COM_PRIVATE_KEY_MAGIC 0x3f6ff9eb
Damien Millereba71ba2000-04-29 23:57:08 +1000264
Ben Lindstrombba81212001-06-25 05:01:22 +0000265static void
Damien Miller44b25042010-07-02 13:35:01 +1000266do_convert_to_ssh2(struct passwd *pw, Key *k)
Damien Millereba71ba2000-04-29 23:57:08 +1000267{
Ben Lindstromc58ab022002-02-26 18:15:09 +0000268 u_int len;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000269 u_char *blob;
Darren Tuckerd04758d2010-01-12 19:41:57 +1100270 char comment[61];
Damien Millereba71ba2000-04-29 23:57:08 +1000271
Damien Millera563cce2012-04-22 11:07:28 +1000272 if (k->type == KEY_RSA1) {
273 fprintf(stderr, "version 1 keys are not supported\n");
274 exit(1);
275 }
Ben Lindstrom99a30f12001-09-18 05:49:14 +0000276 if (key_to_blob(k, &blob, &len) <= 0) {
277 fprintf(stderr, "key_to_blob failed\n");
278 exit(1);
279 }
Darren Tuckerd04758d2010-01-12 19:41:57 +1100280 /* Comment + surrounds must fit into 72 chars (RFC 4716 sec 3.3) */
281 snprintf(comment, sizeof(comment),
282 "%u-bit %s, converted by %s@%s from OpenSSH",
Ben Lindstrom46c264f2001-04-24 16:56:58 +0000283 key_size(k), key_type(k),
Damien Millereba71ba2000-04-29 23:57:08 +1000284 pw->pw_name, hostname);
Darren Tuckerd04758d2010-01-12 19:41:57 +1100285
286 fprintf(stdout, "%s\n", SSH_COM_PUBLIC_BEGIN);
287 fprintf(stdout, "Comment: \"%s\"\n", comment);
Damien Millereba71ba2000-04-29 23:57:08 +1000288 dump_base64(stdout, blob, len);
Damien Miller874d77b2000-10-14 16:23:11 +1100289 fprintf(stdout, "%s\n", SSH_COM_PUBLIC_END);
Ben Lindstrom46c264f2001-04-24 16:56:58 +0000290 key_free(k);
Darren Tuckera627d422013-06-02 07:31:17 +1000291 free(blob);
Damien Millereba71ba2000-04-29 23:57:08 +1000292 exit(0);
293}
294
Ben Lindstrombba81212001-06-25 05:01:22 +0000295static void
Damien Miller44b25042010-07-02 13:35:01 +1000296do_convert_to_pkcs8(Key *k)
297{
298 switch (key_type_plain(k->type)) {
Damien Millera563cce2012-04-22 11:07:28 +1000299 case KEY_RSA1:
Damien Miller44b25042010-07-02 13:35:01 +1000300 case KEY_RSA:
301 if (!PEM_write_RSA_PUBKEY(stdout, k->rsa))
302 fatal("PEM_write_RSA_PUBKEY failed");
303 break;
304 case KEY_DSA:
305 if (!PEM_write_DSA_PUBKEY(stdout, k->dsa))
306 fatal("PEM_write_DSA_PUBKEY failed");
307 break;
Damien Miller6af914a2010-09-10 11:39:26 +1000308#ifdef OPENSSL_HAS_ECC
Damien Millereb8b60e2010-08-31 22:41:14 +1000309 case KEY_ECDSA:
310 if (!PEM_write_EC_PUBKEY(stdout, k->ecdsa))
311 fatal("PEM_write_EC_PUBKEY failed");
312 break;
Damien Miller6af914a2010-09-10 11:39:26 +1000313#endif
Damien Miller44b25042010-07-02 13:35:01 +1000314 default:
315 fatal("%s: unsupported key type %s", __func__, key_type(k));
316 }
317 exit(0);
318}
319
320static void
321do_convert_to_pem(Key *k)
322{
323 switch (key_type_plain(k->type)) {
Damien Millera563cce2012-04-22 11:07:28 +1000324 case KEY_RSA1:
Damien Miller44b25042010-07-02 13:35:01 +1000325 case KEY_RSA:
326 if (!PEM_write_RSAPublicKey(stdout, k->rsa))
327 fatal("PEM_write_RSAPublicKey failed");
328 break;
329#if notyet /* OpenSSH 0.9.8 lacks this function */
330 case KEY_DSA:
331 if (!PEM_write_DSAPublicKey(stdout, k->dsa))
332 fatal("PEM_write_DSAPublicKey failed");
333 break;
334#endif
Damien Millereb8b60e2010-08-31 22:41:14 +1000335 /* XXX ECDSA? */
Damien Miller44b25042010-07-02 13:35:01 +1000336 default:
337 fatal("%s: unsupported key type %s", __func__, key_type(k));
338 }
339 exit(0);
340}
341
342static void
343do_convert_to(struct passwd *pw)
344{
345 Key *k;
346 struct stat st;
347
348 if (!have_identity)
349 ask_filename(pw, "Enter file in which the key is");
350 if (stat(identity_file, &st) < 0)
351 fatal("%s: %s: %s", __progname, identity_file, strerror(errno));
352 if ((k = key_load_public(identity_file, NULL)) == NULL) {
353 if ((k = load_identity(identity_file)) == NULL) {
354 fprintf(stderr, "load failed\n");
355 exit(1);
356 }
357 }
Damien Miller44b25042010-07-02 13:35:01 +1000358
359 switch (convert_format) {
360 case FMT_RFC4716:
361 do_convert_to_ssh2(pw, k);
362 break;
363 case FMT_PKCS8:
364 do_convert_to_pkcs8(k);
365 break;
366 case FMT_PEM:
367 do_convert_to_pem(k);
368 break;
369 default:
370 fatal("%s: unknown key format %d", __func__, convert_format);
371 }
372 exit(0);
373}
374
375static void
Damien Miller874d77b2000-10-14 16:23:11 +1100376buffer_get_bignum_bits(Buffer *b, BIGNUM *value)
377{
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000378 u_int bignum_bits = buffer_get_int(b);
379 u_int bytes = (bignum_bits + 7) / 8;
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000380
Damien Miller874d77b2000-10-14 16:23:11 +1100381 if (buffer_len(b) < bytes)
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000382 fatal("buffer_get_bignum_bits: input buffer too small: "
383 "need %d have %d", bytes, buffer_len(b));
Darren Tucker0bc85572006-11-07 23:14:41 +1100384 if (BN_bin2bn(buffer_ptr(b), bytes, value) == NULL)
385 fatal("buffer_get_bignum_bits: BN_bin2bn failed");
Damien Miller874d77b2000-10-14 16:23:11 +1100386 buffer_consume(b, bytes);
387}
388
Ben Lindstrombba81212001-06-25 05:01:22 +0000389static Key *
Ben Lindstrom90fd8142002-02-26 18:09:42 +0000390do_convert_private_ssh2_from_blob(u_char *blob, u_int blen)
Damien Miller874d77b2000-10-14 16:23:11 +1100391{
392 Buffer b;
Damien Miller874d77b2000-10-14 16:23:11 +1100393 Key *key = NULL;
Damien Miller874d77b2000-10-14 16:23:11 +1100394 char *type, *cipher;
Ben Lindstrom511d69e2001-07-04 05:05:27 +0000395 u_char *sig, data[] = "abcde12345";
Ben Lindstrome586c4c2001-06-25 05:04:58 +0000396 int magic, rlen, ktype, i1, i2, i3, i4;
397 u_int slen;
398 u_long e;
Damien Miller874d77b2000-10-14 16:23:11 +1100399
400 buffer_init(&b);
401 buffer_append(&b, blob, blen);
402
Darren Tucker82a3d2b2007-02-19 22:10:25 +1100403 magic = buffer_get_int(&b);
Damien Miller874d77b2000-10-14 16:23:11 +1100404 if (magic != SSH_COM_PRIVATE_KEY_MAGIC) {
405 error("bad magic 0x%x != 0x%x", magic, SSH_COM_PRIVATE_KEY_MAGIC);
406 buffer_free(&b);
407 return NULL;
408 }
Ben Lindstrom34f91882001-06-25 04:47:54 +0000409 i1 = buffer_get_int(&b);
Damien Miller874d77b2000-10-14 16:23:11 +1100410 type = buffer_get_string(&b, NULL);
411 cipher = buffer_get_string(&b, NULL);
Ben Lindstrom34f91882001-06-25 04:47:54 +0000412 i2 = buffer_get_int(&b);
413 i3 = buffer_get_int(&b);
414 i4 = buffer_get_int(&b);
Damien Miller80163902007-01-05 16:30:16 +1100415 debug("ignore (%d %d %d %d)", i1, i2, i3, i4);
Damien Miller874d77b2000-10-14 16:23:11 +1100416 if (strcmp(cipher, "none") != 0) {
417 error("unsupported cipher %s", cipher);
Darren Tuckera627d422013-06-02 07:31:17 +1000418 free(cipher);
Damien Miller874d77b2000-10-14 16:23:11 +1100419 buffer_free(&b);
Darren Tuckera627d422013-06-02 07:31:17 +1000420 free(type);
Damien Miller874d77b2000-10-14 16:23:11 +1100421 return NULL;
422 }
Darren Tuckera627d422013-06-02 07:31:17 +1000423 free(cipher);
Damien Miller874d77b2000-10-14 16:23:11 +1100424
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000425 if (strstr(type, "dsa")) {
426 ktype = KEY_DSA;
427 } else if (strstr(type, "rsa")) {
428 ktype = KEY_RSA;
429 } else {
Darren Tucker7cfeecf2005-01-20 10:56:31 +1100430 buffer_free(&b);
Darren Tuckera627d422013-06-02 07:31:17 +1000431 free(type);
Damien Miller874d77b2000-10-14 16:23:11 +1100432 return NULL;
433 }
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000434 key = key_new_private(ktype);
Darren Tuckera627d422013-06-02 07:31:17 +1000435 free(type);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000436
437 switch (key->type) {
438 case KEY_DSA:
439 buffer_get_bignum_bits(&b, key->dsa->p);
440 buffer_get_bignum_bits(&b, key->dsa->g);
441 buffer_get_bignum_bits(&b, key->dsa->q);
442 buffer_get_bignum_bits(&b, key->dsa->pub_key);
443 buffer_get_bignum_bits(&b, key->dsa->priv_key);
444 break;
445 case KEY_RSA:
Darren Tucker82a3d2b2007-02-19 22:10:25 +1100446 e = buffer_get_char(&b);
Ben Lindstrom34f91882001-06-25 04:47:54 +0000447 debug("e %lx", e);
448 if (e < 30) {
449 e <<= 8;
450 e += buffer_get_char(&b);
451 debug("e %lx", e);
452 e <<= 8;
453 e += buffer_get_char(&b);
454 debug("e %lx", e);
455 }
456 if (!BN_set_word(key->rsa->e, e)) {
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000457 buffer_free(&b);
458 key_free(key);
459 return NULL;
460 }
461 buffer_get_bignum_bits(&b, key->rsa->d);
462 buffer_get_bignum_bits(&b, key->rsa->n);
463 buffer_get_bignum_bits(&b, key->rsa->iqmp);
464 buffer_get_bignum_bits(&b, key->rsa->q);
465 buffer_get_bignum_bits(&b, key->rsa->p);
Ben Lindstromf7297dd2001-07-04 05:02:23 +0000466 rsa_generate_additional_parameters(key->rsa);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000467 break;
468 }
Damien Miller874d77b2000-10-14 16:23:11 +1100469 rlen = buffer_len(&b);
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +0000470 if (rlen != 0)
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000471 error("do_convert_private_ssh2_from_blob: "
472 "remaining bytes in key blob %d", rlen);
Damien Miller874d77b2000-10-14 16:23:11 +1100473 buffer_free(&b);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000474
Ben Lindstrome586c4c2001-06-25 05:04:58 +0000475 /* try the key */
476 key_sign(key, &sig, &slen, data, sizeof(data));
477 key_verify(key, sig, slen, data, sizeof(data));
Darren Tuckera627d422013-06-02 07:31:17 +1000478 free(sig);
Damien Miller874d77b2000-10-14 16:23:11 +1100479 return key;
480}
481
Damien Miller8056a9d2006-03-15 12:05:40 +1100482static int
483get_line(FILE *fp, char *line, size_t len)
484{
485 int c;
486 size_t pos = 0;
487
488 line[0] = '\0';
489 while ((c = fgetc(fp)) != EOF) {
490 if (pos >= len - 1) {
491 fprintf(stderr, "input line too long.\n");
492 exit(1);
493 }
Damien Miller90967402006-03-26 14:07:26 +1100494 switch (c) {
Damien Miller8056a9d2006-03-15 12:05:40 +1100495 case '\r':
496 c = fgetc(fp);
497 if (c != EOF && c != '\n' && ungetc(c, fp) == EOF) {
498 fprintf(stderr, "unget: %s\n", strerror(errno));
499 exit(1);
500 }
501 return pos;
502 case '\n':
503 return pos;
504 }
505 line[pos++] = c;
506 line[pos] = '\0';
507 }
Damien Miller6c7439f2007-01-05 16:29:55 +1100508 /* We reached EOF */
509 return -1;
Damien Miller8056a9d2006-03-15 12:05:40 +1100510}
511
Ben Lindstrombba81212001-06-25 05:01:22 +0000512static void
Damien Miller44b25042010-07-02 13:35:01 +1000513do_convert_from_ssh2(struct passwd *pw, Key **k, int *private)
Damien Millereba71ba2000-04-29 23:57:08 +1000514{
Damien Millereba71ba2000-04-29 23:57:08 +1000515 int blen;
Ben Lindstrom155b9812002-04-02 20:26:26 +0000516 u_int len;
Damien Miller8056a9d2006-03-15 12:05:40 +1100517 char line[1024];
Ben Lindstrom9e0ddd42001-09-18 05:41:19 +0000518 u_char blob[8096];
Damien Millereba71ba2000-04-29 23:57:08 +1000519 char encoded[8096];
Damien Miller44b25042010-07-02 13:35:01 +1000520 int escaped = 0;
Damien Millereba71ba2000-04-29 23:57:08 +1000521 FILE *fp;
522
Damien Millerba3420a2010-06-26 09:39:07 +1000523 if ((fp = fopen(identity_file, "r")) == NULL)
524 fatal("%s: %s: %s", __progname, identity_file, strerror(errno));
Damien Millereba71ba2000-04-29 23:57:08 +1000525 encoded[0] = '\0';
Damien Miller8056a9d2006-03-15 12:05:40 +1100526 while ((blen = get_line(fp, line, sizeof(line))) != -1) {
Damien Miller746d1a62013-07-18 16:13:02 +1000527 if (blen > 0 && line[blen - 1] == '\\')
Damien Miller30c3d422000-05-09 11:02:59 +1000528 escaped++;
Damien Millereba71ba2000-04-29 23:57:08 +1000529 if (strncmp(line, "----", 4) == 0 ||
530 strstr(line, ": ") != NULL) {
Damien Miller874d77b2000-10-14 16:23:11 +1100531 if (strstr(line, SSH_COM_PRIVATE_BEGIN) != NULL)
Damien Miller44b25042010-07-02 13:35:01 +1000532 *private = 1;
Ben Lindstrome586c4c2001-06-25 05:04:58 +0000533 if (strstr(line, " END ") != NULL) {
534 break;
535 }
Ben Lindstrom30358602001-04-24 16:59:28 +0000536 /* fprintf(stderr, "ignore: %s", line); */
Damien Millereba71ba2000-04-29 23:57:08 +1000537 continue;
538 }
Damien Miller30c3d422000-05-09 11:02:59 +1000539 if (escaped) {
540 escaped--;
Ben Lindstrom30358602001-04-24 16:59:28 +0000541 /* fprintf(stderr, "escaped: %s", line); */
Damien Miller30c3d422000-05-09 11:02:59 +1000542 continue;
Damien Millereba71ba2000-04-29 23:57:08 +1000543 }
Damien Millereba71ba2000-04-29 23:57:08 +1000544 strlcat(encoded, line, sizeof(encoded));
545 }
Ben Lindstrom155b9812002-04-02 20:26:26 +0000546 len = strlen(encoded);
547 if (((len % 4) == 3) &&
548 (encoded[len-1] == '=') &&
549 (encoded[len-2] == '=') &&
550 (encoded[len-3] == '='))
551 encoded[len-3] = '\0';
Damien Miller4a8ed542002-01-22 23:33:31 +1100552 blen = uudecode(encoded, blob, sizeof(blob));
Damien Millereba71ba2000-04-29 23:57:08 +1000553 if (blen < 0) {
554 fprintf(stderr, "uudecode failed.\n");
555 exit(1);
556 }
Damien Miller44b25042010-07-02 13:35:01 +1000557 *k = *private ?
Damien Miller874d77b2000-10-14 16:23:11 +1100558 do_convert_private_ssh2_from_blob(blob, blen) :
Damien Miller0bc1bd82000-11-13 22:57:25 +1100559 key_from_blob(blob, blen);
Damien Miller44b25042010-07-02 13:35:01 +1000560 if (*k == NULL) {
Damien Miller874d77b2000-10-14 16:23:11 +1100561 fprintf(stderr, "decode blob failed.\n");
562 exit(1);
563 }
Damien Miller44b25042010-07-02 13:35:01 +1000564 fclose(fp);
565}
566
567static void
568do_convert_from_pkcs8(Key **k, int *private)
569{
570 EVP_PKEY *pubkey;
571 FILE *fp;
572
573 if ((fp = fopen(identity_file, "r")) == NULL)
574 fatal("%s: %s: %s", __progname, identity_file, strerror(errno));
575 if ((pubkey = PEM_read_PUBKEY(fp, NULL, NULL, NULL)) == NULL) {
576 fatal("%s: %s is not a recognised public key format", __func__,
577 identity_file);
578 }
579 fclose(fp);
580 switch (EVP_PKEY_type(pubkey->type)) {
581 case EVP_PKEY_RSA:
582 *k = key_new(KEY_UNSPEC);
583 (*k)->type = KEY_RSA;
584 (*k)->rsa = EVP_PKEY_get1_RSA(pubkey);
585 break;
586 case EVP_PKEY_DSA:
587 *k = key_new(KEY_UNSPEC);
588 (*k)->type = KEY_DSA;
589 (*k)->dsa = EVP_PKEY_get1_DSA(pubkey);
590 break;
Damien Miller6af914a2010-09-10 11:39:26 +1000591#ifdef OPENSSL_HAS_ECC
Damien Millereb8b60e2010-08-31 22:41:14 +1000592 case EVP_PKEY_EC:
593 *k = key_new(KEY_UNSPEC);
594 (*k)->type = KEY_ECDSA;
595 (*k)->ecdsa = EVP_PKEY_get1_EC_KEY(pubkey);
Damien Millerb472a902010-11-05 10:19:49 +1100596 (*k)->ecdsa_nid = key_ecdsa_key_to_nid((*k)->ecdsa);
Damien Millereb8b60e2010-08-31 22:41:14 +1000597 break;
Damien Miller6af914a2010-09-10 11:39:26 +1000598#endif
Damien Miller44b25042010-07-02 13:35:01 +1000599 default:
600 fatal("%s: unsupported pubkey type %d", __func__,
601 EVP_PKEY_type(pubkey->type));
602 }
603 EVP_PKEY_free(pubkey);
604 return;
605}
606
607static void
608do_convert_from_pem(Key **k, int *private)
609{
610 FILE *fp;
611 RSA *rsa;
612#ifdef notyet
613 DSA *dsa;
614#endif
615
616 if ((fp = fopen(identity_file, "r")) == NULL)
617 fatal("%s: %s: %s", __progname, identity_file, strerror(errno));
618 if ((rsa = PEM_read_RSAPublicKey(fp, NULL, NULL, NULL)) != NULL) {
619 *k = key_new(KEY_UNSPEC);
620 (*k)->type = KEY_RSA;
621 (*k)->rsa = rsa;
622 fclose(fp);
623 return;
624 }
625#if notyet /* OpenSSH 0.9.8 lacks this function */
626 rewind(fp);
627 if ((dsa = PEM_read_DSAPublicKey(fp, NULL, NULL, NULL)) != NULL) {
628 *k = key_new(KEY_UNSPEC);
629 (*k)->type = KEY_DSA;
630 (*k)->dsa = dsa;
631 fclose(fp);
632 return;
633 }
Damien Millereb8b60e2010-08-31 22:41:14 +1000634 /* XXX ECDSA */
Damien Miller44b25042010-07-02 13:35:01 +1000635#endif
636 fatal("%s: unrecognised raw private key format", __func__);
637}
638
639static void
640do_convert_from(struct passwd *pw)
641{
642 Key *k = NULL;
Damien Miller844cccf2010-08-03 16:03:29 +1000643 int private = 0, ok = 0;
Damien Miller44b25042010-07-02 13:35:01 +1000644 struct stat st;
645
646 if (!have_identity)
647 ask_filename(pw, "Enter file in which the key is");
648 if (stat(identity_file, &st) < 0)
649 fatal("%s: %s: %s", __progname, identity_file, strerror(errno));
650
651 switch (convert_format) {
652 case FMT_RFC4716:
653 do_convert_from_ssh2(pw, &k, &private);
654 break;
655 case FMT_PKCS8:
656 do_convert_from_pkcs8(&k, &private);
657 break;
658 case FMT_PEM:
659 do_convert_from_pem(&k, &private);
660 break;
661 default:
662 fatal("%s: unknown key format %d", __func__, convert_format);
663 }
664
665 if (!private)
666 ok = key_write(k, stdout);
667 if (ok)
668 fprintf(stdout, "\n");
669 else {
670 switch (k->type) {
671 case KEY_DSA:
672 ok = PEM_write_DSAPrivateKey(stdout, k->dsa, NULL,
673 NULL, 0, NULL, NULL);
674 break;
Damien Miller6af914a2010-09-10 11:39:26 +1000675#ifdef OPENSSL_HAS_ECC
Damien Millereb8b60e2010-08-31 22:41:14 +1000676 case KEY_ECDSA:
677 ok = PEM_write_ECPrivateKey(stdout, k->ecdsa, NULL,
678 NULL, 0, NULL, NULL);
679 break;
Damien Miller6af914a2010-09-10 11:39:26 +1000680#endif
Damien Miller44b25042010-07-02 13:35:01 +1000681 case KEY_RSA:
682 ok = PEM_write_RSAPrivateKey(stdout, k->rsa, NULL,
683 NULL, 0, NULL, NULL);
684 break;
685 default:
686 fatal("%s: unsupported key type %s", __func__,
687 key_type(k));
688 }
689 }
690
Damien Miller874d77b2000-10-14 16:23:11 +1100691 if (!ok) {
Damien Miller9eab9562009-02-22 08:47:02 +1100692 fprintf(stderr, "key write failed\n");
Damien Miller874d77b2000-10-14 16:23:11 +1100693 exit(1);
694 }
Damien Millereba71ba2000-04-29 23:57:08 +1000695 key_free(k);
Damien Millereba71ba2000-04-29 23:57:08 +1000696 exit(0);
697}
698
Ben Lindstrombba81212001-06-25 05:01:22 +0000699static void
Damien Millereba71ba2000-04-29 23:57:08 +1000700do_print_public(struct passwd *pw)
701{
Ben Lindstromd0fca422001-03-26 13:44:06 +0000702 Key *prv;
Damien Millereba71ba2000-04-29 23:57:08 +1000703 struct stat st;
704
705 if (!have_identity)
706 ask_filename(pw, "Enter file in which the key is");
707 if (stat(identity_file, &st) < 0) {
708 perror(identity_file);
709 exit(1);
710 }
Ben Lindstromd78ae762001-06-05 20:35:09 +0000711 prv = load_identity(identity_file);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000712 if (prv == NULL) {
Damien Millereba71ba2000-04-29 23:57:08 +1000713 fprintf(stderr, "load failed\n");
714 exit(1);
715 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000716 if (!key_write(prv, stdout))
Damien Millereba71ba2000-04-29 23:57:08 +1000717 fprintf(stderr, "key_write failed");
Ben Lindstromd0fca422001-03-26 13:44:06 +0000718 key_free(prv);
Damien Millereba71ba2000-04-29 23:57:08 +1000719 fprintf(stdout, "\n");
720 exit(0);
721}
722
Ben Lindstromcd392282001-07-04 03:44:03 +0000723static void
Damien Miller757f34e2010-08-05 13:05:31 +1000724do_download(struct passwd *pw)
Ben Lindstromcd392282001-07-04 03:44:03 +0000725{
Damien Miller7ea845e2010-02-12 09:21:02 +1100726#ifdef ENABLE_PKCS11
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000727 Key **keys = NULL;
Damien Miller7ea845e2010-02-12 09:21:02 +1100728 int i, nkeys;
Damien Millerec77c952013-01-09 15:58:00 +1100729 enum fp_rep rep;
730 enum fp_type fptype;
731 char *fp, *ra;
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000732
Damien Miller1422c082013-01-09 16:44:54 +1100733 fptype = print_bubblebabble ? SSH_FP_SHA1 : SSH_FP_MD5;
734 rep = print_bubblebabble ? SSH_FP_BUBBLEBABBLE : SSH_FP_HEX;
735
Damien Miller7ea845e2010-02-12 09:21:02 +1100736 pkcs11_init(0);
737 nkeys = pkcs11_add_provider(pkcs11provider, NULL, &keys);
738 if (nkeys <= 0)
739 fatal("cannot read public key from pkcs11");
740 for (i = 0; i < nkeys; i++) {
Damien Millerec77c952013-01-09 15:58:00 +1100741 if (print_fingerprint) {
742 fp = key_fingerprint(keys[i], fptype, rep);
743 ra = key_fingerprint(keys[i], SSH_FP_MD5,
744 SSH_FP_RANDOMART);
745 printf("%u %s %s (PKCS11 key)\n", key_size(keys[i]),
746 fp, key_type(keys[i]));
747 if (log_level >= SYSLOG_LEVEL_VERBOSE)
748 printf("%s\n", ra);
Darren Tuckera627d422013-06-02 07:31:17 +1000749 free(ra);
750 free(fp);
Damien Millerec77c952013-01-09 15:58:00 +1100751 } else {
752 key_write(keys[i], stdout);
753 fprintf(stdout, "\n");
754 }
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000755 key_free(keys[i]);
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000756 }
Darren Tuckera627d422013-06-02 07:31:17 +1000757 free(keys);
Damien Miller7ea845e2010-02-12 09:21:02 +1100758 pkcs11_terminate();
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000759 exit(0);
Damien Miller7ea845e2010-02-12 09:21:02 +1100760#else
761 fatal("no pkcs11 support");
762#endif /* ENABLE_PKCS11 */
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000763}
Ben Lindstromcd392282001-07-04 03:44:03 +0000764
Ben Lindstrombba81212001-06-25 05:01:22 +0000765static void
Damien Miller10f6f6b1999-11-17 17:29:08 +1100766do_fingerprint(struct passwd *pw)
767{
Damien Miller98c7ad62000-03-09 21:27:49 +1100768 FILE *f;
Damien Millereba71ba2000-04-29 23:57:08 +1000769 Key *public;
Darren Tucker9c16ac92008-06-13 04:40:35 +1000770 char *comment = NULL, *cp, *ep, line[16*1024], *fp, *ra;
Damien Millercb2fbb22008-02-10 22:24:55 +1100771 int i, skip = 0, num = 0, invalid = 1;
Ben Lindstrom65366a82001-12-06 16:32:47 +0000772 enum fp_rep rep;
773 enum fp_type fptype;
Damien Miller95def091999-11-25 00:26:21 +1100774 struct stat st;
Damien Miller10f6f6b1999-11-17 17:29:08 +1100775
Ben Lindstromd0fca422001-03-26 13:44:06 +0000776 fptype = print_bubblebabble ? SSH_FP_SHA1 : SSH_FP_MD5;
777 rep = print_bubblebabble ? SSH_FP_BUBBLEBABBLE : SSH_FP_HEX;
Ben Lindstrom8fd372b2001-03-12 03:02:17 +0000778
Damien Miller95def091999-11-25 00:26:21 +1100779 if (!have_identity)
780 ask_filename(pw, "Enter file in which the key is");
781 if (stat(identity_file, &st) < 0) {
782 perror(identity_file);
783 exit(1);
784 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000785 public = key_load_public(identity_file, &comment);
786 if (public != NULL) {
787 fp = key_fingerprint(public, fptype, rep);
Darren Tucker9bcd25b2009-10-07 08:45:48 +1100788 ra = key_fingerprint(public, SSH_FP_MD5, SSH_FP_RANDOMART);
Darren Tuckerb68fb4a2008-06-13 08:57:27 +1000789 printf("%u %s %s (%s)\n", key_size(public), fp, comment,
790 key_type(public));
Darren Tucker35c45532008-06-13 04:43:15 +1000791 if (log_level >= SYSLOG_LEVEL_VERBOSE)
792 printf("%s\n", ra);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100793 key_free(public);
Darren Tuckera627d422013-06-02 07:31:17 +1000794 free(comment);
795 free(ra);
796 free(fp);
Damien Miller98c7ad62000-03-09 21:27:49 +1100797 exit(0);
798 }
Damien Miller40b59852006-06-13 13:00:25 +1000799 if (comment) {
Darren Tuckera627d422013-06-02 07:31:17 +1000800 free(comment);
Damien Miller40b59852006-06-13 13:00:25 +1000801 comment = NULL;
802 }
Damien Miller98c7ad62000-03-09 21:27:49 +1100803
Damien Millerba3420a2010-06-26 09:39:07 +1000804 if ((f = fopen(identity_file, "r")) == NULL)
805 fatal("%s: %s: %s", __progname, identity_file, strerror(errno));
Damien Miller98c7ad62000-03-09 21:27:49 +1100806
Damien Millerba3420a2010-06-26 09:39:07 +1000807 while (fgets(line, sizeof(line), f)) {
808 if ((cp = strchr(line, '\n')) == NULL) {
809 error("line %d too long: %.40s...",
810 num + 1, line);
811 skip = 1;
812 continue;
Damien Miller95def091999-11-25 00:26:21 +1100813 }
Damien Millerba3420a2010-06-26 09:39:07 +1000814 num++;
815 if (skip) {
816 skip = 0;
817 continue;
818 }
819 *cp = '\0';
820
821 /* Skip leading whitespace, empty and comment lines. */
822 for (cp = line; *cp == ' ' || *cp == '\t'; cp++)
823 ;
824 if (!*cp || *cp == '\n' || *cp == '#')
825 continue;
826 i = strtol(cp, &ep, 10);
827 if (i == 0 || ep == NULL || (*ep != ' ' && *ep != '\t')) {
828 int quoted = 0;
829 comment = cp;
830 for (; *cp && (quoted || (*cp != ' ' &&
831 *cp != '\t')); cp++) {
832 if (*cp == '\\' && cp[1] == '"')
833 cp++; /* Skip both */
834 else if (*cp == '"')
835 quoted = !quoted;
836 }
837 if (!*cp)
838 continue;
839 *cp++ = '\0';
840 }
841 ep = cp;
842 public = key_new(KEY_RSA1);
843 if (key_read(public, &cp) != 1) {
844 cp = ep;
845 key_free(public);
846 public = key_new(KEY_UNSPEC);
847 if (key_read(public, &cp) != 1) {
848 key_free(public);
849 continue;
850 }
851 }
852 comment = *cp ? cp : comment;
853 fp = key_fingerprint(public, fptype, rep);
854 ra = key_fingerprint(public, SSH_FP_MD5, SSH_FP_RANDOMART);
855 printf("%u %s %s (%s)\n", key_size(public), fp,
856 comment ? comment : "no comment", key_type(public));
857 if (log_level >= SYSLOG_LEVEL_VERBOSE)
858 printf("%s\n", ra);
Darren Tuckera627d422013-06-02 07:31:17 +1000859 free(ra);
860 free(fp);
Damien Millerba3420a2010-06-26 09:39:07 +1000861 key_free(public);
862 invalid = 0;
Damien Miller95def091999-11-25 00:26:21 +1100863 }
Damien Millerba3420a2010-06-26 09:39:07 +1000864 fclose(f);
865
Damien Miller98c7ad62000-03-09 21:27:49 +1100866 if (invalid) {
Damien Millereb5fec62001-11-12 10:52:44 +1100867 printf("%s is not a public key file.\n", identity_file);
Damien Miller98c7ad62000-03-09 21:27:49 +1100868 exit(1);
869 }
Damien Miller95def091999-11-25 00:26:21 +1100870 exit(0);
Damien Miller10f6f6b1999-11-17 17:29:08 +1100871}
872
Damien Miller4b42d7f2005-03-01 21:48:35 +1100873static void
Damien Miller58f1baf2011-05-05 14:06:15 +1000874do_gen_all_hostkeys(struct passwd *pw)
875{
876 struct {
877 char *key_type;
878 char *key_type_display;
879 char *path;
880 } key_types[] = {
881 { "rsa1", "RSA1", _PATH_HOST_KEY_FILE },
882 { "rsa", "RSA" ,_PATH_HOST_RSA_KEY_FILE },
883 { "dsa", "DSA", _PATH_HOST_DSA_KEY_FILE },
Damien Millerb56e4932012-02-06 07:41:27 +1100884#ifdef OPENSSL_HAS_ECC
Damien Miller58f1baf2011-05-05 14:06:15 +1000885 { "ecdsa", "ECDSA",_PATH_HOST_ECDSA_KEY_FILE },
Damien Millerb56e4932012-02-06 07:41:27 +1100886#endif
Damien Miller58f1baf2011-05-05 14:06:15 +1000887 { NULL, NULL, NULL }
888 };
889
890 int first = 0;
891 struct stat st;
892 Key *private, *public;
893 char comment[1024];
894 int i, type, fd;
895 FILE *f;
896
897 for (i = 0; key_types[i].key_type; i++) {
898 if (stat(key_types[i].path, &st) == 0)
899 continue;
900 if (errno != ENOENT) {
901 printf("Could not stat %s: %s", key_types[i].path,
902 strerror(errno));
903 first = 0;
904 continue;
905 }
906
907 if (first == 0) {
908 first = 1;
909 printf("%s: generating new host keys: ", __progname);
910 }
911 printf("%s ", key_types[i].key_type_display);
912 fflush(stdout);
913 arc4random_stir();
914 type = key_type_from_name(key_types[i].key_type);
915 strlcpy(identity_file, key_types[i].path, sizeof(identity_file));
916 bits = 0;
917 type_bits_valid(type, &bits);
918 private = key_generate(type, bits);
919 if (private == NULL) {
920 fprintf(stderr, "key_generate failed\n");
921 first = 0;
922 continue;
923 }
924 public = key_from_private(private);
925 snprintf(comment, sizeof comment, "%s@%s", pw->pw_name,
926 hostname);
927 if (!key_save_private(private, identity_file, "", comment)) {
928 printf("Saving the key failed: %s.\n", identity_file);
929 key_free(private);
930 key_free(public);
931 first = 0;
932 continue;
933 }
934 key_free(private);
935 arc4random_stir();
936 strlcat(identity_file, ".pub", sizeof(identity_file));
937 fd = open(identity_file, O_WRONLY | O_CREAT | O_TRUNC, 0644);
938 if (fd == -1) {
939 printf("Could not save your public key in %s\n",
940 identity_file);
941 key_free(public);
942 first = 0;
943 continue;
944 }
945 f = fdopen(fd, "w");
946 if (f == NULL) {
947 printf("fdopen %s failed\n", identity_file);
948 key_free(public);
949 first = 0;
950 continue;
951 }
952 if (!key_write(public, f)) {
953 fprintf(stderr, "write key failed\n");
954 key_free(public);
955 first = 0;
956 continue;
957 }
958 fprintf(f, " %s\n", comment);
959 fclose(f);
960 key_free(public);
961
962 }
963 if (first != 0)
964 printf("\n");
965}
966
967static void
Damien Miller0a80ca12010-02-27 07:55:05 +1100968printhost(FILE *f, const char *name, Key *public, int ca, int hash)
Damien Miller4b42d7f2005-03-01 21:48:35 +1100969{
Darren Tucker0f7e9102008-06-08 12:54:29 +1000970 if (print_fingerprint) {
971 enum fp_rep rep;
972 enum fp_type fptype;
Darren Tucker9c16ac92008-06-13 04:40:35 +1000973 char *fp, *ra;
Darren Tucker0f7e9102008-06-08 12:54:29 +1000974
975 fptype = print_bubblebabble ? SSH_FP_SHA1 : SSH_FP_MD5;
976 rep = print_bubblebabble ? SSH_FP_BUBBLEBABBLE : SSH_FP_HEX;
977 fp = key_fingerprint(public, fptype, rep);
Darren Tucker9bcd25b2009-10-07 08:45:48 +1100978 ra = key_fingerprint(public, SSH_FP_MD5, SSH_FP_RANDOMART);
Damien Miller81dec052008-07-14 11:28:29 +1000979 printf("%u %s %s (%s)\n", key_size(public), fp, name,
980 key_type(public));
981 if (log_level >= SYSLOG_LEVEL_VERBOSE)
982 printf("%s\n", ra);
Darren Tuckera627d422013-06-02 07:31:17 +1000983 free(ra);
984 free(fp);
Darren Tucker0f7e9102008-06-08 12:54:29 +1000985 } else {
986 if (hash && (name = host_hash(name, NULL, 0)) == NULL)
987 fatal("hash_host failed");
Damien Miller0a80ca12010-02-27 07:55:05 +1100988 fprintf(f, "%s%s%s ", ca ? CA_MARKER : "", ca ? " " : "", name);
Darren Tucker0f7e9102008-06-08 12:54:29 +1000989 if (!key_write(public, f))
990 fatal("key_write failed");
991 fprintf(f, "\n");
992 }
Damien Miller4b42d7f2005-03-01 21:48:35 +1100993}
994
995static void
996do_known_hosts(struct passwd *pw, const char *name)
997{
998 FILE *in, *out = stdout;
Damien Miller0a80ca12010-02-27 07:55:05 +1100999 Key *pub;
Damien Miller4b42d7f2005-03-01 21:48:35 +11001000 char *cp, *cp2, *kp, *kp2;
1001 char line[16*1024], tmp[MAXPATHLEN], old[MAXPATHLEN];
Damien Millercb2fbb22008-02-10 22:24:55 +11001002 int c, skip = 0, inplace = 0, num = 0, invalid = 0, has_unhashed = 0;
Damien Miller0a80ca12010-02-27 07:55:05 +11001003 int ca;
Damien Miller66085482013-09-14 09:45:03 +10001004 int found_key = 0;
Damien Miller4b42d7f2005-03-01 21:48:35 +11001005
1006 if (!have_identity) {
1007 cp = tilde_expand_filename(_PATH_SSH_USER_HOSTFILE, pw->pw_uid);
1008 if (strlcpy(identity_file, cp, sizeof(identity_file)) >=
1009 sizeof(identity_file))
1010 fatal("Specified known hosts path too long");
Darren Tuckera627d422013-06-02 07:31:17 +10001011 free(cp);
Damien Miller4b42d7f2005-03-01 21:48:35 +11001012 have_identity = 1;
1013 }
1014 if ((in = fopen(identity_file, "r")) == NULL)
Damien Millerba3420a2010-06-26 09:39:07 +10001015 fatal("%s: %s: %s", __progname, identity_file, strerror(errno));
Damien Miller4b42d7f2005-03-01 21:48:35 +11001016
1017 /*
1018 * Find hosts goes to stdout, hash and deletions happen in-place
1019 * A corner case is ssh-keygen -HF foo, which should go to stdout
1020 */
1021 if (!find_host && (hash_hosts || delete_host)) {
1022 if (strlcpy(tmp, identity_file, sizeof(tmp)) >= sizeof(tmp) ||
1023 strlcat(tmp, ".XXXXXXXXXX", sizeof(tmp)) >= sizeof(tmp) ||
1024 strlcpy(old, identity_file, sizeof(old)) >= sizeof(old) ||
1025 strlcat(old, ".old", sizeof(old)) >= sizeof(old))
1026 fatal("known_hosts path too long");
1027 umask(077);
1028 if ((c = mkstemp(tmp)) == -1)
1029 fatal("mkstemp: %s", strerror(errno));
1030 if ((out = fdopen(c, "w")) == NULL) {
1031 c = errno;
1032 unlink(tmp);
1033 fatal("fdopen: %s", strerror(c));
1034 }
1035 inplace = 1;
1036 }
1037
1038 while (fgets(line, sizeof(line), in)) {
Damien Miller0f4ed692007-10-26 14:26:32 +10001039 if ((cp = strchr(line, '\n')) == NULL) {
Damien Millercb2fbb22008-02-10 22:24:55 +11001040 error("line %d too long: %.40s...", num + 1, line);
Damien Miller4b42d7f2005-03-01 21:48:35 +11001041 skip = 1;
1042 invalid = 1;
1043 continue;
1044 }
Damien Miller0f4ed692007-10-26 14:26:32 +10001045 num++;
Damien Miller4b42d7f2005-03-01 21:48:35 +11001046 if (skip) {
1047 skip = 0;
1048 continue;
1049 }
Damien Miller0f4ed692007-10-26 14:26:32 +10001050 *cp = '\0';
Damien Miller4b42d7f2005-03-01 21:48:35 +11001051
1052 /* Skip leading whitespace, empty and comment lines. */
1053 for (cp = line; *cp == ' ' || *cp == '\t'; cp++)
1054 ;
1055 if (!*cp || *cp == '\n' || *cp == '#') {
1056 if (inplace)
1057 fprintf(out, "%s\n", cp);
1058 continue;
1059 }
Damien Miller0a80ca12010-02-27 07:55:05 +11001060 /* Check whether this is a CA key */
1061 if (strncasecmp(cp, CA_MARKER, sizeof(CA_MARKER) - 1) == 0 &&
1062 (cp[sizeof(CA_MARKER) - 1] == ' ' ||
1063 cp[sizeof(CA_MARKER) - 1] == '\t')) {
1064 ca = 1;
1065 cp += sizeof(CA_MARKER);
1066 } else
1067 ca = 0;
1068
Damien Miller4b42d7f2005-03-01 21:48:35 +11001069 /* Find the end of the host name portion. */
1070 for (kp = cp; *kp && *kp != ' ' && *kp != '\t'; kp++)
1071 ;
Damien Miller0a80ca12010-02-27 07:55:05 +11001072
Damien Miller4b42d7f2005-03-01 21:48:35 +11001073 if (*kp == '\0' || *(kp + 1) == '\0') {
1074 error("line %d missing key: %.40s...",
1075 num, line);
1076 invalid = 1;
1077 continue;
1078 }
1079 *kp++ = '\0';
1080 kp2 = kp;
1081
Damien Miller0a80ca12010-02-27 07:55:05 +11001082 pub = key_new(KEY_RSA1);
1083 if (key_read(pub, &kp) != 1) {
Damien Miller4b42d7f2005-03-01 21:48:35 +11001084 kp = kp2;
Damien Miller0a80ca12010-02-27 07:55:05 +11001085 key_free(pub);
1086 pub = key_new(KEY_UNSPEC);
1087 if (key_read(pub, &kp) != 1) {
Damien Miller4b42d7f2005-03-01 21:48:35 +11001088 error("line %d invalid key: %.40s...",
1089 num, line);
Damien Miller0a80ca12010-02-27 07:55:05 +11001090 key_free(pub);
Damien Miller4b42d7f2005-03-01 21:48:35 +11001091 invalid = 1;
1092 continue;
1093 }
1094 }
1095
1096 if (*cp == HASH_DELIM) {
1097 if (find_host || delete_host) {
1098 cp2 = host_hash(name, cp, strlen(cp));
1099 if (cp2 == NULL) {
1100 error("line %d: invalid hashed "
1101 "name: %.64s...", num, line);
1102 invalid = 1;
1103 continue;
1104 }
1105 c = (strcmp(cp2, cp) == 0);
1106 if (find_host && c) {
Damien Miller66085482013-09-14 09:45:03 +10001107 if (!quiet)
1108 printf("# Host %s found: "
1109 "line %d type %s%s\n", name,
1110 num, key_type(pub),
1111 ca ? " (CA key)" : "");
Damien Miller0a80ca12010-02-27 07:55:05 +11001112 printhost(out, cp, pub, ca, 0);
Damien Miller66085482013-09-14 09:45:03 +10001113 found_key = 1;
Damien Miller4b42d7f2005-03-01 21:48:35 +11001114 }
Darren Tuckerf09a8a62012-09-06 21:20:39 +10001115 if (delete_host) {
1116 if (!c && !ca)
1117 printhost(out, cp, pub, ca, 0);
1118 else
1119 printf("# Host %s found: "
1120 "line %d type %s\n", name,
1121 num, key_type(pub));
1122 }
Damien Miller4b42d7f2005-03-01 21:48:35 +11001123 } else if (hash_hosts)
Damien Miller0a80ca12010-02-27 07:55:05 +11001124 printhost(out, cp, pub, ca, 0);
Damien Miller4b42d7f2005-03-01 21:48:35 +11001125 } else {
1126 if (find_host || delete_host) {
1127 c = (match_hostname(name, cp,
1128 strlen(cp)) == 1);
1129 if (find_host && c) {
Damien Miller66085482013-09-14 09:45:03 +10001130 if (!quiet)
1131 printf("# Host %s found: "
1132 "line %d type %s%s\n", name,
1133 num, key_type(pub),
1134 ca ? " (CA key)" : "");
Damien Miller0a80ca12010-02-27 07:55:05 +11001135 printhost(out, name, pub,
1136 ca, hash_hosts && !ca);
Damien Miller66085482013-09-14 09:45:03 +10001137 found_key = 1;
Damien Miller4b42d7f2005-03-01 21:48:35 +11001138 }
Darren Tuckerf09a8a62012-09-06 21:20:39 +10001139 if (delete_host) {
1140 if (!c && !ca)
1141 printhost(out, cp, pub, ca, 0);
1142 else
1143 printf("# Host %s found: "
1144 "line %d type %s\n", name,
1145 num, key_type(pub));
1146 }
Damien Miller4b42d7f2005-03-01 21:48:35 +11001147 } else if (hash_hosts) {
Darren Tucker47eede72005-03-14 23:08:12 +11001148 for (cp2 = strsep(&cp, ",");
Damien Miller4b42d7f2005-03-01 21:48:35 +11001149 cp2 != NULL && *cp2 != '\0';
Damien Miller89eac802005-03-02 12:33:04 +11001150 cp2 = strsep(&cp, ",")) {
Damien Miller0a80ca12010-02-27 07:55:05 +11001151 if (ca) {
1152 fprintf(stderr, "Warning: "
1153 "ignoring CA key for host: "
1154 "%.64s\n", cp2);
1155 printhost(out, cp2, pub, ca, 0);
1156 } else if (strcspn(cp2, "*?!") !=
1157 strlen(cp2)) {
Damien Miller89eac802005-03-02 12:33:04 +11001158 fprintf(stderr, "Warning: "
1159 "ignoring host name with "
1160 "metacharacters: %.64s\n",
1161 cp2);
Damien Miller0a80ca12010-02-27 07:55:05 +11001162 printhost(out, cp2, pub, ca, 0);
1163 } else
1164 printhost(out, cp2, pub, ca, 1);
Damien Miller89eac802005-03-02 12:33:04 +11001165 }
Damien Miller4b42d7f2005-03-01 21:48:35 +11001166 has_unhashed = 1;
1167 }
1168 }
Damien Miller0a80ca12010-02-27 07:55:05 +11001169 key_free(pub);
Damien Miller4b42d7f2005-03-01 21:48:35 +11001170 }
1171 fclose(in);
1172
1173 if (invalid) {
Damien Millercb2fbb22008-02-10 22:24:55 +11001174 fprintf(stderr, "%s is not a valid known_hosts file.\n",
Damien Miller4b42d7f2005-03-01 21:48:35 +11001175 identity_file);
1176 if (inplace) {
1177 fprintf(stderr, "Not replacing existing known_hosts "
Darren Tucker9f438a92005-03-14 23:09:18 +11001178 "file because of errors\n");
Damien Miller4b42d7f2005-03-01 21:48:35 +11001179 fclose(out);
1180 unlink(tmp);
1181 }
1182 exit(1);
1183 }
1184
1185 if (inplace) {
1186 fclose(out);
1187
1188 /* Backup existing file */
1189 if (unlink(old) == -1 && errno != ENOENT)
1190 fatal("unlink %.100s: %s", old, strerror(errno));
1191 if (link(identity_file, old) == -1)
1192 fatal("link %.100s to %.100s: %s", identity_file, old,
1193 strerror(errno));
1194 /* Move new one into place */
1195 if (rename(tmp, identity_file) == -1) {
1196 error("rename\"%s\" to \"%s\": %s", tmp, identity_file,
1197 strerror(errno));
1198 unlink(tmp);
1199 unlink(old);
1200 exit(1);
1201 }
1202
1203 fprintf(stderr, "%s updated.\n", identity_file);
1204 fprintf(stderr, "Original contents retained as %s\n", old);
1205 if (has_unhashed) {
1206 fprintf(stderr, "WARNING: %s contains unhashed "
1207 "entries\n", old);
1208 fprintf(stderr, "Delete this file to ensure privacy "
Damien Miller0dc1bef2005-07-17 17:22:45 +10001209 "of hostnames\n");
Damien Miller4b42d7f2005-03-01 21:48:35 +11001210 }
1211 }
1212
Damien Miller66085482013-09-14 09:45:03 +10001213 exit (find_host && !found_key);
Damien Miller4b42d7f2005-03-01 21:48:35 +11001214}
1215
Damien Miller95def091999-11-25 00:26:21 +11001216/*
1217 * Perform changing a passphrase. The argument is the passwd structure
1218 * for the current user.
1219 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001220static void
Damien Miller10f6f6b1999-11-17 17:29:08 +11001221do_change_passphrase(struct passwd *pw)
1222{
Damien Miller95def091999-11-25 00:26:21 +11001223 char *comment;
1224 char *old_passphrase, *passphrase1, *passphrase2;
1225 struct stat st;
Damien Millereba71ba2000-04-29 23:57:08 +10001226 Key *private;
Damien Miller10f6f6b1999-11-17 17:29:08 +11001227
Damien Miller95def091999-11-25 00:26:21 +11001228 if (!have_identity)
1229 ask_filename(pw, "Enter file in which the key is");
Damien Miller95def091999-11-25 00:26:21 +11001230 if (stat(identity_file, &st) < 0) {
1231 perror(identity_file);
1232 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001233 }
Damien Miller95def091999-11-25 00:26:21 +11001234 /* Try to load the file with empty passphrase. */
Ben Lindstromd0fca422001-03-26 13:44:06 +00001235 private = key_load_private(identity_file, "", &comment);
1236 if (private == NULL) {
Damien Miller95def091999-11-25 00:26:21 +11001237 if (identity_passphrase)
1238 old_passphrase = xstrdup(identity_passphrase);
1239 else
Ben Lindstrom949974b2001-06-25 05:20:31 +00001240 old_passphrase =
1241 read_passphrase("Enter old passphrase: ",
1242 RP_ALLOW_STDIN);
1243 private = key_load_private(identity_file, old_passphrase,
1244 &comment);
Ben Lindstromd0fca422001-03-26 13:44:06 +00001245 memset(old_passphrase, 0, strlen(old_passphrase));
Darren Tuckera627d422013-06-02 07:31:17 +10001246 free(old_passphrase);
Ben Lindstromd0fca422001-03-26 13:44:06 +00001247 if (private == NULL) {
Damien Miller95def091999-11-25 00:26:21 +11001248 printf("Bad passphrase.\n");
1249 exit(1);
1250 }
Damien Miller95def091999-11-25 00:26:21 +11001251 }
1252 printf("Key has comment '%s'\n", comment);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001253
Damien Miller95def091999-11-25 00:26:21 +11001254 /* Ask the new passphrase (twice). */
1255 if (identity_new_passphrase) {
1256 passphrase1 = xstrdup(identity_new_passphrase);
1257 passphrase2 = NULL;
1258 } else {
1259 passphrase1 =
Ben Lindstrom949974b2001-06-25 05:20:31 +00001260 read_passphrase("Enter new passphrase (empty for no "
1261 "passphrase): ", RP_ALLOW_STDIN);
1262 passphrase2 = read_passphrase("Enter same passphrase again: ",
Damien Miller9f0f5c62001-12-21 14:45:46 +11001263 RP_ALLOW_STDIN);
Damien Miller95def091999-11-25 00:26:21 +11001264
1265 /* Verify that they are the same. */
1266 if (strcmp(passphrase1, passphrase2) != 0) {
1267 memset(passphrase1, 0, strlen(passphrase1));
1268 memset(passphrase2, 0, strlen(passphrase2));
Darren Tuckera627d422013-06-02 07:31:17 +10001269 free(passphrase1);
1270 free(passphrase2);
Damien Miller95def091999-11-25 00:26:21 +11001271 printf("Pass phrases do not match. Try again.\n");
1272 exit(1);
1273 }
1274 /* Destroy the other copy. */
1275 memset(passphrase2, 0, strlen(passphrase2));
Darren Tuckera627d422013-06-02 07:31:17 +10001276 free(passphrase2);
Damien Miller95def091999-11-25 00:26:21 +11001277 }
1278
1279 /* Save the file using the new passphrase. */
Ben Lindstromd0fca422001-03-26 13:44:06 +00001280 if (!key_save_private(private, identity_file, passphrase1, comment)) {
Ben Lindstrom15f33862001-04-16 02:00:02 +00001281 printf("Saving the key failed: %s.\n", identity_file);
Damien Miller95def091999-11-25 00:26:21 +11001282 memset(passphrase1, 0, strlen(passphrase1));
Darren Tuckera627d422013-06-02 07:31:17 +10001283 free(passphrase1);
Damien Millereba71ba2000-04-29 23:57:08 +10001284 key_free(private);
Darren Tuckera627d422013-06-02 07:31:17 +10001285 free(comment);
Damien Miller95def091999-11-25 00:26:21 +11001286 exit(1);
1287 }
1288 /* Destroy the passphrase and the copy of the key in memory. */
1289 memset(passphrase1, 0, strlen(passphrase1));
Darren Tuckera627d422013-06-02 07:31:17 +10001290 free(passphrase1);
Damien Millereba71ba2000-04-29 23:57:08 +10001291 key_free(private); /* Destroys contents */
Darren Tuckera627d422013-06-02 07:31:17 +10001292 free(comment);
Damien Miller95def091999-11-25 00:26:21 +11001293
1294 printf("Your identification has been saved with the new passphrase.\n");
1295 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001296}
1297
Damien Miller37876e92003-05-15 10:19:46 +10001298/*
1299 * Print the SSHFP RR.
1300 */
Damien Millercb314822006-03-26 13:48:01 +11001301static int
1302do_print_resource_record(struct passwd *pw, char *fname, char *hname)
Damien Miller37876e92003-05-15 10:19:46 +10001303{
1304 Key *public;
1305 char *comment = NULL;
1306 struct stat st;
1307
Damien Millercb314822006-03-26 13:48:01 +11001308 if (fname == NULL)
Damien Miller5bb88332013-07-18 16:13:37 +10001309 fatal("%s: no filename", __func__);
Damien Millercb314822006-03-26 13:48:01 +11001310 if (stat(fname, &st) < 0) {
1311 if (errno == ENOENT)
1312 return 0;
1313 perror(fname);
Damien Miller37876e92003-05-15 10:19:46 +10001314 exit(1);
1315 }
Damien Millercb314822006-03-26 13:48:01 +11001316 public = key_load_public(fname, &comment);
Damien Miller37876e92003-05-15 10:19:46 +10001317 if (public != NULL) {
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001318 export_dns_rr(hname, public, stdout, print_generic);
Damien Miller37876e92003-05-15 10:19:46 +10001319 key_free(public);
Darren Tuckera627d422013-06-02 07:31:17 +10001320 free(comment);
Damien Millercb314822006-03-26 13:48:01 +11001321 return 1;
Damien Miller37876e92003-05-15 10:19:46 +10001322 }
1323 if (comment)
Darren Tuckera627d422013-06-02 07:31:17 +10001324 free(comment);
Damien Miller37876e92003-05-15 10:19:46 +10001325
Damien Millercb314822006-03-26 13:48:01 +11001326 printf("failed to read v2 public key from %s.\n", fname);
Damien Miller37876e92003-05-15 10:19:46 +10001327 exit(1);
1328}
Damien Miller37876e92003-05-15 10:19:46 +10001329
Damien Miller95def091999-11-25 00:26:21 +11001330/*
1331 * Change the comment of a private key file.
1332 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001333static void
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001334do_change_comment(struct passwd *pw)
1335{
Ben Lindstrom5fc62702001-03-09 18:19:24 +00001336 char new_comment[1024], *comment, *passphrase;
Ben Lindstromd0fca422001-03-26 13:44:06 +00001337 Key *private;
1338 Key *public;
Damien Miller95def091999-11-25 00:26:21 +11001339 struct stat st;
1340 FILE *f;
Ben Lindstrom5fc62702001-03-09 18:19:24 +00001341 int fd;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001342
Damien Miller95def091999-11-25 00:26:21 +11001343 if (!have_identity)
1344 ask_filename(pw, "Enter file in which the key is");
Damien Miller95def091999-11-25 00:26:21 +11001345 if (stat(identity_file, &st) < 0) {
1346 perror(identity_file);
1347 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001348 }
Ben Lindstromd0fca422001-03-26 13:44:06 +00001349 private = key_load_private(identity_file, "", &comment);
1350 if (private == NULL) {
Damien Miller95def091999-11-25 00:26:21 +11001351 if (identity_passphrase)
1352 passphrase = xstrdup(identity_passphrase);
1353 else if (identity_new_passphrase)
1354 passphrase = xstrdup(identity_new_passphrase);
1355 else
Ben Lindstrom949974b2001-06-25 05:20:31 +00001356 passphrase = read_passphrase("Enter passphrase: ",
1357 RP_ALLOW_STDIN);
Damien Miller95def091999-11-25 00:26:21 +11001358 /* Try to load using the passphrase. */
Ben Lindstromd0fca422001-03-26 13:44:06 +00001359 private = key_load_private(identity_file, passphrase, &comment);
1360 if (private == NULL) {
Damien Miller95def091999-11-25 00:26:21 +11001361 memset(passphrase, 0, strlen(passphrase));
Darren Tuckera627d422013-06-02 07:31:17 +10001362 free(passphrase);
Damien Miller95def091999-11-25 00:26:21 +11001363 printf("Bad passphrase.\n");
1364 exit(1);
1365 }
Ben Lindstromd0fca422001-03-26 13:44:06 +00001366 } else {
1367 passphrase = xstrdup("");
Damien Miller95def091999-11-25 00:26:21 +11001368 }
Ben Lindstromd0fca422001-03-26 13:44:06 +00001369 if (private->type != KEY_RSA1) {
1370 fprintf(stderr, "Comments are only supported for RSA1 keys.\n");
1371 key_free(private);
1372 exit(1);
Damien Miller9f0f5c62001-12-21 14:45:46 +11001373 }
Damien Miller95def091999-11-25 00:26:21 +11001374 printf("Key now has comment '%s'\n", comment);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001375
Damien Miller95def091999-11-25 00:26:21 +11001376 if (identity_comment) {
1377 strlcpy(new_comment, identity_comment, sizeof(new_comment));
1378 } else {
1379 printf("Enter new comment: ");
1380 fflush(stdout);
1381 if (!fgets(new_comment, sizeof(new_comment), stdin)) {
1382 memset(passphrase, 0, strlen(passphrase));
Damien Millereba71ba2000-04-29 23:57:08 +10001383 key_free(private);
Damien Miller95def091999-11-25 00:26:21 +11001384 exit(1);
1385 }
Damien Miller14b017d2007-09-17 16:09:15 +10001386 new_comment[strcspn(new_comment, "\n")] = '\0';
Damien Miller95def091999-11-25 00:26:21 +11001387 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001388
Damien Miller95def091999-11-25 00:26:21 +11001389 /* Save the file using the new passphrase. */
Ben Lindstromd0fca422001-03-26 13:44:06 +00001390 if (!key_save_private(private, identity_file, passphrase, new_comment)) {
Ben Lindstrom15f33862001-04-16 02:00:02 +00001391 printf("Saving the key failed: %s.\n", identity_file);
Damien Miller95def091999-11-25 00:26:21 +11001392 memset(passphrase, 0, strlen(passphrase));
Darren Tuckera627d422013-06-02 07:31:17 +10001393 free(passphrase);
Damien Millereba71ba2000-04-29 23:57:08 +10001394 key_free(private);
Darren Tuckera627d422013-06-02 07:31:17 +10001395 free(comment);
Damien Miller95def091999-11-25 00:26:21 +11001396 exit(1);
1397 }
Damien Miller95def091999-11-25 00:26:21 +11001398 memset(passphrase, 0, strlen(passphrase));
Darren Tuckera627d422013-06-02 07:31:17 +10001399 free(passphrase);
Ben Lindstromd0fca422001-03-26 13:44:06 +00001400 public = key_from_private(private);
Damien Millereba71ba2000-04-29 23:57:08 +10001401 key_free(private);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001402
Damien Miller95def091999-11-25 00:26:21 +11001403 strlcat(identity_file, ".pub", sizeof(identity_file));
Ben Lindstrom5fc62702001-03-09 18:19:24 +00001404 fd = open(identity_file, O_WRONLY | O_CREAT | O_TRUNC, 0644);
1405 if (fd == -1) {
Damien Miller95def091999-11-25 00:26:21 +11001406 printf("Could not save your public key in %s\n", identity_file);
1407 exit(1);
1408 }
Ben Lindstrom5fc62702001-03-09 18:19:24 +00001409 f = fdopen(fd, "w");
1410 if (f == NULL) {
Damien Miller9eab9562009-02-22 08:47:02 +11001411 printf("fdopen %s failed\n", identity_file);
Ben Lindstrom5fc62702001-03-09 18:19:24 +00001412 exit(1);
1413 }
Damien Millereba71ba2000-04-29 23:57:08 +10001414 if (!key_write(public, f))
Damien Miller9eab9562009-02-22 08:47:02 +11001415 fprintf(stderr, "write key failed\n");
Damien Millereba71ba2000-04-29 23:57:08 +10001416 key_free(public);
1417 fprintf(f, " %s\n", new_comment);
Damien Miller95def091999-11-25 00:26:21 +11001418 fclose(f);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001419
Darren Tuckera627d422013-06-02 07:31:17 +10001420 free(comment);
Damien Miller95def091999-11-25 00:26:21 +11001421
1422 printf("The comment in your key file has been changed.\n");
1423 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001424}
1425
Damien Miller0a80ca12010-02-27 07:55:05 +11001426static const char *
Damien Millerf2b70ca2010-03-05 07:39:35 +11001427fmt_validity(u_int64_t valid_from, u_int64_t valid_to)
Damien Miller0a80ca12010-02-27 07:55:05 +11001428{
1429 char from[32], to[32];
1430 static char ret[64];
1431 time_t tt;
1432 struct tm *tm;
1433
1434 *from = *to = '\0';
Damien Millerf2b70ca2010-03-05 07:39:35 +11001435 if (valid_from == 0 && valid_to == 0xffffffffffffffffULL)
Damien Miller0a80ca12010-02-27 07:55:05 +11001436 return "forever";
1437
Damien Millerf2b70ca2010-03-05 07:39:35 +11001438 if (valid_from != 0) {
Damien Miller0a80ca12010-02-27 07:55:05 +11001439 /* XXX revisit INT_MAX in 2038 :) */
Damien Millerf2b70ca2010-03-05 07:39:35 +11001440 tt = valid_from > INT_MAX ? INT_MAX : valid_from;
Damien Miller0a80ca12010-02-27 07:55:05 +11001441 tm = localtime(&tt);
1442 strftime(from, sizeof(from), "%Y-%m-%dT%H:%M:%S", tm);
1443 }
Damien Millerf2b70ca2010-03-05 07:39:35 +11001444 if (valid_to != 0xffffffffffffffffULL) {
Damien Miller0a80ca12010-02-27 07:55:05 +11001445 /* XXX revisit INT_MAX in 2038 :) */
Damien Millerf2b70ca2010-03-05 07:39:35 +11001446 tt = valid_to > INT_MAX ? INT_MAX : valid_to;
Damien Miller0a80ca12010-02-27 07:55:05 +11001447 tm = localtime(&tt);
1448 strftime(to, sizeof(to), "%Y-%m-%dT%H:%M:%S", tm);
1449 }
1450
Damien Millerf2b70ca2010-03-05 07:39:35 +11001451 if (valid_from == 0) {
Damien Miller0a80ca12010-02-27 07:55:05 +11001452 snprintf(ret, sizeof(ret), "before %s", to);
1453 return ret;
1454 }
Damien Millerf2b70ca2010-03-05 07:39:35 +11001455 if (valid_to == 0xffffffffffffffffULL) {
Damien Miller0a80ca12010-02-27 07:55:05 +11001456 snprintf(ret, sizeof(ret), "after %s", from);
1457 return ret;
1458 }
1459
1460 snprintf(ret, sizeof(ret), "from %s to %s", from, to);
1461 return ret;
1462}
1463
1464static void
Damien Miller4e270b02010-04-16 15:56:21 +10001465add_flag_option(Buffer *c, const char *name)
Damien Miller0a80ca12010-02-27 07:55:05 +11001466{
1467 debug3("%s: %s", __func__, name);
1468 buffer_put_cstring(c, name);
1469 buffer_put_string(c, NULL, 0);
1470}
1471
1472static void
Damien Miller4e270b02010-04-16 15:56:21 +10001473add_string_option(Buffer *c, const char *name, const char *value)
Damien Miller0a80ca12010-02-27 07:55:05 +11001474{
1475 Buffer b;
1476
1477 debug3("%s: %s=%s", __func__, name, value);
1478 buffer_init(&b);
1479 buffer_put_cstring(&b, value);
1480
1481 buffer_put_cstring(c, name);
1482 buffer_put_string(c, buffer_ptr(&b), buffer_len(&b));
1483
1484 buffer_free(&b);
1485}
1486
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001487#define OPTIONS_CRITICAL 1
1488#define OPTIONS_EXTENSIONS 2
Damien Miller0a80ca12010-02-27 07:55:05 +11001489static void
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001490prepare_options_buf(Buffer *c, int which)
Damien Miller0a80ca12010-02-27 07:55:05 +11001491{
Damien Miller0a80ca12010-02-27 07:55:05 +11001492 buffer_clear(c);
Damien Miller1da63882010-08-05 13:03:51 +10001493 if ((which & OPTIONS_CRITICAL) != 0 &&
1494 certflags_command != NULL)
1495 add_string_option(c, "force-command", certflags_command);
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001496 if ((which & OPTIONS_EXTENSIONS) != 0 &&
Damien Miller2ce12ef2011-05-05 14:17:18 +10001497 (certflags_flags & CERTOPT_X_FWD) != 0)
1498 add_flag_option(c, "permit-X11-forwarding");
1499 if ((which & OPTIONS_EXTENSIONS) != 0 &&
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001500 (certflags_flags & CERTOPT_AGENT_FWD) != 0)
Damien Miller4e270b02010-04-16 15:56:21 +10001501 add_flag_option(c, "permit-agent-forwarding");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001502 if ((which & OPTIONS_EXTENSIONS) != 0 &&
1503 (certflags_flags & CERTOPT_PORT_FWD) != 0)
Damien Miller4e270b02010-04-16 15:56:21 +10001504 add_flag_option(c, "permit-port-forwarding");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001505 if ((which & OPTIONS_EXTENSIONS) != 0 &&
1506 (certflags_flags & CERTOPT_PTY) != 0)
Damien Miller4e270b02010-04-16 15:56:21 +10001507 add_flag_option(c, "permit-pty");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001508 if ((which & OPTIONS_EXTENSIONS) != 0 &&
1509 (certflags_flags & CERTOPT_USER_RC) != 0)
Damien Miller4e270b02010-04-16 15:56:21 +10001510 add_flag_option(c, "permit-user-rc");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001511 if ((which & OPTIONS_CRITICAL) != 0 &&
1512 certflags_src_addr != NULL)
1513 add_string_option(c, "source-address", certflags_src_addr);
Damien Miller0a80ca12010-02-27 07:55:05 +11001514}
1515
Damien Miller757f34e2010-08-05 13:05:31 +10001516static Key *
1517load_pkcs11_key(char *path)
1518{
1519#ifdef ENABLE_PKCS11
1520 Key **keys = NULL, *public, *private = NULL;
1521 int i, nkeys;
1522
1523 if ((public = key_load_public(path, NULL)) == NULL)
1524 fatal("Couldn't load CA public key \"%s\"", path);
1525
1526 nkeys = pkcs11_add_provider(pkcs11provider, identity_passphrase, &keys);
1527 debug3("%s: %d keys", __func__, nkeys);
1528 if (nkeys <= 0)
1529 fatal("cannot read public key from pkcs11");
1530 for (i = 0; i < nkeys; i++) {
1531 if (key_equal_public(public, keys[i])) {
1532 private = keys[i];
1533 continue;
1534 }
1535 key_free(keys[i]);
1536 }
Darren Tuckera627d422013-06-02 07:31:17 +10001537 free(keys);
Damien Miller757f34e2010-08-05 13:05:31 +10001538 key_free(public);
1539 return private;
1540#else
1541 fatal("no pkcs11 support");
1542#endif /* ENABLE_PKCS11 */
1543}
1544
Damien Miller0a80ca12010-02-27 07:55:05 +11001545static void
1546do_ca_sign(struct passwd *pw, int argc, char **argv)
1547{
1548 int i, fd;
1549 u_int n;
1550 Key *ca, *public;
1551 char *otmp, *tmp, *cp, *out, *comment, **plist = NULL;
1552 FILE *f;
Damien Miller4e270b02010-04-16 15:56:21 +10001553 int v00 = 0; /* legacy keys */
Damien Miller0a80ca12010-02-27 07:55:05 +11001554
Damien Miller4e270b02010-04-16 15:56:21 +10001555 if (key_type_name != NULL) {
1556 switch (key_type_from_name(key_type_name)) {
1557 case KEY_RSA_CERT_V00:
1558 case KEY_DSA_CERT_V00:
1559 v00 = 1;
1560 break;
1561 case KEY_UNSPEC:
1562 if (strcasecmp(key_type_name, "v00") == 0) {
1563 v00 = 1;
1564 break;
1565 } else if (strcasecmp(key_type_name, "v01") == 0)
1566 break;
1567 /* FALLTHROUGH */
1568 default:
1569 fprintf(stderr, "unknown key type %s\n", key_type_name);
1570 exit(1);
1571 }
1572 }
1573
Damien Miller757f34e2010-08-05 13:05:31 +10001574 pkcs11_init(1);
1575 tmp = tilde_expand_filename(ca_key_path, pw->pw_uid);
1576 if (pkcs11provider != NULL) {
1577 if ((ca = load_pkcs11_key(tmp)) == NULL)
1578 fatal("No PKCS#11 key matching %s found", ca_key_path);
1579 } else if ((ca = load_identity(tmp)) == NULL)
1580 fatal("Couldn't load CA key \"%s\"", tmp);
Darren Tuckera627d422013-06-02 07:31:17 +10001581 free(tmp);
Damien Miller757f34e2010-08-05 13:05:31 +10001582
Damien Miller0a80ca12010-02-27 07:55:05 +11001583 for (i = 0; i < argc; i++) {
1584 /* Split list of principals */
1585 n = 0;
1586 if (cert_principals != NULL) {
1587 otmp = tmp = xstrdup(cert_principals);
1588 plist = NULL;
1589 for (; (cp = strsep(&tmp, ",")) != NULL; n++) {
1590 plist = xrealloc(plist, n + 1, sizeof(*plist));
1591 if (*(plist[n] = xstrdup(cp)) == '\0')
1592 fatal("Empty principal name");
1593 }
Darren Tuckera627d422013-06-02 07:31:17 +10001594 free(otmp);
Damien Miller0a80ca12010-02-27 07:55:05 +11001595 }
1596
1597 tmp = tilde_expand_filename(argv[i], pw->pw_uid);
1598 if ((public = key_load_public(tmp, &comment)) == NULL)
1599 fatal("%s: unable to open \"%s\"", __func__, tmp);
Damien Millereb8b60e2010-08-31 22:41:14 +10001600 if (public->type != KEY_RSA && public->type != KEY_DSA &&
1601 public->type != KEY_ECDSA)
Damien Miller0a80ca12010-02-27 07:55:05 +11001602 fatal("%s: key \"%s\" type %s cannot be certified",
1603 __func__, tmp, key_type(public));
1604
1605 /* Prepare certificate to sign */
Damien Miller4e270b02010-04-16 15:56:21 +10001606 if (key_to_certified(public, v00) != 0)
Damien Miller0a80ca12010-02-27 07:55:05 +11001607 fatal("Could not upgrade key %s to certificate", tmp);
1608 public->cert->type = cert_key_type;
Damien Miller4e270b02010-04-16 15:56:21 +10001609 public->cert->serial = (u_int64_t)cert_serial;
Damien Miller0a80ca12010-02-27 07:55:05 +11001610 public->cert->key_id = xstrdup(cert_key_id);
1611 public->cert->nprincipals = n;
1612 public->cert->principals = plist;
1613 public->cert->valid_after = cert_valid_from;
1614 public->cert->valid_before = cert_valid_to;
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001615 if (v00) {
1616 prepare_options_buf(&public->cert->critical,
1617 OPTIONS_CRITICAL|OPTIONS_EXTENSIONS);
1618 } else {
1619 prepare_options_buf(&public->cert->critical,
1620 OPTIONS_CRITICAL);
1621 prepare_options_buf(&public->cert->extensions,
1622 OPTIONS_EXTENSIONS);
1623 }
Damien Miller0a80ca12010-02-27 07:55:05 +11001624 public->cert->signature_key = key_from_private(ca);
1625
1626 if (key_certify(public, ca) != 0)
1627 fatal("Couldn't not certify key %s", tmp);
1628
1629 if ((cp = strrchr(tmp, '.')) != NULL && strcmp(cp, ".pub") == 0)
1630 *cp = '\0';
1631 xasprintf(&out, "%s-cert.pub", tmp);
Darren Tuckera627d422013-06-02 07:31:17 +10001632 free(tmp);
Damien Miller0a80ca12010-02-27 07:55:05 +11001633
1634 if ((fd = open(out, O_WRONLY|O_CREAT|O_TRUNC, 0644)) == -1)
1635 fatal("Could not open \"%s\" for writing: %s", out,
1636 strerror(errno));
1637 if ((f = fdopen(fd, "w")) == NULL)
1638 fatal("%s: fdopen: %s", __func__, strerror(errno));
1639 if (!key_write(public, f))
1640 fatal("Could not write certified key to %s", out);
1641 fprintf(f, " %s\n", comment);
1642 fclose(f);
1643
Damien Miller4e270b02010-04-16 15:56:21 +10001644 if (!quiet) {
1645 logit("Signed %s key %s: id \"%s\" serial %llu%s%s "
1646 "valid %s", key_cert_type(public),
Damien Miller821de0a2011-01-11 17:20:29 +11001647 out, public->cert->key_id,
1648 (unsigned long long)public->cert->serial,
Damien Miller0a80ca12010-02-27 07:55:05 +11001649 cert_principals != NULL ? " for " : "",
1650 cert_principals != NULL ? cert_principals : "",
Damien Millerf2b70ca2010-03-05 07:39:35 +11001651 fmt_validity(cert_valid_from, cert_valid_to));
Damien Miller4e270b02010-04-16 15:56:21 +10001652 }
Damien Miller0a80ca12010-02-27 07:55:05 +11001653
1654 key_free(public);
Darren Tuckera627d422013-06-02 07:31:17 +10001655 free(out);
Damien Miller0a80ca12010-02-27 07:55:05 +11001656 }
Damien Miller757f34e2010-08-05 13:05:31 +10001657 pkcs11_terminate();
Damien Miller0a80ca12010-02-27 07:55:05 +11001658 exit(0);
1659}
1660
1661static u_int64_t
1662parse_relative_time(const char *s, time_t now)
1663{
1664 int64_t mul, secs;
1665
1666 mul = *s == '-' ? -1 : 1;
1667
1668 if ((secs = convtime(s + 1)) == -1)
1669 fatal("Invalid relative certificate time %s", s);
1670 if (mul == -1 && secs > now)
1671 fatal("Certificate time %s cannot be represented", s);
1672 return now + (u_int64_t)(secs * mul);
1673}
1674
1675static u_int64_t
1676parse_absolute_time(const char *s)
1677{
1678 struct tm tm;
1679 time_t tt;
Damien Miller2ca342b2010-03-03 12:14:15 +11001680 char buf[32], *fmt;
Damien Miller0a80ca12010-02-27 07:55:05 +11001681
Damien Miller2ca342b2010-03-03 12:14:15 +11001682 /*
1683 * POSIX strptime says "The application shall ensure that there
1684 * is white-space or other non-alphanumeric characters between
1685 * any two conversion specifications" so arrange things this way.
1686 */
1687 switch (strlen(s)) {
1688 case 8:
Damien Miller3e1ee492010-03-08 09:24:11 +11001689 fmt = "%Y-%m-%d";
1690 snprintf(buf, sizeof(buf), "%.4s-%.2s-%.2s", s, s + 4, s + 6);
Damien Miller2ca342b2010-03-03 12:14:15 +11001691 break;
1692 case 14:
Damien Miller3e1ee492010-03-08 09:24:11 +11001693 fmt = "%Y-%m-%dT%H:%M:%S";
1694 snprintf(buf, sizeof(buf), "%.4s-%.2s-%.2sT%.2s:%.2s:%.2s",
Damien Miller2ca342b2010-03-03 12:14:15 +11001695 s, s + 4, s + 6, s + 8, s + 10, s + 12);
1696 break;
1697 default:
Damien Miller0a80ca12010-02-27 07:55:05 +11001698 fatal("Invalid certificate time format %s", s);
Damien Miller2ca342b2010-03-03 12:14:15 +11001699 }
Damien Miller0a80ca12010-02-27 07:55:05 +11001700
1701 bzero(&tm, sizeof(tm));
Damien Miller2ca342b2010-03-03 12:14:15 +11001702 if (strptime(buf, fmt, &tm) == NULL)
Damien Miller0a80ca12010-02-27 07:55:05 +11001703 fatal("Invalid certificate time %s", s);
1704 if ((tt = mktime(&tm)) < 0)
1705 fatal("Certificate time %s cannot be represented", s);
1706 return (u_int64_t)tt;
1707}
1708
1709static void
1710parse_cert_times(char *timespec)
1711{
1712 char *from, *to;
1713 time_t now = time(NULL);
1714 int64_t secs;
1715
1716 /* +timespec relative to now */
1717 if (*timespec == '+' && strchr(timespec, ':') == NULL) {
1718 if ((secs = convtime(timespec + 1)) == -1)
1719 fatal("Invalid relative certificate life %s", timespec);
1720 cert_valid_to = now + secs;
1721 /*
1722 * Backdate certificate one minute to avoid problems on hosts
1723 * with poorly-synchronised clocks.
1724 */
1725 cert_valid_from = ((now - 59)/ 60) * 60;
1726 return;
1727 }
1728
1729 /*
1730 * from:to, where
1731 * from := [+-]timespec | YYYYMMDD | YYYYMMDDHHMMSS
1732 * to := [+-]timespec | YYYYMMDD | YYYYMMDDHHMMSS
1733 */
1734 from = xstrdup(timespec);
1735 to = strchr(from, ':');
1736 if (to == NULL || from == to || *(to + 1) == '\0')
Damien Miller910f2092010-03-04 14:17:22 +11001737 fatal("Invalid certificate life specification %s", timespec);
Damien Miller0a80ca12010-02-27 07:55:05 +11001738 *to++ = '\0';
1739
1740 if (*from == '-' || *from == '+')
1741 cert_valid_from = parse_relative_time(from, now);
1742 else
1743 cert_valid_from = parse_absolute_time(from);
1744
1745 if (*to == '-' || *to == '+')
Damien Miller5b01b0d2013-10-23 16:31:31 +11001746 cert_valid_to = parse_relative_time(to, now);
Damien Miller0a80ca12010-02-27 07:55:05 +11001747 else
1748 cert_valid_to = parse_absolute_time(to);
1749
1750 if (cert_valid_to <= cert_valid_from)
1751 fatal("Empty certificate validity interval");
Darren Tuckera627d422013-06-02 07:31:17 +10001752 free(from);
Damien Miller0a80ca12010-02-27 07:55:05 +11001753}
1754
1755static void
Damien Miller4e270b02010-04-16 15:56:21 +10001756add_cert_option(char *opt)
Damien Miller0a80ca12010-02-27 07:55:05 +11001757{
1758 char *val;
1759
Damien Miller044f4a62011-05-05 14:14:08 +10001760 if (strcasecmp(opt, "clear") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001761 certflags_flags = 0;
Damien Miller0a80ca12010-02-27 07:55:05 +11001762 else if (strcasecmp(opt, "no-x11-forwarding") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001763 certflags_flags &= ~CERTOPT_X_FWD;
Damien Miller0a80ca12010-02-27 07:55:05 +11001764 else if (strcasecmp(opt, "permit-x11-forwarding") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001765 certflags_flags |= CERTOPT_X_FWD;
Damien Miller0a80ca12010-02-27 07:55:05 +11001766 else if (strcasecmp(opt, "no-agent-forwarding") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001767 certflags_flags &= ~CERTOPT_AGENT_FWD;
Damien Miller0a80ca12010-02-27 07:55:05 +11001768 else if (strcasecmp(opt, "permit-agent-forwarding") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001769 certflags_flags |= CERTOPT_AGENT_FWD;
Damien Miller0a80ca12010-02-27 07:55:05 +11001770 else if (strcasecmp(opt, "no-port-forwarding") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001771 certflags_flags &= ~CERTOPT_PORT_FWD;
Damien Miller0a80ca12010-02-27 07:55:05 +11001772 else if (strcasecmp(opt, "permit-port-forwarding") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001773 certflags_flags |= CERTOPT_PORT_FWD;
Damien Miller0a80ca12010-02-27 07:55:05 +11001774 else if (strcasecmp(opt, "no-pty") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001775 certflags_flags &= ~CERTOPT_PTY;
Damien Miller0a80ca12010-02-27 07:55:05 +11001776 else if (strcasecmp(opt, "permit-pty") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001777 certflags_flags |= CERTOPT_PTY;
Damien Miller0a80ca12010-02-27 07:55:05 +11001778 else if (strcasecmp(opt, "no-user-rc") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001779 certflags_flags &= ~CERTOPT_USER_RC;
Damien Miller0a80ca12010-02-27 07:55:05 +11001780 else if (strcasecmp(opt, "permit-user-rc") == 0)
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001781 certflags_flags |= CERTOPT_USER_RC;
Damien Miller0a80ca12010-02-27 07:55:05 +11001782 else if (strncasecmp(opt, "force-command=", 14) == 0) {
1783 val = opt + 14;
1784 if (*val == '\0')
Damien Miller4e270b02010-04-16 15:56:21 +10001785 fatal("Empty force-command option");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001786 if (certflags_command != NULL)
Damien Miller0a80ca12010-02-27 07:55:05 +11001787 fatal("force-command already specified");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001788 certflags_command = xstrdup(val);
Damien Miller0a80ca12010-02-27 07:55:05 +11001789 } else if (strncasecmp(opt, "source-address=", 15) == 0) {
1790 val = opt + 15;
1791 if (*val == '\0')
Damien Miller4e270b02010-04-16 15:56:21 +10001792 fatal("Empty source-address option");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001793 if (certflags_src_addr != NULL)
Damien Miller0a80ca12010-02-27 07:55:05 +11001794 fatal("source-address already specified");
1795 if (addr_match_cidr_list(NULL, val) != 0)
1796 fatal("Invalid source-address list");
Damien Millerd0e4a8e2010-05-21 14:58:32 +10001797 certflags_src_addr = xstrdup(val);
Damien Miller0a80ca12010-02-27 07:55:05 +11001798 } else
Damien Miller4e270b02010-04-16 15:56:21 +10001799 fatal("Unsupported certificate option \"%s\"", opt);
Damien Miller0a80ca12010-02-27 07:55:05 +11001800}
1801
Ben Lindstrombba81212001-06-25 05:01:22 +00001802static void
Damien Millerd834d352010-06-26 09:48:02 +10001803show_options(const Buffer *optbuf, int v00, int in_critical)
1804{
Damien Miller746d1a62013-07-18 16:13:02 +10001805 char *name;
1806 u_char *data;
Damien Millerd834d352010-06-26 09:48:02 +10001807 u_int dlen;
1808 Buffer options, option;
1809
1810 buffer_init(&options);
1811 buffer_append(&options, buffer_ptr(optbuf), buffer_len(optbuf));
1812
1813 buffer_init(&option);
1814 while (buffer_len(&options) != 0) {
1815 name = buffer_get_string(&options, NULL);
1816 data = buffer_get_string_ptr(&options, &dlen);
1817 buffer_append(&option, data, dlen);
1818 printf(" %s", name);
1819 if ((v00 || !in_critical) &&
1820 (strcmp(name, "permit-X11-forwarding") == 0 ||
1821 strcmp(name, "permit-agent-forwarding") == 0 ||
1822 strcmp(name, "permit-port-forwarding") == 0 ||
1823 strcmp(name, "permit-pty") == 0 ||
1824 strcmp(name, "permit-user-rc") == 0))
1825 printf("\n");
1826 else if ((v00 || in_critical) &&
1827 (strcmp(name, "force-command") == 0 ||
1828 strcmp(name, "source-address") == 0)) {
1829 data = buffer_get_string(&option, NULL);
1830 printf(" %s\n", data);
Darren Tuckera627d422013-06-02 07:31:17 +10001831 free(data);
Damien Millerd834d352010-06-26 09:48:02 +10001832 } else {
1833 printf(" UNKNOWN OPTION (len %u)\n",
1834 buffer_len(&option));
1835 buffer_clear(&option);
1836 }
Darren Tuckera627d422013-06-02 07:31:17 +10001837 free(name);
Damien Millerd834d352010-06-26 09:48:02 +10001838 if (buffer_len(&option) != 0)
1839 fatal("Option corrupt: extra data at end");
1840 }
1841 buffer_free(&option);
1842 buffer_free(&options);
1843}
1844
1845static void
Damien Millerf2b70ca2010-03-05 07:39:35 +11001846do_show_cert(struct passwd *pw)
1847{
1848 Key *key;
1849 struct stat st;
1850 char *key_fp, *ca_fp;
Damien Millerd834d352010-06-26 09:48:02 +10001851 u_int i, v00;
Damien Millerf2b70ca2010-03-05 07:39:35 +11001852
1853 if (!have_identity)
1854 ask_filename(pw, "Enter file in which the key is");
Damien Millerba3420a2010-06-26 09:39:07 +10001855 if (stat(identity_file, &st) < 0)
1856 fatal("%s: %s: %s", __progname, identity_file, strerror(errno));
Damien Millerf2b70ca2010-03-05 07:39:35 +11001857 if ((key = key_load_public(identity_file, NULL)) == NULL)
1858 fatal("%s is not a public key", identity_file);
1859 if (!key_is_cert(key))
1860 fatal("%s is not a certificate", identity_file);
Damien Miller4e270b02010-04-16 15:56:21 +10001861 v00 = key->type == KEY_RSA_CERT_V00 || key->type == KEY_DSA_CERT_V00;
1862
Damien Millerf2b70ca2010-03-05 07:39:35 +11001863 key_fp = key_fingerprint(key, SSH_FP_MD5, SSH_FP_HEX);
1864 ca_fp = key_fingerprint(key->cert->signature_key,
1865 SSH_FP_MD5, SSH_FP_HEX);
1866
1867 printf("%s:\n", identity_file);
Damien Miller4e270b02010-04-16 15:56:21 +10001868 printf(" Type: %s %s certificate\n", key_ssh_name(key),
1869 key_cert_type(key));
1870 printf(" Public key: %s %s\n", key_type(key), key_fp);
1871 printf(" Signing CA: %s %s\n",
Damien Millerf2b70ca2010-03-05 07:39:35 +11001872 key_type(key->cert->signature_key), ca_fp);
Damien Miller4e270b02010-04-16 15:56:21 +10001873 printf(" Key ID: \"%s\"\n", key->cert->key_id);
Damien Miller821de0a2011-01-11 17:20:29 +11001874 if (!v00) {
1875 printf(" Serial: %llu\n",
1876 (unsigned long long)key->cert->serial);
1877 }
Damien Millerf2b70ca2010-03-05 07:39:35 +11001878 printf(" Valid: %s\n",
1879 fmt_validity(key->cert->valid_after, key->cert->valid_before));
1880 printf(" Principals: ");
1881 if (key->cert->nprincipals == 0)
1882 printf("(none)\n");
1883 else {
1884 for (i = 0; i < key->cert->nprincipals; i++)
1885 printf("\n %s",
1886 key->cert->principals[i]);
1887 printf("\n");
1888 }
Damien Miller4e270b02010-04-16 15:56:21 +10001889 printf(" Critical Options: ");
1890 if (buffer_len(&key->cert->critical) == 0)
Damien Millerf2b70ca2010-03-05 07:39:35 +11001891 printf("(none)\n");
1892 else {
1893 printf("\n");
Damien Millerd834d352010-06-26 09:48:02 +10001894 show_options(&key->cert->critical, v00, 1);
Damien Millerf2b70ca2010-03-05 07:39:35 +11001895 }
Damien Miller4e270b02010-04-16 15:56:21 +10001896 if (!v00) {
1897 printf(" Extensions: ");
1898 if (buffer_len(&key->cert->extensions) == 0)
1899 printf("(none)\n");
1900 else {
1901 printf("\n");
Damien Millerd834d352010-06-26 09:48:02 +10001902 show_options(&key->cert->extensions, v00, 0);
Damien Miller4e270b02010-04-16 15:56:21 +10001903 }
1904 }
Damien Millerf2b70ca2010-03-05 07:39:35 +11001905 exit(0);
1906}
1907
1908static void
Damien Millerf3747bf2013-01-18 11:44:04 +11001909load_krl(const char *path, struct ssh_krl **krlp)
1910{
1911 Buffer krlbuf;
1912 int fd;
1913
1914 buffer_init(&krlbuf);
1915 if ((fd = open(path, O_RDONLY)) == -1)
1916 fatal("open %s: %s", path, strerror(errno));
1917 if (!key_load_file(fd, path, &krlbuf))
1918 fatal("Unable to load KRL");
1919 close(fd);
1920 /* XXX check sigs */
1921 if (ssh_krl_from_blob(&krlbuf, krlp, NULL, 0) != 0 ||
1922 *krlp == NULL)
1923 fatal("Invalid KRL file");
1924 buffer_free(&krlbuf);
1925}
1926
1927static void
1928update_krl_from_file(struct passwd *pw, const char *file, const Key *ca,
1929 struct ssh_krl *krl)
1930{
1931 Key *key = NULL;
1932 u_long lnum = 0;
1933 char *path, *cp, *ep, line[SSH_MAX_PUBKEY_BYTES];
1934 unsigned long long serial, serial2;
1935 int i, was_explicit_key, was_sha1, r;
1936 FILE *krl_spec;
1937
1938 path = tilde_expand_filename(file, pw->pw_uid);
1939 if (strcmp(path, "-") == 0) {
1940 krl_spec = stdin;
1941 free(path);
1942 path = xstrdup("(standard input)");
1943 } else if ((krl_spec = fopen(path, "r")) == NULL)
1944 fatal("fopen %s: %s", path, strerror(errno));
1945
1946 if (!quiet)
1947 printf("Revoking from %s\n", path);
1948 while (read_keyfile_line(krl_spec, path, line, sizeof(line),
1949 &lnum) == 0) {
1950 was_explicit_key = was_sha1 = 0;
1951 cp = line + strspn(line, " \t");
1952 /* Trim trailing space, comments and strip \n */
1953 for (i = 0, r = -1; cp[i] != '\0'; i++) {
1954 if (cp[i] == '#' || cp[i] == '\n') {
1955 cp[i] = '\0';
1956 break;
1957 }
1958 if (cp[i] == ' ' || cp[i] == '\t') {
1959 /* Remember the start of a span of whitespace */
1960 if (r == -1)
1961 r = i;
1962 } else
1963 r = -1;
1964 }
1965 if (r != -1)
1966 cp[r] = '\0';
1967 if (*cp == '\0')
1968 continue;
1969 if (strncasecmp(cp, "serial:", 7) == 0) {
1970 if (ca == NULL) {
Damien Millerd234afb2013-08-21 02:42:58 +10001971 fatal("revoking certificates by serial number "
Damien Millerf3747bf2013-01-18 11:44:04 +11001972 "requires specification of a CA key");
1973 }
1974 cp += 7;
1975 cp = cp + strspn(cp, " \t");
1976 errno = 0;
1977 serial = strtoull(cp, &ep, 0);
1978 if (*cp == '\0' || (*ep != '\0' && *ep != '-'))
1979 fatal("%s:%lu: invalid serial \"%s\"",
1980 path, lnum, cp);
1981 if (errno == ERANGE && serial == ULLONG_MAX)
1982 fatal("%s:%lu: serial out of range",
1983 path, lnum);
1984 serial2 = serial;
1985 if (*ep == '-') {
1986 cp = ep + 1;
1987 errno = 0;
1988 serial2 = strtoull(cp, &ep, 0);
1989 if (*cp == '\0' || *ep != '\0')
1990 fatal("%s:%lu: invalid serial \"%s\"",
1991 path, lnum, cp);
1992 if (errno == ERANGE && serial2 == ULLONG_MAX)
1993 fatal("%s:%lu: serial out of range",
1994 path, lnum);
1995 if (serial2 <= serial)
1996 fatal("%s:%lu: invalid serial range "
1997 "%llu:%llu", path, lnum,
1998 (unsigned long long)serial,
1999 (unsigned long long)serial2);
2000 }
2001 if (ssh_krl_revoke_cert_by_serial_range(krl,
2002 ca, serial, serial2) != 0) {
2003 fatal("%s: revoke serial failed",
2004 __func__);
2005 }
2006 } else if (strncasecmp(cp, "id:", 3) == 0) {
2007 if (ca == NULL) {
Damien Millerd5d9d7b2013-08-21 02:43:27 +10002008 fatal("revoking certificates by key ID "
Damien Millerf3747bf2013-01-18 11:44:04 +11002009 "requires specification of a CA key");
2010 }
2011 cp += 3;
2012 cp = cp + strspn(cp, " \t");
2013 if (ssh_krl_revoke_cert_by_key_id(krl, ca, cp) != 0)
2014 fatal("%s: revoke key ID failed", __func__);
2015 } else {
2016 if (strncasecmp(cp, "key:", 4) == 0) {
2017 cp += 4;
2018 cp = cp + strspn(cp, " \t");
2019 was_explicit_key = 1;
2020 } else if (strncasecmp(cp, "sha1:", 5) == 0) {
2021 cp += 5;
2022 cp = cp + strspn(cp, " \t");
2023 was_sha1 = 1;
2024 } else {
2025 /*
2026 * Just try to process the line as a key.
2027 * Parsing will fail if it isn't.
2028 */
2029 }
2030 if ((key = key_new(KEY_UNSPEC)) == NULL)
2031 fatal("key_new");
2032 if (key_read(key, &cp) != 1)
2033 fatal("%s:%lu: invalid key", path, lnum);
2034 if (was_explicit_key)
2035 r = ssh_krl_revoke_key_explicit(krl, key);
2036 else if (was_sha1)
2037 r = ssh_krl_revoke_key_sha1(krl, key);
2038 else
2039 r = ssh_krl_revoke_key(krl, key);
2040 if (r != 0)
2041 fatal("%s: revoke key failed", __func__);
2042 key_free(key);
2043 }
2044 }
2045 if (strcmp(path, "-") != 0)
2046 fclose(krl_spec);
Damien Miller0d6771b2013-04-23 15:23:24 +10002047 free(path);
Damien Millerf3747bf2013-01-18 11:44:04 +11002048}
2049
2050static void
2051do_gen_krl(struct passwd *pw, int updating, int argc, char **argv)
2052{
2053 struct ssh_krl *krl;
2054 struct stat sb;
2055 Key *ca = NULL;
2056 int fd, i;
2057 char *tmp;
2058 Buffer kbuf;
2059
2060 if (*identity_file == '\0')
2061 fatal("KRL generation requires an output file");
2062 if (stat(identity_file, &sb) == -1) {
2063 if (errno != ENOENT)
2064 fatal("Cannot access KRL \"%s\": %s",
2065 identity_file, strerror(errno));
2066 if (updating)
2067 fatal("KRL \"%s\" does not exist", identity_file);
2068 }
2069 if (ca_key_path != NULL) {
2070 tmp = tilde_expand_filename(ca_key_path, pw->pw_uid);
2071 if ((ca = key_load_public(tmp, NULL)) == NULL)
2072 fatal("Cannot load CA public key %s", tmp);
Darren Tuckera627d422013-06-02 07:31:17 +10002073 free(tmp);
Damien Millerf3747bf2013-01-18 11:44:04 +11002074 }
2075
2076 if (updating)
2077 load_krl(identity_file, &krl);
2078 else if ((krl = ssh_krl_init()) == NULL)
2079 fatal("couldn't create KRL");
2080
2081 if (cert_serial != 0)
2082 ssh_krl_set_version(krl, cert_serial);
2083 if (identity_comment != NULL)
2084 ssh_krl_set_comment(krl, identity_comment);
2085
2086 for (i = 0; i < argc; i++)
2087 update_krl_from_file(pw, argv[i], ca, krl);
2088
2089 buffer_init(&kbuf);
2090 if (ssh_krl_to_blob(krl, &kbuf, NULL, 0) != 0)
2091 fatal("Couldn't generate KRL");
2092 if ((fd = open(identity_file, O_WRONLY|O_CREAT|O_TRUNC, 0644)) == -1)
2093 fatal("open %s: %s", identity_file, strerror(errno));
2094 if (atomicio(vwrite, fd, buffer_ptr(&kbuf), buffer_len(&kbuf)) !=
2095 buffer_len(&kbuf))
2096 fatal("write %s: %s", identity_file, strerror(errno));
2097 close(fd);
2098 buffer_free(&kbuf);
2099 ssh_krl_free(krl);
Damien Miller0d6771b2013-04-23 15:23:24 +10002100 if (ca != NULL)
2101 key_free(ca);
Damien Millerf3747bf2013-01-18 11:44:04 +11002102}
2103
2104static void
2105do_check_krl(struct passwd *pw, int argc, char **argv)
2106{
2107 int i, r, ret = 0;
2108 char *comment;
2109 struct ssh_krl *krl;
2110 Key *k;
2111
2112 if (*identity_file == '\0')
2113 fatal("KRL checking requires an input file");
2114 load_krl(identity_file, &krl);
2115 for (i = 0; i < argc; i++) {
2116 if ((k = key_load_public(argv[i], &comment)) == NULL)
2117 fatal("Cannot load public key %s", argv[i]);
2118 r = ssh_krl_check_key(krl, k);
2119 printf("%s%s%s%s: %s\n", argv[i],
2120 *comment ? " (" : "", comment, *comment ? ")" : "",
2121 r == 0 ? "ok" : "REVOKED");
2122 if (r != 0)
2123 ret = 1;
2124 key_free(k);
2125 free(comment);
2126 }
2127 ssh_krl_free(krl);
2128 exit(ret);
2129}
2130
2131static void
Damien Miller431f66b1999-11-21 18:31:57 +11002132usage(void)
2133{
Damien Miller5cbe7ca2007-09-17 16:05:50 +10002134 fprintf(stderr, "usage: %s [options]\n", __progname);
Ben Lindstrom97be31e2001-08-06 21:49:06 +00002135 fprintf(stderr, "Options:\n");
Damien Miller58f1baf2011-05-05 14:06:15 +10002136 fprintf(stderr, " -A Generate non-existent host keys for all key types.\n");
Damien Miller9278ffa2005-05-26 11:59:06 +10002137 fprintf(stderr, " -a trials Number of trials for screening DH-GEX moduli.\n");
Ben Lindstrom97be31e2001-08-06 21:49:06 +00002138 fprintf(stderr, " -B Show bubblebabble digest of key file.\n");
Damien Miller9278ffa2005-05-26 11:59:06 +10002139 fprintf(stderr, " -b bits Number of bits in the key to create.\n");
Ben Lindstrom97be31e2001-08-06 21:49:06 +00002140 fprintf(stderr, " -C comment Provide new comment.\n");
Damien Miller9278ffa2005-05-26 11:59:06 +10002141 fprintf(stderr, " -c Change comment in private and public key files.\n");
Damien Miller7ea845e2010-02-12 09:21:02 +11002142#ifdef ENABLE_PKCS11
2143 fprintf(stderr, " -D pkcs11 Download public key from pkcs11 token.\n");
2144#endif
Damien Miller44b25042010-07-02 13:35:01 +10002145 fprintf(stderr, " -e Export OpenSSH to foreign format key file.\n");
Damien Miller9278ffa2005-05-26 11:59:06 +10002146 fprintf(stderr, " -F hostname Find hostname in known hosts file.\n");
2147 fprintf(stderr, " -f filename Filename of the key file.\n");
2148 fprintf(stderr, " -G file Generate candidates for DH-GEX moduli.\n");
2149 fprintf(stderr, " -g Use generic DNS resource record format.\n");
2150 fprintf(stderr, " -H Hash names in known_hosts file.\n");
Damien Miller0a80ca12010-02-27 07:55:05 +11002151 fprintf(stderr, " -h Generate host certificate instead of a user certificate.\n");
2152 fprintf(stderr, " -I key_id Key identifier to include in certificate.\n");
Damien Miller44b25042010-07-02 13:35:01 +10002153 fprintf(stderr, " -i Import foreign format to OpenSSH key file.\n");
Damien Miller709a1e92012-07-31 12:20:43 +10002154 fprintf(stderr, " -J number Screen this number of moduli lines.\n");
Damien Millerdfceafe2012-07-06 13:44:19 +10002155 fprintf(stderr, " -j number Start screening moduli at specified line.\n");
Damien Miller927d82b2011-10-18 16:05:38 +11002156 fprintf(stderr, " -K checkpt Write checkpoints to this file.\n");
Damien Millerf3747bf2013-01-18 11:44:04 +11002157 fprintf(stderr, " -k Generate a KRL file.\n");
Damien Millerf2b70ca2010-03-05 07:39:35 +11002158 fprintf(stderr, " -L Print the contents of a certificate.\n");
Damien Miller9278ffa2005-05-26 11:59:06 +10002159 fprintf(stderr, " -l Show fingerprint of key file.\n");
2160 fprintf(stderr, " -M memory Amount of memory (MB) to use for generating DH-GEX moduli.\n");
Damien Miller6022f582010-07-02 13:37:01 +10002161 fprintf(stderr, " -m key_fmt Conversion format for -e/-i (PEM|PKCS8|RFC4716).\n");
Damien Miller9278ffa2005-05-26 11:59:06 +10002162 fprintf(stderr, " -N phrase Provide new passphrase.\n");
Damien Miller6022f582010-07-02 13:37:01 +10002163 fprintf(stderr, " -n name,... User/host principal names to include in certificate\n");
Damien Miller1f181422010-04-18 08:08:03 +10002164 fprintf(stderr, " -O option Specify a certificate option.\n");
Damien Miller9278ffa2005-05-26 11:59:06 +10002165 fprintf(stderr, " -P phrase Provide old passphrase.\n");
2166 fprintf(stderr, " -p Change passphrase of private key file.\n");
Damien Millerf3747bf2013-01-18 11:44:04 +11002167 fprintf(stderr, " -Q Test whether key(s) are revoked in KRL.\n");
Damien Miller9278ffa2005-05-26 11:59:06 +10002168 fprintf(stderr, " -q Quiet.\n");
2169 fprintf(stderr, " -R hostname Remove host from known_hosts file.\n");
2170 fprintf(stderr, " -r hostname Print DNS resource record.\n");
2171 fprintf(stderr, " -S start Start point (hex) for generating DH-GEX moduli.\n");
Damien Miller6022f582010-07-02 13:37:01 +10002172 fprintf(stderr, " -s ca_key Certify keys with CA key.\n");
Damien Miller9278ffa2005-05-26 11:59:06 +10002173 fprintf(stderr, " -T file Screen candidates for DH-GEX moduli.\n");
2174 fprintf(stderr, " -t type Specify type of key to create.\n");
Damien Millerf3747bf2013-01-18 11:44:04 +11002175 fprintf(stderr, " -u Update KRL rather than creating a new one.\n");
Damien Miller3d6d68b2013-01-20 22:33:23 +11002176 fprintf(stderr, " -V from:to Specify certificate validity interval.\n");
Damien Miller9278ffa2005-05-26 11:59:06 +10002177 fprintf(stderr, " -v Verbose.\n");
2178 fprintf(stderr, " -W gen Generator to use for generating DH-GEX moduli.\n");
2179 fprintf(stderr, " -y Read private key file and print public key.\n");
Damien Miller1f181422010-04-18 08:08:03 +10002180 fprintf(stderr, " -z serial Specify a serial number.\n");
Darren Tucker019cefe2003-08-02 22:40:07 +10002181
Damien Miller95def091999-11-25 00:26:21 +11002182 exit(1);
Damien Miller431f66b1999-11-21 18:31:57 +11002183}
2184
Damien Miller95def091999-11-25 00:26:21 +11002185/*
2186 * Main program for key management.
2187 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002188int
Damien Millerdf8b7db2007-01-05 16:22:57 +11002189main(int argc, char **argv)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002190{
Damien Millera41c8b12002-01-22 23:05:08 +11002191 char dotsshdir[MAXPATHLEN], comment[1024], *passphrase1, *passphrase2;
Damien Miller390d0562011-10-18 16:05:19 +11002192 char *checkpoint = NULL;
Damien Millerf3747bf2013-01-18 11:44:04 +11002193 char out_file[MAXPATHLEN], *ep, *rr_hostname = NULL;
Ben Lindstrom5fc62702001-03-09 18:19:24 +00002194 Key *private, *public;
Damien Miller95def091999-11-25 00:26:21 +11002195 struct passwd *pw;
Damien Miller95def091999-11-25 00:26:21 +11002196 struct stat st;
Damien Miller7ea845e2010-02-12 09:21:02 +11002197 int opt, type, fd;
Darren Tucker2db8ae62005-06-01 23:02:25 +10002198 u_int32_t memory = 0, generator_wanted = 0, trials = 100;
Darren Tucker019cefe2003-08-02 22:40:07 +10002199 int do_gen_candidates = 0, do_screen_candidates = 0;
Damien Millerf3747bf2013-01-18 11:44:04 +11002200 int gen_all_hostkeys = 0, gen_krl = 0, update_krl = 0, check_krl = 0;
Damien Millerdfceafe2012-07-06 13:44:19 +10002201 unsigned long start_lineno = 0, lines_to_process = 0;
Darren Tucker019cefe2003-08-02 22:40:07 +10002202 BIGNUM *start = NULL;
Damien Miller95def091999-11-25 00:26:21 +11002203 FILE *f;
Damien Miller02e754f2005-05-26 12:19:39 +10002204 const char *errstr;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002205
Damien Miller95def091999-11-25 00:26:21 +11002206 extern int optind;
2207 extern char *optarg;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002208
Darren Tuckerce321d82005-10-03 18:11:24 +10002209 /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
2210 sanitise_stdfd();
2211
Darren Tucker9ac56e92007-01-14 10:19:59 +11002212 __progname = ssh_get_progname(argv[0]);
Damien Millerf9b625c2000-07-09 22:42:32 +10002213
Damien Miller4314c2b2010-09-10 11:12:09 +10002214 OpenSSL_add_all_algorithms();
Damien Millerdf8b7db2007-01-05 16:22:57 +11002215 log_init(argv[0], SYSLOG_LEVEL_INFO, SYSLOG_FACILITY_USER, 1);
Darren Tucker019cefe2003-08-02 22:40:07 +10002216
Kevin Steves3a881912002-07-20 19:05:40 +00002217 seed_rng();
Damien Millereba71ba2000-04-29 23:57:08 +10002218
Damien Miller5428f641999-11-25 11:54:57 +11002219 /* we need this for the home * directory. */
Damien Miller95def091999-11-25 00:26:21 +11002220 pw = getpwuid(getuid());
2221 if (!pw) {
Damien Miller3009d3c2013-07-20 13:22:31 +10002222 printf("No user exists for uid %lu\n", (u_long)getuid());
Damien Miller95def091999-11-25 00:26:21 +11002223 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002224 }
Damien Millereba71ba2000-04-29 23:57:08 +10002225 if (gethostname(hostname, sizeof(hostname)) < 0) {
2226 perror("gethostname");
2227 exit(1);
2228 }
Damien Miller5428f641999-11-25 11:54:57 +11002229
Damien Millerf3747bf2013-01-18 11:44:04 +11002230 while ((opt = getopt(argc, argv, "ABHLQXceghiklpquvxy"
2231 "C:D:F:G:I:J:K:M:N:O:P:R:S:T:V:W:a:b:f:g:j:m:n:r:s:t:z:")) != -1) {
Damien Miller95def091999-11-25 00:26:21 +11002232 switch (opt) {
Damien Miller58f1baf2011-05-05 14:06:15 +10002233 case 'A':
2234 gen_all_hostkeys = 1;
2235 break;
Damien Miller95def091999-11-25 00:26:21 +11002236 case 'b':
Damien Miller57737942010-09-10 11:16:37 +10002237 bits = (u_int32_t)strtonum(optarg, 256, 32768, &errstr);
Damien Miller02e754f2005-05-26 12:19:39 +10002238 if (errstr)
2239 fatal("Bits has bad value %s (%s)",
2240 optarg, errstr);
Damien Miller95def091999-11-25 00:26:21 +11002241 break;
Damien Miller4b42d7f2005-03-01 21:48:35 +11002242 case 'F':
2243 find_host = 1;
2244 rr_hostname = optarg;
2245 break;
2246 case 'H':
2247 hash_hosts = 1;
2248 break;
Damien Miller0a80ca12010-02-27 07:55:05 +11002249 case 'I':
2250 cert_key_id = optarg;
2251 break;
Damien Millerdfceafe2012-07-06 13:44:19 +10002252 case 'J':
2253 lines_to_process = strtoul(optarg, NULL, 10);
2254 break;
2255 case 'j':
2256 start_lineno = strtoul(optarg, NULL, 10);
2257 break;
Damien Miller4b42d7f2005-03-01 21:48:35 +11002258 case 'R':
2259 delete_host = 1;
2260 rr_hostname = optarg;
2261 break;
Damien Millerf2b70ca2010-03-05 07:39:35 +11002262 case 'L':
2263 show_cert = 1;
2264 break;
Damien Miller95def091999-11-25 00:26:21 +11002265 case 'l':
2266 print_fingerprint = 1;
2267 break;
Ben Lindstrom8fd372b2001-03-12 03:02:17 +00002268 case 'B':
2269 print_bubblebabble = 1;
2270 break;
Damien Miller44b25042010-07-02 13:35:01 +10002271 case 'm':
2272 if (strcasecmp(optarg, "RFC4716") == 0 ||
2273 strcasecmp(optarg, "ssh2") == 0) {
2274 convert_format = FMT_RFC4716;
2275 break;
2276 }
2277 if (strcasecmp(optarg, "PKCS8") == 0) {
2278 convert_format = FMT_PKCS8;
2279 break;
2280 }
2281 if (strcasecmp(optarg, "PEM") == 0) {
2282 convert_format = FMT_PEM;
2283 break;
2284 }
2285 fatal("Unsupported conversion format \"%s\"", optarg);
Damien Miller0a80ca12010-02-27 07:55:05 +11002286 case 'n':
2287 cert_principals = optarg;
2288 break;
Damien Miller95def091999-11-25 00:26:21 +11002289 case 'p':
2290 change_passphrase = 1;
2291 break;
Damien Miller95def091999-11-25 00:26:21 +11002292 case 'c':
2293 change_comment = 1;
2294 break;
Damien Miller95def091999-11-25 00:26:21 +11002295 case 'f':
Damien Millerb089fb52005-05-26 12:16:18 +10002296 if (strlcpy(identity_file, optarg, sizeof(identity_file)) >=
2297 sizeof(identity_file))
2298 fatal("Identity filename too long");
Damien Miller95def091999-11-25 00:26:21 +11002299 have_identity = 1;
2300 break;
Damien Miller37876e92003-05-15 10:19:46 +10002301 case 'g':
2302 print_generic = 1;
2303 break;
Damien Miller95def091999-11-25 00:26:21 +11002304 case 'P':
2305 identity_passphrase = optarg;
2306 break;
Damien Miller95def091999-11-25 00:26:21 +11002307 case 'N':
2308 identity_new_passphrase = optarg;
2309 break;
Damien Millerf3747bf2013-01-18 11:44:04 +11002310 case 'Q':
2311 check_krl = 1;
2312 break;
Damien Miller0a80ca12010-02-27 07:55:05 +11002313 case 'O':
Damien Miller4e270b02010-04-16 15:56:21 +10002314 add_cert_option(optarg);
Damien Miller0a80ca12010-02-27 07:55:05 +11002315 break;
Damien Miller95def091999-11-25 00:26:21 +11002316 case 'C':
2317 identity_comment = optarg;
2318 break;
Damien Miller95def091999-11-25 00:26:21 +11002319 case 'q':
2320 quiet = 1;
2321 break;
Ben Lindstrom5a707822001-04-22 17:15:46 +00002322 case 'e':
Damien Millereba71ba2000-04-29 23:57:08 +10002323 case 'x':
Ben Lindstrom5a707822001-04-22 17:15:46 +00002324 /* export key */
Damien Miller44b25042010-07-02 13:35:01 +10002325 convert_to = 1;
Damien Millereba71ba2000-04-29 23:57:08 +10002326 break;
Damien Miller0a80ca12010-02-27 07:55:05 +11002327 case 'h':
2328 cert_key_type = SSH2_CERT_TYPE_HOST;
Damien Millerd0e4a8e2010-05-21 14:58:32 +10002329 certflags_flags = 0;
Damien Miller0a80ca12010-02-27 07:55:05 +11002330 break;
Damien Millerf3747bf2013-01-18 11:44:04 +11002331 case 'k':
2332 gen_krl = 1;
2333 break;
Ben Lindstrom5a707822001-04-22 17:15:46 +00002334 case 'i':
Damien Millereba71ba2000-04-29 23:57:08 +10002335 case 'X':
Ben Lindstrom5a707822001-04-22 17:15:46 +00002336 /* import key */
Damien Miller44b25042010-07-02 13:35:01 +10002337 convert_from = 1;
Damien Millereba71ba2000-04-29 23:57:08 +10002338 break;
Damien Millereba71ba2000-04-29 23:57:08 +10002339 case 'y':
2340 print_public = 1;
2341 break;
Damien Miller0a80ca12010-02-27 07:55:05 +11002342 case 's':
2343 ca_key_path = optarg;
2344 break;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002345 case 't':
2346 key_type_name = optarg;
Damien Miller0bc1bd82000-11-13 22:57:25 +11002347 break;
Ben Lindstrom8282d6a2001-08-06 21:44:05 +00002348 case 'D':
Damien Miller7ea845e2010-02-12 09:21:02 +11002349 pkcs11provider = optarg;
Ben Lindstromcd392282001-07-04 03:44:03 +00002350 break;
Damien Millerf3747bf2013-01-18 11:44:04 +11002351 case 'u':
2352 update_krl = 1;
2353 break;
Darren Tucker06930c72003-12-31 11:34:51 +11002354 case 'v':
2355 if (log_level == SYSLOG_LEVEL_INFO)
2356 log_level = SYSLOG_LEVEL_DEBUG1;
2357 else {
Darren Tuckerfc959702004-07-17 16:12:08 +10002358 if (log_level >= SYSLOG_LEVEL_DEBUG1 &&
Darren Tucker06930c72003-12-31 11:34:51 +11002359 log_level < SYSLOG_LEVEL_DEBUG3)
2360 log_level++;
2361 }
2362 break;
Damien Miller37876e92003-05-15 10:19:46 +10002363 case 'r':
Damien Miller4b42d7f2005-03-01 21:48:35 +11002364 rr_hostname = optarg;
Damien Miller37876e92003-05-15 10:19:46 +10002365 break;
Darren Tucker019cefe2003-08-02 22:40:07 +10002366 case 'W':
Damien Miller5f340062006-03-26 14:27:57 +11002367 generator_wanted = (u_int32_t)strtonum(optarg, 1,
2368 UINT_MAX, &errstr);
Damien Millerb089fb52005-05-26 12:16:18 +10002369 if (errstr)
2370 fatal("Desired generator has bad value: %s (%s)",
2371 optarg, errstr);
Darren Tucker019cefe2003-08-02 22:40:07 +10002372 break;
2373 case 'a':
Damien Miller5f340062006-03-26 14:27:57 +11002374 trials = (u_int32_t)strtonum(optarg, 1, UINT_MAX, &errstr);
Damien Millerb089fb52005-05-26 12:16:18 +10002375 if (errstr)
2376 fatal("Invalid number of trials: %s (%s)",
2377 optarg, errstr);
Darren Tucker019cefe2003-08-02 22:40:07 +10002378 break;
2379 case 'M':
Damien Miller5f340062006-03-26 14:27:57 +11002380 memory = (u_int32_t)strtonum(optarg, 1, UINT_MAX, &errstr);
Damien Miller4e270b02010-04-16 15:56:21 +10002381 if (errstr)
Damien Millerb089fb52005-05-26 12:16:18 +10002382 fatal("Memory limit is %s: %s", errstr, optarg);
Darren Tucker019cefe2003-08-02 22:40:07 +10002383 break;
2384 case 'G':
2385 do_gen_candidates = 1;
Damien Millerb089fb52005-05-26 12:16:18 +10002386 if (strlcpy(out_file, optarg, sizeof(out_file)) >=
2387 sizeof(out_file))
2388 fatal("Output filename too long");
Darren Tucker019cefe2003-08-02 22:40:07 +10002389 break;
2390 case 'T':
2391 do_screen_candidates = 1;
Damien Millerb089fb52005-05-26 12:16:18 +10002392 if (strlcpy(out_file, optarg, sizeof(out_file)) >=
2393 sizeof(out_file))
2394 fatal("Output filename too long");
Darren Tucker019cefe2003-08-02 22:40:07 +10002395 break;
Damien Miller390d0562011-10-18 16:05:19 +11002396 case 'K':
2397 if (strlen(optarg) >= MAXPATHLEN)
2398 fatal("Checkpoint filename too long");
2399 checkpoint = xstrdup(optarg);
2400 break;
Darren Tucker019cefe2003-08-02 22:40:07 +10002401 case 'S':
2402 /* XXX - also compare length against bits */
2403 if (BN_hex2bn(&start, optarg) == 0)
2404 fatal("Invalid start point.");
2405 break;
Damien Miller0a80ca12010-02-27 07:55:05 +11002406 case 'V':
2407 parse_cert_times(optarg);
2408 break;
Damien Miller4e270b02010-04-16 15:56:21 +10002409 case 'z':
Damien Miller6f3b3622012-11-14 19:04:33 +11002410 errno = 0;
2411 cert_serial = strtoull(optarg, &ep, 10);
2412 if (*optarg < '0' || *optarg > '9' || *ep != '\0' ||
2413 (errno == ERANGE && cert_serial == ULLONG_MAX))
2414 fatal("Invalid serial number \"%s\"", optarg);
Damien Miller4e270b02010-04-16 15:56:21 +10002415 break;
Damien Miller95def091999-11-25 00:26:21 +11002416 case '?':
2417 default:
2418 usage();
2419 }
2420 }
Darren Tucker06930c72003-12-31 11:34:51 +11002421
2422 /* reinit */
Damien Millerdf8b7db2007-01-05 16:22:57 +11002423 log_init(argv[0], log_level, SYSLOG_FACILITY_USER, 1);
Darren Tucker06930c72003-12-31 11:34:51 +11002424
Damien Miller0a80ca12010-02-27 07:55:05 +11002425 argv += optind;
2426 argc -= optind;
2427
2428 if (ca_key_path != NULL) {
Damien Millerf3747bf2013-01-18 11:44:04 +11002429 if (argc < 1 && !gen_krl) {
Damien Miller0a80ca12010-02-27 07:55:05 +11002430 printf("Too few arguments.\n");
2431 usage();
2432 }
Damien Millerf3747bf2013-01-18 11:44:04 +11002433 } else if (argc > 0 && !gen_krl && !check_krl) {
Damien Miller95def091999-11-25 00:26:21 +11002434 printf("Too many arguments.\n");
2435 usage();
2436 }
2437 if (change_passphrase && change_comment) {
2438 printf("Can only have one of -p and -c.\n");
2439 usage();
2440 }
Darren Tucker0f7e9102008-06-08 12:54:29 +10002441 if (print_fingerprint && (delete_host || hash_hosts)) {
Damien Millerec77c952013-01-09 15:58:00 +11002442 printf("Cannot use -l with -H or -R.\n");
Darren Tucker0f7e9102008-06-08 12:54:29 +10002443 usage();
2444 }
Damien Millerf3747bf2013-01-18 11:44:04 +11002445 if (gen_krl) {
2446 do_gen_krl(pw, update_krl, argc, argv);
2447 return (0);
2448 }
2449 if (check_krl) {
2450 do_check_krl(pw, argc, argv);
2451 return (0);
2452 }
Damien Miller0a80ca12010-02-27 07:55:05 +11002453 if (ca_key_path != NULL) {
2454 if (cert_key_id == NULL)
2455 fatal("Must specify key id (-I) when certifying");
2456 do_ca_sign(pw, argc, argv);
2457 }
Damien Millerf2b70ca2010-03-05 07:39:35 +11002458 if (show_cert)
2459 do_show_cert(pw);
Damien Miller4b42d7f2005-03-01 21:48:35 +11002460 if (delete_host || hash_hosts || find_host)
2461 do_known_hosts(pw, rr_hostname);
Damien Millerec77c952013-01-09 15:58:00 +11002462 if (pkcs11provider != NULL)
2463 do_download(pw);
Ben Lindstrom8fd372b2001-03-12 03:02:17 +00002464 if (print_fingerprint || print_bubblebabble)
Damien Miller95def091999-11-25 00:26:21 +11002465 do_fingerprint(pw);
Damien Miller95def091999-11-25 00:26:21 +11002466 if (change_passphrase)
2467 do_change_passphrase(pw);
Damien Miller4a10d2e2002-03-11 22:53:29 +11002468 if (change_comment)
2469 do_change_comment(pw);
Damien Miller44b25042010-07-02 13:35:01 +10002470 if (convert_to)
2471 do_convert_to(pw);
2472 if (convert_from)
2473 do_convert_from(pw);
Damien Millereba71ba2000-04-29 23:57:08 +10002474 if (print_public)
2475 do_print_public(pw);
Damien Miller4b42d7f2005-03-01 21:48:35 +11002476 if (rr_hostname != NULL) {
Damien Millercb314822006-03-26 13:48:01 +11002477 unsigned int n = 0;
2478
2479 if (have_identity) {
2480 n = do_print_resource_record(pw,
2481 identity_file, rr_hostname);
2482 if (n == 0) {
2483 perror(identity_file);
2484 exit(1);
2485 }
2486 exit(0);
2487 } else {
2488
2489 n += do_print_resource_record(pw,
2490 _PATH_HOST_RSA_KEY_FILE, rr_hostname);
2491 n += do_print_resource_record(pw,
2492 _PATH_HOST_DSA_KEY_FILE, rr_hostname);
Damien Miller3bde12a2012-06-20 21:51:11 +10002493 n += do_print_resource_record(pw,
2494 _PATH_HOST_ECDSA_KEY_FILE, rr_hostname);
Damien Millercb314822006-03-26 13:48:01 +11002495
2496 if (n == 0)
2497 fatal("no keys found.");
2498 exit(0);
2499 }
Damien Miller37876e92003-05-15 10:19:46 +10002500 }
Damien Miller95def091999-11-25 00:26:21 +11002501
Darren Tucker019cefe2003-08-02 22:40:07 +10002502 if (do_gen_candidates) {
2503 FILE *out = fopen(out_file, "w");
Damien Miller787b2ec2003-11-21 23:56:47 +11002504
Darren Tucker019cefe2003-08-02 22:40:07 +10002505 if (out == NULL) {
2506 error("Couldn't open modulus candidate file \"%s\": %s",
2507 out_file, strerror(errno));
2508 return (1);
2509 }
Damien Miller3f54a9f2005-11-05 14:52:18 +11002510 if (bits == 0)
2511 bits = DEFAULT_BITS;
Darren Tucker019cefe2003-08-02 22:40:07 +10002512 if (gen_candidates(out, memory, bits, start) != 0)
Damien Miller15d72a02005-11-05 15:07:33 +11002513 fatal("modulus candidate generation failed");
Darren Tucker019cefe2003-08-02 22:40:07 +10002514
2515 return (0);
2516 }
2517
2518 if (do_screen_candidates) {
2519 FILE *in;
Damien Miller78d22712013-02-12 11:03:36 +11002520 FILE *out = fopen(out_file, "a");
Darren Tucker019cefe2003-08-02 22:40:07 +10002521
2522 if (have_identity && strcmp(identity_file, "-") != 0) {
2523 if ((in = fopen(identity_file, "r")) == NULL) {
2524 fatal("Couldn't open modulus candidate "
Damien Millera8e06ce2003-11-21 23:48:55 +11002525 "file \"%s\": %s", identity_file,
Darren Tucker019cefe2003-08-02 22:40:07 +10002526 strerror(errno));
2527 }
2528 } else
2529 in = stdin;
2530
2531 if (out == NULL) {
2532 fatal("Couldn't open moduli file \"%s\": %s",
2533 out_file, strerror(errno));
2534 }
Damien Millerdfceafe2012-07-06 13:44:19 +10002535 if (prime_test(in, out, trials, generator_wanted, checkpoint,
2536 start_lineno, lines_to_process) != 0)
Damien Miller15d72a02005-11-05 15:07:33 +11002537 fatal("modulus screening failed");
Darren Tuckerf4220e62003-08-21 16:44:07 +10002538 return (0);
Darren Tucker019cefe2003-08-02 22:40:07 +10002539 }
2540
Damien Miller58f1baf2011-05-05 14:06:15 +10002541 if (gen_all_hostkeys) {
2542 do_gen_all_hostkeys(pw);
2543 return (0);
2544 }
2545
Damien Miller95def091999-11-25 00:26:21 +11002546 arc4random_stir();
2547
Damien Millerf14be5c2005-11-05 15:15:49 +11002548 if (key_type_name == NULL)
2549 key_type_name = "rsa";
2550
Damien Millere39cacc2000-11-29 12:18:44 +11002551 type = key_type_from_name(key_type_name);
Damien Miller58f1baf2011-05-05 14:06:15 +10002552 type_bits_valid(type, &bits);
2553
Darren Tucker3af2ac52005-11-29 13:10:24 +11002554 if (!quiet)
2555 printf("Generating public/private %s key pair.\n", key_type_name);
Damien Miller0bc1bd82000-11-13 22:57:25 +11002556 private = key_generate(type, bits);
2557 if (private == NULL) {
Damien Miller9eab9562009-02-22 08:47:02 +11002558 fprintf(stderr, "key_generate failed\n");
Damien Miller0bc1bd82000-11-13 22:57:25 +11002559 exit(1);
2560 }
2561 public = key_from_private(private);
Damien Miller95def091999-11-25 00:26:21 +11002562
2563 if (!have_identity)
2564 ask_filename(pw, "Enter file in which to save the key");
2565
Damien Miller788f2122005-11-05 15:14:59 +11002566 /* Create ~/.ssh directory if it doesn't already exist. */
Damien Miller50af79b2010-05-10 11:52:00 +10002567 snprintf(dotsshdir, sizeof dotsshdir, "%s/%s",
2568 pw->pw_dir, _PATH_SSH_USER_DIR);
2569 if (strstr(identity_file, dotsshdir) != NULL) {
2570 if (stat(dotsshdir, &st) < 0) {
2571 if (errno != ENOENT) {
2572 error("Could not stat %s: %s", dotsshdir,
2573 strerror(errno));
2574 } else if (mkdir(dotsshdir, 0700) < 0) {
2575 error("Could not create directory '%s': %s",
2576 dotsshdir, strerror(errno));
2577 } else if (!quiet)
2578 printf("Created directory '%s'.\n", dotsshdir);
2579 }
Damien Miller95def091999-11-25 00:26:21 +11002580 }
2581 /* If the file already exists, ask the user to confirm. */
2582 if (stat(identity_file, &st) >= 0) {
2583 char yesno[3];
2584 printf("%s already exists.\n", identity_file);
2585 printf("Overwrite (y/n)? ");
2586 fflush(stdout);
2587 if (fgets(yesno, sizeof(yesno), stdin) == NULL)
2588 exit(1);
2589 if (yesno[0] != 'y' && yesno[0] != 'Y')
2590 exit(1);
2591 }
2592 /* Ask for a passphrase (twice). */
2593 if (identity_passphrase)
2594 passphrase1 = xstrdup(identity_passphrase);
2595 else if (identity_new_passphrase)
2596 passphrase1 = xstrdup(identity_new_passphrase);
2597 else {
2598passphrase_again:
2599 passphrase1 =
Ben Lindstrom949974b2001-06-25 05:20:31 +00002600 read_passphrase("Enter passphrase (empty for no "
2601 "passphrase): ", RP_ALLOW_STDIN);
2602 passphrase2 = read_passphrase("Enter same passphrase again: ",
2603 RP_ALLOW_STDIN);
Damien Miller95def091999-11-25 00:26:21 +11002604 if (strcmp(passphrase1, passphrase2) != 0) {
Ben Lindstrom949974b2001-06-25 05:20:31 +00002605 /*
2606 * The passphrases do not match. Clear them and
2607 * retry.
2608 */
Damien Miller95def091999-11-25 00:26:21 +11002609 memset(passphrase1, 0, strlen(passphrase1));
2610 memset(passphrase2, 0, strlen(passphrase2));
Darren Tuckera627d422013-06-02 07:31:17 +10002611 free(passphrase1);
2612 free(passphrase2);
Damien Miller95def091999-11-25 00:26:21 +11002613 printf("Passphrases do not match. Try again.\n");
2614 goto passphrase_again;
2615 }
2616 /* Clear the other copy of the passphrase. */
2617 memset(passphrase2, 0, strlen(passphrase2));
Darren Tuckera627d422013-06-02 07:31:17 +10002618 free(passphrase2);
Damien Miller95def091999-11-25 00:26:21 +11002619 }
2620
Damien Miller95def091999-11-25 00:26:21 +11002621 if (identity_comment) {
2622 strlcpy(comment, identity_comment, sizeof(comment));
2623 } else {
Darren Tuckere15fb092008-11-11 16:31:43 +11002624 /* Create default comment field for the passphrase. */
Damien Miller95def091999-11-25 00:26:21 +11002625 snprintf(comment, sizeof comment, "%s@%s", pw->pw_name, hostname);
2626 }
2627
2628 /* Save the key with the given passphrase and comment. */
Ben Lindstromd0fca422001-03-26 13:44:06 +00002629 if (!key_save_private(private, identity_file, passphrase1, comment)) {
Ben Lindstrom15f33862001-04-16 02:00:02 +00002630 printf("Saving the key failed: %s.\n", identity_file);
Damien Miller95def091999-11-25 00:26:21 +11002631 memset(passphrase1, 0, strlen(passphrase1));
Darren Tuckera627d422013-06-02 07:31:17 +10002632 free(passphrase1);
Damien Miller95def091999-11-25 00:26:21 +11002633 exit(1);
2634 }
2635 /* Clear the passphrase. */
2636 memset(passphrase1, 0, strlen(passphrase1));
Darren Tuckera627d422013-06-02 07:31:17 +10002637 free(passphrase1);
Damien Miller95def091999-11-25 00:26:21 +11002638
2639 /* Clear the private key and the random number generator. */
Damien Miller0bc1bd82000-11-13 22:57:25 +11002640 key_free(private);
Damien Miller95def091999-11-25 00:26:21 +11002641 arc4random_stir();
2642
2643 if (!quiet)
2644 printf("Your identification has been saved in %s.\n", identity_file);
2645
Damien Miller95def091999-11-25 00:26:21 +11002646 strlcat(identity_file, ".pub", sizeof(identity_file));
Ben Lindstrom5fc62702001-03-09 18:19:24 +00002647 fd = open(identity_file, O_WRONLY | O_CREAT | O_TRUNC, 0644);
2648 if (fd == -1) {
Damien Miller95def091999-11-25 00:26:21 +11002649 printf("Could not save your public key in %s\n", identity_file);
2650 exit(1);
2651 }
Ben Lindstrom5fc62702001-03-09 18:19:24 +00002652 f = fdopen(fd, "w");
2653 if (f == NULL) {
Damien Miller9eab9562009-02-22 08:47:02 +11002654 printf("fdopen %s failed\n", identity_file);
Ben Lindstrom5fc62702001-03-09 18:19:24 +00002655 exit(1);
2656 }
Damien Millereba71ba2000-04-29 23:57:08 +10002657 if (!key_write(public, f))
Damien Miller9eab9562009-02-22 08:47:02 +11002658 fprintf(stderr, "write key failed\n");
Damien Millereba71ba2000-04-29 23:57:08 +10002659 fprintf(f, " %s\n", comment);
Damien Miller95def091999-11-25 00:26:21 +11002660 fclose(f);
2661
2662 if (!quiet) {
Ben Lindstromcfccef92001-03-13 04:57:58 +00002663 char *fp = key_fingerprint(public, SSH_FP_MD5, SSH_FP_HEX);
Darren Tucker9c16ac92008-06-13 04:40:35 +10002664 char *ra = key_fingerprint(public, SSH_FP_MD5,
2665 SSH_FP_RANDOMART);
Damien Millereba71ba2000-04-29 23:57:08 +10002666 printf("Your public key has been saved in %s.\n",
2667 identity_file);
Damien Miller95def091999-11-25 00:26:21 +11002668 printf("The key fingerprint is:\n");
Ben Lindstromcfccef92001-03-13 04:57:58 +00002669 printf("%s %s\n", fp, comment);
Darren Tucker9c16ac92008-06-13 04:40:35 +10002670 printf("The key's randomart image is:\n");
2671 printf("%s\n", ra);
Darren Tuckera627d422013-06-02 07:31:17 +10002672 free(ra);
2673 free(fp);
Damien Miller95def091999-11-25 00:26:21 +11002674 }
Damien Millereba71ba2000-04-29 23:57:08 +10002675
2676 key_free(public);
Damien Miller95def091999-11-25 00:26:21 +11002677 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002678}