blob: 8b0b4d8dda2a1e4903162bc3d4387561bd7dee15 [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 Lindstrom00477642001-07-04 05:24:27 +000015RCSID("$OpenBSD: ssh-keygen.c,v 1.72 2001/07/02 22:40:18 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];
Ben Lindstrom00477642001-07-04 05:24:27 +0000403 u_char atr[256];
Ben Lindstromcd392282001-07-04 03:44:03 +0000404 u_char AUT0[] = {0xad, 0x9f, 0x61, 0xfe, 0xfa, 0x20, 0xce, 0x63};
405 int len, status = 1, i, fd = -1, ret;
Ben Lindstrom00477642001-07-04 05:24:27 +0000406 int sw = 0, cla = 0x00;
Ben Lindstromcd392282001-07-04 03:44:03 +0000407
Ben Lindstromd6e049c2001-07-04 05:08:39 +0000408 for (i = 0; i < NUM_RSA_KEY_ELEMENTS; i++)
409 elements[i] = NULL;
Ben Lindstromcd392282001-07-04 03:44:03 +0000410 if (!have_identity)
411 ask_filename(pw, "Enter file in which the key is");
412 if (stat(identity_file, &st) < 0) {
413 perror(identity_file);
414 goto done;
415 }
416 prv = load_identity(identity_file);
417 if (prv == NULL) {
418 error("load failed");
419 goto done;
420 }
Ben Lindstromcd392282001-07-04 03:44:03 +0000421 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);
Ben Lindstrom00477642001-07-04 05:24:27 +0000428 fd = sectok_open(reader, 0, NULL);
429 if (fd < 0) {
430 error("sectok_open failed");
Ben Lindstromcd392282001-07-04 03:44:03 +0000431 goto done;
Ben Lindstrom00477642001-07-04 05:24:27 +0000432 }
433 ret = sectok_reset(fd, 0, atr, &sw);
434 if (ret <= 0) {
435 error("sectok_reset failed");
Ben Lindstromcd392282001-07-04 03:44:03 +0000436 goto done;
Ben Lindstrom00477642001-07-04 05:24:27 +0000437 }
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,
Ben Lindstrom00477642001-07-04 05:24:27 +0000449 &sw) < 0) {
450 error("cyberflex_load_rsa_priv failed: %s", sectok_get_sw(sw));
Ben Lindstrom7feba352001-07-04 05:06:59 +0000451 goto done;
452 }
Ben Lindstrom00477642001-07-04 05:24:27 +0000453 if (!sectok_swOK(sw))
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],
Ben Lindstrom00477642001-07-04 05:24:27 +0000459 &sw) < 0) {
460 error("cyberflex_load_rsa_pub failed: %s", sectok_get_sw(sw));
Ben Lindstrom7feba352001-07-04 05:06:59 +0000461 goto done;
462 }
Ben Lindstrom00477642001-07-04 05:24:27 +0000463 if (!sectok_swOK(sw))
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++)
Ben Lindstrom00477642001-07-04 05:24:27 +0000472 if (elements[i])
473 xfree(elements[i]);
Ben Lindstromcd392282001-07-04 03:44:03 +0000474 if (fd != -1)
Ben Lindstrom00477642001-07-04 05:24:27 +0000475 sectok_close(fd);
Ben Lindstromcd392282001-07-04 03:44:03 +0000476 exit(status);
477#endif
478}
479
Ben Lindstrombba81212001-06-25 05:01:22 +0000480static void
Damien Miller10f6f6b1999-11-17 17:29:08 +1100481do_fingerprint(struct passwd *pw)
482{
Damien Miller98c7ad62000-03-09 21:27:49 +1100483 FILE *f;
Damien Millereba71ba2000-04-29 23:57:08 +1000484 Key *public;
Ben Lindstrom8fd372b2001-03-12 03:02:17 +0000485 char *comment = NULL, *cp, *ep, line[16*1024], *fp;
Ben Lindstromd0fca422001-03-26 13:44:06 +0000486 int i, skip = 0, num = 1, invalid = 1, rep, fptype;
Damien Miller95def091999-11-25 00:26:21 +1100487 struct stat st;
Damien Miller10f6f6b1999-11-17 17:29:08 +1100488
Ben Lindstromd0fca422001-03-26 13:44:06 +0000489 fptype = print_bubblebabble ? SSH_FP_SHA1 : SSH_FP_MD5;
490 rep = print_bubblebabble ? SSH_FP_BUBBLEBABBLE : SSH_FP_HEX;
Ben Lindstrom8fd372b2001-03-12 03:02:17 +0000491
Damien Miller95def091999-11-25 00:26:21 +1100492 if (!have_identity)
493 ask_filename(pw, "Enter file in which the key is");
494 if (stat(identity_file, &st) < 0) {
495 perror(identity_file);
496 exit(1);
497 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000498 public = key_load_public(identity_file, &comment);
499 if (public != NULL) {
500 fp = key_fingerprint(public, fptype, rep);
501 printf("%d %s %s\n", key_size(public), fp, comment);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100502 key_free(public);
503 xfree(comment);
Ben Lindstrom8fd372b2001-03-12 03:02:17 +0000504 xfree(fp);
Damien Miller98c7ad62000-03-09 21:27:49 +1100505 exit(0);
506 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000507 if (comment)
508 xfree(comment);
Damien Miller98c7ad62000-03-09 21:27:49 +1100509
510 f = fopen(identity_file, "r");
511 if (f != NULL) {
Damien Miller98c7ad62000-03-09 21:27:49 +1100512 while (fgets(line, sizeof(line), f)) {
513 i = strlen(line) - 1;
514 if (line[i] != '\n') {
515 error("line %d too long: %.40s...", num, line);
516 skip = 1;
517 continue;
Damien Miller95def091999-11-25 00:26:21 +1100518 }
Damien Miller98c7ad62000-03-09 21:27:49 +1100519 num++;
520 if (skip) {
521 skip = 0;
522 continue;
523 }
524 line[i] = '\0';
525
526 /* Skip leading whitespace, empty and comment lines. */
527 for (cp = line; *cp == ' ' || *cp == '\t'; cp++)
528 ;
529 if (!*cp || *cp == '\n' || *cp == '#')
530 continue ;
531 i = strtol(cp, &ep, 10);
532 if (i == 0 || ep == NULL || (*ep != ' ' && *ep != '\t')) {
533 int quoted = 0;
534 comment = cp;
535 for (; *cp && (quoted || (*cp != ' ' && *cp != '\t')); cp++) {
536 if (*cp == '\\' && cp[1] == '"')
537 cp++; /* Skip both */
538 else if (*cp == '"')
539 quoted = !quoted;
540 }
541 if (!*cp)
542 continue;
543 *cp++ = '\0';
544 }
545 ep = cp;
Ben Lindstrom2941f112000-12-29 16:50:13 +0000546 public = key_new(KEY_RSA1);
547 if (key_read(public, &cp) != 1) {
548 cp = ep;
549 key_free(public);
550 public = key_new(KEY_UNSPEC);
551 if (key_read(public, &cp) != 1) {
552 key_free(public);
553 continue;
554 }
Damien Miller98c7ad62000-03-09 21:27:49 +1100555 }
Ben Lindstrom2941f112000-12-29 16:50:13 +0000556 comment = *cp ? cp : comment;
Ben Lindstromd0fca422001-03-26 13:44:06 +0000557 fp = key_fingerprint(public, fptype, rep);
Ben Lindstrom8fd372b2001-03-12 03:02:17 +0000558 printf("%d %s %s\n", key_size(public), fp,
Ben Lindstrom2941f112000-12-29 16:50:13 +0000559 comment ? comment : "no comment");
Ben Lindstrom8fd372b2001-03-12 03:02:17 +0000560 xfree(fp);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000561 key_free(public);
Ben Lindstrom2941f112000-12-29 16:50:13 +0000562 invalid = 0;
Damien Miller95def091999-11-25 00:26:21 +1100563 }
Damien Miller98c7ad62000-03-09 21:27:49 +1100564 fclose(f);
Damien Miller95def091999-11-25 00:26:21 +1100565 }
Damien Miller98c7ad62000-03-09 21:27:49 +1100566 if (invalid) {
567 printf("%s is not a valid key file.\n", identity_file);
568 exit(1);
569 }
Damien Miller95def091999-11-25 00:26:21 +1100570 exit(0);
Damien Miller10f6f6b1999-11-17 17:29:08 +1100571}
572
Damien Miller95def091999-11-25 00:26:21 +1100573/*
574 * Perform changing a passphrase. The argument is the passwd structure
575 * for the current user.
576 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000577static void
Damien Miller10f6f6b1999-11-17 17:29:08 +1100578do_change_passphrase(struct passwd *pw)
579{
Damien Miller95def091999-11-25 00:26:21 +1100580 char *comment;
581 char *old_passphrase, *passphrase1, *passphrase2;
582 struct stat st;
Damien Millereba71ba2000-04-29 23:57:08 +1000583 Key *private;
Damien Miller10f6f6b1999-11-17 17:29:08 +1100584
Damien Miller95def091999-11-25 00:26:21 +1100585 if (!have_identity)
586 ask_filename(pw, "Enter file in which the key is");
Damien Miller95def091999-11-25 00:26:21 +1100587 if (stat(identity_file, &st) < 0) {
588 perror(identity_file);
589 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000590 }
Damien Miller95def091999-11-25 00:26:21 +1100591 /* Try to load the file with empty passphrase. */
Ben Lindstromd0fca422001-03-26 13:44:06 +0000592 private = key_load_private(identity_file, "", &comment);
593 if (private == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100594 if (identity_passphrase)
595 old_passphrase = xstrdup(identity_passphrase);
596 else
Ben Lindstrom949974b2001-06-25 05:20:31 +0000597 old_passphrase =
598 read_passphrase("Enter old passphrase: ",
599 RP_ALLOW_STDIN);
600 private = key_load_private(identity_file, old_passphrase,
601 &comment);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000602 memset(old_passphrase, 0, strlen(old_passphrase));
603 xfree(old_passphrase);
604 if (private == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100605 printf("Bad passphrase.\n");
606 exit(1);
607 }
Damien Miller95def091999-11-25 00:26:21 +1100608 }
609 printf("Key has comment '%s'\n", comment);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000610
Damien Miller95def091999-11-25 00:26:21 +1100611 /* Ask the new passphrase (twice). */
612 if (identity_new_passphrase) {
613 passphrase1 = xstrdup(identity_new_passphrase);
614 passphrase2 = NULL;
615 } else {
616 passphrase1 =
Ben Lindstrom949974b2001-06-25 05:20:31 +0000617 read_passphrase("Enter new passphrase (empty for no "
618 "passphrase): ", RP_ALLOW_STDIN);
619 passphrase2 = read_passphrase("Enter same passphrase again: ",
620 RP_ALLOW_STDIN);
Damien Miller95def091999-11-25 00:26:21 +1100621
622 /* Verify that they are the same. */
623 if (strcmp(passphrase1, passphrase2) != 0) {
624 memset(passphrase1, 0, strlen(passphrase1));
625 memset(passphrase2, 0, strlen(passphrase2));
626 xfree(passphrase1);
627 xfree(passphrase2);
628 printf("Pass phrases do not match. Try again.\n");
629 exit(1);
630 }
631 /* Destroy the other copy. */
632 memset(passphrase2, 0, strlen(passphrase2));
633 xfree(passphrase2);
634 }
635
636 /* Save the file using the new passphrase. */
Ben Lindstromd0fca422001-03-26 13:44:06 +0000637 if (!key_save_private(private, identity_file, passphrase1, comment)) {
Ben Lindstrom15f33862001-04-16 02:00:02 +0000638 printf("Saving the key failed: %s.\n", identity_file);
Damien Miller95def091999-11-25 00:26:21 +1100639 memset(passphrase1, 0, strlen(passphrase1));
640 xfree(passphrase1);
Damien Millereba71ba2000-04-29 23:57:08 +1000641 key_free(private);
Damien Miller95def091999-11-25 00:26:21 +1100642 xfree(comment);
643 exit(1);
644 }
645 /* Destroy the passphrase and the copy of the key in memory. */
646 memset(passphrase1, 0, strlen(passphrase1));
647 xfree(passphrase1);
Damien Millereba71ba2000-04-29 23:57:08 +1000648 key_free(private); /* Destroys contents */
Damien Miller95def091999-11-25 00:26:21 +1100649 xfree(comment);
650
651 printf("Your identification has been saved with the new passphrase.\n");
652 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000653}
654
Damien Miller95def091999-11-25 00:26:21 +1100655/*
656 * Change the comment of a private key file.
657 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000658static void
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000659do_change_comment(struct passwd *pw)
660{
Ben Lindstrom5fc62702001-03-09 18:19:24 +0000661 char new_comment[1024], *comment, *passphrase;
Ben Lindstromd0fca422001-03-26 13:44:06 +0000662 Key *private;
663 Key *public;
Damien Miller95def091999-11-25 00:26:21 +1100664 struct stat st;
665 FILE *f;
Ben Lindstrom5fc62702001-03-09 18:19:24 +0000666 int fd;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000667
Damien Miller95def091999-11-25 00:26:21 +1100668 if (!have_identity)
669 ask_filename(pw, "Enter file in which the key is");
Damien Miller95def091999-11-25 00:26:21 +1100670 if (stat(identity_file, &st) < 0) {
671 perror(identity_file);
672 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000673 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000674 private = key_load_private(identity_file, "", &comment);
675 if (private == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100676 if (identity_passphrase)
677 passphrase = xstrdup(identity_passphrase);
678 else if (identity_new_passphrase)
679 passphrase = xstrdup(identity_new_passphrase);
680 else
Ben Lindstrom949974b2001-06-25 05:20:31 +0000681 passphrase = read_passphrase("Enter passphrase: ",
682 RP_ALLOW_STDIN);
Damien Miller95def091999-11-25 00:26:21 +1100683 /* Try to load using the passphrase. */
Ben Lindstromd0fca422001-03-26 13:44:06 +0000684 private = key_load_private(identity_file, passphrase, &comment);
685 if (private == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100686 memset(passphrase, 0, strlen(passphrase));
687 xfree(passphrase);
688 printf("Bad passphrase.\n");
689 exit(1);
690 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000691 } else {
692 passphrase = xstrdup("");
Damien Miller95def091999-11-25 00:26:21 +1100693 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000694 if (private->type != KEY_RSA1) {
695 fprintf(stderr, "Comments are only supported for RSA1 keys.\n");
696 key_free(private);
697 exit(1);
698 }
Damien Miller95def091999-11-25 00:26:21 +1100699 printf("Key now has comment '%s'\n", comment);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000700
Damien Miller95def091999-11-25 00:26:21 +1100701 if (identity_comment) {
702 strlcpy(new_comment, identity_comment, sizeof(new_comment));
703 } else {
704 printf("Enter new comment: ");
705 fflush(stdout);
706 if (!fgets(new_comment, sizeof(new_comment), stdin)) {
707 memset(passphrase, 0, strlen(passphrase));
Damien Millereba71ba2000-04-29 23:57:08 +1000708 key_free(private);
Damien Miller95def091999-11-25 00:26:21 +1100709 exit(1);
710 }
Damien Miller95def091999-11-25 00:26:21 +1100711 if (strchr(new_comment, '\n'))
712 *strchr(new_comment, '\n') = 0;
713 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000714
Damien Miller95def091999-11-25 00:26:21 +1100715 /* Save the file using the new passphrase. */
Ben Lindstromd0fca422001-03-26 13:44:06 +0000716 if (!key_save_private(private, identity_file, passphrase, new_comment)) {
Ben Lindstrom15f33862001-04-16 02:00:02 +0000717 printf("Saving the key failed: %s.\n", identity_file);
Damien Miller95def091999-11-25 00:26:21 +1100718 memset(passphrase, 0, strlen(passphrase));
719 xfree(passphrase);
Damien Millereba71ba2000-04-29 23:57:08 +1000720 key_free(private);
Damien Miller95def091999-11-25 00:26:21 +1100721 xfree(comment);
722 exit(1);
723 }
Damien Miller95def091999-11-25 00:26:21 +1100724 memset(passphrase, 0, strlen(passphrase));
725 xfree(passphrase);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000726 public = key_from_private(private);
Damien Millereba71ba2000-04-29 23:57:08 +1000727 key_free(private);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000728
Damien Miller95def091999-11-25 00:26:21 +1100729 strlcat(identity_file, ".pub", sizeof(identity_file));
Ben Lindstrom5fc62702001-03-09 18:19:24 +0000730 fd = open(identity_file, O_WRONLY | O_CREAT | O_TRUNC, 0644);
731 if (fd == -1) {
Damien Miller95def091999-11-25 00:26:21 +1100732 printf("Could not save your public key in %s\n", identity_file);
733 exit(1);
734 }
Ben Lindstrom5fc62702001-03-09 18:19:24 +0000735 f = fdopen(fd, "w");
736 if (f == NULL) {
737 printf("fdopen %s failed", identity_file);
738 exit(1);
739 }
Damien Millereba71ba2000-04-29 23:57:08 +1000740 if (!key_write(public, f))
741 fprintf(stderr, "write key failed");
742 key_free(public);
743 fprintf(f, " %s\n", new_comment);
Damien Miller95def091999-11-25 00:26:21 +1100744 fclose(f);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000745
Damien Miller95def091999-11-25 00:26:21 +1100746 xfree(comment);
747
748 printf("The comment in your key file has been changed.\n");
749 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000750}
751
Ben Lindstrombba81212001-06-25 05:01:22 +0000752static void
Damien Miller431f66b1999-11-21 18:31:57 +1100753usage(void)
754{
Ben Lindstrom2857d9c2001-04-22 17:19:46 +0000755 printf("Usage: %s [-ceilpqyB] [-t type] [-b bits] [-f file] [-C comment] "
Ben Lindstromb7c92322001-03-05 05:10:52 +0000756 "[-N new-pass] [-P pass]\n", __progname);
Damien Miller95def091999-11-25 00:26:21 +1100757 exit(1);
Damien Miller431f66b1999-11-21 18:31:57 +1100758}
759
Damien Miller95def091999-11-25 00:26:21 +1100760/*
761 * Main program for key management.
762 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000763int
764main(int ac, char **av)
765{
Damien Miller95def091999-11-25 00:26:21 +1100766 char dotsshdir[16 * 1024], comment[1024], *passphrase1, *passphrase2;
Ben Lindstrom5fc62702001-03-09 18:19:24 +0000767 Key *private, *public;
Damien Miller95def091999-11-25 00:26:21 +1100768 struct passwd *pw;
Ben Lindstromcd392282001-07-04 03:44:03 +0000769 int opt, type, fd, reader = -1;
Damien Miller95def091999-11-25 00:26:21 +1100770 struct stat st;
771 FILE *f;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100772
Damien Miller95def091999-11-25 00:26:21 +1100773 extern int optind;
774 extern char *optarg;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000775
Ben Lindstrom49a79c02000-11-17 03:47:20 +0000776 __progname = get_progname(av[0]);
Damien Millerf9b625c2000-07-09 22:42:32 +1000777 init_rng();
Damien Miller60bc5172001-03-19 09:38:15 +1100778 seed_rng();
Damien Millerf9b625c2000-07-09 22:42:32 +1000779
Damien Millerd3a18572000-06-07 19:55:44 +1000780 SSLeay_add_all_algorithms();
Damien Millereba71ba2000-04-29 23:57:08 +1000781
Damien Miller5428f641999-11-25 11:54:57 +1100782 /* we need this for the home * directory. */
Damien Miller95def091999-11-25 00:26:21 +1100783 pw = getpwuid(getuid());
784 if (!pw) {
785 printf("You don't exist, go away!\n");
786 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000787 }
Damien Millereba71ba2000-04-29 23:57:08 +1000788 if (gethostname(hostname, sizeof(hostname)) < 0) {
789 perror("gethostname");
790 exit(1);
791 }
Damien Miller5428f641999-11-25 11:54:57 +1100792
Ben Lindstromcd392282001-07-04 03:44:03 +0000793 while ((opt = getopt(ac, av, "deiqpclBRxXyb:f:t:u:P:N:C:")) != -1) {
Damien Miller95def091999-11-25 00:26:21 +1100794 switch (opt) {
795 case 'b':
796 bits = atoi(optarg);
797 if (bits < 512 || bits > 32768) {
798 printf("Bits has bad value.\n");
799 exit(1);
800 }
801 break;
Damien Miller95def091999-11-25 00:26:21 +1100802 case 'l':
803 print_fingerprint = 1;
804 break;
Ben Lindstrom8fd372b2001-03-12 03:02:17 +0000805 case 'B':
806 print_bubblebabble = 1;
807 break;
Damien Miller95def091999-11-25 00:26:21 +1100808 case 'p':
809 change_passphrase = 1;
810 break;
Damien Miller95def091999-11-25 00:26:21 +1100811 case 'c':
812 change_comment = 1;
813 break;
Damien Miller95def091999-11-25 00:26:21 +1100814 case 'f':
815 strlcpy(identity_file, optarg, sizeof(identity_file));
816 have_identity = 1;
817 break;
Damien Miller95def091999-11-25 00:26:21 +1100818 case 'P':
819 identity_passphrase = optarg;
820 break;
Damien Miller95def091999-11-25 00:26:21 +1100821 case 'N':
822 identity_new_passphrase = optarg;
823 break;
Damien Miller95def091999-11-25 00:26:21 +1100824 case 'C':
825 identity_comment = optarg;
826 break;
Damien Miller95def091999-11-25 00:26:21 +1100827 case 'q':
828 quiet = 1;
829 break;
Damien Millereba71ba2000-04-29 23:57:08 +1000830 case 'R':
Damien Miller0bc1bd82000-11-13 22:57:25 +1100831 /* unused */
832 exit(0);
Damien Millereba71ba2000-04-29 23:57:08 +1000833 break;
Ben Lindstrom5a707822001-04-22 17:15:46 +0000834 case 'e':
Damien Millereba71ba2000-04-29 23:57:08 +1000835 case 'x':
Ben Lindstrom5a707822001-04-22 17:15:46 +0000836 /* export key */
Damien Millereba71ba2000-04-29 23:57:08 +1000837 convert_to_ssh2 = 1;
838 break;
Ben Lindstrom5a707822001-04-22 17:15:46 +0000839 case 'i':
Damien Millereba71ba2000-04-29 23:57:08 +1000840 case 'X':
Ben Lindstrom5a707822001-04-22 17:15:46 +0000841 /* import key */
Damien Millereba71ba2000-04-29 23:57:08 +1000842 convert_from_ssh2 = 1;
843 break;
Damien Millereba71ba2000-04-29 23:57:08 +1000844 case 'y':
845 print_public = 1;
846 break;
Damien Millereba71ba2000-04-29 23:57:08 +1000847 case 'd':
Damien Miller0bc1bd82000-11-13 22:57:25 +1100848 key_type_name = "dsa";
Damien Millereba71ba2000-04-29 23:57:08 +1000849 break;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100850 case 't':
851 key_type_name = optarg;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100852 break;
Ben Lindstromcd392282001-07-04 03:44:03 +0000853 case 'u':
854 reader = atoi(optarg); /*XXX*/
855 break;
Damien Miller95def091999-11-25 00:26:21 +1100856 case '?':
857 default:
858 usage();
859 }
860 }
861 if (optind < ac) {
862 printf("Too many arguments.\n");
863 usage();
864 }
865 if (change_passphrase && change_comment) {
866 printf("Can only have one of -p and -c.\n");
867 usage();
868 }
Ben Lindstrom8fd372b2001-03-12 03:02:17 +0000869 if (print_fingerprint || print_bubblebabble)
Damien Miller95def091999-11-25 00:26:21 +1100870 do_fingerprint(pw);
Damien Miller95def091999-11-25 00:26:21 +1100871 if (change_passphrase)
872 do_change_passphrase(pw);
Damien Miller95def091999-11-25 00:26:21 +1100873 if (change_comment)
874 do_change_comment(pw);
Damien Millereba71ba2000-04-29 23:57:08 +1000875 if (convert_to_ssh2)
876 do_convert_to_ssh2(pw);
877 if (convert_from_ssh2)
878 do_convert_from_ssh2(pw);
879 if (print_public)
880 do_print_public(pw);
Ben Lindstromcd392282001-07-04 03:44:03 +0000881 if (reader != -1)
882 do_upload(pw, reader);
Damien Miller95def091999-11-25 00:26:21 +1100883
884 arc4random_stir();
885
Damien Millere39cacc2000-11-29 12:18:44 +1100886 type = key_type_from_name(key_type_name);
887 if (type == KEY_UNSPEC) {
888 fprintf(stderr, "unknown key type %s\n", key_type_name);
889 exit(1);
Damien Millereba71ba2000-04-29 23:57:08 +1000890 }
Damien Miller0bc1bd82000-11-13 22:57:25 +1100891 if (!quiet)
Damien Millere39cacc2000-11-29 12:18:44 +1100892 printf("Generating public/private %s key pair.\n", key_type_name);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100893 private = key_generate(type, bits);
894 if (private == NULL) {
895 fprintf(stderr, "key_generate failed");
896 exit(1);
897 }
898 public = key_from_private(private);
Damien Miller95def091999-11-25 00:26:21 +1100899
900 if (!have_identity)
901 ask_filename(pw, "Enter file in which to save the key");
902
903 /* Create ~/.ssh directory if it doesn\'t already exist. */
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000904 snprintf(dotsshdir, sizeof dotsshdir, "%s/%s", pw->pw_dir, _PATH_SSH_USER_DIR);
Damien Miller95def091999-11-25 00:26:21 +1100905 if (strstr(identity_file, dotsshdir) != NULL &&
906 stat(dotsshdir, &st) < 0) {
Damien Millerbe484b52000-07-15 14:14:16 +1000907 if (mkdir(dotsshdir, 0700) < 0)
Damien Miller95def091999-11-25 00:26:21 +1100908 error("Could not create directory '%s'.", dotsshdir);
909 else if (!quiet)
910 printf("Created directory '%s'.\n", dotsshdir);
911 }
912 /* If the file already exists, ask the user to confirm. */
913 if (stat(identity_file, &st) >= 0) {
914 char yesno[3];
915 printf("%s already exists.\n", identity_file);
916 printf("Overwrite (y/n)? ");
917 fflush(stdout);
918 if (fgets(yesno, sizeof(yesno), stdin) == NULL)
919 exit(1);
920 if (yesno[0] != 'y' && yesno[0] != 'Y')
921 exit(1);
922 }
923 /* Ask for a passphrase (twice). */
924 if (identity_passphrase)
925 passphrase1 = xstrdup(identity_passphrase);
926 else if (identity_new_passphrase)
927 passphrase1 = xstrdup(identity_new_passphrase);
928 else {
929passphrase_again:
930 passphrase1 =
Ben Lindstrom949974b2001-06-25 05:20:31 +0000931 read_passphrase("Enter passphrase (empty for no "
932 "passphrase): ", RP_ALLOW_STDIN);
933 passphrase2 = read_passphrase("Enter same passphrase again: ",
934 RP_ALLOW_STDIN);
Damien Miller95def091999-11-25 00:26:21 +1100935 if (strcmp(passphrase1, passphrase2) != 0) {
Ben Lindstrom949974b2001-06-25 05:20:31 +0000936 /*
937 * The passphrases do not match. Clear them and
938 * retry.
939 */
Damien Miller95def091999-11-25 00:26:21 +1100940 memset(passphrase1, 0, strlen(passphrase1));
941 memset(passphrase2, 0, strlen(passphrase2));
942 xfree(passphrase1);
943 xfree(passphrase2);
944 printf("Passphrases do not match. Try again.\n");
945 goto passphrase_again;
946 }
947 /* Clear the other copy of the passphrase. */
948 memset(passphrase2, 0, strlen(passphrase2));
949 xfree(passphrase2);
950 }
951
Damien Miller95def091999-11-25 00:26:21 +1100952 if (identity_comment) {
953 strlcpy(comment, identity_comment, sizeof(comment));
954 } else {
Damien Miller4af51302000-04-16 11:18:38 +1000955 /* Create default commend field for the passphrase. */
Damien Miller95def091999-11-25 00:26:21 +1100956 snprintf(comment, sizeof comment, "%s@%s", pw->pw_name, hostname);
957 }
958
959 /* Save the key with the given passphrase and comment. */
Ben Lindstromd0fca422001-03-26 13:44:06 +0000960 if (!key_save_private(private, identity_file, passphrase1, comment)) {
Ben Lindstrom15f33862001-04-16 02:00:02 +0000961 printf("Saving the key failed: %s.\n", identity_file);
Damien Miller95def091999-11-25 00:26:21 +1100962 memset(passphrase1, 0, strlen(passphrase1));
963 xfree(passphrase1);
964 exit(1);
965 }
966 /* Clear the passphrase. */
967 memset(passphrase1, 0, strlen(passphrase1));
968 xfree(passphrase1);
969
970 /* Clear the private key and the random number generator. */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100971 key_free(private);
Damien Miller95def091999-11-25 00:26:21 +1100972 arc4random_stir();
973
974 if (!quiet)
975 printf("Your identification has been saved in %s.\n", identity_file);
976
Damien Miller95def091999-11-25 00:26:21 +1100977 strlcat(identity_file, ".pub", sizeof(identity_file));
Ben Lindstrom5fc62702001-03-09 18:19:24 +0000978 fd = open(identity_file, O_WRONLY | O_CREAT | O_TRUNC, 0644);
979 if (fd == -1) {
Damien Miller95def091999-11-25 00:26:21 +1100980 printf("Could not save your public key in %s\n", identity_file);
981 exit(1);
982 }
Ben Lindstrom5fc62702001-03-09 18:19:24 +0000983 f = fdopen(fd, "w");
984 if (f == NULL) {
985 printf("fdopen %s failed", identity_file);
986 exit(1);
987 }
Damien Millereba71ba2000-04-29 23:57:08 +1000988 if (!key_write(public, f))
989 fprintf(stderr, "write key failed");
990 fprintf(f, " %s\n", comment);
Damien Miller95def091999-11-25 00:26:21 +1100991 fclose(f);
992
993 if (!quiet) {
Ben Lindstromcfccef92001-03-13 04:57:58 +0000994 char *fp = key_fingerprint(public, SSH_FP_MD5, SSH_FP_HEX);
Damien Millereba71ba2000-04-29 23:57:08 +1000995 printf("Your public key has been saved in %s.\n",
996 identity_file);
Damien Miller95def091999-11-25 00:26:21 +1100997 printf("The key fingerprint is:\n");
Ben Lindstromcfccef92001-03-13 04:57:58 +0000998 printf("%s %s\n", fp, comment);
999 xfree(fp);
Damien Miller95def091999-11-25 00:26:21 +11001000 }
Damien Millereba71ba2000-04-29 23:57:08 +10001001
1002 key_free(public);
Damien Miller95def091999-11-25 00:26:21 +11001003 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001004}