blob: b6959ca111c6c6316b2742e1af29dd7b06d642a4 [file] [log] [blame]
Damien Miller57cf6382006-07-10 21:13:46 +10001/* $OpenBSD: ssh-keygen.c,v 1.147 2006/07/09 15:15:11 stevesk 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>
Damien Millere3b60b52006-07-10 21:08:03 +100018#include <sys/socket.h>
Damien Millerf17883e2006-03-15 11:45:54 +110019#include <sys/stat.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100020
Damien Millereba71ba2000-04-29 23:57:08 +100021#include <openssl/evp.h>
22#include <openssl/pem.h>
Damien Millereba71ba2000-04-29 23:57:08 +100023
Damien Miller57cf6382006-07-10 21:13:46 +100024#include <fcntl.h>
Damien Miller9f2abc42006-07-10 20:53:08 +100025#include <paths.h>
26#include <pwd.h>
27
Damien Millerd4a8b7e1999-10-27 13:42:43 +100028#include "xmalloc.h"
Damien Millereba71ba2000-04-29 23:57:08 +100029#include "key.h"
Ben Lindstromd09fcf52001-03-29 00:29:54 +000030#include "rsa.h"
Damien Millereba71ba2000-04-29 23:57:08 +100031#include "authfile.h"
32#include "uuencode.h"
Damien Miller874d77b2000-10-14 16:23:11 +110033#include "buffer.h"
34#include "bufaux.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000035#include "pathnames.h"
36#include "log.h"
Darren Tuckere608ca22004-05-13 16:15:47 +100037#include "misc.h"
Damien Miller4b42d7f2005-03-01 21:48:35 +110038#include "match.h"
39#include "hostfile.h"
Damien Miller69996102006-07-10 20:53:31 +100040#include "dns.h"
Damien Miller874d77b2000-10-14 16:23:11 +110041
Ben Lindstrom8282d6a2001-08-06 21:44:05 +000042#ifdef SMARTCARD
Ben Lindstrom8282d6a2001-08-06 21:44:05 +000043#include "scard.h"
Ben Lindstrombcc18082001-08-06 21:59:25 +000044#endif
Ben Lindstromcd392282001-07-04 03:44:03 +000045
Damien Miller3f54a9f2005-11-05 14:52:18 +110046/* Number of bits in the RSA/DSA key. This value can be set on the command line. */
47#define DEFAULT_BITS 2048
48#define DEFAULT_BITS_DSA 1024
49u_int32_t bits = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100050
Damien Miller5428f641999-11-25 11:54:57 +110051/*
52 * Flag indicating that we just want to change the passphrase. This can be
53 * set on the command line.
54 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100055int change_passphrase = 0;
56
Damien Miller5428f641999-11-25 11:54:57 +110057/*
58 * Flag indicating that we just want to change the comment. This can be set
59 * on the command line.
60 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100061int change_comment = 0;
62
63int quiet = 0;
64
Damien Miller4b42d7f2005-03-01 21:48:35 +110065/* Flag indicating that we want to hash a known_hosts file */
66int hash_hosts = 0;
67/* Flag indicating that we want lookup a host in known_hosts file */
68int find_host = 0;
69/* Flag indicating that we want to delete a host from a known_hosts file */
70int delete_host = 0;
71
Damien Miller10f6f6b1999-11-17 17:29:08 +110072/* Flag indicating that we just want to see the key fingerprint */
73int print_fingerprint = 0;
Ben Lindstrom8fd372b2001-03-12 03:02:17 +000074int print_bubblebabble = 0;
Damien Miller10f6f6b1999-11-17 17:29:08 +110075
Damien Miller431f66b1999-11-21 18:31:57 +110076/* The identity file name, given on the command line or entered by the user. */
77char identity_file[1024];
78int have_identity = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100079
80/* This is set to the passphrase if given on the command line. */
81char *identity_passphrase = NULL;
82
83/* This is set to the new passphrase if given on the command line. */
84char *identity_new_passphrase = NULL;
85
86/* This is set to the new comment if given on the command line. */
87char *identity_comment = NULL;
88
Damien Millereba71ba2000-04-29 23:57:08 +100089/* Dump public key file in format used by real and the original SSH 2 */
90int convert_to_ssh2 = 0;
91int convert_from_ssh2 = 0;
92int print_public = 0;
Damien Miller37876e92003-05-15 10:19:46 +100093int print_generic = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +110094
Damien Millera41c8b12002-01-22 23:05:08 +110095char *key_type_name = NULL;
Damien Millereba71ba2000-04-29 23:57:08 +100096
Damien Miller431f66b1999-11-21 18:31:57 +110097/* argv0 */
98extern char *__progname;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100099
Damien Millereba71ba2000-04-29 23:57:08 +1000100char hostname[MAXHOSTNAMELEN];
101
Darren Tucker770fc012004-05-13 16:24:32 +1000102/* moduli.c */
Damien Millerb089fb52005-05-26 12:16:18 +1000103int gen_candidates(FILE *, u_int32_t, u_int32_t, BIGNUM *);
Darren Tucker770fc012004-05-13 16:24:32 +1000104int prime_test(FILE *, FILE *, u_int32_t, u_int32_t);
105
Ben Lindstrombba81212001-06-25 05:01:22 +0000106static void
Damien Miller431f66b1999-11-21 18:31:57 +1100107ask_filename(struct passwd *pw, const char *prompt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000108{
Damien Miller95def091999-11-25 00:26:21 +1100109 char buf[1024];
Damien Millere39cacc2000-11-29 12:18:44 +1100110 char *name = NULL;
111
Damien Miller993dd552002-02-19 15:22:47 +1100112 if (key_type_name == NULL)
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000113 name = _PATH_SSH_CLIENT_ID_RSA;
Damien Miller90967402006-03-26 14:07:26 +1100114 else {
Damien Miller993dd552002-02-19 15:22:47 +1100115 switch (key_type_from_name(key_type_name)) {
116 case KEY_RSA1:
117 name = _PATH_SSH_CLIENT_IDENTITY;
118 break;
119 case KEY_DSA:
120 name = _PATH_SSH_CLIENT_ID_DSA;
121 break;
122 case KEY_RSA:
123 name = _PATH_SSH_CLIENT_ID_RSA;
124 break;
125 default:
126 fprintf(stderr, "bad key type");
127 exit(1);
128 break;
129 }
Damien Miller90967402006-03-26 14:07:26 +1100130 }
Damien Millere39cacc2000-11-29 12:18:44 +1100131 snprintf(identity_file, sizeof(identity_file), "%s/%s", pw->pw_dir, name);
Ben Lindstrom3deda8b2000-12-22 20:27:43 +0000132 fprintf(stderr, "%s (%s): ", prompt, identity_file);
Damien Miller95def091999-11-25 00:26:21 +1100133 if (fgets(buf, sizeof(buf), stdin) == NULL)
134 exit(1);
135 if (strchr(buf, '\n'))
136 *strchr(buf, '\n') = 0;
137 if (strcmp(buf, "") != 0)
138 strlcpy(identity_file, buf, sizeof(identity_file));
139 have_identity = 1;
Damien Miller10f6f6b1999-11-17 17:29:08 +1100140}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000141
Ben Lindstrombba81212001-06-25 05:01:22 +0000142static Key *
Ben Lindstromd78ae762001-06-05 20:35:09 +0000143load_identity(char *filename)
Damien Millereba71ba2000-04-29 23:57:08 +1000144{
Ben Lindstromd0fca422001-03-26 13:44:06 +0000145 char *pass;
146 Key *prv;
147
Ben Lindstroma3700052001-04-05 23:26:32 +0000148 prv = key_load_private(filename, "", NULL);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000149 if (prv == NULL) {
Ben Lindstromd78ae762001-06-05 20:35:09 +0000150 if (identity_passphrase)
151 pass = xstrdup(identity_passphrase);
152 else
Ben Lindstrom949974b2001-06-25 05:20:31 +0000153 pass = read_passphrase("Enter passphrase: ",
154 RP_ALLOW_STDIN);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000155 prv = key_load_private(filename, pass, NULL);
Damien Millereba71ba2000-04-29 23:57:08 +1000156 memset(pass, 0, strlen(pass));
157 xfree(pass);
158 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000159 return prv;
Damien Millereba71ba2000-04-29 23:57:08 +1000160}
161
Damien Miller874d77b2000-10-14 16:23:11 +1100162#define SSH_COM_PUBLIC_BEGIN "---- BEGIN SSH2 PUBLIC KEY ----"
Ben Lindstromcb72e4f2002-06-21 00:41:51 +0000163#define SSH_COM_PUBLIC_END "---- END SSH2 PUBLIC KEY ----"
Damien Miller874d77b2000-10-14 16:23:11 +1100164#define SSH_COM_PRIVATE_BEGIN "---- BEGIN SSH2 ENCRYPTED PRIVATE KEY ----"
Kevin Stevesef4eea92001-02-05 12:42:17 +0000165#define SSH_COM_PRIVATE_KEY_MAGIC 0x3f6ff9eb
Damien Millereba71ba2000-04-29 23:57:08 +1000166
Ben Lindstrombba81212001-06-25 05:01:22 +0000167static void
Damien Millereba71ba2000-04-29 23:57:08 +1000168do_convert_to_ssh2(struct passwd *pw)
169{
Ben Lindstrom46c264f2001-04-24 16:56:58 +0000170 Key *k;
Ben Lindstromc58ab022002-02-26 18:15:09 +0000171 u_int len;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000172 u_char *blob;
Damien Millereba71ba2000-04-29 23:57:08 +1000173 struct stat st;
174
175 if (!have_identity)
176 ask_filename(pw, "Enter file in which the key is");
177 if (stat(identity_file, &st) < 0) {
178 perror(identity_file);
179 exit(1);
180 }
Ben Lindstrom46c264f2001-04-24 16:56:58 +0000181 if ((k = key_load_public(identity_file, NULL)) == NULL) {
Ben Lindstromd78ae762001-06-05 20:35:09 +0000182 if ((k = load_identity(identity_file)) == NULL) {
Ben Lindstrom46c264f2001-04-24 16:56:58 +0000183 fprintf(stderr, "load failed\n");
184 exit(1);
185 }
Damien Millereba71ba2000-04-29 23:57:08 +1000186 }
Damien Millerdb274722003-05-14 13:45:22 +1000187 if (k->type == KEY_RSA1) {
188 fprintf(stderr, "version 1 keys are not supported\n");
189 exit(1);
190 }
Ben Lindstrom99a30f12001-09-18 05:49:14 +0000191 if (key_to_blob(k, &blob, &len) <= 0) {
192 fprintf(stderr, "key_to_blob failed\n");
193 exit(1);
194 }
Damien Miller874d77b2000-10-14 16:23:11 +1100195 fprintf(stdout, "%s\n", SSH_COM_PUBLIC_BEGIN);
Damien Millereba71ba2000-04-29 23:57:08 +1000196 fprintf(stdout,
Ben Lindstrom58d3b722002-06-23 21:28:13 +0000197 "Comment: \"%u-bit %s, converted from OpenSSH by %s@%s\"\n",
Ben Lindstrom46c264f2001-04-24 16:56:58 +0000198 key_size(k), key_type(k),
Damien Millereba71ba2000-04-29 23:57:08 +1000199 pw->pw_name, hostname);
200 dump_base64(stdout, blob, len);
Damien Miller874d77b2000-10-14 16:23:11 +1100201 fprintf(stdout, "%s\n", SSH_COM_PUBLIC_END);
Ben Lindstrom46c264f2001-04-24 16:56:58 +0000202 key_free(k);
Damien Millereba71ba2000-04-29 23:57:08 +1000203 xfree(blob);
204 exit(0);
205}
206
Ben Lindstrombba81212001-06-25 05:01:22 +0000207static void
Damien Miller874d77b2000-10-14 16:23:11 +1100208buffer_get_bignum_bits(Buffer *b, BIGNUM *value)
209{
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000210 u_int bignum_bits = buffer_get_int(b);
211 u_int bytes = (bignum_bits + 7) / 8;
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000212
Damien Miller874d77b2000-10-14 16:23:11 +1100213 if (buffer_len(b) < bytes)
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000214 fatal("buffer_get_bignum_bits: input buffer too small: "
215 "need %d have %d", bytes, buffer_len(b));
Damien Miller708d21c2002-01-22 23:18:15 +1100216 BN_bin2bn(buffer_ptr(b), bytes, value);
Damien Miller874d77b2000-10-14 16:23:11 +1100217 buffer_consume(b, bytes);
218}
219
Ben Lindstrombba81212001-06-25 05:01:22 +0000220static Key *
Ben Lindstrom90fd8142002-02-26 18:09:42 +0000221do_convert_private_ssh2_from_blob(u_char *blob, u_int blen)
Damien Miller874d77b2000-10-14 16:23:11 +1100222{
223 Buffer b;
Damien Miller874d77b2000-10-14 16:23:11 +1100224 Key *key = NULL;
Damien Miller874d77b2000-10-14 16:23:11 +1100225 char *type, *cipher;
Ben Lindstrom511d69e2001-07-04 05:05:27 +0000226 u_char *sig, data[] = "abcde12345";
Ben Lindstrome586c4c2001-06-25 05:04:58 +0000227 int magic, rlen, ktype, i1, i2, i3, i4;
228 u_int slen;
229 u_long e;
Damien Miller874d77b2000-10-14 16:23:11 +1100230
231 buffer_init(&b);
232 buffer_append(&b, blob, blen);
233
234 magic = buffer_get_int(&b);
235 if (magic != SSH_COM_PRIVATE_KEY_MAGIC) {
236 error("bad magic 0x%x != 0x%x", magic, SSH_COM_PRIVATE_KEY_MAGIC);
237 buffer_free(&b);
238 return NULL;
239 }
Ben Lindstrom34f91882001-06-25 04:47:54 +0000240 i1 = buffer_get_int(&b);
Damien Miller874d77b2000-10-14 16:23:11 +1100241 type = buffer_get_string(&b, NULL);
242 cipher = buffer_get_string(&b, NULL);
Ben Lindstrom34f91882001-06-25 04:47:54 +0000243 i2 = buffer_get_int(&b);
244 i3 = buffer_get_int(&b);
245 i4 = buffer_get_int(&b);
246 debug("ignore (%d %d %d %d)", i1,i2,i3,i4);
Damien Miller874d77b2000-10-14 16:23:11 +1100247 if (strcmp(cipher, "none") != 0) {
248 error("unsupported cipher %s", cipher);
249 xfree(cipher);
250 buffer_free(&b);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000251 xfree(type);
Damien Miller874d77b2000-10-14 16:23:11 +1100252 return NULL;
253 }
254 xfree(cipher);
255
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000256 if (strstr(type, "dsa")) {
257 ktype = KEY_DSA;
258 } else if (strstr(type, "rsa")) {
259 ktype = KEY_RSA;
260 } else {
Darren Tucker7cfeecf2005-01-20 10:56:31 +1100261 buffer_free(&b);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000262 xfree(type);
Damien Miller874d77b2000-10-14 16:23:11 +1100263 return NULL;
264 }
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000265 key = key_new_private(ktype);
266 xfree(type);
267
268 switch (key->type) {
269 case KEY_DSA:
270 buffer_get_bignum_bits(&b, key->dsa->p);
271 buffer_get_bignum_bits(&b, key->dsa->g);
272 buffer_get_bignum_bits(&b, key->dsa->q);
273 buffer_get_bignum_bits(&b, key->dsa->pub_key);
274 buffer_get_bignum_bits(&b, key->dsa->priv_key);
275 break;
276 case KEY_RSA:
Ben Lindstrom34f91882001-06-25 04:47:54 +0000277 e = buffer_get_char(&b);
278 debug("e %lx", e);
279 if (e < 30) {
280 e <<= 8;
281 e += buffer_get_char(&b);
282 debug("e %lx", e);
283 e <<= 8;
284 e += buffer_get_char(&b);
285 debug("e %lx", e);
286 }
287 if (!BN_set_word(key->rsa->e, e)) {
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000288 buffer_free(&b);
289 key_free(key);
290 return NULL;
291 }
292 buffer_get_bignum_bits(&b, key->rsa->d);
293 buffer_get_bignum_bits(&b, key->rsa->n);
294 buffer_get_bignum_bits(&b, key->rsa->iqmp);
295 buffer_get_bignum_bits(&b, key->rsa->q);
296 buffer_get_bignum_bits(&b, key->rsa->p);
Ben Lindstromf7297dd2001-07-04 05:02:23 +0000297 rsa_generate_additional_parameters(key->rsa);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000298 break;
299 }
Damien Miller874d77b2000-10-14 16:23:11 +1100300 rlen = buffer_len(&b);
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +0000301 if (rlen != 0)
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000302 error("do_convert_private_ssh2_from_blob: "
303 "remaining bytes in key blob %d", rlen);
Damien Miller874d77b2000-10-14 16:23:11 +1100304 buffer_free(&b);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000305
Ben Lindstrome586c4c2001-06-25 05:04:58 +0000306 /* try the key */
307 key_sign(key, &sig, &slen, data, sizeof(data));
308 key_verify(key, sig, slen, data, sizeof(data));
309 xfree(sig);
Damien Miller874d77b2000-10-14 16:23:11 +1100310 return key;
311}
312
Damien Miller8056a9d2006-03-15 12:05:40 +1100313static int
314get_line(FILE *fp, char *line, size_t len)
315{
316 int c;
317 size_t pos = 0;
318
319 line[0] = '\0';
320 while ((c = fgetc(fp)) != EOF) {
321 if (pos >= len - 1) {
322 fprintf(stderr, "input line too long.\n");
323 exit(1);
324 }
Damien Miller90967402006-03-26 14:07:26 +1100325 switch (c) {
Damien Miller8056a9d2006-03-15 12:05:40 +1100326 case '\r':
327 c = fgetc(fp);
328 if (c != EOF && c != '\n' && ungetc(c, fp) == EOF) {
329 fprintf(stderr, "unget: %s\n", strerror(errno));
330 exit(1);
331 }
332 return pos;
333 case '\n':
334 return pos;
335 }
336 line[pos++] = c;
337 line[pos] = '\0';
338 }
Damien Millere23209f2006-03-31 23:13:35 +1100339 if (c == EOF)
340 return -1;
Damien Miller8056a9d2006-03-15 12:05:40 +1100341 return pos;
342}
343
Ben Lindstrombba81212001-06-25 05:01:22 +0000344static void
Damien Millereba71ba2000-04-29 23:57:08 +1000345do_convert_from_ssh2(struct passwd *pw)
346{
347 Key *k;
348 int blen;
Ben Lindstrom155b9812002-04-02 20:26:26 +0000349 u_int len;
Damien Miller8056a9d2006-03-15 12:05:40 +1100350 char line[1024];
Ben Lindstrom9e0ddd42001-09-18 05:41:19 +0000351 u_char blob[8096];
Damien Millereba71ba2000-04-29 23:57:08 +1000352 char encoded[8096];
353 struct stat st;
Damien Miller874d77b2000-10-14 16:23:11 +1100354 int escaped = 0, private = 0, ok;
Damien Millereba71ba2000-04-29 23:57:08 +1000355 FILE *fp;
356
357 if (!have_identity)
358 ask_filename(pw, "Enter file in which the key is");
359 if (stat(identity_file, &st) < 0) {
360 perror(identity_file);
361 exit(1);
362 }
363 fp = fopen(identity_file, "r");
364 if (fp == NULL) {
365 perror(identity_file);
366 exit(1);
367 }
368 encoded[0] = '\0';
Damien Miller8056a9d2006-03-15 12:05:40 +1100369 while ((blen = get_line(fp, line, sizeof(line))) != -1) {
370 if (line[blen - 1] == '\\')
Damien Miller30c3d422000-05-09 11:02:59 +1000371 escaped++;
Damien Millereba71ba2000-04-29 23:57:08 +1000372 if (strncmp(line, "----", 4) == 0 ||
373 strstr(line, ": ") != NULL) {
Damien Miller874d77b2000-10-14 16:23:11 +1100374 if (strstr(line, SSH_COM_PRIVATE_BEGIN) != NULL)
375 private = 1;
Ben Lindstrome586c4c2001-06-25 05:04:58 +0000376 if (strstr(line, " END ") != NULL) {
377 break;
378 }
Ben Lindstrom30358602001-04-24 16:59:28 +0000379 /* fprintf(stderr, "ignore: %s", line); */
Damien Millereba71ba2000-04-29 23:57:08 +1000380 continue;
381 }
Damien Miller30c3d422000-05-09 11:02:59 +1000382 if (escaped) {
383 escaped--;
Ben Lindstrom30358602001-04-24 16:59:28 +0000384 /* fprintf(stderr, "escaped: %s", line); */
Damien Miller30c3d422000-05-09 11:02:59 +1000385 continue;
Damien Millereba71ba2000-04-29 23:57:08 +1000386 }
Damien Millereba71ba2000-04-29 23:57:08 +1000387 strlcat(encoded, line, sizeof(encoded));
388 }
Ben Lindstrom155b9812002-04-02 20:26:26 +0000389 len = strlen(encoded);
390 if (((len % 4) == 3) &&
391 (encoded[len-1] == '=') &&
392 (encoded[len-2] == '=') &&
393 (encoded[len-3] == '='))
394 encoded[len-3] = '\0';
Damien Miller4a8ed542002-01-22 23:33:31 +1100395 blen = uudecode(encoded, blob, sizeof(blob));
Damien Millereba71ba2000-04-29 23:57:08 +1000396 if (blen < 0) {
397 fprintf(stderr, "uudecode failed.\n");
398 exit(1);
399 }
Damien Miller874d77b2000-10-14 16:23:11 +1100400 k = private ?
401 do_convert_private_ssh2_from_blob(blob, blen) :
Damien Miller0bc1bd82000-11-13 22:57:25 +1100402 key_from_blob(blob, blen);
Damien Miller874d77b2000-10-14 16:23:11 +1100403 if (k == NULL) {
404 fprintf(stderr, "decode blob failed.\n");
405 exit(1);
406 }
407 ok = private ?
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000408 (k->type == KEY_DSA ?
409 PEM_write_DSAPrivateKey(stdout, k->dsa, NULL, NULL, 0, NULL, NULL) :
410 PEM_write_RSAPrivateKey(stdout, k->rsa, NULL, NULL, 0, NULL, NULL)) :
Damien Miller874d77b2000-10-14 16:23:11 +1100411 key_write(k, stdout);
412 if (!ok) {
413 fprintf(stderr, "key write failed");
414 exit(1);
415 }
Damien Millereba71ba2000-04-29 23:57:08 +1000416 key_free(k);
Damien Millera1db12b2002-01-22 23:20:15 +1100417 if (!private)
418 fprintf(stdout, "\n");
Damien Millereba71ba2000-04-29 23:57:08 +1000419 fclose(fp);
420 exit(0);
421}
422
Ben Lindstrombba81212001-06-25 05:01:22 +0000423static void
Damien Millereba71ba2000-04-29 23:57:08 +1000424do_print_public(struct passwd *pw)
425{
Ben Lindstromd0fca422001-03-26 13:44:06 +0000426 Key *prv;
Damien Millereba71ba2000-04-29 23:57:08 +1000427 struct stat st;
428
429 if (!have_identity)
430 ask_filename(pw, "Enter file in which the key is");
431 if (stat(identity_file, &st) < 0) {
432 perror(identity_file);
433 exit(1);
434 }
Ben Lindstromd78ae762001-06-05 20:35:09 +0000435 prv = load_identity(identity_file);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000436 if (prv == NULL) {
Damien Millereba71ba2000-04-29 23:57:08 +1000437 fprintf(stderr, "load failed\n");
438 exit(1);
439 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000440 if (!key_write(prv, stdout))
Damien Millereba71ba2000-04-29 23:57:08 +1000441 fprintf(stderr, "key_write failed");
Ben Lindstromd0fca422001-03-26 13:44:06 +0000442 key_free(prv);
Damien Millereba71ba2000-04-29 23:57:08 +1000443 fprintf(stdout, "\n");
444 exit(0);
445}
446
Ben Lindstrom6818bfb2001-08-06 21:40:04 +0000447#ifdef SMARTCARD
Ben Lindstromcd392282001-07-04 03:44:03 +0000448static void
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000449do_upload(struct passwd *pw, const char *sc_reader_id)
Ben Lindstromcd392282001-07-04 03:44:03 +0000450{
Ben Lindstromcd392282001-07-04 03:44:03 +0000451 Key *prv = NULL;
452 struct stat st;
Ben Lindstrom70e3ad82002-03-22 03:33:43 +0000453 int ret;
Ben Lindstromcd392282001-07-04 03:44:03 +0000454
455 if (!have_identity)
456 ask_filename(pw, "Enter file in which the key is");
457 if (stat(identity_file, &st) < 0) {
458 perror(identity_file);
Ben Lindstrom70e3ad82002-03-22 03:33:43 +0000459 exit(1);
Ben Lindstromcd392282001-07-04 03:44:03 +0000460 }
461 prv = load_identity(identity_file);
462 if (prv == NULL) {
463 error("load failed");
Ben Lindstrom70e3ad82002-03-22 03:33:43 +0000464 exit(1);
Ben Lindstromcd392282001-07-04 03:44:03 +0000465 }
Ben Lindstrom70e3ad82002-03-22 03:33:43 +0000466 ret = sc_put_key(prv, sc_reader_id);
467 key_free(prv);
468 if (ret < 0)
469 exit(1);
Damien Miller996acd22003-04-09 20:59:48 +1000470 logit("loading key done");
Ben Lindstrom70e3ad82002-03-22 03:33:43 +0000471 exit(0);
Ben Lindstromcd392282001-07-04 03:44:03 +0000472}
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000473
474static void
475do_download(struct passwd *pw, const char *sc_reader_id)
476{
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000477 Key **keys = NULL;
478 int i;
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000479
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000480 keys = sc_get_keys(sc_reader_id, NULL);
481 if (keys == NULL)
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000482 fatal("cannot read public key from smartcard");
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000483 for (i = 0; keys[i]; i++) {
484 key_write(keys[i], stdout);
485 key_free(keys[i]);
486 fprintf(stdout, "\n");
487 }
488 xfree(keys);
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000489 exit(0);
490}
Ben Lindstromffce1472001-08-06 21:57:31 +0000491#endif /* SMARTCARD */
Ben Lindstromcd392282001-07-04 03:44:03 +0000492
Ben Lindstrombba81212001-06-25 05:01:22 +0000493static void
Damien Miller10f6f6b1999-11-17 17:29:08 +1100494do_fingerprint(struct passwd *pw)
495{
Damien Miller98c7ad62000-03-09 21:27:49 +1100496 FILE *f;
Damien Millereba71ba2000-04-29 23:57:08 +1000497 Key *public;
Ben Lindstrom8fd372b2001-03-12 03:02:17 +0000498 char *comment = NULL, *cp, *ep, line[16*1024], *fp;
Ben Lindstrom65366a82001-12-06 16:32:47 +0000499 int i, skip = 0, num = 1, invalid = 1;
500 enum fp_rep rep;
501 enum fp_type fptype;
Damien Miller95def091999-11-25 00:26:21 +1100502 struct stat st;
Damien Miller10f6f6b1999-11-17 17:29:08 +1100503
Ben Lindstromd0fca422001-03-26 13:44:06 +0000504 fptype = print_bubblebabble ? SSH_FP_SHA1 : SSH_FP_MD5;
505 rep = print_bubblebabble ? SSH_FP_BUBBLEBABBLE : SSH_FP_HEX;
Ben Lindstrom8fd372b2001-03-12 03:02:17 +0000506
Damien Miller95def091999-11-25 00:26:21 +1100507 if (!have_identity)
508 ask_filename(pw, "Enter file in which the key is");
509 if (stat(identity_file, &st) < 0) {
510 perror(identity_file);
511 exit(1);
512 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000513 public = key_load_public(identity_file, &comment);
514 if (public != NULL) {
515 fp = key_fingerprint(public, fptype, rep);
Ben Lindstrom58d3b722002-06-23 21:28:13 +0000516 printf("%u %s %s\n", key_size(public), fp, comment);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100517 key_free(public);
518 xfree(comment);
Ben Lindstrom8fd372b2001-03-12 03:02:17 +0000519 xfree(fp);
Damien Miller98c7ad62000-03-09 21:27:49 +1100520 exit(0);
521 }
Damien Miller40b59852006-06-13 13:00:25 +1000522 if (comment) {
Ben Lindstromd0fca422001-03-26 13:44:06 +0000523 xfree(comment);
Damien Miller40b59852006-06-13 13:00:25 +1000524 comment = NULL;
525 }
Damien Miller98c7ad62000-03-09 21:27:49 +1100526
527 f = fopen(identity_file, "r");
528 if (f != NULL) {
Damien Miller98c7ad62000-03-09 21:27:49 +1100529 while (fgets(line, sizeof(line), f)) {
530 i = strlen(line) - 1;
531 if (line[i] != '\n') {
532 error("line %d too long: %.40s...", num, line);
533 skip = 1;
534 continue;
Damien Miller95def091999-11-25 00:26:21 +1100535 }
Damien Miller98c7ad62000-03-09 21:27:49 +1100536 num++;
537 if (skip) {
538 skip = 0;
539 continue;
540 }
541 line[i] = '\0';
542
543 /* Skip leading whitespace, empty and comment lines. */
544 for (cp = line; *cp == ' ' || *cp == '\t'; cp++)
545 ;
546 if (!*cp || *cp == '\n' || *cp == '#')
547 continue ;
548 i = strtol(cp, &ep, 10);
549 if (i == 0 || ep == NULL || (*ep != ' ' && *ep != '\t')) {
550 int quoted = 0;
551 comment = cp;
Ben Lindstrom58d3b722002-06-23 21:28:13 +0000552 for (; *cp && (quoted || (*cp != ' ' &&
553 *cp != '\t')); cp++) {
Damien Miller98c7ad62000-03-09 21:27:49 +1100554 if (*cp == '\\' && cp[1] == '"')
555 cp++; /* Skip both */
556 else if (*cp == '"')
557 quoted = !quoted;
558 }
559 if (!*cp)
560 continue;
561 *cp++ = '\0';
562 }
563 ep = cp;
Ben Lindstrom2941f112000-12-29 16:50:13 +0000564 public = key_new(KEY_RSA1);
565 if (key_read(public, &cp) != 1) {
566 cp = ep;
567 key_free(public);
568 public = key_new(KEY_UNSPEC);
569 if (key_read(public, &cp) != 1) {
570 key_free(public);
571 continue;
572 }
Damien Miller98c7ad62000-03-09 21:27:49 +1100573 }
Ben Lindstrom2941f112000-12-29 16:50:13 +0000574 comment = *cp ? cp : comment;
Ben Lindstromd0fca422001-03-26 13:44:06 +0000575 fp = key_fingerprint(public, fptype, rep);
Ben Lindstrom58d3b722002-06-23 21:28:13 +0000576 printf("%u %s %s\n", key_size(public), fp,
Ben Lindstrom2941f112000-12-29 16:50:13 +0000577 comment ? comment : "no comment");
Ben Lindstrom8fd372b2001-03-12 03:02:17 +0000578 xfree(fp);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000579 key_free(public);
Ben Lindstrom2941f112000-12-29 16:50:13 +0000580 invalid = 0;
Damien Miller95def091999-11-25 00:26:21 +1100581 }
Damien Miller98c7ad62000-03-09 21:27:49 +1100582 fclose(f);
Damien Miller95def091999-11-25 00:26:21 +1100583 }
Damien Miller98c7ad62000-03-09 21:27:49 +1100584 if (invalid) {
Damien Millereb5fec62001-11-12 10:52:44 +1100585 printf("%s is not a public key file.\n", identity_file);
Damien Miller98c7ad62000-03-09 21:27:49 +1100586 exit(1);
587 }
Damien Miller95def091999-11-25 00:26:21 +1100588 exit(0);
Damien Miller10f6f6b1999-11-17 17:29:08 +1100589}
590
Damien Miller4b42d7f2005-03-01 21:48:35 +1100591static void
592print_host(FILE *f, char *name, Key *public, int hash)
593{
594 if (hash && (name = host_hash(name, NULL, 0)) == NULL)
595 fatal("hash_host failed");
596 fprintf(f, "%s ", name);
597 if (!key_write(public, f))
598 fatal("key_write failed");
599 fprintf(f, "\n");
600}
601
602static void
603do_known_hosts(struct passwd *pw, const char *name)
604{
605 FILE *in, *out = stdout;
606 Key *public;
607 char *cp, *cp2, *kp, *kp2;
608 char line[16*1024], tmp[MAXPATHLEN], old[MAXPATHLEN];
609 int c, i, skip = 0, inplace = 0, num = 0, invalid = 0, has_unhashed = 0;
610
611 if (!have_identity) {
612 cp = tilde_expand_filename(_PATH_SSH_USER_HOSTFILE, pw->pw_uid);
613 if (strlcpy(identity_file, cp, sizeof(identity_file)) >=
614 sizeof(identity_file))
615 fatal("Specified known hosts path too long");
616 xfree(cp);
617 have_identity = 1;
618 }
619 if ((in = fopen(identity_file, "r")) == NULL)
620 fatal("fopen: %s", strerror(errno));
621
622 /*
623 * Find hosts goes to stdout, hash and deletions happen in-place
624 * A corner case is ssh-keygen -HF foo, which should go to stdout
625 */
626 if (!find_host && (hash_hosts || delete_host)) {
627 if (strlcpy(tmp, identity_file, sizeof(tmp)) >= sizeof(tmp) ||
628 strlcat(tmp, ".XXXXXXXXXX", sizeof(tmp)) >= sizeof(tmp) ||
629 strlcpy(old, identity_file, sizeof(old)) >= sizeof(old) ||
630 strlcat(old, ".old", sizeof(old)) >= sizeof(old))
631 fatal("known_hosts path too long");
632 umask(077);
633 if ((c = mkstemp(tmp)) == -1)
634 fatal("mkstemp: %s", strerror(errno));
635 if ((out = fdopen(c, "w")) == NULL) {
636 c = errno;
637 unlink(tmp);
638 fatal("fdopen: %s", strerror(c));
639 }
640 inplace = 1;
641 }
642
643 while (fgets(line, sizeof(line), in)) {
644 num++;
645 i = strlen(line) - 1;
646 if (line[i] != '\n') {
647 error("line %d too long: %.40s...", num, line);
648 skip = 1;
649 invalid = 1;
650 continue;
651 }
652 if (skip) {
653 skip = 0;
654 continue;
655 }
656 line[i] = '\0';
657
658 /* Skip leading whitespace, empty and comment lines. */
659 for (cp = line; *cp == ' ' || *cp == '\t'; cp++)
660 ;
661 if (!*cp || *cp == '\n' || *cp == '#') {
662 if (inplace)
663 fprintf(out, "%s\n", cp);
664 continue;
665 }
666 /* Find the end of the host name portion. */
667 for (kp = cp; *kp && *kp != ' ' && *kp != '\t'; kp++)
668 ;
669 if (*kp == '\0' || *(kp + 1) == '\0') {
670 error("line %d missing key: %.40s...",
671 num, line);
672 invalid = 1;
673 continue;
674 }
675 *kp++ = '\0';
676 kp2 = kp;
677
678 public = key_new(KEY_RSA1);
679 if (key_read(public, &kp) != 1) {
680 kp = kp2;
681 key_free(public);
682 public = key_new(KEY_UNSPEC);
683 if (key_read(public, &kp) != 1) {
684 error("line %d invalid key: %.40s...",
685 num, line);
686 key_free(public);
687 invalid = 1;
688 continue;
689 }
690 }
691
692 if (*cp == HASH_DELIM) {
693 if (find_host || delete_host) {
694 cp2 = host_hash(name, cp, strlen(cp));
695 if (cp2 == NULL) {
696 error("line %d: invalid hashed "
697 "name: %.64s...", num, line);
698 invalid = 1;
699 continue;
700 }
701 c = (strcmp(cp2, cp) == 0);
702 if (find_host && c) {
703 printf("# Host %s found: "
704 "line %d type %s\n", name,
705 num, key_type(public));
706 print_host(out, cp, public, 0);
707 }
708 if (delete_host && !c)
709 print_host(out, cp, public, 0);
710 } else if (hash_hosts)
711 print_host(out, cp, public, 0);
712 } else {
713 if (find_host || delete_host) {
714 c = (match_hostname(name, cp,
715 strlen(cp)) == 1);
716 if (find_host && c) {
717 printf("# Host %s found: "
718 "line %d type %s\n", name,
719 num, key_type(public));
720 print_host(out, cp, public, hash_hosts);
721 }
722 if (delete_host && !c)
723 print_host(out, cp, public, 0);
724 } else if (hash_hosts) {
Darren Tucker47eede72005-03-14 23:08:12 +1100725 for (cp2 = strsep(&cp, ",");
Damien Miller4b42d7f2005-03-01 21:48:35 +1100726 cp2 != NULL && *cp2 != '\0';
Damien Miller89eac802005-03-02 12:33:04 +1100727 cp2 = strsep(&cp, ",")) {
728 if (strcspn(cp2, "*?!") != strlen(cp2))
729 fprintf(stderr, "Warning: "
730 "ignoring host name with "
731 "metacharacters: %.64s\n",
732 cp2);
733 else
734 print_host(out, cp2, public, 1);
735 }
Damien Miller4b42d7f2005-03-01 21:48:35 +1100736 has_unhashed = 1;
737 }
738 }
739 key_free(public);
740 }
741 fclose(in);
742
743 if (invalid) {
744 fprintf(stderr, "%s is not a valid known_host file.\n",
745 identity_file);
746 if (inplace) {
747 fprintf(stderr, "Not replacing existing known_hosts "
Darren Tucker9f438a92005-03-14 23:09:18 +1100748 "file because of errors\n");
Damien Miller4b42d7f2005-03-01 21:48:35 +1100749 fclose(out);
750 unlink(tmp);
751 }
752 exit(1);
753 }
754
755 if (inplace) {
756 fclose(out);
757
758 /* Backup existing file */
759 if (unlink(old) == -1 && errno != ENOENT)
760 fatal("unlink %.100s: %s", old, strerror(errno));
761 if (link(identity_file, old) == -1)
762 fatal("link %.100s to %.100s: %s", identity_file, old,
763 strerror(errno));
764 /* Move new one into place */
765 if (rename(tmp, identity_file) == -1) {
766 error("rename\"%s\" to \"%s\": %s", tmp, identity_file,
767 strerror(errno));
768 unlink(tmp);
769 unlink(old);
770 exit(1);
771 }
772
773 fprintf(stderr, "%s updated.\n", identity_file);
774 fprintf(stderr, "Original contents retained as %s\n", old);
775 if (has_unhashed) {
776 fprintf(stderr, "WARNING: %s contains unhashed "
777 "entries\n", old);
778 fprintf(stderr, "Delete this file to ensure privacy "
Damien Miller0dc1bef2005-07-17 17:22:45 +1000779 "of hostnames\n");
Damien Miller4b42d7f2005-03-01 21:48:35 +1100780 }
781 }
782
783 exit(0);
784}
785
Damien Miller95def091999-11-25 00:26:21 +1100786/*
787 * Perform changing a passphrase. The argument is the passwd structure
788 * for the current user.
789 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000790static void
Damien Miller10f6f6b1999-11-17 17:29:08 +1100791do_change_passphrase(struct passwd *pw)
792{
Damien Miller95def091999-11-25 00:26:21 +1100793 char *comment;
794 char *old_passphrase, *passphrase1, *passphrase2;
795 struct stat st;
Damien Millereba71ba2000-04-29 23:57:08 +1000796 Key *private;
Damien Miller10f6f6b1999-11-17 17:29:08 +1100797
Damien Miller95def091999-11-25 00:26:21 +1100798 if (!have_identity)
799 ask_filename(pw, "Enter file in which the key is");
Damien Miller95def091999-11-25 00:26:21 +1100800 if (stat(identity_file, &st) < 0) {
801 perror(identity_file);
802 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000803 }
Damien Miller95def091999-11-25 00:26:21 +1100804 /* Try to load the file with empty passphrase. */
Ben Lindstromd0fca422001-03-26 13:44:06 +0000805 private = key_load_private(identity_file, "", &comment);
806 if (private == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100807 if (identity_passphrase)
808 old_passphrase = xstrdup(identity_passphrase);
809 else
Ben Lindstrom949974b2001-06-25 05:20:31 +0000810 old_passphrase =
811 read_passphrase("Enter old passphrase: ",
812 RP_ALLOW_STDIN);
813 private = key_load_private(identity_file, old_passphrase,
814 &comment);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000815 memset(old_passphrase, 0, strlen(old_passphrase));
816 xfree(old_passphrase);
817 if (private == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100818 printf("Bad passphrase.\n");
819 exit(1);
820 }
Damien Miller95def091999-11-25 00:26:21 +1100821 }
822 printf("Key has comment '%s'\n", comment);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000823
Damien Miller95def091999-11-25 00:26:21 +1100824 /* Ask the new passphrase (twice). */
825 if (identity_new_passphrase) {
826 passphrase1 = xstrdup(identity_new_passphrase);
827 passphrase2 = NULL;
828 } else {
829 passphrase1 =
Ben Lindstrom949974b2001-06-25 05:20:31 +0000830 read_passphrase("Enter new passphrase (empty for no "
831 "passphrase): ", RP_ALLOW_STDIN);
832 passphrase2 = read_passphrase("Enter same passphrase again: ",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100833 RP_ALLOW_STDIN);
Damien Miller95def091999-11-25 00:26:21 +1100834
835 /* Verify that they are the same. */
836 if (strcmp(passphrase1, passphrase2) != 0) {
837 memset(passphrase1, 0, strlen(passphrase1));
838 memset(passphrase2, 0, strlen(passphrase2));
839 xfree(passphrase1);
840 xfree(passphrase2);
841 printf("Pass phrases do not match. Try again.\n");
842 exit(1);
843 }
844 /* Destroy the other copy. */
845 memset(passphrase2, 0, strlen(passphrase2));
846 xfree(passphrase2);
847 }
848
849 /* Save the file using the new passphrase. */
Ben Lindstromd0fca422001-03-26 13:44:06 +0000850 if (!key_save_private(private, identity_file, passphrase1, comment)) {
Ben Lindstrom15f33862001-04-16 02:00:02 +0000851 printf("Saving the key failed: %s.\n", identity_file);
Damien Miller95def091999-11-25 00:26:21 +1100852 memset(passphrase1, 0, strlen(passphrase1));
853 xfree(passphrase1);
Damien Millereba71ba2000-04-29 23:57:08 +1000854 key_free(private);
Damien Miller95def091999-11-25 00:26:21 +1100855 xfree(comment);
856 exit(1);
857 }
858 /* Destroy the passphrase and the copy of the key in memory. */
859 memset(passphrase1, 0, strlen(passphrase1));
860 xfree(passphrase1);
Damien Millereba71ba2000-04-29 23:57:08 +1000861 key_free(private); /* Destroys contents */
Damien Miller95def091999-11-25 00:26:21 +1100862 xfree(comment);
863
864 printf("Your identification has been saved with the new passphrase.\n");
865 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000866}
867
Damien Miller37876e92003-05-15 10:19:46 +1000868/*
869 * Print the SSHFP RR.
870 */
Damien Millercb314822006-03-26 13:48:01 +1100871static int
872do_print_resource_record(struct passwd *pw, char *fname, char *hname)
Damien Miller37876e92003-05-15 10:19:46 +1000873{
874 Key *public;
875 char *comment = NULL;
876 struct stat st;
877
Damien Millercb314822006-03-26 13:48:01 +1100878 if (fname == NULL)
Damien Miller37876e92003-05-15 10:19:46 +1000879 ask_filename(pw, "Enter file in which the key is");
Damien Millercb314822006-03-26 13:48:01 +1100880 if (stat(fname, &st) < 0) {
881 if (errno == ENOENT)
882 return 0;
883 perror(fname);
Damien Miller37876e92003-05-15 10:19:46 +1000884 exit(1);
885 }
Damien Millercb314822006-03-26 13:48:01 +1100886 public = key_load_public(fname, &comment);
Damien Miller37876e92003-05-15 10:19:46 +1000887 if (public != NULL) {
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000888 export_dns_rr(hname, public, stdout, print_generic);
Damien Miller37876e92003-05-15 10:19:46 +1000889 key_free(public);
890 xfree(comment);
Damien Millercb314822006-03-26 13:48:01 +1100891 return 1;
Damien Miller37876e92003-05-15 10:19:46 +1000892 }
893 if (comment)
894 xfree(comment);
895
Damien Millercb314822006-03-26 13:48:01 +1100896 printf("failed to read v2 public key from %s.\n", fname);
Damien Miller37876e92003-05-15 10:19:46 +1000897 exit(1);
898}
Damien Miller37876e92003-05-15 10:19:46 +1000899
Damien Miller95def091999-11-25 00:26:21 +1100900/*
901 * Change the comment of a private key file.
902 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000903static void
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000904do_change_comment(struct passwd *pw)
905{
Ben Lindstrom5fc62702001-03-09 18:19:24 +0000906 char new_comment[1024], *comment, *passphrase;
Ben Lindstromd0fca422001-03-26 13:44:06 +0000907 Key *private;
908 Key *public;
Damien Miller95def091999-11-25 00:26:21 +1100909 struct stat st;
910 FILE *f;
Ben Lindstrom5fc62702001-03-09 18:19:24 +0000911 int fd;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000912
Damien Miller95def091999-11-25 00:26:21 +1100913 if (!have_identity)
914 ask_filename(pw, "Enter file in which the key is");
Damien Miller95def091999-11-25 00:26:21 +1100915 if (stat(identity_file, &st) < 0) {
916 perror(identity_file);
917 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000918 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000919 private = key_load_private(identity_file, "", &comment);
920 if (private == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100921 if (identity_passphrase)
922 passphrase = xstrdup(identity_passphrase);
923 else if (identity_new_passphrase)
924 passphrase = xstrdup(identity_new_passphrase);
925 else
Ben Lindstrom949974b2001-06-25 05:20:31 +0000926 passphrase = read_passphrase("Enter passphrase: ",
927 RP_ALLOW_STDIN);
Damien Miller95def091999-11-25 00:26:21 +1100928 /* Try to load using the passphrase. */
Ben Lindstromd0fca422001-03-26 13:44:06 +0000929 private = key_load_private(identity_file, passphrase, &comment);
930 if (private == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100931 memset(passphrase, 0, strlen(passphrase));
932 xfree(passphrase);
933 printf("Bad passphrase.\n");
934 exit(1);
935 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000936 } else {
937 passphrase = xstrdup("");
Damien Miller95def091999-11-25 00:26:21 +1100938 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000939 if (private->type != KEY_RSA1) {
940 fprintf(stderr, "Comments are only supported for RSA1 keys.\n");
941 key_free(private);
942 exit(1);
Damien Miller9f0f5c62001-12-21 14:45:46 +1100943 }
Damien Miller95def091999-11-25 00:26:21 +1100944 printf("Key now has comment '%s'\n", comment);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000945
Damien Miller95def091999-11-25 00:26:21 +1100946 if (identity_comment) {
947 strlcpy(new_comment, identity_comment, sizeof(new_comment));
948 } else {
949 printf("Enter new comment: ");
950 fflush(stdout);
951 if (!fgets(new_comment, sizeof(new_comment), stdin)) {
952 memset(passphrase, 0, strlen(passphrase));
Damien Millereba71ba2000-04-29 23:57:08 +1000953 key_free(private);
Damien Miller95def091999-11-25 00:26:21 +1100954 exit(1);
955 }
Damien Miller95def091999-11-25 00:26:21 +1100956 if (strchr(new_comment, '\n'))
957 *strchr(new_comment, '\n') = 0;
958 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000959
Damien Miller95def091999-11-25 00:26:21 +1100960 /* Save the file using the new passphrase. */
Ben Lindstromd0fca422001-03-26 13:44:06 +0000961 if (!key_save_private(private, identity_file, passphrase, new_comment)) {
Ben Lindstrom15f33862001-04-16 02:00:02 +0000962 printf("Saving the key failed: %s.\n", identity_file);
Damien Miller95def091999-11-25 00:26:21 +1100963 memset(passphrase, 0, strlen(passphrase));
964 xfree(passphrase);
Damien Millereba71ba2000-04-29 23:57:08 +1000965 key_free(private);
Damien Miller95def091999-11-25 00:26:21 +1100966 xfree(comment);
967 exit(1);
968 }
Damien Miller95def091999-11-25 00:26:21 +1100969 memset(passphrase, 0, strlen(passphrase));
970 xfree(passphrase);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000971 public = key_from_private(private);
Damien Millereba71ba2000-04-29 23:57:08 +1000972 key_free(private);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000973
Damien Miller95def091999-11-25 00:26:21 +1100974 strlcat(identity_file, ".pub", sizeof(identity_file));
Ben Lindstrom5fc62702001-03-09 18:19:24 +0000975 fd = open(identity_file, O_WRONLY | O_CREAT | O_TRUNC, 0644);
976 if (fd == -1) {
Damien Miller95def091999-11-25 00:26:21 +1100977 printf("Could not save your public key in %s\n", identity_file);
978 exit(1);
979 }
Ben Lindstrom5fc62702001-03-09 18:19:24 +0000980 f = fdopen(fd, "w");
981 if (f == NULL) {
982 printf("fdopen %s failed", identity_file);
983 exit(1);
984 }
Damien Millereba71ba2000-04-29 23:57:08 +1000985 if (!key_write(public, f))
986 fprintf(stderr, "write key failed");
987 key_free(public);
988 fprintf(f, " %s\n", new_comment);
Damien Miller95def091999-11-25 00:26:21 +1100989 fclose(f);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000990
Damien Miller95def091999-11-25 00:26:21 +1100991 xfree(comment);
992
993 printf("The comment in your key file has been changed.\n");
994 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000995}
996
Ben Lindstrombba81212001-06-25 05:01:22 +0000997static void
Damien Miller431f66b1999-11-21 18:31:57 +1100998usage(void)
999{
Ben Lindstrom97be31e2001-08-06 21:49:06 +00001000 fprintf(stderr, "Usage: %s [options]\n", __progname);
1001 fprintf(stderr, "Options:\n");
Damien Miller9278ffa2005-05-26 11:59:06 +10001002 fprintf(stderr, " -a trials Number of trials for screening DH-GEX moduli.\n");
Ben Lindstrom97be31e2001-08-06 21:49:06 +00001003 fprintf(stderr, " -B Show bubblebabble digest of key file.\n");
Damien Miller9278ffa2005-05-26 11:59:06 +10001004 fprintf(stderr, " -b bits Number of bits in the key to create.\n");
Ben Lindstrom97be31e2001-08-06 21:49:06 +00001005 fprintf(stderr, " -C comment Provide new comment.\n");
Damien Miller9278ffa2005-05-26 11:59:06 +10001006 fprintf(stderr, " -c Change comment in private and public key files.\n");
Ben Lindstrom97be31e2001-08-06 21:49:06 +00001007#ifdef SMARTCARD
1008 fprintf(stderr, " -D reader Download public key from smartcard.\n");
Damien Miller9278ffa2005-05-26 11:59:06 +10001009#endif /* SMARTCARD */
1010 fprintf(stderr, " -e Convert OpenSSH to IETF SECSH key file.\n");
1011 fprintf(stderr, " -F hostname Find hostname in known hosts file.\n");
1012 fprintf(stderr, " -f filename Filename of the key file.\n");
1013 fprintf(stderr, " -G file Generate candidates for DH-GEX moduli.\n");
1014 fprintf(stderr, " -g Use generic DNS resource record format.\n");
1015 fprintf(stderr, " -H Hash names in known_hosts file.\n");
1016 fprintf(stderr, " -i Convert IETF SECSH to OpenSSH key file.\n");
1017 fprintf(stderr, " -l Show fingerprint of key file.\n");
1018 fprintf(stderr, " -M memory Amount of memory (MB) to use for generating DH-GEX moduli.\n");
1019 fprintf(stderr, " -N phrase Provide new passphrase.\n");
1020 fprintf(stderr, " -P phrase Provide old passphrase.\n");
1021 fprintf(stderr, " -p Change passphrase of private key file.\n");
1022 fprintf(stderr, " -q Quiet.\n");
1023 fprintf(stderr, " -R hostname Remove host from known_hosts file.\n");
1024 fprintf(stderr, " -r hostname Print DNS resource record.\n");
1025 fprintf(stderr, " -S start Start point (hex) for generating DH-GEX moduli.\n");
1026 fprintf(stderr, " -T file Screen candidates for DH-GEX moduli.\n");
1027 fprintf(stderr, " -t type Specify type of key to create.\n");
1028#ifdef SMARTCARD
Ben Lindstrom97be31e2001-08-06 21:49:06 +00001029 fprintf(stderr, " -U reader Upload private key to smartcard.\n");
1030#endif /* SMARTCARD */
Damien Miller9278ffa2005-05-26 11:59:06 +10001031 fprintf(stderr, " -v Verbose.\n");
1032 fprintf(stderr, " -W gen Generator to use for generating DH-GEX moduli.\n");
1033 fprintf(stderr, " -y Read private key file and print public key.\n");
Darren Tucker019cefe2003-08-02 22:40:07 +10001034
Damien Miller95def091999-11-25 00:26:21 +11001035 exit(1);
Damien Miller431f66b1999-11-21 18:31:57 +11001036}
1037
Damien Miller95def091999-11-25 00:26:21 +11001038/*
1039 * Main program for key management.
1040 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001041int
1042main(int ac, char **av)
1043{
Damien Millera41c8b12002-01-22 23:05:08 +11001044 char dotsshdir[MAXPATHLEN], comment[1024], *passphrase1, *passphrase2;
Tim Rice2e0e38e2003-09-08 16:11:33 -07001045 char out_file[MAXPATHLEN], *reader_id = NULL;
Damien Miller4b42d7f2005-03-01 21:48:35 +11001046 char *rr_hostname = NULL;
Ben Lindstrom5fc62702001-03-09 18:19:24 +00001047 Key *private, *public;
Damien Miller95def091999-11-25 00:26:21 +11001048 struct passwd *pw;
Damien Miller95def091999-11-25 00:26:21 +11001049 struct stat st;
Damien Millerb089fb52005-05-26 12:16:18 +10001050 int opt, type, fd, download = 0;
Darren Tucker2db8ae62005-06-01 23:02:25 +10001051 u_int32_t memory = 0, generator_wanted = 0, trials = 100;
Darren Tucker019cefe2003-08-02 22:40:07 +10001052 int do_gen_candidates = 0, do_screen_candidates = 0;
Darren Tucker06930c72003-12-31 11:34:51 +11001053 int log_level = SYSLOG_LEVEL_INFO;
Darren Tucker019cefe2003-08-02 22:40:07 +10001054 BIGNUM *start = NULL;
Damien Miller95def091999-11-25 00:26:21 +11001055 FILE *f;
Damien Miller02e754f2005-05-26 12:19:39 +10001056 const char *errstr;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001057
Damien Miller95def091999-11-25 00:26:21 +11001058 extern int optind;
1059 extern char *optarg;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001060
Darren Tuckerce321d82005-10-03 18:11:24 +10001061 /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
1062 sanitise_stdfd();
1063
Damien Miller59d3d5b2003-08-22 09:34:41 +10001064 __progname = ssh_get_progname(av[0]);
Damien Millerf9b625c2000-07-09 22:42:32 +10001065
Damien Millerd3a18572000-06-07 19:55:44 +10001066 SSLeay_add_all_algorithms();
Darren Tucker019cefe2003-08-02 22:40:07 +10001067 log_init(av[0], SYSLOG_LEVEL_INFO, SYSLOG_FACILITY_USER, 1);
1068
Kevin Steves3a881912002-07-20 19:05:40 +00001069 init_rng();
1070 seed_rng();
Damien Millereba71ba2000-04-29 23:57:08 +10001071
Damien Miller5428f641999-11-25 11:54:57 +11001072 /* we need this for the home * directory. */
Damien Miller95def091999-11-25 00:26:21 +11001073 pw = getpwuid(getuid());
1074 if (!pw) {
1075 printf("You don't exist, go away!\n");
1076 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001077 }
Damien Millereba71ba2000-04-29 23:57:08 +10001078 if (gethostname(hostname, sizeof(hostname)) < 0) {
1079 perror("gethostname");
1080 exit(1);
1081 }
Damien Miller5428f641999-11-25 11:54:57 +11001082
Darren Tucker019cefe2003-08-02 22:40:07 +10001083 while ((opt = getopt(ac, av,
Damien Miller4b42d7f2005-03-01 21:48:35 +11001084 "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 +11001085 switch (opt) {
1086 case 'b':
Damien Miller5f340062006-03-26 14:27:57 +11001087 bits = (u_int32_t)strtonum(optarg, 768, 32768, &errstr);
Damien Miller02e754f2005-05-26 12:19:39 +10001088 if (errstr)
1089 fatal("Bits has bad value %s (%s)",
1090 optarg, errstr);
Damien Miller95def091999-11-25 00:26:21 +11001091 break;
Damien Miller4b42d7f2005-03-01 21:48:35 +11001092 case 'F':
1093 find_host = 1;
1094 rr_hostname = optarg;
1095 break;
1096 case 'H':
1097 hash_hosts = 1;
1098 break;
1099 case 'R':
1100 delete_host = 1;
1101 rr_hostname = optarg;
1102 break;
Damien Miller95def091999-11-25 00:26:21 +11001103 case 'l':
1104 print_fingerprint = 1;
1105 break;
Ben Lindstrom8fd372b2001-03-12 03:02:17 +00001106 case 'B':
1107 print_bubblebabble = 1;
1108 break;
Damien Miller95def091999-11-25 00:26:21 +11001109 case 'p':
1110 change_passphrase = 1;
1111 break;
Damien Miller95def091999-11-25 00:26:21 +11001112 case 'c':
1113 change_comment = 1;
1114 break;
Damien Miller95def091999-11-25 00:26:21 +11001115 case 'f':
Damien Millerb089fb52005-05-26 12:16:18 +10001116 if (strlcpy(identity_file, optarg, sizeof(identity_file)) >=
1117 sizeof(identity_file))
1118 fatal("Identity filename too long");
Damien Miller95def091999-11-25 00:26:21 +11001119 have_identity = 1;
1120 break;
Damien Miller37876e92003-05-15 10:19:46 +10001121 case 'g':
1122 print_generic = 1;
1123 break;
Damien Miller95def091999-11-25 00:26:21 +11001124 case 'P':
1125 identity_passphrase = optarg;
1126 break;
Damien Miller95def091999-11-25 00:26:21 +11001127 case 'N':
1128 identity_new_passphrase = optarg;
1129 break;
Damien Miller95def091999-11-25 00:26:21 +11001130 case 'C':
1131 identity_comment = optarg;
1132 break;
Damien Miller95def091999-11-25 00:26:21 +11001133 case 'q':
1134 quiet = 1;
1135 break;
Ben Lindstrom5a707822001-04-22 17:15:46 +00001136 case 'e':
Damien Millereba71ba2000-04-29 23:57:08 +10001137 case 'x':
Ben Lindstrom5a707822001-04-22 17:15:46 +00001138 /* export key */
Damien Millereba71ba2000-04-29 23:57:08 +10001139 convert_to_ssh2 = 1;
1140 break;
Ben Lindstrom5a707822001-04-22 17:15:46 +00001141 case 'i':
Damien Millereba71ba2000-04-29 23:57:08 +10001142 case 'X':
Ben Lindstrom5a707822001-04-22 17:15:46 +00001143 /* import key */
Damien Millereba71ba2000-04-29 23:57:08 +10001144 convert_from_ssh2 = 1;
1145 break;
Damien Millereba71ba2000-04-29 23:57:08 +10001146 case 'y':
1147 print_public = 1;
1148 break;
Damien Millereba71ba2000-04-29 23:57:08 +10001149 case 'd':
Damien Miller0bc1bd82000-11-13 22:57:25 +11001150 key_type_name = "dsa";
Damien Millereba71ba2000-04-29 23:57:08 +10001151 break;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001152 case 't':
1153 key_type_name = optarg;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001154 break;
Ben Lindstrom8282d6a2001-08-06 21:44:05 +00001155 case 'D':
1156 download = 1;
Damien Miller90967402006-03-26 14:07:26 +11001157 /*FALLTHROUGH*/
Ben Lindstromf19578c2001-08-06 21:46:54 +00001158 case 'U':
Ben Lindstrom8282d6a2001-08-06 21:44:05 +00001159 reader_id = optarg;
Ben Lindstromcd392282001-07-04 03:44:03 +00001160 break;
Darren Tucker06930c72003-12-31 11:34:51 +11001161 case 'v':
1162 if (log_level == SYSLOG_LEVEL_INFO)
1163 log_level = SYSLOG_LEVEL_DEBUG1;
1164 else {
Darren Tuckerfc959702004-07-17 16:12:08 +10001165 if (log_level >= SYSLOG_LEVEL_DEBUG1 &&
Darren Tucker06930c72003-12-31 11:34:51 +11001166 log_level < SYSLOG_LEVEL_DEBUG3)
1167 log_level++;
1168 }
1169 break;
Damien Miller37876e92003-05-15 10:19:46 +10001170 case 'r':
Damien Miller4b42d7f2005-03-01 21:48:35 +11001171 rr_hostname = optarg;
Damien Miller37876e92003-05-15 10:19:46 +10001172 break;
Darren Tucker019cefe2003-08-02 22:40:07 +10001173 case 'W':
Damien Miller5f340062006-03-26 14:27:57 +11001174 generator_wanted = (u_int32_t)strtonum(optarg, 1,
1175 UINT_MAX, &errstr);
Damien Millerb089fb52005-05-26 12:16:18 +10001176 if (errstr)
1177 fatal("Desired generator has bad value: %s (%s)",
1178 optarg, errstr);
Darren Tucker019cefe2003-08-02 22:40:07 +10001179 break;
1180 case 'a':
Damien Miller5f340062006-03-26 14:27:57 +11001181 trials = (u_int32_t)strtonum(optarg, 1, UINT_MAX, &errstr);
Damien Millerb089fb52005-05-26 12:16:18 +10001182 if (errstr)
1183 fatal("Invalid number of trials: %s (%s)",
1184 optarg, errstr);
Darren Tucker019cefe2003-08-02 22:40:07 +10001185 break;
1186 case 'M':
Damien Miller5f340062006-03-26 14:27:57 +11001187 memory = (u_int32_t)strtonum(optarg, 1, UINT_MAX, &errstr);
Damien Millerb089fb52005-05-26 12:16:18 +10001188 if (errstr) {
1189 fatal("Memory limit is %s: %s", errstr, optarg);
1190 }
Darren Tucker019cefe2003-08-02 22:40:07 +10001191 break;
1192 case 'G':
1193 do_gen_candidates = 1;
Damien Millerb089fb52005-05-26 12:16:18 +10001194 if (strlcpy(out_file, optarg, sizeof(out_file)) >=
1195 sizeof(out_file))
1196 fatal("Output filename too long");
Darren Tucker019cefe2003-08-02 22:40:07 +10001197 break;
1198 case 'T':
1199 do_screen_candidates = 1;
Damien Millerb089fb52005-05-26 12:16:18 +10001200 if (strlcpy(out_file, optarg, sizeof(out_file)) >=
1201 sizeof(out_file))
1202 fatal("Output filename too long");
Darren Tucker019cefe2003-08-02 22:40:07 +10001203 break;
1204 case 'S':
1205 /* XXX - also compare length against bits */
1206 if (BN_hex2bn(&start, optarg) == 0)
1207 fatal("Invalid start point.");
1208 break;
Damien Miller95def091999-11-25 00:26:21 +11001209 case '?':
1210 default:
1211 usage();
1212 }
1213 }
Darren Tucker06930c72003-12-31 11:34:51 +11001214
1215 /* reinit */
1216 log_init(av[0], log_level, SYSLOG_FACILITY_USER, 1);
1217
Damien Miller95def091999-11-25 00:26:21 +11001218 if (optind < ac) {
1219 printf("Too many arguments.\n");
1220 usage();
1221 }
1222 if (change_passphrase && change_comment) {
1223 printf("Can only have one of -p and -c.\n");
1224 usage();
1225 }
Damien Miller4b42d7f2005-03-01 21:48:35 +11001226 if (delete_host || hash_hosts || find_host)
1227 do_known_hosts(pw, rr_hostname);
Ben Lindstrom8fd372b2001-03-12 03:02:17 +00001228 if (print_fingerprint || print_bubblebabble)
Damien Miller95def091999-11-25 00:26:21 +11001229 do_fingerprint(pw);
Damien Miller95def091999-11-25 00:26:21 +11001230 if (change_passphrase)
1231 do_change_passphrase(pw);
Damien Miller4a10d2e2002-03-11 22:53:29 +11001232 if (change_comment)
1233 do_change_comment(pw);
Kevin Steves3a881912002-07-20 19:05:40 +00001234 if (convert_to_ssh2)
1235 do_convert_to_ssh2(pw);
1236 if (convert_from_ssh2)
1237 do_convert_from_ssh2(pw);
Damien Millereba71ba2000-04-29 23:57:08 +10001238 if (print_public)
1239 do_print_public(pw);
Damien Miller4b42d7f2005-03-01 21:48:35 +11001240 if (rr_hostname != NULL) {
Damien Millercb314822006-03-26 13:48:01 +11001241 unsigned int n = 0;
1242
1243 if (have_identity) {
1244 n = do_print_resource_record(pw,
1245 identity_file, rr_hostname);
1246 if (n == 0) {
1247 perror(identity_file);
1248 exit(1);
1249 }
1250 exit(0);
1251 } else {
1252
1253 n += do_print_resource_record(pw,
1254 _PATH_HOST_RSA_KEY_FILE, rr_hostname);
1255 n += do_print_resource_record(pw,
1256 _PATH_HOST_DSA_KEY_FILE, rr_hostname);
1257
1258 if (n == 0)
1259 fatal("no keys found.");
1260 exit(0);
1261 }
Damien Miller37876e92003-05-15 10:19:46 +10001262 }
Ben Lindstrom8282d6a2001-08-06 21:44:05 +00001263 if (reader_id != NULL) {
Ben Lindstrom6818bfb2001-08-06 21:40:04 +00001264#ifdef SMARTCARD
Ben Lindstrom8282d6a2001-08-06 21:44:05 +00001265 if (download)
1266 do_download(pw, reader_id);
1267 else
1268 do_upload(pw, reader_id);
Ben Lindstromffce1472001-08-06 21:57:31 +00001269#else /* SMARTCARD */
Ben Lindstrom6818bfb2001-08-06 21:40:04 +00001270 fatal("no support for smartcards.");
Ben Lindstromffce1472001-08-06 21:57:31 +00001271#endif /* SMARTCARD */
Ben Lindstrom8282d6a2001-08-06 21:44:05 +00001272 }
Damien Miller95def091999-11-25 00:26:21 +11001273
Darren Tucker019cefe2003-08-02 22:40:07 +10001274 if (do_gen_candidates) {
1275 FILE *out = fopen(out_file, "w");
Damien Miller787b2ec2003-11-21 23:56:47 +11001276
Darren Tucker019cefe2003-08-02 22:40:07 +10001277 if (out == NULL) {
1278 error("Couldn't open modulus candidate file \"%s\": %s",
1279 out_file, strerror(errno));
1280 return (1);
1281 }
Damien Miller3f54a9f2005-11-05 14:52:18 +11001282 if (bits == 0)
1283 bits = DEFAULT_BITS;
Darren Tucker019cefe2003-08-02 22:40:07 +10001284 if (gen_candidates(out, memory, bits, start) != 0)
Damien Miller15d72a02005-11-05 15:07:33 +11001285 fatal("modulus candidate generation failed");
Darren Tucker019cefe2003-08-02 22:40:07 +10001286
1287 return (0);
1288 }
1289
1290 if (do_screen_candidates) {
1291 FILE *in;
1292 FILE *out = fopen(out_file, "w");
1293
1294 if (have_identity && strcmp(identity_file, "-") != 0) {
1295 if ((in = fopen(identity_file, "r")) == NULL) {
1296 fatal("Couldn't open modulus candidate "
Damien Millera8e06ce2003-11-21 23:48:55 +11001297 "file \"%s\": %s", identity_file,
Darren Tucker019cefe2003-08-02 22:40:07 +10001298 strerror(errno));
1299 }
1300 } else
1301 in = stdin;
1302
1303 if (out == NULL) {
1304 fatal("Couldn't open moduli file \"%s\": %s",
1305 out_file, strerror(errno));
1306 }
1307 if (prime_test(in, out, trials, generator_wanted) != 0)
Damien Miller15d72a02005-11-05 15:07:33 +11001308 fatal("modulus screening failed");
Darren Tuckerf4220e62003-08-21 16:44:07 +10001309 return (0);
Darren Tucker019cefe2003-08-02 22:40:07 +10001310 }
1311
Damien Miller95def091999-11-25 00:26:21 +11001312 arc4random_stir();
1313
Damien Millerf14be5c2005-11-05 15:15:49 +11001314 if (key_type_name == NULL)
1315 key_type_name = "rsa";
1316
Damien Millere39cacc2000-11-29 12:18:44 +11001317 type = key_type_from_name(key_type_name);
1318 if (type == KEY_UNSPEC) {
1319 fprintf(stderr, "unknown key type %s\n", key_type_name);
1320 exit(1);
Damien Millereba71ba2000-04-29 23:57:08 +10001321 }
Damien Miller3f54a9f2005-11-05 14:52:18 +11001322 if (bits == 0)
1323 bits = (type == KEY_DSA) ? DEFAULT_BITS_DSA : DEFAULT_BITS;
Tim Rice660c3402005-11-28 17:45:32 -08001324 if (type == KEY_DSA && bits != 1024)
1325 fatal("DSA keys must be 1024 bits");
Darren Tucker3af2ac52005-11-29 13:10:24 +11001326 if (!quiet)
1327 printf("Generating public/private %s key pair.\n", key_type_name);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001328 private = key_generate(type, bits);
1329 if (private == NULL) {
1330 fprintf(stderr, "key_generate failed");
1331 exit(1);
1332 }
1333 public = key_from_private(private);
Damien Miller95def091999-11-25 00:26:21 +11001334
1335 if (!have_identity)
1336 ask_filename(pw, "Enter file in which to save the key");
1337
Damien Miller788f2122005-11-05 15:14:59 +11001338 /* Create ~/.ssh directory if it doesn't already exist. */
Ben Lindstrom226cfa02001-01-22 05:34:40 +00001339 snprintf(dotsshdir, sizeof dotsshdir, "%s/%s", pw->pw_dir, _PATH_SSH_USER_DIR);
Damien Miller95def091999-11-25 00:26:21 +11001340 if (strstr(identity_file, dotsshdir) != NULL &&
1341 stat(dotsshdir, &st) < 0) {
Damien Millerbe484b52000-07-15 14:14:16 +10001342 if (mkdir(dotsshdir, 0700) < 0)
Damien Miller95def091999-11-25 00:26:21 +11001343 error("Could not create directory '%s'.", dotsshdir);
1344 else if (!quiet)
1345 printf("Created directory '%s'.\n", dotsshdir);
1346 }
1347 /* If the file already exists, ask the user to confirm. */
1348 if (stat(identity_file, &st) >= 0) {
1349 char yesno[3];
1350 printf("%s already exists.\n", identity_file);
1351 printf("Overwrite (y/n)? ");
1352 fflush(stdout);
1353 if (fgets(yesno, sizeof(yesno), stdin) == NULL)
1354 exit(1);
1355 if (yesno[0] != 'y' && yesno[0] != 'Y')
1356 exit(1);
1357 }
1358 /* Ask for a passphrase (twice). */
1359 if (identity_passphrase)
1360 passphrase1 = xstrdup(identity_passphrase);
1361 else if (identity_new_passphrase)
1362 passphrase1 = xstrdup(identity_new_passphrase);
1363 else {
1364passphrase_again:
1365 passphrase1 =
Ben Lindstrom949974b2001-06-25 05:20:31 +00001366 read_passphrase("Enter passphrase (empty for no "
1367 "passphrase): ", RP_ALLOW_STDIN);
1368 passphrase2 = read_passphrase("Enter same passphrase again: ",
1369 RP_ALLOW_STDIN);
Damien Miller95def091999-11-25 00:26:21 +11001370 if (strcmp(passphrase1, passphrase2) != 0) {
Ben Lindstrom949974b2001-06-25 05:20:31 +00001371 /*
1372 * The passphrases do not match. Clear them and
1373 * retry.
1374 */
Damien Miller95def091999-11-25 00:26:21 +11001375 memset(passphrase1, 0, strlen(passphrase1));
1376 memset(passphrase2, 0, strlen(passphrase2));
1377 xfree(passphrase1);
1378 xfree(passphrase2);
1379 printf("Passphrases do not match. Try again.\n");
1380 goto passphrase_again;
1381 }
1382 /* Clear the other copy of the passphrase. */
1383 memset(passphrase2, 0, strlen(passphrase2));
1384 xfree(passphrase2);
1385 }
1386
Damien Miller95def091999-11-25 00:26:21 +11001387 if (identity_comment) {
1388 strlcpy(comment, identity_comment, sizeof(comment));
1389 } else {
Damien Miller4af51302000-04-16 11:18:38 +10001390 /* Create default commend field for the passphrase. */
Damien Miller95def091999-11-25 00:26:21 +11001391 snprintf(comment, sizeof comment, "%s@%s", pw->pw_name, hostname);
1392 }
1393
1394 /* Save the key with the given passphrase and comment. */
Ben Lindstromd0fca422001-03-26 13:44:06 +00001395 if (!key_save_private(private, identity_file, passphrase1, comment)) {
Ben Lindstrom15f33862001-04-16 02:00:02 +00001396 printf("Saving the key failed: %s.\n", identity_file);
Damien Miller95def091999-11-25 00:26:21 +11001397 memset(passphrase1, 0, strlen(passphrase1));
1398 xfree(passphrase1);
1399 exit(1);
1400 }
1401 /* Clear the passphrase. */
1402 memset(passphrase1, 0, strlen(passphrase1));
1403 xfree(passphrase1);
1404
1405 /* Clear the private key and the random number generator. */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001406 key_free(private);
Damien Miller95def091999-11-25 00:26:21 +11001407 arc4random_stir();
1408
1409 if (!quiet)
1410 printf("Your identification has been saved in %s.\n", identity_file);
1411
Damien Miller95def091999-11-25 00:26:21 +11001412 strlcat(identity_file, ".pub", sizeof(identity_file));
Ben Lindstrom5fc62702001-03-09 18:19:24 +00001413 fd = open(identity_file, O_WRONLY | O_CREAT | O_TRUNC, 0644);
1414 if (fd == -1) {
Damien Miller95def091999-11-25 00:26:21 +11001415 printf("Could not save your public key in %s\n", identity_file);
1416 exit(1);
1417 }
Ben Lindstrom5fc62702001-03-09 18:19:24 +00001418 f = fdopen(fd, "w");
1419 if (f == NULL) {
1420 printf("fdopen %s failed", identity_file);
1421 exit(1);
1422 }
Damien Millereba71ba2000-04-29 23:57:08 +10001423 if (!key_write(public, f))
1424 fprintf(stderr, "write key failed");
1425 fprintf(f, " %s\n", comment);
Damien Miller95def091999-11-25 00:26:21 +11001426 fclose(f);
1427
1428 if (!quiet) {
Ben Lindstromcfccef92001-03-13 04:57:58 +00001429 char *fp = key_fingerprint(public, SSH_FP_MD5, SSH_FP_HEX);
Damien Millereba71ba2000-04-29 23:57:08 +10001430 printf("Your public key has been saved in %s.\n",
1431 identity_file);
Damien Miller95def091999-11-25 00:26:21 +11001432 printf("The key fingerprint is:\n");
Ben Lindstromcfccef92001-03-13 04:57:58 +00001433 printf("%s %s\n", fp, comment);
1434 xfree(fp);
Damien Miller95def091999-11-25 00:26:21 +11001435 }
Damien Millereba71ba2000-04-29 23:57:08 +10001436
1437 key_free(public);
Damien Miller95def091999-11-25 00:26:21 +11001438 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001439}