blob: 8acbf7783d61c5189ce60d6f312fc153afb5d0d3 [file] [log] [blame]
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001/*
Damien Miller95def091999-11-25 00:26:21 +11002 * Author: Tatu Ylonen <ylo@cs.hut.fi>
3 * Copyright (c) 1994 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4 * All rights reserved
Damien Miller95def091999-11-25 00:26:21 +11005 * Identity and host key generation and maintenance.
Damien Millere4340be2000-09-16 13:29:08 +11006 *
7 * As far as I am concerned, the code I have written for this software
8 * can be used freely for any purpose. Any derived versions of this
9 * software must be clearly marked as such, and if the derived work is
10 * incompatible with the protocol description in the RFC file, it must be
11 * called by a name other than "ssh" or "Secure Shell".
Damien Miller95def091999-11-25 00:26:21 +110012 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100013
14#include "includes.h"
Damien Millerf17883e2006-03-15 11:45:54 +110015RCSID("$OpenBSD: ssh-keygen.c,v 1.136 2006/02/20 17:19:54 stevesk Exp $");
16
17#include <sys/types.h>
18#include <sys/stat.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100019
Damien Millereba71ba2000-04-29 23:57:08 +100020#include <openssl/evp.h>
21#include <openssl/pem.h>
Damien Millereba71ba2000-04-29 23:57:08 +100022
Damien Millerd4a8b7e1999-10-27 13:42:43 +100023#include "xmalloc.h"
Damien Millereba71ba2000-04-29 23:57:08 +100024#include "key.h"
Ben Lindstromd09fcf52001-03-29 00:29:54 +000025#include "rsa.h"
Damien Millereba71ba2000-04-29 23:57:08 +100026#include "authfile.h"
27#include "uuencode.h"
Damien Miller874d77b2000-10-14 16:23:11 +110028#include "buffer.h"
29#include "bufaux.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000030#include "pathnames.h"
31#include "log.h"
Darren Tuckere608ca22004-05-13 16:15:47 +100032#include "misc.h"
Damien Miller4b42d7f2005-03-01 21:48:35 +110033#include "match.h"
34#include "hostfile.h"
Damien Miller874d77b2000-10-14 16:23:11 +110035
Ben Lindstrom8282d6a2001-08-06 21:44:05 +000036#ifdef SMARTCARD
Ben Lindstrom8282d6a2001-08-06 21:44:05 +000037#include "scard.h"
Ben Lindstrombcc18082001-08-06 21:59:25 +000038#endif
Damien Millered12a262003-05-15 13:37:43 +100039#include "dns.h"
Ben Lindstromcd392282001-07-04 03:44:03 +000040
Damien Miller3f54a9f2005-11-05 14:52:18 +110041/* Number of bits in the RSA/DSA key. This value can be set on the command line. */
42#define DEFAULT_BITS 2048
43#define DEFAULT_BITS_DSA 1024
44u_int32_t bits = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100045
Damien Miller5428f641999-11-25 11:54:57 +110046/*
47 * Flag indicating that we just want to change the passphrase. This can be
48 * set on the command line.
49 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100050int change_passphrase = 0;
51
Damien Miller5428f641999-11-25 11:54:57 +110052/*
53 * Flag indicating that we just want to change the comment. This can be set
54 * on the command line.
55 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100056int change_comment = 0;
57
58int quiet = 0;
59
Damien Miller4b42d7f2005-03-01 21:48:35 +110060/* Flag indicating that we want to hash a known_hosts file */
61int hash_hosts = 0;
62/* Flag indicating that we want lookup a host in known_hosts file */
63int find_host = 0;
64/* Flag indicating that we want to delete a host from a known_hosts file */
65int delete_host = 0;
66
Damien Miller10f6f6b1999-11-17 17:29:08 +110067/* Flag indicating that we just want to see the key fingerprint */
68int print_fingerprint = 0;
Ben Lindstrom8fd372b2001-03-12 03:02:17 +000069int print_bubblebabble = 0;
Damien Miller10f6f6b1999-11-17 17:29:08 +110070
Damien Miller431f66b1999-11-21 18:31:57 +110071/* The identity file name, given on the command line or entered by the user. */
72char identity_file[1024];
73int have_identity = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100074
75/* This is set to the passphrase if given on the command line. */
76char *identity_passphrase = NULL;
77
78/* This is set to the new passphrase if given on the command line. */
79char *identity_new_passphrase = NULL;
80
81/* This is set to the new comment if given on the command line. */
82char *identity_comment = NULL;
83
Damien Millereba71ba2000-04-29 23:57:08 +100084/* Dump public key file in format used by real and the original SSH 2 */
85int convert_to_ssh2 = 0;
86int convert_from_ssh2 = 0;
87int print_public = 0;
Damien Miller37876e92003-05-15 10:19:46 +100088int print_generic = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +110089
Damien Millera41c8b12002-01-22 23:05:08 +110090char *key_type_name = NULL;
Damien Millereba71ba2000-04-29 23:57:08 +100091
Damien Miller431f66b1999-11-21 18:31:57 +110092/* argv0 */
93extern char *__progname;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100094
Damien Millereba71ba2000-04-29 23:57:08 +100095char hostname[MAXHOSTNAMELEN];
96
Darren Tucker770fc012004-05-13 16:24:32 +100097/* moduli.c */
Damien Millerb089fb52005-05-26 12:16:18 +100098int gen_candidates(FILE *, u_int32_t, u_int32_t, BIGNUM *);
Darren Tucker770fc012004-05-13 16:24:32 +100099int prime_test(FILE *, FILE *, u_int32_t, u_int32_t);
100
Ben Lindstrombba81212001-06-25 05:01:22 +0000101static void
Damien Miller431f66b1999-11-21 18:31:57 +1100102ask_filename(struct passwd *pw, const char *prompt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000103{
Damien Miller95def091999-11-25 00:26:21 +1100104 char buf[1024];
Damien Millere39cacc2000-11-29 12:18:44 +1100105 char *name = NULL;
106
Damien Miller993dd552002-02-19 15:22:47 +1100107 if (key_type_name == NULL)
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000108 name = _PATH_SSH_CLIENT_ID_RSA;
Damien Miller993dd552002-02-19 15:22:47 +1100109 else
110 switch (key_type_from_name(key_type_name)) {
111 case KEY_RSA1:
112 name = _PATH_SSH_CLIENT_IDENTITY;
113 break;
114 case KEY_DSA:
115 name = _PATH_SSH_CLIENT_ID_DSA;
116 break;
117 case KEY_RSA:
118 name = _PATH_SSH_CLIENT_ID_RSA;
119 break;
120 default:
121 fprintf(stderr, "bad key type");
122 exit(1);
123 break;
124 }
125
Damien Millere39cacc2000-11-29 12:18:44 +1100126 snprintf(identity_file, sizeof(identity_file), "%s/%s", pw->pw_dir, name);
Ben Lindstrom3deda8b2000-12-22 20:27:43 +0000127 fprintf(stderr, "%s (%s): ", prompt, identity_file);
Damien Miller95def091999-11-25 00:26:21 +1100128 if (fgets(buf, sizeof(buf), stdin) == NULL)
129 exit(1);
130 if (strchr(buf, '\n'))
131 *strchr(buf, '\n') = 0;
132 if (strcmp(buf, "") != 0)
133 strlcpy(identity_file, buf, sizeof(identity_file));
134 have_identity = 1;
Damien Miller10f6f6b1999-11-17 17:29:08 +1100135}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000136
Ben Lindstrombba81212001-06-25 05:01:22 +0000137static Key *
Ben Lindstromd78ae762001-06-05 20:35:09 +0000138load_identity(char *filename)
Damien Millereba71ba2000-04-29 23:57:08 +1000139{
Ben Lindstromd0fca422001-03-26 13:44:06 +0000140 char *pass;
141 Key *prv;
142
Ben Lindstroma3700052001-04-05 23:26:32 +0000143 prv = key_load_private(filename, "", NULL);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000144 if (prv == NULL) {
Ben Lindstromd78ae762001-06-05 20:35:09 +0000145 if (identity_passphrase)
146 pass = xstrdup(identity_passphrase);
147 else
Ben Lindstrom949974b2001-06-25 05:20:31 +0000148 pass = read_passphrase("Enter passphrase: ",
149 RP_ALLOW_STDIN);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000150 prv = key_load_private(filename, pass, NULL);
Damien Millereba71ba2000-04-29 23:57:08 +1000151 memset(pass, 0, strlen(pass));
152 xfree(pass);
153 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000154 return prv;
Damien Millereba71ba2000-04-29 23:57:08 +1000155}
156
Damien Miller874d77b2000-10-14 16:23:11 +1100157#define SSH_COM_PUBLIC_BEGIN "---- BEGIN SSH2 PUBLIC KEY ----"
Ben Lindstromcb72e4f2002-06-21 00:41:51 +0000158#define SSH_COM_PUBLIC_END "---- END SSH2 PUBLIC KEY ----"
Damien Miller874d77b2000-10-14 16:23:11 +1100159#define SSH_COM_PRIVATE_BEGIN "---- BEGIN SSH2 ENCRYPTED PRIVATE KEY ----"
Kevin Stevesef4eea92001-02-05 12:42:17 +0000160#define SSH_COM_PRIVATE_KEY_MAGIC 0x3f6ff9eb
Damien Millereba71ba2000-04-29 23:57:08 +1000161
Ben Lindstrombba81212001-06-25 05:01:22 +0000162static void
Damien Millereba71ba2000-04-29 23:57:08 +1000163do_convert_to_ssh2(struct passwd *pw)
164{
Ben Lindstrom46c264f2001-04-24 16:56:58 +0000165 Key *k;
Ben Lindstromc58ab022002-02-26 18:15:09 +0000166 u_int len;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000167 u_char *blob;
Damien Millereba71ba2000-04-29 23:57:08 +1000168 struct stat st;
169
170 if (!have_identity)
171 ask_filename(pw, "Enter file in which the key is");
172 if (stat(identity_file, &st) < 0) {
173 perror(identity_file);
174 exit(1);
175 }
Ben Lindstrom46c264f2001-04-24 16:56:58 +0000176 if ((k = key_load_public(identity_file, NULL)) == NULL) {
Ben Lindstromd78ae762001-06-05 20:35:09 +0000177 if ((k = load_identity(identity_file)) == NULL) {
Ben Lindstrom46c264f2001-04-24 16:56:58 +0000178 fprintf(stderr, "load failed\n");
179 exit(1);
180 }
Damien Millereba71ba2000-04-29 23:57:08 +1000181 }
Damien Millerdb274722003-05-14 13:45:22 +1000182 if (k->type == KEY_RSA1) {
183 fprintf(stderr, "version 1 keys are not supported\n");
184 exit(1);
185 }
Ben Lindstrom99a30f12001-09-18 05:49:14 +0000186 if (key_to_blob(k, &blob, &len) <= 0) {
187 fprintf(stderr, "key_to_blob failed\n");
188 exit(1);
189 }
Damien Miller874d77b2000-10-14 16:23:11 +1100190 fprintf(stdout, "%s\n", SSH_COM_PUBLIC_BEGIN);
Damien Millereba71ba2000-04-29 23:57:08 +1000191 fprintf(stdout,
Ben Lindstrom58d3b722002-06-23 21:28:13 +0000192 "Comment: \"%u-bit %s, converted from OpenSSH by %s@%s\"\n",
Ben Lindstrom46c264f2001-04-24 16:56:58 +0000193 key_size(k), key_type(k),
Damien Millereba71ba2000-04-29 23:57:08 +1000194 pw->pw_name, hostname);
195 dump_base64(stdout, blob, len);
Damien Miller874d77b2000-10-14 16:23:11 +1100196 fprintf(stdout, "%s\n", SSH_COM_PUBLIC_END);
Ben Lindstrom46c264f2001-04-24 16:56:58 +0000197 key_free(k);
Damien Millereba71ba2000-04-29 23:57:08 +1000198 xfree(blob);
199 exit(0);
200}
201
Ben Lindstrombba81212001-06-25 05:01:22 +0000202static void
Damien Miller874d77b2000-10-14 16:23:11 +1100203buffer_get_bignum_bits(Buffer *b, BIGNUM *value)
204{
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000205 u_int bignum_bits = buffer_get_int(b);
206 u_int bytes = (bignum_bits + 7) / 8;
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000207
Damien Miller874d77b2000-10-14 16:23:11 +1100208 if (buffer_len(b) < bytes)
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000209 fatal("buffer_get_bignum_bits: input buffer too small: "
210 "need %d have %d", bytes, buffer_len(b));
Damien Miller708d21c2002-01-22 23:18:15 +1100211 BN_bin2bn(buffer_ptr(b), bytes, value);
Damien Miller874d77b2000-10-14 16:23:11 +1100212 buffer_consume(b, bytes);
213}
214
Ben Lindstrombba81212001-06-25 05:01:22 +0000215static Key *
Ben Lindstrom90fd8142002-02-26 18:09:42 +0000216do_convert_private_ssh2_from_blob(u_char *blob, u_int blen)
Damien Miller874d77b2000-10-14 16:23:11 +1100217{
218 Buffer b;
Damien Miller874d77b2000-10-14 16:23:11 +1100219 Key *key = NULL;
Damien Miller874d77b2000-10-14 16:23:11 +1100220 char *type, *cipher;
Ben Lindstrom511d69e2001-07-04 05:05:27 +0000221 u_char *sig, data[] = "abcde12345";
Ben Lindstrome586c4c2001-06-25 05:04:58 +0000222 int magic, rlen, ktype, i1, i2, i3, i4;
223 u_int slen;
224 u_long e;
Damien Miller874d77b2000-10-14 16:23:11 +1100225
226 buffer_init(&b);
227 buffer_append(&b, blob, blen);
228
229 magic = buffer_get_int(&b);
230 if (magic != SSH_COM_PRIVATE_KEY_MAGIC) {
231 error("bad magic 0x%x != 0x%x", magic, SSH_COM_PRIVATE_KEY_MAGIC);
232 buffer_free(&b);
233 return NULL;
234 }
Ben Lindstrom34f91882001-06-25 04:47:54 +0000235 i1 = buffer_get_int(&b);
Damien Miller874d77b2000-10-14 16:23:11 +1100236 type = buffer_get_string(&b, NULL);
237 cipher = buffer_get_string(&b, NULL);
Ben Lindstrom34f91882001-06-25 04:47:54 +0000238 i2 = buffer_get_int(&b);
239 i3 = buffer_get_int(&b);
240 i4 = buffer_get_int(&b);
241 debug("ignore (%d %d %d %d)", i1,i2,i3,i4);
Damien Miller874d77b2000-10-14 16:23:11 +1100242 if (strcmp(cipher, "none") != 0) {
243 error("unsupported cipher %s", cipher);
244 xfree(cipher);
245 buffer_free(&b);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000246 xfree(type);
Damien Miller874d77b2000-10-14 16:23:11 +1100247 return NULL;
248 }
249 xfree(cipher);
250
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000251 if (strstr(type, "dsa")) {
252 ktype = KEY_DSA;
253 } else if (strstr(type, "rsa")) {
254 ktype = KEY_RSA;
255 } else {
Darren Tucker7cfeecf2005-01-20 10:56:31 +1100256 buffer_free(&b);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000257 xfree(type);
Damien Miller874d77b2000-10-14 16:23:11 +1100258 return NULL;
259 }
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000260 key = key_new_private(ktype);
261 xfree(type);
262
263 switch (key->type) {
264 case KEY_DSA:
265 buffer_get_bignum_bits(&b, key->dsa->p);
266 buffer_get_bignum_bits(&b, key->dsa->g);
267 buffer_get_bignum_bits(&b, key->dsa->q);
268 buffer_get_bignum_bits(&b, key->dsa->pub_key);
269 buffer_get_bignum_bits(&b, key->dsa->priv_key);
270 break;
271 case KEY_RSA:
Ben Lindstrom34f91882001-06-25 04:47:54 +0000272 e = buffer_get_char(&b);
273 debug("e %lx", e);
274 if (e < 30) {
275 e <<= 8;
276 e += buffer_get_char(&b);
277 debug("e %lx", e);
278 e <<= 8;
279 e += buffer_get_char(&b);
280 debug("e %lx", e);
281 }
282 if (!BN_set_word(key->rsa->e, e)) {
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000283 buffer_free(&b);
284 key_free(key);
285 return NULL;
286 }
287 buffer_get_bignum_bits(&b, key->rsa->d);
288 buffer_get_bignum_bits(&b, key->rsa->n);
289 buffer_get_bignum_bits(&b, key->rsa->iqmp);
290 buffer_get_bignum_bits(&b, key->rsa->q);
291 buffer_get_bignum_bits(&b, key->rsa->p);
Ben Lindstromf7297dd2001-07-04 05:02:23 +0000292 rsa_generate_additional_parameters(key->rsa);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000293 break;
294 }
Damien Miller874d77b2000-10-14 16:23:11 +1100295 rlen = buffer_len(&b);
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +0000296 if (rlen != 0)
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000297 error("do_convert_private_ssh2_from_blob: "
298 "remaining bytes in key blob %d", rlen);
Damien Miller874d77b2000-10-14 16:23:11 +1100299 buffer_free(&b);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000300
Ben Lindstrome586c4c2001-06-25 05:04:58 +0000301 /* try the key */
302 key_sign(key, &sig, &slen, data, sizeof(data));
303 key_verify(key, sig, slen, data, sizeof(data));
304 xfree(sig);
Damien Miller874d77b2000-10-14 16:23:11 +1100305 return key;
306}
307
Ben Lindstrombba81212001-06-25 05:01:22 +0000308static void
Damien Millereba71ba2000-04-29 23:57:08 +1000309do_convert_from_ssh2(struct passwd *pw)
310{
311 Key *k;
312 int blen;
Ben Lindstrom155b9812002-04-02 20:26:26 +0000313 u_int len;
Damien Millereba71ba2000-04-29 23:57:08 +1000314 char line[1024], *p;
Ben Lindstrom9e0ddd42001-09-18 05:41:19 +0000315 u_char blob[8096];
Damien Millereba71ba2000-04-29 23:57:08 +1000316 char encoded[8096];
317 struct stat st;
Damien Miller874d77b2000-10-14 16:23:11 +1100318 int escaped = 0, private = 0, ok;
Damien Millereba71ba2000-04-29 23:57:08 +1000319 FILE *fp;
320
321 if (!have_identity)
322 ask_filename(pw, "Enter file in which the key is");
323 if (stat(identity_file, &st) < 0) {
324 perror(identity_file);
325 exit(1);
326 }
327 fp = fopen(identity_file, "r");
328 if (fp == NULL) {
329 perror(identity_file);
330 exit(1);
331 }
332 encoded[0] = '\0';
333 while (fgets(line, sizeof(line), fp)) {
Damien Miller30c3d422000-05-09 11:02:59 +1000334 if (!(p = strchr(line, '\n'))) {
335 fprintf(stderr, "input line too long.\n");
336 exit(1);
337 }
338 if (p > line && p[-1] == '\\')
339 escaped++;
Damien Millereba71ba2000-04-29 23:57:08 +1000340 if (strncmp(line, "----", 4) == 0 ||
341 strstr(line, ": ") != NULL) {
Damien Miller874d77b2000-10-14 16:23:11 +1100342 if (strstr(line, SSH_COM_PRIVATE_BEGIN) != NULL)
343 private = 1;
Ben Lindstrome586c4c2001-06-25 05:04:58 +0000344 if (strstr(line, " END ") != NULL) {
345 break;
346 }
Ben Lindstrom30358602001-04-24 16:59:28 +0000347 /* fprintf(stderr, "ignore: %s", line); */
Damien Millereba71ba2000-04-29 23:57:08 +1000348 continue;
349 }
Damien Miller30c3d422000-05-09 11:02:59 +1000350 if (escaped) {
351 escaped--;
Ben Lindstrom30358602001-04-24 16:59:28 +0000352 /* fprintf(stderr, "escaped: %s", line); */
Damien Miller30c3d422000-05-09 11:02:59 +1000353 continue;
Damien Millereba71ba2000-04-29 23:57:08 +1000354 }
355 *p = '\0';
356 strlcat(encoded, line, sizeof(encoded));
357 }
Ben Lindstrom155b9812002-04-02 20:26:26 +0000358 len = strlen(encoded);
359 if (((len % 4) == 3) &&
360 (encoded[len-1] == '=') &&
361 (encoded[len-2] == '=') &&
362 (encoded[len-3] == '='))
363 encoded[len-3] = '\0';
Damien Miller4a8ed542002-01-22 23:33:31 +1100364 blen = uudecode(encoded, blob, sizeof(blob));
Damien Millereba71ba2000-04-29 23:57:08 +1000365 if (blen < 0) {
366 fprintf(stderr, "uudecode failed.\n");
367 exit(1);
368 }
Damien Miller874d77b2000-10-14 16:23:11 +1100369 k = private ?
370 do_convert_private_ssh2_from_blob(blob, blen) :
Damien Miller0bc1bd82000-11-13 22:57:25 +1100371 key_from_blob(blob, blen);
Damien Miller874d77b2000-10-14 16:23:11 +1100372 if (k == NULL) {
373 fprintf(stderr, "decode blob failed.\n");
374 exit(1);
375 }
376 ok = private ?
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000377 (k->type == KEY_DSA ?
378 PEM_write_DSAPrivateKey(stdout, k->dsa, NULL, NULL, 0, NULL, NULL) :
379 PEM_write_RSAPrivateKey(stdout, k->rsa, NULL, NULL, 0, NULL, NULL)) :
Damien Miller874d77b2000-10-14 16:23:11 +1100380 key_write(k, stdout);
381 if (!ok) {
382 fprintf(stderr, "key write failed");
383 exit(1);
384 }
Damien Millereba71ba2000-04-29 23:57:08 +1000385 key_free(k);
Damien Millera1db12b2002-01-22 23:20:15 +1100386 if (!private)
387 fprintf(stdout, "\n");
Damien Millereba71ba2000-04-29 23:57:08 +1000388 fclose(fp);
389 exit(0);
390}
391
Ben Lindstrombba81212001-06-25 05:01:22 +0000392static void
Damien Millereba71ba2000-04-29 23:57:08 +1000393do_print_public(struct passwd *pw)
394{
Ben Lindstromd0fca422001-03-26 13:44:06 +0000395 Key *prv;
Damien Millereba71ba2000-04-29 23:57:08 +1000396 struct stat st;
397
398 if (!have_identity)
399 ask_filename(pw, "Enter file in which the key is");
400 if (stat(identity_file, &st) < 0) {
401 perror(identity_file);
402 exit(1);
403 }
Ben Lindstromd78ae762001-06-05 20:35:09 +0000404 prv = load_identity(identity_file);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000405 if (prv == NULL) {
Damien Millereba71ba2000-04-29 23:57:08 +1000406 fprintf(stderr, "load failed\n");
407 exit(1);
408 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000409 if (!key_write(prv, stdout))
Damien Millereba71ba2000-04-29 23:57:08 +1000410 fprintf(stderr, "key_write failed");
Ben Lindstromd0fca422001-03-26 13:44:06 +0000411 key_free(prv);
Damien Millereba71ba2000-04-29 23:57:08 +1000412 fprintf(stdout, "\n");
413 exit(0);
414}
415
Ben Lindstrom6818bfb2001-08-06 21:40:04 +0000416#ifdef SMARTCARD
Ben Lindstromcd392282001-07-04 03:44:03 +0000417static void
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000418do_upload(struct passwd *pw, const char *sc_reader_id)
Ben Lindstromcd392282001-07-04 03:44:03 +0000419{
Ben Lindstromcd392282001-07-04 03:44:03 +0000420 Key *prv = NULL;
421 struct stat st;
Ben Lindstrom70e3ad82002-03-22 03:33:43 +0000422 int ret;
Ben Lindstromcd392282001-07-04 03:44:03 +0000423
424 if (!have_identity)
425 ask_filename(pw, "Enter file in which the key is");
426 if (stat(identity_file, &st) < 0) {
427 perror(identity_file);
Ben Lindstrom70e3ad82002-03-22 03:33:43 +0000428 exit(1);
Ben Lindstromcd392282001-07-04 03:44:03 +0000429 }
430 prv = load_identity(identity_file);
431 if (prv == NULL) {
432 error("load failed");
Ben Lindstrom70e3ad82002-03-22 03:33:43 +0000433 exit(1);
Ben Lindstromcd392282001-07-04 03:44:03 +0000434 }
Ben Lindstrom70e3ad82002-03-22 03:33:43 +0000435 ret = sc_put_key(prv, sc_reader_id);
436 key_free(prv);
437 if (ret < 0)
438 exit(1);
Damien Miller996acd22003-04-09 20:59:48 +1000439 logit("loading key done");
Ben Lindstrom70e3ad82002-03-22 03:33:43 +0000440 exit(0);
Ben Lindstromcd392282001-07-04 03:44:03 +0000441}
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000442
443static void
444do_download(struct passwd *pw, const char *sc_reader_id)
445{
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000446 Key **keys = NULL;
447 int i;
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000448
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000449 keys = sc_get_keys(sc_reader_id, NULL);
450 if (keys == NULL)
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000451 fatal("cannot read public key from smartcard");
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000452 for (i = 0; keys[i]; i++) {
453 key_write(keys[i], stdout);
454 key_free(keys[i]);
455 fprintf(stdout, "\n");
456 }
457 xfree(keys);
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000458 exit(0);
459}
Ben Lindstromffce1472001-08-06 21:57:31 +0000460#endif /* SMARTCARD */
Ben Lindstromcd392282001-07-04 03:44:03 +0000461
Ben Lindstrombba81212001-06-25 05:01:22 +0000462static void
Damien Miller10f6f6b1999-11-17 17:29:08 +1100463do_fingerprint(struct passwd *pw)
464{
Damien Miller98c7ad62000-03-09 21:27:49 +1100465 FILE *f;
Damien Millereba71ba2000-04-29 23:57:08 +1000466 Key *public;
Ben Lindstrom8fd372b2001-03-12 03:02:17 +0000467 char *comment = NULL, *cp, *ep, line[16*1024], *fp;
Ben Lindstrom65366a82001-12-06 16:32:47 +0000468 int i, skip = 0, num = 1, invalid = 1;
469 enum fp_rep rep;
470 enum fp_type fptype;
Damien Miller95def091999-11-25 00:26:21 +1100471 struct stat st;
Damien Miller10f6f6b1999-11-17 17:29:08 +1100472
Ben Lindstromd0fca422001-03-26 13:44:06 +0000473 fptype = print_bubblebabble ? SSH_FP_SHA1 : SSH_FP_MD5;
474 rep = print_bubblebabble ? SSH_FP_BUBBLEBABBLE : SSH_FP_HEX;
Ben Lindstrom8fd372b2001-03-12 03:02:17 +0000475
Damien Miller95def091999-11-25 00:26:21 +1100476 if (!have_identity)
477 ask_filename(pw, "Enter file in which the key is");
478 if (stat(identity_file, &st) < 0) {
479 perror(identity_file);
480 exit(1);
481 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000482 public = key_load_public(identity_file, &comment);
483 if (public != NULL) {
484 fp = key_fingerprint(public, fptype, rep);
Ben Lindstrom58d3b722002-06-23 21:28:13 +0000485 printf("%u %s %s\n", key_size(public), fp, comment);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100486 key_free(public);
487 xfree(comment);
Ben Lindstrom8fd372b2001-03-12 03:02:17 +0000488 xfree(fp);
Damien Miller98c7ad62000-03-09 21:27:49 +1100489 exit(0);
490 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000491 if (comment)
492 xfree(comment);
Damien Miller98c7ad62000-03-09 21:27:49 +1100493
494 f = fopen(identity_file, "r");
495 if (f != NULL) {
Damien Miller98c7ad62000-03-09 21:27:49 +1100496 while (fgets(line, sizeof(line), f)) {
497 i = strlen(line) - 1;
498 if (line[i] != '\n') {
499 error("line %d too long: %.40s...", num, line);
500 skip = 1;
501 continue;
Damien Miller95def091999-11-25 00:26:21 +1100502 }
Damien Miller98c7ad62000-03-09 21:27:49 +1100503 num++;
504 if (skip) {
505 skip = 0;
506 continue;
507 }
508 line[i] = '\0';
509
510 /* Skip leading whitespace, empty and comment lines. */
511 for (cp = line; *cp == ' ' || *cp == '\t'; cp++)
512 ;
513 if (!*cp || *cp == '\n' || *cp == '#')
514 continue ;
515 i = strtol(cp, &ep, 10);
516 if (i == 0 || ep == NULL || (*ep != ' ' && *ep != '\t')) {
517 int quoted = 0;
518 comment = cp;
Ben Lindstrom58d3b722002-06-23 21:28:13 +0000519 for (; *cp && (quoted || (*cp != ' ' &&
520 *cp != '\t')); cp++) {
Damien Miller98c7ad62000-03-09 21:27:49 +1100521 if (*cp == '\\' && cp[1] == '"')
522 cp++; /* Skip both */
523 else if (*cp == '"')
524 quoted = !quoted;
525 }
526 if (!*cp)
527 continue;
528 *cp++ = '\0';
529 }
530 ep = cp;
Ben Lindstrom2941f112000-12-29 16:50:13 +0000531 public = key_new(KEY_RSA1);
532 if (key_read(public, &cp) != 1) {
533 cp = ep;
534 key_free(public);
535 public = key_new(KEY_UNSPEC);
536 if (key_read(public, &cp) != 1) {
537 key_free(public);
538 continue;
539 }
Damien Miller98c7ad62000-03-09 21:27:49 +1100540 }
Ben Lindstrom2941f112000-12-29 16:50:13 +0000541 comment = *cp ? cp : comment;
Ben Lindstromd0fca422001-03-26 13:44:06 +0000542 fp = key_fingerprint(public, fptype, rep);
Ben Lindstrom58d3b722002-06-23 21:28:13 +0000543 printf("%u %s %s\n", key_size(public), fp,
Ben Lindstrom2941f112000-12-29 16:50:13 +0000544 comment ? comment : "no comment");
Ben Lindstrom8fd372b2001-03-12 03:02:17 +0000545 xfree(fp);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000546 key_free(public);
Ben Lindstrom2941f112000-12-29 16:50:13 +0000547 invalid = 0;
Damien Miller95def091999-11-25 00:26:21 +1100548 }
Damien Miller98c7ad62000-03-09 21:27:49 +1100549 fclose(f);
Damien Miller95def091999-11-25 00:26:21 +1100550 }
Damien Miller98c7ad62000-03-09 21:27:49 +1100551 if (invalid) {
Damien Millereb5fec62001-11-12 10:52:44 +1100552 printf("%s is not a public key file.\n", identity_file);
Damien Miller98c7ad62000-03-09 21:27:49 +1100553 exit(1);
554 }
Damien Miller95def091999-11-25 00:26:21 +1100555 exit(0);
Damien Miller10f6f6b1999-11-17 17:29:08 +1100556}
557
Damien Miller4b42d7f2005-03-01 21:48:35 +1100558static void
559print_host(FILE *f, char *name, Key *public, int hash)
560{
561 if (hash && (name = host_hash(name, NULL, 0)) == NULL)
562 fatal("hash_host failed");
563 fprintf(f, "%s ", name);
564 if (!key_write(public, f))
565 fatal("key_write failed");
566 fprintf(f, "\n");
567}
568
569static void
570do_known_hosts(struct passwd *pw, const char *name)
571{
572 FILE *in, *out = stdout;
573 Key *public;
574 char *cp, *cp2, *kp, *kp2;
575 char line[16*1024], tmp[MAXPATHLEN], old[MAXPATHLEN];
576 int c, i, skip = 0, inplace = 0, num = 0, invalid = 0, has_unhashed = 0;
577
578 if (!have_identity) {
579 cp = tilde_expand_filename(_PATH_SSH_USER_HOSTFILE, pw->pw_uid);
580 if (strlcpy(identity_file, cp, sizeof(identity_file)) >=
581 sizeof(identity_file))
582 fatal("Specified known hosts path too long");
583 xfree(cp);
584 have_identity = 1;
585 }
586 if ((in = fopen(identity_file, "r")) == NULL)
587 fatal("fopen: %s", strerror(errno));
588
589 /*
590 * Find hosts goes to stdout, hash and deletions happen in-place
591 * A corner case is ssh-keygen -HF foo, which should go to stdout
592 */
593 if (!find_host && (hash_hosts || delete_host)) {
594 if (strlcpy(tmp, identity_file, sizeof(tmp)) >= sizeof(tmp) ||
595 strlcat(tmp, ".XXXXXXXXXX", sizeof(tmp)) >= sizeof(tmp) ||
596 strlcpy(old, identity_file, sizeof(old)) >= sizeof(old) ||
597 strlcat(old, ".old", sizeof(old)) >= sizeof(old))
598 fatal("known_hosts path too long");
599 umask(077);
600 if ((c = mkstemp(tmp)) == -1)
601 fatal("mkstemp: %s", strerror(errno));
602 if ((out = fdopen(c, "w")) == NULL) {
603 c = errno;
604 unlink(tmp);
605 fatal("fdopen: %s", strerror(c));
606 }
607 inplace = 1;
608 }
609
610 while (fgets(line, sizeof(line), in)) {
611 num++;
612 i = strlen(line) - 1;
613 if (line[i] != '\n') {
614 error("line %d too long: %.40s...", num, line);
615 skip = 1;
616 invalid = 1;
617 continue;
618 }
619 if (skip) {
620 skip = 0;
621 continue;
622 }
623 line[i] = '\0';
624
625 /* Skip leading whitespace, empty and comment lines. */
626 for (cp = line; *cp == ' ' || *cp == '\t'; cp++)
627 ;
628 if (!*cp || *cp == '\n' || *cp == '#') {
629 if (inplace)
630 fprintf(out, "%s\n", cp);
631 continue;
632 }
633 /* Find the end of the host name portion. */
634 for (kp = cp; *kp && *kp != ' ' && *kp != '\t'; kp++)
635 ;
636 if (*kp == '\0' || *(kp + 1) == '\0') {
637 error("line %d missing key: %.40s...",
638 num, line);
639 invalid = 1;
640 continue;
641 }
642 *kp++ = '\0';
643 kp2 = kp;
644
645 public = key_new(KEY_RSA1);
646 if (key_read(public, &kp) != 1) {
647 kp = kp2;
648 key_free(public);
649 public = key_new(KEY_UNSPEC);
650 if (key_read(public, &kp) != 1) {
651 error("line %d invalid key: %.40s...",
652 num, line);
653 key_free(public);
654 invalid = 1;
655 continue;
656 }
657 }
658
659 if (*cp == HASH_DELIM) {
660 if (find_host || delete_host) {
661 cp2 = host_hash(name, cp, strlen(cp));
662 if (cp2 == NULL) {
663 error("line %d: invalid hashed "
664 "name: %.64s...", num, line);
665 invalid = 1;
666 continue;
667 }
668 c = (strcmp(cp2, cp) == 0);
669 if (find_host && c) {
670 printf("# Host %s found: "
671 "line %d type %s\n", name,
672 num, key_type(public));
673 print_host(out, cp, public, 0);
674 }
675 if (delete_host && !c)
676 print_host(out, cp, public, 0);
677 } else if (hash_hosts)
678 print_host(out, cp, public, 0);
679 } else {
680 if (find_host || delete_host) {
681 c = (match_hostname(name, cp,
682 strlen(cp)) == 1);
683 if (find_host && c) {
684 printf("# Host %s found: "
685 "line %d type %s\n", name,
686 num, key_type(public));
687 print_host(out, cp, public, hash_hosts);
688 }
689 if (delete_host && !c)
690 print_host(out, cp, public, 0);
691 } else if (hash_hosts) {
Darren Tucker47eede72005-03-14 23:08:12 +1100692 for (cp2 = strsep(&cp, ",");
Damien Miller4b42d7f2005-03-01 21:48:35 +1100693 cp2 != NULL && *cp2 != '\0';
Damien Miller89eac802005-03-02 12:33:04 +1100694 cp2 = strsep(&cp, ",")) {
695 if (strcspn(cp2, "*?!") != strlen(cp2))
696 fprintf(stderr, "Warning: "
697 "ignoring host name with "
698 "metacharacters: %.64s\n",
699 cp2);
700 else
701 print_host(out, cp2, public, 1);
702 }
Damien Miller4b42d7f2005-03-01 21:48:35 +1100703 has_unhashed = 1;
704 }
705 }
706 key_free(public);
707 }
708 fclose(in);
709
710 if (invalid) {
711 fprintf(stderr, "%s is not a valid known_host file.\n",
712 identity_file);
713 if (inplace) {
714 fprintf(stderr, "Not replacing existing known_hosts "
Darren Tucker9f438a92005-03-14 23:09:18 +1100715 "file because of errors\n");
Damien Miller4b42d7f2005-03-01 21:48:35 +1100716 fclose(out);
717 unlink(tmp);
718 }
719 exit(1);
720 }
721
722 if (inplace) {
723 fclose(out);
724
725 /* Backup existing file */
726 if (unlink(old) == -1 && errno != ENOENT)
727 fatal("unlink %.100s: %s", old, strerror(errno));
728 if (link(identity_file, old) == -1)
729 fatal("link %.100s to %.100s: %s", identity_file, old,
730 strerror(errno));
731 /* Move new one into place */
732 if (rename(tmp, identity_file) == -1) {
733 error("rename\"%s\" to \"%s\": %s", tmp, identity_file,
734 strerror(errno));
735 unlink(tmp);
736 unlink(old);
737 exit(1);
738 }
739
740 fprintf(stderr, "%s updated.\n", identity_file);
741 fprintf(stderr, "Original contents retained as %s\n", old);
742 if (has_unhashed) {
743 fprintf(stderr, "WARNING: %s contains unhashed "
744 "entries\n", old);
745 fprintf(stderr, "Delete this file to ensure privacy "
Damien Miller0dc1bef2005-07-17 17:22:45 +1000746 "of hostnames\n");
Damien Miller4b42d7f2005-03-01 21:48:35 +1100747 }
748 }
749
750 exit(0);
751}
752
Damien Miller95def091999-11-25 00:26:21 +1100753/*
754 * Perform changing a passphrase. The argument is the passwd structure
755 * for the current user.
756 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000757static void
Damien Miller10f6f6b1999-11-17 17:29:08 +1100758do_change_passphrase(struct passwd *pw)
759{
Damien Miller95def091999-11-25 00:26:21 +1100760 char *comment;
761 char *old_passphrase, *passphrase1, *passphrase2;
762 struct stat st;
Damien Millereba71ba2000-04-29 23:57:08 +1000763 Key *private;
Damien Miller10f6f6b1999-11-17 17:29:08 +1100764
Damien Miller95def091999-11-25 00:26:21 +1100765 if (!have_identity)
766 ask_filename(pw, "Enter file in which the key is");
Damien Miller95def091999-11-25 00:26:21 +1100767 if (stat(identity_file, &st) < 0) {
768 perror(identity_file);
769 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000770 }
Damien Miller95def091999-11-25 00:26:21 +1100771 /* Try to load the file with empty passphrase. */
Ben Lindstromd0fca422001-03-26 13:44:06 +0000772 private = key_load_private(identity_file, "", &comment);
773 if (private == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100774 if (identity_passphrase)
775 old_passphrase = xstrdup(identity_passphrase);
776 else
Ben Lindstrom949974b2001-06-25 05:20:31 +0000777 old_passphrase =
778 read_passphrase("Enter old passphrase: ",
779 RP_ALLOW_STDIN);
780 private = key_load_private(identity_file, old_passphrase,
781 &comment);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000782 memset(old_passphrase, 0, strlen(old_passphrase));
783 xfree(old_passphrase);
784 if (private == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100785 printf("Bad passphrase.\n");
786 exit(1);
787 }
Damien Miller95def091999-11-25 00:26:21 +1100788 }
789 printf("Key has comment '%s'\n", comment);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000790
Damien Miller95def091999-11-25 00:26:21 +1100791 /* Ask the new passphrase (twice). */
792 if (identity_new_passphrase) {
793 passphrase1 = xstrdup(identity_new_passphrase);
794 passphrase2 = NULL;
795 } else {
796 passphrase1 =
Ben Lindstrom949974b2001-06-25 05:20:31 +0000797 read_passphrase("Enter new passphrase (empty for no "
798 "passphrase): ", RP_ALLOW_STDIN);
799 passphrase2 = read_passphrase("Enter same passphrase again: ",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100800 RP_ALLOW_STDIN);
Damien Miller95def091999-11-25 00:26:21 +1100801
802 /* Verify that they are the same. */
803 if (strcmp(passphrase1, passphrase2) != 0) {
804 memset(passphrase1, 0, strlen(passphrase1));
805 memset(passphrase2, 0, strlen(passphrase2));
806 xfree(passphrase1);
807 xfree(passphrase2);
808 printf("Pass phrases do not match. Try again.\n");
809 exit(1);
810 }
811 /* Destroy the other copy. */
812 memset(passphrase2, 0, strlen(passphrase2));
813 xfree(passphrase2);
814 }
815
816 /* Save the file using the new passphrase. */
Ben Lindstromd0fca422001-03-26 13:44:06 +0000817 if (!key_save_private(private, identity_file, passphrase1, comment)) {
Ben Lindstrom15f33862001-04-16 02:00:02 +0000818 printf("Saving the key failed: %s.\n", identity_file);
Damien Miller95def091999-11-25 00:26:21 +1100819 memset(passphrase1, 0, strlen(passphrase1));
820 xfree(passphrase1);
Damien Millereba71ba2000-04-29 23:57:08 +1000821 key_free(private);
Damien Miller95def091999-11-25 00:26:21 +1100822 xfree(comment);
823 exit(1);
824 }
825 /* Destroy the passphrase and the copy of the key in memory. */
826 memset(passphrase1, 0, strlen(passphrase1));
827 xfree(passphrase1);
Damien Millereba71ba2000-04-29 23:57:08 +1000828 key_free(private); /* Destroys contents */
Damien Miller95def091999-11-25 00:26:21 +1100829 xfree(comment);
830
831 printf("Your identification has been saved with the new passphrase.\n");
832 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000833}
834
Damien Miller37876e92003-05-15 10:19:46 +1000835/*
836 * Print the SSHFP RR.
837 */
838static void
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000839do_print_resource_record(struct passwd *pw, char *hname)
Damien Miller37876e92003-05-15 10:19:46 +1000840{
841 Key *public;
842 char *comment = NULL;
843 struct stat st;
844
845 if (!have_identity)
846 ask_filename(pw, "Enter file in which the key is");
847 if (stat(identity_file, &st) < 0) {
848 perror(identity_file);
849 exit(1);
850 }
851 public = key_load_public(identity_file, &comment);
852 if (public != NULL) {
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000853 export_dns_rr(hname, public, stdout, print_generic);
Damien Miller37876e92003-05-15 10:19:46 +1000854 key_free(public);
855 xfree(comment);
856 exit(0);
857 }
858 if (comment)
859 xfree(comment);
860
861 printf("failed to read v2 public key from %s.\n", identity_file);
862 exit(1);
863}
Damien Miller37876e92003-05-15 10:19:46 +1000864
Damien Miller95def091999-11-25 00:26:21 +1100865/*
866 * Change the comment of a private key file.
867 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000868static void
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000869do_change_comment(struct passwd *pw)
870{
Ben Lindstrom5fc62702001-03-09 18:19:24 +0000871 char new_comment[1024], *comment, *passphrase;
Ben Lindstromd0fca422001-03-26 13:44:06 +0000872 Key *private;
873 Key *public;
Damien Miller95def091999-11-25 00:26:21 +1100874 struct stat st;
875 FILE *f;
Ben Lindstrom5fc62702001-03-09 18:19:24 +0000876 int fd;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000877
Damien Miller95def091999-11-25 00:26:21 +1100878 if (!have_identity)
879 ask_filename(pw, "Enter file in which the key is");
Damien Miller95def091999-11-25 00:26:21 +1100880 if (stat(identity_file, &st) < 0) {
881 perror(identity_file);
882 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000883 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000884 private = key_load_private(identity_file, "", &comment);
885 if (private == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100886 if (identity_passphrase)
887 passphrase = xstrdup(identity_passphrase);
888 else if (identity_new_passphrase)
889 passphrase = xstrdup(identity_new_passphrase);
890 else
Ben Lindstrom949974b2001-06-25 05:20:31 +0000891 passphrase = read_passphrase("Enter passphrase: ",
892 RP_ALLOW_STDIN);
Damien Miller95def091999-11-25 00:26:21 +1100893 /* Try to load using the passphrase. */
Ben Lindstromd0fca422001-03-26 13:44:06 +0000894 private = key_load_private(identity_file, passphrase, &comment);
895 if (private == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100896 memset(passphrase, 0, strlen(passphrase));
897 xfree(passphrase);
898 printf("Bad passphrase.\n");
899 exit(1);
900 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000901 } else {
902 passphrase = xstrdup("");
Damien Miller95def091999-11-25 00:26:21 +1100903 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000904 if (private->type != KEY_RSA1) {
905 fprintf(stderr, "Comments are only supported for RSA1 keys.\n");
906 key_free(private);
907 exit(1);
Damien Miller9f0f5c62001-12-21 14:45:46 +1100908 }
Damien Miller95def091999-11-25 00:26:21 +1100909 printf("Key now has comment '%s'\n", comment);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000910
Damien Miller95def091999-11-25 00:26:21 +1100911 if (identity_comment) {
912 strlcpy(new_comment, identity_comment, sizeof(new_comment));
913 } else {
914 printf("Enter new comment: ");
915 fflush(stdout);
916 if (!fgets(new_comment, sizeof(new_comment), stdin)) {
917 memset(passphrase, 0, strlen(passphrase));
Damien Millereba71ba2000-04-29 23:57:08 +1000918 key_free(private);
Damien Miller95def091999-11-25 00:26:21 +1100919 exit(1);
920 }
Damien Miller95def091999-11-25 00:26:21 +1100921 if (strchr(new_comment, '\n'))
922 *strchr(new_comment, '\n') = 0;
923 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000924
Damien Miller95def091999-11-25 00:26:21 +1100925 /* Save the file using the new passphrase. */
Ben Lindstromd0fca422001-03-26 13:44:06 +0000926 if (!key_save_private(private, identity_file, passphrase, new_comment)) {
Ben Lindstrom15f33862001-04-16 02:00:02 +0000927 printf("Saving the key failed: %s.\n", identity_file);
Damien Miller95def091999-11-25 00:26:21 +1100928 memset(passphrase, 0, strlen(passphrase));
929 xfree(passphrase);
Damien Millereba71ba2000-04-29 23:57:08 +1000930 key_free(private);
Damien Miller95def091999-11-25 00:26:21 +1100931 xfree(comment);
932 exit(1);
933 }
Damien Miller95def091999-11-25 00:26:21 +1100934 memset(passphrase, 0, strlen(passphrase));
935 xfree(passphrase);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000936 public = key_from_private(private);
Damien Millereba71ba2000-04-29 23:57:08 +1000937 key_free(private);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000938
Damien Miller95def091999-11-25 00:26:21 +1100939 strlcat(identity_file, ".pub", sizeof(identity_file));
Ben Lindstrom5fc62702001-03-09 18:19:24 +0000940 fd = open(identity_file, O_WRONLY | O_CREAT | O_TRUNC, 0644);
941 if (fd == -1) {
Damien Miller95def091999-11-25 00:26:21 +1100942 printf("Could not save your public key in %s\n", identity_file);
943 exit(1);
944 }
Ben Lindstrom5fc62702001-03-09 18:19:24 +0000945 f = fdopen(fd, "w");
946 if (f == NULL) {
947 printf("fdopen %s failed", identity_file);
948 exit(1);
949 }
Damien Millereba71ba2000-04-29 23:57:08 +1000950 if (!key_write(public, f))
951 fprintf(stderr, "write key failed");
952 key_free(public);
953 fprintf(f, " %s\n", new_comment);
Damien Miller95def091999-11-25 00:26:21 +1100954 fclose(f);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000955
Damien Miller95def091999-11-25 00:26:21 +1100956 xfree(comment);
957
958 printf("The comment in your key file has been changed.\n");
959 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000960}
961
Ben Lindstrombba81212001-06-25 05:01:22 +0000962static void
Damien Miller431f66b1999-11-21 18:31:57 +1100963usage(void)
964{
Ben Lindstrom97be31e2001-08-06 21:49:06 +0000965 fprintf(stderr, "Usage: %s [options]\n", __progname);
966 fprintf(stderr, "Options:\n");
Damien Miller9278ffa2005-05-26 11:59:06 +1000967 fprintf(stderr, " -a trials Number of trials for screening DH-GEX moduli.\n");
Ben Lindstrom97be31e2001-08-06 21:49:06 +0000968 fprintf(stderr, " -B Show bubblebabble digest of key file.\n");
Damien Miller9278ffa2005-05-26 11:59:06 +1000969 fprintf(stderr, " -b bits Number of bits in the key to create.\n");
Ben Lindstrom97be31e2001-08-06 21:49:06 +0000970 fprintf(stderr, " -C comment Provide new comment.\n");
Damien Miller9278ffa2005-05-26 11:59:06 +1000971 fprintf(stderr, " -c Change comment in private and public key files.\n");
Ben Lindstrom97be31e2001-08-06 21:49:06 +0000972#ifdef SMARTCARD
973 fprintf(stderr, " -D reader Download public key from smartcard.\n");
Damien Miller9278ffa2005-05-26 11:59:06 +1000974#endif /* SMARTCARD */
975 fprintf(stderr, " -e Convert OpenSSH to IETF SECSH key file.\n");
976 fprintf(stderr, " -F hostname Find hostname in known hosts file.\n");
977 fprintf(stderr, " -f filename Filename of the key file.\n");
978 fprintf(stderr, " -G file Generate candidates for DH-GEX moduli.\n");
979 fprintf(stderr, " -g Use generic DNS resource record format.\n");
980 fprintf(stderr, " -H Hash names in known_hosts file.\n");
981 fprintf(stderr, " -i Convert IETF SECSH to OpenSSH key file.\n");
982 fprintf(stderr, " -l Show fingerprint of key file.\n");
983 fprintf(stderr, " -M memory Amount of memory (MB) to use for generating DH-GEX moduli.\n");
984 fprintf(stderr, " -N phrase Provide new passphrase.\n");
985 fprintf(stderr, " -P phrase Provide old passphrase.\n");
986 fprintf(stderr, " -p Change passphrase of private key file.\n");
987 fprintf(stderr, " -q Quiet.\n");
988 fprintf(stderr, " -R hostname Remove host from known_hosts file.\n");
989 fprintf(stderr, " -r hostname Print DNS resource record.\n");
990 fprintf(stderr, " -S start Start point (hex) for generating DH-GEX moduli.\n");
991 fprintf(stderr, " -T file Screen candidates for DH-GEX moduli.\n");
992 fprintf(stderr, " -t type Specify type of key to create.\n");
993#ifdef SMARTCARD
Ben Lindstrom97be31e2001-08-06 21:49:06 +0000994 fprintf(stderr, " -U reader Upload private key to smartcard.\n");
995#endif /* SMARTCARD */
Damien Miller9278ffa2005-05-26 11:59:06 +1000996 fprintf(stderr, " -v Verbose.\n");
997 fprintf(stderr, " -W gen Generator to use for generating DH-GEX moduli.\n");
998 fprintf(stderr, " -y Read private key file and print public key.\n");
Darren Tucker019cefe2003-08-02 22:40:07 +1000999
Damien Miller95def091999-11-25 00:26:21 +11001000 exit(1);
Damien Miller431f66b1999-11-21 18:31:57 +11001001}
1002
Damien Miller95def091999-11-25 00:26:21 +11001003/*
1004 * Main program for key management.
1005 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001006int
1007main(int ac, char **av)
1008{
Damien Millera41c8b12002-01-22 23:05:08 +11001009 char dotsshdir[MAXPATHLEN], comment[1024], *passphrase1, *passphrase2;
Tim Rice2e0e38e2003-09-08 16:11:33 -07001010 char out_file[MAXPATHLEN], *reader_id = NULL;
Damien Miller4b42d7f2005-03-01 21:48:35 +11001011 char *rr_hostname = NULL;
Ben Lindstrom5fc62702001-03-09 18:19:24 +00001012 Key *private, *public;
Damien Miller95def091999-11-25 00:26:21 +11001013 struct passwd *pw;
Damien Miller95def091999-11-25 00:26:21 +11001014 struct stat st;
Damien Millerb089fb52005-05-26 12:16:18 +10001015 int opt, type, fd, download = 0;
Darren Tucker2db8ae62005-06-01 23:02:25 +10001016 u_int32_t memory = 0, generator_wanted = 0, trials = 100;
Darren Tucker019cefe2003-08-02 22:40:07 +10001017 int do_gen_candidates = 0, do_screen_candidates = 0;
Darren Tucker06930c72003-12-31 11:34:51 +11001018 int log_level = SYSLOG_LEVEL_INFO;
Darren Tucker019cefe2003-08-02 22:40:07 +10001019 BIGNUM *start = NULL;
Damien Miller95def091999-11-25 00:26:21 +11001020 FILE *f;
Damien Miller02e754f2005-05-26 12:19:39 +10001021 const char *errstr;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001022
Damien Miller95def091999-11-25 00:26:21 +11001023 extern int optind;
1024 extern char *optarg;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001025
Darren Tuckerce321d82005-10-03 18:11:24 +10001026 /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
1027 sanitise_stdfd();
1028
Damien Miller59d3d5b2003-08-22 09:34:41 +10001029 __progname = ssh_get_progname(av[0]);
Damien Millerf9b625c2000-07-09 22:42:32 +10001030
Damien Millerd3a18572000-06-07 19:55:44 +10001031 SSLeay_add_all_algorithms();
Darren Tucker019cefe2003-08-02 22:40:07 +10001032 log_init(av[0], SYSLOG_LEVEL_INFO, SYSLOG_FACILITY_USER, 1);
1033
Kevin Steves3a881912002-07-20 19:05:40 +00001034 init_rng();
1035 seed_rng();
Damien Millereba71ba2000-04-29 23:57:08 +10001036
Damien Miller5428f641999-11-25 11:54:57 +11001037 /* we need this for the home * directory. */
Damien Miller95def091999-11-25 00:26:21 +11001038 pw = getpwuid(getuid());
1039 if (!pw) {
1040 printf("You don't exist, go away!\n");
1041 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001042 }
Damien Millereba71ba2000-04-29 23:57:08 +10001043 if (gethostname(hostname, sizeof(hostname)) < 0) {
1044 perror("gethostname");
1045 exit(1);
1046 }
Damien Miller5428f641999-11-25 11:54:57 +11001047
Darren Tucker019cefe2003-08-02 22:40:07 +10001048 while ((opt = getopt(ac, av,
Damien Miller4b42d7f2005-03-01 21:48:35 +11001049 "degiqpclBHvxXyF:b:f:t:U:D:P:N:C:r:g:R:T:G:M:S:a:W:")) != -1) {
Damien Miller95def091999-11-25 00:26:21 +11001050 switch (opt) {
1051 case 'b':
Darren Tucker9f647332005-11-28 16:41:46 +11001052 bits = strtonum(optarg, 768, 32768, &errstr);
Damien Miller02e754f2005-05-26 12:19:39 +10001053 if (errstr)
1054 fatal("Bits has bad value %s (%s)",
1055 optarg, errstr);
Damien Miller95def091999-11-25 00:26:21 +11001056 break;
Damien Miller4b42d7f2005-03-01 21:48:35 +11001057 case 'F':
1058 find_host = 1;
1059 rr_hostname = optarg;
1060 break;
1061 case 'H':
1062 hash_hosts = 1;
1063 break;
1064 case 'R':
1065 delete_host = 1;
1066 rr_hostname = optarg;
1067 break;
Damien Miller95def091999-11-25 00:26:21 +11001068 case 'l':
1069 print_fingerprint = 1;
1070 break;
Ben Lindstrom8fd372b2001-03-12 03:02:17 +00001071 case 'B':
1072 print_bubblebabble = 1;
1073 break;
Damien Miller95def091999-11-25 00:26:21 +11001074 case 'p':
1075 change_passphrase = 1;
1076 break;
Damien Miller95def091999-11-25 00:26:21 +11001077 case 'c':
1078 change_comment = 1;
1079 break;
Damien Miller95def091999-11-25 00:26:21 +11001080 case 'f':
Damien Millerb089fb52005-05-26 12:16:18 +10001081 if (strlcpy(identity_file, optarg, sizeof(identity_file)) >=
1082 sizeof(identity_file))
1083 fatal("Identity filename too long");
Damien Miller95def091999-11-25 00:26:21 +11001084 have_identity = 1;
1085 break;
Damien Miller37876e92003-05-15 10:19:46 +10001086 case 'g':
1087 print_generic = 1;
1088 break;
Damien Miller95def091999-11-25 00:26:21 +11001089 case 'P':
1090 identity_passphrase = optarg;
1091 break;
Damien Miller95def091999-11-25 00:26:21 +11001092 case 'N':
1093 identity_new_passphrase = optarg;
1094 break;
Damien Miller95def091999-11-25 00:26:21 +11001095 case 'C':
1096 identity_comment = optarg;
1097 break;
Damien Miller95def091999-11-25 00:26:21 +11001098 case 'q':
1099 quiet = 1;
1100 break;
Ben Lindstrom5a707822001-04-22 17:15:46 +00001101 case 'e':
Damien Millereba71ba2000-04-29 23:57:08 +10001102 case 'x':
Ben Lindstrom5a707822001-04-22 17:15:46 +00001103 /* export key */
Damien Millereba71ba2000-04-29 23:57:08 +10001104 convert_to_ssh2 = 1;
1105 break;
Ben Lindstrom5a707822001-04-22 17:15:46 +00001106 case 'i':
Damien Millereba71ba2000-04-29 23:57:08 +10001107 case 'X':
Ben Lindstrom5a707822001-04-22 17:15:46 +00001108 /* import key */
Damien Millereba71ba2000-04-29 23:57:08 +10001109 convert_from_ssh2 = 1;
1110 break;
Damien Millereba71ba2000-04-29 23:57:08 +10001111 case 'y':
1112 print_public = 1;
1113 break;
Damien Millereba71ba2000-04-29 23:57:08 +10001114 case 'd':
Damien Miller0bc1bd82000-11-13 22:57:25 +11001115 key_type_name = "dsa";
Damien Millereba71ba2000-04-29 23:57:08 +10001116 break;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001117 case 't':
1118 key_type_name = optarg;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001119 break;
Ben Lindstrom8282d6a2001-08-06 21:44:05 +00001120 case 'D':
1121 download = 1;
Ben Lindstromf19578c2001-08-06 21:46:54 +00001122 case 'U':
Ben Lindstrom8282d6a2001-08-06 21:44:05 +00001123 reader_id = optarg;
Ben Lindstromcd392282001-07-04 03:44:03 +00001124 break;
Darren Tucker06930c72003-12-31 11:34:51 +11001125 case 'v':
1126 if (log_level == SYSLOG_LEVEL_INFO)
1127 log_level = SYSLOG_LEVEL_DEBUG1;
1128 else {
Darren Tuckerfc959702004-07-17 16:12:08 +10001129 if (log_level >= SYSLOG_LEVEL_DEBUG1 &&
Darren Tucker06930c72003-12-31 11:34:51 +11001130 log_level < SYSLOG_LEVEL_DEBUG3)
1131 log_level++;
1132 }
1133 break;
Damien Miller37876e92003-05-15 10:19:46 +10001134 case 'r':
Damien Miller4b42d7f2005-03-01 21:48:35 +11001135 rr_hostname = optarg;
Damien Miller37876e92003-05-15 10:19:46 +10001136 break;
Darren Tucker019cefe2003-08-02 22:40:07 +10001137 case 'W':
Damien Millerb089fb52005-05-26 12:16:18 +10001138 generator_wanted = strtonum(optarg, 1, UINT_MAX, &errstr);
1139 if (errstr)
1140 fatal("Desired generator has bad value: %s (%s)",
1141 optarg, errstr);
Darren Tucker019cefe2003-08-02 22:40:07 +10001142 break;
1143 case 'a':
Damien Millerb089fb52005-05-26 12:16:18 +10001144 trials = strtonum(optarg, 1, UINT_MAX, &errstr);
1145 if (errstr)
1146 fatal("Invalid number of trials: %s (%s)",
1147 optarg, errstr);
Darren Tucker019cefe2003-08-02 22:40:07 +10001148 break;
1149 case 'M':
Damien Millerb089fb52005-05-26 12:16:18 +10001150 memory = strtonum(optarg, 1, UINT_MAX, &errstr);
1151 if (errstr) {
1152 fatal("Memory limit is %s: %s", errstr, optarg);
1153 }
Darren Tucker019cefe2003-08-02 22:40:07 +10001154 break;
1155 case 'G':
1156 do_gen_candidates = 1;
Damien Millerb089fb52005-05-26 12:16:18 +10001157 if (strlcpy(out_file, optarg, sizeof(out_file)) >=
1158 sizeof(out_file))
1159 fatal("Output filename too long");
Darren Tucker019cefe2003-08-02 22:40:07 +10001160 break;
1161 case 'T':
1162 do_screen_candidates = 1;
Damien Millerb089fb52005-05-26 12:16:18 +10001163 if (strlcpy(out_file, optarg, sizeof(out_file)) >=
1164 sizeof(out_file))
1165 fatal("Output filename too long");
Darren Tucker019cefe2003-08-02 22:40:07 +10001166 break;
1167 case 'S':
1168 /* XXX - also compare length against bits */
1169 if (BN_hex2bn(&start, optarg) == 0)
1170 fatal("Invalid start point.");
1171 break;
Damien Miller95def091999-11-25 00:26:21 +11001172 case '?':
1173 default:
1174 usage();
1175 }
1176 }
Darren Tucker06930c72003-12-31 11:34:51 +11001177
1178 /* reinit */
1179 log_init(av[0], log_level, SYSLOG_FACILITY_USER, 1);
1180
Damien Miller95def091999-11-25 00:26:21 +11001181 if (optind < ac) {
1182 printf("Too many arguments.\n");
1183 usage();
1184 }
1185 if (change_passphrase && change_comment) {
1186 printf("Can only have one of -p and -c.\n");
1187 usage();
1188 }
Damien Miller4b42d7f2005-03-01 21:48:35 +11001189 if (delete_host || hash_hosts || find_host)
1190 do_known_hosts(pw, rr_hostname);
Ben Lindstrom8fd372b2001-03-12 03:02:17 +00001191 if (print_fingerprint || print_bubblebabble)
Damien Miller95def091999-11-25 00:26:21 +11001192 do_fingerprint(pw);
Damien Miller95def091999-11-25 00:26:21 +11001193 if (change_passphrase)
1194 do_change_passphrase(pw);
Damien Miller4a10d2e2002-03-11 22:53:29 +11001195 if (change_comment)
1196 do_change_comment(pw);
Kevin Steves3a881912002-07-20 19:05:40 +00001197 if (convert_to_ssh2)
1198 do_convert_to_ssh2(pw);
1199 if (convert_from_ssh2)
1200 do_convert_from_ssh2(pw);
Damien Millereba71ba2000-04-29 23:57:08 +10001201 if (print_public)
1202 do_print_public(pw);
Damien Miller4b42d7f2005-03-01 21:48:35 +11001203 if (rr_hostname != NULL) {
1204 do_print_resource_record(pw, rr_hostname);
Damien Miller37876e92003-05-15 10:19:46 +10001205 }
Ben Lindstrom8282d6a2001-08-06 21:44:05 +00001206 if (reader_id != NULL) {
Ben Lindstrom6818bfb2001-08-06 21:40:04 +00001207#ifdef SMARTCARD
Ben Lindstrom8282d6a2001-08-06 21:44:05 +00001208 if (download)
1209 do_download(pw, reader_id);
1210 else
1211 do_upload(pw, reader_id);
Ben Lindstromffce1472001-08-06 21:57:31 +00001212#else /* SMARTCARD */
Ben Lindstrom6818bfb2001-08-06 21:40:04 +00001213 fatal("no support for smartcards.");
Ben Lindstromffce1472001-08-06 21:57:31 +00001214#endif /* SMARTCARD */
Ben Lindstrom8282d6a2001-08-06 21:44:05 +00001215 }
Damien Miller95def091999-11-25 00:26:21 +11001216
Darren Tucker019cefe2003-08-02 22:40:07 +10001217 if (do_gen_candidates) {
1218 FILE *out = fopen(out_file, "w");
Damien Miller787b2ec2003-11-21 23:56:47 +11001219
Darren Tucker019cefe2003-08-02 22:40:07 +10001220 if (out == NULL) {
1221 error("Couldn't open modulus candidate file \"%s\": %s",
1222 out_file, strerror(errno));
1223 return (1);
1224 }
Damien Miller3f54a9f2005-11-05 14:52:18 +11001225 if (bits == 0)
1226 bits = DEFAULT_BITS;
Darren Tucker019cefe2003-08-02 22:40:07 +10001227 if (gen_candidates(out, memory, bits, start) != 0)
Damien Miller15d72a02005-11-05 15:07:33 +11001228 fatal("modulus candidate generation failed");
Darren Tucker019cefe2003-08-02 22:40:07 +10001229
1230 return (0);
1231 }
1232
1233 if (do_screen_candidates) {
1234 FILE *in;
1235 FILE *out = fopen(out_file, "w");
1236
1237 if (have_identity && strcmp(identity_file, "-") != 0) {
1238 if ((in = fopen(identity_file, "r")) == NULL) {
1239 fatal("Couldn't open modulus candidate "
Damien Millera8e06ce2003-11-21 23:48:55 +11001240 "file \"%s\": %s", identity_file,
Darren Tucker019cefe2003-08-02 22:40:07 +10001241 strerror(errno));
1242 }
1243 } else
1244 in = stdin;
1245
1246 if (out == NULL) {
1247 fatal("Couldn't open moduli file \"%s\": %s",
1248 out_file, strerror(errno));
1249 }
1250 if (prime_test(in, out, trials, generator_wanted) != 0)
Damien Miller15d72a02005-11-05 15:07:33 +11001251 fatal("modulus screening failed");
Darren Tuckerf4220e62003-08-21 16:44:07 +10001252 return (0);
Darren Tucker019cefe2003-08-02 22:40:07 +10001253 }
1254
Damien Miller95def091999-11-25 00:26:21 +11001255 arc4random_stir();
1256
Damien Millerf14be5c2005-11-05 15:15:49 +11001257 if (key_type_name == NULL)
1258 key_type_name = "rsa";
1259
Damien Millere39cacc2000-11-29 12:18:44 +11001260 type = key_type_from_name(key_type_name);
1261 if (type == KEY_UNSPEC) {
1262 fprintf(stderr, "unknown key type %s\n", key_type_name);
1263 exit(1);
Damien Millereba71ba2000-04-29 23:57:08 +10001264 }
Damien Miller3f54a9f2005-11-05 14:52:18 +11001265 if (bits == 0)
1266 bits = (type == KEY_DSA) ? DEFAULT_BITS_DSA : DEFAULT_BITS;
Tim Rice660c3402005-11-28 17:45:32 -08001267 if (type == KEY_DSA && bits != 1024)
1268 fatal("DSA keys must be 1024 bits");
Darren Tucker3af2ac52005-11-29 13:10:24 +11001269 if (!quiet)
1270 printf("Generating public/private %s key pair.\n", key_type_name);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001271 private = key_generate(type, bits);
1272 if (private == NULL) {
1273 fprintf(stderr, "key_generate failed");
1274 exit(1);
1275 }
1276 public = key_from_private(private);
Damien Miller95def091999-11-25 00:26:21 +11001277
1278 if (!have_identity)
1279 ask_filename(pw, "Enter file in which to save the key");
1280
Damien Miller788f2122005-11-05 15:14:59 +11001281 /* Create ~/.ssh directory if it doesn't already exist. */
Ben Lindstrom226cfa02001-01-22 05:34:40 +00001282 snprintf(dotsshdir, sizeof dotsshdir, "%s/%s", pw->pw_dir, _PATH_SSH_USER_DIR);
Damien Miller95def091999-11-25 00:26:21 +11001283 if (strstr(identity_file, dotsshdir) != NULL &&
1284 stat(dotsshdir, &st) < 0) {
Damien Millerbe484b52000-07-15 14:14:16 +10001285 if (mkdir(dotsshdir, 0700) < 0)
Damien Miller95def091999-11-25 00:26:21 +11001286 error("Could not create directory '%s'.", dotsshdir);
1287 else if (!quiet)
1288 printf("Created directory '%s'.\n", dotsshdir);
1289 }
1290 /* If the file already exists, ask the user to confirm. */
1291 if (stat(identity_file, &st) >= 0) {
1292 char yesno[3];
1293 printf("%s already exists.\n", identity_file);
1294 printf("Overwrite (y/n)? ");
1295 fflush(stdout);
1296 if (fgets(yesno, sizeof(yesno), stdin) == NULL)
1297 exit(1);
1298 if (yesno[0] != 'y' && yesno[0] != 'Y')
1299 exit(1);
1300 }
1301 /* Ask for a passphrase (twice). */
1302 if (identity_passphrase)
1303 passphrase1 = xstrdup(identity_passphrase);
1304 else if (identity_new_passphrase)
1305 passphrase1 = xstrdup(identity_new_passphrase);
1306 else {
1307passphrase_again:
1308 passphrase1 =
Ben Lindstrom949974b2001-06-25 05:20:31 +00001309 read_passphrase("Enter passphrase (empty for no "
1310 "passphrase): ", RP_ALLOW_STDIN);
1311 passphrase2 = read_passphrase("Enter same passphrase again: ",
1312 RP_ALLOW_STDIN);
Damien Miller95def091999-11-25 00:26:21 +11001313 if (strcmp(passphrase1, passphrase2) != 0) {
Ben Lindstrom949974b2001-06-25 05:20:31 +00001314 /*
1315 * The passphrases do not match. Clear them and
1316 * retry.
1317 */
Damien Miller95def091999-11-25 00:26:21 +11001318 memset(passphrase1, 0, strlen(passphrase1));
1319 memset(passphrase2, 0, strlen(passphrase2));
1320 xfree(passphrase1);
1321 xfree(passphrase2);
1322 printf("Passphrases do not match. Try again.\n");
1323 goto passphrase_again;
1324 }
1325 /* Clear the other copy of the passphrase. */
1326 memset(passphrase2, 0, strlen(passphrase2));
1327 xfree(passphrase2);
1328 }
1329
Damien Miller95def091999-11-25 00:26:21 +11001330 if (identity_comment) {
1331 strlcpy(comment, identity_comment, sizeof(comment));
1332 } else {
Damien Miller4af51302000-04-16 11:18:38 +10001333 /* Create default commend field for the passphrase. */
Damien Miller95def091999-11-25 00:26:21 +11001334 snprintf(comment, sizeof comment, "%s@%s", pw->pw_name, hostname);
1335 }
1336
1337 /* Save the key with the given passphrase and comment. */
Ben Lindstromd0fca422001-03-26 13:44:06 +00001338 if (!key_save_private(private, identity_file, passphrase1, comment)) {
Ben Lindstrom15f33862001-04-16 02:00:02 +00001339 printf("Saving the key failed: %s.\n", identity_file);
Damien Miller95def091999-11-25 00:26:21 +11001340 memset(passphrase1, 0, strlen(passphrase1));
1341 xfree(passphrase1);
1342 exit(1);
1343 }
1344 /* Clear the passphrase. */
1345 memset(passphrase1, 0, strlen(passphrase1));
1346 xfree(passphrase1);
1347
1348 /* Clear the private key and the random number generator. */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001349 key_free(private);
Damien Miller95def091999-11-25 00:26:21 +11001350 arc4random_stir();
1351
1352 if (!quiet)
1353 printf("Your identification has been saved in %s.\n", identity_file);
1354
Damien Miller95def091999-11-25 00:26:21 +11001355 strlcat(identity_file, ".pub", sizeof(identity_file));
Ben Lindstrom5fc62702001-03-09 18:19:24 +00001356 fd = open(identity_file, O_WRONLY | O_CREAT | O_TRUNC, 0644);
1357 if (fd == -1) {
Damien Miller95def091999-11-25 00:26:21 +11001358 printf("Could not save your public key in %s\n", identity_file);
1359 exit(1);
1360 }
Ben Lindstrom5fc62702001-03-09 18:19:24 +00001361 f = fdopen(fd, "w");
1362 if (f == NULL) {
1363 printf("fdopen %s failed", identity_file);
1364 exit(1);
1365 }
Damien Millereba71ba2000-04-29 23:57:08 +10001366 if (!key_write(public, f))
1367 fprintf(stderr, "write key failed");
1368 fprintf(f, " %s\n", comment);
Damien Miller95def091999-11-25 00:26:21 +11001369 fclose(f);
1370
1371 if (!quiet) {
Ben Lindstromcfccef92001-03-13 04:57:58 +00001372 char *fp = key_fingerprint(public, SSH_FP_MD5, SSH_FP_HEX);
Damien Millereba71ba2000-04-29 23:57:08 +10001373 printf("Your public key has been saved in %s.\n",
1374 identity_file);
Damien Miller95def091999-11-25 00:26:21 +11001375 printf("The key fingerprint is:\n");
Ben Lindstromcfccef92001-03-13 04:57:58 +00001376 printf("%s %s\n", fp, comment);
1377 xfree(fp);
Damien Miller95def091999-11-25 00:26:21 +11001378 }
Damien Millereba71ba2000-04-29 23:57:08 +10001379
1380 key_free(public);
Damien Miller95def091999-11-25 00:26:21 +11001381 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001382}