]> andersk Git - openssh.git/blame_incremental - ssh-keygen.c
- stevesk@cvs.openbsd.org 2001/07/26 17:18:22
[openssh.git] / ssh-keygen.c
... / ...
CommitLineData
1/*
2 * Author: Tatu Ylonen <ylo@cs.hut.fi>
3 * Copyright (c) 1994 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4 * All rights reserved
5 * Identity and host key generation and maintenance.
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".
12 */
13
14#include "includes.h"
15RCSID("$OpenBSD: ssh-keygen.c,v 1.72 2001/07/02 22:40:18 markus Exp $");
16
17#include <openssl/evp.h>
18#include <openssl/pem.h>
19
20#ifdef SMARTCARD
21#include <sectok.h>
22#endif
23
24#include "xmalloc.h"
25#include "key.h"
26#include "rsa.h"
27#include "authfile.h"
28#include "uuencode.h"
29#include "buffer.h"
30#include "bufaux.h"
31#include "pathnames.h"
32#include "log.h"
33#include "readpass.h"
34
35
36/* Number of bits in the RSA/DSA key. This value can be changed on the command line. */
37int bits = 1024;
38
39/*
40 * Flag indicating that we just want to change the passphrase. This can be
41 * set on the command line.
42 */
43int change_passphrase = 0;
44
45/*
46 * Flag indicating that we just want to change the comment. This can be set
47 * on the command line.
48 */
49int change_comment = 0;
50
51int quiet = 0;
52
53/* Flag indicating that we just want to see the key fingerprint */
54int print_fingerprint = 0;
55int print_bubblebabble = 0;
56
57/* The identity file name, given on the command line or entered by the user. */
58char identity_file[1024];
59int have_identity = 0;
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
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;
74
75/* default to RSA for SSH-1 */
76char *key_type_name = "rsa1";
77
78/* argv0 */
79#ifdef HAVE___PROGNAME
80extern char *__progname;
81#else
82char *__progname;
83#endif
84
85char hostname[MAXHOSTNAMELEN];
86
87static void
88ask_filename(struct passwd *pw, const char *prompt)
89{
90 char buf[1024];
91 char *name = NULL;
92
93 switch (key_type_from_name(key_type_name)) {
94 case KEY_RSA1:
95 name = _PATH_SSH_CLIENT_IDENTITY;
96 break;
97 case KEY_DSA:
98 name = _PATH_SSH_CLIENT_ID_DSA;
99 break;
100 case KEY_RSA:
101 name = _PATH_SSH_CLIENT_ID_RSA;
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);
109 fprintf(stderr, "%s (%s): ", prompt, identity_file);
110 fflush(stderr);
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;
118}
119
120static Key *
121load_identity(char *filename)
122{
123 char *pass;
124 Key *prv;
125
126 prv = key_load_private(filename, "", NULL);
127 if (prv == NULL) {
128 if (identity_passphrase)
129 pass = xstrdup(identity_passphrase);
130 else
131 pass = read_passphrase("Enter passphrase: ",
132 RP_ALLOW_STDIN);
133 prv = key_load_private(filename, pass, NULL);
134 memset(pass, 0, strlen(pass));
135 xfree(pass);
136 }
137 return prv;
138}
139
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 ----"
143#define SSH_COM_PRIVATE_KEY_MAGIC 0x3f6ff9eb
144
145static void
146do_convert_to_ssh2(struct passwd *pw)
147{
148 Key *k;
149 int len;
150 u_char *blob;
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 }
159 if ((k = key_load_public(identity_file, NULL)) == NULL) {
160 if ((k = load_identity(identity_file)) == NULL) {
161 fprintf(stderr, "load failed\n");
162 exit(1);
163 }
164 }
165 key_to_blob(k, &blob, &len);
166 fprintf(stdout, "%s\n", SSH_COM_PUBLIC_BEGIN);
167 fprintf(stdout,
168 "Comment: \"%d-bit %s, converted from OpenSSH by %s@%s\"\n",
169 key_size(k), key_type(k),
170 pw->pw_name, hostname);
171 dump_base64(stdout, blob, len);
172 fprintf(stdout, "%s\n", SSH_COM_PUBLIC_END);
173 key_free(k);
174 xfree(blob);
175 exit(0);
176}
177
178static void
179buffer_get_bignum_bits(Buffer *b, BIGNUM *value)
180{
181 int bits = buffer_get_int(b);
182 int bytes = (bits + 7) / 8;
183
184 if (buffer_len(b) < bytes)
185 fatal("buffer_get_bignum_bits: input buffer too small: "
186 "need %d have %d", bytes, buffer_len(b));
187 BN_bin2bn((u_char *)buffer_ptr(b), bytes, value);
188 buffer_consume(b, bytes);
189}
190
191static Key *
192do_convert_private_ssh2_from_blob(char *blob, int blen)
193{
194 Buffer b;
195 Key *key = NULL;
196 char *type, *cipher;
197 u_char *sig, data[] = "abcde12345";
198 int magic, rlen, ktype, i1, i2, i3, i4;
199 u_int slen;
200 u_long e;
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 }
211 i1 = buffer_get_int(&b);
212 type = buffer_get_string(&b, NULL);
213 cipher = buffer_get_string(&b, NULL);
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);
218 if (strcmp(cipher, "none") != 0) {
219 error("unsupported cipher %s", cipher);
220 xfree(cipher);
221 buffer_free(&b);
222 xfree(type);
223 return NULL;
224 }
225 xfree(cipher);
226
227 if (strstr(type, "dsa")) {
228 ktype = KEY_DSA;
229 } else if (strstr(type, "rsa")) {
230 ktype = KEY_RSA;
231 } else {
232 xfree(type);
233 return NULL;
234 }
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:
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)) {
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);
267 rsa_generate_additional_parameters(key->rsa);
268 break;
269 }
270 rlen = buffer_len(&b);
271 if(rlen != 0)
272 error("do_convert_private_ssh2_from_blob: "
273 "remaining bytes in key blob %d", rlen);
274 buffer_free(&b);
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);
280 return key;
281}
282
283static void
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;
292 int escaped = 0, private = 0, ok;
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)) {
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++;
314 if (strncmp(line, "----", 4) == 0 ||
315 strstr(line, ": ") != NULL) {
316 if (strstr(line, SSH_COM_PRIVATE_BEGIN) != NULL)
317 private = 1;
318 if (strstr(line, " END ") != NULL) {
319 break;
320 }
321 /* fprintf(stderr, "ignore: %s", line); */
322 continue;
323 }
324 if (escaped) {
325 escaped--;
326 /* fprintf(stderr, "escaped: %s", line); */
327 continue;
328 }
329 *p = '\0';
330 strlcat(encoded, line, sizeof(encoded));
331 }
332 blen = uudecode(encoded, (u_char *)blob, sizeof(blob));
333 if (blen < 0) {
334 fprintf(stderr, "uudecode failed.\n");
335 exit(1);
336 }
337 k = private ?
338 do_convert_private_ssh2_from_blob(blob, blen) :
339 key_from_blob(blob, blen);
340 if (k == NULL) {
341 fprintf(stderr, "decode blob failed.\n");
342 exit(1);
343 }
344 ok = private ?
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)) :
348 key_write(k, stdout);
349 if (!ok) {
350 fprintf(stderr, "key write failed");
351 exit(1);
352 }
353 key_free(k);
354 fprintf(stdout, "\n");
355 fclose(fp);
356 exit(0);
357}
358
359static void
360do_print_public(struct passwd *pw)
361{
362 Key *prv;
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 }
371 prv = load_identity(identity_file);
372 if (prv == NULL) {
373 fprintf(stderr, "load failed\n");
374 exit(1);
375 }
376 if (!key_write(prv, stdout))
377 fprintf(stderr, "key_write failed");
378 key_free(prv);
379 fprintf(stdout, "\n");
380 exit(0);
381}
382
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); \
388 debug("#bytes %d", len); \
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;
406 int sw = 0, cla = 0x00;
407
408 for (i = 0; i < NUM_RSA_KEY_ELEMENTS; i++)
409 elements[i] = NULL;
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 }
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 = sectok_open(reader, 0, NULL);
429 if (fd < 0) {
430 error("sectok_open failed");
431 goto done;
432 }
433 ret = sectok_reset(fd, 0, atr, &sw);
434 if (ret <= 0) {
435 error("sectok_reset failed");
436 goto done;
437 }
438 if ((cla = cyberflex_inq_class(fd)) < 0) {
439 error("cyberflex_inq_class failed");
440 goto done;
441 }
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;
448 if (cyberflex_load_rsa_priv(fd, cla, key_fid, 5, 8*len, elements,
449 &sw) < 0) {
450 error("cyberflex_load_rsa_priv failed: %s", sectok_get_sw(sw));
451 goto done;
452 }
453 if (!sectok_swOK(sw))
454 goto done;
455 log("cyberflex_load_rsa_priv done");
456 key_fid[0] = 0x73;
457 key_fid[1] = 0x68;
458 if (cyberflex_load_rsa_pub(fd, cla, key_fid, len, elements[5],
459 &sw) < 0) {
460 error("cyberflex_load_rsa_pub failed: %s", sectok_get_sw(sw));
461 goto done;
462 }
463 if (!sectok_swOK(sw))
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 if (elements[i])
473 xfree(elements[i]);
474 if (fd != -1)
475 sectok_close(fd);
476 exit(status);
477#endif
478}
479
480static void
481do_fingerprint(struct passwd *pw)
482{
483 FILE *f;
484 Key *public;
485 char *comment = NULL, *cp, *ep, line[16*1024], *fp;
486 int i, skip = 0, num = 1, invalid = 1, rep, fptype;
487 struct stat st;
488
489 fptype = print_bubblebabble ? SSH_FP_SHA1 : SSH_FP_MD5;
490 rep = print_bubblebabble ? SSH_FP_BUBBLEBABBLE : SSH_FP_HEX;
491
492 if (!have_identity)
493 ask_filename(pw, "Enter file in which the key is");
494 if (stat(identity_file, &st) < 0) {
495 perror(identity_file);
496 exit(1);
497 }
498 public = key_load_public(identity_file, &comment);
499 if (public != NULL) {
500 fp = key_fingerprint(public, fptype, rep);
501 printf("%d %s %s\n", key_size(public), fp, comment);
502 key_free(public);
503 xfree(comment);
504 xfree(fp);
505 exit(0);
506 }
507 if (comment)
508 xfree(comment);
509
510 f = fopen(identity_file, "r");
511 if (f != NULL) {
512 while (fgets(line, sizeof(line), f)) {
513 i = strlen(line) - 1;
514 if (line[i] != '\n') {
515 error("line %d too long: %.40s...", num, line);
516 skip = 1;
517 continue;
518 }
519 num++;
520 if (skip) {
521 skip = 0;
522 continue;
523 }
524 line[i] = '\0';
525
526 /* Skip leading whitespace, empty and comment lines. */
527 for (cp = line; *cp == ' ' || *cp == '\t'; cp++)
528 ;
529 if (!*cp || *cp == '\n' || *cp == '#')
530 continue ;
531 i = strtol(cp, &ep, 10);
532 if (i == 0 || ep == NULL || (*ep != ' ' && *ep != '\t')) {
533 int quoted = 0;
534 comment = cp;
535 for (; *cp && (quoted || (*cp != ' ' && *cp != '\t')); cp++) {
536 if (*cp == '\\' && cp[1] == '"')
537 cp++; /* Skip both */
538 else if (*cp == '"')
539 quoted = !quoted;
540 }
541 if (!*cp)
542 continue;
543 *cp++ = '\0';
544 }
545 ep = cp;
546 public = key_new(KEY_RSA1);
547 if (key_read(public, &cp) != 1) {
548 cp = ep;
549 key_free(public);
550 public = key_new(KEY_UNSPEC);
551 if (key_read(public, &cp) != 1) {
552 key_free(public);
553 continue;
554 }
555 }
556 comment = *cp ? cp : comment;
557 fp = key_fingerprint(public, fptype, rep);
558 printf("%d %s %s\n", key_size(public), fp,
559 comment ? comment : "no comment");
560 xfree(fp);
561 key_free(public);
562 invalid = 0;
563 }
564 fclose(f);
565 }
566 if (invalid) {
567 printf("%s is not a valid key file.\n", identity_file);
568 exit(1);
569 }
570 exit(0);
571}
572
573/*
574 * Perform changing a passphrase. The argument is the passwd structure
575 * for the current user.
576 */
577static void
578do_change_passphrase(struct passwd *pw)
579{
580 char *comment;
581 char *old_passphrase, *passphrase1, *passphrase2;
582 struct stat st;
583 Key *private;
584
585 if (!have_identity)
586 ask_filename(pw, "Enter file in which the key is");
587 if (stat(identity_file, &st) < 0) {
588 perror(identity_file);
589 exit(1);
590 }
591 /* Try to load the file with empty passphrase. */
592 private = key_load_private(identity_file, "", &comment);
593 if (private == NULL) {
594 if (identity_passphrase)
595 old_passphrase = xstrdup(identity_passphrase);
596 else
597 old_passphrase =
598 read_passphrase("Enter old passphrase: ",
599 RP_ALLOW_STDIN);
600 private = key_load_private(identity_file, old_passphrase,
601 &comment);
602 memset(old_passphrase, 0, strlen(old_passphrase));
603 xfree(old_passphrase);
604 if (private == NULL) {
605 printf("Bad passphrase.\n");
606 exit(1);
607 }
608 }
609 printf("Key has comment '%s'\n", comment);
610
611 /* Ask the new passphrase (twice). */
612 if (identity_new_passphrase) {
613 passphrase1 = xstrdup(identity_new_passphrase);
614 passphrase2 = NULL;
615 } else {
616 passphrase1 =
617 read_passphrase("Enter new passphrase (empty for no "
618 "passphrase): ", RP_ALLOW_STDIN);
619 passphrase2 = read_passphrase("Enter same passphrase again: ",
620 RP_ALLOW_STDIN);
621
622 /* Verify that they are the same. */
623 if (strcmp(passphrase1, passphrase2) != 0) {
624 memset(passphrase1, 0, strlen(passphrase1));
625 memset(passphrase2, 0, strlen(passphrase2));
626 xfree(passphrase1);
627 xfree(passphrase2);
628 printf("Pass phrases do not match. Try again.\n");
629 exit(1);
630 }
631 /* Destroy the other copy. */
632 memset(passphrase2, 0, strlen(passphrase2));
633 xfree(passphrase2);
634 }
635
636 /* Save the file using the new passphrase. */
637 if (!key_save_private(private, identity_file, passphrase1, comment)) {
638 printf("Saving the key failed: %s.\n", identity_file);
639 memset(passphrase1, 0, strlen(passphrase1));
640 xfree(passphrase1);
641 key_free(private);
642 xfree(comment);
643 exit(1);
644 }
645 /* Destroy the passphrase and the copy of the key in memory. */
646 memset(passphrase1, 0, strlen(passphrase1));
647 xfree(passphrase1);
648 key_free(private); /* Destroys contents */
649 xfree(comment);
650
651 printf("Your identification has been saved with the new passphrase.\n");
652 exit(0);
653}
654
655/*
656 * Change the comment of a private key file.
657 */
658static void
659do_change_comment(struct passwd *pw)
660{
661 char new_comment[1024], *comment, *passphrase;
662 Key *private;
663 Key *public;
664 struct stat st;
665 FILE *f;
666 int fd;
667
668 if (!have_identity)
669 ask_filename(pw, "Enter file in which the key is");
670 if (stat(identity_file, &st) < 0) {
671 perror(identity_file);
672 exit(1);
673 }
674 private = key_load_private(identity_file, "", &comment);
675 if (private == NULL) {
676 if (identity_passphrase)
677 passphrase = xstrdup(identity_passphrase);
678 else if (identity_new_passphrase)
679 passphrase = xstrdup(identity_new_passphrase);
680 else
681 passphrase = read_passphrase("Enter passphrase: ",
682 RP_ALLOW_STDIN);
683 /* Try to load using the passphrase. */
684 private = key_load_private(identity_file, passphrase, &comment);
685 if (private == NULL) {
686 memset(passphrase, 0, strlen(passphrase));
687 xfree(passphrase);
688 printf("Bad passphrase.\n");
689 exit(1);
690 }
691 } else {
692 passphrase = xstrdup("");
693 }
694 if (private->type != KEY_RSA1) {
695 fprintf(stderr, "Comments are only supported for RSA1 keys.\n");
696 key_free(private);
697 exit(1);
698 }
699 printf("Key now has comment '%s'\n", comment);
700
701 if (identity_comment) {
702 strlcpy(new_comment, identity_comment, sizeof(new_comment));
703 } else {
704 printf("Enter new comment: ");
705 fflush(stdout);
706 if (!fgets(new_comment, sizeof(new_comment), stdin)) {
707 memset(passphrase, 0, strlen(passphrase));
708 key_free(private);
709 exit(1);
710 }
711 if (strchr(new_comment, '\n'))
712 *strchr(new_comment, '\n') = 0;
713 }
714
715 /* Save the file using the new passphrase. */
716 if (!key_save_private(private, identity_file, passphrase, new_comment)) {
717 printf("Saving the key failed: %s.\n", identity_file);
718 memset(passphrase, 0, strlen(passphrase));
719 xfree(passphrase);
720 key_free(private);
721 xfree(comment);
722 exit(1);
723 }
724 memset(passphrase, 0, strlen(passphrase));
725 xfree(passphrase);
726 public = key_from_private(private);
727 key_free(private);
728
729 strlcat(identity_file, ".pub", sizeof(identity_file));
730 fd = open(identity_file, O_WRONLY | O_CREAT | O_TRUNC, 0644);
731 if (fd == -1) {
732 printf("Could not save your public key in %s\n", identity_file);
733 exit(1);
734 }
735 f = fdopen(fd, "w");
736 if (f == NULL) {
737 printf("fdopen %s failed", identity_file);
738 exit(1);
739 }
740 if (!key_write(public, f))
741 fprintf(stderr, "write key failed");
742 key_free(public);
743 fprintf(f, " %s\n", new_comment);
744 fclose(f);
745
746 xfree(comment);
747
748 printf("The comment in your key file has been changed.\n");
749 exit(0);
750}
751
752static void
753usage(void)
754{
755 printf("Usage: %s [-ceilpqyB] [-t type] [-b bits] [-f file] [-C comment] "
756 "[-N new-pass] [-P pass]\n", __progname);
757 exit(1);
758}
759
760/*
761 * Main program for key management.
762 */
763int
764main(int ac, char **av)
765{
766 char dotsshdir[16 * 1024], comment[1024], *passphrase1, *passphrase2;
767 Key *private, *public;
768 struct passwd *pw;
769 int opt, type, fd, reader = -1;
770 struct stat st;
771 FILE *f;
772
773 extern int optind;
774 extern char *optarg;
775
776 __progname = get_progname(av[0]);
777 init_rng();
778 seed_rng();
779
780 SSLeay_add_all_algorithms();
781
782 /* we need this for the home * directory. */
783 pw = getpwuid(getuid());
784 if (!pw) {
785 printf("You don't exist, go away!\n");
786 exit(1);
787 }
788 if (gethostname(hostname, sizeof(hostname)) < 0) {
789 perror("gethostname");
790 exit(1);
791 }
792
793 while ((opt = getopt(ac, av, "deiqpclBRxXyb:f:t:u:P:N:C:")) != -1) {
794 switch (opt) {
795 case 'b':
796 bits = atoi(optarg);
797 if (bits < 512 || bits > 32768) {
798 printf("Bits has bad value.\n");
799 exit(1);
800 }
801 break;
802 case 'l':
803 print_fingerprint = 1;
804 break;
805 case 'B':
806 print_bubblebabble = 1;
807 break;
808 case 'p':
809 change_passphrase = 1;
810 break;
811 case 'c':
812 change_comment = 1;
813 break;
814 case 'f':
815 strlcpy(identity_file, optarg, sizeof(identity_file));
816 have_identity = 1;
817 break;
818 case 'P':
819 identity_passphrase = optarg;
820 break;
821 case 'N':
822 identity_new_passphrase = optarg;
823 break;
824 case 'C':
825 identity_comment = optarg;
826 break;
827 case 'q':
828 quiet = 1;
829 break;
830 case 'R':
831 /* unused */
832 exit(0);
833 break;
834 case 'e':
835 case 'x':
836 /* export key */
837 convert_to_ssh2 = 1;
838 break;
839 case 'i':
840 case 'X':
841 /* import key */
842 convert_from_ssh2 = 1;
843 break;
844 case 'y':
845 print_public = 1;
846 break;
847 case 'd':
848 key_type_name = "dsa";
849 break;
850 case 't':
851 key_type_name = optarg;
852 break;
853 case 'u':
854 reader = atoi(optarg); /*XXX*/
855 break;
856 case '?':
857 default:
858 usage();
859 }
860 }
861 if (optind < ac) {
862 printf("Too many arguments.\n");
863 usage();
864 }
865 if (change_passphrase && change_comment) {
866 printf("Can only have one of -p and -c.\n");
867 usage();
868 }
869 if (print_fingerprint || print_bubblebabble)
870 do_fingerprint(pw);
871 if (change_passphrase)
872 do_change_passphrase(pw);
873 if (change_comment)
874 do_change_comment(pw);
875 if (convert_to_ssh2)
876 do_convert_to_ssh2(pw);
877 if (convert_from_ssh2)
878 do_convert_from_ssh2(pw);
879 if (print_public)
880 do_print_public(pw);
881 if (reader != -1)
882 do_upload(pw, reader);
883
884 arc4random_stir();
885
886 type = key_type_from_name(key_type_name);
887 if (type == KEY_UNSPEC) {
888 fprintf(stderr, "unknown key type %s\n", key_type_name);
889 exit(1);
890 }
891 if (!quiet)
892 printf("Generating public/private %s key pair.\n", key_type_name);
893 private = key_generate(type, bits);
894 if (private == NULL) {
895 fprintf(stderr, "key_generate failed");
896 exit(1);
897 }
898 public = key_from_private(private);
899
900 if (!have_identity)
901 ask_filename(pw, "Enter file in which to save the key");
902
903 /* Create ~/.ssh directory if it doesn\'t already exist. */
904 snprintf(dotsshdir, sizeof dotsshdir, "%s/%s", pw->pw_dir, _PATH_SSH_USER_DIR);
905 if (strstr(identity_file, dotsshdir) != NULL &&
906 stat(dotsshdir, &st) < 0) {
907 if (mkdir(dotsshdir, 0700) < 0)
908 error("Could not create directory '%s'.", dotsshdir);
909 else if (!quiet)
910 printf("Created directory '%s'.\n", dotsshdir);
911 }
912 /* If the file already exists, ask the user to confirm. */
913 if (stat(identity_file, &st) >= 0) {
914 char yesno[3];
915 printf("%s already exists.\n", identity_file);
916 printf("Overwrite (y/n)? ");
917 fflush(stdout);
918 if (fgets(yesno, sizeof(yesno), stdin) == NULL)
919 exit(1);
920 if (yesno[0] != 'y' && yesno[0] != 'Y')
921 exit(1);
922 }
923 /* Ask for a passphrase (twice). */
924 if (identity_passphrase)
925 passphrase1 = xstrdup(identity_passphrase);
926 else if (identity_new_passphrase)
927 passphrase1 = xstrdup(identity_new_passphrase);
928 else {
929passphrase_again:
930 passphrase1 =
931 read_passphrase("Enter passphrase (empty for no "
932 "passphrase): ", RP_ALLOW_STDIN);
933 passphrase2 = read_passphrase("Enter same passphrase again: ",
934 RP_ALLOW_STDIN);
935 if (strcmp(passphrase1, passphrase2) != 0) {
936 /*
937 * The passphrases do not match. Clear them and
938 * retry.
939 */
940 memset(passphrase1, 0, strlen(passphrase1));
941 memset(passphrase2, 0, strlen(passphrase2));
942 xfree(passphrase1);
943 xfree(passphrase2);
944 printf("Passphrases do not match. Try again.\n");
945 goto passphrase_again;
946 }
947 /* Clear the other copy of the passphrase. */
948 memset(passphrase2, 0, strlen(passphrase2));
949 xfree(passphrase2);
950 }
951
952 if (identity_comment) {
953 strlcpy(comment, identity_comment, sizeof(comment));
954 } else {
955 /* Create default commend field for the passphrase. */
956 snprintf(comment, sizeof comment, "%s@%s", pw->pw_name, hostname);
957 }
958
959 /* Save the key with the given passphrase and comment. */
960 if (!key_save_private(private, identity_file, passphrase1, comment)) {
961 printf("Saving the key failed: %s.\n", identity_file);
962 memset(passphrase1, 0, strlen(passphrase1));
963 xfree(passphrase1);
964 exit(1);
965 }
966 /* Clear the passphrase. */
967 memset(passphrase1, 0, strlen(passphrase1));
968 xfree(passphrase1);
969
970 /* Clear the private key and the random number generator. */
971 key_free(private);
972 arc4random_stir();
973
974 if (!quiet)
975 printf("Your identification has been saved in %s.\n", identity_file);
976
977 strlcat(identity_file, ".pub", sizeof(identity_file));
978 fd = open(identity_file, O_WRONLY | O_CREAT | O_TRUNC, 0644);
979 if (fd == -1) {
980 printf("Could not save your public key in %s\n", identity_file);
981 exit(1);
982 }
983 f = fdopen(fd, "w");
984 if (f == NULL) {
985 printf("fdopen %s failed", identity_file);
986 exit(1);
987 }
988 if (!key_write(public, f))
989 fprintf(stderr, "write key failed");
990 fprintf(f, " %s\n", comment);
991 fclose(f);
992
993 if (!quiet) {
994 char *fp = key_fingerprint(public, SSH_FP_MD5, SSH_FP_HEX);
995 printf("Your public key has been saved in %s.\n",
996 identity_file);
997 printf("The key fingerprint is:\n");
998 printf("%s %s\n", fp, comment);
999 xfree(fp);
1000 }
1001
1002 key_free(public);
1003 exit(0);
1004}
This page took 0.360195 seconds and 5 git commands to generate.