blob: a45499177dcae7c6a7e5508992515f93acbf693a [file] [log] [blame]
Darren Tuckere15fb092008-11-11 16:31:43 +11001/* $OpenBSD: ssh-keygen.c,v 1.172 2008/11/07 00:42:12 stevesk Exp $ */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002/*
Damien Miller95def091999-11-25 00:26:21 +11003 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1994 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5 * All rights reserved
Damien Miller95def091999-11-25 00:26:21 +11006 * Identity and host key generation and maintenance.
Damien Millere4340be2000-09-16 13:29:08 +11007 *
8 * As far as I am concerned, the code I have written for this software
9 * can be used freely for any purpose. Any derived versions of this
10 * software must be clearly marked as such, and if the derived work is
11 * incompatible with the protocol description in the RFC file, it must be
12 * called by a name other than "ssh" or "Secure Shell".
Damien Miller95def091999-11-25 00:26:21 +110013 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100014
15#include "includes.h"
Damien Millerf17883e2006-03-15 11:45:54 +110016
17#include <sys/types.h>
Damien Millere3b60b52006-07-10 21:08:03 +100018#include <sys/socket.h>
Damien Millerf17883e2006-03-15 11:45:54 +110019#include <sys/stat.h>
Damien Miller8dbffe72006-08-05 11:02:17 +100020#include <sys/param.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100021
Damien Millereba71ba2000-04-29 23:57:08 +100022#include <openssl/evp.h>
23#include <openssl/pem.h>
Darren Tuckerbfaaf962008-02-28 19:13:52 +110024#include "openbsd-compat/openssl-compat.h"
Damien Millereba71ba2000-04-29 23:57:08 +100025
Darren Tucker39972492006-07-12 22:22:46 +100026#include <errno.h>
Damien Miller57cf6382006-07-10 21:13:46 +100027#include <fcntl.h>
Damien Millerb8fe89c2006-07-24 14:51:00 +100028#include <netdb.h>
Darren Tucker2ee50c52006-07-11 18:55:05 +100029#ifdef HAVE_PATHS_H
30# include <paths.h>
31#endif
Damien Miller9f2abc42006-07-10 20:53:08 +100032#include <pwd.h>
Damien Millerded319c2006-09-01 15:38:36 +100033#include <stdarg.h>
Damien Millera7a73ee2006-08-05 11:37:59 +100034#include <stdio.h>
Damien Millere7a1e5c2006-08-05 11:34:19 +100035#include <stdlib.h>
Damien Millere3476ed2006-07-24 14:13:33 +100036#include <string.h>
Damien Millere6b3b612006-07-24 14:01:23 +100037#include <unistd.h>
Damien Miller9f2abc42006-07-10 20:53:08 +100038
Damien Millerd4a8b7e1999-10-27 13:42:43 +100039#include "xmalloc.h"
Damien Millereba71ba2000-04-29 23:57:08 +100040#include "key.h"
Ben Lindstromd09fcf52001-03-29 00:29:54 +000041#include "rsa.h"
Damien Millereba71ba2000-04-29 23:57:08 +100042#include "authfile.h"
43#include "uuencode.h"
Damien Miller874d77b2000-10-14 16:23:11 +110044#include "buffer.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000045#include "pathnames.h"
46#include "log.h"
Darren Tuckere608ca22004-05-13 16:15:47 +100047#include "misc.h"
Damien Miller4b42d7f2005-03-01 21:48:35 +110048#include "match.h"
49#include "hostfile.h"
Damien Miller69996102006-07-10 20:53:31 +100050#include "dns.h"
Damien Miller874d77b2000-10-14 16:23:11 +110051
Ben Lindstrom8282d6a2001-08-06 21:44:05 +000052#ifdef SMARTCARD
Ben Lindstrom8282d6a2001-08-06 21:44:05 +000053#include "scard.h"
Ben Lindstrombcc18082001-08-06 21:59:25 +000054#endif
Ben Lindstromcd392282001-07-04 03:44:03 +000055
Damien Miller3f54a9f2005-11-05 14:52:18 +110056/* Number of bits in the RSA/DSA key. This value can be set on the command line. */
57#define DEFAULT_BITS 2048
58#define DEFAULT_BITS_DSA 1024
59u_int32_t bits = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100060
Damien Miller5428f641999-11-25 11:54:57 +110061/*
62 * Flag indicating that we just want to change the passphrase. This can be
63 * set on the command line.
64 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100065int change_passphrase = 0;
66
Damien Miller5428f641999-11-25 11:54:57 +110067/*
68 * Flag indicating that we just want to change the comment. This can be set
69 * on the command line.
70 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100071int change_comment = 0;
72
73int quiet = 0;
74
Darren Tucker35c45532008-06-13 04:43:15 +100075int log_level = SYSLOG_LEVEL_INFO;
76
Damien Miller4b42d7f2005-03-01 21:48:35 +110077/* Flag indicating that we want to hash a known_hosts file */
78int hash_hosts = 0;
79/* Flag indicating that we want lookup a host in known_hosts file */
80int find_host = 0;
81/* Flag indicating that we want to delete a host from a known_hosts file */
82int delete_host = 0;
83
Damien Miller10f6f6b1999-11-17 17:29:08 +110084/* Flag indicating that we just want to see the key fingerprint */
85int print_fingerprint = 0;
Ben Lindstrom8fd372b2001-03-12 03:02:17 +000086int print_bubblebabble = 0;
Damien Miller10f6f6b1999-11-17 17:29:08 +110087
Damien Miller431f66b1999-11-21 18:31:57 +110088/* The identity file name, given on the command line or entered by the user. */
89char identity_file[1024];
90int have_identity = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100091
92/* This is set to the passphrase if given on the command line. */
93char *identity_passphrase = NULL;
94
95/* This is set to the new passphrase if given on the command line. */
96char *identity_new_passphrase = NULL;
97
98/* This is set to the new comment if given on the command line. */
99char *identity_comment = NULL;
100
Damien Millereba71ba2000-04-29 23:57:08 +1000101/* Dump public key file in format used by real and the original SSH 2 */
102int convert_to_ssh2 = 0;
103int convert_from_ssh2 = 0;
104int print_public = 0;
Damien Miller37876e92003-05-15 10:19:46 +1000105int print_generic = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100106
Damien Millera41c8b12002-01-22 23:05:08 +1100107char *key_type_name = NULL;
Damien Millereba71ba2000-04-29 23:57:08 +1000108
Damien Miller431f66b1999-11-21 18:31:57 +1100109/* argv0 */
110extern char *__progname;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000111
Damien Millereba71ba2000-04-29 23:57:08 +1000112char hostname[MAXHOSTNAMELEN];
113
Darren Tucker770fc012004-05-13 16:24:32 +1000114/* moduli.c */
Damien Millerb089fb52005-05-26 12:16:18 +1000115int gen_candidates(FILE *, u_int32_t, u_int32_t, BIGNUM *);
Darren Tucker770fc012004-05-13 16:24:32 +1000116int prime_test(FILE *, FILE *, u_int32_t, u_int32_t);
117
Ben Lindstrombba81212001-06-25 05:01:22 +0000118static void
Damien Miller431f66b1999-11-21 18:31:57 +1100119ask_filename(struct passwd *pw, const char *prompt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000120{
Damien Miller95def091999-11-25 00:26:21 +1100121 char buf[1024];
Damien Millere39cacc2000-11-29 12:18:44 +1100122 char *name = NULL;
123
Damien Miller993dd552002-02-19 15:22:47 +1100124 if (key_type_name == NULL)
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000125 name = _PATH_SSH_CLIENT_ID_RSA;
Damien Miller90967402006-03-26 14:07:26 +1100126 else {
Damien Miller993dd552002-02-19 15:22:47 +1100127 switch (key_type_from_name(key_type_name)) {
128 case KEY_RSA1:
129 name = _PATH_SSH_CLIENT_IDENTITY;
130 break;
131 case KEY_DSA:
132 name = _PATH_SSH_CLIENT_ID_DSA;
133 break;
134 case KEY_RSA:
135 name = _PATH_SSH_CLIENT_ID_RSA;
136 break;
137 default:
138 fprintf(stderr, "bad key type");
139 exit(1);
140 break;
141 }
Damien Miller90967402006-03-26 14:07:26 +1100142 }
Damien Millere39cacc2000-11-29 12:18:44 +1100143 snprintf(identity_file, sizeof(identity_file), "%s/%s", pw->pw_dir, name);
Ben Lindstrom3deda8b2000-12-22 20:27:43 +0000144 fprintf(stderr, "%s (%s): ", prompt, identity_file);
Damien Miller95def091999-11-25 00:26:21 +1100145 if (fgets(buf, sizeof(buf), stdin) == NULL)
146 exit(1);
Damien Miller14b017d2007-09-17 16:09:15 +1000147 buf[strcspn(buf, "\n")] = '\0';
Damien Miller95def091999-11-25 00:26:21 +1100148 if (strcmp(buf, "") != 0)
149 strlcpy(identity_file, buf, sizeof(identity_file));
150 have_identity = 1;
Damien Miller10f6f6b1999-11-17 17:29:08 +1100151}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000152
Ben Lindstrombba81212001-06-25 05:01:22 +0000153static Key *
Ben Lindstromd78ae762001-06-05 20:35:09 +0000154load_identity(char *filename)
Damien Millereba71ba2000-04-29 23:57:08 +1000155{
Ben Lindstromd0fca422001-03-26 13:44:06 +0000156 char *pass;
157 Key *prv;
158
Ben Lindstroma3700052001-04-05 23:26:32 +0000159 prv = key_load_private(filename, "", NULL);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000160 if (prv == NULL) {
Ben Lindstromd78ae762001-06-05 20:35:09 +0000161 if (identity_passphrase)
162 pass = xstrdup(identity_passphrase);
163 else
Ben Lindstrom949974b2001-06-25 05:20:31 +0000164 pass = read_passphrase("Enter passphrase: ",
165 RP_ALLOW_STDIN);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000166 prv = key_load_private(filename, pass, NULL);
Damien Millereba71ba2000-04-29 23:57:08 +1000167 memset(pass, 0, strlen(pass));
168 xfree(pass);
169 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000170 return prv;
Damien Millereba71ba2000-04-29 23:57:08 +1000171}
172
Damien Miller874d77b2000-10-14 16:23:11 +1100173#define SSH_COM_PUBLIC_BEGIN "---- BEGIN SSH2 PUBLIC KEY ----"
Ben Lindstromcb72e4f2002-06-21 00:41:51 +0000174#define SSH_COM_PUBLIC_END "---- END SSH2 PUBLIC KEY ----"
Damien Miller874d77b2000-10-14 16:23:11 +1100175#define SSH_COM_PRIVATE_BEGIN "---- BEGIN SSH2 ENCRYPTED PRIVATE KEY ----"
Kevin Stevesef4eea92001-02-05 12:42:17 +0000176#define SSH_COM_PRIVATE_KEY_MAGIC 0x3f6ff9eb
Damien Millereba71ba2000-04-29 23:57:08 +1000177
Ben Lindstrombba81212001-06-25 05:01:22 +0000178static void
Damien Millereba71ba2000-04-29 23:57:08 +1000179do_convert_to_ssh2(struct passwd *pw)
180{
Ben Lindstrom46c264f2001-04-24 16:56:58 +0000181 Key *k;
Ben Lindstromc58ab022002-02-26 18:15:09 +0000182 u_int len;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000183 u_char *blob;
Damien Millereba71ba2000-04-29 23:57:08 +1000184 struct stat st;
185
186 if (!have_identity)
187 ask_filename(pw, "Enter file in which the key is");
188 if (stat(identity_file, &st) < 0) {
189 perror(identity_file);
190 exit(1);
191 }
Ben Lindstrom46c264f2001-04-24 16:56:58 +0000192 if ((k = key_load_public(identity_file, NULL)) == NULL) {
Ben Lindstromd78ae762001-06-05 20:35:09 +0000193 if ((k = load_identity(identity_file)) == NULL) {
Ben Lindstrom46c264f2001-04-24 16:56:58 +0000194 fprintf(stderr, "load failed\n");
195 exit(1);
196 }
Damien Millereba71ba2000-04-29 23:57:08 +1000197 }
Damien Millerdb274722003-05-14 13:45:22 +1000198 if (k->type == KEY_RSA1) {
199 fprintf(stderr, "version 1 keys are not supported\n");
200 exit(1);
201 }
Ben Lindstrom99a30f12001-09-18 05:49:14 +0000202 if (key_to_blob(k, &blob, &len) <= 0) {
203 fprintf(stderr, "key_to_blob failed\n");
204 exit(1);
205 }
Damien Miller874d77b2000-10-14 16:23:11 +1100206 fprintf(stdout, "%s\n", SSH_COM_PUBLIC_BEGIN);
Damien Millereba71ba2000-04-29 23:57:08 +1000207 fprintf(stdout,
Ben Lindstrom58d3b722002-06-23 21:28:13 +0000208 "Comment: \"%u-bit %s, converted from OpenSSH by %s@%s\"\n",
Ben Lindstrom46c264f2001-04-24 16:56:58 +0000209 key_size(k), key_type(k),
Damien Millereba71ba2000-04-29 23:57:08 +1000210 pw->pw_name, hostname);
211 dump_base64(stdout, blob, len);
Damien Miller874d77b2000-10-14 16:23:11 +1100212 fprintf(stdout, "%s\n", SSH_COM_PUBLIC_END);
Ben Lindstrom46c264f2001-04-24 16:56:58 +0000213 key_free(k);
Damien Millereba71ba2000-04-29 23:57:08 +1000214 xfree(blob);
215 exit(0);
216}
217
Ben Lindstrombba81212001-06-25 05:01:22 +0000218static void
Damien Miller874d77b2000-10-14 16:23:11 +1100219buffer_get_bignum_bits(Buffer *b, BIGNUM *value)
220{
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000221 u_int bignum_bits = buffer_get_int(b);
222 u_int bytes = (bignum_bits + 7) / 8;
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000223
Damien Miller874d77b2000-10-14 16:23:11 +1100224 if (buffer_len(b) < bytes)
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000225 fatal("buffer_get_bignum_bits: input buffer too small: "
226 "need %d have %d", bytes, buffer_len(b));
Darren Tucker0bc85572006-11-07 23:14:41 +1100227 if (BN_bin2bn(buffer_ptr(b), bytes, value) == NULL)
228 fatal("buffer_get_bignum_bits: BN_bin2bn failed");
Damien Miller874d77b2000-10-14 16:23:11 +1100229 buffer_consume(b, bytes);
230}
231
Ben Lindstrombba81212001-06-25 05:01:22 +0000232static Key *
Ben Lindstrom90fd8142002-02-26 18:09:42 +0000233do_convert_private_ssh2_from_blob(u_char *blob, u_int blen)
Damien Miller874d77b2000-10-14 16:23:11 +1100234{
235 Buffer b;
Damien Miller874d77b2000-10-14 16:23:11 +1100236 Key *key = NULL;
Damien Miller874d77b2000-10-14 16:23:11 +1100237 char *type, *cipher;
Ben Lindstrom511d69e2001-07-04 05:05:27 +0000238 u_char *sig, data[] = "abcde12345";
Ben Lindstrome586c4c2001-06-25 05:04:58 +0000239 int magic, rlen, ktype, i1, i2, i3, i4;
240 u_int slen;
241 u_long e;
Damien Miller874d77b2000-10-14 16:23:11 +1100242
243 buffer_init(&b);
244 buffer_append(&b, blob, blen);
245
Darren Tucker82a3d2b2007-02-19 22:10:25 +1100246 magic = buffer_get_int(&b);
Damien Miller874d77b2000-10-14 16:23:11 +1100247 if (magic != SSH_COM_PRIVATE_KEY_MAGIC) {
248 error("bad magic 0x%x != 0x%x", magic, SSH_COM_PRIVATE_KEY_MAGIC);
249 buffer_free(&b);
250 return NULL;
251 }
Ben Lindstrom34f91882001-06-25 04:47:54 +0000252 i1 = buffer_get_int(&b);
Damien Miller874d77b2000-10-14 16:23:11 +1100253 type = buffer_get_string(&b, NULL);
254 cipher = buffer_get_string(&b, NULL);
Ben Lindstrom34f91882001-06-25 04:47:54 +0000255 i2 = buffer_get_int(&b);
256 i3 = buffer_get_int(&b);
257 i4 = buffer_get_int(&b);
Damien Miller80163902007-01-05 16:30:16 +1100258 debug("ignore (%d %d %d %d)", i1, i2, i3, i4);
Damien Miller874d77b2000-10-14 16:23:11 +1100259 if (strcmp(cipher, "none") != 0) {
260 error("unsupported cipher %s", cipher);
261 xfree(cipher);
262 buffer_free(&b);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000263 xfree(type);
Damien Miller874d77b2000-10-14 16:23:11 +1100264 return NULL;
265 }
266 xfree(cipher);
267
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000268 if (strstr(type, "dsa")) {
269 ktype = KEY_DSA;
270 } else if (strstr(type, "rsa")) {
271 ktype = KEY_RSA;
272 } else {
Darren Tucker7cfeecf2005-01-20 10:56:31 +1100273 buffer_free(&b);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000274 xfree(type);
Damien Miller874d77b2000-10-14 16:23:11 +1100275 return NULL;
276 }
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000277 key = key_new_private(ktype);
278 xfree(type);
279
280 switch (key->type) {
281 case KEY_DSA:
282 buffer_get_bignum_bits(&b, key->dsa->p);
283 buffer_get_bignum_bits(&b, key->dsa->g);
284 buffer_get_bignum_bits(&b, key->dsa->q);
285 buffer_get_bignum_bits(&b, key->dsa->pub_key);
286 buffer_get_bignum_bits(&b, key->dsa->priv_key);
287 break;
288 case KEY_RSA:
Darren Tucker82a3d2b2007-02-19 22:10:25 +1100289 e = buffer_get_char(&b);
Ben Lindstrom34f91882001-06-25 04:47:54 +0000290 debug("e %lx", e);
291 if (e < 30) {
292 e <<= 8;
293 e += buffer_get_char(&b);
294 debug("e %lx", e);
295 e <<= 8;
296 e += buffer_get_char(&b);
297 debug("e %lx", e);
298 }
299 if (!BN_set_word(key->rsa->e, e)) {
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000300 buffer_free(&b);
301 key_free(key);
302 return NULL;
303 }
304 buffer_get_bignum_bits(&b, key->rsa->d);
305 buffer_get_bignum_bits(&b, key->rsa->n);
306 buffer_get_bignum_bits(&b, key->rsa->iqmp);
307 buffer_get_bignum_bits(&b, key->rsa->q);
308 buffer_get_bignum_bits(&b, key->rsa->p);
Ben Lindstromf7297dd2001-07-04 05:02:23 +0000309 rsa_generate_additional_parameters(key->rsa);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000310 break;
311 }
Damien Miller874d77b2000-10-14 16:23:11 +1100312 rlen = buffer_len(&b);
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +0000313 if (rlen != 0)
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000314 error("do_convert_private_ssh2_from_blob: "
315 "remaining bytes in key blob %d", rlen);
Damien Miller874d77b2000-10-14 16:23:11 +1100316 buffer_free(&b);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000317
Ben Lindstrome586c4c2001-06-25 05:04:58 +0000318 /* try the key */
319 key_sign(key, &sig, &slen, data, sizeof(data));
320 key_verify(key, sig, slen, data, sizeof(data));
321 xfree(sig);
Damien Miller874d77b2000-10-14 16:23:11 +1100322 return key;
323}
324
Damien Miller8056a9d2006-03-15 12:05:40 +1100325static int
326get_line(FILE *fp, char *line, size_t len)
327{
328 int c;
329 size_t pos = 0;
330
331 line[0] = '\0';
332 while ((c = fgetc(fp)) != EOF) {
333 if (pos >= len - 1) {
334 fprintf(stderr, "input line too long.\n");
335 exit(1);
336 }
Damien Miller90967402006-03-26 14:07:26 +1100337 switch (c) {
Damien Miller8056a9d2006-03-15 12:05:40 +1100338 case '\r':
339 c = fgetc(fp);
340 if (c != EOF && c != '\n' && ungetc(c, fp) == EOF) {
341 fprintf(stderr, "unget: %s\n", strerror(errno));
342 exit(1);
343 }
344 return pos;
345 case '\n':
346 return pos;
347 }
348 line[pos++] = c;
349 line[pos] = '\0';
350 }
Damien Miller6c7439f2007-01-05 16:29:55 +1100351 /* We reached EOF */
352 return -1;
Damien Miller8056a9d2006-03-15 12:05:40 +1100353}
354
Ben Lindstrombba81212001-06-25 05:01:22 +0000355static void
Damien Millereba71ba2000-04-29 23:57:08 +1000356do_convert_from_ssh2(struct passwd *pw)
357{
358 Key *k;
359 int blen;
Ben Lindstrom155b9812002-04-02 20:26:26 +0000360 u_int len;
Damien Miller8056a9d2006-03-15 12:05:40 +1100361 char line[1024];
Ben Lindstrom9e0ddd42001-09-18 05:41:19 +0000362 u_char blob[8096];
Damien Millereba71ba2000-04-29 23:57:08 +1000363 char encoded[8096];
364 struct stat st;
Damien Miller874d77b2000-10-14 16:23:11 +1100365 int escaped = 0, private = 0, ok;
Damien Millereba71ba2000-04-29 23:57:08 +1000366 FILE *fp;
367
368 if (!have_identity)
369 ask_filename(pw, "Enter file in which the key is");
370 if (stat(identity_file, &st) < 0) {
371 perror(identity_file);
372 exit(1);
373 }
374 fp = fopen(identity_file, "r");
375 if (fp == NULL) {
376 perror(identity_file);
377 exit(1);
378 }
379 encoded[0] = '\0';
Damien Miller8056a9d2006-03-15 12:05:40 +1100380 while ((blen = get_line(fp, line, sizeof(line))) != -1) {
381 if (line[blen - 1] == '\\')
Damien Miller30c3d422000-05-09 11:02:59 +1000382 escaped++;
Damien Millereba71ba2000-04-29 23:57:08 +1000383 if (strncmp(line, "----", 4) == 0 ||
384 strstr(line, ": ") != NULL) {
Damien Miller874d77b2000-10-14 16:23:11 +1100385 if (strstr(line, SSH_COM_PRIVATE_BEGIN) != NULL)
386 private = 1;
Ben Lindstrome586c4c2001-06-25 05:04:58 +0000387 if (strstr(line, " END ") != NULL) {
388 break;
389 }
Ben Lindstrom30358602001-04-24 16:59:28 +0000390 /* fprintf(stderr, "ignore: %s", line); */
Damien Millereba71ba2000-04-29 23:57:08 +1000391 continue;
392 }
Damien Miller30c3d422000-05-09 11:02:59 +1000393 if (escaped) {
394 escaped--;
Ben Lindstrom30358602001-04-24 16:59:28 +0000395 /* fprintf(stderr, "escaped: %s", line); */
Damien Miller30c3d422000-05-09 11:02:59 +1000396 continue;
Damien Millereba71ba2000-04-29 23:57:08 +1000397 }
Damien Millereba71ba2000-04-29 23:57:08 +1000398 strlcat(encoded, line, sizeof(encoded));
399 }
Ben Lindstrom155b9812002-04-02 20:26:26 +0000400 len = strlen(encoded);
401 if (((len % 4) == 3) &&
402 (encoded[len-1] == '=') &&
403 (encoded[len-2] == '=') &&
404 (encoded[len-3] == '='))
405 encoded[len-3] = '\0';
Damien Miller4a8ed542002-01-22 23:33:31 +1100406 blen = uudecode(encoded, blob, sizeof(blob));
Damien Millereba71ba2000-04-29 23:57:08 +1000407 if (blen < 0) {
408 fprintf(stderr, "uudecode failed.\n");
409 exit(1);
410 }
Damien Miller874d77b2000-10-14 16:23:11 +1100411 k = private ?
412 do_convert_private_ssh2_from_blob(blob, blen) :
Damien Miller0bc1bd82000-11-13 22:57:25 +1100413 key_from_blob(blob, blen);
Damien Miller874d77b2000-10-14 16:23:11 +1100414 if (k == NULL) {
415 fprintf(stderr, "decode blob failed.\n");
416 exit(1);
417 }
418 ok = private ?
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000419 (k->type == KEY_DSA ?
420 PEM_write_DSAPrivateKey(stdout, k->dsa, NULL, NULL, 0, NULL, NULL) :
421 PEM_write_RSAPrivateKey(stdout, k->rsa, NULL, NULL, 0, NULL, NULL)) :
Damien Miller874d77b2000-10-14 16:23:11 +1100422 key_write(k, stdout);
423 if (!ok) {
424 fprintf(stderr, "key write failed");
425 exit(1);
426 }
Damien Millereba71ba2000-04-29 23:57:08 +1000427 key_free(k);
Damien Millera1db12b2002-01-22 23:20:15 +1100428 if (!private)
429 fprintf(stdout, "\n");
Damien Millereba71ba2000-04-29 23:57:08 +1000430 fclose(fp);
431 exit(0);
432}
433
Ben Lindstrombba81212001-06-25 05:01:22 +0000434static void
Damien Millereba71ba2000-04-29 23:57:08 +1000435do_print_public(struct passwd *pw)
436{
Ben Lindstromd0fca422001-03-26 13:44:06 +0000437 Key *prv;
Damien Millereba71ba2000-04-29 23:57:08 +1000438 struct stat st;
439
440 if (!have_identity)
441 ask_filename(pw, "Enter file in which the key is");
442 if (stat(identity_file, &st) < 0) {
443 perror(identity_file);
444 exit(1);
445 }
Ben Lindstromd78ae762001-06-05 20:35:09 +0000446 prv = load_identity(identity_file);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000447 if (prv == NULL) {
Damien Millereba71ba2000-04-29 23:57:08 +1000448 fprintf(stderr, "load failed\n");
449 exit(1);
450 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000451 if (!key_write(prv, stdout))
Damien Millereba71ba2000-04-29 23:57:08 +1000452 fprintf(stderr, "key_write failed");
Ben Lindstromd0fca422001-03-26 13:44:06 +0000453 key_free(prv);
Damien Millereba71ba2000-04-29 23:57:08 +1000454 fprintf(stdout, "\n");
455 exit(0);
456}
457
Ben Lindstrom6818bfb2001-08-06 21:40:04 +0000458#ifdef SMARTCARD
Ben Lindstromcd392282001-07-04 03:44:03 +0000459static void
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000460do_upload(struct passwd *pw, const char *sc_reader_id)
Ben Lindstromcd392282001-07-04 03:44:03 +0000461{
Ben Lindstromcd392282001-07-04 03:44:03 +0000462 Key *prv = NULL;
463 struct stat st;
Ben Lindstrom70e3ad82002-03-22 03:33:43 +0000464 int ret;
Ben Lindstromcd392282001-07-04 03:44:03 +0000465
466 if (!have_identity)
467 ask_filename(pw, "Enter file in which the key is");
468 if (stat(identity_file, &st) < 0) {
469 perror(identity_file);
Ben Lindstrom70e3ad82002-03-22 03:33:43 +0000470 exit(1);
Ben Lindstromcd392282001-07-04 03:44:03 +0000471 }
472 prv = load_identity(identity_file);
473 if (prv == NULL) {
474 error("load failed");
Ben Lindstrom70e3ad82002-03-22 03:33:43 +0000475 exit(1);
Ben Lindstromcd392282001-07-04 03:44:03 +0000476 }
Ben Lindstrom70e3ad82002-03-22 03:33:43 +0000477 ret = sc_put_key(prv, sc_reader_id);
478 key_free(prv);
479 if (ret < 0)
480 exit(1);
Damien Miller996acd22003-04-09 20:59:48 +1000481 logit("loading key done");
Ben Lindstrom70e3ad82002-03-22 03:33:43 +0000482 exit(0);
Ben Lindstromcd392282001-07-04 03:44:03 +0000483}
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000484
485static void
486do_download(struct passwd *pw, const char *sc_reader_id)
487{
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000488 Key **keys = NULL;
489 int i;
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000490
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000491 keys = sc_get_keys(sc_reader_id, NULL);
492 if (keys == NULL)
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000493 fatal("cannot read public key from smartcard");
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000494 for (i = 0; keys[i]; i++) {
495 key_write(keys[i], stdout);
496 key_free(keys[i]);
497 fprintf(stdout, "\n");
498 }
499 xfree(keys);
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000500 exit(0);
501}
Ben Lindstromffce1472001-08-06 21:57:31 +0000502#endif /* SMARTCARD */
Ben Lindstromcd392282001-07-04 03:44:03 +0000503
Ben Lindstrombba81212001-06-25 05:01:22 +0000504static void
Damien Miller10f6f6b1999-11-17 17:29:08 +1100505do_fingerprint(struct passwd *pw)
506{
Damien Miller98c7ad62000-03-09 21:27:49 +1100507 FILE *f;
Damien Millereba71ba2000-04-29 23:57:08 +1000508 Key *public;
Darren Tucker9c16ac92008-06-13 04:40:35 +1000509 char *comment = NULL, *cp, *ep, line[16*1024], *fp, *ra;
Damien Millercb2fbb22008-02-10 22:24:55 +1100510 int i, skip = 0, num = 0, invalid = 1;
Ben Lindstrom65366a82001-12-06 16:32:47 +0000511 enum fp_rep rep;
512 enum fp_type fptype;
Damien Miller95def091999-11-25 00:26:21 +1100513 struct stat st;
Damien Miller10f6f6b1999-11-17 17:29:08 +1100514
Ben Lindstromd0fca422001-03-26 13:44:06 +0000515 fptype = print_bubblebabble ? SSH_FP_SHA1 : SSH_FP_MD5;
516 rep = print_bubblebabble ? SSH_FP_BUBBLEBABBLE : SSH_FP_HEX;
Ben Lindstrom8fd372b2001-03-12 03:02:17 +0000517
Damien Miller95def091999-11-25 00:26:21 +1100518 if (!have_identity)
519 ask_filename(pw, "Enter file in which the key is");
520 if (stat(identity_file, &st) < 0) {
521 perror(identity_file);
522 exit(1);
523 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000524 public = key_load_public(identity_file, &comment);
525 if (public != NULL) {
526 fp = key_fingerprint(public, fptype, rep);
Darren Tuckera376a322008-06-13 04:42:14 +1000527 ra = key_fingerprint(public, fptype, SSH_FP_RANDOMART);
Darren Tuckerb68fb4a2008-06-13 08:57:27 +1000528 printf("%u %s %s (%s)\n", key_size(public), fp, comment,
529 key_type(public));
Darren Tucker35c45532008-06-13 04:43:15 +1000530 if (log_level >= SYSLOG_LEVEL_VERBOSE)
531 printf("%s\n", ra);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100532 key_free(public);
533 xfree(comment);
Darren Tucker9c16ac92008-06-13 04:40:35 +1000534 xfree(ra);
Ben Lindstrom8fd372b2001-03-12 03:02:17 +0000535 xfree(fp);
Damien Miller98c7ad62000-03-09 21:27:49 +1100536 exit(0);
537 }
Damien Miller40b59852006-06-13 13:00:25 +1000538 if (comment) {
Ben Lindstromd0fca422001-03-26 13:44:06 +0000539 xfree(comment);
Damien Miller40b59852006-06-13 13:00:25 +1000540 comment = NULL;
541 }
Damien Miller98c7ad62000-03-09 21:27:49 +1100542
543 f = fopen(identity_file, "r");
544 if (f != NULL) {
Damien Miller98c7ad62000-03-09 21:27:49 +1100545 while (fgets(line, sizeof(line), f)) {
Damien Miller0f4ed692007-10-26 14:26:32 +1000546 if ((cp = strchr(line, '\n')) == NULL) {
Damien Millercb2fbb22008-02-10 22:24:55 +1100547 error("line %d too long: %.40s...",
548 num + 1, line);
Damien Miller98c7ad62000-03-09 21:27:49 +1100549 skip = 1;
550 continue;
Damien Miller95def091999-11-25 00:26:21 +1100551 }
Damien Miller98c7ad62000-03-09 21:27:49 +1100552 num++;
553 if (skip) {
554 skip = 0;
555 continue;
556 }
Damien Miller0f4ed692007-10-26 14:26:32 +1000557 *cp = '\0';
Damien Miller98c7ad62000-03-09 21:27:49 +1100558
559 /* Skip leading whitespace, empty and comment lines. */
560 for (cp = line; *cp == ' ' || *cp == '\t'; cp++)
561 ;
562 if (!*cp || *cp == '\n' || *cp == '#')
Damien Miller80163902007-01-05 16:30:16 +1100563 continue;
Damien Miller98c7ad62000-03-09 21:27:49 +1100564 i = strtol(cp, &ep, 10);
565 if (i == 0 || ep == NULL || (*ep != ' ' && *ep != '\t')) {
566 int quoted = 0;
567 comment = cp;
Ben Lindstrom58d3b722002-06-23 21:28:13 +0000568 for (; *cp && (quoted || (*cp != ' ' &&
569 *cp != '\t')); cp++) {
Damien Miller98c7ad62000-03-09 21:27:49 +1100570 if (*cp == '\\' && cp[1] == '"')
571 cp++; /* Skip both */
572 else if (*cp == '"')
573 quoted = !quoted;
574 }
575 if (!*cp)
576 continue;
577 *cp++ = '\0';
578 }
579 ep = cp;
Ben Lindstrom2941f112000-12-29 16:50:13 +0000580 public = key_new(KEY_RSA1);
581 if (key_read(public, &cp) != 1) {
582 cp = ep;
583 key_free(public);
584 public = key_new(KEY_UNSPEC);
585 if (key_read(public, &cp) != 1) {
586 key_free(public);
587 continue;
588 }
Damien Miller98c7ad62000-03-09 21:27:49 +1100589 }
Ben Lindstrom2941f112000-12-29 16:50:13 +0000590 comment = *cp ? cp : comment;
Ben Lindstromd0fca422001-03-26 13:44:06 +0000591 fp = key_fingerprint(public, fptype, rep);
Darren Tucker9c16ac92008-06-13 04:40:35 +1000592 ra = key_fingerprint(public, fptype, SSH_FP_RANDOMART);
Darren Tuckerb68fb4a2008-06-13 08:57:27 +1000593 printf("%u %s %s (%s)\n", key_size(public), fp,
594 comment ? comment : "no comment", key_type(public));
Darren Tucker35c45532008-06-13 04:43:15 +1000595 if (log_level >= SYSLOG_LEVEL_VERBOSE)
596 printf("%s\n", ra);
Darren Tucker9c16ac92008-06-13 04:40:35 +1000597 xfree(ra);
Ben Lindstrom8fd372b2001-03-12 03:02:17 +0000598 xfree(fp);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000599 key_free(public);
Ben Lindstrom2941f112000-12-29 16:50:13 +0000600 invalid = 0;
Damien Miller95def091999-11-25 00:26:21 +1100601 }
Damien Miller98c7ad62000-03-09 21:27:49 +1100602 fclose(f);
Damien Miller95def091999-11-25 00:26:21 +1100603 }
Damien Miller98c7ad62000-03-09 21:27:49 +1100604 if (invalid) {
Damien Millereb5fec62001-11-12 10:52:44 +1100605 printf("%s is not a public key file.\n", identity_file);
Damien Miller98c7ad62000-03-09 21:27:49 +1100606 exit(1);
607 }
Damien Miller95def091999-11-25 00:26:21 +1100608 exit(0);
Damien Miller10f6f6b1999-11-17 17:29:08 +1100609}
610
Damien Miller4b42d7f2005-03-01 21:48:35 +1100611static void
Damien Millera8796f32008-02-10 22:24:30 +1100612print_host(FILE *f, const char *name, Key *public, int hash)
Damien Miller4b42d7f2005-03-01 21:48:35 +1100613{
Darren Tucker0f7e9102008-06-08 12:54:29 +1000614 if (print_fingerprint) {
615 enum fp_rep rep;
616 enum fp_type fptype;
Darren Tucker9c16ac92008-06-13 04:40:35 +1000617 char *fp, *ra;
Darren Tucker0f7e9102008-06-08 12:54:29 +1000618
619 fptype = print_bubblebabble ? SSH_FP_SHA1 : SSH_FP_MD5;
620 rep = print_bubblebabble ? SSH_FP_BUBBLEBABBLE : SSH_FP_HEX;
621 fp = key_fingerprint(public, fptype, rep);
Darren Tucker9c16ac92008-06-13 04:40:35 +1000622 ra = key_fingerprint(public, fptype, SSH_FP_RANDOMART);
Damien Miller81dec052008-07-14 11:28:29 +1000623 printf("%u %s %s (%s)\n", key_size(public), fp, name,
624 key_type(public));
625 if (log_level >= SYSLOG_LEVEL_VERBOSE)
626 printf("%s\n", ra);
Darren Tucker9c16ac92008-06-13 04:40:35 +1000627 xfree(ra);
Darren Tucker0f7e9102008-06-08 12:54:29 +1000628 xfree(fp);
629 } else {
630 if (hash && (name = host_hash(name, NULL, 0)) == NULL)
631 fatal("hash_host failed");
632 fprintf(f, "%s ", name);
633 if (!key_write(public, f))
634 fatal("key_write failed");
635 fprintf(f, "\n");
636 }
Damien Miller4b42d7f2005-03-01 21:48:35 +1100637}
638
639static void
640do_known_hosts(struct passwd *pw, const char *name)
641{
642 FILE *in, *out = stdout;
643 Key *public;
644 char *cp, *cp2, *kp, *kp2;
645 char line[16*1024], tmp[MAXPATHLEN], old[MAXPATHLEN];
Damien Millercb2fbb22008-02-10 22:24:55 +1100646 int c, skip = 0, inplace = 0, num = 0, invalid = 0, has_unhashed = 0;
Damien Miller4b42d7f2005-03-01 21:48:35 +1100647
648 if (!have_identity) {
649 cp = tilde_expand_filename(_PATH_SSH_USER_HOSTFILE, pw->pw_uid);
650 if (strlcpy(identity_file, cp, sizeof(identity_file)) >=
651 sizeof(identity_file))
652 fatal("Specified known hosts path too long");
653 xfree(cp);
654 have_identity = 1;
655 }
656 if ((in = fopen(identity_file, "r")) == NULL)
657 fatal("fopen: %s", strerror(errno));
658
659 /*
660 * Find hosts goes to stdout, hash and deletions happen in-place
661 * A corner case is ssh-keygen -HF foo, which should go to stdout
662 */
663 if (!find_host && (hash_hosts || delete_host)) {
664 if (strlcpy(tmp, identity_file, sizeof(tmp)) >= sizeof(tmp) ||
665 strlcat(tmp, ".XXXXXXXXXX", sizeof(tmp)) >= sizeof(tmp) ||
666 strlcpy(old, identity_file, sizeof(old)) >= sizeof(old) ||
667 strlcat(old, ".old", sizeof(old)) >= sizeof(old))
668 fatal("known_hosts path too long");
669 umask(077);
670 if ((c = mkstemp(tmp)) == -1)
671 fatal("mkstemp: %s", strerror(errno));
672 if ((out = fdopen(c, "w")) == NULL) {
673 c = errno;
674 unlink(tmp);
675 fatal("fdopen: %s", strerror(c));
676 }
677 inplace = 1;
678 }
679
680 while (fgets(line, sizeof(line), in)) {
Damien Miller0f4ed692007-10-26 14:26:32 +1000681 if ((cp = strchr(line, '\n')) == NULL) {
Damien Millercb2fbb22008-02-10 22:24:55 +1100682 error("line %d too long: %.40s...", num + 1, line);
Damien Miller4b42d7f2005-03-01 21:48:35 +1100683 skip = 1;
684 invalid = 1;
685 continue;
686 }
Damien Miller0f4ed692007-10-26 14:26:32 +1000687 num++;
Damien Miller4b42d7f2005-03-01 21:48:35 +1100688 if (skip) {
689 skip = 0;
690 continue;
691 }
Damien Miller0f4ed692007-10-26 14:26:32 +1000692 *cp = '\0';
Damien Miller4b42d7f2005-03-01 21:48:35 +1100693
694 /* Skip leading whitespace, empty and comment lines. */
695 for (cp = line; *cp == ' ' || *cp == '\t'; cp++)
696 ;
697 if (!*cp || *cp == '\n' || *cp == '#') {
698 if (inplace)
699 fprintf(out, "%s\n", cp);
700 continue;
701 }
702 /* Find the end of the host name portion. */
703 for (kp = cp; *kp && *kp != ' ' && *kp != '\t'; kp++)
704 ;
705 if (*kp == '\0' || *(kp + 1) == '\0') {
706 error("line %d missing key: %.40s...",
707 num, line);
708 invalid = 1;
709 continue;
710 }
711 *kp++ = '\0';
712 kp2 = kp;
713
714 public = key_new(KEY_RSA1);
715 if (key_read(public, &kp) != 1) {
716 kp = kp2;
717 key_free(public);
718 public = key_new(KEY_UNSPEC);
719 if (key_read(public, &kp) != 1) {
720 error("line %d invalid key: %.40s...",
721 num, line);
722 key_free(public);
723 invalid = 1;
724 continue;
725 }
726 }
727
728 if (*cp == HASH_DELIM) {
729 if (find_host || delete_host) {
730 cp2 = host_hash(name, cp, strlen(cp));
731 if (cp2 == NULL) {
732 error("line %d: invalid hashed "
733 "name: %.64s...", num, line);
734 invalid = 1;
735 continue;
736 }
737 c = (strcmp(cp2, cp) == 0);
738 if (find_host && c) {
739 printf("# Host %s found: "
740 "line %d type %s\n", name,
741 num, key_type(public));
742 print_host(out, cp, public, 0);
743 }
744 if (delete_host && !c)
745 print_host(out, cp, public, 0);
746 } else if (hash_hosts)
747 print_host(out, cp, public, 0);
748 } else {
749 if (find_host || delete_host) {
750 c = (match_hostname(name, cp,
751 strlen(cp)) == 1);
752 if (find_host && c) {
753 printf("# Host %s found: "
754 "line %d type %s\n", name,
755 num, key_type(public));
Damien Millera8796f32008-02-10 22:24:30 +1100756 print_host(out, name, public,
757 hash_hosts);
Damien Miller4b42d7f2005-03-01 21:48:35 +1100758 }
759 if (delete_host && !c)
760 print_host(out, cp, public, 0);
761 } else if (hash_hosts) {
Darren Tucker47eede72005-03-14 23:08:12 +1100762 for (cp2 = strsep(&cp, ",");
Damien Miller4b42d7f2005-03-01 21:48:35 +1100763 cp2 != NULL && *cp2 != '\0';
Damien Miller89eac802005-03-02 12:33:04 +1100764 cp2 = strsep(&cp, ",")) {
765 if (strcspn(cp2, "*?!") != strlen(cp2))
766 fprintf(stderr, "Warning: "
767 "ignoring host name with "
768 "metacharacters: %.64s\n",
769 cp2);
770 else
771 print_host(out, cp2, public, 1);
772 }
Damien Miller4b42d7f2005-03-01 21:48:35 +1100773 has_unhashed = 1;
774 }
775 }
776 key_free(public);
777 }
778 fclose(in);
779
780 if (invalid) {
Damien Millercb2fbb22008-02-10 22:24:55 +1100781 fprintf(stderr, "%s is not a valid known_hosts file.\n",
Damien Miller4b42d7f2005-03-01 21:48:35 +1100782 identity_file);
783 if (inplace) {
784 fprintf(stderr, "Not replacing existing known_hosts "
Darren Tucker9f438a92005-03-14 23:09:18 +1100785 "file because of errors\n");
Damien Miller4b42d7f2005-03-01 21:48:35 +1100786 fclose(out);
787 unlink(tmp);
788 }
789 exit(1);
790 }
791
792 if (inplace) {
793 fclose(out);
794
795 /* Backup existing file */
796 if (unlink(old) == -1 && errno != ENOENT)
797 fatal("unlink %.100s: %s", old, strerror(errno));
798 if (link(identity_file, old) == -1)
799 fatal("link %.100s to %.100s: %s", identity_file, old,
800 strerror(errno));
801 /* Move new one into place */
802 if (rename(tmp, identity_file) == -1) {
803 error("rename\"%s\" to \"%s\": %s", tmp, identity_file,
804 strerror(errno));
805 unlink(tmp);
806 unlink(old);
807 exit(1);
808 }
809
810 fprintf(stderr, "%s updated.\n", identity_file);
811 fprintf(stderr, "Original contents retained as %s\n", old);
812 if (has_unhashed) {
813 fprintf(stderr, "WARNING: %s contains unhashed "
814 "entries\n", old);
815 fprintf(stderr, "Delete this file to ensure privacy "
Damien Miller0dc1bef2005-07-17 17:22:45 +1000816 "of hostnames\n");
Damien Miller4b42d7f2005-03-01 21:48:35 +1100817 }
818 }
819
820 exit(0);
821}
822
Damien Miller95def091999-11-25 00:26:21 +1100823/*
824 * Perform changing a passphrase. The argument is the passwd structure
825 * for the current user.
826 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000827static void
Damien Miller10f6f6b1999-11-17 17:29:08 +1100828do_change_passphrase(struct passwd *pw)
829{
Damien Miller95def091999-11-25 00:26:21 +1100830 char *comment;
831 char *old_passphrase, *passphrase1, *passphrase2;
832 struct stat st;
Damien Millereba71ba2000-04-29 23:57:08 +1000833 Key *private;
Damien Miller10f6f6b1999-11-17 17:29:08 +1100834
Damien Miller95def091999-11-25 00:26:21 +1100835 if (!have_identity)
836 ask_filename(pw, "Enter file in which the key is");
Damien Miller95def091999-11-25 00:26:21 +1100837 if (stat(identity_file, &st) < 0) {
838 perror(identity_file);
839 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000840 }
Damien Miller95def091999-11-25 00:26:21 +1100841 /* Try to load the file with empty passphrase. */
Ben Lindstromd0fca422001-03-26 13:44:06 +0000842 private = key_load_private(identity_file, "", &comment);
843 if (private == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100844 if (identity_passphrase)
845 old_passphrase = xstrdup(identity_passphrase);
846 else
Ben Lindstrom949974b2001-06-25 05:20:31 +0000847 old_passphrase =
848 read_passphrase("Enter old passphrase: ",
849 RP_ALLOW_STDIN);
850 private = key_load_private(identity_file, old_passphrase,
851 &comment);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000852 memset(old_passphrase, 0, strlen(old_passphrase));
853 xfree(old_passphrase);
854 if (private == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100855 printf("Bad passphrase.\n");
856 exit(1);
857 }
Damien Miller95def091999-11-25 00:26:21 +1100858 }
859 printf("Key has comment '%s'\n", comment);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000860
Damien Miller95def091999-11-25 00:26:21 +1100861 /* Ask the new passphrase (twice). */
862 if (identity_new_passphrase) {
863 passphrase1 = xstrdup(identity_new_passphrase);
864 passphrase2 = NULL;
865 } else {
866 passphrase1 =
Ben Lindstrom949974b2001-06-25 05:20:31 +0000867 read_passphrase("Enter new passphrase (empty for no "
868 "passphrase): ", RP_ALLOW_STDIN);
869 passphrase2 = read_passphrase("Enter same passphrase again: ",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100870 RP_ALLOW_STDIN);
Damien Miller95def091999-11-25 00:26:21 +1100871
872 /* Verify that they are the same. */
873 if (strcmp(passphrase1, passphrase2) != 0) {
874 memset(passphrase1, 0, strlen(passphrase1));
875 memset(passphrase2, 0, strlen(passphrase2));
876 xfree(passphrase1);
877 xfree(passphrase2);
878 printf("Pass phrases do not match. Try again.\n");
879 exit(1);
880 }
881 /* Destroy the other copy. */
882 memset(passphrase2, 0, strlen(passphrase2));
883 xfree(passphrase2);
884 }
885
886 /* Save the file using the new passphrase. */
Ben Lindstromd0fca422001-03-26 13:44:06 +0000887 if (!key_save_private(private, identity_file, passphrase1, comment)) {
Ben Lindstrom15f33862001-04-16 02:00:02 +0000888 printf("Saving the key failed: %s.\n", identity_file);
Damien Miller95def091999-11-25 00:26:21 +1100889 memset(passphrase1, 0, strlen(passphrase1));
890 xfree(passphrase1);
Damien Millereba71ba2000-04-29 23:57:08 +1000891 key_free(private);
Damien Miller95def091999-11-25 00:26:21 +1100892 xfree(comment);
893 exit(1);
894 }
895 /* Destroy the passphrase and the copy of the key in memory. */
896 memset(passphrase1, 0, strlen(passphrase1));
897 xfree(passphrase1);
Damien Millereba71ba2000-04-29 23:57:08 +1000898 key_free(private); /* Destroys contents */
Damien Miller95def091999-11-25 00:26:21 +1100899 xfree(comment);
900
901 printf("Your identification has been saved with the new passphrase.\n");
902 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000903}
904
Damien Miller37876e92003-05-15 10:19:46 +1000905/*
906 * Print the SSHFP RR.
907 */
Damien Millercb314822006-03-26 13:48:01 +1100908static int
909do_print_resource_record(struct passwd *pw, char *fname, char *hname)
Damien Miller37876e92003-05-15 10:19:46 +1000910{
911 Key *public;
912 char *comment = NULL;
913 struct stat st;
914
Damien Millercb314822006-03-26 13:48:01 +1100915 if (fname == NULL)
Damien Miller37876e92003-05-15 10:19:46 +1000916 ask_filename(pw, "Enter file in which the key is");
Damien Millercb314822006-03-26 13:48:01 +1100917 if (stat(fname, &st) < 0) {
918 if (errno == ENOENT)
919 return 0;
920 perror(fname);
Damien Miller37876e92003-05-15 10:19:46 +1000921 exit(1);
922 }
Damien Millercb314822006-03-26 13:48:01 +1100923 public = key_load_public(fname, &comment);
Damien Miller37876e92003-05-15 10:19:46 +1000924 if (public != NULL) {
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000925 export_dns_rr(hname, public, stdout, print_generic);
Damien Miller37876e92003-05-15 10:19:46 +1000926 key_free(public);
927 xfree(comment);
Damien Millercb314822006-03-26 13:48:01 +1100928 return 1;
Damien Miller37876e92003-05-15 10:19:46 +1000929 }
930 if (comment)
931 xfree(comment);
932
Damien Millercb314822006-03-26 13:48:01 +1100933 printf("failed to read v2 public key from %s.\n", fname);
Damien Miller37876e92003-05-15 10:19:46 +1000934 exit(1);
935}
Damien Miller37876e92003-05-15 10:19:46 +1000936
Damien Miller95def091999-11-25 00:26:21 +1100937/*
938 * Change the comment of a private key file.
939 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000940static void
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000941do_change_comment(struct passwd *pw)
942{
Ben Lindstrom5fc62702001-03-09 18:19:24 +0000943 char new_comment[1024], *comment, *passphrase;
Ben Lindstromd0fca422001-03-26 13:44:06 +0000944 Key *private;
945 Key *public;
Damien Miller95def091999-11-25 00:26:21 +1100946 struct stat st;
947 FILE *f;
Ben Lindstrom5fc62702001-03-09 18:19:24 +0000948 int fd;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000949
Damien Miller95def091999-11-25 00:26:21 +1100950 if (!have_identity)
951 ask_filename(pw, "Enter file in which the key is");
Damien Miller95def091999-11-25 00:26:21 +1100952 if (stat(identity_file, &st) < 0) {
953 perror(identity_file);
954 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000955 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000956 private = key_load_private(identity_file, "", &comment);
957 if (private == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100958 if (identity_passphrase)
959 passphrase = xstrdup(identity_passphrase);
960 else if (identity_new_passphrase)
961 passphrase = xstrdup(identity_new_passphrase);
962 else
Ben Lindstrom949974b2001-06-25 05:20:31 +0000963 passphrase = read_passphrase("Enter passphrase: ",
964 RP_ALLOW_STDIN);
Damien Miller95def091999-11-25 00:26:21 +1100965 /* Try to load using the passphrase. */
Ben Lindstromd0fca422001-03-26 13:44:06 +0000966 private = key_load_private(identity_file, passphrase, &comment);
967 if (private == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100968 memset(passphrase, 0, strlen(passphrase));
969 xfree(passphrase);
970 printf("Bad passphrase.\n");
971 exit(1);
972 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000973 } else {
974 passphrase = xstrdup("");
Damien Miller95def091999-11-25 00:26:21 +1100975 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000976 if (private->type != KEY_RSA1) {
977 fprintf(stderr, "Comments are only supported for RSA1 keys.\n");
978 key_free(private);
979 exit(1);
Damien Miller9f0f5c62001-12-21 14:45:46 +1100980 }
Damien Miller95def091999-11-25 00:26:21 +1100981 printf("Key now has comment '%s'\n", comment);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000982
Damien Miller95def091999-11-25 00:26:21 +1100983 if (identity_comment) {
984 strlcpy(new_comment, identity_comment, sizeof(new_comment));
985 } else {
986 printf("Enter new comment: ");
987 fflush(stdout);
988 if (!fgets(new_comment, sizeof(new_comment), stdin)) {
989 memset(passphrase, 0, strlen(passphrase));
Damien Millereba71ba2000-04-29 23:57:08 +1000990 key_free(private);
Damien Miller95def091999-11-25 00:26:21 +1100991 exit(1);
992 }
Damien Miller14b017d2007-09-17 16:09:15 +1000993 new_comment[strcspn(new_comment, "\n")] = '\0';
Damien Miller95def091999-11-25 00:26:21 +1100994 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000995
Damien Miller95def091999-11-25 00:26:21 +1100996 /* Save the file using the new passphrase. */
Ben Lindstromd0fca422001-03-26 13:44:06 +0000997 if (!key_save_private(private, identity_file, passphrase, new_comment)) {
Ben Lindstrom15f33862001-04-16 02:00:02 +0000998 printf("Saving the key failed: %s.\n", identity_file);
Damien Miller95def091999-11-25 00:26:21 +1100999 memset(passphrase, 0, strlen(passphrase));
1000 xfree(passphrase);
Damien Millereba71ba2000-04-29 23:57:08 +10001001 key_free(private);
Damien Miller95def091999-11-25 00:26:21 +11001002 xfree(comment);
1003 exit(1);
1004 }
Damien Miller95def091999-11-25 00:26:21 +11001005 memset(passphrase, 0, strlen(passphrase));
1006 xfree(passphrase);
Ben Lindstromd0fca422001-03-26 13:44:06 +00001007 public = key_from_private(private);
Damien Millereba71ba2000-04-29 23:57:08 +10001008 key_free(private);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001009
Damien Miller95def091999-11-25 00:26:21 +11001010 strlcat(identity_file, ".pub", sizeof(identity_file));
Ben Lindstrom5fc62702001-03-09 18:19:24 +00001011 fd = open(identity_file, O_WRONLY | O_CREAT | O_TRUNC, 0644);
1012 if (fd == -1) {
Damien Miller95def091999-11-25 00:26:21 +11001013 printf("Could not save your public key in %s\n", identity_file);
1014 exit(1);
1015 }
Ben Lindstrom5fc62702001-03-09 18:19:24 +00001016 f = fdopen(fd, "w");
1017 if (f == NULL) {
1018 printf("fdopen %s failed", identity_file);
1019 exit(1);
1020 }
Damien Millereba71ba2000-04-29 23:57:08 +10001021 if (!key_write(public, f))
1022 fprintf(stderr, "write key failed");
1023 key_free(public);
1024 fprintf(f, " %s\n", new_comment);
Damien Miller95def091999-11-25 00:26:21 +11001025 fclose(f);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001026
Damien Miller95def091999-11-25 00:26:21 +11001027 xfree(comment);
1028
1029 printf("The comment in your key file has been changed.\n");
1030 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001031}
1032
Ben Lindstrombba81212001-06-25 05:01:22 +00001033static void
Damien Miller431f66b1999-11-21 18:31:57 +11001034usage(void)
1035{
Damien Miller5cbe7ca2007-09-17 16:05:50 +10001036 fprintf(stderr, "usage: %s [options]\n", __progname);
Ben Lindstrom97be31e2001-08-06 21:49:06 +00001037 fprintf(stderr, "Options:\n");
Damien Miller9278ffa2005-05-26 11:59:06 +10001038 fprintf(stderr, " -a trials Number of trials for screening DH-GEX moduli.\n");
Ben Lindstrom97be31e2001-08-06 21:49:06 +00001039 fprintf(stderr, " -B Show bubblebabble digest of key file.\n");
Damien Miller9278ffa2005-05-26 11:59:06 +10001040 fprintf(stderr, " -b bits Number of bits in the key to create.\n");
Ben Lindstrom97be31e2001-08-06 21:49:06 +00001041 fprintf(stderr, " -C comment Provide new comment.\n");
Damien Miller9278ffa2005-05-26 11:59:06 +10001042 fprintf(stderr, " -c Change comment in private and public key files.\n");
Ben Lindstrom97be31e2001-08-06 21:49:06 +00001043#ifdef SMARTCARD
1044 fprintf(stderr, " -D reader Download public key from smartcard.\n");
Damien Miller9278ffa2005-05-26 11:59:06 +10001045#endif /* SMARTCARD */
Darren Tucker26dc3e62007-02-19 22:09:06 +11001046 fprintf(stderr, " -e Convert OpenSSH to RFC 4716 key file.\n");
Damien Miller9278ffa2005-05-26 11:59:06 +10001047 fprintf(stderr, " -F hostname Find hostname in known hosts file.\n");
1048 fprintf(stderr, " -f filename Filename of the key file.\n");
1049 fprintf(stderr, " -G file Generate candidates for DH-GEX moduli.\n");
1050 fprintf(stderr, " -g Use generic DNS resource record format.\n");
1051 fprintf(stderr, " -H Hash names in known_hosts file.\n");
Darren Tucker26dc3e62007-02-19 22:09:06 +11001052 fprintf(stderr, " -i Convert RFC 4716 to OpenSSH key file.\n");
Damien Miller9278ffa2005-05-26 11:59:06 +10001053 fprintf(stderr, " -l Show fingerprint of key file.\n");
1054 fprintf(stderr, " -M memory Amount of memory (MB) to use for generating DH-GEX moduli.\n");
1055 fprintf(stderr, " -N phrase Provide new passphrase.\n");
1056 fprintf(stderr, " -P phrase Provide old passphrase.\n");
1057 fprintf(stderr, " -p Change passphrase of private key file.\n");
1058 fprintf(stderr, " -q Quiet.\n");
1059 fprintf(stderr, " -R hostname Remove host from known_hosts file.\n");
1060 fprintf(stderr, " -r hostname Print DNS resource record.\n");
1061 fprintf(stderr, " -S start Start point (hex) for generating DH-GEX moduli.\n");
1062 fprintf(stderr, " -T file Screen candidates for DH-GEX moduli.\n");
1063 fprintf(stderr, " -t type Specify type of key to create.\n");
1064#ifdef SMARTCARD
Ben Lindstrom97be31e2001-08-06 21:49:06 +00001065 fprintf(stderr, " -U reader Upload private key to smartcard.\n");
1066#endif /* SMARTCARD */
Damien Miller9278ffa2005-05-26 11:59:06 +10001067 fprintf(stderr, " -v Verbose.\n");
1068 fprintf(stderr, " -W gen Generator to use for generating DH-GEX moduli.\n");
1069 fprintf(stderr, " -y Read private key file and print public key.\n");
Darren Tucker019cefe2003-08-02 22:40:07 +10001070
Damien Miller95def091999-11-25 00:26:21 +11001071 exit(1);
Damien Miller431f66b1999-11-21 18:31:57 +11001072}
1073
Damien Miller95def091999-11-25 00:26:21 +11001074/*
1075 * Main program for key management.
1076 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001077int
Damien Millerdf8b7db2007-01-05 16:22:57 +11001078main(int argc, char **argv)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001079{
Damien Millera41c8b12002-01-22 23:05:08 +11001080 char dotsshdir[MAXPATHLEN], comment[1024], *passphrase1, *passphrase2;
Tim Rice2e0e38e2003-09-08 16:11:33 -07001081 char out_file[MAXPATHLEN], *reader_id = NULL;
Damien Miller4b42d7f2005-03-01 21:48:35 +11001082 char *rr_hostname = NULL;
Ben Lindstrom5fc62702001-03-09 18:19:24 +00001083 Key *private, *public;
Damien Miller95def091999-11-25 00:26:21 +11001084 struct passwd *pw;
Damien Miller95def091999-11-25 00:26:21 +11001085 struct stat st;
Damien Millerb089fb52005-05-26 12:16:18 +10001086 int opt, type, fd, download = 0;
Darren Tucker2db8ae62005-06-01 23:02:25 +10001087 u_int32_t memory = 0, generator_wanted = 0, trials = 100;
Darren Tucker019cefe2003-08-02 22:40:07 +10001088 int do_gen_candidates = 0, do_screen_candidates = 0;
1089 BIGNUM *start = NULL;
Damien Miller95def091999-11-25 00:26:21 +11001090 FILE *f;
Damien Miller02e754f2005-05-26 12:19:39 +10001091 const char *errstr;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001092
Damien Miller95def091999-11-25 00:26:21 +11001093 extern int optind;
1094 extern char *optarg;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001095
Darren Tuckerce321d82005-10-03 18:11:24 +10001096 /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
1097 sanitise_stdfd();
1098
Darren Tucker9ac56e92007-01-14 10:19:59 +11001099 __progname = ssh_get_progname(argv[0]);
Damien Millerf9b625c2000-07-09 22:42:32 +10001100
Damien Millerd3a18572000-06-07 19:55:44 +10001101 SSLeay_add_all_algorithms();
Damien Millerdf8b7db2007-01-05 16:22:57 +11001102 log_init(argv[0], SYSLOG_LEVEL_INFO, SYSLOG_FACILITY_USER, 1);
Darren Tucker019cefe2003-08-02 22:40:07 +10001103
Kevin Steves3a881912002-07-20 19:05:40 +00001104 init_rng();
1105 seed_rng();
Damien Millereba71ba2000-04-29 23:57:08 +10001106
Damien Miller5428f641999-11-25 11:54:57 +11001107 /* we need this for the home * directory. */
Damien Miller95def091999-11-25 00:26:21 +11001108 pw = getpwuid(getuid());
1109 if (!pw) {
1110 printf("You don't exist, go away!\n");
1111 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001112 }
Damien Millereba71ba2000-04-29 23:57:08 +10001113 if (gethostname(hostname, sizeof(hostname)) < 0) {
1114 perror("gethostname");
1115 exit(1);
1116 }
Damien Miller5428f641999-11-25 11:54:57 +11001117
Damien Millerdf8b7db2007-01-05 16:22:57 +11001118 while ((opt = getopt(argc, argv,
Damien Miller4b42d7f2005-03-01 21:48:35 +11001119 "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 +11001120 switch (opt) {
1121 case 'b':
Damien Miller5f340062006-03-26 14:27:57 +11001122 bits = (u_int32_t)strtonum(optarg, 768, 32768, &errstr);
Damien Miller02e754f2005-05-26 12:19:39 +10001123 if (errstr)
1124 fatal("Bits has bad value %s (%s)",
1125 optarg, errstr);
Damien Miller95def091999-11-25 00:26:21 +11001126 break;
Damien Miller4b42d7f2005-03-01 21:48:35 +11001127 case 'F':
1128 find_host = 1;
1129 rr_hostname = optarg;
1130 break;
1131 case 'H':
1132 hash_hosts = 1;
1133 break;
1134 case 'R':
1135 delete_host = 1;
1136 rr_hostname = optarg;
1137 break;
Damien Miller95def091999-11-25 00:26:21 +11001138 case 'l':
1139 print_fingerprint = 1;
1140 break;
Ben Lindstrom8fd372b2001-03-12 03:02:17 +00001141 case 'B':
1142 print_bubblebabble = 1;
1143 break;
Damien Miller95def091999-11-25 00:26:21 +11001144 case 'p':
1145 change_passphrase = 1;
1146 break;
Damien Miller95def091999-11-25 00:26:21 +11001147 case 'c':
1148 change_comment = 1;
1149 break;
Damien Miller95def091999-11-25 00:26:21 +11001150 case 'f':
Damien Millerb089fb52005-05-26 12:16:18 +10001151 if (strlcpy(identity_file, optarg, sizeof(identity_file)) >=
1152 sizeof(identity_file))
1153 fatal("Identity filename too long");
Damien Miller95def091999-11-25 00:26:21 +11001154 have_identity = 1;
1155 break;
Damien Miller37876e92003-05-15 10:19:46 +10001156 case 'g':
1157 print_generic = 1;
1158 break;
Damien Miller95def091999-11-25 00:26:21 +11001159 case 'P':
1160 identity_passphrase = optarg;
1161 break;
Damien Miller95def091999-11-25 00:26:21 +11001162 case 'N':
1163 identity_new_passphrase = optarg;
1164 break;
Damien Miller95def091999-11-25 00:26:21 +11001165 case 'C':
1166 identity_comment = optarg;
1167 break;
Damien Miller95def091999-11-25 00:26:21 +11001168 case 'q':
1169 quiet = 1;
1170 break;
Ben Lindstrom5a707822001-04-22 17:15:46 +00001171 case 'e':
Damien Millereba71ba2000-04-29 23:57:08 +10001172 case 'x':
Ben Lindstrom5a707822001-04-22 17:15:46 +00001173 /* export key */
Damien Millereba71ba2000-04-29 23:57:08 +10001174 convert_to_ssh2 = 1;
1175 break;
Ben Lindstrom5a707822001-04-22 17:15:46 +00001176 case 'i':
Damien Millereba71ba2000-04-29 23:57:08 +10001177 case 'X':
Ben Lindstrom5a707822001-04-22 17:15:46 +00001178 /* import key */
Damien Millereba71ba2000-04-29 23:57:08 +10001179 convert_from_ssh2 = 1;
1180 break;
Damien Millereba71ba2000-04-29 23:57:08 +10001181 case 'y':
1182 print_public = 1;
1183 break;
Damien Millereba71ba2000-04-29 23:57:08 +10001184 case 'd':
Damien Miller0bc1bd82000-11-13 22:57:25 +11001185 key_type_name = "dsa";
Damien Millereba71ba2000-04-29 23:57:08 +10001186 break;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001187 case 't':
1188 key_type_name = optarg;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001189 break;
Ben Lindstrom8282d6a2001-08-06 21:44:05 +00001190 case 'D':
1191 download = 1;
Damien Miller90967402006-03-26 14:07:26 +11001192 /*FALLTHROUGH*/
Ben Lindstromf19578c2001-08-06 21:46:54 +00001193 case 'U':
Ben Lindstrom8282d6a2001-08-06 21:44:05 +00001194 reader_id = optarg;
Ben Lindstromcd392282001-07-04 03:44:03 +00001195 break;
Darren Tucker06930c72003-12-31 11:34:51 +11001196 case 'v':
1197 if (log_level == SYSLOG_LEVEL_INFO)
1198 log_level = SYSLOG_LEVEL_DEBUG1;
1199 else {
Darren Tuckerfc959702004-07-17 16:12:08 +10001200 if (log_level >= SYSLOG_LEVEL_DEBUG1 &&
Darren Tucker06930c72003-12-31 11:34:51 +11001201 log_level < SYSLOG_LEVEL_DEBUG3)
1202 log_level++;
1203 }
1204 break;
Damien Miller37876e92003-05-15 10:19:46 +10001205 case 'r':
Damien Miller4b42d7f2005-03-01 21:48:35 +11001206 rr_hostname = optarg;
Damien Miller37876e92003-05-15 10:19:46 +10001207 break;
Darren Tucker019cefe2003-08-02 22:40:07 +10001208 case 'W':
Damien Miller5f340062006-03-26 14:27:57 +11001209 generator_wanted = (u_int32_t)strtonum(optarg, 1,
1210 UINT_MAX, &errstr);
Damien Millerb089fb52005-05-26 12:16:18 +10001211 if (errstr)
1212 fatal("Desired generator has bad value: %s (%s)",
1213 optarg, errstr);
Darren Tucker019cefe2003-08-02 22:40:07 +10001214 break;
1215 case 'a':
Damien Miller5f340062006-03-26 14:27:57 +11001216 trials = (u_int32_t)strtonum(optarg, 1, UINT_MAX, &errstr);
Damien Millerb089fb52005-05-26 12:16:18 +10001217 if (errstr)
1218 fatal("Invalid number of trials: %s (%s)",
1219 optarg, errstr);
Darren Tucker019cefe2003-08-02 22:40:07 +10001220 break;
1221 case 'M':
Damien Miller5f340062006-03-26 14:27:57 +11001222 memory = (u_int32_t)strtonum(optarg, 1, UINT_MAX, &errstr);
Damien Millerb089fb52005-05-26 12:16:18 +10001223 if (errstr) {
1224 fatal("Memory limit is %s: %s", errstr, optarg);
1225 }
Darren Tucker019cefe2003-08-02 22:40:07 +10001226 break;
1227 case 'G':
1228 do_gen_candidates = 1;
Damien Millerb089fb52005-05-26 12:16:18 +10001229 if (strlcpy(out_file, optarg, sizeof(out_file)) >=
1230 sizeof(out_file))
1231 fatal("Output filename too long");
Darren Tucker019cefe2003-08-02 22:40:07 +10001232 break;
1233 case 'T':
1234 do_screen_candidates = 1;
Damien Millerb089fb52005-05-26 12:16:18 +10001235 if (strlcpy(out_file, optarg, sizeof(out_file)) >=
1236 sizeof(out_file))
1237 fatal("Output filename too long");
Darren Tucker019cefe2003-08-02 22:40:07 +10001238 break;
1239 case 'S':
1240 /* XXX - also compare length against bits */
1241 if (BN_hex2bn(&start, optarg) == 0)
1242 fatal("Invalid start point.");
1243 break;
Damien Miller95def091999-11-25 00:26:21 +11001244 case '?':
1245 default:
1246 usage();
1247 }
1248 }
Darren Tucker06930c72003-12-31 11:34:51 +11001249
1250 /* reinit */
Damien Millerdf8b7db2007-01-05 16:22:57 +11001251 log_init(argv[0], log_level, SYSLOG_FACILITY_USER, 1);
Darren Tucker06930c72003-12-31 11:34:51 +11001252
Damien Millerdf8b7db2007-01-05 16:22:57 +11001253 if (optind < argc) {
Damien Miller95def091999-11-25 00:26:21 +11001254 printf("Too many arguments.\n");
1255 usage();
1256 }
1257 if (change_passphrase && change_comment) {
1258 printf("Can only have one of -p and -c.\n");
1259 usage();
1260 }
Darren Tucker0f7e9102008-06-08 12:54:29 +10001261 if (print_fingerprint && (delete_host || hash_hosts)) {
1262 printf("Cannot use -l with -D or -R.\n");
1263 usage();
1264 }
Damien Miller4b42d7f2005-03-01 21:48:35 +11001265 if (delete_host || hash_hosts || find_host)
1266 do_known_hosts(pw, rr_hostname);
Ben Lindstrom8fd372b2001-03-12 03:02:17 +00001267 if (print_fingerprint || print_bubblebabble)
Damien Miller95def091999-11-25 00:26:21 +11001268 do_fingerprint(pw);
Damien Miller95def091999-11-25 00:26:21 +11001269 if (change_passphrase)
1270 do_change_passphrase(pw);
Damien Miller4a10d2e2002-03-11 22:53:29 +11001271 if (change_comment)
1272 do_change_comment(pw);
Kevin Steves3a881912002-07-20 19:05:40 +00001273 if (convert_to_ssh2)
1274 do_convert_to_ssh2(pw);
1275 if (convert_from_ssh2)
1276 do_convert_from_ssh2(pw);
Damien Millereba71ba2000-04-29 23:57:08 +10001277 if (print_public)
1278 do_print_public(pw);
Damien Miller4b42d7f2005-03-01 21:48:35 +11001279 if (rr_hostname != NULL) {
Damien Millercb314822006-03-26 13:48:01 +11001280 unsigned int n = 0;
1281
1282 if (have_identity) {
1283 n = do_print_resource_record(pw,
1284 identity_file, rr_hostname);
1285 if (n == 0) {
1286 perror(identity_file);
1287 exit(1);
1288 }
1289 exit(0);
1290 } else {
1291
1292 n += do_print_resource_record(pw,
1293 _PATH_HOST_RSA_KEY_FILE, rr_hostname);
1294 n += do_print_resource_record(pw,
1295 _PATH_HOST_DSA_KEY_FILE, rr_hostname);
1296
1297 if (n == 0)
1298 fatal("no keys found.");
1299 exit(0);
1300 }
Damien Miller37876e92003-05-15 10:19:46 +10001301 }
Ben Lindstrom8282d6a2001-08-06 21:44:05 +00001302 if (reader_id != NULL) {
Ben Lindstrom6818bfb2001-08-06 21:40:04 +00001303#ifdef SMARTCARD
Ben Lindstrom8282d6a2001-08-06 21:44:05 +00001304 if (download)
1305 do_download(pw, reader_id);
1306 else
1307 do_upload(pw, reader_id);
Ben Lindstromffce1472001-08-06 21:57:31 +00001308#else /* SMARTCARD */
Ben Lindstrom6818bfb2001-08-06 21:40:04 +00001309 fatal("no support for smartcards.");
Ben Lindstromffce1472001-08-06 21:57:31 +00001310#endif /* SMARTCARD */
Ben Lindstrom8282d6a2001-08-06 21:44:05 +00001311 }
Damien Miller95def091999-11-25 00:26:21 +11001312
Darren Tucker019cefe2003-08-02 22:40:07 +10001313 if (do_gen_candidates) {
1314 FILE *out = fopen(out_file, "w");
Damien Miller787b2ec2003-11-21 23:56:47 +11001315
Darren Tucker019cefe2003-08-02 22:40:07 +10001316 if (out == NULL) {
1317 error("Couldn't open modulus candidate file \"%s\": %s",
1318 out_file, strerror(errno));
1319 return (1);
1320 }
Damien Miller3f54a9f2005-11-05 14:52:18 +11001321 if (bits == 0)
1322 bits = DEFAULT_BITS;
Darren Tucker019cefe2003-08-02 22:40:07 +10001323 if (gen_candidates(out, memory, bits, start) != 0)
Damien Miller15d72a02005-11-05 15:07:33 +11001324 fatal("modulus candidate generation failed");
Darren Tucker019cefe2003-08-02 22:40:07 +10001325
1326 return (0);
1327 }
1328
1329 if (do_screen_candidates) {
1330 FILE *in;
1331 FILE *out = fopen(out_file, "w");
1332
1333 if (have_identity && strcmp(identity_file, "-") != 0) {
1334 if ((in = fopen(identity_file, "r")) == NULL) {
1335 fatal("Couldn't open modulus candidate "
Damien Millera8e06ce2003-11-21 23:48:55 +11001336 "file \"%s\": %s", identity_file,
Darren Tucker019cefe2003-08-02 22:40:07 +10001337 strerror(errno));
1338 }
1339 } else
1340 in = stdin;
1341
1342 if (out == NULL) {
1343 fatal("Couldn't open moduli file \"%s\": %s",
1344 out_file, strerror(errno));
1345 }
1346 if (prime_test(in, out, trials, generator_wanted) != 0)
Damien Miller15d72a02005-11-05 15:07:33 +11001347 fatal("modulus screening failed");
Darren Tuckerf4220e62003-08-21 16:44:07 +10001348 return (0);
Darren Tucker019cefe2003-08-02 22:40:07 +10001349 }
1350
Damien Miller95def091999-11-25 00:26:21 +11001351 arc4random_stir();
1352
Damien Millerf14be5c2005-11-05 15:15:49 +11001353 if (key_type_name == NULL)
1354 key_type_name = "rsa";
1355
Damien Millere39cacc2000-11-29 12:18:44 +11001356 type = key_type_from_name(key_type_name);
1357 if (type == KEY_UNSPEC) {
1358 fprintf(stderr, "unknown key type %s\n", key_type_name);
1359 exit(1);
Damien Millereba71ba2000-04-29 23:57:08 +10001360 }
Damien Miller3f54a9f2005-11-05 14:52:18 +11001361 if (bits == 0)
1362 bits = (type == KEY_DSA) ? DEFAULT_BITS_DSA : DEFAULT_BITS;
Tim Rice660c3402005-11-28 17:45:32 -08001363 if (type == KEY_DSA && bits != 1024)
1364 fatal("DSA keys must be 1024 bits");
Darren Tucker3af2ac52005-11-29 13:10:24 +11001365 if (!quiet)
1366 printf("Generating public/private %s key pair.\n", key_type_name);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001367 private = key_generate(type, bits);
1368 if (private == NULL) {
1369 fprintf(stderr, "key_generate failed");
1370 exit(1);
1371 }
1372 public = key_from_private(private);
Damien Miller95def091999-11-25 00:26:21 +11001373
1374 if (!have_identity)
1375 ask_filename(pw, "Enter file in which to save the key");
1376
Damien Miller788f2122005-11-05 15:14:59 +11001377 /* Create ~/.ssh directory if it doesn't already exist. */
Ben Lindstrom226cfa02001-01-22 05:34:40 +00001378 snprintf(dotsshdir, sizeof dotsshdir, "%s/%s", pw->pw_dir, _PATH_SSH_USER_DIR);
Damien Miller95def091999-11-25 00:26:21 +11001379 if (strstr(identity_file, dotsshdir) != NULL &&
1380 stat(dotsshdir, &st) < 0) {
Damien Millerbe484b52000-07-15 14:14:16 +10001381 if (mkdir(dotsshdir, 0700) < 0)
Damien Miller95def091999-11-25 00:26:21 +11001382 error("Could not create directory '%s'.", dotsshdir);
1383 else if (!quiet)
1384 printf("Created directory '%s'.\n", dotsshdir);
1385 }
1386 /* If the file already exists, ask the user to confirm. */
1387 if (stat(identity_file, &st) >= 0) {
1388 char yesno[3];
1389 printf("%s already exists.\n", identity_file);
1390 printf("Overwrite (y/n)? ");
1391 fflush(stdout);
1392 if (fgets(yesno, sizeof(yesno), stdin) == NULL)
1393 exit(1);
1394 if (yesno[0] != 'y' && yesno[0] != 'Y')
1395 exit(1);
1396 }
1397 /* Ask for a passphrase (twice). */
1398 if (identity_passphrase)
1399 passphrase1 = xstrdup(identity_passphrase);
1400 else if (identity_new_passphrase)
1401 passphrase1 = xstrdup(identity_new_passphrase);
1402 else {
1403passphrase_again:
1404 passphrase1 =
Ben Lindstrom949974b2001-06-25 05:20:31 +00001405 read_passphrase("Enter passphrase (empty for no "
1406 "passphrase): ", RP_ALLOW_STDIN);
1407 passphrase2 = read_passphrase("Enter same passphrase again: ",
1408 RP_ALLOW_STDIN);
Damien Miller95def091999-11-25 00:26:21 +11001409 if (strcmp(passphrase1, passphrase2) != 0) {
Ben Lindstrom949974b2001-06-25 05:20:31 +00001410 /*
1411 * The passphrases do not match. Clear them and
1412 * retry.
1413 */
Damien Miller95def091999-11-25 00:26:21 +11001414 memset(passphrase1, 0, strlen(passphrase1));
1415 memset(passphrase2, 0, strlen(passphrase2));
1416 xfree(passphrase1);
1417 xfree(passphrase2);
1418 printf("Passphrases do not match. Try again.\n");
1419 goto passphrase_again;
1420 }
1421 /* Clear the other copy of the passphrase. */
1422 memset(passphrase2, 0, strlen(passphrase2));
1423 xfree(passphrase2);
1424 }
1425
Damien Miller95def091999-11-25 00:26:21 +11001426 if (identity_comment) {
1427 strlcpy(comment, identity_comment, sizeof(comment));
1428 } else {
Darren Tuckere15fb092008-11-11 16:31:43 +11001429 /* Create default comment field for the passphrase. */
Damien Miller95def091999-11-25 00:26:21 +11001430 snprintf(comment, sizeof comment, "%s@%s", pw->pw_name, hostname);
1431 }
1432
1433 /* Save the key with the given passphrase and comment. */
Ben Lindstromd0fca422001-03-26 13:44:06 +00001434 if (!key_save_private(private, identity_file, passphrase1, comment)) {
Ben Lindstrom15f33862001-04-16 02:00:02 +00001435 printf("Saving the key failed: %s.\n", identity_file);
Damien Miller95def091999-11-25 00:26:21 +11001436 memset(passphrase1, 0, strlen(passphrase1));
1437 xfree(passphrase1);
1438 exit(1);
1439 }
1440 /* Clear the passphrase. */
1441 memset(passphrase1, 0, strlen(passphrase1));
1442 xfree(passphrase1);
1443
1444 /* Clear the private key and the random number generator. */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001445 key_free(private);
Damien Miller95def091999-11-25 00:26:21 +11001446 arc4random_stir();
1447
1448 if (!quiet)
1449 printf("Your identification has been saved in %s.\n", identity_file);
1450
Damien Miller95def091999-11-25 00:26:21 +11001451 strlcat(identity_file, ".pub", sizeof(identity_file));
Ben Lindstrom5fc62702001-03-09 18:19:24 +00001452 fd = open(identity_file, O_WRONLY | O_CREAT | O_TRUNC, 0644);
1453 if (fd == -1) {
Damien Miller95def091999-11-25 00:26:21 +11001454 printf("Could not save your public key in %s\n", identity_file);
1455 exit(1);
1456 }
Ben Lindstrom5fc62702001-03-09 18:19:24 +00001457 f = fdopen(fd, "w");
1458 if (f == NULL) {
1459 printf("fdopen %s failed", identity_file);
1460 exit(1);
1461 }
Damien Millereba71ba2000-04-29 23:57:08 +10001462 if (!key_write(public, f))
1463 fprintf(stderr, "write key failed");
1464 fprintf(f, " %s\n", comment);
Damien Miller95def091999-11-25 00:26:21 +11001465 fclose(f);
1466
1467 if (!quiet) {
Ben Lindstromcfccef92001-03-13 04:57:58 +00001468 char *fp = key_fingerprint(public, SSH_FP_MD5, SSH_FP_HEX);
Darren Tucker9c16ac92008-06-13 04:40:35 +10001469 char *ra = key_fingerprint(public, SSH_FP_MD5,
1470 SSH_FP_RANDOMART);
Damien Millereba71ba2000-04-29 23:57:08 +10001471 printf("Your public key has been saved in %s.\n",
1472 identity_file);
Damien Miller95def091999-11-25 00:26:21 +11001473 printf("The key fingerprint is:\n");
Ben Lindstromcfccef92001-03-13 04:57:58 +00001474 printf("%s %s\n", fp, comment);
Darren Tucker9c16ac92008-06-13 04:40:35 +10001475 printf("The key's randomart image is:\n");
1476 printf("%s\n", ra);
1477 xfree(ra);
Ben Lindstromcfccef92001-03-13 04:57:58 +00001478 xfree(fp);
Damien Miller95def091999-11-25 00:26:21 +11001479 }
Damien Millereba71ba2000-04-29 23:57:08 +10001480
1481 key_free(public);
Damien Miller95def091999-11-25 00:26:21 +11001482 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001483}