blob: 915d5580b10849ea66dab110d81305188a189b88 [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 Miller788f2122005-11-05 15:14:59 +110015RCSID("$OpenBSD: ssh-keygen.c,v 1.132 2005/10/30 08:52:18 djm Exp $");
Damien Millerd4a8b7e1999-10-27 13:42:43 +100016
Damien Millereba71ba2000-04-29 23:57:08 +100017#include <openssl/evp.h>
18#include <openssl/pem.h>
Damien Millereba71ba2000-04-29 23:57:08 +100019
Damien Millerd4a8b7e1999-10-27 13:42:43 +100020#include "xmalloc.h"
Damien Millereba71ba2000-04-29 23:57:08 +100021#include "key.h"
Ben Lindstromd09fcf52001-03-29 00:29:54 +000022#include "rsa.h"
Damien Millereba71ba2000-04-29 23:57:08 +100023#include "authfile.h"
24#include "uuencode.h"
Damien Miller874d77b2000-10-14 16:23:11 +110025#include "buffer.h"
26#include "bufaux.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000027#include "pathnames.h"
28#include "log.h"
Darren Tuckere608ca22004-05-13 16:15:47 +100029#include "misc.h"
Damien Miller4b42d7f2005-03-01 21:48:35 +110030#include "match.h"
31#include "hostfile.h"
Damien Miller874d77b2000-10-14 16:23:11 +110032
Ben Lindstrom8282d6a2001-08-06 21:44:05 +000033#ifdef SMARTCARD
Ben Lindstrom8282d6a2001-08-06 21:44:05 +000034#include "scard.h"
Ben Lindstrombcc18082001-08-06 21:59:25 +000035#endif
Damien Millered12a262003-05-15 13:37:43 +100036#include "dns.h"
Ben Lindstromcd392282001-07-04 03:44:03 +000037
Damien Miller3f54a9f2005-11-05 14:52:18 +110038/* Number of bits in the RSA/DSA key. This value can be set on the command line. */
39#define DEFAULT_BITS 2048
40#define DEFAULT_BITS_DSA 1024
41u_int32_t bits = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100042
Damien Miller5428f641999-11-25 11:54:57 +110043/*
44 * Flag indicating that we just want to change the passphrase. This can be
45 * set on the command line.
46 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100047int change_passphrase = 0;
48
Damien Miller5428f641999-11-25 11:54:57 +110049/*
50 * Flag indicating that we just want to change the comment. This can be set
51 * on the command line.
52 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100053int change_comment = 0;
54
55int quiet = 0;
56
Damien Miller4b42d7f2005-03-01 21:48:35 +110057/* Flag indicating that we want to hash a known_hosts file */
58int hash_hosts = 0;
59/* Flag indicating that we want lookup a host in known_hosts file */
60int find_host = 0;
61/* Flag indicating that we want to delete a host from a known_hosts file */
62int delete_host = 0;
63
Damien Miller10f6f6b1999-11-17 17:29:08 +110064/* Flag indicating that we just want to see the key fingerprint */
65int print_fingerprint = 0;
Ben Lindstrom8fd372b2001-03-12 03:02:17 +000066int print_bubblebabble = 0;
Damien Miller10f6f6b1999-11-17 17:29:08 +110067
Damien Miller431f66b1999-11-21 18:31:57 +110068/* The identity file name, given on the command line or entered by the user. */
69char identity_file[1024];
70int have_identity = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100071
72/* This is set to the passphrase if given on the command line. */
73char *identity_passphrase = NULL;
74
75/* This is set to the new passphrase if given on the command line. */
76char *identity_new_passphrase = NULL;
77
78/* This is set to the new comment if given on the command line. */
79char *identity_comment = NULL;
80
Damien Millereba71ba2000-04-29 23:57:08 +100081/* Dump public key file in format used by real and the original SSH 2 */
82int convert_to_ssh2 = 0;
83int convert_from_ssh2 = 0;
84int print_public = 0;
Damien Miller37876e92003-05-15 10:19:46 +100085int print_generic = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +110086
Damien Millera41c8b12002-01-22 23:05:08 +110087char *key_type_name = NULL;
Damien Millereba71ba2000-04-29 23:57:08 +100088
Damien Miller431f66b1999-11-21 18:31:57 +110089/* argv0 */
90extern char *__progname;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100091
Damien Millereba71ba2000-04-29 23:57:08 +100092char hostname[MAXHOSTNAMELEN];
93
Darren Tucker770fc012004-05-13 16:24:32 +100094/* moduli.c */
Damien Millerb089fb52005-05-26 12:16:18 +100095int gen_candidates(FILE *, u_int32_t, u_int32_t, BIGNUM *);
Darren Tucker770fc012004-05-13 16:24:32 +100096int prime_test(FILE *, FILE *, u_int32_t, u_int32_t);
97
Ben Lindstrombba81212001-06-25 05:01:22 +000098static void
Damien Miller431f66b1999-11-21 18:31:57 +110099ask_filename(struct passwd *pw, const char *prompt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000100{
Damien Miller95def091999-11-25 00:26:21 +1100101 char buf[1024];
Damien Millere39cacc2000-11-29 12:18:44 +1100102 char *name = NULL;
103
Damien Miller993dd552002-02-19 15:22:47 +1100104 if (key_type_name == NULL)
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000105 name = _PATH_SSH_CLIENT_ID_RSA;
Damien Miller993dd552002-02-19 15:22:47 +1100106 else
107 switch (key_type_from_name(key_type_name)) {
108 case KEY_RSA1:
109 name = _PATH_SSH_CLIENT_IDENTITY;
110 break;
111 case KEY_DSA:
112 name = _PATH_SSH_CLIENT_ID_DSA;
113 break;
114 case KEY_RSA:
115 name = _PATH_SSH_CLIENT_ID_RSA;
116 break;
117 default:
118 fprintf(stderr, "bad key type");
119 exit(1);
120 break;
121 }
122
Damien Millere39cacc2000-11-29 12:18:44 +1100123 snprintf(identity_file, sizeof(identity_file), "%s/%s", pw->pw_dir, name);
Ben Lindstrom3deda8b2000-12-22 20:27:43 +0000124 fprintf(stderr, "%s (%s): ", prompt, identity_file);
Damien Miller95def091999-11-25 00:26:21 +1100125 if (fgets(buf, sizeof(buf), stdin) == NULL)
126 exit(1);
127 if (strchr(buf, '\n'))
128 *strchr(buf, '\n') = 0;
129 if (strcmp(buf, "") != 0)
130 strlcpy(identity_file, buf, sizeof(identity_file));
131 have_identity = 1;
Damien Miller10f6f6b1999-11-17 17:29:08 +1100132}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000133
Ben Lindstrombba81212001-06-25 05:01:22 +0000134static Key *
Ben Lindstromd78ae762001-06-05 20:35:09 +0000135load_identity(char *filename)
Damien Millereba71ba2000-04-29 23:57:08 +1000136{
Ben Lindstromd0fca422001-03-26 13:44:06 +0000137 char *pass;
138 Key *prv;
139
Ben Lindstroma3700052001-04-05 23:26:32 +0000140 prv = key_load_private(filename, "", NULL);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000141 if (prv == NULL) {
Ben Lindstromd78ae762001-06-05 20:35:09 +0000142 if (identity_passphrase)
143 pass = xstrdup(identity_passphrase);
144 else
Ben Lindstrom949974b2001-06-25 05:20:31 +0000145 pass = read_passphrase("Enter passphrase: ",
146 RP_ALLOW_STDIN);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000147 prv = key_load_private(filename, pass, NULL);
Damien Millereba71ba2000-04-29 23:57:08 +1000148 memset(pass, 0, strlen(pass));
149 xfree(pass);
150 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000151 return prv;
Damien Millereba71ba2000-04-29 23:57:08 +1000152}
153
Damien Miller874d77b2000-10-14 16:23:11 +1100154#define SSH_COM_PUBLIC_BEGIN "---- BEGIN SSH2 PUBLIC KEY ----"
Ben Lindstromcb72e4f2002-06-21 00:41:51 +0000155#define SSH_COM_PUBLIC_END "---- END SSH2 PUBLIC KEY ----"
Damien Miller874d77b2000-10-14 16:23:11 +1100156#define SSH_COM_PRIVATE_BEGIN "---- BEGIN SSH2 ENCRYPTED PRIVATE KEY ----"
Kevin Stevesef4eea92001-02-05 12:42:17 +0000157#define SSH_COM_PRIVATE_KEY_MAGIC 0x3f6ff9eb
Damien Millereba71ba2000-04-29 23:57:08 +1000158
Ben Lindstrombba81212001-06-25 05:01:22 +0000159static void
Damien Millereba71ba2000-04-29 23:57:08 +1000160do_convert_to_ssh2(struct passwd *pw)
161{
Ben Lindstrom46c264f2001-04-24 16:56:58 +0000162 Key *k;
Ben Lindstromc58ab022002-02-26 18:15:09 +0000163 u_int len;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000164 u_char *blob;
Damien Millereba71ba2000-04-29 23:57:08 +1000165 struct stat st;
166
167 if (!have_identity)
168 ask_filename(pw, "Enter file in which the key is");
169 if (stat(identity_file, &st) < 0) {
170 perror(identity_file);
171 exit(1);
172 }
Ben Lindstrom46c264f2001-04-24 16:56:58 +0000173 if ((k = key_load_public(identity_file, NULL)) == NULL) {
Ben Lindstromd78ae762001-06-05 20:35:09 +0000174 if ((k = load_identity(identity_file)) == NULL) {
Ben Lindstrom46c264f2001-04-24 16:56:58 +0000175 fprintf(stderr, "load failed\n");
176 exit(1);
177 }
Damien Millereba71ba2000-04-29 23:57:08 +1000178 }
Damien Millerdb274722003-05-14 13:45:22 +1000179 if (k->type == KEY_RSA1) {
180 fprintf(stderr, "version 1 keys are not supported\n");
181 exit(1);
182 }
Ben Lindstrom99a30f12001-09-18 05:49:14 +0000183 if (key_to_blob(k, &blob, &len) <= 0) {
184 fprintf(stderr, "key_to_blob failed\n");
185 exit(1);
186 }
Damien Miller874d77b2000-10-14 16:23:11 +1100187 fprintf(stdout, "%s\n", SSH_COM_PUBLIC_BEGIN);
Damien Millereba71ba2000-04-29 23:57:08 +1000188 fprintf(stdout,
Ben Lindstrom58d3b722002-06-23 21:28:13 +0000189 "Comment: \"%u-bit %s, converted from OpenSSH by %s@%s\"\n",
Ben Lindstrom46c264f2001-04-24 16:56:58 +0000190 key_size(k), key_type(k),
Damien Millereba71ba2000-04-29 23:57:08 +1000191 pw->pw_name, hostname);
192 dump_base64(stdout, blob, len);
Damien Miller874d77b2000-10-14 16:23:11 +1100193 fprintf(stdout, "%s\n", SSH_COM_PUBLIC_END);
Ben Lindstrom46c264f2001-04-24 16:56:58 +0000194 key_free(k);
Damien Millereba71ba2000-04-29 23:57:08 +1000195 xfree(blob);
196 exit(0);
197}
198
Ben Lindstrombba81212001-06-25 05:01:22 +0000199static void
Damien Miller874d77b2000-10-14 16:23:11 +1100200buffer_get_bignum_bits(Buffer *b, BIGNUM *value)
201{
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000202 u_int bignum_bits = buffer_get_int(b);
203 u_int bytes = (bignum_bits + 7) / 8;
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000204
Damien Miller874d77b2000-10-14 16:23:11 +1100205 if (buffer_len(b) < bytes)
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000206 fatal("buffer_get_bignum_bits: input buffer too small: "
207 "need %d have %d", bytes, buffer_len(b));
Damien Miller708d21c2002-01-22 23:18:15 +1100208 BN_bin2bn(buffer_ptr(b), bytes, value);
Damien Miller874d77b2000-10-14 16:23:11 +1100209 buffer_consume(b, bytes);
210}
211
Ben Lindstrombba81212001-06-25 05:01:22 +0000212static Key *
Ben Lindstrom90fd8142002-02-26 18:09:42 +0000213do_convert_private_ssh2_from_blob(u_char *blob, u_int blen)
Damien Miller874d77b2000-10-14 16:23:11 +1100214{
215 Buffer b;
Damien Miller874d77b2000-10-14 16:23:11 +1100216 Key *key = NULL;
Damien Miller874d77b2000-10-14 16:23:11 +1100217 char *type, *cipher;
Ben Lindstrom511d69e2001-07-04 05:05:27 +0000218 u_char *sig, data[] = "abcde12345";
Ben Lindstrome586c4c2001-06-25 05:04:58 +0000219 int magic, rlen, ktype, i1, i2, i3, i4;
220 u_int slen;
221 u_long e;
Damien Miller874d77b2000-10-14 16:23:11 +1100222
223 buffer_init(&b);
224 buffer_append(&b, blob, blen);
225
226 magic = buffer_get_int(&b);
227 if (magic != SSH_COM_PRIVATE_KEY_MAGIC) {
228 error("bad magic 0x%x != 0x%x", magic, SSH_COM_PRIVATE_KEY_MAGIC);
229 buffer_free(&b);
230 return NULL;
231 }
Ben Lindstrom34f91882001-06-25 04:47:54 +0000232 i1 = buffer_get_int(&b);
Damien Miller874d77b2000-10-14 16:23:11 +1100233 type = buffer_get_string(&b, NULL);
234 cipher = buffer_get_string(&b, NULL);
Ben Lindstrom34f91882001-06-25 04:47:54 +0000235 i2 = buffer_get_int(&b);
236 i3 = buffer_get_int(&b);
237 i4 = buffer_get_int(&b);
238 debug("ignore (%d %d %d %d)", i1,i2,i3,i4);
Damien Miller874d77b2000-10-14 16:23:11 +1100239 if (strcmp(cipher, "none") != 0) {
240 error("unsupported cipher %s", cipher);
241 xfree(cipher);
242 buffer_free(&b);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000243 xfree(type);
Damien Miller874d77b2000-10-14 16:23:11 +1100244 return NULL;
245 }
246 xfree(cipher);
247
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000248 if (strstr(type, "dsa")) {
249 ktype = KEY_DSA;
250 } else if (strstr(type, "rsa")) {
251 ktype = KEY_RSA;
252 } else {
Darren Tucker7cfeecf2005-01-20 10:56:31 +1100253 buffer_free(&b);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000254 xfree(type);
Damien Miller874d77b2000-10-14 16:23:11 +1100255 return NULL;
256 }
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000257 key = key_new_private(ktype);
258 xfree(type);
259
260 switch (key->type) {
261 case KEY_DSA:
262 buffer_get_bignum_bits(&b, key->dsa->p);
263 buffer_get_bignum_bits(&b, key->dsa->g);
264 buffer_get_bignum_bits(&b, key->dsa->q);
265 buffer_get_bignum_bits(&b, key->dsa->pub_key);
266 buffer_get_bignum_bits(&b, key->dsa->priv_key);
267 break;
268 case KEY_RSA:
Ben Lindstrom34f91882001-06-25 04:47:54 +0000269 e = buffer_get_char(&b);
270 debug("e %lx", e);
271 if (e < 30) {
272 e <<= 8;
273 e += buffer_get_char(&b);
274 debug("e %lx", e);
275 e <<= 8;
276 e += buffer_get_char(&b);
277 debug("e %lx", e);
278 }
279 if (!BN_set_word(key->rsa->e, e)) {
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000280 buffer_free(&b);
281 key_free(key);
282 return NULL;
283 }
284 buffer_get_bignum_bits(&b, key->rsa->d);
285 buffer_get_bignum_bits(&b, key->rsa->n);
286 buffer_get_bignum_bits(&b, key->rsa->iqmp);
287 buffer_get_bignum_bits(&b, key->rsa->q);
288 buffer_get_bignum_bits(&b, key->rsa->p);
Ben Lindstromf7297dd2001-07-04 05:02:23 +0000289 rsa_generate_additional_parameters(key->rsa);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000290 break;
291 }
Damien Miller874d77b2000-10-14 16:23:11 +1100292 rlen = buffer_len(&b);
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +0000293 if (rlen != 0)
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000294 error("do_convert_private_ssh2_from_blob: "
295 "remaining bytes in key blob %d", rlen);
Damien Miller874d77b2000-10-14 16:23:11 +1100296 buffer_free(&b);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000297
Ben Lindstrome586c4c2001-06-25 05:04:58 +0000298 /* try the key */
299 key_sign(key, &sig, &slen, data, sizeof(data));
300 key_verify(key, sig, slen, data, sizeof(data));
301 xfree(sig);
Damien Miller874d77b2000-10-14 16:23:11 +1100302 return key;
303}
304
Ben Lindstrombba81212001-06-25 05:01:22 +0000305static void
Damien Millereba71ba2000-04-29 23:57:08 +1000306do_convert_from_ssh2(struct passwd *pw)
307{
308 Key *k;
309 int blen;
Ben Lindstrom155b9812002-04-02 20:26:26 +0000310 u_int len;
Damien Millereba71ba2000-04-29 23:57:08 +1000311 char line[1024], *p;
Ben Lindstrom9e0ddd42001-09-18 05:41:19 +0000312 u_char blob[8096];
Damien Millereba71ba2000-04-29 23:57:08 +1000313 char encoded[8096];
314 struct stat st;
Damien Miller874d77b2000-10-14 16:23:11 +1100315 int escaped = 0, private = 0, ok;
Damien Millereba71ba2000-04-29 23:57:08 +1000316 FILE *fp;
317
318 if (!have_identity)
319 ask_filename(pw, "Enter file in which the key is");
320 if (stat(identity_file, &st) < 0) {
321 perror(identity_file);
322 exit(1);
323 }
324 fp = fopen(identity_file, "r");
325 if (fp == NULL) {
326 perror(identity_file);
327 exit(1);
328 }
329 encoded[0] = '\0';
330 while (fgets(line, sizeof(line), fp)) {
Damien Miller30c3d422000-05-09 11:02:59 +1000331 if (!(p = strchr(line, '\n'))) {
332 fprintf(stderr, "input line too long.\n");
333 exit(1);
334 }
335 if (p > line && p[-1] == '\\')
336 escaped++;
Damien Millereba71ba2000-04-29 23:57:08 +1000337 if (strncmp(line, "----", 4) == 0 ||
338 strstr(line, ": ") != NULL) {
Damien Miller874d77b2000-10-14 16:23:11 +1100339 if (strstr(line, SSH_COM_PRIVATE_BEGIN) != NULL)
340 private = 1;
Ben Lindstrome586c4c2001-06-25 05:04:58 +0000341 if (strstr(line, " END ") != NULL) {
342 break;
343 }
Ben Lindstrom30358602001-04-24 16:59:28 +0000344 /* fprintf(stderr, "ignore: %s", line); */
Damien Millereba71ba2000-04-29 23:57:08 +1000345 continue;
346 }
Damien Miller30c3d422000-05-09 11:02:59 +1000347 if (escaped) {
348 escaped--;
Ben Lindstrom30358602001-04-24 16:59:28 +0000349 /* fprintf(stderr, "escaped: %s", line); */
Damien Miller30c3d422000-05-09 11:02:59 +1000350 continue;
Damien Millereba71ba2000-04-29 23:57:08 +1000351 }
352 *p = '\0';
353 strlcat(encoded, line, sizeof(encoded));
354 }
Ben Lindstrom155b9812002-04-02 20:26:26 +0000355 len = strlen(encoded);
356 if (((len % 4) == 3) &&
357 (encoded[len-1] == '=') &&
358 (encoded[len-2] == '=') &&
359 (encoded[len-3] == '='))
360 encoded[len-3] = '\0';
Damien Miller4a8ed542002-01-22 23:33:31 +1100361 blen = uudecode(encoded, blob, sizeof(blob));
Damien Millereba71ba2000-04-29 23:57:08 +1000362 if (blen < 0) {
363 fprintf(stderr, "uudecode failed.\n");
364 exit(1);
365 }
Damien Miller874d77b2000-10-14 16:23:11 +1100366 k = private ?
367 do_convert_private_ssh2_from_blob(blob, blen) :
Damien Miller0bc1bd82000-11-13 22:57:25 +1100368 key_from_blob(blob, blen);
Damien Miller874d77b2000-10-14 16:23:11 +1100369 if (k == NULL) {
370 fprintf(stderr, "decode blob failed.\n");
371 exit(1);
372 }
373 ok = private ?
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000374 (k->type == KEY_DSA ?
375 PEM_write_DSAPrivateKey(stdout, k->dsa, NULL, NULL, 0, NULL, NULL) :
376 PEM_write_RSAPrivateKey(stdout, k->rsa, NULL, NULL, 0, NULL, NULL)) :
Damien Miller874d77b2000-10-14 16:23:11 +1100377 key_write(k, stdout);
378 if (!ok) {
379 fprintf(stderr, "key write failed");
380 exit(1);
381 }
Damien Millereba71ba2000-04-29 23:57:08 +1000382 key_free(k);
Damien Millera1db12b2002-01-22 23:20:15 +1100383 if (!private)
384 fprintf(stdout, "\n");
Damien Millereba71ba2000-04-29 23:57:08 +1000385 fclose(fp);
386 exit(0);
387}
388
Ben Lindstrombba81212001-06-25 05:01:22 +0000389static void
Damien Millereba71ba2000-04-29 23:57:08 +1000390do_print_public(struct passwd *pw)
391{
Ben Lindstromd0fca422001-03-26 13:44:06 +0000392 Key *prv;
Damien Millereba71ba2000-04-29 23:57:08 +1000393 struct stat st;
394
395 if (!have_identity)
396 ask_filename(pw, "Enter file in which the key is");
397 if (stat(identity_file, &st) < 0) {
398 perror(identity_file);
399 exit(1);
400 }
Ben Lindstromd78ae762001-06-05 20:35:09 +0000401 prv = load_identity(identity_file);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000402 if (prv == NULL) {
Damien Millereba71ba2000-04-29 23:57:08 +1000403 fprintf(stderr, "load failed\n");
404 exit(1);
405 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000406 if (!key_write(prv, stdout))
Damien Millereba71ba2000-04-29 23:57:08 +1000407 fprintf(stderr, "key_write failed");
Ben Lindstromd0fca422001-03-26 13:44:06 +0000408 key_free(prv);
Damien Millereba71ba2000-04-29 23:57:08 +1000409 fprintf(stdout, "\n");
410 exit(0);
411}
412
Ben Lindstrom6818bfb2001-08-06 21:40:04 +0000413#ifdef SMARTCARD
Ben Lindstromcd392282001-07-04 03:44:03 +0000414static void
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000415do_upload(struct passwd *pw, const char *sc_reader_id)
Ben Lindstromcd392282001-07-04 03:44:03 +0000416{
Ben Lindstromcd392282001-07-04 03:44:03 +0000417 Key *prv = NULL;
418 struct stat st;
Ben Lindstrom70e3ad82002-03-22 03:33:43 +0000419 int ret;
Ben Lindstromcd392282001-07-04 03:44:03 +0000420
421 if (!have_identity)
422 ask_filename(pw, "Enter file in which the key is");
423 if (stat(identity_file, &st) < 0) {
424 perror(identity_file);
Ben Lindstrom70e3ad82002-03-22 03:33:43 +0000425 exit(1);
Ben Lindstromcd392282001-07-04 03:44:03 +0000426 }
427 prv = load_identity(identity_file);
428 if (prv == NULL) {
429 error("load failed");
Ben Lindstrom70e3ad82002-03-22 03:33:43 +0000430 exit(1);
Ben Lindstromcd392282001-07-04 03:44:03 +0000431 }
Ben Lindstrom70e3ad82002-03-22 03:33:43 +0000432 ret = sc_put_key(prv, sc_reader_id);
433 key_free(prv);
434 if (ret < 0)
435 exit(1);
Damien Miller996acd22003-04-09 20:59:48 +1000436 logit("loading key done");
Ben Lindstrom70e3ad82002-03-22 03:33:43 +0000437 exit(0);
Ben Lindstromcd392282001-07-04 03:44:03 +0000438}
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000439
440static void
441do_download(struct passwd *pw, const char *sc_reader_id)
442{
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000443 Key **keys = NULL;
444 int i;
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000445
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000446 keys = sc_get_keys(sc_reader_id, NULL);
447 if (keys == NULL)
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000448 fatal("cannot read public key from smartcard");
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000449 for (i = 0; keys[i]; i++) {
450 key_write(keys[i], stdout);
451 key_free(keys[i]);
452 fprintf(stdout, "\n");
453 }
454 xfree(keys);
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000455 exit(0);
456}
Ben Lindstromffce1472001-08-06 21:57:31 +0000457#endif /* SMARTCARD */
Ben Lindstromcd392282001-07-04 03:44:03 +0000458
Ben Lindstrombba81212001-06-25 05:01:22 +0000459static void
Damien Miller10f6f6b1999-11-17 17:29:08 +1100460do_fingerprint(struct passwd *pw)
461{
Damien Miller98c7ad62000-03-09 21:27:49 +1100462 FILE *f;
Damien Millereba71ba2000-04-29 23:57:08 +1000463 Key *public;
Ben Lindstrom8fd372b2001-03-12 03:02:17 +0000464 char *comment = NULL, *cp, *ep, line[16*1024], *fp;
Ben Lindstrom65366a82001-12-06 16:32:47 +0000465 int i, skip = 0, num = 1, invalid = 1;
466 enum fp_rep rep;
467 enum fp_type fptype;
Damien Miller95def091999-11-25 00:26:21 +1100468 struct stat st;
Damien Miller10f6f6b1999-11-17 17:29:08 +1100469
Ben Lindstromd0fca422001-03-26 13:44:06 +0000470 fptype = print_bubblebabble ? SSH_FP_SHA1 : SSH_FP_MD5;
471 rep = print_bubblebabble ? SSH_FP_BUBBLEBABBLE : SSH_FP_HEX;
Ben Lindstrom8fd372b2001-03-12 03:02:17 +0000472
Damien Miller95def091999-11-25 00:26:21 +1100473 if (!have_identity)
474 ask_filename(pw, "Enter file in which the key is");
475 if (stat(identity_file, &st) < 0) {
476 perror(identity_file);
477 exit(1);
478 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000479 public = key_load_public(identity_file, &comment);
480 if (public != NULL) {
481 fp = key_fingerprint(public, fptype, rep);
Ben Lindstrom58d3b722002-06-23 21:28:13 +0000482 printf("%u %s %s\n", key_size(public), fp, comment);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100483 key_free(public);
484 xfree(comment);
Ben Lindstrom8fd372b2001-03-12 03:02:17 +0000485 xfree(fp);
Damien Miller98c7ad62000-03-09 21:27:49 +1100486 exit(0);
487 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000488 if (comment)
489 xfree(comment);
Damien Miller98c7ad62000-03-09 21:27:49 +1100490
491 f = fopen(identity_file, "r");
492 if (f != NULL) {
Damien Miller98c7ad62000-03-09 21:27:49 +1100493 while (fgets(line, sizeof(line), f)) {
494 i = strlen(line) - 1;
495 if (line[i] != '\n') {
496 error("line %d too long: %.40s...", num, line);
497 skip = 1;
498 continue;
Damien Miller95def091999-11-25 00:26:21 +1100499 }
Damien Miller98c7ad62000-03-09 21:27:49 +1100500 num++;
501 if (skip) {
502 skip = 0;
503 continue;
504 }
505 line[i] = '\0';
506
507 /* Skip leading whitespace, empty and comment lines. */
508 for (cp = line; *cp == ' ' || *cp == '\t'; cp++)
509 ;
510 if (!*cp || *cp == '\n' || *cp == '#')
511 continue ;
512 i = strtol(cp, &ep, 10);
513 if (i == 0 || ep == NULL || (*ep != ' ' && *ep != '\t')) {
514 int quoted = 0;
515 comment = cp;
Ben Lindstrom58d3b722002-06-23 21:28:13 +0000516 for (; *cp && (quoted || (*cp != ' ' &&
517 *cp != '\t')); cp++) {
Damien Miller98c7ad62000-03-09 21:27:49 +1100518 if (*cp == '\\' && cp[1] == '"')
519 cp++; /* Skip both */
520 else if (*cp == '"')
521 quoted = !quoted;
522 }
523 if (!*cp)
524 continue;
525 *cp++ = '\0';
526 }
527 ep = cp;
Ben Lindstrom2941f112000-12-29 16:50:13 +0000528 public = key_new(KEY_RSA1);
529 if (key_read(public, &cp) != 1) {
530 cp = ep;
531 key_free(public);
532 public = key_new(KEY_UNSPEC);
533 if (key_read(public, &cp) != 1) {
534 key_free(public);
535 continue;
536 }
Damien Miller98c7ad62000-03-09 21:27:49 +1100537 }
Ben Lindstrom2941f112000-12-29 16:50:13 +0000538 comment = *cp ? cp : comment;
Ben Lindstromd0fca422001-03-26 13:44:06 +0000539 fp = key_fingerprint(public, fptype, rep);
Ben Lindstrom58d3b722002-06-23 21:28:13 +0000540 printf("%u %s %s\n", key_size(public), fp,
Ben Lindstrom2941f112000-12-29 16:50:13 +0000541 comment ? comment : "no comment");
Ben Lindstrom8fd372b2001-03-12 03:02:17 +0000542 xfree(fp);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000543 key_free(public);
Ben Lindstrom2941f112000-12-29 16:50:13 +0000544 invalid = 0;
Damien Miller95def091999-11-25 00:26:21 +1100545 }
Damien Miller98c7ad62000-03-09 21:27:49 +1100546 fclose(f);
Damien Miller95def091999-11-25 00:26:21 +1100547 }
Damien Miller98c7ad62000-03-09 21:27:49 +1100548 if (invalid) {
Damien Millereb5fec62001-11-12 10:52:44 +1100549 printf("%s is not a public key file.\n", identity_file);
Damien Miller98c7ad62000-03-09 21:27:49 +1100550 exit(1);
551 }
Damien Miller95def091999-11-25 00:26:21 +1100552 exit(0);
Damien Miller10f6f6b1999-11-17 17:29:08 +1100553}
554
Damien Miller4b42d7f2005-03-01 21:48:35 +1100555static void
556print_host(FILE *f, char *name, Key *public, int hash)
557{
558 if (hash && (name = host_hash(name, NULL, 0)) == NULL)
559 fatal("hash_host failed");
560 fprintf(f, "%s ", name);
561 if (!key_write(public, f))
562 fatal("key_write failed");
563 fprintf(f, "\n");
564}
565
566static void
567do_known_hosts(struct passwd *pw, const char *name)
568{
569 FILE *in, *out = stdout;
570 Key *public;
571 char *cp, *cp2, *kp, *kp2;
572 char line[16*1024], tmp[MAXPATHLEN], old[MAXPATHLEN];
573 int c, i, skip = 0, inplace = 0, num = 0, invalid = 0, has_unhashed = 0;
574
575 if (!have_identity) {
576 cp = tilde_expand_filename(_PATH_SSH_USER_HOSTFILE, pw->pw_uid);
577 if (strlcpy(identity_file, cp, sizeof(identity_file)) >=
578 sizeof(identity_file))
579 fatal("Specified known hosts path too long");
580 xfree(cp);
581 have_identity = 1;
582 }
583 if ((in = fopen(identity_file, "r")) == NULL)
584 fatal("fopen: %s", strerror(errno));
585
586 /*
587 * Find hosts goes to stdout, hash and deletions happen in-place
588 * A corner case is ssh-keygen -HF foo, which should go to stdout
589 */
590 if (!find_host && (hash_hosts || delete_host)) {
591 if (strlcpy(tmp, identity_file, sizeof(tmp)) >= sizeof(tmp) ||
592 strlcat(tmp, ".XXXXXXXXXX", sizeof(tmp)) >= sizeof(tmp) ||
593 strlcpy(old, identity_file, sizeof(old)) >= sizeof(old) ||
594 strlcat(old, ".old", sizeof(old)) >= sizeof(old))
595 fatal("known_hosts path too long");
596 umask(077);
597 if ((c = mkstemp(tmp)) == -1)
598 fatal("mkstemp: %s", strerror(errno));
599 if ((out = fdopen(c, "w")) == NULL) {
600 c = errno;
601 unlink(tmp);
602 fatal("fdopen: %s", strerror(c));
603 }
604 inplace = 1;
605 }
606
607 while (fgets(line, sizeof(line), in)) {
608 num++;
609 i = strlen(line) - 1;
610 if (line[i] != '\n') {
611 error("line %d too long: %.40s...", num, line);
612 skip = 1;
613 invalid = 1;
614 continue;
615 }
616 if (skip) {
617 skip = 0;
618 continue;
619 }
620 line[i] = '\0';
621
622 /* Skip leading whitespace, empty and comment lines. */
623 for (cp = line; *cp == ' ' || *cp == '\t'; cp++)
624 ;
625 if (!*cp || *cp == '\n' || *cp == '#') {
626 if (inplace)
627 fprintf(out, "%s\n", cp);
628 continue;
629 }
630 /* Find the end of the host name portion. */
631 for (kp = cp; *kp && *kp != ' ' && *kp != '\t'; kp++)
632 ;
633 if (*kp == '\0' || *(kp + 1) == '\0') {
634 error("line %d missing key: %.40s...",
635 num, line);
636 invalid = 1;
637 continue;
638 }
639 *kp++ = '\0';
640 kp2 = kp;
641
642 public = key_new(KEY_RSA1);
643 if (key_read(public, &kp) != 1) {
644 kp = kp2;
645 key_free(public);
646 public = key_new(KEY_UNSPEC);
647 if (key_read(public, &kp) != 1) {
648 error("line %d invalid key: %.40s...",
649 num, line);
650 key_free(public);
651 invalid = 1;
652 continue;
653 }
654 }
655
656 if (*cp == HASH_DELIM) {
657 if (find_host || delete_host) {
658 cp2 = host_hash(name, cp, strlen(cp));
659 if (cp2 == NULL) {
660 error("line %d: invalid hashed "
661 "name: %.64s...", num, line);
662 invalid = 1;
663 continue;
664 }
665 c = (strcmp(cp2, cp) == 0);
666 if (find_host && c) {
667 printf("# Host %s found: "
668 "line %d type %s\n", name,
669 num, key_type(public));
670 print_host(out, cp, public, 0);
671 }
672 if (delete_host && !c)
673 print_host(out, cp, public, 0);
674 } else if (hash_hosts)
675 print_host(out, cp, public, 0);
676 } else {
677 if (find_host || delete_host) {
678 c = (match_hostname(name, cp,
679 strlen(cp)) == 1);
680 if (find_host && c) {
681 printf("# Host %s found: "
682 "line %d type %s\n", name,
683 num, key_type(public));
684 print_host(out, cp, public, hash_hosts);
685 }
686 if (delete_host && !c)
687 print_host(out, cp, public, 0);
688 } else if (hash_hosts) {
Darren Tucker47eede72005-03-14 23:08:12 +1100689 for (cp2 = strsep(&cp, ",");
Damien Miller4b42d7f2005-03-01 21:48:35 +1100690 cp2 != NULL && *cp2 != '\0';
Damien Miller89eac802005-03-02 12:33:04 +1100691 cp2 = strsep(&cp, ",")) {
692 if (strcspn(cp2, "*?!") != strlen(cp2))
693 fprintf(stderr, "Warning: "
694 "ignoring host name with "
695 "metacharacters: %.64s\n",
696 cp2);
697 else
698 print_host(out, cp2, public, 1);
699 }
Damien Miller4b42d7f2005-03-01 21:48:35 +1100700 has_unhashed = 1;
701 }
702 }
703 key_free(public);
704 }
705 fclose(in);
706
707 if (invalid) {
708 fprintf(stderr, "%s is not a valid known_host file.\n",
709 identity_file);
710 if (inplace) {
711 fprintf(stderr, "Not replacing existing known_hosts "
Darren Tucker9f438a92005-03-14 23:09:18 +1100712 "file because of errors\n");
Damien Miller4b42d7f2005-03-01 21:48:35 +1100713 fclose(out);
714 unlink(tmp);
715 }
716 exit(1);
717 }
718
719 if (inplace) {
720 fclose(out);
721
722 /* Backup existing file */
723 if (unlink(old) == -1 && errno != ENOENT)
724 fatal("unlink %.100s: %s", old, strerror(errno));
725 if (link(identity_file, old) == -1)
726 fatal("link %.100s to %.100s: %s", identity_file, old,
727 strerror(errno));
728 /* Move new one into place */
729 if (rename(tmp, identity_file) == -1) {
730 error("rename\"%s\" to \"%s\": %s", tmp, identity_file,
731 strerror(errno));
732 unlink(tmp);
733 unlink(old);
734 exit(1);
735 }
736
737 fprintf(stderr, "%s updated.\n", identity_file);
738 fprintf(stderr, "Original contents retained as %s\n", old);
739 if (has_unhashed) {
740 fprintf(stderr, "WARNING: %s contains unhashed "
741 "entries\n", old);
742 fprintf(stderr, "Delete this file to ensure privacy "
Damien Miller0dc1bef2005-07-17 17:22:45 +1000743 "of hostnames\n");
Damien Miller4b42d7f2005-03-01 21:48:35 +1100744 }
745 }
746
747 exit(0);
748}
749
Damien Miller95def091999-11-25 00:26:21 +1100750/*
751 * Perform changing a passphrase. The argument is the passwd structure
752 * for the current user.
753 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000754static void
Damien Miller10f6f6b1999-11-17 17:29:08 +1100755do_change_passphrase(struct passwd *pw)
756{
Damien Miller95def091999-11-25 00:26:21 +1100757 char *comment;
758 char *old_passphrase, *passphrase1, *passphrase2;
759 struct stat st;
Damien Millereba71ba2000-04-29 23:57:08 +1000760 Key *private;
Damien Miller10f6f6b1999-11-17 17:29:08 +1100761
Damien Miller95def091999-11-25 00:26:21 +1100762 if (!have_identity)
763 ask_filename(pw, "Enter file in which the key is");
Damien Miller95def091999-11-25 00:26:21 +1100764 if (stat(identity_file, &st) < 0) {
765 perror(identity_file);
766 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000767 }
Damien Miller95def091999-11-25 00:26:21 +1100768 /* Try to load the file with empty passphrase. */
Ben Lindstromd0fca422001-03-26 13:44:06 +0000769 private = key_load_private(identity_file, "", &comment);
770 if (private == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100771 if (identity_passphrase)
772 old_passphrase = xstrdup(identity_passphrase);
773 else
Ben Lindstrom949974b2001-06-25 05:20:31 +0000774 old_passphrase =
775 read_passphrase("Enter old passphrase: ",
776 RP_ALLOW_STDIN);
777 private = key_load_private(identity_file, old_passphrase,
778 &comment);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000779 memset(old_passphrase, 0, strlen(old_passphrase));
780 xfree(old_passphrase);
781 if (private == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100782 printf("Bad passphrase.\n");
783 exit(1);
784 }
Damien Miller95def091999-11-25 00:26:21 +1100785 }
786 printf("Key has comment '%s'\n", comment);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000787
Damien Miller95def091999-11-25 00:26:21 +1100788 /* Ask the new passphrase (twice). */
789 if (identity_new_passphrase) {
790 passphrase1 = xstrdup(identity_new_passphrase);
791 passphrase2 = NULL;
792 } else {
793 passphrase1 =
Ben Lindstrom949974b2001-06-25 05:20:31 +0000794 read_passphrase("Enter new passphrase (empty for no "
795 "passphrase): ", RP_ALLOW_STDIN);
796 passphrase2 = read_passphrase("Enter same passphrase again: ",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100797 RP_ALLOW_STDIN);
Damien Miller95def091999-11-25 00:26:21 +1100798
799 /* Verify that they are the same. */
800 if (strcmp(passphrase1, passphrase2) != 0) {
801 memset(passphrase1, 0, strlen(passphrase1));
802 memset(passphrase2, 0, strlen(passphrase2));
803 xfree(passphrase1);
804 xfree(passphrase2);
805 printf("Pass phrases do not match. Try again.\n");
806 exit(1);
807 }
808 /* Destroy the other copy. */
809 memset(passphrase2, 0, strlen(passphrase2));
810 xfree(passphrase2);
811 }
812
813 /* Save the file using the new passphrase. */
Ben Lindstromd0fca422001-03-26 13:44:06 +0000814 if (!key_save_private(private, identity_file, passphrase1, comment)) {
Ben Lindstrom15f33862001-04-16 02:00:02 +0000815 printf("Saving the key failed: %s.\n", identity_file);
Damien Miller95def091999-11-25 00:26:21 +1100816 memset(passphrase1, 0, strlen(passphrase1));
817 xfree(passphrase1);
Damien Millereba71ba2000-04-29 23:57:08 +1000818 key_free(private);
Damien Miller95def091999-11-25 00:26:21 +1100819 xfree(comment);
820 exit(1);
821 }
822 /* Destroy the passphrase and the copy of the key in memory. */
823 memset(passphrase1, 0, strlen(passphrase1));
824 xfree(passphrase1);
Damien Millereba71ba2000-04-29 23:57:08 +1000825 key_free(private); /* Destroys contents */
Damien Miller95def091999-11-25 00:26:21 +1100826 xfree(comment);
827
828 printf("Your identification has been saved with the new passphrase.\n");
829 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000830}
831
Damien Miller37876e92003-05-15 10:19:46 +1000832/*
833 * Print the SSHFP RR.
834 */
835static void
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000836do_print_resource_record(struct passwd *pw, char *hname)
Damien Miller37876e92003-05-15 10:19:46 +1000837{
838 Key *public;
839 char *comment = NULL;
840 struct stat st;
841
842 if (!have_identity)
843 ask_filename(pw, "Enter file in which the key is");
844 if (stat(identity_file, &st) < 0) {
845 perror(identity_file);
846 exit(1);
847 }
848 public = key_load_public(identity_file, &comment);
849 if (public != NULL) {
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000850 export_dns_rr(hname, public, stdout, print_generic);
Damien Miller37876e92003-05-15 10:19:46 +1000851 key_free(public);
852 xfree(comment);
853 exit(0);
854 }
855 if (comment)
856 xfree(comment);
857
858 printf("failed to read v2 public key from %s.\n", identity_file);
859 exit(1);
860}
Damien Miller37876e92003-05-15 10:19:46 +1000861
Damien Miller95def091999-11-25 00:26:21 +1100862/*
863 * Change the comment of a private key file.
864 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000865static void
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000866do_change_comment(struct passwd *pw)
867{
Ben Lindstrom5fc62702001-03-09 18:19:24 +0000868 char new_comment[1024], *comment, *passphrase;
Ben Lindstromd0fca422001-03-26 13:44:06 +0000869 Key *private;
870 Key *public;
Damien Miller95def091999-11-25 00:26:21 +1100871 struct stat st;
872 FILE *f;
Ben Lindstrom5fc62702001-03-09 18:19:24 +0000873 int fd;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000874
Damien Miller95def091999-11-25 00:26:21 +1100875 if (!have_identity)
876 ask_filename(pw, "Enter file in which the key is");
Damien Miller95def091999-11-25 00:26:21 +1100877 if (stat(identity_file, &st) < 0) {
878 perror(identity_file);
879 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000880 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000881 private = key_load_private(identity_file, "", &comment);
882 if (private == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100883 if (identity_passphrase)
884 passphrase = xstrdup(identity_passphrase);
885 else if (identity_new_passphrase)
886 passphrase = xstrdup(identity_new_passphrase);
887 else
Ben Lindstrom949974b2001-06-25 05:20:31 +0000888 passphrase = read_passphrase("Enter passphrase: ",
889 RP_ALLOW_STDIN);
Damien Miller95def091999-11-25 00:26:21 +1100890 /* Try to load using the passphrase. */
Ben Lindstromd0fca422001-03-26 13:44:06 +0000891 private = key_load_private(identity_file, passphrase, &comment);
892 if (private == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100893 memset(passphrase, 0, strlen(passphrase));
894 xfree(passphrase);
895 printf("Bad passphrase.\n");
896 exit(1);
897 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000898 } else {
899 passphrase = xstrdup("");
Damien Miller95def091999-11-25 00:26:21 +1100900 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000901 if (private->type != KEY_RSA1) {
902 fprintf(stderr, "Comments are only supported for RSA1 keys.\n");
903 key_free(private);
904 exit(1);
Damien Miller9f0f5c62001-12-21 14:45:46 +1100905 }
Damien Miller95def091999-11-25 00:26:21 +1100906 printf("Key now has comment '%s'\n", comment);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000907
Damien Miller95def091999-11-25 00:26:21 +1100908 if (identity_comment) {
909 strlcpy(new_comment, identity_comment, sizeof(new_comment));
910 } else {
911 printf("Enter new comment: ");
912 fflush(stdout);
913 if (!fgets(new_comment, sizeof(new_comment), stdin)) {
914 memset(passphrase, 0, strlen(passphrase));
Damien Millereba71ba2000-04-29 23:57:08 +1000915 key_free(private);
Damien Miller95def091999-11-25 00:26:21 +1100916 exit(1);
917 }
Damien Miller95def091999-11-25 00:26:21 +1100918 if (strchr(new_comment, '\n'))
919 *strchr(new_comment, '\n') = 0;
920 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000921
Damien Miller95def091999-11-25 00:26:21 +1100922 /* Save the file using the new passphrase. */
Ben Lindstromd0fca422001-03-26 13:44:06 +0000923 if (!key_save_private(private, identity_file, passphrase, new_comment)) {
Ben Lindstrom15f33862001-04-16 02:00:02 +0000924 printf("Saving the key failed: %s.\n", identity_file);
Damien Miller95def091999-11-25 00:26:21 +1100925 memset(passphrase, 0, strlen(passphrase));
926 xfree(passphrase);
Damien Millereba71ba2000-04-29 23:57:08 +1000927 key_free(private);
Damien Miller95def091999-11-25 00:26:21 +1100928 xfree(comment);
929 exit(1);
930 }
Damien Miller95def091999-11-25 00:26:21 +1100931 memset(passphrase, 0, strlen(passphrase));
932 xfree(passphrase);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000933 public = key_from_private(private);
Damien Millereba71ba2000-04-29 23:57:08 +1000934 key_free(private);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000935
Damien Miller95def091999-11-25 00:26:21 +1100936 strlcat(identity_file, ".pub", sizeof(identity_file));
Ben Lindstrom5fc62702001-03-09 18:19:24 +0000937 fd = open(identity_file, O_WRONLY | O_CREAT | O_TRUNC, 0644);
938 if (fd == -1) {
Damien Miller95def091999-11-25 00:26:21 +1100939 printf("Could not save your public key in %s\n", identity_file);
940 exit(1);
941 }
Ben Lindstrom5fc62702001-03-09 18:19:24 +0000942 f = fdopen(fd, "w");
943 if (f == NULL) {
944 printf("fdopen %s failed", identity_file);
945 exit(1);
946 }
Damien Millereba71ba2000-04-29 23:57:08 +1000947 if (!key_write(public, f))
948 fprintf(stderr, "write key failed");
949 key_free(public);
950 fprintf(f, " %s\n", new_comment);
Damien Miller95def091999-11-25 00:26:21 +1100951 fclose(f);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000952
Damien Miller95def091999-11-25 00:26:21 +1100953 xfree(comment);
954
955 printf("The comment in your key file has been changed.\n");
956 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000957}
958
Ben Lindstrombba81212001-06-25 05:01:22 +0000959static void
Damien Miller431f66b1999-11-21 18:31:57 +1100960usage(void)
961{
Ben Lindstrom97be31e2001-08-06 21:49:06 +0000962 fprintf(stderr, "Usage: %s [options]\n", __progname);
963 fprintf(stderr, "Options:\n");
Damien Miller9278ffa2005-05-26 11:59:06 +1000964 fprintf(stderr, " -a trials Number of trials for screening DH-GEX moduli.\n");
Ben Lindstrom97be31e2001-08-06 21:49:06 +0000965 fprintf(stderr, " -B Show bubblebabble digest of key file.\n");
Damien Miller9278ffa2005-05-26 11:59:06 +1000966 fprintf(stderr, " -b bits Number of bits in the key to create.\n");
Ben Lindstrom97be31e2001-08-06 21:49:06 +0000967 fprintf(stderr, " -C comment Provide new comment.\n");
Damien Miller9278ffa2005-05-26 11:59:06 +1000968 fprintf(stderr, " -c Change comment in private and public key files.\n");
Ben Lindstrom97be31e2001-08-06 21:49:06 +0000969#ifdef SMARTCARD
970 fprintf(stderr, " -D reader Download public key from smartcard.\n");
Damien Miller9278ffa2005-05-26 11:59:06 +1000971#endif /* SMARTCARD */
972 fprintf(stderr, " -e Convert OpenSSH to IETF SECSH key file.\n");
973 fprintf(stderr, " -F hostname Find hostname in known hosts file.\n");
974 fprintf(stderr, " -f filename Filename of the key file.\n");
975 fprintf(stderr, " -G file Generate candidates for DH-GEX moduli.\n");
976 fprintf(stderr, " -g Use generic DNS resource record format.\n");
977 fprintf(stderr, " -H Hash names in known_hosts file.\n");
978 fprintf(stderr, " -i Convert IETF SECSH to OpenSSH key file.\n");
979 fprintf(stderr, " -l Show fingerprint of key file.\n");
980 fprintf(stderr, " -M memory Amount of memory (MB) to use for generating DH-GEX moduli.\n");
981 fprintf(stderr, " -N phrase Provide new passphrase.\n");
982 fprintf(stderr, " -P phrase Provide old passphrase.\n");
983 fprintf(stderr, " -p Change passphrase of private key file.\n");
984 fprintf(stderr, " -q Quiet.\n");
985 fprintf(stderr, " -R hostname Remove host from known_hosts file.\n");
986 fprintf(stderr, " -r hostname Print DNS resource record.\n");
987 fprintf(stderr, " -S start Start point (hex) for generating DH-GEX moduli.\n");
988 fprintf(stderr, " -T file Screen candidates for DH-GEX moduli.\n");
989 fprintf(stderr, " -t type Specify type of key to create.\n");
990#ifdef SMARTCARD
Ben Lindstrom97be31e2001-08-06 21:49:06 +0000991 fprintf(stderr, " -U reader Upload private key to smartcard.\n");
992#endif /* SMARTCARD */
Damien Miller9278ffa2005-05-26 11:59:06 +1000993 fprintf(stderr, " -v Verbose.\n");
994 fprintf(stderr, " -W gen Generator to use for generating DH-GEX moduli.\n");
995 fprintf(stderr, " -y Read private key file and print public key.\n");
Darren Tucker019cefe2003-08-02 22:40:07 +1000996
Damien Miller95def091999-11-25 00:26:21 +1100997 exit(1);
Damien Miller431f66b1999-11-21 18:31:57 +1100998}
999
Damien Miller95def091999-11-25 00:26:21 +11001000/*
1001 * Main program for key management.
1002 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001003int
1004main(int ac, char **av)
1005{
Damien Millera41c8b12002-01-22 23:05:08 +11001006 char dotsshdir[MAXPATHLEN], comment[1024], *passphrase1, *passphrase2;
Tim Rice2e0e38e2003-09-08 16:11:33 -07001007 char out_file[MAXPATHLEN], *reader_id = NULL;
Damien Miller4b42d7f2005-03-01 21:48:35 +11001008 char *rr_hostname = NULL;
Ben Lindstrom5fc62702001-03-09 18:19:24 +00001009 Key *private, *public;
Damien Miller95def091999-11-25 00:26:21 +11001010 struct passwd *pw;
Damien Miller95def091999-11-25 00:26:21 +11001011 struct stat st;
Damien Millerb089fb52005-05-26 12:16:18 +10001012 int opt, type, fd, download = 0;
Darren Tucker2db8ae62005-06-01 23:02:25 +10001013 u_int32_t memory = 0, generator_wanted = 0, trials = 100;
Darren Tucker019cefe2003-08-02 22:40:07 +10001014 int do_gen_candidates = 0, do_screen_candidates = 0;
Darren Tucker06930c72003-12-31 11:34:51 +11001015 int log_level = SYSLOG_LEVEL_INFO;
Darren Tucker019cefe2003-08-02 22:40:07 +10001016 BIGNUM *start = NULL;
Damien Miller95def091999-11-25 00:26:21 +11001017 FILE *f;
Damien Miller02e754f2005-05-26 12:19:39 +10001018 const char *errstr;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001019
Damien Miller95def091999-11-25 00:26:21 +11001020 extern int optind;
1021 extern char *optarg;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001022
Darren Tuckerce321d82005-10-03 18:11:24 +10001023 /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
1024 sanitise_stdfd();
1025
Damien Miller59d3d5b2003-08-22 09:34:41 +10001026 __progname = ssh_get_progname(av[0]);
Damien Millerf9b625c2000-07-09 22:42:32 +10001027
Damien Millerd3a18572000-06-07 19:55:44 +10001028 SSLeay_add_all_algorithms();
Darren Tucker019cefe2003-08-02 22:40:07 +10001029 log_init(av[0], SYSLOG_LEVEL_INFO, SYSLOG_FACILITY_USER, 1);
1030
Kevin Steves3a881912002-07-20 19:05:40 +00001031 init_rng();
1032 seed_rng();
Damien Millereba71ba2000-04-29 23:57:08 +10001033
Damien Miller5428f641999-11-25 11:54:57 +11001034 /* we need this for the home * directory. */
Damien Miller95def091999-11-25 00:26:21 +11001035 pw = getpwuid(getuid());
1036 if (!pw) {
1037 printf("You don't exist, go away!\n");
1038 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001039 }
Damien Millereba71ba2000-04-29 23:57:08 +10001040 if (gethostname(hostname, sizeof(hostname)) < 0) {
1041 perror("gethostname");
1042 exit(1);
1043 }
Damien Miller5428f641999-11-25 11:54:57 +11001044
Darren Tucker019cefe2003-08-02 22:40:07 +10001045 while ((opt = getopt(ac, av,
Damien Miller4b42d7f2005-03-01 21:48:35 +11001046 "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 +11001047 switch (opt) {
1048 case 'b':
Damien Millerb089fb52005-05-26 12:16:18 +10001049 bits = strtonum(optarg, 512, 32768, &errstr);
Damien Miller02e754f2005-05-26 12:19:39 +10001050 if (errstr)
1051 fatal("Bits has bad value %s (%s)",
1052 optarg, errstr);
Damien Miller95def091999-11-25 00:26:21 +11001053 break;
Damien Miller4b42d7f2005-03-01 21:48:35 +11001054 case 'F':
1055 find_host = 1;
1056 rr_hostname = optarg;
1057 break;
1058 case 'H':
1059 hash_hosts = 1;
1060 break;
1061 case 'R':
1062 delete_host = 1;
1063 rr_hostname = optarg;
1064 break;
Damien Miller95def091999-11-25 00:26:21 +11001065 case 'l':
1066 print_fingerprint = 1;
1067 break;
Ben Lindstrom8fd372b2001-03-12 03:02:17 +00001068 case 'B':
1069 print_bubblebabble = 1;
1070 break;
Damien Miller95def091999-11-25 00:26:21 +11001071 case 'p':
1072 change_passphrase = 1;
1073 break;
Damien Miller95def091999-11-25 00:26:21 +11001074 case 'c':
1075 change_comment = 1;
1076 break;
Damien Miller95def091999-11-25 00:26:21 +11001077 case 'f':
Damien Millerb089fb52005-05-26 12:16:18 +10001078 if (strlcpy(identity_file, optarg, sizeof(identity_file)) >=
1079 sizeof(identity_file))
1080 fatal("Identity filename too long");
Damien Miller95def091999-11-25 00:26:21 +11001081 have_identity = 1;
1082 break;
Damien Miller37876e92003-05-15 10:19:46 +10001083 case 'g':
1084 print_generic = 1;
1085 break;
Damien Miller95def091999-11-25 00:26:21 +11001086 case 'P':
1087 identity_passphrase = optarg;
1088 break;
Damien Miller95def091999-11-25 00:26:21 +11001089 case 'N':
1090 identity_new_passphrase = optarg;
1091 break;
Damien Miller95def091999-11-25 00:26:21 +11001092 case 'C':
1093 identity_comment = optarg;
1094 break;
Damien Miller95def091999-11-25 00:26:21 +11001095 case 'q':
1096 quiet = 1;
1097 break;
Ben Lindstrom5a707822001-04-22 17:15:46 +00001098 case 'e':
Damien Millereba71ba2000-04-29 23:57:08 +10001099 case 'x':
Ben Lindstrom5a707822001-04-22 17:15:46 +00001100 /* export key */
Damien Millereba71ba2000-04-29 23:57:08 +10001101 convert_to_ssh2 = 1;
1102 break;
Ben Lindstrom5a707822001-04-22 17:15:46 +00001103 case 'i':
Damien Millereba71ba2000-04-29 23:57:08 +10001104 case 'X':
Ben Lindstrom5a707822001-04-22 17:15:46 +00001105 /* import key */
Damien Millereba71ba2000-04-29 23:57:08 +10001106 convert_from_ssh2 = 1;
1107 break;
Damien Millereba71ba2000-04-29 23:57:08 +10001108 case 'y':
1109 print_public = 1;
1110 break;
Damien Millereba71ba2000-04-29 23:57:08 +10001111 case 'd':
Damien Miller0bc1bd82000-11-13 22:57:25 +11001112 key_type_name = "dsa";
Damien Millereba71ba2000-04-29 23:57:08 +10001113 break;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001114 case 't':
1115 key_type_name = optarg;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001116 break;
Ben Lindstrom8282d6a2001-08-06 21:44:05 +00001117 case 'D':
1118 download = 1;
Ben Lindstromf19578c2001-08-06 21:46:54 +00001119 case 'U':
Ben Lindstrom8282d6a2001-08-06 21:44:05 +00001120 reader_id = optarg;
Ben Lindstromcd392282001-07-04 03:44:03 +00001121 break;
Darren Tucker06930c72003-12-31 11:34:51 +11001122 case 'v':
1123 if (log_level == SYSLOG_LEVEL_INFO)
1124 log_level = SYSLOG_LEVEL_DEBUG1;
1125 else {
Darren Tuckerfc959702004-07-17 16:12:08 +10001126 if (log_level >= SYSLOG_LEVEL_DEBUG1 &&
Darren Tucker06930c72003-12-31 11:34:51 +11001127 log_level < SYSLOG_LEVEL_DEBUG3)
1128 log_level++;
1129 }
1130 break;
Damien Miller37876e92003-05-15 10:19:46 +10001131 case 'r':
Damien Miller4b42d7f2005-03-01 21:48:35 +11001132 rr_hostname = optarg;
Damien Miller37876e92003-05-15 10:19:46 +10001133 break;
Darren Tucker019cefe2003-08-02 22:40:07 +10001134 case 'W':
Damien Millerb089fb52005-05-26 12:16:18 +10001135 generator_wanted = strtonum(optarg, 1, UINT_MAX, &errstr);
1136 if (errstr)
1137 fatal("Desired generator has bad value: %s (%s)",
1138 optarg, errstr);
Darren Tucker019cefe2003-08-02 22:40:07 +10001139 break;
1140 case 'a':
Damien Millerb089fb52005-05-26 12:16:18 +10001141 trials = strtonum(optarg, 1, UINT_MAX, &errstr);
1142 if (errstr)
1143 fatal("Invalid number of trials: %s (%s)",
1144 optarg, errstr);
Darren Tucker019cefe2003-08-02 22:40:07 +10001145 break;
1146 case 'M':
Damien Millerb089fb52005-05-26 12:16:18 +10001147 memory = strtonum(optarg, 1, UINT_MAX, &errstr);
1148 if (errstr) {
1149 fatal("Memory limit is %s: %s", errstr, optarg);
1150 }
Darren Tucker019cefe2003-08-02 22:40:07 +10001151 break;
1152 case 'G':
1153 do_gen_candidates = 1;
Damien Millerb089fb52005-05-26 12:16:18 +10001154 if (strlcpy(out_file, optarg, sizeof(out_file)) >=
1155 sizeof(out_file))
1156 fatal("Output filename too long");
Darren Tucker019cefe2003-08-02 22:40:07 +10001157 break;
1158 case 'T':
1159 do_screen_candidates = 1;
Damien Millerb089fb52005-05-26 12:16:18 +10001160 if (strlcpy(out_file, optarg, sizeof(out_file)) >=
1161 sizeof(out_file))
1162 fatal("Output filename too long");
Darren Tucker019cefe2003-08-02 22:40:07 +10001163 break;
1164 case 'S':
1165 /* XXX - also compare length against bits */
1166 if (BN_hex2bn(&start, optarg) == 0)
1167 fatal("Invalid start point.");
1168 break;
Damien Miller95def091999-11-25 00:26:21 +11001169 case '?':
1170 default:
1171 usage();
1172 }
1173 }
Darren Tucker06930c72003-12-31 11:34:51 +11001174
1175 /* reinit */
1176 log_init(av[0], log_level, SYSLOG_FACILITY_USER, 1);
1177
Damien Miller95def091999-11-25 00:26:21 +11001178 if (optind < ac) {
1179 printf("Too many arguments.\n");
1180 usage();
1181 }
1182 if (change_passphrase && change_comment) {
1183 printf("Can only have one of -p and -c.\n");
1184 usage();
1185 }
Damien Miller4b42d7f2005-03-01 21:48:35 +11001186 if (delete_host || hash_hosts || find_host)
1187 do_known_hosts(pw, rr_hostname);
Ben Lindstrom8fd372b2001-03-12 03:02:17 +00001188 if (print_fingerprint || print_bubblebabble)
Damien Miller95def091999-11-25 00:26:21 +11001189 do_fingerprint(pw);
Damien Miller95def091999-11-25 00:26:21 +11001190 if (change_passphrase)
1191 do_change_passphrase(pw);
Damien Miller4a10d2e2002-03-11 22:53:29 +11001192 if (change_comment)
1193 do_change_comment(pw);
Kevin Steves3a881912002-07-20 19:05:40 +00001194 if (convert_to_ssh2)
1195 do_convert_to_ssh2(pw);
1196 if (convert_from_ssh2)
1197 do_convert_from_ssh2(pw);
Damien Millereba71ba2000-04-29 23:57:08 +10001198 if (print_public)
1199 do_print_public(pw);
Damien Miller4b42d7f2005-03-01 21:48:35 +11001200 if (rr_hostname != NULL) {
1201 do_print_resource_record(pw, rr_hostname);
Damien Miller37876e92003-05-15 10:19:46 +10001202 }
Ben Lindstrom8282d6a2001-08-06 21:44:05 +00001203 if (reader_id != NULL) {
Ben Lindstrom6818bfb2001-08-06 21:40:04 +00001204#ifdef SMARTCARD
Ben Lindstrom8282d6a2001-08-06 21:44:05 +00001205 if (download)
1206 do_download(pw, reader_id);
1207 else
1208 do_upload(pw, reader_id);
Ben Lindstromffce1472001-08-06 21:57:31 +00001209#else /* SMARTCARD */
Ben Lindstrom6818bfb2001-08-06 21:40:04 +00001210 fatal("no support for smartcards.");
Ben Lindstromffce1472001-08-06 21:57:31 +00001211#endif /* SMARTCARD */
Ben Lindstrom8282d6a2001-08-06 21:44:05 +00001212 }
Damien Miller95def091999-11-25 00:26:21 +11001213
Darren Tucker019cefe2003-08-02 22:40:07 +10001214 if (do_gen_candidates) {
1215 FILE *out = fopen(out_file, "w");
Damien Miller787b2ec2003-11-21 23:56:47 +11001216
Darren Tucker019cefe2003-08-02 22:40:07 +10001217 if (out == NULL) {
1218 error("Couldn't open modulus candidate file \"%s\": %s",
1219 out_file, strerror(errno));
1220 return (1);
1221 }
Damien Miller3f54a9f2005-11-05 14:52:18 +11001222 if (bits == 0)
1223 bits = DEFAULT_BITS;
Darren Tucker019cefe2003-08-02 22:40:07 +10001224 if (gen_candidates(out, memory, bits, start) != 0)
Damien Miller15d72a02005-11-05 15:07:33 +11001225 fatal("modulus candidate generation failed");
Darren Tucker019cefe2003-08-02 22:40:07 +10001226
1227 return (0);
1228 }
1229
1230 if (do_screen_candidates) {
1231 FILE *in;
1232 FILE *out = fopen(out_file, "w");
1233
1234 if (have_identity && strcmp(identity_file, "-") != 0) {
1235 if ((in = fopen(identity_file, "r")) == NULL) {
1236 fatal("Couldn't open modulus candidate "
Damien Millera8e06ce2003-11-21 23:48:55 +11001237 "file \"%s\": %s", identity_file,
Darren Tucker019cefe2003-08-02 22:40:07 +10001238 strerror(errno));
1239 }
1240 } else
1241 in = stdin;
1242
1243 if (out == NULL) {
1244 fatal("Couldn't open moduli file \"%s\": %s",
1245 out_file, strerror(errno));
1246 }
1247 if (prime_test(in, out, trials, generator_wanted) != 0)
Damien Miller15d72a02005-11-05 15:07:33 +11001248 fatal("modulus screening failed");
Darren Tuckerf4220e62003-08-21 16:44:07 +10001249 return (0);
Darren Tucker019cefe2003-08-02 22:40:07 +10001250 }
1251
Damien Miller95def091999-11-25 00:26:21 +11001252 arc4random_stir();
1253
Damien Miller154dda72002-01-22 23:08:16 +11001254 if (key_type_name == NULL) {
1255 printf("You must specify a key type (-t).\n");
1256 usage();
1257 }
Damien Millere39cacc2000-11-29 12:18:44 +11001258 type = key_type_from_name(key_type_name);
1259 if (type == KEY_UNSPEC) {
1260 fprintf(stderr, "unknown key type %s\n", key_type_name);
1261 exit(1);
Damien Millereba71ba2000-04-29 23:57:08 +10001262 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11001263 if (!quiet)
Damien Millere39cacc2000-11-29 12:18:44 +11001264 printf("Generating public/private %s key pair.\n", key_type_name);
Damien Miller3f54a9f2005-11-05 14:52:18 +11001265 if (bits == 0)
1266 bits = (type == KEY_DSA) ? DEFAULT_BITS_DSA : DEFAULT_BITS;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001267 private = key_generate(type, bits);
1268 if (private == NULL) {
1269 fprintf(stderr, "key_generate failed");
1270 exit(1);
1271 }
1272 public = key_from_private(private);
Damien Miller95def091999-11-25 00:26:21 +11001273
1274 if (!have_identity)
1275 ask_filename(pw, "Enter file in which to save the key");
1276
Damien Miller788f2122005-11-05 15:14:59 +11001277 /* Create ~/.ssh directory if it doesn't already exist. */
Ben Lindstrom226cfa02001-01-22 05:34:40 +00001278 snprintf(dotsshdir, sizeof dotsshdir, "%s/%s", pw->pw_dir, _PATH_SSH_USER_DIR);
Damien Miller95def091999-11-25 00:26:21 +11001279 if (strstr(identity_file, dotsshdir) != NULL &&
1280 stat(dotsshdir, &st) < 0) {
Damien Millerbe484b52000-07-15 14:14:16 +10001281 if (mkdir(dotsshdir, 0700) < 0)
Damien Miller95def091999-11-25 00:26:21 +11001282 error("Could not create directory '%s'.", dotsshdir);
1283 else if (!quiet)
1284 printf("Created directory '%s'.\n", dotsshdir);
1285 }
1286 /* If the file already exists, ask the user to confirm. */
1287 if (stat(identity_file, &st) >= 0) {
1288 char yesno[3];
1289 printf("%s already exists.\n", identity_file);
1290 printf("Overwrite (y/n)? ");
1291 fflush(stdout);
1292 if (fgets(yesno, sizeof(yesno), stdin) == NULL)
1293 exit(1);
1294 if (yesno[0] != 'y' && yesno[0] != 'Y')
1295 exit(1);
1296 }
1297 /* Ask for a passphrase (twice). */
1298 if (identity_passphrase)
1299 passphrase1 = xstrdup(identity_passphrase);
1300 else if (identity_new_passphrase)
1301 passphrase1 = xstrdup(identity_new_passphrase);
1302 else {
1303passphrase_again:
1304 passphrase1 =
Ben Lindstrom949974b2001-06-25 05:20:31 +00001305 read_passphrase("Enter passphrase (empty for no "
1306 "passphrase): ", RP_ALLOW_STDIN);
1307 passphrase2 = read_passphrase("Enter same passphrase again: ",
1308 RP_ALLOW_STDIN);
Damien Miller95def091999-11-25 00:26:21 +11001309 if (strcmp(passphrase1, passphrase2) != 0) {
Ben Lindstrom949974b2001-06-25 05:20:31 +00001310 /*
1311 * The passphrases do not match. Clear them and
1312 * retry.
1313 */
Damien Miller95def091999-11-25 00:26:21 +11001314 memset(passphrase1, 0, strlen(passphrase1));
1315 memset(passphrase2, 0, strlen(passphrase2));
1316 xfree(passphrase1);
1317 xfree(passphrase2);
1318 printf("Passphrases do not match. Try again.\n");
1319 goto passphrase_again;
1320 }
1321 /* Clear the other copy of the passphrase. */
1322 memset(passphrase2, 0, strlen(passphrase2));
1323 xfree(passphrase2);
1324 }
1325
Damien Miller95def091999-11-25 00:26:21 +11001326 if (identity_comment) {
1327 strlcpy(comment, identity_comment, sizeof(comment));
1328 } else {
Damien Miller4af51302000-04-16 11:18:38 +10001329 /* Create default commend field for the passphrase. */
Damien Miller95def091999-11-25 00:26:21 +11001330 snprintf(comment, sizeof comment, "%s@%s", pw->pw_name, hostname);
1331 }
1332
1333 /* Save the key with the given passphrase and comment. */
Ben Lindstromd0fca422001-03-26 13:44:06 +00001334 if (!key_save_private(private, identity_file, passphrase1, comment)) {
Ben Lindstrom15f33862001-04-16 02:00:02 +00001335 printf("Saving the key failed: %s.\n", identity_file);
Damien Miller95def091999-11-25 00:26:21 +11001336 memset(passphrase1, 0, strlen(passphrase1));
1337 xfree(passphrase1);
1338 exit(1);
1339 }
1340 /* Clear the passphrase. */
1341 memset(passphrase1, 0, strlen(passphrase1));
1342 xfree(passphrase1);
1343
1344 /* Clear the private key and the random number generator. */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001345 key_free(private);
Damien Miller95def091999-11-25 00:26:21 +11001346 arc4random_stir();
1347
1348 if (!quiet)
1349 printf("Your identification has been saved in %s.\n", identity_file);
1350
Damien Miller95def091999-11-25 00:26:21 +11001351 strlcat(identity_file, ".pub", sizeof(identity_file));
Ben Lindstrom5fc62702001-03-09 18:19:24 +00001352 fd = open(identity_file, O_WRONLY | O_CREAT | O_TRUNC, 0644);
1353 if (fd == -1) {
Damien Miller95def091999-11-25 00:26:21 +11001354 printf("Could not save your public key in %s\n", identity_file);
1355 exit(1);
1356 }
Ben Lindstrom5fc62702001-03-09 18:19:24 +00001357 f = fdopen(fd, "w");
1358 if (f == NULL) {
1359 printf("fdopen %s failed", identity_file);
1360 exit(1);
1361 }
Damien Millereba71ba2000-04-29 23:57:08 +10001362 if (!key_write(public, f))
1363 fprintf(stderr, "write key failed");
1364 fprintf(f, " %s\n", comment);
Damien Miller95def091999-11-25 00:26:21 +11001365 fclose(f);
1366
1367 if (!quiet) {
Ben Lindstromcfccef92001-03-13 04:57:58 +00001368 char *fp = key_fingerprint(public, SSH_FP_MD5, SSH_FP_HEX);
Damien Millereba71ba2000-04-29 23:57:08 +10001369 printf("Your public key has been saved in %s.\n",
1370 identity_file);
Damien Miller95def091999-11-25 00:26:21 +11001371 printf("The key fingerprint is:\n");
Ben Lindstromcfccef92001-03-13 04:57:58 +00001372 printf("%s %s\n", fp, comment);
1373 xfree(fp);
Damien Miller95def091999-11-25 00:26:21 +11001374 }
Damien Millereba71ba2000-04-29 23:57:08 +10001375
1376 key_free(public);
Damien Miller95def091999-11-25 00:26:21 +11001377 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001378}