blob: b10e42ec89ea7aa9a9ef4253aa839d89d3b25334 [file] [log] [blame]
Damien Miller9f2abc42006-07-10 20:53:08 +10001/* $OpenBSD: ssh-keygen.c,v 1.145 2006/07/06 16:03:53 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>
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 Miller9f2abc42006-07-10 20:53:08 +100023#include <paths.h>
24#include <pwd.h>
25
Damien Millerd4a8b7e1999-10-27 13:42:43 +100026#include "xmalloc.h"
Damien Millereba71ba2000-04-29 23:57:08 +100027#include "key.h"
Ben Lindstromd09fcf52001-03-29 00:29:54 +000028#include "rsa.h"
Damien Millereba71ba2000-04-29 23:57:08 +100029#include "authfile.h"
30#include "uuencode.h"
Damien Miller874d77b2000-10-14 16:23:11 +110031#include "buffer.h"
32#include "bufaux.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000033#include "pathnames.h"
34#include "log.h"
Darren Tuckere608ca22004-05-13 16:15:47 +100035#include "misc.h"
Damien Miller4b42d7f2005-03-01 21:48:35 +110036#include "match.h"
37#include "hostfile.h"
Damien Miller874d77b2000-10-14 16:23:11 +110038
Ben Lindstrom8282d6a2001-08-06 21:44:05 +000039#ifdef SMARTCARD
Ben Lindstrom8282d6a2001-08-06 21:44:05 +000040#include "scard.h"
Ben Lindstrombcc18082001-08-06 21:59:25 +000041#endif
Damien Millered12a262003-05-15 13:37:43 +100042#include "dns.h"
Ben Lindstromcd392282001-07-04 03:44:03 +000043
Damien Miller3f54a9f2005-11-05 14:52:18 +110044/* Number of bits in the RSA/DSA key. This value can be set on the command line. */
45#define DEFAULT_BITS 2048
46#define DEFAULT_BITS_DSA 1024
47u_int32_t bits = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100048
Damien Miller5428f641999-11-25 11:54:57 +110049/*
50 * Flag indicating that we just want to change the passphrase. This can be
51 * set on the command line.
52 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100053int change_passphrase = 0;
54
Damien Miller5428f641999-11-25 11:54:57 +110055/*
56 * Flag indicating that we just want to change the comment. This can be set
57 * on the command line.
58 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100059int change_comment = 0;
60
61int quiet = 0;
62
Damien Miller4b42d7f2005-03-01 21:48:35 +110063/* Flag indicating that we want to hash a known_hosts file */
64int hash_hosts = 0;
65/* Flag indicating that we want lookup a host in known_hosts file */
66int find_host = 0;
67/* Flag indicating that we want to delete a host from a known_hosts file */
68int delete_host = 0;
69
Damien Miller10f6f6b1999-11-17 17:29:08 +110070/* Flag indicating that we just want to see the key fingerprint */
71int print_fingerprint = 0;
Ben Lindstrom8fd372b2001-03-12 03:02:17 +000072int print_bubblebabble = 0;
Damien Miller10f6f6b1999-11-17 17:29:08 +110073
Damien Miller431f66b1999-11-21 18:31:57 +110074/* The identity file name, given on the command line or entered by the user. */
75char identity_file[1024];
76int have_identity = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100077
78/* This is set to the passphrase if given on the command line. */
79char *identity_passphrase = NULL;
80
81/* This is set to the new passphrase if given on the command line. */
82char *identity_new_passphrase = NULL;
83
84/* This is set to the new comment if given on the command line. */
85char *identity_comment = NULL;
86
Damien Millereba71ba2000-04-29 23:57:08 +100087/* Dump public key file in format used by real and the original SSH 2 */
88int convert_to_ssh2 = 0;
89int convert_from_ssh2 = 0;
90int print_public = 0;
Damien Miller37876e92003-05-15 10:19:46 +100091int print_generic = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +110092
Damien Millera41c8b12002-01-22 23:05:08 +110093char *key_type_name = NULL;
Damien Millereba71ba2000-04-29 23:57:08 +100094
Damien Miller431f66b1999-11-21 18:31:57 +110095/* argv0 */
96extern char *__progname;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100097
Damien Millereba71ba2000-04-29 23:57:08 +100098char hostname[MAXHOSTNAMELEN];
99
Darren Tucker770fc012004-05-13 16:24:32 +1000100/* moduli.c */
Damien Millerb089fb52005-05-26 12:16:18 +1000101int gen_candidates(FILE *, u_int32_t, u_int32_t, BIGNUM *);
Darren Tucker770fc012004-05-13 16:24:32 +1000102int prime_test(FILE *, FILE *, u_int32_t, u_int32_t);
103
Ben Lindstrombba81212001-06-25 05:01:22 +0000104static void
Damien Miller431f66b1999-11-21 18:31:57 +1100105ask_filename(struct passwd *pw, const char *prompt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000106{
Damien Miller95def091999-11-25 00:26:21 +1100107 char buf[1024];
Damien Millere39cacc2000-11-29 12:18:44 +1100108 char *name = NULL;
109
Damien Miller993dd552002-02-19 15:22:47 +1100110 if (key_type_name == NULL)
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000111 name = _PATH_SSH_CLIENT_ID_RSA;
Damien Miller90967402006-03-26 14:07:26 +1100112 else {
Damien Miller993dd552002-02-19 15:22:47 +1100113 switch (key_type_from_name(key_type_name)) {
114 case KEY_RSA1:
115 name = _PATH_SSH_CLIENT_IDENTITY;
116 break;
117 case KEY_DSA:
118 name = _PATH_SSH_CLIENT_ID_DSA;
119 break;
120 case KEY_RSA:
121 name = _PATH_SSH_CLIENT_ID_RSA;
122 break;
123 default:
124 fprintf(stderr, "bad key type");
125 exit(1);
126 break;
127 }
Damien Miller90967402006-03-26 14:07:26 +1100128 }
Damien Millere39cacc2000-11-29 12:18:44 +1100129 snprintf(identity_file, sizeof(identity_file), "%s/%s", pw->pw_dir, name);
Ben Lindstrom3deda8b2000-12-22 20:27:43 +0000130 fprintf(stderr, "%s (%s): ", prompt, identity_file);
Damien Miller95def091999-11-25 00:26:21 +1100131 if (fgets(buf, sizeof(buf), stdin) == NULL)
132 exit(1);
133 if (strchr(buf, '\n'))
134 *strchr(buf, '\n') = 0;
135 if (strcmp(buf, "") != 0)
136 strlcpy(identity_file, buf, sizeof(identity_file));
137 have_identity = 1;
Damien Miller10f6f6b1999-11-17 17:29:08 +1100138}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000139
Ben Lindstrombba81212001-06-25 05:01:22 +0000140static Key *
Ben Lindstromd78ae762001-06-05 20:35:09 +0000141load_identity(char *filename)
Damien Millereba71ba2000-04-29 23:57:08 +1000142{
Ben Lindstromd0fca422001-03-26 13:44:06 +0000143 char *pass;
144 Key *prv;
145
Ben Lindstroma3700052001-04-05 23:26:32 +0000146 prv = key_load_private(filename, "", NULL);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000147 if (prv == NULL) {
Ben Lindstromd78ae762001-06-05 20:35:09 +0000148 if (identity_passphrase)
149 pass = xstrdup(identity_passphrase);
150 else
Ben Lindstrom949974b2001-06-25 05:20:31 +0000151 pass = read_passphrase("Enter passphrase: ",
152 RP_ALLOW_STDIN);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000153 prv = key_load_private(filename, pass, NULL);
Damien Millereba71ba2000-04-29 23:57:08 +1000154 memset(pass, 0, strlen(pass));
155 xfree(pass);
156 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000157 return prv;
Damien Millereba71ba2000-04-29 23:57:08 +1000158}
159
Damien Miller874d77b2000-10-14 16:23:11 +1100160#define SSH_COM_PUBLIC_BEGIN "---- BEGIN SSH2 PUBLIC KEY ----"
Ben Lindstromcb72e4f2002-06-21 00:41:51 +0000161#define SSH_COM_PUBLIC_END "---- END SSH2 PUBLIC KEY ----"
Damien Miller874d77b2000-10-14 16:23:11 +1100162#define SSH_COM_PRIVATE_BEGIN "---- BEGIN SSH2 ENCRYPTED PRIVATE KEY ----"
Kevin Stevesef4eea92001-02-05 12:42:17 +0000163#define SSH_COM_PRIVATE_KEY_MAGIC 0x3f6ff9eb
Damien Millereba71ba2000-04-29 23:57:08 +1000164
Ben Lindstrombba81212001-06-25 05:01:22 +0000165static void
Damien Millereba71ba2000-04-29 23:57:08 +1000166do_convert_to_ssh2(struct passwd *pw)
167{
Ben Lindstrom46c264f2001-04-24 16:56:58 +0000168 Key *k;
Ben Lindstromc58ab022002-02-26 18:15:09 +0000169 u_int len;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000170 u_char *blob;
Damien Millereba71ba2000-04-29 23:57:08 +1000171 struct stat st;
172
173 if (!have_identity)
174 ask_filename(pw, "Enter file in which the key is");
175 if (stat(identity_file, &st) < 0) {
176 perror(identity_file);
177 exit(1);
178 }
Ben Lindstrom46c264f2001-04-24 16:56:58 +0000179 if ((k = key_load_public(identity_file, NULL)) == NULL) {
Ben Lindstromd78ae762001-06-05 20:35:09 +0000180 if ((k = load_identity(identity_file)) == NULL) {
Ben Lindstrom46c264f2001-04-24 16:56:58 +0000181 fprintf(stderr, "load failed\n");
182 exit(1);
183 }
Damien Millereba71ba2000-04-29 23:57:08 +1000184 }
Damien Millerdb274722003-05-14 13:45:22 +1000185 if (k->type == KEY_RSA1) {
186 fprintf(stderr, "version 1 keys are not supported\n");
187 exit(1);
188 }
Ben Lindstrom99a30f12001-09-18 05:49:14 +0000189 if (key_to_blob(k, &blob, &len) <= 0) {
190 fprintf(stderr, "key_to_blob failed\n");
191 exit(1);
192 }
Damien Miller874d77b2000-10-14 16:23:11 +1100193 fprintf(stdout, "%s\n", SSH_COM_PUBLIC_BEGIN);
Damien Millereba71ba2000-04-29 23:57:08 +1000194 fprintf(stdout,
Ben Lindstrom58d3b722002-06-23 21:28:13 +0000195 "Comment: \"%u-bit %s, converted from OpenSSH by %s@%s\"\n",
Ben Lindstrom46c264f2001-04-24 16:56:58 +0000196 key_size(k), key_type(k),
Damien Millereba71ba2000-04-29 23:57:08 +1000197 pw->pw_name, hostname);
198 dump_base64(stdout, blob, len);
Damien Miller874d77b2000-10-14 16:23:11 +1100199 fprintf(stdout, "%s\n", SSH_COM_PUBLIC_END);
Ben Lindstrom46c264f2001-04-24 16:56:58 +0000200 key_free(k);
Damien Millereba71ba2000-04-29 23:57:08 +1000201 xfree(blob);
202 exit(0);
203}
204
Ben Lindstrombba81212001-06-25 05:01:22 +0000205static void
Damien Miller874d77b2000-10-14 16:23:11 +1100206buffer_get_bignum_bits(Buffer *b, BIGNUM *value)
207{
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000208 u_int bignum_bits = buffer_get_int(b);
209 u_int bytes = (bignum_bits + 7) / 8;
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000210
Damien Miller874d77b2000-10-14 16:23:11 +1100211 if (buffer_len(b) < bytes)
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000212 fatal("buffer_get_bignum_bits: input buffer too small: "
213 "need %d have %d", bytes, buffer_len(b));
Damien Miller708d21c2002-01-22 23:18:15 +1100214 BN_bin2bn(buffer_ptr(b), bytes, value);
Damien Miller874d77b2000-10-14 16:23:11 +1100215 buffer_consume(b, bytes);
216}
217
Ben Lindstrombba81212001-06-25 05:01:22 +0000218static Key *
Ben Lindstrom90fd8142002-02-26 18:09:42 +0000219do_convert_private_ssh2_from_blob(u_char *blob, u_int blen)
Damien Miller874d77b2000-10-14 16:23:11 +1100220{
221 Buffer b;
Damien Miller874d77b2000-10-14 16:23:11 +1100222 Key *key = NULL;
Damien Miller874d77b2000-10-14 16:23:11 +1100223 char *type, *cipher;
Ben Lindstrom511d69e2001-07-04 05:05:27 +0000224 u_char *sig, data[] = "abcde12345";
Ben Lindstrome586c4c2001-06-25 05:04:58 +0000225 int magic, rlen, ktype, i1, i2, i3, i4;
226 u_int slen;
227 u_long e;
Damien Miller874d77b2000-10-14 16:23:11 +1100228
229 buffer_init(&b);
230 buffer_append(&b, blob, blen);
231
232 magic = buffer_get_int(&b);
233 if (magic != SSH_COM_PRIVATE_KEY_MAGIC) {
234 error("bad magic 0x%x != 0x%x", magic, SSH_COM_PRIVATE_KEY_MAGIC);
235 buffer_free(&b);
236 return NULL;
237 }
Ben Lindstrom34f91882001-06-25 04:47:54 +0000238 i1 = buffer_get_int(&b);
Damien Miller874d77b2000-10-14 16:23:11 +1100239 type = buffer_get_string(&b, NULL);
240 cipher = buffer_get_string(&b, NULL);
Ben Lindstrom34f91882001-06-25 04:47:54 +0000241 i2 = buffer_get_int(&b);
242 i3 = buffer_get_int(&b);
243 i4 = buffer_get_int(&b);
244 debug("ignore (%d %d %d %d)", i1,i2,i3,i4);
Damien Miller874d77b2000-10-14 16:23:11 +1100245 if (strcmp(cipher, "none") != 0) {
246 error("unsupported cipher %s", cipher);
247 xfree(cipher);
248 buffer_free(&b);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000249 xfree(type);
Damien Miller874d77b2000-10-14 16:23:11 +1100250 return NULL;
251 }
252 xfree(cipher);
253
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000254 if (strstr(type, "dsa")) {
255 ktype = KEY_DSA;
256 } else if (strstr(type, "rsa")) {
257 ktype = KEY_RSA;
258 } else {
Darren Tucker7cfeecf2005-01-20 10:56:31 +1100259 buffer_free(&b);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000260 xfree(type);
Damien Miller874d77b2000-10-14 16:23:11 +1100261 return NULL;
262 }
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000263 key = key_new_private(ktype);
264 xfree(type);
265
266 switch (key->type) {
267 case KEY_DSA:
268 buffer_get_bignum_bits(&b, key->dsa->p);
269 buffer_get_bignum_bits(&b, key->dsa->g);
270 buffer_get_bignum_bits(&b, key->dsa->q);
271 buffer_get_bignum_bits(&b, key->dsa->pub_key);
272 buffer_get_bignum_bits(&b, key->dsa->priv_key);
273 break;
274 case KEY_RSA:
Ben Lindstrom34f91882001-06-25 04:47:54 +0000275 e = buffer_get_char(&b);
276 debug("e %lx", e);
277 if (e < 30) {
278 e <<= 8;
279 e += buffer_get_char(&b);
280 debug("e %lx", e);
281 e <<= 8;
282 e += buffer_get_char(&b);
283 debug("e %lx", e);
284 }
285 if (!BN_set_word(key->rsa->e, e)) {
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000286 buffer_free(&b);
287 key_free(key);
288 return NULL;
289 }
290 buffer_get_bignum_bits(&b, key->rsa->d);
291 buffer_get_bignum_bits(&b, key->rsa->n);
292 buffer_get_bignum_bits(&b, key->rsa->iqmp);
293 buffer_get_bignum_bits(&b, key->rsa->q);
294 buffer_get_bignum_bits(&b, key->rsa->p);
Ben Lindstromf7297dd2001-07-04 05:02:23 +0000295 rsa_generate_additional_parameters(key->rsa);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000296 break;
297 }
Damien Miller874d77b2000-10-14 16:23:11 +1100298 rlen = buffer_len(&b);
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +0000299 if (rlen != 0)
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000300 error("do_convert_private_ssh2_from_blob: "
301 "remaining bytes in key blob %d", rlen);
Damien Miller874d77b2000-10-14 16:23:11 +1100302 buffer_free(&b);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000303
Ben Lindstrome586c4c2001-06-25 05:04:58 +0000304 /* try the key */
305 key_sign(key, &sig, &slen, data, sizeof(data));
306 key_verify(key, sig, slen, data, sizeof(data));
307 xfree(sig);
Damien Miller874d77b2000-10-14 16:23:11 +1100308 return key;
309}
310
Damien Miller8056a9d2006-03-15 12:05:40 +1100311static int
312get_line(FILE *fp, char *line, size_t len)
313{
314 int c;
315 size_t pos = 0;
316
317 line[0] = '\0';
318 while ((c = fgetc(fp)) != EOF) {
319 if (pos >= len - 1) {
320 fprintf(stderr, "input line too long.\n");
321 exit(1);
322 }
Damien Miller90967402006-03-26 14:07:26 +1100323 switch (c) {
Damien Miller8056a9d2006-03-15 12:05:40 +1100324 case '\r':
325 c = fgetc(fp);
326 if (c != EOF && c != '\n' && ungetc(c, fp) == EOF) {
327 fprintf(stderr, "unget: %s\n", strerror(errno));
328 exit(1);
329 }
330 return pos;
331 case '\n':
332 return pos;
333 }
334 line[pos++] = c;
335 line[pos] = '\0';
336 }
Damien Millere23209f2006-03-31 23:13:35 +1100337 if (c == EOF)
338 return -1;
Damien Miller8056a9d2006-03-15 12:05:40 +1100339 return pos;
340}
341
Ben Lindstrombba81212001-06-25 05:01:22 +0000342static void
Damien Millereba71ba2000-04-29 23:57:08 +1000343do_convert_from_ssh2(struct passwd *pw)
344{
345 Key *k;
346 int blen;
Ben Lindstrom155b9812002-04-02 20:26:26 +0000347 u_int len;
Damien Miller8056a9d2006-03-15 12:05:40 +1100348 char line[1024];
Ben Lindstrom9e0ddd42001-09-18 05:41:19 +0000349 u_char blob[8096];
Damien Millereba71ba2000-04-29 23:57:08 +1000350 char encoded[8096];
351 struct stat st;
Damien Miller874d77b2000-10-14 16:23:11 +1100352 int escaped = 0, private = 0, ok;
Damien Millereba71ba2000-04-29 23:57:08 +1000353 FILE *fp;
354
355 if (!have_identity)
356 ask_filename(pw, "Enter file in which the key is");
357 if (stat(identity_file, &st) < 0) {
358 perror(identity_file);
359 exit(1);
360 }
361 fp = fopen(identity_file, "r");
362 if (fp == NULL) {
363 perror(identity_file);
364 exit(1);
365 }
366 encoded[0] = '\0';
Damien Miller8056a9d2006-03-15 12:05:40 +1100367 while ((blen = get_line(fp, line, sizeof(line))) != -1) {
368 if (line[blen - 1] == '\\')
Damien Miller30c3d422000-05-09 11:02:59 +1000369 escaped++;
Damien Millereba71ba2000-04-29 23:57:08 +1000370 if (strncmp(line, "----", 4) == 0 ||
371 strstr(line, ": ") != NULL) {
Damien Miller874d77b2000-10-14 16:23:11 +1100372 if (strstr(line, SSH_COM_PRIVATE_BEGIN) != NULL)
373 private = 1;
Ben Lindstrome586c4c2001-06-25 05:04:58 +0000374 if (strstr(line, " END ") != NULL) {
375 break;
376 }
Ben Lindstrom30358602001-04-24 16:59:28 +0000377 /* fprintf(stderr, "ignore: %s", line); */
Damien Millereba71ba2000-04-29 23:57:08 +1000378 continue;
379 }
Damien Miller30c3d422000-05-09 11:02:59 +1000380 if (escaped) {
381 escaped--;
Ben Lindstrom30358602001-04-24 16:59:28 +0000382 /* fprintf(stderr, "escaped: %s", line); */
Damien Miller30c3d422000-05-09 11:02:59 +1000383 continue;
Damien Millereba71ba2000-04-29 23:57:08 +1000384 }
Damien Millereba71ba2000-04-29 23:57:08 +1000385 strlcat(encoded, line, sizeof(encoded));
386 }
Ben Lindstrom155b9812002-04-02 20:26:26 +0000387 len = strlen(encoded);
388 if (((len % 4) == 3) &&
389 (encoded[len-1] == '=') &&
390 (encoded[len-2] == '=') &&
391 (encoded[len-3] == '='))
392 encoded[len-3] = '\0';
Damien Miller4a8ed542002-01-22 23:33:31 +1100393 blen = uudecode(encoded, blob, sizeof(blob));
Damien Millereba71ba2000-04-29 23:57:08 +1000394 if (blen < 0) {
395 fprintf(stderr, "uudecode failed.\n");
396 exit(1);
397 }
Damien Miller874d77b2000-10-14 16:23:11 +1100398 k = private ?
399 do_convert_private_ssh2_from_blob(blob, blen) :
Damien Miller0bc1bd82000-11-13 22:57:25 +1100400 key_from_blob(blob, blen);
Damien Miller874d77b2000-10-14 16:23:11 +1100401 if (k == NULL) {
402 fprintf(stderr, "decode blob failed.\n");
403 exit(1);
404 }
405 ok = private ?
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000406 (k->type == KEY_DSA ?
407 PEM_write_DSAPrivateKey(stdout, k->dsa, NULL, NULL, 0, NULL, NULL) :
408 PEM_write_RSAPrivateKey(stdout, k->rsa, NULL, NULL, 0, NULL, NULL)) :
Damien Miller874d77b2000-10-14 16:23:11 +1100409 key_write(k, stdout);
410 if (!ok) {
411 fprintf(stderr, "key write failed");
412 exit(1);
413 }
Damien Millereba71ba2000-04-29 23:57:08 +1000414 key_free(k);
Damien Millera1db12b2002-01-22 23:20:15 +1100415 if (!private)
416 fprintf(stdout, "\n");
Damien Millereba71ba2000-04-29 23:57:08 +1000417 fclose(fp);
418 exit(0);
419}
420
Ben Lindstrombba81212001-06-25 05:01:22 +0000421static void
Damien Millereba71ba2000-04-29 23:57:08 +1000422do_print_public(struct passwd *pw)
423{
Ben Lindstromd0fca422001-03-26 13:44:06 +0000424 Key *prv;
Damien Millereba71ba2000-04-29 23:57:08 +1000425 struct stat st;
426
427 if (!have_identity)
428 ask_filename(pw, "Enter file in which the key is");
429 if (stat(identity_file, &st) < 0) {
430 perror(identity_file);
431 exit(1);
432 }
Ben Lindstromd78ae762001-06-05 20:35:09 +0000433 prv = load_identity(identity_file);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000434 if (prv == NULL) {
Damien Millereba71ba2000-04-29 23:57:08 +1000435 fprintf(stderr, "load failed\n");
436 exit(1);
437 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000438 if (!key_write(prv, stdout))
Damien Millereba71ba2000-04-29 23:57:08 +1000439 fprintf(stderr, "key_write failed");
Ben Lindstromd0fca422001-03-26 13:44:06 +0000440 key_free(prv);
Damien Millereba71ba2000-04-29 23:57:08 +1000441 fprintf(stdout, "\n");
442 exit(0);
443}
444
Ben Lindstrom6818bfb2001-08-06 21:40:04 +0000445#ifdef SMARTCARD
Ben Lindstromcd392282001-07-04 03:44:03 +0000446static void
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000447do_upload(struct passwd *pw, const char *sc_reader_id)
Ben Lindstromcd392282001-07-04 03:44:03 +0000448{
Ben Lindstromcd392282001-07-04 03:44:03 +0000449 Key *prv = NULL;
450 struct stat st;
Ben Lindstrom70e3ad82002-03-22 03:33:43 +0000451 int ret;
Ben Lindstromcd392282001-07-04 03:44:03 +0000452
453 if (!have_identity)
454 ask_filename(pw, "Enter file in which the key is");
455 if (stat(identity_file, &st) < 0) {
456 perror(identity_file);
Ben Lindstrom70e3ad82002-03-22 03:33:43 +0000457 exit(1);
Ben Lindstromcd392282001-07-04 03:44:03 +0000458 }
459 prv = load_identity(identity_file);
460 if (prv == NULL) {
461 error("load failed");
Ben Lindstrom70e3ad82002-03-22 03:33:43 +0000462 exit(1);
Ben Lindstromcd392282001-07-04 03:44:03 +0000463 }
Ben Lindstrom70e3ad82002-03-22 03:33:43 +0000464 ret = sc_put_key(prv, sc_reader_id);
465 key_free(prv);
466 if (ret < 0)
467 exit(1);
Damien Miller996acd22003-04-09 20:59:48 +1000468 logit("loading key done");
Ben Lindstrom70e3ad82002-03-22 03:33:43 +0000469 exit(0);
Ben Lindstromcd392282001-07-04 03:44:03 +0000470}
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000471
472static void
473do_download(struct passwd *pw, const char *sc_reader_id)
474{
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000475 Key **keys = NULL;
476 int i;
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000477
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000478 keys = sc_get_keys(sc_reader_id, NULL);
479 if (keys == NULL)
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000480 fatal("cannot read public key from smartcard");
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000481 for (i = 0; keys[i]; i++) {
482 key_write(keys[i], stdout);
483 key_free(keys[i]);
484 fprintf(stdout, "\n");
485 }
486 xfree(keys);
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000487 exit(0);
488}
Ben Lindstromffce1472001-08-06 21:57:31 +0000489#endif /* SMARTCARD */
Ben Lindstromcd392282001-07-04 03:44:03 +0000490
Ben Lindstrombba81212001-06-25 05:01:22 +0000491static void
Damien Miller10f6f6b1999-11-17 17:29:08 +1100492do_fingerprint(struct passwd *pw)
493{
Damien Miller98c7ad62000-03-09 21:27:49 +1100494 FILE *f;
Damien Millereba71ba2000-04-29 23:57:08 +1000495 Key *public;
Ben Lindstrom8fd372b2001-03-12 03:02:17 +0000496 char *comment = NULL, *cp, *ep, line[16*1024], *fp;
Ben Lindstrom65366a82001-12-06 16:32:47 +0000497 int i, skip = 0, num = 1, invalid = 1;
498 enum fp_rep rep;
499 enum fp_type fptype;
Damien Miller95def091999-11-25 00:26:21 +1100500 struct stat st;
Damien Miller10f6f6b1999-11-17 17:29:08 +1100501
Ben Lindstromd0fca422001-03-26 13:44:06 +0000502 fptype = print_bubblebabble ? SSH_FP_SHA1 : SSH_FP_MD5;
503 rep = print_bubblebabble ? SSH_FP_BUBBLEBABBLE : SSH_FP_HEX;
Ben Lindstrom8fd372b2001-03-12 03:02:17 +0000504
Damien Miller95def091999-11-25 00:26:21 +1100505 if (!have_identity)
506 ask_filename(pw, "Enter file in which the key is");
507 if (stat(identity_file, &st) < 0) {
508 perror(identity_file);
509 exit(1);
510 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000511 public = key_load_public(identity_file, &comment);
512 if (public != NULL) {
513 fp = key_fingerprint(public, fptype, rep);
Ben Lindstrom58d3b722002-06-23 21:28:13 +0000514 printf("%u %s %s\n", key_size(public), fp, comment);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100515 key_free(public);
516 xfree(comment);
Ben Lindstrom8fd372b2001-03-12 03:02:17 +0000517 xfree(fp);
Damien Miller98c7ad62000-03-09 21:27:49 +1100518 exit(0);
519 }
Damien Miller40b59852006-06-13 13:00:25 +1000520 if (comment) {
Ben Lindstromd0fca422001-03-26 13:44:06 +0000521 xfree(comment);
Damien Miller40b59852006-06-13 13:00:25 +1000522 comment = NULL;
523 }
Damien Miller98c7ad62000-03-09 21:27:49 +1100524
525 f = fopen(identity_file, "r");
526 if (f != NULL) {
Damien Miller98c7ad62000-03-09 21:27:49 +1100527 while (fgets(line, sizeof(line), f)) {
528 i = strlen(line) - 1;
529 if (line[i] != '\n') {
530 error("line %d too long: %.40s...", num, line);
531 skip = 1;
532 continue;
Damien Miller95def091999-11-25 00:26:21 +1100533 }
Damien Miller98c7ad62000-03-09 21:27:49 +1100534 num++;
535 if (skip) {
536 skip = 0;
537 continue;
538 }
539 line[i] = '\0';
540
541 /* Skip leading whitespace, empty and comment lines. */
542 for (cp = line; *cp == ' ' || *cp == '\t'; cp++)
543 ;
544 if (!*cp || *cp == '\n' || *cp == '#')
545 continue ;
546 i = strtol(cp, &ep, 10);
547 if (i == 0 || ep == NULL || (*ep != ' ' && *ep != '\t')) {
548 int quoted = 0;
549 comment = cp;
Ben Lindstrom58d3b722002-06-23 21:28:13 +0000550 for (; *cp && (quoted || (*cp != ' ' &&
551 *cp != '\t')); cp++) {
Damien Miller98c7ad62000-03-09 21:27:49 +1100552 if (*cp == '\\' && cp[1] == '"')
553 cp++; /* Skip both */
554 else if (*cp == '"')
555 quoted = !quoted;
556 }
557 if (!*cp)
558 continue;
559 *cp++ = '\0';
560 }
561 ep = cp;
Ben Lindstrom2941f112000-12-29 16:50:13 +0000562 public = key_new(KEY_RSA1);
563 if (key_read(public, &cp) != 1) {
564 cp = ep;
565 key_free(public);
566 public = key_new(KEY_UNSPEC);
567 if (key_read(public, &cp) != 1) {
568 key_free(public);
569 continue;
570 }
Damien Miller98c7ad62000-03-09 21:27:49 +1100571 }
Ben Lindstrom2941f112000-12-29 16:50:13 +0000572 comment = *cp ? cp : comment;
Ben Lindstromd0fca422001-03-26 13:44:06 +0000573 fp = key_fingerprint(public, fptype, rep);
Ben Lindstrom58d3b722002-06-23 21:28:13 +0000574 printf("%u %s %s\n", key_size(public), fp,
Ben Lindstrom2941f112000-12-29 16:50:13 +0000575 comment ? comment : "no comment");
Ben Lindstrom8fd372b2001-03-12 03:02:17 +0000576 xfree(fp);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000577 key_free(public);
Ben Lindstrom2941f112000-12-29 16:50:13 +0000578 invalid = 0;
Damien Miller95def091999-11-25 00:26:21 +1100579 }
Damien Miller98c7ad62000-03-09 21:27:49 +1100580 fclose(f);
Damien Miller95def091999-11-25 00:26:21 +1100581 }
Damien Miller98c7ad62000-03-09 21:27:49 +1100582 if (invalid) {
Damien Millereb5fec62001-11-12 10:52:44 +1100583 printf("%s is not a public key file.\n", identity_file);
Damien Miller98c7ad62000-03-09 21:27:49 +1100584 exit(1);
585 }
Damien Miller95def091999-11-25 00:26:21 +1100586 exit(0);
Damien Miller10f6f6b1999-11-17 17:29:08 +1100587}
588
Damien Miller4b42d7f2005-03-01 21:48:35 +1100589static void
590print_host(FILE *f, char *name, Key *public, int hash)
591{
592 if (hash && (name = host_hash(name, NULL, 0)) == NULL)
593 fatal("hash_host failed");
594 fprintf(f, "%s ", name);
595 if (!key_write(public, f))
596 fatal("key_write failed");
597 fprintf(f, "\n");
598}
599
600static void
601do_known_hosts(struct passwd *pw, const char *name)
602{
603 FILE *in, *out = stdout;
604 Key *public;
605 char *cp, *cp2, *kp, *kp2;
606 char line[16*1024], tmp[MAXPATHLEN], old[MAXPATHLEN];
607 int c, i, skip = 0, inplace = 0, num = 0, invalid = 0, has_unhashed = 0;
608
609 if (!have_identity) {
610 cp = tilde_expand_filename(_PATH_SSH_USER_HOSTFILE, pw->pw_uid);
611 if (strlcpy(identity_file, cp, sizeof(identity_file)) >=
612 sizeof(identity_file))
613 fatal("Specified known hosts path too long");
614 xfree(cp);
615 have_identity = 1;
616 }
617 if ((in = fopen(identity_file, "r")) == NULL)
618 fatal("fopen: %s", strerror(errno));
619
620 /*
621 * Find hosts goes to stdout, hash and deletions happen in-place
622 * A corner case is ssh-keygen -HF foo, which should go to stdout
623 */
624 if (!find_host && (hash_hosts || delete_host)) {
625 if (strlcpy(tmp, identity_file, sizeof(tmp)) >= sizeof(tmp) ||
626 strlcat(tmp, ".XXXXXXXXXX", sizeof(tmp)) >= sizeof(tmp) ||
627 strlcpy(old, identity_file, sizeof(old)) >= sizeof(old) ||
628 strlcat(old, ".old", sizeof(old)) >= sizeof(old))
629 fatal("known_hosts path too long");
630 umask(077);
631 if ((c = mkstemp(tmp)) == -1)
632 fatal("mkstemp: %s", strerror(errno));
633 if ((out = fdopen(c, "w")) == NULL) {
634 c = errno;
635 unlink(tmp);
636 fatal("fdopen: %s", strerror(c));
637 }
638 inplace = 1;
639 }
640
641 while (fgets(line, sizeof(line), in)) {
642 num++;
643 i = strlen(line) - 1;
644 if (line[i] != '\n') {
645 error("line %d too long: %.40s...", num, line);
646 skip = 1;
647 invalid = 1;
648 continue;
649 }
650 if (skip) {
651 skip = 0;
652 continue;
653 }
654 line[i] = '\0';
655
656 /* Skip leading whitespace, empty and comment lines. */
657 for (cp = line; *cp == ' ' || *cp == '\t'; cp++)
658 ;
659 if (!*cp || *cp == '\n' || *cp == '#') {
660 if (inplace)
661 fprintf(out, "%s\n", cp);
662 continue;
663 }
664 /* Find the end of the host name portion. */
665 for (kp = cp; *kp && *kp != ' ' && *kp != '\t'; kp++)
666 ;
667 if (*kp == '\0' || *(kp + 1) == '\0') {
668 error("line %d missing key: %.40s...",
669 num, line);
670 invalid = 1;
671 continue;
672 }
673 *kp++ = '\0';
674 kp2 = kp;
675
676 public = key_new(KEY_RSA1);
677 if (key_read(public, &kp) != 1) {
678 kp = kp2;
679 key_free(public);
680 public = key_new(KEY_UNSPEC);
681 if (key_read(public, &kp) != 1) {
682 error("line %d invalid key: %.40s...",
683 num, line);
684 key_free(public);
685 invalid = 1;
686 continue;
687 }
688 }
689
690 if (*cp == HASH_DELIM) {
691 if (find_host || delete_host) {
692 cp2 = host_hash(name, cp, strlen(cp));
693 if (cp2 == NULL) {
694 error("line %d: invalid hashed "
695 "name: %.64s...", num, line);
696 invalid = 1;
697 continue;
698 }
699 c = (strcmp(cp2, cp) == 0);
700 if (find_host && c) {
701 printf("# Host %s found: "
702 "line %d type %s\n", name,
703 num, key_type(public));
704 print_host(out, cp, public, 0);
705 }
706 if (delete_host && !c)
707 print_host(out, cp, public, 0);
708 } else if (hash_hosts)
709 print_host(out, cp, public, 0);
710 } else {
711 if (find_host || delete_host) {
712 c = (match_hostname(name, cp,
713 strlen(cp)) == 1);
714 if (find_host && c) {
715 printf("# Host %s found: "
716 "line %d type %s\n", name,
717 num, key_type(public));
718 print_host(out, cp, public, hash_hosts);
719 }
720 if (delete_host && !c)
721 print_host(out, cp, public, 0);
722 } else if (hash_hosts) {
Darren Tucker47eede72005-03-14 23:08:12 +1100723 for (cp2 = strsep(&cp, ",");
Damien Miller4b42d7f2005-03-01 21:48:35 +1100724 cp2 != NULL && *cp2 != '\0';
Damien Miller89eac802005-03-02 12:33:04 +1100725 cp2 = strsep(&cp, ",")) {
726 if (strcspn(cp2, "*?!") != strlen(cp2))
727 fprintf(stderr, "Warning: "
728 "ignoring host name with "
729 "metacharacters: %.64s\n",
730 cp2);
731 else
732 print_host(out, cp2, public, 1);
733 }
Damien Miller4b42d7f2005-03-01 21:48:35 +1100734 has_unhashed = 1;
735 }
736 }
737 key_free(public);
738 }
739 fclose(in);
740
741 if (invalid) {
742 fprintf(stderr, "%s is not a valid known_host file.\n",
743 identity_file);
744 if (inplace) {
745 fprintf(stderr, "Not replacing existing known_hosts "
Darren Tucker9f438a92005-03-14 23:09:18 +1100746 "file because of errors\n");
Damien Miller4b42d7f2005-03-01 21:48:35 +1100747 fclose(out);
748 unlink(tmp);
749 }
750 exit(1);
751 }
752
753 if (inplace) {
754 fclose(out);
755
756 /* Backup existing file */
757 if (unlink(old) == -1 && errno != ENOENT)
758 fatal("unlink %.100s: %s", old, strerror(errno));
759 if (link(identity_file, old) == -1)
760 fatal("link %.100s to %.100s: %s", identity_file, old,
761 strerror(errno));
762 /* Move new one into place */
763 if (rename(tmp, identity_file) == -1) {
764 error("rename\"%s\" to \"%s\": %s", tmp, identity_file,
765 strerror(errno));
766 unlink(tmp);
767 unlink(old);
768 exit(1);
769 }
770
771 fprintf(stderr, "%s updated.\n", identity_file);
772 fprintf(stderr, "Original contents retained as %s\n", old);
773 if (has_unhashed) {
774 fprintf(stderr, "WARNING: %s contains unhashed "
775 "entries\n", old);
776 fprintf(stderr, "Delete this file to ensure privacy "
Damien Miller0dc1bef2005-07-17 17:22:45 +1000777 "of hostnames\n");
Damien Miller4b42d7f2005-03-01 21:48:35 +1100778 }
779 }
780
781 exit(0);
782}
783
Damien Miller95def091999-11-25 00:26:21 +1100784/*
785 * Perform changing a passphrase. The argument is the passwd structure
786 * for the current user.
787 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000788static void
Damien Miller10f6f6b1999-11-17 17:29:08 +1100789do_change_passphrase(struct passwd *pw)
790{
Damien Miller95def091999-11-25 00:26:21 +1100791 char *comment;
792 char *old_passphrase, *passphrase1, *passphrase2;
793 struct stat st;
Damien Millereba71ba2000-04-29 23:57:08 +1000794 Key *private;
Damien Miller10f6f6b1999-11-17 17:29:08 +1100795
Damien Miller95def091999-11-25 00:26:21 +1100796 if (!have_identity)
797 ask_filename(pw, "Enter file in which the key is");
Damien Miller95def091999-11-25 00:26:21 +1100798 if (stat(identity_file, &st) < 0) {
799 perror(identity_file);
800 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000801 }
Damien Miller95def091999-11-25 00:26:21 +1100802 /* Try to load the file with empty passphrase. */
Ben Lindstromd0fca422001-03-26 13:44:06 +0000803 private = key_load_private(identity_file, "", &comment);
804 if (private == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100805 if (identity_passphrase)
806 old_passphrase = xstrdup(identity_passphrase);
807 else
Ben Lindstrom949974b2001-06-25 05:20:31 +0000808 old_passphrase =
809 read_passphrase("Enter old passphrase: ",
810 RP_ALLOW_STDIN);
811 private = key_load_private(identity_file, old_passphrase,
812 &comment);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000813 memset(old_passphrase, 0, strlen(old_passphrase));
814 xfree(old_passphrase);
815 if (private == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100816 printf("Bad passphrase.\n");
817 exit(1);
818 }
Damien Miller95def091999-11-25 00:26:21 +1100819 }
820 printf("Key has comment '%s'\n", comment);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000821
Damien Miller95def091999-11-25 00:26:21 +1100822 /* Ask the new passphrase (twice). */
823 if (identity_new_passphrase) {
824 passphrase1 = xstrdup(identity_new_passphrase);
825 passphrase2 = NULL;
826 } else {
827 passphrase1 =
Ben Lindstrom949974b2001-06-25 05:20:31 +0000828 read_passphrase("Enter new passphrase (empty for no "
829 "passphrase): ", RP_ALLOW_STDIN);
830 passphrase2 = read_passphrase("Enter same passphrase again: ",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100831 RP_ALLOW_STDIN);
Damien Miller95def091999-11-25 00:26:21 +1100832
833 /* Verify that they are the same. */
834 if (strcmp(passphrase1, passphrase2) != 0) {
835 memset(passphrase1, 0, strlen(passphrase1));
836 memset(passphrase2, 0, strlen(passphrase2));
837 xfree(passphrase1);
838 xfree(passphrase2);
839 printf("Pass phrases do not match. Try again.\n");
840 exit(1);
841 }
842 /* Destroy the other copy. */
843 memset(passphrase2, 0, strlen(passphrase2));
844 xfree(passphrase2);
845 }
846
847 /* Save the file using the new passphrase. */
Ben Lindstromd0fca422001-03-26 13:44:06 +0000848 if (!key_save_private(private, identity_file, passphrase1, comment)) {
Ben Lindstrom15f33862001-04-16 02:00:02 +0000849 printf("Saving the key failed: %s.\n", identity_file);
Damien Miller95def091999-11-25 00:26:21 +1100850 memset(passphrase1, 0, strlen(passphrase1));
851 xfree(passphrase1);
Damien Millereba71ba2000-04-29 23:57:08 +1000852 key_free(private);
Damien Miller95def091999-11-25 00:26:21 +1100853 xfree(comment);
854 exit(1);
855 }
856 /* Destroy the passphrase and the copy of the key in memory. */
857 memset(passphrase1, 0, strlen(passphrase1));
858 xfree(passphrase1);
Damien Millereba71ba2000-04-29 23:57:08 +1000859 key_free(private); /* Destroys contents */
Damien Miller95def091999-11-25 00:26:21 +1100860 xfree(comment);
861
862 printf("Your identification has been saved with the new passphrase.\n");
863 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000864}
865
Damien Miller37876e92003-05-15 10:19:46 +1000866/*
867 * Print the SSHFP RR.
868 */
Damien Millercb314822006-03-26 13:48:01 +1100869static int
870do_print_resource_record(struct passwd *pw, char *fname, char *hname)
Damien Miller37876e92003-05-15 10:19:46 +1000871{
872 Key *public;
873 char *comment = NULL;
874 struct stat st;
875
Damien Millercb314822006-03-26 13:48:01 +1100876 if (fname == NULL)
Damien Miller37876e92003-05-15 10:19:46 +1000877 ask_filename(pw, "Enter file in which the key is");
Damien Millercb314822006-03-26 13:48:01 +1100878 if (stat(fname, &st) < 0) {
879 if (errno == ENOENT)
880 return 0;
881 perror(fname);
Damien Miller37876e92003-05-15 10:19:46 +1000882 exit(1);
883 }
Damien Millercb314822006-03-26 13:48:01 +1100884 public = key_load_public(fname, &comment);
Damien Miller37876e92003-05-15 10:19:46 +1000885 if (public != NULL) {
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000886 export_dns_rr(hname, public, stdout, print_generic);
Damien Miller37876e92003-05-15 10:19:46 +1000887 key_free(public);
888 xfree(comment);
Damien Millercb314822006-03-26 13:48:01 +1100889 return 1;
Damien Miller37876e92003-05-15 10:19:46 +1000890 }
891 if (comment)
892 xfree(comment);
893
Damien Millercb314822006-03-26 13:48:01 +1100894 printf("failed to read v2 public key from %s.\n", fname);
Damien Miller37876e92003-05-15 10:19:46 +1000895 exit(1);
896}
Damien Miller37876e92003-05-15 10:19:46 +1000897
Damien Miller95def091999-11-25 00:26:21 +1100898/*
899 * Change the comment of a private key file.
900 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000901static void
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000902do_change_comment(struct passwd *pw)
903{
Ben Lindstrom5fc62702001-03-09 18:19:24 +0000904 char new_comment[1024], *comment, *passphrase;
Ben Lindstromd0fca422001-03-26 13:44:06 +0000905 Key *private;
906 Key *public;
Damien Miller95def091999-11-25 00:26:21 +1100907 struct stat st;
908 FILE *f;
Ben Lindstrom5fc62702001-03-09 18:19:24 +0000909 int fd;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000910
Damien Miller95def091999-11-25 00:26:21 +1100911 if (!have_identity)
912 ask_filename(pw, "Enter file in which the key is");
Damien Miller95def091999-11-25 00:26:21 +1100913 if (stat(identity_file, &st) < 0) {
914 perror(identity_file);
915 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000916 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000917 private = key_load_private(identity_file, "", &comment);
918 if (private == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100919 if (identity_passphrase)
920 passphrase = xstrdup(identity_passphrase);
921 else if (identity_new_passphrase)
922 passphrase = xstrdup(identity_new_passphrase);
923 else
Ben Lindstrom949974b2001-06-25 05:20:31 +0000924 passphrase = read_passphrase("Enter passphrase: ",
925 RP_ALLOW_STDIN);
Damien Miller95def091999-11-25 00:26:21 +1100926 /* Try to load using the passphrase. */
Ben Lindstromd0fca422001-03-26 13:44:06 +0000927 private = key_load_private(identity_file, passphrase, &comment);
928 if (private == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100929 memset(passphrase, 0, strlen(passphrase));
930 xfree(passphrase);
931 printf("Bad passphrase.\n");
932 exit(1);
933 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000934 } else {
935 passphrase = xstrdup("");
Damien Miller95def091999-11-25 00:26:21 +1100936 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000937 if (private->type != KEY_RSA1) {
938 fprintf(stderr, "Comments are only supported for RSA1 keys.\n");
939 key_free(private);
940 exit(1);
Damien Miller9f0f5c62001-12-21 14:45:46 +1100941 }
Damien Miller95def091999-11-25 00:26:21 +1100942 printf("Key now has comment '%s'\n", comment);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000943
Damien Miller95def091999-11-25 00:26:21 +1100944 if (identity_comment) {
945 strlcpy(new_comment, identity_comment, sizeof(new_comment));
946 } else {
947 printf("Enter new comment: ");
948 fflush(stdout);
949 if (!fgets(new_comment, sizeof(new_comment), stdin)) {
950 memset(passphrase, 0, strlen(passphrase));
Damien Millereba71ba2000-04-29 23:57:08 +1000951 key_free(private);
Damien Miller95def091999-11-25 00:26:21 +1100952 exit(1);
953 }
Damien Miller95def091999-11-25 00:26:21 +1100954 if (strchr(new_comment, '\n'))
955 *strchr(new_comment, '\n') = 0;
956 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000957
Damien Miller95def091999-11-25 00:26:21 +1100958 /* Save the file using the new passphrase. */
Ben Lindstromd0fca422001-03-26 13:44:06 +0000959 if (!key_save_private(private, identity_file, passphrase, new_comment)) {
Ben Lindstrom15f33862001-04-16 02:00:02 +0000960 printf("Saving the key failed: %s.\n", identity_file);
Damien Miller95def091999-11-25 00:26:21 +1100961 memset(passphrase, 0, strlen(passphrase));
962 xfree(passphrase);
Damien Millereba71ba2000-04-29 23:57:08 +1000963 key_free(private);
Damien Miller95def091999-11-25 00:26:21 +1100964 xfree(comment);
965 exit(1);
966 }
Damien Miller95def091999-11-25 00:26:21 +1100967 memset(passphrase, 0, strlen(passphrase));
968 xfree(passphrase);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000969 public = key_from_private(private);
Damien Millereba71ba2000-04-29 23:57:08 +1000970 key_free(private);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000971
Damien Miller95def091999-11-25 00:26:21 +1100972 strlcat(identity_file, ".pub", sizeof(identity_file));
Ben Lindstrom5fc62702001-03-09 18:19:24 +0000973 fd = open(identity_file, O_WRONLY | O_CREAT | O_TRUNC, 0644);
974 if (fd == -1) {
Damien Miller95def091999-11-25 00:26:21 +1100975 printf("Could not save your public key in %s\n", identity_file);
976 exit(1);
977 }
Ben Lindstrom5fc62702001-03-09 18:19:24 +0000978 f = fdopen(fd, "w");
979 if (f == NULL) {
980 printf("fdopen %s failed", identity_file);
981 exit(1);
982 }
Damien Millereba71ba2000-04-29 23:57:08 +1000983 if (!key_write(public, f))
984 fprintf(stderr, "write key failed");
985 key_free(public);
986 fprintf(f, " %s\n", new_comment);
Damien Miller95def091999-11-25 00:26:21 +1100987 fclose(f);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000988
Damien Miller95def091999-11-25 00:26:21 +1100989 xfree(comment);
990
991 printf("The comment in your key file has been changed.\n");
992 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000993}
994
Ben Lindstrombba81212001-06-25 05:01:22 +0000995static void
Damien Miller431f66b1999-11-21 18:31:57 +1100996usage(void)
997{
Ben Lindstrom97be31e2001-08-06 21:49:06 +0000998 fprintf(stderr, "Usage: %s [options]\n", __progname);
999 fprintf(stderr, "Options:\n");
Damien Miller9278ffa2005-05-26 11:59:06 +10001000 fprintf(stderr, " -a trials Number of trials for screening DH-GEX moduli.\n");
Ben Lindstrom97be31e2001-08-06 21:49:06 +00001001 fprintf(stderr, " -B Show bubblebabble digest of key file.\n");
Damien Miller9278ffa2005-05-26 11:59:06 +10001002 fprintf(stderr, " -b bits Number of bits in the key to create.\n");
Ben Lindstrom97be31e2001-08-06 21:49:06 +00001003 fprintf(stderr, " -C comment Provide new comment.\n");
Damien Miller9278ffa2005-05-26 11:59:06 +10001004 fprintf(stderr, " -c Change comment in private and public key files.\n");
Ben Lindstrom97be31e2001-08-06 21:49:06 +00001005#ifdef SMARTCARD
1006 fprintf(stderr, " -D reader Download public key from smartcard.\n");
Damien Miller9278ffa2005-05-26 11:59:06 +10001007#endif /* SMARTCARD */
1008 fprintf(stderr, " -e Convert OpenSSH to IETF SECSH key file.\n");
1009 fprintf(stderr, " -F hostname Find hostname in known hosts file.\n");
1010 fprintf(stderr, " -f filename Filename of the key file.\n");
1011 fprintf(stderr, " -G file Generate candidates for DH-GEX moduli.\n");
1012 fprintf(stderr, " -g Use generic DNS resource record format.\n");
1013 fprintf(stderr, " -H Hash names in known_hosts file.\n");
1014 fprintf(stderr, " -i Convert IETF SECSH to OpenSSH key file.\n");
1015 fprintf(stderr, " -l Show fingerprint of key file.\n");
1016 fprintf(stderr, " -M memory Amount of memory (MB) to use for generating DH-GEX moduli.\n");
1017 fprintf(stderr, " -N phrase Provide new passphrase.\n");
1018 fprintf(stderr, " -P phrase Provide old passphrase.\n");
1019 fprintf(stderr, " -p Change passphrase of private key file.\n");
1020 fprintf(stderr, " -q Quiet.\n");
1021 fprintf(stderr, " -R hostname Remove host from known_hosts file.\n");
1022 fprintf(stderr, " -r hostname Print DNS resource record.\n");
1023 fprintf(stderr, " -S start Start point (hex) for generating DH-GEX moduli.\n");
1024 fprintf(stderr, " -T file Screen candidates for DH-GEX moduli.\n");
1025 fprintf(stderr, " -t type Specify type of key to create.\n");
1026#ifdef SMARTCARD
Ben Lindstrom97be31e2001-08-06 21:49:06 +00001027 fprintf(stderr, " -U reader Upload private key to smartcard.\n");
1028#endif /* SMARTCARD */
Damien Miller9278ffa2005-05-26 11:59:06 +10001029 fprintf(stderr, " -v Verbose.\n");
1030 fprintf(stderr, " -W gen Generator to use for generating DH-GEX moduli.\n");
1031 fprintf(stderr, " -y Read private key file and print public key.\n");
Darren Tucker019cefe2003-08-02 22:40:07 +10001032
Damien Miller95def091999-11-25 00:26:21 +11001033 exit(1);
Damien Miller431f66b1999-11-21 18:31:57 +11001034}
1035
Damien Miller95def091999-11-25 00:26:21 +11001036/*
1037 * Main program for key management.
1038 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001039int
1040main(int ac, char **av)
1041{
Damien Millera41c8b12002-01-22 23:05:08 +11001042 char dotsshdir[MAXPATHLEN], comment[1024], *passphrase1, *passphrase2;
Tim Rice2e0e38e2003-09-08 16:11:33 -07001043 char out_file[MAXPATHLEN], *reader_id = NULL;
Damien Miller4b42d7f2005-03-01 21:48:35 +11001044 char *rr_hostname = NULL;
Ben Lindstrom5fc62702001-03-09 18:19:24 +00001045 Key *private, *public;
Damien Miller95def091999-11-25 00:26:21 +11001046 struct passwd *pw;
Damien Miller95def091999-11-25 00:26:21 +11001047 struct stat st;
Damien Millerb089fb52005-05-26 12:16:18 +10001048 int opt, type, fd, download = 0;
Darren Tucker2db8ae62005-06-01 23:02:25 +10001049 u_int32_t memory = 0, generator_wanted = 0, trials = 100;
Darren Tucker019cefe2003-08-02 22:40:07 +10001050 int do_gen_candidates = 0, do_screen_candidates = 0;
Darren Tucker06930c72003-12-31 11:34:51 +11001051 int log_level = SYSLOG_LEVEL_INFO;
Darren Tucker019cefe2003-08-02 22:40:07 +10001052 BIGNUM *start = NULL;
Damien Miller95def091999-11-25 00:26:21 +11001053 FILE *f;
Damien Miller02e754f2005-05-26 12:19:39 +10001054 const char *errstr;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001055
Damien Miller95def091999-11-25 00:26:21 +11001056 extern int optind;
1057 extern char *optarg;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001058
Darren Tuckerce321d82005-10-03 18:11:24 +10001059 /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
1060 sanitise_stdfd();
1061
Damien Miller59d3d5b2003-08-22 09:34:41 +10001062 __progname = ssh_get_progname(av[0]);
Damien Millerf9b625c2000-07-09 22:42:32 +10001063
Damien Millerd3a18572000-06-07 19:55:44 +10001064 SSLeay_add_all_algorithms();
Darren Tucker019cefe2003-08-02 22:40:07 +10001065 log_init(av[0], SYSLOG_LEVEL_INFO, SYSLOG_FACILITY_USER, 1);
1066
Kevin Steves3a881912002-07-20 19:05:40 +00001067 init_rng();
1068 seed_rng();
Damien Millereba71ba2000-04-29 23:57:08 +10001069
Damien Miller5428f641999-11-25 11:54:57 +11001070 /* we need this for the home * directory. */
Damien Miller95def091999-11-25 00:26:21 +11001071 pw = getpwuid(getuid());
1072 if (!pw) {
1073 printf("You don't exist, go away!\n");
1074 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001075 }
Damien Millereba71ba2000-04-29 23:57:08 +10001076 if (gethostname(hostname, sizeof(hostname)) < 0) {
1077 perror("gethostname");
1078 exit(1);
1079 }
Damien Miller5428f641999-11-25 11:54:57 +11001080
Darren Tucker019cefe2003-08-02 22:40:07 +10001081 while ((opt = getopt(ac, av,
Damien Miller4b42d7f2005-03-01 21:48:35 +11001082 "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 +11001083 switch (opt) {
1084 case 'b':
Damien Miller5f340062006-03-26 14:27:57 +11001085 bits = (u_int32_t)strtonum(optarg, 768, 32768, &errstr);
Damien Miller02e754f2005-05-26 12:19:39 +10001086 if (errstr)
1087 fatal("Bits has bad value %s (%s)",
1088 optarg, errstr);
Damien Miller95def091999-11-25 00:26:21 +11001089 break;
Damien Miller4b42d7f2005-03-01 21:48:35 +11001090 case 'F':
1091 find_host = 1;
1092 rr_hostname = optarg;
1093 break;
1094 case 'H':
1095 hash_hosts = 1;
1096 break;
1097 case 'R':
1098 delete_host = 1;
1099 rr_hostname = optarg;
1100 break;
Damien Miller95def091999-11-25 00:26:21 +11001101 case 'l':
1102 print_fingerprint = 1;
1103 break;
Ben Lindstrom8fd372b2001-03-12 03:02:17 +00001104 case 'B':
1105 print_bubblebabble = 1;
1106 break;
Damien Miller95def091999-11-25 00:26:21 +11001107 case 'p':
1108 change_passphrase = 1;
1109 break;
Damien Miller95def091999-11-25 00:26:21 +11001110 case 'c':
1111 change_comment = 1;
1112 break;
Damien Miller95def091999-11-25 00:26:21 +11001113 case 'f':
Damien Millerb089fb52005-05-26 12:16:18 +10001114 if (strlcpy(identity_file, optarg, sizeof(identity_file)) >=
1115 sizeof(identity_file))
1116 fatal("Identity filename too long");
Damien Miller95def091999-11-25 00:26:21 +11001117 have_identity = 1;
1118 break;
Damien Miller37876e92003-05-15 10:19:46 +10001119 case 'g':
1120 print_generic = 1;
1121 break;
Damien Miller95def091999-11-25 00:26:21 +11001122 case 'P':
1123 identity_passphrase = optarg;
1124 break;
Damien Miller95def091999-11-25 00:26:21 +11001125 case 'N':
1126 identity_new_passphrase = optarg;
1127 break;
Damien Miller95def091999-11-25 00:26:21 +11001128 case 'C':
1129 identity_comment = optarg;
1130 break;
Damien Miller95def091999-11-25 00:26:21 +11001131 case 'q':
1132 quiet = 1;
1133 break;
Ben Lindstrom5a707822001-04-22 17:15:46 +00001134 case 'e':
Damien Millereba71ba2000-04-29 23:57:08 +10001135 case 'x':
Ben Lindstrom5a707822001-04-22 17:15:46 +00001136 /* export key */
Damien Millereba71ba2000-04-29 23:57:08 +10001137 convert_to_ssh2 = 1;
1138 break;
Ben Lindstrom5a707822001-04-22 17:15:46 +00001139 case 'i':
Damien Millereba71ba2000-04-29 23:57:08 +10001140 case 'X':
Ben Lindstrom5a707822001-04-22 17:15:46 +00001141 /* import key */
Damien Millereba71ba2000-04-29 23:57:08 +10001142 convert_from_ssh2 = 1;
1143 break;
Damien Millereba71ba2000-04-29 23:57:08 +10001144 case 'y':
1145 print_public = 1;
1146 break;
Damien Millereba71ba2000-04-29 23:57:08 +10001147 case 'd':
Damien Miller0bc1bd82000-11-13 22:57:25 +11001148 key_type_name = "dsa";
Damien Millereba71ba2000-04-29 23:57:08 +10001149 break;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001150 case 't':
1151 key_type_name = optarg;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001152 break;
Ben Lindstrom8282d6a2001-08-06 21:44:05 +00001153 case 'D':
1154 download = 1;
Damien Miller90967402006-03-26 14:07:26 +11001155 /*FALLTHROUGH*/
Ben Lindstromf19578c2001-08-06 21:46:54 +00001156 case 'U':
Ben Lindstrom8282d6a2001-08-06 21:44:05 +00001157 reader_id = optarg;
Ben Lindstromcd392282001-07-04 03:44:03 +00001158 break;
Darren Tucker06930c72003-12-31 11:34:51 +11001159 case 'v':
1160 if (log_level == SYSLOG_LEVEL_INFO)
1161 log_level = SYSLOG_LEVEL_DEBUG1;
1162 else {
Darren Tuckerfc959702004-07-17 16:12:08 +10001163 if (log_level >= SYSLOG_LEVEL_DEBUG1 &&
Darren Tucker06930c72003-12-31 11:34:51 +11001164 log_level < SYSLOG_LEVEL_DEBUG3)
1165 log_level++;
1166 }
1167 break;
Damien Miller37876e92003-05-15 10:19:46 +10001168 case 'r':
Damien Miller4b42d7f2005-03-01 21:48:35 +11001169 rr_hostname = optarg;
Damien Miller37876e92003-05-15 10:19:46 +10001170 break;
Darren Tucker019cefe2003-08-02 22:40:07 +10001171 case 'W':
Damien Miller5f340062006-03-26 14:27:57 +11001172 generator_wanted = (u_int32_t)strtonum(optarg, 1,
1173 UINT_MAX, &errstr);
Damien Millerb089fb52005-05-26 12:16:18 +10001174 if (errstr)
1175 fatal("Desired generator has bad value: %s (%s)",
1176 optarg, errstr);
Darren Tucker019cefe2003-08-02 22:40:07 +10001177 break;
1178 case 'a':
Damien Miller5f340062006-03-26 14:27:57 +11001179 trials = (u_int32_t)strtonum(optarg, 1, UINT_MAX, &errstr);
Damien Millerb089fb52005-05-26 12:16:18 +10001180 if (errstr)
1181 fatal("Invalid number of trials: %s (%s)",
1182 optarg, errstr);
Darren Tucker019cefe2003-08-02 22:40:07 +10001183 break;
1184 case 'M':
Damien Miller5f340062006-03-26 14:27:57 +11001185 memory = (u_int32_t)strtonum(optarg, 1, UINT_MAX, &errstr);
Damien Millerb089fb52005-05-26 12:16:18 +10001186 if (errstr) {
1187 fatal("Memory limit is %s: %s", errstr, optarg);
1188 }
Darren Tucker019cefe2003-08-02 22:40:07 +10001189 break;
1190 case 'G':
1191 do_gen_candidates = 1;
Damien Millerb089fb52005-05-26 12:16:18 +10001192 if (strlcpy(out_file, optarg, sizeof(out_file)) >=
1193 sizeof(out_file))
1194 fatal("Output filename too long");
Darren Tucker019cefe2003-08-02 22:40:07 +10001195 break;
1196 case 'T':
1197 do_screen_candidates = 1;
Damien Millerb089fb52005-05-26 12:16:18 +10001198 if (strlcpy(out_file, optarg, sizeof(out_file)) >=
1199 sizeof(out_file))
1200 fatal("Output filename too long");
Darren Tucker019cefe2003-08-02 22:40:07 +10001201 break;
1202 case 'S':
1203 /* XXX - also compare length against bits */
1204 if (BN_hex2bn(&start, optarg) == 0)
1205 fatal("Invalid start point.");
1206 break;
Damien Miller95def091999-11-25 00:26:21 +11001207 case '?':
1208 default:
1209 usage();
1210 }
1211 }
Darren Tucker06930c72003-12-31 11:34:51 +11001212
1213 /* reinit */
1214 log_init(av[0], log_level, SYSLOG_FACILITY_USER, 1);
1215
Damien Miller95def091999-11-25 00:26:21 +11001216 if (optind < ac) {
1217 printf("Too many arguments.\n");
1218 usage();
1219 }
1220 if (change_passphrase && change_comment) {
1221 printf("Can only have one of -p and -c.\n");
1222 usage();
1223 }
Damien Miller4b42d7f2005-03-01 21:48:35 +11001224 if (delete_host || hash_hosts || find_host)
1225 do_known_hosts(pw, rr_hostname);
Ben Lindstrom8fd372b2001-03-12 03:02:17 +00001226 if (print_fingerprint || print_bubblebabble)
Damien Miller95def091999-11-25 00:26:21 +11001227 do_fingerprint(pw);
Damien Miller95def091999-11-25 00:26:21 +11001228 if (change_passphrase)
1229 do_change_passphrase(pw);
Damien Miller4a10d2e2002-03-11 22:53:29 +11001230 if (change_comment)
1231 do_change_comment(pw);
Kevin Steves3a881912002-07-20 19:05:40 +00001232 if (convert_to_ssh2)
1233 do_convert_to_ssh2(pw);
1234 if (convert_from_ssh2)
1235 do_convert_from_ssh2(pw);
Damien Millereba71ba2000-04-29 23:57:08 +10001236 if (print_public)
1237 do_print_public(pw);
Damien Miller4b42d7f2005-03-01 21:48:35 +11001238 if (rr_hostname != NULL) {
Damien Millercb314822006-03-26 13:48:01 +11001239 unsigned int n = 0;
1240
1241 if (have_identity) {
1242 n = do_print_resource_record(pw,
1243 identity_file, rr_hostname);
1244 if (n == 0) {
1245 perror(identity_file);
1246 exit(1);
1247 }
1248 exit(0);
1249 } else {
1250
1251 n += do_print_resource_record(pw,
1252 _PATH_HOST_RSA_KEY_FILE, rr_hostname);
1253 n += do_print_resource_record(pw,
1254 _PATH_HOST_DSA_KEY_FILE, rr_hostname);
1255
1256 if (n == 0)
1257 fatal("no keys found.");
1258 exit(0);
1259 }
Damien Miller37876e92003-05-15 10:19:46 +10001260 }
Ben Lindstrom8282d6a2001-08-06 21:44:05 +00001261 if (reader_id != NULL) {
Ben Lindstrom6818bfb2001-08-06 21:40:04 +00001262#ifdef SMARTCARD
Ben Lindstrom8282d6a2001-08-06 21:44:05 +00001263 if (download)
1264 do_download(pw, reader_id);
1265 else
1266 do_upload(pw, reader_id);
Ben Lindstromffce1472001-08-06 21:57:31 +00001267#else /* SMARTCARD */
Ben Lindstrom6818bfb2001-08-06 21:40:04 +00001268 fatal("no support for smartcards.");
Ben Lindstromffce1472001-08-06 21:57:31 +00001269#endif /* SMARTCARD */
Ben Lindstrom8282d6a2001-08-06 21:44:05 +00001270 }
Damien Miller95def091999-11-25 00:26:21 +11001271
Darren Tucker019cefe2003-08-02 22:40:07 +10001272 if (do_gen_candidates) {
1273 FILE *out = fopen(out_file, "w");
Damien Miller787b2ec2003-11-21 23:56:47 +11001274
Darren Tucker019cefe2003-08-02 22:40:07 +10001275 if (out == NULL) {
1276 error("Couldn't open modulus candidate file \"%s\": %s",
1277 out_file, strerror(errno));
1278 return (1);
1279 }
Damien Miller3f54a9f2005-11-05 14:52:18 +11001280 if (bits == 0)
1281 bits = DEFAULT_BITS;
Darren Tucker019cefe2003-08-02 22:40:07 +10001282 if (gen_candidates(out, memory, bits, start) != 0)
Damien Miller15d72a02005-11-05 15:07:33 +11001283 fatal("modulus candidate generation failed");
Darren Tucker019cefe2003-08-02 22:40:07 +10001284
1285 return (0);
1286 }
1287
1288 if (do_screen_candidates) {
1289 FILE *in;
1290 FILE *out = fopen(out_file, "w");
1291
1292 if (have_identity && strcmp(identity_file, "-") != 0) {
1293 if ((in = fopen(identity_file, "r")) == NULL) {
1294 fatal("Couldn't open modulus candidate "
Damien Millera8e06ce2003-11-21 23:48:55 +11001295 "file \"%s\": %s", identity_file,
Darren Tucker019cefe2003-08-02 22:40:07 +10001296 strerror(errno));
1297 }
1298 } else
1299 in = stdin;
1300
1301 if (out == NULL) {
1302 fatal("Couldn't open moduli file \"%s\": %s",
1303 out_file, strerror(errno));
1304 }
1305 if (prime_test(in, out, trials, generator_wanted) != 0)
Damien Miller15d72a02005-11-05 15:07:33 +11001306 fatal("modulus screening failed");
Darren Tuckerf4220e62003-08-21 16:44:07 +10001307 return (0);
Darren Tucker019cefe2003-08-02 22:40:07 +10001308 }
1309
Damien Miller95def091999-11-25 00:26:21 +11001310 arc4random_stir();
1311
Damien Millerf14be5c2005-11-05 15:15:49 +11001312 if (key_type_name == NULL)
1313 key_type_name = "rsa";
1314
Damien Millere39cacc2000-11-29 12:18:44 +11001315 type = key_type_from_name(key_type_name);
1316 if (type == KEY_UNSPEC) {
1317 fprintf(stderr, "unknown key type %s\n", key_type_name);
1318 exit(1);
Damien Millereba71ba2000-04-29 23:57:08 +10001319 }
Damien Miller3f54a9f2005-11-05 14:52:18 +11001320 if (bits == 0)
1321 bits = (type == KEY_DSA) ? DEFAULT_BITS_DSA : DEFAULT_BITS;
Tim Rice660c3402005-11-28 17:45:32 -08001322 if (type == KEY_DSA && bits != 1024)
1323 fatal("DSA keys must be 1024 bits");
Darren Tucker3af2ac52005-11-29 13:10:24 +11001324 if (!quiet)
1325 printf("Generating public/private %s key pair.\n", key_type_name);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001326 private = key_generate(type, bits);
1327 if (private == NULL) {
1328 fprintf(stderr, "key_generate failed");
1329 exit(1);
1330 }
1331 public = key_from_private(private);
Damien Miller95def091999-11-25 00:26:21 +11001332
1333 if (!have_identity)
1334 ask_filename(pw, "Enter file in which to save the key");
1335
Damien Miller788f2122005-11-05 15:14:59 +11001336 /* Create ~/.ssh directory if it doesn't already exist. */
Ben Lindstrom226cfa02001-01-22 05:34:40 +00001337 snprintf(dotsshdir, sizeof dotsshdir, "%s/%s", pw->pw_dir, _PATH_SSH_USER_DIR);
Damien Miller95def091999-11-25 00:26:21 +11001338 if (strstr(identity_file, dotsshdir) != NULL &&
1339 stat(dotsshdir, &st) < 0) {
Damien Millerbe484b52000-07-15 14:14:16 +10001340 if (mkdir(dotsshdir, 0700) < 0)
Damien Miller95def091999-11-25 00:26:21 +11001341 error("Could not create directory '%s'.", dotsshdir);
1342 else if (!quiet)
1343 printf("Created directory '%s'.\n", dotsshdir);
1344 }
1345 /* If the file already exists, ask the user to confirm. */
1346 if (stat(identity_file, &st) >= 0) {
1347 char yesno[3];
1348 printf("%s already exists.\n", identity_file);
1349 printf("Overwrite (y/n)? ");
1350 fflush(stdout);
1351 if (fgets(yesno, sizeof(yesno), stdin) == NULL)
1352 exit(1);
1353 if (yesno[0] != 'y' && yesno[0] != 'Y')
1354 exit(1);
1355 }
1356 /* Ask for a passphrase (twice). */
1357 if (identity_passphrase)
1358 passphrase1 = xstrdup(identity_passphrase);
1359 else if (identity_new_passphrase)
1360 passphrase1 = xstrdup(identity_new_passphrase);
1361 else {
1362passphrase_again:
1363 passphrase1 =
Ben Lindstrom949974b2001-06-25 05:20:31 +00001364 read_passphrase("Enter passphrase (empty for no "
1365 "passphrase): ", RP_ALLOW_STDIN);
1366 passphrase2 = read_passphrase("Enter same passphrase again: ",
1367 RP_ALLOW_STDIN);
Damien Miller95def091999-11-25 00:26:21 +11001368 if (strcmp(passphrase1, passphrase2) != 0) {
Ben Lindstrom949974b2001-06-25 05:20:31 +00001369 /*
1370 * The passphrases do not match. Clear them and
1371 * retry.
1372 */
Damien Miller95def091999-11-25 00:26:21 +11001373 memset(passphrase1, 0, strlen(passphrase1));
1374 memset(passphrase2, 0, strlen(passphrase2));
1375 xfree(passphrase1);
1376 xfree(passphrase2);
1377 printf("Passphrases do not match. Try again.\n");
1378 goto passphrase_again;
1379 }
1380 /* Clear the other copy of the passphrase. */
1381 memset(passphrase2, 0, strlen(passphrase2));
1382 xfree(passphrase2);
1383 }
1384
Damien Miller95def091999-11-25 00:26:21 +11001385 if (identity_comment) {
1386 strlcpy(comment, identity_comment, sizeof(comment));
1387 } else {
Damien Miller4af51302000-04-16 11:18:38 +10001388 /* Create default commend field for the passphrase. */
Damien Miller95def091999-11-25 00:26:21 +11001389 snprintf(comment, sizeof comment, "%s@%s", pw->pw_name, hostname);
1390 }
1391
1392 /* Save the key with the given passphrase and comment. */
Ben Lindstromd0fca422001-03-26 13:44:06 +00001393 if (!key_save_private(private, identity_file, passphrase1, comment)) {
Ben Lindstrom15f33862001-04-16 02:00:02 +00001394 printf("Saving the key failed: %s.\n", identity_file);
Damien Miller95def091999-11-25 00:26:21 +11001395 memset(passphrase1, 0, strlen(passphrase1));
1396 xfree(passphrase1);
1397 exit(1);
1398 }
1399 /* Clear the passphrase. */
1400 memset(passphrase1, 0, strlen(passphrase1));
1401 xfree(passphrase1);
1402
1403 /* Clear the private key and the random number generator. */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001404 key_free(private);
Damien Miller95def091999-11-25 00:26:21 +11001405 arc4random_stir();
1406
1407 if (!quiet)
1408 printf("Your identification has been saved in %s.\n", identity_file);
1409
Damien Miller95def091999-11-25 00:26:21 +11001410 strlcat(identity_file, ".pub", sizeof(identity_file));
Ben Lindstrom5fc62702001-03-09 18:19:24 +00001411 fd = open(identity_file, O_WRONLY | O_CREAT | O_TRUNC, 0644);
1412 if (fd == -1) {
Damien Miller95def091999-11-25 00:26:21 +11001413 printf("Could not save your public key in %s\n", identity_file);
1414 exit(1);
1415 }
Ben Lindstrom5fc62702001-03-09 18:19:24 +00001416 f = fdopen(fd, "w");
1417 if (f == NULL) {
1418 printf("fdopen %s failed", identity_file);
1419 exit(1);
1420 }
Damien Millereba71ba2000-04-29 23:57:08 +10001421 if (!key_write(public, f))
1422 fprintf(stderr, "write key failed");
1423 fprintf(f, " %s\n", comment);
Damien Miller95def091999-11-25 00:26:21 +11001424 fclose(f);
1425
1426 if (!quiet) {
Ben Lindstromcfccef92001-03-13 04:57:58 +00001427 char *fp = key_fingerprint(public, SSH_FP_MD5, SSH_FP_HEX);
Damien Millereba71ba2000-04-29 23:57:08 +10001428 printf("Your public key has been saved in %s.\n",
1429 identity_file);
Damien Miller95def091999-11-25 00:26:21 +11001430 printf("The key fingerprint is:\n");
Ben Lindstromcfccef92001-03-13 04:57:58 +00001431 printf("%s %s\n", fp, comment);
1432 xfree(fp);
Damien Miller95def091999-11-25 00:26:21 +11001433 }
Damien Millereba71ba2000-04-29 23:57:08 +10001434
1435 key_free(public);
Damien Miller95def091999-11-25 00:26:21 +11001436 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001437}