blob: 216a8b6ef0f764751d96edefe9e5ca6d2e621944 [file] [log] [blame]
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001/*
Damien Miller95def091999-11-25 00:26:21 +11002 * Author: Tatu Ylonen <ylo@cs.hut.fi>
3 * Copyright (c) 1994 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4 * All rights reserved
Damien Miller95def091999-11-25 00:26:21 +11005 * Identity and host key generation and maintenance.
Damien Millere4340be2000-09-16 13:29:08 +11006 *
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".
Damien Miller95def091999-11-25 00:26:21 +110012 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100013
14#include "includes.h"
Damien Millere4340be2000-09-16 13:29:08 +110015RCSID("$OpenBSD: ssh-keygen.c,v 1.31 2000/09/07 20:27:54 deraadt Exp $");
Damien Millerd4a8b7e1999-10-27 13:42:43 +100016
Damien Millereba71ba2000-04-29 23:57:08 +100017#include <openssl/evp.h>
18#include <openssl/pem.h>
19#include <openssl/rsa.h>
20#include <openssl/dsa.h>
21
Damien Millerd4a8b7e1999-10-27 13:42:43 +100022#include "ssh.h"
23#include "xmalloc.h"
Damien Millereba71ba2000-04-29 23:57:08 +100024#include "key.h"
25#include "rsa.h"
26#include "dsa.h"
27#include "authfile.h"
28#include "uuencode.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100029
Damien Millereba71ba2000-04-29 23:57:08 +100030/* Number of bits in the RSA/DSA key. This value can be changed on the command line. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100031int bits = 1024;
32
Damien Miller5428f641999-11-25 11:54:57 +110033/*
34 * Flag indicating that we just want to change the passphrase. This can be
35 * set on the command line.
36 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100037int change_passphrase = 0;
38
Damien Miller5428f641999-11-25 11:54:57 +110039/*
40 * Flag indicating that we just want to change the comment. This can be set
41 * on the command line.
42 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100043int change_comment = 0;
44
45int quiet = 0;
46
Damien Miller10f6f6b1999-11-17 17:29:08 +110047/* Flag indicating that we just want to see the key fingerprint */
48int print_fingerprint = 0;
49
Damien Miller431f66b1999-11-21 18:31:57 +110050/* The identity file name, given on the command line or entered by the user. */
51char identity_file[1024];
52int have_identity = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100053
54/* This is set to the passphrase if given on the command line. */
55char *identity_passphrase = NULL;
56
57/* This is set to the new passphrase if given on the command line. */
58char *identity_new_passphrase = NULL;
59
60/* This is set to the new comment if given on the command line. */
61char *identity_comment = NULL;
62
Damien Millereba71ba2000-04-29 23:57:08 +100063/* Dump public key file in format used by real and the original SSH 2 */
64int convert_to_ssh2 = 0;
65int convert_from_ssh2 = 0;
66int print_public = 0;
67int dsa_mode = 0;
68
Damien Miller431f66b1999-11-21 18:31:57 +110069/* argv0 */
Damien Miller95def091999-11-25 00:26:21 +110070#ifdef HAVE___PROGNAME
Damien Miller431f66b1999-11-21 18:31:57 +110071extern char *__progname;
Damien Miller95def091999-11-25 00:26:21 +110072#else /* HAVE___PROGNAME */
Damien Miller70fb6712000-05-01 20:59:50 +100073static const char *__progname = "ssh-keygen";
Damien Miller95def091999-11-25 00:26:21 +110074#endif /* HAVE___PROGNAME */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100075
Damien Millereba71ba2000-04-29 23:57:08 +100076char hostname[MAXHOSTNAMELEN];
77
Damien Miller431f66b1999-11-21 18:31:57 +110078void
79ask_filename(struct passwd *pw, const char *prompt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +100080{
Damien Miller95def091999-11-25 00:26:21 +110081 char buf[1024];
82 snprintf(identity_file, sizeof(identity_file), "%s/%s",
Damien Millere247cc42000-05-07 12:03:14 +100083 pw->pw_dir,
84 dsa_mode ? SSH_CLIENT_ID_DSA: SSH_CLIENT_IDENTITY);
Damien Miller95def091999-11-25 00:26:21 +110085 printf("%s (%s): ", prompt, identity_file);
86 fflush(stdout);
87 if (fgets(buf, sizeof(buf), stdin) == NULL)
88 exit(1);
89 if (strchr(buf, '\n'))
90 *strchr(buf, '\n') = 0;
91 if (strcmp(buf, "") != 0)
92 strlcpy(identity_file, buf, sizeof(identity_file));
93 have_identity = 1;
Damien Miller10f6f6b1999-11-17 17:29:08 +110094}
Damien Millerd4a8b7e1999-10-27 13:42:43 +100095
Damien Millereba71ba2000-04-29 23:57:08 +100096int
97try_load_key(char *filename, Key *k)
98{
99 int success = 1;
100 if (!load_private_key(filename, "", k, NULL)) {
101 char *pass = read_passphrase("Enter passphrase: ", 1);
102 if (!load_private_key(filename, pass, k, NULL)) {
103 success = 0;
104 }
105 memset(pass, 0, strlen(pass));
106 xfree(pass);
107 }
108 return success;
109}
110
111#define SSH_COM_MAGIC_BEGIN "---- BEGIN SSH2 PUBLIC KEY ----"
112#define SSH_COM_MAGIC_END "---- END SSH2 PUBLIC KEY ----"
113
114void
115do_convert_to_ssh2(struct passwd *pw)
116{
117 Key *k;
118 int len;
119 unsigned char *blob;
120 struct stat st;
121
122 if (!have_identity)
123 ask_filename(pw, "Enter file in which the key is");
124 if (stat(identity_file, &st) < 0) {
125 perror(identity_file);
126 exit(1);
127 }
128 k = key_new(KEY_DSA);
129 if (!try_load_key(identity_file, k)) {
130 fprintf(stderr, "load failed\n");
131 exit(1);
132 }
133 dsa_make_key_blob(k, &blob, &len);
Damien Miller37023962000-07-11 17:31:38 +1000134 fprintf(stdout, "%s\n", SSH_COM_MAGIC_BEGIN);
Damien Millereba71ba2000-04-29 23:57:08 +1000135 fprintf(stdout,
136 "Comment: \"%d-bit DSA, converted from openssh by %s@%s\"\n",
137 BN_num_bits(k->dsa->p),
138 pw->pw_name, hostname);
139 dump_base64(stdout, blob, len);
Damien Miller37023962000-07-11 17:31:38 +1000140 fprintf(stdout, "%s\n", SSH_COM_MAGIC_END);
Damien Millereba71ba2000-04-29 23:57:08 +1000141 key_free(k);
142 xfree(blob);
143 exit(0);
144}
145
146void
147do_convert_from_ssh2(struct passwd *pw)
148{
149 Key *k;
150 int blen;
151 char line[1024], *p;
152 char blob[8096];
153 char encoded[8096];
154 struct stat st;
Damien Miller30c3d422000-05-09 11:02:59 +1000155 int escaped = 0;
Damien Millereba71ba2000-04-29 23:57:08 +1000156 FILE *fp;
157
158 if (!have_identity)
159 ask_filename(pw, "Enter file in which the key is");
160 if (stat(identity_file, &st) < 0) {
161 perror(identity_file);
162 exit(1);
163 }
164 fp = fopen(identity_file, "r");
165 if (fp == NULL) {
166 perror(identity_file);
167 exit(1);
168 }
169 encoded[0] = '\0';
170 while (fgets(line, sizeof(line), fp)) {
Damien Miller30c3d422000-05-09 11:02:59 +1000171 if (!(p = strchr(line, '\n'))) {
172 fprintf(stderr, "input line too long.\n");
173 exit(1);
174 }
175 if (p > line && p[-1] == '\\')
176 escaped++;
Damien Millereba71ba2000-04-29 23:57:08 +1000177 if (strncmp(line, "----", 4) == 0 ||
178 strstr(line, ": ") != NULL) {
179 fprintf(stderr, "ignore: %s", line);
180 continue;
181 }
Damien Miller30c3d422000-05-09 11:02:59 +1000182 if (escaped) {
183 escaped--;
184 fprintf(stderr, "escaped: %s", line);
185 continue;
Damien Millereba71ba2000-04-29 23:57:08 +1000186 }
187 *p = '\0';
188 strlcat(encoded, line, sizeof(encoded));
189 }
190 blen = uudecode(encoded, (unsigned char *)blob, sizeof(blob));
191 if (blen < 0) {
192 fprintf(stderr, "uudecode failed.\n");
193 exit(1);
194 }
195 k = dsa_key_from_blob(blob, blen);
196 if (!key_write(k, stdout))
197 fprintf(stderr, "key_write failed");
198 key_free(k);
199 fprintf(stdout, "\n");
200 fclose(fp);
201 exit(0);
202}
203
204void
205do_print_public(struct passwd *pw)
206{
207 Key *k;
208 int len;
209 unsigned char *blob;
210 struct stat st;
211
212 if (!have_identity)
213 ask_filename(pw, "Enter file in which the key is");
214 if (stat(identity_file, &st) < 0) {
215 perror(identity_file);
216 exit(1);
217 }
218 k = key_new(KEY_DSA);
219 if (!try_load_key(identity_file, k)) {
220 fprintf(stderr, "load failed\n");
221 exit(1);
222 }
223 dsa_make_key_blob(k, &blob, &len);
224 if (!key_write(k, stdout))
225 fprintf(stderr, "key_write failed");
226 key_free(k);
227 xfree(blob);
228 fprintf(stdout, "\n");
229 exit(0);
230}
231
Damien Miller10f6f6b1999-11-17 17:29:08 +1100232void
233do_fingerprint(struct passwd *pw)
234{
Damien Millerad833b32000-08-23 10:46:23 +1000235 /* XXX RSA1 only */
236
Damien Miller98c7ad62000-03-09 21:27:49 +1100237 FILE *f;
Damien Millereba71ba2000-04-29 23:57:08 +1000238 Key *public;
Damien Miller98c7ad62000-03-09 21:27:49 +1100239 char *comment = NULL, *cp, *ep, line[16*1024];
240 int i, skip = 0, num = 1, invalid = 1;
Damien Miller7684ee12000-03-17 23:40:15 +1100241 unsigned int ignore;
Damien Miller95def091999-11-25 00:26:21 +1100242 struct stat st;
Damien Miller10f6f6b1999-11-17 17:29:08 +1100243
Damien Miller95def091999-11-25 00:26:21 +1100244 if (!have_identity)
245 ask_filename(pw, "Enter file in which the key is");
246 if (stat(identity_file, &st) < 0) {
247 perror(identity_file);
248 exit(1);
249 }
Damien Millereba71ba2000-04-29 23:57:08 +1000250 public = key_new(KEY_RSA);
251 if (load_public_key(identity_file, public, &comment)) {
252 printf("%d %s %s\n", BN_num_bits(public->rsa->n),
253 key_fingerprint(public), comment);
254 key_free(public);
Damien Miller98c7ad62000-03-09 21:27:49 +1100255 exit(0);
256 }
Damien Miller98c7ad62000-03-09 21:27:49 +1100257
258 f = fopen(identity_file, "r");
259 if (f != NULL) {
Damien Miller98c7ad62000-03-09 21:27:49 +1100260 while (fgets(line, sizeof(line), f)) {
261 i = strlen(line) - 1;
262 if (line[i] != '\n') {
263 error("line %d too long: %.40s...", num, line);
264 skip = 1;
265 continue;
Damien Miller95def091999-11-25 00:26:21 +1100266 }
Damien Miller98c7ad62000-03-09 21:27:49 +1100267 num++;
268 if (skip) {
269 skip = 0;
270 continue;
271 }
272 line[i] = '\0';
273
274 /* Skip leading whitespace, empty and comment lines. */
275 for (cp = line; *cp == ' ' || *cp == '\t'; cp++)
276 ;
277 if (!*cp || *cp == '\n' || *cp == '#')
278 continue ;
279 i = strtol(cp, &ep, 10);
280 if (i == 0 || ep == NULL || (*ep != ' ' && *ep != '\t')) {
281 int quoted = 0;
282 comment = cp;
283 for (; *cp && (quoted || (*cp != ' ' && *cp != '\t')); cp++) {
284 if (*cp == '\\' && cp[1] == '"')
285 cp++; /* Skip both */
286 else if (*cp == '"')
287 quoted = !quoted;
288 }
289 if (!*cp)
290 continue;
291 *cp++ = '\0';
292 }
293 ep = cp;
Damien Millerad833b32000-08-23 10:46:23 +1000294 if (auth_rsa_read_key(&cp, &ignore, public->rsa->e, public->rsa->n)) {
Damien Miller98c7ad62000-03-09 21:27:49 +1100295 invalid = 0;
296 comment = *cp ? cp : comment;
Damien Millerad833b32000-08-23 10:46:23 +1000297 printf("%d %s %s\n", key_size(public),
298 key_fingerprint(public),
Damien Miller98c7ad62000-03-09 21:27:49 +1100299 comment ? comment : "no comment");
300 }
Damien Miller95def091999-11-25 00:26:21 +1100301 }
Damien Miller98c7ad62000-03-09 21:27:49 +1100302 fclose(f);
Damien Miller95def091999-11-25 00:26:21 +1100303 }
Damien Millerad833b32000-08-23 10:46:23 +1000304 key_free(public);
Damien Miller98c7ad62000-03-09 21:27:49 +1100305 if (invalid) {
306 printf("%s is not a valid key file.\n", identity_file);
307 exit(1);
308 }
Damien Miller95def091999-11-25 00:26:21 +1100309 exit(0);
Damien Miller10f6f6b1999-11-17 17:29:08 +1100310}
311
Damien Miller95def091999-11-25 00:26:21 +1100312/*
313 * Perform changing a passphrase. The argument is the passwd structure
314 * for the current user.
315 */
Damien Miller10f6f6b1999-11-17 17:29:08 +1100316void
317do_change_passphrase(struct passwd *pw)
318{
Damien Miller95def091999-11-25 00:26:21 +1100319 char *comment;
320 char *old_passphrase, *passphrase1, *passphrase2;
321 struct stat st;
Damien Millereba71ba2000-04-29 23:57:08 +1000322 Key *private;
323 Key *public;
324 int type = dsa_mode ? KEY_DSA : KEY_RSA;
Damien Miller10f6f6b1999-11-17 17:29:08 +1100325
Damien Miller95def091999-11-25 00:26:21 +1100326 if (!have_identity)
327 ask_filename(pw, "Enter file in which the key is");
Damien Miller95def091999-11-25 00:26:21 +1100328 if (stat(identity_file, &st) < 0) {
329 perror(identity_file);
330 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000331 }
Damien Millereba71ba2000-04-29 23:57:08 +1000332
333 if (type == KEY_RSA) {
334 /* XXX this works currently only for RSA */
335 public = key_new(type);
336 if (!load_public_key(identity_file, public, NULL)) {
337 printf("%s is not a valid key file.\n", identity_file);
338 exit(1);
339 }
340 /* Clear the public key since we are just about to load the whole file. */
341 key_free(public);
Damien Miller95def091999-11-25 00:26:21 +1100342 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000343
Damien Miller95def091999-11-25 00:26:21 +1100344 /* Try to load the file with empty passphrase. */
Damien Millereba71ba2000-04-29 23:57:08 +1000345 private = key_new(type);
346 if (!load_private_key(identity_file, "", private, &comment)) {
Damien Miller95def091999-11-25 00:26:21 +1100347 if (identity_passphrase)
348 old_passphrase = xstrdup(identity_passphrase);
349 else
350 old_passphrase = read_passphrase("Enter old passphrase: ", 1);
Damien Millereba71ba2000-04-29 23:57:08 +1000351 if (!load_private_key(identity_file, old_passphrase, private, &comment)) {
Damien Miller95def091999-11-25 00:26:21 +1100352 memset(old_passphrase, 0, strlen(old_passphrase));
353 xfree(old_passphrase);
354 printf("Bad passphrase.\n");
355 exit(1);
356 }
Damien Miller95def091999-11-25 00:26:21 +1100357 memset(old_passphrase, 0, strlen(old_passphrase));
358 xfree(old_passphrase);
359 }
360 printf("Key has comment '%s'\n", comment);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000361
Damien Miller95def091999-11-25 00:26:21 +1100362 /* Ask the new passphrase (twice). */
363 if (identity_new_passphrase) {
364 passphrase1 = xstrdup(identity_new_passphrase);
365 passphrase2 = NULL;
366 } else {
367 passphrase1 =
368 read_passphrase("Enter new passphrase (empty for no passphrase): ", 1);
369 passphrase2 = read_passphrase("Enter same passphrase again: ", 1);
370
371 /* Verify that they are the same. */
372 if (strcmp(passphrase1, passphrase2) != 0) {
373 memset(passphrase1, 0, strlen(passphrase1));
374 memset(passphrase2, 0, strlen(passphrase2));
375 xfree(passphrase1);
376 xfree(passphrase2);
377 printf("Pass phrases do not match. Try again.\n");
378 exit(1);
379 }
380 /* Destroy the other copy. */
381 memset(passphrase2, 0, strlen(passphrase2));
382 xfree(passphrase2);
383 }
384
385 /* Save the file using the new passphrase. */
Damien Millereba71ba2000-04-29 23:57:08 +1000386 if (!save_private_key(identity_file, passphrase1, private, comment)) {
Damien Miller95def091999-11-25 00:26:21 +1100387 printf("Saving the key failed: %s: %s.\n",
388 identity_file, strerror(errno));
389 memset(passphrase1, 0, strlen(passphrase1));
390 xfree(passphrase1);
Damien Millereba71ba2000-04-29 23:57:08 +1000391 key_free(private);
Damien Miller95def091999-11-25 00:26:21 +1100392 xfree(comment);
393 exit(1);
394 }
395 /* Destroy the passphrase and the copy of the key in memory. */
396 memset(passphrase1, 0, strlen(passphrase1));
397 xfree(passphrase1);
Damien Millereba71ba2000-04-29 23:57:08 +1000398 key_free(private); /* Destroys contents */
Damien Miller95def091999-11-25 00:26:21 +1100399 xfree(comment);
400
401 printf("Your identification has been saved with the new passphrase.\n");
402 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000403}
404
Damien Miller95def091999-11-25 00:26:21 +1100405/*
406 * Change the comment of a private key file.
407 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000408void
409do_change_comment(struct passwd *pw)
410{
Damien Miller95def091999-11-25 00:26:21 +1100411 char new_comment[1024], *comment;
Damien Millereba71ba2000-04-29 23:57:08 +1000412 Key *private;
413 Key *public;
Damien Miller95def091999-11-25 00:26:21 +1100414 char *passphrase;
415 struct stat st;
416 FILE *f;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000417
Damien Miller95def091999-11-25 00:26:21 +1100418 if (!have_identity)
419 ask_filename(pw, "Enter file in which the key is");
Damien Miller95def091999-11-25 00:26:21 +1100420 if (stat(identity_file, &st) < 0) {
421 perror(identity_file);
422 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000423 }
Damien Miller5428f641999-11-25 11:54:57 +1100424 /*
425 * Try to load the public key from the file the verify that it is
426 * readable and of the proper format.
427 */
Damien Millereba71ba2000-04-29 23:57:08 +1000428 public = key_new(KEY_RSA);
429 if (!load_public_key(identity_file, public, NULL)) {
Damien Miller95def091999-11-25 00:26:21 +1100430 printf("%s is not a valid key file.\n", identity_file);
431 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000432 }
Damien Miller5428f641999-11-25 11:54:57 +1100433
Damien Millereba71ba2000-04-29 23:57:08 +1000434 private = key_new(KEY_RSA);
435 if (load_private_key(identity_file, "", private, &comment))
Damien Miller95def091999-11-25 00:26:21 +1100436 passphrase = xstrdup("");
437 else {
Damien Miller95def091999-11-25 00:26:21 +1100438 if (identity_passphrase)
439 passphrase = xstrdup(identity_passphrase);
440 else if (identity_new_passphrase)
441 passphrase = xstrdup(identity_new_passphrase);
442 else
443 passphrase = read_passphrase("Enter passphrase: ", 1);
444 /* Try to load using the passphrase. */
Damien Millereba71ba2000-04-29 23:57:08 +1000445 if (!load_private_key(identity_file, passphrase, private, &comment)) {
Damien Miller95def091999-11-25 00:26:21 +1100446 memset(passphrase, 0, strlen(passphrase));
447 xfree(passphrase);
448 printf("Bad passphrase.\n");
449 exit(1);
450 }
451 }
452 printf("Key now has comment '%s'\n", comment);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000453
Damien Miller95def091999-11-25 00:26:21 +1100454 if (identity_comment) {
455 strlcpy(new_comment, identity_comment, sizeof(new_comment));
456 } else {
457 printf("Enter new comment: ");
458 fflush(stdout);
459 if (!fgets(new_comment, sizeof(new_comment), stdin)) {
460 memset(passphrase, 0, strlen(passphrase));
Damien Millereba71ba2000-04-29 23:57:08 +1000461 key_free(private);
Damien Miller95def091999-11-25 00:26:21 +1100462 exit(1);
463 }
Damien Miller95def091999-11-25 00:26:21 +1100464 if (strchr(new_comment, '\n'))
465 *strchr(new_comment, '\n') = 0;
466 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000467
Damien Miller95def091999-11-25 00:26:21 +1100468 /* Save the file using the new passphrase. */
Damien Millereba71ba2000-04-29 23:57:08 +1000469 if (!save_private_key(identity_file, passphrase, private, new_comment)) {
Damien Miller95def091999-11-25 00:26:21 +1100470 printf("Saving the key failed: %s: %s.\n",
471 identity_file, strerror(errno));
472 memset(passphrase, 0, strlen(passphrase));
473 xfree(passphrase);
Damien Millereba71ba2000-04-29 23:57:08 +1000474 key_free(private);
Damien Miller95def091999-11-25 00:26:21 +1100475 xfree(comment);
476 exit(1);
477 }
Damien Miller95def091999-11-25 00:26:21 +1100478 memset(passphrase, 0, strlen(passphrase));
479 xfree(passphrase);
Damien Millereba71ba2000-04-29 23:57:08 +1000480 key_free(private);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000481
Damien Miller95def091999-11-25 00:26:21 +1100482 strlcat(identity_file, ".pub", sizeof(identity_file));
483 f = fopen(identity_file, "w");
484 if (!f) {
485 printf("Could not save your public key in %s\n", identity_file);
486 exit(1);
487 }
Damien Millereba71ba2000-04-29 23:57:08 +1000488 if (!key_write(public, f))
489 fprintf(stderr, "write key failed");
490 key_free(public);
491 fprintf(f, " %s\n", new_comment);
Damien Miller95def091999-11-25 00:26:21 +1100492 fclose(f);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000493
Damien Miller95def091999-11-25 00:26:21 +1100494 xfree(comment);
495
496 printf("The comment in your key file has been changed.\n");
497 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000498}
499
Damien Miller431f66b1999-11-21 18:31:57 +1100500void
501usage(void)
502{
Damien Millere247cc42000-05-07 12:03:14 +1000503 printf("Usage: %s [-lpqxXydc] [-b bits] [-f file] [-C comment] [-N new-pass] [-P pass]\n", __progname);
Damien Miller95def091999-11-25 00:26:21 +1100504 exit(1);
Damien Miller431f66b1999-11-21 18:31:57 +1100505}
506
Damien Miller95def091999-11-25 00:26:21 +1100507/*
508 * Main program for key management.
509 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000510int
511main(int ac, char **av)
512{
Damien Miller95def091999-11-25 00:26:21 +1100513 char dotsshdir[16 * 1024], comment[1024], *passphrase1, *passphrase2;
514 struct passwd *pw;
Damien Miller95def091999-11-25 00:26:21 +1100515 int opt;
516 struct stat st;
517 FILE *f;
Damien Millereba71ba2000-04-29 23:57:08 +1000518 Key *private;
519 Key *public;
Damien Miller95def091999-11-25 00:26:21 +1100520 extern int optind;
521 extern char *optarg;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000522
Damien Millerf9b625c2000-07-09 22:42:32 +1000523 init_rng();
524
Damien Millerd3a18572000-06-07 19:55:44 +1000525 SSLeay_add_all_algorithms();
Damien Millereba71ba2000-04-29 23:57:08 +1000526
Damien Miller5428f641999-11-25 11:54:57 +1100527 /* we need this for the home * directory. */
Damien Miller95def091999-11-25 00:26:21 +1100528 pw = getpwuid(getuid());
529 if (!pw) {
530 printf("You don't exist, go away!\n");
531 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000532 }
Damien Millereba71ba2000-04-29 23:57:08 +1000533 if (gethostname(hostname, sizeof(hostname)) < 0) {
534 perror("gethostname");
535 exit(1);
536 }
Damien Miller5428f641999-11-25 11:54:57 +1100537
Damien Millereba71ba2000-04-29 23:57:08 +1000538 while ((opt = getopt(ac, av, "dqpclRxXyb:f:P:N:C:")) != EOF) {
Damien Miller95def091999-11-25 00:26:21 +1100539 switch (opt) {
540 case 'b':
541 bits = atoi(optarg);
542 if (bits < 512 || bits > 32768) {
543 printf("Bits has bad value.\n");
544 exit(1);
545 }
546 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000547
Damien Miller95def091999-11-25 00:26:21 +1100548 case 'l':
549 print_fingerprint = 1;
550 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000551
Damien Miller95def091999-11-25 00:26:21 +1100552 case 'p':
553 change_passphrase = 1;
554 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000555
Damien Miller95def091999-11-25 00:26:21 +1100556 case 'c':
557 change_comment = 1;
558 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000559
Damien Miller95def091999-11-25 00:26:21 +1100560 case 'f':
561 strlcpy(identity_file, optarg, sizeof(identity_file));
562 have_identity = 1;
563 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000564
Damien Miller95def091999-11-25 00:26:21 +1100565 case 'P':
566 identity_passphrase = optarg;
567 break;
568
569 case 'N':
570 identity_new_passphrase = optarg;
571 break;
572
573 case 'C':
574 identity_comment = optarg;
575 break;
576
577 case 'q':
578 quiet = 1;
579 break;
580
Damien Millereba71ba2000-04-29 23:57:08 +1000581 case 'R':
582 if (rsa_alive() == 0)
583 exit(1);
584 else
585 exit(0);
586 break;
587
588 case 'x':
589 convert_to_ssh2 = 1;
590 break;
591
592 case 'X':
593 convert_from_ssh2 = 1;
594 break;
595
596 case 'y':
597 print_public = 1;
598 break;
599
600 case 'd':
601 dsa_mode = 1;
602 break;
603
Damien Miller95def091999-11-25 00:26:21 +1100604 case '?':
605 default:
606 usage();
607 }
608 }
609 if (optind < ac) {
610 printf("Too many arguments.\n");
611 usage();
612 }
613 if (change_passphrase && change_comment) {
614 printf("Can only have one of -p and -c.\n");
615 usage();
616 }
Damien Millereba71ba2000-04-29 23:57:08 +1000617 /* check if RSA support is needed and exists */
618 if (dsa_mode == 0 && rsa_alive() == 0) {
619 fprintf(stderr,
620 "%s: no RSA support in libssl and libcrypto. See ssl(8).\n",
621 __progname);
622 exit(1);
623 }
Damien Miller95def091999-11-25 00:26:21 +1100624 if (print_fingerprint)
625 do_fingerprint(pw);
Damien Miller95def091999-11-25 00:26:21 +1100626 if (change_passphrase)
627 do_change_passphrase(pw);
Damien Miller95def091999-11-25 00:26:21 +1100628 if (change_comment)
629 do_change_comment(pw);
Damien Millereba71ba2000-04-29 23:57:08 +1000630 if (convert_to_ssh2)
631 do_convert_to_ssh2(pw);
632 if (convert_from_ssh2)
633 do_convert_from_ssh2(pw);
634 if (print_public)
635 do_print_public(pw);
Damien Miller95def091999-11-25 00:26:21 +1100636
637 arc4random_stir();
638
Damien Millereba71ba2000-04-29 23:57:08 +1000639 if (dsa_mode != 0) {
640 if (!quiet)
641 printf("Generating DSA parameter and key.\n");
642 public = private = dsa_generate_key(bits);
643 if (private == NULL) {
644 fprintf(stderr, "dsa_generate_keys failed");
645 exit(1);
646 }
647 } else {
648 if (quiet)
649 rsa_set_verbose(0);
650 /* Generate the rsa key pair. */
651 public = key_new(KEY_RSA);
652 private = key_new(KEY_RSA);
653 rsa_generate_key(private->rsa, public->rsa, bits);
654 }
Damien Miller95def091999-11-25 00:26:21 +1100655
656 if (!have_identity)
657 ask_filename(pw, "Enter file in which to save the key");
658
659 /* Create ~/.ssh directory if it doesn\'t already exist. */
660 snprintf(dotsshdir, sizeof dotsshdir, "%s/%s", pw->pw_dir, SSH_USER_DIR);
661 if (strstr(identity_file, dotsshdir) != NULL &&
662 stat(dotsshdir, &st) < 0) {
Damien Millerbe484b52000-07-15 14:14:16 +1000663 if (mkdir(dotsshdir, 0700) < 0)
Damien Miller95def091999-11-25 00:26:21 +1100664 error("Could not create directory '%s'.", dotsshdir);
665 else if (!quiet)
666 printf("Created directory '%s'.\n", dotsshdir);
667 }
668 /* If the file already exists, ask the user to confirm. */
669 if (stat(identity_file, &st) >= 0) {
670 char yesno[3];
671 printf("%s already exists.\n", identity_file);
672 printf("Overwrite (y/n)? ");
673 fflush(stdout);
674 if (fgets(yesno, sizeof(yesno), stdin) == NULL)
675 exit(1);
676 if (yesno[0] != 'y' && yesno[0] != 'Y')
677 exit(1);
678 }
679 /* Ask for a passphrase (twice). */
680 if (identity_passphrase)
681 passphrase1 = xstrdup(identity_passphrase);
682 else if (identity_new_passphrase)
683 passphrase1 = xstrdup(identity_new_passphrase);
684 else {
685passphrase_again:
686 passphrase1 =
687 read_passphrase("Enter passphrase (empty for no passphrase): ", 1);
688 passphrase2 = read_passphrase("Enter same passphrase again: ", 1);
689 if (strcmp(passphrase1, passphrase2) != 0) {
690 /* The passphrases do not match. Clear them and retry. */
691 memset(passphrase1, 0, strlen(passphrase1));
692 memset(passphrase2, 0, strlen(passphrase2));
693 xfree(passphrase1);
694 xfree(passphrase2);
695 printf("Passphrases do not match. Try again.\n");
696 goto passphrase_again;
697 }
698 /* Clear the other copy of the passphrase. */
699 memset(passphrase2, 0, strlen(passphrase2));
700 xfree(passphrase2);
701 }
702
Damien Miller95def091999-11-25 00:26:21 +1100703 if (identity_comment) {
704 strlcpy(comment, identity_comment, sizeof(comment));
705 } else {
Damien Miller4af51302000-04-16 11:18:38 +1000706 /* Create default commend field for the passphrase. */
Damien Miller95def091999-11-25 00:26:21 +1100707 snprintf(comment, sizeof comment, "%s@%s", pw->pw_name, hostname);
708 }
709
710 /* Save the key with the given passphrase and comment. */
Damien Millereba71ba2000-04-29 23:57:08 +1000711 if (!save_private_key(identity_file, passphrase1, private, comment)) {
Damien Miller95def091999-11-25 00:26:21 +1100712 printf("Saving the key failed: %s: %s.\n",
Damien Millereba71ba2000-04-29 23:57:08 +1000713 identity_file, strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +1100714 memset(passphrase1, 0, strlen(passphrase1));
715 xfree(passphrase1);
716 exit(1);
717 }
718 /* Clear the passphrase. */
719 memset(passphrase1, 0, strlen(passphrase1));
720 xfree(passphrase1);
721
722 /* Clear the private key and the random number generator. */
Damien Millereba71ba2000-04-29 23:57:08 +1000723 if (private != public) {
724 key_free(private);
725 }
Damien Miller95def091999-11-25 00:26:21 +1100726 arc4random_stir();
727
728 if (!quiet)
729 printf("Your identification has been saved in %s.\n", identity_file);
730
Damien Miller95def091999-11-25 00:26:21 +1100731 strlcat(identity_file, ".pub", sizeof(identity_file));
732 f = fopen(identity_file, "w");
733 if (!f) {
734 printf("Could not save your public key in %s\n", identity_file);
735 exit(1);
736 }
Damien Millereba71ba2000-04-29 23:57:08 +1000737 if (!key_write(public, f))
738 fprintf(stderr, "write key failed");
739 fprintf(f, " %s\n", comment);
Damien Miller95def091999-11-25 00:26:21 +1100740 fclose(f);
741
742 if (!quiet) {
Damien Millereba71ba2000-04-29 23:57:08 +1000743 printf("Your public key has been saved in %s.\n",
744 identity_file);
Damien Miller95def091999-11-25 00:26:21 +1100745 printf("The key fingerprint is:\n");
Damien Millereba71ba2000-04-29 23:57:08 +1000746 printf("%s %s\n", key_fingerprint(public), comment);
Damien Miller95def091999-11-25 00:26:21 +1100747 }
Damien Millereba71ba2000-04-29 23:57:08 +1000748
749 key_free(public);
Damien Miller95def091999-11-25 00:26:21 +1100750 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000751}