blob: e06ae1a5249ef830954603e1784a8afcc557faa8 [file] [log] [blame]
Damien Miller40b59852006-06-13 13:00:25 +10001/* $OpenBSD: ssh-keygen.c,v 1.144 2006/05/17 12:43:34 markus Exp $ */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002/*
Damien Miller95def091999-11-25 00:26:21 +11003 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1994 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5 * All rights reserved
Damien Miller95def091999-11-25 00:26:21 +11006 * Identity and host key generation and maintenance.
Damien Millere4340be2000-09-16 13:29:08 +11007 *
8 * As far as I am concerned, the code I have written for this software
9 * can be used freely for any purpose. Any derived versions of this
10 * software must be clearly marked as such, and if the derived work is
11 * incompatible with the protocol description in the RFC file, it must be
12 * called by a name other than "ssh" or "Secure Shell".
Damien Miller95def091999-11-25 00:26:21 +110013 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100014
15#include "includes.h"
Damien Millerf17883e2006-03-15 11:45:54 +110016
17#include <sys/types.h>
18#include <sys/stat.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100019
Damien Millereba71ba2000-04-29 23:57:08 +100020#include <openssl/evp.h>
21#include <openssl/pem.h>
Damien Millereba71ba2000-04-29 23:57:08 +100022
Damien Millerd4a8b7e1999-10-27 13:42:43 +100023#include "xmalloc.h"
Damien Millereba71ba2000-04-29 23:57:08 +100024#include "key.h"
Ben Lindstromd09fcf52001-03-29 00:29:54 +000025#include "rsa.h"
Damien Millereba71ba2000-04-29 23:57:08 +100026#include "authfile.h"
27#include "uuencode.h"
Damien Miller874d77b2000-10-14 16:23:11 +110028#include "buffer.h"
29#include "bufaux.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000030#include "pathnames.h"
31#include "log.h"
Darren Tuckere608ca22004-05-13 16:15:47 +100032#include "misc.h"
Damien Miller4b42d7f2005-03-01 21:48:35 +110033#include "match.h"
34#include "hostfile.h"
Damien Miller874d77b2000-10-14 16:23:11 +110035
Ben Lindstrom8282d6a2001-08-06 21:44:05 +000036#ifdef SMARTCARD
Ben Lindstrom8282d6a2001-08-06 21:44:05 +000037#include "scard.h"
Ben Lindstrombcc18082001-08-06 21:59:25 +000038#endif
Damien Millered12a262003-05-15 13:37:43 +100039#include "dns.h"
Ben Lindstromcd392282001-07-04 03:44:03 +000040
Damien Miller3f54a9f2005-11-05 14:52:18 +110041/* Number of bits in the RSA/DSA key. This value can be set on the command line. */
42#define DEFAULT_BITS 2048
43#define DEFAULT_BITS_DSA 1024
44u_int32_t bits = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100045
Damien Miller5428f641999-11-25 11:54:57 +110046/*
47 * Flag indicating that we just want to change the passphrase. This can be
48 * set on the command line.
49 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100050int change_passphrase = 0;
51
Damien Miller5428f641999-11-25 11:54:57 +110052/*
53 * Flag indicating that we just want to change the comment. This can be set
54 * on the command line.
55 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100056int change_comment = 0;
57
58int quiet = 0;
59
Damien Miller4b42d7f2005-03-01 21:48:35 +110060/* Flag indicating that we want to hash a known_hosts file */
61int hash_hosts = 0;
62/* Flag indicating that we want lookup a host in known_hosts file */
63int find_host = 0;
64/* Flag indicating that we want to delete a host from a known_hosts file */
65int delete_host = 0;
66
Damien Miller10f6f6b1999-11-17 17:29:08 +110067/* Flag indicating that we just want to see the key fingerprint */
68int print_fingerprint = 0;
Ben Lindstrom8fd372b2001-03-12 03:02:17 +000069int print_bubblebabble = 0;
Damien Miller10f6f6b1999-11-17 17:29:08 +110070
Damien Miller431f66b1999-11-21 18:31:57 +110071/* The identity file name, given on the command line or entered by the user. */
72char identity_file[1024];
73int have_identity = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100074
75/* This is set to the passphrase if given on the command line. */
76char *identity_passphrase = NULL;
77
78/* This is set to the new passphrase if given on the command line. */
79char *identity_new_passphrase = NULL;
80
81/* This is set to the new comment if given on the command line. */
82char *identity_comment = NULL;
83
Damien Millereba71ba2000-04-29 23:57:08 +100084/* Dump public key file in format used by real and the original SSH 2 */
85int convert_to_ssh2 = 0;
86int convert_from_ssh2 = 0;
87int print_public = 0;
Damien Miller37876e92003-05-15 10:19:46 +100088int print_generic = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +110089
Damien Millera41c8b12002-01-22 23:05:08 +110090char *key_type_name = NULL;
Damien Millereba71ba2000-04-29 23:57:08 +100091
Damien Miller431f66b1999-11-21 18:31:57 +110092/* argv0 */
93extern char *__progname;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100094
Damien Millereba71ba2000-04-29 23:57:08 +100095char hostname[MAXHOSTNAMELEN];
96
Darren Tucker770fc012004-05-13 16:24:32 +100097/* moduli.c */
Damien Millerb089fb52005-05-26 12:16:18 +100098int gen_candidates(FILE *, u_int32_t, u_int32_t, BIGNUM *);
Darren Tucker770fc012004-05-13 16:24:32 +100099int prime_test(FILE *, FILE *, u_int32_t, u_int32_t);
100
Ben Lindstrombba81212001-06-25 05:01:22 +0000101static void
Damien Miller431f66b1999-11-21 18:31:57 +1100102ask_filename(struct passwd *pw, const char *prompt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000103{
Damien Miller95def091999-11-25 00:26:21 +1100104 char buf[1024];
Damien Millere39cacc2000-11-29 12:18:44 +1100105 char *name = NULL;
106
Damien Miller993dd552002-02-19 15:22:47 +1100107 if (key_type_name == NULL)
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000108 name = _PATH_SSH_CLIENT_ID_RSA;
Damien Miller90967402006-03-26 14:07:26 +1100109 else {
Damien Miller993dd552002-02-19 15:22:47 +1100110 switch (key_type_from_name(key_type_name)) {
111 case KEY_RSA1:
112 name = _PATH_SSH_CLIENT_IDENTITY;
113 break;
114 case KEY_DSA:
115 name = _PATH_SSH_CLIENT_ID_DSA;
116 break;
117 case KEY_RSA:
118 name = _PATH_SSH_CLIENT_ID_RSA;
119 break;
120 default:
121 fprintf(stderr, "bad key type");
122 exit(1);
123 break;
124 }
Damien Miller90967402006-03-26 14:07:26 +1100125 }
Damien Millere39cacc2000-11-29 12:18:44 +1100126 snprintf(identity_file, sizeof(identity_file), "%s/%s", pw->pw_dir, name);
Ben Lindstrom3deda8b2000-12-22 20:27:43 +0000127 fprintf(stderr, "%s (%s): ", prompt, identity_file);
Damien Miller95def091999-11-25 00:26:21 +1100128 if (fgets(buf, sizeof(buf), stdin) == NULL)
129 exit(1);
130 if (strchr(buf, '\n'))
131 *strchr(buf, '\n') = 0;
132 if (strcmp(buf, "") != 0)
133 strlcpy(identity_file, buf, sizeof(identity_file));
134 have_identity = 1;
Damien Miller10f6f6b1999-11-17 17:29:08 +1100135}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000136
Ben Lindstrombba81212001-06-25 05:01:22 +0000137static Key *
Ben Lindstromd78ae762001-06-05 20:35:09 +0000138load_identity(char *filename)
Damien Millereba71ba2000-04-29 23:57:08 +1000139{
Ben Lindstromd0fca422001-03-26 13:44:06 +0000140 char *pass;
141 Key *prv;
142
Ben Lindstroma3700052001-04-05 23:26:32 +0000143 prv = key_load_private(filename, "", NULL);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000144 if (prv == NULL) {
Ben Lindstromd78ae762001-06-05 20:35:09 +0000145 if (identity_passphrase)
146 pass = xstrdup(identity_passphrase);
147 else
Ben Lindstrom949974b2001-06-25 05:20:31 +0000148 pass = read_passphrase("Enter passphrase: ",
149 RP_ALLOW_STDIN);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000150 prv = key_load_private(filename, pass, NULL);
Damien Millereba71ba2000-04-29 23:57:08 +1000151 memset(pass, 0, strlen(pass));
152 xfree(pass);
153 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000154 return prv;
Damien Millereba71ba2000-04-29 23:57:08 +1000155}
156
Damien Miller874d77b2000-10-14 16:23:11 +1100157#define SSH_COM_PUBLIC_BEGIN "---- BEGIN SSH2 PUBLIC KEY ----"
Ben Lindstromcb72e4f2002-06-21 00:41:51 +0000158#define SSH_COM_PUBLIC_END "---- END SSH2 PUBLIC KEY ----"
Damien Miller874d77b2000-10-14 16:23:11 +1100159#define SSH_COM_PRIVATE_BEGIN "---- BEGIN SSH2 ENCRYPTED PRIVATE KEY ----"
Kevin Stevesef4eea92001-02-05 12:42:17 +0000160#define SSH_COM_PRIVATE_KEY_MAGIC 0x3f6ff9eb
Damien Millereba71ba2000-04-29 23:57:08 +1000161
Ben Lindstrombba81212001-06-25 05:01:22 +0000162static void
Damien Millereba71ba2000-04-29 23:57:08 +1000163do_convert_to_ssh2(struct passwd *pw)
164{
Ben Lindstrom46c264f2001-04-24 16:56:58 +0000165 Key *k;
Ben Lindstromc58ab022002-02-26 18:15:09 +0000166 u_int len;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000167 u_char *blob;
Damien Millereba71ba2000-04-29 23:57:08 +1000168 struct stat st;
169
170 if (!have_identity)
171 ask_filename(pw, "Enter file in which the key is");
172 if (stat(identity_file, &st) < 0) {
173 perror(identity_file);
174 exit(1);
175 }
Ben Lindstrom46c264f2001-04-24 16:56:58 +0000176 if ((k = key_load_public(identity_file, NULL)) == NULL) {
Ben Lindstromd78ae762001-06-05 20:35:09 +0000177 if ((k = load_identity(identity_file)) == NULL) {
Ben Lindstrom46c264f2001-04-24 16:56:58 +0000178 fprintf(stderr, "load failed\n");
179 exit(1);
180 }
Damien Millereba71ba2000-04-29 23:57:08 +1000181 }
Damien Millerdb274722003-05-14 13:45:22 +1000182 if (k->type == KEY_RSA1) {
183 fprintf(stderr, "version 1 keys are not supported\n");
184 exit(1);
185 }
Ben Lindstrom99a30f12001-09-18 05:49:14 +0000186 if (key_to_blob(k, &blob, &len) <= 0) {
187 fprintf(stderr, "key_to_blob failed\n");
188 exit(1);
189 }
Damien Miller874d77b2000-10-14 16:23:11 +1100190 fprintf(stdout, "%s\n", SSH_COM_PUBLIC_BEGIN);
Damien Millereba71ba2000-04-29 23:57:08 +1000191 fprintf(stdout,
Ben Lindstrom58d3b722002-06-23 21:28:13 +0000192 "Comment: \"%u-bit %s, converted from OpenSSH by %s@%s\"\n",
Ben Lindstrom46c264f2001-04-24 16:56:58 +0000193 key_size(k), key_type(k),
Damien Millereba71ba2000-04-29 23:57:08 +1000194 pw->pw_name, hostname);
195 dump_base64(stdout, blob, len);
Damien Miller874d77b2000-10-14 16:23:11 +1100196 fprintf(stdout, "%s\n", SSH_COM_PUBLIC_END);
Ben Lindstrom46c264f2001-04-24 16:56:58 +0000197 key_free(k);
Damien Millereba71ba2000-04-29 23:57:08 +1000198 xfree(blob);
199 exit(0);
200}
201
Ben Lindstrombba81212001-06-25 05:01:22 +0000202static void
Damien Miller874d77b2000-10-14 16:23:11 +1100203buffer_get_bignum_bits(Buffer *b, BIGNUM *value)
204{
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000205 u_int bignum_bits = buffer_get_int(b);
206 u_int bytes = (bignum_bits + 7) / 8;
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000207
Damien Miller874d77b2000-10-14 16:23:11 +1100208 if (buffer_len(b) < bytes)
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000209 fatal("buffer_get_bignum_bits: input buffer too small: "
210 "need %d have %d", bytes, buffer_len(b));
Damien Miller708d21c2002-01-22 23:18:15 +1100211 BN_bin2bn(buffer_ptr(b), bytes, value);
Damien Miller874d77b2000-10-14 16:23:11 +1100212 buffer_consume(b, bytes);
213}
214
Ben Lindstrombba81212001-06-25 05:01:22 +0000215static Key *
Ben Lindstrom90fd8142002-02-26 18:09:42 +0000216do_convert_private_ssh2_from_blob(u_char *blob, u_int blen)
Damien Miller874d77b2000-10-14 16:23:11 +1100217{
218 Buffer b;
Damien Miller874d77b2000-10-14 16:23:11 +1100219 Key *key = NULL;
Damien Miller874d77b2000-10-14 16:23:11 +1100220 char *type, *cipher;
Ben Lindstrom511d69e2001-07-04 05:05:27 +0000221 u_char *sig, data[] = "abcde12345";
Ben Lindstrome586c4c2001-06-25 05:04:58 +0000222 int magic, rlen, ktype, i1, i2, i3, i4;
223 u_int slen;
224 u_long e;
Damien Miller874d77b2000-10-14 16:23:11 +1100225
226 buffer_init(&b);
227 buffer_append(&b, blob, blen);
228
229 magic = buffer_get_int(&b);
230 if (magic != SSH_COM_PRIVATE_KEY_MAGIC) {
231 error("bad magic 0x%x != 0x%x", magic, SSH_COM_PRIVATE_KEY_MAGIC);
232 buffer_free(&b);
233 return NULL;
234 }
Ben Lindstrom34f91882001-06-25 04:47:54 +0000235 i1 = buffer_get_int(&b);
Damien Miller874d77b2000-10-14 16:23:11 +1100236 type = buffer_get_string(&b, NULL);
237 cipher = buffer_get_string(&b, NULL);
Ben Lindstrom34f91882001-06-25 04:47:54 +0000238 i2 = buffer_get_int(&b);
239 i3 = buffer_get_int(&b);
240 i4 = buffer_get_int(&b);
241 debug("ignore (%d %d %d %d)", i1,i2,i3,i4);
Damien Miller874d77b2000-10-14 16:23:11 +1100242 if (strcmp(cipher, "none") != 0) {
243 error("unsupported cipher %s", cipher);
244 xfree(cipher);
245 buffer_free(&b);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000246 xfree(type);
Damien Miller874d77b2000-10-14 16:23:11 +1100247 return NULL;
248 }
249 xfree(cipher);
250
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000251 if (strstr(type, "dsa")) {
252 ktype = KEY_DSA;
253 } else if (strstr(type, "rsa")) {
254 ktype = KEY_RSA;
255 } else {
Darren Tucker7cfeecf2005-01-20 10:56:31 +1100256 buffer_free(&b);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000257 xfree(type);
Damien Miller874d77b2000-10-14 16:23:11 +1100258 return NULL;
259 }
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000260 key = key_new_private(ktype);
261 xfree(type);
262
263 switch (key->type) {
264 case KEY_DSA:
265 buffer_get_bignum_bits(&b, key->dsa->p);
266 buffer_get_bignum_bits(&b, key->dsa->g);
267 buffer_get_bignum_bits(&b, key->dsa->q);
268 buffer_get_bignum_bits(&b, key->dsa->pub_key);
269 buffer_get_bignum_bits(&b, key->dsa->priv_key);
270 break;
271 case KEY_RSA:
Ben Lindstrom34f91882001-06-25 04:47:54 +0000272 e = buffer_get_char(&b);
273 debug("e %lx", e);
274 if (e < 30) {
275 e <<= 8;
276 e += buffer_get_char(&b);
277 debug("e %lx", e);
278 e <<= 8;
279 e += buffer_get_char(&b);
280 debug("e %lx", e);
281 }
282 if (!BN_set_word(key->rsa->e, e)) {
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000283 buffer_free(&b);
284 key_free(key);
285 return NULL;
286 }
287 buffer_get_bignum_bits(&b, key->rsa->d);
288 buffer_get_bignum_bits(&b, key->rsa->n);
289 buffer_get_bignum_bits(&b, key->rsa->iqmp);
290 buffer_get_bignum_bits(&b, key->rsa->q);
291 buffer_get_bignum_bits(&b, key->rsa->p);
Ben Lindstromf7297dd2001-07-04 05:02:23 +0000292 rsa_generate_additional_parameters(key->rsa);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000293 break;
294 }
Damien Miller874d77b2000-10-14 16:23:11 +1100295 rlen = buffer_len(&b);
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +0000296 if (rlen != 0)
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000297 error("do_convert_private_ssh2_from_blob: "
298 "remaining bytes in key blob %d", rlen);
Damien Miller874d77b2000-10-14 16:23:11 +1100299 buffer_free(&b);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000300
Ben Lindstrome586c4c2001-06-25 05:04:58 +0000301 /* try the key */
302 key_sign(key, &sig, &slen, data, sizeof(data));
303 key_verify(key, sig, slen, data, sizeof(data));
304 xfree(sig);
Damien Miller874d77b2000-10-14 16:23:11 +1100305 return key;
306}
307
Damien Miller8056a9d2006-03-15 12:05:40 +1100308static int
309get_line(FILE *fp, char *line, size_t len)
310{
311 int c;
312 size_t pos = 0;
313
314 line[0] = '\0';
315 while ((c = fgetc(fp)) != EOF) {
316 if (pos >= len - 1) {
317 fprintf(stderr, "input line too long.\n");
318 exit(1);
319 }
Damien Miller90967402006-03-26 14:07:26 +1100320 switch (c) {
Damien Miller8056a9d2006-03-15 12:05:40 +1100321 case '\r':
322 c = fgetc(fp);
323 if (c != EOF && c != '\n' && ungetc(c, fp) == EOF) {
324 fprintf(stderr, "unget: %s\n", strerror(errno));
325 exit(1);
326 }
327 return pos;
328 case '\n':
329 return pos;
330 }
331 line[pos++] = c;
332 line[pos] = '\0';
333 }
Damien Millere23209f2006-03-31 23:13:35 +1100334 if (c == EOF)
335 return -1;
Damien Miller8056a9d2006-03-15 12:05:40 +1100336 return pos;
337}
338
Ben Lindstrombba81212001-06-25 05:01:22 +0000339static void
Damien Millereba71ba2000-04-29 23:57:08 +1000340do_convert_from_ssh2(struct passwd *pw)
341{
342 Key *k;
343 int blen;
Ben Lindstrom155b9812002-04-02 20:26:26 +0000344 u_int len;
Damien Miller8056a9d2006-03-15 12:05:40 +1100345 char line[1024];
Ben Lindstrom9e0ddd42001-09-18 05:41:19 +0000346 u_char blob[8096];
Damien Millereba71ba2000-04-29 23:57:08 +1000347 char encoded[8096];
348 struct stat st;
Damien Miller874d77b2000-10-14 16:23:11 +1100349 int escaped = 0, private = 0, ok;
Damien Millereba71ba2000-04-29 23:57:08 +1000350 FILE *fp;
351
352 if (!have_identity)
353 ask_filename(pw, "Enter file in which the key is");
354 if (stat(identity_file, &st) < 0) {
355 perror(identity_file);
356 exit(1);
357 }
358 fp = fopen(identity_file, "r");
359 if (fp == NULL) {
360 perror(identity_file);
361 exit(1);
362 }
363 encoded[0] = '\0';
Damien Miller8056a9d2006-03-15 12:05:40 +1100364 while ((blen = get_line(fp, line, sizeof(line))) != -1) {
365 if (line[blen - 1] == '\\')
Damien Miller30c3d422000-05-09 11:02:59 +1000366 escaped++;
Damien Millereba71ba2000-04-29 23:57:08 +1000367 if (strncmp(line, "----", 4) == 0 ||
368 strstr(line, ": ") != NULL) {
Damien Miller874d77b2000-10-14 16:23:11 +1100369 if (strstr(line, SSH_COM_PRIVATE_BEGIN) != NULL)
370 private = 1;
Ben Lindstrome586c4c2001-06-25 05:04:58 +0000371 if (strstr(line, " END ") != NULL) {
372 break;
373 }
Ben Lindstrom30358602001-04-24 16:59:28 +0000374 /* fprintf(stderr, "ignore: %s", line); */
Damien Millereba71ba2000-04-29 23:57:08 +1000375 continue;
376 }
Damien Miller30c3d422000-05-09 11:02:59 +1000377 if (escaped) {
378 escaped--;
Ben Lindstrom30358602001-04-24 16:59:28 +0000379 /* fprintf(stderr, "escaped: %s", line); */
Damien Miller30c3d422000-05-09 11:02:59 +1000380 continue;
Damien Millereba71ba2000-04-29 23:57:08 +1000381 }
Damien Millereba71ba2000-04-29 23:57:08 +1000382 strlcat(encoded, line, sizeof(encoded));
383 }
Ben Lindstrom155b9812002-04-02 20:26:26 +0000384 len = strlen(encoded);
385 if (((len % 4) == 3) &&
386 (encoded[len-1] == '=') &&
387 (encoded[len-2] == '=') &&
388 (encoded[len-3] == '='))
389 encoded[len-3] = '\0';
Damien Miller4a8ed542002-01-22 23:33:31 +1100390 blen = uudecode(encoded, blob, sizeof(blob));
Damien Millereba71ba2000-04-29 23:57:08 +1000391 if (blen < 0) {
392 fprintf(stderr, "uudecode failed.\n");
393 exit(1);
394 }
Damien Miller874d77b2000-10-14 16:23:11 +1100395 k = private ?
396 do_convert_private_ssh2_from_blob(blob, blen) :
Damien Miller0bc1bd82000-11-13 22:57:25 +1100397 key_from_blob(blob, blen);
Damien Miller874d77b2000-10-14 16:23:11 +1100398 if (k == NULL) {
399 fprintf(stderr, "decode blob failed.\n");
400 exit(1);
401 }
402 ok = private ?
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000403 (k->type == KEY_DSA ?
404 PEM_write_DSAPrivateKey(stdout, k->dsa, NULL, NULL, 0, NULL, NULL) :
405 PEM_write_RSAPrivateKey(stdout, k->rsa, NULL, NULL, 0, NULL, NULL)) :
Damien Miller874d77b2000-10-14 16:23:11 +1100406 key_write(k, stdout);
407 if (!ok) {
408 fprintf(stderr, "key write failed");
409 exit(1);
410 }
Damien Millereba71ba2000-04-29 23:57:08 +1000411 key_free(k);
Damien Millera1db12b2002-01-22 23:20:15 +1100412 if (!private)
413 fprintf(stdout, "\n");
Damien Millereba71ba2000-04-29 23:57:08 +1000414 fclose(fp);
415 exit(0);
416}
417
Ben Lindstrombba81212001-06-25 05:01:22 +0000418static void
Damien Millereba71ba2000-04-29 23:57:08 +1000419do_print_public(struct passwd *pw)
420{
Ben Lindstromd0fca422001-03-26 13:44:06 +0000421 Key *prv;
Damien Millereba71ba2000-04-29 23:57:08 +1000422 struct stat st;
423
424 if (!have_identity)
425 ask_filename(pw, "Enter file in which the key is");
426 if (stat(identity_file, &st) < 0) {
427 perror(identity_file);
428 exit(1);
429 }
Ben Lindstromd78ae762001-06-05 20:35:09 +0000430 prv = load_identity(identity_file);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000431 if (prv == NULL) {
Damien Millereba71ba2000-04-29 23:57:08 +1000432 fprintf(stderr, "load failed\n");
433 exit(1);
434 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000435 if (!key_write(prv, stdout))
Damien Millereba71ba2000-04-29 23:57:08 +1000436 fprintf(stderr, "key_write failed");
Ben Lindstromd0fca422001-03-26 13:44:06 +0000437 key_free(prv);
Damien Millereba71ba2000-04-29 23:57:08 +1000438 fprintf(stdout, "\n");
439 exit(0);
440}
441
Ben Lindstrom6818bfb2001-08-06 21:40:04 +0000442#ifdef SMARTCARD
Ben Lindstromcd392282001-07-04 03:44:03 +0000443static void
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000444do_upload(struct passwd *pw, const char *sc_reader_id)
Ben Lindstromcd392282001-07-04 03:44:03 +0000445{
Ben Lindstromcd392282001-07-04 03:44:03 +0000446 Key *prv = NULL;
447 struct stat st;
Ben Lindstrom70e3ad82002-03-22 03:33:43 +0000448 int ret;
Ben Lindstromcd392282001-07-04 03:44:03 +0000449
450 if (!have_identity)
451 ask_filename(pw, "Enter file in which the key is");
452 if (stat(identity_file, &st) < 0) {
453 perror(identity_file);
Ben Lindstrom70e3ad82002-03-22 03:33:43 +0000454 exit(1);
Ben Lindstromcd392282001-07-04 03:44:03 +0000455 }
456 prv = load_identity(identity_file);
457 if (prv == NULL) {
458 error("load failed");
Ben Lindstrom70e3ad82002-03-22 03:33:43 +0000459 exit(1);
Ben Lindstromcd392282001-07-04 03:44:03 +0000460 }
Ben Lindstrom70e3ad82002-03-22 03:33:43 +0000461 ret = sc_put_key(prv, sc_reader_id);
462 key_free(prv);
463 if (ret < 0)
464 exit(1);
Damien Miller996acd22003-04-09 20:59:48 +1000465 logit("loading key done");
Ben Lindstrom70e3ad82002-03-22 03:33:43 +0000466 exit(0);
Ben Lindstromcd392282001-07-04 03:44:03 +0000467}
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000468
469static void
470do_download(struct passwd *pw, const char *sc_reader_id)
471{
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000472 Key **keys = NULL;
473 int i;
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000474
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000475 keys = sc_get_keys(sc_reader_id, NULL);
476 if (keys == NULL)
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000477 fatal("cannot read public key from smartcard");
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000478 for (i = 0; keys[i]; i++) {
479 key_write(keys[i], stdout);
480 key_free(keys[i]);
481 fprintf(stdout, "\n");
482 }
483 xfree(keys);
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000484 exit(0);
485}
Ben Lindstromffce1472001-08-06 21:57:31 +0000486#endif /* SMARTCARD */
Ben Lindstromcd392282001-07-04 03:44:03 +0000487
Ben Lindstrombba81212001-06-25 05:01:22 +0000488static void
Damien Miller10f6f6b1999-11-17 17:29:08 +1100489do_fingerprint(struct passwd *pw)
490{
Damien Miller98c7ad62000-03-09 21:27:49 +1100491 FILE *f;
Damien Millereba71ba2000-04-29 23:57:08 +1000492 Key *public;
Ben Lindstrom8fd372b2001-03-12 03:02:17 +0000493 char *comment = NULL, *cp, *ep, line[16*1024], *fp;
Ben Lindstrom65366a82001-12-06 16:32:47 +0000494 int i, skip = 0, num = 1, invalid = 1;
495 enum fp_rep rep;
496 enum fp_type fptype;
Damien Miller95def091999-11-25 00:26:21 +1100497 struct stat st;
Damien Miller10f6f6b1999-11-17 17:29:08 +1100498
Ben Lindstromd0fca422001-03-26 13:44:06 +0000499 fptype = print_bubblebabble ? SSH_FP_SHA1 : SSH_FP_MD5;
500 rep = print_bubblebabble ? SSH_FP_BUBBLEBABBLE : SSH_FP_HEX;
Ben Lindstrom8fd372b2001-03-12 03:02:17 +0000501
Damien Miller95def091999-11-25 00:26:21 +1100502 if (!have_identity)
503 ask_filename(pw, "Enter file in which the key is");
504 if (stat(identity_file, &st) < 0) {
505 perror(identity_file);
506 exit(1);
507 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000508 public = key_load_public(identity_file, &comment);
509 if (public != NULL) {
510 fp = key_fingerprint(public, fptype, rep);
Ben Lindstrom58d3b722002-06-23 21:28:13 +0000511 printf("%u %s %s\n", key_size(public), fp, comment);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100512 key_free(public);
513 xfree(comment);
Ben Lindstrom8fd372b2001-03-12 03:02:17 +0000514 xfree(fp);
Damien Miller98c7ad62000-03-09 21:27:49 +1100515 exit(0);
516 }
Damien Miller40b59852006-06-13 13:00:25 +1000517 if (comment) {
Ben Lindstromd0fca422001-03-26 13:44:06 +0000518 xfree(comment);
Damien Miller40b59852006-06-13 13:00:25 +1000519 comment = NULL;
520 }
Damien Miller98c7ad62000-03-09 21:27:49 +1100521
522 f = fopen(identity_file, "r");
523 if (f != NULL) {
Damien Miller98c7ad62000-03-09 21:27:49 +1100524 while (fgets(line, sizeof(line), f)) {
525 i = strlen(line) - 1;
526 if (line[i] != '\n') {
527 error("line %d too long: %.40s...", num, line);
528 skip = 1;
529 continue;
Damien Miller95def091999-11-25 00:26:21 +1100530 }
Damien Miller98c7ad62000-03-09 21:27:49 +1100531 num++;
532 if (skip) {
533 skip = 0;
534 continue;
535 }
536 line[i] = '\0';
537
538 /* Skip leading whitespace, empty and comment lines. */
539 for (cp = line; *cp == ' ' || *cp == '\t'; cp++)
540 ;
541 if (!*cp || *cp == '\n' || *cp == '#')
542 continue ;
543 i = strtol(cp, &ep, 10);
544 if (i == 0 || ep == NULL || (*ep != ' ' && *ep != '\t')) {
545 int quoted = 0;
546 comment = cp;
Ben Lindstrom58d3b722002-06-23 21:28:13 +0000547 for (; *cp && (quoted || (*cp != ' ' &&
548 *cp != '\t')); cp++) {
Damien Miller98c7ad62000-03-09 21:27:49 +1100549 if (*cp == '\\' && cp[1] == '"')
550 cp++; /* Skip both */
551 else if (*cp == '"')
552 quoted = !quoted;
553 }
554 if (!*cp)
555 continue;
556 *cp++ = '\0';
557 }
558 ep = cp;
Ben Lindstrom2941f112000-12-29 16:50:13 +0000559 public = key_new(KEY_RSA1);
560 if (key_read(public, &cp) != 1) {
561 cp = ep;
562 key_free(public);
563 public = key_new(KEY_UNSPEC);
564 if (key_read(public, &cp) != 1) {
565 key_free(public);
566 continue;
567 }
Damien Miller98c7ad62000-03-09 21:27:49 +1100568 }
Ben Lindstrom2941f112000-12-29 16:50:13 +0000569 comment = *cp ? cp : comment;
Ben Lindstromd0fca422001-03-26 13:44:06 +0000570 fp = key_fingerprint(public, fptype, rep);
Ben Lindstrom58d3b722002-06-23 21:28:13 +0000571 printf("%u %s %s\n", key_size(public), fp,
Ben Lindstrom2941f112000-12-29 16:50:13 +0000572 comment ? comment : "no comment");
Ben Lindstrom8fd372b2001-03-12 03:02:17 +0000573 xfree(fp);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000574 key_free(public);
Ben Lindstrom2941f112000-12-29 16:50:13 +0000575 invalid = 0;
Damien Miller95def091999-11-25 00:26:21 +1100576 }
Damien Miller98c7ad62000-03-09 21:27:49 +1100577 fclose(f);
Damien Miller95def091999-11-25 00:26:21 +1100578 }
Damien Miller98c7ad62000-03-09 21:27:49 +1100579 if (invalid) {
Damien Millereb5fec62001-11-12 10:52:44 +1100580 printf("%s is not a public key file.\n", identity_file);
Damien Miller98c7ad62000-03-09 21:27:49 +1100581 exit(1);
582 }
Damien Miller95def091999-11-25 00:26:21 +1100583 exit(0);
Damien Miller10f6f6b1999-11-17 17:29:08 +1100584}
585
Damien Miller4b42d7f2005-03-01 21:48:35 +1100586static void
587print_host(FILE *f, char *name, Key *public, int hash)
588{
589 if (hash && (name = host_hash(name, NULL, 0)) == NULL)
590 fatal("hash_host failed");
591 fprintf(f, "%s ", name);
592 if (!key_write(public, f))
593 fatal("key_write failed");
594 fprintf(f, "\n");
595}
596
597static void
598do_known_hosts(struct passwd *pw, const char *name)
599{
600 FILE *in, *out = stdout;
601 Key *public;
602 char *cp, *cp2, *kp, *kp2;
603 char line[16*1024], tmp[MAXPATHLEN], old[MAXPATHLEN];
604 int c, i, skip = 0, inplace = 0, num = 0, invalid = 0, has_unhashed = 0;
605
606 if (!have_identity) {
607 cp = tilde_expand_filename(_PATH_SSH_USER_HOSTFILE, pw->pw_uid);
608 if (strlcpy(identity_file, cp, sizeof(identity_file)) >=
609 sizeof(identity_file))
610 fatal("Specified known hosts path too long");
611 xfree(cp);
612 have_identity = 1;
613 }
614 if ((in = fopen(identity_file, "r")) == NULL)
615 fatal("fopen: %s", strerror(errno));
616
617 /*
618 * Find hosts goes to stdout, hash and deletions happen in-place
619 * A corner case is ssh-keygen -HF foo, which should go to stdout
620 */
621 if (!find_host && (hash_hosts || delete_host)) {
622 if (strlcpy(tmp, identity_file, sizeof(tmp)) >= sizeof(tmp) ||
623 strlcat(tmp, ".XXXXXXXXXX", sizeof(tmp)) >= sizeof(tmp) ||
624 strlcpy(old, identity_file, sizeof(old)) >= sizeof(old) ||
625 strlcat(old, ".old", sizeof(old)) >= sizeof(old))
626 fatal("known_hosts path too long");
627 umask(077);
628 if ((c = mkstemp(tmp)) == -1)
629 fatal("mkstemp: %s", strerror(errno));
630 if ((out = fdopen(c, "w")) == NULL) {
631 c = errno;
632 unlink(tmp);
633 fatal("fdopen: %s", strerror(c));
634 }
635 inplace = 1;
636 }
637
638 while (fgets(line, sizeof(line), in)) {
639 num++;
640 i = strlen(line) - 1;
641 if (line[i] != '\n') {
642 error("line %d too long: %.40s...", num, line);
643 skip = 1;
644 invalid = 1;
645 continue;
646 }
647 if (skip) {
648 skip = 0;
649 continue;
650 }
651 line[i] = '\0';
652
653 /* Skip leading whitespace, empty and comment lines. */
654 for (cp = line; *cp == ' ' || *cp == '\t'; cp++)
655 ;
656 if (!*cp || *cp == '\n' || *cp == '#') {
657 if (inplace)
658 fprintf(out, "%s\n", cp);
659 continue;
660 }
661 /* Find the end of the host name portion. */
662 for (kp = cp; *kp && *kp != ' ' && *kp != '\t'; kp++)
663 ;
664 if (*kp == '\0' || *(kp + 1) == '\0') {
665 error("line %d missing key: %.40s...",
666 num, line);
667 invalid = 1;
668 continue;
669 }
670 *kp++ = '\0';
671 kp2 = kp;
672
673 public = key_new(KEY_RSA1);
674 if (key_read(public, &kp) != 1) {
675 kp = kp2;
676 key_free(public);
677 public = key_new(KEY_UNSPEC);
678 if (key_read(public, &kp) != 1) {
679 error("line %d invalid key: %.40s...",
680 num, line);
681 key_free(public);
682 invalid = 1;
683 continue;
684 }
685 }
686
687 if (*cp == HASH_DELIM) {
688 if (find_host || delete_host) {
689 cp2 = host_hash(name, cp, strlen(cp));
690 if (cp2 == NULL) {
691 error("line %d: invalid hashed "
692 "name: %.64s...", num, line);
693 invalid = 1;
694 continue;
695 }
696 c = (strcmp(cp2, cp) == 0);
697 if (find_host && c) {
698 printf("# Host %s found: "
699 "line %d type %s\n", name,
700 num, key_type(public));
701 print_host(out, cp, public, 0);
702 }
703 if (delete_host && !c)
704 print_host(out, cp, public, 0);
705 } else if (hash_hosts)
706 print_host(out, cp, public, 0);
707 } else {
708 if (find_host || delete_host) {
709 c = (match_hostname(name, cp,
710 strlen(cp)) == 1);
711 if (find_host && c) {
712 printf("# Host %s found: "
713 "line %d type %s\n", name,
714 num, key_type(public));
715 print_host(out, cp, public, hash_hosts);
716 }
717 if (delete_host && !c)
718 print_host(out, cp, public, 0);
719 } else if (hash_hosts) {
Darren Tucker47eede72005-03-14 23:08:12 +1100720 for (cp2 = strsep(&cp, ",");
Damien Miller4b42d7f2005-03-01 21:48:35 +1100721 cp2 != NULL && *cp2 != '\0';
Damien Miller89eac802005-03-02 12:33:04 +1100722 cp2 = strsep(&cp, ",")) {
723 if (strcspn(cp2, "*?!") != strlen(cp2))
724 fprintf(stderr, "Warning: "
725 "ignoring host name with "
726 "metacharacters: %.64s\n",
727 cp2);
728 else
729 print_host(out, cp2, public, 1);
730 }
Damien Miller4b42d7f2005-03-01 21:48:35 +1100731 has_unhashed = 1;
732 }
733 }
734 key_free(public);
735 }
736 fclose(in);
737
738 if (invalid) {
739 fprintf(stderr, "%s is not a valid known_host file.\n",
740 identity_file);
741 if (inplace) {
742 fprintf(stderr, "Not replacing existing known_hosts "
Darren Tucker9f438a92005-03-14 23:09:18 +1100743 "file because of errors\n");
Damien Miller4b42d7f2005-03-01 21:48:35 +1100744 fclose(out);
745 unlink(tmp);
746 }
747 exit(1);
748 }
749
750 if (inplace) {
751 fclose(out);
752
753 /* Backup existing file */
754 if (unlink(old) == -1 && errno != ENOENT)
755 fatal("unlink %.100s: %s", old, strerror(errno));
756 if (link(identity_file, old) == -1)
757 fatal("link %.100s to %.100s: %s", identity_file, old,
758 strerror(errno));
759 /* Move new one into place */
760 if (rename(tmp, identity_file) == -1) {
761 error("rename\"%s\" to \"%s\": %s", tmp, identity_file,
762 strerror(errno));
763 unlink(tmp);
764 unlink(old);
765 exit(1);
766 }
767
768 fprintf(stderr, "%s updated.\n", identity_file);
769 fprintf(stderr, "Original contents retained as %s\n", old);
770 if (has_unhashed) {
771 fprintf(stderr, "WARNING: %s contains unhashed "
772 "entries\n", old);
773 fprintf(stderr, "Delete this file to ensure privacy "
Damien Miller0dc1bef2005-07-17 17:22:45 +1000774 "of hostnames\n");
Damien Miller4b42d7f2005-03-01 21:48:35 +1100775 }
776 }
777
778 exit(0);
779}
780
Damien Miller95def091999-11-25 00:26:21 +1100781/*
782 * Perform changing a passphrase. The argument is the passwd structure
783 * for the current user.
784 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000785static void
Damien Miller10f6f6b1999-11-17 17:29:08 +1100786do_change_passphrase(struct passwd *pw)
787{
Damien Miller95def091999-11-25 00:26:21 +1100788 char *comment;
789 char *old_passphrase, *passphrase1, *passphrase2;
790 struct stat st;
Damien Millereba71ba2000-04-29 23:57:08 +1000791 Key *private;
Damien Miller10f6f6b1999-11-17 17:29:08 +1100792
Damien Miller95def091999-11-25 00:26:21 +1100793 if (!have_identity)
794 ask_filename(pw, "Enter file in which the key is");
Damien Miller95def091999-11-25 00:26:21 +1100795 if (stat(identity_file, &st) < 0) {
796 perror(identity_file);
797 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000798 }
Damien Miller95def091999-11-25 00:26:21 +1100799 /* Try to load the file with empty passphrase. */
Ben Lindstromd0fca422001-03-26 13:44:06 +0000800 private = key_load_private(identity_file, "", &comment);
801 if (private == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100802 if (identity_passphrase)
803 old_passphrase = xstrdup(identity_passphrase);
804 else
Ben Lindstrom949974b2001-06-25 05:20:31 +0000805 old_passphrase =
806 read_passphrase("Enter old passphrase: ",
807 RP_ALLOW_STDIN);
808 private = key_load_private(identity_file, old_passphrase,
809 &comment);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000810 memset(old_passphrase, 0, strlen(old_passphrase));
811 xfree(old_passphrase);
812 if (private == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100813 printf("Bad passphrase.\n");
814 exit(1);
815 }
Damien Miller95def091999-11-25 00:26:21 +1100816 }
817 printf("Key has comment '%s'\n", comment);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000818
Damien Miller95def091999-11-25 00:26:21 +1100819 /* Ask the new passphrase (twice). */
820 if (identity_new_passphrase) {
821 passphrase1 = xstrdup(identity_new_passphrase);
822 passphrase2 = NULL;
823 } else {
824 passphrase1 =
Ben Lindstrom949974b2001-06-25 05:20:31 +0000825 read_passphrase("Enter new passphrase (empty for no "
826 "passphrase): ", RP_ALLOW_STDIN);
827 passphrase2 = read_passphrase("Enter same passphrase again: ",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100828 RP_ALLOW_STDIN);
Damien Miller95def091999-11-25 00:26:21 +1100829
830 /* Verify that they are the same. */
831 if (strcmp(passphrase1, passphrase2) != 0) {
832 memset(passphrase1, 0, strlen(passphrase1));
833 memset(passphrase2, 0, strlen(passphrase2));
834 xfree(passphrase1);
835 xfree(passphrase2);
836 printf("Pass phrases do not match. Try again.\n");
837 exit(1);
838 }
839 /* Destroy the other copy. */
840 memset(passphrase2, 0, strlen(passphrase2));
841 xfree(passphrase2);
842 }
843
844 /* Save the file using the new passphrase. */
Ben Lindstromd0fca422001-03-26 13:44:06 +0000845 if (!key_save_private(private, identity_file, passphrase1, comment)) {
Ben Lindstrom15f33862001-04-16 02:00:02 +0000846 printf("Saving the key failed: %s.\n", identity_file);
Damien Miller95def091999-11-25 00:26:21 +1100847 memset(passphrase1, 0, strlen(passphrase1));
848 xfree(passphrase1);
Damien Millereba71ba2000-04-29 23:57:08 +1000849 key_free(private);
Damien Miller95def091999-11-25 00:26:21 +1100850 xfree(comment);
851 exit(1);
852 }
853 /* Destroy the passphrase and the copy of the key in memory. */
854 memset(passphrase1, 0, strlen(passphrase1));
855 xfree(passphrase1);
Damien Millereba71ba2000-04-29 23:57:08 +1000856 key_free(private); /* Destroys contents */
Damien Miller95def091999-11-25 00:26:21 +1100857 xfree(comment);
858
859 printf("Your identification has been saved with the new passphrase.\n");
860 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000861}
862
Damien Miller37876e92003-05-15 10:19:46 +1000863/*
864 * Print the SSHFP RR.
865 */
Damien Millercb314822006-03-26 13:48:01 +1100866static int
867do_print_resource_record(struct passwd *pw, char *fname, char *hname)
Damien Miller37876e92003-05-15 10:19:46 +1000868{
869 Key *public;
870 char *comment = NULL;
871 struct stat st;
872
Damien Millercb314822006-03-26 13:48:01 +1100873 if (fname == NULL)
Damien Miller37876e92003-05-15 10:19:46 +1000874 ask_filename(pw, "Enter file in which the key is");
Damien Millercb314822006-03-26 13:48:01 +1100875 if (stat(fname, &st) < 0) {
876 if (errno == ENOENT)
877 return 0;
878 perror(fname);
Damien Miller37876e92003-05-15 10:19:46 +1000879 exit(1);
880 }
Damien Millercb314822006-03-26 13:48:01 +1100881 public = key_load_public(fname, &comment);
Damien Miller37876e92003-05-15 10:19:46 +1000882 if (public != NULL) {
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000883 export_dns_rr(hname, public, stdout, print_generic);
Damien Miller37876e92003-05-15 10:19:46 +1000884 key_free(public);
885 xfree(comment);
Damien Millercb314822006-03-26 13:48:01 +1100886 return 1;
Damien Miller37876e92003-05-15 10:19:46 +1000887 }
888 if (comment)
889 xfree(comment);
890
Damien Millercb314822006-03-26 13:48:01 +1100891 printf("failed to read v2 public key from %s.\n", fname);
Damien Miller37876e92003-05-15 10:19:46 +1000892 exit(1);
893}
Damien Miller37876e92003-05-15 10:19:46 +1000894
Damien Miller95def091999-11-25 00:26:21 +1100895/*
896 * Change the comment of a private key file.
897 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000898static void
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000899do_change_comment(struct passwd *pw)
900{
Ben Lindstrom5fc62702001-03-09 18:19:24 +0000901 char new_comment[1024], *comment, *passphrase;
Ben Lindstromd0fca422001-03-26 13:44:06 +0000902 Key *private;
903 Key *public;
Damien Miller95def091999-11-25 00:26:21 +1100904 struct stat st;
905 FILE *f;
Ben Lindstrom5fc62702001-03-09 18:19:24 +0000906 int fd;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000907
Damien Miller95def091999-11-25 00:26:21 +1100908 if (!have_identity)
909 ask_filename(pw, "Enter file in which the key is");
Damien Miller95def091999-11-25 00:26:21 +1100910 if (stat(identity_file, &st) < 0) {
911 perror(identity_file);
912 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000913 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000914 private = key_load_private(identity_file, "", &comment);
915 if (private == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100916 if (identity_passphrase)
917 passphrase = xstrdup(identity_passphrase);
918 else if (identity_new_passphrase)
919 passphrase = xstrdup(identity_new_passphrase);
920 else
Ben Lindstrom949974b2001-06-25 05:20:31 +0000921 passphrase = read_passphrase("Enter passphrase: ",
922 RP_ALLOW_STDIN);
Damien Miller95def091999-11-25 00:26:21 +1100923 /* Try to load using the passphrase. */
Ben Lindstromd0fca422001-03-26 13:44:06 +0000924 private = key_load_private(identity_file, passphrase, &comment);
925 if (private == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100926 memset(passphrase, 0, strlen(passphrase));
927 xfree(passphrase);
928 printf("Bad passphrase.\n");
929 exit(1);
930 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000931 } else {
932 passphrase = xstrdup("");
Damien Miller95def091999-11-25 00:26:21 +1100933 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000934 if (private->type != KEY_RSA1) {
935 fprintf(stderr, "Comments are only supported for RSA1 keys.\n");
936 key_free(private);
937 exit(1);
Damien Miller9f0f5c62001-12-21 14:45:46 +1100938 }
Damien Miller95def091999-11-25 00:26:21 +1100939 printf("Key now has comment '%s'\n", comment);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000940
Damien Miller95def091999-11-25 00:26:21 +1100941 if (identity_comment) {
942 strlcpy(new_comment, identity_comment, sizeof(new_comment));
943 } else {
944 printf("Enter new comment: ");
945 fflush(stdout);
946 if (!fgets(new_comment, sizeof(new_comment), stdin)) {
947 memset(passphrase, 0, strlen(passphrase));
Damien Millereba71ba2000-04-29 23:57:08 +1000948 key_free(private);
Damien Miller95def091999-11-25 00:26:21 +1100949 exit(1);
950 }
Damien Miller95def091999-11-25 00:26:21 +1100951 if (strchr(new_comment, '\n'))
952 *strchr(new_comment, '\n') = 0;
953 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000954
Damien Miller95def091999-11-25 00:26:21 +1100955 /* Save the file using the new passphrase. */
Ben Lindstromd0fca422001-03-26 13:44:06 +0000956 if (!key_save_private(private, identity_file, passphrase, new_comment)) {
Ben Lindstrom15f33862001-04-16 02:00:02 +0000957 printf("Saving the key failed: %s.\n", identity_file);
Damien Miller95def091999-11-25 00:26:21 +1100958 memset(passphrase, 0, strlen(passphrase));
959 xfree(passphrase);
Damien Millereba71ba2000-04-29 23:57:08 +1000960 key_free(private);
Damien Miller95def091999-11-25 00:26:21 +1100961 xfree(comment);
962 exit(1);
963 }
Damien Miller95def091999-11-25 00:26:21 +1100964 memset(passphrase, 0, strlen(passphrase));
965 xfree(passphrase);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000966 public = key_from_private(private);
Damien Millereba71ba2000-04-29 23:57:08 +1000967 key_free(private);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000968
Damien Miller95def091999-11-25 00:26:21 +1100969 strlcat(identity_file, ".pub", sizeof(identity_file));
Ben Lindstrom5fc62702001-03-09 18:19:24 +0000970 fd = open(identity_file, O_WRONLY | O_CREAT | O_TRUNC, 0644);
971 if (fd == -1) {
Damien Miller95def091999-11-25 00:26:21 +1100972 printf("Could not save your public key in %s\n", identity_file);
973 exit(1);
974 }
Ben Lindstrom5fc62702001-03-09 18:19:24 +0000975 f = fdopen(fd, "w");
976 if (f == NULL) {
977 printf("fdopen %s failed", identity_file);
978 exit(1);
979 }
Damien Millereba71ba2000-04-29 23:57:08 +1000980 if (!key_write(public, f))
981 fprintf(stderr, "write key failed");
982 key_free(public);
983 fprintf(f, " %s\n", new_comment);
Damien Miller95def091999-11-25 00:26:21 +1100984 fclose(f);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000985
Damien Miller95def091999-11-25 00:26:21 +1100986 xfree(comment);
987
988 printf("The comment in your key file has been changed.\n");
989 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000990}
991
Ben Lindstrombba81212001-06-25 05:01:22 +0000992static void
Damien Miller431f66b1999-11-21 18:31:57 +1100993usage(void)
994{
Ben Lindstrom97be31e2001-08-06 21:49:06 +0000995 fprintf(stderr, "Usage: %s [options]\n", __progname);
996 fprintf(stderr, "Options:\n");
Damien Miller9278ffa2005-05-26 11:59:06 +1000997 fprintf(stderr, " -a trials Number of trials for screening DH-GEX moduli.\n");
Ben Lindstrom97be31e2001-08-06 21:49:06 +0000998 fprintf(stderr, " -B Show bubblebabble digest of key file.\n");
Damien Miller9278ffa2005-05-26 11:59:06 +1000999 fprintf(stderr, " -b bits Number of bits in the key to create.\n");
Ben Lindstrom97be31e2001-08-06 21:49:06 +00001000 fprintf(stderr, " -C comment Provide new comment.\n");
Damien Miller9278ffa2005-05-26 11:59:06 +10001001 fprintf(stderr, " -c Change comment in private and public key files.\n");
Ben Lindstrom97be31e2001-08-06 21:49:06 +00001002#ifdef SMARTCARD
1003 fprintf(stderr, " -D reader Download public key from smartcard.\n");
Damien Miller9278ffa2005-05-26 11:59:06 +10001004#endif /* SMARTCARD */
1005 fprintf(stderr, " -e Convert OpenSSH to IETF SECSH key file.\n");
1006 fprintf(stderr, " -F hostname Find hostname in known hosts file.\n");
1007 fprintf(stderr, " -f filename Filename of the key file.\n");
1008 fprintf(stderr, " -G file Generate candidates for DH-GEX moduli.\n");
1009 fprintf(stderr, " -g Use generic DNS resource record format.\n");
1010 fprintf(stderr, " -H Hash names in known_hosts file.\n");
1011 fprintf(stderr, " -i Convert IETF SECSH to OpenSSH key file.\n");
1012 fprintf(stderr, " -l Show fingerprint of key file.\n");
1013 fprintf(stderr, " -M memory Amount of memory (MB) to use for generating DH-GEX moduli.\n");
1014 fprintf(stderr, " -N phrase Provide new passphrase.\n");
1015 fprintf(stderr, " -P phrase Provide old passphrase.\n");
1016 fprintf(stderr, " -p Change passphrase of private key file.\n");
1017 fprintf(stderr, " -q Quiet.\n");
1018 fprintf(stderr, " -R hostname Remove host from known_hosts file.\n");
1019 fprintf(stderr, " -r hostname Print DNS resource record.\n");
1020 fprintf(stderr, " -S start Start point (hex) for generating DH-GEX moduli.\n");
1021 fprintf(stderr, " -T file Screen candidates for DH-GEX moduli.\n");
1022 fprintf(stderr, " -t type Specify type of key to create.\n");
1023#ifdef SMARTCARD
Ben Lindstrom97be31e2001-08-06 21:49:06 +00001024 fprintf(stderr, " -U reader Upload private key to smartcard.\n");
1025#endif /* SMARTCARD */
Damien Miller9278ffa2005-05-26 11:59:06 +10001026 fprintf(stderr, " -v Verbose.\n");
1027 fprintf(stderr, " -W gen Generator to use for generating DH-GEX moduli.\n");
1028 fprintf(stderr, " -y Read private key file and print public key.\n");
Darren Tucker019cefe2003-08-02 22:40:07 +10001029
Damien Miller95def091999-11-25 00:26:21 +11001030 exit(1);
Damien Miller431f66b1999-11-21 18:31:57 +11001031}
1032
Damien Miller95def091999-11-25 00:26:21 +11001033/*
1034 * Main program for key management.
1035 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001036int
1037main(int ac, char **av)
1038{
Damien Millera41c8b12002-01-22 23:05:08 +11001039 char dotsshdir[MAXPATHLEN], comment[1024], *passphrase1, *passphrase2;
Tim Rice2e0e38e2003-09-08 16:11:33 -07001040 char out_file[MAXPATHLEN], *reader_id = NULL;
Damien Miller4b42d7f2005-03-01 21:48:35 +11001041 char *rr_hostname = NULL;
Ben Lindstrom5fc62702001-03-09 18:19:24 +00001042 Key *private, *public;
Damien Miller95def091999-11-25 00:26:21 +11001043 struct passwd *pw;
Damien Miller95def091999-11-25 00:26:21 +11001044 struct stat st;
Damien Millerb089fb52005-05-26 12:16:18 +10001045 int opt, type, fd, download = 0;
Darren Tucker2db8ae62005-06-01 23:02:25 +10001046 u_int32_t memory = 0, generator_wanted = 0, trials = 100;
Darren Tucker019cefe2003-08-02 22:40:07 +10001047 int do_gen_candidates = 0, do_screen_candidates = 0;
Darren Tucker06930c72003-12-31 11:34:51 +11001048 int log_level = SYSLOG_LEVEL_INFO;
Darren Tucker019cefe2003-08-02 22:40:07 +10001049 BIGNUM *start = NULL;
Damien Miller95def091999-11-25 00:26:21 +11001050 FILE *f;
Damien Miller02e754f2005-05-26 12:19:39 +10001051 const char *errstr;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001052
Damien Miller95def091999-11-25 00:26:21 +11001053 extern int optind;
1054 extern char *optarg;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001055
Darren Tuckerce321d82005-10-03 18:11:24 +10001056 /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
1057 sanitise_stdfd();
1058
Damien Miller59d3d5b2003-08-22 09:34:41 +10001059 __progname = ssh_get_progname(av[0]);
Damien Millerf9b625c2000-07-09 22:42:32 +10001060
Damien Millerd3a18572000-06-07 19:55:44 +10001061 SSLeay_add_all_algorithms();
Darren Tucker019cefe2003-08-02 22:40:07 +10001062 log_init(av[0], SYSLOG_LEVEL_INFO, SYSLOG_FACILITY_USER, 1);
1063
Kevin Steves3a881912002-07-20 19:05:40 +00001064 init_rng();
1065 seed_rng();
Damien Millereba71ba2000-04-29 23:57:08 +10001066
Damien Miller5428f641999-11-25 11:54:57 +11001067 /* we need this for the home * directory. */
Damien Miller95def091999-11-25 00:26:21 +11001068 pw = getpwuid(getuid());
1069 if (!pw) {
1070 printf("You don't exist, go away!\n");
1071 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001072 }
Damien Millereba71ba2000-04-29 23:57:08 +10001073 if (gethostname(hostname, sizeof(hostname)) < 0) {
1074 perror("gethostname");
1075 exit(1);
1076 }
Damien Miller5428f641999-11-25 11:54:57 +11001077
Darren Tucker019cefe2003-08-02 22:40:07 +10001078 while ((opt = getopt(ac, av,
Damien Miller4b42d7f2005-03-01 21:48:35 +11001079 "degiqpclBHvxXyF:b:f:t:U:D:P:N:C:r:g:R:T:G:M:S:a:W:")) != -1) {
Damien Miller95def091999-11-25 00:26:21 +11001080 switch (opt) {
1081 case 'b':
Damien Miller5f340062006-03-26 14:27:57 +11001082 bits = (u_int32_t)strtonum(optarg, 768, 32768, &errstr);
Damien Miller02e754f2005-05-26 12:19:39 +10001083 if (errstr)
1084 fatal("Bits has bad value %s (%s)",
1085 optarg, errstr);
Damien Miller95def091999-11-25 00:26:21 +11001086 break;
Damien Miller4b42d7f2005-03-01 21:48:35 +11001087 case 'F':
1088 find_host = 1;
1089 rr_hostname = optarg;
1090 break;
1091 case 'H':
1092 hash_hosts = 1;
1093 break;
1094 case 'R':
1095 delete_host = 1;
1096 rr_hostname = optarg;
1097 break;
Damien Miller95def091999-11-25 00:26:21 +11001098 case 'l':
1099 print_fingerprint = 1;
1100 break;
Ben Lindstrom8fd372b2001-03-12 03:02:17 +00001101 case 'B':
1102 print_bubblebabble = 1;
1103 break;
Damien Miller95def091999-11-25 00:26:21 +11001104 case 'p':
1105 change_passphrase = 1;
1106 break;
Damien Miller95def091999-11-25 00:26:21 +11001107 case 'c':
1108 change_comment = 1;
1109 break;
Damien Miller95def091999-11-25 00:26:21 +11001110 case 'f':
Damien Millerb089fb52005-05-26 12:16:18 +10001111 if (strlcpy(identity_file, optarg, sizeof(identity_file)) >=
1112 sizeof(identity_file))
1113 fatal("Identity filename too long");
Damien Miller95def091999-11-25 00:26:21 +11001114 have_identity = 1;
1115 break;
Damien Miller37876e92003-05-15 10:19:46 +10001116 case 'g':
1117 print_generic = 1;
1118 break;
Damien Miller95def091999-11-25 00:26:21 +11001119 case 'P':
1120 identity_passphrase = optarg;
1121 break;
Damien Miller95def091999-11-25 00:26:21 +11001122 case 'N':
1123 identity_new_passphrase = optarg;
1124 break;
Damien Miller95def091999-11-25 00:26:21 +11001125 case 'C':
1126 identity_comment = optarg;
1127 break;
Damien Miller95def091999-11-25 00:26:21 +11001128 case 'q':
1129 quiet = 1;
1130 break;
Ben Lindstrom5a707822001-04-22 17:15:46 +00001131 case 'e':
Damien Millereba71ba2000-04-29 23:57:08 +10001132 case 'x':
Ben Lindstrom5a707822001-04-22 17:15:46 +00001133 /* export key */
Damien Millereba71ba2000-04-29 23:57:08 +10001134 convert_to_ssh2 = 1;
1135 break;
Ben Lindstrom5a707822001-04-22 17:15:46 +00001136 case 'i':
Damien Millereba71ba2000-04-29 23:57:08 +10001137 case 'X':
Ben Lindstrom5a707822001-04-22 17:15:46 +00001138 /* import key */
Damien Millereba71ba2000-04-29 23:57:08 +10001139 convert_from_ssh2 = 1;
1140 break;
Damien Millereba71ba2000-04-29 23:57:08 +10001141 case 'y':
1142 print_public = 1;
1143 break;
Damien Millereba71ba2000-04-29 23:57:08 +10001144 case 'd':
Damien Miller0bc1bd82000-11-13 22:57:25 +11001145 key_type_name = "dsa";
Damien Millereba71ba2000-04-29 23:57:08 +10001146 break;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001147 case 't':
1148 key_type_name = optarg;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001149 break;
Ben Lindstrom8282d6a2001-08-06 21:44:05 +00001150 case 'D':
1151 download = 1;
Damien Miller90967402006-03-26 14:07:26 +11001152 /*FALLTHROUGH*/
Ben Lindstromf19578c2001-08-06 21:46:54 +00001153 case 'U':
Ben Lindstrom8282d6a2001-08-06 21:44:05 +00001154 reader_id = optarg;
Ben Lindstromcd392282001-07-04 03:44:03 +00001155 break;
Darren Tucker06930c72003-12-31 11:34:51 +11001156 case 'v':
1157 if (log_level == SYSLOG_LEVEL_INFO)
1158 log_level = SYSLOG_LEVEL_DEBUG1;
1159 else {
Darren Tuckerfc959702004-07-17 16:12:08 +10001160 if (log_level >= SYSLOG_LEVEL_DEBUG1 &&
Darren Tucker06930c72003-12-31 11:34:51 +11001161 log_level < SYSLOG_LEVEL_DEBUG3)
1162 log_level++;
1163 }
1164 break;
Damien Miller37876e92003-05-15 10:19:46 +10001165 case 'r':
Damien Miller4b42d7f2005-03-01 21:48:35 +11001166 rr_hostname = optarg;
Damien Miller37876e92003-05-15 10:19:46 +10001167 break;
Darren Tucker019cefe2003-08-02 22:40:07 +10001168 case 'W':
Damien Miller5f340062006-03-26 14:27:57 +11001169 generator_wanted = (u_int32_t)strtonum(optarg, 1,
1170 UINT_MAX, &errstr);
Damien Millerb089fb52005-05-26 12:16:18 +10001171 if (errstr)
1172 fatal("Desired generator has bad value: %s (%s)",
1173 optarg, errstr);
Darren Tucker019cefe2003-08-02 22:40:07 +10001174 break;
1175 case 'a':
Damien Miller5f340062006-03-26 14:27:57 +11001176 trials = (u_int32_t)strtonum(optarg, 1, UINT_MAX, &errstr);
Damien Millerb089fb52005-05-26 12:16:18 +10001177 if (errstr)
1178 fatal("Invalid number of trials: %s (%s)",
1179 optarg, errstr);
Darren Tucker019cefe2003-08-02 22:40:07 +10001180 break;
1181 case 'M':
Damien Miller5f340062006-03-26 14:27:57 +11001182 memory = (u_int32_t)strtonum(optarg, 1, UINT_MAX, &errstr);
Damien Millerb089fb52005-05-26 12:16:18 +10001183 if (errstr) {
1184 fatal("Memory limit is %s: %s", errstr, optarg);
1185 }
Darren Tucker019cefe2003-08-02 22:40:07 +10001186 break;
1187 case 'G':
1188 do_gen_candidates = 1;
Damien Millerb089fb52005-05-26 12:16:18 +10001189 if (strlcpy(out_file, optarg, sizeof(out_file)) >=
1190 sizeof(out_file))
1191 fatal("Output filename too long");
Darren Tucker019cefe2003-08-02 22:40:07 +10001192 break;
1193 case 'T':
1194 do_screen_candidates = 1;
Damien Millerb089fb52005-05-26 12:16:18 +10001195 if (strlcpy(out_file, optarg, sizeof(out_file)) >=
1196 sizeof(out_file))
1197 fatal("Output filename too long");
Darren Tucker019cefe2003-08-02 22:40:07 +10001198 break;
1199 case 'S':
1200 /* XXX - also compare length against bits */
1201 if (BN_hex2bn(&start, optarg) == 0)
1202 fatal("Invalid start point.");
1203 break;
Damien Miller95def091999-11-25 00:26:21 +11001204 case '?':
1205 default:
1206 usage();
1207 }
1208 }
Darren Tucker06930c72003-12-31 11:34:51 +11001209
1210 /* reinit */
1211 log_init(av[0], log_level, SYSLOG_FACILITY_USER, 1);
1212
Damien Miller95def091999-11-25 00:26:21 +11001213 if (optind < ac) {
1214 printf("Too many arguments.\n");
1215 usage();
1216 }
1217 if (change_passphrase && change_comment) {
1218 printf("Can only have one of -p and -c.\n");
1219 usage();
1220 }
Damien Miller4b42d7f2005-03-01 21:48:35 +11001221 if (delete_host || hash_hosts || find_host)
1222 do_known_hosts(pw, rr_hostname);
Ben Lindstrom8fd372b2001-03-12 03:02:17 +00001223 if (print_fingerprint || print_bubblebabble)
Damien Miller95def091999-11-25 00:26:21 +11001224 do_fingerprint(pw);
Damien Miller95def091999-11-25 00:26:21 +11001225 if (change_passphrase)
1226 do_change_passphrase(pw);
Damien Miller4a10d2e2002-03-11 22:53:29 +11001227 if (change_comment)
1228 do_change_comment(pw);
Kevin Steves3a881912002-07-20 19:05:40 +00001229 if (convert_to_ssh2)
1230 do_convert_to_ssh2(pw);
1231 if (convert_from_ssh2)
1232 do_convert_from_ssh2(pw);
Damien Millereba71ba2000-04-29 23:57:08 +10001233 if (print_public)
1234 do_print_public(pw);
Damien Miller4b42d7f2005-03-01 21:48:35 +11001235 if (rr_hostname != NULL) {
Damien Millercb314822006-03-26 13:48:01 +11001236 unsigned int n = 0;
1237
1238 if (have_identity) {
1239 n = do_print_resource_record(pw,
1240 identity_file, rr_hostname);
1241 if (n == 0) {
1242 perror(identity_file);
1243 exit(1);
1244 }
1245 exit(0);
1246 } else {
1247
1248 n += do_print_resource_record(pw,
1249 _PATH_HOST_RSA_KEY_FILE, rr_hostname);
1250 n += do_print_resource_record(pw,
1251 _PATH_HOST_DSA_KEY_FILE, rr_hostname);
1252
1253 if (n == 0)
1254 fatal("no keys found.");
1255 exit(0);
1256 }
Damien Miller37876e92003-05-15 10:19:46 +10001257 }
Ben Lindstrom8282d6a2001-08-06 21:44:05 +00001258 if (reader_id != NULL) {
Ben Lindstrom6818bfb2001-08-06 21:40:04 +00001259#ifdef SMARTCARD
Ben Lindstrom8282d6a2001-08-06 21:44:05 +00001260 if (download)
1261 do_download(pw, reader_id);
1262 else
1263 do_upload(pw, reader_id);
Ben Lindstromffce1472001-08-06 21:57:31 +00001264#else /* SMARTCARD */
Ben Lindstrom6818bfb2001-08-06 21:40:04 +00001265 fatal("no support for smartcards.");
Ben Lindstromffce1472001-08-06 21:57:31 +00001266#endif /* SMARTCARD */
Ben Lindstrom8282d6a2001-08-06 21:44:05 +00001267 }
Damien Miller95def091999-11-25 00:26:21 +11001268
Darren Tucker019cefe2003-08-02 22:40:07 +10001269 if (do_gen_candidates) {
1270 FILE *out = fopen(out_file, "w");
Damien Miller787b2ec2003-11-21 23:56:47 +11001271
Darren Tucker019cefe2003-08-02 22:40:07 +10001272 if (out == NULL) {
1273 error("Couldn't open modulus candidate file \"%s\": %s",
1274 out_file, strerror(errno));
1275 return (1);
1276 }
Damien Miller3f54a9f2005-11-05 14:52:18 +11001277 if (bits == 0)
1278 bits = DEFAULT_BITS;
Darren Tucker019cefe2003-08-02 22:40:07 +10001279 if (gen_candidates(out, memory, bits, start) != 0)
Damien Miller15d72a02005-11-05 15:07:33 +11001280 fatal("modulus candidate generation failed");
Darren Tucker019cefe2003-08-02 22:40:07 +10001281
1282 return (0);
1283 }
1284
1285 if (do_screen_candidates) {
1286 FILE *in;
1287 FILE *out = fopen(out_file, "w");
1288
1289 if (have_identity && strcmp(identity_file, "-") != 0) {
1290 if ((in = fopen(identity_file, "r")) == NULL) {
1291 fatal("Couldn't open modulus candidate "
Damien Millera8e06ce2003-11-21 23:48:55 +11001292 "file \"%s\": %s", identity_file,
Darren Tucker019cefe2003-08-02 22:40:07 +10001293 strerror(errno));
1294 }
1295 } else
1296 in = stdin;
1297
1298 if (out == NULL) {
1299 fatal("Couldn't open moduli file \"%s\": %s",
1300 out_file, strerror(errno));
1301 }
1302 if (prime_test(in, out, trials, generator_wanted) != 0)
Damien Miller15d72a02005-11-05 15:07:33 +11001303 fatal("modulus screening failed");
Darren Tuckerf4220e62003-08-21 16:44:07 +10001304 return (0);
Darren Tucker019cefe2003-08-02 22:40:07 +10001305 }
1306
Damien Miller95def091999-11-25 00:26:21 +11001307 arc4random_stir();
1308
Damien Millerf14be5c2005-11-05 15:15:49 +11001309 if (key_type_name == NULL)
1310 key_type_name = "rsa";
1311
Damien Millere39cacc2000-11-29 12:18:44 +11001312 type = key_type_from_name(key_type_name);
1313 if (type == KEY_UNSPEC) {
1314 fprintf(stderr, "unknown key type %s\n", key_type_name);
1315 exit(1);
Damien Millereba71ba2000-04-29 23:57:08 +10001316 }
Damien Miller3f54a9f2005-11-05 14:52:18 +11001317 if (bits == 0)
1318 bits = (type == KEY_DSA) ? DEFAULT_BITS_DSA : DEFAULT_BITS;
Tim Rice660c3402005-11-28 17:45:32 -08001319 if (type == KEY_DSA && bits != 1024)
1320 fatal("DSA keys must be 1024 bits");
Darren Tucker3af2ac52005-11-29 13:10:24 +11001321 if (!quiet)
1322 printf("Generating public/private %s key pair.\n", key_type_name);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001323 private = key_generate(type, bits);
1324 if (private == NULL) {
1325 fprintf(stderr, "key_generate failed");
1326 exit(1);
1327 }
1328 public = key_from_private(private);
Damien Miller95def091999-11-25 00:26:21 +11001329
1330 if (!have_identity)
1331 ask_filename(pw, "Enter file in which to save the key");
1332
Damien Miller788f2122005-11-05 15:14:59 +11001333 /* Create ~/.ssh directory if it doesn't already exist. */
Ben Lindstrom226cfa02001-01-22 05:34:40 +00001334 snprintf(dotsshdir, sizeof dotsshdir, "%s/%s", pw->pw_dir, _PATH_SSH_USER_DIR);
Damien Miller95def091999-11-25 00:26:21 +11001335 if (strstr(identity_file, dotsshdir) != NULL &&
1336 stat(dotsshdir, &st) < 0) {
Damien Millerbe484b52000-07-15 14:14:16 +10001337 if (mkdir(dotsshdir, 0700) < 0)
Damien Miller95def091999-11-25 00:26:21 +11001338 error("Could not create directory '%s'.", dotsshdir);
1339 else if (!quiet)
1340 printf("Created directory '%s'.\n", dotsshdir);
1341 }
1342 /* If the file already exists, ask the user to confirm. */
1343 if (stat(identity_file, &st) >= 0) {
1344 char yesno[3];
1345 printf("%s already exists.\n", identity_file);
1346 printf("Overwrite (y/n)? ");
1347 fflush(stdout);
1348 if (fgets(yesno, sizeof(yesno), stdin) == NULL)
1349 exit(1);
1350 if (yesno[0] != 'y' && yesno[0] != 'Y')
1351 exit(1);
1352 }
1353 /* Ask for a passphrase (twice). */
1354 if (identity_passphrase)
1355 passphrase1 = xstrdup(identity_passphrase);
1356 else if (identity_new_passphrase)
1357 passphrase1 = xstrdup(identity_new_passphrase);
1358 else {
1359passphrase_again:
1360 passphrase1 =
Ben Lindstrom949974b2001-06-25 05:20:31 +00001361 read_passphrase("Enter passphrase (empty for no "
1362 "passphrase): ", RP_ALLOW_STDIN);
1363 passphrase2 = read_passphrase("Enter same passphrase again: ",
1364 RP_ALLOW_STDIN);
Damien Miller95def091999-11-25 00:26:21 +11001365 if (strcmp(passphrase1, passphrase2) != 0) {
Ben Lindstrom949974b2001-06-25 05:20:31 +00001366 /*
1367 * The passphrases do not match. Clear them and
1368 * retry.
1369 */
Damien Miller95def091999-11-25 00:26:21 +11001370 memset(passphrase1, 0, strlen(passphrase1));
1371 memset(passphrase2, 0, strlen(passphrase2));
1372 xfree(passphrase1);
1373 xfree(passphrase2);
1374 printf("Passphrases do not match. Try again.\n");
1375 goto passphrase_again;
1376 }
1377 /* Clear the other copy of the passphrase. */
1378 memset(passphrase2, 0, strlen(passphrase2));
1379 xfree(passphrase2);
1380 }
1381
Damien Miller95def091999-11-25 00:26:21 +11001382 if (identity_comment) {
1383 strlcpy(comment, identity_comment, sizeof(comment));
1384 } else {
Damien Miller4af51302000-04-16 11:18:38 +10001385 /* Create default commend field for the passphrase. */
Damien Miller95def091999-11-25 00:26:21 +11001386 snprintf(comment, sizeof comment, "%s@%s", pw->pw_name, hostname);
1387 }
1388
1389 /* Save the key with the given passphrase and comment. */
Ben Lindstromd0fca422001-03-26 13:44:06 +00001390 if (!key_save_private(private, identity_file, passphrase1, comment)) {
Ben Lindstrom15f33862001-04-16 02:00:02 +00001391 printf("Saving the key failed: %s.\n", identity_file);
Damien Miller95def091999-11-25 00:26:21 +11001392 memset(passphrase1, 0, strlen(passphrase1));
1393 xfree(passphrase1);
1394 exit(1);
1395 }
1396 /* Clear the passphrase. */
1397 memset(passphrase1, 0, strlen(passphrase1));
1398 xfree(passphrase1);
1399
1400 /* Clear the private key and the random number generator. */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001401 key_free(private);
Damien Miller95def091999-11-25 00:26:21 +11001402 arc4random_stir();
1403
1404 if (!quiet)
1405 printf("Your identification has been saved in %s.\n", identity_file);
1406
Damien Miller95def091999-11-25 00:26:21 +11001407 strlcat(identity_file, ".pub", sizeof(identity_file));
Ben Lindstrom5fc62702001-03-09 18:19:24 +00001408 fd = open(identity_file, O_WRONLY | O_CREAT | O_TRUNC, 0644);
1409 if (fd == -1) {
Damien Miller95def091999-11-25 00:26:21 +11001410 printf("Could not save your public key in %s\n", identity_file);
1411 exit(1);
1412 }
Ben Lindstrom5fc62702001-03-09 18:19:24 +00001413 f = fdopen(fd, "w");
1414 if (f == NULL) {
1415 printf("fdopen %s failed", identity_file);
1416 exit(1);
1417 }
Damien Millereba71ba2000-04-29 23:57:08 +10001418 if (!key_write(public, f))
1419 fprintf(stderr, "write key failed");
1420 fprintf(f, " %s\n", comment);
Damien Miller95def091999-11-25 00:26:21 +11001421 fclose(f);
1422
1423 if (!quiet) {
Ben Lindstromcfccef92001-03-13 04:57:58 +00001424 char *fp = key_fingerprint(public, SSH_FP_MD5, SSH_FP_HEX);
Damien Millereba71ba2000-04-29 23:57:08 +10001425 printf("Your public key has been saved in %s.\n",
1426 identity_file);
Damien Miller95def091999-11-25 00:26:21 +11001427 printf("The key fingerprint is:\n");
Ben Lindstromcfccef92001-03-13 04:57:58 +00001428 printf("%s %s\n", fp, comment);
1429 xfree(fp);
Damien Miller95def091999-11-25 00:26:21 +11001430 }
Damien Millereba71ba2000-04-29 23:57:08 +10001431
1432 key_free(public);
Damien Miller95def091999-11-25 00:26:21 +11001433 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001434}