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