blob: dfa1166c255cab0cb409675f95eb122e3f32934d [file] [log] [blame]
Damien Millerdf8b7db2007-01-05 16:22:57 +11001/* $OpenBSD: ssh-keygen.c,v 1.156 2006/11/14 19:41:04 deraadt 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 Millerded319c2006-09-01 15:38:36 +100032#include <stdarg.h>
Damien Millera7a73ee2006-08-05 11:37:59 +100033#include <stdio.h>
Damien Millere7a1e5c2006-08-05 11:34:19 +100034#include <stdlib.h>
Damien Millere3476ed2006-07-24 14:13:33 +100035#include <string.h>
Damien Millere6b3b612006-07-24 14:01:23 +100036#include <unistd.h>
Damien Miller9f2abc42006-07-10 20:53:08 +100037
Damien Millerd4a8b7e1999-10-27 13:42:43 +100038#include "xmalloc.h"
Damien Millereba71ba2000-04-29 23:57:08 +100039#include "key.h"
Ben Lindstromd09fcf52001-03-29 00:29:54 +000040#include "rsa.h"
Damien Millereba71ba2000-04-29 23:57:08 +100041#include "authfile.h"
42#include "uuencode.h"
Damien Miller874d77b2000-10-14 16:23:11 +110043#include "buffer.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000044#include "pathnames.h"
45#include "log.h"
Darren Tuckere608ca22004-05-13 16:15:47 +100046#include "misc.h"
Damien Miller4b42d7f2005-03-01 21:48:35 +110047#include "match.h"
48#include "hostfile.h"
Damien Miller69996102006-07-10 20:53:31 +100049#include "dns.h"
Damien Miller874d77b2000-10-14 16:23:11 +110050
Ben Lindstrom8282d6a2001-08-06 21:44:05 +000051#ifdef SMARTCARD
Ben Lindstrom8282d6a2001-08-06 21:44:05 +000052#include "scard.h"
Ben Lindstrombcc18082001-08-06 21:59:25 +000053#endif
Ben Lindstromcd392282001-07-04 03:44:03 +000054
Damien Miller3f54a9f2005-11-05 14:52:18 +110055/* Number of bits in the RSA/DSA key. This value can be set on the command line. */
56#define DEFAULT_BITS 2048
57#define DEFAULT_BITS_DSA 1024
58u_int32_t bits = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100059
Damien Miller5428f641999-11-25 11:54:57 +110060/*
61 * Flag indicating that we just want to change the passphrase. This can be
62 * set on the command line.
63 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100064int change_passphrase = 0;
65
Damien Miller5428f641999-11-25 11:54:57 +110066/*
67 * Flag indicating that we just want to change the comment. This can be set
68 * on the command line.
69 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100070int change_comment = 0;
71
72int quiet = 0;
73
Damien Miller4b42d7f2005-03-01 21:48:35 +110074/* Flag indicating that we want to hash a known_hosts file */
75int hash_hosts = 0;
76/* Flag indicating that we want lookup a host in known_hosts file */
77int find_host = 0;
78/* Flag indicating that we want to delete a host from a known_hosts file */
79int delete_host = 0;
80
Damien Miller10f6f6b1999-11-17 17:29:08 +110081/* Flag indicating that we just want to see the key fingerprint */
82int print_fingerprint = 0;
Ben Lindstrom8fd372b2001-03-12 03:02:17 +000083int print_bubblebabble = 0;
Damien Miller10f6f6b1999-11-17 17:29:08 +110084
Damien Miller431f66b1999-11-21 18:31:57 +110085/* The identity file name, given on the command line or entered by the user. */
86char identity_file[1024];
87int have_identity = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100088
89/* This is set to the passphrase if given on the command line. */
90char *identity_passphrase = NULL;
91
92/* This is set to the new passphrase if given on the command line. */
93char *identity_new_passphrase = NULL;
94
95/* This is set to the new comment if given on the command line. */
96char *identity_comment = NULL;
97
Damien Millereba71ba2000-04-29 23:57:08 +100098/* Dump public key file in format used by real and the original SSH 2 */
99int convert_to_ssh2 = 0;
100int convert_from_ssh2 = 0;
101int print_public = 0;
Damien Miller37876e92003-05-15 10:19:46 +1000102int print_generic = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100103
Damien Millera41c8b12002-01-22 23:05:08 +1100104char *key_type_name = NULL;
Damien Millereba71ba2000-04-29 23:57:08 +1000105
Damien Miller431f66b1999-11-21 18:31:57 +1100106/* argv0 */
107extern char *__progname;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000108
Damien Millereba71ba2000-04-29 23:57:08 +1000109char hostname[MAXHOSTNAMELEN];
110
Darren Tucker770fc012004-05-13 16:24:32 +1000111/* moduli.c */
Damien Millerb089fb52005-05-26 12:16:18 +1000112int gen_candidates(FILE *, u_int32_t, u_int32_t, BIGNUM *);
Darren Tucker770fc012004-05-13 16:24:32 +1000113int prime_test(FILE *, FILE *, u_int32_t, u_int32_t);
114
Ben Lindstrombba81212001-06-25 05:01:22 +0000115static void
Damien Miller431f66b1999-11-21 18:31:57 +1100116ask_filename(struct passwd *pw, const char *prompt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000117{
Damien Miller95def091999-11-25 00:26:21 +1100118 char buf[1024];
Damien Millere39cacc2000-11-29 12:18:44 +1100119 char *name = NULL;
120
Damien Miller993dd552002-02-19 15:22:47 +1100121 if (key_type_name == NULL)
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000122 name = _PATH_SSH_CLIENT_ID_RSA;
Damien Miller90967402006-03-26 14:07:26 +1100123 else {
Damien Miller993dd552002-02-19 15:22:47 +1100124 switch (key_type_from_name(key_type_name)) {
125 case KEY_RSA1:
126 name = _PATH_SSH_CLIENT_IDENTITY;
127 break;
128 case KEY_DSA:
129 name = _PATH_SSH_CLIENT_ID_DSA;
130 break;
131 case KEY_RSA:
132 name = _PATH_SSH_CLIENT_ID_RSA;
133 break;
134 default:
135 fprintf(stderr, "bad key type");
136 exit(1);
137 break;
138 }
Damien Miller90967402006-03-26 14:07:26 +1100139 }
Damien Millere39cacc2000-11-29 12:18:44 +1100140 snprintf(identity_file, sizeof(identity_file), "%s/%s", pw->pw_dir, name);
Ben Lindstrom3deda8b2000-12-22 20:27:43 +0000141 fprintf(stderr, "%s (%s): ", prompt, identity_file);
Damien Miller95def091999-11-25 00:26:21 +1100142 if (fgets(buf, sizeof(buf), stdin) == NULL)
143 exit(1);
144 if (strchr(buf, '\n'))
145 *strchr(buf, '\n') = 0;
146 if (strcmp(buf, "") != 0)
147 strlcpy(identity_file, buf, sizeof(identity_file));
148 have_identity = 1;
Damien Miller10f6f6b1999-11-17 17:29:08 +1100149}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000150
Ben Lindstrombba81212001-06-25 05:01:22 +0000151static Key *
Ben Lindstromd78ae762001-06-05 20:35:09 +0000152load_identity(char *filename)
Damien Millereba71ba2000-04-29 23:57:08 +1000153{
Ben Lindstromd0fca422001-03-26 13:44:06 +0000154 char *pass;
155 Key *prv;
156
Ben Lindstroma3700052001-04-05 23:26:32 +0000157 prv = key_load_private(filename, "", NULL);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000158 if (prv == NULL) {
Ben Lindstromd78ae762001-06-05 20:35:09 +0000159 if (identity_passphrase)
160 pass = xstrdup(identity_passphrase);
161 else
Ben Lindstrom949974b2001-06-25 05:20:31 +0000162 pass = read_passphrase("Enter passphrase: ",
163 RP_ALLOW_STDIN);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000164 prv = key_load_private(filename, pass, NULL);
Damien Millereba71ba2000-04-29 23:57:08 +1000165 memset(pass, 0, strlen(pass));
166 xfree(pass);
167 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000168 return prv;
Damien Millereba71ba2000-04-29 23:57:08 +1000169}
170
Damien Miller874d77b2000-10-14 16:23:11 +1100171#define SSH_COM_PUBLIC_BEGIN "---- BEGIN SSH2 PUBLIC KEY ----"
Ben Lindstromcb72e4f2002-06-21 00:41:51 +0000172#define SSH_COM_PUBLIC_END "---- END SSH2 PUBLIC KEY ----"
Damien Miller874d77b2000-10-14 16:23:11 +1100173#define SSH_COM_PRIVATE_BEGIN "---- BEGIN SSH2 ENCRYPTED PRIVATE KEY ----"
Kevin Stevesef4eea92001-02-05 12:42:17 +0000174#define SSH_COM_PRIVATE_KEY_MAGIC 0x3f6ff9eb
Damien Millereba71ba2000-04-29 23:57:08 +1000175
Ben Lindstrombba81212001-06-25 05:01:22 +0000176static void
Damien Millereba71ba2000-04-29 23:57:08 +1000177do_convert_to_ssh2(struct passwd *pw)
178{
Ben Lindstrom46c264f2001-04-24 16:56:58 +0000179 Key *k;
Ben Lindstromc58ab022002-02-26 18:15:09 +0000180 u_int len;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000181 u_char *blob;
Damien Millereba71ba2000-04-29 23:57:08 +1000182 struct stat st;
183
184 if (!have_identity)
185 ask_filename(pw, "Enter file in which the key is");
186 if (stat(identity_file, &st) < 0) {
187 perror(identity_file);
188 exit(1);
189 }
Ben Lindstrom46c264f2001-04-24 16:56:58 +0000190 if ((k = key_load_public(identity_file, NULL)) == NULL) {
Ben Lindstromd78ae762001-06-05 20:35:09 +0000191 if ((k = load_identity(identity_file)) == NULL) {
Ben Lindstrom46c264f2001-04-24 16:56:58 +0000192 fprintf(stderr, "load failed\n");
193 exit(1);
194 }
Damien Millereba71ba2000-04-29 23:57:08 +1000195 }
Damien Millerdb274722003-05-14 13:45:22 +1000196 if (k->type == KEY_RSA1) {
197 fprintf(stderr, "version 1 keys are not supported\n");
198 exit(1);
199 }
Ben Lindstrom99a30f12001-09-18 05:49:14 +0000200 if (key_to_blob(k, &blob, &len) <= 0) {
201 fprintf(stderr, "key_to_blob failed\n");
202 exit(1);
203 }
Damien Miller874d77b2000-10-14 16:23:11 +1100204 fprintf(stdout, "%s\n", SSH_COM_PUBLIC_BEGIN);
Damien Millereba71ba2000-04-29 23:57:08 +1000205 fprintf(stdout,
Ben Lindstrom58d3b722002-06-23 21:28:13 +0000206 "Comment: \"%u-bit %s, converted from OpenSSH by %s@%s\"\n",
Ben Lindstrom46c264f2001-04-24 16:56:58 +0000207 key_size(k), key_type(k),
Damien Millereba71ba2000-04-29 23:57:08 +1000208 pw->pw_name, hostname);
209 dump_base64(stdout, blob, len);
Damien Miller874d77b2000-10-14 16:23:11 +1100210 fprintf(stdout, "%s\n", SSH_COM_PUBLIC_END);
Ben Lindstrom46c264f2001-04-24 16:56:58 +0000211 key_free(k);
Damien Millereba71ba2000-04-29 23:57:08 +1000212 xfree(blob);
213 exit(0);
214}
215
Ben Lindstrombba81212001-06-25 05:01:22 +0000216static void
Damien Miller874d77b2000-10-14 16:23:11 +1100217buffer_get_bignum_bits(Buffer *b, BIGNUM *value)
218{
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000219 u_int bignum_bits = buffer_get_int(b);
220 u_int bytes = (bignum_bits + 7) / 8;
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000221
Damien Miller874d77b2000-10-14 16:23:11 +1100222 if (buffer_len(b) < bytes)
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000223 fatal("buffer_get_bignum_bits: input buffer too small: "
224 "need %d have %d", bytes, buffer_len(b));
Darren Tucker0bc85572006-11-07 23:14:41 +1100225 if (BN_bin2bn(buffer_ptr(b), bytes, value) == NULL)
226 fatal("buffer_get_bignum_bits: BN_bin2bn failed");
Damien Miller874d77b2000-10-14 16:23:11 +1100227 buffer_consume(b, bytes);
228}
229
Ben Lindstrombba81212001-06-25 05:01:22 +0000230static Key *
Ben Lindstrom90fd8142002-02-26 18:09:42 +0000231do_convert_private_ssh2_from_blob(u_char *blob, u_int blen)
Damien Miller874d77b2000-10-14 16:23:11 +1100232{
233 Buffer b;
Damien Miller874d77b2000-10-14 16:23:11 +1100234 Key *key = NULL;
Damien Miller874d77b2000-10-14 16:23:11 +1100235 char *type, *cipher;
Ben Lindstrom511d69e2001-07-04 05:05:27 +0000236 u_char *sig, data[] = "abcde12345";
Ben Lindstrome586c4c2001-06-25 05:04:58 +0000237 int magic, rlen, ktype, i1, i2, i3, i4;
238 u_int slen;
239 u_long e;
Damien Miller874d77b2000-10-14 16:23:11 +1100240
241 buffer_init(&b);
242 buffer_append(&b, blob, blen);
243
244 magic = buffer_get_int(&b);
245 if (magic != SSH_COM_PRIVATE_KEY_MAGIC) {
246 error("bad magic 0x%x != 0x%x", magic, SSH_COM_PRIVATE_KEY_MAGIC);
247 buffer_free(&b);
248 return NULL;
249 }
Ben Lindstrom34f91882001-06-25 04:47:54 +0000250 i1 = buffer_get_int(&b);
Damien Miller874d77b2000-10-14 16:23:11 +1100251 type = buffer_get_string(&b, NULL);
252 cipher = buffer_get_string(&b, NULL);
Ben Lindstrom34f91882001-06-25 04:47:54 +0000253 i2 = buffer_get_int(&b);
254 i3 = buffer_get_int(&b);
255 i4 = buffer_get_int(&b);
256 debug("ignore (%d %d %d %d)", i1,i2,i3,i4);
Damien Miller874d77b2000-10-14 16:23:11 +1100257 if (strcmp(cipher, "none") != 0) {
258 error("unsupported cipher %s", cipher);
259 xfree(cipher);
260 buffer_free(&b);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000261 xfree(type);
Damien Miller874d77b2000-10-14 16:23:11 +1100262 return NULL;
263 }
264 xfree(cipher);
265
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000266 if (strstr(type, "dsa")) {
267 ktype = KEY_DSA;
268 } else if (strstr(type, "rsa")) {
269 ktype = KEY_RSA;
270 } else {
Darren Tucker7cfeecf2005-01-20 10:56:31 +1100271 buffer_free(&b);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000272 xfree(type);
Damien Miller874d77b2000-10-14 16:23:11 +1100273 return NULL;
274 }
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000275 key = key_new_private(ktype);
276 xfree(type);
277
278 switch (key->type) {
279 case KEY_DSA:
280 buffer_get_bignum_bits(&b, key->dsa->p);
281 buffer_get_bignum_bits(&b, key->dsa->g);
282 buffer_get_bignum_bits(&b, key->dsa->q);
283 buffer_get_bignum_bits(&b, key->dsa->pub_key);
284 buffer_get_bignum_bits(&b, key->dsa->priv_key);
285 break;
286 case KEY_RSA:
Ben Lindstrom34f91882001-06-25 04:47:54 +0000287 e = buffer_get_char(&b);
288 debug("e %lx", e);
289 if (e < 30) {
290 e <<= 8;
291 e += buffer_get_char(&b);
292 debug("e %lx", e);
293 e <<= 8;
294 e += buffer_get_char(&b);
295 debug("e %lx", e);
296 }
297 if (!BN_set_word(key->rsa->e, e)) {
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000298 buffer_free(&b);
299 key_free(key);
300 return NULL;
301 }
302 buffer_get_bignum_bits(&b, key->rsa->d);
303 buffer_get_bignum_bits(&b, key->rsa->n);
304 buffer_get_bignum_bits(&b, key->rsa->iqmp);
305 buffer_get_bignum_bits(&b, key->rsa->q);
306 buffer_get_bignum_bits(&b, key->rsa->p);
Ben Lindstromf7297dd2001-07-04 05:02:23 +0000307 rsa_generate_additional_parameters(key->rsa);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000308 break;
309 }
Damien Miller874d77b2000-10-14 16:23:11 +1100310 rlen = buffer_len(&b);
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +0000311 if (rlen != 0)
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000312 error("do_convert_private_ssh2_from_blob: "
313 "remaining bytes in key blob %d", rlen);
Damien Miller874d77b2000-10-14 16:23:11 +1100314 buffer_free(&b);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000315
Ben Lindstrome586c4c2001-06-25 05:04:58 +0000316 /* try the key */
317 key_sign(key, &sig, &slen, data, sizeof(data));
318 key_verify(key, sig, slen, data, sizeof(data));
319 xfree(sig);
Damien Miller874d77b2000-10-14 16:23:11 +1100320 return key;
321}
322
Damien Miller8056a9d2006-03-15 12:05:40 +1100323static int
324get_line(FILE *fp, char *line, size_t len)
325{
326 int c;
327 size_t pos = 0;
328
329 line[0] = '\0';
330 while ((c = fgetc(fp)) != EOF) {
331 if (pos >= len - 1) {
332 fprintf(stderr, "input line too long.\n");
333 exit(1);
334 }
Damien Miller90967402006-03-26 14:07:26 +1100335 switch (c) {
Damien Miller8056a9d2006-03-15 12:05:40 +1100336 case '\r':
337 c = fgetc(fp);
338 if (c != EOF && c != '\n' && ungetc(c, fp) == EOF) {
339 fprintf(stderr, "unget: %s\n", strerror(errno));
340 exit(1);
341 }
342 return pos;
343 case '\n':
344 return pos;
345 }
346 line[pos++] = c;
347 line[pos] = '\0';
348 }
Damien Millere23209f2006-03-31 23:13:35 +1100349 if (c == EOF)
350 return -1;
Damien Miller8056a9d2006-03-15 12:05:40 +1100351 return pos;
352}
353
Ben Lindstrombba81212001-06-25 05:01:22 +0000354static void
Damien Millereba71ba2000-04-29 23:57:08 +1000355do_convert_from_ssh2(struct passwd *pw)
356{
357 Key *k;
358 int blen;
Ben Lindstrom155b9812002-04-02 20:26:26 +0000359 u_int len;
Damien Miller8056a9d2006-03-15 12:05:40 +1100360 char line[1024];
Ben Lindstrom9e0ddd42001-09-18 05:41:19 +0000361 u_char blob[8096];
Damien Millereba71ba2000-04-29 23:57:08 +1000362 char encoded[8096];
363 struct stat st;
Damien Miller874d77b2000-10-14 16:23:11 +1100364 int escaped = 0, private = 0, ok;
Damien Millereba71ba2000-04-29 23:57:08 +1000365 FILE *fp;
366
367 if (!have_identity)
368 ask_filename(pw, "Enter file in which the key is");
369 if (stat(identity_file, &st) < 0) {
370 perror(identity_file);
371 exit(1);
372 }
373 fp = fopen(identity_file, "r");
374 if (fp == NULL) {
375 perror(identity_file);
376 exit(1);
377 }
378 encoded[0] = '\0';
Damien Miller8056a9d2006-03-15 12:05:40 +1100379 while ((blen = get_line(fp, line, sizeof(line))) != -1) {
380 if (line[blen - 1] == '\\')
Damien Miller30c3d422000-05-09 11:02:59 +1000381 escaped++;
Damien Millereba71ba2000-04-29 23:57:08 +1000382 if (strncmp(line, "----", 4) == 0 ||
383 strstr(line, ": ") != NULL) {
Damien Miller874d77b2000-10-14 16:23:11 +1100384 if (strstr(line, SSH_COM_PRIVATE_BEGIN) != NULL)
385 private = 1;
Ben Lindstrome586c4c2001-06-25 05:04:58 +0000386 if (strstr(line, " END ") != NULL) {
387 break;
388 }
Ben Lindstrom30358602001-04-24 16:59:28 +0000389 /* fprintf(stderr, "ignore: %s", line); */
Damien Millereba71ba2000-04-29 23:57:08 +1000390 continue;
391 }
Damien Miller30c3d422000-05-09 11:02:59 +1000392 if (escaped) {
393 escaped--;
Ben Lindstrom30358602001-04-24 16:59:28 +0000394 /* fprintf(stderr, "escaped: %s", line); */
Damien Miller30c3d422000-05-09 11:02:59 +1000395 continue;
Damien Millereba71ba2000-04-29 23:57:08 +1000396 }
Damien Millereba71ba2000-04-29 23:57:08 +1000397 strlcat(encoded, line, sizeof(encoded));
398 }
Ben Lindstrom155b9812002-04-02 20:26:26 +0000399 len = strlen(encoded);
400 if (((len % 4) == 3) &&
401 (encoded[len-1] == '=') &&
402 (encoded[len-2] == '=') &&
403 (encoded[len-3] == '='))
404 encoded[len-3] = '\0';
Damien Miller4a8ed542002-01-22 23:33:31 +1100405 blen = uudecode(encoded, blob, sizeof(blob));
Damien Millereba71ba2000-04-29 23:57:08 +1000406 if (blen < 0) {
407 fprintf(stderr, "uudecode failed.\n");
408 exit(1);
409 }
Damien Miller874d77b2000-10-14 16:23:11 +1100410 k = private ?
411 do_convert_private_ssh2_from_blob(blob, blen) :
Damien Miller0bc1bd82000-11-13 22:57:25 +1100412 key_from_blob(blob, blen);
Damien Miller874d77b2000-10-14 16:23:11 +1100413 if (k == NULL) {
414 fprintf(stderr, "decode blob failed.\n");
415 exit(1);
416 }
417 ok = private ?
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000418 (k->type == KEY_DSA ?
419 PEM_write_DSAPrivateKey(stdout, k->dsa, NULL, NULL, 0, NULL, NULL) :
420 PEM_write_RSAPrivateKey(stdout, k->rsa, NULL, NULL, 0, NULL, NULL)) :
Damien Miller874d77b2000-10-14 16:23:11 +1100421 key_write(k, stdout);
422 if (!ok) {
423 fprintf(stderr, "key write failed");
424 exit(1);
425 }
Damien Millereba71ba2000-04-29 23:57:08 +1000426 key_free(k);
Damien Millera1db12b2002-01-22 23:20:15 +1100427 if (!private)
428 fprintf(stdout, "\n");
Damien Millereba71ba2000-04-29 23:57:08 +1000429 fclose(fp);
430 exit(0);
431}
432
Ben Lindstrombba81212001-06-25 05:01:22 +0000433static void
Damien Millereba71ba2000-04-29 23:57:08 +1000434do_print_public(struct passwd *pw)
435{
Ben Lindstromd0fca422001-03-26 13:44:06 +0000436 Key *prv;
Damien Millereba71ba2000-04-29 23:57:08 +1000437 struct stat st;
438
439 if (!have_identity)
440 ask_filename(pw, "Enter file in which the key is");
441 if (stat(identity_file, &st) < 0) {
442 perror(identity_file);
443 exit(1);
444 }
Ben Lindstromd78ae762001-06-05 20:35:09 +0000445 prv = load_identity(identity_file);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000446 if (prv == NULL) {
Damien Millereba71ba2000-04-29 23:57:08 +1000447 fprintf(stderr, "load failed\n");
448 exit(1);
449 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000450 if (!key_write(prv, stdout))
Damien Millereba71ba2000-04-29 23:57:08 +1000451 fprintf(stderr, "key_write failed");
Ben Lindstromd0fca422001-03-26 13:44:06 +0000452 key_free(prv);
Damien Millereba71ba2000-04-29 23:57:08 +1000453 fprintf(stdout, "\n");
454 exit(0);
455}
456
Ben Lindstrom6818bfb2001-08-06 21:40:04 +0000457#ifdef SMARTCARD
Ben Lindstromcd392282001-07-04 03:44:03 +0000458static void
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000459do_upload(struct passwd *pw, const char *sc_reader_id)
Ben Lindstromcd392282001-07-04 03:44:03 +0000460{
Ben Lindstromcd392282001-07-04 03:44:03 +0000461 Key *prv = NULL;
462 struct stat st;
Ben Lindstrom70e3ad82002-03-22 03:33:43 +0000463 int ret;
Ben Lindstromcd392282001-07-04 03:44:03 +0000464
465 if (!have_identity)
466 ask_filename(pw, "Enter file in which the key is");
467 if (stat(identity_file, &st) < 0) {
468 perror(identity_file);
Ben Lindstrom70e3ad82002-03-22 03:33:43 +0000469 exit(1);
Ben Lindstromcd392282001-07-04 03:44:03 +0000470 }
471 prv = load_identity(identity_file);
472 if (prv == NULL) {
473 error("load failed");
Ben Lindstrom70e3ad82002-03-22 03:33:43 +0000474 exit(1);
Ben Lindstromcd392282001-07-04 03:44:03 +0000475 }
Ben Lindstrom70e3ad82002-03-22 03:33:43 +0000476 ret = sc_put_key(prv, sc_reader_id);
477 key_free(prv);
478 if (ret < 0)
479 exit(1);
Damien Miller996acd22003-04-09 20:59:48 +1000480 logit("loading key done");
Ben Lindstrom70e3ad82002-03-22 03:33:43 +0000481 exit(0);
Ben Lindstromcd392282001-07-04 03:44:03 +0000482}
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000483
484static void
485do_download(struct passwd *pw, const char *sc_reader_id)
486{
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000487 Key **keys = NULL;
488 int i;
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000489
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000490 keys = sc_get_keys(sc_reader_id, NULL);
491 if (keys == NULL)
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000492 fatal("cannot read public key from smartcard");
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000493 for (i = 0; keys[i]; i++) {
494 key_write(keys[i], stdout);
495 key_free(keys[i]);
496 fprintf(stdout, "\n");
497 }
498 xfree(keys);
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000499 exit(0);
500}
Ben Lindstromffce1472001-08-06 21:57:31 +0000501#endif /* SMARTCARD */
Ben Lindstromcd392282001-07-04 03:44:03 +0000502
Ben Lindstrombba81212001-06-25 05:01:22 +0000503static void
Damien Miller10f6f6b1999-11-17 17:29:08 +1100504do_fingerprint(struct passwd *pw)
505{
Damien Miller98c7ad62000-03-09 21:27:49 +1100506 FILE *f;
Damien Millereba71ba2000-04-29 23:57:08 +1000507 Key *public;
Ben Lindstrom8fd372b2001-03-12 03:02:17 +0000508 char *comment = NULL, *cp, *ep, line[16*1024], *fp;
Ben Lindstrom65366a82001-12-06 16:32:47 +0000509 int i, skip = 0, num = 1, invalid = 1;
510 enum fp_rep rep;
511 enum fp_type fptype;
Damien Miller95def091999-11-25 00:26:21 +1100512 struct stat st;
Damien Miller10f6f6b1999-11-17 17:29:08 +1100513
Ben Lindstromd0fca422001-03-26 13:44:06 +0000514 fptype = print_bubblebabble ? SSH_FP_SHA1 : SSH_FP_MD5;
515 rep = print_bubblebabble ? SSH_FP_BUBBLEBABBLE : SSH_FP_HEX;
Ben Lindstrom8fd372b2001-03-12 03:02:17 +0000516
Damien Miller95def091999-11-25 00:26:21 +1100517 if (!have_identity)
518 ask_filename(pw, "Enter file in which the key is");
519 if (stat(identity_file, &st) < 0) {
520 perror(identity_file);
521 exit(1);
522 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000523 public = key_load_public(identity_file, &comment);
524 if (public != NULL) {
525 fp = key_fingerprint(public, fptype, rep);
Ben Lindstrom58d3b722002-06-23 21:28:13 +0000526 printf("%u %s %s\n", key_size(public), fp, comment);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100527 key_free(public);
528 xfree(comment);
Ben Lindstrom8fd372b2001-03-12 03:02:17 +0000529 xfree(fp);
Damien Miller98c7ad62000-03-09 21:27:49 +1100530 exit(0);
531 }
Damien Miller40b59852006-06-13 13:00:25 +1000532 if (comment) {
Ben Lindstromd0fca422001-03-26 13:44:06 +0000533 xfree(comment);
Damien Miller40b59852006-06-13 13:00:25 +1000534 comment = NULL;
535 }
Damien Miller98c7ad62000-03-09 21:27:49 +1100536
537 f = fopen(identity_file, "r");
538 if (f != NULL) {
Damien Miller98c7ad62000-03-09 21:27:49 +1100539 while (fgets(line, sizeof(line), f)) {
540 i = strlen(line) - 1;
541 if (line[i] != '\n') {
542 error("line %d too long: %.40s...", num, line);
543 skip = 1;
544 continue;
Damien Miller95def091999-11-25 00:26:21 +1100545 }
Damien Miller98c7ad62000-03-09 21:27:49 +1100546 num++;
547 if (skip) {
548 skip = 0;
549 continue;
550 }
551 line[i] = '\0';
552
553 /* Skip leading whitespace, empty and comment lines. */
554 for (cp = line; *cp == ' ' || *cp == '\t'; cp++)
555 ;
556 if (!*cp || *cp == '\n' || *cp == '#')
557 continue ;
558 i = strtol(cp, &ep, 10);
559 if (i == 0 || ep == NULL || (*ep != ' ' && *ep != '\t')) {
560 int quoted = 0;
561 comment = cp;
Ben Lindstrom58d3b722002-06-23 21:28:13 +0000562 for (; *cp && (quoted || (*cp != ' ' &&
563 *cp != '\t')); cp++) {
Damien Miller98c7ad62000-03-09 21:27:49 +1100564 if (*cp == '\\' && cp[1] == '"')
565 cp++; /* Skip both */
566 else if (*cp == '"')
567 quoted = !quoted;
568 }
569 if (!*cp)
570 continue;
571 *cp++ = '\0';
572 }
573 ep = cp;
Ben Lindstrom2941f112000-12-29 16:50:13 +0000574 public = key_new(KEY_RSA1);
575 if (key_read(public, &cp) != 1) {
576 cp = ep;
577 key_free(public);
578 public = key_new(KEY_UNSPEC);
579 if (key_read(public, &cp) != 1) {
580 key_free(public);
581 continue;
582 }
Damien Miller98c7ad62000-03-09 21:27:49 +1100583 }
Ben Lindstrom2941f112000-12-29 16:50:13 +0000584 comment = *cp ? cp : comment;
Ben Lindstromd0fca422001-03-26 13:44:06 +0000585 fp = key_fingerprint(public, fptype, rep);
Ben Lindstrom58d3b722002-06-23 21:28:13 +0000586 printf("%u %s %s\n", key_size(public), fp,
Ben Lindstrom2941f112000-12-29 16:50:13 +0000587 comment ? comment : "no comment");
Ben Lindstrom8fd372b2001-03-12 03:02:17 +0000588 xfree(fp);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000589 key_free(public);
Ben Lindstrom2941f112000-12-29 16:50:13 +0000590 invalid = 0;
Damien Miller95def091999-11-25 00:26:21 +1100591 }
Damien Miller98c7ad62000-03-09 21:27:49 +1100592 fclose(f);
Damien Miller95def091999-11-25 00:26:21 +1100593 }
Damien Miller98c7ad62000-03-09 21:27:49 +1100594 if (invalid) {
Damien Millereb5fec62001-11-12 10:52:44 +1100595 printf("%s is not a public key file.\n", identity_file);
Damien Miller98c7ad62000-03-09 21:27:49 +1100596 exit(1);
597 }
Damien Miller95def091999-11-25 00:26:21 +1100598 exit(0);
Damien Miller10f6f6b1999-11-17 17:29:08 +1100599}
600
Damien Miller4b42d7f2005-03-01 21:48:35 +1100601static void
602print_host(FILE *f, char *name, Key *public, int hash)
603{
604 if (hash && (name = host_hash(name, NULL, 0)) == NULL)
605 fatal("hash_host failed");
606 fprintf(f, "%s ", name);
607 if (!key_write(public, f))
608 fatal("key_write failed");
609 fprintf(f, "\n");
610}
611
612static void
613do_known_hosts(struct passwd *pw, const char *name)
614{
615 FILE *in, *out = stdout;
616 Key *public;
617 char *cp, *cp2, *kp, *kp2;
618 char line[16*1024], tmp[MAXPATHLEN], old[MAXPATHLEN];
619 int c, i, skip = 0, inplace = 0, num = 0, invalid = 0, has_unhashed = 0;
620
621 if (!have_identity) {
622 cp = tilde_expand_filename(_PATH_SSH_USER_HOSTFILE, pw->pw_uid);
623 if (strlcpy(identity_file, cp, sizeof(identity_file)) >=
624 sizeof(identity_file))
625 fatal("Specified known hosts path too long");
626 xfree(cp);
627 have_identity = 1;
628 }
629 if ((in = fopen(identity_file, "r")) == NULL)
630 fatal("fopen: %s", strerror(errno));
631
632 /*
633 * Find hosts goes to stdout, hash and deletions happen in-place
634 * A corner case is ssh-keygen -HF foo, which should go to stdout
635 */
636 if (!find_host && (hash_hosts || delete_host)) {
637 if (strlcpy(tmp, identity_file, sizeof(tmp)) >= sizeof(tmp) ||
638 strlcat(tmp, ".XXXXXXXXXX", sizeof(tmp)) >= sizeof(tmp) ||
639 strlcpy(old, identity_file, sizeof(old)) >= sizeof(old) ||
640 strlcat(old, ".old", sizeof(old)) >= sizeof(old))
641 fatal("known_hosts path too long");
642 umask(077);
643 if ((c = mkstemp(tmp)) == -1)
644 fatal("mkstemp: %s", strerror(errno));
645 if ((out = fdopen(c, "w")) == NULL) {
646 c = errno;
647 unlink(tmp);
648 fatal("fdopen: %s", strerror(c));
649 }
650 inplace = 1;
651 }
652
653 while (fgets(line, sizeof(line), in)) {
654 num++;
655 i = strlen(line) - 1;
656 if (line[i] != '\n') {
657 error("line %d too long: %.40s...", num, line);
658 skip = 1;
659 invalid = 1;
660 continue;
661 }
662 if (skip) {
663 skip = 0;
664 continue;
665 }
666 line[i] = '\0';
667
668 /* Skip leading whitespace, empty and comment lines. */
669 for (cp = line; *cp == ' ' || *cp == '\t'; cp++)
670 ;
671 if (!*cp || *cp == '\n' || *cp == '#') {
672 if (inplace)
673 fprintf(out, "%s\n", cp);
674 continue;
675 }
676 /* Find the end of the host name portion. */
677 for (kp = cp; *kp && *kp != ' ' && *kp != '\t'; kp++)
678 ;
679 if (*kp == '\0' || *(kp + 1) == '\0') {
680 error("line %d missing key: %.40s...",
681 num, line);
682 invalid = 1;
683 continue;
684 }
685 *kp++ = '\0';
686 kp2 = kp;
687
688 public = key_new(KEY_RSA1);
689 if (key_read(public, &kp) != 1) {
690 kp = kp2;
691 key_free(public);
692 public = key_new(KEY_UNSPEC);
693 if (key_read(public, &kp) != 1) {
694 error("line %d invalid key: %.40s...",
695 num, line);
696 key_free(public);
697 invalid = 1;
698 continue;
699 }
700 }
701
702 if (*cp == HASH_DELIM) {
703 if (find_host || delete_host) {
704 cp2 = host_hash(name, cp, strlen(cp));
705 if (cp2 == NULL) {
706 error("line %d: invalid hashed "
707 "name: %.64s...", num, line);
708 invalid = 1;
709 continue;
710 }
711 c = (strcmp(cp2, cp) == 0);
712 if (find_host && c) {
713 printf("# Host %s found: "
714 "line %d type %s\n", name,
715 num, key_type(public));
716 print_host(out, cp, public, 0);
717 }
718 if (delete_host && !c)
719 print_host(out, cp, public, 0);
720 } else if (hash_hosts)
721 print_host(out, cp, public, 0);
722 } else {
723 if (find_host || delete_host) {
724 c = (match_hostname(name, cp,
725 strlen(cp)) == 1);
726 if (find_host && c) {
727 printf("# Host %s found: "
728 "line %d type %s\n", name,
729 num, key_type(public));
730 print_host(out, cp, public, hash_hosts);
731 }
732 if (delete_host && !c)
733 print_host(out, cp, public, 0);
734 } else if (hash_hosts) {
Darren Tucker47eede72005-03-14 23:08:12 +1100735 for (cp2 = strsep(&cp, ",");
Damien Miller4b42d7f2005-03-01 21:48:35 +1100736 cp2 != NULL && *cp2 != '\0';
Damien Miller89eac802005-03-02 12:33:04 +1100737 cp2 = strsep(&cp, ",")) {
738 if (strcspn(cp2, "*?!") != strlen(cp2))
739 fprintf(stderr, "Warning: "
740 "ignoring host name with "
741 "metacharacters: %.64s\n",
742 cp2);
743 else
744 print_host(out, cp2, public, 1);
745 }
Damien Miller4b42d7f2005-03-01 21:48:35 +1100746 has_unhashed = 1;
747 }
748 }
749 key_free(public);
750 }
751 fclose(in);
752
753 if (invalid) {
754 fprintf(stderr, "%s is not a valid known_host file.\n",
755 identity_file);
756 if (inplace) {
757 fprintf(stderr, "Not replacing existing known_hosts "
Darren Tucker9f438a92005-03-14 23:09:18 +1100758 "file because of errors\n");
Damien Miller4b42d7f2005-03-01 21:48:35 +1100759 fclose(out);
760 unlink(tmp);
761 }
762 exit(1);
763 }
764
765 if (inplace) {
766 fclose(out);
767
768 /* Backup existing file */
769 if (unlink(old) == -1 && errno != ENOENT)
770 fatal("unlink %.100s: %s", old, strerror(errno));
771 if (link(identity_file, old) == -1)
772 fatal("link %.100s to %.100s: %s", identity_file, old,
773 strerror(errno));
774 /* Move new one into place */
775 if (rename(tmp, identity_file) == -1) {
776 error("rename\"%s\" to \"%s\": %s", tmp, identity_file,
777 strerror(errno));
778 unlink(tmp);
779 unlink(old);
780 exit(1);
781 }
782
783 fprintf(stderr, "%s updated.\n", identity_file);
784 fprintf(stderr, "Original contents retained as %s\n", old);
785 if (has_unhashed) {
786 fprintf(stderr, "WARNING: %s contains unhashed "
787 "entries\n", old);
788 fprintf(stderr, "Delete this file to ensure privacy "
Damien Miller0dc1bef2005-07-17 17:22:45 +1000789 "of hostnames\n");
Damien Miller4b42d7f2005-03-01 21:48:35 +1100790 }
791 }
792
793 exit(0);
794}
795
Damien Miller95def091999-11-25 00:26:21 +1100796/*
797 * Perform changing a passphrase. The argument is the passwd structure
798 * for the current user.
799 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000800static void
Damien Miller10f6f6b1999-11-17 17:29:08 +1100801do_change_passphrase(struct passwd *pw)
802{
Damien Miller95def091999-11-25 00:26:21 +1100803 char *comment;
804 char *old_passphrase, *passphrase1, *passphrase2;
805 struct stat st;
Damien Millereba71ba2000-04-29 23:57:08 +1000806 Key *private;
Damien Miller10f6f6b1999-11-17 17:29:08 +1100807
Damien Miller95def091999-11-25 00:26:21 +1100808 if (!have_identity)
809 ask_filename(pw, "Enter file in which the key is");
Damien Miller95def091999-11-25 00:26:21 +1100810 if (stat(identity_file, &st) < 0) {
811 perror(identity_file);
812 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000813 }
Damien Miller95def091999-11-25 00:26:21 +1100814 /* Try to load the file with empty passphrase. */
Ben Lindstromd0fca422001-03-26 13:44:06 +0000815 private = key_load_private(identity_file, "", &comment);
816 if (private == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100817 if (identity_passphrase)
818 old_passphrase = xstrdup(identity_passphrase);
819 else
Ben Lindstrom949974b2001-06-25 05:20:31 +0000820 old_passphrase =
821 read_passphrase("Enter old passphrase: ",
822 RP_ALLOW_STDIN);
823 private = key_load_private(identity_file, old_passphrase,
824 &comment);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000825 memset(old_passphrase, 0, strlen(old_passphrase));
826 xfree(old_passphrase);
827 if (private == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100828 printf("Bad passphrase.\n");
829 exit(1);
830 }
Damien Miller95def091999-11-25 00:26:21 +1100831 }
832 printf("Key has comment '%s'\n", comment);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000833
Damien Miller95def091999-11-25 00:26:21 +1100834 /* Ask the new passphrase (twice). */
835 if (identity_new_passphrase) {
836 passphrase1 = xstrdup(identity_new_passphrase);
837 passphrase2 = NULL;
838 } else {
839 passphrase1 =
Ben Lindstrom949974b2001-06-25 05:20:31 +0000840 read_passphrase("Enter new passphrase (empty for no "
841 "passphrase): ", RP_ALLOW_STDIN);
842 passphrase2 = read_passphrase("Enter same passphrase again: ",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100843 RP_ALLOW_STDIN);
Damien Miller95def091999-11-25 00:26:21 +1100844
845 /* Verify that they are the same. */
846 if (strcmp(passphrase1, passphrase2) != 0) {
847 memset(passphrase1, 0, strlen(passphrase1));
848 memset(passphrase2, 0, strlen(passphrase2));
849 xfree(passphrase1);
850 xfree(passphrase2);
851 printf("Pass phrases do not match. Try again.\n");
852 exit(1);
853 }
854 /* Destroy the other copy. */
855 memset(passphrase2, 0, strlen(passphrase2));
856 xfree(passphrase2);
857 }
858
859 /* Save the file using the new passphrase. */
Ben Lindstromd0fca422001-03-26 13:44:06 +0000860 if (!key_save_private(private, identity_file, passphrase1, comment)) {
Ben Lindstrom15f33862001-04-16 02:00:02 +0000861 printf("Saving the key failed: %s.\n", identity_file);
Damien Miller95def091999-11-25 00:26:21 +1100862 memset(passphrase1, 0, strlen(passphrase1));
863 xfree(passphrase1);
Damien Millereba71ba2000-04-29 23:57:08 +1000864 key_free(private);
Damien Miller95def091999-11-25 00:26:21 +1100865 xfree(comment);
866 exit(1);
867 }
868 /* Destroy the passphrase and the copy of the key in memory. */
869 memset(passphrase1, 0, strlen(passphrase1));
870 xfree(passphrase1);
Damien Millereba71ba2000-04-29 23:57:08 +1000871 key_free(private); /* Destroys contents */
Damien Miller95def091999-11-25 00:26:21 +1100872 xfree(comment);
873
874 printf("Your identification has been saved with the new passphrase.\n");
875 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000876}
877
Damien Miller37876e92003-05-15 10:19:46 +1000878/*
879 * Print the SSHFP RR.
880 */
Damien Millercb314822006-03-26 13:48:01 +1100881static int
882do_print_resource_record(struct passwd *pw, char *fname, char *hname)
Damien Miller37876e92003-05-15 10:19:46 +1000883{
884 Key *public;
885 char *comment = NULL;
886 struct stat st;
887
Damien Millercb314822006-03-26 13:48:01 +1100888 if (fname == NULL)
Damien Miller37876e92003-05-15 10:19:46 +1000889 ask_filename(pw, "Enter file in which the key is");
Damien Millercb314822006-03-26 13:48:01 +1100890 if (stat(fname, &st) < 0) {
891 if (errno == ENOENT)
892 return 0;
893 perror(fname);
Damien Miller37876e92003-05-15 10:19:46 +1000894 exit(1);
895 }
Damien Millercb314822006-03-26 13:48:01 +1100896 public = key_load_public(fname, &comment);
Damien Miller37876e92003-05-15 10:19:46 +1000897 if (public != NULL) {
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000898 export_dns_rr(hname, public, stdout, print_generic);
Damien Miller37876e92003-05-15 10:19:46 +1000899 key_free(public);
900 xfree(comment);
Damien Millercb314822006-03-26 13:48:01 +1100901 return 1;
Damien Miller37876e92003-05-15 10:19:46 +1000902 }
903 if (comment)
904 xfree(comment);
905
Damien Millercb314822006-03-26 13:48:01 +1100906 printf("failed to read v2 public key from %s.\n", fname);
Damien Miller37876e92003-05-15 10:19:46 +1000907 exit(1);
908}
Damien Miller37876e92003-05-15 10:19:46 +1000909
Damien Miller95def091999-11-25 00:26:21 +1100910/*
911 * Change the comment of a private key file.
912 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000913static void
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000914do_change_comment(struct passwd *pw)
915{
Ben Lindstrom5fc62702001-03-09 18:19:24 +0000916 char new_comment[1024], *comment, *passphrase;
Ben Lindstromd0fca422001-03-26 13:44:06 +0000917 Key *private;
918 Key *public;
Damien Miller95def091999-11-25 00:26:21 +1100919 struct stat st;
920 FILE *f;
Ben Lindstrom5fc62702001-03-09 18:19:24 +0000921 int fd;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000922
Damien Miller95def091999-11-25 00:26:21 +1100923 if (!have_identity)
924 ask_filename(pw, "Enter file in which the key is");
Damien Miller95def091999-11-25 00:26:21 +1100925 if (stat(identity_file, &st) < 0) {
926 perror(identity_file);
927 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000928 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000929 private = key_load_private(identity_file, "", &comment);
930 if (private == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100931 if (identity_passphrase)
932 passphrase = xstrdup(identity_passphrase);
933 else if (identity_new_passphrase)
934 passphrase = xstrdup(identity_new_passphrase);
935 else
Ben Lindstrom949974b2001-06-25 05:20:31 +0000936 passphrase = read_passphrase("Enter passphrase: ",
937 RP_ALLOW_STDIN);
Damien Miller95def091999-11-25 00:26:21 +1100938 /* Try to load using the passphrase. */
Ben Lindstromd0fca422001-03-26 13:44:06 +0000939 private = key_load_private(identity_file, passphrase, &comment);
940 if (private == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100941 memset(passphrase, 0, strlen(passphrase));
942 xfree(passphrase);
943 printf("Bad passphrase.\n");
944 exit(1);
945 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000946 } else {
947 passphrase = xstrdup("");
Damien Miller95def091999-11-25 00:26:21 +1100948 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000949 if (private->type != KEY_RSA1) {
950 fprintf(stderr, "Comments are only supported for RSA1 keys.\n");
951 key_free(private);
952 exit(1);
Damien Miller9f0f5c62001-12-21 14:45:46 +1100953 }
Damien Miller95def091999-11-25 00:26:21 +1100954 printf("Key now has comment '%s'\n", comment);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000955
Damien Miller95def091999-11-25 00:26:21 +1100956 if (identity_comment) {
957 strlcpy(new_comment, identity_comment, sizeof(new_comment));
958 } else {
959 printf("Enter new comment: ");
960 fflush(stdout);
961 if (!fgets(new_comment, sizeof(new_comment), stdin)) {
962 memset(passphrase, 0, strlen(passphrase));
Damien Millereba71ba2000-04-29 23:57:08 +1000963 key_free(private);
Damien Miller95def091999-11-25 00:26:21 +1100964 exit(1);
965 }
Damien Miller95def091999-11-25 00:26:21 +1100966 if (strchr(new_comment, '\n'))
967 *strchr(new_comment, '\n') = 0;
968 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000969
Damien Miller95def091999-11-25 00:26:21 +1100970 /* Save the file using the new passphrase. */
Ben Lindstromd0fca422001-03-26 13:44:06 +0000971 if (!key_save_private(private, identity_file, passphrase, new_comment)) {
Ben Lindstrom15f33862001-04-16 02:00:02 +0000972 printf("Saving the key failed: %s.\n", identity_file);
Damien Miller95def091999-11-25 00:26:21 +1100973 memset(passphrase, 0, strlen(passphrase));
974 xfree(passphrase);
Damien Millereba71ba2000-04-29 23:57:08 +1000975 key_free(private);
Damien Miller95def091999-11-25 00:26:21 +1100976 xfree(comment);
977 exit(1);
978 }
Damien Miller95def091999-11-25 00:26:21 +1100979 memset(passphrase, 0, strlen(passphrase));
980 xfree(passphrase);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000981 public = key_from_private(private);
Damien Millereba71ba2000-04-29 23:57:08 +1000982 key_free(private);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000983
Damien Miller95def091999-11-25 00:26:21 +1100984 strlcat(identity_file, ".pub", sizeof(identity_file));
Ben Lindstrom5fc62702001-03-09 18:19:24 +0000985 fd = open(identity_file, O_WRONLY | O_CREAT | O_TRUNC, 0644);
986 if (fd == -1) {
Damien Miller95def091999-11-25 00:26:21 +1100987 printf("Could not save your public key in %s\n", identity_file);
988 exit(1);
989 }
Ben Lindstrom5fc62702001-03-09 18:19:24 +0000990 f = fdopen(fd, "w");
991 if (f == NULL) {
992 printf("fdopen %s failed", identity_file);
993 exit(1);
994 }
Damien Millereba71ba2000-04-29 23:57:08 +1000995 if (!key_write(public, f))
996 fprintf(stderr, "write key failed");
997 key_free(public);
998 fprintf(f, " %s\n", new_comment);
Damien Miller95def091999-11-25 00:26:21 +1100999 fclose(f);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001000
Damien Miller95def091999-11-25 00:26:21 +11001001 xfree(comment);
1002
1003 printf("The comment in your key file has been changed.\n");
1004 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001005}
1006
Ben Lindstrombba81212001-06-25 05:01:22 +00001007static void
Damien Miller431f66b1999-11-21 18:31:57 +11001008usage(void)
1009{
Ben Lindstrom97be31e2001-08-06 21:49:06 +00001010 fprintf(stderr, "Usage: %s [options]\n", __progname);
1011 fprintf(stderr, "Options:\n");
Damien Miller9278ffa2005-05-26 11:59:06 +10001012 fprintf(stderr, " -a trials Number of trials for screening DH-GEX moduli.\n");
Ben Lindstrom97be31e2001-08-06 21:49:06 +00001013 fprintf(stderr, " -B Show bubblebabble digest of key file.\n");
Damien Miller9278ffa2005-05-26 11:59:06 +10001014 fprintf(stderr, " -b bits Number of bits in the key to create.\n");
Ben Lindstrom97be31e2001-08-06 21:49:06 +00001015 fprintf(stderr, " -C comment Provide new comment.\n");
Damien Miller9278ffa2005-05-26 11:59:06 +10001016 fprintf(stderr, " -c Change comment in private and public key files.\n");
Ben Lindstrom97be31e2001-08-06 21:49:06 +00001017#ifdef SMARTCARD
1018 fprintf(stderr, " -D reader Download public key from smartcard.\n");
Damien Miller9278ffa2005-05-26 11:59:06 +10001019#endif /* SMARTCARD */
1020 fprintf(stderr, " -e Convert OpenSSH to IETF SECSH key file.\n");
1021 fprintf(stderr, " -F hostname Find hostname in known hosts file.\n");
1022 fprintf(stderr, " -f filename Filename of the key file.\n");
1023 fprintf(stderr, " -G file Generate candidates for DH-GEX moduli.\n");
1024 fprintf(stderr, " -g Use generic DNS resource record format.\n");
1025 fprintf(stderr, " -H Hash names in known_hosts file.\n");
1026 fprintf(stderr, " -i Convert IETF SECSH to OpenSSH key file.\n");
1027 fprintf(stderr, " -l Show fingerprint of key file.\n");
1028 fprintf(stderr, " -M memory Amount of memory (MB) to use for generating DH-GEX moduli.\n");
1029 fprintf(stderr, " -N phrase Provide new passphrase.\n");
1030 fprintf(stderr, " -P phrase Provide old passphrase.\n");
1031 fprintf(stderr, " -p Change passphrase of private key file.\n");
1032 fprintf(stderr, " -q Quiet.\n");
1033 fprintf(stderr, " -R hostname Remove host from known_hosts file.\n");
1034 fprintf(stderr, " -r hostname Print DNS resource record.\n");
1035 fprintf(stderr, " -S start Start point (hex) for generating DH-GEX moduli.\n");
1036 fprintf(stderr, " -T file Screen candidates for DH-GEX moduli.\n");
1037 fprintf(stderr, " -t type Specify type of key to create.\n");
1038#ifdef SMARTCARD
Ben Lindstrom97be31e2001-08-06 21:49:06 +00001039 fprintf(stderr, " -U reader Upload private key to smartcard.\n");
1040#endif /* SMARTCARD */
Damien Miller9278ffa2005-05-26 11:59:06 +10001041 fprintf(stderr, " -v Verbose.\n");
1042 fprintf(stderr, " -W gen Generator to use for generating DH-GEX moduli.\n");
1043 fprintf(stderr, " -y Read private key file and print public key.\n");
Darren Tucker019cefe2003-08-02 22:40:07 +10001044
Damien Miller95def091999-11-25 00:26:21 +11001045 exit(1);
Damien Miller431f66b1999-11-21 18:31:57 +11001046}
1047
Damien Miller95def091999-11-25 00:26:21 +11001048/*
1049 * Main program for key management.
1050 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001051int
Damien Millerdf8b7db2007-01-05 16:22:57 +11001052main(int argc, char **argv)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001053{
Damien Millera41c8b12002-01-22 23:05:08 +11001054 char dotsshdir[MAXPATHLEN], comment[1024], *passphrase1, *passphrase2;
Tim Rice2e0e38e2003-09-08 16:11:33 -07001055 char out_file[MAXPATHLEN], *reader_id = NULL;
Damien Miller4b42d7f2005-03-01 21:48:35 +11001056 char *rr_hostname = NULL;
Ben Lindstrom5fc62702001-03-09 18:19:24 +00001057 Key *private, *public;
Damien Miller95def091999-11-25 00:26:21 +11001058 struct passwd *pw;
Damien Miller95def091999-11-25 00:26:21 +11001059 struct stat st;
Damien Millerb089fb52005-05-26 12:16:18 +10001060 int opt, type, fd, download = 0;
Darren Tucker2db8ae62005-06-01 23:02:25 +10001061 u_int32_t memory = 0, generator_wanted = 0, trials = 100;
Darren Tucker019cefe2003-08-02 22:40:07 +10001062 int do_gen_candidates = 0, do_screen_candidates = 0;
Darren Tucker06930c72003-12-31 11:34:51 +11001063 int log_level = SYSLOG_LEVEL_INFO;
Darren Tucker019cefe2003-08-02 22:40:07 +10001064 BIGNUM *start = NULL;
Damien Miller95def091999-11-25 00:26:21 +11001065 FILE *f;
Damien Miller02e754f2005-05-26 12:19:39 +10001066 const char *errstr;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001067
Damien Miller95def091999-11-25 00:26:21 +11001068 extern int optind;
1069 extern char *optarg;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001070
Darren Tuckerce321d82005-10-03 18:11:24 +10001071 /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
1072 sanitise_stdfd();
1073
Damien Miller59d3d5b2003-08-22 09:34:41 +10001074 __progname = ssh_get_progname(av[0]);
Damien Millerf9b625c2000-07-09 22:42:32 +10001075
Damien Millerd3a18572000-06-07 19:55:44 +10001076 SSLeay_add_all_algorithms();
Damien Millerdf8b7db2007-01-05 16:22:57 +11001077 log_init(argv[0], SYSLOG_LEVEL_INFO, SYSLOG_FACILITY_USER, 1);
Darren Tucker019cefe2003-08-02 22:40:07 +10001078
Kevin Steves3a881912002-07-20 19:05:40 +00001079 init_rng();
1080 seed_rng();
Damien Millereba71ba2000-04-29 23:57:08 +10001081
Damien Miller5428f641999-11-25 11:54:57 +11001082 /* we need this for the home * directory. */
Damien Miller95def091999-11-25 00:26:21 +11001083 pw = getpwuid(getuid());
1084 if (!pw) {
1085 printf("You don't exist, go away!\n");
1086 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001087 }
Damien Millereba71ba2000-04-29 23:57:08 +10001088 if (gethostname(hostname, sizeof(hostname)) < 0) {
1089 perror("gethostname");
1090 exit(1);
1091 }
Damien Miller5428f641999-11-25 11:54:57 +11001092
Damien Millerdf8b7db2007-01-05 16:22:57 +11001093 while ((opt = getopt(argc, argv,
Damien Miller4b42d7f2005-03-01 21:48:35 +11001094 "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 +11001095 switch (opt) {
1096 case 'b':
Damien Miller5f340062006-03-26 14:27:57 +11001097 bits = (u_int32_t)strtonum(optarg, 768, 32768, &errstr);
Damien Miller02e754f2005-05-26 12:19:39 +10001098 if (errstr)
1099 fatal("Bits has bad value %s (%s)",
1100 optarg, errstr);
Damien Miller95def091999-11-25 00:26:21 +11001101 break;
Damien Miller4b42d7f2005-03-01 21:48:35 +11001102 case 'F':
1103 find_host = 1;
1104 rr_hostname = optarg;
1105 break;
1106 case 'H':
1107 hash_hosts = 1;
1108 break;
1109 case 'R':
1110 delete_host = 1;
1111 rr_hostname = optarg;
1112 break;
Damien Miller95def091999-11-25 00:26:21 +11001113 case 'l':
1114 print_fingerprint = 1;
1115 break;
Ben Lindstrom8fd372b2001-03-12 03:02:17 +00001116 case 'B':
1117 print_bubblebabble = 1;
1118 break;
Damien Miller95def091999-11-25 00:26:21 +11001119 case 'p':
1120 change_passphrase = 1;
1121 break;
Damien Miller95def091999-11-25 00:26:21 +11001122 case 'c':
1123 change_comment = 1;
1124 break;
Damien Miller95def091999-11-25 00:26:21 +11001125 case 'f':
Damien Millerb089fb52005-05-26 12:16:18 +10001126 if (strlcpy(identity_file, optarg, sizeof(identity_file)) >=
1127 sizeof(identity_file))
1128 fatal("Identity filename too long");
Damien Miller95def091999-11-25 00:26:21 +11001129 have_identity = 1;
1130 break;
Damien Miller37876e92003-05-15 10:19:46 +10001131 case 'g':
1132 print_generic = 1;
1133 break;
Damien Miller95def091999-11-25 00:26:21 +11001134 case 'P':
1135 identity_passphrase = optarg;
1136 break;
Damien Miller95def091999-11-25 00:26:21 +11001137 case 'N':
1138 identity_new_passphrase = optarg;
1139 break;
Damien Miller95def091999-11-25 00:26:21 +11001140 case 'C':
1141 identity_comment = optarg;
1142 break;
Damien Miller95def091999-11-25 00:26:21 +11001143 case 'q':
1144 quiet = 1;
1145 break;
Ben Lindstrom5a707822001-04-22 17:15:46 +00001146 case 'e':
Damien Millereba71ba2000-04-29 23:57:08 +10001147 case 'x':
Ben Lindstrom5a707822001-04-22 17:15:46 +00001148 /* export key */
Damien Millereba71ba2000-04-29 23:57:08 +10001149 convert_to_ssh2 = 1;
1150 break;
Ben Lindstrom5a707822001-04-22 17:15:46 +00001151 case 'i':
Damien Millereba71ba2000-04-29 23:57:08 +10001152 case 'X':
Ben Lindstrom5a707822001-04-22 17:15:46 +00001153 /* import key */
Damien Millereba71ba2000-04-29 23:57:08 +10001154 convert_from_ssh2 = 1;
1155 break;
Damien Millereba71ba2000-04-29 23:57:08 +10001156 case 'y':
1157 print_public = 1;
1158 break;
Damien Millereba71ba2000-04-29 23:57:08 +10001159 case 'd':
Damien Miller0bc1bd82000-11-13 22:57:25 +11001160 key_type_name = "dsa";
Damien Millereba71ba2000-04-29 23:57:08 +10001161 break;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001162 case 't':
1163 key_type_name = optarg;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001164 break;
Ben Lindstrom8282d6a2001-08-06 21:44:05 +00001165 case 'D':
1166 download = 1;
Damien Miller90967402006-03-26 14:07:26 +11001167 /*FALLTHROUGH*/
Ben Lindstromf19578c2001-08-06 21:46:54 +00001168 case 'U':
Ben Lindstrom8282d6a2001-08-06 21:44:05 +00001169 reader_id = optarg;
Ben Lindstromcd392282001-07-04 03:44:03 +00001170 break;
Darren Tucker06930c72003-12-31 11:34:51 +11001171 case 'v':
1172 if (log_level == SYSLOG_LEVEL_INFO)
1173 log_level = SYSLOG_LEVEL_DEBUG1;
1174 else {
Darren Tuckerfc959702004-07-17 16:12:08 +10001175 if (log_level >= SYSLOG_LEVEL_DEBUG1 &&
Darren Tucker06930c72003-12-31 11:34:51 +11001176 log_level < SYSLOG_LEVEL_DEBUG3)
1177 log_level++;
1178 }
1179 break;
Damien Miller37876e92003-05-15 10:19:46 +10001180 case 'r':
Damien Miller4b42d7f2005-03-01 21:48:35 +11001181 rr_hostname = optarg;
Damien Miller37876e92003-05-15 10:19:46 +10001182 break;
Darren Tucker019cefe2003-08-02 22:40:07 +10001183 case 'W':
Damien Miller5f340062006-03-26 14:27:57 +11001184 generator_wanted = (u_int32_t)strtonum(optarg, 1,
1185 UINT_MAX, &errstr);
Damien Millerb089fb52005-05-26 12:16:18 +10001186 if (errstr)
1187 fatal("Desired generator has bad value: %s (%s)",
1188 optarg, errstr);
Darren Tucker019cefe2003-08-02 22:40:07 +10001189 break;
1190 case 'a':
Damien Miller5f340062006-03-26 14:27:57 +11001191 trials = (u_int32_t)strtonum(optarg, 1, UINT_MAX, &errstr);
Damien Millerb089fb52005-05-26 12:16:18 +10001192 if (errstr)
1193 fatal("Invalid number of trials: %s (%s)",
1194 optarg, errstr);
Darren Tucker019cefe2003-08-02 22:40:07 +10001195 break;
1196 case 'M':
Damien Miller5f340062006-03-26 14:27:57 +11001197 memory = (u_int32_t)strtonum(optarg, 1, UINT_MAX, &errstr);
Damien Millerb089fb52005-05-26 12:16:18 +10001198 if (errstr) {
1199 fatal("Memory limit is %s: %s", errstr, optarg);
1200 }
Darren Tucker019cefe2003-08-02 22:40:07 +10001201 break;
1202 case 'G':
1203 do_gen_candidates = 1;
Damien Millerb089fb52005-05-26 12:16:18 +10001204 if (strlcpy(out_file, optarg, sizeof(out_file)) >=
1205 sizeof(out_file))
1206 fatal("Output filename too long");
Darren Tucker019cefe2003-08-02 22:40:07 +10001207 break;
1208 case 'T':
1209 do_screen_candidates = 1;
Damien Millerb089fb52005-05-26 12:16:18 +10001210 if (strlcpy(out_file, optarg, sizeof(out_file)) >=
1211 sizeof(out_file))
1212 fatal("Output filename too long");
Darren Tucker019cefe2003-08-02 22:40:07 +10001213 break;
1214 case 'S':
1215 /* XXX - also compare length against bits */
1216 if (BN_hex2bn(&start, optarg) == 0)
1217 fatal("Invalid start point.");
1218 break;
Damien Miller95def091999-11-25 00:26:21 +11001219 case '?':
1220 default:
1221 usage();
1222 }
1223 }
Darren Tucker06930c72003-12-31 11:34:51 +11001224
1225 /* reinit */
Damien Millerdf8b7db2007-01-05 16:22:57 +11001226 log_init(argv[0], log_level, SYSLOG_FACILITY_USER, 1);
Darren Tucker06930c72003-12-31 11:34:51 +11001227
Damien Millerdf8b7db2007-01-05 16:22:57 +11001228 if (optind < argc) {
Damien Miller95def091999-11-25 00:26:21 +11001229 printf("Too many arguments.\n");
1230 usage();
1231 }
1232 if (change_passphrase && change_comment) {
1233 printf("Can only have one of -p and -c.\n");
1234 usage();
1235 }
Damien Miller4b42d7f2005-03-01 21:48:35 +11001236 if (delete_host || hash_hosts || find_host)
1237 do_known_hosts(pw, rr_hostname);
Ben Lindstrom8fd372b2001-03-12 03:02:17 +00001238 if (print_fingerprint || print_bubblebabble)
Damien Miller95def091999-11-25 00:26:21 +11001239 do_fingerprint(pw);
Damien Miller95def091999-11-25 00:26:21 +11001240 if (change_passphrase)
1241 do_change_passphrase(pw);
Damien Miller4a10d2e2002-03-11 22:53:29 +11001242 if (change_comment)
1243 do_change_comment(pw);
Kevin Steves3a881912002-07-20 19:05:40 +00001244 if (convert_to_ssh2)
1245 do_convert_to_ssh2(pw);
1246 if (convert_from_ssh2)
1247 do_convert_from_ssh2(pw);
Damien Millereba71ba2000-04-29 23:57:08 +10001248 if (print_public)
1249 do_print_public(pw);
Damien Miller4b42d7f2005-03-01 21:48:35 +11001250 if (rr_hostname != NULL) {
Damien Millercb314822006-03-26 13:48:01 +11001251 unsigned int n = 0;
1252
1253 if (have_identity) {
1254 n = do_print_resource_record(pw,
1255 identity_file, rr_hostname);
1256 if (n == 0) {
1257 perror(identity_file);
1258 exit(1);
1259 }
1260 exit(0);
1261 } else {
1262
1263 n += do_print_resource_record(pw,
1264 _PATH_HOST_RSA_KEY_FILE, rr_hostname);
1265 n += do_print_resource_record(pw,
1266 _PATH_HOST_DSA_KEY_FILE, rr_hostname);
1267
1268 if (n == 0)
1269 fatal("no keys found.");
1270 exit(0);
1271 }
Damien Miller37876e92003-05-15 10:19:46 +10001272 }
Ben Lindstrom8282d6a2001-08-06 21:44:05 +00001273 if (reader_id != NULL) {
Ben Lindstrom6818bfb2001-08-06 21:40:04 +00001274#ifdef SMARTCARD
Ben Lindstrom8282d6a2001-08-06 21:44:05 +00001275 if (download)
1276 do_download(pw, reader_id);
1277 else
1278 do_upload(pw, reader_id);
Ben Lindstromffce1472001-08-06 21:57:31 +00001279#else /* SMARTCARD */
Ben Lindstrom6818bfb2001-08-06 21:40:04 +00001280 fatal("no support for smartcards.");
Ben Lindstromffce1472001-08-06 21:57:31 +00001281#endif /* SMARTCARD */
Ben Lindstrom8282d6a2001-08-06 21:44:05 +00001282 }
Damien Miller95def091999-11-25 00:26:21 +11001283
Darren Tucker019cefe2003-08-02 22:40:07 +10001284 if (do_gen_candidates) {
1285 FILE *out = fopen(out_file, "w");
Damien Miller787b2ec2003-11-21 23:56:47 +11001286
Darren Tucker019cefe2003-08-02 22:40:07 +10001287 if (out == NULL) {
1288 error("Couldn't open modulus candidate file \"%s\": %s",
1289 out_file, strerror(errno));
1290 return (1);
1291 }
Damien Miller3f54a9f2005-11-05 14:52:18 +11001292 if (bits == 0)
1293 bits = DEFAULT_BITS;
Darren Tucker019cefe2003-08-02 22:40:07 +10001294 if (gen_candidates(out, memory, bits, start) != 0)
Damien Miller15d72a02005-11-05 15:07:33 +11001295 fatal("modulus candidate generation failed");
Darren Tucker019cefe2003-08-02 22:40:07 +10001296
1297 return (0);
1298 }
1299
1300 if (do_screen_candidates) {
1301 FILE *in;
1302 FILE *out = fopen(out_file, "w");
1303
1304 if (have_identity && strcmp(identity_file, "-") != 0) {
1305 if ((in = fopen(identity_file, "r")) == NULL) {
1306 fatal("Couldn't open modulus candidate "
Damien Millera8e06ce2003-11-21 23:48:55 +11001307 "file \"%s\": %s", identity_file,
Darren Tucker019cefe2003-08-02 22:40:07 +10001308 strerror(errno));
1309 }
1310 } else
1311 in = stdin;
1312
1313 if (out == NULL) {
1314 fatal("Couldn't open moduli file \"%s\": %s",
1315 out_file, strerror(errno));
1316 }
1317 if (prime_test(in, out, trials, generator_wanted) != 0)
Damien Miller15d72a02005-11-05 15:07:33 +11001318 fatal("modulus screening failed");
Darren Tuckerf4220e62003-08-21 16:44:07 +10001319 return (0);
Darren Tucker019cefe2003-08-02 22:40:07 +10001320 }
1321
Damien Miller95def091999-11-25 00:26:21 +11001322 arc4random_stir();
1323
Damien Millerf14be5c2005-11-05 15:15:49 +11001324 if (key_type_name == NULL)
1325 key_type_name = "rsa";
1326
Damien Millere39cacc2000-11-29 12:18:44 +11001327 type = key_type_from_name(key_type_name);
1328 if (type == KEY_UNSPEC) {
1329 fprintf(stderr, "unknown key type %s\n", key_type_name);
1330 exit(1);
Damien Millereba71ba2000-04-29 23:57:08 +10001331 }
Damien Miller3f54a9f2005-11-05 14:52:18 +11001332 if (bits == 0)
1333 bits = (type == KEY_DSA) ? DEFAULT_BITS_DSA : DEFAULT_BITS;
Tim Rice660c3402005-11-28 17:45:32 -08001334 if (type == KEY_DSA && bits != 1024)
1335 fatal("DSA keys must be 1024 bits");
Darren Tucker3af2ac52005-11-29 13:10:24 +11001336 if (!quiet)
1337 printf("Generating public/private %s key pair.\n", key_type_name);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001338 private = key_generate(type, bits);
1339 if (private == NULL) {
1340 fprintf(stderr, "key_generate failed");
1341 exit(1);
1342 }
1343 public = key_from_private(private);
Damien Miller95def091999-11-25 00:26:21 +11001344
1345 if (!have_identity)
1346 ask_filename(pw, "Enter file in which to save the key");
1347
Damien Miller788f2122005-11-05 15:14:59 +11001348 /* Create ~/.ssh directory if it doesn't already exist. */
Ben Lindstrom226cfa02001-01-22 05:34:40 +00001349 snprintf(dotsshdir, sizeof dotsshdir, "%s/%s", pw->pw_dir, _PATH_SSH_USER_DIR);
Damien Miller95def091999-11-25 00:26:21 +11001350 if (strstr(identity_file, dotsshdir) != NULL &&
1351 stat(dotsshdir, &st) < 0) {
Damien Millerbe484b52000-07-15 14:14:16 +10001352 if (mkdir(dotsshdir, 0700) < 0)
Damien Miller95def091999-11-25 00:26:21 +11001353 error("Could not create directory '%s'.", dotsshdir);
1354 else if (!quiet)
1355 printf("Created directory '%s'.\n", dotsshdir);
1356 }
1357 /* If the file already exists, ask the user to confirm. */
1358 if (stat(identity_file, &st) >= 0) {
1359 char yesno[3];
1360 printf("%s already exists.\n", identity_file);
1361 printf("Overwrite (y/n)? ");
1362 fflush(stdout);
1363 if (fgets(yesno, sizeof(yesno), stdin) == NULL)
1364 exit(1);
1365 if (yesno[0] != 'y' && yesno[0] != 'Y')
1366 exit(1);
1367 }
1368 /* Ask for a passphrase (twice). */
1369 if (identity_passphrase)
1370 passphrase1 = xstrdup(identity_passphrase);
1371 else if (identity_new_passphrase)
1372 passphrase1 = xstrdup(identity_new_passphrase);
1373 else {
1374passphrase_again:
1375 passphrase1 =
Ben Lindstrom949974b2001-06-25 05:20:31 +00001376 read_passphrase("Enter passphrase (empty for no "
1377 "passphrase): ", RP_ALLOW_STDIN);
1378 passphrase2 = read_passphrase("Enter same passphrase again: ",
1379 RP_ALLOW_STDIN);
Damien Miller95def091999-11-25 00:26:21 +11001380 if (strcmp(passphrase1, passphrase2) != 0) {
Ben Lindstrom949974b2001-06-25 05:20:31 +00001381 /*
1382 * The passphrases do not match. Clear them and
1383 * retry.
1384 */
Damien Miller95def091999-11-25 00:26:21 +11001385 memset(passphrase1, 0, strlen(passphrase1));
1386 memset(passphrase2, 0, strlen(passphrase2));
1387 xfree(passphrase1);
1388 xfree(passphrase2);
1389 printf("Passphrases do not match. Try again.\n");
1390 goto passphrase_again;
1391 }
1392 /* Clear the other copy of the passphrase. */
1393 memset(passphrase2, 0, strlen(passphrase2));
1394 xfree(passphrase2);
1395 }
1396
Damien Miller95def091999-11-25 00:26:21 +11001397 if (identity_comment) {
1398 strlcpy(comment, identity_comment, sizeof(comment));
1399 } else {
Damien Miller4af51302000-04-16 11:18:38 +10001400 /* Create default commend field for the passphrase. */
Damien Miller95def091999-11-25 00:26:21 +11001401 snprintf(comment, sizeof comment, "%s@%s", pw->pw_name, hostname);
1402 }
1403
1404 /* Save the key with the given passphrase and comment. */
Ben Lindstromd0fca422001-03-26 13:44:06 +00001405 if (!key_save_private(private, identity_file, passphrase1, comment)) {
Ben Lindstrom15f33862001-04-16 02:00:02 +00001406 printf("Saving the key failed: %s.\n", identity_file);
Damien Miller95def091999-11-25 00:26:21 +11001407 memset(passphrase1, 0, strlen(passphrase1));
1408 xfree(passphrase1);
1409 exit(1);
1410 }
1411 /* Clear the passphrase. */
1412 memset(passphrase1, 0, strlen(passphrase1));
1413 xfree(passphrase1);
1414
1415 /* Clear the private key and the random number generator. */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001416 key_free(private);
Damien Miller95def091999-11-25 00:26:21 +11001417 arc4random_stir();
1418
1419 if (!quiet)
1420 printf("Your identification has been saved in %s.\n", identity_file);
1421
Damien Miller95def091999-11-25 00:26:21 +11001422 strlcat(identity_file, ".pub", sizeof(identity_file));
Ben Lindstrom5fc62702001-03-09 18:19:24 +00001423 fd = open(identity_file, O_WRONLY | O_CREAT | O_TRUNC, 0644);
1424 if (fd == -1) {
Damien Miller95def091999-11-25 00:26:21 +11001425 printf("Could not save your public key in %s\n", identity_file);
1426 exit(1);
1427 }
Ben Lindstrom5fc62702001-03-09 18:19:24 +00001428 f = fdopen(fd, "w");
1429 if (f == NULL) {
1430 printf("fdopen %s failed", identity_file);
1431 exit(1);
1432 }
Damien Millereba71ba2000-04-29 23:57:08 +10001433 if (!key_write(public, f))
1434 fprintf(stderr, "write key failed");
1435 fprintf(f, " %s\n", comment);
Damien Miller95def091999-11-25 00:26:21 +11001436 fclose(f);
1437
1438 if (!quiet) {
Ben Lindstromcfccef92001-03-13 04:57:58 +00001439 char *fp = key_fingerprint(public, SSH_FP_MD5, SSH_FP_HEX);
Damien Millereba71ba2000-04-29 23:57:08 +10001440 printf("Your public key has been saved in %s.\n",
1441 identity_file);
Damien Miller95def091999-11-25 00:26:21 +11001442 printf("The key fingerprint is:\n");
Ben Lindstromcfccef92001-03-13 04:57:58 +00001443 printf("%s %s\n", fp, comment);
1444 xfree(fp);
Damien Miller95def091999-11-25 00:26:21 +11001445 }
Damien Millereba71ba2000-04-29 23:57:08 +10001446
1447 key_free(public);
Damien Miller95def091999-11-25 00:26:21 +11001448 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001449}