]> andersk Git - openssh.git/blame - ssh-keygen.c
- jakob@cvs.openbsd.org 2003/05/15 01:48:10
[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"
21289cd0 15RCSID("$OpenBSD: ssh-keygen.c,v 1.105 2003/05/14 18:16:20 jakob 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"
29#include "readpass.h"
94ec8c6b 30
93a56445 31#ifdef SMARTCARD
93a56445 32#include "scard.h"
dd2495cb 33#endif
2b30154a 34
a306f2dd 35/* Number of bits in the RSA/DSA key. This value can be changed on the command line. */
8efc0c15 36int bits = 1024;
37
aa3378df 38/*
39 * Flag indicating that we just want to change the passphrase. This can be
40 * set on the command line.
41 */
8efc0c15 42int change_passphrase = 0;
43
aa3378df 44/*
45 * Flag indicating that we just want to change the comment. This can be set
46 * on the command line.
47 */
8efc0c15 48int change_comment = 0;
49
50int quiet = 0;
51
f095fcc7 52/* Flag indicating that we just want to see the key fingerprint */
53int print_fingerprint = 0;
aaf45d87 54int print_bubblebabble = 0;
f095fcc7 55
5ad13cd7 56/* The identity file name, given on the command line or entered by the user. */
57char identity_file[1024];
58int have_identity = 0;
8efc0c15 59
60/* This is set to the passphrase if given on the command line. */
61char *identity_passphrase = NULL;
62
63/* This is set to the new passphrase if given on the command line. */
64char *identity_new_passphrase = NULL;
65
66/* This is set to the new comment if given on the command line. */
67char *identity_comment = NULL;
68
a306f2dd 69/* Dump public key file in format used by real and the original SSH 2 */
70int convert_to_ssh2 = 0;
71int convert_from_ssh2 = 0;
72int print_public = 0;
21289cd0 73int print_generic = 0;
fa08c86b 74
3dc93cd8 75char *key_type_name = NULL;
a306f2dd 76
5ad13cd7 77/* argv0 */
5260325f 78#ifdef HAVE___PROGNAME
5ad13cd7 79extern char *__progname;
260d427b 80#else
81char *__progname;
82#endif
8efc0c15 83
a306f2dd 84char hostname[MAXHOSTNAMELEN];
85
396c147e 86static void
5ad13cd7 87ask_filename(struct passwd *pw, const char *prompt)
8efc0c15 88{
5260325f 89 char buf[1024];
c523303b 90 char *name = NULL;
91
8d22d775 92 if (key_type_name == NULL)
42f11eb2 93 name = _PATH_SSH_CLIENT_ID_RSA;
8d22d775 94 else
95 switch (key_type_from_name(key_type_name)) {
96 case KEY_RSA1:
97 name = _PATH_SSH_CLIENT_IDENTITY;
98 break;
99 case KEY_DSA:
100 name = _PATH_SSH_CLIENT_ID_DSA;
101 break;
102 case KEY_RSA:
103 name = _PATH_SSH_CLIENT_ID_RSA;
104 break;
105 default:
106 fprintf(stderr, "bad key type");
107 exit(1);
108 break;
109 }
110
c523303b 111 snprintf(identity_file, sizeof(identity_file), "%s/%s", pw->pw_dir, name);
8d88011e 112 fprintf(stderr, "%s (%s): ", prompt, identity_file);
5260325f 113 if (fgets(buf, sizeof(buf), stdin) == NULL)
114 exit(1);
115 if (strchr(buf, '\n'))
116 *strchr(buf, '\n') = 0;
117 if (strcmp(buf, "") != 0)
118 strlcpy(identity_file, buf, sizeof(identity_file));
119 have_identity = 1;
f095fcc7 120}
8efc0c15 121
396c147e 122static Key *
abe0fb9f 123load_identity(char *filename)
a306f2dd 124{
aeaa3d9e 125 char *pass;
126 Key *prv;
127
cd332296 128 prv = key_load_private(filename, "", NULL);
aeaa3d9e 129 if (prv == NULL) {
abe0fb9f 130 if (identity_passphrase)
131 pass = xstrdup(identity_passphrase);
132 else
1843a425 133 pass = read_passphrase("Enter passphrase: ",
134 RP_ALLOW_STDIN);
aeaa3d9e 135 prv = key_load_private(filename, pass, NULL);
a306f2dd 136 memset(pass, 0, strlen(pass));
137 xfree(pass);
138 }
aeaa3d9e 139 return prv;
a306f2dd 140}
141
94ec8c6b 142#define SSH_COM_PUBLIC_BEGIN "---- BEGIN SSH2 PUBLIC KEY ----"
7203d6bb 143#define SSH_COM_PUBLIC_END "---- END SSH2 PUBLIC KEY ----"
94ec8c6b 144#define SSH_COM_PRIVATE_BEGIN "---- BEGIN SSH2 ENCRYPTED PRIVATE KEY ----"
2b87da3b 145#define SSH_COM_PRIVATE_KEY_MAGIC 0x3f6ff9eb
a306f2dd 146
396c147e 147static void
a306f2dd 148do_convert_to_ssh2(struct passwd *pw)
149{
b587c165 150 Key *k;
21b30f38 151 u_int len;
1e3b8b07 152 u_char *blob;
a306f2dd 153 struct stat st;
154
155 if (!have_identity)
156 ask_filename(pw, "Enter file in which the key is");
157 if (stat(identity_file, &st) < 0) {
158 perror(identity_file);
159 exit(1);
160 }
b587c165 161 if ((k = key_load_public(identity_file, NULL)) == NULL) {
abe0fb9f 162 if ((k = load_identity(identity_file)) == NULL) {
b587c165 163 fprintf(stderr, "load failed\n");
164 exit(1);
165 }
a306f2dd 166 }
3566c73c 167 if (k->type == KEY_RSA1) {
168 fprintf(stderr, "version 1 keys are not supported\n");
169 exit(1);
170 }
f7436b8c 171 if (key_to_blob(k, &blob, &len) <= 0) {
172 fprintf(stderr, "key_to_blob failed\n");
173 exit(1);
174 }
94ec8c6b 175 fprintf(stdout, "%s\n", SSH_COM_PUBLIC_BEGIN);
a306f2dd 176 fprintf(stdout,
512df038 177 "Comment: \"%u-bit %s, converted from OpenSSH by %s@%s\"\n",
b587c165 178 key_size(k), key_type(k),
a306f2dd 179 pw->pw_name, hostname);
180 dump_base64(stdout, blob, len);
94ec8c6b 181 fprintf(stdout, "%s\n", SSH_COM_PUBLIC_END);
b587c165 182 key_free(k);
a306f2dd 183 xfree(blob);
184 exit(0);
185}
186
396c147e 187static void
94ec8c6b 188buffer_get_bignum_bits(Buffer *b, BIGNUM *value)
189{
190 int bits = buffer_get_int(b);
191 int bytes = (bits + 7) / 8;
457fc0c6 192
94ec8c6b 193 if (buffer_len(b) < bytes)
457fc0c6 194 fatal("buffer_get_bignum_bits: input buffer too small: "
195 "need %d have %d", bytes, buffer_len(b));
20905a8e 196 BN_bin2bn(buffer_ptr(b), bytes, value);
94ec8c6b 197 buffer_consume(b, bytes);
198}
199
396c147e 200static Key *
c66f9d0e 201do_convert_private_ssh2_from_blob(u_char *blob, u_int blen)
94ec8c6b 202{
203 Buffer b;
94ec8c6b 204 Key *key = NULL;
a599bd06 205 char *type, *cipher;
d3260e12 206 u_char *sig, data[] = "abcde12345";
2e0becb6 207 int magic, rlen, ktype, i1, i2, i3, i4;
a599bd06 208 u_int slen;
2e0becb6 209 u_long e;
94ec8c6b 210
211 buffer_init(&b);
212 buffer_append(&b, blob, blen);
213
214 magic = buffer_get_int(&b);
215 if (magic != SSH_COM_PRIVATE_KEY_MAGIC) {
216 error("bad magic 0x%x != 0x%x", magic, SSH_COM_PRIVATE_KEY_MAGIC);
217 buffer_free(&b);
218 return NULL;
219 }
2e0becb6 220 i1 = buffer_get_int(&b);
94ec8c6b 221 type = buffer_get_string(&b, NULL);
222 cipher = buffer_get_string(&b, NULL);
2e0becb6 223 i2 = buffer_get_int(&b);
224 i3 = buffer_get_int(&b);
225 i4 = buffer_get_int(&b);
226 debug("ignore (%d %d %d %d)", i1,i2,i3,i4);
94ec8c6b 227 if (strcmp(cipher, "none") != 0) {
228 error("unsupported cipher %s", cipher);
229 xfree(cipher);
230 buffer_free(&b);
457fc0c6 231 xfree(type);
94ec8c6b 232 return NULL;
233 }
234 xfree(cipher);
235
457fc0c6 236 if (strstr(type, "dsa")) {
237 ktype = KEY_DSA;
238 } else if (strstr(type, "rsa")) {
239 ktype = KEY_RSA;
240 } else {
241 xfree(type);
94ec8c6b 242 return NULL;
243 }
457fc0c6 244 key = key_new_private(ktype);
245 xfree(type);
246
247 switch (key->type) {
248 case KEY_DSA:
249 buffer_get_bignum_bits(&b, key->dsa->p);
250 buffer_get_bignum_bits(&b, key->dsa->g);
251 buffer_get_bignum_bits(&b, key->dsa->q);
252 buffer_get_bignum_bits(&b, key->dsa->pub_key);
253 buffer_get_bignum_bits(&b, key->dsa->priv_key);
254 break;
255 case KEY_RSA:
2e0becb6 256 e = buffer_get_char(&b);
257 debug("e %lx", e);
258 if (e < 30) {
259 e <<= 8;
260 e += buffer_get_char(&b);
261 debug("e %lx", e);
262 e <<= 8;
263 e += buffer_get_char(&b);
264 debug("e %lx", e);
265 }
266 if (!BN_set_word(key->rsa->e, e)) {
457fc0c6 267 buffer_free(&b);
268 key_free(key);
269 return NULL;
270 }
271 buffer_get_bignum_bits(&b, key->rsa->d);
272 buffer_get_bignum_bits(&b, key->rsa->n);
273 buffer_get_bignum_bits(&b, key->rsa->iqmp);
274 buffer_get_bignum_bits(&b, key->rsa->q);
275 buffer_get_bignum_bits(&b, key->rsa->p);
2b63e803 276 rsa_generate_additional_parameters(key->rsa);
457fc0c6 277 break;
278 }
94ec8c6b 279 rlen = buffer_len(&b);
6aacefa7 280 if (rlen != 0)
457fc0c6 281 error("do_convert_private_ssh2_from_blob: "
282 "remaining bytes in key blob %d", rlen);
94ec8c6b 283 buffer_free(&b);
a599bd06 284
285 /* try the key */
286 key_sign(key, &sig, &slen, data, sizeof(data));
287 key_verify(key, sig, slen, data, sizeof(data));
288 xfree(sig);
94ec8c6b 289 return key;
290}
291
396c147e 292static void
a306f2dd 293do_convert_from_ssh2(struct passwd *pw)
294{
295 Key *k;
296 int blen;
783dbbdc 297 u_int len;
a306f2dd 298 char line[1024], *p;
cf54363d 299 u_char blob[8096];
a306f2dd 300 char encoded[8096];
301 struct stat st;
94ec8c6b 302 int escaped = 0, private = 0, ok;
a306f2dd 303 FILE *fp;
304
305 if (!have_identity)
306 ask_filename(pw, "Enter file in which the key is");
307 if (stat(identity_file, &st) < 0) {
308 perror(identity_file);
309 exit(1);
310 }
311 fp = fopen(identity_file, "r");
312 if (fp == NULL) {
313 perror(identity_file);
314 exit(1);
315 }
316 encoded[0] = '\0';
317 while (fgets(line, sizeof(line), fp)) {
d0c832f3 318 if (!(p = strchr(line, '\n'))) {
319 fprintf(stderr, "input line too long.\n");
320 exit(1);
321 }
322 if (p > line && p[-1] == '\\')
323 escaped++;
a306f2dd 324 if (strncmp(line, "----", 4) == 0 ||
325 strstr(line, ": ") != NULL) {
94ec8c6b 326 if (strstr(line, SSH_COM_PRIVATE_BEGIN) != NULL)
327 private = 1;
a599bd06 328 if (strstr(line, " END ") != NULL) {
329 break;
330 }
012bc0e1 331 /* fprintf(stderr, "ignore: %s", line); */
a306f2dd 332 continue;
333 }
d0c832f3 334 if (escaped) {
335 escaped--;
012bc0e1 336 /* fprintf(stderr, "escaped: %s", line); */
d0c832f3 337 continue;
a306f2dd 338 }
339 *p = '\0';
340 strlcat(encoded, line, sizeof(encoded));
341 }
783dbbdc 342 len = strlen(encoded);
343 if (((len % 4) == 3) &&
344 (encoded[len-1] == '=') &&
345 (encoded[len-2] == '=') &&
346 (encoded[len-3] == '='))
347 encoded[len-3] = '\0';
e6207598 348 blen = uudecode(encoded, blob, sizeof(blob));
a306f2dd 349 if (blen < 0) {
350 fprintf(stderr, "uudecode failed.\n");
351 exit(1);
352 }
94ec8c6b 353 k = private ?
354 do_convert_private_ssh2_from_blob(blob, blen) :
fa08c86b 355 key_from_blob(blob, blen);
94ec8c6b 356 if (k == NULL) {
357 fprintf(stderr, "decode blob failed.\n");
358 exit(1);
359 }
360 ok = private ?
457fc0c6 361 (k->type == KEY_DSA ?
362 PEM_write_DSAPrivateKey(stdout, k->dsa, NULL, NULL, 0, NULL, NULL) :
363 PEM_write_RSAPrivateKey(stdout, k->rsa, NULL, NULL, 0, NULL, NULL)) :
94ec8c6b 364 key_write(k, stdout);
365 if (!ok) {
366 fprintf(stderr, "key write failed");
367 exit(1);
368 }
a306f2dd 369 key_free(k);
4ccb828d 370 if (!private)
371 fprintf(stdout, "\n");
a306f2dd 372 fclose(fp);
373 exit(0);
374}
375
396c147e 376static void
a306f2dd 377do_print_public(struct passwd *pw)
378{
aeaa3d9e 379 Key *prv;
a306f2dd 380 struct stat st;
381
382 if (!have_identity)
383 ask_filename(pw, "Enter file in which the key is");
384 if (stat(identity_file, &st) < 0) {
385 perror(identity_file);
386 exit(1);
387 }
abe0fb9f 388 prv = load_identity(identity_file);
aeaa3d9e 389 if (prv == NULL) {
a306f2dd 390 fprintf(stderr, "load failed\n");
391 exit(1);
392 }
aeaa3d9e 393 if (!key_write(prv, stdout))
a306f2dd 394 fprintf(stderr, "key_write failed");
aeaa3d9e 395 key_free(prv);
a306f2dd 396 fprintf(stdout, "\n");
397 exit(0);
398}
399
4f831fd7 400#ifdef SMARTCARD
2b30154a 401static void
93a56445 402do_upload(struct passwd *pw, const char *sc_reader_id)
2b30154a 403{
2b30154a 404 Key *prv = NULL;
405 struct stat st;
b9f62352 406 int ret;
407
2b30154a 408 if (!have_identity)
409 ask_filename(pw, "Enter file in which the key is");
410 if (stat(identity_file, &st) < 0) {
411 perror(identity_file);
b9f62352 412 exit(1);
2b30154a 413 }
414 prv = load_identity(identity_file);
415 if (prv == NULL) {
416 error("load failed");
b9f62352 417 exit(1);
49ccba9c 418 }
b9f62352 419 ret = sc_put_key(prv, sc_reader_id);
420 key_free(prv);
421 if (ret < 0)
422 exit(1);
bbe88b6d 423 logit("loading key done");
b9f62352 424 exit(0);
2b30154a 425}
93a56445 426
427static void
428do_download(struct passwd *pw, const char *sc_reader_id)
429{
0659cace 430 Key **keys = NULL;
431 int i;
93a56445 432
0659cace 433 keys = sc_get_keys(sc_reader_id, NULL);
434 if (keys == NULL)
93a56445 435 fatal("cannot read public key from smartcard");
0659cace 436 for (i = 0; keys[i]; i++) {
437 key_write(keys[i], stdout);
438 key_free(keys[i]);
439 fprintf(stdout, "\n");
440 }
441 xfree(keys);
93a56445 442 exit(0);
443}
3e984472 444#endif /* SMARTCARD */
2b30154a 445
396c147e 446static void
f095fcc7 447do_fingerprint(struct passwd *pw)
448{
c8d54615 449 FILE *f;
a306f2dd 450 Key *public;
aaf45d87 451 char *comment = NULL, *cp, *ep, line[16*1024], *fp;
17a3011c 452 int i, skip = 0, num = 1, invalid = 1;
453 enum fp_rep rep;
454 enum fp_type fptype;
5260325f 455 struct stat st;
456
aeaa3d9e 457 fptype = print_bubblebabble ? SSH_FP_SHA1 : SSH_FP_MD5;
458 rep = print_bubblebabble ? SSH_FP_BUBBLEBABBLE : SSH_FP_HEX;
aaf45d87 459
5260325f 460 if (!have_identity)
461 ask_filename(pw, "Enter file in which the key is");
462 if (stat(identity_file, &st) < 0) {
463 perror(identity_file);
464 exit(1);
465 }
aeaa3d9e 466 public = key_load_public(identity_file, &comment);
467 if (public != NULL) {
468 fp = key_fingerprint(public, fptype, rep);
512df038 469 printf("%u %s %s\n", key_size(public), fp, comment);
a306f2dd 470 key_free(public);
fa08c86b 471 xfree(comment);
aaf45d87 472 xfree(fp);
c8d54615 473 exit(0);
474 }
aeaa3d9e 475 if (comment)
476 xfree(comment);
c8d54615 477
478 f = fopen(identity_file, "r");
479 if (f != NULL) {
c8d54615 480 while (fgets(line, sizeof(line), f)) {
481 i = strlen(line) - 1;
482 if (line[i] != '\n') {
483 error("line %d too long: %.40s...", num, line);
484 skip = 1;
485 continue;
486 }
487 num++;
488 if (skip) {
489 skip = 0;
490 continue;
491 }
492 line[i] = '\0';
493
494 /* Skip leading whitespace, empty and comment lines. */
495 for (cp = line; *cp == ' ' || *cp == '\t'; cp++)
496 ;
497 if (!*cp || *cp == '\n' || *cp == '#')
498 continue ;
499 i = strtol(cp, &ep, 10);
500 if (i == 0 || ep == NULL || (*ep != ' ' && *ep != '\t')) {
501 int quoted = 0;
502 comment = cp;
512df038 503 for (; *cp && (quoted || (*cp != ' ' &&
504 *cp != '\t')); cp++) {
c8d54615 505 if (*cp == '\\' && cp[1] == '"')
506 cp++; /* Skip both */
507 else if (*cp == '"')
508 quoted = !quoted;
509 }
510 if (!*cp)
511 continue;
512 *cp++ = '\0';
513 }
514 ep = cp;
efcae5b1 515 public = key_new(KEY_RSA1);
516 if (key_read(public, &cp) != 1) {
517 cp = ep;
518 key_free(public);
519 public = key_new(KEY_UNSPEC);
520 if (key_read(public, &cp) != 1) {
521 key_free(public);
522 continue;
523 }
5260325f 524 }
efcae5b1 525 comment = *cp ? cp : comment;
aeaa3d9e 526 fp = key_fingerprint(public, fptype, rep);
512df038 527 printf("%u %s %s\n", key_size(public), fp,
efcae5b1 528 comment ? comment : "no comment");
aaf45d87 529 xfree(fp);
aeaa3d9e 530 key_free(public);
efcae5b1 531 invalid = 0;
5260325f 532 }
c8d54615 533 fclose(f);
534 }
535 if (invalid) {
f564d016 536 printf("%s is not a public key file.\n", identity_file);
c8d54615 537 exit(1);
5260325f 538 }
5260325f 539 exit(0);
f095fcc7 540}
541
5260325f 542/*
543 * Perform changing a passphrase. The argument is the passwd structure
544 * for the current user.
545 */
396c147e 546static void
f095fcc7 547do_change_passphrase(struct passwd *pw)
548{
5260325f 549 char *comment;
550 char *old_passphrase, *passphrase1, *passphrase2;
551 struct stat st;
a306f2dd 552 Key *private;
5260325f 553
554 if (!have_identity)
555 ask_filename(pw, "Enter file in which the key is");
5260325f 556 if (stat(identity_file, &st) < 0) {
557 perror(identity_file);
558 exit(1);
559 }
5260325f 560 /* Try to load the file with empty passphrase. */
aeaa3d9e 561 private = key_load_private(identity_file, "", &comment);
562 if (private == NULL) {
5260325f 563 if (identity_passphrase)
564 old_passphrase = xstrdup(identity_passphrase);
565 else
1843a425 566 old_passphrase =
567 read_passphrase("Enter old passphrase: ",
568 RP_ALLOW_STDIN);
569 private = key_load_private(identity_file, old_passphrase,
570 &comment);
aeaa3d9e 571 memset(old_passphrase, 0, strlen(old_passphrase));
572 xfree(old_passphrase);
573 if (private == NULL) {
5260325f 574 printf("Bad passphrase.\n");
575 exit(1);
576 }
5260325f 577 }
578 printf("Key has comment '%s'\n", comment);
579
580 /* Ask the new passphrase (twice). */
581 if (identity_new_passphrase) {
582 passphrase1 = xstrdup(identity_new_passphrase);
583 passphrase2 = NULL;
584 } else {
585 passphrase1 =
1843a425 586 read_passphrase("Enter new passphrase (empty for no "
587 "passphrase): ", RP_ALLOW_STDIN);
588 passphrase2 = read_passphrase("Enter same passphrase again: ",
184eed6a 589 RP_ALLOW_STDIN);
5260325f 590
591 /* Verify that they are the same. */
592 if (strcmp(passphrase1, passphrase2) != 0) {
593 memset(passphrase1, 0, strlen(passphrase1));
594 memset(passphrase2, 0, strlen(passphrase2));
595 xfree(passphrase1);
596 xfree(passphrase2);
597 printf("Pass phrases do not match. Try again.\n");
598 exit(1);
599 }
600 /* Destroy the other copy. */
601 memset(passphrase2, 0, strlen(passphrase2));
602 xfree(passphrase2);
8efc0c15 603 }
8efc0c15 604
5260325f 605 /* Save the file using the new passphrase. */
aeaa3d9e 606 if (!key_save_private(private, identity_file, passphrase1, comment)) {
58cfa257 607 printf("Saving the key failed: %s.\n", identity_file);
5260325f 608 memset(passphrase1, 0, strlen(passphrase1));
609 xfree(passphrase1);
a306f2dd 610 key_free(private);
5260325f 611 xfree(comment);
612 exit(1);
613 }
614 /* Destroy the passphrase and the copy of the key in memory. */
615 memset(passphrase1, 0, strlen(passphrase1));
616 xfree(passphrase1);
a306f2dd 617 key_free(private); /* Destroys contents */
5260325f 618 xfree(comment);
619
620 printf("Your identification has been saved with the new passphrase.\n");
621 exit(0);
622}
8efc0c15 623
21289cd0 624#ifdef DNS
625/*
626 * Print the SSHFP RR.
627 */
628static void
629do_print_resource_record(struct passwd *pw, char *hostname)
630{
631 Key *public;
632 char *comment = NULL;
633 struct stat st;
634
635 if (!have_identity)
636 ask_filename(pw, "Enter file in which the key is");
637 if (stat(identity_file, &st) < 0) {
638 perror(identity_file);
639 exit(1);
640 }
641 public = key_load_public(identity_file, &comment);
642 if (public != NULL) {
643 export_dns_rr(hostname, public, stdout, print_generic);
644 key_free(public);
645 xfree(comment);
646 exit(0);
647 }
648 if (comment)
649 xfree(comment);
650
651 printf("failed to read v2 public key from %s.\n", identity_file);
652 exit(1);
653}
654#endif /* DNS */
655
5260325f 656/*
657 * Change the comment of a private key file.
658 */
396c147e 659static void
8efc0c15 660do_change_comment(struct passwd *pw)
661{
1c9a907f 662 char new_comment[1024], *comment, *passphrase;
aeaa3d9e 663 Key *private;
664 Key *public;
5260325f 665 struct stat st;
666 FILE *f;
1c9a907f 667 int fd;
5260325f 668
669 if (!have_identity)
670 ask_filename(pw, "Enter file in which the key is");
5260325f 671 if (stat(identity_file, &st) < 0) {
672 perror(identity_file);
673 exit(1);
674 }
aeaa3d9e 675 private = key_load_private(identity_file, "", &comment);
676 if (private == NULL) {
5260325f 677 if (identity_passphrase)
678 passphrase = xstrdup(identity_passphrase);
679 else if (identity_new_passphrase)
680 passphrase = xstrdup(identity_new_passphrase);
681 else
1843a425 682 passphrase = read_passphrase("Enter passphrase: ",
683 RP_ALLOW_STDIN);
5260325f 684 /* Try to load using the passphrase. */
aeaa3d9e 685 private = key_load_private(identity_file, passphrase, &comment);
686 if (private == NULL) {
5260325f 687 memset(passphrase, 0, strlen(passphrase));
688 xfree(passphrase);
689 printf("Bad passphrase.\n");
690 exit(1);
691 }
aeaa3d9e 692 } else {
693 passphrase = xstrdup("");
5260325f 694 }
aeaa3d9e 695 if (private->type != KEY_RSA1) {
696 fprintf(stderr, "Comments are only supported for RSA1 keys.\n");
697 key_free(private);
698 exit(1);
184eed6a 699 }
5260325f 700 printf("Key now has comment '%s'\n", comment);
701
702 if (identity_comment) {
703 strlcpy(new_comment, identity_comment, sizeof(new_comment));
704 } else {
705 printf("Enter new comment: ");
706 fflush(stdout);
707 if (!fgets(new_comment, sizeof(new_comment), stdin)) {
708 memset(passphrase, 0, strlen(passphrase));
a306f2dd 709 key_free(private);
5260325f 710 exit(1);
711 }
5260325f 712 if (strchr(new_comment, '\n'))
713 *strchr(new_comment, '\n') = 0;
714 }
715
716 /* Save the file using the new passphrase. */
aeaa3d9e 717 if (!key_save_private(private, identity_file, passphrase, new_comment)) {
58cfa257 718 printf("Saving the key failed: %s.\n", identity_file);
5260325f 719 memset(passphrase, 0, strlen(passphrase));
720 xfree(passphrase);
a306f2dd 721 key_free(private);
5260325f 722 xfree(comment);
723 exit(1);
8efc0c15 724 }
5260325f 725 memset(passphrase, 0, strlen(passphrase));
726 xfree(passphrase);
aeaa3d9e 727 public = key_from_private(private);
a306f2dd 728 key_free(private);
5260325f 729
5260325f 730 strlcat(identity_file, ".pub", sizeof(identity_file));
1c9a907f 731 fd = open(identity_file, O_WRONLY | O_CREAT | O_TRUNC, 0644);
732 if (fd == -1) {
5260325f 733 printf("Could not save your public key in %s\n", identity_file);
734 exit(1);
735 }
1c9a907f 736 f = fdopen(fd, "w");
737 if (f == NULL) {
738 printf("fdopen %s failed", identity_file);
739 exit(1);
740 }
a306f2dd 741 if (!key_write(public, f))
742 fprintf(stderr, "write key failed");
743 key_free(public);
744 fprintf(f, " %s\n", new_comment);
5260325f 745 fclose(f);
746
747 xfree(comment);
748
749 printf("The comment in your key file has been changed.\n");
750 exit(0);
8efc0c15 751}
752
396c147e 753static void
5ad13cd7 754usage(void)
755{
58153e34 756 fprintf(stderr, "Usage: %s [options]\n", __progname);
757 fprintf(stderr, "Options:\n");
758 fprintf(stderr, " -b bits Number of bits in the key to create.\n");
759 fprintf(stderr, " -c Change comment in private and public key files.\n");
760 fprintf(stderr, " -e Convert OpenSSH to IETF SECSH key file.\n");
761 fprintf(stderr, " -f filename Filename of the key file.\n");
21289cd0 762 fprintf(stderr, " -g Use generic DNS resource record format.\n");
58153e34 763 fprintf(stderr, " -i Convert IETF SECSH to OpenSSH key file.\n");
764 fprintf(stderr, " -l Show fingerprint of key file.\n");
765 fprintf(stderr, " -p Change passphrase of private key file.\n");
766 fprintf(stderr, " -q Quiet.\n");
767 fprintf(stderr, " -y Read private key file and print public key.\n");
768 fprintf(stderr, " -t type Specify type of key to create.\n");
769 fprintf(stderr, " -B Show bubblebabble digest of key file.\n");
770 fprintf(stderr, " -C comment Provide new comment.\n");
771 fprintf(stderr, " -N phrase Provide new passphrase.\n");
772 fprintf(stderr, " -P phrase Provide old passphrase.\n");
21289cd0 773#ifdef DNS
774 fprintf(stderr, " -r hostname Print DNS resource record.\n");
775#endif /* DNS */
58153e34 776#ifdef SMARTCARD
777 fprintf(stderr, " -D reader Download public key from smartcard.\n");
778 fprintf(stderr, " -U reader Upload private key to smartcard.\n");
779#endif /* SMARTCARD */
780
5260325f 781 exit(1);
5ad13cd7 782}
783
5260325f 784/*
785 * Main program for key management.
786 */
8efc0c15 787int
788main(int ac, char **av)
789{
3dc93cd8 790 char dotsshdir[MAXPATHLEN], comment[1024], *passphrase1, *passphrase2;
93a56445 791 char *reader_id = NULL;
21289cd0 792 char *resource_record_hostname = NULL;
1c9a907f 793 Key *private, *public;
5260325f 794 struct passwd *pw;
5260325f 795 struct stat st;
93a56445 796 int opt, type, fd, download = 0;
5260325f 797 FILE *f;
fa08c86b 798
5260325f 799 extern int optind;
800 extern char *optarg;
801
260d427b 802 __progname = get_progname(av[0]);
264dce47 803
fa649821 804 SSLeay_add_all_algorithms();
ce88d9df 805 init_rng();
806 seed_rng();
a306f2dd 807
aa3378df 808 /* we need this for the home * directory. */
5260325f 809 pw = getpwuid(getuid());
810 if (!pw) {
811 printf("You don't exist, go away!\n");
812 exit(1);
813 }
a306f2dd 814 if (gethostname(hostname, sizeof(hostname)) < 0) {
815 perror("gethostname");
816 exit(1);
817 }
aa3378df 818
21289cd0 819 while ((opt = getopt(ac, av, "degiqpclBRxXyb:f:t:U:D:P:N:C:r:")) != -1) {
5260325f 820 switch (opt) {
821 case 'b':
822 bits = atoi(optarg);
823 if (bits < 512 || bits > 32768) {
824 printf("Bits has bad value.\n");
825 exit(1);
826 }
827 break;
5260325f 828 case 'l':
829 print_fingerprint = 1;
830 break;
aaf45d87 831 case 'B':
832 print_bubblebabble = 1;
833 break;
5260325f 834 case 'p':
835 change_passphrase = 1;
836 break;
5260325f 837 case 'c':
838 change_comment = 1;
839 break;
5260325f 840 case 'f':
841 strlcpy(identity_file, optarg, sizeof(identity_file));
842 have_identity = 1;
843 break;
21289cd0 844 case 'g':
845 print_generic = 1;
846 break;
5260325f 847 case 'P':
848 identity_passphrase = optarg;
849 break;
5260325f 850 case 'N':
851 identity_new_passphrase = optarg;
852 break;
5260325f 853 case 'C':
854 identity_comment = optarg;
855 break;
5260325f 856 case 'q':
857 quiet = 1;
858 break;
a306f2dd 859 case 'R':
fa08c86b 860 /* unused */
861 exit(0);
a306f2dd 862 break;
5deceabb 863 case 'e':
a306f2dd 864 case 'x':
5deceabb 865 /* export key */
a306f2dd 866 convert_to_ssh2 = 1;
867 break;
5deceabb 868 case 'i':
a306f2dd 869 case 'X':
5deceabb 870 /* import key */
a306f2dd 871 convert_from_ssh2 = 1;
872 break;
a306f2dd 873 case 'y':
874 print_public = 1;
875 break;
a306f2dd 876 case 'd':
fa08c86b 877 key_type_name = "dsa";
a306f2dd 878 break;
fa08c86b 879 case 't':
880 key_type_name = optarg;
fa08c86b 881 break;
93a56445 882 case 'D':
883 download = 1;
285d2b15 884 case 'U':
93a56445 885 reader_id = optarg;
2b30154a 886 break;
21289cd0 887 case 'r':
888 resource_record_hostname = optarg;
889 break;
5260325f 890 case '?':
891 default:
892 usage();
893 }
894 }
895 if (optind < ac) {
896 printf("Too many arguments.\n");
897 usage();
898 }
899 if (change_passphrase && change_comment) {
900 printf("Can only have one of -p and -c.\n");
901 usage();
902 }
aaf45d87 903 if (print_fingerprint || print_bubblebabble)
5260325f 904 do_fingerprint(pw);
5260325f 905 if (change_passphrase)
906 do_change_passphrase(pw);
633151a3 907 if (change_comment)
908 do_change_comment(pw);
ce88d9df 909 if (convert_to_ssh2)
910 do_convert_to_ssh2(pw);
911 if (convert_from_ssh2)
912 do_convert_from_ssh2(pw);
a306f2dd 913 if (print_public)
914 do_print_public(pw);
21289cd0 915 if (resource_record_hostname != NULL) {
916#ifdef DNS
917 do_print_resource_record(pw, resource_record_hostname);
918#else /* DNS */
919 fatal("no DNS support.");
920#endif /* DNS */
921 }
93a56445 922 if (reader_id != NULL) {
4f831fd7 923#ifdef SMARTCARD
93a56445 924 if (download)
925 do_download(pw, reader_id);
926 else
927 do_upload(pw, reader_id);
3e984472 928#else /* SMARTCARD */
4f831fd7 929 fatal("no support for smartcards.");
3e984472 930#endif /* SMARTCARD */
93a56445 931 }
5260325f 932
933 arc4random_stir();
934
bb28e836 935 if (key_type_name == NULL) {
936 printf("You must specify a key type (-t).\n");
937 usage();
938 }
c523303b 939 type = key_type_from_name(key_type_name);
940 if (type == KEY_UNSPEC) {
941 fprintf(stderr, "unknown key type %s\n", key_type_name);
942 exit(1);
a306f2dd 943 }
fa08c86b 944 if (!quiet)
c523303b 945 printf("Generating public/private %s key pair.\n", key_type_name);
fa08c86b 946 private = key_generate(type, bits);
947 if (private == NULL) {
948 fprintf(stderr, "key_generate failed");
949 exit(1);
950 }
951 public = key_from_private(private);
5260325f 952
953 if (!have_identity)
954 ask_filename(pw, "Enter file in which to save the key");
955
956 /* Create ~/.ssh directory if it doesn\'t already exist. */
42f11eb2 957 snprintf(dotsshdir, sizeof dotsshdir, "%s/%s", pw->pw_dir, _PATH_SSH_USER_DIR);
5260325f 958 if (strstr(identity_file, dotsshdir) != NULL &&
959 stat(dotsshdir, &st) < 0) {
704b1659 960 if (mkdir(dotsshdir, 0700) < 0)
5260325f 961 error("Could not create directory '%s'.", dotsshdir);
962 else if (!quiet)
963 printf("Created directory '%s'.\n", dotsshdir);
964 }
965 /* If the file already exists, ask the user to confirm. */
966 if (stat(identity_file, &st) >= 0) {
967 char yesno[3];
968 printf("%s already exists.\n", identity_file);
969 printf("Overwrite (y/n)? ");
970 fflush(stdout);
971 if (fgets(yesno, sizeof(yesno), stdin) == NULL)
972 exit(1);
973 if (yesno[0] != 'y' && yesno[0] != 'Y')
974 exit(1);
975 }
976 /* Ask for a passphrase (twice). */
977 if (identity_passphrase)
978 passphrase1 = xstrdup(identity_passphrase);
979 else if (identity_new_passphrase)
980 passphrase1 = xstrdup(identity_new_passphrase);
981 else {
982passphrase_again:
983 passphrase1 =
1843a425 984 read_passphrase("Enter passphrase (empty for no "
985 "passphrase): ", RP_ALLOW_STDIN);
986 passphrase2 = read_passphrase("Enter same passphrase again: ",
987 RP_ALLOW_STDIN);
5260325f 988 if (strcmp(passphrase1, passphrase2) != 0) {
1843a425 989 /*
990 * The passphrases do not match. Clear them and
991 * retry.
992 */
5260325f 993 memset(passphrase1, 0, strlen(passphrase1));
994 memset(passphrase2, 0, strlen(passphrase2));
995 xfree(passphrase1);
996 xfree(passphrase2);
997 printf("Passphrases do not match. Try again.\n");
998 goto passphrase_again;
999 }
1000 /* Clear the other copy of the passphrase. */
1001 memset(passphrase2, 0, strlen(passphrase2));
1002 xfree(passphrase2);
1003 }
1004
5260325f 1005 if (identity_comment) {
1006 strlcpy(comment, identity_comment, sizeof(comment));
1007 } else {
6ae2364d 1008 /* Create default commend field for the passphrase. */
5260325f 1009 snprintf(comment, sizeof comment, "%s@%s", pw->pw_name, hostname);
1010 }
1011
1012 /* Save the key with the given passphrase and comment. */
aeaa3d9e 1013 if (!key_save_private(private, identity_file, passphrase1, comment)) {
58cfa257 1014 printf("Saving the key failed: %s.\n", identity_file);
5260325f 1015 memset(passphrase1, 0, strlen(passphrase1));
1016 xfree(passphrase1);
1017 exit(1);
1018 }
1019 /* Clear the passphrase. */
1020 memset(passphrase1, 0, strlen(passphrase1));
1021 xfree(passphrase1);
1022
1023 /* Clear the private key and the random number generator. */
fa08c86b 1024 key_free(private);
5260325f 1025 arc4random_stir();
1026
1027 if (!quiet)
1028 printf("Your identification has been saved in %s.\n", identity_file);
1029
5260325f 1030 strlcat(identity_file, ".pub", sizeof(identity_file));
1c9a907f 1031 fd = open(identity_file, O_WRONLY | O_CREAT | O_TRUNC, 0644);
1032 if (fd == -1) {
5260325f 1033 printf("Could not save your public key in %s\n", identity_file);
1034 exit(1);
1035 }
1c9a907f 1036 f = fdopen(fd, "w");
1037 if (f == NULL) {
1038 printf("fdopen %s failed", identity_file);
1039 exit(1);
1040 }
a306f2dd 1041 if (!key_write(public, f))
1042 fprintf(stderr, "write key failed");
1043 fprintf(f, " %s\n", comment);
5260325f 1044 fclose(f);
1045
1046 if (!quiet) {
22138a36 1047 char *fp = key_fingerprint(public, SSH_FP_MD5, SSH_FP_HEX);
a306f2dd 1048 printf("Your public key has been saved in %s.\n",
1049 identity_file);
5260325f 1050 printf("The key fingerprint is:\n");
22138a36 1051 printf("%s %s\n", fp, comment);
1052 xfree(fp);
8efc0c15 1053 }
a306f2dd 1054
1055 key_free(public);
5260325f 1056 exit(0);
8efc0c15 1057}
This page took 0.354217 seconds and 5 git commands to generate.