blob: afa718a967fc16e37b72a0f50fef14fa8db2e225 [file] [log] [blame]
Damien Miller69996102006-07-10 20:53:31 +10001/* $OpenBSD: ssh-keygen.c,v 1.146 2006/07/06 16:22:39 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 Miller9f2abc42006-07-10 20:53:08 +100024#include <paths.h>
25#include <pwd.h>
26
Damien Millerd4a8b7e1999-10-27 13:42:43 +100027#include "xmalloc.h"
Damien Millereba71ba2000-04-29 23:57:08 +100028#include "key.h"
Ben Lindstromd09fcf52001-03-29 00:29:54 +000029#include "rsa.h"
Damien Millereba71ba2000-04-29 23:57:08 +100030#include "authfile.h"
31#include "uuencode.h"
Damien Miller874d77b2000-10-14 16:23:11 +110032#include "buffer.h"
33#include "bufaux.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000034#include "pathnames.h"
35#include "log.h"
Darren Tuckere608ca22004-05-13 16:15:47 +100036#include "misc.h"
Damien Miller4b42d7f2005-03-01 21:48:35 +110037#include "match.h"
38#include "hostfile.h"
Damien Miller69996102006-07-10 20:53:31 +100039#include "dns.h"
Damien Miller874d77b2000-10-14 16:23:11 +110040
Ben Lindstrom8282d6a2001-08-06 21:44:05 +000041#ifdef SMARTCARD
Ben Lindstrom8282d6a2001-08-06 21:44:05 +000042#include "scard.h"
Ben Lindstrombcc18082001-08-06 21:59:25 +000043#endif
Ben Lindstromcd392282001-07-04 03:44:03 +000044
Damien Miller3f54a9f2005-11-05 14:52:18 +110045/* Number of bits in the RSA/DSA key. This value can be set on the command line. */
46#define DEFAULT_BITS 2048
47#define DEFAULT_BITS_DSA 1024
48u_int32_t bits = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100049
Damien Miller5428f641999-11-25 11:54:57 +110050/*
51 * Flag indicating that we just want to change the passphrase. This can be
52 * set on the command line.
53 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100054int change_passphrase = 0;
55
Damien Miller5428f641999-11-25 11:54:57 +110056/*
57 * Flag indicating that we just want to change the comment. This can be set
58 * on the command line.
59 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100060int change_comment = 0;
61
62int quiet = 0;
63
Damien Miller4b42d7f2005-03-01 21:48:35 +110064/* Flag indicating that we want to hash a known_hosts file */
65int hash_hosts = 0;
66/* Flag indicating that we want lookup a host in known_hosts file */
67int find_host = 0;
68/* Flag indicating that we want to delete a host from a known_hosts file */
69int delete_host = 0;
70
Damien Miller10f6f6b1999-11-17 17:29:08 +110071/* Flag indicating that we just want to see the key fingerprint */
72int print_fingerprint = 0;
Ben Lindstrom8fd372b2001-03-12 03:02:17 +000073int print_bubblebabble = 0;
Damien Miller10f6f6b1999-11-17 17:29:08 +110074
Damien Miller431f66b1999-11-21 18:31:57 +110075/* The identity file name, given on the command line or entered by the user. */
76char identity_file[1024];
77int have_identity = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100078
79/* This is set to the passphrase if given on the command line. */
80char *identity_passphrase = NULL;
81
82/* This is set to the new passphrase if given on the command line. */
83char *identity_new_passphrase = NULL;
84
85/* This is set to the new comment if given on the command line. */
86char *identity_comment = NULL;
87
Damien Millereba71ba2000-04-29 23:57:08 +100088/* Dump public key file in format used by real and the original SSH 2 */
89int convert_to_ssh2 = 0;
90int convert_from_ssh2 = 0;
91int print_public = 0;
Damien Miller37876e92003-05-15 10:19:46 +100092int print_generic = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +110093
Damien Millera41c8b12002-01-22 23:05:08 +110094char *key_type_name = NULL;
Damien Millereba71ba2000-04-29 23:57:08 +100095
Damien Miller431f66b1999-11-21 18:31:57 +110096/* argv0 */
97extern char *__progname;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100098
Damien Millereba71ba2000-04-29 23:57:08 +100099char hostname[MAXHOSTNAMELEN];
100
Darren Tucker770fc012004-05-13 16:24:32 +1000101/* moduli.c */
Damien Millerb089fb52005-05-26 12:16:18 +1000102int gen_candidates(FILE *, u_int32_t, u_int32_t, BIGNUM *);
Darren Tucker770fc012004-05-13 16:24:32 +1000103int prime_test(FILE *, FILE *, u_int32_t, u_int32_t);
104
Ben Lindstrombba81212001-06-25 05:01:22 +0000105static void
Damien Miller431f66b1999-11-21 18:31:57 +1100106ask_filename(struct passwd *pw, const char *prompt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000107{
Damien Miller95def091999-11-25 00:26:21 +1100108 char buf[1024];
Damien Millere39cacc2000-11-29 12:18:44 +1100109 char *name = NULL;
110
Damien Miller993dd552002-02-19 15:22:47 +1100111 if (key_type_name == NULL)
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000112 name = _PATH_SSH_CLIENT_ID_RSA;
Damien Miller90967402006-03-26 14:07:26 +1100113 else {
Damien Miller993dd552002-02-19 15:22:47 +1100114 switch (key_type_from_name(key_type_name)) {
115 case KEY_RSA1:
116 name = _PATH_SSH_CLIENT_IDENTITY;
117 break;
118 case KEY_DSA:
119 name = _PATH_SSH_CLIENT_ID_DSA;
120 break;
121 case KEY_RSA:
122 name = _PATH_SSH_CLIENT_ID_RSA;
123 break;
124 default:
125 fprintf(stderr, "bad key type");
126 exit(1);
127 break;
128 }
Damien Miller90967402006-03-26 14:07:26 +1100129 }
Damien Millere39cacc2000-11-29 12:18:44 +1100130 snprintf(identity_file, sizeof(identity_file), "%s/%s", pw->pw_dir, name);
Ben Lindstrom3deda8b2000-12-22 20:27:43 +0000131 fprintf(stderr, "%s (%s): ", prompt, identity_file);
Damien Miller95def091999-11-25 00:26:21 +1100132 if (fgets(buf, sizeof(buf), stdin) == NULL)
133 exit(1);
134 if (strchr(buf, '\n'))
135 *strchr(buf, '\n') = 0;
136 if (strcmp(buf, "") != 0)
137 strlcpy(identity_file, buf, sizeof(identity_file));
138 have_identity = 1;
Damien Miller10f6f6b1999-11-17 17:29:08 +1100139}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000140
Ben Lindstrombba81212001-06-25 05:01:22 +0000141static Key *
Ben Lindstromd78ae762001-06-05 20:35:09 +0000142load_identity(char *filename)
Damien Millereba71ba2000-04-29 23:57:08 +1000143{
Ben Lindstromd0fca422001-03-26 13:44:06 +0000144 char *pass;
145 Key *prv;
146
Ben Lindstroma3700052001-04-05 23:26:32 +0000147 prv = key_load_private(filename, "", NULL);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000148 if (prv == NULL) {
Ben Lindstromd78ae762001-06-05 20:35:09 +0000149 if (identity_passphrase)
150 pass = xstrdup(identity_passphrase);
151 else
Ben Lindstrom949974b2001-06-25 05:20:31 +0000152 pass = read_passphrase("Enter passphrase: ",
153 RP_ALLOW_STDIN);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000154 prv = key_load_private(filename, pass, NULL);
Damien Millereba71ba2000-04-29 23:57:08 +1000155 memset(pass, 0, strlen(pass));
156 xfree(pass);
157 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000158 return prv;
Damien Millereba71ba2000-04-29 23:57:08 +1000159}
160
Damien Miller874d77b2000-10-14 16:23:11 +1100161#define SSH_COM_PUBLIC_BEGIN "---- BEGIN SSH2 PUBLIC KEY ----"
Ben Lindstromcb72e4f2002-06-21 00:41:51 +0000162#define SSH_COM_PUBLIC_END "---- END SSH2 PUBLIC KEY ----"
Damien Miller874d77b2000-10-14 16:23:11 +1100163#define SSH_COM_PRIVATE_BEGIN "---- BEGIN SSH2 ENCRYPTED PRIVATE KEY ----"
Kevin Stevesef4eea92001-02-05 12:42:17 +0000164#define SSH_COM_PRIVATE_KEY_MAGIC 0x3f6ff9eb
Damien Millereba71ba2000-04-29 23:57:08 +1000165
Ben Lindstrombba81212001-06-25 05:01:22 +0000166static void
Damien Millereba71ba2000-04-29 23:57:08 +1000167do_convert_to_ssh2(struct passwd *pw)
168{
Ben Lindstrom46c264f2001-04-24 16:56:58 +0000169 Key *k;
Ben Lindstromc58ab022002-02-26 18:15:09 +0000170 u_int len;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000171 u_char *blob;
Damien Millereba71ba2000-04-29 23:57:08 +1000172 struct stat st;
173
174 if (!have_identity)
175 ask_filename(pw, "Enter file in which the key is");
176 if (stat(identity_file, &st) < 0) {
177 perror(identity_file);
178 exit(1);
179 }
Ben Lindstrom46c264f2001-04-24 16:56:58 +0000180 if ((k = key_load_public(identity_file, NULL)) == NULL) {
Ben Lindstromd78ae762001-06-05 20:35:09 +0000181 if ((k = load_identity(identity_file)) == NULL) {
Ben Lindstrom46c264f2001-04-24 16:56:58 +0000182 fprintf(stderr, "load failed\n");
183 exit(1);
184 }
Damien Millereba71ba2000-04-29 23:57:08 +1000185 }
Damien Millerdb274722003-05-14 13:45:22 +1000186 if (k->type == KEY_RSA1) {
187 fprintf(stderr, "version 1 keys are not supported\n");
188 exit(1);
189 }
Ben Lindstrom99a30f12001-09-18 05:49:14 +0000190 if (key_to_blob(k, &blob, &len) <= 0) {
191 fprintf(stderr, "key_to_blob failed\n");
192 exit(1);
193 }
Damien Miller874d77b2000-10-14 16:23:11 +1100194 fprintf(stdout, "%s\n", SSH_COM_PUBLIC_BEGIN);
Damien Millereba71ba2000-04-29 23:57:08 +1000195 fprintf(stdout,
Ben Lindstrom58d3b722002-06-23 21:28:13 +0000196 "Comment: \"%u-bit %s, converted from OpenSSH by %s@%s\"\n",
Ben Lindstrom46c264f2001-04-24 16:56:58 +0000197 key_size(k), key_type(k),
Damien Millereba71ba2000-04-29 23:57:08 +1000198 pw->pw_name, hostname);
199 dump_base64(stdout, blob, len);
Damien Miller874d77b2000-10-14 16:23:11 +1100200 fprintf(stdout, "%s\n", SSH_COM_PUBLIC_END);
Ben Lindstrom46c264f2001-04-24 16:56:58 +0000201 key_free(k);
Damien Millereba71ba2000-04-29 23:57:08 +1000202 xfree(blob);
203 exit(0);
204}
205
Ben Lindstrombba81212001-06-25 05:01:22 +0000206static void
Damien Miller874d77b2000-10-14 16:23:11 +1100207buffer_get_bignum_bits(Buffer *b, BIGNUM *value)
208{
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000209 u_int bignum_bits = buffer_get_int(b);
210 u_int bytes = (bignum_bits + 7) / 8;
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000211
Damien Miller874d77b2000-10-14 16:23:11 +1100212 if (buffer_len(b) < bytes)
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000213 fatal("buffer_get_bignum_bits: input buffer too small: "
214 "need %d have %d", bytes, buffer_len(b));
Damien Miller708d21c2002-01-22 23:18:15 +1100215 BN_bin2bn(buffer_ptr(b), bytes, value);
Damien Miller874d77b2000-10-14 16:23:11 +1100216 buffer_consume(b, bytes);
217}
218
Ben Lindstrombba81212001-06-25 05:01:22 +0000219static Key *
Ben Lindstrom90fd8142002-02-26 18:09:42 +0000220do_convert_private_ssh2_from_blob(u_char *blob, u_int blen)
Damien Miller874d77b2000-10-14 16:23:11 +1100221{
222 Buffer b;
Damien Miller874d77b2000-10-14 16:23:11 +1100223 Key *key = NULL;
Damien Miller874d77b2000-10-14 16:23:11 +1100224 char *type, *cipher;
Ben Lindstrom511d69e2001-07-04 05:05:27 +0000225 u_char *sig, data[] = "abcde12345";
Ben Lindstrome586c4c2001-06-25 05:04:58 +0000226 int magic, rlen, ktype, i1, i2, i3, i4;
227 u_int slen;
228 u_long e;
Damien Miller874d77b2000-10-14 16:23:11 +1100229
230 buffer_init(&b);
231 buffer_append(&b, blob, blen);
232
233 magic = buffer_get_int(&b);
234 if (magic != SSH_COM_PRIVATE_KEY_MAGIC) {
235 error("bad magic 0x%x != 0x%x", magic, SSH_COM_PRIVATE_KEY_MAGIC);
236 buffer_free(&b);
237 return NULL;
238 }
Ben Lindstrom34f91882001-06-25 04:47:54 +0000239 i1 = buffer_get_int(&b);
Damien Miller874d77b2000-10-14 16:23:11 +1100240 type = buffer_get_string(&b, NULL);
241 cipher = buffer_get_string(&b, NULL);
Ben Lindstrom34f91882001-06-25 04:47:54 +0000242 i2 = buffer_get_int(&b);
243 i3 = buffer_get_int(&b);
244 i4 = buffer_get_int(&b);
245 debug("ignore (%d %d %d %d)", i1,i2,i3,i4);
Damien Miller874d77b2000-10-14 16:23:11 +1100246 if (strcmp(cipher, "none") != 0) {
247 error("unsupported cipher %s", cipher);
248 xfree(cipher);
249 buffer_free(&b);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000250 xfree(type);
Damien Miller874d77b2000-10-14 16:23:11 +1100251 return NULL;
252 }
253 xfree(cipher);
254
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000255 if (strstr(type, "dsa")) {
256 ktype = KEY_DSA;
257 } else if (strstr(type, "rsa")) {
258 ktype = KEY_RSA;
259 } else {
Darren Tucker7cfeecf2005-01-20 10:56:31 +1100260 buffer_free(&b);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000261 xfree(type);
Damien Miller874d77b2000-10-14 16:23:11 +1100262 return NULL;
263 }
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000264 key = key_new_private(ktype);
265 xfree(type);
266
267 switch (key->type) {
268 case KEY_DSA:
269 buffer_get_bignum_bits(&b, key->dsa->p);
270 buffer_get_bignum_bits(&b, key->dsa->g);
271 buffer_get_bignum_bits(&b, key->dsa->q);
272 buffer_get_bignum_bits(&b, key->dsa->pub_key);
273 buffer_get_bignum_bits(&b, key->dsa->priv_key);
274 break;
275 case KEY_RSA:
Ben Lindstrom34f91882001-06-25 04:47:54 +0000276 e = buffer_get_char(&b);
277 debug("e %lx", e);
278 if (e < 30) {
279 e <<= 8;
280 e += buffer_get_char(&b);
281 debug("e %lx", e);
282 e <<= 8;
283 e += buffer_get_char(&b);
284 debug("e %lx", e);
285 }
286 if (!BN_set_word(key->rsa->e, e)) {
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000287 buffer_free(&b);
288 key_free(key);
289 return NULL;
290 }
291 buffer_get_bignum_bits(&b, key->rsa->d);
292 buffer_get_bignum_bits(&b, key->rsa->n);
293 buffer_get_bignum_bits(&b, key->rsa->iqmp);
294 buffer_get_bignum_bits(&b, key->rsa->q);
295 buffer_get_bignum_bits(&b, key->rsa->p);
Ben Lindstromf7297dd2001-07-04 05:02:23 +0000296 rsa_generate_additional_parameters(key->rsa);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000297 break;
298 }
Damien Miller874d77b2000-10-14 16:23:11 +1100299 rlen = buffer_len(&b);
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +0000300 if (rlen != 0)
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000301 error("do_convert_private_ssh2_from_blob: "
302 "remaining bytes in key blob %d", rlen);
Damien Miller874d77b2000-10-14 16:23:11 +1100303 buffer_free(&b);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000304
Ben Lindstrome586c4c2001-06-25 05:04:58 +0000305 /* try the key */
306 key_sign(key, &sig, &slen, data, sizeof(data));
307 key_verify(key, sig, slen, data, sizeof(data));
308 xfree(sig);
Damien Miller874d77b2000-10-14 16:23:11 +1100309 return key;
310}
311
Damien Miller8056a9d2006-03-15 12:05:40 +1100312static int
313get_line(FILE *fp, char *line, size_t len)
314{
315 int c;
316 size_t pos = 0;
317
318 line[0] = '\0';
319 while ((c = fgetc(fp)) != EOF) {
320 if (pos >= len - 1) {
321 fprintf(stderr, "input line too long.\n");
322 exit(1);
323 }
Damien Miller90967402006-03-26 14:07:26 +1100324 switch (c) {
Damien Miller8056a9d2006-03-15 12:05:40 +1100325 case '\r':
326 c = fgetc(fp);
327 if (c != EOF && c != '\n' && ungetc(c, fp) == EOF) {
328 fprintf(stderr, "unget: %s\n", strerror(errno));
329 exit(1);
330 }
331 return pos;
332 case '\n':
333 return pos;
334 }
335 line[pos++] = c;
336 line[pos] = '\0';
337 }
Damien Millere23209f2006-03-31 23:13:35 +1100338 if (c == EOF)
339 return -1;
Damien Miller8056a9d2006-03-15 12:05:40 +1100340 return pos;
341}
342
Ben Lindstrombba81212001-06-25 05:01:22 +0000343static void
Damien Millereba71ba2000-04-29 23:57:08 +1000344do_convert_from_ssh2(struct passwd *pw)
345{
346 Key *k;
347 int blen;
Ben Lindstrom155b9812002-04-02 20:26:26 +0000348 u_int len;
Damien Miller8056a9d2006-03-15 12:05:40 +1100349 char line[1024];
Ben Lindstrom9e0ddd42001-09-18 05:41:19 +0000350 u_char blob[8096];
Damien Millereba71ba2000-04-29 23:57:08 +1000351 char encoded[8096];
352 struct stat st;
Damien Miller874d77b2000-10-14 16:23:11 +1100353 int escaped = 0, private = 0, ok;
Damien Millereba71ba2000-04-29 23:57:08 +1000354 FILE *fp;
355
356 if (!have_identity)
357 ask_filename(pw, "Enter file in which the key is");
358 if (stat(identity_file, &st) < 0) {
359 perror(identity_file);
360 exit(1);
361 }
362 fp = fopen(identity_file, "r");
363 if (fp == NULL) {
364 perror(identity_file);
365 exit(1);
366 }
367 encoded[0] = '\0';
Damien Miller8056a9d2006-03-15 12:05:40 +1100368 while ((blen = get_line(fp, line, sizeof(line))) != -1) {
369 if (line[blen - 1] == '\\')
Damien Miller30c3d422000-05-09 11:02:59 +1000370 escaped++;
Damien Millereba71ba2000-04-29 23:57:08 +1000371 if (strncmp(line, "----", 4) == 0 ||
372 strstr(line, ": ") != NULL) {
Damien Miller874d77b2000-10-14 16:23:11 +1100373 if (strstr(line, SSH_COM_PRIVATE_BEGIN) != NULL)
374 private = 1;
Ben Lindstrome586c4c2001-06-25 05:04:58 +0000375 if (strstr(line, " END ") != NULL) {
376 break;
377 }
Ben Lindstrom30358602001-04-24 16:59:28 +0000378 /* fprintf(stderr, "ignore: %s", line); */
Damien Millereba71ba2000-04-29 23:57:08 +1000379 continue;
380 }
Damien Miller30c3d422000-05-09 11:02:59 +1000381 if (escaped) {
382 escaped--;
Ben Lindstrom30358602001-04-24 16:59:28 +0000383 /* fprintf(stderr, "escaped: %s", line); */
Damien Miller30c3d422000-05-09 11:02:59 +1000384 continue;
Damien Millereba71ba2000-04-29 23:57:08 +1000385 }
Damien Millereba71ba2000-04-29 23:57:08 +1000386 strlcat(encoded, line, sizeof(encoded));
387 }
Ben Lindstrom155b9812002-04-02 20:26:26 +0000388 len = strlen(encoded);
389 if (((len % 4) == 3) &&
390 (encoded[len-1] == '=') &&
391 (encoded[len-2] == '=') &&
392 (encoded[len-3] == '='))
393 encoded[len-3] = '\0';
Damien Miller4a8ed542002-01-22 23:33:31 +1100394 blen = uudecode(encoded, blob, sizeof(blob));
Damien Millereba71ba2000-04-29 23:57:08 +1000395 if (blen < 0) {
396 fprintf(stderr, "uudecode failed.\n");
397 exit(1);
398 }
Damien Miller874d77b2000-10-14 16:23:11 +1100399 k = private ?
400 do_convert_private_ssh2_from_blob(blob, blen) :
Damien Miller0bc1bd82000-11-13 22:57:25 +1100401 key_from_blob(blob, blen);
Damien Miller874d77b2000-10-14 16:23:11 +1100402 if (k == NULL) {
403 fprintf(stderr, "decode blob failed.\n");
404 exit(1);
405 }
406 ok = private ?
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000407 (k->type == KEY_DSA ?
408 PEM_write_DSAPrivateKey(stdout, k->dsa, NULL, NULL, 0, NULL, NULL) :
409 PEM_write_RSAPrivateKey(stdout, k->rsa, NULL, NULL, 0, NULL, NULL)) :
Damien Miller874d77b2000-10-14 16:23:11 +1100410 key_write(k, stdout);
411 if (!ok) {
412 fprintf(stderr, "key write failed");
413 exit(1);
414 }
Damien Millereba71ba2000-04-29 23:57:08 +1000415 key_free(k);
Damien Millera1db12b2002-01-22 23:20:15 +1100416 if (!private)
417 fprintf(stdout, "\n");
Damien Millereba71ba2000-04-29 23:57:08 +1000418 fclose(fp);
419 exit(0);
420}
421
Ben Lindstrombba81212001-06-25 05:01:22 +0000422static void
Damien Millereba71ba2000-04-29 23:57:08 +1000423do_print_public(struct passwd *pw)
424{
Ben Lindstromd0fca422001-03-26 13:44:06 +0000425 Key *prv;
Damien Millereba71ba2000-04-29 23:57:08 +1000426 struct stat st;
427
428 if (!have_identity)
429 ask_filename(pw, "Enter file in which the key is");
430 if (stat(identity_file, &st) < 0) {
431 perror(identity_file);
432 exit(1);
433 }
Ben Lindstromd78ae762001-06-05 20:35:09 +0000434 prv = load_identity(identity_file);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000435 if (prv == NULL) {
Damien Millereba71ba2000-04-29 23:57:08 +1000436 fprintf(stderr, "load failed\n");
437 exit(1);
438 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000439 if (!key_write(prv, stdout))
Damien Millereba71ba2000-04-29 23:57:08 +1000440 fprintf(stderr, "key_write failed");
Ben Lindstromd0fca422001-03-26 13:44:06 +0000441 key_free(prv);
Damien Millereba71ba2000-04-29 23:57:08 +1000442 fprintf(stdout, "\n");
443 exit(0);
444}
445
Ben Lindstrom6818bfb2001-08-06 21:40:04 +0000446#ifdef SMARTCARD
Ben Lindstromcd392282001-07-04 03:44:03 +0000447static void
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000448do_upload(struct passwd *pw, const char *sc_reader_id)
Ben Lindstromcd392282001-07-04 03:44:03 +0000449{
Ben Lindstromcd392282001-07-04 03:44:03 +0000450 Key *prv = NULL;
451 struct stat st;
Ben Lindstrom70e3ad82002-03-22 03:33:43 +0000452 int ret;
Ben Lindstromcd392282001-07-04 03:44:03 +0000453
454 if (!have_identity)
455 ask_filename(pw, "Enter file in which the key is");
456 if (stat(identity_file, &st) < 0) {
457 perror(identity_file);
Ben Lindstrom70e3ad82002-03-22 03:33:43 +0000458 exit(1);
Ben Lindstromcd392282001-07-04 03:44:03 +0000459 }
460 prv = load_identity(identity_file);
461 if (prv == NULL) {
462 error("load failed");
Ben Lindstrom70e3ad82002-03-22 03:33:43 +0000463 exit(1);
Ben Lindstromcd392282001-07-04 03:44:03 +0000464 }
Ben Lindstrom70e3ad82002-03-22 03:33:43 +0000465 ret = sc_put_key(prv, sc_reader_id);
466 key_free(prv);
467 if (ret < 0)
468 exit(1);
Damien Miller996acd22003-04-09 20:59:48 +1000469 logit("loading key done");
Ben Lindstrom70e3ad82002-03-22 03:33:43 +0000470 exit(0);
Ben Lindstromcd392282001-07-04 03:44:03 +0000471}
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000472
473static void
474do_download(struct passwd *pw, const char *sc_reader_id)
475{
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000476 Key **keys = NULL;
477 int i;
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000478
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000479 keys = sc_get_keys(sc_reader_id, NULL);
480 if (keys == NULL)
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000481 fatal("cannot read public key from smartcard");
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000482 for (i = 0; keys[i]; i++) {
483 key_write(keys[i], stdout);
484 key_free(keys[i]);
485 fprintf(stdout, "\n");
486 }
487 xfree(keys);
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000488 exit(0);
489}
Ben Lindstromffce1472001-08-06 21:57:31 +0000490#endif /* SMARTCARD */
Ben Lindstromcd392282001-07-04 03:44:03 +0000491
Ben Lindstrombba81212001-06-25 05:01:22 +0000492static void
Damien Miller10f6f6b1999-11-17 17:29:08 +1100493do_fingerprint(struct passwd *pw)
494{
Damien Miller98c7ad62000-03-09 21:27:49 +1100495 FILE *f;
Damien Millereba71ba2000-04-29 23:57:08 +1000496 Key *public;
Ben Lindstrom8fd372b2001-03-12 03:02:17 +0000497 char *comment = NULL, *cp, *ep, line[16*1024], *fp;
Ben Lindstrom65366a82001-12-06 16:32:47 +0000498 int i, skip = 0, num = 1, invalid = 1;
499 enum fp_rep rep;
500 enum fp_type fptype;
Damien Miller95def091999-11-25 00:26:21 +1100501 struct stat st;
Damien Miller10f6f6b1999-11-17 17:29:08 +1100502
Ben Lindstromd0fca422001-03-26 13:44:06 +0000503 fptype = print_bubblebabble ? SSH_FP_SHA1 : SSH_FP_MD5;
504 rep = print_bubblebabble ? SSH_FP_BUBBLEBABBLE : SSH_FP_HEX;
Ben Lindstrom8fd372b2001-03-12 03:02:17 +0000505
Damien Miller95def091999-11-25 00:26:21 +1100506 if (!have_identity)
507 ask_filename(pw, "Enter file in which the key is");
508 if (stat(identity_file, &st) < 0) {
509 perror(identity_file);
510 exit(1);
511 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000512 public = key_load_public(identity_file, &comment);
513 if (public != NULL) {
514 fp = key_fingerprint(public, fptype, rep);
Ben Lindstrom58d3b722002-06-23 21:28:13 +0000515 printf("%u %s %s\n", key_size(public), fp, comment);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100516 key_free(public);
517 xfree(comment);
Ben Lindstrom8fd372b2001-03-12 03:02:17 +0000518 xfree(fp);
Damien Miller98c7ad62000-03-09 21:27:49 +1100519 exit(0);
520 }
Damien Miller40b59852006-06-13 13:00:25 +1000521 if (comment) {
Ben Lindstromd0fca422001-03-26 13:44:06 +0000522 xfree(comment);
Damien Miller40b59852006-06-13 13:00:25 +1000523 comment = NULL;
524 }
Damien Miller98c7ad62000-03-09 21:27:49 +1100525
526 f = fopen(identity_file, "r");
527 if (f != NULL) {
Damien Miller98c7ad62000-03-09 21:27:49 +1100528 while (fgets(line, sizeof(line), f)) {
529 i = strlen(line) - 1;
530 if (line[i] != '\n') {
531 error("line %d too long: %.40s...", num, line);
532 skip = 1;
533 continue;
Damien Miller95def091999-11-25 00:26:21 +1100534 }
Damien Miller98c7ad62000-03-09 21:27:49 +1100535 num++;
536 if (skip) {
537 skip = 0;
538 continue;
539 }
540 line[i] = '\0';
541
542 /* Skip leading whitespace, empty and comment lines. */
543 for (cp = line; *cp == ' ' || *cp == '\t'; cp++)
544 ;
545 if (!*cp || *cp == '\n' || *cp == '#')
546 continue ;
547 i = strtol(cp, &ep, 10);
548 if (i == 0 || ep == NULL || (*ep != ' ' && *ep != '\t')) {
549 int quoted = 0;
550 comment = cp;
Ben Lindstrom58d3b722002-06-23 21:28:13 +0000551 for (; *cp && (quoted || (*cp != ' ' &&
552 *cp != '\t')); cp++) {
Damien Miller98c7ad62000-03-09 21:27:49 +1100553 if (*cp == '\\' && cp[1] == '"')
554 cp++; /* Skip both */
555 else if (*cp == '"')
556 quoted = !quoted;
557 }
558 if (!*cp)
559 continue;
560 *cp++ = '\0';
561 }
562 ep = cp;
Ben Lindstrom2941f112000-12-29 16:50:13 +0000563 public = key_new(KEY_RSA1);
564 if (key_read(public, &cp) != 1) {
565 cp = ep;
566 key_free(public);
567 public = key_new(KEY_UNSPEC);
568 if (key_read(public, &cp) != 1) {
569 key_free(public);
570 continue;
571 }
Damien Miller98c7ad62000-03-09 21:27:49 +1100572 }
Ben Lindstrom2941f112000-12-29 16:50:13 +0000573 comment = *cp ? cp : comment;
Ben Lindstromd0fca422001-03-26 13:44:06 +0000574 fp = key_fingerprint(public, fptype, rep);
Ben Lindstrom58d3b722002-06-23 21:28:13 +0000575 printf("%u %s %s\n", key_size(public), fp,
Ben Lindstrom2941f112000-12-29 16:50:13 +0000576 comment ? comment : "no comment");
Ben Lindstrom8fd372b2001-03-12 03:02:17 +0000577 xfree(fp);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000578 key_free(public);
Ben Lindstrom2941f112000-12-29 16:50:13 +0000579 invalid = 0;
Damien Miller95def091999-11-25 00:26:21 +1100580 }
Damien Miller98c7ad62000-03-09 21:27:49 +1100581 fclose(f);
Damien Miller95def091999-11-25 00:26:21 +1100582 }
Damien Miller98c7ad62000-03-09 21:27:49 +1100583 if (invalid) {
Damien Millereb5fec62001-11-12 10:52:44 +1100584 printf("%s is not a public key file.\n", identity_file);
Damien Miller98c7ad62000-03-09 21:27:49 +1100585 exit(1);
586 }
Damien Miller95def091999-11-25 00:26:21 +1100587 exit(0);
Damien Miller10f6f6b1999-11-17 17:29:08 +1100588}
589
Damien Miller4b42d7f2005-03-01 21:48:35 +1100590static void
591print_host(FILE *f, char *name, Key *public, int hash)
592{
593 if (hash && (name = host_hash(name, NULL, 0)) == NULL)
594 fatal("hash_host failed");
595 fprintf(f, "%s ", name);
596 if (!key_write(public, f))
597 fatal("key_write failed");
598 fprintf(f, "\n");
599}
600
601static void
602do_known_hosts(struct passwd *pw, const char *name)
603{
604 FILE *in, *out = stdout;
605 Key *public;
606 char *cp, *cp2, *kp, *kp2;
607 char line[16*1024], tmp[MAXPATHLEN], old[MAXPATHLEN];
608 int c, i, skip = 0, inplace = 0, num = 0, invalid = 0, has_unhashed = 0;
609
610 if (!have_identity) {
611 cp = tilde_expand_filename(_PATH_SSH_USER_HOSTFILE, pw->pw_uid);
612 if (strlcpy(identity_file, cp, sizeof(identity_file)) >=
613 sizeof(identity_file))
614 fatal("Specified known hosts path too long");
615 xfree(cp);
616 have_identity = 1;
617 }
618 if ((in = fopen(identity_file, "r")) == NULL)
619 fatal("fopen: %s", strerror(errno));
620
621 /*
622 * Find hosts goes to stdout, hash and deletions happen in-place
623 * A corner case is ssh-keygen -HF foo, which should go to stdout
624 */
625 if (!find_host && (hash_hosts || delete_host)) {
626 if (strlcpy(tmp, identity_file, sizeof(tmp)) >= sizeof(tmp) ||
627 strlcat(tmp, ".XXXXXXXXXX", sizeof(tmp)) >= sizeof(tmp) ||
628 strlcpy(old, identity_file, sizeof(old)) >= sizeof(old) ||
629 strlcat(old, ".old", sizeof(old)) >= sizeof(old))
630 fatal("known_hosts path too long");
631 umask(077);
632 if ((c = mkstemp(tmp)) == -1)
633 fatal("mkstemp: %s", strerror(errno));
634 if ((out = fdopen(c, "w")) == NULL) {
635 c = errno;
636 unlink(tmp);
637 fatal("fdopen: %s", strerror(c));
638 }
639 inplace = 1;
640 }
641
642 while (fgets(line, sizeof(line), in)) {
643 num++;
644 i = strlen(line) - 1;
645 if (line[i] != '\n') {
646 error("line %d too long: %.40s...", num, line);
647 skip = 1;
648 invalid = 1;
649 continue;
650 }
651 if (skip) {
652 skip = 0;
653 continue;
654 }
655 line[i] = '\0';
656
657 /* Skip leading whitespace, empty and comment lines. */
658 for (cp = line; *cp == ' ' || *cp == '\t'; cp++)
659 ;
660 if (!*cp || *cp == '\n' || *cp == '#') {
661 if (inplace)
662 fprintf(out, "%s\n", cp);
663 continue;
664 }
665 /* Find the end of the host name portion. */
666 for (kp = cp; *kp && *kp != ' ' && *kp != '\t'; kp++)
667 ;
668 if (*kp == '\0' || *(kp + 1) == '\0') {
669 error("line %d missing key: %.40s...",
670 num, line);
671 invalid = 1;
672 continue;
673 }
674 *kp++ = '\0';
675 kp2 = kp;
676
677 public = key_new(KEY_RSA1);
678 if (key_read(public, &kp) != 1) {
679 kp = kp2;
680 key_free(public);
681 public = key_new(KEY_UNSPEC);
682 if (key_read(public, &kp) != 1) {
683 error("line %d invalid key: %.40s...",
684 num, line);
685 key_free(public);
686 invalid = 1;
687 continue;
688 }
689 }
690
691 if (*cp == HASH_DELIM) {
692 if (find_host || delete_host) {
693 cp2 = host_hash(name, cp, strlen(cp));
694 if (cp2 == NULL) {
695 error("line %d: invalid hashed "
696 "name: %.64s...", num, line);
697 invalid = 1;
698 continue;
699 }
700 c = (strcmp(cp2, cp) == 0);
701 if (find_host && c) {
702 printf("# Host %s found: "
703 "line %d type %s\n", name,
704 num, key_type(public));
705 print_host(out, cp, public, 0);
706 }
707 if (delete_host && !c)
708 print_host(out, cp, public, 0);
709 } else if (hash_hosts)
710 print_host(out, cp, public, 0);
711 } else {
712 if (find_host || delete_host) {
713 c = (match_hostname(name, cp,
714 strlen(cp)) == 1);
715 if (find_host && c) {
716 printf("# Host %s found: "
717 "line %d type %s\n", name,
718 num, key_type(public));
719 print_host(out, cp, public, hash_hosts);
720 }
721 if (delete_host && !c)
722 print_host(out, cp, public, 0);
723 } else if (hash_hosts) {
Darren Tucker47eede72005-03-14 23:08:12 +1100724 for (cp2 = strsep(&cp, ",");
Damien Miller4b42d7f2005-03-01 21:48:35 +1100725 cp2 != NULL && *cp2 != '\0';
Damien Miller89eac802005-03-02 12:33:04 +1100726 cp2 = strsep(&cp, ",")) {
727 if (strcspn(cp2, "*?!") != strlen(cp2))
728 fprintf(stderr, "Warning: "
729 "ignoring host name with "
730 "metacharacters: %.64s\n",
731 cp2);
732 else
733 print_host(out, cp2, public, 1);
734 }
Damien Miller4b42d7f2005-03-01 21:48:35 +1100735 has_unhashed = 1;
736 }
737 }
738 key_free(public);
739 }
740 fclose(in);
741
742 if (invalid) {
743 fprintf(stderr, "%s is not a valid known_host file.\n",
744 identity_file);
745 if (inplace) {
746 fprintf(stderr, "Not replacing existing known_hosts "
Darren Tucker9f438a92005-03-14 23:09:18 +1100747 "file because of errors\n");
Damien Miller4b42d7f2005-03-01 21:48:35 +1100748 fclose(out);
749 unlink(tmp);
750 }
751 exit(1);
752 }
753
754 if (inplace) {
755 fclose(out);
756
757 /* Backup existing file */
758 if (unlink(old) == -1 && errno != ENOENT)
759 fatal("unlink %.100s: %s", old, strerror(errno));
760 if (link(identity_file, old) == -1)
761 fatal("link %.100s to %.100s: %s", identity_file, old,
762 strerror(errno));
763 /* Move new one into place */
764 if (rename(tmp, identity_file) == -1) {
765 error("rename\"%s\" to \"%s\": %s", tmp, identity_file,
766 strerror(errno));
767 unlink(tmp);
768 unlink(old);
769 exit(1);
770 }
771
772 fprintf(stderr, "%s updated.\n", identity_file);
773 fprintf(stderr, "Original contents retained as %s\n", old);
774 if (has_unhashed) {
775 fprintf(stderr, "WARNING: %s contains unhashed "
776 "entries\n", old);
777 fprintf(stderr, "Delete this file to ensure privacy "
Damien Miller0dc1bef2005-07-17 17:22:45 +1000778 "of hostnames\n");
Damien Miller4b42d7f2005-03-01 21:48:35 +1100779 }
780 }
781
782 exit(0);
783}
784
Damien Miller95def091999-11-25 00:26:21 +1100785/*
786 * Perform changing a passphrase. The argument is the passwd structure
787 * for the current user.
788 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000789static void
Damien Miller10f6f6b1999-11-17 17:29:08 +1100790do_change_passphrase(struct passwd *pw)
791{
Damien Miller95def091999-11-25 00:26:21 +1100792 char *comment;
793 char *old_passphrase, *passphrase1, *passphrase2;
794 struct stat st;
Damien Millereba71ba2000-04-29 23:57:08 +1000795 Key *private;
Damien Miller10f6f6b1999-11-17 17:29:08 +1100796
Damien Miller95def091999-11-25 00:26:21 +1100797 if (!have_identity)
798 ask_filename(pw, "Enter file in which the key is");
Damien Miller95def091999-11-25 00:26:21 +1100799 if (stat(identity_file, &st) < 0) {
800 perror(identity_file);
801 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000802 }
Damien Miller95def091999-11-25 00:26:21 +1100803 /* Try to load the file with empty passphrase. */
Ben Lindstromd0fca422001-03-26 13:44:06 +0000804 private = key_load_private(identity_file, "", &comment);
805 if (private == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100806 if (identity_passphrase)
807 old_passphrase = xstrdup(identity_passphrase);
808 else
Ben Lindstrom949974b2001-06-25 05:20:31 +0000809 old_passphrase =
810 read_passphrase("Enter old passphrase: ",
811 RP_ALLOW_STDIN);
812 private = key_load_private(identity_file, old_passphrase,
813 &comment);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000814 memset(old_passphrase, 0, strlen(old_passphrase));
815 xfree(old_passphrase);
816 if (private == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100817 printf("Bad passphrase.\n");
818 exit(1);
819 }
Damien Miller95def091999-11-25 00:26:21 +1100820 }
821 printf("Key has comment '%s'\n", comment);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000822
Damien Miller95def091999-11-25 00:26:21 +1100823 /* Ask the new passphrase (twice). */
824 if (identity_new_passphrase) {
825 passphrase1 = xstrdup(identity_new_passphrase);
826 passphrase2 = NULL;
827 } else {
828 passphrase1 =
Ben Lindstrom949974b2001-06-25 05:20:31 +0000829 read_passphrase("Enter new passphrase (empty for no "
830 "passphrase): ", RP_ALLOW_STDIN);
831 passphrase2 = read_passphrase("Enter same passphrase again: ",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100832 RP_ALLOW_STDIN);
Damien Miller95def091999-11-25 00:26:21 +1100833
834 /* Verify that they are the same. */
835 if (strcmp(passphrase1, passphrase2) != 0) {
836 memset(passphrase1, 0, strlen(passphrase1));
837 memset(passphrase2, 0, strlen(passphrase2));
838 xfree(passphrase1);
839 xfree(passphrase2);
840 printf("Pass phrases do not match. Try again.\n");
841 exit(1);
842 }
843 /* Destroy the other copy. */
844 memset(passphrase2, 0, strlen(passphrase2));
845 xfree(passphrase2);
846 }
847
848 /* Save the file using the new passphrase. */
Ben Lindstromd0fca422001-03-26 13:44:06 +0000849 if (!key_save_private(private, identity_file, passphrase1, comment)) {
Ben Lindstrom15f33862001-04-16 02:00:02 +0000850 printf("Saving the key failed: %s.\n", identity_file);
Damien Miller95def091999-11-25 00:26:21 +1100851 memset(passphrase1, 0, strlen(passphrase1));
852 xfree(passphrase1);
Damien Millereba71ba2000-04-29 23:57:08 +1000853 key_free(private);
Damien Miller95def091999-11-25 00:26:21 +1100854 xfree(comment);
855 exit(1);
856 }
857 /* Destroy the passphrase and the copy of the key in memory. */
858 memset(passphrase1, 0, strlen(passphrase1));
859 xfree(passphrase1);
Damien Millereba71ba2000-04-29 23:57:08 +1000860 key_free(private); /* Destroys contents */
Damien Miller95def091999-11-25 00:26:21 +1100861 xfree(comment);
862
863 printf("Your identification has been saved with the new passphrase.\n");
864 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000865}
866
Damien Miller37876e92003-05-15 10:19:46 +1000867/*
868 * Print the SSHFP RR.
869 */
Damien Millercb314822006-03-26 13:48:01 +1100870static int
871do_print_resource_record(struct passwd *pw, char *fname, char *hname)
Damien Miller37876e92003-05-15 10:19:46 +1000872{
873 Key *public;
874 char *comment = NULL;
875 struct stat st;
876
Damien Millercb314822006-03-26 13:48:01 +1100877 if (fname == NULL)
Damien Miller37876e92003-05-15 10:19:46 +1000878 ask_filename(pw, "Enter file in which the key is");
Damien Millercb314822006-03-26 13:48:01 +1100879 if (stat(fname, &st) < 0) {
880 if (errno == ENOENT)
881 return 0;
882 perror(fname);
Damien Miller37876e92003-05-15 10:19:46 +1000883 exit(1);
884 }
Damien Millercb314822006-03-26 13:48:01 +1100885 public = key_load_public(fname, &comment);
Damien Miller37876e92003-05-15 10:19:46 +1000886 if (public != NULL) {
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000887 export_dns_rr(hname, public, stdout, print_generic);
Damien Miller37876e92003-05-15 10:19:46 +1000888 key_free(public);
889 xfree(comment);
Damien Millercb314822006-03-26 13:48:01 +1100890 return 1;
Damien Miller37876e92003-05-15 10:19:46 +1000891 }
892 if (comment)
893 xfree(comment);
894
Damien Millercb314822006-03-26 13:48:01 +1100895 printf("failed to read v2 public key from %s.\n", fname);
Damien Miller37876e92003-05-15 10:19:46 +1000896 exit(1);
897}
Damien Miller37876e92003-05-15 10:19:46 +1000898
Damien Miller95def091999-11-25 00:26:21 +1100899/*
900 * Change the comment of a private key file.
901 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000902static void
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000903do_change_comment(struct passwd *pw)
904{
Ben Lindstrom5fc62702001-03-09 18:19:24 +0000905 char new_comment[1024], *comment, *passphrase;
Ben Lindstromd0fca422001-03-26 13:44:06 +0000906 Key *private;
907 Key *public;
Damien Miller95def091999-11-25 00:26:21 +1100908 struct stat st;
909 FILE *f;
Ben Lindstrom5fc62702001-03-09 18:19:24 +0000910 int fd;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000911
Damien Miller95def091999-11-25 00:26:21 +1100912 if (!have_identity)
913 ask_filename(pw, "Enter file in which the key is");
Damien Miller95def091999-11-25 00:26:21 +1100914 if (stat(identity_file, &st) < 0) {
915 perror(identity_file);
916 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000917 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000918 private = key_load_private(identity_file, "", &comment);
919 if (private == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100920 if (identity_passphrase)
921 passphrase = xstrdup(identity_passphrase);
922 else if (identity_new_passphrase)
923 passphrase = xstrdup(identity_new_passphrase);
924 else
Ben Lindstrom949974b2001-06-25 05:20:31 +0000925 passphrase = read_passphrase("Enter passphrase: ",
926 RP_ALLOW_STDIN);
Damien Miller95def091999-11-25 00:26:21 +1100927 /* Try to load using the passphrase. */
Ben Lindstromd0fca422001-03-26 13:44:06 +0000928 private = key_load_private(identity_file, passphrase, &comment);
929 if (private == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100930 memset(passphrase, 0, strlen(passphrase));
931 xfree(passphrase);
932 printf("Bad passphrase.\n");
933 exit(1);
934 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000935 } else {
936 passphrase = xstrdup("");
Damien Miller95def091999-11-25 00:26:21 +1100937 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000938 if (private->type != KEY_RSA1) {
939 fprintf(stderr, "Comments are only supported for RSA1 keys.\n");
940 key_free(private);
941 exit(1);
Damien Miller9f0f5c62001-12-21 14:45:46 +1100942 }
Damien Miller95def091999-11-25 00:26:21 +1100943 printf("Key now has comment '%s'\n", comment);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000944
Damien Miller95def091999-11-25 00:26:21 +1100945 if (identity_comment) {
946 strlcpy(new_comment, identity_comment, sizeof(new_comment));
947 } else {
948 printf("Enter new comment: ");
949 fflush(stdout);
950 if (!fgets(new_comment, sizeof(new_comment), stdin)) {
951 memset(passphrase, 0, strlen(passphrase));
Damien Millereba71ba2000-04-29 23:57:08 +1000952 key_free(private);
Damien Miller95def091999-11-25 00:26:21 +1100953 exit(1);
954 }
Damien Miller95def091999-11-25 00:26:21 +1100955 if (strchr(new_comment, '\n'))
956 *strchr(new_comment, '\n') = 0;
957 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000958
Damien Miller95def091999-11-25 00:26:21 +1100959 /* Save the file using the new passphrase. */
Ben Lindstromd0fca422001-03-26 13:44:06 +0000960 if (!key_save_private(private, identity_file, passphrase, new_comment)) {
Ben Lindstrom15f33862001-04-16 02:00:02 +0000961 printf("Saving the key failed: %s.\n", identity_file);
Damien Miller95def091999-11-25 00:26:21 +1100962 memset(passphrase, 0, strlen(passphrase));
963 xfree(passphrase);
Damien Millereba71ba2000-04-29 23:57:08 +1000964 key_free(private);
Damien Miller95def091999-11-25 00:26:21 +1100965 xfree(comment);
966 exit(1);
967 }
Damien Miller95def091999-11-25 00:26:21 +1100968 memset(passphrase, 0, strlen(passphrase));
969 xfree(passphrase);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000970 public = key_from_private(private);
Damien Millereba71ba2000-04-29 23:57:08 +1000971 key_free(private);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000972
Damien Miller95def091999-11-25 00:26:21 +1100973 strlcat(identity_file, ".pub", sizeof(identity_file));
Ben Lindstrom5fc62702001-03-09 18:19:24 +0000974 fd = open(identity_file, O_WRONLY | O_CREAT | O_TRUNC, 0644);
975 if (fd == -1) {
Damien Miller95def091999-11-25 00:26:21 +1100976 printf("Could not save your public key in %s\n", identity_file);
977 exit(1);
978 }
Ben Lindstrom5fc62702001-03-09 18:19:24 +0000979 f = fdopen(fd, "w");
980 if (f == NULL) {
981 printf("fdopen %s failed", identity_file);
982 exit(1);
983 }
Damien Millereba71ba2000-04-29 23:57:08 +1000984 if (!key_write(public, f))
985 fprintf(stderr, "write key failed");
986 key_free(public);
987 fprintf(f, " %s\n", new_comment);
Damien Miller95def091999-11-25 00:26:21 +1100988 fclose(f);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000989
Damien Miller95def091999-11-25 00:26:21 +1100990 xfree(comment);
991
992 printf("The comment in your key file has been changed.\n");
993 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000994}
995
Ben Lindstrombba81212001-06-25 05:01:22 +0000996static void
Damien Miller431f66b1999-11-21 18:31:57 +1100997usage(void)
998{
Ben Lindstrom97be31e2001-08-06 21:49:06 +0000999 fprintf(stderr, "Usage: %s [options]\n", __progname);
1000 fprintf(stderr, "Options:\n");
Damien Miller9278ffa2005-05-26 11:59:06 +10001001 fprintf(stderr, " -a trials Number of trials for screening DH-GEX moduli.\n");
Ben Lindstrom97be31e2001-08-06 21:49:06 +00001002 fprintf(stderr, " -B Show bubblebabble digest of key file.\n");
Damien Miller9278ffa2005-05-26 11:59:06 +10001003 fprintf(stderr, " -b bits Number of bits in the key to create.\n");
Ben Lindstrom97be31e2001-08-06 21:49:06 +00001004 fprintf(stderr, " -C comment Provide new comment.\n");
Damien Miller9278ffa2005-05-26 11:59:06 +10001005 fprintf(stderr, " -c Change comment in private and public key files.\n");
Ben Lindstrom97be31e2001-08-06 21:49:06 +00001006#ifdef SMARTCARD
1007 fprintf(stderr, " -D reader Download public key from smartcard.\n");
Damien Miller9278ffa2005-05-26 11:59:06 +10001008#endif /* SMARTCARD */
1009 fprintf(stderr, " -e Convert OpenSSH to IETF SECSH key file.\n");
1010 fprintf(stderr, " -F hostname Find hostname in known hosts file.\n");
1011 fprintf(stderr, " -f filename Filename of the key file.\n");
1012 fprintf(stderr, " -G file Generate candidates for DH-GEX moduli.\n");
1013 fprintf(stderr, " -g Use generic DNS resource record format.\n");
1014 fprintf(stderr, " -H Hash names in known_hosts file.\n");
1015 fprintf(stderr, " -i Convert IETF SECSH to OpenSSH key file.\n");
1016 fprintf(stderr, " -l Show fingerprint of key file.\n");
1017 fprintf(stderr, " -M memory Amount of memory (MB) to use for generating DH-GEX moduli.\n");
1018 fprintf(stderr, " -N phrase Provide new passphrase.\n");
1019 fprintf(stderr, " -P phrase Provide old passphrase.\n");
1020 fprintf(stderr, " -p Change passphrase of private key file.\n");
1021 fprintf(stderr, " -q Quiet.\n");
1022 fprintf(stderr, " -R hostname Remove host from known_hosts file.\n");
1023 fprintf(stderr, " -r hostname Print DNS resource record.\n");
1024 fprintf(stderr, " -S start Start point (hex) for generating DH-GEX moduli.\n");
1025 fprintf(stderr, " -T file Screen candidates for DH-GEX moduli.\n");
1026 fprintf(stderr, " -t type Specify type of key to create.\n");
1027#ifdef SMARTCARD
Ben Lindstrom97be31e2001-08-06 21:49:06 +00001028 fprintf(stderr, " -U reader Upload private key to smartcard.\n");
1029#endif /* SMARTCARD */
Damien Miller9278ffa2005-05-26 11:59:06 +10001030 fprintf(stderr, " -v Verbose.\n");
1031 fprintf(stderr, " -W gen Generator to use for generating DH-GEX moduli.\n");
1032 fprintf(stderr, " -y Read private key file and print public key.\n");
Darren Tucker019cefe2003-08-02 22:40:07 +10001033
Damien Miller95def091999-11-25 00:26:21 +11001034 exit(1);
Damien Miller431f66b1999-11-21 18:31:57 +11001035}
1036
Damien Miller95def091999-11-25 00:26:21 +11001037/*
1038 * Main program for key management.
1039 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001040int
1041main(int ac, char **av)
1042{
Damien Millera41c8b12002-01-22 23:05:08 +11001043 char dotsshdir[MAXPATHLEN], comment[1024], *passphrase1, *passphrase2;
Tim Rice2e0e38e2003-09-08 16:11:33 -07001044 char out_file[MAXPATHLEN], *reader_id = NULL;
Damien Miller4b42d7f2005-03-01 21:48:35 +11001045 char *rr_hostname = NULL;
Ben Lindstrom5fc62702001-03-09 18:19:24 +00001046 Key *private, *public;
Damien Miller95def091999-11-25 00:26:21 +11001047 struct passwd *pw;
Damien Miller95def091999-11-25 00:26:21 +11001048 struct stat st;
Damien Millerb089fb52005-05-26 12:16:18 +10001049 int opt, type, fd, download = 0;
Darren Tucker2db8ae62005-06-01 23:02:25 +10001050 u_int32_t memory = 0, generator_wanted = 0, trials = 100;
Darren Tucker019cefe2003-08-02 22:40:07 +10001051 int do_gen_candidates = 0, do_screen_candidates = 0;
Darren Tucker06930c72003-12-31 11:34:51 +11001052 int log_level = SYSLOG_LEVEL_INFO;
Darren Tucker019cefe2003-08-02 22:40:07 +10001053 BIGNUM *start = NULL;
Damien Miller95def091999-11-25 00:26:21 +11001054 FILE *f;
Damien Miller02e754f2005-05-26 12:19:39 +10001055 const char *errstr;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001056
Damien Miller95def091999-11-25 00:26:21 +11001057 extern int optind;
1058 extern char *optarg;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001059
Darren Tuckerce321d82005-10-03 18:11:24 +10001060 /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
1061 sanitise_stdfd();
1062
Damien Miller59d3d5b2003-08-22 09:34:41 +10001063 __progname = ssh_get_progname(av[0]);
Damien Millerf9b625c2000-07-09 22:42:32 +10001064
Damien Millerd3a18572000-06-07 19:55:44 +10001065 SSLeay_add_all_algorithms();
Darren Tucker019cefe2003-08-02 22:40:07 +10001066 log_init(av[0], SYSLOG_LEVEL_INFO, SYSLOG_FACILITY_USER, 1);
1067
Kevin Steves3a881912002-07-20 19:05:40 +00001068 init_rng();
1069 seed_rng();
Damien Millereba71ba2000-04-29 23:57:08 +10001070
Damien Miller5428f641999-11-25 11:54:57 +11001071 /* we need this for the home * directory. */
Damien Miller95def091999-11-25 00:26:21 +11001072 pw = getpwuid(getuid());
1073 if (!pw) {
1074 printf("You don't exist, go away!\n");
1075 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001076 }
Damien Millereba71ba2000-04-29 23:57:08 +10001077 if (gethostname(hostname, sizeof(hostname)) < 0) {
1078 perror("gethostname");
1079 exit(1);
1080 }
Damien Miller5428f641999-11-25 11:54:57 +11001081
Darren Tucker019cefe2003-08-02 22:40:07 +10001082 while ((opt = getopt(ac, av,
Damien Miller4b42d7f2005-03-01 21:48:35 +11001083 "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 +11001084 switch (opt) {
1085 case 'b':
Damien Miller5f340062006-03-26 14:27:57 +11001086 bits = (u_int32_t)strtonum(optarg, 768, 32768, &errstr);
Damien Miller02e754f2005-05-26 12:19:39 +10001087 if (errstr)
1088 fatal("Bits has bad value %s (%s)",
1089 optarg, errstr);
Damien Miller95def091999-11-25 00:26:21 +11001090 break;
Damien Miller4b42d7f2005-03-01 21:48:35 +11001091 case 'F':
1092 find_host = 1;
1093 rr_hostname = optarg;
1094 break;
1095 case 'H':
1096 hash_hosts = 1;
1097 break;
1098 case 'R':
1099 delete_host = 1;
1100 rr_hostname = optarg;
1101 break;
Damien Miller95def091999-11-25 00:26:21 +11001102 case 'l':
1103 print_fingerprint = 1;
1104 break;
Ben Lindstrom8fd372b2001-03-12 03:02:17 +00001105 case 'B':
1106 print_bubblebabble = 1;
1107 break;
Damien Miller95def091999-11-25 00:26:21 +11001108 case 'p':
1109 change_passphrase = 1;
1110 break;
Damien Miller95def091999-11-25 00:26:21 +11001111 case 'c':
1112 change_comment = 1;
1113 break;
Damien Miller95def091999-11-25 00:26:21 +11001114 case 'f':
Damien Millerb089fb52005-05-26 12:16:18 +10001115 if (strlcpy(identity_file, optarg, sizeof(identity_file)) >=
1116 sizeof(identity_file))
1117 fatal("Identity filename too long");
Damien Miller95def091999-11-25 00:26:21 +11001118 have_identity = 1;
1119 break;
Damien Miller37876e92003-05-15 10:19:46 +10001120 case 'g':
1121 print_generic = 1;
1122 break;
Damien Miller95def091999-11-25 00:26:21 +11001123 case 'P':
1124 identity_passphrase = optarg;
1125 break;
Damien Miller95def091999-11-25 00:26:21 +11001126 case 'N':
1127 identity_new_passphrase = optarg;
1128 break;
Damien Miller95def091999-11-25 00:26:21 +11001129 case 'C':
1130 identity_comment = optarg;
1131 break;
Damien Miller95def091999-11-25 00:26:21 +11001132 case 'q':
1133 quiet = 1;
1134 break;
Ben Lindstrom5a707822001-04-22 17:15:46 +00001135 case 'e':
Damien Millereba71ba2000-04-29 23:57:08 +10001136 case 'x':
Ben Lindstrom5a707822001-04-22 17:15:46 +00001137 /* export key */
Damien Millereba71ba2000-04-29 23:57:08 +10001138 convert_to_ssh2 = 1;
1139 break;
Ben Lindstrom5a707822001-04-22 17:15:46 +00001140 case 'i':
Damien Millereba71ba2000-04-29 23:57:08 +10001141 case 'X':
Ben Lindstrom5a707822001-04-22 17:15:46 +00001142 /* import key */
Damien Millereba71ba2000-04-29 23:57:08 +10001143 convert_from_ssh2 = 1;
1144 break;
Damien Millereba71ba2000-04-29 23:57:08 +10001145 case 'y':
1146 print_public = 1;
1147 break;
Damien Millereba71ba2000-04-29 23:57:08 +10001148 case 'd':
Damien Miller0bc1bd82000-11-13 22:57:25 +11001149 key_type_name = "dsa";
Damien Millereba71ba2000-04-29 23:57:08 +10001150 break;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001151 case 't':
1152 key_type_name = optarg;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001153 break;
Ben Lindstrom8282d6a2001-08-06 21:44:05 +00001154 case 'D':
1155 download = 1;
Damien Miller90967402006-03-26 14:07:26 +11001156 /*FALLTHROUGH*/
Ben Lindstromf19578c2001-08-06 21:46:54 +00001157 case 'U':
Ben Lindstrom8282d6a2001-08-06 21:44:05 +00001158 reader_id = optarg;
Ben Lindstromcd392282001-07-04 03:44:03 +00001159 break;
Darren Tucker06930c72003-12-31 11:34:51 +11001160 case 'v':
1161 if (log_level == SYSLOG_LEVEL_INFO)
1162 log_level = SYSLOG_LEVEL_DEBUG1;
1163 else {
Darren Tuckerfc959702004-07-17 16:12:08 +10001164 if (log_level >= SYSLOG_LEVEL_DEBUG1 &&
Darren Tucker06930c72003-12-31 11:34:51 +11001165 log_level < SYSLOG_LEVEL_DEBUG3)
1166 log_level++;
1167 }
1168 break;
Damien Miller37876e92003-05-15 10:19:46 +10001169 case 'r':
Damien Miller4b42d7f2005-03-01 21:48:35 +11001170 rr_hostname = optarg;
Damien Miller37876e92003-05-15 10:19:46 +10001171 break;
Darren Tucker019cefe2003-08-02 22:40:07 +10001172 case 'W':
Damien Miller5f340062006-03-26 14:27:57 +11001173 generator_wanted = (u_int32_t)strtonum(optarg, 1,
1174 UINT_MAX, &errstr);
Damien Millerb089fb52005-05-26 12:16:18 +10001175 if (errstr)
1176 fatal("Desired generator has bad value: %s (%s)",
1177 optarg, errstr);
Darren Tucker019cefe2003-08-02 22:40:07 +10001178 break;
1179 case 'a':
Damien Miller5f340062006-03-26 14:27:57 +11001180 trials = (u_int32_t)strtonum(optarg, 1, UINT_MAX, &errstr);
Damien Millerb089fb52005-05-26 12:16:18 +10001181 if (errstr)
1182 fatal("Invalid number of trials: %s (%s)",
1183 optarg, errstr);
Darren Tucker019cefe2003-08-02 22:40:07 +10001184 break;
1185 case 'M':
Damien Miller5f340062006-03-26 14:27:57 +11001186 memory = (u_int32_t)strtonum(optarg, 1, UINT_MAX, &errstr);
Damien Millerb089fb52005-05-26 12:16:18 +10001187 if (errstr) {
1188 fatal("Memory limit is %s: %s", errstr, optarg);
1189 }
Darren Tucker019cefe2003-08-02 22:40:07 +10001190 break;
1191 case 'G':
1192 do_gen_candidates = 1;
Damien Millerb089fb52005-05-26 12:16:18 +10001193 if (strlcpy(out_file, optarg, sizeof(out_file)) >=
1194 sizeof(out_file))
1195 fatal("Output filename too long");
Darren Tucker019cefe2003-08-02 22:40:07 +10001196 break;
1197 case 'T':
1198 do_screen_candidates = 1;
Damien Millerb089fb52005-05-26 12:16:18 +10001199 if (strlcpy(out_file, optarg, sizeof(out_file)) >=
1200 sizeof(out_file))
1201 fatal("Output filename too long");
Darren Tucker019cefe2003-08-02 22:40:07 +10001202 break;
1203 case 'S':
1204 /* XXX - also compare length against bits */
1205 if (BN_hex2bn(&start, optarg) == 0)
1206 fatal("Invalid start point.");
1207 break;
Damien Miller95def091999-11-25 00:26:21 +11001208 case '?':
1209 default:
1210 usage();
1211 }
1212 }
Darren Tucker06930c72003-12-31 11:34:51 +11001213
1214 /* reinit */
1215 log_init(av[0], log_level, SYSLOG_FACILITY_USER, 1);
1216
Damien Miller95def091999-11-25 00:26:21 +11001217 if (optind < ac) {
1218 printf("Too many arguments.\n");
1219 usage();
1220 }
1221 if (change_passphrase && change_comment) {
1222 printf("Can only have one of -p and -c.\n");
1223 usage();
1224 }
Damien Miller4b42d7f2005-03-01 21:48:35 +11001225 if (delete_host || hash_hosts || find_host)
1226 do_known_hosts(pw, rr_hostname);
Ben Lindstrom8fd372b2001-03-12 03:02:17 +00001227 if (print_fingerprint || print_bubblebabble)
Damien Miller95def091999-11-25 00:26:21 +11001228 do_fingerprint(pw);
Damien Miller95def091999-11-25 00:26:21 +11001229 if (change_passphrase)
1230 do_change_passphrase(pw);
Damien Miller4a10d2e2002-03-11 22:53:29 +11001231 if (change_comment)
1232 do_change_comment(pw);
Kevin Steves3a881912002-07-20 19:05:40 +00001233 if (convert_to_ssh2)
1234 do_convert_to_ssh2(pw);
1235 if (convert_from_ssh2)
1236 do_convert_from_ssh2(pw);
Damien Millereba71ba2000-04-29 23:57:08 +10001237 if (print_public)
1238 do_print_public(pw);
Damien Miller4b42d7f2005-03-01 21:48:35 +11001239 if (rr_hostname != NULL) {
Damien Millercb314822006-03-26 13:48:01 +11001240 unsigned int n = 0;
1241
1242 if (have_identity) {
1243 n = do_print_resource_record(pw,
1244 identity_file, rr_hostname);
1245 if (n == 0) {
1246 perror(identity_file);
1247 exit(1);
1248 }
1249 exit(0);
1250 } else {
1251
1252 n += do_print_resource_record(pw,
1253 _PATH_HOST_RSA_KEY_FILE, rr_hostname);
1254 n += do_print_resource_record(pw,
1255 _PATH_HOST_DSA_KEY_FILE, rr_hostname);
1256
1257 if (n == 0)
1258 fatal("no keys found.");
1259 exit(0);
1260 }
Damien Miller37876e92003-05-15 10:19:46 +10001261 }
Ben Lindstrom8282d6a2001-08-06 21:44:05 +00001262 if (reader_id != NULL) {
Ben Lindstrom6818bfb2001-08-06 21:40:04 +00001263#ifdef SMARTCARD
Ben Lindstrom8282d6a2001-08-06 21:44:05 +00001264 if (download)
1265 do_download(pw, reader_id);
1266 else
1267 do_upload(pw, reader_id);
Ben Lindstromffce1472001-08-06 21:57:31 +00001268#else /* SMARTCARD */
Ben Lindstrom6818bfb2001-08-06 21:40:04 +00001269 fatal("no support for smartcards.");
Ben Lindstromffce1472001-08-06 21:57:31 +00001270#endif /* SMARTCARD */
Ben Lindstrom8282d6a2001-08-06 21:44:05 +00001271 }
Damien Miller95def091999-11-25 00:26:21 +11001272
Darren Tucker019cefe2003-08-02 22:40:07 +10001273 if (do_gen_candidates) {
1274 FILE *out = fopen(out_file, "w");
Damien Miller787b2ec2003-11-21 23:56:47 +11001275
Darren Tucker019cefe2003-08-02 22:40:07 +10001276 if (out == NULL) {
1277 error("Couldn't open modulus candidate file \"%s\": %s",
1278 out_file, strerror(errno));
1279 return (1);
1280 }
Damien Miller3f54a9f2005-11-05 14:52:18 +11001281 if (bits == 0)
1282 bits = DEFAULT_BITS;
Darren Tucker019cefe2003-08-02 22:40:07 +10001283 if (gen_candidates(out, memory, bits, start) != 0)
Damien Miller15d72a02005-11-05 15:07:33 +11001284 fatal("modulus candidate generation failed");
Darren Tucker019cefe2003-08-02 22:40:07 +10001285
1286 return (0);
1287 }
1288
1289 if (do_screen_candidates) {
1290 FILE *in;
1291 FILE *out = fopen(out_file, "w");
1292
1293 if (have_identity && strcmp(identity_file, "-") != 0) {
1294 if ((in = fopen(identity_file, "r")) == NULL) {
1295 fatal("Couldn't open modulus candidate "
Damien Millera8e06ce2003-11-21 23:48:55 +11001296 "file \"%s\": %s", identity_file,
Darren Tucker019cefe2003-08-02 22:40:07 +10001297 strerror(errno));
1298 }
1299 } else
1300 in = stdin;
1301
1302 if (out == NULL) {
1303 fatal("Couldn't open moduli file \"%s\": %s",
1304 out_file, strerror(errno));
1305 }
1306 if (prime_test(in, out, trials, generator_wanted) != 0)
Damien Miller15d72a02005-11-05 15:07:33 +11001307 fatal("modulus screening failed");
Darren Tuckerf4220e62003-08-21 16:44:07 +10001308 return (0);
Darren Tucker019cefe2003-08-02 22:40:07 +10001309 }
1310
Damien Miller95def091999-11-25 00:26:21 +11001311 arc4random_stir();
1312
Damien Millerf14be5c2005-11-05 15:15:49 +11001313 if (key_type_name == NULL)
1314 key_type_name = "rsa";
1315
Damien Millere39cacc2000-11-29 12:18:44 +11001316 type = key_type_from_name(key_type_name);
1317 if (type == KEY_UNSPEC) {
1318 fprintf(stderr, "unknown key type %s\n", key_type_name);
1319 exit(1);
Damien Millereba71ba2000-04-29 23:57:08 +10001320 }
Damien Miller3f54a9f2005-11-05 14:52:18 +11001321 if (bits == 0)
1322 bits = (type == KEY_DSA) ? DEFAULT_BITS_DSA : DEFAULT_BITS;
Tim Rice660c3402005-11-28 17:45:32 -08001323 if (type == KEY_DSA && bits != 1024)
1324 fatal("DSA keys must be 1024 bits");
Darren Tucker3af2ac52005-11-29 13:10:24 +11001325 if (!quiet)
1326 printf("Generating public/private %s key pair.\n", key_type_name);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001327 private = key_generate(type, bits);
1328 if (private == NULL) {
1329 fprintf(stderr, "key_generate failed");
1330 exit(1);
1331 }
1332 public = key_from_private(private);
Damien Miller95def091999-11-25 00:26:21 +11001333
1334 if (!have_identity)
1335 ask_filename(pw, "Enter file in which to save the key");
1336
Damien Miller788f2122005-11-05 15:14:59 +11001337 /* Create ~/.ssh directory if it doesn't already exist. */
Ben Lindstrom226cfa02001-01-22 05:34:40 +00001338 snprintf(dotsshdir, sizeof dotsshdir, "%s/%s", pw->pw_dir, _PATH_SSH_USER_DIR);
Damien Miller95def091999-11-25 00:26:21 +11001339 if (strstr(identity_file, dotsshdir) != NULL &&
1340 stat(dotsshdir, &st) < 0) {
Damien Millerbe484b52000-07-15 14:14:16 +10001341 if (mkdir(dotsshdir, 0700) < 0)
Damien Miller95def091999-11-25 00:26:21 +11001342 error("Could not create directory '%s'.", dotsshdir);
1343 else if (!quiet)
1344 printf("Created directory '%s'.\n", dotsshdir);
1345 }
1346 /* If the file already exists, ask the user to confirm. */
1347 if (stat(identity_file, &st) >= 0) {
1348 char yesno[3];
1349 printf("%s already exists.\n", identity_file);
1350 printf("Overwrite (y/n)? ");
1351 fflush(stdout);
1352 if (fgets(yesno, sizeof(yesno), stdin) == NULL)
1353 exit(1);
1354 if (yesno[0] != 'y' && yesno[0] != 'Y')
1355 exit(1);
1356 }
1357 /* Ask for a passphrase (twice). */
1358 if (identity_passphrase)
1359 passphrase1 = xstrdup(identity_passphrase);
1360 else if (identity_new_passphrase)
1361 passphrase1 = xstrdup(identity_new_passphrase);
1362 else {
1363passphrase_again:
1364 passphrase1 =
Ben Lindstrom949974b2001-06-25 05:20:31 +00001365 read_passphrase("Enter passphrase (empty for no "
1366 "passphrase): ", RP_ALLOW_STDIN);
1367 passphrase2 = read_passphrase("Enter same passphrase again: ",
1368 RP_ALLOW_STDIN);
Damien Miller95def091999-11-25 00:26:21 +11001369 if (strcmp(passphrase1, passphrase2) != 0) {
Ben Lindstrom949974b2001-06-25 05:20:31 +00001370 /*
1371 * The passphrases do not match. Clear them and
1372 * retry.
1373 */
Damien Miller95def091999-11-25 00:26:21 +11001374 memset(passphrase1, 0, strlen(passphrase1));
1375 memset(passphrase2, 0, strlen(passphrase2));
1376 xfree(passphrase1);
1377 xfree(passphrase2);
1378 printf("Passphrases do not match. Try again.\n");
1379 goto passphrase_again;
1380 }
1381 /* Clear the other copy of the passphrase. */
1382 memset(passphrase2, 0, strlen(passphrase2));
1383 xfree(passphrase2);
1384 }
1385
Damien Miller95def091999-11-25 00:26:21 +11001386 if (identity_comment) {
1387 strlcpy(comment, identity_comment, sizeof(comment));
1388 } else {
Damien Miller4af51302000-04-16 11:18:38 +10001389 /* Create default commend field for the passphrase. */
Damien Miller95def091999-11-25 00:26:21 +11001390 snprintf(comment, sizeof comment, "%s@%s", pw->pw_name, hostname);
1391 }
1392
1393 /* Save the key with the given passphrase and comment. */
Ben Lindstromd0fca422001-03-26 13:44:06 +00001394 if (!key_save_private(private, identity_file, passphrase1, comment)) {
Ben Lindstrom15f33862001-04-16 02:00:02 +00001395 printf("Saving the key failed: %s.\n", identity_file);
Damien Miller95def091999-11-25 00:26:21 +11001396 memset(passphrase1, 0, strlen(passphrase1));
1397 xfree(passphrase1);
1398 exit(1);
1399 }
1400 /* Clear the passphrase. */
1401 memset(passphrase1, 0, strlen(passphrase1));
1402 xfree(passphrase1);
1403
1404 /* Clear the private key and the random number generator. */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001405 key_free(private);
Damien Miller95def091999-11-25 00:26:21 +11001406 arc4random_stir();
1407
1408 if (!quiet)
1409 printf("Your identification has been saved in %s.\n", identity_file);
1410
Damien Miller95def091999-11-25 00:26:21 +11001411 strlcat(identity_file, ".pub", sizeof(identity_file));
Ben Lindstrom5fc62702001-03-09 18:19:24 +00001412 fd = open(identity_file, O_WRONLY | O_CREAT | O_TRUNC, 0644);
1413 if (fd == -1) {
Damien Miller95def091999-11-25 00:26:21 +11001414 printf("Could not save your public key in %s\n", identity_file);
1415 exit(1);
1416 }
Ben Lindstrom5fc62702001-03-09 18:19:24 +00001417 f = fdopen(fd, "w");
1418 if (f == NULL) {
1419 printf("fdopen %s failed", identity_file);
1420 exit(1);
1421 }
Damien Millereba71ba2000-04-29 23:57:08 +10001422 if (!key_write(public, f))
1423 fprintf(stderr, "write key failed");
1424 fprintf(f, " %s\n", comment);
Damien Miller95def091999-11-25 00:26:21 +11001425 fclose(f);
1426
1427 if (!quiet) {
Ben Lindstromcfccef92001-03-13 04:57:58 +00001428 char *fp = key_fingerprint(public, SSH_FP_MD5, SSH_FP_HEX);
Damien Millereba71ba2000-04-29 23:57:08 +10001429 printf("Your public key has been saved in %s.\n",
1430 identity_file);
Damien Miller95def091999-11-25 00:26:21 +11001431 printf("The key fingerprint is:\n");
Ben Lindstromcfccef92001-03-13 04:57:58 +00001432 printf("%s %s\n", fp, comment);
1433 xfree(fp);
Damien Miller95def091999-11-25 00:26:21 +11001434 }
Damien Millereba71ba2000-04-29 23:57:08 +10001435
1436 key_free(public);
Damien Miller95def091999-11-25 00:26:21 +11001437 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001438}