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