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