blob: f1e6d53c79a9961788b2fc0daf5dd237937fd615 [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 Lindstrom7feba352001-07-04 05:06:59 +000015RCSID("$OpenBSD: ssh-keygen.c,v 1.70 2001/06/29 07:06:34 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
Ben Lindstromcd392282001-07-04 03:44:03 +000020#ifdef SMARTCARD
21#include <sectok.h>
22#endif
23
Damien Millerd4a8b7e1999-10-27 13:42:43 +100024#include "xmalloc.h"
Damien Millereba71ba2000-04-29 23:57:08 +100025#include "key.h"
Ben Lindstromd09fcf52001-03-29 00:29:54 +000026#include "rsa.h"
Damien Millereba71ba2000-04-29 23:57:08 +100027#include "authfile.h"
28#include "uuencode.h"
Damien Miller874d77b2000-10-14 16:23:11 +110029#include "buffer.h"
30#include "bufaux.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000031#include "pathnames.h"
32#include "log.h"
33#include "readpass.h"
Damien Miller874d77b2000-10-14 16:23:11 +110034
Ben Lindstromcd392282001-07-04 03:44:03 +000035
Damien Millereba71ba2000-04-29 23:57:08 +100036/* Number of bits in the RSA/DSA key. This value can be changed on the command line. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100037int bits = 1024;
38
Damien Miller5428f641999-11-25 11:54:57 +110039/*
40 * Flag indicating that we just want to change the passphrase. This can be
41 * set on the command line.
42 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100043int change_passphrase = 0;
44
Damien Miller5428f641999-11-25 11:54:57 +110045/*
46 * Flag indicating that we just want to change the comment. This can be set
47 * on the command line.
48 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100049int change_comment = 0;
50
51int quiet = 0;
52
Damien Miller10f6f6b1999-11-17 17:29:08 +110053/* Flag indicating that we just want to see the key fingerprint */
54int print_fingerprint = 0;
Ben Lindstrom8fd372b2001-03-12 03:02:17 +000055int print_bubblebabble = 0;
Damien Miller10f6f6b1999-11-17 17:29:08 +110056
Damien Miller431f66b1999-11-21 18:31:57 +110057/* The identity file name, given on the command line or entered by the user. */
58char identity_file[1024];
59int have_identity = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100060
61/* This is set to the passphrase if given on the command line. */
62char *identity_passphrase = NULL;
63
64/* This is set to the new passphrase if given on the command line. */
65char *identity_new_passphrase = NULL;
66
67/* This is set to the new comment if given on the command line. */
68char *identity_comment = NULL;
69
Damien Millereba71ba2000-04-29 23:57:08 +100070/* Dump public key file in format used by real and the original SSH 2 */
71int convert_to_ssh2 = 0;
72int convert_from_ssh2 = 0;
73int print_public = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +110074
Damien Millere39cacc2000-11-29 12:18:44 +110075/* default to RSA for SSH-1 */
76char *key_type_name = "rsa1";
Damien Millereba71ba2000-04-29 23:57:08 +100077
Damien Miller431f66b1999-11-21 18:31:57 +110078/* argv0 */
Damien Miller95def091999-11-25 00:26:21 +110079#ifdef HAVE___PROGNAME
Damien Miller431f66b1999-11-21 18:31:57 +110080extern char *__progname;
Ben Lindstrom49a79c02000-11-17 03:47:20 +000081#else
82char *__progname;
83#endif
Damien Millerd4a8b7e1999-10-27 13:42:43 +100084
Damien Millereba71ba2000-04-29 23:57:08 +100085char hostname[MAXHOSTNAMELEN];
86
Ben Lindstrombba81212001-06-25 05:01:22 +000087static void
Damien Miller431f66b1999-11-21 18:31:57 +110088ask_filename(struct passwd *pw, const char *prompt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +100089{
Damien Miller95def091999-11-25 00:26:21 +110090 char buf[1024];
Damien Millere39cacc2000-11-29 12:18:44 +110091 char *name = NULL;
92
93 switch (key_type_from_name(key_type_name)) {
94 case KEY_RSA1:
Ben Lindstrom226cfa02001-01-22 05:34:40 +000095 name = _PATH_SSH_CLIENT_IDENTITY;
Damien Millere39cacc2000-11-29 12:18:44 +110096 break;
97 case KEY_DSA:
Ben Lindstrom226cfa02001-01-22 05:34:40 +000098 name = _PATH_SSH_CLIENT_ID_DSA;
Damien Millere39cacc2000-11-29 12:18:44 +110099 break;
100 case KEY_RSA:
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000101 name = _PATH_SSH_CLIENT_ID_RSA;
Damien Millere39cacc2000-11-29 12:18:44 +1100102 break;
103 default:
104 fprintf(stderr, "bad key type");
105 exit(1);
106 break;
107 }
108 snprintf(identity_file, sizeof(identity_file), "%s/%s", pw->pw_dir, name);
Ben Lindstrom3deda8b2000-12-22 20:27:43 +0000109 fprintf(stderr, "%s (%s): ", prompt, identity_file);
110 fflush(stderr);
Damien Miller95def091999-11-25 00:26:21 +1100111 if (fgets(buf, sizeof(buf), stdin) == NULL)
112 exit(1);
113 if (strchr(buf, '\n'))
114 *strchr(buf, '\n') = 0;
115 if (strcmp(buf, "") != 0)
116 strlcpy(identity_file, buf, sizeof(identity_file));
117 have_identity = 1;
Damien Miller10f6f6b1999-11-17 17:29:08 +1100118}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000119
Ben Lindstrombba81212001-06-25 05:01:22 +0000120static Key *
Ben Lindstromd78ae762001-06-05 20:35:09 +0000121load_identity(char *filename)
Damien Millereba71ba2000-04-29 23:57:08 +1000122{
Ben Lindstromd0fca422001-03-26 13:44:06 +0000123 char *pass;
124 Key *prv;
125
Ben Lindstroma3700052001-04-05 23:26:32 +0000126 prv = key_load_private(filename, "", NULL);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000127 if (prv == NULL) {
Ben Lindstromd78ae762001-06-05 20:35:09 +0000128 if (identity_passphrase)
129 pass = xstrdup(identity_passphrase);
130 else
Ben Lindstrom949974b2001-06-25 05:20:31 +0000131 pass = read_passphrase("Enter passphrase: ",
132 RP_ALLOW_STDIN);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000133 prv = key_load_private(filename, pass, NULL);
Damien Millereba71ba2000-04-29 23:57:08 +1000134 memset(pass, 0, strlen(pass));
135 xfree(pass);
136 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000137 return prv;
Damien Millereba71ba2000-04-29 23:57:08 +1000138}
139
Damien Miller874d77b2000-10-14 16:23:11 +1100140#define SSH_COM_PUBLIC_BEGIN "---- BEGIN SSH2 PUBLIC KEY ----"
141#define SSH_COM_PUBLIC_END "---- END SSH2 PUBLIC KEY ----"
142#define SSH_COM_PRIVATE_BEGIN "---- BEGIN SSH2 ENCRYPTED PRIVATE KEY ----"
Kevin Stevesef4eea92001-02-05 12:42:17 +0000143#define SSH_COM_PRIVATE_KEY_MAGIC 0x3f6ff9eb
Damien Millereba71ba2000-04-29 23:57:08 +1000144
Ben Lindstrombba81212001-06-25 05:01:22 +0000145static void
Damien Millereba71ba2000-04-29 23:57:08 +1000146do_convert_to_ssh2(struct passwd *pw)
147{
Ben Lindstrom46c264f2001-04-24 16:56:58 +0000148 Key *k;
Damien Millereba71ba2000-04-29 23:57:08 +1000149 int len;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000150 u_char *blob;
Damien Millereba71ba2000-04-29 23:57:08 +1000151 struct stat st;
152
153 if (!have_identity)
154 ask_filename(pw, "Enter file in which the key is");
155 if (stat(identity_file, &st) < 0) {
156 perror(identity_file);
157 exit(1);
158 }
Ben Lindstrom46c264f2001-04-24 16:56:58 +0000159 if ((k = key_load_public(identity_file, NULL)) == NULL) {
Ben Lindstromd78ae762001-06-05 20:35:09 +0000160 if ((k = load_identity(identity_file)) == NULL) {
Ben Lindstrom46c264f2001-04-24 16:56:58 +0000161 fprintf(stderr, "load failed\n");
162 exit(1);
163 }
Damien Millereba71ba2000-04-29 23:57:08 +1000164 }
Ben Lindstrom46c264f2001-04-24 16:56:58 +0000165 key_to_blob(k, &blob, &len);
Damien Miller874d77b2000-10-14 16:23:11 +1100166 fprintf(stdout, "%s\n", SSH_COM_PUBLIC_BEGIN);
Damien Millereba71ba2000-04-29 23:57:08 +1000167 fprintf(stdout,
Damien Miller874d77b2000-10-14 16:23:11 +1100168 "Comment: \"%d-bit %s, converted from OpenSSH by %s@%s\"\n",
Ben Lindstrom46c264f2001-04-24 16:56:58 +0000169 key_size(k), key_type(k),
Damien Millereba71ba2000-04-29 23:57:08 +1000170 pw->pw_name, hostname);
171 dump_base64(stdout, blob, len);
Damien Miller874d77b2000-10-14 16:23:11 +1100172 fprintf(stdout, "%s\n", SSH_COM_PUBLIC_END);
Ben Lindstrom46c264f2001-04-24 16:56:58 +0000173 key_free(k);
Damien Millereba71ba2000-04-29 23:57:08 +1000174 xfree(blob);
175 exit(0);
176}
177
Ben Lindstrombba81212001-06-25 05:01:22 +0000178static void
Damien Miller874d77b2000-10-14 16:23:11 +1100179buffer_get_bignum_bits(Buffer *b, BIGNUM *value)
180{
181 int bits = buffer_get_int(b);
182 int bytes = (bits + 7) / 8;
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000183
Damien Miller874d77b2000-10-14 16:23:11 +1100184 if (buffer_len(b) < bytes)
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000185 fatal("buffer_get_bignum_bits: input buffer too small: "
186 "need %d have %d", bytes, buffer_len(b));
Ben Lindstrom46c16222000-12-22 01:43:59 +0000187 BN_bin2bn((u_char *)buffer_ptr(b), bytes, value);
Damien Miller874d77b2000-10-14 16:23:11 +1100188 buffer_consume(b, bytes);
189}
190
Ben Lindstrombba81212001-06-25 05:01:22 +0000191static Key *
Damien Miller874d77b2000-10-14 16:23:11 +1100192do_convert_private_ssh2_from_blob(char *blob, int blen)
193{
194 Buffer b;
Damien Miller874d77b2000-10-14 16:23:11 +1100195 Key *key = NULL;
Damien Miller874d77b2000-10-14 16:23:11 +1100196 char *type, *cipher;
Ben Lindstrom511d69e2001-07-04 05:05:27 +0000197 u_char *sig, data[] = "abcde12345";
Ben Lindstrome586c4c2001-06-25 05:04:58 +0000198 int magic, rlen, ktype, i1, i2, i3, i4;
199 u_int slen;
200 u_long e;
Damien Miller874d77b2000-10-14 16:23:11 +1100201
202 buffer_init(&b);
203 buffer_append(&b, blob, blen);
204
205 magic = buffer_get_int(&b);
206 if (magic != SSH_COM_PRIVATE_KEY_MAGIC) {
207 error("bad magic 0x%x != 0x%x", magic, SSH_COM_PRIVATE_KEY_MAGIC);
208 buffer_free(&b);
209 return NULL;
210 }
Ben Lindstrom34f91882001-06-25 04:47:54 +0000211 i1 = buffer_get_int(&b);
Damien Miller874d77b2000-10-14 16:23:11 +1100212 type = buffer_get_string(&b, NULL);
213 cipher = buffer_get_string(&b, NULL);
Ben Lindstrom34f91882001-06-25 04:47:54 +0000214 i2 = buffer_get_int(&b);
215 i3 = buffer_get_int(&b);
216 i4 = buffer_get_int(&b);
217 debug("ignore (%d %d %d %d)", i1,i2,i3,i4);
Damien Miller874d77b2000-10-14 16:23:11 +1100218 if (strcmp(cipher, "none") != 0) {
219 error("unsupported cipher %s", cipher);
220 xfree(cipher);
221 buffer_free(&b);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000222 xfree(type);
Damien Miller874d77b2000-10-14 16:23:11 +1100223 return NULL;
224 }
225 xfree(cipher);
226
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000227 if (strstr(type, "dsa")) {
228 ktype = KEY_DSA;
229 } else if (strstr(type, "rsa")) {
230 ktype = KEY_RSA;
231 } else {
232 xfree(type);
Damien Miller874d77b2000-10-14 16:23:11 +1100233 return NULL;
234 }
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000235 key = key_new_private(ktype);
236 xfree(type);
237
238 switch (key->type) {
239 case KEY_DSA:
240 buffer_get_bignum_bits(&b, key->dsa->p);
241 buffer_get_bignum_bits(&b, key->dsa->g);
242 buffer_get_bignum_bits(&b, key->dsa->q);
243 buffer_get_bignum_bits(&b, key->dsa->pub_key);
244 buffer_get_bignum_bits(&b, key->dsa->priv_key);
245 break;
246 case KEY_RSA:
Ben Lindstrom34f91882001-06-25 04:47:54 +0000247 e = buffer_get_char(&b);
248 debug("e %lx", e);
249 if (e < 30) {
250 e <<= 8;
251 e += buffer_get_char(&b);
252 debug("e %lx", e);
253 e <<= 8;
254 e += buffer_get_char(&b);
255 debug("e %lx", e);
256 }
257 if (!BN_set_word(key->rsa->e, e)) {
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000258 buffer_free(&b);
259 key_free(key);
260 return NULL;
261 }
262 buffer_get_bignum_bits(&b, key->rsa->d);
263 buffer_get_bignum_bits(&b, key->rsa->n);
264 buffer_get_bignum_bits(&b, key->rsa->iqmp);
265 buffer_get_bignum_bits(&b, key->rsa->q);
266 buffer_get_bignum_bits(&b, key->rsa->p);
Ben Lindstromf7297dd2001-07-04 05:02:23 +0000267 rsa_generate_additional_parameters(key->rsa);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000268 break;
269 }
Damien Miller874d77b2000-10-14 16:23:11 +1100270 rlen = buffer_len(&b);
271 if(rlen != 0)
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000272 error("do_convert_private_ssh2_from_blob: "
273 "remaining bytes in key blob %d", rlen);
Damien Miller874d77b2000-10-14 16:23:11 +1100274 buffer_free(&b);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000275
Ben Lindstrome586c4c2001-06-25 05:04:58 +0000276 /* try the key */
277 key_sign(key, &sig, &slen, data, sizeof(data));
278 key_verify(key, sig, slen, data, sizeof(data));
279 xfree(sig);
Damien Miller874d77b2000-10-14 16:23:11 +1100280 return key;
281}
282
Ben Lindstrombba81212001-06-25 05:01:22 +0000283static void
Damien Millereba71ba2000-04-29 23:57:08 +1000284do_convert_from_ssh2(struct passwd *pw)
285{
286 Key *k;
287 int blen;
288 char line[1024], *p;
289 char blob[8096];
290 char encoded[8096];
291 struct stat st;
Damien Miller874d77b2000-10-14 16:23:11 +1100292 int escaped = 0, private = 0, ok;
Damien Millereba71ba2000-04-29 23:57:08 +1000293 FILE *fp;
294
295 if (!have_identity)
296 ask_filename(pw, "Enter file in which the key is");
297 if (stat(identity_file, &st) < 0) {
298 perror(identity_file);
299 exit(1);
300 }
301 fp = fopen(identity_file, "r");
302 if (fp == NULL) {
303 perror(identity_file);
304 exit(1);
305 }
306 encoded[0] = '\0';
307 while (fgets(line, sizeof(line), fp)) {
Damien Miller30c3d422000-05-09 11:02:59 +1000308 if (!(p = strchr(line, '\n'))) {
309 fprintf(stderr, "input line too long.\n");
310 exit(1);
311 }
312 if (p > line && p[-1] == '\\')
313 escaped++;
Damien Millereba71ba2000-04-29 23:57:08 +1000314 if (strncmp(line, "----", 4) == 0 ||
315 strstr(line, ": ") != NULL) {
Damien Miller874d77b2000-10-14 16:23:11 +1100316 if (strstr(line, SSH_COM_PRIVATE_BEGIN) != NULL)
317 private = 1;
Ben Lindstrome586c4c2001-06-25 05:04:58 +0000318 if (strstr(line, " END ") != NULL) {
319 break;
320 }
Ben Lindstrom30358602001-04-24 16:59:28 +0000321 /* fprintf(stderr, "ignore: %s", line); */
Damien Millereba71ba2000-04-29 23:57:08 +1000322 continue;
323 }
Damien Miller30c3d422000-05-09 11:02:59 +1000324 if (escaped) {
325 escaped--;
Ben Lindstrom30358602001-04-24 16:59:28 +0000326 /* fprintf(stderr, "escaped: %s", line); */
Damien Miller30c3d422000-05-09 11:02:59 +1000327 continue;
Damien Millereba71ba2000-04-29 23:57:08 +1000328 }
329 *p = '\0';
330 strlcat(encoded, line, sizeof(encoded));
331 }
Ben Lindstrom46c16222000-12-22 01:43:59 +0000332 blen = uudecode(encoded, (u_char *)blob, sizeof(blob));
Damien Millereba71ba2000-04-29 23:57:08 +1000333 if (blen < 0) {
334 fprintf(stderr, "uudecode failed.\n");
335 exit(1);
336 }
Damien Miller874d77b2000-10-14 16:23:11 +1100337 k = private ?
338 do_convert_private_ssh2_from_blob(blob, blen) :
Damien Miller0bc1bd82000-11-13 22:57:25 +1100339 key_from_blob(blob, blen);
Damien Miller874d77b2000-10-14 16:23:11 +1100340 if (k == NULL) {
341 fprintf(stderr, "decode blob failed.\n");
342 exit(1);
343 }
344 ok = private ?
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000345 (k->type == KEY_DSA ?
346 PEM_write_DSAPrivateKey(stdout, k->dsa, NULL, NULL, 0, NULL, NULL) :
347 PEM_write_RSAPrivateKey(stdout, k->rsa, NULL, NULL, 0, NULL, NULL)) :
Damien Miller874d77b2000-10-14 16:23:11 +1100348 key_write(k, stdout);
349 if (!ok) {
350 fprintf(stderr, "key write failed");
351 exit(1);
352 }
Damien Millereba71ba2000-04-29 23:57:08 +1000353 key_free(k);
354 fprintf(stdout, "\n");
355 fclose(fp);
356 exit(0);
357}
358
Ben Lindstrombba81212001-06-25 05:01:22 +0000359static void
Damien Millereba71ba2000-04-29 23:57:08 +1000360do_print_public(struct passwd *pw)
361{
Ben Lindstromd0fca422001-03-26 13:44:06 +0000362 Key *prv;
Damien Millereba71ba2000-04-29 23:57:08 +1000363 struct stat st;
364
365 if (!have_identity)
366 ask_filename(pw, "Enter file in which the key is");
367 if (stat(identity_file, &st) < 0) {
368 perror(identity_file);
369 exit(1);
370 }
Ben Lindstromd78ae762001-06-05 20:35:09 +0000371 prv = load_identity(identity_file);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000372 if (prv == NULL) {
Damien Millereba71ba2000-04-29 23:57:08 +1000373 fprintf(stderr, "load failed\n");
374 exit(1);
375 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000376 if (!key_write(prv, stdout))
Damien Millereba71ba2000-04-29 23:57:08 +1000377 fprintf(stderr, "key_write failed");
Ben Lindstromd0fca422001-03-26 13:44:06 +0000378 key_free(prv);
Damien Millereba71ba2000-04-29 23:57:08 +1000379 fprintf(stdout, "\n");
380 exit(0);
381}
382
Ben Lindstromcd392282001-07-04 03:44:03 +0000383#define NUM_RSA_KEY_ELEMENTS 5+1
384#define COPY_RSA_KEY(x, i) \
385 do { \
386 len = BN_num_bytes(prv->rsa->x); \
387 elements[i] = xmalloc(len); \
Ben Lindstrom7feba352001-07-04 05:06:59 +0000388 debug("#bytes %d", len); \
Ben Lindstromcd392282001-07-04 03:44:03 +0000389 if (BN_bn2bin(prv->rsa->x, elements[i]) < 0) \
390 goto done; \
391 } while(0)
392
393static void
394do_upload(struct passwd *pw, int reader)
395{
396#ifndef SMARTCARD
397 fatal("no support for smartcards.");
398#else
399 Key *prv = NULL;
400 struct stat st;
401 u_char *elements[NUM_RSA_KEY_ELEMENTS];
402 u_char key_fid[2];
403 u_char atr[256];
404 u_char AUT0[] = {0xad, 0x9f, 0x61, 0xfe, 0xfa, 0x20, 0xce, 0x63};
405 int len, status = 1, i, fd = -1, ret;
Ben Lindstrom7feba352001-07-04 05:06:59 +0000406 int r1 = 0, r2 = 0, cla = 0x00;
Ben Lindstromcd392282001-07-04 03:44:03 +0000407
408 if (!have_identity)
409 ask_filename(pw, "Enter file in which the key is");
410 if (stat(identity_file, &st) < 0) {
411 perror(identity_file);
412 goto done;
413 }
414 prv = load_identity(identity_file);
415 if (prv == NULL) {
416 error("load failed");
417 goto done;
418 }
Ben Lindstromcd392282001-07-04 03:44:03 +0000419 for (i = 0; i < NUM_RSA_KEY_ELEMENTS; i++)
420 elements[i] = NULL;
421 COPY_RSA_KEY(q, 0);
422 COPY_RSA_KEY(p, 1);
423 COPY_RSA_KEY(iqmp, 2);
424 COPY_RSA_KEY(dmq1, 3);
425 COPY_RSA_KEY(dmp1, 4);
426 COPY_RSA_KEY(n, 5);
427 len = BN_num_bytes(prv->rsa->n);
428 fd = scopen(reader, 0, NULL);
429 if (fd < 0) {
Ben Lindstrom7feba352001-07-04 05:06:59 +0000430 error("scopen failed");
Ben Lindstromcd392282001-07-04 03:44:03 +0000431 goto done;
432 }
433 ret = screset(fd, atr, NULL);
434 if (ret <= 0) {
Ben Lindstrom7feba352001-07-04 05:06:59 +0000435 error("screset failed");
Ben Lindstromcd392282001-07-04 03:44:03 +0000436 goto done;
437 }
Ben Lindstrom680b2762001-07-04 05:00:11 +0000438 if ((cla = cyberflex_inq_class(fd)) < 0) {
439 error("cyberflex_inq_class failed");
440 goto done;
441 }
Ben Lindstromcd392282001-07-04 03:44:03 +0000442 if (cyberflex_verify_AUT0(fd, cla, AUT0, sizeof(AUT0)) < 0) {
443 error("cyberflex_verify_AUT0 failed");
444 goto done;
445 }
446 key_fid[0] = 0x00;
447 key_fid[1] = 0x12;
Ben Lindstrom7feba352001-07-04 05:06:59 +0000448 if (cyberflex_load_rsa_priv(fd, cla, key_fid, 5, 8*len, elements,
449 &r1, &r2) < 0) {
450 error("cyberflex_load_rsa_priv failed: %s", get_r1r2s(r1, r1));
451 goto done;
452 }
453 if (r1 != 0x90 && r1 != 0x61)
Ben Lindstromcd392282001-07-04 03:44:03 +0000454 goto done;
455 log("cyberflex_load_rsa_priv done");
456 key_fid[0] = 0x73;
457 key_fid[1] = 0x68;
Ben Lindstrom7feba352001-07-04 05:06:59 +0000458 if (cyberflex_load_rsa_pub(fd, cla, key_fid, len, elements[5],
459 &r1, &r2) < 0) {
460 error("cyberflex_load_rsa_pub failed: %s", get_r1r2s(r1, r1));
461 goto done;
462 }
463 if (r1 != 0x90 && r1 != 0x61)
Ben Lindstromcd392282001-07-04 03:44:03 +0000464 goto done;
465 log("cyberflex_load_rsa_pub done");
466 status = 0;
467 log("loading key done");
468done:
469 if (prv)
470 key_free(prv);
471 for (i = 0; i < NUM_RSA_KEY_ELEMENTS; i++)
472 xfree(elements[i]);
473 if (fd != -1)
474 scclose(fd);
475 exit(status);
476#endif
477}
478
Ben Lindstrombba81212001-06-25 05:01:22 +0000479static void
Damien Miller10f6f6b1999-11-17 17:29:08 +1100480do_fingerprint(struct passwd *pw)
481{
Damien Miller98c7ad62000-03-09 21:27:49 +1100482 FILE *f;
Damien Millereba71ba2000-04-29 23:57:08 +1000483 Key *public;
Ben Lindstrom8fd372b2001-03-12 03:02:17 +0000484 char *comment = NULL, *cp, *ep, line[16*1024], *fp;
Ben Lindstromd0fca422001-03-26 13:44:06 +0000485 int i, skip = 0, num = 1, invalid = 1, rep, fptype;
Damien Miller95def091999-11-25 00:26:21 +1100486 struct stat st;
Damien Miller10f6f6b1999-11-17 17:29:08 +1100487
Ben Lindstromd0fca422001-03-26 13:44:06 +0000488 fptype = print_bubblebabble ? SSH_FP_SHA1 : SSH_FP_MD5;
489 rep = print_bubblebabble ? SSH_FP_BUBBLEBABBLE : SSH_FP_HEX;
Ben Lindstrom8fd372b2001-03-12 03:02:17 +0000490
Damien Miller95def091999-11-25 00:26:21 +1100491 if (!have_identity)
492 ask_filename(pw, "Enter file in which the key is");
493 if (stat(identity_file, &st) < 0) {
494 perror(identity_file);
495 exit(1);
496 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000497 public = key_load_public(identity_file, &comment);
498 if (public != NULL) {
499 fp = key_fingerprint(public, fptype, rep);
500 printf("%d %s %s\n", key_size(public), fp, comment);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100501 key_free(public);
502 xfree(comment);
Ben Lindstrom8fd372b2001-03-12 03:02:17 +0000503 xfree(fp);
Damien Miller98c7ad62000-03-09 21:27:49 +1100504 exit(0);
505 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000506 if (comment)
507 xfree(comment);
Damien Miller98c7ad62000-03-09 21:27:49 +1100508
509 f = fopen(identity_file, "r");
510 if (f != NULL) {
Damien Miller98c7ad62000-03-09 21:27:49 +1100511 while (fgets(line, sizeof(line), f)) {
512 i = strlen(line) - 1;
513 if (line[i] != '\n') {
514 error("line %d too long: %.40s...", num, line);
515 skip = 1;
516 continue;
Damien Miller95def091999-11-25 00:26:21 +1100517 }
Damien Miller98c7ad62000-03-09 21:27:49 +1100518 num++;
519 if (skip) {
520 skip = 0;
521 continue;
522 }
523 line[i] = '\0';
524
525 /* Skip leading whitespace, empty and comment lines. */
526 for (cp = line; *cp == ' ' || *cp == '\t'; cp++)
527 ;
528 if (!*cp || *cp == '\n' || *cp == '#')
529 continue ;
530 i = strtol(cp, &ep, 10);
531 if (i == 0 || ep == NULL || (*ep != ' ' && *ep != '\t')) {
532 int quoted = 0;
533 comment = cp;
534 for (; *cp && (quoted || (*cp != ' ' && *cp != '\t')); cp++) {
535 if (*cp == '\\' && cp[1] == '"')
536 cp++; /* Skip both */
537 else if (*cp == '"')
538 quoted = !quoted;
539 }
540 if (!*cp)
541 continue;
542 *cp++ = '\0';
543 }
544 ep = cp;
Ben Lindstrom2941f112000-12-29 16:50:13 +0000545 public = key_new(KEY_RSA1);
546 if (key_read(public, &cp) != 1) {
547 cp = ep;
548 key_free(public);
549 public = key_new(KEY_UNSPEC);
550 if (key_read(public, &cp) != 1) {
551 key_free(public);
552 continue;
553 }
Damien Miller98c7ad62000-03-09 21:27:49 +1100554 }
Ben Lindstrom2941f112000-12-29 16:50:13 +0000555 comment = *cp ? cp : comment;
Ben Lindstromd0fca422001-03-26 13:44:06 +0000556 fp = key_fingerprint(public, fptype, rep);
Ben Lindstrom8fd372b2001-03-12 03:02:17 +0000557 printf("%d %s %s\n", key_size(public), fp,
Ben Lindstrom2941f112000-12-29 16:50:13 +0000558 comment ? comment : "no comment");
Ben Lindstrom8fd372b2001-03-12 03:02:17 +0000559 xfree(fp);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000560 key_free(public);
Ben Lindstrom2941f112000-12-29 16:50:13 +0000561 invalid = 0;
Damien Miller95def091999-11-25 00:26:21 +1100562 }
Damien Miller98c7ad62000-03-09 21:27:49 +1100563 fclose(f);
Damien Miller95def091999-11-25 00:26:21 +1100564 }
Damien Miller98c7ad62000-03-09 21:27:49 +1100565 if (invalid) {
566 printf("%s is not a valid key file.\n", identity_file);
567 exit(1);
568 }
Damien Miller95def091999-11-25 00:26:21 +1100569 exit(0);
Damien Miller10f6f6b1999-11-17 17:29:08 +1100570}
571
Damien Miller95def091999-11-25 00:26:21 +1100572/*
573 * Perform changing a passphrase. The argument is the passwd structure
574 * for the current user.
575 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000576static void
Damien Miller10f6f6b1999-11-17 17:29:08 +1100577do_change_passphrase(struct passwd *pw)
578{
Damien Miller95def091999-11-25 00:26:21 +1100579 char *comment;
580 char *old_passphrase, *passphrase1, *passphrase2;
581 struct stat st;
Damien Millereba71ba2000-04-29 23:57:08 +1000582 Key *private;
Damien Miller10f6f6b1999-11-17 17:29:08 +1100583
Damien Miller95def091999-11-25 00:26:21 +1100584 if (!have_identity)
585 ask_filename(pw, "Enter file in which the key is");
Damien Miller95def091999-11-25 00:26:21 +1100586 if (stat(identity_file, &st) < 0) {
587 perror(identity_file);
588 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000589 }
Damien Miller95def091999-11-25 00:26:21 +1100590 /* Try to load the file with empty passphrase. */
Ben Lindstromd0fca422001-03-26 13:44:06 +0000591 private = key_load_private(identity_file, "", &comment);
592 if (private == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100593 if (identity_passphrase)
594 old_passphrase = xstrdup(identity_passphrase);
595 else
Ben Lindstrom949974b2001-06-25 05:20:31 +0000596 old_passphrase =
597 read_passphrase("Enter old passphrase: ",
598 RP_ALLOW_STDIN);
599 private = key_load_private(identity_file, old_passphrase,
600 &comment);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000601 memset(old_passphrase, 0, strlen(old_passphrase));
602 xfree(old_passphrase);
603 if (private == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100604 printf("Bad passphrase.\n");
605 exit(1);
606 }
Damien Miller95def091999-11-25 00:26:21 +1100607 }
608 printf("Key has comment '%s'\n", comment);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000609
Damien Miller95def091999-11-25 00:26:21 +1100610 /* Ask the new passphrase (twice). */
611 if (identity_new_passphrase) {
612 passphrase1 = xstrdup(identity_new_passphrase);
613 passphrase2 = NULL;
614 } else {
615 passphrase1 =
Ben Lindstrom949974b2001-06-25 05:20:31 +0000616 read_passphrase("Enter new passphrase (empty for no "
617 "passphrase): ", RP_ALLOW_STDIN);
618 passphrase2 = read_passphrase("Enter same passphrase again: ",
619 RP_ALLOW_STDIN);
Damien Miller95def091999-11-25 00:26:21 +1100620
621 /* Verify that they are the same. */
622 if (strcmp(passphrase1, passphrase2) != 0) {
623 memset(passphrase1, 0, strlen(passphrase1));
624 memset(passphrase2, 0, strlen(passphrase2));
625 xfree(passphrase1);
626 xfree(passphrase2);
627 printf("Pass phrases do not match. Try again.\n");
628 exit(1);
629 }
630 /* Destroy the other copy. */
631 memset(passphrase2, 0, strlen(passphrase2));
632 xfree(passphrase2);
633 }
634
635 /* Save the file using the new passphrase. */
Ben Lindstromd0fca422001-03-26 13:44:06 +0000636 if (!key_save_private(private, identity_file, passphrase1, comment)) {
Ben Lindstrom15f33862001-04-16 02:00:02 +0000637 printf("Saving the key failed: %s.\n", identity_file);
Damien Miller95def091999-11-25 00:26:21 +1100638 memset(passphrase1, 0, strlen(passphrase1));
639 xfree(passphrase1);
Damien Millereba71ba2000-04-29 23:57:08 +1000640 key_free(private);
Damien Miller95def091999-11-25 00:26:21 +1100641 xfree(comment);
642 exit(1);
643 }
644 /* Destroy the passphrase and the copy of the key in memory. */
645 memset(passphrase1, 0, strlen(passphrase1));
646 xfree(passphrase1);
Damien Millereba71ba2000-04-29 23:57:08 +1000647 key_free(private); /* Destroys contents */
Damien Miller95def091999-11-25 00:26:21 +1100648 xfree(comment);
649
650 printf("Your identification has been saved with the new passphrase.\n");
651 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000652}
653
Damien Miller95def091999-11-25 00:26:21 +1100654/*
655 * Change the comment of a private key file.
656 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000657static void
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000658do_change_comment(struct passwd *pw)
659{
Ben Lindstrom5fc62702001-03-09 18:19:24 +0000660 char new_comment[1024], *comment, *passphrase;
Ben Lindstromd0fca422001-03-26 13:44:06 +0000661 Key *private;
662 Key *public;
Damien Miller95def091999-11-25 00:26:21 +1100663 struct stat st;
664 FILE *f;
Ben Lindstrom5fc62702001-03-09 18:19:24 +0000665 int fd;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000666
Damien Miller95def091999-11-25 00:26:21 +1100667 if (!have_identity)
668 ask_filename(pw, "Enter file in which the key is");
Damien Miller95def091999-11-25 00:26:21 +1100669 if (stat(identity_file, &st) < 0) {
670 perror(identity_file);
671 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000672 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000673 private = key_load_private(identity_file, "", &comment);
674 if (private == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100675 if (identity_passphrase)
676 passphrase = xstrdup(identity_passphrase);
677 else if (identity_new_passphrase)
678 passphrase = xstrdup(identity_new_passphrase);
679 else
Ben Lindstrom949974b2001-06-25 05:20:31 +0000680 passphrase = read_passphrase("Enter passphrase: ",
681 RP_ALLOW_STDIN);
Damien Miller95def091999-11-25 00:26:21 +1100682 /* Try to load using the passphrase. */
Ben Lindstromd0fca422001-03-26 13:44:06 +0000683 private = key_load_private(identity_file, passphrase, &comment);
684 if (private == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100685 memset(passphrase, 0, strlen(passphrase));
686 xfree(passphrase);
687 printf("Bad passphrase.\n");
688 exit(1);
689 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000690 } else {
691 passphrase = xstrdup("");
Damien Miller95def091999-11-25 00:26:21 +1100692 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000693 if (private->type != KEY_RSA1) {
694 fprintf(stderr, "Comments are only supported for RSA1 keys.\n");
695 key_free(private);
696 exit(1);
697 }
Damien Miller95def091999-11-25 00:26:21 +1100698 printf("Key now has comment '%s'\n", comment);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000699
Damien Miller95def091999-11-25 00:26:21 +1100700 if (identity_comment) {
701 strlcpy(new_comment, identity_comment, sizeof(new_comment));
702 } else {
703 printf("Enter new comment: ");
704 fflush(stdout);
705 if (!fgets(new_comment, sizeof(new_comment), stdin)) {
706 memset(passphrase, 0, strlen(passphrase));
Damien Millereba71ba2000-04-29 23:57:08 +1000707 key_free(private);
Damien Miller95def091999-11-25 00:26:21 +1100708 exit(1);
709 }
Damien Miller95def091999-11-25 00:26:21 +1100710 if (strchr(new_comment, '\n'))
711 *strchr(new_comment, '\n') = 0;
712 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000713
Damien Miller95def091999-11-25 00:26:21 +1100714 /* Save the file using the new passphrase. */
Ben Lindstromd0fca422001-03-26 13:44:06 +0000715 if (!key_save_private(private, identity_file, passphrase, new_comment)) {
Ben Lindstrom15f33862001-04-16 02:00:02 +0000716 printf("Saving the key failed: %s.\n", identity_file);
Damien Miller95def091999-11-25 00:26:21 +1100717 memset(passphrase, 0, strlen(passphrase));
718 xfree(passphrase);
Damien Millereba71ba2000-04-29 23:57:08 +1000719 key_free(private);
Damien Miller95def091999-11-25 00:26:21 +1100720 xfree(comment);
721 exit(1);
722 }
Damien Miller95def091999-11-25 00:26:21 +1100723 memset(passphrase, 0, strlen(passphrase));
724 xfree(passphrase);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000725 public = key_from_private(private);
Damien Millereba71ba2000-04-29 23:57:08 +1000726 key_free(private);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000727
Damien Miller95def091999-11-25 00:26:21 +1100728 strlcat(identity_file, ".pub", sizeof(identity_file));
Ben Lindstrom5fc62702001-03-09 18:19:24 +0000729 fd = open(identity_file, O_WRONLY | O_CREAT | O_TRUNC, 0644);
730 if (fd == -1) {
Damien Miller95def091999-11-25 00:26:21 +1100731 printf("Could not save your public key in %s\n", identity_file);
732 exit(1);
733 }
Ben Lindstrom5fc62702001-03-09 18:19:24 +0000734 f = fdopen(fd, "w");
735 if (f == NULL) {
736 printf("fdopen %s failed", identity_file);
737 exit(1);
738 }
Damien Millereba71ba2000-04-29 23:57:08 +1000739 if (!key_write(public, f))
740 fprintf(stderr, "write key failed");
741 key_free(public);
742 fprintf(f, " %s\n", new_comment);
Damien Miller95def091999-11-25 00:26:21 +1100743 fclose(f);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000744
Damien Miller95def091999-11-25 00:26:21 +1100745 xfree(comment);
746
747 printf("The comment in your key file has been changed.\n");
748 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000749}
750
Ben Lindstrombba81212001-06-25 05:01:22 +0000751static void
Damien Miller431f66b1999-11-21 18:31:57 +1100752usage(void)
753{
Ben Lindstrom2857d9c2001-04-22 17:19:46 +0000754 printf("Usage: %s [-ceilpqyB] [-t type] [-b bits] [-f file] [-C comment] "
Ben Lindstromb7c92322001-03-05 05:10:52 +0000755 "[-N new-pass] [-P pass]\n", __progname);
Damien Miller95def091999-11-25 00:26:21 +1100756 exit(1);
Damien Miller431f66b1999-11-21 18:31:57 +1100757}
758
Damien Miller95def091999-11-25 00:26:21 +1100759/*
760 * Main program for key management.
761 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000762int
763main(int ac, char **av)
764{
Damien Miller95def091999-11-25 00:26:21 +1100765 char dotsshdir[16 * 1024], comment[1024], *passphrase1, *passphrase2;
Ben Lindstrom5fc62702001-03-09 18:19:24 +0000766 Key *private, *public;
Damien Miller95def091999-11-25 00:26:21 +1100767 struct passwd *pw;
Ben Lindstromcd392282001-07-04 03:44:03 +0000768 int opt, type, fd, reader = -1;
Damien Miller95def091999-11-25 00:26:21 +1100769 struct stat st;
770 FILE *f;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100771
Damien Miller95def091999-11-25 00:26:21 +1100772 extern int optind;
773 extern char *optarg;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000774
Ben Lindstrom49a79c02000-11-17 03:47:20 +0000775 __progname = get_progname(av[0]);
Damien Millerf9b625c2000-07-09 22:42:32 +1000776 init_rng();
Damien Miller60bc5172001-03-19 09:38:15 +1100777 seed_rng();
Damien Millerf9b625c2000-07-09 22:42:32 +1000778
Damien Millerd3a18572000-06-07 19:55:44 +1000779 SSLeay_add_all_algorithms();
Damien Millereba71ba2000-04-29 23:57:08 +1000780
Damien Miller5428f641999-11-25 11:54:57 +1100781 /* we need this for the home * directory. */
Damien Miller95def091999-11-25 00:26:21 +1100782 pw = getpwuid(getuid());
783 if (!pw) {
784 printf("You don't exist, go away!\n");
785 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000786 }
Damien Millereba71ba2000-04-29 23:57:08 +1000787 if (gethostname(hostname, sizeof(hostname)) < 0) {
788 perror("gethostname");
789 exit(1);
790 }
Damien Miller5428f641999-11-25 11:54:57 +1100791
Ben Lindstromcd392282001-07-04 03:44:03 +0000792 while ((opt = getopt(ac, av, "deiqpclBRxXyb:f:t:u:P:N:C:")) != -1) {
Damien Miller95def091999-11-25 00:26:21 +1100793 switch (opt) {
794 case 'b':
795 bits = atoi(optarg);
796 if (bits < 512 || bits > 32768) {
797 printf("Bits has bad value.\n");
798 exit(1);
799 }
800 break;
Damien Miller95def091999-11-25 00:26:21 +1100801 case 'l':
802 print_fingerprint = 1;
803 break;
Ben Lindstrom8fd372b2001-03-12 03:02:17 +0000804 case 'B':
805 print_bubblebabble = 1;
806 break;
Damien Miller95def091999-11-25 00:26:21 +1100807 case 'p':
808 change_passphrase = 1;
809 break;
Damien Miller95def091999-11-25 00:26:21 +1100810 case 'c':
811 change_comment = 1;
812 break;
Damien Miller95def091999-11-25 00:26:21 +1100813 case 'f':
814 strlcpy(identity_file, optarg, sizeof(identity_file));
815 have_identity = 1;
816 break;
Damien Miller95def091999-11-25 00:26:21 +1100817 case 'P':
818 identity_passphrase = optarg;
819 break;
Damien Miller95def091999-11-25 00:26:21 +1100820 case 'N':
821 identity_new_passphrase = optarg;
822 break;
Damien Miller95def091999-11-25 00:26:21 +1100823 case 'C':
824 identity_comment = optarg;
825 break;
Damien Miller95def091999-11-25 00:26:21 +1100826 case 'q':
827 quiet = 1;
828 break;
Damien Millereba71ba2000-04-29 23:57:08 +1000829 case 'R':
Damien Miller0bc1bd82000-11-13 22:57:25 +1100830 /* unused */
831 exit(0);
Damien Millereba71ba2000-04-29 23:57:08 +1000832 break;
Ben Lindstrom5a707822001-04-22 17:15:46 +0000833 case 'e':
Damien Millereba71ba2000-04-29 23:57:08 +1000834 case 'x':
Ben Lindstrom5a707822001-04-22 17:15:46 +0000835 /* export key */
Damien Millereba71ba2000-04-29 23:57:08 +1000836 convert_to_ssh2 = 1;
837 break;
Ben Lindstrom5a707822001-04-22 17:15:46 +0000838 case 'i':
Damien Millereba71ba2000-04-29 23:57:08 +1000839 case 'X':
Ben Lindstrom5a707822001-04-22 17:15:46 +0000840 /* import key */
Damien Millereba71ba2000-04-29 23:57:08 +1000841 convert_from_ssh2 = 1;
842 break;
Damien Millereba71ba2000-04-29 23:57:08 +1000843 case 'y':
844 print_public = 1;
845 break;
Damien Millereba71ba2000-04-29 23:57:08 +1000846 case 'd':
Damien Miller0bc1bd82000-11-13 22:57:25 +1100847 key_type_name = "dsa";
Damien Millereba71ba2000-04-29 23:57:08 +1000848 break;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100849 case 't':
850 key_type_name = optarg;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100851 break;
Ben Lindstromcd392282001-07-04 03:44:03 +0000852 case 'u':
853 reader = atoi(optarg); /*XXX*/
854 break;
Damien Miller95def091999-11-25 00:26:21 +1100855 case '?':
856 default:
857 usage();
858 }
859 }
860 if (optind < ac) {
861 printf("Too many arguments.\n");
862 usage();
863 }
864 if (change_passphrase && change_comment) {
865 printf("Can only have one of -p and -c.\n");
866 usage();
867 }
Ben Lindstrom8fd372b2001-03-12 03:02:17 +0000868 if (print_fingerprint || print_bubblebabble)
Damien Miller95def091999-11-25 00:26:21 +1100869 do_fingerprint(pw);
Damien Miller95def091999-11-25 00:26:21 +1100870 if (change_passphrase)
871 do_change_passphrase(pw);
Damien Miller95def091999-11-25 00:26:21 +1100872 if (change_comment)
873 do_change_comment(pw);
Damien Millereba71ba2000-04-29 23:57:08 +1000874 if (convert_to_ssh2)
875 do_convert_to_ssh2(pw);
876 if (convert_from_ssh2)
877 do_convert_from_ssh2(pw);
878 if (print_public)
879 do_print_public(pw);
Ben Lindstromcd392282001-07-04 03:44:03 +0000880 if (reader != -1)
881 do_upload(pw, reader);
Damien Miller95def091999-11-25 00:26:21 +1100882
883 arc4random_stir();
884
Damien Millere39cacc2000-11-29 12:18:44 +1100885 type = key_type_from_name(key_type_name);
886 if (type == KEY_UNSPEC) {
887 fprintf(stderr, "unknown key type %s\n", key_type_name);
888 exit(1);
Damien Millereba71ba2000-04-29 23:57:08 +1000889 }
Damien Miller0bc1bd82000-11-13 22:57:25 +1100890 if (!quiet)
Damien Millere39cacc2000-11-29 12:18:44 +1100891 printf("Generating public/private %s key pair.\n", key_type_name);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100892 private = key_generate(type, bits);
893 if (private == NULL) {
894 fprintf(stderr, "key_generate failed");
895 exit(1);
896 }
897 public = key_from_private(private);
Damien Miller95def091999-11-25 00:26:21 +1100898
899 if (!have_identity)
900 ask_filename(pw, "Enter file in which to save the key");
901
902 /* Create ~/.ssh directory if it doesn\'t already exist. */
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000903 snprintf(dotsshdir, sizeof dotsshdir, "%s/%s", pw->pw_dir, _PATH_SSH_USER_DIR);
Damien Miller95def091999-11-25 00:26:21 +1100904 if (strstr(identity_file, dotsshdir) != NULL &&
905 stat(dotsshdir, &st) < 0) {
Damien Millerbe484b52000-07-15 14:14:16 +1000906 if (mkdir(dotsshdir, 0700) < 0)
Damien Miller95def091999-11-25 00:26:21 +1100907 error("Could not create directory '%s'.", dotsshdir);
908 else if (!quiet)
909 printf("Created directory '%s'.\n", dotsshdir);
910 }
911 /* If the file already exists, ask the user to confirm. */
912 if (stat(identity_file, &st) >= 0) {
913 char yesno[3];
914 printf("%s already exists.\n", identity_file);
915 printf("Overwrite (y/n)? ");
916 fflush(stdout);
917 if (fgets(yesno, sizeof(yesno), stdin) == NULL)
918 exit(1);
919 if (yesno[0] != 'y' && yesno[0] != 'Y')
920 exit(1);
921 }
922 /* Ask for a passphrase (twice). */
923 if (identity_passphrase)
924 passphrase1 = xstrdup(identity_passphrase);
925 else if (identity_new_passphrase)
926 passphrase1 = xstrdup(identity_new_passphrase);
927 else {
928passphrase_again:
929 passphrase1 =
Ben Lindstrom949974b2001-06-25 05:20:31 +0000930 read_passphrase("Enter passphrase (empty for no "
931 "passphrase): ", RP_ALLOW_STDIN);
932 passphrase2 = read_passphrase("Enter same passphrase again: ",
933 RP_ALLOW_STDIN);
Damien Miller95def091999-11-25 00:26:21 +1100934 if (strcmp(passphrase1, passphrase2) != 0) {
Ben Lindstrom949974b2001-06-25 05:20:31 +0000935 /*
936 * The passphrases do not match. Clear them and
937 * retry.
938 */
Damien Miller95def091999-11-25 00:26:21 +1100939 memset(passphrase1, 0, strlen(passphrase1));
940 memset(passphrase2, 0, strlen(passphrase2));
941 xfree(passphrase1);
942 xfree(passphrase2);
943 printf("Passphrases do not match. Try again.\n");
944 goto passphrase_again;
945 }
946 /* Clear the other copy of the passphrase. */
947 memset(passphrase2, 0, strlen(passphrase2));
948 xfree(passphrase2);
949 }
950
Damien Miller95def091999-11-25 00:26:21 +1100951 if (identity_comment) {
952 strlcpy(comment, identity_comment, sizeof(comment));
953 } else {
Damien Miller4af51302000-04-16 11:18:38 +1000954 /* Create default commend field for the passphrase. */
Damien Miller95def091999-11-25 00:26:21 +1100955 snprintf(comment, sizeof comment, "%s@%s", pw->pw_name, hostname);
956 }
957
958 /* Save the key with the given passphrase and comment. */
Ben Lindstromd0fca422001-03-26 13:44:06 +0000959 if (!key_save_private(private, identity_file, passphrase1, comment)) {
Ben Lindstrom15f33862001-04-16 02:00:02 +0000960 printf("Saving the key failed: %s.\n", identity_file);
Damien Miller95def091999-11-25 00:26:21 +1100961 memset(passphrase1, 0, strlen(passphrase1));
962 xfree(passphrase1);
963 exit(1);
964 }
965 /* Clear the passphrase. */
966 memset(passphrase1, 0, strlen(passphrase1));
967 xfree(passphrase1);
968
969 /* Clear the private key and the random number generator. */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100970 key_free(private);
Damien Miller95def091999-11-25 00:26:21 +1100971 arc4random_stir();
972
973 if (!quiet)
974 printf("Your identification has been saved in %s.\n", identity_file);
975
Damien Miller95def091999-11-25 00:26:21 +1100976 strlcat(identity_file, ".pub", sizeof(identity_file));
Ben Lindstrom5fc62702001-03-09 18:19:24 +0000977 fd = open(identity_file, O_WRONLY | O_CREAT | O_TRUNC, 0644);
978 if (fd == -1) {
Damien Miller95def091999-11-25 00:26:21 +1100979 printf("Could not save your public key in %s\n", identity_file);
980 exit(1);
981 }
Ben Lindstrom5fc62702001-03-09 18:19:24 +0000982 f = fdopen(fd, "w");
983 if (f == NULL) {
984 printf("fdopen %s failed", identity_file);
985 exit(1);
986 }
Damien Millereba71ba2000-04-29 23:57:08 +1000987 if (!key_write(public, f))
988 fprintf(stderr, "write key failed");
989 fprintf(f, " %s\n", comment);
Damien Miller95def091999-11-25 00:26:21 +1100990 fclose(f);
991
992 if (!quiet) {
Ben Lindstromcfccef92001-03-13 04:57:58 +0000993 char *fp = key_fingerprint(public, SSH_FP_MD5, SSH_FP_HEX);
Damien Millereba71ba2000-04-29 23:57:08 +1000994 printf("Your public key has been saved in %s.\n",
995 identity_file);
Damien Miller95def091999-11-25 00:26:21 +1100996 printf("The key fingerprint is:\n");
Ben Lindstromcfccef92001-03-13 04:57:58 +0000997 printf("%s %s\n", fp, comment);
998 xfree(fp);
Damien Miller95def091999-11-25 00:26:21 +1100999 }
Damien Millereba71ba2000-04-29 23:57:08 +10001000
1001 key_free(public);
Damien Miller95def091999-11-25 00:26:21 +11001002 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001003}