blob: d14c9900450efb7e3c56c3b239ed9a8a028c8d6f [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"
Ben Lindstrom70e3ad82002-03-22 03:33:43 +000015RCSID("$OpenBSD: ssh-keygen.c,v 1.95 2002/03/21 16:54:53 markus 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>
Damien Millereba71ba2000-04-29 23:57:08 +100019
Damien Millerd4a8b7e1999-10-27 13:42:43 +100020#include "xmalloc.h"
Damien Millereba71ba2000-04-29 23:57:08 +100021#include "key.h"
Ben Lindstromd09fcf52001-03-29 00:29:54 +000022#include "rsa.h"
Damien Millereba71ba2000-04-29 23:57:08 +100023#include "authfile.h"
24#include "uuencode.h"
Damien Miller874d77b2000-10-14 16:23:11 +110025#include "buffer.h"
26#include "bufaux.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000027#include "pathnames.h"
28#include "log.h"
29#include "readpass.h"
Damien Miller874d77b2000-10-14 16:23:11 +110030
Ben Lindstrom8282d6a2001-08-06 21:44:05 +000031#ifdef SMARTCARD
Ben Lindstrom8282d6a2001-08-06 21:44:05 +000032#include "scard.h"
Ben Lindstrombcc18082001-08-06 21:59:25 +000033#endif
Ben Lindstromcd392282001-07-04 03:44:03 +000034
Damien Millereba71ba2000-04-29 23:57:08 +100035/* Number of bits in the RSA/DSA key. This value can be changed on the command line. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100036int bits = 1024;
37
Damien Miller5428f641999-11-25 11:54:57 +110038/*
39 * Flag indicating that we just want to change the passphrase. This can be
40 * set on the command line.
41 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100042int change_passphrase = 0;
43
Damien Miller5428f641999-11-25 11:54:57 +110044/*
45 * Flag indicating that we just want to change the comment. This can be set
46 * on the command line.
47 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100048int change_comment = 0;
49
50int quiet = 0;
51
Damien Miller10f6f6b1999-11-17 17:29:08 +110052/* Flag indicating that we just want to see the key fingerprint */
53int print_fingerprint = 0;
Ben Lindstrom8fd372b2001-03-12 03:02:17 +000054int print_bubblebabble = 0;
Damien Miller10f6f6b1999-11-17 17:29:08 +110055
Damien Miller431f66b1999-11-21 18:31:57 +110056/* The identity file name, given on the command line or entered by the user. */
57char identity_file[1024];
58int have_identity = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100059
60/* This is set to the passphrase if given on the command line. */
61char *identity_passphrase = NULL;
62
63/* This is set to the new passphrase if given on the command line. */
64char *identity_new_passphrase = NULL;
65
66/* This is set to the new comment if given on the command line. */
67char *identity_comment = NULL;
68
Damien Millereba71ba2000-04-29 23:57:08 +100069/* Dump public key file in format used by real and the original SSH 2 */
70int convert_to_ssh2 = 0;
71int convert_from_ssh2 = 0;
72int print_public = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +110073
Damien Millera41c8b12002-01-22 23:05:08 +110074char *key_type_name = NULL;
Damien Millereba71ba2000-04-29 23:57:08 +100075
Damien Miller431f66b1999-11-21 18:31:57 +110076/* argv0 */
Damien Miller95def091999-11-25 00:26:21 +110077#ifdef HAVE___PROGNAME
Damien Miller431f66b1999-11-21 18:31:57 +110078extern char *__progname;
Ben Lindstrom49a79c02000-11-17 03:47:20 +000079#else
80char *__progname;
81#endif
Damien Millerd4a8b7e1999-10-27 13:42:43 +100082
Damien Millereba71ba2000-04-29 23:57:08 +100083char hostname[MAXHOSTNAMELEN];
84
Ben Lindstrombba81212001-06-25 05:01:22 +000085static void
Damien Miller431f66b1999-11-21 18:31:57 +110086ask_filename(struct passwd *pw, const char *prompt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +100087{
Damien Miller95def091999-11-25 00:26:21 +110088 char buf[1024];
Damien Millere39cacc2000-11-29 12:18:44 +110089 char *name = NULL;
90
Damien Miller993dd552002-02-19 15:22:47 +110091 if (key_type_name == NULL)
Ben Lindstrom226cfa02001-01-22 05:34:40 +000092 name = _PATH_SSH_CLIENT_ID_RSA;
Damien Miller993dd552002-02-19 15:22:47 +110093 else
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
Damien Millere39cacc2000-11-29 12:18:44 +1100110 snprintf(identity_file, sizeof(identity_file), "%s/%s", pw->pw_dir, name);
Ben Lindstrom3deda8b2000-12-22 20:27:43 +0000111 fprintf(stderr, "%s (%s): ", prompt, identity_file);
112 fflush(stderr);
Damien Miller95def091999-11-25 00:26:21 +1100113 if (fgets(buf, sizeof(buf), stdin) == NULL)
114 exit(1);
115 if (strchr(buf, '\n'))
116 *strchr(buf, '\n') = 0;
117 if (strcmp(buf, "") != 0)
118 strlcpy(identity_file, buf, sizeof(identity_file));
119 have_identity = 1;
Damien Miller10f6f6b1999-11-17 17:29:08 +1100120}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000121
Ben Lindstrombba81212001-06-25 05:01:22 +0000122static Key *
Ben Lindstromd78ae762001-06-05 20:35:09 +0000123load_identity(char *filename)
Damien Millereba71ba2000-04-29 23:57:08 +1000124{
Ben Lindstromd0fca422001-03-26 13:44:06 +0000125 char *pass;
126 Key *prv;
127
Ben Lindstroma3700052001-04-05 23:26:32 +0000128 prv = key_load_private(filename, "", NULL);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000129 if (prv == NULL) {
Ben Lindstromd78ae762001-06-05 20:35:09 +0000130 if (identity_passphrase)
131 pass = xstrdup(identity_passphrase);
132 else
Ben Lindstrom949974b2001-06-25 05:20:31 +0000133 pass = read_passphrase("Enter passphrase: ",
134 RP_ALLOW_STDIN);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000135 prv = key_load_private(filename, pass, NULL);
Damien Millereba71ba2000-04-29 23:57:08 +1000136 memset(pass, 0, strlen(pass));
137 xfree(pass);
138 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000139 return prv;
Damien Millereba71ba2000-04-29 23:57:08 +1000140}
141
Damien Miller874d77b2000-10-14 16:23:11 +1100142#define SSH_COM_PUBLIC_BEGIN "---- BEGIN SSH2 PUBLIC KEY ----"
143#define SSH_COM_PUBLIC_END "---- END SSH2 PUBLIC KEY ----"
144#define SSH_COM_PRIVATE_BEGIN "---- BEGIN SSH2 ENCRYPTED PRIVATE KEY ----"
Kevin Stevesef4eea92001-02-05 12:42:17 +0000145#define SSH_COM_PRIVATE_KEY_MAGIC 0x3f6ff9eb
Damien Millereba71ba2000-04-29 23:57:08 +1000146
Ben Lindstrombba81212001-06-25 05:01:22 +0000147static void
Damien Millereba71ba2000-04-29 23:57:08 +1000148do_convert_to_ssh2(struct passwd *pw)
149{
Ben Lindstrom46c264f2001-04-24 16:56:58 +0000150 Key *k;
Ben Lindstromc58ab022002-02-26 18:15:09 +0000151 u_int len;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000152 u_char *blob;
Damien Millereba71ba2000-04-29 23:57:08 +1000153 struct stat st;
154
155 if (!have_identity)
156 ask_filename(pw, "Enter file in which the key is");
157 if (stat(identity_file, &st) < 0) {
158 perror(identity_file);
159 exit(1);
160 }
Ben Lindstrom46c264f2001-04-24 16:56:58 +0000161 if ((k = key_load_public(identity_file, NULL)) == NULL) {
Ben Lindstromd78ae762001-06-05 20:35:09 +0000162 if ((k = load_identity(identity_file)) == NULL) {
Ben Lindstrom46c264f2001-04-24 16:56:58 +0000163 fprintf(stderr, "load failed\n");
164 exit(1);
165 }
Damien Millereba71ba2000-04-29 23:57:08 +1000166 }
Ben Lindstrom99a30f12001-09-18 05:49:14 +0000167 if (key_to_blob(k, &blob, &len) <= 0) {
168 fprintf(stderr, "key_to_blob failed\n");
169 exit(1);
170 }
Damien Miller874d77b2000-10-14 16:23:11 +1100171 fprintf(stdout, "%s\n", SSH_COM_PUBLIC_BEGIN);
Damien Millereba71ba2000-04-29 23:57:08 +1000172 fprintf(stdout,
Damien Miller874d77b2000-10-14 16:23:11 +1100173 "Comment: \"%d-bit %s, converted from OpenSSH by %s@%s\"\n",
Ben Lindstrom46c264f2001-04-24 16:56:58 +0000174 key_size(k), key_type(k),
Damien Millereba71ba2000-04-29 23:57:08 +1000175 pw->pw_name, hostname);
176 dump_base64(stdout, blob, len);
Damien Miller874d77b2000-10-14 16:23:11 +1100177 fprintf(stdout, "%s\n", SSH_COM_PUBLIC_END);
Ben Lindstrom46c264f2001-04-24 16:56:58 +0000178 key_free(k);
Damien Millereba71ba2000-04-29 23:57:08 +1000179 xfree(blob);
180 exit(0);
181}
182
Ben Lindstrombba81212001-06-25 05:01:22 +0000183static void
Damien Miller874d77b2000-10-14 16:23:11 +1100184buffer_get_bignum_bits(Buffer *b, BIGNUM *value)
185{
186 int bits = buffer_get_int(b);
187 int bytes = (bits + 7) / 8;
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000188
Damien Miller874d77b2000-10-14 16:23:11 +1100189 if (buffer_len(b) < bytes)
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000190 fatal("buffer_get_bignum_bits: input buffer too small: "
191 "need %d have %d", bytes, buffer_len(b));
Damien Miller708d21c2002-01-22 23:18:15 +1100192 BN_bin2bn(buffer_ptr(b), bytes, value);
Damien Miller874d77b2000-10-14 16:23:11 +1100193 buffer_consume(b, bytes);
194}
195
Ben Lindstrombba81212001-06-25 05:01:22 +0000196static Key *
Ben Lindstrom90fd8142002-02-26 18:09:42 +0000197do_convert_private_ssh2_from_blob(u_char *blob, u_int blen)
Damien Miller874d77b2000-10-14 16:23:11 +1100198{
199 Buffer b;
Damien Miller874d77b2000-10-14 16:23:11 +1100200 Key *key = NULL;
Damien Miller874d77b2000-10-14 16:23:11 +1100201 char *type, *cipher;
Ben Lindstrom511d69e2001-07-04 05:05:27 +0000202 u_char *sig, data[] = "abcde12345";
Ben Lindstrome586c4c2001-06-25 05:04:58 +0000203 int magic, rlen, ktype, i1, i2, i3, i4;
204 u_int slen;
205 u_long e;
Damien Miller874d77b2000-10-14 16:23:11 +1100206
207 buffer_init(&b);
208 buffer_append(&b, blob, blen);
209
210 magic = buffer_get_int(&b);
211 if (magic != SSH_COM_PRIVATE_KEY_MAGIC) {
212 error("bad magic 0x%x != 0x%x", magic, SSH_COM_PRIVATE_KEY_MAGIC);
213 buffer_free(&b);
214 return NULL;
215 }
Ben Lindstrom34f91882001-06-25 04:47:54 +0000216 i1 = buffer_get_int(&b);
Damien Miller874d77b2000-10-14 16:23:11 +1100217 type = buffer_get_string(&b, NULL);
218 cipher = buffer_get_string(&b, NULL);
Ben Lindstrom34f91882001-06-25 04:47:54 +0000219 i2 = buffer_get_int(&b);
220 i3 = buffer_get_int(&b);
221 i4 = buffer_get_int(&b);
222 debug("ignore (%d %d %d %d)", i1,i2,i3,i4);
Damien Miller874d77b2000-10-14 16:23:11 +1100223 if (strcmp(cipher, "none") != 0) {
224 error("unsupported cipher %s", cipher);
225 xfree(cipher);
226 buffer_free(&b);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000227 xfree(type);
Damien Miller874d77b2000-10-14 16:23:11 +1100228 return NULL;
229 }
230 xfree(cipher);
231
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000232 if (strstr(type, "dsa")) {
233 ktype = KEY_DSA;
234 } else if (strstr(type, "rsa")) {
235 ktype = KEY_RSA;
236 } else {
237 xfree(type);
Damien Miller874d77b2000-10-14 16:23:11 +1100238 return NULL;
239 }
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000240 key = key_new_private(ktype);
241 xfree(type);
242
243 switch (key->type) {
244 case KEY_DSA:
245 buffer_get_bignum_bits(&b, key->dsa->p);
246 buffer_get_bignum_bits(&b, key->dsa->g);
247 buffer_get_bignum_bits(&b, key->dsa->q);
248 buffer_get_bignum_bits(&b, key->dsa->pub_key);
249 buffer_get_bignum_bits(&b, key->dsa->priv_key);
250 break;
251 case KEY_RSA:
Ben Lindstrom34f91882001-06-25 04:47:54 +0000252 e = buffer_get_char(&b);
253 debug("e %lx", e);
254 if (e < 30) {
255 e <<= 8;
256 e += buffer_get_char(&b);
257 debug("e %lx", e);
258 e <<= 8;
259 e += buffer_get_char(&b);
260 debug("e %lx", e);
261 }
262 if (!BN_set_word(key->rsa->e, e)) {
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000263 buffer_free(&b);
264 key_free(key);
265 return NULL;
266 }
267 buffer_get_bignum_bits(&b, key->rsa->d);
268 buffer_get_bignum_bits(&b, key->rsa->n);
269 buffer_get_bignum_bits(&b, key->rsa->iqmp);
270 buffer_get_bignum_bits(&b, key->rsa->q);
271 buffer_get_bignum_bits(&b, key->rsa->p);
Ben Lindstromf7297dd2001-07-04 05:02:23 +0000272 rsa_generate_additional_parameters(key->rsa);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000273 break;
274 }
Damien Miller874d77b2000-10-14 16:23:11 +1100275 rlen = buffer_len(&b);
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +0000276 if (rlen != 0)
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000277 error("do_convert_private_ssh2_from_blob: "
278 "remaining bytes in key blob %d", rlen);
Damien Miller874d77b2000-10-14 16:23:11 +1100279 buffer_free(&b);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000280
Ben Lindstrome586c4c2001-06-25 05:04:58 +0000281 /* try the key */
282 key_sign(key, &sig, &slen, data, sizeof(data));
283 key_verify(key, sig, slen, data, sizeof(data));
284 xfree(sig);
Damien Miller874d77b2000-10-14 16:23:11 +1100285 return key;
286}
287
Ben Lindstrombba81212001-06-25 05:01:22 +0000288static void
Damien Millereba71ba2000-04-29 23:57:08 +1000289do_convert_from_ssh2(struct passwd *pw)
290{
291 Key *k;
292 int blen;
293 char line[1024], *p;
Ben Lindstrom9e0ddd42001-09-18 05:41:19 +0000294 u_char blob[8096];
Damien Millereba71ba2000-04-29 23:57:08 +1000295 char encoded[8096];
296 struct stat st;
Damien Miller874d77b2000-10-14 16:23:11 +1100297 int escaped = 0, private = 0, ok;
Damien Millereba71ba2000-04-29 23:57:08 +1000298 FILE *fp;
299
300 if (!have_identity)
301 ask_filename(pw, "Enter file in which the key is");
302 if (stat(identity_file, &st) < 0) {
303 perror(identity_file);
304 exit(1);
305 }
306 fp = fopen(identity_file, "r");
307 if (fp == NULL) {
308 perror(identity_file);
309 exit(1);
310 }
311 encoded[0] = '\0';
312 while (fgets(line, sizeof(line), fp)) {
Damien Miller30c3d422000-05-09 11:02:59 +1000313 if (!(p = strchr(line, '\n'))) {
314 fprintf(stderr, "input line too long.\n");
315 exit(1);
316 }
317 if (p > line && p[-1] == '\\')
318 escaped++;
Damien Millereba71ba2000-04-29 23:57:08 +1000319 if (strncmp(line, "----", 4) == 0 ||
320 strstr(line, ": ") != NULL) {
Damien Miller874d77b2000-10-14 16:23:11 +1100321 if (strstr(line, SSH_COM_PRIVATE_BEGIN) != NULL)
322 private = 1;
Ben Lindstrome586c4c2001-06-25 05:04:58 +0000323 if (strstr(line, " END ") != NULL) {
324 break;
325 }
Ben Lindstrom30358602001-04-24 16:59:28 +0000326 /* fprintf(stderr, "ignore: %s", line); */
Damien Millereba71ba2000-04-29 23:57:08 +1000327 continue;
328 }
Damien Miller30c3d422000-05-09 11:02:59 +1000329 if (escaped) {
330 escaped--;
Ben Lindstrom30358602001-04-24 16:59:28 +0000331 /* fprintf(stderr, "escaped: %s", line); */
Damien Miller30c3d422000-05-09 11:02:59 +1000332 continue;
Damien Millereba71ba2000-04-29 23:57:08 +1000333 }
334 *p = '\0';
335 strlcat(encoded, line, sizeof(encoded));
336 }
Damien Miller4a8ed542002-01-22 23:33:31 +1100337 blen = uudecode(encoded, blob, sizeof(blob));
Damien Millereba71ba2000-04-29 23:57:08 +1000338 if (blen < 0) {
339 fprintf(stderr, "uudecode failed.\n");
340 exit(1);
341 }
Damien Miller874d77b2000-10-14 16:23:11 +1100342 k = private ?
343 do_convert_private_ssh2_from_blob(blob, blen) :
Damien Miller0bc1bd82000-11-13 22:57:25 +1100344 key_from_blob(blob, blen);
Damien Miller874d77b2000-10-14 16:23:11 +1100345 if (k == NULL) {
346 fprintf(stderr, "decode blob failed.\n");
347 exit(1);
348 }
349 ok = private ?
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000350 (k->type == KEY_DSA ?
351 PEM_write_DSAPrivateKey(stdout, k->dsa, NULL, NULL, 0, NULL, NULL) :
352 PEM_write_RSAPrivateKey(stdout, k->rsa, NULL, NULL, 0, NULL, NULL)) :
Damien Miller874d77b2000-10-14 16:23:11 +1100353 key_write(k, stdout);
354 if (!ok) {
355 fprintf(stderr, "key write failed");
356 exit(1);
357 }
Damien Millereba71ba2000-04-29 23:57:08 +1000358 key_free(k);
Damien Millera1db12b2002-01-22 23:20:15 +1100359 if (!private)
360 fprintf(stdout, "\n");
Damien Millereba71ba2000-04-29 23:57:08 +1000361 fclose(fp);
362 exit(0);
363}
364
Ben Lindstrombba81212001-06-25 05:01:22 +0000365static void
Damien Millereba71ba2000-04-29 23:57:08 +1000366do_print_public(struct passwd *pw)
367{
Ben Lindstromd0fca422001-03-26 13:44:06 +0000368 Key *prv;
Damien Millereba71ba2000-04-29 23:57:08 +1000369 struct stat st;
370
371 if (!have_identity)
372 ask_filename(pw, "Enter file in which the key is");
373 if (stat(identity_file, &st) < 0) {
374 perror(identity_file);
375 exit(1);
376 }
Ben Lindstromd78ae762001-06-05 20:35:09 +0000377 prv = load_identity(identity_file);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000378 if (prv == NULL) {
Damien Millereba71ba2000-04-29 23:57:08 +1000379 fprintf(stderr, "load failed\n");
380 exit(1);
381 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000382 if (!key_write(prv, stdout))
Damien Millereba71ba2000-04-29 23:57:08 +1000383 fprintf(stderr, "key_write failed");
Ben Lindstromd0fca422001-03-26 13:44:06 +0000384 key_free(prv);
Damien Millereba71ba2000-04-29 23:57:08 +1000385 fprintf(stdout, "\n");
386 exit(0);
387}
388
Ben Lindstrom6818bfb2001-08-06 21:40:04 +0000389#ifdef SMARTCARD
Ben Lindstromcd392282001-07-04 03:44:03 +0000390static void
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000391do_upload(struct passwd *pw, const char *sc_reader_id)
Ben Lindstromcd392282001-07-04 03:44:03 +0000392{
Ben Lindstromcd392282001-07-04 03:44:03 +0000393 Key *prv = NULL;
394 struct stat st;
Ben Lindstrom70e3ad82002-03-22 03:33:43 +0000395 int ret;
Ben Lindstromcd392282001-07-04 03:44:03 +0000396
397 if (!have_identity)
398 ask_filename(pw, "Enter file in which the key is");
399 if (stat(identity_file, &st) < 0) {
400 perror(identity_file);
Ben Lindstrom70e3ad82002-03-22 03:33:43 +0000401 exit(1);
Ben Lindstromcd392282001-07-04 03:44:03 +0000402 }
403 prv = load_identity(identity_file);
404 if (prv == NULL) {
405 error("load failed");
Ben Lindstrom70e3ad82002-03-22 03:33:43 +0000406 exit(1);
Ben Lindstromcd392282001-07-04 03:44:03 +0000407 }
Ben Lindstrom70e3ad82002-03-22 03:33:43 +0000408 ret = sc_put_key(prv, sc_reader_id);
409 key_free(prv);
410 if (ret < 0)
411 exit(1);
412 log("loading key done");
413 exit(0);
Ben Lindstromcd392282001-07-04 03:44:03 +0000414}
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000415
416static void
417do_download(struct passwd *pw, const char *sc_reader_id)
418{
419 Key *pub = NULL;
420
421 pub = sc_get_key(sc_reader_id);
422 if (pub == NULL)
423 fatal("cannot read public key from smartcard");
424 key_write(pub, stdout);
425 key_free(pub);
426 fprintf(stdout, "\n");
427 exit(0);
428}
Ben Lindstromffce1472001-08-06 21:57:31 +0000429#endif /* SMARTCARD */
Ben Lindstromcd392282001-07-04 03:44:03 +0000430
Ben Lindstrombba81212001-06-25 05:01:22 +0000431static void
Damien Miller10f6f6b1999-11-17 17:29:08 +1100432do_fingerprint(struct passwd *pw)
433{
Damien Miller98c7ad62000-03-09 21:27:49 +1100434 FILE *f;
Damien Millereba71ba2000-04-29 23:57:08 +1000435 Key *public;
Ben Lindstrom8fd372b2001-03-12 03:02:17 +0000436 char *comment = NULL, *cp, *ep, line[16*1024], *fp;
Ben Lindstrom65366a82001-12-06 16:32:47 +0000437 int i, skip = 0, num = 1, invalid = 1;
438 enum fp_rep rep;
439 enum fp_type fptype;
Damien Miller95def091999-11-25 00:26:21 +1100440 struct stat st;
Damien Miller10f6f6b1999-11-17 17:29:08 +1100441
Ben Lindstromd0fca422001-03-26 13:44:06 +0000442 fptype = print_bubblebabble ? SSH_FP_SHA1 : SSH_FP_MD5;
443 rep = print_bubblebabble ? SSH_FP_BUBBLEBABBLE : SSH_FP_HEX;
Ben Lindstrom8fd372b2001-03-12 03:02:17 +0000444
Damien Miller95def091999-11-25 00:26:21 +1100445 if (!have_identity)
446 ask_filename(pw, "Enter file in which the key is");
447 if (stat(identity_file, &st) < 0) {
448 perror(identity_file);
449 exit(1);
450 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000451 public = key_load_public(identity_file, &comment);
452 if (public != NULL) {
453 fp = key_fingerprint(public, fptype, rep);
454 printf("%d %s %s\n", key_size(public), fp, comment);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100455 key_free(public);
456 xfree(comment);
Ben Lindstrom8fd372b2001-03-12 03:02:17 +0000457 xfree(fp);
Damien Miller98c7ad62000-03-09 21:27:49 +1100458 exit(0);
459 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000460 if (comment)
461 xfree(comment);
Damien Miller98c7ad62000-03-09 21:27:49 +1100462
463 f = fopen(identity_file, "r");
464 if (f != NULL) {
Damien Miller98c7ad62000-03-09 21:27:49 +1100465 while (fgets(line, sizeof(line), f)) {
466 i = strlen(line) - 1;
467 if (line[i] != '\n') {
468 error("line %d too long: %.40s...", num, line);
469 skip = 1;
470 continue;
Damien Miller95def091999-11-25 00:26:21 +1100471 }
Damien Miller98c7ad62000-03-09 21:27:49 +1100472 num++;
473 if (skip) {
474 skip = 0;
475 continue;
476 }
477 line[i] = '\0';
478
479 /* Skip leading whitespace, empty and comment lines. */
480 for (cp = line; *cp == ' ' || *cp == '\t'; cp++)
481 ;
482 if (!*cp || *cp == '\n' || *cp == '#')
483 continue ;
484 i = strtol(cp, &ep, 10);
485 if (i == 0 || ep == NULL || (*ep != ' ' && *ep != '\t')) {
486 int quoted = 0;
487 comment = cp;
488 for (; *cp && (quoted || (*cp != ' ' && *cp != '\t')); cp++) {
489 if (*cp == '\\' && cp[1] == '"')
490 cp++; /* Skip both */
491 else if (*cp == '"')
492 quoted = !quoted;
493 }
494 if (!*cp)
495 continue;
496 *cp++ = '\0';
497 }
498 ep = cp;
Ben Lindstrom2941f112000-12-29 16:50:13 +0000499 public = key_new(KEY_RSA1);
500 if (key_read(public, &cp) != 1) {
501 cp = ep;
502 key_free(public);
503 public = key_new(KEY_UNSPEC);
504 if (key_read(public, &cp) != 1) {
505 key_free(public);
506 continue;
507 }
Damien Miller98c7ad62000-03-09 21:27:49 +1100508 }
Ben Lindstrom2941f112000-12-29 16:50:13 +0000509 comment = *cp ? cp : comment;
Ben Lindstromd0fca422001-03-26 13:44:06 +0000510 fp = key_fingerprint(public, fptype, rep);
Ben Lindstrom8fd372b2001-03-12 03:02:17 +0000511 printf("%d %s %s\n", key_size(public), fp,
Ben Lindstrom2941f112000-12-29 16:50:13 +0000512 comment ? comment : "no comment");
Ben Lindstrom8fd372b2001-03-12 03:02:17 +0000513 xfree(fp);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000514 key_free(public);
Ben Lindstrom2941f112000-12-29 16:50:13 +0000515 invalid = 0;
Damien Miller95def091999-11-25 00:26:21 +1100516 }
Damien Miller98c7ad62000-03-09 21:27:49 +1100517 fclose(f);
Damien Miller95def091999-11-25 00:26:21 +1100518 }
Damien Miller98c7ad62000-03-09 21:27:49 +1100519 if (invalid) {
Damien Millereb5fec62001-11-12 10:52:44 +1100520 printf("%s is not a public key file.\n", identity_file);
Damien Miller98c7ad62000-03-09 21:27:49 +1100521 exit(1);
522 }
Damien Miller95def091999-11-25 00:26:21 +1100523 exit(0);
Damien Miller10f6f6b1999-11-17 17:29:08 +1100524}
525
Damien Miller95def091999-11-25 00:26:21 +1100526/*
527 * Perform changing a passphrase. The argument is the passwd structure
528 * for the current user.
529 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000530static void
Damien Miller10f6f6b1999-11-17 17:29:08 +1100531do_change_passphrase(struct passwd *pw)
532{
Damien Miller95def091999-11-25 00:26:21 +1100533 char *comment;
534 char *old_passphrase, *passphrase1, *passphrase2;
535 struct stat st;
Damien Millereba71ba2000-04-29 23:57:08 +1000536 Key *private;
Damien Miller10f6f6b1999-11-17 17:29:08 +1100537
Damien Miller95def091999-11-25 00:26:21 +1100538 if (!have_identity)
539 ask_filename(pw, "Enter file in which the key is");
Damien Miller95def091999-11-25 00:26:21 +1100540 if (stat(identity_file, &st) < 0) {
541 perror(identity_file);
542 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000543 }
Damien Miller95def091999-11-25 00:26:21 +1100544 /* Try to load the file with empty passphrase. */
Ben Lindstromd0fca422001-03-26 13:44:06 +0000545 private = key_load_private(identity_file, "", &comment);
546 if (private == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100547 if (identity_passphrase)
548 old_passphrase = xstrdup(identity_passphrase);
549 else
Ben Lindstrom949974b2001-06-25 05:20:31 +0000550 old_passphrase =
551 read_passphrase("Enter old passphrase: ",
552 RP_ALLOW_STDIN);
553 private = key_load_private(identity_file, old_passphrase,
554 &comment);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000555 memset(old_passphrase, 0, strlen(old_passphrase));
556 xfree(old_passphrase);
557 if (private == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100558 printf("Bad passphrase.\n");
559 exit(1);
560 }
Damien Miller95def091999-11-25 00:26:21 +1100561 }
562 printf("Key has comment '%s'\n", comment);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000563
Damien Miller95def091999-11-25 00:26:21 +1100564 /* Ask the new passphrase (twice). */
565 if (identity_new_passphrase) {
566 passphrase1 = xstrdup(identity_new_passphrase);
567 passphrase2 = NULL;
568 } else {
569 passphrase1 =
Ben Lindstrom949974b2001-06-25 05:20:31 +0000570 read_passphrase("Enter new passphrase (empty for no "
571 "passphrase): ", RP_ALLOW_STDIN);
572 passphrase2 = read_passphrase("Enter same passphrase again: ",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100573 RP_ALLOW_STDIN);
Damien Miller95def091999-11-25 00:26:21 +1100574
575 /* Verify that they are the same. */
576 if (strcmp(passphrase1, passphrase2) != 0) {
577 memset(passphrase1, 0, strlen(passphrase1));
578 memset(passphrase2, 0, strlen(passphrase2));
579 xfree(passphrase1);
580 xfree(passphrase2);
581 printf("Pass phrases do not match. Try again.\n");
582 exit(1);
583 }
584 /* Destroy the other copy. */
585 memset(passphrase2, 0, strlen(passphrase2));
586 xfree(passphrase2);
587 }
588
589 /* Save the file using the new passphrase. */
Ben Lindstromd0fca422001-03-26 13:44:06 +0000590 if (!key_save_private(private, identity_file, passphrase1, comment)) {
Ben Lindstrom15f33862001-04-16 02:00:02 +0000591 printf("Saving the key failed: %s.\n", identity_file);
Damien Miller95def091999-11-25 00:26:21 +1100592 memset(passphrase1, 0, strlen(passphrase1));
593 xfree(passphrase1);
Damien Millereba71ba2000-04-29 23:57:08 +1000594 key_free(private);
Damien Miller95def091999-11-25 00:26:21 +1100595 xfree(comment);
596 exit(1);
597 }
598 /* Destroy the passphrase and the copy of the key in memory. */
599 memset(passphrase1, 0, strlen(passphrase1));
600 xfree(passphrase1);
Damien Millereba71ba2000-04-29 23:57:08 +1000601 key_free(private); /* Destroys contents */
Damien Miller95def091999-11-25 00:26:21 +1100602 xfree(comment);
603
604 printf("Your identification has been saved with the new passphrase.\n");
605 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000606}
607
Damien Miller95def091999-11-25 00:26:21 +1100608/*
609 * Change the comment of a private key file.
610 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000611static void
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000612do_change_comment(struct passwd *pw)
613{
Ben Lindstrom5fc62702001-03-09 18:19:24 +0000614 char new_comment[1024], *comment, *passphrase;
Ben Lindstromd0fca422001-03-26 13:44:06 +0000615 Key *private;
616 Key *public;
Damien Miller95def091999-11-25 00:26:21 +1100617 struct stat st;
618 FILE *f;
Ben Lindstrom5fc62702001-03-09 18:19:24 +0000619 int fd;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000620
Damien Miller95def091999-11-25 00:26:21 +1100621 if (!have_identity)
622 ask_filename(pw, "Enter file in which the key is");
Damien Miller95def091999-11-25 00:26:21 +1100623 if (stat(identity_file, &st) < 0) {
624 perror(identity_file);
625 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000626 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000627 private = key_load_private(identity_file, "", &comment);
628 if (private == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100629 if (identity_passphrase)
630 passphrase = xstrdup(identity_passphrase);
631 else if (identity_new_passphrase)
632 passphrase = xstrdup(identity_new_passphrase);
633 else
Ben Lindstrom949974b2001-06-25 05:20:31 +0000634 passphrase = read_passphrase("Enter passphrase: ",
635 RP_ALLOW_STDIN);
Damien Miller95def091999-11-25 00:26:21 +1100636 /* Try to load using the passphrase. */
Ben Lindstromd0fca422001-03-26 13:44:06 +0000637 private = key_load_private(identity_file, passphrase, &comment);
638 if (private == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100639 memset(passphrase, 0, strlen(passphrase));
640 xfree(passphrase);
641 printf("Bad passphrase.\n");
642 exit(1);
643 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000644 } else {
645 passphrase = xstrdup("");
Damien Miller95def091999-11-25 00:26:21 +1100646 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000647 if (private->type != KEY_RSA1) {
648 fprintf(stderr, "Comments are only supported for RSA1 keys.\n");
649 key_free(private);
650 exit(1);
Damien Miller9f0f5c62001-12-21 14:45:46 +1100651 }
Damien Miller95def091999-11-25 00:26:21 +1100652 printf("Key now has comment '%s'\n", comment);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000653
Damien Miller95def091999-11-25 00:26:21 +1100654 if (identity_comment) {
655 strlcpy(new_comment, identity_comment, sizeof(new_comment));
656 } else {
657 printf("Enter new comment: ");
658 fflush(stdout);
659 if (!fgets(new_comment, sizeof(new_comment), stdin)) {
660 memset(passphrase, 0, strlen(passphrase));
Damien Millereba71ba2000-04-29 23:57:08 +1000661 key_free(private);
Damien Miller95def091999-11-25 00:26:21 +1100662 exit(1);
663 }
Damien Miller95def091999-11-25 00:26:21 +1100664 if (strchr(new_comment, '\n'))
665 *strchr(new_comment, '\n') = 0;
666 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000667
Damien Miller95def091999-11-25 00:26:21 +1100668 /* Save the file using the new passphrase. */
Ben Lindstromd0fca422001-03-26 13:44:06 +0000669 if (!key_save_private(private, identity_file, passphrase, new_comment)) {
Ben Lindstrom15f33862001-04-16 02:00:02 +0000670 printf("Saving the key failed: %s.\n", identity_file);
Damien Miller95def091999-11-25 00:26:21 +1100671 memset(passphrase, 0, strlen(passphrase));
672 xfree(passphrase);
Damien Millereba71ba2000-04-29 23:57:08 +1000673 key_free(private);
Damien Miller95def091999-11-25 00:26:21 +1100674 xfree(comment);
675 exit(1);
676 }
Damien Miller95def091999-11-25 00:26:21 +1100677 memset(passphrase, 0, strlen(passphrase));
678 xfree(passphrase);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000679 public = key_from_private(private);
Damien Millereba71ba2000-04-29 23:57:08 +1000680 key_free(private);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000681
Damien Miller95def091999-11-25 00:26:21 +1100682 strlcat(identity_file, ".pub", sizeof(identity_file));
Ben Lindstrom5fc62702001-03-09 18:19:24 +0000683 fd = open(identity_file, O_WRONLY | O_CREAT | O_TRUNC, 0644);
684 if (fd == -1) {
Damien Miller95def091999-11-25 00:26:21 +1100685 printf("Could not save your public key in %s\n", identity_file);
686 exit(1);
687 }
Ben Lindstrom5fc62702001-03-09 18:19:24 +0000688 f = fdopen(fd, "w");
689 if (f == NULL) {
690 printf("fdopen %s failed", identity_file);
691 exit(1);
692 }
Damien Millereba71ba2000-04-29 23:57:08 +1000693 if (!key_write(public, f))
694 fprintf(stderr, "write key failed");
695 key_free(public);
696 fprintf(f, " %s\n", new_comment);
Damien Miller95def091999-11-25 00:26:21 +1100697 fclose(f);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000698
Damien Miller95def091999-11-25 00:26:21 +1100699 xfree(comment);
700
701 printf("The comment in your key file has been changed.\n");
702 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000703}
704
Ben Lindstrombba81212001-06-25 05:01:22 +0000705static void
Damien Miller431f66b1999-11-21 18:31:57 +1100706usage(void)
707{
Ben Lindstrom97be31e2001-08-06 21:49:06 +0000708 fprintf(stderr, "Usage: %s [options]\n", __progname);
709 fprintf(stderr, "Options:\n");
710 fprintf(stderr, " -b bits Number of bits in the key to create.\n");
711 fprintf(stderr, " -c Change comment in private and public key files.\n");
712 fprintf(stderr, " -e Convert OpenSSH to IETF SECSH key file.\n");
713 fprintf(stderr, " -f filename Filename of the key file.\n");
714 fprintf(stderr, " -i Convert IETF SECSH to OpenSSH key file.\n");
715 fprintf(stderr, " -l Show fingerprint of key file.\n");
716 fprintf(stderr, " -p Change passphrase of private key file.\n");
717 fprintf(stderr, " -q Quiet.\n");
718 fprintf(stderr, " -y Read private key file and print public key.\n");
719 fprintf(stderr, " -t type Specify type of key to create.\n");
720 fprintf(stderr, " -B Show bubblebabble digest of key file.\n");
721 fprintf(stderr, " -C comment Provide new comment.\n");
722 fprintf(stderr, " -N phrase Provide new passphrase.\n");
723 fprintf(stderr, " -P phrase Provide old passphrase.\n");
724#ifdef SMARTCARD
725 fprintf(stderr, " -D reader Download public key from smartcard.\n");
726 fprintf(stderr, " -U reader Upload private key to smartcard.\n");
727#endif /* SMARTCARD */
728
Damien Miller95def091999-11-25 00:26:21 +1100729 exit(1);
Damien Miller431f66b1999-11-21 18:31:57 +1100730}
731
Damien Miller95def091999-11-25 00:26:21 +1100732/*
733 * Main program for key management.
734 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000735int
736main(int ac, char **av)
737{
Damien Millera41c8b12002-01-22 23:05:08 +1100738 char dotsshdir[MAXPATHLEN], comment[1024], *passphrase1, *passphrase2;
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000739 char *reader_id = NULL;
Ben Lindstrom5fc62702001-03-09 18:19:24 +0000740 Key *private, *public;
Damien Miller95def091999-11-25 00:26:21 +1100741 struct passwd *pw;
Damien Miller95def091999-11-25 00:26:21 +1100742 struct stat st;
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000743 int opt, type, fd, download = 0;
Damien Miller95def091999-11-25 00:26:21 +1100744 FILE *f;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100745
Damien Miller95def091999-11-25 00:26:21 +1100746 extern int optind;
747 extern char *optarg;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000748
Ben Lindstrom49a79c02000-11-17 03:47:20 +0000749 __progname = get_progname(av[0]);
Damien Millerf9b625c2000-07-09 22:42:32 +1000750
Damien Millerd3a18572000-06-07 19:55:44 +1000751 SSLeay_add_all_algorithms();
Damien Millereba71ba2000-04-29 23:57:08 +1000752
Damien Miller5428f641999-11-25 11:54:57 +1100753 /* we need this for the home * directory. */
Damien Miller95def091999-11-25 00:26:21 +1100754 pw = getpwuid(getuid());
755 if (!pw) {
756 printf("You don't exist, go away!\n");
757 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000758 }
Damien Millereba71ba2000-04-29 23:57:08 +1000759 if (gethostname(hostname, sizeof(hostname)) < 0) {
760 perror("gethostname");
761 exit(1);
762 }
Damien Miller5428f641999-11-25 11:54:57 +1100763
Ben Lindstromf19578c2001-08-06 21:46:54 +0000764 while ((opt = getopt(ac, av, "deiqpclBRxXyb:f:t:U:D:P:N:C:")) != -1) {
Damien Miller95def091999-11-25 00:26:21 +1100765 switch (opt) {
766 case 'b':
767 bits = atoi(optarg);
768 if (bits < 512 || bits > 32768) {
769 printf("Bits has bad value.\n");
770 exit(1);
771 }
772 break;
Damien Miller95def091999-11-25 00:26:21 +1100773 case 'l':
774 print_fingerprint = 1;
775 break;
Ben Lindstrom8fd372b2001-03-12 03:02:17 +0000776 case 'B':
777 print_bubblebabble = 1;
778 break;
Damien Miller95def091999-11-25 00:26:21 +1100779 case 'p':
780 change_passphrase = 1;
781 break;
Damien Miller95def091999-11-25 00:26:21 +1100782 case 'c':
783 change_comment = 1;
784 break;
Damien Miller95def091999-11-25 00:26:21 +1100785 case 'f':
786 strlcpy(identity_file, optarg, sizeof(identity_file));
787 have_identity = 1;
788 break;
Damien Miller95def091999-11-25 00:26:21 +1100789 case 'P':
790 identity_passphrase = optarg;
791 break;
Damien Miller95def091999-11-25 00:26:21 +1100792 case 'N':
793 identity_new_passphrase = optarg;
794 break;
Damien Miller95def091999-11-25 00:26:21 +1100795 case 'C':
796 identity_comment = optarg;
797 break;
Damien Miller95def091999-11-25 00:26:21 +1100798 case 'q':
799 quiet = 1;
800 break;
Damien Millereba71ba2000-04-29 23:57:08 +1000801 case 'R':
Damien Miller0bc1bd82000-11-13 22:57:25 +1100802 /* unused */
803 exit(0);
Damien Millereba71ba2000-04-29 23:57:08 +1000804 break;
Ben Lindstrom5a707822001-04-22 17:15:46 +0000805 case 'e':
Damien Millereba71ba2000-04-29 23:57:08 +1000806 case 'x':
Ben Lindstrom5a707822001-04-22 17:15:46 +0000807 /* export key */
Damien Millereba71ba2000-04-29 23:57:08 +1000808 convert_to_ssh2 = 1;
809 break;
Ben Lindstrom5a707822001-04-22 17:15:46 +0000810 case 'i':
Damien Millereba71ba2000-04-29 23:57:08 +1000811 case 'X':
Ben Lindstrom5a707822001-04-22 17:15:46 +0000812 /* import key */
Damien Millereba71ba2000-04-29 23:57:08 +1000813 convert_from_ssh2 = 1;
814 break;
Damien Millereba71ba2000-04-29 23:57:08 +1000815 case 'y':
816 print_public = 1;
817 break;
Damien Millereba71ba2000-04-29 23:57:08 +1000818 case 'd':
Damien Miller0bc1bd82000-11-13 22:57:25 +1100819 key_type_name = "dsa";
Damien Millereba71ba2000-04-29 23:57:08 +1000820 break;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100821 case 't':
822 key_type_name = optarg;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100823 break;
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000824 case 'D':
825 download = 1;
Ben Lindstromf19578c2001-08-06 21:46:54 +0000826 case 'U':
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000827 reader_id = optarg;
Ben Lindstromcd392282001-07-04 03:44:03 +0000828 break;
Damien Miller95def091999-11-25 00:26:21 +1100829 case '?':
830 default:
831 usage();
832 }
833 }
834 if (optind < ac) {
835 printf("Too many arguments.\n");
836 usage();
837 }
838 if (change_passphrase && change_comment) {
839 printf("Can only have one of -p and -c.\n");
840 usage();
841 }
Ben Lindstrom8fd372b2001-03-12 03:02:17 +0000842 if (print_fingerprint || print_bubblebabble)
Damien Miller95def091999-11-25 00:26:21 +1100843 do_fingerprint(pw);
Damien Miller95def091999-11-25 00:26:21 +1100844 if (change_passphrase)
845 do_change_passphrase(pw);
Damien Millereba71ba2000-04-29 23:57:08 +1000846 if (convert_to_ssh2)
847 do_convert_to_ssh2(pw);
Damien Miller4a10d2e2002-03-11 22:53:29 +1100848 if (change_comment)
849 do_change_comment(pw);
Damien Millereba71ba2000-04-29 23:57:08 +1000850 if (print_public)
851 do_print_public(pw);
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000852 if (reader_id != NULL) {
Ben Lindstrom6818bfb2001-08-06 21:40:04 +0000853#ifdef SMARTCARD
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000854 if (download)
855 do_download(pw, reader_id);
856 else
857 do_upload(pw, reader_id);
Ben Lindstromffce1472001-08-06 21:57:31 +0000858#else /* SMARTCARD */
Ben Lindstrom6818bfb2001-08-06 21:40:04 +0000859 fatal("no support for smartcards.");
Ben Lindstromffce1472001-08-06 21:57:31 +0000860#endif /* SMARTCARD */
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000861 }
Damien Miller95def091999-11-25 00:26:21 +1100862
Damien Miller8eb71412002-01-30 09:37:06 +1100863 init_rng();
864 seed_rng();
Damien Miller95def091999-11-25 00:26:21 +1100865 arc4random_stir();
866
Damien Miller4a10d2e2002-03-11 22:53:29 +1100867 if (convert_from_ssh2)
868 do_convert_from_ssh2(pw);
869
Damien Miller154dda72002-01-22 23:08:16 +1100870 if (key_type_name == NULL) {
871 printf("You must specify a key type (-t).\n");
872 usage();
873 }
Damien Millere39cacc2000-11-29 12:18:44 +1100874 type = key_type_from_name(key_type_name);
875 if (type == KEY_UNSPEC) {
876 fprintf(stderr, "unknown key type %s\n", key_type_name);
877 exit(1);
Damien Millereba71ba2000-04-29 23:57:08 +1000878 }
Damien Miller0bc1bd82000-11-13 22:57:25 +1100879 if (!quiet)
Damien Millere39cacc2000-11-29 12:18:44 +1100880 printf("Generating public/private %s key pair.\n", key_type_name);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100881 private = key_generate(type, bits);
882 if (private == NULL) {
883 fprintf(stderr, "key_generate failed");
884 exit(1);
885 }
886 public = key_from_private(private);
Damien Miller95def091999-11-25 00:26:21 +1100887
888 if (!have_identity)
889 ask_filename(pw, "Enter file in which to save the key");
890
891 /* Create ~/.ssh directory if it doesn\'t already exist. */
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000892 snprintf(dotsshdir, sizeof dotsshdir, "%s/%s", pw->pw_dir, _PATH_SSH_USER_DIR);
Damien Miller95def091999-11-25 00:26:21 +1100893 if (strstr(identity_file, dotsshdir) != NULL &&
894 stat(dotsshdir, &st) < 0) {
Damien Millerbe484b52000-07-15 14:14:16 +1000895 if (mkdir(dotsshdir, 0700) < 0)
Damien Miller95def091999-11-25 00:26:21 +1100896 error("Could not create directory '%s'.", dotsshdir);
897 else if (!quiet)
898 printf("Created directory '%s'.\n", dotsshdir);
899 }
900 /* If the file already exists, ask the user to confirm. */
901 if (stat(identity_file, &st) >= 0) {
902 char yesno[3];
903 printf("%s already exists.\n", identity_file);
904 printf("Overwrite (y/n)? ");
905 fflush(stdout);
906 if (fgets(yesno, sizeof(yesno), stdin) == NULL)
907 exit(1);
908 if (yesno[0] != 'y' && yesno[0] != 'Y')
909 exit(1);
910 }
911 /* Ask for a passphrase (twice). */
912 if (identity_passphrase)
913 passphrase1 = xstrdup(identity_passphrase);
914 else if (identity_new_passphrase)
915 passphrase1 = xstrdup(identity_new_passphrase);
916 else {
917passphrase_again:
918 passphrase1 =
Ben Lindstrom949974b2001-06-25 05:20:31 +0000919 read_passphrase("Enter passphrase (empty for no "
920 "passphrase): ", RP_ALLOW_STDIN);
921 passphrase2 = read_passphrase("Enter same passphrase again: ",
922 RP_ALLOW_STDIN);
Damien Miller95def091999-11-25 00:26:21 +1100923 if (strcmp(passphrase1, passphrase2) != 0) {
Ben Lindstrom949974b2001-06-25 05:20:31 +0000924 /*
925 * The passphrases do not match. Clear them and
926 * retry.
927 */
Damien Miller95def091999-11-25 00:26:21 +1100928 memset(passphrase1, 0, strlen(passphrase1));
929 memset(passphrase2, 0, strlen(passphrase2));
930 xfree(passphrase1);
931 xfree(passphrase2);
932 printf("Passphrases do not match. Try again.\n");
933 goto passphrase_again;
934 }
935 /* Clear the other copy of the passphrase. */
936 memset(passphrase2, 0, strlen(passphrase2));
937 xfree(passphrase2);
938 }
939
Damien Miller95def091999-11-25 00:26:21 +1100940 if (identity_comment) {
941 strlcpy(comment, identity_comment, sizeof(comment));
942 } else {
Damien Miller4af51302000-04-16 11:18:38 +1000943 /* Create default commend field for the passphrase. */
Damien Miller95def091999-11-25 00:26:21 +1100944 snprintf(comment, sizeof comment, "%s@%s", pw->pw_name, hostname);
945 }
946
947 /* Save the key with the given passphrase and comment. */
Ben Lindstromd0fca422001-03-26 13:44:06 +0000948 if (!key_save_private(private, identity_file, passphrase1, comment)) {
Ben Lindstrom15f33862001-04-16 02:00:02 +0000949 printf("Saving the key failed: %s.\n", identity_file);
Damien Miller95def091999-11-25 00:26:21 +1100950 memset(passphrase1, 0, strlen(passphrase1));
951 xfree(passphrase1);
952 exit(1);
953 }
954 /* Clear the passphrase. */
955 memset(passphrase1, 0, strlen(passphrase1));
956 xfree(passphrase1);
957
958 /* Clear the private key and the random number generator. */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100959 key_free(private);
Damien Miller95def091999-11-25 00:26:21 +1100960 arc4random_stir();
961
962 if (!quiet)
963 printf("Your identification has been saved in %s.\n", identity_file);
964
Damien Miller95def091999-11-25 00:26:21 +1100965 strlcat(identity_file, ".pub", sizeof(identity_file));
Ben Lindstrom5fc62702001-03-09 18:19:24 +0000966 fd = open(identity_file, O_WRONLY | O_CREAT | O_TRUNC, 0644);
967 if (fd == -1) {
Damien Miller95def091999-11-25 00:26:21 +1100968 printf("Could not save your public key in %s\n", identity_file);
969 exit(1);
970 }
Ben Lindstrom5fc62702001-03-09 18:19:24 +0000971 f = fdopen(fd, "w");
972 if (f == NULL) {
973 printf("fdopen %s failed", identity_file);
974 exit(1);
975 }
Damien Millereba71ba2000-04-29 23:57:08 +1000976 if (!key_write(public, f))
977 fprintf(stderr, "write key failed");
978 fprintf(f, " %s\n", comment);
Damien Miller95def091999-11-25 00:26:21 +1100979 fclose(f);
980
981 if (!quiet) {
Ben Lindstromcfccef92001-03-13 04:57:58 +0000982 char *fp = key_fingerprint(public, SSH_FP_MD5, SSH_FP_HEX);
Damien Millereba71ba2000-04-29 23:57:08 +1000983 printf("Your public key has been saved in %s.\n",
984 identity_file);
Damien Miller95def091999-11-25 00:26:21 +1100985 printf("The key fingerprint is:\n");
Ben Lindstromcfccef92001-03-13 04:57:58 +0000986 printf("%s %s\n", fp, comment);
987 xfree(fp);
Damien Miller95def091999-11-25 00:26:21 +1100988 }
Damien Millereba71ba2000-04-29 23:57:08 +1000989
990 key_free(public);
Damien Miller95def091999-11-25 00:26:21 +1100991 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000992}