blob: c22e814dacd87c91787cff46a4445199a7646097 [file] [log] [blame]
Darren Tucker9c16ac92008-06-13 04:40:35 +10001/* $OpenBSD: ssh-keygen.c,v 1.167 2008/06/11 21:01:35 grunk 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
Damien Miller4b42d7f2005-03-01 21:48:35 +110075/* Flag indicating that we want to hash a known_hosts file */
76int hash_hosts = 0;
77/* Flag indicating that we want lookup a host in known_hosts file */
78int find_host = 0;
79/* Flag indicating that we want to delete a host from a known_hosts file */
80int delete_host = 0;
81
Damien Miller10f6f6b1999-11-17 17:29:08 +110082/* Flag indicating that we just want to see the key fingerprint */
83int print_fingerprint = 0;
Ben Lindstrom8fd372b2001-03-12 03:02:17 +000084int print_bubblebabble = 0;
Damien Miller10f6f6b1999-11-17 17:29:08 +110085
Damien Miller431f66b1999-11-21 18:31:57 +110086/* The identity file name, given on the command line or entered by the user. */
87char identity_file[1024];
88int have_identity = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100089
90/* This is set to the passphrase if given on the command line. */
91char *identity_passphrase = NULL;
92
93/* This is set to the new passphrase if given on the command line. */
94char *identity_new_passphrase = NULL;
95
96/* This is set to the new comment if given on the command line. */
97char *identity_comment = NULL;
98
Damien Millereba71ba2000-04-29 23:57:08 +100099/* Dump public key file in format used by real and the original SSH 2 */
100int convert_to_ssh2 = 0;
101int convert_from_ssh2 = 0;
102int print_public = 0;
Damien Miller37876e92003-05-15 10:19:46 +1000103int print_generic = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100104
Damien Millera41c8b12002-01-22 23:05:08 +1100105char *key_type_name = NULL;
Damien Millereba71ba2000-04-29 23:57:08 +1000106
Damien Miller431f66b1999-11-21 18:31:57 +1100107/* argv0 */
108extern char *__progname;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000109
Damien Millereba71ba2000-04-29 23:57:08 +1000110char hostname[MAXHOSTNAMELEN];
111
Darren Tucker770fc012004-05-13 16:24:32 +1000112/* moduli.c */
Damien Millerb089fb52005-05-26 12:16:18 +1000113int gen_candidates(FILE *, u_int32_t, u_int32_t, BIGNUM *);
Darren Tucker770fc012004-05-13 16:24:32 +1000114int prime_test(FILE *, FILE *, u_int32_t, u_int32_t);
115
Ben Lindstrombba81212001-06-25 05:01:22 +0000116static void
Damien Miller431f66b1999-11-21 18:31:57 +1100117ask_filename(struct passwd *pw, const char *prompt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000118{
Damien Miller95def091999-11-25 00:26:21 +1100119 char buf[1024];
Damien Millere39cacc2000-11-29 12:18:44 +1100120 char *name = NULL;
121
Damien Miller993dd552002-02-19 15:22:47 +1100122 if (key_type_name == NULL)
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000123 name = _PATH_SSH_CLIENT_ID_RSA;
Damien Miller90967402006-03-26 14:07:26 +1100124 else {
Damien Miller993dd552002-02-19 15:22:47 +1100125 switch (key_type_from_name(key_type_name)) {
126 case KEY_RSA1:
127 name = _PATH_SSH_CLIENT_IDENTITY;
128 break;
129 case KEY_DSA:
130 name = _PATH_SSH_CLIENT_ID_DSA;
131 break;
132 case KEY_RSA:
133 name = _PATH_SSH_CLIENT_ID_RSA;
134 break;
135 default:
136 fprintf(stderr, "bad key type");
137 exit(1);
138 break;
139 }
Damien Miller90967402006-03-26 14:07:26 +1100140 }
Damien Millere39cacc2000-11-29 12:18:44 +1100141 snprintf(identity_file, sizeof(identity_file), "%s/%s", pw->pw_dir, name);
Ben Lindstrom3deda8b2000-12-22 20:27:43 +0000142 fprintf(stderr, "%s (%s): ", prompt, identity_file);
Damien Miller95def091999-11-25 00:26:21 +1100143 if (fgets(buf, sizeof(buf), stdin) == NULL)
144 exit(1);
Damien Miller14b017d2007-09-17 16:09:15 +1000145 buf[strcspn(buf, "\n")] = '\0';
Damien Miller95def091999-11-25 00:26:21 +1100146 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
Darren Tucker82a3d2b2007-02-19 22:10:25 +1100244 magic = buffer_get_int(&b);
Damien Miller874d77b2000-10-14 16:23:11 +1100245 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);
Damien Miller80163902007-01-05 16:30:16 +1100256 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:
Darren Tucker82a3d2b2007-02-19 22:10:25 +1100287 e = buffer_get_char(&b);
Ben Lindstrom34f91882001-06-25 04:47:54 +0000288 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 Miller6c7439f2007-01-05 16:29:55 +1100349 /* We reached EOF */
350 return -1;
Damien Miller8056a9d2006-03-15 12:05:40 +1100351}
352
Ben Lindstrombba81212001-06-25 05:01:22 +0000353static void
Damien Millereba71ba2000-04-29 23:57:08 +1000354do_convert_from_ssh2(struct passwd *pw)
355{
356 Key *k;
357 int blen;
Ben Lindstrom155b9812002-04-02 20:26:26 +0000358 u_int len;
Damien Miller8056a9d2006-03-15 12:05:40 +1100359 char line[1024];
Ben Lindstrom9e0ddd42001-09-18 05:41:19 +0000360 u_char blob[8096];
Damien Millereba71ba2000-04-29 23:57:08 +1000361 char encoded[8096];
362 struct stat st;
Damien Miller874d77b2000-10-14 16:23:11 +1100363 int escaped = 0, private = 0, ok;
Damien Millereba71ba2000-04-29 23:57:08 +1000364 FILE *fp;
365
366 if (!have_identity)
367 ask_filename(pw, "Enter file in which the key is");
368 if (stat(identity_file, &st) < 0) {
369 perror(identity_file);
370 exit(1);
371 }
372 fp = fopen(identity_file, "r");
373 if (fp == NULL) {
374 perror(identity_file);
375 exit(1);
376 }
377 encoded[0] = '\0';
Damien Miller8056a9d2006-03-15 12:05:40 +1100378 while ((blen = get_line(fp, line, sizeof(line))) != -1) {
379 if (line[blen - 1] == '\\')
Damien Miller30c3d422000-05-09 11:02:59 +1000380 escaped++;
Damien Millereba71ba2000-04-29 23:57:08 +1000381 if (strncmp(line, "----", 4) == 0 ||
382 strstr(line, ": ") != NULL) {
Damien Miller874d77b2000-10-14 16:23:11 +1100383 if (strstr(line, SSH_COM_PRIVATE_BEGIN) != NULL)
384 private = 1;
Ben Lindstrome586c4c2001-06-25 05:04:58 +0000385 if (strstr(line, " END ") != NULL) {
386 break;
387 }
Ben Lindstrom30358602001-04-24 16:59:28 +0000388 /* fprintf(stderr, "ignore: %s", line); */
Damien Millereba71ba2000-04-29 23:57:08 +1000389 continue;
390 }
Damien Miller30c3d422000-05-09 11:02:59 +1000391 if (escaped) {
392 escaped--;
Ben Lindstrom30358602001-04-24 16:59:28 +0000393 /* fprintf(stderr, "escaped: %s", line); */
Damien Miller30c3d422000-05-09 11:02:59 +1000394 continue;
Damien Millereba71ba2000-04-29 23:57:08 +1000395 }
Damien Millereba71ba2000-04-29 23:57:08 +1000396 strlcat(encoded, line, sizeof(encoded));
397 }
Ben Lindstrom155b9812002-04-02 20:26:26 +0000398 len = strlen(encoded);
399 if (((len % 4) == 3) &&
400 (encoded[len-1] == '=') &&
401 (encoded[len-2] == '=') &&
402 (encoded[len-3] == '='))
403 encoded[len-3] = '\0';
Damien Miller4a8ed542002-01-22 23:33:31 +1100404 blen = uudecode(encoded, blob, sizeof(blob));
Damien Millereba71ba2000-04-29 23:57:08 +1000405 if (blen < 0) {
406 fprintf(stderr, "uudecode failed.\n");
407 exit(1);
408 }
Damien Miller874d77b2000-10-14 16:23:11 +1100409 k = private ?
410 do_convert_private_ssh2_from_blob(blob, blen) :
Damien Miller0bc1bd82000-11-13 22:57:25 +1100411 key_from_blob(blob, blen);
Damien Miller874d77b2000-10-14 16:23:11 +1100412 if (k == NULL) {
413 fprintf(stderr, "decode blob failed.\n");
414 exit(1);
415 }
416 ok = private ?
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000417 (k->type == KEY_DSA ?
418 PEM_write_DSAPrivateKey(stdout, k->dsa, NULL, NULL, 0, NULL, NULL) :
419 PEM_write_RSAPrivateKey(stdout, k->rsa, NULL, NULL, 0, NULL, NULL)) :
Damien Miller874d77b2000-10-14 16:23:11 +1100420 key_write(k, stdout);
421 if (!ok) {
422 fprintf(stderr, "key write failed");
423 exit(1);
424 }
Damien Millereba71ba2000-04-29 23:57:08 +1000425 key_free(k);
Damien Millera1db12b2002-01-22 23:20:15 +1100426 if (!private)
427 fprintf(stdout, "\n");
Damien Millereba71ba2000-04-29 23:57:08 +1000428 fclose(fp);
429 exit(0);
430}
431
Ben Lindstrombba81212001-06-25 05:01:22 +0000432static void
Damien Millereba71ba2000-04-29 23:57:08 +1000433do_print_public(struct passwd *pw)
434{
Ben Lindstromd0fca422001-03-26 13:44:06 +0000435 Key *prv;
Damien Millereba71ba2000-04-29 23:57:08 +1000436 struct stat st;
437
438 if (!have_identity)
439 ask_filename(pw, "Enter file in which the key is");
440 if (stat(identity_file, &st) < 0) {
441 perror(identity_file);
442 exit(1);
443 }
Ben Lindstromd78ae762001-06-05 20:35:09 +0000444 prv = load_identity(identity_file);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000445 if (prv == NULL) {
Damien Millereba71ba2000-04-29 23:57:08 +1000446 fprintf(stderr, "load failed\n");
447 exit(1);
448 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000449 if (!key_write(prv, stdout))
Damien Millereba71ba2000-04-29 23:57:08 +1000450 fprintf(stderr, "key_write failed");
Ben Lindstromd0fca422001-03-26 13:44:06 +0000451 key_free(prv);
Damien Millereba71ba2000-04-29 23:57:08 +1000452 fprintf(stdout, "\n");
453 exit(0);
454}
455
Ben Lindstrom6818bfb2001-08-06 21:40:04 +0000456#ifdef SMARTCARD
Ben Lindstromcd392282001-07-04 03:44:03 +0000457static void
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000458do_upload(struct passwd *pw, const char *sc_reader_id)
Ben Lindstromcd392282001-07-04 03:44:03 +0000459{
Ben Lindstromcd392282001-07-04 03:44:03 +0000460 Key *prv = NULL;
461 struct stat st;
Ben Lindstrom70e3ad82002-03-22 03:33:43 +0000462 int ret;
Ben Lindstromcd392282001-07-04 03:44:03 +0000463
464 if (!have_identity)
465 ask_filename(pw, "Enter file in which the key is");
466 if (stat(identity_file, &st) < 0) {
467 perror(identity_file);
Ben Lindstrom70e3ad82002-03-22 03:33:43 +0000468 exit(1);
Ben Lindstromcd392282001-07-04 03:44:03 +0000469 }
470 prv = load_identity(identity_file);
471 if (prv == NULL) {
472 error("load failed");
Ben Lindstrom70e3ad82002-03-22 03:33:43 +0000473 exit(1);
Ben Lindstromcd392282001-07-04 03:44:03 +0000474 }
Ben Lindstrom70e3ad82002-03-22 03:33:43 +0000475 ret = sc_put_key(prv, sc_reader_id);
476 key_free(prv);
477 if (ret < 0)
478 exit(1);
Damien Miller996acd22003-04-09 20:59:48 +1000479 logit("loading key done");
Ben Lindstrom70e3ad82002-03-22 03:33:43 +0000480 exit(0);
Ben Lindstromcd392282001-07-04 03:44:03 +0000481}
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000482
483static void
484do_download(struct passwd *pw, const char *sc_reader_id)
485{
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000486 Key **keys = NULL;
487 int i;
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000488
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000489 keys = sc_get_keys(sc_reader_id, NULL);
490 if (keys == NULL)
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000491 fatal("cannot read public key from smartcard");
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000492 for (i = 0; keys[i]; i++) {
493 key_write(keys[i], stdout);
494 key_free(keys[i]);
495 fprintf(stdout, "\n");
496 }
497 xfree(keys);
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000498 exit(0);
499}
Ben Lindstromffce1472001-08-06 21:57:31 +0000500#endif /* SMARTCARD */
Ben Lindstromcd392282001-07-04 03:44:03 +0000501
Ben Lindstrombba81212001-06-25 05:01:22 +0000502static void
Damien Miller10f6f6b1999-11-17 17:29:08 +1100503do_fingerprint(struct passwd *pw)
504{
Damien Miller98c7ad62000-03-09 21:27:49 +1100505 FILE *f;
Damien Millereba71ba2000-04-29 23:57:08 +1000506 Key *public;
Darren Tucker9c16ac92008-06-13 04:40:35 +1000507 char *comment = NULL, *cp, *ep, line[16*1024], *fp, *ra;
Damien Millercb2fbb22008-02-10 22:24:55 +1100508 int i, skip = 0, num = 0, invalid = 1;
Ben Lindstrom65366a82001-12-06 16:32:47 +0000509 enum fp_rep rep;
510 enum fp_type fptype;
Damien Miller95def091999-11-25 00:26:21 +1100511 struct stat st;
Damien Miller10f6f6b1999-11-17 17:29:08 +1100512
Ben Lindstromd0fca422001-03-26 13:44:06 +0000513 fptype = print_bubblebabble ? SSH_FP_SHA1 : SSH_FP_MD5;
514 rep = print_bubblebabble ? SSH_FP_BUBBLEBABBLE : SSH_FP_HEX;
Ben Lindstrom8fd372b2001-03-12 03:02:17 +0000515
Damien Miller95def091999-11-25 00:26:21 +1100516 if (!have_identity)
517 ask_filename(pw, "Enter file in which the key is");
518 if (stat(identity_file, &st) < 0) {
519 perror(identity_file);
520 exit(1);
521 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000522 public = key_load_public(identity_file, &comment);
523 if (public != NULL) {
524 fp = key_fingerprint(public, fptype, rep);
Darren Tucker9c16ac92008-06-13 04:40:35 +1000525 ra = key_fingerprint(public, fptype, rep);
Ben Lindstrom58d3b722002-06-23 21:28:13 +0000526 printf("%u %s %s\n", key_size(public), fp, comment);
Darren Tucker9c16ac92008-06-13 04:40:35 +1000527 verbose("%s\n", ra);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100528 key_free(public);
529 xfree(comment);
Darren Tucker9c16ac92008-06-13 04:40:35 +1000530 xfree(ra);
Ben Lindstrom8fd372b2001-03-12 03:02:17 +0000531 xfree(fp);
Damien Miller98c7ad62000-03-09 21:27:49 +1100532 exit(0);
533 }
Damien Miller40b59852006-06-13 13:00:25 +1000534 if (comment) {
Ben Lindstromd0fca422001-03-26 13:44:06 +0000535 xfree(comment);
Damien Miller40b59852006-06-13 13:00:25 +1000536 comment = NULL;
537 }
Damien Miller98c7ad62000-03-09 21:27:49 +1100538
539 f = fopen(identity_file, "r");
540 if (f != NULL) {
Damien Miller98c7ad62000-03-09 21:27:49 +1100541 while (fgets(line, sizeof(line), f)) {
Damien Miller0f4ed692007-10-26 14:26:32 +1000542 if ((cp = strchr(line, '\n')) == NULL) {
Damien Millercb2fbb22008-02-10 22:24:55 +1100543 error("line %d too long: %.40s...",
544 num + 1, line);
Damien Miller98c7ad62000-03-09 21:27:49 +1100545 skip = 1;
546 continue;
Damien Miller95def091999-11-25 00:26:21 +1100547 }
Damien Miller98c7ad62000-03-09 21:27:49 +1100548 num++;
549 if (skip) {
550 skip = 0;
551 continue;
552 }
Damien Miller0f4ed692007-10-26 14:26:32 +1000553 *cp = '\0';
Damien Miller98c7ad62000-03-09 21:27:49 +1100554
555 /* Skip leading whitespace, empty and comment lines. */
556 for (cp = line; *cp == ' ' || *cp == '\t'; cp++)
557 ;
558 if (!*cp || *cp == '\n' || *cp == '#')
Damien Miller80163902007-01-05 16:30:16 +1100559 continue;
Damien Miller98c7ad62000-03-09 21:27:49 +1100560 i = strtol(cp, &ep, 10);
561 if (i == 0 || ep == NULL || (*ep != ' ' && *ep != '\t')) {
562 int quoted = 0;
563 comment = cp;
Ben Lindstrom58d3b722002-06-23 21:28:13 +0000564 for (; *cp && (quoted || (*cp != ' ' &&
565 *cp != '\t')); cp++) {
Damien Miller98c7ad62000-03-09 21:27:49 +1100566 if (*cp == '\\' && cp[1] == '"')
567 cp++; /* Skip both */
568 else if (*cp == '"')
569 quoted = !quoted;
570 }
571 if (!*cp)
572 continue;
573 *cp++ = '\0';
574 }
575 ep = cp;
Ben Lindstrom2941f112000-12-29 16:50:13 +0000576 public = key_new(KEY_RSA1);
577 if (key_read(public, &cp) != 1) {
578 cp = ep;
579 key_free(public);
580 public = key_new(KEY_UNSPEC);
581 if (key_read(public, &cp) != 1) {
582 key_free(public);
583 continue;
584 }
Damien Miller98c7ad62000-03-09 21:27:49 +1100585 }
Ben Lindstrom2941f112000-12-29 16:50:13 +0000586 comment = *cp ? cp : comment;
Ben Lindstromd0fca422001-03-26 13:44:06 +0000587 fp = key_fingerprint(public, fptype, rep);
Darren Tucker9c16ac92008-06-13 04:40:35 +1000588 ra = key_fingerprint(public, fptype, SSH_FP_RANDOMART);
Ben Lindstrom58d3b722002-06-23 21:28:13 +0000589 printf("%u %s %s\n", key_size(public), fp,
Ben Lindstrom2941f112000-12-29 16:50:13 +0000590 comment ? comment : "no comment");
Darren Tucker9c16ac92008-06-13 04:40:35 +1000591 verbose("%s\n", ra);
592 xfree(ra);
Ben Lindstrom8fd372b2001-03-12 03:02:17 +0000593 xfree(fp);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000594 key_free(public);
Ben Lindstrom2941f112000-12-29 16:50:13 +0000595 invalid = 0;
Damien Miller95def091999-11-25 00:26:21 +1100596 }
Damien Miller98c7ad62000-03-09 21:27:49 +1100597 fclose(f);
Damien Miller95def091999-11-25 00:26:21 +1100598 }
Damien Miller98c7ad62000-03-09 21:27:49 +1100599 if (invalid) {
Damien Millereb5fec62001-11-12 10:52:44 +1100600 printf("%s is not a public key file.\n", identity_file);
Damien Miller98c7ad62000-03-09 21:27:49 +1100601 exit(1);
602 }
Damien Miller95def091999-11-25 00:26:21 +1100603 exit(0);
Damien Miller10f6f6b1999-11-17 17:29:08 +1100604}
605
Damien Miller4b42d7f2005-03-01 21:48:35 +1100606static void
Damien Millera8796f32008-02-10 22:24:30 +1100607print_host(FILE *f, const char *name, Key *public, int hash)
Damien Miller4b42d7f2005-03-01 21:48:35 +1100608{
Darren Tucker0f7e9102008-06-08 12:54:29 +1000609 if (print_fingerprint) {
610 enum fp_rep rep;
611 enum fp_type fptype;
Darren Tucker9c16ac92008-06-13 04:40:35 +1000612 char *fp, *ra;
Darren Tucker0f7e9102008-06-08 12:54:29 +1000613
614 fptype = print_bubblebabble ? SSH_FP_SHA1 : SSH_FP_MD5;
615 rep = print_bubblebabble ? SSH_FP_BUBBLEBABBLE : SSH_FP_HEX;
616 fp = key_fingerprint(public, fptype, rep);
Darren Tucker9c16ac92008-06-13 04:40:35 +1000617 ra = key_fingerprint(public, fptype, SSH_FP_RANDOMART);
618 printf("%u %s %s\n%s\n", key_size(public), fp, name, ra);
619 xfree(ra);
Darren Tucker0f7e9102008-06-08 12:54:29 +1000620 xfree(fp);
621 } else {
622 if (hash && (name = host_hash(name, NULL, 0)) == NULL)
623 fatal("hash_host failed");
624 fprintf(f, "%s ", name);
625 if (!key_write(public, f))
626 fatal("key_write failed");
627 fprintf(f, "\n");
628 }
Damien Miller4b42d7f2005-03-01 21:48:35 +1100629}
630
631static void
632do_known_hosts(struct passwd *pw, const char *name)
633{
634 FILE *in, *out = stdout;
635 Key *public;
636 char *cp, *cp2, *kp, *kp2;
637 char line[16*1024], tmp[MAXPATHLEN], old[MAXPATHLEN];
Damien Millercb2fbb22008-02-10 22:24:55 +1100638 int c, skip = 0, inplace = 0, num = 0, invalid = 0, has_unhashed = 0;
Damien Miller4b42d7f2005-03-01 21:48:35 +1100639
640 if (!have_identity) {
641 cp = tilde_expand_filename(_PATH_SSH_USER_HOSTFILE, pw->pw_uid);
642 if (strlcpy(identity_file, cp, sizeof(identity_file)) >=
643 sizeof(identity_file))
644 fatal("Specified known hosts path too long");
645 xfree(cp);
646 have_identity = 1;
647 }
648 if ((in = fopen(identity_file, "r")) == NULL)
649 fatal("fopen: %s", strerror(errno));
650
651 /*
652 * Find hosts goes to stdout, hash and deletions happen in-place
653 * A corner case is ssh-keygen -HF foo, which should go to stdout
654 */
655 if (!find_host && (hash_hosts || delete_host)) {
656 if (strlcpy(tmp, identity_file, sizeof(tmp)) >= sizeof(tmp) ||
657 strlcat(tmp, ".XXXXXXXXXX", sizeof(tmp)) >= sizeof(tmp) ||
658 strlcpy(old, identity_file, sizeof(old)) >= sizeof(old) ||
659 strlcat(old, ".old", sizeof(old)) >= sizeof(old))
660 fatal("known_hosts path too long");
661 umask(077);
662 if ((c = mkstemp(tmp)) == -1)
663 fatal("mkstemp: %s", strerror(errno));
664 if ((out = fdopen(c, "w")) == NULL) {
665 c = errno;
666 unlink(tmp);
667 fatal("fdopen: %s", strerror(c));
668 }
669 inplace = 1;
670 }
671
672 while (fgets(line, sizeof(line), in)) {
Damien Miller0f4ed692007-10-26 14:26:32 +1000673 if ((cp = strchr(line, '\n')) == NULL) {
Damien Millercb2fbb22008-02-10 22:24:55 +1100674 error("line %d too long: %.40s...", num + 1, line);
Damien Miller4b42d7f2005-03-01 21:48:35 +1100675 skip = 1;
676 invalid = 1;
677 continue;
678 }
Damien Miller0f4ed692007-10-26 14:26:32 +1000679 num++;
Damien Miller4b42d7f2005-03-01 21:48:35 +1100680 if (skip) {
681 skip = 0;
682 continue;
683 }
Damien Miller0f4ed692007-10-26 14:26:32 +1000684 *cp = '\0';
Damien Miller4b42d7f2005-03-01 21:48:35 +1100685
686 /* Skip leading whitespace, empty and comment lines. */
687 for (cp = line; *cp == ' ' || *cp == '\t'; cp++)
688 ;
689 if (!*cp || *cp == '\n' || *cp == '#') {
690 if (inplace)
691 fprintf(out, "%s\n", cp);
692 continue;
693 }
694 /* Find the end of the host name portion. */
695 for (kp = cp; *kp && *kp != ' ' && *kp != '\t'; kp++)
696 ;
697 if (*kp == '\0' || *(kp + 1) == '\0') {
698 error("line %d missing key: %.40s...",
699 num, line);
700 invalid = 1;
701 continue;
702 }
703 *kp++ = '\0';
704 kp2 = kp;
705
706 public = key_new(KEY_RSA1);
707 if (key_read(public, &kp) != 1) {
708 kp = kp2;
709 key_free(public);
710 public = key_new(KEY_UNSPEC);
711 if (key_read(public, &kp) != 1) {
712 error("line %d invalid key: %.40s...",
713 num, line);
714 key_free(public);
715 invalid = 1;
716 continue;
717 }
718 }
719
720 if (*cp == HASH_DELIM) {
721 if (find_host || delete_host) {
722 cp2 = host_hash(name, cp, strlen(cp));
723 if (cp2 == NULL) {
724 error("line %d: invalid hashed "
725 "name: %.64s...", num, line);
726 invalid = 1;
727 continue;
728 }
729 c = (strcmp(cp2, cp) == 0);
730 if (find_host && c) {
731 printf("# Host %s found: "
732 "line %d type %s\n", name,
733 num, key_type(public));
734 print_host(out, cp, public, 0);
735 }
736 if (delete_host && !c)
737 print_host(out, cp, public, 0);
738 } else if (hash_hosts)
739 print_host(out, cp, public, 0);
740 } else {
741 if (find_host || delete_host) {
742 c = (match_hostname(name, cp,
743 strlen(cp)) == 1);
744 if (find_host && c) {
745 printf("# Host %s found: "
746 "line %d type %s\n", name,
747 num, key_type(public));
Damien Millera8796f32008-02-10 22:24:30 +1100748 print_host(out, name, public,
749 hash_hosts);
Damien Miller4b42d7f2005-03-01 21:48:35 +1100750 }
751 if (delete_host && !c)
752 print_host(out, cp, public, 0);
753 } else if (hash_hosts) {
Darren Tucker47eede72005-03-14 23:08:12 +1100754 for (cp2 = strsep(&cp, ",");
Damien Miller4b42d7f2005-03-01 21:48:35 +1100755 cp2 != NULL && *cp2 != '\0';
Damien Miller89eac802005-03-02 12:33:04 +1100756 cp2 = strsep(&cp, ",")) {
757 if (strcspn(cp2, "*?!") != strlen(cp2))
758 fprintf(stderr, "Warning: "
759 "ignoring host name with "
760 "metacharacters: %.64s\n",
761 cp2);
762 else
763 print_host(out, cp2, public, 1);
764 }
Damien Miller4b42d7f2005-03-01 21:48:35 +1100765 has_unhashed = 1;
766 }
767 }
768 key_free(public);
769 }
770 fclose(in);
771
772 if (invalid) {
Damien Millercb2fbb22008-02-10 22:24:55 +1100773 fprintf(stderr, "%s is not a valid known_hosts file.\n",
Damien Miller4b42d7f2005-03-01 21:48:35 +1100774 identity_file);
775 if (inplace) {
776 fprintf(stderr, "Not replacing existing known_hosts "
Darren Tucker9f438a92005-03-14 23:09:18 +1100777 "file because of errors\n");
Damien Miller4b42d7f2005-03-01 21:48:35 +1100778 fclose(out);
779 unlink(tmp);
780 }
781 exit(1);
782 }
783
784 if (inplace) {
785 fclose(out);
786
787 /* Backup existing file */
788 if (unlink(old) == -1 && errno != ENOENT)
789 fatal("unlink %.100s: %s", old, strerror(errno));
790 if (link(identity_file, old) == -1)
791 fatal("link %.100s to %.100s: %s", identity_file, old,
792 strerror(errno));
793 /* Move new one into place */
794 if (rename(tmp, identity_file) == -1) {
795 error("rename\"%s\" to \"%s\": %s", tmp, identity_file,
796 strerror(errno));
797 unlink(tmp);
798 unlink(old);
799 exit(1);
800 }
801
802 fprintf(stderr, "%s updated.\n", identity_file);
803 fprintf(stderr, "Original contents retained as %s\n", old);
804 if (has_unhashed) {
805 fprintf(stderr, "WARNING: %s contains unhashed "
806 "entries\n", old);
807 fprintf(stderr, "Delete this file to ensure privacy "
Damien Miller0dc1bef2005-07-17 17:22:45 +1000808 "of hostnames\n");
Damien Miller4b42d7f2005-03-01 21:48:35 +1100809 }
810 }
811
812 exit(0);
813}
814
Damien Miller95def091999-11-25 00:26:21 +1100815/*
816 * Perform changing a passphrase. The argument is the passwd structure
817 * for the current user.
818 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000819static void
Damien Miller10f6f6b1999-11-17 17:29:08 +1100820do_change_passphrase(struct passwd *pw)
821{
Damien Miller95def091999-11-25 00:26:21 +1100822 char *comment;
823 char *old_passphrase, *passphrase1, *passphrase2;
824 struct stat st;
Damien Millereba71ba2000-04-29 23:57:08 +1000825 Key *private;
Damien Miller10f6f6b1999-11-17 17:29:08 +1100826
Damien Miller95def091999-11-25 00:26:21 +1100827 if (!have_identity)
828 ask_filename(pw, "Enter file in which the key is");
Damien Miller95def091999-11-25 00:26:21 +1100829 if (stat(identity_file, &st) < 0) {
830 perror(identity_file);
831 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000832 }
Damien Miller95def091999-11-25 00:26:21 +1100833 /* Try to load the file with empty passphrase. */
Ben Lindstromd0fca422001-03-26 13:44:06 +0000834 private = key_load_private(identity_file, "", &comment);
835 if (private == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100836 if (identity_passphrase)
837 old_passphrase = xstrdup(identity_passphrase);
838 else
Ben Lindstrom949974b2001-06-25 05:20:31 +0000839 old_passphrase =
840 read_passphrase("Enter old passphrase: ",
841 RP_ALLOW_STDIN);
842 private = key_load_private(identity_file, old_passphrase,
843 &comment);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000844 memset(old_passphrase, 0, strlen(old_passphrase));
845 xfree(old_passphrase);
846 if (private == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100847 printf("Bad passphrase.\n");
848 exit(1);
849 }
Damien Miller95def091999-11-25 00:26:21 +1100850 }
851 printf("Key has comment '%s'\n", comment);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000852
Damien Miller95def091999-11-25 00:26:21 +1100853 /* Ask the new passphrase (twice). */
854 if (identity_new_passphrase) {
855 passphrase1 = xstrdup(identity_new_passphrase);
856 passphrase2 = NULL;
857 } else {
858 passphrase1 =
Ben Lindstrom949974b2001-06-25 05:20:31 +0000859 read_passphrase("Enter new passphrase (empty for no "
860 "passphrase): ", RP_ALLOW_STDIN);
861 passphrase2 = read_passphrase("Enter same passphrase again: ",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100862 RP_ALLOW_STDIN);
Damien Miller95def091999-11-25 00:26:21 +1100863
864 /* Verify that they are the same. */
865 if (strcmp(passphrase1, passphrase2) != 0) {
866 memset(passphrase1, 0, strlen(passphrase1));
867 memset(passphrase2, 0, strlen(passphrase2));
868 xfree(passphrase1);
869 xfree(passphrase2);
870 printf("Pass phrases do not match. Try again.\n");
871 exit(1);
872 }
873 /* Destroy the other copy. */
874 memset(passphrase2, 0, strlen(passphrase2));
875 xfree(passphrase2);
876 }
877
878 /* Save the file using the new passphrase. */
Ben Lindstromd0fca422001-03-26 13:44:06 +0000879 if (!key_save_private(private, identity_file, passphrase1, comment)) {
Ben Lindstrom15f33862001-04-16 02:00:02 +0000880 printf("Saving the key failed: %s.\n", identity_file);
Damien Miller95def091999-11-25 00:26:21 +1100881 memset(passphrase1, 0, strlen(passphrase1));
882 xfree(passphrase1);
Damien Millereba71ba2000-04-29 23:57:08 +1000883 key_free(private);
Damien Miller95def091999-11-25 00:26:21 +1100884 xfree(comment);
885 exit(1);
886 }
887 /* Destroy the passphrase and the copy of the key in memory. */
888 memset(passphrase1, 0, strlen(passphrase1));
889 xfree(passphrase1);
Damien Millereba71ba2000-04-29 23:57:08 +1000890 key_free(private); /* Destroys contents */
Damien Miller95def091999-11-25 00:26:21 +1100891 xfree(comment);
892
893 printf("Your identification has been saved with the new passphrase.\n");
894 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000895}
896
Damien Miller37876e92003-05-15 10:19:46 +1000897/*
898 * Print the SSHFP RR.
899 */
Damien Millercb314822006-03-26 13:48:01 +1100900static int
901do_print_resource_record(struct passwd *pw, char *fname, char *hname)
Damien Miller37876e92003-05-15 10:19:46 +1000902{
903 Key *public;
904 char *comment = NULL;
905 struct stat st;
906
Damien Millercb314822006-03-26 13:48:01 +1100907 if (fname == NULL)
Damien Miller37876e92003-05-15 10:19:46 +1000908 ask_filename(pw, "Enter file in which the key is");
Damien Millercb314822006-03-26 13:48:01 +1100909 if (stat(fname, &st) < 0) {
910 if (errno == ENOENT)
911 return 0;
912 perror(fname);
Damien Miller37876e92003-05-15 10:19:46 +1000913 exit(1);
914 }
Damien Millercb314822006-03-26 13:48:01 +1100915 public = key_load_public(fname, &comment);
Damien Miller37876e92003-05-15 10:19:46 +1000916 if (public != NULL) {
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000917 export_dns_rr(hname, public, stdout, print_generic);
Damien Miller37876e92003-05-15 10:19:46 +1000918 key_free(public);
919 xfree(comment);
Damien Millercb314822006-03-26 13:48:01 +1100920 return 1;
Damien Miller37876e92003-05-15 10:19:46 +1000921 }
922 if (comment)
923 xfree(comment);
924
Damien Millercb314822006-03-26 13:48:01 +1100925 printf("failed to read v2 public key from %s.\n", fname);
Damien Miller37876e92003-05-15 10:19:46 +1000926 exit(1);
927}
Damien Miller37876e92003-05-15 10:19:46 +1000928
Damien Miller95def091999-11-25 00:26:21 +1100929/*
930 * Change the comment of a private key file.
931 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000932static void
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000933do_change_comment(struct passwd *pw)
934{
Ben Lindstrom5fc62702001-03-09 18:19:24 +0000935 char new_comment[1024], *comment, *passphrase;
Ben Lindstromd0fca422001-03-26 13:44:06 +0000936 Key *private;
937 Key *public;
Damien Miller95def091999-11-25 00:26:21 +1100938 struct stat st;
939 FILE *f;
Ben Lindstrom5fc62702001-03-09 18:19:24 +0000940 int fd;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000941
Damien Miller95def091999-11-25 00:26:21 +1100942 if (!have_identity)
943 ask_filename(pw, "Enter file in which the key is");
Damien Miller95def091999-11-25 00:26:21 +1100944 if (stat(identity_file, &st) < 0) {
945 perror(identity_file);
946 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000947 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000948 private = key_load_private(identity_file, "", &comment);
949 if (private == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100950 if (identity_passphrase)
951 passphrase = xstrdup(identity_passphrase);
952 else if (identity_new_passphrase)
953 passphrase = xstrdup(identity_new_passphrase);
954 else
Ben Lindstrom949974b2001-06-25 05:20:31 +0000955 passphrase = read_passphrase("Enter passphrase: ",
956 RP_ALLOW_STDIN);
Damien Miller95def091999-11-25 00:26:21 +1100957 /* Try to load using the passphrase. */
Ben Lindstromd0fca422001-03-26 13:44:06 +0000958 private = key_load_private(identity_file, passphrase, &comment);
959 if (private == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100960 memset(passphrase, 0, strlen(passphrase));
961 xfree(passphrase);
962 printf("Bad passphrase.\n");
963 exit(1);
964 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000965 } else {
966 passphrase = xstrdup("");
Damien Miller95def091999-11-25 00:26:21 +1100967 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000968 if (private->type != KEY_RSA1) {
969 fprintf(stderr, "Comments are only supported for RSA1 keys.\n");
970 key_free(private);
971 exit(1);
Damien Miller9f0f5c62001-12-21 14:45:46 +1100972 }
Damien Miller95def091999-11-25 00:26:21 +1100973 printf("Key now has comment '%s'\n", comment);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000974
Damien Miller95def091999-11-25 00:26:21 +1100975 if (identity_comment) {
976 strlcpy(new_comment, identity_comment, sizeof(new_comment));
977 } else {
978 printf("Enter new comment: ");
979 fflush(stdout);
980 if (!fgets(new_comment, sizeof(new_comment), stdin)) {
981 memset(passphrase, 0, strlen(passphrase));
Damien Millereba71ba2000-04-29 23:57:08 +1000982 key_free(private);
Damien Miller95def091999-11-25 00:26:21 +1100983 exit(1);
984 }
Damien Miller14b017d2007-09-17 16:09:15 +1000985 new_comment[strcspn(new_comment, "\n")] = '\0';
Damien Miller95def091999-11-25 00:26:21 +1100986 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000987
Damien Miller95def091999-11-25 00:26:21 +1100988 /* Save the file using the new passphrase. */
Ben Lindstromd0fca422001-03-26 13:44:06 +0000989 if (!key_save_private(private, identity_file, passphrase, new_comment)) {
Ben Lindstrom15f33862001-04-16 02:00:02 +0000990 printf("Saving the key failed: %s.\n", identity_file);
Damien Miller95def091999-11-25 00:26:21 +1100991 memset(passphrase, 0, strlen(passphrase));
992 xfree(passphrase);
Damien Millereba71ba2000-04-29 23:57:08 +1000993 key_free(private);
Damien Miller95def091999-11-25 00:26:21 +1100994 xfree(comment);
995 exit(1);
996 }
Damien Miller95def091999-11-25 00:26:21 +1100997 memset(passphrase, 0, strlen(passphrase));
998 xfree(passphrase);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000999 public = key_from_private(private);
Damien Millereba71ba2000-04-29 23:57:08 +10001000 key_free(private);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001001
Damien Miller95def091999-11-25 00:26:21 +11001002 strlcat(identity_file, ".pub", sizeof(identity_file));
Ben Lindstrom5fc62702001-03-09 18:19:24 +00001003 fd = open(identity_file, O_WRONLY | O_CREAT | O_TRUNC, 0644);
1004 if (fd == -1) {
Damien Miller95def091999-11-25 00:26:21 +11001005 printf("Could not save your public key in %s\n", identity_file);
1006 exit(1);
1007 }
Ben Lindstrom5fc62702001-03-09 18:19:24 +00001008 f = fdopen(fd, "w");
1009 if (f == NULL) {
1010 printf("fdopen %s failed", identity_file);
1011 exit(1);
1012 }
Damien Millereba71ba2000-04-29 23:57:08 +10001013 if (!key_write(public, f))
1014 fprintf(stderr, "write key failed");
1015 key_free(public);
1016 fprintf(f, " %s\n", new_comment);
Damien Miller95def091999-11-25 00:26:21 +11001017 fclose(f);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001018
Damien Miller95def091999-11-25 00:26:21 +11001019 xfree(comment);
1020
1021 printf("The comment in your key file has been changed.\n");
1022 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001023}
1024
Ben Lindstrombba81212001-06-25 05:01:22 +00001025static void
Damien Miller431f66b1999-11-21 18:31:57 +11001026usage(void)
1027{
Damien Miller5cbe7ca2007-09-17 16:05:50 +10001028 fprintf(stderr, "usage: %s [options]\n", __progname);
Ben Lindstrom97be31e2001-08-06 21:49:06 +00001029 fprintf(stderr, "Options:\n");
Damien Miller9278ffa2005-05-26 11:59:06 +10001030 fprintf(stderr, " -a trials Number of trials for screening DH-GEX moduli.\n");
Ben Lindstrom97be31e2001-08-06 21:49:06 +00001031 fprintf(stderr, " -B Show bubblebabble digest of key file.\n");
Damien Miller9278ffa2005-05-26 11:59:06 +10001032 fprintf(stderr, " -b bits Number of bits in the key to create.\n");
Ben Lindstrom97be31e2001-08-06 21:49:06 +00001033 fprintf(stderr, " -C comment Provide new comment.\n");
Damien Miller9278ffa2005-05-26 11:59:06 +10001034 fprintf(stderr, " -c Change comment in private and public key files.\n");
Ben Lindstrom97be31e2001-08-06 21:49:06 +00001035#ifdef SMARTCARD
1036 fprintf(stderr, " -D reader Download public key from smartcard.\n");
Damien Miller9278ffa2005-05-26 11:59:06 +10001037#endif /* SMARTCARD */
Darren Tucker26dc3e62007-02-19 22:09:06 +11001038 fprintf(stderr, " -e Convert OpenSSH to RFC 4716 key file.\n");
Damien Miller9278ffa2005-05-26 11:59:06 +10001039 fprintf(stderr, " -F hostname Find hostname in known hosts file.\n");
1040 fprintf(stderr, " -f filename Filename of the key file.\n");
1041 fprintf(stderr, " -G file Generate candidates for DH-GEX moduli.\n");
1042 fprintf(stderr, " -g Use generic DNS resource record format.\n");
1043 fprintf(stderr, " -H Hash names in known_hosts file.\n");
Darren Tucker26dc3e62007-02-19 22:09:06 +11001044 fprintf(stderr, " -i Convert RFC 4716 to OpenSSH key file.\n");
Damien Miller9278ffa2005-05-26 11:59:06 +10001045 fprintf(stderr, " -l Show fingerprint of key file.\n");
1046 fprintf(stderr, " -M memory Amount of memory (MB) to use for generating DH-GEX moduli.\n");
1047 fprintf(stderr, " -N phrase Provide new passphrase.\n");
1048 fprintf(stderr, " -P phrase Provide old passphrase.\n");
1049 fprintf(stderr, " -p Change passphrase of private key file.\n");
1050 fprintf(stderr, " -q Quiet.\n");
1051 fprintf(stderr, " -R hostname Remove host from known_hosts file.\n");
1052 fprintf(stderr, " -r hostname Print DNS resource record.\n");
1053 fprintf(stderr, " -S start Start point (hex) for generating DH-GEX moduli.\n");
1054 fprintf(stderr, " -T file Screen candidates for DH-GEX moduli.\n");
1055 fprintf(stderr, " -t type Specify type of key to create.\n");
1056#ifdef SMARTCARD
Ben Lindstrom97be31e2001-08-06 21:49:06 +00001057 fprintf(stderr, " -U reader Upload private key to smartcard.\n");
1058#endif /* SMARTCARD */
Damien Miller9278ffa2005-05-26 11:59:06 +10001059 fprintf(stderr, " -v Verbose.\n");
1060 fprintf(stderr, " -W gen Generator to use for generating DH-GEX moduli.\n");
1061 fprintf(stderr, " -y Read private key file and print public key.\n");
Darren Tucker019cefe2003-08-02 22:40:07 +10001062
Damien Miller95def091999-11-25 00:26:21 +11001063 exit(1);
Damien Miller431f66b1999-11-21 18:31:57 +11001064}
1065
Damien Miller95def091999-11-25 00:26:21 +11001066/*
1067 * Main program for key management.
1068 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001069int
Damien Millerdf8b7db2007-01-05 16:22:57 +11001070main(int argc, char **argv)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001071{
Damien Millera41c8b12002-01-22 23:05:08 +11001072 char dotsshdir[MAXPATHLEN], comment[1024], *passphrase1, *passphrase2;
Tim Rice2e0e38e2003-09-08 16:11:33 -07001073 char out_file[MAXPATHLEN], *reader_id = NULL;
Damien Miller4b42d7f2005-03-01 21:48:35 +11001074 char *rr_hostname = NULL;
Ben Lindstrom5fc62702001-03-09 18:19:24 +00001075 Key *private, *public;
Damien Miller95def091999-11-25 00:26:21 +11001076 struct passwd *pw;
Damien Miller95def091999-11-25 00:26:21 +11001077 struct stat st;
Damien Millerb089fb52005-05-26 12:16:18 +10001078 int opt, type, fd, download = 0;
Darren Tucker2db8ae62005-06-01 23:02:25 +10001079 u_int32_t memory = 0, generator_wanted = 0, trials = 100;
Darren Tucker019cefe2003-08-02 22:40:07 +10001080 int do_gen_candidates = 0, do_screen_candidates = 0;
Darren Tucker06930c72003-12-31 11:34:51 +11001081 int log_level = SYSLOG_LEVEL_INFO;
Darren Tucker019cefe2003-08-02 22:40:07 +10001082 BIGNUM *start = NULL;
Damien Miller95def091999-11-25 00:26:21 +11001083 FILE *f;
Damien Miller02e754f2005-05-26 12:19:39 +10001084 const char *errstr;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001085
Damien Miller95def091999-11-25 00:26:21 +11001086 extern int optind;
1087 extern char *optarg;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001088
Darren Tuckerce321d82005-10-03 18:11:24 +10001089 /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
1090 sanitise_stdfd();
1091
Darren Tucker9ac56e92007-01-14 10:19:59 +11001092 __progname = ssh_get_progname(argv[0]);
Damien Millerf9b625c2000-07-09 22:42:32 +10001093
Damien Millerd3a18572000-06-07 19:55:44 +10001094 SSLeay_add_all_algorithms();
Damien Millerdf8b7db2007-01-05 16:22:57 +11001095 log_init(argv[0], SYSLOG_LEVEL_INFO, SYSLOG_FACILITY_USER, 1);
Darren Tucker019cefe2003-08-02 22:40:07 +10001096
Kevin Steves3a881912002-07-20 19:05:40 +00001097 init_rng();
1098 seed_rng();
Damien Millereba71ba2000-04-29 23:57:08 +10001099
Damien Miller5428f641999-11-25 11:54:57 +11001100 /* we need this for the home * directory. */
Damien Miller95def091999-11-25 00:26:21 +11001101 pw = getpwuid(getuid());
1102 if (!pw) {
1103 printf("You don't exist, go away!\n");
1104 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001105 }
Damien Millereba71ba2000-04-29 23:57:08 +10001106 if (gethostname(hostname, sizeof(hostname)) < 0) {
1107 perror("gethostname");
1108 exit(1);
1109 }
Damien Miller5428f641999-11-25 11:54:57 +11001110
Damien Millerdf8b7db2007-01-05 16:22:57 +11001111 while ((opt = getopt(argc, argv,
Damien Miller4b42d7f2005-03-01 21:48:35 +11001112 "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 +11001113 switch (opt) {
1114 case 'b':
Damien Miller5f340062006-03-26 14:27:57 +11001115 bits = (u_int32_t)strtonum(optarg, 768, 32768, &errstr);
Damien Miller02e754f2005-05-26 12:19:39 +10001116 if (errstr)
1117 fatal("Bits has bad value %s (%s)",
1118 optarg, errstr);
Damien Miller95def091999-11-25 00:26:21 +11001119 break;
Damien Miller4b42d7f2005-03-01 21:48:35 +11001120 case 'F':
1121 find_host = 1;
1122 rr_hostname = optarg;
1123 break;
1124 case 'H':
1125 hash_hosts = 1;
1126 break;
1127 case 'R':
1128 delete_host = 1;
1129 rr_hostname = optarg;
1130 break;
Damien Miller95def091999-11-25 00:26:21 +11001131 case 'l':
1132 print_fingerprint = 1;
1133 break;
Ben Lindstrom8fd372b2001-03-12 03:02:17 +00001134 case 'B':
1135 print_bubblebabble = 1;
1136 break;
Damien Miller95def091999-11-25 00:26:21 +11001137 case 'p':
1138 change_passphrase = 1;
1139 break;
Damien Miller95def091999-11-25 00:26:21 +11001140 case 'c':
1141 change_comment = 1;
1142 break;
Damien Miller95def091999-11-25 00:26:21 +11001143 case 'f':
Damien Millerb089fb52005-05-26 12:16:18 +10001144 if (strlcpy(identity_file, optarg, sizeof(identity_file)) >=
1145 sizeof(identity_file))
1146 fatal("Identity filename too long");
Damien Miller95def091999-11-25 00:26:21 +11001147 have_identity = 1;
1148 break;
Damien Miller37876e92003-05-15 10:19:46 +10001149 case 'g':
1150 print_generic = 1;
1151 break;
Damien Miller95def091999-11-25 00:26:21 +11001152 case 'P':
1153 identity_passphrase = optarg;
1154 break;
Damien Miller95def091999-11-25 00:26:21 +11001155 case 'N':
1156 identity_new_passphrase = optarg;
1157 break;
Damien Miller95def091999-11-25 00:26:21 +11001158 case 'C':
1159 identity_comment = optarg;
1160 break;
Damien Miller95def091999-11-25 00:26:21 +11001161 case 'q':
1162 quiet = 1;
1163 break;
Ben Lindstrom5a707822001-04-22 17:15:46 +00001164 case 'e':
Damien Millereba71ba2000-04-29 23:57:08 +10001165 case 'x':
Ben Lindstrom5a707822001-04-22 17:15:46 +00001166 /* export key */
Damien Millereba71ba2000-04-29 23:57:08 +10001167 convert_to_ssh2 = 1;
1168 break;
Ben Lindstrom5a707822001-04-22 17:15:46 +00001169 case 'i':
Damien Millereba71ba2000-04-29 23:57:08 +10001170 case 'X':
Ben Lindstrom5a707822001-04-22 17:15:46 +00001171 /* import key */
Damien Millereba71ba2000-04-29 23:57:08 +10001172 convert_from_ssh2 = 1;
1173 break;
Damien Millereba71ba2000-04-29 23:57:08 +10001174 case 'y':
1175 print_public = 1;
1176 break;
Damien Millereba71ba2000-04-29 23:57:08 +10001177 case 'd':
Damien Miller0bc1bd82000-11-13 22:57:25 +11001178 key_type_name = "dsa";
Damien Millereba71ba2000-04-29 23:57:08 +10001179 break;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001180 case 't':
1181 key_type_name = optarg;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001182 break;
Ben Lindstrom8282d6a2001-08-06 21:44:05 +00001183 case 'D':
1184 download = 1;
Damien Miller90967402006-03-26 14:07:26 +11001185 /*FALLTHROUGH*/
Ben Lindstromf19578c2001-08-06 21:46:54 +00001186 case 'U':
Ben Lindstrom8282d6a2001-08-06 21:44:05 +00001187 reader_id = optarg;
Ben Lindstromcd392282001-07-04 03:44:03 +00001188 break;
Darren Tucker06930c72003-12-31 11:34:51 +11001189 case 'v':
1190 if (log_level == SYSLOG_LEVEL_INFO)
1191 log_level = SYSLOG_LEVEL_DEBUG1;
1192 else {
Darren Tuckerfc959702004-07-17 16:12:08 +10001193 if (log_level >= SYSLOG_LEVEL_DEBUG1 &&
Darren Tucker06930c72003-12-31 11:34:51 +11001194 log_level < SYSLOG_LEVEL_DEBUG3)
1195 log_level++;
1196 }
1197 break;
Damien Miller37876e92003-05-15 10:19:46 +10001198 case 'r':
Damien Miller4b42d7f2005-03-01 21:48:35 +11001199 rr_hostname = optarg;
Damien Miller37876e92003-05-15 10:19:46 +10001200 break;
Darren Tucker019cefe2003-08-02 22:40:07 +10001201 case 'W':
Damien Miller5f340062006-03-26 14:27:57 +11001202 generator_wanted = (u_int32_t)strtonum(optarg, 1,
1203 UINT_MAX, &errstr);
Damien Millerb089fb52005-05-26 12:16:18 +10001204 if (errstr)
1205 fatal("Desired generator has bad value: %s (%s)",
1206 optarg, errstr);
Darren Tucker019cefe2003-08-02 22:40:07 +10001207 break;
1208 case 'a':
Damien Miller5f340062006-03-26 14:27:57 +11001209 trials = (u_int32_t)strtonum(optarg, 1, UINT_MAX, &errstr);
Damien Millerb089fb52005-05-26 12:16:18 +10001210 if (errstr)
1211 fatal("Invalid number of trials: %s (%s)",
1212 optarg, errstr);
Darren Tucker019cefe2003-08-02 22:40:07 +10001213 break;
1214 case 'M':
Damien Miller5f340062006-03-26 14:27:57 +11001215 memory = (u_int32_t)strtonum(optarg, 1, UINT_MAX, &errstr);
Damien Millerb089fb52005-05-26 12:16:18 +10001216 if (errstr) {
1217 fatal("Memory limit is %s: %s", errstr, optarg);
1218 }
Darren Tucker019cefe2003-08-02 22:40:07 +10001219 break;
1220 case 'G':
1221 do_gen_candidates = 1;
Damien Millerb089fb52005-05-26 12:16:18 +10001222 if (strlcpy(out_file, optarg, sizeof(out_file)) >=
1223 sizeof(out_file))
1224 fatal("Output filename too long");
Darren Tucker019cefe2003-08-02 22:40:07 +10001225 break;
1226 case 'T':
1227 do_screen_candidates = 1;
Damien Millerb089fb52005-05-26 12:16:18 +10001228 if (strlcpy(out_file, optarg, sizeof(out_file)) >=
1229 sizeof(out_file))
1230 fatal("Output filename too long");
Darren Tucker019cefe2003-08-02 22:40:07 +10001231 break;
1232 case 'S':
1233 /* XXX - also compare length against bits */
1234 if (BN_hex2bn(&start, optarg) == 0)
1235 fatal("Invalid start point.");
1236 break;
Damien Miller95def091999-11-25 00:26:21 +11001237 case '?':
1238 default:
1239 usage();
1240 }
1241 }
Darren Tucker06930c72003-12-31 11:34:51 +11001242
1243 /* reinit */
Damien Millerdf8b7db2007-01-05 16:22:57 +11001244 log_init(argv[0], log_level, SYSLOG_FACILITY_USER, 1);
Darren Tucker06930c72003-12-31 11:34:51 +11001245
Damien Millerdf8b7db2007-01-05 16:22:57 +11001246 if (optind < argc) {
Damien Miller95def091999-11-25 00:26:21 +11001247 printf("Too many arguments.\n");
1248 usage();
1249 }
1250 if (change_passphrase && change_comment) {
1251 printf("Can only have one of -p and -c.\n");
1252 usage();
1253 }
Darren Tucker0f7e9102008-06-08 12:54:29 +10001254 if (print_fingerprint && (delete_host || hash_hosts)) {
1255 printf("Cannot use -l with -D or -R.\n");
1256 usage();
1257 }
Damien Miller4b42d7f2005-03-01 21:48:35 +11001258 if (delete_host || hash_hosts || find_host)
1259 do_known_hosts(pw, rr_hostname);
Ben Lindstrom8fd372b2001-03-12 03:02:17 +00001260 if (print_fingerprint || print_bubblebabble)
Damien Miller95def091999-11-25 00:26:21 +11001261 do_fingerprint(pw);
Damien Miller95def091999-11-25 00:26:21 +11001262 if (change_passphrase)
1263 do_change_passphrase(pw);
Damien Miller4a10d2e2002-03-11 22:53:29 +11001264 if (change_comment)
1265 do_change_comment(pw);
Kevin Steves3a881912002-07-20 19:05:40 +00001266 if (convert_to_ssh2)
1267 do_convert_to_ssh2(pw);
1268 if (convert_from_ssh2)
1269 do_convert_from_ssh2(pw);
Damien Millereba71ba2000-04-29 23:57:08 +10001270 if (print_public)
1271 do_print_public(pw);
Damien Miller4b42d7f2005-03-01 21:48:35 +11001272 if (rr_hostname != NULL) {
Damien Millercb314822006-03-26 13:48:01 +11001273 unsigned int n = 0;
1274
1275 if (have_identity) {
1276 n = do_print_resource_record(pw,
1277 identity_file, rr_hostname);
1278 if (n == 0) {
1279 perror(identity_file);
1280 exit(1);
1281 }
1282 exit(0);
1283 } else {
1284
1285 n += do_print_resource_record(pw,
1286 _PATH_HOST_RSA_KEY_FILE, rr_hostname);
1287 n += do_print_resource_record(pw,
1288 _PATH_HOST_DSA_KEY_FILE, rr_hostname);
1289
1290 if (n == 0)
1291 fatal("no keys found.");
1292 exit(0);
1293 }
Damien Miller37876e92003-05-15 10:19:46 +10001294 }
Ben Lindstrom8282d6a2001-08-06 21:44:05 +00001295 if (reader_id != NULL) {
Ben Lindstrom6818bfb2001-08-06 21:40:04 +00001296#ifdef SMARTCARD
Ben Lindstrom8282d6a2001-08-06 21:44:05 +00001297 if (download)
1298 do_download(pw, reader_id);
1299 else
1300 do_upload(pw, reader_id);
Ben Lindstromffce1472001-08-06 21:57:31 +00001301#else /* SMARTCARD */
Ben Lindstrom6818bfb2001-08-06 21:40:04 +00001302 fatal("no support for smartcards.");
Ben Lindstromffce1472001-08-06 21:57:31 +00001303#endif /* SMARTCARD */
Ben Lindstrom8282d6a2001-08-06 21:44:05 +00001304 }
Damien Miller95def091999-11-25 00:26:21 +11001305
Darren Tucker019cefe2003-08-02 22:40:07 +10001306 if (do_gen_candidates) {
1307 FILE *out = fopen(out_file, "w");
Damien Miller787b2ec2003-11-21 23:56:47 +11001308
Darren Tucker019cefe2003-08-02 22:40:07 +10001309 if (out == NULL) {
1310 error("Couldn't open modulus candidate file \"%s\": %s",
1311 out_file, strerror(errno));
1312 return (1);
1313 }
Damien Miller3f54a9f2005-11-05 14:52:18 +11001314 if (bits == 0)
1315 bits = DEFAULT_BITS;
Darren Tucker019cefe2003-08-02 22:40:07 +10001316 if (gen_candidates(out, memory, bits, start) != 0)
Damien Miller15d72a02005-11-05 15:07:33 +11001317 fatal("modulus candidate generation failed");
Darren Tucker019cefe2003-08-02 22:40:07 +10001318
1319 return (0);
1320 }
1321
1322 if (do_screen_candidates) {
1323 FILE *in;
1324 FILE *out = fopen(out_file, "w");
1325
1326 if (have_identity && strcmp(identity_file, "-") != 0) {
1327 if ((in = fopen(identity_file, "r")) == NULL) {
1328 fatal("Couldn't open modulus candidate "
Damien Millera8e06ce2003-11-21 23:48:55 +11001329 "file \"%s\": %s", identity_file,
Darren Tucker019cefe2003-08-02 22:40:07 +10001330 strerror(errno));
1331 }
1332 } else
1333 in = stdin;
1334
1335 if (out == NULL) {
1336 fatal("Couldn't open moduli file \"%s\": %s",
1337 out_file, strerror(errno));
1338 }
1339 if (prime_test(in, out, trials, generator_wanted) != 0)
Damien Miller15d72a02005-11-05 15:07:33 +11001340 fatal("modulus screening failed");
Darren Tuckerf4220e62003-08-21 16:44:07 +10001341 return (0);
Darren Tucker019cefe2003-08-02 22:40:07 +10001342 }
1343
Damien Miller95def091999-11-25 00:26:21 +11001344 arc4random_stir();
1345
Damien Millerf14be5c2005-11-05 15:15:49 +11001346 if (key_type_name == NULL)
1347 key_type_name = "rsa";
1348
Damien Millere39cacc2000-11-29 12:18:44 +11001349 type = key_type_from_name(key_type_name);
1350 if (type == KEY_UNSPEC) {
1351 fprintf(stderr, "unknown key type %s\n", key_type_name);
1352 exit(1);
Damien Millereba71ba2000-04-29 23:57:08 +10001353 }
Damien Miller3f54a9f2005-11-05 14:52:18 +11001354 if (bits == 0)
1355 bits = (type == KEY_DSA) ? DEFAULT_BITS_DSA : DEFAULT_BITS;
Tim Rice660c3402005-11-28 17:45:32 -08001356 if (type == KEY_DSA && bits != 1024)
1357 fatal("DSA keys must be 1024 bits");
Darren Tucker3af2ac52005-11-29 13:10:24 +11001358 if (!quiet)
1359 printf("Generating public/private %s key pair.\n", key_type_name);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001360 private = key_generate(type, bits);
1361 if (private == NULL) {
1362 fprintf(stderr, "key_generate failed");
1363 exit(1);
1364 }
1365 public = key_from_private(private);
Damien Miller95def091999-11-25 00:26:21 +11001366
1367 if (!have_identity)
1368 ask_filename(pw, "Enter file in which to save the key");
1369
Damien Miller788f2122005-11-05 15:14:59 +11001370 /* Create ~/.ssh directory if it doesn't already exist. */
Ben Lindstrom226cfa02001-01-22 05:34:40 +00001371 snprintf(dotsshdir, sizeof dotsshdir, "%s/%s", pw->pw_dir, _PATH_SSH_USER_DIR);
Damien Miller95def091999-11-25 00:26:21 +11001372 if (strstr(identity_file, dotsshdir) != NULL &&
1373 stat(dotsshdir, &st) < 0) {
Damien Millerbe484b52000-07-15 14:14:16 +10001374 if (mkdir(dotsshdir, 0700) < 0)
Damien Miller95def091999-11-25 00:26:21 +11001375 error("Could not create directory '%s'.", dotsshdir);
1376 else if (!quiet)
1377 printf("Created directory '%s'.\n", dotsshdir);
1378 }
1379 /* If the file already exists, ask the user to confirm. */
1380 if (stat(identity_file, &st) >= 0) {
1381 char yesno[3];
1382 printf("%s already exists.\n", identity_file);
1383 printf("Overwrite (y/n)? ");
1384 fflush(stdout);
1385 if (fgets(yesno, sizeof(yesno), stdin) == NULL)
1386 exit(1);
1387 if (yesno[0] != 'y' && yesno[0] != 'Y')
1388 exit(1);
1389 }
1390 /* Ask for a passphrase (twice). */
1391 if (identity_passphrase)
1392 passphrase1 = xstrdup(identity_passphrase);
1393 else if (identity_new_passphrase)
1394 passphrase1 = xstrdup(identity_new_passphrase);
1395 else {
1396passphrase_again:
1397 passphrase1 =
Ben Lindstrom949974b2001-06-25 05:20:31 +00001398 read_passphrase("Enter passphrase (empty for no "
1399 "passphrase): ", RP_ALLOW_STDIN);
1400 passphrase2 = read_passphrase("Enter same passphrase again: ",
1401 RP_ALLOW_STDIN);
Damien Miller95def091999-11-25 00:26:21 +11001402 if (strcmp(passphrase1, passphrase2) != 0) {
Ben Lindstrom949974b2001-06-25 05:20:31 +00001403 /*
1404 * The passphrases do not match. Clear them and
1405 * retry.
1406 */
Damien Miller95def091999-11-25 00:26:21 +11001407 memset(passphrase1, 0, strlen(passphrase1));
1408 memset(passphrase2, 0, strlen(passphrase2));
1409 xfree(passphrase1);
1410 xfree(passphrase2);
1411 printf("Passphrases do not match. Try again.\n");
1412 goto passphrase_again;
1413 }
1414 /* Clear the other copy of the passphrase. */
1415 memset(passphrase2, 0, strlen(passphrase2));
1416 xfree(passphrase2);
1417 }
1418
Damien Miller95def091999-11-25 00:26:21 +11001419 if (identity_comment) {
1420 strlcpy(comment, identity_comment, sizeof(comment));
1421 } else {
Damien Miller4af51302000-04-16 11:18:38 +10001422 /* Create default commend field for the passphrase. */
Damien Miller95def091999-11-25 00:26:21 +11001423 snprintf(comment, sizeof comment, "%s@%s", pw->pw_name, hostname);
1424 }
1425
1426 /* Save the key with the given passphrase and comment. */
Ben Lindstromd0fca422001-03-26 13:44:06 +00001427 if (!key_save_private(private, identity_file, passphrase1, comment)) {
Ben Lindstrom15f33862001-04-16 02:00:02 +00001428 printf("Saving the key failed: %s.\n", identity_file);
Damien Miller95def091999-11-25 00:26:21 +11001429 memset(passphrase1, 0, strlen(passphrase1));
1430 xfree(passphrase1);
1431 exit(1);
1432 }
1433 /* Clear the passphrase. */
1434 memset(passphrase1, 0, strlen(passphrase1));
1435 xfree(passphrase1);
1436
1437 /* Clear the private key and the random number generator. */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001438 key_free(private);
Damien Miller95def091999-11-25 00:26:21 +11001439 arc4random_stir();
1440
1441 if (!quiet)
1442 printf("Your identification has been saved in %s.\n", identity_file);
1443
Damien Miller95def091999-11-25 00:26:21 +11001444 strlcat(identity_file, ".pub", sizeof(identity_file));
Ben Lindstrom5fc62702001-03-09 18:19:24 +00001445 fd = open(identity_file, O_WRONLY | O_CREAT | O_TRUNC, 0644);
1446 if (fd == -1) {
Damien Miller95def091999-11-25 00:26:21 +11001447 printf("Could not save your public key in %s\n", identity_file);
1448 exit(1);
1449 }
Ben Lindstrom5fc62702001-03-09 18:19:24 +00001450 f = fdopen(fd, "w");
1451 if (f == NULL) {
1452 printf("fdopen %s failed", identity_file);
1453 exit(1);
1454 }
Damien Millereba71ba2000-04-29 23:57:08 +10001455 if (!key_write(public, f))
1456 fprintf(stderr, "write key failed");
1457 fprintf(f, " %s\n", comment);
Damien Miller95def091999-11-25 00:26:21 +11001458 fclose(f);
1459
1460 if (!quiet) {
Ben Lindstromcfccef92001-03-13 04:57:58 +00001461 char *fp = key_fingerprint(public, SSH_FP_MD5, SSH_FP_HEX);
Darren Tucker9c16ac92008-06-13 04:40:35 +10001462 char *ra = key_fingerprint(public, SSH_FP_MD5,
1463 SSH_FP_RANDOMART);
Damien Millereba71ba2000-04-29 23:57:08 +10001464 printf("Your public key has been saved in %s.\n",
1465 identity_file);
Damien Miller95def091999-11-25 00:26:21 +11001466 printf("The key fingerprint is:\n");
Ben Lindstromcfccef92001-03-13 04:57:58 +00001467 printf("%s %s\n", fp, comment);
Darren Tucker9c16ac92008-06-13 04:40:35 +10001468 printf("The key's randomart image is:\n");
1469 printf("%s\n", ra);
1470 xfree(ra);
Ben Lindstromcfccef92001-03-13 04:57:58 +00001471 xfree(fp);
Damien Miller95def091999-11-25 00:26:21 +11001472 }
Damien Millereba71ba2000-04-29 23:57:08 +10001473
1474 key_free(public);
Damien Miller95def091999-11-25 00:26:21 +11001475 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001476}