]> andersk Git - openssh.git/blame - ssh-keygen.c
- (dtucker) [includes.h] Bug #1122: __USE_GNU is a glibc internal macro, use
[openssh.git] / ssh-keygen.c
CommitLineData
8efc0c15 1/*
5260325f 2 * Author: Tatu Ylonen <ylo@cs.hut.fi>
3 * Copyright (c) 1994 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4 * All rights reserved
5260325f 5 * Identity and host key generation and maintenance.
bcbf86ec 6 *
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".
5260325f 12 */
8efc0c15 13
14#include "includes.h"
c6d7b211 15RCSID("$OpenBSD: ssh-keygen.c,v 1.134 2005/11/28 05:16:53 dtucker Exp $");
8efc0c15 16
a306f2dd 17#include <openssl/evp.h>
18#include <openssl/pem.h>
a306f2dd 19
8efc0c15 20#include "xmalloc.h"
a306f2dd 21#include "key.h"
457fc0c6 22#include "rsa.h"
a306f2dd 23#include "authfile.h"
24#include "uuencode.h"
94ec8c6b 25#include "buffer.h"
26#include "bufaux.h"
42f11eb2 27#include "pathnames.h"
28#include "log.h"
58ae9cb8 29#include "misc.h"
bdffbcdc 30#include "match.h"
31#include "hostfile.h"
94ec8c6b 32
93a56445 33#ifdef SMARTCARD
93a56445 34#include "scard.h"
dd2495cb 35#endif
02159d9b 36#include "dns.h"
2b30154a 37
255d3e00 38/* 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;
8efc0c15 42
aa3378df 43/*
44 * Flag indicating that we just want to change the passphrase. This can be
45 * set on the command line.
46 */
8efc0c15 47int change_passphrase = 0;
48
aa3378df 49/*
50 * Flag indicating that we just want to change the comment. This can be set
51 * on the command line.
52 */
8efc0c15 53int change_comment = 0;
54
55int quiet = 0;
56
bdffbcdc 57/* 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
f095fcc7 64/* Flag indicating that we just want to see the key fingerprint */
65int print_fingerprint = 0;
aaf45d87 66int print_bubblebabble = 0;
f095fcc7 67
5ad13cd7 68/* The identity file name, given on the command line or entered by the user. */
69char identity_file[1024];
70int have_identity = 0;
8efc0c15 71
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
a306f2dd 81/* 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;
21289cd0 85int print_generic = 0;
fa08c86b 86
3dc93cd8 87char *key_type_name = NULL;
a306f2dd 88
5ad13cd7 89/* argv0 */
90extern char *__progname;
8efc0c15 91
a306f2dd 92char hostname[MAXHOSTNAMELEN];
93
20eea1d7 94/* moduli.c */
c784ae09 95int gen_candidates(FILE *, u_int32_t, u_int32_t, BIGNUM *);
20eea1d7 96int prime_test(FILE *, FILE *, u_int32_t, u_int32_t);
97
396c147e 98static void
5ad13cd7 99ask_filename(struct passwd *pw, const char *prompt)
8efc0c15 100{
5260325f 101 char buf[1024];
c523303b 102 char *name = NULL;
103
8d22d775 104 if (key_type_name == NULL)
42f11eb2 105 name = _PATH_SSH_CLIENT_ID_RSA;
8d22d775 106 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
c523303b 123 snprintf(identity_file, sizeof(identity_file), "%s/%s", pw->pw_dir, name);
8d88011e 124 fprintf(stderr, "%s (%s): ", prompt, identity_file);
5260325f 125 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;
f095fcc7 132}
8efc0c15 133
396c147e 134static Key *
abe0fb9f 135load_identity(char *filename)
a306f2dd 136{
aeaa3d9e 137 char *pass;
138 Key *prv;
139
cd332296 140 prv = key_load_private(filename, "", NULL);
aeaa3d9e 141 if (prv == NULL) {
abe0fb9f 142 if (identity_passphrase)
143 pass = xstrdup(identity_passphrase);
144 else
1843a425 145 pass = read_passphrase("Enter passphrase: ",
146 RP_ALLOW_STDIN);
aeaa3d9e 147 prv = key_load_private(filename, pass, NULL);
a306f2dd 148 memset(pass, 0, strlen(pass));
149 xfree(pass);
150 }
aeaa3d9e 151 return prv;
a306f2dd 152}
153
94ec8c6b 154#define SSH_COM_PUBLIC_BEGIN "---- BEGIN SSH2 PUBLIC KEY ----"
7203d6bb 155#define SSH_COM_PUBLIC_END "---- END SSH2 PUBLIC KEY ----"
94ec8c6b 156#define SSH_COM_PRIVATE_BEGIN "---- BEGIN SSH2 ENCRYPTED PRIVATE KEY ----"
2b87da3b 157#define SSH_COM_PRIVATE_KEY_MAGIC 0x3f6ff9eb
a306f2dd 158
396c147e 159static void
a306f2dd 160do_convert_to_ssh2(struct passwd *pw)
161{
b587c165 162 Key *k;
21b30f38 163 u_int len;
1e3b8b07 164 u_char *blob;
a306f2dd 165 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 }
b587c165 173 if ((k = key_load_public(identity_file, NULL)) == NULL) {
abe0fb9f 174 if ((k = load_identity(identity_file)) == NULL) {
b587c165 175 fprintf(stderr, "load failed\n");
176 exit(1);
177 }
a306f2dd 178 }
3566c73c 179 if (k->type == KEY_RSA1) {
180 fprintf(stderr, "version 1 keys are not supported\n");
181 exit(1);
182 }
f7436b8c 183 if (key_to_blob(k, &blob, &len) <= 0) {
184 fprintf(stderr, "key_to_blob failed\n");
185 exit(1);
186 }
94ec8c6b 187 fprintf(stdout, "%s\n", SSH_COM_PUBLIC_BEGIN);
a306f2dd 188 fprintf(stdout,
512df038 189 "Comment: \"%u-bit %s, converted from OpenSSH by %s@%s\"\n",
b587c165 190 key_size(k), key_type(k),
a306f2dd 191 pw->pw_name, hostname);
192 dump_base64(stdout, blob, len);
94ec8c6b 193 fprintf(stdout, "%s\n", SSH_COM_PUBLIC_END);
b587c165 194 key_free(k);
a306f2dd 195 xfree(blob);
196 exit(0);
197}
198
396c147e 199static void
94ec8c6b 200buffer_get_bignum_bits(Buffer *b, BIGNUM *value)
201{
ca75d7de 202 u_int bignum_bits = buffer_get_int(b);
203 u_int bytes = (bignum_bits + 7) / 8;
457fc0c6 204
94ec8c6b 205 if (buffer_len(b) < bytes)
457fc0c6 206 fatal("buffer_get_bignum_bits: input buffer too small: "
207 "need %d have %d", bytes, buffer_len(b));
20905a8e 208 BN_bin2bn(buffer_ptr(b), bytes, value);
94ec8c6b 209 buffer_consume(b, bytes);
210}
211
396c147e 212static Key *
c66f9d0e 213do_convert_private_ssh2_from_blob(u_char *blob, u_int blen)
94ec8c6b 214{
215 Buffer b;
94ec8c6b 216 Key *key = NULL;
a599bd06 217 char *type, *cipher;
d3260e12 218 u_char *sig, data[] = "abcde12345";
2e0becb6 219 int magic, rlen, ktype, i1, i2, i3, i4;
a599bd06 220 u_int slen;
2e0becb6 221 u_long e;
94ec8c6b 222
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 }
2e0becb6 232 i1 = buffer_get_int(&b);
94ec8c6b 233 type = buffer_get_string(&b, NULL);
234 cipher = buffer_get_string(&b, NULL);
2e0becb6 235 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);
94ec8c6b 239 if (strcmp(cipher, "none") != 0) {
240 error("unsupported cipher %s", cipher);
241 xfree(cipher);
242 buffer_free(&b);
457fc0c6 243 xfree(type);
94ec8c6b 244 return NULL;
245 }
246 xfree(cipher);
247
457fc0c6 248 if (strstr(type, "dsa")) {
249 ktype = KEY_DSA;
250 } else if (strstr(type, "rsa")) {
251 ktype = KEY_RSA;
252 } else {
3c460ede 253 buffer_free(&b);
457fc0c6 254 xfree(type);
94ec8c6b 255 return NULL;
256 }
457fc0c6 257 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:
2e0becb6 269 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)) {
457fc0c6 280 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);
2b63e803 289 rsa_generate_additional_parameters(key->rsa);
457fc0c6 290 break;
291 }
94ec8c6b 292 rlen = buffer_len(&b);
6aacefa7 293 if (rlen != 0)
457fc0c6 294 error("do_convert_private_ssh2_from_blob: "
295 "remaining bytes in key blob %d", rlen);
94ec8c6b 296 buffer_free(&b);
a599bd06 297
298 /* try the key */
299 key_sign(key, &sig, &slen, data, sizeof(data));
300 key_verify(key, sig, slen, data, sizeof(data));
301 xfree(sig);
94ec8c6b 302 return key;
303}
304
396c147e 305static void
a306f2dd 306do_convert_from_ssh2(struct passwd *pw)
307{
308 Key *k;
309 int blen;
783dbbdc 310 u_int len;
a306f2dd 311 char line[1024], *p;
cf54363d 312 u_char blob[8096];
a306f2dd 313 char encoded[8096];
314 struct stat st;
94ec8c6b 315 int escaped = 0, private = 0, ok;
a306f2dd 316 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)) {
d0c832f3 331 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++;
a306f2dd 337 if (strncmp(line, "----", 4) == 0 ||
338 strstr(line, ": ") != NULL) {
94ec8c6b 339 if (strstr(line, SSH_COM_PRIVATE_BEGIN) != NULL)
340 private = 1;
a599bd06 341 if (strstr(line, " END ") != NULL) {
342 break;
343 }
012bc0e1 344 /* fprintf(stderr, "ignore: %s", line); */
a306f2dd 345 continue;
346 }
d0c832f3 347 if (escaped) {
348 escaped--;
012bc0e1 349 /* fprintf(stderr, "escaped: %s", line); */
d0c832f3 350 continue;
a306f2dd 351 }
352 *p = '\0';
353 strlcat(encoded, line, sizeof(encoded));
354 }
783dbbdc 355 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';
e6207598 361 blen = uudecode(encoded, blob, sizeof(blob));
a306f2dd 362 if (blen < 0) {
363 fprintf(stderr, "uudecode failed.\n");
364 exit(1);
365 }
94ec8c6b 366 k = private ?
367 do_convert_private_ssh2_from_blob(blob, blen) :
fa08c86b 368 key_from_blob(blob, blen);
94ec8c6b 369 if (k == NULL) {
370 fprintf(stderr, "decode blob failed.\n");
371 exit(1);
372 }
373 ok = private ?
457fc0c6 374 (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)) :
94ec8c6b 377 key_write(k, stdout);
378 if (!ok) {
379 fprintf(stderr, "key write failed");
380 exit(1);
381 }
a306f2dd 382 key_free(k);
4ccb828d 383 if (!private)
384 fprintf(stdout, "\n");
a306f2dd 385 fclose(fp);
386 exit(0);
387}
388
396c147e 389static void
a306f2dd 390do_print_public(struct passwd *pw)
391{
aeaa3d9e 392 Key *prv;
a306f2dd 393 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 }
abe0fb9f 401 prv = load_identity(identity_file);
aeaa3d9e 402 if (prv == NULL) {
a306f2dd 403 fprintf(stderr, "load failed\n");
404 exit(1);
405 }
aeaa3d9e 406 if (!key_write(prv, stdout))
a306f2dd 407 fprintf(stderr, "key_write failed");
aeaa3d9e 408 key_free(prv);
a306f2dd 409 fprintf(stdout, "\n");
410 exit(0);
411}
412
4f831fd7 413#ifdef SMARTCARD
2b30154a 414static void
93a56445 415do_upload(struct passwd *pw, const char *sc_reader_id)
2b30154a 416{
2b30154a 417 Key *prv = NULL;
418 struct stat st;
b9f62352 419 int ret;
420
2b30154a 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);
b9f62352 425 exit(1);
2b30154a 426 }
427 prv = load_identity(identity_file);
428 if (prv == NULL) {
429 error("load failed");
b9f62352 430 exit(1);
49ccba9c 431 }
b9f62352 432 ret = sc_put_key(prv, sc_reader_id);
433 key_free(prv);
434 if (ret < 0)
435 exit(1);
bbe88b6d 436 logit("loading key done");
b9f62352 437 exit(0);
2b30154a 438}
93a56445 439
440static void
441do_download(struct passwd *pw, const char *sc_reader_id)
442{
0659cace 443 Key **keys = NULL;
444 int i;
93a56445 445
0659cace 446 keys = sc_get_keys(sc_reader_id, NULL);
447 if (keys == NULL)
93a56445 448 fatal("cannot read public key from smartcard");
0659cace 449 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);
93a56445 455 exit(0);
456}
3e984472 457#endif /* SMARTCARD */
2b30154a 458
396c147e 459static void
f095fcc7 460do_fingerprint(struct passwd *pw)
461{
c8d54615 462 FILE *f;
a306f2dd 463 Key *public;
aaf45d87 464 char *comment = NULL, *cp, *ep, line[16*1024], *fp;
17a3011c 465 int i, skip = 0, num = 1, invalid = 1;
466 enum fp_rep rep;
467 enum fp_type fptype;
5260325f 468 struct stat st;
469
aeaa3d9e 470 fptype = print_bubblebabble ? SSH_FP_SHA1 : SSH_FP_MD5;
471 rep = print_bubblebabble ? SSH_FP_BUBBLEBABBLE : SSH_FP_HEX;
aaf45d87 472
5260325f 473 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 }
aeaa3d9e 479 public = key_load_public(identity_file, &comment);
480 if (public != NULL) {
481 fp = key_fingerprint(public, fptype, rep);
512df038 482 printf("%u %s %s\n", key_size(public), fp, comment);
a306f2dd 483 key_free(public);
fa08c86b 484 xfree(comment);
aaf45d87 485 xfree(fp);
c8d54615 486 exit(0);
487 }
aeaa3d9e 488 if (comment)
489 xfree(comment);
c8d54615 490
491 f = fopen(identity_file, "r");
492 if (f != NULL) {
c8d54615 493 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;
499 }
500 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;
512df038 516 for (; *cp && (quoted || (*cp != ' ' &&
517 *cp != '\t')); cp++) {
c8d54615 518 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;
efcae5b1 528 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 }
5260325f 537 }
efcae5b1 538 comment = *cp ? cp : comment;
aeaa3d9e 539 fp = key_fingerprint(public, fptype, rep);
512df038 540 printf("%u %s %s\n", key_size(public), fp,
efcae5b1 541 comment ? comment : "no comment");
aaf45d87 542 xfree(fp);
aeaa3d9e 543 key_free(public);
efcae5b1 544 invalid = 0;
5260325f 545 }
c8d54615 546 fclose(f);
547 }
548 if (invalid) {
f564d016 549 printf("%s is not a public key file.\n", identity_file);
c8d54615 550 exit(1);
5260325f 551 }
5260325f 552 exit(0);
f095fcc7 553}
554
bdffbcdc 555static 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) {
f8cc7664 689 for (cp2 = strsep(&cp, ",");
bdffbcdc 690 cp2 != NULL && *cp2 != '\0';
bc7119ba 691 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 }
bdffbcdc 700 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 "
604dac32 712 "file because of errors\n");
bdffbcdc 713 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 "
4e2e5cfd 743 "of hostnames\n");
bdffbcdc 744 }
745 }
746
747 exit(0);
748}
749
5260325f 750/*
751 * Perform changing a passphrase. The argument is the passwd structure
752 * for the current user.
753 */
396c147e 754static void
f095fcc7 755do_change_passphrase(struct passwd *pw)
756{
5260325f 757 char *comment;
758 char *old_passphrase, *passphrase1, *passphrase2;
759 struct stat st;
a306f2dd 760 Key *private;
5260325f 761
762 if (!have_identity)
763 ask_filename(pw, "Enter file in which the key is");
5260325f 764 if (stat(identity_file, &st) < 0) {
765 perror(identity_file);
766 exit(1);
767 }
5260325f 768 /* Try to load the file with empty passphrase. */
aeaa3d9e 769 private = key_load_private(identity_file, "", &comment);
770 if (private == NULL) {
5260325f 771 if (identity_passphrase)
772 old_passphrase = xstrdup(identity_passphrase);
773 else
1843a425 774 old_passphrase =
775 read_passphrase("Enter old passphrase: ",
776 RP_ALLOW_STDIN);
777 private = key_load_private(identity_file, old_passphrase,
778 &comment);
aeaa3d9e 779 memset(old_passphrase, 0, strlen(old_passphrase));
780 xfree(old_passphrase);
781 if (private == NULL) {
5260325f 782 printf("Bad passphrase.\n");
783 exit(1);
784 }
5260325f 785 }
786 printf("Key has comment '%s'\n", comment);
787
788 /* Ask the new passphrase (twice). */
789 if (identity_new_passphrase) {
790 passphrase1 = xstrdup(identity_new_passphrase);
791 passphrase2 = NULL;
792 } else {
793 passphrase1 =
1843a425 794 read_passphrase("Enter new passphrase (empty for no "
795 "passphrase): ", RP_ALLOW_STDIN);
796 passphrase2 = read_passphrase("Enter same passphrase again: ",
184eed6a 797 RP_ALLOW_STDIN);
5260325f 798
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);
8efc0c15 811 }
8efc0c15 812
5260325f 813 /* Save the file using the new passphrase. */
aeaa3d9e 814 if (!key_save_private(private, identity_file, passphrase1, comment)) {
58cfa257 815 printf("Saving the key failed: %s.\n", identity_file);
5260325f 816 memset(passphrase1, 0, strlen(passphrase1));
817 xfree(passphrase1);
a306f2dd 818 key_free(private);
5260325f 819 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);
a306f2dd 825 key_free(private); /* Destroys contents */
5260325f 826 xfree(comment);
827
828 printf("Your identification has been saved with the new passphrase.\n");
829 exit(0);
830}
8efc0c15 831
21289cd0 832/*
833 * Print the SSHFP RR.
834 */
835static void
ca75d7de 836do_print_resource_record(struct passwd *pw, char *hname)
21289cd0 837{
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) {
ca75d7de 850 export_dns_rr(hname, public, stdout, print_generic);
21289cd0 851 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}
21289cd0 861
5260325f 862/*
863 * Change the comment of a private key file.
864 */
396c147e 865static void
8efc0c15 866do_change_comment(struct passwd *pw)
867{
1c9a907f 868 char new_comment[1024], *comment, *passphrase;
aeaa3d9e 869 Key *private;
870 Key *public;
5260325f 871 struct stat st;
872 FILE *f;
1c9a907f 873 int fd;
5260325f 874
875 if (!have_identity)
876 ask_filename(pw, "Enter file in which the key is");
5260325f 877 if (stat(identity_file, &st) < 0) {
878 perror(identity_file);
879 exit(1);
880 }
aeaa3d9e 881 private = key_load_private(identity_file, "", &comment);
882 if (private == NULL) {
5260325f 883 if (identity_passphrase)
884 passphrase = xstrdup(identity_passphrase);
885 else if (identity_new_passphrase)
886 passphrase = xstrdup(identity_new_passphrase);
887 else
1843a425 888 passphrase = read_passphrase("Enter passphrase: ",
889 RP_ALLOW_STDIN);
5260325f 890 /* Try to load using the passphrase. */
aeaa3d9e 891 private = key_load_private(identity_file, passphrase, &comment);
892 if (private == NULL) {
5260325f 893 memset(passphrase, 0, strlen(passphrase));
894 xfree(passphrase);
895 printf("Bad passphrase.\n");
896 exit(1);
897 }
aeaa3d9e 898 } else {
899 passphrase = xstrdup("");
5260325f 900 }
aeaa3d9e 901 if (private->type != KEY_RSA1) {
902 fprintf(stderr, "Comments are only supported for RSA1 keys.\n");
903 key_free(private);
904 exit(1);
184eed6a 905 }
5260325f 906 printf("Key now has comment '%s'\n", comment);
907
908 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));
a306f2dd 915 key_free(private);
5260325f 916 exit(1);
917 }
5260325f 918 if (strchr(new_comment, '\n'))
919 *strchr(new_comment, '\n') = 0;
920 }
921
922 /* Save the file using the new passphrase. */
aeaa3d9e 923 if (!key_save_private(private, identity_file, passphrase, new_comment)) {
58cfa257 924 printf("Saving the key failed: %s.\n", identity_file);
5260325f 925 memset(passphrase, 0, strlen(passphrase));
926 xfree(passphrase);
a306f2dd 927 key_free(private);
5260325f 928 xfree(comment);
929 exit(1);
8efc0c15 930 }
5260325f 931 memset(passphrase, 0, strlen(passphrase));
932 xfree(passphrase);
aeaa3d9e 933 public = key_from_private(private);
a306f2dd 934 key_free(private);
5260325f 935
5260325f 936 strlcat(identity_file, ".pub", sizeof(identity_file));
1c9a907f 937 fd = open(identity_file, O_WRONLY | O_CREAT | O_TRUNC, 0644);
938 if (fd == -1) {
5260325f 939 printf("Could not save your public key in %s\n", identity_file);
940 exit(1);
941 }
1c9a907f 942 f = fdopen(fd, "w");
943 if (f == NULL) {
944 printf("fdopen %s failed", identity_file);
945 exit(1);
946 }
a306f2dd 947 if (!key_write(public, f))
948 fprintf(stderr, "write key failed");
949 key_free(public);
950 fprintf(f, " %s\n", new_comment);
5260325f 951 fclose(f);
952
953 xfree(comment);
954
955 printf("The comment in your key file has been changed.\n");
956 exit(0);
8efc0c15 957}
958
396c147e 959static void
5ad13cd7 960usage(void)
961{
58153e34 962 fprintf(stderr, "Usage: %s [options]\n", __progname);
963 fprintf(stderr, "Options:\n");
4feb61af 964 fprintf(stderr, " -a trials Number of trials for screening DH-GEX moduli.\n");
965 fprintf(stderr, " -B Show bubblebabble digest of key file.\n");
58153e34 966 fprintf(stderr, " -b bits Number of bits in the key to create.\n");
4feb61af 967 fprintf(stderr, " -C comment Provide new comment.\n");
58153e34 968 fprintf(stderr, " -c Change comment in private and public key files.\n");
4feb61af 969#ifdef SMARTCARD
970 fprintf(stderr, " -D reader Download public key from smartcard.\n");
971#endif /* SMARTCARD */
58153e34 972 fprintf(stderr, " -e Convert OpenSSH to IETF SECSH key file.\n");
4feb61af 973 fprintf(stderr, " -F hostname Find hostname in known hosts file.\n");
58153e34 974 fprintf(stderr, " -f filename Filename of the key file.\n");
4feb61af 975 fprintf(stderr, " -G file Generate candidates for DH-GEX moduli.\n");
21289cd0 976 fprintf(stderr, " -g Use generic DNS resource record format.\n");
4feb61af 977 fprintf(stderr, " -H Hash names in known_hosts file.\n");
58153e34 978 fprintf(stderr, " -i Convert IETF SECSH to OpenSSH key file.\n");
979 fprintf(stderr, " -l Show fingerprint of key file.\n");
4feb61af 980 fprintf(stderr, " -M memory Amount of memory (MB) to use for generating DH-GEX moduli.\n");
58153e34 981 fprintf(stderr, " -N phrase Provide new passphrase.\n");
982 fprintf(stderr, " -P phrase Provide old passphrase.\n");
4feb61af 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");
21289cd0 986 fprintf(stderr, " -r hostname Print DNS resource record.\n");
4feb61af 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");
58153e34 990#ifdef SMARTCARD
58153e34 991 fprintf(stderr, " -U reader Upload private key to smartcard.\n");
992#endif /* SMARTCARD */
4feb61af 993 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");
c35a6dc5 996
5260325f 997 exit(1);
5ad13cd7 998}
999
5260325f 1000/*
1001 * Main program for key management.
1002 */
8efc0c15 1003int
1004main(int ac, char **av)
1005{
3dc93cd8 1006 char dotsshdir[MAXPATHLEN], comment[1024], *passphrase1, *passphrase2;
8f52069e 1007 char out_file[MAXPATHLEN], *reader_id = NULL;
bdffbcdc 1008 char *rr_hostname = NULL;
1c9a907f 1009 Key *private, *public;
5260325f 1010 struct passwd *pw;
5260325f 1011 struct stat st;
c784ae09 1012 int opt, type, fd, download = 0;
2a1995a3 1013 u_int32_t memory = 0, generator_wanted = 0, trials = 100;
c35a6dc5 1014 int do_gen_candidates = 0, do_screen_candidates = 0;
c6fbc95a 1015 int log_level = SYSLOG_LEVEL_INFO;
c35a6dc5 1016 BIGNUM *start = NULL;
5260325f 1017 FILE *f;
de4feb6b 1018 const char *errstr;
fa08c86b 1019
5260325f 1020 extern int optind;
1021 extern char *optarg;
1022
fd6168c1 1023 /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
1024 sanitise_stdfd();
1025
fda04d7d 1026 __progname = ssh_get_progname(av[0]);
264dce47 1027
fa649821 1028 SSLeay_add_all_algorithms();
c35a6dc5 1029 log_init(av[0], SYSLOG_LEVEL_INFO, SYSLOG_FACILITY_USER, 1);
1030
ce88d9df 1031 init_rng();
1032 seed_rng();
a306f2dd 1033
aa3378df 1034 /* we need this for the home * directory. */
5260325f 1035 pw = getpwuid(getuid());
1036 if (!pw) {
1037 printf("You don't exist, go away!\n");
1038 exit(1);
1039 }
a306f2dd 1040 if (gethostname(hostname, sizeof(hostname)) < 0) {
1041 perror("gethostname");
1042 exit(1);
1043 }
aa3378df 1044
c35a6dc5 1045 while ((opt = getopt(ac, av,
bdffbcdc 1046 "degiqpclBHvxXyF:b:f:t:U:D:P:N:C:r:g:R:T:G:M:S:a:W:")) != -1) {
5260325f 1047 switch (opt) {
1048 case 'b':
c6d7b211 1049 bits = strtonum(optarg, 768, 32768, &errstr);
de4feb6b 1050 if (errstr)
1051 fatal("Bits has bad value %s (%s)",
1052 optarg, errstr);
5260325f 1053 break;
bdffbcdc 1054 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;
5260325f 1065 case 'l':
1066 print_fingerprint = 1;
1067 break;
aaf45d87 1068 case 'B':
1069 print_bubblebabble = 1;
1070 break;
5260325f 1071 case 'p':
1072 change_passphrase = 1;
1073 break;
5260325f 1074 case 'c':
1075 change_comment = 1;
1076 break;
5260325f 1077 case 'f':
c784ae09 1078 if (strlcpy(identity_file, optarg, sizeof(identity_file)) >=
1079 sizeof(identity_file))
1080 fatal("Identity filename too long");
5260325f 1081 have_identity = 1;
1082 break;
21289cd0 1083 case 'g':
1084 print_generic = 1;
1085 break;
5260325f 1086 case 'P':
1087 identity_passphrase = optarg;
1088 break;
5260325f 1089 case 'N':
1090 identity_new_passphrase = optarg;
1091 break;
5260325f 1092 case 'C':
1093 identity_comment = optarg;
1094 break;
5260325f 1095 case 'q':
1096 quiet = 1;
1097 break;
5deceabb 1098 case 'e':
a306f2dd 1099 case 'x':
5deceabb 1100 /* export key */
a306f2dd 1101 convert_to_ssh2 = 1;
1102 break;
5deceabb 1103 case 'i':
a306f2dd 1104 case 'X':
5deceabb 1105 /* import key */
a306f2dd 1106 convert_from_ssh2 = 1;
1107 break;
a306f2dd 1108 case 'y':
1109 print_public = 1;
1110 break;
a306f2dd 1111 case 'd':
fa08c86b 1112 key_type_name = "dsa";
a306f2dd 1113 break;
fa08c86b 1114 case 't':
1115 key_type_name = optarg;
fa08c86b 1116 break;
93a56445 1117 case 'D':
1118 download = 1;
285d2b15 1119 case 'U':
93a56445 1120 reader_id = optarg;
2b30154a 1121 break;
c6fbc95a 1122 case 'v':
1123 if (log_level == SYSLOG_LEVEL_INFO)
1124 log_level = SYSLOG_LEVEL_DEBUG1;
1125 else {
f2107e97 1126 if (log_level >= SYSLOG_LEVEL_DEBUG1 &&
c6fbc95a 1127 log_level < SYSLOG_LEVEL_DEBUG3)
1128 log_level++;
1129 }
1130 break;
21289cd0 1131 case 'r':
bdffbcdc 1132 rr_hostname = optarg;
21289cd0 1133 break;
c35a6dc5 1134 case 'W':
c784ae09 1135 generator_wanted = strtonum(optarg, 1, UINT_MAX, &errstr);
1136 if (errstr)
1137 fatal("Desired generator has bad value: %s (%s)",
1138 optarg, errstr);
c35a6dc5 1139 break;
1140 case 'a':
c784ae09 1141 trials = strtonum(optarg, 1, UINT_MAX, &errstr);
1142 if (errstr)
1143 fatal("Invalid number of trials: %s (%s)",
1144 optarg, errstr);
c35a6dc5 1145 break;
1146 case 'M':
c784ae09 1147 memory = strtonum(optarg, 1, UINT_MAX, &errstr);
1148 if (errstr) {
1149 fatal("Memory limit is %s: %s", errstr, optarg);
1150 }
c35a6dc5 1151 break;
1152 case 'G':
1153 do_gen_candidates = 1;
c784ae09 1154 if (strlcpy(out_file, optarg, sizeof(out_file)) >=
1155 sizeof(out_file))
1156 fatal("Output filename too long");
c35a6dc5 1157 break;
1158 case 'T':
1159 do_screen_candidates = 1;
c784ae09 1160 if (strlcpy(out_file, optarg, sizeof(out_file)) >=
1161 sizeof(out_file))
1162 fatal("Output filename too long");
c35a6dc5 1163 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;
5260325f 1169 case '?':
1170 default:
1171 usage();
1172 }
1173 }
c6fbc95a 1174
1175 /* reinit */
1176 log_init(av[0], log_level, SYSLOG_FACILITY_USER, 1);
1177
5260325f 1178 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 }
bdffbcdc 1186 if (delete_host || hash_hosts || find_host)
1187 do_known_hosts(pw, rr_hostname);
aaf45d87 1188 if (print_fingerprint || print_bubblebabble)
5260325f 1189 do_fingerprint(pw);
5260325f 1190 if (change_passphrase)
1191 do_change_passphrase(pw);
633151a3 1192 if (change_comment)
1193 do_change_comment(pw);
ce88d9df 1194 if (convert_to_ssh2)
1195 do_convert_to_ssh2(pw);
1196 if (convert_from_ssh2)
1197 do_convert_from_ssh2(pw);
a306f2dd 1198 if (print_public)
1199 do_print_public(pw);
bdffbcdc 1200 if (rr_hostname != NULL) {
1201 do_print_resource_record(pw, rr_hostname);
21289cd0 1202 }
93a56445 1203 if (reader_id != NULL) {
4f831fd7 1204#ifdef SMARTCARD
93a56445 1205 if (download)
1206 do_download(pw, reader_id);
1207 else
1208 do_upload(pw, reader_id);
3e984472 1209#else /* SMARTCARD */
4f831fd7 1210 fatal("no support for smartcards.");
3e984472 1211#endif /* SMARTCARD */
93a56445 1212 }
5260325f 1213
c35a6dc5 1214 if (do_gen_candidates) {
1215 FILE *out = fopen(out_file, "w");
b6453d99 1216
c35a6dc5 1217 if (out == NULL) {
1218 error("Couldn't open modulus candidate file \"%s\": %s",
1219 out_file, strerror(errno));
1220 return (1);
1221 }
255d3e00 1222 if (bits == 0)
1223 bits = DEFAULT_BITS;
c35a6dc5 1224 if (gen_candidates(out, memory, bits, start) != 0)
17318dd6 1225 fatal("modulus candidate generation failed");
c35a6dc5 1226
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 "
aff51935 1237 "file \"%s\": %s", identity_file,
c35a6dc5 1238 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)
17318dd6 1248 fatal("modulus screening failed");
08d035b6 1249 return (0);
c35a6dc5 1250 }
1251
5260325f 1252 arc4random_stir();
1253
882c9d5a 1254 if (key_type_name == NULL)
1255 key_type_name = "rsa";
1256
c523303b 1257 type = key_type_from_name(key_type_name);
1258 if (type == KEY_UNSPEC) {
1259 fprintf(stderr, "unknown key type %s\n", key_type_name);
1260 exit(1);
a306f2dd 1261 }
c6d7b211 1262 if (type == KEY_DSA && bits != 1024)
1263 fatal("DSA keys must be 1024 bits");
fa08c86b 1264 if (!quiet)
c523303b 1265 printf("Generating public/private %s key pair.\n", key_type_name);
255d3e00 1266 if (bits == 0)
1267 bits = (type == KEY_DSA) ? DEFAULT_BITS_DSA : DEFAULT_BITS;
fa08c86b 1268 private = key_generate(type, bits);
1269 if (private == NULL) {
1270 fprintf(stderr, "key_generate failed");
1271 exit(1);
1272 }
1273 public = key_from_private(private);
5260325f 1274
1275 if (!have_identity)
1276 ask_filename(pw, "Enter file in which to save the key");
1277
7b9b0103 1278 /* Create ~/.ssh directory if it doesn't already exist. */
42f11eb2 1279 snprintf(dotsshdir, sizeof dotsshdir, "%s/%s", pw->pw_dir, _PATH_SSH_USER_DIR);
5260325f 1280 if (strstr(identity_file, dotsshdir) != NULL &&
1281 stat(dotsshdir, &st) < 0) {
704b1659 1282 if (mkdir(dotsshdir, 0700) < 0)
5260325f 1283 error("Could not create directory '%s'.", dotsshdir);
1284 else if (!quiet)
1285 printf("Created directory '%s'.\n", dotsshdir);
1286 }
1287 /* If the file already exists, ask the user to confirm. */
1288 if (stat(identity_file, &st) >= 0) {
1289 char yesno[3];
1290 printf("%s already exists.\n", identity_file);
1291 printf("Overwrite (y/n)? ");
1292 fflush(stdout);
1293 if (fgets(yesno, sizeof(yesno), stdin) == NULL)
1294 exit(1);
1295 if (yesno[0] != 'y' && yesno[0] != 'Y')
1296 exit(1);
1297 }
1298 /* Ask for a passphrase (twice). */
1299 if (identity_passphrase)
1300 passphrase1 = xstrdup(identity_passphrase);
1301 else if (identity_new_passphrase)
1302 passphrase1 = xstrdup(identity_new_passphrase);
1303 else {
1304passphrase_again:
1305 passphrase1 =
1843a425 1306 read_passphrase("Enter passphrase (empty for no "
1307 "passphrase): ", RP_ALLOW_STDIN);
1308 passphrase2 = read_passphrase("Enter same passphrase again: ",
1309 RP_ALLOW_STDIN);
5260325f 1310 if (strcmp(passphrase1, passphrase2) != 0) {
1843a425 1311 /*
1312 * The passphrases do not match. Clear them and
1313 * retry.
1314 */
5260325f 1315 memset(passphrase1, 0, strlen(passphrase1));
1316 memset(passphrase2, 0, strlen(passphrase2));
1317 xfree(passphrase1);
1318 xfree(passphrase2);
1319 printf("Passphrases do not match. Try again.\n");
1320 goto passphrase_again;
1321 }
1322 /* Clear the other copy of the passphrase. */
1323 memset(passphrase2, 0, strlen(passphrase2));
1324 xfree(passphrase2);
1325 }
1326
5260325f 1327 if (identity_comment) {
1328 strlcpy(comment, identity_comment, sizeof(comment));
1329 } else {
6ae2364d 1330 /* Create default commend field for the passphrase. */
5260325f 1331 snprintf(comment, sizeof comment, "%s@%s", pw->pw_name, hostname);
1332 }
1333
1334 /* Save the key with the given passphrase and comment. */
aeaa3d9e 1335 if (!key_save_private(private, identity_file, passphrase1, comment)) {
58cfa257 1336 printf("Saving the key failed: %s.\n", identity_file);
5260325f 1337 memset(passphrase1, 0, strlen(passphrase1));
1338 xfree(passphrase1);
1339 exit(1);
1340 }
1341 /* Clear the passphrase. */
1342 memset(passphrase1, 0, strlen(passphrase1));
1343 xfree(passphrase1);
1344
1345 /* Clear the private key and the random number generator. */
fa08c86b 1346 key_free(private);
5260325f 1347 arc4random_stir();
1348
1349 if (!quiet)
1350 printf("Your identification has been saved in %s.\n", identity_file);
1351
5260325f 1352 strlcat(identity_file, ".pub", sizeof(identity_file));
1c9a907f 1353 fd = open(identity_file, O_WRONLY | O_CREAT | O_TRUNC, 0644);
1354 if (fd == -1) {
5260325f 1355 printf("Could not save your public key in %s\n", identity_file);
1356 exit(1);
1357 }
1c9a907f 1358 f = fdopen(fd, "w");
1359 if (f == NULL) {
1360 printf("fdopen %s failed", identity_file);
1361 exit(1);
1362 }
a306f2dd 1363 if (!key_write(public, f))
1364 fprintf(stderr, "write key failed");
1365 fprintf(f, " %s\n", comment);
5260325f 1366 fclose(f);
1367
1368 if (!quiet) {
22138a36 1369 char *fp = key_fingerprint(public, SSH_FP_MD5, SSH_FP_HEX);
a306f2dd 1370 printf("Your public key has been saved in %s.\n",
1371 identity_file);
5260325f 1372 printf("The key fingerprint is:\n");
22138a36 1373 printf("%s %s\n", fp, comment);
1374 xfree(fp);
8efc0c15 1375 }
a306f2dd 1376
1377 key_free(public);
5260325f 1378 exit(0);
8efc0c15 1379}
This page took 1.857245 seconds and 5 git commands to generate.