blob: e8a1d4b4be82376e164fe86f520def55bc38cb7d [file] [log] [blame]
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001/*
Damien Miller95def091999-11-25 00:26:21 +11002 * Author: Tatu Ylonen <ylo@cs.hut.fi>
3 * Copyright (c) 1994 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4 * All rights reserved
Damien Miller95def091999-11-25 00:26:21 +11005 * Identity and host key generation and maintenance.
Damien Millere4340be2000-09-16 13:29:08 +11006 *
7 * As far as I am concerned, the code I have written for this software
8 * can be used freely for any purpose. Any derived versions of this
9 * software must be clearly marked as such, and if the derived work is
10 * incompatible with the protocol description in the RFC file, it must be
11 * called by a name other than "ssh" or "Secure Shell".
Damien Miller95def091999-11-25 00:26:21 +110012 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100013
14#include "includes.h"
Damien Millerf17883e2006-03-15 11:45:54 +110015
16#include <sys/types.h>
17#include <sys/stat.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100018
Damien Millereba71ba2000-04-29 23:57:08 +100019#include <openssl/evp.h>
20#include <openssl/pem.h>
Damien Millereba71ba2000-04-29 23:57:08 +100021
Damien Millerd4a8b7e1999-10-27 13:42:43 +100022#include "xmalloc.h"
Damien Millereba71ba2000-04-29 23:57:08 +100023#include "key.h"
Ben Lindstromd09fcf52001-03-29 00:29:54 +000024#include "rsa.h"
Damien Millereba71ba2000-04-29 23:57:08 +100025#include "authfile.h"
26#include "uuencode.h"
Damien Miller874d77b2000-10-14 16:23:11 +110027#include "buffer.h"
28#include "bufaux.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000029#include "pathnames.h"
30#include "log.h"
Darren Tuckere608ca22004-05-13 16:15:47 +100031#include "misc.h"
Damien Miller4b42d7f2005-03-01 21:48:35 +110032#include "match.h"
33#include "hostfile.h"
Damien Miller874d77b2000-10-14 16:23:11 +110034
Ben Lindstrom8282d6a2001-08-06 21:44:05 +000035#ifdef SMARTCARD
Ben Lindstrom8282d6a2001-08-06 21:44:05 +000036#include "scard.h"
Ben Lindstrombcc18082001-08-06 21:59:25 +000037#endif
Damien Millered12a262003-05-15 13:37:43 +100038#include "dns.h"
Ben Lindstromcd392282001-07-04 03:44:03 +000039
Damien Miller3f54a9f2005-11-05 14:52:18 +110040/* Number of bits in the RSA/DSA key. This value can be set on the command line. */
41#define DEFAULT_BITS 2048
42#define DEFAULT_BITS_DSA 1024
43u_int32_t bits = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100044
Damien Miller5428f641999-11-25 11:54:57 +110045/*
46 * Flag indicating that we just want to change the passphrase. This can be
47 * set on the command line.
48 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100049int change_passphrase = 0;
50
Damien Miller5428f641999-11-25 11:54:57 +110051/*
52 * Flag indicating that we just want to change the comment. This can be set
53 * on the command line.
54 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100055int change_comment = 0;
56
57int quiet = 0;
58
Damien Miller4b42d7f2005-03-01 21:48:35 +110059/* Flag indicating that we want to hash a known_hosts file */
60int hash_hosts = 0;
61/* Flag indicating that we want lookup a host in known_hosts file */
62int find_host = 0;
63/* Flag indicating that we want to delete a host from a known_hosts file */
64int delete_host = 0;
65
Damien Miller10f6f6b1999-11-17 17:29:08 +110066/* Flag indicating that we just want to see the key fingerprint */
67int print_fingerprint = 0;
Ben Lindstrom8fd372b2001-03-12 03:02:17 +000068int print_bubblebabble = 0;
Damien Miller10f6f6b1999-11-17 17:29:08 +110069
Damien Miller431f66b1999-11-21 18:31:57 +110070/* The identity file name, given on the command line or entered by the user. */
71char identity_file[1024];
72int have_identity = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100073
74/* This is set to the passphrase if given on the command line. */
75char *identity_passphrase = NULL;
76
77/* This is set to the new passphrase if given on the command line. */
78char *identity_new_passphrase = NULL;
79
80/* This is set to the new comment if given on the command line. */
81char *identity_comment = NULL;
82
Damien Millereba71ba2000-04-29 23:57:08 +100083/* Dump public key file in format used by real and the original SSH 2 */
84int convert_to_ssh2 = 0;
85int convert_from_ssh2 = 0;
86int print_public = 0;
Damien Miller37876e92003-05-15 10:19:46 +100087int print_generic = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +110088
Damien Millera41c8b12002-01-22 23:05:08 +110089char *key_type_name = NULL;
Damien Millereba71ba2000-04-29 23:57:08 +100090
Damien Miller431f66b1999-11-21 18:31:57 +110091/* argv0 */
92extern char *__progname;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100093
Damien Millereba71ba2000-04-29 23:57:08 +100094char hostname[MAXHOSTNAMELEN];
95
Darren Tucker770fc012004-05-13 16:24:32 +100096/* moduli.c */
Damien Millerb089fb52005-05-26 12:16:18 +100097int gen_candidates(FILE *, u_int32_t, u_int32_t, BIGNUM *);
Darren Tucker770fc012004-05-13 16:24:32 +100098int prime_test(FILE *, FILE *, u_int32_t, u_int32_t);
99
Ben Lindstrombba81212001-06-25 05:01:22 +0000100static void
Damien Miller431f66b1999-11-21 18:31:57 +1100101ask_filename(struct passwd *pw, const char *prompt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000102{
Damien Miller95def091999-11-25 00:26:21 +1100103 char buf[1024];
Damien Millere39cacc2000-11-29 12:18:44 +1100104 char *name = NULL;
105
Damien Miller993dd552002-02-19 15:22:47 +1100106 if (key_type_name == NULL)
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000107 name = _PATH_SSH_CLIENT_ID_RSA;
Damien Miller90967402006-03-26 14:07:26 +1100108 else {
Damien Miller993dd552002-02-19 15:22:47 +1100109 switch (key_type_from_name(key_type_name)) {
110 case KEY_RSA1:
111 name = _PATH_SSH_CLIENT_IDENTITY;
112 break;
113 case KEY_DSA:
114 name = _PATH_SSH_CLIENT_ID_DSA;
115 break;
116 case KEY_RSA:
117 name = _PATH_SSH_CLIENT_ID_RSA;
118 break;
119 default:
120 fprintf(stderr, "bad key type");
121 exit(1);
122 break;
123 }
Damien Miller90967402006-03-26 14:07:26 +1100124 }
Damien Millere39cacc2000-11-29 12:18:44 +1100125 snprintf(identity_file, sizeof(identity_file), "%s/%s", pw->pw_dir, name);
Ben Lindstrom3deda8b2000-12-22 20:27:43 +0000126 fprintf(stderr, "%s (%s): ", prompt, identity_file);
Damien Miller95def091999-11-25 00:26:21 +1100127 if (fgets(buf, sizeof(buf), stdin) == NULL)
128 exit(1);
129 if (strchr(buf, '\n'))
130 *strchr(buf, '\n') = 0;
131 if (strcmp(buf, "") != 0)
132 strlcpy(identity_file, buf, sizeof(identity_file));
133 have_identity = 1;
Damien Miller10f6f6b1999-11-17 17:29:08 +1100134}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000135
Ben Lindstrombba81212001-06-25 05:01:22 +0000136static Key *
Ben Lindstromd78ae762001-06-05 20:35:09 +0000137load_identity(char *filename)
Damien Millereba71ba2000-04-29 23:57:08 +1000138{
Ben Lindstromd0fca422001-03-26 13:44:06 +0000139 char *pass;
140 Key *prv;
141
Ben Lindstroma3700052001-04-05 23:26:32 +0000142 prv = key_load_private(filename, "", NULL);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000143 if (prv == NULL) {
Ben Lindstromd78ae762001-06-05 20:35:09 +0000144 if (identity_passphrase)
145 pass = xstrdup(identity_passphrase);
146 else
Ben Lindstrom949974b2001-06-25 05:20:31 +0000147 pass = read_passphrase("Enter passphrase: ",
148 RP_ALLOW_STDIN);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000149 prv = key_load_private(filename, pass, NULL);
Damien Millereba71ba2000-04-29 23:57:08 +1000150 memset(pass, 0, strlen(pass));
151 xfree(pass);
152 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000153 return prv;
Damien Millereba71ba2000-04-29 23:57:08 +1000154}
155
Damien Miller874d77b2000-10-14 16:23:11 +1100156#define SSH_COM_PUBLIC_BEGIN "---- BEGIN SSH2 PUBLIC KEY ----"
Ben Lindstromcb72e4f2002-06-21 00:41:51 +0000157#define SSH_COM_PUBLIC_END "---- END SSH2 PUBLIC KEY ----"
Damien Miller874d77b2000-10-14 16:23:11 +1100158#define SSH_COM_PRIVATE_BEGIN "---- BEGIN SSH2 ENCRYPTED PRIVATE KEY ----"
Kevin Stevesef4eea92001-02-05 12:42:17 +0000159#define SSH_COM_PRIVATE_KEY_MAGIC 0x3f6ff9eb
Damien Millereba71ba2000-04-29 23:57:08 +1000160
Ben Lindstrombba81212001-06-25 05:01:22 +0000161static void
Damien Millereba71ba2000-04-29 23:57:08 +1000162do_convert_to_ssh2(struct passwd *pw)
163{
Ben Lindstrom46c264f2001-04-24 16:56:58 +0000164 Key *k;
Ben Lindstromc58ab022002-02-26 18:15:09 +0000165 u_int len;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000166 u_char *blob;
Damien Millereba71ba2000-04-29 23:57:08 +1000167 struct stat st;
168
169 if (!have_identity)
170 ask_filename(pw, "Enter file in which the key is");
171 if (stat(identity_file, &st) < 0) {
172 perror(identity_file);
173 exit(1);
174 }
Ben Lindstrom46c264f2001-04-24 16:56:58 +0000175 if ((k = key_load_public(identity_file, NULL)) == NULL) {
Ben Lindstromd78ae762001-06-05 20:35:09 +0000176 if ((k = load_identity(identity_file)) == NULL) {
Ben Lindstrom46c264f2001-04-24 16:56:58 +0000177 fprintf(stderr, "load failed\n");
178 exit(1);
179 }
Damien Millereba71ba2000-04-29 23:57:08 +1000180 }
Damien Millerdb274722003-05-14 13:45:22 +1000181 if (k->type == KEY_RSA1) {
182 fprintf(stderr, "version 1 keys are not supported\n");
183 exit(1);
184 }
Ben Lindstrom99a30f12001-09-18 05:49:14 +0000185 if (key_to_blob(k, &blob, &len) <= 0) {
186 fprintf(stderr, "key_to_blob failed\n");
187 exit(1);
188 }
Damien Miller874d77b2000-10-14 16:23:11 +1100189 fprintf(stdout, "%s\n", SSH_COM_PUBLIC_BEGIN);
Damien Millereba71ba2000-04-29 23:57:08 +1000190 fprintf(stdout,
Ben Lindstrom58d3b722002-06-23 21:28:13 +0000191 "Comment: \"%u-bit %s, converted from OpenSSH by %s@%s\"\n",
Ben Lindstrom46c264f2001-04-24 16:56:58 +0000192 key_size(k), key_type(k),
Damien Millereba71ba2000-04-29 23:57:08 +1000193 pw->pw_name, hostname);
194 dump_base64(stdout, blob, len);
Damien Miller874d77b2000-10-14 16:23:11 +1100195 fprintf(stdout, "%s\n", SSH_COM_PUBLIC_END);
Ben Lindstrom46c264f2001-04-24 16:56:58 +0000196 key_free(k);
Damien Millereba71ba2000-04-29 23:57:08 +1000197 xfree(blob);
198 exit(0);
199}
200
Ben Lindstrombba81212001-06-25 05:01:22 +0000201static void
Damien Miller874d77b2000-10-14 16:23:11 +1100202buffer_get_bignum_bits(Buffer *b, BIGNUM *value)
203{
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000204 u_int bignum_bits = buffer_get_int(b);
205 u_int bytes = (bignum_bits + 7) / 8;
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000206
Damien Miller874d77b2000-10-14 16:23:11 +1100207 if (buffer_len(b) < bytes)
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000208 fatal("buffer_get_bignum_bits: input buffer too small: "
209 "need %d have %d", bytes, buffer_len(b));
Damien Miller708d21c2002-01-22 23:18:15 +1100210 BN_bin2bn(buffer_ptr(b), bytes, value);
Damien Miller874d77b2000-10-14 16:23:11 +1100211 buffer_consume(b, bytes);
212}
213
Ben Lindstrombba81212001-06-25 05:01:22 +0000214static Key *
Ben Lindstrom90fd8142002-02-26 18:09:42 +0000215do_convert_private_ssh2_from_blob(u_char *blob, u_int blen)
Damien Miller874d77b2000-10-14 16:23:11 +1100216{
217 Buffer b;
Damien Miller874d77b2000-10-14 16:23:11 +1100218 Key *key = NULL;
Damien Miller874d77b2000-10-14 16:23:11 +1100219 char *type, *cipher;
Ben Lindstrom511d69e2001-07-04 05:05:27 +0000220 u_char *sig, data[] = "abcde12345";
Ben Lindstrome586c4c2001-06-25 05:04:58 +0000221 int magic, rlen, ktype, i1, i2, i3, i4;
222 u_int slen;
223 u_long e;
Damien Miller874d77b2000-10-14 16:23:11 +1100224
225 buffer_init(&b);
226 buffer_append(&b, blob, blen);
227
228 magic = buffer_get_int(&b);
229 if (magic != SSH_COM_PRIVATE_KEY_MAGIC) {
230 error("bad magic 0x%x != 0x%x", magic, SSH_COM_PRIVATE_KEY_MAGIC);
231 buffer_free(&b);
232 return NULL;
233 }
Ben Lindstrom34f91882001-06-25 04:47:54 +0000234 i1 = buffer_get_int(&b);
Damien Miller874d77b2000-10-14 16:23:11 +1100235 type = buffer_get_string(&b, NULL);
236 cipher = buffer_get_string(&b, NULL);
Ben Lindstrom34f91882001-06-25 04:47:54 +0000237 i2 = buffer_get_int(&b);
238 i3 = buffer_get_int(&b);
239 i4 = buffer_get_int(&b);
240 debug("ignore (%d %d %d %d)", i1,i2,i3,i4);
Damien Miller874d77b2000-10-14 16:23:11 +1100241 if (strcmp(cipher, "none") != 0) {
242 error("unsupported cipher %s", cipher);
243 xfree(cipher);
244 buffer_free(&b);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000245 xfree(type);
Damien Miller874d77b2000-10-14 16:23:11 +1100246 return NULL;
247 }
248 xfree(cipher);
249
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000250 if (strstr(type, "dsa")) {
251 ktype = KEY_DSA;
252 } else if (strstr(type, "rsa")) {
253 ktype = KEY_RSA;
254 } else {
Darren Tucker7cfeecf2005-01-20 10:56:31 +1100255 buffer_free(&b);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000256 xfree(type);
Damien Miller874d77b2000-10-14 16:23:11 +1100257 return NULL;
258 }
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000259 key = key_new_private(ktype);
260 xfree(type);
261
262 switch (key->type) {
263 case KEY_DSA:
264 buffer_get_bignum_bits(&b, key->dsa->p);
265 buffer_get_bignum_bits(&b, key->dsa->g);
266 buffer_get_bignum_bits(&b, key->dsa->q);
267 buffer_get_bignum_bits(&b, key->dsa->pub_key);
268 buffer_get_bignum_bits(&b, key->dsa->priv_key);
269 break;
270 case KEY_RSA:
Ben Lindstrom34f91882001-06-25 04:47:54 +0000271 e = buffer_get_char(&b);
272 debug("e %lx", e);
273 if (e < 30) {
274 e <<= 8;
275 e += buffer_get_char(&b);
276 debug("e %lx", e);
277 e <<= 8;
278 e += buffer_get_char(&b);
279 debug("e %lx", e);
280 }
281 if (!BN_set_word(key->rsa->e, e)) {
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000282 buffer_free(&b);
283 key_free(key);
284 return NULL;
285 }
286 buffer_get_bignum_bits(&b, key->rsa->d);
287 buffer_get_bignum_bits(&b, key->rsa->n);
288 buffer_get_bignum_bits(&b, key->rsa->iqmp);
289 buffer_get_bignum_bits(&b, key->rsa->q);
290 buffer_get_bignum_bits(&b, key->rsa->p);
Ben Lindstromf7297dd2001-07-04 05:02:23 +0000291 rsa_generate_additional_parameters(key->rsa);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000292 break;
293 }
Damien Miller874d77b2000-10-14 16:23:11 +1100294 rlen = buffer_len(&b);
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +0000295 if (rlen != 0)
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000296 error("do_convert_private_ssh2_from_blob: "
297 "remaining bytes in key blob %d", rlen);
Damien Miller874d77b2000-10-14 16:23:11 +1100298 buffer_free(&b);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000299
Ben Lindstrome586c4c2001-06-25 05:04:58 +0000300 /* try the key */
301 key_sign(key, &sig, &slen, data, sizeof(data));
302 key_verify(key, sig, slen, data, sizeof(data));
303 xfree(sig);
Damien Miller874d77b2000-10-14 16:23:11 +1100304 return key;
305}
306
Damien Miller8056a9d2006-03-15 12:05:40 +1100307static int
308get_line(FILE *fp, char *line, size_t len)
309{
310 int c;
311 size_t pos = 0;
312
313 line[0] = '\0';
314 while ((c = fgetc(fp)) != EOF) {
315 if (pos >= len - 1) {
316 fprintf(stderr, "input line too long.\n");
317 exit(1);
318 }
Damien Miller90967402006-03-26 14:07:26 +1100319 switch (c) {
Damien Miller8056a9d2006-03-15 12:05:40 +1100320 case '\r':
321 c = fgetc(fp);
322 if (c != EOF && c != '\n' && ungetc(c, fp) == EOF) {
323 fprintf(stderr, "unget: %s\n", strerror(errno));
324 exit(1);
325 }
326 return pos;
327 case '\n':
328 return pos;
329 }
330 line[pos++] = c;
331 line[pos] = '\0';
332 }
333 return pos;
334}
335
Ben Lindstrombba81212001-06-25 05:01:22 +0000336static void
Damien Millereba71ba2000-04-29 23:57:08 +1000337do_convert_from_ssh2(struct passwd *pw)
338{
339 Key *k;
340 int blen;
Ben Lindstrom155b9812002-04-02 20:26:26 +0000341 u_int len;
Damien Miller8056a9d2006-03-15 12:05:40 +1100342 char line[1024];
Ben Lindstrom9e0ddd42001-09-18 05:41:19 +0000343 u_char blob[8096];
Damien Millereba71ba2000-04-29 23:57:08 +1000344 char encoded[8096];
345 struct stat st;
Damien Miller874d77b2000-10-14 16:23:11 +1100346 int escaped = 0, private = 0, ok;
Damien Millereba71ba2000-04-29 23:57:08 +1000347 FILE *fp;
348
349 if (!have_identity)
350 ask_filename(pw, "Enter file in which the key is");
351 if (stat(identity_file, &st) < 0) {
352 perror(identity_file);
353 exit(1);
354 }
355 fp = fopen(identity_file, "r");
356 if (fp == NULL) {
357 perror(identity_file);
358 exit(1);
359 }
360 encoded[0] = '\0';
Damien Miller8056a9d2006-03-15 12:05:40 +1100361 while ((blen = get_line(fp, line, sizeof(line))) != -1) {
362 if (line[blen - 1] == '\\')
Damien Miller30c3d422000-05-09 11:02:59 +1000363 escaped++;
Damien Millereba71ba2000-04-29 23:57:08 +1000364 if (strncmp(line, "----", 4) == 0 ||
365 strstr(line, ": ") != NULL) {
Damien Miller874d77b2000-10-14 16:23:11 +1100366 if (strstr(line, SSH_COM_PRIVATE_BEGIN) != NULL)
367 private = 1;
Ben Lindstrome586c4c2001-06-25 05:04:58 +0000368 if (strstr(line, " END ") != NULL) {
369 break;
370 }
Ben Lindstrom30358602001-04-24 16:59:28 +0000371 /* fprintf(stderr, "ignore: %s", line); */
Damien Millereba71ba2000-04-29 23:57:08 +1000372 continue;
373 }
Damien Miller30c3d422000-05-09 11:02:59 +1000374 if (escaped) {
375 escaped--;
Ben Lindstrom30358602001-04-24 16:59:28 +0000376 /* fprintf(stderr, "escaped: %s", line); */
Damien Miller30c3d422000-05-09 11:02:59 +1000377 continue;
Damien Millereba71ba2000-04-29 23:57:08 +1000378 }
Damien Millereba71ba2000-04-29 23:57:08 +1000379 strlcat(encoded, line, sizeof(encoded));
380 }
Ben Lindstrom155b9812002-04-02 20:26:26 +0000381 len = strlen(encoded);
382 if (((len % 4) == 3) &&
383 (encoded[len-1] == '=') &&
384 (encoded[len-2] == '=') &&
385 (encoded[len-3] == '='))
386 encoded[len-3] = '\0';
Damien Miller4a8ed542002-01-22 23:33:31 +1100387 blen = uudecode(encoded, blob, sizeof(blob));
Damien Millereba71ba2000-04-29 23:57:08 +1000388 if (blen < 0) {
389 fprintf(stderr, "uudecode failed.\n");
390 exit(1);
391 }
Damien Miller874d77b2000-10-14 16:23:11 +1100392 k = private ?
393 do_convert_private_ssh2_from_blob(blob, blen) :
Damien Miller0bc1bd82000-11-13 22:57:25 +1100394 key_from_blob(blob, blen);
Damien Miller874d77b2000-10-14 16:23:11 +1100395 if (k == NULL) {
396 fprintf(stderr, "decode blob failed.\n");
397 exit(1);
398 }
399 ok = private ?
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000400 (k->type == KEY_DSA ?
401 PEM_write_DSAPrivateKey(stdout, k->dsa, NULL, NULL, 0, NULL, NULL) :
402 PEM_write_RSAPrivateKey(stdout, k->rsa, NULL, NULL, 0, NULL, NULL)) :
Damien Miller874d77b2000-10-14 16:23:11 +1100403 key_write(k, stdout);
404 if (!ok) {
405 fprintf(stderr, "key write failed");
406 exit(1);
407 }
Damien Millereba71ba2000-04-29 23:57:08 +1000408 key_free(k);
Damien Millera1db12b2002-01-22 23:20:15 +1100409 if (!private)
410 fprintf(stdout, "\n");
Damien Millereba71ba2000-04-29 23:57:08 +1000411 fclose(fp);
412 exit(0);
413}
414
Ben Lindstrombba81212001-06-25 05:01:22 +0000415static void
Damien Millereba71ba2000-04-29 23:57:08 +1000416do_print_public(struct passwd *pw)
417{
Ben Lindstromd0fca422001-03-26 13:44:06 +0000418 Key *prv;
Damien Millereba71ba2000-04-29 23:57:08 +1000419 struct stat st;
420
421 if (!have_identity)
422 ask_filename(pw, "Enter file in which the key is");
423 if (stat(identity_file, &st) < 0) {
424 perror(identity_file);
425 exit(1);
426 }
Ben Lindstromd78ae762001-06-05 20:35:09 +0000427 prv = load_identity(identity_file);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000428 if (prv == NULL) {
Damien Millereba71ba2000-04-29 23:57:08 +1000429 fprintf(stderr, "load failed\n");
430 exit(1);
431 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000432 if (!key_write(prv, stdout))
Damien Millereba71ba2000-04-29 23:57:08 +1000433 fprintf(stderr, "key_write failed");
Ben Lindstromd0fca422001-03-26 13:44:06 +0000434 key_free(prv);
Damien Millereba71ba2000-04-29 23:57:08 +1000435 fprintf(stdout, "\n");
436 exit(0);
437}
438
Ben Lindstrom6818bfb2001-08-06 21:40:04 +0000439#ifdef SMARTCARD
Ben Lindstromcd392282001-07-04 03:44:03 +0000440static void
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000441do_upload(struct passwd *pw, const char *sc_reader_id)
Ben Lindstromcd392282001-07-04 03:44:03 +0000442{
Ben Lindstromcd392282001-07-04 03:44:03 +0000443 Key *prv = NULL;
444 struct stat st;
Ben Lindstrom70e3ad82002-03-22 03:33:43 +0000445 int ret;
Ben Lindstromcd392282001-07-04 03:44:03 +0000446
447 if (!have_identity)
448 ask_filename(pw, "Enter file in which the key is");
449 if (stat(identity_file, &st) < 0) {
450 perror(identity_file);
Ben Lindstrom70e3ad82002-03-22 03:33:43 +0000451 exit(1);
Ben Lindstromcd392282001-07-04 03:44:03 +0000452 }
453 prv = load_identity(identity_file);
454 if (prv == NULL) {
455 error("load failed");
Ben Lindstrom70e3ad82002-03-22 03:33:43 +0000456 exit(1);
Ben Lindstromcd392282001-07-04 03:44:03 +0000457 }
Ben Lindstrom70e3ad82002-03-22 03:33:43 +0000458 ret = sc_put_key(prv, sc_reader_id);
459 key_free(prv);
460 if (ret < 0)
461 exit(1);
Damien Miller996acd22003-04-09 20:59:48 +1000462 logit("loading key done");
Ben Lindstrom70e3ad82002-03-22 03:33:43 +0000463 exit(0);
Ben Lindstromcd392282001-07-04 03:44:03 +0000464}
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000465
466static void
467do_download(struct passwd *pw, const char *sc_reader_id)
468{
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000469 Key **keys = NULL;
470 int i;
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000471
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000472 keys = sc_get_keys(sc_reader_id, NULL);
473 if (keys == NULL)
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000474 fatal("cannot read public key from smartcard");
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000475 for (i = 0; keys[i]; i++) {
476 key_write(keys[i], stdout);
477 key_free(keys[i]);
478 fprintf(stdout, "\n");
479 }
480 xfree(keys);
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000481 exit(0);
482}
Ben Lindstromffce1472001-08-06 21:57:31 +0000483#endif /* SMARTCARD */
Ben Lindstromcd392282001-07-04 03:44:03 +0000484
Ben Lindstrombba81212001-06-25 05:01:22 +0000485static void
Damien Miller10f6f6b1999-11-17 17:29:08 +1100486do_fingerprint(struct passwd *pw)
487{
Damien Miller98c7ad62000-03-09 21:27:49 +1100488 FILE *f;
Damien Millereba71ba2000-04-29 23:57:08 +1000489 Key *public;
Ben Lindstrom8fd372b2001-03-12 03:02:17 +0000490 char *comment = NULL, *cp, *ep, line[16*1024], *fp;
Ben Lindstrom65366a82001-12-06 16:32:47 +0000491 int i, skip = 0, num = 1, invalid = 1;
492 enum fp_rep rep;
493 enum fp_type fptype;
Damien Miller95def091999-11-25 00:26:21 +1100494 struct stat st;
Damien Miller10f6f6b1999-11-17 17:29:08 +1100495
Ben Lindstromd0fca422001-03-26 13:44:06 +0000496 fptype = print_bubblebabble ? SSH_FP_SHA1 : SSH_FP_MD5;
497 rep = print_bubblebabble ? SSH_FP_BUBBLEBABBLE : SSH_FP_HEX;
Ben Lindstrom8fd372b2001-03-12 03:02:17 +0000498
Damien Miller95def091999-11-25 00:26:21 +1100499 if (!have_identity)
500 ask_filename(pw, "Enter file in which the key is");
501 if (stat(identity_file, &st) < 0) {
502 perror(identity_file);
503 exit(1);
504 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000505 public = key_load_public(identity_file, &comment);
506 if (public != NULL) {
507 fp = key_fingerprint(public, fptype, rep);
Ben Lindstrom58d3b722002-06-23 21:28:13 +0000508 printf("%u %s %s\n", key_size(public), fp, comment);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100509 key_free(public);
510 xfree(comment);
Ben Lindstrom8fd372b2001-03-12 03:02:17 +0000511 xfree(fp);
Damien Miller98c7ad62000-03-09 21:27:49 +1100512 exit(0);
513 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000514 if (comment)
515 xfree(comment);
Damien Miller98c7ad62000-03-09 21:27:49 +1100516
517 f = fopen(identity_file, "r");
518 if (f != NULL) {
Damien Miller98c7ad62000-03-09 21:27:49 +1100519 while (fgets(line, sizeof(line), f)) {
520 i = strlen(line) - 1;
521 if (line[i] != '\n') {
522 error("line %d too long: %.40s...", num, line);
523 skip = 1;
524 continue;
Damien Miller95def091999-11-25 00:26:21 +1100525 }
Damien Miller98c7ad62000-03-09 21:27:49 +1100526 num++;
527 if (skip) {
528 skip = 0;
529 continue;
530 }
531 line[i] = '\0';
532
533 /* Skip leading whitespace, empty and comment lines. */
534 for (cp = line; *cp == ' ' || *cp == '\t'; cp++)
535 ;
536 if (!*cp || *cp == '\n' || *cp == '#')
537 continue ;
538 i = strtol(cp, &ep, 10);
539 if (i == 0 || ep == NULL || (*ep != ' ' && *ep != '\t')) {
540 int quoted = 0;
541 comment = cp;
Ben Lindstrom58d3b722002-06-23 21:28:13 +0000542 for (; *cp && (quoted || (*cp != ' ' &&
543 *cp != '\t')); cp++) {
Damien Miller98c7ad62000-03-09 21:27:49 +1100544 if (*cp == '\\' && cp[1] == '"')
545 cp++; /* Skip both */
546 else if (*cp == '"')
547 quoted = !quoted;
548 }
549 if (!*cp)
550 continue;
551 *cp++ = '\0';
552 }
553 ep = cp;
Ben Lindstrom2941f112000-12-29 16:50:13 +0000554 public = key_new(KEY_RSA1);
555 if (key_read(public, &cp) != 1) {
556 cp = ep;
557 key_free(public);
558 public = key_new(KEY_UNSPEC);
559 if (key_read(public, &cp) != 1) {
560 key_free(public);
561 continue;
562 }
Damien Miller98c7ad62000-03-09 21:27:49 +1100563 }
Ben Lindstrom2941f112000-12-29 16:50:13 +0000564 comment = *cp ? cp : comment;
Ben Lindstromd0fca422001-03-26 13:44:06 +0000565 fp = key_fingerprint(public, fptype, rep);
Ben Lindstrom58d3b722002-06-23 21:28:13 +0000566 printf("%u %s %s\n", key_size(public), fp,
Ben Lindstrom2941f112000-12-29 16:50:13 +0000567 comment ? comment : "no comment");
Ben Lindstrom8fd372b2001-03-12 03:02:17 +0000568 xfree(fp);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000569 key_free(public);
Ben Lindstrom2941f112000-12-29 16:50:13 +0000570 invalid = 0;
Damien Miller95def091999-11-25 00:26:21 +1100571 }
Damien Miller98c7ad62000-03-09 21:27:49 +1100572 fclose(f);
Damien Miller95def091999-11-25 00:26:21 +1100573 }
Damien Miller98c7ad62000-03-09 21:27:49 +1100574 if (invalid) {
Damien Millereb5fec62001-11-12 10:52:44 +1100575 printf("%s is not a public key file.\n", identity_file);
Damien Miller98c7ad62000-03-09 21:27:49 +1100576 exit(1);
577 }
Damien Miller95def091999-11-25 00:26:21 +1100578 exit(0);
Damien Miller10f6f6b1999-11-17 17:29:08 +1100579}
580
Damien Miller4b42d7f2005-03-01 21:48:35 +1100581static void
582print_host(FILE *f, char *name, Key *public, int hash)
583{
584 if (hash && (name = host_hash(name, NULL, 0)) == NULL)
585 fatal("hash_host failed");
586 fprintf(f, "%s ", name);
587 if (!key_write(public, f))
588 fatal("key_write failed");
589 fprintf(f, "\n");
590}
591
592static void
593do_known_hosts(struct passwd *pw, const char *name)
594{
595 FILE *in, *out = stdout;
596 Key *public;
597 char *cp, *cp2, *kp, *kp2;
598 char line[16*1024], tmp[MAXPATHLEN], old[MAXPATHLEN];
599 int c, i, skip = 0, inplace = 0, num = 0, invalid = 0, has_unhashed = 0;
600
601 if (!have_identity) {
602 cp = tilde_expand_filename(_PATH_SSH_USER_HOSTFILE, pw->pw_uid);
603 if (strlcpy(identity_file, cp, sizeof(identity_file)) >=
604 sizeof(identity_file))
605 fatal("Specified known hosts path too long");
606 xfree(cp);
607 have_identity = 1;
608 }
609 if ((in = fopen(identity_file, "r")) == NULL)
610 fatal("fopen: %s", strerror(errno));
611
612 /*
613 * Find hosts goes to stdout, hash and deletions happen in-place
614 * A corner case is ssh-keygen -HF foo, which should go to stdout
615 */
616 if (!find_host && (hash_hosts || delete_host)) {
617 if (strlcpy(tmp, identity_file, sizeof(tmp)) >= sizeof(tmp) ||
618 strlcat(tmp, ".XXXXXXXXXX", sizeof(tmp)) >= sizeof(tmp) ||
619 strlcpy(old, identity_file, sizeof(old)) >= sizeof(old) ||
620 strlcat(old, ".old", sizeof(old)) >= sizeof(old))
621 fatal("known_hosts path too long");
622 umask(077);
623 if ((c = mkstemp(tmp)) == -1)
624 fatal("mkstemp: %s", strerror(errno));
625 if ((out = fdopen(c, "w")) == NULL) {
626 c = errno;
627 unlink(tmp);
628 fatal("fdopen: %s", strerror(c));
629 }
630 inplace = 1;
631 }
632
633 while (fgets(line, sizeof(line), in)) {
634 num++;
635 i = strlen(line) - 1;
636 if (line[i] != '\n') {
637 error("line %d too long: %.40s...", num, line);
638 skip = 1;
639 invalid = 1;
640 continue;
641 }
642 if (skip) {
643 skip = 0;
644 continue;
645 }
646 line[i] = '\0';
647
648 /* Skip leading whitespace, empty and comment lines. */
649 for (cp = line; *cp == ' ' || *cp == '\t'; cp++)
650 ;
651 if (!*cp || *cp == '\n' || *cp == '#') {
652 if (inplace)
653 fprintf(out, "%s\n", cp);
654 continue;
655 }
656 /* Find the end of the host name portion. */
657 for (kp = cp; *kp && *kp != ' ' && *kp != '\t'; kp++)
658 ;
659 if (*kp == '\0' || *(kp + 1) == '\0') {
660 error("line %d missing key: %.40s...",
661 num, line);
662 invalid = 1;
663 continue;
664 }
665 *kp++ = '\0';
666 kp2 = kp;
667
668 public = key_new(KEY_RSA1);
669 if (key_read(public, &kp) != 1) {
670 kp = kp2;
671 key_free(public);
672 public = key_new(KEY_UNSPEC);
673 if (key_read(public, &kp) != 1) {
674 error("line %d invalid key: %.40s...",
675 num, line);
676 key_free(public);
677 invalid = 1;
678 continue;
679 }
680 }
681
682 if (*cp == HASH_DELIM) {
683 if (find_host || delete_host) {
684 cp2 = host_hash(name, cp, strlen(cp));
685 if (cp2 == NULL) {
686 error("line %d: invalid hashed "
687 "name: %.64s...", num, line);
688 invalid = 1;
689 continue;
690 }
691 c = (strcmp(cp2, cp) == 0);
692 if (find_host && c) {
693 printf("# Host %s found: "
694 "line %d type %s\n", name,
695 num, key_type(public));
696 print_host(out, cp, public, 0);
697 }
698 if (delete_host && !c)
699 print_host(out, cp, public, 0);
700 } else if (hash_hosts)
701 print_host(out, cp, public, 0);
702 } else {
703 if (find_host || delete_host) {
704 c = (match_hostname(name, cp,
705 strlen(cp)) == 1);
706 if (find_host && c) {
707 printf("# Host %s found: "
708 "line %d type %s\n", name,
709 num, key_type(public));
710 print_host(out, cp, public, hash_hosts);
711 }
712 if (delete_host && !c)
713 print_host(out, cp, public, 0);
714 } else if (hash_hosts) {
Darren Tucker47eede72005-03-14 23:08:12 +1100715 for (cp2 = strsep(&cp, ",");
Damien Miller4b42d7f2005-03-01 21:48:35 +1100716 cp2 != NULL && *cp2 != '\0';
Damien Miller89eac802005-03-02 12:33:04 +1100717 cp2 = strsep(&cp, ",")) {
718 if (strcspn(cp2, "*?!") != strlen(cp2))
719 fprintf(stderr, "Warning: "
720 "ignoring host name with "
721 "metacharacters: %.64s\n",
722 cp2);
723 else
724 print_host(out, cp2, public, 1);
725 }
Damien Miller4b42d7f2005-03-01 21:48:35 +1100726 has_unhashed = 1;
727 }
728 }
729 key_free(public);
730 }
731 fclose(in);
732
733 if (invalid) {
734 fprintf(stderr, "%s is not a valid known_host file.\n",
735 identity_file);
736 if (inplace) {
737 fprintf(stderr, "Not replacing existing known_hosts "
Darren Tucker9f438a92005-03-14 23:09:18 +1100738 "file because of errors\n");
Damien Miller4b42d7f2005-03-01 21:48:35 +1100739 fclose(out);
740 unlink(tmp);
741 }
742 exit(1);
743 }
744
745 if (inplace) {
746 fclose(out);
747
748 /* Backup existing file */
749 if (unlink(old) == -1 && errno != ENOENT)
750 fatal("unlink %.100s: %s", old, strerror(errno));
751 if (link(identity_file, old) == -1)
752 fatal("link %.100s to %.100s: %s", identity_file, old,
753 strerror(errno));
754 /* Move new one into place */
755 if (rename(tmp, identity_file) == -1) {
756 error("rename\"%s\" to \"%s\": %s", tmp, identity_file,
757 strerror(errno));
758 unlink(tmp);
759 unlink(old);
760 exit(1);
761 }
762
763 fprintf(stderr, "%s updated.\n", identity_file);
764 fprintf(stderr, "Original contents retained as %s\n", old);
765 if (has_unhashed) {
766 fprintf(stderr, "WARNING: %s contains unhashed "
767 "entries\n", old);
768 fprintf(stderr, "Delete this file to ensure privacy "
Damien Miller0dc1bef2005-07-17 17:22:45 +1000769 "of hostnames\n");
Damien Miller4b42d7f2005-03-01 21:48:35 +1100770 }
771 }
772
773 exit(0);
774}
775
Damien Miller95def091999-11-25 00:26:21 +1100776/*
777 * Perform changing a passphrase. The argument is the passwd structure
778 * for the current user.
779 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000780static void
Damien Miller10f6f6b1999-11-17 17:29:08 +1100781do_change_passphrase(struct passwd *pw)
782{
Damien Miller95def091999-11-25 00:26:21 +1100783 char *comment;
784 char *old_passphrase, *passphrase1, *passphrase2;
785 struct stat st;
Damien Millereba71ba2000-04-29 23:57:08 +1000786 Key *private;
Damien Miller10f6f6b1999-11-17 17:29:08 +1100787
Damien Miller95def091999-11-25 00:26:21 +1100788 if (!have_identity)
789 ask_filename(pw, "Enter file in which the key is");
Damien Miller95def091999-11-25 00:26:21 +1100790 if (stat(identity_file, &st) < 0) {
791 perror(identity_file);
792 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000793 }
Damien Miller95def091999-11-25 00:26:21 +1100794 /* Try to load the file with empty passphrase. */
Ben Lindstromd0fca422001-03-26 13:44:06 +0000795 private = key_load_private(identity_file, "", &comment);
796 if (private == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100797 if (identity_passphrase)
798 old_passphrase = xstrdup(identity_passphrase);
799 else
Ben Lindstrom949974b2001-06-25 05:20:31 +0000800 old_passphrase =
801 read_passphrase("Enter old passphrase: ",
802 RP_ALLOW_STDIN);
803 private = key_load_private(identity_file, old_passphrase,
804 &comment);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000805 memset(old_passphrase, 0, strlen(old_passphrase));
806 xfree(old_passphrase);
807 if (private == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100808 printf("Bad passphrase.\n");
809 exit(1);
810 }
Damien Miller95def091999-11-25 00:26:21 +1100811 }
812 printf("Key has comment '%s'\n", comment);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000813
Damien Miller95def091999-11-25 00:26:21 +1100814 /* Ask the new passphrase (twice). */
815 if (identity_new_passphrase) {
816 passphrase1 = xstrdup(identity_new_passphrase);
817 passphrase2 = NULL;
818 } else {
819 passphrase1 =
Ben Lindstrom949974b2001-06-25 05:20:31 +0000820 read_passphrase("Enter new passphrase (empty for no "
821 "passphrase): ", RP_ALLOW_STDIN);
822 passphrase2 = read_passphrase("Enter same passphrase again: ",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100823 RP_ALLOW_STDIN);
Damien Miller95def091999-11-25 00:26:21 +1100824
825 /* Verify that they are the same. */
826 if (strcmp(passphrase1, passphrase2) != 0) {
827 memset(passphrase1, 0, strlen(passphrase1));
828 memset(passphrase2, 0, strlen(passphrase2));
829 xfree(passphrase1);
830 xfree(passphrase2);
831 printf("Pass phrases do not match. Try again.\n");
832 exit(1);
833 }
834 /* Destroy the other copy. */
835 memset(passphrase2, 0, strlen(passphrase2));
836 xfree(passphrase2);
837 }
838
839 /* Save the file using the new passphrase. */
Ben Lindstromd0fca422001-03-26 13:44:06 +0000840 if (!key_save_private(private, identity_file, passphrase1, comment)) {
Ben Lindstrom15f33862001-04-16 02:00:02 +0000841 printf("Saving the key failed: %s.\n", identity_file);
Damien Miller95def091999-11-25 00:26:21 +1100842 memset(passphrase1, 0, strlen(passphrase1));
843 xfree(passphrase1);
Damien Millereba71ba2000-04-29 23:57:08 +1000844 key_free(private);
Damien Miller95def091999-11-25 00:26:21 +1100845 xfree(comment);
846 exit(1);
847 }
848 /* Destroy the passphrase and the copy of the key in memory. */
849 memset(passphrase1, 0, strlen(passphrase1));
850 xfree(passphrase1);
Damien Millereba71ba2000-04-29 23:57:08 +1000851 key_free(private); /* Destroys contents */
Damien Miller95def091999-11-25 00:26:21 +1100852 xfree(comment);
853
854 printf("Your identification has been saved with the new passphrase.\n");
855 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000856}
857
Damien Miller37876e92003-05-15 10:19:46 +1000858/*
859 * Print the SSHFP RR.
860 */
Damien Millercb314822006-03-26 13:48:01 +1100861static int
862do_print_resource_record(struct passwd *pw, char *fname, char *hname)
Damien Miller37876e92003-05-15 10:19:46 +1000863{
864 Key *public;
865 char *comment = NULL;
866 struct stat st;
867
Damien Millercb314822006-03-26 13:48:01 +1100868 if (fname == NULL)
Damien Miller37876e92003-05-15 10:19:46 +1000869 ask_filename(pw, "Enter file in which the key is");
Damien Millercb314822006-03-26 13:48:01 +1100870 if (stat(fname, &st) < 0) {
871 if (errno == ENOENT)
872 return 0;
873 perror(fname);
Damien Miller37876e92003-05-15 10:19:46 +1000874 exit(1);
875 }
Damien Millercb314822006-03-26 13:48:01 +1100876 public = key_load_public(fname, &comment);
Damien Miller37876e92003-05-15 10:19:46 +1000877 if (public != NULL) {
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000878 export_dns_rr(hname, public, stdout, print_generic);
Damien Miller37876e92003-05-15 10:19:46 +1000879 key_free(public);
880 xfree(comment);
Damien Millercb314822006-03-26 13:48:01 +1100881 return 1;
Damien Miller37876e92003-05-15 10:19:46 +1000882 }
883 if (comment)
884 xfree(comment);
885
Damien Millercb314822006-03-26 13:48:01 +1100886 printf("failed to read v2 public key from %s.\n", fname);
Damien Miller37876e92003-05-15 10:19:46 +1000887 exit(1);
888}
Damien Miller37876e92003-05-15 10:19:46 +1000889
Damien Miller95def091999-11-25 00:26:21 +1100890/*
891 * Change the comment of a private key file.
892 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000893static void
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000894do_change_comment(struct passwd *pw)
895{
Ben Lindstrom5fc62702001-03-09 18:19:24 +0000896 char new_comment[1024], *comment, *passphrase;
Ben Lindstromd0fca422001-03-26 13:44:06 +0000897 Key *private;
898 Key *public;
Damien Miller95def091999-11-25 00:26:21 +1100899 struct stat st;
900 FILE *f;
Ben Lindstrom5fc62702001-03-09 18:19:24 +0000901 int fd;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000902
Damien Miller95def091999-11-25 00:26:21 +1100903 if (!have_identity)
904 ask_filename(pw, "Enter file in which the key is");
Damien Miller95def091999-11-25 00:26:21 +1100905 if (stat(identity_file, &st) < 0) {
906 perror(identity_file);
907 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000908 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000909 private = key_load_private(identity_file, "", &comment);
910 if (private == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100911 if (identity_passphrase)
912 passphrase = xstrdup(identity_passphrase);
913 else if (identity_new_passphrase)
914 passphrase = xstrdup(identity_new_passphrase);
915 else
Ben Lindstrom949974b2001-06-25 05:20:31 +0000916 passphrase = read_passphrase("Enter passphrase: ",
917 RP_ALLOW_STDIN);
Damien Miller95def091999-11-25 00:26:21 +1100918 /* Try to load using the passphrase. */
Ben Lindstromd0fca422001-03-26 13:44:06 +0000919 private = key_load_private(identity_file, passphrase, &comment);
920 if (private == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100921 memset(passphrase, 0, strlen(passphrase));
922 xfree(passphrase);
923 printf("Bad passphrase.\n");
924 exit(1);
925 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000926 } else {
927 passphrase = xstrdup("");
Damien Miller95def091999-11-25 00:26:21 +1100928 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000929 if (private->type != KEY_RSA1) {
930 fprintf(stderr, "Comments are only supported for RSA1 keys.\n");
931 key_free(private);
932 exit(1);
Damien Miller9f0f5c62001-12-21 14:45:46 +1100933 }
Damien Miller95def091999-11-25 00:26:21 +1100934 printf("Key now has comment '%s'\n", comment);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000935
Damien Miller95def091999-11-25 00:26:21 +1100936 if (identity_comment) {
937 strlcpy(new_comment, identity_comment, sizeof(new_comment));
938 } else {
939 printf("Enter new comment: ");
940 fflush(stdout);
941 if (!fgets(new_comment, sizeof(new_comment), stdin)) {
942 memset(passphrase, 0, strlen(passphrase));
Damien Millereba71ba2000-04-29 23:57:08 +1000943 key_free(private);
Damien Miller95def091999-11-25 00:26:21 +1100944 exit(1);
945 }
Damien Miller95def091999-11-25 00:26:21 +1100946 if (strchr(new_comment, '\n'))
947 *strchr(new_comment, '\n') = 0;
948 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000949
Damien Miller95def091999-11-25 00:26:21 +1100950 /* Save the file using the new passphrase. */
Ben Lindstromd0fca422001-03-26 13:44:06 +0000951 if (!key_save_private(private, identity_file, passphrase, new_comment)) {
Ben Lindstrom15f33862001-04-16 02:00:02 +0000952 printf("Saving the key failed: %s.\n", identity_file);
Damien Miller95def091999-11-25 00:26:21 +1100953 memset(passphrase, 0, strlen(passphrase));
954 xfree(passphrase);
Damien Millereba71ba2000-04-29 23:57:08 +1000955 key_free(private);
Damien Miller95def091999-11-25 00:26:21 +1100956 xfree(comment);
957 exit(1);
958 }
Damien Miller95def091999-11-25 00:26:21 +1100959 memset(passphrase, 0, strlen(passphrase));
960 xfree(passphrase);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000961 public = key_from_private(private);
Damien Millereba71ba2000-04-29 23:57:08 +1000962 key_free(private);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000963
Damien Miller95def091999-11-25 00:26:21 +1100964 strlcat(identity_file, ".pub", sizeof(identity_file));
Ben Lindstrom5fc62702001-03-09 18:19:24 +0000965 fd = open(identity_file, O_WRONLY | O_CREAT | O_TRUNC, 0644);
966 if (fd == -1) {
Damien Miller95def091999-11-25 00:26:21 +1100967 printf("Could not save your public key in %s\n", identity_file);
968 exit(1);
969 }
Ben Lindstrom5fc62702001-03-09 18:19:24 +0000970 f = fdopen(fd, "w");
971 if (f == NULL) {
972 printf("fdopen %s failed", identity_file);
973 exit(1);
974 }
Damien Millereba71ba2000-04-29 23:57:08 +1000975 if (!key_write(public, f))
976 fprintf(stderr, "write key failed");
977 key_free(public);
978 fprintf(f, " %s\n", new_comment);
Damien Miller95def091999-11-25 00:26:21 +1100979 fclose(f);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000980
Damien Miller95def091999-11-25 00:26:21 +1100981 xfree(comment);
982
983 printf("The comment in your key file has been changed.\n");
984 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000985}
986
Ben Lindstrombba81212001-06-25 05:01:22 +0000987static void
Damien Miller431f66b1999-11-21 18:31:57 +1100988usage(void)
989{
Ben Lindstrom97be31e2001-08-06 21:49:06 +0000990 fprintf(stderr, "Usage: %s [options]\n", __progname);
991 fprintf(stderr, "Options:\n");
Damien Miller9278ffa2005-05-26 11:59:06 +1000992 fprintf(stderr, " -a trials Number of trials for screening DH-GEX moduli.\n");
Ben Lindstrom97be31e2001-08-06 21:49:06 +0000993 fprintf(stderr, " -B Show bubblebabble digest of key file.\n");
Damien Miller9278ffa2005-05-26 11:59:06 +1000994 fprintf(stderr, " -b bits Number of bits in the key to create.\n");
Ben Lindstrom97be31e2001-08-06 21:49:06 +0000995 fprintf(stderr, " -C comment Provide new comment.\n");
Damien Miller9278ffa2005-05-26 11:59:06 +1000996 fprintf(stderr, " -c Change comment in private and public key files.\n");
Ben Lindstrom97be31e2001-08-06 21:49:06 +0000997#ifdef SMARTCARD
998 fprintf(stderr, " -D reader Download public key from smartcard.\n");
Damien Miller9278ffa2005-05-26 11:59:06 +1000999#endif /* SMARTCARD */
1000 fprintf(stderr, " -e Convert OpenSSH to IETF SECSH key file.\n");
1001 fprintf(stderr, " -F hostname Find hostname in known hosts file.\n");
1002 fprintf(stderr, " -f filename Filename of the key file.\n");
1003 fprintf(stderr, " -G file Generate candidates for DH-GEX moduli.\n");
1004 fprintf(stderr, " -g Use generic DNS resource record format.\n");
1005 fprintf(stderr, " -H Hash names in known_hosts file.\n");
1006 fprintf(stderr, " -i Convert IETF SECSH to OpenSSH key file.\n");
1007 fprintf(stderr, " -l Show fingerprint of key file.\n");
1008 fprintf(stderr, " -M memory Amount of memory (MB) to use for generating DH-GEX moduli.\n");
1009 fprintf(stderr, " -N phrase Provide new passphrase.\n");
1010 fprintf(stderr, " -P phrase Provide old passphrase.\n");
1011 fprintf(stderr, " -p Change passphrase of private key file.\n");
1012 fprintf(stderr, " -q Quiet.\n");
1013 fprintf(stderr, " -R hostname Remove host from known_hosts file.\n");
1014 fprintf(stderr, " -r hostname Print DNS resource record.\n");
1015 fprintf(stderr, " -S start Start point (hex) for generating DH-GEX moduli.\n");
1016 fprintf(stderr, " -T file Screen candidates for DH-GEX moduli.\n");
1017 fprintf(stderr, " -t type Specify type of key to create.\n");
1018#ifdef SMARTCARD
Ben Lindstrom97be31e2001-08-06 21:49:06 +00001019 fprintf(stderr, " -U reader Upload private key to smartcard.\n");
1020#endif /* SMARTCARD */
Damien Miller9278ffa2005-05-26 11:59:06 +10001021 fprintf(stderr, " -v Verbose.\n");
1022 fprintf(stderr, " -W gen Generator to use for generating DH-GEX moduli.\n");
1023 fprintf(stderr, " -y Read private key file and print public key.\n");
Darren Tucker019cefe2003-08-02 22:40:07 +10001024
Damien Miller95def091999-11-25 00:26:21 +11001025 exit(1);
Damien Miller431f66b1999-11-21 18:31:57 +11001026}
1027
Damien Miller95def091999-11-25 00:26:21 +11001028/*
1029 * Main program for key management.
1030 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001031int
1032main(int ac, char **av)
1033{
Damien Millera41c8b12002-01-22 23:05:08 +11001034 char dotsshdir[MAXPATHLEN], comment[1024], *passphrase1, *passphrase2;
Tim Rice2e0e38e2003-09-08 16:11:33 -07001035 char out_file[MAXPATHLEN], *reader_id = NULL;
Damien Miller4b42d7f2005-03-01 21:48:35 +11001036 char *rr_hostname = NULL;
Ben Lindstrom5fc62702001-03-09 18:19:24 +00001037 Key *private, *public;
Damien Miller95def091999-11-25 00:26:21 +11001038 struct passwd *pw;
Damien Miller95def091999-11-25 00:26:21 +11001039 struct stat st;
Damien Millerb089fb52005-05-26 12:16:18 +10001040 int opt, type, fd, download = 0;
Darren Tucker2db8ae62005-06-01 23:02:25 +10001041 u_int32_t memory = 0, generator_wanted = 0, trials = 100;
Darren Tucker019cefe2003-08-02 22:40:07 +10001042 int do_gen_candidates = 0, do_screen_candidates = 0;
Darren Tucker06930c72003-12-31 11:34:51 +11001043 int log_level = SYSLOG_LEVEL_INFO;
Darren Tucker019cefe2003-08-02 22:40:07 +10001044 BIGNUM *start = NULL;
Damien Miller95def091999-11-25 00:26:21 +11001045 FILE *f;
Damien Miller02e754f2005-05-26 12:19:39 +10001046 const char *errstr;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001047
Damien Miller95def091999-11-25 00:26:21 +11001048 extern int optind;
1049 extern char *optarg;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001050
Darren Tuckerce321d82005-10-03 18:11:24 +10001051 /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
1052 sanitise_stdfd();
1053
Damien Miller59d3d5b2003-08-22 09:34:41 +10001054 __progname = ssh_get_progname(av[0]);
Damien Millerf9b625c2000-07-09 22:42:32 +10001055
Damien Millerd3a18572000-06-07 19:55:44 +10001056 SSLeay_add_all_algorithms();
Darren Tucker019cefe2003-08-02 22:40:07 +10001057 log_init(av[0], SYSLOG_LEVEL_INFO, SYSLOG_FACILITY_USER, 1);
1058
Kevin Steves3a881912002-07-20 19:05:40 +00001059 init_rng();
1060 seed_rng();
Damien Millereba71ba2000-04-29 23:57:08 +10001061
Damien Miller5428f641999-11-25 11:54:57 +11001062 /* we need this for the home * directory. */
Damien Miller95def091999-11-25 00:26:21 +11001063 pw = getpwuid(getuid());
1064 if (!pw) {
1065 printf("You don't exist, go away!\n");
1066 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001067 }
Damien Millereba71ba2000-04-29 23:57:08 +10001068 if (gethostname(hostname, sizeof(hostname)) < 0) {
1069 perror("gethostname");
1070 exit(1);
1071 }
Damien Miller5428f641999-11-25 11:54:57 +11001072
Darren Tucker019cefe2003-08-02 22:40:07 +10001073 while ((opt = getopt(ac, av,
Damien Miller4b42d7f2005-03-01 21:48:35 +11001074 "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 +11001075 switch (opt) {
1076 case 'b':
Darren Tucker9f647332005-11-28 16:41:46 +11001077 bits = strtonum(optarg, 768, 32768, &errstr);
Damien Miller02e754f2005-05-26 12:19:39 +10001078 if (errstr)
1079 fatal("Bits has bad value %s (%s)",
1080 optarg, errstr);
Damien Miller95def091999-11-25 00:26:21 +11001081 break;
Damien Miller4b42d7f2005-03-01 21:48:35 +11001082 case 'F':
1083 find_host = 1;
1084 rr_hostname = optarg;
1085 break;
1086 case 'H':
1087 hash_hosts = 1;
1088 break;
1089 case 'R':
1090 delete_host = 1;
1091 rr_hostname = optarg;
1092 break;
Damien Miller95def091999-11-25 00:26:21 +11001093 case 'l':
1094 print_fingerprint = 1;
1095 break;
Ben Lindstrom8fd372b2001-03-12 03:02:17 +00001096 case 'B':
1097 print_bubblebabble = 1;
1098 break;
Damien Miller95def091999-11-25 00:26:21 +11001099 case 'p':
1100 change_passphrase = 1;
1101 break;
Damien Miller95def091999-11-25 00:26:21 +11001102 case 'c':
1103 change_comment = 1;
1104 break;
Damien Miller95def091999-11-25 00:26:21 +11001105 case 'f':
Damien Millerb089fb52005-05-26 12:16:18 +10001106 if (strlcpy(identity_file, optarg, sizeof(identity_file)) >=
1107 sizeof(identity_file))
1108 fatal("Identity filename too long");
Damien Miller95def091999-11-25 00:26:21 +11001109 have_identity = 1;
1110 break;
Damien Miller37876e92003-05-15 10:19:46 +10001111 case 'g':
1112 print_generic = 1;
1113 break;
Damien Miller95def091999-11-25 00:26:21 +11001114 case 'P':
1115 identity_passphrase = optarg;
1116 break;
Damien Miller95def091999-11-25 00:26:21 +11001117 case 'N':
1118 identity_new_passphrase = optarg;
1119 break;
Damien Miller95def091999-11-25 00:26:21 +11001120 case 'C':
1121 identity_comment = optarg;
1122 break;
Damien Miller95def091999-11-25 00:26:21 +11001123 case 'q':
1124 quiet = 1;
1125 break;
Ben Lindstrom5a707822001-04-22 17:15:46 +00001126 case 'e':
Damien Millereba71ba2000-04-29 23:57:08 +10001127 case 'x':
Ben Lindstrom5a707822001-04-22 17:15:46 +00001128 /* export key */
Damien Millereba71ba2000-04-29 23:57:08 +10001129 convert_to_ssh2 = 1;
1130 break;
Ben Lindstrom5a707822001-04-22 17:15:46 +00001131 case 'i':
Damien Millereba71ba2000-04-29 23:57:08 +10001132 case 'X':
Ben Lindstrom5a707822001-04-22 17:15:46 +00001133 /* import key */
Damien Millereba71ba2000-04-29 23:57:08 +10001134 convert_from_ssh2 = 1;
1135 break;
Damien Millereba71ba2000-04-29 23:57:08 +10001136 case 'y':
1137 print_public = 1;
1138 break;
Damien Millereba71ba2000-04-29 23:57:08 +10001139 case 'd':
Damien Miller0bc1bd82000-11-13 22:57:25 +11001140 key_type_name = "dsa";
Damien Millereba71ba2000-04-29 23:57:08 +10001141 break;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001142 case 't':
1143 key_type_name = optarg;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001144 break;
Ben Lindstrom8282d6a2001-08-06 21:44:05 +00001145 case 'D':
1146 download = 1;
Damien Miller90967402006-03-26 14:07:26 +11001147 /*FALLTHROUGH*/
Ben Lindstromf19578c2001-08-06 21:46:54 +00001148 case 'U':
Ben Lindstrom8282d6a2001-08-06 21:44:05 +00001149 reader_id = optarg;
Ben Lindstromcd392282001-07-04 03:44:03 +00001150 break;
Darren Tucker06930c72003-12-31 11:34:51 +11001151 case 'v':
1152 if (log_level == SYSLOG_LEVEL_INFO)
1153 log_level = SYSLOG_LEVEL_DEBUG1;
1154 else {
Darren Tuckerfc959702004-07-17 16:12:08 +10001155 if (log_level >= SYSLOG_LEVEL_DEBUG1 &&
Darren Tucker06930c72003-12-31 11:34:51 +11001156 log_level < SYSLOG_LEVEL_DEBUG3)
1157 log_level++;
1158 }
1159 break;
Damien Miller37876e92003-05-15 10:19:46 +10001160 case 'r':
Damien Miller4b42d7f2005-03-01 21:48:35 +11001161 rr_hostname = optarg;
Damien Miller37876e92003-05-15 10:19:46 +10001162 break;
Darren Tucker019cefe2003-08-02 22:40:07 +10001163 case 'W':
Damien Millerb089fb52005-05-26 12:16:18 +10001164 generator_wanted = strtonum(optarg, 1, UINT_MAX, &errstr);
1165 if (errstr)
1166 fatal("Desired generator has bad value: %s (%s)",
1167 optarg, errstr);
Darren Tucker019cefe2003-08-02 22:40:07 +10001168 break;
1169 case 'a':
Damien Millerb089fb52005-05-26 12:16:18 +10001170 trials = strtonum(optarg, 1, UINT_MAX, &errstr);
1171 if (errstr)
1172 fatal("Invalid number of trials: %s (%s)",
1173 optarg, errstr);
Darren Tucker019cefe2003-08-02 22:40:07 +10001174 break;
1175 case 'M':
Damien Millerb089fb52005-05-26 12:16:18 +10001176 memory = strtonum(optarg, 1, UINT_MAX, &errstr);
1177 if (errstr) {
1178 fatal("Memory limit is %s: %s", errstr, optarg);
1179 }
Darren Tucker019cefe2003-08-02 22:40:07 +10001180 break;
1181 case 'G':
1182 do_gen_candidates = 1;
Damien Millerb089fb52005-05-26 12:16:18 +10001183 if (strlcpy(out_file, optarg, sizeof(out_file)) >=
1184 sizeof(out_file))
1185 fatal("Output filename too long");
Darren Tucker019cefe2003-08-02 22:40:07 +10001186 break;
1187 case 'T':
1188 do_screen_candidates = 1;
Damien Millerb089fb52005-05-26 12:16:18 +10001189 if (strlcpy(out_file, optarg, sizeof(out_file)) >=
1190 sizeof(out_file))
1191 fatal("Output filename too long");
Darren Tucker019cefe2003-08-02 22:40:07 +10001192 break;
1193 case 'S':
1194 /* XXX - also compare length against bits */
1195 if (BN_hex2bn(&start, optarg) == 0)
1196 fatal("Invalid start point.");
1197 break;
Damien Miller95def091999-11-25 00:26:21 +11001198 case '?':
1199 default:
1200 usage();
1201 }
1202 }
Darren Tucker06930c72003-12-31 11:34:51 +11001203
1204 /* reinit */
1205 log_init(av[0], log_level, SYSLOG_FACILITY_USER, 1);
1206
Damien Miller95def091999-11-25 00:26:21 +11001207 if (optind < ac) {
1208 printf("Too many arguments.\n");
1209 usage();
1210 }
1211 if (change_passphrase && change_comment) {
1212 printf("Can only have one of -p and -c.\n");
1213 usage();
1214 }
Damien Miller4b42d7f2005-03-01 21:48:35 +11001215 if (delete_host || hash_hosts || find_host)
1216 do_known_hosts(pw, rr_hostname);
Ben Lindstrom8fd372b2001-03-12 03:02:17 +00001217 if (print_fingerprint || print_bubblebabble)
Damien Miller95def091999-11-25 00:26:21 +11001218 do_fingerprint(pw);
Damien Miller95def091999-11-25 00:26:21 +11001219 if (change_passphrase)
1220 do_change_passphrase(pw);
Damien Miller4a10d2e2002-03-11 22:53:29 +11001221 if (change_comment)
1222 do_change_comment(pw);
Kevin Steves3a881912002-07-20 19:05:40 +00001223 if (convert_to_ssh2)
1224 do_convert_to_ssh2(pw);
1225 if (convert_from_ssh2)
1226 do_convert_from_ssh2(pw);
Damien Millereba71ba2000-04-29 23:57:08 +10001227 if (print_public)
1228 do_print_public(pw);
Damien Miller4b42d7f2005-03-01 21:48:35 +11001229 if (rr_hostname != NULL) {
Damien Millercb314822006-03-26 13:48:01 +11001230 unsigned int n = 0;
1231
1232 if (have_identity) {
1233 n = do_print_resource_record(pw,
1234 identity_file, rr_hostname);
1235 if (n == 0) {
1236 perror(identity_file);
1237 exit(1);
1238 }
1239 exit(0);
1240 } else {
1241
1242 n += do_print_resource_record(pw,
1243 _PATH_HOST_RSA_KEY_FILE, rr_hostname);
1244 n += do_print_resource_record(pw,
1245 _PATH_HOST_DSA_KEY_FILE, rr_hostname);
1246
1247 if (n == 0)
1248 fatal("no keys found.");
1249 exit(0);
1250 }
Damien Miller37876e92003-05-15 10:19:46 +10001251 }
Ben Lindstrom8282d6a2001-08-06 21:44:05 +00001252 if (reader_id != NULL) {
Ben Lindstrom6818bfb2001-08-06 21:40:04 +00001253#ifdef SMARTCARD
Ben Lindstrom8282d6a2001-08-06 21:44:05 +00001254 if (download)
1255 do_download(pw, reader_id);
1256 else
1257 do_upload(pw, reader_id);
Ben Lindstromffce1472001-08-06 21:57:31 +00001258#else /* SMARTCARD */
Ben Lindstrom6818bfb2001-08-06 21:40:04 +00001259 fatal("no support for smartcards.");
Ben Lindstromffce1472001-08-06 21:57:31 +00001260#endif /* SMARTCARD */
Ben Lindstrom8282d6a2001-08-06 21:44:05 +00001261 }
Damien Miller95def091999-11-25 00:26:21 +11001262
Darren Tucker019cefe2003-08-02 22:40:07 +10001263 if (do_gen_candidates) {
1264 FILE *out = fopen(out_file, "w");
Damien Miller787b2ec2003-11-21 23:56:47 +11001265
Darren Tucker019cefe2003-08-02 22:40:07 +10001266 if (out == NULL) {
1267 error("Couldn't open modulus candidate file \"%s\": %s",
1268 out_file, strerror(errno));
1269 return (1);
1270 }
Damien Miller3f54a9f2005-11-05 14:52:18 +11001271 if (bits == 0)
1272 bits = DEFAULT_BITS;
Darren Tucker019cefe2003-08-02 22:40:07 +10001273 if (gen_candidates(out, memory, bits, start) != 0)
Damien Miller15d72a02005-11-05 15:07:33 +11001274 fatal("modulus candidate generation failed");
Darren Tucker019cefe2003-08-02 22:40:07 +10001275
1276 return (0);
1277 }
1278
1279 if (do_screen_candidates) {
1280 FILE *in;
1281 FILE *out = fopen(out_file, "w");
1282
1283 if (have_identity && strcmp(identity_file, "-") != 0) {
1284 if ((in = fopen(identity_file, "r")) == NULL) {
1285 fatal("Couldn't open modulus candidate "
Damien Millera8e06ce2003-11-21 23:48:55 +11001286 "file \"%s\": %s", identity_file,
Darren Tucker019cefe2003-08-02 22:40:07 +10001287 strerror(errno));
1288 }
1289 } else
1290 in = stdin;
1291
1292 if (out == NULL) {
1293 fatal("Couldn't open moduli file \"%s\": %s",
1294 out_file, strerror(errno));
1295 }
1296 if (prime_test(in, out, trials, generator_wanted) != 0)
Damien Miller15d72a02005-11-05 15:07:33 +11001297 fatal("modulus screening failed");
Darren Tuckerf4220e62003-08-21 16:44:07 +10001298 return (0);
Darren Tucker019cefe2003-08-02 22:40:07 +10001299 }
1300
Damien Miller95def091999-11-25 00:26:21 +11001301 arc4random_stir();
1302
Damien Millerf14be5c2005-11-05 15:15:49 +11001303 if (key_type_name == NULL)
1304 key_type_name = "rsa";
1305
Damien Millere39cacc2000-11-29 12:18:44 +11001306 type = key_type_from_name(key_type_name);
1307 if (type == KEY_UNSPEC) {
1308 fprintf(stderr, "unknown key type %s\n", key_type_name);
1309 exit(1);
Damien Millereba71ba2000-04-29 23:57:08 +10001310 }
Damien Miller3f54a9f2005-11-05 14:52:18 +11001311 if (bits == 0)
1312 bits = (type == KEY_DSA) ? DEFAULT_BITS_DSA : DEFAULT_BITS;
Tim Rice660c3402005-11-28 17:45:32 -08001313 if (type == KEY_DSA && bits != 1024)
1314 fatal("DSA keys must be 1024 bits");
Darren Tucker3af2ac52005-11-29 13:10:24 +11001315 if (!quiet)
1316 printf("Generating public/private %s key pair.\n", key_type_name);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001317 private = key_generate(type, bits);
1318 if (private == NULL) {
1319 fprintf(stderr, "key_generate failed");
1320 exit(1);
1321 }
1322 public = key_from_private(private);
Damien Miller95def091999-11-25 00:26:21 +11001323
1324 if (!have_identity)
1325 ask_filename(pw, "Enter file in which to save the key");
1326
Damien Miller788f2122005-11-05 15:14:59 +11001327 /* Create ~/.ssh directory if it doesn't already exist. */
Ben Lindstrom226cfa02001-01-22 05:34:40 +00001328 snprintf(dotsshdir, sizeof dotsshdir, "%s/%s", pw->pw_dir, _PATH_SSH_USER_DIR);
Damien Miller95def091999-11-25 00:26:21 +11001329 if (strstr(identity_file, dotsshdir) != NULL &&
1330 stat(dotsshdir, &st) < 0) {
Damien Millerbe484b52000-07-15 14:14:16 +10001331 if (mkdir(dotsshdir, 0700) < 0)
Damien Miller95def091999-11-25 00:26:21 +11001332 error("Could not create directory '%s'.", dotsshdir);
1333 else if (!quiet)
1334 printf("Created directory '%s'.\n", dotsshdir);
1335 }
1336 /* If the file already exists, ask the user to confirm. */
1337 if (stat(identity_file, &st) >= 0) {
1338 char yesno[3];
1339 printf("%s already exists.\n", identity_file);
1340 printf("Overwrite (y/n)? ");
1341 fflush(stdout);
1342 if (fgets(yesno, sizeof(yesno), stdin) == NULL)
1343 exit(1);
1344 if (yesno[0] != 'y' && yesno[0] != 'Y')
1345 exit(1);
1346 }
1347 /* Ask for a passphrase (twice). */
1348 if (identity_passphrase)
1349 passphrase1 = xstrdup(identity_passphrase);
1350 else if (identity_new_passphrase)
1351 passphrase1 = xstrdup(identity_new_passphrase);
1352 else {
1353passphrase_again:
1354 passphrase1 =
Ben Lindstrom949974b2001-06-25 05:20:31 +00001355 read_passphrase("Enter passphrase (empty for no "
1356 "passphrase): ", RP_ALLOW_STDIN);
1357 passphrase2 = read_passphrase("Enter same passphrase again: ",
1358 RP_ALLOW_STDIN);
Damien Miller95def091999-11-25 00:26:21 +11001359 if (strcmp(passphrase1, passphrase2) != 0) {
Ben Lindstrom949974b2001-06-25 05:20:31 +00001360 /*
1361 * The passphrases do not match. Clear them and
1362 * retry.
1363 */
Damien Miller95def091999-11-25 00:26:21 +11001364 memset(passphrase1, 0, strlen(passphrase1));
1365 memset(passphrase2, 0, strlen(passphrase2));
1366 xfree(passphrase1);
1367 xfree(passphrase2);
1368 printf("Passphrases do not match. Try again.\n");
1369 goto passphrase_again;
1370 }
1371 /* Clear the other copy of the passphrase. */
1372 memset(passphrase2, 0, strlen(passphrase2));
1373 xfree(passphrase2);
1374 }
1375
Damien Miller95def091999-11-25 00:26:21 +11001376 if (identity_comment) {
1377 strlcpy(comment, identity_comment, sizeof(comment));
1378 } else {
Damien Miller4af51302000-04-16 11:18:38 +10001379 /* Create default commend field for the passphrase. */
Damien Miller95def091999-11-25 00:26:21 +11001380 snprintf(comment, sizeof comment, "%s@%s", pw->pw_name, hostname);
1381 }
1382
1383 /* Save the key with the given passphrase and comment. */
Ben Lindstromd0fca422001-03-26 13:44:06 +00001384 if (!key_save_private(private, identity_file, passphrase1, comment)) {
Ben Lindstrom15f33862001-04-16 02:00:02 +00001385 printf("Saving the key failed: %s.\n", identity_file);
Damien Miller95def091999-11-25 00:26:21 +11001386 memset(passphrase1, 0, strlen(passphrase1));
1387 xfree(passphrase1);
1388 exit(1);
1389 }
1390 /* Clear the passphrase. */
1391 memset(passphrase1, 0, strlen(passphrase1));
1392 xfree(passphrase1);
1393
1394 /* Clear the private key and the random number generator. */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001395 key_free(private);
Damien Miller95def091999-11-25 00:26:21 +11001396 arc4random_stir();
1397
1398 if (!quiet)
1399 printf("Your identification has been saved in %s.\n", identity_file);
1400
Damien Miller95def091999-11-25 00:26:21 +11001401 strlcat(identity_file, ".pub", sizeof(identity_file));
Ben Lindstrom5fc62702001-03-09 18:19:24 +00001402 fd = open(identity_file, O_WRONLY | O_CREAT | O_TRUNC, 0644);
1403 if (fd == -1) {
Damien Miller95def091999-11-25 00:26:21 +11001404 printf("Could not save your public key in %s\n", identity_file);
1405 exit(1);
1406 }
Ben Lindstrom5fc62702001-03-09 18:19:24 +00001407 f = fdopen(fd, "w");
1408 if (f == NULL) {
1409 printf("fdopen %s failed", identity_file);
1410 exit(1);
1411 }
Damien Millereba71ba2000-04-29 23:57:08 +10001412 if (!key_write(public, f))
1413 fprintf(stderr, "write key failed");
1414 fprintf(f, " %s\n", comment);
Damien Miller95def091999-11-25 00:26:21 +11001415 fclose(f);
1416
1417 if (!quiet) {
Ben Lindstromcfccef92001-03-13 04:57:58 +00001418 char *fp = key_fingerprint(public, SSH_FP_MD5, SSH_FP_HEX);
Damien Millereba71ba2000-04-29 23:57:08 +10001419 printf("Your public key has been saved in %s.\n",
1420 identity_file);
Damien Miller95def091999-11-25 00:26:21 +11001421 printf("The key fingerprint is:\n");
Ben Lindstromcfccef92001-03-13 04:57:58 +00001422 printf("%s %s\n", fp, comment);
1423 xfree(fp);
Damien Miller95def091999-11-25 00:26:21 +11001424 }
Damien Millereba71ba2000-04-29 23:57:08 +10001425
1426 key_free(public);
Damien Miller95def091999-11-25 00:26:21 +11001427 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001428}