]> andersk Git - gssapi-openssh.git/blame - openssh/ssh-keygen.c
merged OPENSSH_4_6P1_GSSAPI_20070328 to GPT-branch
[gssapi-openssh.git] / openssh / ssh-keygen.c
CommitLineData
2278ffa1 1/* $OpenBSD: ssh-keygen.c,v 1.160 2007/01/21 01:41:54 stevesk Exp $ */
3c0ef626 2/*
3 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1994 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5 * All rights reserved
6 * Identity and host key generation and maintenance.
7 *
8 * As far as I am concerned, the code I have written for this software
9 * can be used freely for any purpose. Any derived versions of this
10 * software must be clearly marked as such, and if the derived work is
11 * incompatible with the protocol description in the RFC file, it must be
12 * called by a name other than "ssh" or "Secure Shell".
13 */
14
15#include "includes.h"
2e437378 16
17#include <sys/types.h>
18#include <sys/socket.h>
19#include <sys/stat.h>
20#include <sys/param.h>
3c0ef626 21
22#include <openssl/evp.h>
23#include <openssl/pem.h>
24
2e437378 25#include <errno.h>
26#include <fcntl.h>
27#include <netdb.h>
28#ifdef HAVE_PATHS_H
29# include <paths.h>
30#endif
31#include <pwd.h>
32#include <stdarg.h>
33#include <stdio.h>
34#include <stdlib.h>
35#include <string.h>
36#include <unistd.h>
37
3c0ef626 38#include "xmalloc.h"
39#include "key.h"
40#include "rsa.h"
41#include "authfile.h"
42#include "uuencode.h"
43#include "buffer.h"
3c0ef626 44#include "pathnames.h"
45#include "log.h"
1b56ff3d 46#include "misc.h"
34fee935 47#include "match.h"
48#include "hostfile.h"
2e437378 49#include "dns.h"
3c0ef626 50
51#ifdef SMARTCARD
3c0ef626 52#include "scard.h"
53#endif
54
e00da40d 55/* Number of bits in the RSA/DSA key. This value can be set on the command line. */
56#define DEFAULT_BITS 2048
57#define DEFAULT_BITS_DSA 1024
58u_int32_t bits = 0;
3c0ef626 59
60/*
61 * Flag indicating that we just want to change the passphrase. This can be
62 * set on the command line.
63 */
64int change_passphrase = 0;
65
66/*
67 * Flag indicating that we just want to change the comment. This can be set
68 * on the command line.
69 */
70int change_comment = 0;
71
72int quiet = 0;
73
34fee935 74/* Flag indicating that we want to hash a known_hosts file */
75int hash_hosts = 0;
76/* Flag indicating that we want lookup a host in known_hosts file */
77int find_host = 0;
78/* Flag indicating that we want to delete a host from a known_hosts file */
79int delete_host = 0;
80
3c0ef626 81/* Flag indicating that we just want to see the key fingerprint */
82int print_fingerprint = 0;
83int print_bubblebabble = 0;
84
85/* The identity file name, given on the command line or entered by the user. */
86char identity_file[1024];
87int have_identity = 0;
88
89/* This is set to the passphrase if given on the command line. */
90char *identity_passphrase = NULL;
91
92/* This is set to the new passphrase if given on the command line. */
93char *identity_new_passphrase = NULL;
94
95/* This is set to the new comment if given on the command line. */
96char *identity_comment = NULL;
97
98/* Dump public key file in format used by real and the original SSH 2 */
99int convert_to_ssh2 = 0;
100int convert_from_ssh2 = 0;
101int print_public = 0;
70791e56 102int print_generic = 0;
3c0ef626 103
e9a17296 104char *key_type_name = NULL;
3c0ef626 105
106/* argv0 */
3c0ef626 107extern char *__progname;
3c0ef626 108
109char hostname[MAXHOSTNAMELEN];
110
1b56ff3d 111/* moduli.c */
34fee935 112int gen_candidates(FILE *, u_int32_t, u_int32_t, BIGNUM *);
1b56ff3d 113int prime_test(FILE *, FILE *, u_int32_t, u_int32_t);
114
3c0ef626 115static void
116ask_filename(struct passwd *pw, const char *prompt)
117{
118 char buf[1024];
119 char *name = NULL;
120
e9a17296 121 if (key_type_name == NULL)
3c0ef626 122 name = _PATH_SSH_CLIENT_ID_RSA;
2e437378 123 else {
e9a17296 124 switch (key_type_from_name(key_type_name)) {
125 case KEY_RSA1:
126 name = _PATH_SSH_CLIENT_IDENTITY;
127 break;
128 case KEY_DSA:
129 name = _PATH_SSH_CLIENT_ID_DSA;
130 break;
131 case KEY_RSA:
132 name = _PATH_SSH_CLIENT_ID_RSA;
133 break;
134 default:
135 fprintf(stderr, "bad key type");
136 exit(1);
137 break;
138 }
2e437378 139 }
3c0ef626 140 snprintf(identity_file, sizeof(identity_file), "%s/%s", pw->pw_dir, name);
141 fprintf(stderr, "%s (%s): ", prompt, identity_file);
3c0ef626 142 if (fgets(buf, sizeof(buf), stdin) == NULL)
143 exit(1);
144 if (strchr(buf, '\n'))
145 *strchr(buf, '\n') = 0;
146 if (strcmp(buf, "") != 0)
147 strlcpy(identity_file, buf, sizeof(identity_file));
148 have_identity = 1;
149}
150
151static Key *
152load_identity(char *filename)
153{
154 char *pass;
155 Key *prv;
156
157 prv = key_load_private(filename, "", NULL);
158 if (prv == NULL) {
159 if (identity_passphrase)
160 pass = xstrdup(identity_passphrase);
161 else
162 pass = read_passphrase("Enter passphrase: ",
163 RP_ALLOW_STDIN);
164 prv = key_load_private(filename, pass, NULL);
165 memset(pass, 0, strlen(pass));
166 xfree(pass);
167 }
168 return prv;
169}
170
171#define SSH_COM_PUBLIC_BEGIN "---- BEGIN SSH2 PUBLIC KEY ----"
ff2d7a98 172#define SSH_COM_PUBLIC_END "---- END SSH2 PUBLIC KEY ----"
3c0ef626 173#define SSH_COM_PRIVATE_BEGIN "---- BEGIN SSH2 ENCRYPTED PRIVATE KEY ----"
174#define SSH_COM_PRIVATE_KEY_MAGIC 0x3f6ff9eb
175
176static void
177do_convert_to_ssh2(struct passwd *pw)
178{
179 Key *k;
e9a17296 180 u_int len;
3c0ef626 181 u_char *blob;
182 struct stat st;
183
184 if (!have_identity)
185 ask_filename(pw, "Enter file in which the key is");
186 if (stat(identity_file, &st) < 0) {
187 perror(identity_file);
188 exit(1);
189 }
190 if ((k = key_load_public(identity_file, NULL)) == NULL) {
191 if ((k = load_identity(identity_file)) == NULL) {
192 fprintf(stderr, "load failed\n");
193 exit(1);
194 }
195 }
70791e56 196 if (k->type == KEY_RSA1) {
197 fprintf(stderr, "version 1 keys are not supported\n");
198 exit(1);
199 }
3c0ef626 200 if (key_to_blob(k, &blob, &len) <= 0) {
201 fprintf(stderr, "key_to_blob failed\n");
202 exit(1);
203 }
204 fprintf(stdout, "%s\n", SSH_COM_PUBLIC_BEGIN);
205 fprintf(stdout,
ff2d7a98 206 "Comment: \"%u-bit %s, converted from OpenSSH by %s@%s\"\n",
3c0ef626 207 key_size(k), key_type(k),
208 pw->pw_name, hostname);
209 dump_base64(stdout, blob, len);
210 fprintf(stdout, "%s\n", SSH_COM_PUBLIC_END);
211 key_free(k);
212 xfree(blob);
213 exit(0);
214}
215
216static void
217buffer_get_bignum_bits(Buffer *b, BIGNUM *value)
218{
1b56ff3d 219 u_int bignum_bits = buffer_get_int(b);
220 u_int bytes = (bignum_bits + 7) / 8;
3c0ef626 221
222 if (buffer_len(b) < bytes)
223 fatal("buffer_get_bignum_bits: input buffer too small: "
224 "need %d have %d", bytes, buffer_len(b));
2e437378 225 if (BN_bin2bn(buffer_ptr(b), bytes, value) == NULL)
226 fatal("buffer_get_bignum_bits: BN_bin2bn failed");
3c0ef626 227 buffer_consume(b, bytes);
228}
229
230static Key *
e9a17296 231do_convert_private_ssh2_from_blob(u_char *blob, u_int blen)
3c0ef626 232{
233 Buffer b;
234 Key *key = NULL;
235 char *type, *cipher;
236 u_char *sig, data[] = "abcde12345";
237 int magic, rlen, ktype, i1, i2, i3, i4;
238 u_int slen;
239 u_long e;
240
241 buffer_init(&b);
242 buffer_append(&b, blob, blen);
243
2278ffa1 244 magic = buffer_get_int(&b);
3c0ef626 245 if (magic != SSH_COM_PRIVATE_KEY_MAGIC) {
246 error("bad magic 0x%x != 0x%x", magic, SSH_COM_PRIVATE_KEY_MAGIC);
247 buffer_free(&b);
248 return NULL;
249 }
250 i1 = buffer_get_int(&b);
251 type = buffer_get_string(&b, NULL);
252 cipher = buffer_get_string(&b, NULL);
253 i2 = buffer_get_int(&b);
254 i3 = buffer_get_int(&b);
255 i4 = buffer_get_int(&b);
2278ffa1 256 debug("ignore (%d %d %d %d)", i1, i2, i3, i4);
3c0ef626 257 if (strcmp(cipher, "none") != 0) {
258 error("unsupported cipher %s", cipher);
259 xfree(cipher);
260 buffer_free(&b);
261 xfree(type);
262 return NULL;
263 }
264 xfree(cipher);
265
266 if (strstr(type, "dsa")) {
267 ktype = KEY_DSA;
268 } else if (strstr(type, "rsa")) {
269 ktype = KEY_RSA;
270 } else {
34fee935 271 buffer_free(&b);
3c0ef626 272 xfree(type);
273 return NULL;
274 }
275 key = key_new_private(ktype);
276 xfree(type);
277
278 switch (key->type) {
279 case KEY_DSA:
280 buffer_get_bignum_bits(&b, key->dsa->p);
281 buffer_get_bignum_bits(&b, key->dsa->g);
282 buffer_get_bignum_bits(&b, key->dsa->q);
283 buffer_get_bignum_bits(&b, key->dsa->pub_key);
284 buffer_get_bignum_bits(&b, key->dsa->priv_key);
285 break;
286 case KEY_RSA:
2278ffa1 287 e = buffer_get_char(&b);
3c0ef626 288 debug("e %lx", e);
289 if (e < 30) {
290 e <<= 8;
291 e += buffer_get_char(&b);
292 debug("e %lx", e);
293 e <<= 8;
294 e += buffer_get_char(&b);
295 debug("e %lx", e);
296 }
297 if (!BN_set_word(key->rsa->e, e)) {
298 buffer_free(&b);
299 key_free(key);
300 return NULL;
301 }
302 buffer_get_bignum_bits(&b, key->rsa->d);
303 buffer_get_bignum_bits(&b, key->rsa->n);
304 buffer_get_bignum_bits(&b, key->rsa->iqmp);
305 buffer_get_bignum_bits(&b, key->rsa->q);
306 buffer_get_bignum_bits(&b, key->rsa->p);
307 rsa_generate_additional_parameters(key->rsa);
308 break;
309 }
310 rlen = buffer_len(&b);
e9a17296 311 if (rlen != 0)
3c0ef626 312 error("do_convert_private_ssh2_from_blob: "
313 "remaining bytes in key blob %d", rlen);
314 buffer_free(&b);
315
316 /* try the key */
317 key_sign(key, &sig, &slen, data, sizeof(data));
318 key_verify(key, sig, slen, data, sizeof(data));
319 xfree(sig);
320 return key;
321}
322
2e437378 323static int
324get_line(FILE *fp, char *line, size_t len)
325{
326 int c;
327 size_t pos = 0;
328
329 line[0] = '\0';
330 while ((c = fgetc(fp)) != EOF) {
331 if (pos >= len - 1) {
332 fprintf(stderr, "input line too long.\n");
333 exit(1);
334 }
335 switch (c) {
336 case '\r':
337 c = fgetc(fp);
338 if (c != EOF && c != '\n' && ungetc(c, fp) == EOF) {
339 fprintf(stderr, "unget: %s\n", strerror(errno));
340 exit(1);
341 }
342 return pos;
343 case '\n':
344 return pos;
345 }
346 line[pos++] = c;
347 line[pos] = '\0';
348 }
2278ffa1 349 /* We reached EOF */
350 return -1;
2e437378 351}
352
3c0ef626 353static void
354do_convert_from_ssh2(struct passwd *pw)
355{
356 Key *k;
357 int blen;
2980ea68 358 u_int len;
2e437378 359 char line[1024];
3c0ef626 360 u_char blob[8096];
361 char encoded[8096];
362 struct stat st;
363 int escaped = 0, private = 0, ok;
364 FILE *fp;
365
366 if (!have_identity)
367 ask_filename(pw, "Enter file in which the key is");
368 if (stat(identity_file, &st) < 0) {
369 perror(identity_file);
370 exit(1);
371 }
372 fp = fopen(identity_file, "r");
373 if (fp == NULL) {
374 perror(identity_file);
375 exit(1);
376 }
377 encoded[0] = '\0';
2e437378 378 while ((blen = get_line(fp, line, sizeof(line))) != -1) {
379 if (line[blen - 1] == '\\')
3c0ef626 380 escaped++;
381 if (strncmp(line, "----", 4) == 0 ||
382 strstr(line, ": ") != NULL) {
383 if (strstr(line, SSH_COM_PRIVATE_BEGIN) != NULL)
384 private = 1;
385 if (strstr(line, " END ") != NULL) {
386 break;
387 }
388 /* fprintf(stderr, "ignore: %s", line); */
389 continue;
390 }
391 if (escaped) {
392 escaped--;
393 /* fprintf(stderr, "escaped: %s", line); */
394 continue;
395 }
3c0ef626 396 strlcat(encoded, line, sizeof(encoded));
397 }
2980ea68 398 len = strlen(encoded);
399 if (((len % 4) == 3) &&
400 (encoded[len-1] == '=') &&
401 (encoded[len-2] == '=') &&
402 (encoded[len-3] == '='))
403 encoded[len-3] = '\0';
e9a17296 404 blen = uudecode(encoded, blob, sizeof(blob));
3c0ef626 405 if (blen < 0) {
406 fprintf(stderr, "uudecode failed.\n");
407 exit(1);
408 }
409 k = private ?
410 do_convert_private_ssh2_from_blob(blob, blen) :
411 key_from_blob(blob, blen);
412 if (k == NULL) {
413 fprintf(stderr, "decode blob failed.\n");
414 exit(1);
415 }
416 ok = private ?
417 (k->type == KEY_DSA ?
418 PEM_write_DSAPrivateKey(stdout, k->dsa, NULL, NULL, 0, NULL, NULL) :
419 PEM_write_RSAPrivateKey(stdout, k->rsa, NULL, NULL, 0, NULL, NULL)) :
420 key_write(k, stdout);
421 if (!ok) {
422 fprintf(stderr, "key write failed");
423 exit(1);
424 }
425 key_free(k);
e9a17296 426 if (!private)
427 fprintf(stdout, "\n");
3c0ef626 428 fclose(fp);
429 exit(0);
430}
431
432static void
433do_print_public(struct passwd *pw)
434{
435 Key *prv;
436 struct stat st;
437
438 if (!have_identity)
439 ask_filename(pw, "Enter file in which the key is");
440 if (stat(identity_file, &st) < 0) {
441 perror(identity_file);
442 exit(1);
443 }
444 prv = load_identity(identity_file);
445 if (prv == NULL) {
446 fprintf(stderr, "load failed\n");
447 exit(1);
448 }
449 if (!key_write(prv, stdout))
450 fprintf(stderr, "key_write failed");
451 key_free(prv);
452 fprintf(stdout, "\n");
453 exit(0);
454}
455
456#ifdef SMARTCARD
3c0ef626 457static void
458do_upload(struct passwd *pw, const char *sc_reader_id)
459{
460 Key *prv = NULL;
461 struct stat st;
2980ea68 462 int ret;
463
3c0ef626 464 if (!have_identity)
465 ask_filename(pw, "Enter file in which the key is");
466 if (stat(identity_file, &st) < 0) {
467 perror(identity_file);
2980ea68 468 exit(1);
3c0ef626 469 }
470 prv = load_identity(identity_file);
471 if (prv == NULL) {
472 error("load failed");
2980ea68 473 exit(1);
3c0ef626 474 }
2980ea68 475 ret = sc_put_key(prv, sc_reader_id);
476 key_free(prv);
477 if (ret < 0)
478 exit(1);
70791e56 479 logit("loading key done");
2980ea68 480 exit(0);
3c0ef626 481}
482
483static void
484do_download(struct passwd *pw, const char *sc_reader_id)
485{
2980ea68 486 Key **keys = NULL;
487 int i;
3c0ef626 488
2980ea68 489 keys = sc_get_keys(sc_reader_id, NULL);
490 if (keys == NULL)
3c0ef626 491 fatal("cannot read public key from smartcard");
2980ea68 492 for (i = 0; keys[i]; i++) {
493 key_write(keys[i], stdout);
494 key_free(keys[i]);
495 fprintf(stdout, "\n");
496 }
497 xfree(keys);
3c0ef626 498 exit(0);
499}
500#endif /* SMARTCARD */
501
502static void
503do_fingerprint(struct passwd *pw)
504{
505 FILE *f;
506 Key *public;
507 char *comment = NULL, *cp, *ep, line[16*1024], *fp;
e9a17296 508 int i, skip = 0, num = 1, invalid = 1;
509 enum fp_rep rep;
510 enum fp_type fptype;
3c0ef626 511 struct stat st;
512
513 fptype = print_bubblebabble ? SSH_FP_SHA1 : SSH_FP_MD5;
514 rep = print_bubblebabble ? SSH_FP_BUBBLEBABBLE : SSH_FP_HEX;
515
516 if (!have_identity)
517 ask_filename(pw, "Enter file in which the key is");
518 if (stat(identity_file, &st) < 0) {
519 perror(identity_file);
520 exit(1);
521 }
522 public = key_load_public(identity_file, &comment);
523 if (public != NULL) {
524 fp = key_fingerprint(public, fptype, rep);
ff2d7a98 525 printf("%u %s %s\n", key_size(public), fp, comment);
3c0ef626 526 key_free(public);
527 xfree(comment);
528 xfree(fp);
529 exit(0);
530 }
2e437378 531 if (comment) {
3c0ef626 532 xfree(comment);
2e437378 533 comment = NULL;
534 }
3c0ef626 535
536 f = fopen(identity_file, "r");
537 if (f != NULL) {
538 while (fgets(line, sizeof(line), f)) {
539 i = strlen(line) - 1;
540 if (line[i] != '\n') {
541 error("line %d too long: %.40s...", num, line);
542 skip = 1;
543 continue;
544 }
545 num++;
546 if (skip) {
547 skip = 0;
548 continue;
549 }
550 line[i] = '\0';
551
552 /* Skip leading whitespace, empty and comment lines. */
553 for (cp = line; *cp == ' ' || *cp == '\t'; cp++)
554 ;
555 if (!*cp || *cp == '\n' || *cp == '#')
2278ffa1 556 continue;
3c0ef626 557 i = strtol(cp, &ep, 10);
558 if (i == 0 || ep == NULL || (*ep != ' ' && *ep != '\t')) {
559 int quoted = 0;
560 comment = cp;
ff2d7a98 561 for (; *cp && (quoted || (*cp != ' ' &&
562 *cp != '\t')); cp++) {
3c0ef626 563 if (*cp == '\\' && cp[1] == '"')
564 cp++; /* Skip both */
565 else if (*cp == '"')
566 quoted = !quoted;
567 }
568 if (!*cp)
569 continue;
570 *cp++ = '\0';
571 }
572 ep = cp;
573 public = key_new(KEY_RSA1);
574 if (key_read(public, &cp) != 1) {
575 cp = ep;
576 key_free(public);
577 public = key_new(KEY_UNSPEC);
578 if (key_read(public, &cp) != 1) {
579 key_free(public);
580 continue;
581 }
582 }
583 comment = *cp ? cp : comment;
584 fp = key_fingerprint(public, fptype, rep);
ff2d7a98 585 printf("%u %s %s\n", key_size(public), fp,
3c0ef626 586 comment ? comment : "no comment");
587 xfree(fp);
588 key_free(public);
589 invalid = 0;
590 }
591 fclose(f);
592 }
593 if (invalid) {
594 printf("%s is not a public key file.\n", identity_file);
595 exit(1);
596 }
597 exit(0);
598}
599
34fee935 600static void
601print_host(FILE *f, char *name, Key *public, int hash)
602{
603 if (hash && (name = host_hash(name, NULL, 0)) == NULL)
604 fatal("hash_host failed");
605 fprintf(f, "%s ", name);
606 if (!key_write(public, f))
607 fatal("key_write failed");
608 fprintf(f, "\n");
609}
610
611static void
612do_known_hosts(struct passwd *pw, const char *name)
613{
614 FILE *in, *out = stdout;
615 Key *public;
616 char *cp, *cp2, *kp, *kp2;
617 char line[16*1024], tmp[MAXPATHLEN], old[MAXPATHLEN];
618 int c, i, skip = 0, inplace = 0, num = 0, invalid = 0, has_unhashed = 0;
619
620 if (!have_identity) {
621 cp = tilde_expand_filename(_PATH_SSH_USER_HOSTFILE, pw->pw_uid);
622 if (strlcpy(identity_file, cp, sizeof(identity_file)) >=
623 sizeof(identity_file))
624 fatal("Specified known hosts path too long");
625 xfree(cp);
626 have_identity = 1;
627 }
628 if ((in = fopen(identity_file, "r")) == NULL)
629 fatal("fopen: %s", strerror(errno));
630
631 /*
632 * Find hosts goes to stdout, hash and deletions happen in-place
633 * A corner case is ssh-keygen -HF foo, which should go to stdout
634 */
635 if (!find_host && (hash_hosts || delete_host)) {
636 if (strlcpy(tmp, identity_file, sizeof(tmp)) >= sizeof(tmp) ||
637 strlcat(tmp, ".XXXXXXXXXX", sizeof(tmp)) >= sizeof(tmp) ||
638 strlcpy(old, identity_file, sizeof(old)) >= sizeof(old) ||
639 strlcat(old, ".old", sizeof(old)) >= sizeof(old))
640 fatal("known_hosts path too long");
641 umask(077);
642 if ((c = mkstemp(tmp)) == -1)
643 fatal("mkstemp: %s", strerror(errno));
644 if ((out = fdopen(c, "w")) == NULL) {
645 c = errno;
646 unlink(tmp);
647 fatal("fdopen: %s", strerror(c));
648 }
649 inplace = 1;
650 }
651
652 while (fgets(line, sizeof(line), in)) {
653 num++;
654 i = strlen(line) - 1;
655 if (line[i] != '\n') {
656 error("line %d too long: %.40s...", num, line);
657 skip = 1;
658 invalid = 1;
659 continue;
660 }
661 if (skip) {
662 skip = 0;
663 continue;
664 }
665 line[i] = '\0';
666
667 /* Skip leading whitespace, empty and comment lines. */
668 for (cp = line; *cp == ' ' || *cp == '\t'; cp++)
669 ;
670 if (!*cp || *cp == '\n' || *cp == '#') {
671 if (inplace)
672 fprintf(out, "%s\n", cp);
673 continue;
674 }
675 /* Find the end of the host name portion. */
676 for (kp = cp; *kp && *kp != ' ' && *kp != '\t'; kp++)
677 ;
678 if (*kp == '\0' || *(kp + 1) == '\0') {
679 error("line %d missing key: %.40s...",
680 num, line);
681 invalid = 1;
682 continue;
683 }
684 *kp++ = '\0';
685 kp2 = kp;
686
687 public = key_new(KEY_RSA1);
688 if (key_read(public, &kp) != 1) {
689 kp = kp2;
690 key_free(public);
691 public = key_new(KEY_UNSPEC);
692 if (key_read(public, &kp) != 1) {
693 error("line %d invalid key: %.40s...",
694 num, line);
695 key_free(public);
696 invalid = 1;
697 continue;
698 }
699 }
700
701 if (*cp == HASH_DELIM) {
702 if (find_host || delete_host) {
703 cp2 = host_hash(name, cp, strlen(cp));
704 if (cp2 == NULL) {
705 error("line %d: invalid hashed "
706 "name: %.64s...", num, line);
707 invalid = 1;
708 continue;
709 }
710 c = (strcmp(cp2, cp) == 0);
711 if (find_host && c) {
712 printf("# Host %s found: "
713 "line %d type %s\n", name,
714 num, key_type(public));
715 print_host(out, cp, public, 0);
716 }
717 if (delete_host && !c)
718 print_host(out, cp, public, 0);
719 } else if (hash_hosts)
720 print_host(out, cp, public, 0);
721 } else {
722 if (find_host || delete_host) {
723 c = (match_hostname(name, cp,
724 strlen(cp)) == 1);
725 if (find_host && c) {
726 printf("# Host %s found: "
727 "line %d type %s\n", name,
728 num, key_type(public));
729 print_host(out, cp, public, hash_hosts);
730 }
731 if (delete_host && !c)
732 print_host(out, cp, public, 0);
733 } else if (hash_hosts) {
734 for (cp2 = strsep(&cp, ",");
735 cp2 != NULL && *cp2 != '\0';
736 cp2 = strsep(&cp, ",")) {
737 if (strcspn(cp2, "*?!") != strlen(cp2))
738 fprintf(stderr, "Warning: "
739 "ignoring host name with "
740 "metacharacters: %.64s\n",
741 cp2);
742 else
743 print_host(out, cp2, public, 1);
744 }
745 has_unhashed = 1;
746 }
747 }
748 key_free(public);
749 }
750 fclose(in);
751
752 if (invalid) {
753 fprintf(stderr, "%s is not a valid known_host file.\n",
754 identity_file);
755 if (inplace) {
756 fprintf(stderr, "Not replacing existing known_hosts "
757 "file because of errors\n");
758 fclose(out);
759 unlink(tmp);
760 }
761 exit(1);
762 }
763
764 if (inplace) {
765 fclose(out);
766
767 /* Backup existing file */
768 if (unlink(old) == -1 && errno != ENOENT)
769 fatal("unlink %.100s: %s", old, strerror(errno));
770 if (link(identity_file, old) == -1)
771 fatal("link %.100s to %.100s: %s", identity_file, old,
772 strerror(errno));
773 /* Move new one into place */
774 if (rename(tmp, identity_file) == -1) {
775 error("rename\"%s\" to \"%s\": %s", tmp, identity_file,
776 strerror(errno));
777 unlink(tmp);
778 unlink(old);
779 exit(1);
780 }
781
782 fprintf(stderr, "%s updated.\n", identity_file);
783 fprintf(stderr, "Original contents retained as %s\n", old);
784 if (has_unhashed) {
785 fprintf(stderr, "WARNING: %s contains unhashed "
786 "entries\n", old);
787 fprintf(stderr, "Delete this file to ensure privacy "
788 "of hostnames\n");
789 }
790 }
791
792 exit(0);
793}
794
3c0ef626 795/*
796 * Perform changing a passphrase. The argument is the passwd structure
797 * for the current user.
798 */
799static void
800do_change_passphrase(struct passwd *pw)
801{
802 char *comment;
803 char *old_passphrase, *passphrase1, *passphrase2;
804 struct stat st;
805 Key *private;
806
807 if (!have_identity)
808 ask_filename(pw, "Enter file in which the key is");
809 if (stat(identity_file, &st) < 0) {
810 perror(identity_file);
811 exit(1);
812 }
813 /* Try to load the file with empty passphrase. */
814 private = key_load_private(identity_file, "", &comment);
815 if (private == NULL) {
816 if (identity_passphrase)
817 old_passphrase = xstrdup(identity_passphrase);
818 else
819 old_passphrase =
820 read_passphrase("Enter old passphrase: ",
821 RP_ALLOW_STDIN);
822 private = key_load_private(identity_file, old_passphrase,
823 &comment);
824 memset(old_passphrase, 0, strlen(old_passphrase));
825 xfree(old_passphrase);
826 if (private == NULL) {
827 printf("Bad passphrase.\n");
828 exit(1);
829 }
830 }
831 printf("Key has comment '%s'\n", comment);
832
833 /* Ask the new passphrase (twice). */
834 if (identity_new_passphrase) {
835 passphrase1 = xstrdup(identity_new_passphrase);
836 passphrase2 = NULL;
837 } else {
838 passphrase1 =
839 read_passphrase("Enter new passphrase (empty for no "
840 "passphrase): ", RP_ALLOW_STDIN);
841 passphrase2 = read_passphrase("Enter same passphrase again: ",
e9a17296 842 RP_ALLOW_STDIN);
3c0ef626 843
844 /* Verify that they are the same. */
845 if (strcmp(passphrase1, passphrase2) != 0) {
846 memset(passphrase1, 0, strlen(passphrase1));
847 memset(passphrase2, 0, strlen(passphrase2));
848 xfree(passphrase1);
849 xfree(passphrase2);
850 printf("Pass phrases do not match. Try again.\n");
851 exit(1);
852 }
853 /* Destroy the other copy. */
854 memset(passphrase2, 0, strlen(passphrase2));
855 xfree(passphrase2);
856 }
857
858 /* Save the file using the new passphrase. */
859 if (!key_save_private(private, identity_file, passphrase1, comment)) {
860 printf("Saving the key failed: %s.\n", identity_file);
861 memset(passphrase1, 0, strlen(passphrase1));
862 xfree(passphrase1);
863 key_free(private);
864 xfree(comment);
865 exit(1);
866 }
867 /* Destroy the passphrase and the copy of the key in memory. */
868 memset(passphrase1, 0, strlen(passphrase1));
869 xfree(passphrase1);
870 key_free(private); /* Destroys contents */
871 xfree(comment);
872
873 printf("Your identification has been saved with the new passphrase.\n");
874 exit(0);
875}
876
70791e56 877/*
878 * Print the SSHFP RR.
879 */
2e437378 880static int
881do_print_resource_record(struct passwd *pw, char *fname, char *hname)
70791e56 882{
883 Key *public;
884 char *comment = NULL;
885 struct stat st;
886
2e437378 887 if (fname == NULL)
70791e56 888 ask_filename(pw, "Enter file in which the key is");
2e437378 889 if (stat(fname, &st) < 0) {
890 if (errno == ENOENT)
891 return 0;
892 perror(fname);
70791e56 893 exit(1);
894 }
2e437378 895 public = key_load_public(fname, &comment);
70791e56 896 if (public != NULL) {
1b56ff3d 897 export_dns_rr(hname, public, stdout, print_generic);
70791e56 898 key_free(public);
899 xfree(comment);
2e437378 900 return 1;
70791e56 901 }
902 if (comment)
903 xfree(comment);
904
2e437378 905 printf("failed to read v2 public key from %s.\n", fname);
70791e56 906 exit(1);
907}
70791e56 908
3c0ef626 909/*
910 * Change the comment of a private key file.
911 */
912static void
913do_change_comment(struct passwd *pw)
914{
915 char new_comment[1024], *comment, *passphrase;
916 Key *private;
917 Key *public;
918 struct stat st;
919 FILE *f;
920 int fd;
921
922 if (!have_identity)
923 ask_filename(pw, "Enter file in which the key is");
924 if (stat(identity_file, &st) < 0) {
925 perror(identity_file);
926 exit(1);
927 }
928 private = key_load_private(identity_file, "", &comment);
929 if (private == NULL) {
930 if (identity_passphrase)
931 passphrase = xstrdup(identity_passphrase);
932 else if (identity_new_passphrase)
933 passphrase = xstrdup(identity_new_passphrase);
934 else
935 passphrase = read_passphrase("Enter passphrase: ",
936 RP_ALLOW_STDIN);
937 /* Try to load using the passphrase. */
938 private = key_load_private(identity_file, passphrase, &comment);
939 if (private == NULL) {
940 memset(passphrase, 0, strlen(passphrase));
941 xfree(passphrase);
942 printf("Bad passphrase.\n");
943 exit(1);
944 }
945 } else {
946 passphrase = xstrdup("");
947 }
948 if (private->type != KEY_RSA1) {
949 fprintf(stderr, "Comments are only supported for RSA1 keys.\n");
950 key_free(private);
951 exit(1);
e9a17296 952 }
3c0ef626 953 printf("Key now has comment '%s'\n", comment);
954
955 if (identity_comment) {
956 strlcpy(new_comment, identity_comment, sizeof(new_comment));
957 } else {
958 printf("Enter new comment: ");
959 fflush(stdout);
960 if (!fgets(new_comment, sizeof(new_comment), stdin)) {
961 memset(passphrase, 0, strlen(passphrase));
962 key_free(private);
963 exit(1);
964 }
965 if (strchr(new_comment, '\n'))
966 *strchr(new_comment, '\n') = 0;
967 }
968
969 /* Save the file using the new passphrase. */
970 if (!key_save_private(private, identity_file, passphrase, new_comment)) {
971 printf("Saving the key failed: %s.\n", identity_file);
972 memset(passphrase, 0, strlen(passphrase));
973 xfree(passphrase);
974 key_free(private);
975 xfree(comment);
976 exit(1);
977 }
978 memset(passphrase, 0, strlen(passphrase));
979 xfree(passphrase);
980 public = key_from_private(private);
981 key_free(private);
982
983 strlcat(identity_file, ".pub", sizeof(identity_file));
984 fd = open(identity_file, O_WRONLY | O_CREAT | O_TRUNC, 0644);
985 if (fd == -1) {
986 printf("Could not save your public key in %s\n", identity_file);
987 exit(1);
988 }
989 f = fdopen(fd, "w");
990 if (f == NULL) {
991 printf("fdopen %s failed", identity_file);
992 exit(1);
993 }
994 if (!key_write(public, f))
995 fprintf(stderr, "write key failed");
996 key_free(public);
997 fprintf(f, " %s\n", new_comment);
998 fclose(f);
999
1000 xfree(comment);
1001
1002 printf("The comment in your key file has been changed.\n");
1003 exit(0);
1004}
1005
1006static void
1007usage(void)
1008{
1009 fprintf(stderr, "Usage: %s [options]\n", __progname);
1010 fprintf(stderr, "Options:\n");
34fee935 1011 fprintf(stderr, " -a trials Number of trials for screening DH-GEX moduli.\n");
1012 fprintf(stderr, " -B Show bubblebabble digest of key file.\n");
3c0ef626 1013 fprintf(stderr, " -b bits Number of bits in the key to create.\n");
34fee935 1014 fprintf(stderr, " -C comment Provide new comment.\n");
3c0ef626 1015 fprintf(stderr, " -c Change comment in private and public key files.\n");
34fee935 1016#ifdef SMARTCARD
1017 fprintf(stderr, " -D reader Download public key from smartcard.\n");
1018#endif /* SMARTCARD */
2278ffa1 1019 fprintf(stderr, " -e Convert OpenSSH to RFC 4716 key file.\n");
34fee935 1020 fprintf(stderr, " -F hostname Find hostname in known hosts file.\n");
3c0ef626 1021 fprintf(stderr, " -f filename Filename of the key file.\n");
34fee935 1022 fprintf(stderr, " -G file Generate candidates for DH-GEX moduli.\n");
70791e56 1023 fprintf(stderr, " -g Use generic DNS resource record format.\n");
34fee935 1024 fprintf(stderr, " -H Hash names in known_hosts file.\n");
2278ffa1 1025 fprintf(stderr, " -i Convert RFC 4716 to OpenSSH key file.\n");
3c0ef626 1026 fprintf(stderr, " -l Show fingerprint of key file.\n");
34fee935 1027 fprintf(stderr, " -M memory Amount of memory (MB) to use for generating DH-GEX moduli.\n");
3c0ef626 1028 fprintf(stderr, " -N phrase Provide new passphrase.\n");
1029 fprintf(stderr, " -P phrase Provide old passphrase.\n");
34fee935 1030 fprintf(stderr, " -p Change passphrase of private key file.\n");
1031 fprintf(stderr, " -q Quiet.\n");
1032 fprintf(stderr, " -R hostname Remove host from known_hosts file.\n");
70791e56 1033 fprintf(stderr, " -r hostname Print DNS resource record.\n");
34fee935 1034 fprintf(stderr, " -S start Start point (hex) for generating DH-GEX moduli.\n");
1035 fprintf(stderr, " -T file Screen candidates for DH-GEX moduli.\n");
1036 fprintf(stderr, " -t type Specify type of key to create.\n");
3c0ef626 1037#ifdef SMARTCARD
3c0ef626 1038 fprintf(stderr, " -U reader Upload private key to smartcard.\n");
1039#endif /* SMARTCARD */
34fee935 1040 fprintf(stderr, " -v Verbose.\n");
1041 fprintf(stderr, " -W gen Generator to use for generating DH-GEX moduli.\n");
1042 fprintf(stderr, " -y Read private key file and print public key.\n");
70791e56 1043
3c0ef626 1044 exit(1);
1045}
1046
1047/*
1048 * Main program for key management.
1049 */
1050int
2278ffa1 1051main(int argc, char **argv)
3c0ef626 1052{
e9a17296 1053 char dotsshdir[MAXPATHLEN], comment[1024], *passphrase1, *passphrase2;
70791e56 1054 char out_file[MAXPATHLEN], *reader_id = NULL;
34fee935 1055 char *rr_hostname = NULL;
3c0ef626 1056 Key *private, *public;
1057 struct passwd *pw;
1058 struct stat st;
34fee935 1059 int opt, type, fd, download = 0;
1060 u_int32_t memory = 0, generator_wanted = 0, trials = 100;
70791e56 1061 int do_gen_candidates = 0, do_screen_candidates = 0;
416fd2a8 1062 int log_level = SYSLOG_LEVEL_INFO;
70791e56 1063 BIGNUM *start = NULL;
3c0ef626 1064 FILE *f;
34fee935 1065 const char *errstr;
3c0ef626 1066
1067 extern int optind;
1068 extern char *optarg;
1069
e00da40d 1070 /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
1071 sanitise_stdfd();
1072
2278ffa1 1073 __progname = ssh_get_progname(argv[0]);
1b2ae391 1074 init_pathnames();
3c0ef626 1075
1076 SSLeay_add_all_algorithms();
2278ffa1 1077 log_init(argv[0], SYSLOG_LEVEL_INFO, SYSLOG_FACILITY_USER, 1);
70791e56 1078
e54b3d7c 1079 init_rng();
1080 seed_rng();
3c0ef626 1081
1082 /* we need this for the home * directory. */
1083 pw = getpwuid(getuid());
1084 if (!pw) {
1085 printf("You don't exist, go away!\n");
1086 exit(1);
1087 }
1088 if (gethostname(hostname, sizeof(hostname)) < 0) {
1089 perror("gethostname");
1090 exit(1);
1091 }
1092
2278ffa1 1093 while ((opt = getopt(argc, argv,
34fee935 1094 "degiqpclBHvxXyF:b:f:t:U:D:P:N:C:r:g:R:T:G:M:S:a:W:")) != -1) {
3c0ef626 1095 switch (opt) {
1096 case 'b':
2e437378 1097 bits = (u_int32_t)strtonum(optarg, 768, 32768, &errstr);
34fee935 1098 if (errstr)
1099 fatal("Bits has bad value %s (%s)",
1100 optarg, errstr);
1101 break;
1102 case 'F':
1103 find_host = 1;
1104 rr_hostname = optarg;
1105 break;
1106 case 'H':
1107 hash_hosts = 1;
1108 break;
1109 case 'R':
1110 delete_host = 1;
1111 rr_hostname = optarg;
3c0ef626 1112 break;
1113 case 'l':
1114 print_fingerprint = 1;
1115 break;
1116 case 'B':
1117 print_bubblebabble = 1;
1118 break;
1119 case 'p':
1120 change_passphrase = 1;
1121 break;
1122 case 'c':
1123 change_comment = 1;
1124 break;
1125 case 'f':
34fee935 1126 if (strlcpy(identity_file, optarg, sizeof(identity_file)) >=
1127 sizeof(identity_file))
1128 fatal("Identity filename too long");
3c0ef626 1129 have_identity = 1;
1130 break;
70791e56 1131 case 'g':
1132 print_generic = 1;
1133 break;
3c0ef626 1134 case 'P':
1135 identity_passphrase = optarg;
1136 break;
1137 case 'N':
1138 identity_new_passphrase = optarg;
1139 break;
1140 case 'C':
1141 identity_comment = optarg;
1142 break;
1143 case 'q':
1144 quiet = 1;
1145 break;
3c0ef626 1146 case 'e':
1147 case 'x':
1148 /* export key */
1149 convert_to_ssh2 = 1;
1150 break;
1151 case 'i':
1152 case 'X':
1153 /* import key */
1154 convert_from_ssh2 = 1;
1155 break;
1156 case 'y':
1157 print_public = 1;
1158 break;
1159 case 'd':
1160 key_type_name = "dsa";
1161 break;
1162 case 't':
1163 key_type_name = optarg;
1164 break;
1165 case 'D':
1166 download = 1;
2e437378 1167 /*FALLTHROUGH*/
3c0ef626 1168 case 'U':
1169 reader_id = optarg;
1170 break;
416fd2a8 1171 case 'v':
1172 if (log_level == SYSLOG_LEVEL_INFO)
1173 log_level = SYSLOG_LEVEL_DEBUG1;
1174 else {
1b56ff3d 1175 if (log_level >= SYSLOG_LEVEL_DEBUG1 &&
416fd2a8 1176 log_level < SYSLOG_LEVEL_DEBUG3)
1177 log_level++;
1178 }
1179 break;
70791e56 1180 case 'r':
34fee935 1181 rr_hostname = optarg;
70791e56 1182 break;
1183 case 'W':
2e437378 1184 generator_wanted = (u_int32_t)strtonum(optarg, 1,
1185 UINT_MAX, &errstr);
34fee935 1186 if (errstr)
1187 fatal("Desired generator has bad value: %s (%s)",
1188 optarg, errstr);
70791e56 1189 break;
1190 case 'a':
2e437378 1191 trials = (u_int32_t)strtonum(optarg, 1, UINT_MAX, &errstr);
34fee935 1192 if (errstr)
1193 fatal("Invalid number of trials: %s (%s)",
1194 optarg, errstr);
70791e56 1195 break;
1196 case 'M':
2e437378 1197 memory = (u_int32_t)strtonum(optarg, 1, UINT_MAX, &errstr);
34fee935 1198 if (errstr) {
1199 fatal("Memory limit is %s: %s", errstr, optarg);
1200 }
70791e56 1201 break;
1202 case 'G':
1203 do_gen_candidates = 1;
34fee935 1204 if (strlcpy(out_file, optarg, sizeof(out_file)) >=
1205 sizeof(out_file))
1206 fatal("Output filename too long");
70791e56 1207 break;
1208 case 'T':
1209 do_screen_candidates = 1;
34fee935 1210 if (strlcpy(out_file, optarg, sizeof(out_file)) >=
1211 sizeof(out_file))
1212 fatal("Output filename too long");
70791e56 1213 break;
1214 case 'S':
1215 /* XXX - also compare length against bits */
1216 if (BN_hex2bn(&start, optarg) == 0)
1217 fatal("Invalid start point.");
1218 break;
3c0ef626 1219 case '?':
1220 default:
1221 usage();
1222 }
1223 }
416fd2a8 1224
1225 /* reinit */
2278ffa1 1226 log_init(argv[0], log_level, SYSLOG_FACILITY_USER, 1);
416fd2a8 1227
2278ffa1 1228 if (optind < argc) {
3c0ef626 1229 printf("Too many arguments.\n");
1230 usage();
1231 }
1232 if (change_passphrase && change_comment) {
1233 printf("Can only have one of -p and -c.\n");
1234 usage();
1235 }
34fee935 1236 if (delete_host || hash_hosts || find_host)
1237 do_known_hosts(pw, rr_hostname);
3c0ef626 1238 if (print_fingerprint || print_bubblebabble)
1239 do_fingerprint(pw);
1240 if (change_passphrase)
1241 do_change_passphrase(pw);
2980ea68 1242 if (change_comment)
1243 do_change_comment(pw);
e54b3d7c 1244 if (convert_to_ssh2)
1245 do_convert_to_ssh2(pw);
1246 if (convert_from_ssh2)
1247 do_convert_from_ssh2(pw);
3c0ef626 1248 if (print_public)
1249 do_print_public(pw);
34fee935 1250 if (rr_hostname != NULL) {
2e437378 1251 unsigned int n = 0;
1252
1253 if (have_identity) {
1254 n = do_print_resource_record(pw,
1255 identity_file, rr_hostname);
1256 if (n == 0) {
1257 perror(identity_file);
1258 exit(1);
1259 }
1260 exit(0);
1261 } else {
1262
1263 n += do_print_resource_record(pw,
1264 _PATH_HOST_RSA_KEY_FILE, rr_hostname);
1265 n += do_print_resource_record(pw,
1266 _PATH_HOST_DSA_KEY_FILE, rr_hostname);
1267
1268 if (n == 0)
1269 fatal("no keys found.");
1270 exit(0);
1271 }
70791e56 1272 }
3c0ef626 1273 if (reader_id != NULL) {
1274#ifdef SMARTCARD
1275 if (download)
1276 do_download(pw, reader_id);
1277 else
1278 do_upload(pw, reader_id);
1279#else /* SMARTCARD */
1280 fatal("no support for smartcards.");
1281#endif /* SMARTCARD */
1282 }
1283
70791e56 1284 if (do_gen_candidates) {
1285 FILE *out = fopen(out_file, "w");
416fd2a8 1286
70791e56 1287 if (out == NULL) {
1288 error("Couldn't open modulus candidate file \"%s\": %s",
1289 out_file, strerror(errno));
1290 return (1);
1291 }
e00da40d 1292 if (bits == 0)
1293 bits = DEFAULT_BITS;
70791e56 1294 if (gen_candidates(out, memory, bits, start) != 0)
e00da40d 1295 fatal("modulus candidate generation failed");
70791e56 1296
1297 return (0);
1298 }
1299
1300 if (do_screen_candidates) {
1301 FILE *in;
1302 FILE *out = fopen(out_file, "w");
1303
1304 if (have_identity && strcmp(identity_file, "-") != 0) {
1305 if ((in = fopen(identity_file, "r")) == NULL) {
1306 fatal("Couldn't open modulus candidate "
416fd2a8 1307 "file \"%s\": %s", identity_file,
70791e56 1308 strerror(errno));
1309 }
1310 } else
1311 in = stdin;
1312
1313 if (out == NULL) {
1314 fatal("Couldn't open moduli file \"%s\": %s",
1315 out_file, strerror(errno));
1316 }
1317 if (prime_test(in, out, trials, generator_wanted) != 0)
e00da40d 1318 fatal("modulus screening failed");
70791e56 1319 return (0);
1320 }
1321
3c0ef626 1322 arc4random_stir();
1323
e00da40d 1324 if (key_type_name == NULL)
1325 key_type_name = "rsa";
1326
3c0ef626 1327 type = key_type_from_name(key_type_name);
1328 if (type == KEY_UNSPEC) {
1329 fprintf(stderr, "unknown key type %s\n", key_type_name);
1330 exit(1);
1331 }
e00da40d 1332 if (bits == 0)
1333 bits = (type == KEY_DSA) ? DEFAULT_BITS_DSA : DEFAULT_BITS;
1334 if (type == KEY_DSA && bits != 1024)
1335 fatal("DSA keys must be 1024 bits");
3c0ef626 1336 if (!quiet)
1337 printf("Generating public/private %s key pair.\n", key_type_name);
1338 private = key_generate(type, bits);
1339 if (private == NULL) {
1340 fprintf(stderr, "key_generate failed");
1341 exit(1);
1342 }
1343 public = key_from_private(private);
1344
1345 if (!have_identity)
1346 ask_filename(pw, "Enter file in which to save the key");
1347
e00da40d 1348 /* Create ~/.ssh directory if it doesn't already exist. */
3c0ef626 1349 snprintf(dotsshdir, sizeof dotsshdir, "%s/%s", pw->pw_dir, _PATH_SSH_USER_DIR);
1350 if (strstr(identity_file, dotsshdir) != NULL &&
1351 stat(dotsshdir, &st) < 0) {
1352 if (mkdir(dotsshdir, 0700) < 0)
1353 error("Could not create directory '%s'.", dotsshdir);
1354 else if (!quiet)
1355 printf("Created directory '%s'.\n", dotsshdir);
1356 }
1357 /* If the file already exists, ask the user to confirm. */
1358 if (stat(identity_file, &st) >= 0) {
1359 char yesno[3];
1360 printf("%s already exists.\n", identity_file);
1361 printf("Overwrite (y/n)? ");
1362 fflush(stdout);
1363 if (fgets(yesno, sizeof(yesno), stdin) == NULL)
1364 exit(1);
1365 if (yesno[0] != 'y' && yesno[0] != 'Y')
1366 exit(1);
1367 }
1368 /* Ask for a passphrase (twice). */
1369 if (identity_passphrase)
1370 passphrase1 = xstrdup(identity_passphrase);
1371 else if (identity_new_passphrase)
1372 passphrase1 = xstrdup(identity_new_passphrase);
1373 else {
1374passphrase_again:
1375 passphrase1 =
1376 read_passphrase("Enter passphrase (empty for no "
1377 "passphrase): ", RP_ALLOW_STDIN);
1378 passphrase2 = read_passphrase("Enter same passphrase again: ",
1379 RP_ALLOW_STDIN);
1380 if (strcmp(passphrase1, passphrase2) != 0) {
1381 /*
1382 * The passphrases do not match. Clear them and
1383 * retry.
1384 */
1385 memset(passphrase1, 0, strlen(passphrase1));
1386 memset(passphrase2, 0, strlen(passphrase2));
1387 xfree(passphrase1);
1388 xfree(passphrase2);
1389 printf("Passphrases do not match. Try again.\n");
1390 goto passphrase_again;
1391 }
1392 /* Clear the other copy of the passphrase. */
1393 memset(passphrase2, 0, strlen(passphrase2));
1394 xfree(passphrase2);
1395 }
1396
1397 if (identity_comment) {
1398 strlcpy(comment, identity_comment, sizeof(comment));
1399 } else {
1400 /* Create default commend field for the passphrase. */
1401 snprintf(comment, sizeof comment, "%s@%s", pw->pw_name, hostname);
1402 }
1403
1404 /* Save the key with the given passphrase and comment. */
1405 if (!key_save_private(private, identity_file, passphrase1, comment)) {
1406 printf("Saving the key failed: %s.\n", identity_file);
1407 memset(passphrase1, 0, strlen(passphrase1));
1408 xfree(passphrase1);
1409 exit(1);
1410 }
1411 /* Clear the passphrase. */
1412 memset(passphrase1, 0, strlen(passphrase1));
1413 xfree(passphrase1);
1414
1415 /* Clear the private key and the random number generator. */
1416 key_free(private);
1417 arc4random_stir();
1418
1419 if (!quiet)
1420 printf("Your identification has been saved in %s.\n", identity_file);
1421
1422 strlcat(identity_file, ".pub", sizeof(identity_file));
1423 fd = open(identity_file, O_WRONLY | O_CREAT | O_TRUNC, 0644);
1424 if (fd == -1) {
1425 printf("Could not save your public key in %s\n", identity_file);
1426 exit(1);
1427 }
1428 f = fdopen(fd, "w");
1429 if (f == NULL) {
1430 printf("fdopen %s failed", identity_file);
1431 exit(1);
1432 }
1433 if (!key_write(public, f))
1434 fprintf(stderr, "write key failed");
1435 fprintf(f, " %s\n", comment);
1436 fclose(f);
1437
1438 if (!quiet) {
1439 char *fp = key_fingerprint(public, SSH_FP_MD5, SSH_FP_HEX);
1440 printf("Your public key has been saved in %s.\n",
1441 identity_file);
1442 printf("The key fingerprint is:\n");
1443 printf("%s %s\n", fp, comment);
1444 xfree(fp);
1445 }
1446
1447 key_free(public);
1448 exit(0);
1449}
This page took 0.332444 seconds and 5 git commands to generate.