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