blob: 8b48fbda01205d6e79021cd11dbc133e360ae325 [file] [log] [blame]
Damien Miller8dbffe72006-08-05 11:02:17 +10001/* $OpenBSD: ssh-keygen.c,v 1.151 2006/07/26 02:35:17 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 Miller8dbffe72006-08-05 11:02:17 +100020#include <sys/param.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100021
Damien Millereba71ba2000-04-29 23:57:08 +100022#include <openssl/evp.h>
23#include <openssl/pem.h>
Damien Millereba71ba2000-04-29 23:57:08 +100024
Darren Tucker39972492006-07-12 22:22:46 +100025#include <errno.h>
Damien Miller57cf6382006-07-10 21:13:46 +100026#include <fcntl.h>
Damien Millerb8fe89c2006-07-24 14:51:00 +100027#include <netdb.h>
Darren Tucker2ee50c52006-07-11 18:55:05 +100028#ifdef HAVE_PATHS_H
29# include <paths.h>
30#endif
Damien Miller9f2abc42006-07-10 20:53:08 +100031#include <pwd.h>
Damien Millere3476ed2006-07-24 14:13:33 +100032#include <string.h>
Damien Millere6b3b612006-07-24 14:01:23 +100033#include <unistd.h>
Damien Miller9f2abc42006-07-10 20:53:08 +100034
Damien Millerd4a8b7e1999-10-27 13:42:43 +100035#include "xmalloc.h"
Damien Millereba71ba2000-04-29 23:57:08 +100036#include "key.h"
Ben Lindstromd09fcf52001-03-29 00:29:54 +000037#include "rsa.h"
Damien Millereba71ba2000-04-29 23:57:08 +100038#include "authfile.h"
39#include "uuencode.h"
Damien Miller874d77b2000-10-14 16:23:11 +110040#include "buffer.h"
41#include "bufaux.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000042#include "pathnames.h"
43#include "log.h"
Darren Tuckere608ca22004-05-13 16:15:47 +100044#include "misc.h"
Damien Miller4b42d7f2005-03-01 21:48:35 +110045#include "match.h"
46#include "hostfile.h"
Damien Miller69996102006-07-10 20:53:31 +100047#include "dns.h"
Damien Miller874d77b2000-10-14 16:23:11 +110048
Ben Lindstrom8282d6a2001-08-06 21:44:05 +000049#ifdef SMARTCARD
Ben Lindstrom8282d6a2001-08-06 21:44:05 +000050#include "scard.h"
Ben Lindstrombcc18082001-08-06 21:59:25 +000051#endif
Ben Lindstromcd392282001-07-04 03:44:03 +000052
Damien Miller3f54a9f2005-11-05 14:52:18 +110053/* Number of bits in the RSA/DSA key. This value can be set on the command line. */
54#define DEFAULT_BITS 2048
55#define DEFAULT_BITS_DSA 1024
56u_int32_t bits = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100057
Damien Miller5428f641999-11-25 11:54:57 +110058/*
59 * Flag indicating that we just want to change the passphrase. This can be
60 * set on the command line.
61 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100062int change_passphrase = 0;
63
Damien Miller5428f641999-11-25 11:54:57 +110064/*
65 * Flag indicating that we just want to change the comment. This can be set
66 * on the command line.
67 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100068int change_comment = 0;
69
70int quiet = 0;
71
Damien Miller4b42d7f2005-03-01 21:48:35 +110072/* Flag indicating that we want to hash a known_hosts file */
73int hash_hosts = 0;
74/* Flag indicating that we want lookup a host in known_hosts file */
75int find_host = 0;
76/* Flag indicating that we want to delete a host from a known_hosts file */
77int delete_host = 0;
78
Damien Miller10f6f6b1999-11-17 17:29:08 +110079/* Flag indicating that we just want to see the key fingerprint */
80int print_fingerprint = 0;
Ben Lindstrom8fd372b2001-03-12 03:02:17 +000081int print_bubblebabble = 0;
Damien Miller10f6f6b1999-11-17 17:29:08 +110082
Damien Miller431f66b1999-11-21 18:31:57 +110083/* The identity file name, given on the command line or entered by the user. */
84char identity_file[1024];
85int have_identity = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100086
87/* This is set to the passphrase if given on the command line. */
88char *identity_passphrase = NULL;
89
90/* This is set to the new passphrase if given on the command line. */
91char *identity_new_passphrase = NULL;
92
93/* This is set to the new comment if given on the command line. */
94char *identity_comment = NULL;
95
Damien Millereba71ba2000-04-29 23:57:08 +100096/* Dump public key file in format used by real and the original SSH 2 */
97int convert_to_ssh2 = 0;
98int convert_from_ssh2 = 0;
99int print_public = 0;
Damien Miller37876e92003-05-15 10:19:46 +1000100int print_generic = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100101
Damien Millera41c8b12002-01-22 23:05:08 +1100102char *key_type_name = NULL;
Damien Millereba71ba2000-04-29 23:57:08 +1000103
Damien Miller431f66b1999-11-21 18:31:57 +1100104/* argv0 */
105extern char *__progname;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000106
Damien Millereba71ba2000-04-29 23:57:08 +1000107char hostname[MAXHOSTNAMELEN];
108
Darren Tucker770fc012004-05-13 16:24:32 +1000109/* moduli.c */
Damien Millerb089fb52005-05-26 12:16:18 +1000110int gen_candidates(FILE *, u_int32_t, u_int32_t, BIGNUM *);
Darren Tucker770fc012004-05-13 16:24:32 +1000111int prime_test(FILE *, FILE *, u_int32_t, u_int32_t);
112
Ben Lindstrombba81212001-06-25 05:01:22 +0000113static void
Damien Miller431f66b1999-11-21 18:31:57 +1100114ask_filename(struct passwd *pw, const char *prompt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000115{
Damien Miller95def091999-11-25 00:26:21 +1100116 char buf[1024];
Damien Millere39cacc2000-11-29 12:18:44 +1100117 char *name = NULL;
118
Damien Miller993dd552002-02-19 15:22:47 +1100119 if (key_type_name == NULL)
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000120 name = _PATH_SSH_CLIENT_ID_RSA;
Damien Miller90967402006-03-26 14:07:26 +1100121 else {
Damien Miller993dd552002-02-19 15:22:47 +1100122 switch (key_type_from_name(key_type_name)) {
123 case KEY_RSA1:
124 name = _PATH_SSH_CLIENT_IDENTITY;
125 break;
126 case KEY_DSA:
127 name = _PATH_SSH_CLIENT_ID_DSA;
128 break;
129 case KEY_RSA:
130 name = _PATH_SSH_CLIENT_ID_RSA;
131 break;
132 default:
133 fprintf(stderr, "bad key type");
134 exit(1);
135 break;
136 }
Damien Miller90967402006-03-26 14:07:26 +1100137 }
Damien Millere39cacc2000-11-29 12:18:44 +1100138 snprintf(identity_file, sizeof(identity_file), "%s/%s", pw->pw_dir, name);
Ben Lindstrom3deda8b2000-12-22 20:27:43 +0000139 fprintf(stderr, "%s (%s): ", prompt, identity_file);
Damien Miller95def091999-11-25 00:26:21 +1100140 if (fgets(buf, sizeof(buf), stdin) == NULL)
141 exit(1);
142 if (strchr(buf, '\n'))
143 *strchr(buf, '\n') = 0;
144 if (strcmp(buf, "") != 0)
145 strlcpy(identity_file, buf, sizeof(identity_file));
146 have_identity = 1;
Damien Miller10f6f6b1999-11-17 17:29:08 +1100147}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000148
Ben Lindstrombba81212001-06-25 05:01:22 +0000149static Key *
Ben Lindstromd78ae762001-06-05 20:35:09 +0000150load_identity(char *filename)
Damien Millereba71ba2000-04-29 23:57:08 +1000151{
Ben Lindstromd0fca422001-03-26 13:44:06 +0000152 char *pass;
153 Key *prv;
154
Ben Lindstroma3700052001-04-05 23:26:32 +0000155 prv = key_load_private(filename, "", NULL);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000156 if (prv == NULL) {
Ben Lindstromd78ae762001-06-05 20:35:09 +0000157 if (identity_passphrase)
158 pass = xstrdup(identity_passphrase);
159 else
Ben Lindstrom949974b2001-06-25 05:20:31 +0000160 pass = read_passphrase("Enter passphrase: ",
161 RP_ALLOW_STDIN);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000162 prv = key_load_private(filename, pass, NULL);
Damien Millereba71ba2000-04-29 23:57:08 +1000163 memset(pass, 0, strlen(pass));
164 xfree(pass);
165 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000166 return prv;
Damien Millereba71ba2000-04-29 23:57:08 +1000167}
168
Damien Miller874d77b2000-10-14 16:23:11 +1100169#define SSH_COM_PUBLIC_BEGIN "---- BEGIN SSH2 PUBLIC KEY ----"
Ben Lindstromcb72e4f2002-06-21 00:41:51 +0000170#define SSH_COM_PUBLIC_END "---- END SSH2 PUBLIC KEY ----"
Damien Miller874d77b2000-10-14 16:23:11 +1100171#define SSH_COM_PRIVATE_BEGIN "---- BEGIN SSH2 ENCRYPTED PRIVATE KEY ----"
Kevin Stevesef4eea92001-02-05 12:42:17 +0000172#define SSH_COM_PRIVATE_KEY_MAGIC 0x3f6ff9eb
Damien Millereba71ba2000-04-29 23:57:08 +1000173
Ben Lindstrombba81212001-06-25 05:01:22 +0000174static void
Damien Millereba71ba2000-04-29 23:57:08 +1000175do_convert_to_ssh2(struct passwd *pw)
176{
Ben Lindstrom46c264f2001-04-24 16:56:58 +0000177 Key *k;
Ben Lindstromc58ab022002-02-26 18:15:09 +0000178 u_int len;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000179 u_char *blob;
Damien Millereba71ba2000-04-29 23:57:08 +1000180 struct stat st;
181
182 if (!have_identity)
183 ask_filename(pw, "Enter file in which the key is");
184 if (stat(identity_file, &st) < 0) {
185 perror(identity_file);
186 exit(1);
187 }
Ben Lindstrom46c264f2001-04-24 16:56:58 +0000188 if ((k = key_load_public(identity_file, NULL)) == NULL) {
Ben Lindstromd78ae762001-06-05 20:35:09 +0000189 if ((k = load_identity(identity_file)) == NULL) {
Ben Lindstrom46c264f2001-04-24 16:56:58 +0000190 fprintf(stderr, "load failed\n");
191 exit(1);
192 }
Damien Millereba71ba2000-04-29 23:57:08 +1000193 }
Damien Millerdb274722003-05-14 13:45:22 +1000194 if (k->type == KEY_RSA1) {
195 fprintf(stderr, "version 1 keys are not supported\n");
196 exit(1);
197 }
Ben Lindstrom99a30f12001-09-18 05:49:14 +0000198 if (key_to_blob(k, &blob, &len) <= 0) {
199 fprintf(stderr, "key_to_blob failed\n");
200 exit(1);
201 }
Damien Miller874d77b2000-10-14 16:23:11 +1100202 fprintf(stdout, "%s\n", SSH_COM_PUBLIC_BEGIN);
Damien Millereba71ba2000-04-29 23:57:08 +1000203 fprintf(stdout,
Ben Lindstrom58d3b722002-06-23 21:28:13 +0000204 "Comment: \"%u-bit %s, converted from OpenSSH by %s@%s\"\n",
Ben Lindstrom46c264f2001-04-24 16:56:58 +0000205 key_size(k), key_type(k),
Damien Millereba71ba2000-04-29 23:57:08 +1000206 pw->pw_name, hostname);
207 dump_base64(stdout, blob, len);
Damien Miller874d77b2000-10-14 16:23:11 +1100208 fprintf(stdout, "%s\n", SSH_COM_PUBLIC_END);
Ben Lindstrom46c264f2001-04-24 16:56:58 +0000209 key_free(k);
Damien Millereba71ba2000-04-29 23:57:08 +1000210 xfree(blob);
211 exit(0);
212}
213
Ben Lindstrombba81212001-06-25 05:01:22 +0000214static void
Damien Miller874d77b2000-10-14 16:23:11 +1100215buffer_get_bignum_bits(Buffer *b, BIGNUM *value)
216{
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000217 u_int bignum_bits = buffer_get_int(b);
218 u_int bytes = (bignum_bits + 7) / 8;
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000219
Damien Miller874d77b2000-10-14 16:23:11 +1100220 if (buffer_len(b) < bytes)
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000221 fatal("buffer_get_bignum_bits: input buffer too small: "
222 "need %d have %d", bytes, buffer_len(b));
Damien Miller708d21c2002-01-22 23:18:15 +1100223 BN_bin2bn(buffer_ptr(b), bytes, value);
Damien Miller874d77b2000-10-14 16:23:11 +1100224 buffer_consume(b, bytes);
225}
226
Ben Lindstrombba81212001-06-25 05:01:22 +0000227static Key *
Ben Lindstrom90fd8142002-02-26 18:09:42 +0000228do_convert_private_ssh2_from_blob(u_char *blob, u_int blen)
Damien Miller874d77b2000-10-14 16:23:11 +1100229{
230 Buffer b;
Damien Miller874d77b2000-10-14 16:23:11 +1100231 Key *key = NULL;
Damien Miller874d77b2000-10-14 16:23:11 +1100232 char *type, *cipher;
Ben Lindstrom511d69e2001-07-04 05:05:27 +0000233 u_char *sig, data[] = "abcde12345";
Ben Lindstrome586c4c2001-06-25 05:04:58 +0000234 int magic, rlen, ktype, i1, i2, i3, i4;
235 u_int slen;
236 u_long e;
Damien Miller874d77b2000-10-14 16:23:11 +1100237
238 buffer_init(&b);
239 buffer_append(&b, blob, blen);
240
241 magic = buffer_get_int(&b);
242 if (magic != SSH_COM_PRIVATE_KEY_MAGIC) {
243 error("bad magic 0x%x != 0x%x", magic, SSH_COM_PRIVATE_KEY_MAGIC);
244 buffer_free(&b);
245 return NULL;
246 }
Ben Lindstrom34f91882001-06-25 04:47:54 +0000247 i1 = buffer_get_int(&b);
Damien Miller874d77b2000-10-14 16:23:11 +1100248 type = buffer_get_string(&b, NULL);
249 cipher = buffer_get_string(&b, NULL);
Ben Lindstrom34f91882001-06-25 04:47:54 +0000250 i2 = buffer_get_int(&b);
251 i3 = buffer_get_int(&b);
252 i4 = buffer_get_int(&b);
253 debug("ignore (%d %d %d %d)", i1,i2,i3,i4);
Damien Miller874d77b2000-10-14 16:23:11 +1100254 if (strcmp(cipher, "none") != 0) {
255 error("unsupported cipher %s", cipher);
256 xfree(cipher);
257 buffer_free(&b);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000258 xfree(type);
Damien Miller874d77b2000-10-14 16:23:11 +1100259 return NULL;
260 }
261 xfree(cipher);
262
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000263 if (strstr(type, "dsa")) {
264 ktype = KEY_DSA;
265 } else if (strstr(type, "rsa")) {
266 ktype = KEY_RSA;
267 } else {
Darren Tucker7cfeecf2005-01-20 10:56:31 +1100268 buffer_free(&b);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000269 xfree(type);
Damien Miller874d77b2000-10-14 16:23:11 +1100270 return NULL;
271 }
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000272 key = key_new_private(ktype);
273 xfree(type);
274
275 switch (key->type) {
276 case KEY_DSA:
277 buffer_get_bignum_bits(&b, key->dsa->p);
278 buffer_get_bignum_bits(&b, key->dsa->g);
279 buffer_get_bignum_bits(&b, key->dsa->q);
280 buffer_get_bignum_bits(&b, key->dsa->pub_key);
281 buffer_get_bignum_bits(&b, key->dsa->priv_key);
282 break;
283 case KEY_RSA:
Ben Lindstrom34f91882001-06-25 04:47:54 +0000284 e = buffer_get_char(&b);
285 debug("e %lx", e);
286 if (e < 30) {
287 e <<= 8;
288 e += buffer_get_char(&b);
289 debug("e %lx", e);
290 e <<= 8;
291 e += buffer_get_char(&b);
292 debug("e %lx", e);
293 }
294 if (!BN_set_word(key->rsa->e, e)) {
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000295 buffer_free(&b);
296 key_free(key);
297 return NULL;
298 }
299 buffer_get_bignum_bits(&b, key->rsa->d);
300 buffer_get_bignum_bits(&b, key->rsa->n);
301 buffer_get_bignum_bits(&b, key->rsa->iqmp);
302 buffer_get_bignum_bits(&b, key->rsa->q);
303 buffer_get_bignum_bits(&b, key->rsa->p);
Ben Lindstromf7297dd2001-07-04 05:02:23 +0000304 rsa_generate_additional_parameters(key->rsa);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000305 break;
306 }
Damien Miller874d77b2000-10-14 16:23:11 +1100307 rlen = buffer_len(&b);
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +0000308 if (rlen != 0)
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000309 error("do_convert_private_ssh2_from_blob: "
310 "remaining bytes in key blob %d", rlen);
Damien Miller874d77b2000-10-14 16:23:11 +1100311 buffer_free(&b);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000312
Ben Lindstrome586c4c2001-06-25 05:04:58 +0000313 /* try the key */
314 key_sign(key, &sig, &slen, data, sizeof(data));
315 key_verify(key, sig, slen, data, sizeof(data));
316 xfree(sig);
Damien Miller874d77b2000-10-14 16:23:11 +1100317 return key;
318}
319
Damien Miller8056a9d2006-03-15 12:05:40 +1100320static int
321get_line(FILE *fp, char *line, size_t len)
322{
323 int c;
324 size_t pos = 0;
325
326 line[0] = '\0';
327 while ((c = fgetc(fp)) != EOF) {
328 if (pos >= len - 1) {
329 fprintf(stderr, "input line too long.\n");
330 exit(1);
331 }
Damien Miller90967402006-03-26 14:07:26 +1100332 switch (c) {
Damien Miller8056a9d2006-03-15 12:05:40 +1100333 case '\r':
334 c = fgetc(fp);
335 if (c != EOF && c != '\n' && ungetc(c, fp) == EOF) {
336 fprintf(stderr, "unget: %s\n", strerror(errno));
337 exit(1);
338 }
339 return pos;
340 case '\n':
341 return pos;
342 }
343 line[pos++] = c;
344 line[pos] = '\0';
345 }
Damien Millere23209f2006-03-31 23:13:35 +1100346 if (c == EOF)
347 return -1;
Damien Miller8056a9d2006-03-15 12:05:40 +1100348 return pos;
349}
350
Ben Lindstrombba81212001-06-25 05:01:22 +0000351static void
Damien Millereba71ba2000-04-29 23:57:08 +1000352do_convert_from_ssh2(struct passwd *pw)
353{
354 Key *k;
355 int blen;
Ben Lindstrom155b9812002-04-02 20:26:26 +0000356 u_int len;
Damien Miller8056a9d2006-03-15 12:05:40 +1100357 char line[1024];
Ben Lindstrom9e0ddd42001-09-18 05:41:19 +0000358 u_char blob[8096];
Damien Millereba71ba2000-04-29 23:57:08 +1000359 char encoded[8096];
360 struct stat st;
Damien Miller874d77b2000-10-14 16:23:11 +1100361 int escaped = 0, private = 0, ok;
Damien Millereba71ba2000-04-29 23:57:08 +1000362 FILE *fp;
363
364 if (!have_identity)
365 ask_filename(pw, "Enter file in which the key is");
366 if (stat(identity_file, &st) < 0) {
367 perror(identity_file);
368 exit(1);
369 }
370 fp = fopen(identity_file, "r");
371 if (fp == NULL) {
372 perror(identity_file);
373 exit(1);
374 }
375 encoded[0] = '\0';
Damien Miller8056a9d2006-03-15 12:05:40 +1100376 while ((blen = get_line(fp, line, sizeof(line))) != -1) {
377 if (line[blen - 1] == '\\')
Damien Miller30c3d422000-05-09 11:02:59 +1000378 escaped++;
Damien Millereba71ba2000-04-29 23:57:08 +1000379 if (strncmp(line, "----", 4) == 0 ||
380 strstr(line, ": ") != NULL) {
Damien Miller874d77b2000-10-14 16:23:11 +1100381 if (strstr(line, SSH_COM_PRIVATE_BEGIN) != NULL)
382 private = 1;
Ben Lindstrome586c4c2001-06-25 05:04:58 +0000383 if (strstr(line, " END ") != NULL) {
384 break;
385 }
Ben Lindstrom30358602001-04-24 16:59:28 +0000386 /* fprintf(stderr, "ignore: %s", line); */
Damien Millereba71ba2000-04-29 23:57:08 +1000387 continue;
388 }
Damien Miller30c3d422000-05-09 11:02:59 +1000389 if (escaped) {
390 escaped--;
Ben Lindstrom30358602001-04-24 16:59:28 +0000391 /* fprintf(stderr, "escaped: %s", line); */
Damien Miller30c3d422000-05-09 11:02:59 +1000392 continue;
Damien Millereba71ba2000-04-29 23:57:08 +1000393 }
Damien Millereba71ba2000-04-29 23:57:08 +1000394 strlcat(encoded, line, sizeof(encoded));
395 }
Ben Lindstrom155b9812002-04-02 20:26:26 +0000396 len = strlen(encoded);
397 if (((len % 4) == 3) &&
398 (encoded[len-1] == '=') &&
399 (encoded[len-2] == '=') &&
400 (encoded[len-3] == '='))
401 encoded[len-3] = '\0';
Damien Miller4a8ed542002-01-22 23:33:31 +1100402 blen = uudecode(encoded, blob, sizeof(blob));
Damien Millereba71ba2000-04-29 23:57:08 +1000403 if (blen < 0) {
404 fprintf(stderr, "uudecode failed.\n");
405 exit(1);
406 }
Damien Miller874d77b2000-10-14 16:23:11 +1100407 k = private ?
408 do_convert_private_ssh2_from_blob(blob, blen) :
Damien Miller0bc1bd82000-11-13 22:57:25 +1100409 key_from_blob(blob, blen);
Damien Miller874d77b2000-10-14 16:23:11 +1100410 if (k == NULL) {
411 fprintf(stderr, "decode blob failed.\n");
412 exit(1);
413 }
414 ok = private ?
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000415 (k->type == KEY_DSA ?
416 PEM_write_DSAPrivateKey(stdout, k->dsa, NULL, NULL, 0, NULL, NULL) :
417 PEM_write_RSAPrivateKey(stdout, k->rsa, NULL, NULL, 0, NULL, NULL)) :
Damien Miller874d77b2000-10-14 16:23:11 +1100418 key_write(k, stdout);
419 if (!ok) {
420 fprintf(stderr, "key write failed");
421 exit(1);
422 }
Damien Millereba71ba2000-04-29 23:57:08 +1000423 key_free(k);
Damien Millera1db12b2002-01-22 23:20:15 +1100424 if (!private)
425 fprintf(stdout, "\n");
Damien Millereba71ba2000-04-29 23:57:08 +1000426 fclose(fp);
427 exit(0);
428}
429
Ben Lindstrombba81212001-06-25 05:01:22 +0000430static void
Damien Millereba71ba2000-04-29 23:57:08 +1000431do_print_public(struct passwd *pw)
432{
Ben Lindstromd0fca422001-03-26 13:44:06 +0000433 Key *prv;
Damien Millereba71ba2000-04-29 23:57:08 +1000434 struct stat st;
435
436 if (!have_identity)
437 ask_filename(pw, "Enter file in which the key is");
438 if (stat(identity_file, &st) < 0) {
439 perror(identity_file);
440 exit(1);
441 }
Ben Lindstromd78ae762001-06-05 20:35:09 +0000442 prv = load_identity(identity_file);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000443 if (prv == NULL) {
Damien Millereba71ba2000-04-29 23:57:08 +1000444 fprintf(stderr, "load failed\n");
445 exit(1);
446 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000447 if (!key_write(prv, stdout))
Damien Millereba71ba2000-04-29 23:57:08 +1000448 fprintf(stderr, "key_write failed");
Ben Lindstromd0fca422001-03-26 13:44:06 +0000449 key_free(prv);
Damien Millereba71ba2000-04-29 23:57:08 +1000450 fprintf(stdout, "\n");
451 exit(0);
452}
453
Ben Lindstrom6818bfb2001-08-06 21:40:04 +0000454#ifdef SMARTCARD
Ben Lindstromcd392282001-07-04 03:44:03 +0000455static void
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000456do_upload(struct passwd *pw, const char *sc_reader_id)
Ben Lindstromcd392282001-07-04 03:44:03 +0000457{
Ben Lindstromcd392282001-07-04 03:44:03 +0000458 Key *prv = NULL;
459 struct stat st;
Ben Lindstrom70e3ad82002-03-22 03:33:43 +0000460 int ret;
Ben Lindstromcd392282001-07-04 03:44:03 +0000461
462 if (!have_identity)
463 ask_filename(pw, "Enter file in which the key is");
464 if (stat(identity_file, &st) < 0) {
465 perror(identity_file);
Ben Lindstrom70e3ad82002-03-22 03:33:43 +0000466 exit(1);
Ben Lindstromcd392282001-07-04 03:44:03 +0000467 }
468 prv = load_identity(identity_file);
469 if (prv == NULL) {
470 error("load failed");
Ben Lindstrom70e3ad82002-03-22 03:33:43 +0000471 exit(1);
Ben Lindstromcd392282001-07-04 03:44:03 +0000472 }
Ben Lindstrom70e3ad82002-03-22 03:33:43 +0000473 ret = sc_put_key(prv, sc_reader_id);
474 key_free(prv);
475 if (ret < 0)
476 exit(1);
Damien Miller996acd22003-04-09 20:59:48 +1000477 logit("loading key done");
Ben Lindstrom70e3ad82002-03-22 03:33:43 +0000478 exit(0);
Ben Lindstromcd392282001-07-04 03:44:03 +0000479}
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000480
481static void
482do_download(struct passwd *pw, const char *sc_reader_id)
483{
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000484 Key **keys = NULL;
485 int i;
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000486
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000487 keys = sc_get_keys(sc_reader_id, NULL);
488 if (keys == NULL)
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000489 fatal("cannot read public key from smartcard");
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000490 for (i = 0; keys[i]; i++) {
491 key_write(keys[i], stdout);
492 key_free(keys[i]);
493 fprintf(stdout, "\n");
494 }
495 xfree(keys);
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000496 exit(0);
497}
Ben Lindstromffce1472001-08-06 21:57:31 +0000498#endif /* SMARTCARD */
Ben Lindstromcd392282001-07-04 03:44:03 +0000499
Ben Lindstrombba81212001-06-25 05:01:22 +0000500static void
Damien Miller10f6f6b1999-11-17 17:29:08 +1100501do_fingerprint(struct passwd *pw)
502{
Damien Miller98c7ad62000-03-09 21:27:49 +1100503 FILE *f;
Damien Millereba71ba2000-04-29 23:57:08 +1000504 Key *public;
Ben Lindstrom8fd372b2001-03-12 03:02:17 +0000505 char *comment = NULL, *cp, *ep, line[16*1024], *fp;
Ben Lindstrom65366a82001-12-06 16:32:47 +0000506 int i, skip = 0, num = 1, invalid = 1;
507 enum fp_rep rep;
508 enum fp_type fptype;
Damien Miller95def091999-11-25 00:26:21 +1100509 struct stat st;
Damien Miller10f6f6b1999-11-17 17:29:08 +1100510
Ben Lindstromd0fca422001-03-26 13:44:06 +0000511 fptype = print_bubblebabble ? SSH_FP_SHA1 : SSH_FP_MD5;
512 rep = print_bubblebabble ? SSH_FP_BUBBLEBABBLE : SSH_FP_HEX;
Ben Lindstrom8fd372b2001-03-12 03:02:17 +0000513
Damien Miller95def091999-11-25 00:26:21 +1100514 if (!have_identity)
515 ask_filename(pw, "Enter file in which the key is");
516 if (stat(identity_file, &st) < 0) {
517 perror(identity_file);
518 exit(1);
519 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000520 public = key_load_public(identity_file, &comment);
521 if (public != NULL) {
522 fp = key_fingerprint(public, fptype, rep);
Ben Lindstrom58d3b722002-06-23 21:28:13 +0000523 printf("%u %s %s\n", key_size(public), fp, comment);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100524 key_free(public);
525 xfree(comment);
Ben Lindstrom8fd372b2001-03-12 03:02:17 +0000526 xfree(fp);
Damien Miller98c7ad62000-03-09 21:27:49 +1100527 exit(0);
528 }
Damien Miller40b59852006-06-13 13:00:25 +1000529 if (comment) {
Ben Lindstromd0fca422001-03-26 13:44:06 +0000530 xfree(comment);
Damien Miller40b59852006-06-13 13:00:25 +1000531 comment = NULL;
532 }
Damien Miller98c7ad62000-03-09 21:27:49 +1100533
534 f = fopen(identity_file, "r");
535 if (f != NULL) {
Damien Miller98c7ad62000-03-09 21:27:49 +1100536 while (fgets(line, sizeof(line), f)) {
537 i = strlen(line) - 1;
538 if (line[i] != '\n') {
539 error("line %d too long: %.40s...", num, line);
540 skip = 1;
541 continue;
Damien Miller95def091999-11-25 00:26:21 +1100542 }
Damien Miller98c7ad62000-03-09 21:27:49 +1100543 num++;
544 if (skip) {
545 skip = 0;
546 continue;
547 }
548 line[i] = '\0';
549
550 /* Skip leading whitespace, empty and comment lines. */
551 for (cp = line; *cp == ' ' || *cp == '\t'; cp++)
552 ;
553 if (!*cp || *cp == '\n' || *cp == '#')
554 continue ;
555 i = strtol(cp, &ep, 10);
556 if (i == 0 || ep == NULL || (*ep != ' ' && *ep != '\t')) {
557 int quoted = 0;
558 comment = cp;
Ben Lindstrom58d3b722002-06-23 21:28:13 +0000559 for (; *cp && (quoted || (*cp != ' ' &&
560 *cp != '\t')); cp++) {
Damien Miller98c7ad62000-03-09 21:27:49 +1100561 if (*cp == '\\' && cp[1] == '"')
562 cp++; /* Skip both */
563 else if (*cp == '"')
564 quoted = !quoted;
565 }
566 if (!*cp)
567 continue;
568 *cp++ = '\0';
569 }
570 ep = cp;
Ben Lindstrom2941f112000-12-29 16:50:13 +0000571 public = key_new(KEY_RSA1);
572 if (key_read(public, &cp) != 1) {
573 cp = ep;
574 key_free(public);
575 public = key_new(KEY_UNSPEC);
576 if (key_read(public, &cp) != 1) {
577 key_free(public);
578 continue;
579 }
Damien Miller98c7ad62000-03-09 21:27:49 +1100580 }
Ben Lindstrom2941f112000-12-29 16:50:13 +0000581 comment = *cp ? cp : comment;
Ben Lindstromd0fca422001-03-26 13:44:06 +0000582 fp = key_fingerprint(public, fptype, rep);
Ben Lindstrom58d3b722002-06-23 21:28:13 +0000583 printf("%u %s %s\n", key_size(public), fp,
Ben Lindstrom2941f112000-12-29 16:50:13 +0000584 comment ? comment : "no comment");
Ben Lindstrom8fd372b2001-03-12 03:02:17 +0000585 xfree(fp);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000586 key_free(public);
Ben Lindstrom2941f112000-12-29 16:50:13 +0000587 invalid = 0;
Damien Miller95def091999-11-25 00:26:21 +1100588 }
Damien Miller98c7ad62000-03-09 21:27:49 +1100589 fclose(f);
Damien Miller95def091999-11-25 00:26:21 +1100590 }
Damien Miller98c7ad62000-03-09 21:27:49 +1100591 if (invalid) {
Damien Millereb5fec62001-11-12 10:52:44 +1100592 printf("%s is not a public key file.\n", identity_file);
Damien Miller98c7ad62000-03-09 21:27:49 +1100593 exit(1);
594 }
Damien Miller95def091999-11-25 00:26:21 +1100595 exit(0);
Damien Miller10f6f6b1999-11-17 17:29:08 +1100596}
597
Damien Miller4b42d7f2005-03-01 21:48:35 +1100598static void
599print_host(FILE *f, char *name, Key *public, int hash)
600{
601 if (hash && (name = host_hash(name, NULL, 0)) == NULL)
602 fatal("hash_host failed");
603 fprintf(f, "%s ", name);
604 if (!key_write(public, f))
605 fatal("key_write failed");
606 fprintf(f, "\n");
607}
608
609static void
610do_known_hosts(struct passwd *pw, const char *name)
611{
612 FILE *in, *out = stdout;
613 Key *public;
614 char *cp, *cp2, *kp, *kp2;
615 char line[16*1024], tmp[MAXPATHLEN], old[MAXPATHLEN];
616 int c, i, skip = 0, inplace = 0, num = 0, invalid = 0, has_unhashed = 0;
617
618 if (!have_identity) {
619 cp = tilde_expand_filename(_PATH_SSH_USER_HOSTFILE, pw->pw_uid);
620 if (strlcpy(identity_file, cp, sizeof(identity_file)) >=
621 sizeof(identity_file))
622 fatal("Specified known hosts path too long");
623 xfree(cp);
624 have_identity = 1;
625 }
626 if ((in = fopen(identity_file, "r")) == NULL)
627 fatal("fopen: %s", strerror(errno));
628
629 /*
630 * Find hosts goes to stdout, hash and deletions happen in-place
631 * A corner case is ssh-keygen -HF foo, which should go to stdout
632 */
633 if (!find_host && (hash_hosts || delete_host)) {
634 if (strlcpy(tmp, identity_file, sizeof(tmp)) >= sizeof(tmp) ||
635 strlcat(tmp, ".XXXXXXXXXX", sizeof(tmp)) >= sizeof(tmp) ||
636 strlcpy(old, identity_file, sizeof(old)) >= sizeof(old) ||
637 strlcat(old, ".old", sizeof(old)) >= sizeof(old))
638 fatal("known_hosts path too long");
639 umask(077);
640 if ((c = mkstemp(tmp)) == -1)
641 fatal("mkstemp: %s", strerror(errno));
642 if ((out = fdopen(c, "w")) == NULL) {
643 c = errno;
644 unlink(tmp);
645 fatal("fdopen: %s", strerror(c));
646 }
647 inplace = 1;
648 }
649
650 while (fgets(line, sizeof(line), in)) {
651 num++;
652 i = strlen(line) - 1;
653 if (line[i] != '\n') {
654 error("line %d too long: %.40s...", num, line);
655 skip = 1;
656 invalid = 1;
657 continue;
658 }
659 if (skip) {
660 skip = 0;
661 continue;
662 }
663 line[i] = '\0';
664
665 /* Skip leading whitespace, empty and comment lines. */
666 for (cp = line; *cp == ' ' || *cp == '\t'; cp++)
667 ;
668 if (!*cp || *cp == '\n' || *cp == '#') {
669 if (inplace)
670 fprintf(out, "%s\n", cp);
671 continue;
672 }
673 /* Find the end of the host name portion. */
674 for (kp = cp; *kp && *kp != ' ' && *kp != '\t'; kp++)
675 ;
676 if (*kp == '\0' || *(kp + 1) == '\0') {
677 error("line %d missing key: %.40s...",
678 num, line);
679 invalid = 1;
680 continue;
681 }
682 *kp++ = '\0';
683 kp2 = kp;
684
685 public = key_new(KEY_RSA1);
686 if (key_read(public, &kp) != 1) {
687 kp = kp2;
688 key_free(public);
689 public = key_new(KEY_UNSPEC);
690 if (key_read(public, &kp) != 1) {
691 error("line %d invalid key: %.40s...",
692 num, line);
693 key_free(public);
694 invalid = 1;
695 continue;
696 }
697 }
698
699 if (*cp == HASH_DELIM) {
700 if (find_host || delete_host) {
701 cp2 = host_hash(name, cp, strlen(cp));
702 if (cp2 == NULL) {
703 error("line %d: invalid hashed "
704 "name: %.64s...", num, line);
705 invalid = 1;
706 continue;
707 }
708 c = (strcmp(cp2, cp) == 0);
709 if (find_host && c) {
710 printf("# Host %s found: "
711 "line %d type %s\n", name,
712 num, key_type(public));
713 print_host(out, cp, public, 0);
714 }
715 if (delete_host && !c)
716 print_host(out, cp, public, 0);
717 } else if (hash_hosts)
718 print_host(out, cp, public, 0);
719 } else {
720 if (find_host || delete_host) {
721 c = (match_hostname(name, cp,
722 strlen(cp)) == 1);
723 if (find_host && c) {
724 printf("# Host %s found: "
725 "line %d type %s\n", name,
726 num, key_type(public));
727 print_host(out, cp, public, hash_hosts);
728 }
729 if (delete_host && !c)
730 print_host(out, cp, public, 0);
731 } else if (hash_hosts) {
Darren Tucker47eede72005-03-14 23:08:12 +1100732 for (cp2 = strsep(&cp, ",");
Damien Miller4b42d7f2005-03-01 21:48:35 +1100733 cp2 != NULL && *cp2 != '\0';
Damien Miller89eac802005-03-02 12:33:04 +1100734 cp2 = strsep(&cp, ",")) {
735 if (strcspn(cp2, "*?!") != strlen(cp2))
736 fprintf(stderr, "Warning: "
737 "ignoring host name with "
738 "metacharacters: %.64s\n",
739 cp2);
740 else
741 print_host(out, cp2, public, 1);
742 }
Damien Miller4b42d7f2005-03-01 21:48:35 +1100743 has_unhashed = 1;
744 }
745 }
746 key_free(public);
747 }
748 fclose(in);
749
750 if (invalid) {
751 fprintf(stderr, "%s is not a valid known_host file.\n",
752 identity_file);
753 if (inplace) {
754 fprintf(stderr, "Not replacing existing known_hosts "
Darren Tucker9f438a92005-03-14 23:09:18 +1100755 "file because of errors\n");
Damien Miller4b42d7f2005-03-01 21:48:35 +1100756 fclose(out);
757 unlink(tmp);
758 }
759 exit(1);
760 }
761
762 if (inplace) {
763 fclose(out);
764
765 /* Backup existing file */
766 if (unlink(old) == -1 && errno != ENOENT)
767 fatal("unlink %.100s: %s", old, strerror(errno));
768 if (link(identity_file, old) == -1)
769 fatal("link %.100s to %.100s: %s", identity_file, old,
770 strerror(errno));
771 /* Move new one into place */
772 if (rename(tmp, identity_file) == -1) {
773 error("rename\"%s\" to \"%s\": %s", tmp, identity_file,
774 strerror(errno));
775 unlink(tmp);
776 unlink(old);
777 exit(1);
778 }
779
780 fprintf(stderr, "%s updated.\n", identity_file);
781 fprintf(stderr, "Original contents retained as %s\n", old);
782 if (has_unhashed) {
783 fprintf(stderr, "WARNING: %s contains unhashed "
784 "entries\n", old);
785 fprintf(stderr, "Delete this file to ensure privacy "
Damien Miller0dc1bef2005-07-17 17:22:45 +1000786 "of hostnames\n");
Damien Miller4b42d7f2005-03-01 21:48:35 +1100787 }
788 }
789
790 exit(0);
791}
792
Damien Miller95def091999-11-25 00:26:21 +1100793/*
794 * Perform changing a passphrase. The argument is the passwd structure
795 * for the current user.
796 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000797static void
Damien Miller10f6f6b1999-11-17 17:29:08 +1100798do_change_passphrase(struct passwd *pw)
799{
Damien Miller95def091999-11-25 00:26:21 +1100800 char *comment;
801 char *old_passphrase, *passphrase1, *passphrase2;
802 struct stat st;
Damien Millereba71ba2000-04-29 23:57:08 +1000803 Key *private;
Damien Miller10f6f6b1999-11-17 17:29:08 +1100804
Damien Miller95def091999-11-25 00:26:21 +1100805 if (!have_identity)
806 ask_filename(pw, "Enter file in which the key is");
Damien Miller95def091999-11-25 00:26:21 +1100807 if (stat(identity_file, &st) < 0) {
808 perror(identity_file);
809 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000810 }
Damien Miller95def091999-11-25 00:26:21 +1100811 /* Try to load the file with empty passphrase. */
Ben Lindstromd0fca422001-03-26 13:44:06 +0000812 private = key_load_private(identity_file, "", &comment);
813 if (private == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100814 if (identity_passphrase)
815 old_passphrase = xstrdup(identity_passphrase);
816 else
Ben Lindstrom949974b2001-06-25 05:20:31 +0000817 old_passphrase =
818 read_passphrase("Enter old passphrase: ",
819 RP_ALLOW_STDIN);
820 private = key_load_private(identity_file, old_passphrase,
821 &comment);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000822 memset(old_passphrase, 0, strlen(old_passphrase));
823 xfree(old_passphrase);
824 if (private == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100825 printf("Bad passphrase.\n");
826 exit(1);
827 }
Damien Miller95def091999-11-25 00:26:21 +1100828 }
829 printf("Key has comment '%s'\n", comment);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000830
Damien Miller95def091999-11-25 00:26:21 +1100831 /* Ask the new passphrase (twice). */
832 if (identity_new_passphrase) {
833 passphrase1 = xstrdup(identity_new_passphrase);
834 passphrase2 = NULL;
835 } else {
836 passphrase1 =
Ben Lindstrom949974b2001-06-25 05:20:31 +0000837 read_passphrase("Enter new passphrase (empty for no "
838 "passphrase): ", RP_ALLOW_STDIN);
839 passphrase2 = read_passphrase("Enter same passphrase again: ",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100840 RP_ALLOW_STDIN);
Damien Miller95def091999-11-25 00:26:21 +1100841
842 /* Verify that they are the same. */
843 if (strcmp(passphrase1, passphrase2) != 0) {
844 memset(passphrase1, 0, strlen(passphrase1));
845 memset(passphrase2, 0, strlen(passphrase2));
846 xfree(passphrase1);
847 xfree(passphrase2);
848 printf("Pass phrases do not match. Try again.\n");
849 exit(1);
850 }
851 /* Destroy the other copy. */
852 memset(passphrase2, 0, strlen(passphrase2));
853 xfree(passphrase2);
854 }
855
856 /* Save the file using the new passphrase. */
Ben Lindstromd0fca422001-03-26 13:44:06 +0000857 if (!key_save_private(private, identity_file, passphrase1, comment)) {
Ben Lindstrom15f33862001-04-16 02:00:02 +0000858 printf("Saving the key failed: %s.\n", identity_file);
Damien Miller95def091999-11-25 00:26:21 +1100859 memset(passphrase1, 0, strlen(passphrase1));
860 xfree(passphrase1);
Damien Millereba71ba2000-04-29 23:57:08 +1000861 key_free(private);
Damien Miller95def091999-11-25 00:26:21 +1100862 xfree(comment);
863 exit(1);
864 }
865 /* Destroy the passphrase and the copy of the key in memory. */
866 memset(passphrase1, 0, strlen(passphrase1));
867 xfree(passphrase1);
Damien Millereba71ba2000-04-29 23:57:08 +1000868 key_free(private); /* Destroys contents */
Damien Miller95def091999-11-25 00:26:21 +1100869 xfree(comment);
870
871 printf("Your identification has been saved with the new passphrase.\n");
872 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000873}
874
Damien Miller37876e92003-05-15 10:19:46 +1000875/*
876 * Print the SSHFP RR.
877 */
Damien Millercb314822006-03-26 13:48:01 +1100878static int
879do_print_resource_record(struct passwd *pw, char *fname, char *hname)
Damien Miller37876e92003-05-15 10:19:46 +1000880{
881 Key *public;
882 char *comment = NULL;
883 struct stat st;
884
Damien Millercb314822006-03-26 13:48:01 +1100885 if (fname == NULL)
Damien Miller37876e92003-05-15 10:19:46 +1000886 ask_filename(pw, "Enter file in which the key is");
Damien Millercb314822006-03-26 13:48:01 +1100887 if (stat(fname, &st) < 0) {
888 if (errno == ENOENT)
889 return 0;
890 perror(fname);
Damien Miller37876e92003-05-15 10:19:46 +1000891 exit(1);
892 }
Damien Millercb314822006-03-26 13:48:01 +1100893 public = key_load_public(fname, &comment);
Damien Miller37876e92003-05-15 10:19:46 +1000894 if (public != NULL) {
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000895 export_dns_rr(hname, public, stdout, print_generic);
Damien Miller37876e92003-05-15 10:19:46 +1000896 key_free(public);
897 xfree(comment);
Damien Millercb314822006-03-26 13:48:01 +1100898 return 1;
Damien Miller37876e92003-05-15 10:19:46 +1000899 }
900 if (comment)
901 xfree(comment);
902
Damien Millercb314822006-03-26 13:48:01 +1100903 printf("failed to read v2 public key from %s.\n", fname);
Damien Miller37876e92003-05-15 10:19:46 +1000904 exit(1);
905}
Damien Miller37876e92003-05-15 10:19:46 +1000906
Damien Miller95def091999-11-25 00:26:21 +1100907/*
908 * Change the comment of a private key file.
909 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000910static void
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000911do_change_comment(struct passwd *pw)
912{
Ben Lindstrom5fc62702001-03-09 18:19:24 +0000913 char new_comment[1024], *comment, *passphrase;
Ben Lindstromd0fca422001-03-26 13:44:06 +0000914 Key *private;
915 Key *public;
Damien Miller95def091999-11-25 00:26:21 +1100916 struct stat st;
917 FILE *f;
Ben Lindstrom5fc62702001-03-09 18:19:24 +0000918 int fd;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000919
Damien Miller95def091999-11-25 00:26:21 +1100920 if (!have_identity)
921 ask_filename(pw, "Enter file in which the key is");
Damien Miller95def091999-11-25 00:26:21 +1100922 if (stat(identity_file, &st) < 0) {
923 perror(identity_file);
924 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000925 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000926 private = key_load_private(identity_file, "", &comment);
927 if (private == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100928 if (identity_passphrase)
929 passphrase = xstrdup(identity_passphrase);
930 else if (identity_new_passphrase)
931 passphrase = xstrdup(identity_new_passphrase);
932 else
Ben Lindstrom949974b2001-06-25 05:20:31 +0000933 passphrase = read_passphrase("Enter passphrase: ",
934 RP_ALLOW_STDIN);
Damien Miller95def091999-11-25 00:26:21 +1100935 /* Try to load using the passphrase. */
Ben Lindstromd0fca422001-03-26 13:44:06 +0000936 private = key_load_private(identity_file, passphrase, &comment);
937 if (private == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100938 memset(passphrase, 0, strlen(passphrase));
939 xfree(passphrase);
940 printf("Bad passphrase.\n");
941 exit(1);
942 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000943 } else {
944 passphrase = xstrdup("");
Damien Miller95def091999-11-25 00:26:21 +1100945 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000946 if (private->type != KEY_RSA1) {
947 fprintf(stderr, "Comments are only supported for RSA1 keys.\n");
948 key_free(private);
949 exit(1);
Damien Miller9f0f5c62001-12-21 14:45:46 +1100950 }
Damien Miller95def091999-11-25 00:26:21 +1100951 printf("Key now has comment '%s'\n", comment);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000952
Damien Miller95def091999-11-25 00:26:21 +1100953 if (identity_comment) {
954 strlcpy(new_comment, identity_comment, sizeof(new_comment));
955 } else {
956 printf("Enter new comment: ");
957 fflush(stdout);
958 if (!fgets(new_comment, sizeof(new_comment), stdin)) {
959 memset(passphrase, 0, strlen(passphrase));
Damien Millereba71ba2000-04-29 23:57:08 +1000960 key_free(private);
Damien Miller95def091999-11-25 00:26:21 +1100961 exit(1);
962 }
Damien Miller95def091999-11-25 00:26:21 +1100963 if (strchr(new_comment, '\n'))
964 *strchr(new_comment, '\n') = 0;
965 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000966
Damien Miller95def091999-11-25 00:26:21 +1100967 /* Save the file using the new passphrase. */
Ben Lindstromd0fca422001-03-26 13:44:06 +0000968 if (!key_save_private(private, identity_file, passphrase, new_comment)) {
Ben Lindstrom15f33862001-04-16 02:00:02 +0000969 printf("Saving the key failed: %s.\n", identity_file);
Damien Miller95def091999-11-25 00:26:21 +1100970 memset(passphrase, 0, strlen(passphrase));
971 xfree(passphrase);
Damien Millereba71ba2000-04-29 23:57:08 +1000972 key_free(private);
Damien Miller95def091999-11-25 00:26:21 +1100973 xfree(comment);
974 exit(1);
975 }
Damien Miller95def091999-11-25 00:26:21 +1100976 memset(passphrase, 0, strlen(passphrase));
977 xfree(passphrase);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000978 public = key_from_private(private);
Damien Millereba71ba2000-04-29 23:57:08 +1000979 key_free(private);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000980
Damien Miller95def091999-11-25 00:26:21 +1100981 strlcat(identity_file, ".pub", sizeof(identity_file));
Ben Lindstrom5fc62702001-03-09 18:19:24 +0000982 fd = open(identity_file, O_WRONLY | O_CREAT | O_TRUNC, 0644);
983 if (fd == -1) {
Damien Miller95def091999-11-25 00:26:21 +1100984 printf("Could not save your public key in %s\n", identity_file);
985 exit(1);
986 }
Ben Lindstrom5fc62702001-03-09 18:19:24 +0000987 f = fdopen(fd, "w");
988 if (f == NULL) {
989 printf("fdopen %s failed", identity_file);
990 exit(1);
991 }
Damien Millereba71ba2000-04-29 23:57:08 +1000992 if (!key_write(public, f))
993 fprintf(stderr, "write key failed");
994 key_free(public);
995 fprintf(f, " %s\n", new_comment);
Damien Miller95def091999-11-25 00:26:21 +1100996 fclose(f);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000997
Damien Miller95def091999-11-25 00:26:21 +1100998 xfree(comment);
999
1000 printf("The comment in your key file has been changed.\n");
1001 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001002}
1003
Ben Lindstrombba81212001-06-25 05:01:22 +00001004static void
Damien Miller431f66b1999-11-21 18:31:57 +11001005usage(void)
1006{
Ben Lindstrom97be31e2001-08-06 21:49:06 +00001007 fprintf(stderr, "Usage: %s [options]\n", __progname);
1008 fprintf(stderr, "Options:\n");
Damien Miller9278ffa2005-05-26 11:59:06 +10001009 fprintf(stderr, " -a trials Number of trials for screening DH-GEX moduli.\n");
Ben Lindstrom97be31e2001-08-06 21:49:06 +00001010 fprintf(stderr, " -B Show bubblebabble digest of key file.\n");
Damien Miller9278ffa2005-05-26 11:59:06 +10001011 fprintf(stderr, " -b bits Number of bits in the key to create.\n");
Ben Lindstrom97be31e2001-08-06 21:49:06 +00001012 fprintf(stderr, " -C comment Provide new comment.\n");
Damien Miller9278ffa2005-05-26 11:59:06 +10001013 fprintf(stderr, " -c Change comment in private and public key files.\n");
Ben Lindstrom97be31e2001-08-06 21:49:06 +00001014#ifdef SMARTCARD
1015 fprintf(stderr, " -D reader Download public key from smartcard.\n");
Damien Miller9278ffa2005-05-26 11:59:06 +10001016#endif /* SMARTCARD */
1017 fprintf(stderr, " -e Convert OpenSSH to IETF SECSH key file.\n");
1018 fprintf(stderr, " -F hostname Find hostname in known hosts file.\n");
1019 fprintf(stderr, " -f filename Filename of the key file.\n");
1020 fprintf(stderr, " -G file Generate candidates for DH-GEX moduli.\n");
1021 fprintf(stderr, " -g Use generic DNS resource record format.\n");
1022 fprintf(stderr, " -H Hash names in known_hosts file.\n");
1023 fprintf(stderr, " -i Convert IETF SECSH to OpenSSH key file.\n");
1024 fprintf(stderr, " -l Show fingerprint of key file.\n");
1025 fprintf(stderr, " -M memory Amount of memory (MB) to use for generating DH-GEX moduli.\n");
1026 fprintf(stderr, " -N phrase Provide new passphrase.\n");
1027 fprintf(stderr, " -P phrase Provide old passphrase.\n");
1028 fprintf(stderr, " -p Change passphrase of private key file.\n");
1029 fprintf(stderr, " -q Quiet.\n");
1030 fprintf(stderr, " -R hostname Remove host from known_hosts file.\n");
1031 fprintf(stderr, " -r hostname Print DNS resource record.\n");
1032 fprintf(stderr, " -S start Start point (hex) for generating DH-GEX moduli.\n");
1033 fprintf(stderr, " -T file Screen candidates for DH-GEX moduli.\n");
1034 fprintf(stderr, " -t type Specify type of key to create.\n");
1035#ifdef SMARTCARD
Ben Lindstrom97be31e2001-08-06 21:49:06 +00001036 fprintf(stderr, " -U reader Upload private key to smartcard.\n");
1037#endif /* SMARTCARD */
Damien Miller9278ffa2005-05-26 11:59:06 +10001038 fprintf(stderr, " -v Verbose.\n");
1039 fprintf(stderr, " -W gen Generator to use for generating DH-GEX moduli.\n");
1040 fprintf(stderr, " -y Read private key file and print public key.\n");
Darren Tucker019cefe2003-08-02 22:40:07 +10001041
Damien Miller95def091999-11-25 00:26:21 +11001042 exit(1);
Damien Miller431f66b1999-11-21 18:31:57 +11001043}
1044
Damien Miller95def091999-11-25 00:26:21 +11001045/*
1046 * Main program for key management.
1047 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001048int
1049main(int ac, char **av)
1050{
Damien Millera41c8b12002-01-22 23:05:08 +11001051 char dotsshdir[MAXPATHLEN], comment[1024], *passphrase1, *passphrase2;
Tim Rice2e0e38e2003-09-08 16:11:33 -07001052 char out_file[MAXPATHLEN], *reader_id = NULL;
Damien Miller4b42d7f2005-03-01 21:48:35 +11001053 char *rr_hostname = NULL;
Ben Lindstrom5fc62702001-03-09 18:19:24 +00001054 Key *private, *public;
Damien Miller95def091999-11-25 00:26:21 +11001055 struct passwd *pw;
Damien Miller95def091999-11-25 00:26:21 +11001056 struct stat st;
Damien Millerb089fb52005-05-26 12:16:18 +10001057 int opt, type, fd, download = 0;
Darren Tucker2db8ae62005-06-01 23:02:25 +10001058 u_int32_t memory = 0, generator_wanted = 0, trials = 100;
Darren Tucker019cefe2003-08-02 22:40:07 +10001059 int do_gen_candidates = 0, do_screen_candidates = 0;
Darren Tucker06930c72003-12-31 11:34:51 +11001060 int log_level = SYSLOG_LEVEL_INFO;
Darren Tucker019cefe2003-08-02 22:40:07 +10001061 BIGNUM *start = NULL;
Damien Miller95def091999-11-25 00:26:21 +11001062 FILE *f;
Damien Miller02e754f2005-05-26 12:19:39 +10001063 const char *errstr;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001064
Damien Miller95def091999-11-25 00:26:21 +11001065 extern int optind;
1066 extern char *optarg;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001067
Darren Tuckerce321d82005-10-03 18:11:24 +10001068 /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
1069 sanitise_stdfd();
1070
Damien Miller59d3d5b2003-08-22 09:34:41 +10001071 __progname = ssh_get_progname(av[0]);
Damien Millerf9b625c2000-07-09 22:42:32 +10001072
Damien Millerd3a18572000-06-07 19:55:44 +10001073 SSLeay_add_all_algorithms();
Darren Tucker019cefe2003-08-02 22:40:07 +10001074 log_init(av[0], SYSLOG_LEVEL_INFO, SYSLOG_FACILITY_USER, 1);
1075
Kevin Steves3a881912002-07-20 19:05:40 +00001076 init_rng();
1077 seed_rng();
Damien Millereba71ba2000-04-29 23:57:08 +10001078
Damien Miller5428f641999-11-25 11:54:57 +11001079 /* we need this for the home * directory. */
Damien Miller95def091999-11-25 00:26:21 +11001080 pw = getpwuid(getuid());
1081 if (!pw) {
1082 printf("You don't exist, go away!\n");
1083 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001084 }
Damien Millereba71ba2000-04-29 23:57:08 +10001085 if (gethostname(hostname, sizeof(hostname)) < 0) {
1086 perror("gethostname");
1087 exit(1);
1088 }
Damien Miller5428f641999-11-25 11:54:57 +11001089
Darren Tucker019cefe2003-08-02 22:40:07 +10001090 while ((opt = getopt(ac, av,
Damien Miller4b42d7f2005-03-01 21:48:35 +11001091 "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 +11001092 switch (opt) {
1093 case 'b':
Damien Miller5f340062006-03-26 14:27:57 +11001094 bits = (u_int32_t)strtonum(optarg, 768, 32768, &errstr);
Damien Miller02e754f2005-05-26 12:19:39 +10001095 if (errstr)
1096 fatal("Bits has bad value %s (%s)",
1097 optarg, errstr);
Damien Miller95def091999-11-25 00:26:21 +11001098 break;
Damien Miller4b42d7f2005-03-01 21:48:35 +11001099 case 'F':
1100 find_host = 1;
1101 rr_hostname = optarg;
1102 break;
1103 case 'H':
1104 hash_hosts = 1;
1105 break;
1106 case 'R':
1107 delete_host = 1;
1108 rr_hostname = optarg;
1109 break;
Damien Miller95def091999-11-25 00:26:21 +11001110 case 'l':
1111 print_fingerprint = 1;
1112 break;
Ben Lindstrom8fd372b2001-03-12 03:02:17 +00001113 case 'B':
1114 print_bubblebabble = 1;
1115 break;
Damien Miller95def091999-11-25 00:26:21 +11001116 case 'p':
1117 change_passphrase = 1;
1118 break;
Damien Miller95def091999-11-25 00:26:21 +11001119 case 'c':
1120 change_comment = 1;
1121 break;
Damien Miller95def091999-11-25 00:26:21 +11001122 case 'f':
Damien Millerb089fb52005-05-26 12:16:18 +10001123 if (strlcpy(identity_file, optarg, sizeof(identity_file)) >=
1124 sizeof(identity_file))
1125 fatal("Identity filename too long");
Damien Miller95def091999-11-25 00:26:21 +11001126 have_identity = 1;
1127 break;
Damien Miller37876e92003-05-15 10:19:46 +10001128 case 'g':
1129 print_generic = 1;
1130 break;
Damien Miller95def091999-11-25 00:26:21 +11001131 case 'P':
1132 identity_passphrase = optarg;
1133 break;
Damien Miller95def091999-11-25 00:26:21 +11001134 case 'N':
1135 identity_new_passphrase = optarg;
1136 break;
Damien Miller95def091999-11-25 00:26:21 +11001137 case 'C':
1138 identity_comment = optarg;
1139 break;
Damien Miller95def091999-11-25 00:26:21 +11001140 case 'q':
1141 quiet = 1;
1142 break;
Ben Lindstrom5a707822001-04-22 17:15:46 +00001143 case 'e':
Damien Millereba71ba2000-04-29 23:57:08 +10001144 case 'x':
Ben Lindstrom5a707822001-04-22 17:15:46 +00001145 /* export key */
Damien Millereba71ba2000-04-29 23:57:08 +10001146 convert_to_ssh2 = 1;
1147 break;
Ben Lindstrom5a707822001-04-22 17:15:46 +00001148 case 'i':
Damien Millereba71ba2000-04-29 23:57:08 +10001149 case 'X':
Ben Lindstrom5a707822001-04-22 17:15:46 +00001150 /* import key */
Damien Millereba71ba2000-04-29 23:57:08 +10001151 convert_from_ssh2 = 1;
1152 break;
Damien Millereba71ba2000-04-29 23:57:08 +10001153 case 'y':
1154 print_public = 1;
1155 break;
Damien Millereba71ba2000-04-29 23:57:08 +10001156 case 'd':
Damien Miller0bc1bd82000-11-13 22:57:25 +11001157 key_type_name = "dsa";
Damien Millereba71ba2000-04-29 23:57:08 +10001158 break;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001159 case 't':
1160 key_type_name = optarg;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001161 break;
Ben Lindstrom8282d6a2001-08-06 21:44:05 +00001162 case 'D':
1163 download = 1;
Damien Miller90967402006-03-26 14:07:26 +11001164 /*FALLTHROUGH*/
Ben Lindstromf19578c2001-08-06 21:46:54 +00001165 case 'U':
Ben Lindstrom8282d6a2001-08-06 21:44:05 +00001166 reader_id = optarg;
Ben Lindstromcd392282001-07-04 03:44:03 +00001167 break;
Darren Tucker06930c72003-12-31 11:34:51 +11001168 case 'v':
1169 if (log_level == SYSLOG_LEVEL_INFO)
1170 log_level = SYSLOG_LEVEL_DEBUG1;
1171 else {
Darren Tuckerfc959702004-07-17 16:12:08 +10001172 if (log_level >= SYSLOG_LEVEL_DEBUG1 &&
Darren Tucker06930c72003-12-31 11:34:51 +11001173 log_level < SYSLOG_LEVEL_DEBUG3)
1174 log_level++;
1175 }
1176 break;
Damien Miller37876e92003-05-15 10:19:46 +10001177 case 'r':
Damien Miller4b42d7f2005-03-01 21:48:35 +11001178 rr_hostname = optarg;
Damien Miller37876e92003-05-15 10:19:46 +10001179 break;
Darren Tucker019cefe2003-08-02 22:40:07 +10001180 case 'W':
Damien Miller5f340062006-03-26 14:27:57 +11001181 generator_wanted = (u_int32_t)strtonum(optarg, 1,
1182 UINT_MAX, &errstr);
Damien Millerb089fb52005-05-26 12:16:18 +10001183 if (errstr)
1184 fatal("Desired generator has bad value: %s (%s)",
1185 optarg, errstr);
Darren Tucker019cefe2003-08-02 22:40:07 +10001186 break;
1187 case 'a':
Damien Miller5f340062006-03-26 14:27:57 +11001188 trials = (u_int32_t)strtonum(optarg, 1, UINT_MAX, &errstr);
Damien Millerb089fb52005-05-26 12:16:18 +10001189 if (errstr)
1190 fatal("Invalid number of trials: %s (%s)",
1191 optarg, errstr);
Darren Tucker019cefe2003-08-02 22:40:07 +10001192 break;
1193 case 'M':
Damien Miller5f340062006-03-26 14:27:57 +11001194 memory = (u_int32_t)strtonum(optarg, 1, UINT_MAX, &errstr);
Damien Millerb089fb52005-05-26 12:16:18 +10001195 if (errstr) {
1196 fatal("Memory limit is %s: %s", errstr, optarg);
1197 }
Darren Tucker019cefe2003-08-02 22:40:07 +10001198 break;
1199 case 'G':
1200 do_gen_candidates = 1;
Damien Millerb089fb52005-05-26 12:16:18 +10001201 if (strlcpy(out_file, optarg, sizeof(out_file)) >=
1202 sizeof(out_file))
1203 fatal("Output filename too long");
Darren Tucker019cefe2003-08-02 22:40:07 +10001204 break;
1205 case 'T':
1206 do_screen_candidates = 1;
Damien Millerb089fb52005-05-26 12:16:18 +10001207 if (strlcpy(out_file, optarg, sizeof(out_file)) >=
1208 sizeof(out_file))
1209 fatal("Output filename too long");
Darren Tucker019cefe2003-08-02 22:40:07 +10001210 break;
1211 case 'S':
1212 /* XXX - also compare length against bits */
1213 if (BN_hex2bn(&start, optarg) == 0)
1214 fatal("Invalid start point.");
1215 break;
Damien Miller95def091999-11-25 00:26:21 +11001216 case '?':
1217 default:
1218 usage();
1219 }
1220 }
Darren Tucker06930c72003-12-31 11:34:51 +11001221
1222 /* reinit */
1223 log_init(av[0], log_level, SYSLOG_FACILITY_USER, 1);
1224
Damien Miller95def091999-11-25 00:26:21 +11001225 if (optind < ac) {
1226 printf("Too many arguments.\n");
1227 usage();
1228 }
1229 if (change_passphrase && change_comment) {
1230 printf("Can only have one of -p and -c.\n");
1231 usage();
1232 }
Damien Miller4b42d7f2005-03-01 21:48:35 +11001233 if (delete_host || hash_hosts || find_host)
1234 do_known_hosts(pw, rr_hostname);
Ben Lindstrom8fd372b2001-03-12 03:02:17 +00001235 if (print_fingerprint || print_bubblebabble)
Damien Miller95def091999-11-25 00:26:21 +11001236 do_fingerprint(pw);
Damien Miller95def091999-11-25 00:26:21 +11001237 if (change_passphrase)
1238 do_change_passphrase(pw);
Damien Miller4a10d2e2002-03-11 22:53:29 +11001239 if (change_comment)
1240 do_change_comment(pw);
Kevin Steves3a881912002-07-20 19:05:40 +00001241 if (convert_to_ssh2)
1242 do_convert_to_ssh2(pw);
1243 if (convert_from_ssh2)
1244 do_convert_from_ssh2(pw);
Damien Millereba71ba2000-04-29 23:57:08 +10001245 if (print_public)
1246 do_print_public(pw);
Damien Miller4b42d7f2005-03-01 21:48:35 +11001247 if (rr_hostname != NULL) {
Damien Millercb314822006-03-26 13:48:01 +11001248 unsigned int n = 0;
1249
1250 if (have_identity) {
1251 n = do_print_resource_record(pw,
1252 identity_file, rr_hostname);
1253 if (n == 0) {
1254 perror(identity_file);
1255 exit(1);
1256 }
1257 exit(0);
1258 } else {
1259
1260 n += do_print_resource_record(pw,
1261 _PATH_HOST_RSA_KEY_FILE, rr_hostname);
1262 n += do_print_resource_record(pw,
1263 _PATH_HOST_DSA_KEY_FILE, rr_hostname);
1264
1265 if (n == 0)
1266 fatal("no keys found.");
1267 exit(0);
1268 }
Damien Miller37876e92003-05-15 10:19:46 +10001269 }
Ben Lindstrom8282d6a2001-08-06 21:44:05 +00001270 if (reader_id != NULL) {
Ben Lindstrom6818bfb2001-08-06 21:40:04 +00001271#ifdef SMARTCARD
Ben Lindstrom8282d6a2001-08-06 21:44:05 +00001272 if (download)
1273 do_download(pw, reader_id);
1274 else
1275 do_upload(pw, reader_id);
Ben Lindstromffce1472001-08-06 21:57:31 +00001276#else /* SMARTCARD */
Ben Lindstrom6818bfb2001-08-06 21:40:04 +00001277 fatal("no support for smartcards.");
Ben Lindstromffce1472001-08-06 21:57:31 +00001278#endif /* SMARTCARD */
Ben Lindstrom8282d6a2001-08-06 21:44:05 +00001279 }
Damien Miller95def091999-11-25 00:26:21 +11001280
Darren Tucker019cefe2003-08-02 22:40:07 +10001281 if (do_gen_candidates) {
1282 FILE *out = fopen(out_file, "w");
Damien Miller787b2ec2003-11-21 23:56:47 +11001283
Darren Tucker019cefe2003-08-02 22:40:07 +10001284 if (out == NULL) {
1285 error("Couldn't open modulus candidate file \"%s\": %s",
1286 out_file, strerror(errno));
1287 return (1);
1288 }
Damien Miller3f54a9f2005-11-05 14:52:18 +11001289 if (bits == 0)
1290 bits = DEFAULT_BITS;
Darren Tucker019cefe2003-08-02 22:40:07 +10001291 if (gen_candidates(out, memory, bits, start) != 0)
Damien Miller15d72a02005-11-05 15:07:33 +11001292 fatal("modulus candidate generation failed");
Darren Tucker019cefe2003-08-02 22:40:07 +10001293
1294 return (0);
1295 }
1296
1297 if (do_screen_candidates) {
1298 FILE *in;
1299 FILE *out = fopen(out_file, "w");
1300
1301 if (have_identity && strcmp(identity_file, "-") != 0) {
1302 if ((in = fopen(identity_file, "r")) == NULL) {
1303 fatal("Couldn't open modulus candidate "
Damien Millera8e06ce2003-11-21 23:48:55 +11001304 "file \"%s\": %s", identity_file,
Darren Tucker019cefe2003-08-02 22:40:07 +10001305 strerror(errno));
1306 }
1307 } else
1308 in = stdin;
1309
1310 if (out == NULL) {
1311 fatal("Couldn't open moduli file \"%s\": %s",
1312 out_file, strerror(errno));
1313 }
1314 if (prime_test(in, out, trials, generator_wanted) != 0)
Damien Miller15d72a02005-11-05 15:07:33 +11001315 fatal("modulus screening failed");
Darren Tuckerf4220e62003-08-21 16:44:07 +10001316 return (0);
Darren Tucker019cefe2003-08-02 22:40:07 +10001317 }
1318
Damien Miller95def091999-11-25 00:26:21 +11001319 arc4random_stir();
1320
Damien Millerf14be5c2005-11-05 15:15:49 +11001321 if (key_type_name == NULL)
1322 key_type_name = "rsa";
1323
Damien Millere39cacc2000-11-29 12:18:44 +11001324 type = key_type_from_name(key_type_name);
1325 if (type == KEY_UNSPEC) {
1326 fprintf(stderr, "unknown key type %s\n", key_type_name);
1327 exit(1);
Damien Millereba71ba2000-04-29 23:57:08 +10001328 }
Damien Miller3f54a9f2005-11-05 14:52:18 +11001329 if (bits == 0)
1330 bits = (type == KEY_DSA) ? DEFAULT_BITS_DSA : DEFAULT_BITS;
Tim Rice660c3402005-11-28 17:45:32 -08001331 if (type == KEY_DSA && bits != 1024)
1332 fatal("DSA keys must be 1024 bits");
Darren Tucker3af2ac52005-11-29 13:10:24 +11001333 if (!quiet)
1334 printf("Generating public/private %s key pair.\n", key_type_name);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001335 private = key_generate(type, bits);
1336 if (private == NULL) {
1337 fprintf(stderr, "key_generate failed");
1338 exit(1);
1339 }
1340 public = key_from_private(private);
Damien Miller95def091999-11-25 00:26:21 +11001341
1342 if (!have_identity)
1343 ask_filename(pw, "Enter file in which to save the key");
1344
Damien Miller788f2122005-11-05 15:14:59 +11001345 /* Create ~/.ssh directory if it doesn't already exist. */
Ben Lindstrom226cfa02001-01-22 05:34:40 +00001346 snprintf(dotsshdir, sizeof dotsshdir, "%s/%s", pw->pw_dir, _PATH_SSH_USER_DIR);
Damien Miller95def091999-11-25 00:26:21 +11001347 if (strstr(identity_file, dotsshdir) != NULL &&
1348 stat(dotsshdir, &st) < 0) {
Damien Millerbe484b52000-07-15 14:14:16 +10001349 if (mkdir(dotsshdir, 0700) < 0)
Damien Miller95def091999-11-25 00:26:21 +11001350 error("Could not create directory '%s'.", dotsshdir);
1351 else if (!quiet)
1352 printf("Created directory '%s'.\n", dotsshdir);
1353 }
1354 /* If the file already exists, ask the user to confirm. */
1355 if (stat(identity_file, &st) >= 0) {
1356 char yesno[3];
1357 printf("%s already exists.\n", identity_file);
1358 printf("Overwrite (y/n)? ");
1359 fflush(stdout);
1360 if (fgets(yesno, sizeof(yesno), stdin) == NULL)
1361 exit(1);
1362 if (yesno[0] != 'y' && yesno[0] != 'Y')
1363 exit(1);
1364 }
1365 /* Ask for a passphrase (twice). */
1366 if (identity_passphrase)
1367 passphrase1 = xstrdup(identity_passphrase);
1368 else if (identity_new_passphrase)
1369 passphrase1 = xstrdup(identity_new_passphrase);
1370 else {
1371passphrase_again:
1372 passphrase1 =
Ben Lindstrom949974b2001-06-25 05:20:31 +00001373 read_passphrase("Enter passphrase (empty for no "
1374 "passphrase): ", RP_ALLOW_STDIN);
1375 passphrase2 = read_passphrase("Enter same passphrase again: ",
1376 RP_ALLOW_STDIN);
Damien Miller95def091999-11-25 00:26:21 +11001377 if (strcmp(passphrase1, passphrase2) != 0) {
Ben Lindstrom949974b2001-06-25 05:20:31 +00001378 /*
1379 * The passphrases do not match. Clear them and
1380 * retry.
1381 */
Damien Miller95def091999-11-25 00:26:21 +11001382 memset(passphrase1, 0, strlen(passphrase1));
1383 memset(passphrase2, 0, strlen(passphrase2));
1384 xfree(passphrase1);
1385 xfree(passphrase2);
1386 printf("Passphrases do not match. Try again.\n");
1387 goto passphrase_again;
1388 }
1389 /* Clear the other copy of the passphrase. */
1390 memset(passphrase2, 0, strlen(passphrase2));
1391 xfree(passphrase2);
1392 }
1393
Damien Miller95def091999-11-25 00:26:21 +11001394 if (identity_comment) {
1395 strlcpy(comment, identity_comment, sizeof(comment));
1396 } else {
Damien Miller4af51302000-04-16 11:18:38 +10001397 /* Create default commend field for the passphrase. */
Damien Miller95def091999-11-25 00:26:21 +11001398 snprintf(comment, sizeof comment, "%s@%s", pw->pw_name, hostname);
1399 }
1400
1401 /* Save the key with the given passphrase and comment. */
Ben Lindstromd0fca422001-03-26 13:44:06 +00001402 if (!key_save_private(private, identity_file, passphrase1, comment)) {
Ben Lindstrom15f33862001-04-16 02:00:02 +00001403 printf("Saving the key failed: %s.\n", identity_file);
Damien Miller95def091999-11-25 00:26:21 +11001404 memset(passphrase1, 0, strlen(passphrase1));
1405 xfree(passphrase1);
1406 exit(1);
1407 }
1408 /* Clear the passphrase. */
1409 memset(passphrase1, 0, strlen(passphrase1));
1410 xfree(passphrase1);
1411
1412 /* Clear the private key and the random number generator. */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001413 key_free(private);
Damien Miller95def091999-11-25 00:26:21 +11001414 arc4random_stir();
1415
1416 if (!quiet)
1417 printf("Your identification has been saved in %s.\n", identity_file);
1418
Damien Miller95def091999-11-25 00:26:21 +11001419 strlcat(identity_file, ".pub", sizeof(identity_file));
Ben Lindstrom5fc62702001-03-09 18:19:24 +00001420 fd = open(identity_file, O_WRONLY | O_CREAT | O_TRUNC, 0644);
1421 if (fd == -1) {
Damien Miller95def091999-11-25 00:26:21 +11001422 printf("Could not save your public key in %s\n", identity_file);
1423 exit(1);
1424 }
Ben Lindstrom5fc62702001-03-09 18:19:24 +00001425 f = fdopen(fd, "w");
1426 if (f == NULL) {
1427 printf("fdopen %s failed", identity_file);
1428 exit(1);
1429 }
Damien Millereba71ba2000-04-29 23:57:08 +10001430 if (!key_write(public, f))
1431 fprintf(stderr, "write key failed");
1432 fprintf(f, " %s\n", comment);
Damien Miller95def091999-11-25 00:26:21 +11001433 fclose(f);
1434
1435 if (!quiet) {
Ben Lindstromcfccef92001-03-13 04:57:58 +00001436 char *fp = key_fingerprint(public, SSH_FP_MD5, SSH_FP_HEX);
Damien Millereba71ba2000-04-29 23:57:08 +10001437 printf("Your public key has been saved in %s.\n",
1438 identity_file);
Damien Miller95def091999-11-25 00:26:21 +11001439 printf("The key fingerprint is:\n");
Ben Lindstromcfccef92001-03-13 04:57:58 +00001440 printf("%s %s\n", fp, comment);
1441 xfree(fp);
Damien Miller95def091999-11-25 00:26:21 +11001442 }
Damien Millereba71ba2000-04-29 23:57:08 +10001443
1444 key_free(public);
Damien Miller95def091999-11-25 00:26:21 +11001445 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001446}