blob: 17236a55aaba193379c0ef184e58f3e9e245afc8 [file] [log] [blame]
Damien Millere3476ed2006-07-24 14:13:33 +10001/* $OpenBSD: ssh-keygen.c,v 1.150 2006/07/22 20:48:23 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
Darren Tucker39972492006-07-12 22:22:46 +100024#include <errno.h>
Damien Miller57cf6382006-07-10 21:13:46 +100025#include <fcntl.h>
Damien Millerb8fe89c2006-07-24 14:51:00 +100026#include <netdb.h>
Darren Tucker2ee50c52006-07-11 18:55:05 +100027#ifdef HAVE_PATHS_H
28# include <paths.h>
29#endif
Damien Miller9f2abc42006-07-10 20:53:08 +100030#include <pwd.h>
Damien Millere3476ed2006-07-24 14:13:33 +100031#include <string.h>
Damien Millere6b3b612006-07-24 14:01:23 +100032#include <unistd.h>
Damien Miller9f2abc42006-07-10 20:53:08 +100033
Damien Millerd4a8b7e1999-10-27 13:42:43 +100034#include "xmalloc.h"
Damien Millereba71ba2000-04-29 23:57:08 +100035#include "key.h"
Ben Lindstromd09fcf52001-03-29 00:29:54 +000036#include "rsa.h"
Damien Millereba71ba2000-04-29 23:57:08 +100037#include "authfile.h"
38#include "uuencode.h"
Damien Miller874d77b2000-10-14 16:23:11 +110039#include "buffer.h"
40#include "bufaux.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000041#include "pathnames.h"
42#include "log.h"
Darren Tuckere608ca22004-05-13 16:15:47 +100043#include "misc.h"
Damien Miller4b42d7f2005-03-01 21:48:35 +110044#include "match.h"
45#include "hostfile.h"
Damien Miller69996102006-07-10 20:53:31 +100046#include "dns.h"
Damien Miller874d77b2000-10-14 16:23:11 +110047
Ben Lindstrom8282d6a2001-08-06 21:44:05 +000048#ifdef SMARTCARD
Ben Lindstrom8282d6a2001-08-06 21:44:05 +000049#include "scard.h"
Ben Lindstrombcc18082001-08-06 21:59:25 +000050#endif
Ben Lindstromcd392282001-07-04 03:44:03 +000051
Damien Miller3f54a9f2005-11-05 14:52:18 +110052/* Number of bits in the RSA/DSA key. This value can be set on the command line. */
53#define DEFAULT_BITS 2048
54#define DEFAULT_BITS_DSA 1024
55u_int32_t bits = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100056
Damien Miller5428f641999-11-25 11:54:57 +110057/*
58 * Flag indicating that we just want to change the passphrase. This can be
59 * set on the command line.
60 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100061int change_passphrase = 0;
62
Damien Miller5428f641999-11-25 11:54:57 +110063/*
64 * Flag indicating that we just want to change the comment. This can be set
65 * on the command line.
66 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100067int change_comment = 0;
68
69int quiet = 0;
70
Damien Miller4b42d7f2005-03-01 21:48:35 +110071/* Flag indicating that we want to hash a known_hosts file */
72int hash_hosts = 0;
73/* Flag indicating that we want lookup a host in known_hosts file */
74int find_host = 0;
75/* Flag indicating that we want to delete a host from a known_hosts file */
76int delete_host = 0;
77
Damien Miller10f6f6b1999-11-17 17:29:08 +110078/* Flag indicating that we just want to see the key fingerprint */
79int print_fingerprint = 0;
Ben Lindstrom8fd372b2001-03-12 03:02:17 +000080int print_bubblebabble = 0;
Damien Miller10f6f6b1999-11-17 17:29:08 +110081
Damien Miller431f66b1999-11-21 18:31:57 +110082/* The identity file name, given on the command line or entered by the user. */
83char identity_file[1024];
84int have_identity = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100085
86/* This is set to the passphrase if given on the command line. */
87char *identity_passphrase = NULL;
88
89/* This is set to the new passphrase if given on the command line. */
90char *identity_new_passphrase = NULL;
91
92/* This is set to the new comment if given on the command line. */
93char *identity_comment = NULL;
94
Damien Millereba71ba2000-04-29 23:57:08 +100095/* Dump public key file in format used by real and the original SSH 2 */
96int convert_to_ssh2 = 0;
97int convert_from_ssh2 = 0;
98int print_public = 0;
Damien Miller37876e92003-05-15 10:19:46 +100099int print_generic = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100100
Damien Millera41c8b12002-01-22 23:05:08 +1100101char *key_type_name = NULL;
Damien Millereba71ba2000-04-29 23:57:08 +1000102
Damien Miller431f66b1999-11-21 18:31:57 +1100103/* argv0 */
104extern char *__progname;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000105
Damien Millereba71ba2000-04-29 23:57:08 +1000106char hostname[MAXHOSTNAMELEN];
107
Darren Tucker770fc012004-05-13 16:24:32 +1000108/* moduli.c */
Damien Millerb089fb52005-05-26 12:16:18 +1000109int gen_candidates(FILE *, u_int32_t, u_int32_t, BIGNUM *);
Darren Tucker770fc012004-05-13 16:24:32 +1000110int prime_test(FILE *, FILE *, u_int32_t, u_int32_t);
111
Ben Lindstrombba81212001-06-25 05:01:22 +0000112static void
Damien Miller431f66b1999-11-21 18:31:57 +1100113ask_filename(struct passwd *pw, const char *prompt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000114{
Damien Miller95def091999-11-25 00:26:21 +1100115 char buf[1024];
Damien Millere39cacc2000-11-29 12:18:44 +1100116 char *name = NULL;
117
Damien Miller993dd552002-02-19 15:22:47 +1100118 if (key_type_name == NULL)
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000119 name = _PATH_SSH_CLIENT_ID_RSA;
Damien Miller90967402006-03-26 14:07:26 +1100120 else {
Damien Miller993dd552002-02-19 15:22:47 +1100121 switch (key_type_from_name(key_type_name)) {
122 case KEY_RSA1:
123 name = _PATH_SSH_CLIENT_IDENTITY;
124 break;
125 case KEY_DSA:
126 name = _PATH_SSH_CLIENT_ID_DSA;
127 break;
128 case KEY_RSA:
129 name = _PATH_SSH_CLIENT_ID_RSA;
130 break;
131 default:
132 fprintf(stderr, "bad key type");
133 exit(1);
134 break;
135 }
Damien Miller90967402006-03-26 14:07:26 +1100136 }
Damien Millere39cacc2000-11-29 12:18:44 +1100137 snprintf(identity_file, sizeof(identity_file), "%s/%s", pw->pw_dir, name);
Ben Lindstrom3deda8b2000-12-22 20:27:43 +0000138 fprintf(stderr, "%s (%s): ", prompt, identity_file);
Damien Miller95def091999-11-25 00:26:21 +1100139 if (fgets(buf, sizeof(buf), stdin) == NULL)
140 exit(1);
141 if (strchr(buf, '\n'))
142 *strchr(buf, '\n') = 0;
143 if (strcmp(buf, "") != 0)
144 strlcpy(identity_file, buf, sizeof(identity_file));
145 have_identity = 1;
Damien Miller10f6f6b1999-11-17 17:29:08 +1100146}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000147
Ben Lindstrombba81212001-06-25 05:01:22 +0000148static Key *
Ben Lindstromd78ae762001-06-05 20:35:09 +0000149load_identity(char *filename)
Damien Millereba71ba2000-04-29 23:57:08 +1000150{
Ben Lindstromd0fca422001-03-26 13:44:06 +0000151 char *pass;
152 Key *prv;
153
Ben Lindstroma3700052001-04-05 23:26:32 +0000154 prv = key_load_private(filename, "", NULL);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000155 if (prv == NULL) {
Ben Lindstromd78ae762001-06-05 20:35:09 +0000156 if (identity_passphrase)
157 pass = xstrdup(identity_passphrase);
158 else
Ben Lindstrom949974b2001-06-25 05:20:31 +0000159 pass = read_passphrase("Enter passphrase: ",
160 RP_ALLOW_STDIN);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000161 prv = key_load_private(filename, pass, NULL);
Damien Millereba71ba2000-04-29 23:57:08 +1000162 memset(pass, 0, strlen(pass));
163 xfree(pass);
164 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000165 return prv;
Damien Millereba71ba2000-04-29 23:57:08 +1000166}
167
Damien Miller874d77b2000-10-14 16:23:11 +1100168#define SSH_COM_PUBLIC_BEGIN "---- BEGIN SSH2 PUBLIC KEY ----"
Ben Lindstromcb72e4f2002-06-21 00:41:51 +0000169#define SSH_COM_PUBLIC_END "---- END SSH2 PUBLIC KEY ----"
Damien Miller874d77b2000-10-14 16:23:11 +1100170#define SSH_COM_PRIVATE_BEGIN "---- BEGIN SSH2 ENCRYPTED PRIVATE KEY ----"
Kevin Stevesef4eea92001-02-05 12:42:17 +0000171#define SSH_COM_PRIVATE_KEY_MAGIC 0x3f6ff9eb
Damien Millereba71ba2000-04-29 23:57:08 +1000172
Ben Lindstrombba81212001-06-25 05:01:22 +0000173static void
Damien Millereba71ba2000-04-29 23:57:08 +1000174do_convert_to_ssh2(struct passwd *pw)
175{
Ben Lindstrom46c264f2001-04-24 16:56:58 +0000176 Key *k;
Ben Lindstromc58ab022002-02-26 18:15:09 +0000177 u_int len;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000178 u_char *blob;
Damien Millereba71ba2000-04-29 23:57:08 +1000179 struct stat st;
180
181 if (!have_identity)
182 ask_filename(pw, "Enter file in which the key is");
183 if (stat(identity_file, &st) < 0) {
184 perror(identity_file);
185 exit(1);
186 }
Ben Lindstrom46c264f2001-04-24 16:56:58 +0000187 if ((k = key_load_public(identity_file, NULL)) == NULL) {
Ben Lindstromd78ae762001-06-05 20:35:09 +0000188 if ((k = load_identity(identity_file)) == NULL) {
Ben Lindstrom46c264f2001-04-24 16:56:58 +0000189 fprintf(stderr, "load failed\n");
190 exit(1);
191 }
Damien Millereba71ba2000-04-29 23:57:08 +1000192 }
Damien Millerdb274722003-05-14 13:45:22 +1000193 if (k->type == KEY_RSA1) {
194 fprintf(stderr, "version 1 keys are not supported\n");
195 exit(1);
196 }
Ben Lindstrom99a30f12001-09-18 05:49:14 +0000197 if (key_to_blob(k, &blob, &len) <= 0) {
198 fprintf(stderr, "key_to_blob failed\n");
199 exit(1);
200 }
Damien Miller874d77b2000-10-14 16:23:11 +1100201 fprintf(stdout, "%s\n", SSH_COM_PUBLIC_BEGIN);
Damien Millereba71ba2000-04-29 23:57:08 +1000202 fprintf(stdout,
Ben Lindstrom58d3b722002-06-23 21:28:13 +0000203 "Comment: \"%u-bit %s, converted from OpenSSH by %s@%s\"\n",
Ben Lindstrom46c264f2001-04-24 16:56:58 +0000204 key_size(k), key_type(k),
Damien Millereba71ba2000-04-29 23:57:08 +1000205 pw->pw_name, hostname);
206 dump_base64(stdout, blob, len);
Damien Miller874d77b2000-10-14 16:23:11 +1100207 fprintf(stdout, "%s\n", SSH_COM_PUBLIC_END);
Ben Lindstrom46c264f2001-04-24 16:56:58 +0000208 key_free(k);
Damien Millereba71ba2000-04-29 23:57:08 +1000209 xfree(blob);
210 exit(0);
211}
212
Ben Lindstrombba81212001-06-25 05:01:22 +0000213static void
Damien Miller874d77b2000-10-14 16:23:11 +1100214buffer_get_bignum_bits(Buffer *b, BIGNUM *value)
215{
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000216 u_int bignum_bits = buffer_get_int(b);
217 u_int bytes = (bignum_bits + 7) / 8;
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000218
Damien Miller874d77b2000-10-14 16:23:11 +1100219 if (buffer_len(b) < bytes)
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000220 fatal("buffer_get_bignum_bits: input buffer too small: "
221 "need %d have %d", bytes, buffer_len(b));
Damien Miller708d21c2002-01-22 23:18:15 +1100222 BN_bin2bn(buffer_ptr(b), bytes, value);
Damien Miller874d77b2000-10-14 16:23:11 +1100223 buffer_consume(b, bytes);
224}
225
Ben Lindstrombba81212001-06-25 05:01:22 +0000226static Key *
Ben Lindstrom90fd8142002-02-26 18:09:42 +0000227do_convert_private_ssh2_from_blob(u_char *blob, u_int blen)
Damien Miller874d77b2000-10-14 16:23:11 +1100228{
229 Buffer b;
Damien Miller874d77b2000-10-14 16:23:11 +1100230 Key *key = NULL;
Damien Miller874d77b2000-10-14 16:23:11 +1100231 char *type, *cipher;
Ben Lindstrom511d69e2001-07-04 05:05:27 +0000232 u_char *sig, data[] = "abcde12345";
Ben Lindstrome586c4c2001-06-25 05:04:58 +0000233 int magic, rlen, ktype, i1, i2, i3, i4;
234 u_int slen;
235 u_long e;
Damien Miller874d77b2000-10-14 16:23:11 +1100236
237 buffer_init(&b);
238 buffer_append(&b, blob, blen);
239
240 magic = buffer_get_int(&b);
241 if (magic != SSH_COM_PRIVATE_KEY_MAGIC) {
242 error("bad magic 0x%x != 0x%x", magic, SSH_COM_PRIVATE_KEY_MAGIC);
243 buffer_free(&b);
244 return NULL;
245 }
Ben Lindstrom34f91882001-06-25 04:47:54 +0000246 i1 = buffer_get_int(&b);
Damien Miller874d77b2000-10-14 16:23:11 +1100247 type = buffer_get_string(&b, NULL);
248 cipher = buffer_get_string(&b, NULL);
Ben Lindstrom34f91882001-06-25 04:47:54 +0000249 i2 = buffer_get_int(&b);
250 i3 = buffer_get_int(&b);
251 i4 = buffer_get_int(&b);
252 debug("ignore (%d %d %d %d)", i1,i2,i3,i4);
Damien Miller874d77b2000-10-14 16:23:11 +1100253 if (strcmp(cipher, "none") != 0) {
254 error("unsupported cipher %s", cipher);
255 xfree(cipher);
256 buffer_free(&b);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000257 xfree(type);
Damien Miller874d77b2000-10-14 16:23:11 +1100258 return NULL;
259 }
260 xfree(cipher);
261
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000262 if (strstr(type, "dsa")) {
263 ktype = KEY_DSA;
264 } else if (strstr(type, "rsa")) {
265 ktype = KEY_RSA;
266 } else {
Darren Tucker7cfeecf2005-01-20 10:56:31 +1100267 buffer_free(&b);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000268 xfree(type);
Damien Miller874d77b2000-10-14 16:23:11 +1100269 return NULL;
270 }
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000271 key = key_new_private(ktype);
272 xfree(type);
273
274 switch (key->type) {
275 case KEY_DSA:
276 buffer_get_bignum_bits(&b, key->dsa->p);
277 buffer_get_bignum_bits(&b, key->dsa->g);
278 buffer_get_bignum_bits(&b, key->dsa->q);
279 buffer_get_bignum_bits(&b, key->dsa->pub_key);
280 buffer_get_bignum_bits(&b, key->dsa->priv_key);
281 break;
282 case KEY_RSA:
Ben Lindstrom34f91882001-06-25 04:47:54 +0000283 e = buffer_get_char(&b);
284 debug("e %lx", e);
285 if (e < 30) {
286 e <<= 8;
287 e += buffer_get_char(&b);
288 debug("e %lx", e);
289 e <<= 8;
290 e += buffer_get_char(&b);
291 debug("e %lx", e);
292 }
293 if (!BN_set_word(key->rsa->e, e)) {
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000294 buffer_free(&b);
295 key_free(key);
296 return NULL;
297 }
298 buffer_get_bignum_bits(&b, key->rsa->d);
299 buffer_get_bignum_bits(&b, key->rsa->n);
300 buffer_get_bignum_bits(&b, key->rsa->iqmp);
301 buffer_get_bignum_bits(&b, key->rsa->q);
302 buffer_get_bignum_bits(&b, key->rsa->p);
Ben Lindstromf7297dd2001-07-04 05:02:23 +0000303 rsa_generate_additional_parameters(key->rsa);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000304 break;
305 }
Damien Miller874d77b2000-10-14 16:23:11 +1100306 rlen = buffer_len(&b);
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +0000307 if (rlen != 0)
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000308 error("do_convert_private_ssh2_from_blob: "
309 "remaining bytes in key blob %d", rlen);
Damien Miller874d77b2000-10-14 16:23:11 +1100310 buffer_free(&b);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000311
Ben Lindstrome586c4c2001-06-25 05:04:58 +0000312 /* try the key */
313 key_sign(key, &sig, &slen, data, sizeof(data));
314 key_verify(key, sig, slen, data, sizeof(data));
315 xfree(sig);
Damien Miller874d77b2000-10-14 16:23:11 +1100316 return key;
317}
318
Damien Miller8056a9d2006-03-15 12:05:40 +1100319static int
320get_line(FILE *fp, char *line, size_t len)
321{
322 int c;
323 size_t pos = 0;
324
325 line[0] = '\0';
326 while ((c = fgetc(fp)) != EOF) {
327 if (pos >= len - 1) {
328 fprintf(stderr, "input line too long.\n");
329 exit(1);
330 }
Damien Miller90967402006-03-26 14:07:26 +1100331 switch (c) {
Damien Miller8056a9d2006-03-15 12:05:40 +1100332 case '\r':
333 c = fgetc(fp);
334 if (c != EOF && c != '\n' && ungetc(c, fp) == EOF) {
335 fprintf(stderr, "unget: %s\n", strerror(errno));
336 exit(1);
337 }
338 return pos;
339 case '\n':
340 return pos;
341 }
342 line[pos++] = c;
343 line[pos] = '\0';
344 }
Damien Millere23209f2006-03-31 23:13:35 +1100345 if (c == EOF)
346 return -1;
Damien Miller8056a9d2006-03-15 12:05:40 +1100347 return pos;
348}
349
Ben Lindstrombba81212001-06-25 05:01:22 +0000350static void
Damien Millereba71ba2000-04-29 23:57:08 +1000351do_convert_from_ssh2(struct passwd *pw)
352{
353 Key *k;
354 int blen;
Ben Lindstrom155b9812002-04-02 20:26:26 +0000355 u_int len;
Damien Miller8056a9d2006-03-15 12:05:40 +1100356 char line[1024];
Ben Lindstrom9e0ddd42001-09-18 05:41:19 +0000357 u_char blob[8096];
Damien Millereba71ba2000-04-29 23:57:08 +1000358 char encoded[8096];
359 struct stat st;
Damien Miller874d77b2000-10-14 16:23:11 +1100360 int escaped = 0, private = 0, ok;
Damien Millereba71ba2000-04-29 23:57:08 +1000361 FILE *fp;
362
363 if (!have_identity)
364 ask_filename(pw, "Enter file in which the key is");
365 if (stat(identity_file, &st) < 0) {
366 perror(identity_file);
367 exit(1);
368 }
369 fp = fopen(identity_file, "r");
370 if (fp == NULL) {
371 perror(identity_file);
372 exit(1);
373 }
374 encoded[0] = '\0';
Damien Miller8056a9d2006-03-15 12:05:40 +1100375 while ((blen = get_line(fp, line, sizeof(line))) != -1) {
376 if (line[blen - 1] == '\\')
Damien Miller30c3d422000-05-09 11:02:59 +1000377 escaped++;
Damien Millereba71ba2000-04-29 23:57:08 +1000378 if (strncmp(line, "----", 4) == 0 ||
379 strstr(line, ": ") != NULL) {
Damien Miller874d77b2000-10-14 16:23:11 +1100380 if (strstr(line, SSH_COM_PRIVATE_BEGIN) != NULL)
381 private = 1;
Ben Lindstrome586c4c2001-06-25 05:04:58 +0000382 if (strstr(line, " END ") != NULL) {
383 break;
384 }
Ben Lindstrom30358602001-04-24 16:59:28 +0000385 /* fprintf(stderr, "ignore: %s", line); */
Damien Millereba71ba2000-04-29 23:57:08 +1000386 continue;
387 }
Damien Miller30c3d422000-05-09 11:02:59 +1000388 if (escaped) {
389 escaped--;
Ben Lindstrom30358602001-04-24 16:59:28 +0000390 /* fprintf(stderr, "escaped: %s", line); */
Damien Miller30c3d422000-05-09 11:02:59 +1000391 continue;
Damien Millereba71ba2000-04-29 23:57:08 +1000392 }
Damien Millereba71ba2000-04-29 23:57:08 +1000393 strlcat(encoded, line, sizeof(encoded));
394 }
Ben Lindstrom155b9812002-04-02 20:26:26 +0000395 len = strlen(encoded);
396 if (((len % 4) == 3) &&
397 (encoded[len-1] == '=') &&
398 (encoded[len-2] == '=') &&
399 (encoded[len-3] == '='))
400 encoded[len-3] = '\0';
Damien Miller4a8ed542002-01-22 23:33:31 +1100401 blen = uudecode(encoded, blob, sizeof(blob));
Damien Millereba71ba2000-04-29 23:57:08 +1000402 if (blen < 0) {
403 fprintf(stderr, "uudecode failed.\n");
404 exit(1);
405 }
Damien Miller874d77b2000-10-14 16:23:11 +1100406 k = private ?
407 do_convert_private_ssh2_from_blob(blob, blen) :
Damien Miller0bc1bd82000-11-13 22:57:25 +1100408 key_from_blob(blob, blen);
Damien Miller874d77b2000-10-14 16:23:11 +1100409 if (k == NULL) {
410 fprintf(stderr, "decode blob failed.\n");
411 exit(1);
412 }
413 ok = private ?
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000414 (k->type == KEY_DSA ?
415 PEM_write_DSAPrivateKey(stdout, k->dsa, NULL, NULL, 0, NULL, NULL) :
416 PEM_write_RSAPrivateKey(stdout, k->rsa, NULL, NULL, 0, NULL, NULL)) :
Damien Miller874d77b2000-10-14 16:23:11 +1100417 key_write(k, stdout);
418 if (!ok) {
419 fprintf(stderr, "key write failed");
420 exit(1);
421 }
Damien Millereba71ba2000-04-29 23:57:08 +1000422 key_free(k);
Damien Millera1db12b2002-01-22 23:20:15 +1100423 if (!private)
424 fprintf(stdout, "\n");
Damien Millereba71ba2000-04-29 23:57:08 +1000425 fclose(fp);
426 exit(0);
427}
428
Ben Lindstrombba81212001-06-25 05:01:22 +0000429static void
Damien Millereba71ba2000-04-29 23:57:08 +1000430do_print_public(struct passwd *pw)
431{
Ben Lindstromd0fca422001-03-26 13:44:06 +0000432 Key *prv;
Damien Millereba71ba2000-04-29 23:57:08 +1000433 struct stat st;
434
435 if (!have_identity)
436 ask_filename(pw, "Enter file in which the key is");
437 if (stat(identity_file, &st) < 0) {
438 perror(identity_file);
439 exit(1);
440 }
Ben Lindstromd78ae762001-06-05 20:35:09 +0000441 prv = load_identity(identity_file);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000442 if (prv == NULL) {
Damien Millereba71ba2000-04-29 23:57:08 +1000443 fprintf(stderr, "load failed\n");
444 exit(1);
445 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000446 if (!key_write(prv, stdout))
Damien Millereba71ba2000-04-29 23:57:08 +1000447 fprintf(stderr, "key_write failed");
Ben Lindstromd0fca422001-03-26 13:44:06 +0000448 key_free(prv);
Damien Millereba71ba2000-04-29 23:57:08 +1000449 fprintf(stdout, "\n");
450 exit(0);
451}
452
Ben Lindstrom6818bfb2001-08-06 21:40:04 +0000453#ifdef SMARTCARD
Ben Lindstromcd392282001-07-04 03:44:03 +0000454static void
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000455do_upload(struct passwd *pw, const char *sc_reader_id)
Ben Lindstromcd392282001-07-04 03:44:03 +0000456{
Ben Lindstromcd392282001-07-04 03:44:03 +0000457 Key *prv = NULL;
458 struct stat st;
Ben Lindstrom70e3ad82002-03-22 03:33:43 +0000459 int ret;
Ben Lindstromcd392282001-07-04 03:44:03 +0000460
461 if (!have_identity)
462 ask_filename(pw, "Enter file in which the key is");
463 if (stat(identity_file, &st) < 0) {
464 perror(identity_file);
Ben Lindstrom70e3ad82002-03-22 03:33:43 +0000465 exit(1);
Ben Lindstromcd392282001-07-04 03:44:03 +0000466 }
467 prv = load_identity(identity_file);
468 if (prv == NULL) {
469 error("load failed");
Ben Lindstrom70e3ad82002-03-22 03:33:43 +0000470 exit(1);
Ben Lindstromcd392282001-07-04 03:44:03 +0000471 }
Ben Lindstrom70e3ad82002-03-22 03:33:43 +0000472 ret = sc_put_key(prv, sc_reader_id);
473 key_free(prv);
474 if (ret < 0)
475 exit(1);
Damien Miller996acd22003-04-09 20:59:48 +1000476 logit("loading key done");
Ben Lindstrom70e3ad82002-03-22 03:33:43 +0000477 exit(0);
Ben Lindstromcd392282001-07-04 03:44:03 +0000478}
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000479
480static void
481do_download(struct passwd *pw, const char *sc_reader_id)
482{
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000483 Key **keys = NULL;
484 int i;
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000485
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000486 keys = sc_get_keys(sc_reader_id, NULL);
487 if (keys == NULL)
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000488 fatal("cannot read public key from smartcard");
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000489 for (i = 0; keys[i]; i++) {
490 key_write(keys[i], stdout);
491 key_free(keys[i]);
492 fprintf(stdout, "\n");
493 }
494 xfree(keys);
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000495 exit(0);
496}
Ben Lindstromffce1472001-08-06 21:57:31 +0000497#endif /* SMARTCARD */
Ben Lindstromcd392282001-07-04 03:44:03 +0000498
Ben Lindstrombba81212001-06-25 05:01:22 +0000499static void
Damien Miller10f6f6b1999-11-17 17:29:08 +1100500do_fingerprint(struct passwd *pw)
501{
Damien Miller98c7ad62000-03-09 21:27:49 +1100502 FILE *f;
Damien Millereba71ba2000-04-29 23:57:08 +1000503 Key *public;
Ben Lindstrom8fd372b2001-03-12 03:02:17 +0000504 char *comment = NULL, *cp, *ep, line[16*1024], *fp;
Ben Lindstrom65366a82001-12-06 16:32:47 +0000505 int i, skip = 0, num = 1, invalid = 1;
506 enum fp_rep rep;
507 enum fp_type fptype;
Damien Miller95def091999-11-25 00:26:21 +1100508 struct stat st;
Damien Miller10f6f6b1999-11-17 17:29:08 +1100509
Ben Lindstromd0fca422001-03-26 13:44:06 +0000510 fptype = print_bubblebabble ? SSH_FP_SHA1 : SSH_FP_MD5;
511 rep = print_bubblebabble ? SSH_FP_BUBBLEBABBLE : SSH_FP_HEX;
Ben Lindstrom8fd372b2001-03-12 03:02:17 +0000512
Damien Miller95def091999-11-25 00:26:21 +1100513 if (!have_identity)
514 ask_filename(pw, "Enter file in which the key is");
515 if (stat(identity_file, &st) < 0) {
516 perror(identity_file);
517 exit(1);
518 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000519 public = key_load_public(identity_file, &comment);
520 if (public != NULL) {
521 fp = key_fingerprint(public, fptype, rep);
Ben Lindstrom58d3b722002-06-23 21:28:13 +0000522 printf("%u %s %s\n", key_size(public), fp, comment);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100523 key_free(public);
524 xfree(comment);
Ben Lindstrom8fd372b2001-03-12 03:02:17 +0000525 xfree(fp);
Damien Miller98c7ad62000-03-09 21:27:49 +1100526 exit(0);
527 }
Damien Miller40b59852006-06-13 13:00:25 +1000528 if (comment) {
Ben Lindstromd0fca422001-03-26 13:44:06 +0000529 xfree(comment);
Damien Miller40b59852006-06-13 13:00:25 +1000530 comment = NULL;
531 }
Damien Miller98c7ad62000-03-09 21:27:49 +1100532
533 f = fopen(identity_file, "r");
534 if (f != NULL) {
Damien Miller98c7ad62000-03-09 21:27:49 +1100535 while (fgets(line, sizeof(line), f)) {
536 i = strlen(line) - 1;
537 if (line[i] != '\n') {
538 error("line %d too long: %.40s...", num, line);
539 skip = 1;
540 continue;
Damien Miller95def091999-11-25 00:26:21 +1100541 }
Damien Miller98c7ad62000-03-09 21:27:49 +1100542 num++;
543 if (skip) {
544 skip = 0;
545 continue;
546 }
547 line[i] = '\0';
548
549 /* Skip leading whitespace, empty and comment lines. */
550 for (cp = line; *cp == ' ' || *cp == '\t'; cp++)
551 ;
552 if (!*cp || *cp == '\n' || *cp == '#')
553 continue ;
554 i = strtol(cp, &ep, 10);
555 if (i == 0 || ep == NULL || (*ep != ' ' && *ep != '\t')) {
556 int quoted = 0;
557 comment = cp;
Ben Lindstrom58d3b722002-06-23 21:28:13 +0000558 for (; *cp && (quoted || (*cp != ' ' &&
559 *cp != '\t')); cp++) {
Damien Miller98c7ad62000-03-09 21:27:49 +1100560 if (*cp == '\\' && cp[1] == '"')
561 cp++; /* Skip both */
562 else if (*cp == '"')
563 quoted = !quoted;
564 }
565 if (!*cp)
566 continue;
567 *cp++ = '\0';
568 }
569 ep = cp;
Ben Lindstrom2941f112000-12-29 16:50:13 +0000570 public = key_new(KEY_RSA1);
571 if (key_read(public, &cp) != 1) {
572 cp = ep;
573 key_free(public);
574 public = key_new(KEY_UNSPEC);
575 if (key_read(public, &cp) != 1) {
576 key_free(public);
577 continue;
578 }
Damien Miller98c7ad62000-03-09 21:27:49 +1100579 }
Ben Lindstrom2941f112000-12-29 16:50:13 +0000580 comment = *cp ? cp : comment;
Ben Lindstromd0fca422001-03-26 13:44:06 +0000581 fp = key_fingerprint(public, fptype, rep);
Ben Lindstrom58d3b722002-06-23 21:28:13 +0000582 printf("%u %s %s\n", key_size(public), fp,
Ben Lindstrom2941f112000-12-29 16:50:13 +0000583 comment ? comment : "no comment");
Ben Lindstrom8fd372b2001-03-12 03:02:17 +0000584 xfree(fp);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000585 key_free(public);
Ben Lindstrom2941f112000-12-29 16:50:13 +0000586 invalid = 0;
Damien Miller95def091999-11-25 00:26:21 +1100587 }
Damien Miller98c7ad62000-03-09 21:27:49 +1100588 fclose(f);
Damien Miller95def091999-11-25 00:26:21 +1100589 }
Damien Miller98c7ad62000-03-09 21:27:49 +1100590 if (invalid) {
Damien Millereb5fec62001-11-12 10:52:44 +1100591 printf("%s is not a public key file.\n", identity_file);
Damien Miller98c7ad62000-03-09 21:27:49 +1100592 exit(1);
593 }
Damien Miller95def091999-11-25 00:26:21 +1100594 exit(0);
Damien Miller10f6f6b1999-11-17 17:29:08 +1100595}
596
Damien Miller4b42d7f2005-03-01 21:48:35 +1100597static void
598print_host(FILE *f, char *name, Key *public, int hash)
599{
600 if (hash && (name = host_hash(name, NULL, 0)) == NULL)
601 fatal("hash_host failed");
602 fprintf(f, "%s ", name);
603 if (!key_write(public, f))
604 fatal("key_write failed");
605 fprintf(f, "\n");
606}
607
608static void
609do_known_hosts(struct passwd *pw, const char *name)
610{
611 FILE *in, *out = stdout;
612 Key *public;
613 char *cp, *cp2, *kp, *kp2;
614 char line[16*1024], tmp[MAXPATHLEN], old[MAXPATHLEN];
615 int c, i, skip = 0, inplace = 0, num = 0, invalid = 0, has_unhashed = 0;
616
617 if (!have_identity) {
618 cp = tilde_expand_filename(_PATH_SSH_USER_HOSTFILE, pw->pw_uid);
619 if (strlcpy(identity_file, cp, sizeof(identity_file)) >=
620 sizeof(identity_file))
621 fatal("Specified known hosts path too long");
622 xfree(cp);
623 have_identity = 1;
624 }
625 if ((in = fopen(identity_file, "r")) == NULL)
626 fatal("fopen: %s", strerror(errno));
627
628 /*
629 * Find hosts goes to stdout, hash and deletions happen in-place
630 * A corner case is ssh-keygen -HF foo, which should go to stdout
631 */
632 if (!find_host && (hash_hosts || delete_host)) {
633 if (strlcpy(tmp, identity_file, sizeof(tmp)) >= sizeof(tmp) ||
634 strlcat(tmp, ".XXXXXXXXXX", sizeof(tmp)) >= sizeof(tmp) ||
635 strlcpy(old, identity_file, sizeof(old)) >= sizeof(old) ||
636 strlcat(old, ".old", sizeof(old)) >= sizeof(old))
637 fatal("known_hosts path too long");
638 umask(077);
639 if ((c = mkstemp(tmp)) == -1)
640 fatal("mkstemp: %s", strerror(errno));
641 if ((out = fdopen(c, "w")) == NULL) {
642 c = errno;
643 unlink(tmp);
644 fatal("fdopen: %s", strerror(c));
645 }
646 inplace = 1;
647 }
648
649 while (fgets(line, sizeof(line), in)) {
650 num++;
651 i = strlen(line) - 1;
652 if (line[i] != '\n') {
653 error("line %d too long: %.40s...", num, line);
654 skip = 1;
655 invalid = 1;
656 continue;
657 }
658 if (skip) {
659 skip = 0;
660 continue;
661 }
662 line[i] = '\0';
663
664 /* Skip leading whitespace, empty and comment lines. */
665 for (cp = line; *cp == ' ' || *cp == '\t'; cp++)
666 ;
667 if (!*cp || *cp == '\n' || *cp == '#') {
668 if (inplace)
669 fprintf(out, "%s\n", cp);
670 continue;
671 }
672 /* Find the end of the host name portion. */
673 for (kp = cp; *kp && *kp != ' ' && *kp != '\t'; kp++)
674 ;
675 if (*kp == '\0' || *(kp + 1) == '\0') {
676 error("line %d missing key: %.40s...",
677 num, line);
678 invalid = 1;
679 continue;
680 }
681 *kp++ = '\0';
682 kp2 = kp;
683
684 public = key_new(KEY_RSA1);
685 if (key_read(public, &kp) != 1) {
686 kp = kp2;
687 key_free(public);
688 public = key_new(KEY_UNSPEC);
689 if (key_read(public, &kp) != 1) {
690 error("line %d invalid key: %.40s...",
691 num, line);
692 key_free(public);
693 invalid = 1;
694 continue;
695 }
696 }
697
698 if (*cp == HASH_DELIM) {
699 if (find_host || delete_host) {
700 cp2 = host_hash(name, cp, strlen(cp));
701 if (cp2 == NULL) {
702 error("line %d: invalid hashed "
703 "name: %.64s...", num, line);
704 invalid = 1;
705 continue;
706 }
707 c = (strcmp(cp2, cp) == 0);
708 if (find_host && c) {
709 printf("# Host %s found: "
710 "line %d type %s\n", name,
711 num, key_type(public));
712 print_host(out, cp, public, 0);
713 }
714 if (delete_host && !c)
715 print_host(out, cp, public, 0);
716 } else if (hash_hosts)
717 print_host(out, cp, public, 0);
718 } else {
719 if (find_host || delete_host) {
720 c = (match_hostname(name, cp,
721 strlen(cp)) == 1);
722 if (find_host && c) {
723 printf("# Host %s found: "
724 "line %d type %s\n", name,
725 num, key_type(public));
726 print_host(out, cp, public, hash_hosts);
727 }
728 if (delete_host && !c)
729 print_host(out, cp, public, 0);
730 } else if (hash_hosts) {
Darren Tucker47eede72005-03-14 23:08:12 +1100731 for (cp2 = strsep(&cp, ",");
Damien Miller4b42d7f2005-03-01 21:48:35 +1100732 cp2 != NULL && *cp2 != '\0';
Damien Miller89eac802005-03-02 12:33:04 +1100733 cp2 = strsep(&cp, ",")) {
734 if (strcspn(cp2, "*?!") != strlen(cp2))
735 fprintf(stderr, "Warning: "
736 "ignoring host name with "
737 "metacharacters: %.64s\n",
738 cp2);
739 else
740 print_host(out, cp2, public, 1);
741 }
Damien Miller4b42d7f2005-03-01 21:48:35 +1100742 has_unhashed = 1;
743 }
744 }
745 key_free(public);
746 }
747 fclose(in);
748
749 if (invalid) {
750 fprintf(stderr, "%s is not a valid known_host file.\n",
751 identity_file);
752 if (inplace) {
753 fprintf(stderr, "Not replacing existing known_hosts "
Darren Tucker9f438a92005-03-14 23:09:18 +1100754 "file because of errors\n");
Damien Miller4b42d7f2005-03-01 21:48:35 +1100755 fclose(out);
756 unlink(tmp);
757 }
758 exit(1);
759 }
760
761 if (inplace) {
762 fclose(out);
763
764 /* Backup existing file */
765 if (unlink(old) == -1 && errno != ENOENT)
766 fatal("unlink %.100s: %s", old, strerror(errno));
767 if (link(identity_file, old) == -1)
768 fatal("link %.100s to %.100s: %s", identity_file, old,
769 strerror(errno));
770 /* Move new one into place */
771 if (rename(tmp, identity_file) == -1) {
772 error("rename\"%s\" to \"%s\": %s", tmp, identity_file,
773 strerror(errno));
774 unlink(tmp);
775 unlink(old);
776 exit(1);
777 }
778
779 fprintf(stderr, "%s updated.\n", identity_file);
780 fprintf(stderr, "Original contents retained as %s\n", old);
781 if (has_unhashed) {
782 fprintf(stderr, "WARNING: %s contains unhashed "
783 "entries\n", old);
784 fprintf(stderr, "Delete this file to ensure privacy "
Damien Miller0dc1bef2005-07-17 17:22:45 +1000785 "of hostnames\n");
Damien Miller4b42d7f2005-03-01 21:48:35 +1100786 }
787 }
788
789 exit(0);
790}
791
Damien Miller95def091999-11-25 00:26:21 +1100792/*
793 * Perform changing a passphrase. The argument is the passwd structure
794 * for the current user.
795 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000796static void
Damien Miller10f6f6b1999-11-17 17:29:08 +1100797do_change_passphrase(struct passwd *pw)
798{
Damien Miller95def091999-11-25 00:26:21 +1100799 char *comment;
800 char *old_passphrase, *passphrase1, *passphrase2;
801 struct stat st;
Damien Millereba71ba2000-04-29 23:57:08 +1000802 Key *private;
Damien Miller10f6f6b1999-11-17 17:29:08 +1100803
Damien Miller95def091999-11-25 00:26:21 +1100804 if (!have_identity)
805 ask_filename(pw, "Enter file in which the key is");
Damien Miller95def091999-11-25 00:26:21 +1100806 if (stat(identity_file, &st) < 0) {
807 perror(identity_file);
808 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000809 }
Damien Miller95def091999-11-25 00:26:21 +1100810 /* Try to load the file with empty passphrase. */
Ben Lindstromd0fca422001-03-26 13:44:06 +0000811 private = key_load_private(identity_file, "", &comment);
812 if (private == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100813 if (identity_passphrase)
814 old_passphrase = xstrdup(identity_passphrase);
815 else
Ben Lindstrom949974b2001-06-25 05:20:31 +0000816 old_passphrase =
817 read_passphrase("Enter old passphrase: ",
818 RP_ALLOW_STDIN);
819 private = key_load_private(identity_file, old_passphrase,
820 &comment);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000821 memset(old_passphrase, 0, strlen(old_passphrase));
822 xfree(old_passphrase);
823 if (private == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100824 printf("Bad passphrase.\n");
825 exit(1);
826 }
Damien Miller95def091999-11-25 00:26:21 +1100827 }
828 printf("Key has comment '%s'\n", comment);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000829
Damien Miller95def091999-11-25 00:26:21 +1100830 /* Ask the new passphrase (twice). */
831 if (identity_new_passphrase) {
832 passphrase1 = xstrdup(identity_new_passphrase);
833 passphrase2 = NULL;
834 } else {
835 passphrase1 =
Ben Lindstrom949974b2001-06-25 05:20:31 +0000836 read_passphrase("Enter new passphrase (empty for no "
837 "passphrase): ", RP_ALLOW_STDIN);
838 passphrase2 = read_passphrase("Enter same passphrase again: ",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100839 RP_ALLOW_STDIN);
Damien Miller95def091999-11-25 00:26:21 +1100840
841 /* Verify that they are the same. */
842 if (strcmp(passphrase1, passphrase2) != 0) {
843 memset(passphrase1, 0, strlen(passphrase1));
844 memset(passphrase2, 0, strlen(passphrase2));
845 xfree(passphrase1);
846 xfree(passphrase2);
847 printf("Pass phrases do not match. Try again.\n");
848 exit(1);
849 }
850 /* Destroy the other copy. */
851 memset(passphrase2, 0, strlen(passphrase2));
852 xfree(passphrase2);
853 }
854
855 /* Save the file using the new passphrase. */
Ben Lindstromd0fca422001-03-26 13:44:06 +0000856 if (!key_save_private(private, identity_file, passphrase1, comment)) {
Ben Lindstrom15f33862001-04-16 02:00:02 +0000857 printf("Saving the key failed: %s.\n", identity_file);
Damien Miller95def091999-11-25 00:26:21 +1100858 memset(passphrase1, 0, strlen(passphrase1));
859 xfree(passphrase1);
Damien Millereba71ba2000-04-29 23:57:08 +1000860 key_free(private);
Damien Miller95def091999-11-25 00:26:21 +1100861 xfree(comment);
862 exit(1);
863 }
864 /* Destroy the passphrase and the copy of the key in memory. */
865 memset(passphrase1, 0, strlen(passphrase1));
866 xfree(passphrase1);
Damien Millereba71ba2000-04-29 23:57:08 +1000867 key_free(private); /* Destroys contents */
Damien Miller95def091999-11-25 00:26:21 +1100868 xfree(comment);
869
870 printf("Your identification has been saved with the new passphrase.\n");
871 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000872}
873
Damien Miller37876e92003-05-15 10:19:46 +1000874/*
875 * Print the SSHFP RR.
876 */
Damien Millercb314822006-03-26 13:48:01 +1100877static int
878do_print_resource_record(struct passwd *pw, char *fname, char *hname)
Damien Miller37876e92003-05-15 10:19:46 +1000879{
880 Key *public;
881 char *comment = NULL;
882 struct stat st;
883
Damien Millercb314822006-03-26 13:48:01 +1100884 if (fname == NULL)
Damien Miller37876e92003-05-15 10:19:46 +1000885 ask_filename(pw, "Enter file in which the key is");
Damien Millercb314822006-03-26 13:48:01 +1100886 if (stat(fname, &st) < 0) {
887 if (errno == ENOENT)
888 return 0;
889 perror(fname);
Damien Miller37876e92003-05-15 10:19:46 +1000890 exit(1);
891 }
Damien Millercb314822006-03-26 13:48:01 +1100892 public = key_load_public(fname, &comment);
Damien Miller37876e92003-05-15 10:19:46 +1000893 if (public != NULL) {
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000894 export_dns_rr(hname, public, stdout, print_generic);
Damien Miller37876e92003-05-15 10:19:46 +1000895 key_free(public);
896 xfree(comment);
Damien Millercb314822006-03-26 13:48:01 +1100897 return 1;
Damien Miller37876e92003-05-15 10:19:46 +1000898 }
899 if (comment)
900 xfree(comment);
901
Damien Millercb314822006-03-26 13:48:01 +1100902 printf("failed to read v2 public key from %s.\n", fname);
Damien Miller37876e92003-05-15 10:19:46 +1000903 exit(1);
904}
Damien Miller37876e92003-05-15 10:19:46 +1000905
Damien Miller95def091999-11-25 00:26:21 +1100906/*
907 * Change the comment of a private key file.
908 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000909static void
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000910do_change_comment(struct passwd *pw)
911{
Ben Lindstrom5fc62702001-03-09 18:19:24 +0000912 char new_comment[1024], *comment, *passphrase;
Ben Lindstromd0fca422001-03-26 13:44:06 +0000913 Key *private;
914 Key *public;
Damien Miller95def091999-11-25 00:26:21 +1100915 struct stat st;
916 FILE *f;
Ben Lindstrom5fc62702001-03-09 18:19:24 +0000917 int fd;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000918
Damien Miller95def091999-11-25 00:26:21 +1100919 if (!have_identity)
920 ask_filename(pw, "Enter file in which the key is");
Damien Miller95def091999-11-25 00:26:21 +1100921 if (stat(identity_file, &st) < 0) {
922 perror(identity_file);
923 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000924 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000925 private = key_load_private(identity_file, "", &comment);
926 if (private == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100927 if (identity_passphrase)
928 passphrase = xstrdup(identity_passphrase);
929 else if (identity_new_passphrase)
930 passphrase = xstrdup(identity_new_passphrase);
931 else
Ben Lindstrom949974b2001-06-25 05:20:31 +0000932 passphrase = read_passphrase("Enter passphrase: ",
933 RP_ALLOW_STDIN);
Damien Miller95def091999-11-25 00:26:21 +1100934 /* Try to load using the passphrase. */
Ben Lindstromd0fca422001-03-26 13:44:06 +0000935 private = key_load_private(identity_file, passphrase, &comment);
936 if (private == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100937 memset(passphrase, 0, strlen(passphrase));
938 xfree(passphrase);
939 printf("Bad passphrase.\n");
940 exit(1);
941 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000942 } else {
943 passphrase = xstrdup("");
Damien Miller95def091999-11-25 00:26:21 +1100944 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000945 if (private->type != KEY_RSA1) {
946 fprintf(stderr, "Comments are only supported for RSA1 keys.\n");
947 key_free(private);
948 exit(1);
Damien Miller9f0f5c62001-12-21 14:45:46 +1100949 }
Damien Miller95def091999-11-25 00:26:21 +1100950 printf("Key now has comment '%s'\n", comment);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000951
Damien Miller95def091999-11-25 00:26:21 +1100952 if (identity_comment) {
953 strlcpy(new_comment, identity_comment, sizeof(new_comment));
954 } else {
955 printf("Enter new comment: ");
956 fflush(stdout);
957 if (!fgets(new_comment, sizeof(new_comment), stdin)) {
958 memset(passphrase, 0, strlen(passphrase));
Damien Millereba71ba2000-04-29 23:57:08 +1000959 key_free(private);
Damien Miller95def091999-11-25 00:26:21 +1100960 exit(1);
961 }
Damien Miller95def091999-11-25 00:26:21 +1100962 if (strchr(new_comment, '\n'))
963 *strchr(new_comment, '\n') = 0;
964 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000965
Damien Miller95def091999-11-25 00:26:21 +1100966 /* Save the file using the new passphrase. */
Ben Lindstromd0fca422001-03-26 13:44:06 +0000967 if (!key_save_private(private, identity_file, passphrase, new_comment)) {
Ben Lindstrom15f33862001-04-16 02:00:02 +0000968 printf("Saving the key failed: %s.\n", identity_file);
Damien Miller95def091999-11-25 00:26:21 +1100969 memset(passphrase, 0, strlen(passphrase));
970 xfree(passphrase);
Damien Millereba71ba2000-04-29 23:57:08 +1000971 key_free(private);
Damien Miller95def091999-11-25 00:26:21 +1100972 xfree(comment);
973 exit(1);
974 }
Damien Miller95def091999-11-25 00:26:21 +1100975 memset(passphrase, 0, strlen(passphrase));
976 xfree(passphrase);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000977 public = key_from_private(private);
Damien Millereba71ba2000-04-29 23:57:08 +1000978 key_free(private);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000979
Damien Miller95def091999-11-25 00:26:21 +1100980 strlcat(identity_file, ".pub", sizeof(identity_file));
Ben Lindstrom5fc62702001-03-09 18:19:24 +0000981 fd = open(identity_file, O_WRONLY | O_CREAT | O_TRUNC, 0644);
982 if (fd == -1) {
Damien Miller95def091999-11-25 00:26:21 +1100983 printf("Could not save your public key in %s\n", identity_file);
984 exit(1);
985 }
Ben Lindstrom5fc62702001-03-09 18:19:24 +0000986 f = fdopen(fd, "w");
987 if (f == NULL) {
988 printf("fdopen %s failed", identity_file);
989 exit(1);
990 }
Damien Millereba71ba2000-04-29 23:57:08 +1000991 if (!key_write(public, f))
992 fprintf(stderr, "write key failed");
993 key_free(public);
994 fprintf(f, " %s\n", new_comment);
Damien Miller95def091999-11-25 00:26:21 +1100995 fclose(f);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000996
Damien Miller95def091999-11-25 00:26:21 +1100997 xfree(comment);
998
999 printf("The comment in your key file has been changed.\n");
1000 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001001}
1002
Ben Lindstrombba81212001-06-25 05:01:22 +00001003static void
Damien Miller431f66b1999-11-21 18:31:57 +11001004usage(void)
1005{
Ben Lindstrom97be31e2001-08-06 21:49:06 +00001006 fprintf(stderr, "Usage: %s [options]\n", __progname);
1007 fprintf(stderr, "Options:\n");
Damien Miller9278ffa2005-05-26 11:59:06 +10001008 fprintf(stderr, " -a trials Number of trials for screening DH-GEX moduli.\n");
Ben Lindstrom97be31e2001-08-06 21:49:06 +00001009 fprintf(stderr, " -B Show bubblebabble digest of key file.\n");
Damien Miller9278ffa2005-05-26 11:59:06 +10001010 fprintf(stderr, " -b bits Number of bits in the key to create.\n");
Ben Lindstrom97be31e2001-08-06 21:49:06 +00001011 fprintf(stderr, " -C comment Provide new comment.\n");
Damien Miller9278ffa2005-05-26 11:59:06 +10001012 fprintf(stderr, " -c Change comment in private and public key files.\n");
Ben Lindstrom97be31e2001-08-06 21:49:06 +00001013#ifdef SMARTCARD
1014 fprintf(stderr, " -D reader Download public key from smartcard.\n");
Damien Miller9278ffa2005-05-26 11:59:06 +10001015#endif /* SMARTCARD */
1016 fprintf(stderr, " -e Convert OpenSSH to IETF SECSH key file.\n");
1017 fprintf(stderr, " -F hostname Find hostname in known hosts file.\n");
1018 fprintf(stderr, " -f filename Filename of the key file.\n");
1019 fprintf(stderr, " -G file Generate candidates for DH-GEX moduli.\n");
1020 fprintf(stderr, " -g Use generic DNS resource record format.\n");
1021 fprintf(stderr, " -H Hash names in known_hosts file.\n");
1022 fprintf(stderr, " -i Convert IETF SECSH to OpenSSH key file.\n");
1023 fprintf(stderr, " -l Show fingerprint of key file.\n");
1024 fprintf(stderr, " -M memory Amount of memory (MB) to use for generating DH-GEX moduli.\n");
1025 fprintf(stderr, " -N phrase Provide new passphrase.\n");
1026 fprintf(stderr, " -P phrase Provide old passphrase.\n");
1027 fprintf(stderr, " -p Change passphrase of private key file.\n");
1028 fprintf(stderr, " -q Quiet.\n");
1029 fprintf(stderr, " -R hostname Remove host from known_hosts file.\n");
1030 fprintf(stderr, " -r hostname Print DNS resource record.\n");
1031 fprintf(stderr, " -S start Start point (hex) for generating DH-GEX moduli.\n");
1032 fprintf(stderr, " -T file Screen candidates for DH-GEX moduli.\n");
1033 fprintf(stderr, " -t type Specify type of key to create.\n");
1034#ifdef SMARTCARD
Ben Lindstrom97be31e2001-08-06 21:49:06 +00001035 fprintf(stderr, " -U reader Upload private key to smartcard.\n");
1036#endif /* SMARTCARD */
Damien Miller9278ffa2005-05-26 11:59:06 +10001037 fprintf(stderr, " -v Verbose.\n");
1038 fprintf(stderr, " -W gen Generator to use for generating DH-GEX moduli.\n");
1039 fprintf(stderr, " -y Read private key file and print public key.\n");
Darren Tucker019cefe2003-08-02 22:40:07 +10001040
Damien Miller95def091999-11-25 00:26:21 +11001041 exit(1);
Damien Miller431f66b1999-11-21 18:31:57 +11001042}
1043
Damien Miller95def091999-11-25 00:26:21 +11001044/*
1045 * Main program for key management.
1046 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001047int
1048main(int ac, char **av)
1049{
Damien Millera41c8b12002-01-22 23:05:08 +11001050 char dotsshdir[MAXPATHLEN], comment[1024], *passphrase1, *passphrase2;
Tim Rice2e0e38e2003-09-08 16:11:33 -07001051 char out_file[MAXPATHLEN], *reader_id = NULL;
Damien Miller4b42d7f2005-03-01 21:48:35 +11001052 char *rr_hostname = NULL;
Ben Lindstrom5fc62702001-03-09 18:19:24 +00001053 Key *private, *public;
Damien Miller95def091999-11-25 00:26:21 +11001054 struct passwd *pw;
Damien Miller95def091999-11-25 00:26:21 +11001055 struct stat st;
Damien Millerb089fb52005-05-26 12:16:18 +10001056 int opt, type, fd, download = 0;
Darren Tucker2db8ae62005-06-01 23:02:25 +10001057 u_int32_t memory = 0, generator_wanted = 0, trials = 100;
Darren Tucker019cefe2003-08-02 22:40:07 +10001058 int do_gen_candidates = 0, do_screen_candidates = 0;
Darren Tucker06930c72003-12-31 11:34:51 +11001059 int log_level = SYSLOG_LEVEL_INFO;
Darren Tucker019cefe2003-08-02 22:40:07 +10001060 BIGNUM *start = NULL;
Damien Miller95def091999-11-25 00:26:21 +11001061 FILE *f;
Damien Miller02e754f2005-05-26 12:19:39 +10001062 const char *errstr;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001063
Damien Miller95def091999-11-25 00:26:21 +11001064 extern int optind;
1065 extern char *optarg;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001066
Darren Tuckerce321d82005-10-03 18:11:24 +10001067 /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
1068 sanitise_stdfd();
1069
Damien Miller59d3d5b2003-08-22 09:34:41 +10001070 __progname = ssh_get_progname(av[0]);
Damien Millerf9b625c2000-07-09 22:42:32 +10001071
Damien Millerd3a18572000-06-07 19:55:44 +10001072 SSLeay_add_all_algorithms();
Darren Tucker019cefe2003-08-02 22:40:07 +10001073 log_init(av[0], SYSLOG_LEVEL_INFO, SYSLOG_FACILITY_USER, 1);
1074
Kevin Steves3a881912002-07-20 19:05:40 +00001075 init_rng();
1076 seed_rng();
Damien Millereba71ba2000-04-29 23:57:08 +10001077
Damien Miller5428f641999-11-25 11:54:57 +11001078 /* we need this for the home * directory. */
Damien Miller95def091999-11-25 00:26:21 +11001079 pw = getpwuid(getuid());
1080 if (!pw) {
1081 printf("You don't exist, go away!\n");
1082 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001083 }
Damien Millereba71ba2000-04-29 23:57:08 +10001084 if (gethostname(hostname, sizeof(hostname)) < 0) {
1085 perror("gethostname");
1086 exit(1);
1087 }
Damien Miller5428f641999-11-25 11:54:57 +11001088
Darren Tucker019cefe2003-08-02 22:40:07 +10001089 while ((opt = getopt(ac, av,
Damien Miller4b42d7f2005-03-01 21:48:35 +11001090 "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 +11001091 switch (opt) {
1092 case 'b':
Damien Miller5f340062006-03-26 14:27:57 +11001093 bits = (u_int32_t)strtonum(optarg, 768, 32768, &errstr);
Damien Miller02e754f2005-05-26 12:19:39 +10001094 if (errstr)
1095 fatal("Bits has bad value %s (%s)",
1096 optarg, errstr);
Damien Miller95def091999-11-25 00:26:21 +11001097 break;
Damien Miller4b42d7f2005-03-01 21:48:35 +11001098 case 'F':
1099 find_host = 1;
1100 rr_hostname = optarg;
1101 break;
1102 case 'H':
1103 hash_hosts = 1;
1104 break;
1105 case 'R':
1106 delete_host = 1;
1107 rr_hostname = optarg;
1108 break;
Damien Miller95def091999-11-25 00:26:21 +11001109 case 'l':
1110 print_fingerprint = 1;
1111 break;
Ben Lindstrom8fd372b2001-03-12 03:02:17 +00001112 case 'B':
1113 print_bubblebabble = 1;
1114 break;
Damien Miller95def091999-11-25 00:26:21 +11001115 case 'p':
1116 change_passphrase = 1;
1117 break;
Damien Miller95def091999-11-25 00:26:21 +11001118 case 'c':
1119 change_comment = 1;
1120 break;
Damien Miller95def091999-11-25 00:26:21 +11001121 case 'f':
Damien Millerb089fb52005-05-26 12:16:18 +10001122 if (strlcpy(identity_file, optarg, sizeof(identity_file)) >=
1123 sizeof(identity_file))
1124 fatal("Identity filename too long");
Damien Miller95def091999-11-25 00:26:21 +11001125 have_identity = 1;
1126 break;
Damien Miller37876e92003-05-15 10:19:46 +10001127 case 'g':
1128 print_generic = 1;
1129 break;
Damien Miller95def091999-11-25 00:26:21 +11001130 case 'P':
1131 identity_passphrase = optarg;
1132 break;
Damien Miller95def091999-11-25 00:26:21 +11001133 case 'N':
1134 identity_new_passphrase = optarg;
1135 break;
Damien Miller95def091999-11-25 00:26:21 +11001136 case 'C':
1137 identity_comment = optarg;
1138 break;
Damien Miller95def091999-11-25 00:26:21 +11001139 case 'q':
1140 quiet = 1;
1141 break;
Ben Lindstrom5a707822001-04-22 17:15:46 +00001142 case 'e':
Damien Millereba71ba2000-04-29 23:57:08 +10001143 case 'x':
Ben Lindstrom5a707822001-04-22 17:15:46 +00001144 /* export key */
Damien Millereba71ba2000-04-29 23:57:08 +10001145 convert_to_ssh2 = 1;
1146 break;
Ben Lindstrom5a707822001-04-22 17:15:46 +00001147 case 'i':
Damien Millereba71ba2000-04-29 23:57:08 +10001148 case 'X':
Ben Lindstrom5a707822001-04-22 17:15:46 +00001149 /* import key */
Damien Millereba71ba2000-04-29 23:57:08 +10001150 convert_from_ssh2 = 1;
1151 break;
Damien Millereba71ba2000-04-29 23:57:08 +10001152 case 'y':
1153 print_public = 1;
1154 break;
Damien Millereba71ba2000-04-29 23:57:08 +10001155 case 'd':
Damien Miller0bc1bd82000-11-13 22:57:25 +11001156 key_type_name = "dsa";
Damien Millereba71ba2000-04-29 23:57:08 +10001157 break;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001158 case 't':
1159 key_type_name = optarg;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001160 break;
Ben Lindstrom8282d6a2001-08-06 21:44:05 +00001161 case 'D':
1162 download = 1;
Damien Miller90967402006-03-26 14:07:26 +11001163 /*FALLTHROUGH*/
Ben Lindstromf19578c2001-08-06 21:46:54 +00001164 case 'U':
Ben Lindstrom8282d6a2001-08-06 21:44:05 +00001165 reader_id = optarg;
Ben Lindstromcd392282001-07-04 03:44:03 +00001166 break;
Darren Tucker06930c72003-12-31 11:34:51 +11001167 case 'v':
1168 if (log_level == SYSLOG_LEVEL_INFO)
1169 log_level = SYSLOG_LEVEL_DEBUG1;
1170 else {
Darren Tuckerfc959702004-07-17 16:12:08 +10001171 if (log_level >= SYSLOG_LEVEL_DEBUG1 &&
Darren Tucker06930c72003-12-31 11:34:51 +11001172 log_level < SYSLOG_LEVEL_DEBUG3)
1173 log_level++;
1174 }
1175 break;
Damien Miller37876e92003-05-15 10:19:46 +10001176 case 'r':
Damien Miller4b42d7f2005-03-01 21:48:35 +11001177 rr_hostname = optarg;
Damien Miller37876e92003-05-15 10:19:46 +10001178 break;
Darren Tucker019cefe2003-08-02 22:40:07 +10001179 case 'W':
Damien Miller5f340062006-03-26 14:27:57 +11001180 generator_wanted = (u_int32_t)strtonum(optarg, 1,
1181 UINT_MAX, &errstr);
Damien Millerb089fb52005-05-26 12:16:18 +10001182 if (errstr)
1183 fatal("Desired generator has bad value: %s (%s)",
1184 optarg, errstr);
Darren Tucker019cefe2003-08-02 22:40:07 +10001185 break;
1186 case 'a':
Damien Miller5f340062006-03-26 14:27:57 +11001187 trials = (u_int32_t)strtonum(optarg, 1, UINT_MAX, &errstr);
Damien Millerb089fb52005-05-26 12:16:18 +10001188 if (errstr)
1189 fatal("Invalid number of trials: %s (%s)",
1190 optarg, errstr);
Darren Tucker019cefe2003-08-02 22:40:07 +10001191 break;
1192 case 'M':
Damien Miller5f340062006-03-26 14:27:57 +11001193 memory = (u_int32_t)strtonum(optarg, 1, UINT_MAX, &errstr);
Damien Millerb089fb52005-05-26 12:16:18 +10001194 if (errstr) {
1195 fatal("Memory limit is %s: %s", errstr, optarg);
1196 }
Darren Tucker019cefe2003-08-02 22:40:07 +10001197 break;
1198 case 'G':
1199 do_gen_candidates = 1;
Damien Millerb089fb52005-05-26 12:16:18 +10001200 if (strlcpy(out_file, optarg, sizeof(out_file)) >=
1201 sizeof(out_file))
1202 fatal("Output filename too long");
Darren Tucker019cefe2003-08-02 22:40:07 +10001203 break;
1204 case 'T':
1205 do_screen_candidates = 1;
Damien Millerb089fb52005-05-26 12:16:18 +10001206 if (strlcpy(out_file, optarg, sizeof(out_file)) >=
1207 sizeof(out_file))
1208 fatal("Output filename too long");
Darren Tucker019cefe2003-08-02 22:40:07 +10001209 break;
1210 case 'S':
1211 /* XXX - also compare length against bits */
1212 if (BN_hex2bn(&start, optarg) == 0)
1213 fatal("Invalid start point.");
1214 break;
Damien Miller95def091999-11-25 00:26:21 +11001215 case '?':
1216 default:
1217 usage();
1218 }
1219 }
Darren Tucker06930c72003-12-31 11:34:51 +11001220
1221 /* reinit */
1222 log_init(av[0], log_level, SYSLOG_FACILITY_USER, 1);
1223
Damien Miller95def091999-11-25 00:26:21 +11001224 if (optind < ac) {
1225 printf("Too many arguments.\n");
1226 usage();
1227 }
1228 if (change_passphrase && change_comment) {
1229 printf("Can only have one of -p and -c.\n");
1230 usage();
1231 }
Damien Miller4b42d7f2005-03-01 21:48:35 +11001232 if (delete_host || hash_hosts || find_host)
1233 do_known_hosts(pw, rr_hostname);
Ben Lindstrom8fd372b2001-03-12 03:02:17 +00001234 if (print_fingerprint || print_bubblebabble)
Damien Miller95def091999-11-25 00:26:21 +11001235 do_fingerprint(pw);
Damien Miller95def091999-11-25 00:26:21 +11001236 if (change_passphrase)
1237 do_change_passphrase(pw);
Damien Miller4a10d2e2002-03-11 22:53:29 +11001238 if (change_comment)
1239 do_change_comment(pw);
Kevin Steves3a881912002-07-20 19:05:40 +00001240 if (convert_to_ssh2)
1241 do_convert_to_ssh2(pw);
1242 if (convert_from_ssh2)
1243 do_convert_from_ssh2(pw);
Damien Millereba71ba2000-04-29 23:57:08 +10001244 if (print_public)
1245 do_print_public(pw);
Damien Miller4b42d7f2005-03-01 21:48:35 +11001246 if (rr_hostname != NULL) {
Damien Millercb314822006-03-26 13:48:01 +11001247 unsigned int n = 0;
1248
1249 if (have_identity) {
1250 n = do_print_resource_record(pw,
1251 identity_file, rr_hostname);
1252 if (n == 0) {
1253 perror(identity_file);
1254 exit(1);
1255 }
1256 exit(0);
1257 } else {
1258
1259 n += do_print_resource_record(pw,
1260 _PATH_HOST_RSA_KEY_FILE, rr_hostname);
1261 n += do_print_resource_record(pw,
1262 _PATH_HOST_DSA_KEY_FILE, rr_hostname);
1263
1264 if (n == 0)
1265 fatal("no keys found.");
1266 exit(0);
1267 }
Damien Miller37876e92003-05-15 10:19:46 +10001268 }
Ben Lindstrom8282d6a2001-08-06 21:44:05 +00001269 if (reader_id != NULL) {
Ben Lindstrom6818bfb2001-08-06 21:40:04 +00001270#ifdef SMARTCARD
Ben Lindstrom8282d6a2001-08-06 21:44:05 +00001271 if (download)
1272 do_download(pw, reader_id);
1273 else
1274 do_upload(pw, reader_id);
Ben Lindstromffce1472001-08-06 21:57:31 +00001275#else /* SMARTCARD */
Ben Lindstrom6818bfb2001-08-06 21:40:04 +00001276 fatal("no support for smartcards.");
Ben Lindstromffce1472001-08-06 21:57:31 +00001277#endif /* SMARTCARD */
Ben Lindstrom8282d6a2001-08-06 21:44:05 +00001278 }
Damien Miller95def091999-11-25 00:26:21 +11001279
Darren Tucker019cefe2003-08-02 22:40:07 +10001280 if (do_gen_candidates) {
1281 FILE *out = fopen(out_file, "w");
Damien Miller787b2ec2003-11-21 23:56:47 +11001282
Darren Tucker019cefe2003-08-02 22:40:07 +10001283 if (out == NULL) {
1284 error("Couldn't open modulus candidate file \"%s\": %s",
1285 out_file, strerror(errno));
1286 return (1);
1287 }
Damien Miller3f54a9f2005-11-05 14:52:18 +11001288 if (bits == 0)
1289 bits = DEFAULT_BITS;
Darren Tucker019cefe2003-08-02 22:40:07 +10001290 if (gen_candidates(out, memory, bits, start) != 0)
Damien Miller15d72a02005-11-05 15:07:33 +11001291 fatal("modulus candidate generation failed");
Darren Tucker019cefe2003-08-02 22:40:07 +10001292
1293 return (0);
1294 }
1295
1296 if (do_screen_candidates) {
1297 FILE *in;
1298 FILE *out = fopen(out_file, "w");
1299
1300 if (have_identity && strcmp(identity_file, "-") != 0) {
1301 if ((in = fopen(identity_file, "r")) == NULL) {
1302 fatal("Couldn't open modulus candidate "
Damien Millera8e06ce2003-11-21 23:48:55 +11001303 "file \"%s\": %s", identity_file,
Darren Tucker019cefe2003-08-02 22:40:07 +10001304 strerror(errno));
1305 }
1306 } else
1307 in = stdin;
1308
1309 if (out == NULL) {
1310 fatal("Couldn't open moduli file \"%s\": %s",
1311 out_file, strerror(errno));
1312 }
1313 if (prime_test(in, out, trials, generator_wanted) != 0)
Damien Miller15d72a02005-11-05 15:07:33 +11001314 fatal("modulus screening failed");
Darren Tuckerf4220e62003-08-21 16:44:07 +10001315 return (0);
Darren Tucker019cefe2003-08-02 22:40:07 +10001316 }
1317
Damien Miller95def091999-11-25 00:26:21 +11001318 arc4random_stir();
1319
Damien Millerf14be5c2005-11-05 15:15:49 +11001320 if (key_type_name == NULL)
1321 key_type_name = "rsa";
1322
Damien Millere39cacc2000-11-29 12:18:44 +11001323 type = key_type_from_name(key_type_name);
1324 if (type == KEY_UNSPEC) {
1325 fprintf(stderr, "unknown key type %s\n", key_type_name);
1326 exit(1);
Damien Millereba71ba2000-04-29 23:57:08 +10001327 }
Damien Miller3f54a9f2005-11-05 14:52:18 +11001328 if (bits == 0)
1329 bits = (type == KEY_DSA) ? DEFAULT_BITS_DSA : DEFAULT_BITS;
Tim Rice660c3402005-11-28 17:45:32 -08001330 if (type == KEY_DSA && bits != 1024)
1331 fatal("DSA keys must be 1024 bits");
Darren Tucker3af2ac52005-11-29 13:10:24 +11001332 if (!quiet)
1333 printf("Generating public/private %s key pair.\n", key_type_name);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001334 private = key_generate(type, bits);
1335 if (private == NULL) {
1336 fprintf(stderr, "key_generate failed");
1337 exit(1);
1338 }
1339 public = key_from_private(private);
Damien Miller95def091999-11-25 00:26:21 +11001340
1341 if (!have_identity)
1342 ask_filename(pw, "Enter file in which to save the key");
1343
Damien Miller788f2122005-11-05 15:14:59 +11001344 /* Create ~/.ssh directory if it doesn't already exist. */
Ben Lindstrom226cfa02001-01-22 05:34:40 +00001345 snprintf(dotsshdir, sizeof dotsshdir, "%s/%s", pw->pw_dir, _PATH_SSH_USER_DIR);
Damien Miller95def091999-11-25 00:26:21 +11001346 if (strstr(identity_file, dotsshdir) != NULL &&
1347 stat(dotsshdir, &st) < 0) {
Damien Millerbe484b52000-07-15 14:14:16 +10001348 if (mkdir(dotsshdir, 0700) < 0)
Damien Miller95def091999-11-25 00:26:21 +11001349 error("Could not create directory '%s'.", dotsshdir);
1350 else if (!quiet)
1351 printf("Created directory '%s'.\n", dotsshdir);
1352 }
1353 /* If the file already exists, ask the user to confirm. */
1354 if (stat(identity_file, &st) >= 0) {
1355 char yesno[3];
1356 printf("%s already exists.\n", identity_file);
1357 printf("Overwrite (y/n)? ");
1358 fflush(stdout);
1359 if (fgets(yesno, sizeof(yesno), stdin) == NULL)
1360 exit(1);
1361 if (yesno[0] != 'y' && yesno[0] != 'Y')
1362 exit(1);
1363 }
1364 /* Ask for a passphrase (twice). */
1365 if (identity_passphrase)
1366 passphrase1 = xstrdup(identity_passphrase);
1367 else if (identity_new_passphrase)
1368 passphrase1 = xstrdup(identity_new_passphrase);
1369 else {
1370passphrase_again:
1371 passphrase1 =
Ben Lindstrom949974b2001-06-25 05:20:31 +00001372 read_passphrase("Enter passphrase (empty for no "
1373 "passphrase): ", RP_ALLOW_STDIN);
1374 passphrase2 = read_passphrase("Enter same passphrase again: ",
1375 RP_ALLOW_STDIN);
Damien Miller95def091999-11-25 00:26:21 +11001376 if (strcmp(passphrase1, passphrase2) != 0) {
Ben Lindstrom949974b2001-06-25 05:20:31 +00001377 /*
1378 * The passphrases do not match. Clear them and
1379 * retry.
1380 */
Damien Miller95def091999-11-25 00:26:21 +11001381 memset(passphrase1, 0, strlen(passphrase1));
1382 memset(passphrase2, 0, strlen(passphrase2));
1383 xfree(passphrase1);
1384 xfree(passphrase2);
1385 printf("Passphrases do not match. Try again.\n");
1386 goto passphrase_again;
1387 }
1388 /* Clear the other copy of the passphrase. */
1389 memset(passphrase2, 0, strlen(passphrase2));
1390 xfree(passphrase2);
1391 }
1392
Damien Miller95def091999-11-25 00:26:21 +11001393 if (identity_comment) {
1394 strlcpy(comment, identity_comment, sizeof(comment));
1395 } else {
Damien Miller4af51302000-04-16 11:18:38 +10001396 /* Create default commend field for the passphrase. */
Damien Miller95def091999-11-25 00:26:21 +11001397 snprintf(comment, sizeof comment, "%s@%s", pw->pw_name, hostname);
1398 }
1399
1400 /* Save the key with the given passphrase and comment. */
Ben Lindstromd0fca422001-03-26 13:44:06 +00001401 if (!key_save_private(private, identity_file, passphrase1, comment)) {
Ben Lindstrom15f33862001-04-16 02:00:02 +00001402 printf("Saving the key failed: %s.\n", identity_file);
Damien Miller95def091999-11-25 00:26:21 +11001403 memset(passphrase1, 0, strlen(passphrase1));
1404 xfree(passphrase1);
1405 exit(1);
1406 }
1407 /* Clear the passphrase. */
1408 memset(passphrase1, 0, strlen(passphrase1));
1409 xfree(passphrase1);
1410
1411 /* Clear the private key and the random number generator. */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001412 key_free(private);
Damien Miller95def091999-11-25 00:26:21 +11001413 arc4random_stir();
1414
1415 if (!quiet)
1416 printf("Your identification has been saved in %s.\n", identity_file);
1417
Damien Miller95def091999-11-25 00:26:21 +11001418 strlcat(identity_file, ".pub", sizeof(identity_file));
Ben Lindstrom5fc62702001-03-09 18:19:24 +00001419 fd = open(identity_file, O_WRONLY | O_CREAT | O_TRUNC, 0644);
1420 if (fd == -1) {
Damien Miller95def091999-11-25 00:26:21 +11001421 printf("Could not save your public key in %s\n", identity_file);
1422 exit(1);
1423 }
Ben Lindstrom5fc62702001-03-09 18:19:24 +00001424 f = fdopen(fd, "w");
1425 if (f == NULL) {
1426 printf("fdopen %s failed", identity_file);
1427 exit(1);
1428 }
Damien Millereba71ba2000-04-29 23:57:08 +10001429 if (!key_write(public, f))
1430 fprintf(stderr, "write key failed");
1431 fprintf(f, " %s\n", comment);
Damien Miller95def091999-11-25 00:26:21 +11001432 fclose(f);
1433
1434 if (!quiet) {
Ben Lindstromcfccef92001-03-13 04:57:58 +00001435 char *fp = key_fingerprint(public, SSH_FP_MD5, SSH_FP_HEX);
Damien Millereba71ba2000-04-29 23:57:08 +10001436 printf("Your public key has been saved in %s.\n",
1437 identity_file);
Damien Miller95def091999-11-25 00:26:21 +11001438 printf("The key fingerprint is:\n");
Ben Lindstromcfccef92001-03-13 04:57:58 +00001439 printf("%s %s\n", fp, comment);
1440 xfree(fp);
Damien Miller95def091999-11-25 00:26:21 +11001441 }
Damien Millereba71ba2000-04-29 23:57:08 +10001442
1443 key_free(public);
Damien Miller95def091999-11-25 00:26:21 +11001444 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001445}