blob: 1c506059c29490f02cf2f9b15651fe35c2e4804c [file] [log] [blame]
Darren Tucker39972492006-07-12 22:22:46 +10001/* $OpenBSD: ssh-keygen.c,v 1.148 2006/07/11 20:07:25 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>
Darren Tucker2ee50c52006-07-11 18:55:05 +100026#ifdef HAVE_PATHS_H
27# include <paths.h>
28#endif
Damien Miller9f2abc42006-07-10 20:53:08 +100029#include <pwd.h>
30
Damien Millerd4a8b7e1999-10-27 13:42:43 +100031#include "xmalloc.h"
Damien Millereba71ba2000-04-29 23:57:08 +100032#include "key.h"
Ben Lindstromd09fcf52001-03-29 00:29:54 +000033#include "rsa.h"
Damien Millereba71ba2000-04-29 23:57:08 +100034#include "authfile.h"
35#include "uuencode.h"
Damien Miller874d77b2000-10-14 16:23:11 +110036#include "buffer.h"
37#include "bufaux.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000038#include "pathnames.h"
39#include "log.h"
Darren Tuckere608ca22004-05-13 16:15:47 +100040#include "misc.h"
Damien Miller4b42d7f2005-03-01 21:48:35 +110041#include "match.h"
42#include "hostfile.h"
Damien Miller69996102006-07-10 20:53:31 +100043#include "dns.h"
Damien Miller874d77b2000-10-14 16:23:11 +110044
Ben Lindstrom8282d6a2001-08-06 21:44:05 +000045#ifdef SMARTCARD
Ben Lindstrom8282d6a2001-08-06 21:44:05 +000046#include "scard.h"
Ben Lindstrombcc18082001-08-06 21:59:25 +000047#endif
Ben Lindstromcd392282001-07-04 03:44:03 +000048
Damien Miller3f54a9f2005-11-05 14:52:18 +110049/* Number of bits in the RSA/DSA key. This value can be set on the command line. */
50#define DEFAULT_BITS 2048
51#define DEFAULT_BITS_DSA 1024
52u_int32_t bits = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100053
Damien Miller5428f641999-11-25 11:54:57 +110054/*
55 * Flag indicating that we just want to change the passphrase. This can be
56 * set on the command line.
57 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100058int change_passphrase = 0;
59
Damien Miller5428f641999-11-25 11:54:57 +110060/*
61 * Flag indicating that we just want to change the comment. This can be set
62 * on the command line.
63 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100064int change_comment = 0;
65
66int quiet = 0;
67
Damien Miller4b42d7f2005-03-01 21:48:35 +110068/* Flag indicating that we want to hash a known_hosts file */
69int hash_hosts = 0;
70/* Flag indicating that we want lookup a host in known_hosts file */
71int find_host = 0;
72/* Flag indicating that we want to delete a host from a known_hosts file */
73int delete_host = 0;
74
Damien Miller10f6f6b1999-11-17 17:29:08 +110075/* Flag indicating that we just want to see the key fingerprint */
76int print_fingerprint = 0;
Ben Lindstrom8fd372b2001-03-12 03:02:17 +000077int print_bubblebabble = 0;
Damien Miller10f6f6b1999-11-17 17:29:08 +110078
Damien Miller431f66b1999-11-21 18:31:57 +110079/* The identity file name, given on the command line or entered by the user. */
80char identity_file[1024];
81int have_identity = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100082
83/* This is set to the passphrase if given on the command line. */
84char *identity_passphrase = NULL;
85
86/* This is set to the new passphrase if given on the command line. */
87char *identity_new_passphrase = NULL;
88
89/* This is set to the new comment if given on the command line. */
90char *identity_comment = NULL;
91
Damien Millereba71ba2000-04-29 23:57:08 +100092/* Dump public key file in format used by real and the original SSH 2 */
93int convert_to_ssh2 = 0;
94int convert_from_ssh2 = 0;
95int print_public = 0;
Damien Miller37876e92003-05-15 10:19:46 +100096int print_generic = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +110097
Damien Millera41c8b12002-01-22 23:05:08 +110098char *key_type_name = NULL;
Damien Millereba71ba2000-04-29 23:57:08 +100099
Damien Miller431f66b1999-11-21 18:31:57 +1100100/* argv0 */
101extern char *__progname;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000102
Damien Millereba71ba2000-04-29 23:57:08 +1000103char hostname[MAXHOSTNAMELEN];
104
Darren Tucker770fc012004-05-13 16:24:32 +1000105/* moduli.c */
Damien Millerb089fb52005-05-26 12:16:18 +1000106int gen_candidates(FILE *, u_int32_t, u_int32_t, BIGNUM *);
Darren Tucker770fc012004-05-13 16:24:32 +1000107int prime_test(FILE *, FILE *, u_int32_t, u_int32_t);
108
Ben Lindstrombba81212001-06-25 05:01:22 +0000109static void
Damien Miller431f66b1999-11-21 18:31:57 +1100110ask_filename(struct passwd *pw, const char *prompt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000111{
Damien Miller95def091999-11-25 00:26:21 +1100112 char buf[1024];
Damien Millere39cacc2000-11-29 12:18:44 +1100113 char *name = NULL;
114
Damien Miller993dd552002-02-19 15:22:47 +1100115 if (key_type_name == NULL)
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000116 name = _PATH_SSH_CLIENT_ID_RSA;
Damien Miller90967402006-03-26 14:07:26 +1100117 else {
Damien Miller993dd552002-02-19 15:22:47 +1100118 switch (key_type_from_name(key_type_name)) {
119 case KEY_RSA1:
120 name = _PATH_SSH_CLIENT_IDENTITY;
121 break;
122 case KEY_DSA:
123 name = _PATH_SSH_CLIENT_ID_DSA;
124 break;
125 case KEY_RSA:
126 name = _PATH_SSH_CLIENT_ID_RSA;
127 break;
128 default:
129 fprintf(stderr, "bad key type");
130 exit(1);
131 break;
132 }
Damien Miller90967402006-03-26 14:07:26 +1100133 }
Damien Millere39cacc2000-11-29 12:18:44 +1100134 snprintf(identity_file, sizeof(identity_file), "%s/%s", pw->pw_dir, name);
Ben Lindstrom3deda8b2000-12-22 20:27:43 +0000135 fprintf(stderr, "%s (%s): ", prompt, identity_file);
Damien Miller95def091999-11-25 00:26:21 +1100136 if (fgets(buf, sizeof(buf), stdin) == NULL)
137 exit(1);
138 if (strchr(buf, '\n'))
139 *strchr(buf, '\n') = 0;
140 if (strcmp(buf, "") != 0)
141 strlcpy(identity_file, buf, sizeof(identity_file));
142 have_identity = 1;
Damien Miller10f6f6b1999-11-17 17:29:08 +1100143}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000144
Ben Lindstrombba81212001-06-25 05:01:22 +0000145static Key *
Ben Lindstromd78ae762001-06-05 20:35:09 +0000146load_identity(char *filename)
Damien Millereba71ba2000-04-29 23:57:08 +1000147{
Ben Lindstromd0fca422001-03-26 13:44:06 +0000148 char *pass;
149 Key *prv;
150
Ben Lindstroma3700052001-04-05 23:26:32 +0000151 prv = key_load_private(filename, "", NULL);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000152 if (prv == NULL) {
Ben Lindstromd78ae762001-06-05 20:35:09 +0000153 if (identity_passphrase)
154 pass = xstrdup(identity_passphrase);
155 else
Ben Lindstrom949974b2001-06-25 05:20:31 +0000156 pass = read_passphrase("Enter passphrase: ",
157 RP_ALLOW_STDIN);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000158 prv = key_load_private(filename, pass, NULL);
Damien Millereba71ba2000-04-29 23:57:08 +1000159 memset(pass, 0, strlen(pass));
160 xfree(pass);
161 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000162 return prv;
Damien Millereba71ba2000-04-29 23:57:08 +1000163}
164
Damien Miller874d77b2000-10-14 16:23:11 +1100165#define SSH_COM_PUBLIC_BEGIN "---- BEGIN SSH2 PUBLIC KEY ----"
Ben Lindstromcb72e4f2002-06-21 00:41:51 +0000166#define SSH_COM_PUBLIC_END "---- END SSH2 PUBLIC KEY ----"
Damien Miller874d77b2000-10-14 16:23:11 +1100167#define SSH_COM_PRIVATE_BEGIN "---- BEGIN SSH2 ENCRYPTED PRIVATE KEY ----"
Kevin Stevesef4eea92001-02-05 12:42:17 +0000168#define SSH_COM_PRIVATE_KEY_MAGIC 0x3f6ff9eb
Damien Millereba71ba2000-04-29 23:57:08 +1000169
Ben Lindstrombba81212001-06-25 05:01:22 +0000170static void
Damien Millereba71ba2000-04-29 23:57:08 +1000171do_convert_to_ssh2(struct passwd *pw)
172{
Ben Lindstrom46c264f2001-04-24 16:56:58 +0000173 Key *k;
Ben Lindstromc58ab022002-02-26 18:15:09 +0000174 u_int len;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000175 u_char *blob;
Damien Millereba71ba2000-04-29 23:57:08 +1000176 struct stat st;
177
178 if (!have_identity)
179 ask_filename(pw, "Enter file in which the key is");
180 if (stat(identity_file, &st) < 0) {
181 perror(identity_file);
182 exit(1);
183 }
Ben Lindstrom46c264f2001-04-24 16:56:58 +0000184 if ((k = key_load_public(identity_file, NULL)) == NULL) {
Ben Lindstromd78ae762001-06-05 20:35:09 +0000185 if ((k = load_identity(identity_file)) == NULL) {
Ben Lindstrom46c264f2001-04-24 16:56:58 +0000186 fprintf(stderr, "load failed\n");
187 exit(1);
188 }
Damien Millereba71ba2000-04-29 23:57:08 +1000189 }
Damien Millerdb274722003-05-14 13:45:22 +1000190 if (k->type == KEY_RSA1) {
191 fprintf(stderr, "version 1 keys are not supported\n");
192 exit(1);
193 }
Ben Lindstrom99a30f12001-09-18 05:49:14 +0000194 if (key_to_blob(k, &blob, &len) <= 0) {
195 fprintf(stderr, "key_to_blob failed\n");
196 exit(1);
197 }
Damien Miller874d77b2000-10-14 16:23:11 +1100198 fprintf(stdout, "%s\n", SSH_COM_PUBLIC_BEGIN);
Damien Millereba71ba2000-04-29 23:57:08 +1000199 fprintf(stdout,
Ben Lindstrom58d3b722002-06-23 21:28:13 +0000200 "Comment: \"%u-bit %s, converted from OpenSSH by %s@%s\"\n",
Ben Lindstrom46c264f2001-04-24 16:56:58 +0000201 key_size(k), key_type(k),
Damien Millereba71ba2000-04-29 23:57:08 +1000202 pw->pw_name, hostname);
203 dump_base64(stdout, blob, len);
Damien Miller874d77b2000-10-14 16:23:11 +1100204 fprintf(stdout, "%s\n", SSH_COM_PUBLIC_END);
Ben Lindstrom46c264f2001-04-24 16:56:58 +0000205 key_free(k);
Damien Millereba71ba2000-04-29 23:57:08 +1000206 xfree(blob);
207 exit(0);
208}
209
Ben Lindstrombba81212001-06-25 05:01:22 +0000210static void
Damien Miller874d77b2000-10-14 16:23:11 +1100211buffer_get_bignum_bits(Buffer *b, BIGNUM *value)
212{
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000213 u_int bignum_bits = buffer_get_int(b);
214 u_int bytes = (bignum_bits + 7) / 8;
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000215
Damien Miller874d77b2000-10-14 16:23:11 +1100216 if (buffer_len(b) < bytes)
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000217 fatal("buffer_get_bignum_bits: input buffer too small: "
218 "need %d have %d", bytes, buffer_len(b));
Damien Miller708d21c2002-01-22 23:18:15 +1100219 BN_bin2bn(buffer_ptr(b), bytes, value);
Damien Miller874d77b2000-10-14 16:23:11 +1100220 buffer_consume(b, bytes);
221}
222
Ben Lindstrombba81212001-06-25 05:01:22 +0000223static Key *
Ben Lindstrom90fd8142002-02-26 18:09:42 +0000224do_convert_private_ssh2_from_blob(u_char *blob, u_int blen)
Damien Miller874d77b2000-10-14 16:23:11 +1100225{
226 Buffer b;
Damien Miller874d77b2000-10-14 16:23:11 +1100227 Key *key = NULL;
Damien Miller874d77b2000-10-14 16:23:11 +1100228 char *type, *cipher;
Ben Lindstrom511d69e2001-07-04 05:05:27 +0000229 u_char *sig, data[] = "abcde12345";
Ben Lindstrome586c4c2001-06-25 05:04:58 +0000230 int magic, rlen, ktype, i1, i2, i3, i4;
231 u_int slen;
232 u_long e;
Damien Miller874d77b2000-10-14 16:23:11 +1100233
234 buffer_init(&b);
235 buffer_append(&b, blob, blen);
236
237 magic = buffer_get_int(&b);
238 if (magic != SSH_COM_PRIVATE_KEY_MAGIC) {
239 error("bad magic 0x%x != 0x%x", magic, SSH_COM_PRIVATE_KEY_MAGIC);
240 buffer_free(&b);
241 return NULL;
242 }
Ben Lindstrom34f91882001-06-25 04:47:54 +0000243 i1 = buffer_get_int(&b);
Damien Miller874d77b2000-10-14 16:23:11 +1100244 type = buffer_get_string(&b, NULL);
245 cipher = buffer_get_string(&b, NULL);
Ben Lindstrom34f91882001-06-25 04:47:54 +0000246 i2 = buffer_get_int(&b);
247 i3 = buffer_get_int(&b);
248 i4 = buffer_get_int(&b);
249 debug("ignore (%d %d %d %d)", i1,i2,i3,i4);
Damien Miller874d77b2000-10-14 16:23:11 +1100250 if (strcmp(cipher, "none") != 0) {
251 error("unsupported cipher %s", cipher);
252 xfree(cipher);
253 buffer_free(&b);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000254 xfree(type);
Damien Miller874d77b2000-10-14 16:23:11 +1100255 return NULL;
256 }
257 xfree(cipher);
258
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000259 if (strstr(type, "dsa")) {
260 ktype = KEY_DSA;
261 } else if (strstr(type, "rsa")) {
262 ktype = KEY_RSA;
263 } else {
Darren Tucker7cfeecf2005-01-20 10:56:31 +1100264 buffer_free(&b);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000265 xfree(type);
Damien Miller874d77b2000-10-14 16:23:11 +1100266 return NULL;
267 }
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000268 key = key_new_private(ktype);
269 xfree(type);
270
271 switch (key->type) {
272 case KEY_DSA:
273 buffer_get_bignum_bits(&b, key->dsa->p);
274 buffer_get_bignum_bits(&b, key->dsa->g);
275 buffer_get_bignum_bits(&b, key->dsa->q);
276 buffer_get_bignum_bits(&b, key->dsa->pub_key);
277 buffer_get_bignum_bits(&b, key->dsa->priv_key);
278 break;
279 case KEY_RSA:
Ben Lindstrom34f91882001-06-25 04:47:54 +0000280 e = buffer_get_char(&b);
281 debug("e %lx", e);
282 if (e < 30) {
283 e <<= 8;
284 e += buffer_get_char(&b);
285 debug("e %lx", e);
286 e <<= 8;
287 e += buffer_get_char(&b);
288 debug("e %lx", e);
289 }
290 if (!BN_set_word(key->rsa->e, e)) {
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000291 buffer_free(&b);
292 key_free(key);
293 return NULL;
294 }
295 buffer_get_bignum_bits(&b, key->rsa->d);
296 buffer_get_bignum_bits(&b, key->rsa->n);
297 buffer_get_bignum_bits(&b, key->rsa->iqmp);
298 buffer_get_bignum_bits(&b, key->rsa->q);
299 buffer_get_bignum_bits(&b, key->rsa->p);
Ben Lindstromf7297dd2001-07-04 05:02:23 +0000300 rsa_generate_additional_parameters(key->rsa);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000301 break;
302 }
Damien Miller874d77b2000-10-14 16:23:11 +1100303 rlen = buffer_len(&b);
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +0000304 if (rlen != 0)
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000305 error("do_convert_private_ssh2_from_blob: "
306 "remaining bytes in key blob %d", rlen);
Damien Miller874d77b2000-10-14 16:23:11 +1100307 buffer_free(&b);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000308
Ben Lindstrome586c4c2001-06-25 05:04:58 +0000309 /* try the key */
310 key_sign(key, &sig, &slen, data, sizeof(data));
311 key_verify(key, sig, slen, data, sizeof(data));
312 xfree(sig);
Damien Miller874d77b2000-10-14 16:23:11 +1100313 return key;
314}
315
Damien Miller8056a9d2006-03-15 12:05:40 +1100316static int
317get_line(FILE *fp, char *line, size_t len)
318{
319 int c;
320 size_t pos = 0;
321
322 line[0] = '\0';
323 while ((c = fgetc(fp)) != EOF) {
324 if (pos >= len - 1) {
325 fprintf(stderr, "input line too long.\n");
326 exit(1);
327 }
Damien Miller90967402006-03-26 14:07:26 +1100328 switch (c) {
Damien Miller8056a9d2006-03-15 12:05:40 +1100329 case '\r':
330 c = fgetc(fp);
331 if (c != EOF && c != '\n' && ungetc(c, fp) == EOF) {
332 fprintf(stderr, "unget: %s\n", strerror(errno));
333 exit(1);
334 }
335 return pos;
336 case '\n':
337 return pos;
338 }
339 line[pos++] = c;
340 line[pos] = '\0';
341 }
Damien Millere23209f2006-03-31 23:13:35 +1100342 if (c == EOF)
343 return -1;
Damien Miller8056a9d2006-03-15 12:05:40 +1100344 return pos;
345}
346
Ben Lindstrombba81212001-06-25 05:01:22 +0000347static void
Damien Millereba71ba2000-04-29 23:57:08 +1000348do_convert_from_ssh2(struct passwd *pw)
349{
350 Key *k;
351 int blen;
Ben Lindstrom155b9812002-04-02 20:26:26 +0000352 u_int len;
Damien Miller8056a9d2006-03-15 12:05:40 +1100353 char line[1024];
Ben Lindstrom9e0ddd42001-09-18 05:41:19 +0000354 u_char blob[8096];
Damien Millereba71ba2000-04-29 23:57:08 +1000355 char encoded[8096];
356 struct stat st;
Damien Miller874d77b2000-10-14 16:23:11 +1100357 int escaped = 0, private = 0, ok;
Damien Millereba71ba2000-04-29 23:57:08 +1000358 FILE *fp;
359
360 if (!have_identity)
361 ask_filename(pw, "Enter file in which the key is");
362 if (stat(identity_file, &st) < 0) {
363 perror(identity_file);
364 exit(1);
365 }
366 fp = fopen(identity_file, "r");
367 if (fp == NULL) {
368 perror(identity_file);
369 exit(1);
370 }
371 encoded[0] = '\0';
Damien Miller8056a9d2006-03-15 12:05:40 +1100372 while ((blen = get_line(fp, line, sizeof(line))) != -1) {
373 if (line[blen - 1] == '\\')
Damien Miller30c3d422000-05-09 11:02:59 +1000374 escaped++;
Damien Millereba71ba2000-04-29 23:57:08 +1000375 if (strncmp(line, "----", 4) == 0 ||
376 strstr(line, ": ") != NULL) {
Damien Miller874d77b2000-10-14 16:23:11 +1100377 if (strstr(line, SSH_COM_PRIVATE_BEGIN) != NULL)
378 private = 1;
Ben Lindstrome586c4c2001-06-25 05:04:58 +0000379 if (strstr(line, " END ") != NULL) {
380 break;
381 }
Ben Lindstrom30358602001-04-24 16:59:28 +0000382 /* fprintf(stderr, "ignore: %s", line); */
Damien Millereba71ba2000-04-29 23:57:08 +1000383 continue;
384 }
Damien Miller30c3d422000-05-09 11:02:59 +1000385 if (escaped) {
386 escaped--;
Ben Lindstrom30358602001-04-24 16:59:28 +0000387 /* fprintf(stderr, "escaped: %s", line); */
Damien Miller30c3d422000-05-09 11:02:59 +1000388 continue;
Damien Millereba71ba2000-04-29 23:57:08 +1000389 }
Damien Millereba71ba2000-04-29 23:57:08 +1000390 strlcat(encoded, line, sizeof(encoded));
391 }
Ben Lindstrom155b9812002-04-02 20:26:26 +0000392 len = strlen(encoded);
393 if (((len % 4) == 3) &&
394 (encoded[len-1] == '=') &&
395 (encoded[len-2] == '=') &&
396 (encoded[len-3] == '='))
397 encoded[len-3] = '\0';
Damien Miller4a8ed542002-01-22 23:33:31 +1100398 blen = uudecode(encoded, blob, sizeof(blob));
Damien Millereba71ba2000-04-29 23:57:08 +1000399 if (blen < 0) {
400 fprintf(stderr, "uudecode failed.\n");
401 exit(1);
402 }
Damien Miller874d77b2000-10-14 16:23:11 +1100403 k = private ?
404 do_convert_private_ssh2_from_blob(blob, blen) :
Damien Miller0bc1bd82000-11-13 22:57:25 +1100405 key_from_blob(blob, blen);
Damien Miller874d77b2000-10-14 16:23:11 +1100406 if (k == NULL) {
407 fprintf(stderr, "decode blob failed.\n");
408 exit(1);
409 }
410 ok = private ?
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000411 (k->type == KEY_DSA ?
412 PEM_write_DSAPrivateKey(stdout, k->dsa, NULL, NULL, 0, NULL, NULL) :
413 PEM_write_RSAPrivateKey(stdout, k->rsa, NULL, NULL, 0, NULL, NULL)) :
Damien Miller874d77b2000-10-14 16:23:11 +1100414 key_write(k, stdout);
415 if (!ok) {
416 fprintf(stderr, "key write failed");
417 exit(1);
418 }
Damien Millereba71ba2000-04-29 23:57:08 +1000419 key_free(k);
Damien Millera1db12b2002-01-22 23:20:15 +1100420 if (!private)
421 fprintf(stdout, "\n");
Damien Millereba71ba2000-04-29 23:57:08 +1000422 fclose(fp);
423 exit(0);
424}
425
Ben Lindstrombba81212001-06-25 05:01:22 +0000426static void
Damien Millereba71ba2000-04-29 23:57:08 +1000427do_print_public(struct passwd *pw)
428{
Ben Lindstromd0fca422001-03-26 13:44:06 +0000429 Key *prv;
Damien Millereba71ba2000-04-29 23:57:08 +1000430 struct stat st;
431
432 if (!have_identity)
433 ask_filename(pw, "Enter file in which the key is");
434 if (stat(identity_file, &st) < 0) {
435 perror(identity_file);
436 exit(1);
437 }
Ben Lindstromd78ae762001-06-05 20:35:09 +0000438 prv = load_identity(identity_file);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000439 if (prv == NULL) {
Damien Millereba71ba2000-04-29 23:57:08 +1000440 fprintf(stderr, "load failed\n");
441 exit(1);
442 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000443 if (!key_write(prv, stdout))
Damien Millereba71ba2000-04-29 23:57:08 +1000444 fprintf(stderr, "key_write failed");
Ben Lindstromd0fca422001-03-26 13:44:06 +0000445 key_free(prv);
Damien Millereba71ba2000-04-29 23:57:08 +1000446 fprintf(stdout, "\n");
447 exit(0);
448}
449
Ben Lindstrom6818bfb2001-08-06 21:40:04 +0000450#ifdef SMARTCARD
Ben Lindstromcd392282001-07-04 03:44:03 +0000451static void
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000452do_upload(struct passwd *pw, const char *sc_reader_id)
Ben Lindstromcd392282001-07-04 03:44:03 +0000453{
Ben Lindstromcd392282001-07-04 03:44:03 +0000454 Key *prv = NULL;
455 struct stat st;
Ben Lindstrom70e3ad82002-03-22 03:33:43 +0000456 int ret;
Ben Lindstromcd392282001-07-04 03:44:03 +0000457
458 if (!have_identity)
459 ask_filename(pw, "Enter file in which the key is");
460 if (stat(identity_file, &st) < 0) {
461 perror(identity_file);
Ben Lindstrom70e3ad82002-03-22 03:33:43 +0000462 exit(1);
Ben Lindstromcd392282001-07-04 03:44:03 +0000463 }
464 prv = load_identity(identity_file);
465 if (prv == NULL) {
466 error("load failed");
Ben Lindstrom70e3ad82002-03-22 03:33:43 +0000467 exit(1);
Ben Lindstromcd392282001-07-04 03:44:03 +0000468 }
Ben Lindstrom70e3ad82002-03-22 03:33:43 +0000469 ret = sc_put_key(prv, sc_reader_id);
470 key_free(prv);
471 if (ret < 0)
472 exit(1);
Damien Miller996acd22003-04-09 20:59:48 +1000473 logit("loading key done");
Ben Lindstrom70e3ad82002-03-22 03:33:43 +0000474 exit(0);
Ben Lindstromcd392282001-07-04 03:44:03 +0000475}
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000476
477static void
478do_download(struct passwd *pw, const char *sc_reader_id)
479{
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000480 Key **keys = NULL;
481 int i;
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000482
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000483 keys = sc_get_keys(sc_reader_id, NULL);
484 if (keys == NULL)
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000485 fatal("cannot read public key from smartcard");
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000486 for (i = 0; keys[i]; i++) {
487 key_write(keys[i], stdout);
488 key_free(keys[i]);
489 fprintf(stdout, "\n");
490 }
491 xfree(keys);
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000492 exit(0);
493}
Ben Lindstromffce1472001-08-06 21:57:31 +0000494#endif /* SMARTCARD */
Ben Lindstromcd392282001-07-04 03:44:03 +0000495
Ben Lindstrombba81212001-06-25 05:01:22 +0000496static void
Damien Miller10f6f6b1999-11-17 17:29:08 +1100497do_fingerprint(struct passwd *pw)
498{
Damien Miller98c7ad62000-03-09 21:27:49 +1100499 FILE *f;
Damien Millereba71ba2000-04-29 23:57:08 +1000500 Key *public;
Ben Lindstrom8fd372b2001-03-12 03:02:17 +0000501 char *comment = NULL, *cp, *ep, line[16*1024], *fp;
Ben Lindstrom65366a82001-12-06 16:32:47 +0000502 int i, skip = 0, num = 1, invalid = 1;
503 enum fp_rep rep;
504 enum fp_type fptype;
Damien Miller95def091999-11-25 00:26:21 +1100505 struct stat st;
Damien Miller10f6f6b1999-11-17 17:29:08 +1100506
Ben Lindstromd0fca422001-03-26 13:44:06 +0000507 fptype = print_bubblebabble ? SSH_FP_SHA1 : SSH_FP_MD5;
508 rep = print_bubblebabble ? SSH_FP_BUBBLEBABBLE : SSH_FP_HEX;
Ben Lindstrom8fd372b2001-03-12 03:02:17 +0000509
Damien Miller95def091999-11-25 00:26:21 +1100510 if (!have_identity)
511 ask_filename(pw, "Enter file in which the key is");
512 if (stat(identity_file, &st) < 0) {
513 perror(identity_file);
514 exit(1);
515 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000516 public = key_load_public(identity_file, &comment);
517 if (public != NULL) {
518 fp = key_fingerprint(public, fptype, rep);
Ben Lindstrom58d3b722002-06-23 21:28:13 +0000519 printf("%u %s %s\n", key_size(public), fp, comment);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100520 key_free(public);
521 xfree(comment);
Ben Lindstrom8fd372b2001-03-12 03:02:17 +0000522 xfree(fp);
Damien Miller98c7ad62000-03-09 21:27:49 +1100523 exit(0);
524 }
Damien Miller40b59852006-06-13 13:00:25 +1000525 if (comment) {
Ben Lindstromd0fca422001-03-26 13:44:06 +0000526 xfree(comment);
Damien Miller40b59852006-06-13 13:00:25 +1000527 comment = NULL;
528 }
Damien Miller98c7ad62000-03-09 21:27:49 +1100529
530 f = fopen(identity_file, "r");
531 if (f != NULL) {
Damien Miller98c7ad62000-03-09 21:27:49 +1100532 while (fgets(line, sizeof(line), f)) {
533 i = strlen(line) - 1;
534 if (line[i] != '\n') {
535 error("line %d too long: %.40s...", num, line);
536 skip = 1;
537 continue;
Damien Miller95def091999-11-25 00:26:21 +1100538 }
Damien Miller98c7ad62000-03-09 21:27:49 +1100539 num++;
540 if (skip) {
541 skip = 0;
542 continue;
543 }
544 line[i] = '\0';
545
546 /* Skip leading whitespace, empty and comment lines. */
547 for (cp = line; *cp == ' ' || *cp == '\t'; cp++)
548 ;
549 if (!*cp || *cp == '\n' || *cp == '#')
550 continue ;
551 i = strtol(cp, &ep, 10);
552 if (i == 0 || ep == NULL || (*ep != ' ' && *ep != '\t')) {
553 int quoted = 0;
554 comment = cp;
Ben Lindstrom58d3b722002-06-23 21:28:13 +0000555 for (; *cp && (quoted || (*cp != ' ' &&
556 *cp != '\t')); cp++) {
Damien Miller98c7ad62000-03-09 21:27:49 +1100557 if (*cp == '\\' && cp[1] == '"')
558 cp++; /* Skip both */
559 else if (*cp == '"')
560 quoted = !quoted;
561 }
562 if (!*cp)
563 continue;
564 *cp++ = '\0';
565 }
566 ep = cp;
Ben Lindstrom2941f112000-12-29 16:50:13 +0000567 public = key_new(KEY_RSA1);
568 if (key_read(public, &cp) != 1) {
569 cp = ep;
570 key_free(public);
571 public = key_new(KEY_UNSPEC);
572 if (key_read(public, &cp) != 1) {
573 key_free(public);
574 continue;
575 }
Damien Miller98c7ad62000-03-09 21:27:49 +1100576 }
Ben Lindstrom2941f112000-12-29 16:50:13 +0000577 comment = *cp ? cp : comment;
Ben Lindstromd0fca422001-03-26 13:44:06 +0000578 fp = key_fingerprint(public, fptype, rep);
Ben Lindstrom58d3b722002-06-23 21:28:13 +0000579 printf("%u %s %s\n", key_size(public), fp,
Ben Lindstrom2941f112000-12-29 16:50:13 +0000580 comment ? comment : "no comment");
Ben Lindstrom8fd372b2001-03-12 03:02:17 +0000581 xfree(fp);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000582 key_free(public);
Ben Lindstrom2941f112000-12-29 16:50:13 +0000583 invalid = 0;
Damien Miller95def091999-11-25 00:26:21 +1100584 }
Damien Miller98c7ad62000-03-09 21:27:49 +1100585 fclose(f);
Damien Miller95def091999-11-25 00:26:21 +1100586 }
Damien Miller98c7ad62000-03-09 21:27:49 +1100587 if (invalid) {
Damien Millereb5fec62001-11-12 10:52:44 +1100588 printf("%s is not a public key file.\n", identity_file);
Damien Miller98c7ad62000-03-09 21:27:49 +1100589 exit(1);
590 }
Damien Miller95def091999-11-25 00:26:21 +1100591 exit(0);
Damien Miller10f6f6b1999-11-17 17:29:08 +1100592}
593
Damien Miller4b42d7f2005-03-01 21:48:35 +1100594static void
595print_host(FILE *f, char *name, Key *public, int hash)
596{
597 if (hash && (name = host_hash(name, NULL, 0)) == NULL)
598 fatal("hash_host failed");
599 fprintf(f, "%s ", name);
600 if (!key_write(public, f))
601 fatal("key_write failed");
602 fprintf(f, "\n");
603}
604
605static void
606do_known_hosts(struct passwd *pw, const char *name)
607{
608 FILE *in, *out = stdout;
609 Key *public;
610 char *cp, *cp2, *kp, *kp2;
611 char line[16*1024], tmp[MAXPATHLEN], old[MAXPATHLEN];
612 int c, i, skip = 0, inplace = 0, num = 0, invalid = 0, has_unhashed = 0;
613
614 if (!have_identity) {
615 cp = tilde_expand_filename(_PATH_SSH_USER_HOSTFILE, pw->pw_uid);
616 if (strlcpy(identity_file, cp, sizeof(identity_file)) >=
617 sizeof(identity_file))
618 fatal("Specified known hosts path too long");
619 xfree(cp);
620 have_identity = 1;
621 }
622 if ((in = fopen(identity_file, "r")) == NULL)
623 fatal("fopen: %s", strerror(errno));
624
625 /*
626 * Find hosts goes to stdout, hash and deletions happen in-place
627 * A corner case is ssh-keygen -HF foo, which should go to stdout
628 */
629 if (!find_host && (hash_hosts || delete_host)) {
630 if (strlcpy(tmp, identity_file, sizeof(tmp)) >= sizeof(tmp) ||
631 strlcat(tmp, ".XXXXXXXXXX", sizeof(tmp)) >= sizeof(tmp) ||
632 strlcpy(old, identity_file, sizeof(old)) >= sizeof(old) ||
633 strlcat(old, ".old", sizeof(old)) >= sizeof(old))
634 fatal("known_hosts path too long");
635 umask(077);
636 if ((c = mkstemp(tmp)) == -1)
637 fatal("mkstemp: %s", strerror(errno));
638 if ((out = fdopen(c, "w")) == NULL) {
639 c = errno;
640 unlink(tmp);
641 fatal("fdopen: %s", strerror(c));
642 }
643 inplace = 1;
644 }
645
646 while (fgets(line, sizeof(line), in)) {
647 num++;
648 i = strlen(line) - 1;
649 if (line[i] != '\n') {
650 error("line %d too long: %.40s...", num, line);
651 skip = 1;
652 invalid = 1;
653 continue;
654 }
655 if (skip) {
656 skip = 0;
657 continue;
658 }
659 line[i] = '\0';
660
661 /* Skip leading whitespace, empty and comment lines. */
662 for (cp = line; *cp == ' ' || *cp == '\t'; cp++)
663 ;
664 if (!*cp || *cp == '\n' || *cp == '#') {
665 if (inplace)
666 fprintf(out, "%s\n", cp);
667 continue;
668 }
669 /* Find the end of the host name portion. */
670 for (kp = cp; *kp && *kp != ' ' && *kp != '\t'; kp++)
671 ;
672 if (*kp == '\0' || *(kp + 1) == '\0') {
673 error("line %d missing key: %.40s...",
674 num, line);
675 invalid = 1;
676 continue;
677 }
678 *kp++ = '\0';
679 kp2 = kp;
680
681 public = key_new(KEY_RSA1);
682 if (key_read(public, &kp) != 1) {
683 kp = kp2;
684 key_free(public);
685 public = key_new(KEY_UNSPEC);
686 if (key_read(public, &kp) != 1) {
687 error("line %d invalid key: %.40s...",
688 num, line);
689 key_free(public);
690 invalid = 1;
691 continue;
692 }
693 }
694
695 if (*cp == HASH_DELIM) {
696 if (find_host || delete_host) {
697 cp2 = host_hash(name, cp, strlen(cp));
698 if (cp2 == NULL) {
699 error("line %d: invalid hashed "
700 "name: %.64s...", num, line);
701 invalid = 1;
702 continue;
703 }
704 c = (strcmp(cp2, cp) == 0);
705 if (find_host && c) {
706 printf("# Host %s found: "
707 "line %d type %s\n", name,
708 num, key_type(public));
709 print_host(out, cp, public, 0);
710 }
711 if (delete_host && !c)
712 print_host(out, cp, public, 0);
713 } else if (hash_hosts)
714 print_host(out, cp, public, 0);
715 } else {
716 if (find_host || delete_host) {
717 c = (match_hostname(name, cp,
718 strlen(cp)) == 1);
719 if (find_host && c) {
720 printf("# Host %s found: "
721 "line %d type %s\n", name,
722 num, key_type(public));
723 print_host(out, cp, public, hash_hosts);
724 }
725 if (delete_host && !c)
726 print_host(out, cp, public, 0);
727 } else if (hash_hosts) {
Darren Tucker47eede72005-03-14 23:08:12 +1100728 for (cp2 = strsep(&cp, ",");
Damien Miller4b42d7f2005-03-01 21:48:35 +1100729 cp2 != NULL && *cp2 != '\0';
Damien Miller89eac802005-03-02 12:33:04 +1100730 cp2 = strsep(&cp, ",")) {
731 if (strcspn(cp2, "*?!") != strlen(cp2))
732 fprintf(stderr, "Warning: "
733 "ignoring host name with "
734 "metacharacters: %.64s\n",
735 cp2);
736 else
737 print_host(out, cp2, public, 1);
738 }
Damien Miller4b42d7f2005-03-01 21:48:35 +1100739 has_unhashed = 1;
740 }
741 }
742 key_free(public);
743 }
744 fclose(in);
745
746 if (invalid) {
747 fprintf(stderr, "%s is not a valid known_host file.\n",
748 identity_file);
749 if (inplace) {
750 fprintf(stderr, "Not replacing existing known_hosts "
Darren Tucker9f438a92005-03-14 23:09:18 +1100751 "file because of errors\n");
Damien Miller4b42d7f2005-03-01 21:48:35 +1100752 fclose(out);
753 unlink(tmp);
754 }
755 exit(1);
756 }
757
758 if (inplace) {
759 fclose(out);
760
761 /* Backup existing file */
762 if (unlink(old) == -1 && errno != ENOENT)
763 fatal("unlink %.100s: %s", old, strerror(errno));
764 if (link(identity_file, old) == -1)
765 fatal("link %.100s to %.100s: %s", identity_file, old,
766 strerror(errno));
767 /* Move new one into place */
768 if (rename(tmp, identity_file) == -1) {
769 error("rename\"%s\" to \"%s\": %s", tmp, identity_file,
770 strerror(errno));
771 unlink(tmp);
772 unlink(old);
773 exit(1);
774 }
775
776 fprintf(stderr, "%s updated.\n", identity_file);
777 fprintf(stderr, "Original contents retained as %s\n", old);
778 if (has_unhashed) {
779 fprintf(stderr, "WARNING: %s contains unhashed "
780 "entries\n", old);
781 fprintf(stderr, "Delete this file to ensure privacy "
Damien Miller0dc1bef2005-07-17 17:22:45 +1000782 "of hostnames\n");
Damien Miller4b42d7f2005-03-01 21:48:35 +1100783 }
784 }
785
786 exit(0);
787}
788
Damien Miller95def091999-11-25 00:26:21 +1100789/*
790 * Perform changing a passphrase. The argument is the passwd structure
791 * for the current user.
792 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000793static void
Damien Miller10f6f6b1999-11-17 17:29:08 +1100794do_change_passphrase(struct passwd *pw)
795{
Damien Miller95def091999-11-25 00:26:21 +1100796 char *comment;
797 char *old_passphrase, *passphrase1, *passphrase2;
798 struct stat st;
Damien Millereba71ba2000-04-29 23:57:08 +1000799 Key *private;
Damien Miller10f6f6b1999-11-17 17:29:08 +1100800
Damien Miller95def091999-11-25 00:26:21 +1100801 if (!have_identity)
802 ask_filename(pw, "Enter file in which the key is");
Damien Miller95def091999-11-25 00:26:21 +1100803 if (stat(identity_file, &st) < 0) {
804 perror(identity_file);
805 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000806 }
Damien Miller95def091999-11-25 00:26:21 +1100807 /* Try to load the file with empty passphrase. */
Ben Lindstromd0fca422001-03-26 13:44:06 +0000808 private = key_load_private(identity_file, "", &comment);
809 if (private == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100810 if (identity_passphrase)
811 old_passphrase = xstrdup(identity_passphrase);
812 else
Ben Lindstrom949974b2001-06-25 05:20:31 +0000813 old_passphrase =
814 read_passphrase("Enter old passphrase: ",
815 RP_ALLOW_STDIN);
816 private = key_load_private(identity_file, old_passphrase,
817 &comment);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000818 memset(old_passphrase, 0, strlen(old_passphrase));
819 xfree(old_passphrase);
820 if (private == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100821 printf("Bad passphrase.\n");
822 exit(1);
823 }
Damien Miller95def091999-11-25 00:26:21 +1100824 }
825 printf("Key has comment '%s'\n", comment);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000826
Damien Miller95def091999-11-25 00:26:21 +1100827 /* Ask the new passphrase (twice). */
828 if (identity_new_passphrase) {
829 passphrase1 = xstrdup(identity_new_passphrase);
830 passphrase2 = NULL;
831 } else {
832 passphrase1 =
Ben Lindstrom949974b2001-06-25 05:20:31 +0000833 read_passphrase("Enter new passphrase (empty for no "
834 "passphrase): ", RP_ALLOW_STDIN);
835 passphrase2 = read_passphrase("Enter same passphrase again: ",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100836 RP_ALLOW_STDIN);
Damien Miller95def091999-11-25 00:26:21 +1100837
838 /* Verify that they are the same. */
839 if (strcmp(passphrase1, passphrase2) != 0) {
840 memset(passphrase1, 0, strlen(passphrase1));
841 memset(passphrase2, 0, strlen(passphrase2));
842 xfree(passphrase1);
843 xfree(passphrase2);
844 printf("Pass phrases do not match. Try again.\n");
845 exit(1);
846 }
847 /* Destroy the other copy. */
848 memset(passphrase2, 0, strlen(passphrase2));
849 xfree(passphrase2);
850 }
851
852 /* Save the file using the new passphrase. */
Ben Lindstromd0fca422001-03-26 13:44:06 +0000853 if (!key_save_private(private, identity_file, passphrase1, comment)) {
Ben Lindstrom15f33862001-04-16 02:00:02 +0000854 printf("Saving the key failed: %s.\n", identity_file);
Damien Miller95def091999-11-25 00:26:21 +1100855 memset(passphrase1, 0, strlen(passphrase1));
856 xfree(passphrase1);
Damien Millereba71ba2000-04-29 23:57:08 +1000857 key_free(private);
Damien Miller95def091999-11-25 00:26:21 +1100858 xfree(comment);
859 exit(1);
860 }
861 /* Destroy the passphrase and the copy of the key in memory. */
862 memset(passphrase1, 0, strlen(passphrase1));
863 xfree(passphrase1);
Damien Millereba71ba2000-04-29 23:57:08 +1000864 key_free(private); /* Destroys contents */
Damien Miller95def091999-11-25 00:26:21 +1100865 xfree(comment);
866
867 printf("Your identification has been saved with the new passphrase.\n");
868 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000869}
870
Damien Miller37876e92003-05-15 10:19:46 +1000871/*
872 * Print the SSHFP RR.
873 */
Damien Millercb314822006-03-26 13:48:01 +1100874static int
875do_print_resource_record(struct passwd *pw, char *fname, char *hname)
Damien Miller37876e92003-05-15 10:19:46 +1000876{
877 Key *public;
878 char *comment = NULL;
879 struct stat st;
880
Damien Millercb314822006-03-26 13:48:01 +1100881 if (fname == NULL)
Damien Miller37876e92003-05-15 10:19:46 +1000882 ask_filename(pw, "Enter file in which the key is");
Damien Millercb314822006-03-26 13:48:01 +1100883 if (stat(fname, &st) < 0) {
884 if (errno == ENOENT)
885 return 0;
886 perror(fname);
Damien Miller37876e92003-05-15 10:19:46 +1000887 exit(1);
888 }
Damien Millercb314822006-03-26 13:48:01 +1100889 public = key_load_public(fname, &comment);
Damien Miller37876e92003-05-15 10:19:46 +1000890 if (public != NULL) {
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000891 export_dns_rr(hname, public, stdout, print_generic);
Damien Miller37876e92003-05-15 10:19:46 +1000892 key_free(public);
893 xfree(comment);
Damien Millercb314822006-03-26 13:48:01 +1100894 return 1;
Damien Miller37876e92003-05-15 10:19:46 +1000895 }
896 if (comment)
897 xfree(comment);
898
Damien Millercb314822006-03-26 13:48:01 +1100899 printf("failed to read v2 public key from %s.\n", fname);
Damien Miller37876e92003-05-15 10:19:46 +1000900 exit(1);
901}
Damien Miller37876e92003-05-15 10:19:46 +1000902
Damien Miller95def091999-11-25 00:26:21 +1100903/*
904 * Change the comment of a private key file.
905 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000906static void
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000907do_change_comment(struct passwd *pw)
908{
Ben Lindstrom5fc62702001-03-09 18:19:24 +0000909 char new_comment[1024], *comment, *passphrase;
Ben Lindstromd0fca422001-03-26 13:44:06 +0000910 Key *private;
911 Key *public;
Damien Miller95def091999-11-25 00:26:21 +1100912 struct stat st;
913 FILE *f;
Ben Lindstrom5fc62702001-03-09 18:19:24 +0000914 int fd;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000915
Damien Miller95def091999-11-25 00:26:21 +1100916 if (!have_identity)
917 ask_filename(pw, "Enter file in which the key is");
Damien Miller95def091999-11-25 00:26:21 +1100918 if (stat(identity_file, &st) < 0) {
919 perror(identity_file);
920 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000921 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000922 private = key_load_private(identity_file, "", &comment);
923 if (private == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100924 if (identity_passphrase)
925 passphrase = xstrdup(identity_passphrase);
926 else if (identity_new_passphrase)
927 passphrase = xstrdup(identity_new_passphrase);
928 else
Ben Lindstrom949974b2001-06-25 05:20:31 +0000929 passphrase = read_passphrase("Enter passphrase: ",
930 RP_ALLOW_STDIN);
Damien Miller95def091999-11-25 00:26:21 +1100931 /* Try to load using the passphrase. */
Ben Lindstromd0fca422001-03-26 13:44:06 +0000932 private = key_load_private(identity_file, passphrase, &comment);
933 if (private == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100934 memset(passphrase, 0, strlen(passphrase));
935 xfree(passphrase);
936 printf("Bad passphrase.\n");
937 exit(1);
938 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000939 } else {
940 passphrase = xstrdup("");
Damien Miller95def091999-11-25 00:26:21 +1100941 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000942 if (private->type != KEY_RSA1) {
943 fprintf(stderr, "Comments are only supported for RSA1 keys.\n");
944 key_free(private);
945 exit(1);
Damien Miller9f0f5c62001-12-21 14:45:46 +1100946 }
Damien Miller95def091999-11-25 00:26:21 +1100947 printf("Key now has comment '%s'\n", comment);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000948
Damien Miller95def091999-11-25 00:26:21 +1100949 if (identity_comment) {
950 strlcpy(new_comment, identity_comment, sizeof(new_comment));
951 } else {
952 printf("Enter new comment: ");
953 fflush(stdout);
954 if (!fgets(new_comment, sizeof(new_comment), stdin)) {
955 memset(passphrase, 0, strlen(passphrase));
Damien Millereba71ba2000-04-29 23:57:08 +1000956 key_free(private);
Damien Miller95def091999-11-25 00:26:21 +1100957 exit(1);
958 }
Damien Miller95def091999-11-25 00:26:21 +1100959 if (strchr(new_comment, '\n'))
960 *strchr(new_comment, '\n') = 0;
961 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000962
Damien Miller95def091999-11-25 00:26:21 +1100963 /* Save the file using the new passphrase. */
Ben Lindstromd0fca422001-03-26 13:44:06 +0000964 if (!key_save_private(private, identity_file, passphrase, new_comment)) {
Ben Lindstrom15f33862001-04-16 02:00:02 +0000965 printf("Saving the key failed: %s.\n", identity_file);
Damien Miller95def091999-11-25 00:26:21 +1100966 memset(passphrase, 0, strlen(passphrase));
967 xfree(passphrase);
Damien Millereba71ba2000-04-29 23:57:08 +1000968 key_free(private);
Damien Miller95def091999-11-25 00:26:21 +1100969 xfree(comment);
970 exit(1);
971 }
Damien Miller95def091999-11-25 00:26:21 +1100972 memset(passphrase, 0, strlen(passphrase));
973 xfree(passphrase);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000974 public = key_from_private(private);
Damien Millereba71ba2000-04-29 23:57:08 +1000975 key_free(private);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000976
Damien Miller95def091999-11-25 00:26:21 +1100977 strlcat(identity_file, ".pub", sizeof(identity_file));
Ben Lindstrom5fc62702001-03-09 18:19:24 +0000978 fd = open(identity_file, O_WRONLY | O_CREAT | O_TRUNC, 0644);
979 if (fd == -1) {
Damien Miller95def091999-11-25 00:26:21 +1100980 printf("Could not save your public key in %s\n", identity_file);
981 exit(1);
982 }
Ben Lindstrom5fc62702001-03-09 18:19:24 +0000983 f = fdopen(fd, "w");
984 if (f == NULL) {
985 printf("fdopen %s failed", identity_file);
986 exit(1);
987 }
Damien Millereba71ba2000-04-29 23:57:08 +1000988 if (!key_write(public, f))
989 fprintf(stderr, "write key failed");
990 key_free(public);
991 fprintf(f, " %s\n", new_comment);
Damien Miller95def091999-11-25 00:26:21 +1100992 fclose(f);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000993
Damien Miller95def091999-11-25 00:26:21 +1100994 xfree(comment);
995
996 printf("The comment in your key file has been changed.\n");
997 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000998}
999
Ben Lindstrombba81212001-06-25 05:01:22 +00001000static void
Damien Miller431f66b1999-11-21 18:31:57 +11001001usage(void)
1002{
Ben Lindstrom97be31e2001-08-06 21:49:06 +00001003 fprintf(stderr, "Usage: %s [options]\n", __progname);
1004 fprintf(stderr, "Options:\n");
Damien Miller9278ffa2005-05-26 11:59:06 +10001005 fprintf(stderr, " -a trials Number of trials for screening DH-GEX moduli.\n");
Ben Lindstrom97be31e2001-08-06 21:49:06 +00001006 fprintf(stderr, " -B Show bubblebabble digest of key file.\n");
Damien Miller9278ffa2005-05-26 11:59:06 +10001007 fprintf(stderr, " -b bits Number of bits in the key to create.\n");
Ben Lindstrom97be31e2001-08-06 21:49:06 +00001008 fprintf(stderr, " -C comment Provide new comment.\n");
Damien Miller9278ffa2005-05-26 11:59:06 +10001009 fprintf(stderr, " -c Change comment in private and public key files.\n");
Ben Lindstrom97be31e2001-08-06 21:49:06 +00001010#ifdef SMARTCARD
1011 fprintf(stderr, " -D reader Download public key from smartcard.\n");
Damien Miller9278ffa2005-05-26 11:59:06 +10001012#endif /* SMARTCARD */
1013 fprintf(stderr, " -e Convert OpenSSH to IETF SECSH key file.\n");
1014 fprintf(stderr, " -F hostname Find hostname in known hosts file.\n");
1015 fprintf(stderr, " -f filename Filename of the key file.\n");
1016 fprintf(stderr, " -G file Generate candidates for DH-GEX moduli.\n");
1017 fprintf(stderr, " -g Use generic DNS resource record format.\n");
1018 fprintf(stderr, " -H Hash names in known_hosts file.\n");
1019 fprintf(stderr, " -i Convert IETF SECSH to OpenSSH key file.\n");
1020 fprintf(stderr, " -l Show fingerprint of key file.\n");
1021 fprintf(stderr, " -M memory Amount of memory (MB) to use for generating DH-GEX moduli.\n");
1022 fprintf(stderr, " -N phrase Provide new passphrase.\n");
1023 fprintf(stderr, " -P phrase Provide old passphrase.\n");
1024 fprintf(stderr, " -p Change passphrase of private key file.\n");
1025 fprintf(stderr, " -q Quiet.\n");
1026 fprintf(stderr, " -R hostname Remove host from known_hosts file.\n");
1027 fprintf(stderr, " -r hostname Print DNS resource record.\n");
1028 fprintf(stderr, " -S start Start point (hex) for generating DH-GEX moduli.\n");
1029 fprintf(stderr, " -T file Screen candidates for DH-GEX moduli.\n");
1030 fprintf(stderr, " -t type Specify type of key to create.\n");
1031#ifdef SMARTCARD
Ben Lindstrom97be31e2001-08-06 21:49:06 +00001032 fprintf(stderr, " -U reader Upload private key to smartcard.\n");
1033#endif /* SMARTCARD */
Damien Miller9278ffa2005-05-26 11:59:06 +10001034 fprintf(stderr, " -v Verbose.\n");
1035 fprintf(stderr, " -W gen Generator to use for generating DH-GEX moduli.\n");
1036 fprintf(stderr, " -y Read private key file and print public key.\n");
Darren Tucker019cefe2003-08-02 22:40:07 +10001037
Damien Miller95def091999-11-25 00:26:21 +11001038 exit(1);
Damien Miller431f66b1999-11-21 18:31:57 +11001039}
1040
Damien Miller95def091999-11-25 00:26:21 +11001041/*
1042 * Main program for key management.
1043 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001044int
1045main(int ac, char **av)
1046{
Damien Millera41c8b12002-01-22 23:05:08 +11001047 char dotsshdir[MAXPATHLEN], comment[1024], *passphrase1, *passphrase2;
Tim Rice2e0e38e2003-09-08 16:11:33 -07001048 char out_file[MAXPATHLEN], *reader_id = NULL;
Damien Miller4b42d7f2005-03-01 21:48:35 +11001049 char *rr_hostname = NULL;
Ben Lindstrom5fc62702001-03-09 18:19:24 +00001050 Key *private, *public;
Damien Miller95def091999-11-25 00:26:21 +11001051 struct passwd *pw;
Damien Miller95def091999-11-25 00:26:21 +11001052 struct stat st;
Damien Millerb089fb52005-05-26 12:16:18 +10001053 int opt, type, fd, download = 0;
Darren Tucker2db8ae62005-06-01 23:02:25 +10001054 u_int32_t memory = 0, generator_wanted = 0, trials = 100;
Darren Tucker019cefe2003-08-02 22:40:07 +10001055 int do_gen_candidates = 0, do_screen_candidates = 0;
Darren Tucker06930c72003-12-31 11:34:51 +11001056 int log_level = SYSLOG_LEVEL_INFO;
Darren Tucker019cefe2003-08-02 22:40:07 +10001057 BIGNUM *start = NULL;
Damien Miller95def091999-11-25 00:26:21 +11001058 FILE *f;
Damien Miller02e754f2005-05-26 12:19:39 +10001059 const char *errstr;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001060
Damien Miller95def091999-11-25 00:26:21 +11001061 extern int optind;
1062 extern char *optarg;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001063
Darren Tuckerce321d82005-10-03 18:11:24 +10001064 /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
1065 sanitise_stdfd();
1066
Damien Miller59d3d5b2003-08-22 09:34:41 +10001067 __progname = ssh_get_progname(av[0]);
Damien Millerf9b625c2000-07-09 22:42:32 +10001068
Damien Millerd3a18572000-06-07 19:55:44 +10001069 SSLeay_add_all_algorithms();
Darren Tucker019cefe2003-08-02 22:40:07 +10001070 log_init(av[0], SYSLOG_LEVEL_INFO, SYSLOG_FACILITY_USER, 1);
1071
Kevin Steves3a881912002-07-20 19:05:40 +00001072 init_rng();
1073 seed_rng();
Damien Millereba71ba2000-04-29 23:57:08 +10001074
Damien Miller5428f641999-11-25 11:54:57 +11001075 /* we need this for the home * directory. */
Damien Miller95def091999-11-25 00:26:21 +11001076 pw = getpwuid(getuid());
1077 if (!pw) {
1078 printf("You don't exist, go away!\n");
1079 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001080 }
Damien Millereba71ba2000-04-29 23:57:08 +10001081 if (gethostname(hostname, sizeof(hostname)) < 0) {
1082 perror("gethostname");
1083 exit(1);
1084 }
Damien Miller5428f641999-11-25 11:54:57 +11001085
Darren Tucker019cefe2003-08-02 22:40:07 +10001086 while ((opt = getopt(ac, av,
Damien Miller4b42d7f2005-03-01 21:48:35 +11001087 "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 +11001088 switch (opt) {
1089 case 'b':
Damien Miller5f340062006-03-26 14:27:57 +11001090 bits = (u_int32_t)strtonum(optarg, 768, 32768, &errstr);
Damien Miller02e754f2005-05-26 12:19:39 +10001091 if (errstr)
1092 fatal("Bits has bad value %s (%s)",
1093 optarg, errstr);
Damien Miller95def091999-11-25 00:26:21 +11001094 break;
Damien Miller4b42d7f2005-03-01 21:48:35 +11001095 case 'F':
1096 find_host = 1;
1097 rr_hostname = optarg;
1098 break;
1099 case 'H':
1100 hash_hosts = 1;
1101 break;
1102 case 'R':
1103 delete_host = 1;
1104 rr_hostname = optarg;
1105 break;
Damien Miller95def091999-11-25 00:26:21 +11001106 case 'l':
1107 print_fingerprint = 1;
1108 break;
Ben Lindstrom8fd372b2001-03-12 03:02:17 +00001109 case 'B':
1110 print_bubblebabble = 1;
1111 break;
Damien Miller95def091999-11-25 00:26:21 +11001112 case 'p':
1113 change_passphrase = 1;
1114 break;
Damien Miller95def091999-11-25 00:26:21 +11001115 case 'c':
1116 change_comment = 1;
1117 break;
Damien Miller95def091999-11-25 00:26:21 +11001118 case 'f':
Damien Millerb089fb52005-05-26 12:16:18 +10001119 if (strlcpy(identity_file, optarg, sizeof(identity_file)) >=
1120 sizeof(identity_file))
1121 fatal("Identity filename too long");
Damien Miller95def091999-11-25 00:26:21 +11001122 have_identity = 1;
1123 break;
Damien Miller37876e92003-05-15 10:19:46 +10001124 case 'g':
1125 print_generic = 1;
1126 break;
Damien Miller95def091999-11-25 00:26:21 +11001127 case 'P':
1128 identity_passphrase = optarg;
1129 break;
Damien Miller95def091999-11-25 00:26:21 +11001130 case 'N':
1131 identity_new_passphrase = optarg;
1132 break;
Damien Miller95def091999-11-25 00:26:21 +11001133 case 'C':
1134 identity_comment = optarg;
1135 break;
Damien Miller95def091999-11-25 00:26:21 +11001136 case 'q':
1137 quiet = 1;
1138 break;
Ben Lindstrom5a707822001-04-22 17:15:46 +00001139 case 'e':
Damien Millereba71ba2000-04-29 23:57:08 +10001140 case 'x':
Ben Lindstrom5a707822001-04-22 17:15:46 +00001141 /* export key */
Damien Millereba71ba2000-04-29 23:57:08 +10001142 convert_to_ssh2 = 1;
1143 break;
Ben Lindstrom5a707822001-04-22 17:15:46 +00001144 case 'i':
Damien Millereba71ba2000-04-29 23:57:08 +10001145 case 'X':
Ben Lindstrom5a707822001-04-22 17:15:46 +00001146 /* import key */
Damien Millereba71ba2000-04-29 23:57:08 +10001147 convert_from_ssh2 = 1;
1148 break;
Damien Millereba71ba2000-04-29 23:57:08 +10001149 case 'y':
1150 print_public = 1;
1151 break;
Damien Millereba71ba2000-04-29 23:57:08 +10001152 case 'd':
Damien Miller0bc1bd82000-11-13 22:57:25 +11001153 key_type_name = "dsa";
Damien Millereba71ba2000-04-29 23:57:08 +10001154 break;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001155 case 't':
1156 key_type_name = optarg;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001157 break;
Ben Lindstrom8282d6a2001-08-06 21:44:05 +00001158 case 'D':
1159 download = 1;
Damien Miller90967402006-03-26 14:07:26 +11001160 /*FALLTHROUGH*/
Ben Lindstromf19578c2001-08-06 21:46:54 +00001161 case 'U':
Ben Lindstrom8282d6a2001-08-06 21:44:05 +00001162 reader_id = optarg;
Ben Lindstromcd392282001-07-04 03:44:03 +00001163 break;
Darren Tucker06930c72003-12-31 11:34:51 +11001164 case 'v':
1165 if (log_level == SYSLOG_LEVEL_INFO)
1166 log_level = SYSLOG_LEVEL_DEBUG1;
1167 else {
Darren Tuckerfc959702004-07-17 16:12:08 +10001168 if (log_level >= SYSLOG_LEVEL_DEBUG1 &&
Darren Tucker06930c72003-12-31 11:34:51 +11001169 log_level < SYSLOG_LEVEL_DEBUG3)
1170 log_level++;
1171 }
1172 break;
Damien Miller37876e92003-05-15 10:19:46 +10001173 case 'r':
Damien Miller4b42d7f2005-03-01 21:48:35 +11001174 rr_hostname = optarg;
Damien Miller37876e92003-05-15 10:19:46 +10001175 break;
Darren Tucker019cefe2003-08-02 22:40:07 +10001176 case 'W':
Damien Miller5f340062006-03-26 14:27:57 +11001177 generator_wanted = (u_int32_t)strtonum(optarg, 1,
1178 UINT_MAX, &errstr);
Damien Millerb089fb52005-05-26 12:16:18 +10001179 if (errstr)
1180 fatal("Desired generator has bad value: %s (%s)",
1181 optarg, errstr);
Darren Tucker019cefe2003-08-02 22:40:07 +10001182 break;
1183 case 'a':
Damien Miller5f340062006-03-26 14:27:57 +11001184 trials = (u_int32_t)strtonum(optarg, 1, UINT_MAX, &errstr);
Damien Millerb089fb52005-05-26 12:16:18 +10001185 if (errstr)
1186 fatal("Invalid number of trials: %s (%s)",
1187 optarg, errstr);
Darren Tucker019cefe2003-08-02 22:40:07 +10001188 break;
1189 case 'M':
Damien Miller5f340062006-03-26 14:27:57 +11001190 memory = (u_int32_t)strtonum(optarg, 1, UINT_MAX, &errstr);
Damien Millerb089fb52005-05-26 12:16:18 +10001191 if (errstr) {
1192 fatal("Memory limit is %s: %s", errstr, optarg);
1193 }
Darren Tucker019cefe2003-08-02 22:40:07 +10001194 break;
1195 case 'G':
1196 do_gen_candidates = 1;
Damien Millerb089fb52005-05-26 12:16:18 +10001197 if (strlcpy(out_file, optarg, sizeof(out_file)) >=
1198 sizeof(out_file))
1199 fatal("Output filename too long");
Darren Tucker019cefe2003-08-02 22:40:07 +10001200 break;
1201 case 'T':
1202 do_screen_candidates = 1;
Damien Millerb089fb52005-05-26 12:16:18 +10001203 if (strlcpy(out_file, optarg, sizeof(out_file)) >=
1204 sizeof(out_file))
1205 fatal("Output filename too long");
Darren Tucker019cefe2003-08-02 22:40:07 +10001206 break;
1207 case 'S':
1208 /* XXX - also compare length against bits */
1209 if (BN_hex2bn(&start, optarg) == 0)
1210 fatal("Invalid start point.");
1211 break;
Damien Miller95def091999-11-25 00:26:21 +11001212 case '?':
1213 default:
1214 usage();
1215 }
1216 }
Darren Tucker06930c72003-12-31 11:34:51 +11001217
1218 /* reinit */
1219 log_init(av[0], log_level, SYSLOG_FACILITY_USER, 1);
1220
Damien Miller95def091999-11-25 00:26:21 +11001221 if (optind < ac) {
1222 printf("Too many arguments.\n");
1223 usage();
1224 }
1225 if (change_passphrase && change_comment) {
1226 printf("Can only have one of -p and -c.\n");
1227 usage();
1228 }
Damien Miller4b42d7f2005-03-01 21:48:35 +11001229 if (delete_host || hash_hosts || find_host)
1230 do_known_hosts(pw, rr_hostname);
Ben Lindstrom8fd372b2001-03-12 03:02:17 +00001231 if (print_fingerprint || print_bubblebabble)
Damien Miller95def091999-11-25 00:26:21 +11001232 do_fingerprint(pw);
Damien Miller95def091999-11-25 00:26:21 +11001233 if (change_passphrase)
1234 do_change_passphrase(pw);
Damien Miller4a10d2e2002-03-11 22:53:29 +11001235 if (change_comment)
1236 do_change_comment(pw);
Kevin Steves3a881912002-07-20 19:05:40 +00001237 if (convert_to_ssh2)
1238 do_convert_to_ssh2(pw);
1239 if (convert_from_ssh2)
1240 do_convert_from_ssh2(pw);
Damien Millereba71ba2000-04-29 23:57:08 +10001241 if (print_public)
1242 do_print_public(pw);
Damien Miller4b42d7f2005-03-01 21:48:35 +11001243 if (rr_hostname != NULL) {
Damien Millercb314822006-03-26 13:48:01 +11001244 unsigned int n = 0;
1245
1246 if (have_identity) {
1247 n = do_print_resource_record(pw,
1248 identity_file, rr_hostname);
1249 if (n == 0) {
1250 perror(identity_file);
1251 exit(1);
1252 }
1253 exit(0);
1254 } else {
1255
1256 n += do_print_resource_record(pw,
1257 _PATH_HOST_RSA_KEY_FILE, rr_hostname);
1258 n += do_print_resource_record(pw,
1259 _PATH_HOST_DSA_KEY_FILE, rr_hostname);
1260
1261 if (n == 0)
1262 fatal("no keys found.");
1263 exit(0);
1264 }
Damien Miller37876e92003-05-15 10:19:46 +10001265 }
Ben Lindstrom8282d6a2001-08-06 21:44:05 +00001266 if (reader_id != NULL) {
Ben Lindstrom6818bfb2001-08-06 21:40:04 +00001267#ifdef SMARTCARD
Ben Lindstrom8282d6a2001-08-06 21:44:05 +00001268 if (download)
1269 do_download(pw, reader_id);
1270 else
1271 do_upload(pw, reader_id);
Ben Lindstromffce1472001-08-06 21:57:31 +00001272#else /* SMARTCARD */
Ben Lindstrom6818bfb2001-08-06 21:40:04 +00001273 fatal("no support for smartcards.");
Ben Lindstromffce1472001-08-06 21:57:31 +00001274#endif /* SMARTCARD */
Ben Lindstrom8282d6a2001-08-06 21:44:05 +00001275 }
Damien Miller95def091999-11-25 00:26:21 +11001276
Darren Tucker019cefe2003-08-02 22:40:07 +10001277 if (do_gen_candidates) {
1278 FILE *out = fopen(out_file, "w");
Damien Miller787b2ec2003-11-21 23:56:47 +11001279
Darren Tucker019cefe2003-08-02 22:40:07 +10001280 if (out == NULL) {
1281 error("Couldn't open modulus candidate file \"%s\": %s",
1282 out_file, strerror(errno));
1283 return (1);
1284 }
Damien Miller3f54a9f2005-11-05 14:52:18 +11001285 if (bits == 0)
1286 bits = DEFAULT_BITS;
Darren Tucker019cefe2003-08-02 22:40:07 +10001287 if (gen_candidates(out, memory, bits, start) != 0)
Damien Miller15d72a02005-11-05 15:07:33 +11001288 fatal("modulus candidate generation failed");
Darren Tucker019cefe2003-08-02 22:40:07 +10001289
1290 return (0);
1291 }
1292
1293 if (do_screen_candidates) {
1294 FILE *in;
1295 FILE *out = fopen(out_file, "w");
1296
1297 if (have_identity && strcmp(identity_file, "-") != 0) {
1298 if ((in = fopen(identity_file, "r")) == NULL) {
1299 fatal("Couldn't open modulus candidate "
Damien Millera8e06ce2003-11-21 23:48:55 +11001300 "file \"%s\": %s", identity_file,
Darren Tucker019cefe2003-08-02 22:40:07 +10001301 strerror(errno));
1302 }
1303 } else
1304 in = stdin;
1305
1306 if (out == NULL) {
1307 fatal("Couldn't open moduli file \"%s\": %s",
1308 out_file, strerror(errno));
1309 }
1310 if (prime_test(in, out, trials, generator_wanted) != 0)
Damien Miller15d72a02005-11-05 15:07:33 +11001311 fatal("modulus screening failed");
Darren Tuckerf4220e62003-08-21 16:44:07 +10001312 return (0);
Darren Tucker019cefe2003-08-02 22:40:07 +10001313 }
1314
Damien Miller95def091999-11-25 00:26:21 +11001315 arc4random_stir();
1316
Damien Millerf14be5c2005-11-05 15:15:49 +11001317 if (key_type_name == NULL)
1318 key_type_name = "rsa";
1319
Damien Millere39cacc2000-11-29 12:18:44 +11001320 type = key_type_from_name(key_type_name);
1321 if (type == KEY_UNSPEC) {
1322 fprintf(stderr, "unknown key type %s\n", key_type_name);
1323 exit(1);
Damien Millereba71ba2000-04-29 23:57:08 +10001324 }
Damien Miller3f54a9f2005-11-05 14:52:18 +11001325 if (bits == 0)
1326 bits = (type == KEY_DSA) ? DEFAULT_BITS_DSA : DEFAULT_BITS;
Tim Rice660c3402005-11-28 17:45:32 -08001327 if (type == KEY_DSA && bits != 1024)
1328 fatal("DSA keys must be 1024 bits");
Darren Tucker3af2ac52005-11-29 13:10:24 +11001329 if (!quiet)
1330 printf("Generating public/private %s key pair.\n", key_type_name);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001331 private = key_generate(type, bits);
1332 if (private == NULL) {
1333 fprintf(stderr, "key_generate failed");
1334 exit(1);
1335 }
1336 public = key_from_private(private);
Damien Miller95def091999-11-25 00:26:21 +11001337
1338 if (!have_identity)
1339 ask_filename(pw, "Enter file in which to save the key");
1340
Damien Miller788f2122005-11-05 15:14:59 +11001341 /* Create ~/.ssh directory if it doesn't already exist. */
Ben Lindstrom226cfa02001-01-22 05:34:40 +00001342 snprintf(dotsshdir, sizeof dotsshdir, "%s/%s", pw->pw_dir, _PATH_SSH_USER_DIR);
Damien Miller95def091999-11-25 00:26:21 +11001343 if (strstr(identity_file, dotsshdir) != NULL &&
1344 stat(dotsshdir, &st) < 0) {
Damien Millerbe484b52000-07-15 14:14:16 +10001345 if (mkdir(dotsshdir, 0700) < 0)
Damien Miller95def091999-11-25 00:26:21 +11001346 error("Could not create directory '%s'.", dotsshdir);
1347 else if (!quiet)
1348 printf("Created directory '%s'.\n", dotsshdir);
1349 }
1350 /* If the file already exists, ask the user to confirm. */
1351 if (stat(identity_file, &st) >= 0) {
1352 char yesno[3];
1353 printf("%s already exists.\n", identity_file);
1354 printf("Overwrite (y/n)? ");
1355 fflush(stdout);
1356 if (fgets(yesno, sizeof(yesno), stdin) == NULL)
1357 exit(1);
1358 if (yesno[0] != 'y' && yesno[0] != 'Y')
1359 exit(1);
1360 }
1361 /* Ask for a passphrase (twice). */
1362 if (identity_passphrase)
1363 passphrase1 = xstrdup(identity_passphrase);
1364 else if (identity_new_passphrase)
1365 passphrase1 = xstrdup(identity_new_passphrase);
1366 else {
1367passphrase_again:
1368 passphrase1 =
Ben Lindstrom949974b2001-06-25 05:20:31 +00001369 read_passphrase("Enter passphrase (empty for no "
1370 "passphrase): ", RP_ALLOW_STDIN);
1371 passphrase2 = read_passphrase("Enter same passphrase again: ",
1372 RP_ALLOW_STDIN);
Damien Miller95def091999-11-25 00:26:21 +11001373 if (strcmp(passphrase1, passphrase2) != 0) {
Ben Lindstrom949974b2001-06-25 05:20:31 +00001374 /*
1375 * The passphrases do not match. Clear them and
1376 * retry.
1377 */
Damien Miller95def091999-11-25 00:26:21 +11001378 memset(passphrase1, 0, strlen(passphrase1));
1379 memset(passphrase2, 0, strlen(passphrase2));
1380 xfree(passphrase1);
1381 xfree(passphrase2);
1382 printf("Passphrases do not match. Try again.\n");
1383 goto passphrase_again;
1384 }
1385 /* Clear the other copy of the passphrase. */
1386 memset(passphrase2, 0, strlen(passphrase2));
1387 xfree(passphrase2);
1388 }
1389
Damien Miller95def091999-11-25 00:26:21 +11001390 if (identity_comment) {
1391 strlcpy(comment, identity_comment, sizeof(comment));
1392 } else {
Damien Miller4af51302000-04-16 11:18:38 +10001393 /* Create default commend field for the passphrase. */
Damien Miller95def091999-11-25 00:26:21 +11001394 snprintf(comment, sizeof comment, "%s@%s", pw->pw_name, hostname);
1395 }
1396
1397 /* Save the key with the given passphrase and comment. */
Ben Lindstromd0fca422001-03-26 13:44:06 +00001398 if (!key_save_private(private, identity_file, passphrase1, comment)) {
Ben Lindstrom15f33862001-04-16 02:00:02 +00001399 printf("Saving the key failed: %s.\n", identity_file);
Damien Miller95def091999-11-25 00:26:21 +11001400 memset(passphrase1, 0, strlen(passphrase1));
1401 xfree(passphrase1);
1402 exit(1);
1403 }
1404 /* Clear the passphrase. */
1405 memset(passphrase1, 0, strlen(passphrase1));
1406 xfree(passphrase1);
1407
1408 /* Clear the private key and the random number generator. */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001409 key_free(private);
Damien Miller95def091999-11-25 00:26:21 +11001410 arc4random_stir();
1411
1412 if (!quiet)
1413 printf("Your identification has been saved in %s.\n", identity_file);
1414
Damien Miller95def091999-11-25 00:26:21 +11001415 strlcat(identity_file, ".pub", sizeof(identity_file));
Ben Lindstrom5fc62702001-03-09 18:19:24 +00001416 fd = open(identity_file, O_WRONLY | O_CREAT | O_TRUNC, 0644);
1417 if (fd == -1) {
Damien Miller95def091999-11-25 00:26:21 +11001418 printf("Could not save your public key in %s\n", identity_file);
1419 exit(1);
1420 }
Ben Lindstrom5fc62702001-03-09 18:19:24 +00001421 f = fdopen(fd, "w");
1422 if (f == NULL) {
1423 printf("fdopen %s failed", identity_file);
1424 exit(1);
1425 }
Damien Millereba71ba2000-04-29 23:57:08 +10001426 if (!key_write(public, f))
1427 fprintf(stderr, "write key failed");
1428 fprintf(f, " %s\n", comment);
Damien Miller95def091999-11-25 00:26:21 +11001429 fclose(f);
1430
1431 if (!quiet) {
Ben Lindstromcfccef92001-03-13 04:57:58 +00001432 char *fp = key_fingerprint(public, SSH_FP_MD5, SSH_FP_HEX);
Damien Millereba71ba2000-04-29 23:57:08 +10001433 printf("Your public key has been saved in %s.\n",
1434 identity_file);
Damien Miller95def091999-11-25 00:26:21 +11001435 printf("The key fingerprint is:\n");
Ben Lindstromcfccef92001-03-13 04:57:58 +00001436 printf("%s %s\n", fp, comment);
1437 xfree(fp);
Damien Miller95def091999-11-25 00:26:21 +11001438 }
Damien Millereba71ba2000-04-29 23:57:08 +10001439
1440 key_free(public);
Damien Miller95def091999-11-25 00:26:21 +11001441 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001442}