blob: 2b2399c50079336d96e99b75d68d19646ce85395 [file] [log] [blame]
Damien Miller14b017d2007-09-17 16:09:15 +10001/* $OpenBSD: ssh-keygen.c,v 1.162 2007/09/11 15:47:17 gilles Exp $ */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002/*
Damien Miller95def091999-11-25 00:26:21 +11003 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1994 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5 * All rights reserved
Damien Miller95def091999-11-25 00:26:21 +11006 * Identity and host key generation and maintenance.
Damien Millere4340be2000-09-16 13:29:08 +11007 *
8 * As far as I am concerned, the code I have written for this software
9 * can be used freely for any purpose. Any derived versions of this
10 * software must be clearly marked as such, and if the derived work is
11 * incompatible with the protocol description in the RFC file, it must be
12 * called by a name other than "ssh" or "Secure Shell".
Damien Miller95def091999-11-25 00:26:21 +110013 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100014
15#include "includes.h"
Damien Millerf17883e2006-03-15 11:45:54 +110016
17#include <sys/types.h>
Damien Millere3b60b52006-07-10 21:08:03 +100018#include <sys/socket.h>
Damien Millerf17883e2006-03-15 11:45:54 +110019#include <sys/stat.h>
Damien Miller8dbffe72006-08-05 11:02:17 +100020#include <sys/param.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100021
Damien Millereba71ba2000-04-29 23:57:08 +100022#include <openssl/evp.h>
23#include <openssl/pem.h>
Damien Millereba71ba2000-04-29 23:57:08 +100024
Darren Tucker39972492006-07-12 22:22:46 +100025#include <errno.h>
Damien Miller57cf6382006-07-10 21:13:46 +100026#include <fcntl.h>
Damien Millerb8fe89c2006-07-24 14:51:00 +100027#include <netdb.h>
Darren Tucker2ee50c52006-07-11 18:55:05 +100028#ifdef HAVE_PATHS_H
29# include <paths.h>
30#endif
Damien Miller9f2abc42006-07-10 20:53:08 +100031#include <pwd.h>
Damien Millerded319c2006-09-01 15:38:36 +100032#include <stdarg.h>
Damien Millera7a73ee2006-08-05 11:37:59 +100033#include <stdio.h>
Damien Millere7a1e5c2006-08-05 11:34:19 +100034#include <stdlib.h>
Damien Millere3476ed2006-07-24 14:13:33 +100035#include <string.h>
Damien Millere6b3b612006-07-24 14:01:23 +100036#include <unistd.h>
Damien Miller9f2abc42006-07-10 20:53:08 +100037
Damien Millerd4a8b7e1999-10-27 13:42:43 +100038#include "xmalloc.h"
Damien Millereba71ba2000-04-29 23:57:08 +100039#include "key.h"
Ben Lindstromd09fcf52001-03-29 00:29:54 +000040#include "rsa.h"
Damien Millereba71ba2000-04-29 23:57:08 +100041#include "authfile.h"
42#include "uuencode.h"
Damien Miller874d77b2000-10-14 16:23:11 +110043#include "buffer.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000044#include "pathnames.h"
45#include "log.h"
Darren Tuckere608ca22004-05-13 16:15:47 +100046#include "misc.h"
Damien Miller4b42d7f2005-03-01 21:48:35 +110047#include "match.h"
48#include "hostfile.h"
Damien Miller69996102006-07-10 20:53:31 +100049#include "dns.h"
Damien Miller874d77b2000-10-14 16:23:11 +110050
Ben Lindstrom8282d6a2001-08-06 21:44:05 +000051#ifdef SMARTCARD
Ben Lindstrom8282d6a2001-08-06 21:44:05 +000052#include "scard.h"
Ben Lindstrombcc18082001-08-06 21:59:25 +000053#endif
Ben Lindstromcd392282001-07-04 03:44:03 +000054
Damien Miller3f54a9f2005-11-05 14:52:18 +110055/* Number of bits in the RSA/DSA key. This value can be set on the command line. */
56#define DEFAULT_BITS 2048
57#define DEFAULT_BITS_DSA 1024
58u_int32_t bits = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100059
Damien Miller5428f641999-11-25 11:54:57 +110060/*
61 * Flag indicating that we just want to change the passphrase. This can be
62 * set on the command line.
63 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100064int change_passphrase = 0;
65
Damien Miller5428f641999-11-25 11:54:57 +110066/*
67 * Flag indicating that we just want to change the comment. This can be set
68 * on the command line.
69 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100070int change_comment = 0;
71
72int quiet = 0;
73
Damien Miller4b42d7f2005-03-01 21:48:35 +110074/* Flag indicating that we want to hash a known_hosts file */
75int hash_hosts = 0;
76/* Flag indicating that we want lookup a host in known_hosts file */
77int find_host = 0;
78/* Flag indicating that we want to delete a host from a known_hosts file */
79int delete_host = 0;
80
Damien Miller10f6f6b1999-11-17 17:29:08 +110081/* Flag indicating that we just want to see the key fingerprint */
82int print_fingerprint = 0;
Ben Lindstrom8fd372b2001-03-12 03:02:17 +000083int print_bubblebabble = 0;
Damien Miller10f6f6b1999-11-17 17:29:08 +110084
Damien Miller431f66b1999-11-21 18:31:57 +110085/* The identity file name, given on the command line or entered by the user. */
86char identity_file[1024];
87int have_identity = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100088
89/* This is set to the passphrase if given on the command line. */
90char *identity_passphrase = NULL;
91
92/* This is set to the new passphrase if given on the command line. */
93char *identity_new_passphrase = NULL;
94
95/* This is set to the new comment if given on the command line. */
96char *identity_comment = NULL;
97
Damien Millereba71ba2000-04-29 23:57:08 +100098/* Dump public key file in format used by real and the original SSH 2 */
99int convert_to_ssh2 = 0;
100int convert_from_ssh2 = 0;
101int print_public = 0;
Damien Miller37876e92003-05-15 10:19:46 +1000102int print_generic = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100103
Damien Millera41c8b12002-01-22 23:05:08 +1100104char *key_type_name = NULL;
Damien Millereba71ba2000-04-29 23:57:08 +1000105
Damien Miller431f66b1999-11-21 18:31:57 +1100106/* argv0 */
107extern char *__progname;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000108
Damien Millereba71ba2000-04-29 23:57:08 +1000109char hostname[MAXHOSTNAMELEN];
110
Darren Tucker770fc012004-05-13 16:24:32 +1000111/* moduli.c */
Damien Millerb089fb52005-05-26 12:16:18 +1000112int gen_candidates(FILE *, u_int32_t, u_int32_t, BIGNUM *);
Darren Tucker770fc012004-05-13 16:24:32 +1000113int prime_test(FILE *, FILE *, u_int32_t, u_int32_t);
114
Ben Lindstrombba81212001-06-25 05:01:22 +0000115static void
Damien Miller431f66b1999-11-21 18:31:57 +1100116ask_filename(struct passwd *pw, const char *prompt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000117{
Damien Miller95def091999-11-25 00:26:21 +1100118 char buf[1024];
Damien Millere39cacc2000-11-29 12:18:44 +1100119 char *name = NULL;
120
Damien Miller993dd552002-02-19 15:22:47 +1100121 if (key_type_name == NULL)
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000122 name = _PATH_SSH_CLIENT_ID_RSA;
Damien Miller90967402006-03-26 14:07:26 +1100123 else {
Damien Miller993dd552002-02-19 15:22:47 +1100124 switch (key_type_from_name(key_type_name)) {
125 case KEY_RSA1:
126 name = _PATH_SSH_CLIENT_IDENTITY;
127 break;
128 case KEY_DSA:
129 name = _PATH_SSH_CLIENT_ID_DSA;
130 break;
131 case KEY_RSA:
132 name = _PATH_SSH_CLIENT_ID_RSA;
133 break;
134 default:
135 fprintf(stderr, "bad key type");
136 exit(1);
137 break;
138 }
Damien Miller90967402006-03-26 14:07:26 +1100139 }
Damien Millere39cacc2000-11-29 12:18:44 +1100140 snprintf(identity_file, sizeof(identity_file), "%s/%s", pw->pw_dir, name);
Ben Lindstrom3deda8b2000-12-22 20:27:43 +0000141 fprintf(stderr, "%s (%s): ", prompt, identity_file);
Damien Miller95def091999-11-25 00:26:21 +1100142 if (fgets(buf, sizeof(buf), stdin) == NULL)
143 exit(1);
Damien Miller14b017d2007-09-17 16:09:15 +1000144 buf[strcspn(buf, "\n")] = '\0';
Damien Miller95def091999-11-25 00:26:21 +1100145 if (strcmp(buf, "") != 0)
146 strlcpy(identity_file, buf, sizeof(identity_file));
147 have_identity = 1;
Damien Miller10f6f6b1999-11-17 17:29:08 +1100148}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000149
Ben Lindstrombba81212001-06-25 05:01:22 +0000150static Key *
Ben Lindstromd78ae762001-06-05 20:35:09 +0000151load_identity(char *filename)
Damien Millereba71ba2000-04-29 23:57:08 +1000152{
Ben Lindstromd0fca422001-03-26 13:44:06 +0000153 char *pass;
154 Key *prv;
155
Ben Lindstroma3700052001-04-05 23:26:32 +0000156 prv = key_load_private(filename, "", NULL);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000157 if (prv == NULL) {
Ben Lindstromd78ae762001-06-05 20:35:09 +0000158 if (identity_passphrase)
159 pass = xstrdup(identity_passphrase);
160 else
Ben Lindstrom949974b2001-06-25 05:20:31 +0000161 pass = read_passphrase("Enter passphrase: ",
162 RP_ALLOW_STDIN);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000163 prv = key_load_private(filename, pass, NULL);
Damien Millereba71ba2000-04-29 23:57:08 +1000164 memset(pass, 0, strlen(pass));
165 xfree(pass);
166 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000167 return prv;
Damien Millereba71ba2000-04-29 23:57:08 +1000168}
169
Damien Miller874d77b2000-10-14 16:23:11 +1100170#define SSH_COM_PUBLIC_BEGIN "---- BEGIN SSH2 PUBLIC KEY ----"
Ben Lindstromcb72e4f2002-06-21 00:41:51 +0000171#define SSH_COM_PUBLIC_END "---- END SSH2 PUBLIC KEY ----"
Damien Miller874d77b2000-10-14 16:23:11 +1100172#define SSH_COM_PRIVATE_BEGIN "---- BEGIN SSH2 ENCRYPTED PRIVATE KEY ----"
Kevin Stevesef4eea92001-02-05 12:42:17 +0000173#define SSH_COM_PRIVATE_KEY_MAGIC 0x3f6ff9eb
Damien Millereba71ba2000-04-29 23:57:08 +1000174
Ben Lindstrombba81212001-06-25 05:01:22 +0000175static void
Damien Millereba71ba2000-04-29 23:57:08 +1000176do_convert_to_ssh2(struct passwd *pw)
177{
Ben Lindstrom46c264f2001-04-24 16:56:58 +0000178 Key *k;
Ben Lindstromc58ab022002-02-26 18:15:09 +0000179 u_int len;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000180 u_char *blob;
Damien Millereba71ba2000-04-29 23:57:08 +1000181 struct stat st;
182
183 if (!have_identity)
184 ask_filename(pw, "Enter file in which the key is");
185 if (stat(identity_file, &st) < 0) {
186 perror(identity_file);
187 exit(1);
188 }
Ben Lindstrom46c264f2001-04-24 16:56:58 +0000189 if ((k = key_load_public(identity_file, NULL)) == NULL) {
Ben Lindstromd78ae762001-06-05 20:35:09 +0000190 if ((k = load_identity(identity_file)) == NULL) {
Ben Lindstrom46c264f2001-04-24 16:56:58 +0000191 fprintf(stderr, "load failed\n");
192 exit(1);
193 }
Damien Millereba71ba2000-04-29 23:57:08 +1000194 }
Damien Millerdb274722003-05-14 13:45:22 +1000195 if (k->type == KEY_RSA1) {
196 fprintf(stderr, "version 1 keys are not supported\n");
197 exit(1);
198 }
Ben Lindstrom99a30f12001-09-18 05:49:14 +0000199 if (key_to_blob(k, &blob, &len) <= 0) {
200 fprintf(stderr, "key_to_blob failed\n");
201 exit(1);
202 }
Damien Miller874d77b2000-10-14 16:23:11 +1100203 fprintf(stdout, "%s\n", SSH_COM_PUBLIC_BEGIN);
Damien Millereba71ba2000-04-29 23:57:08 +1000204 fprintf(stdout,
Ben Lindstrom58d3b722002-06-23 21:28:13 +0000205 "Comment: \"%u-bit %s, converted from OpenSSH by %s@%s\"\n",
Ben Lindstrom46c264f2001-04-24 16:56:58 +0000206 key_size(k), key_type(k),
Damien Millereba71ba2000-04-29 23:57:08 +1000207 pw->pw_name, hostname);
208 dump_base64(stdout, blob, len);
Damien Miller874d77b2000-10-14 16:23:11 +1100209 fprintf(stdout, "%s\n", SSH_COM_PUBLIC_END);
Ben Lindstrom46c264f2001-04-24 16:56:58 +0000210 key_free(k);
Damien Millereba71ba2000-04-29 23:57:08 +1000211 xfree(blob);
212 exit(0);
213}
214
Ben Lindstrombba81212001-06-25 05:01:22 +0000215static void
Damien Miller874d77b2000-10-14 16:23:11 +1100216buffer_get_bignum_bits(Buffer *b, BIGNUM *value)
217{
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000218 u_int bignum_bits = buffer_get_int(b);
219 u_int bytes = (bignum_bits + 7) / 8;
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000220
Damien Miller874d77b2000-10-14 16:23:11 +1100221 if (buffer_len(b) < bytes)
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000222 fatal("buffer_get_bignum_bits: input buffer too small: "
223 "need %d have %d", bytes, buffer_len(b));
Darren Tucker0bc85572006-11-07 23:14:41 +1100224 if (BN_bin2bn(buffer_ptr(b), bytes, value) == NULL)
225 fatal("buffer_get_bignum_bits: BN_bin2bn failed");
Damien Miller874d77b2000-10-14 16:23:11 +1100226 buffer_consume(b, bytes);
227}
228
Ben Lindstrombba81212001-06-25 05:01:22 +0000229static Key *
Ben Lindstrom90fd8142002-02-26 18:09:42 +0000230do_convert_private_ssh2_from_blob(u_char *blob, u_int blen)
Damien Miller874d77b2000-10-14 16:23:11 +1100231{
232 Buffer b;
Damien Miller874d77b2000-10-14 16:23:11 +1100233 Key *key = NULL;
Damien Miller874d77b2000-10-14 16:23:11 +1100234 char *type, *cipher;
Ben Lindstrom511d69e2001-07-04 05:05:27 +0000235 u_char *sig, data[] = "abcde12345";
Ben Lindstrome586c4c2001-06-25 05:04:58 +0000236 int magic, rlen, ktype, i1, i2, i3, i4;
237 u_int slen;
238 u_long e;
Damien Miller874d77b2000-10-14 16:23:11 +1100239
240 buffer_init(&b);
241 buffer_append(&b, blob, blen);
242
Darren Tucker82a3d2b2007-02-19 22:10:25 +1100243 magic = buffer_get_int(&b);
Damien Miller874d77b2000-10-14 16:23:11 +1100244 if (magic != SSH_COM_PRIVATE_KEY_MAGIC) {
245 error("bad magic 0x%x != 0x%x", magic, SSH_COM_PRIVATE_KEY_MAGIC);
246 buffer_free(&b);
247 return NULL;
248 }
Ben Lindstrom34f91882001-06-25 04:47:54 +0000249 i1 = buffer_get_int(&b);
Damien Miller874d77b2000-10-14 16:23:11 +1100250 type = buffer_get_string(&b, NULL);
251 cipher = buffer_get_string(&b, NULL);
Ben Lindstrom34f91882001-06-25 04:47:54 +0000252 i2 = buffer_get_int(&b);
253 i3 = buffer_get_int(&b);
254 i4 = buffer_get_int(&b);
Damien Miller80163902007-01-05 16:30:16 +1100255 debug("ignore (%d %d %d %d)", i1, i2, i3, i4);
Damien Miller874d77b2000-10-14 16:23:11 +1100256 if (strcmp(cipher, "none") != 0) {
257 error("unsupported cipher %s", cipher);
258 xfree(cipher);
259 buffer_free(&b);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000260 xfree(type);
Damien Miller874d77b2000-10-14 16:23:11 +1100261 return NULL;
262 }
263 xfree(cipher);
264
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000265 if (strstr(type, "dsa")) {
266 ktype = KEY_DSA;
267 } else if (strstr(type, "rsa")) {
268 ktype = KEY_RSA;
269 } else {
Darren Tucker7cfeecf2005-01-20 10:56:31 +1100270 buffer_free(&b);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000271 xfree(type);
Damien Miller874d77b2000-10-14 16:23:11 +1100272 return NULL;
273 }
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000274 key = key_new_private(ktype);
275 xfree(type);
276
277 switch (key->type) {
278 case KEY_DSA:
279 buffer_get_bignum_bits(&b, key->dsa->p);
280 buffer_get_bignum_bits(&b, key->dsa->g);
281 buffer_get_bignum_bits(&b, key->dsa->q);
282 buffer_get_bignum_bits(&b, key->dsa->pub_key);
283 buffer_get_bignum_bits(&b, key->dsa->priv_key);
284 break;
285 case KEY_RSA:
Darren Tucker82a3d2b2007-02-19 22:10:25 +1100286 e = buffer_get_char(&b);
Ben Lindstrom34f91882001-06-25 04:47:54 +0000287 debug("e %lx", e);
288 if (e < 30) {
289 e <<= 8;
290 e += buffer_get_char(&b);
291 debug("e %lx", e);
292 e <<= 8;
293 e += buffer_get_char(&b);
294 debug("e %lx", e);
295 }
296 if (!BN_set_word(key->rsa->e, e)) {
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000297 buffer_free(&b);
298 key_free(key);
299 return NULL;
300 }
301 buffer_get_bignum_bits(&b, key->rsa->d);
302 buffer_get_bignum_bits(&b, key->rsa->n);
303 buffer_get_bignum_bits(&b, key->rsa->iqmp);
304 buffer_get_bignum_bits(&b, key->rsa->q);
305 buffer_get_bignum_bits(&b, key->rsa->p);
Ben Lindstromf7297dd2001-07-04 05:02:23 +0000306 rsa_generate_additional_parameters(key->rsa);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000307 break;
308 }
Damien Miller874d77b2000-10-14 16:23:11 +1100309 rlen = buffer_len(&b);
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +0000310 if (rlen != 0)
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000311 error("do_convert_private_ssh2_from_blob: "
312 "remaining bytes in key blob %d", rlen);
Damien Miller874d77b2000-10-14 16:23:11 +1100313 buffer_free(&b);
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000314
Ben Lindstrome586c4c2001-06-25 05:04:58 +0000315 /* try the key */
316 key_sign(key, &sig, &slen, data, sizeof(data));
317 key_verify(key, sig, slen, data, sizeof(data));
318 xfree(sig);
Damien Miller874d77b2000-10-14 16:23:11 +1100319 return key;
320}
321
Damien Miller8056a9d2006-03-15 12:05:40 +1100322static int
323get_line(FILE *fp, char *line, size_t len)
324{
325 int c;
326 size_t pos = 0;
327
328 line[0] = '\0';
329 while ((c = fgetc(fp)) != EOF) {
330 if (pos >= len - 1) {
331 fprintf(stderr, "input line too long.\n");
332 exit(1);
333 }
Damien Miller90967402006-03-26 14:07:26 +1100334 switch (c) {
Damien Miller8056a9d2006-03-15 12:05:40 +1100335 case '\r':
336 c = fgetc(fp);
337 if (c != EOF && c != '\n' && ungetc(c, fp) == EOF) {
338 fprintf(stderr, "unget: %s\n", strerror(errno));
339 exit(1);
340 }
341 return pos;
342 case '\n':
343 return pos;
344 }
345 line[pos++] = c;
346 line[pos] = '\0';
347 }
Damien Miller6c7439f2007-01-05 16:29:55 +1100348 /* We reached EOF */
349 return -1;
Damien Miller8056a9d2006-03-15 12:05:40 +1100350}
351
Ben Lindstrombba81212001-06-25 05:01:22 +0000352static void
Damien Millereba71ba2000-04-29 23:57:08 +1000353do_convert_from_ssh2(struct passwd *pw)
354{
355 Key *k;
356 int blen;
Ben Lindstrom155b9812002-04-02 20:26:26 +0000357 u_int len;
Damien Miller8056a9d2006-03-15 12:05:40 +1100358 char line[1024];
Ben Lindstrom9e0ddd42001-09-18 05:41:19 +0000359 u_char blob[8096];
Damien Millereba71ba2000-04-29 23:57:08 +1000360 char encoded[8096];
361 struct stat st;
Damien Miller874d77b2000-10-14 16:23:11 +1100362 int escaped = 0, private = 0, ok;
Damien Millereba71ba2000-04-29 23:57:08 +1000363 FILE *fp;
364
365 if (!have_identity)
366 ask_filename(pw, "Enter file in which the key is");
367 if (stat(identity_file, &st) < 0) {
368 perror(identity_file);
369 exit(1);
370 }
371 fp = fopen(identity_file, "r");
372 if (fp == NULL) {
373 perror(identity_file);
374 exit(1);
375 }
376 encoded[0] = '\0';
Damien Miller8056a9d2006-03-15 12:05:40 +1100377 while ((blen = get_line(fp, line, sizeof(line))) != -1) {
378 if (line[blen - 1] == '\\')
Damien Miller30c3d422000-05-09 11:02:59 +1000379 escaped++;
Damien Millereba71ba2000-04-29 23:57:08 +1000380 if (strncmp(line, "----", 4) == 0 ||
381 strstr(line, ": ") != NULL) {
Damien Miller874d77b2000-10-14 16:23:11 +1100382 if (strstr(line, SSH_COM_PRIVATE_BEGIN) != NULL)
383 private = 1;
Ben Lindstrome586c4c2001-06-25 05:04:58 +0000384 if (strstr(line, " END ") != NULL) {
385 break;
386 }
Ben Lindstrom30358602001-04-24 16:59:28 +0000387 /* fprintf(stderr, "ignore: %s", line); */
Damien Millereba71ba2000-04-29 23:57:08 +1000388 continue;
389 }
Damien Miller30c3d422000-05-09 11:02:59 +1000390 if (escaped) {
391 escaped--;
Ben Lindstrom30358602001-04-24 16:59:28 +0000392 /* fprintf(stderr, "escaped: %s", line); */
Damien Miller30c3d422000-05-09 11:02:59 +1000393 continue;
Damien Millereba71ba2000-04-29 23:57:08 +1000394 }
Damien Millereba71ba2000-04-29 23:57:08 +1000395 strlcat(encoded, line, sizeof(encoded));
396 }
Ben Lindstrom155b9812002-04-02 20:26:26 +0000397 len = strlen(encoded);
398 if (((len % 4) == 3) &&
399 (encoded[len-1] == '=') &&
400 (encoded[len-2] == '=') &&
401 (encoded[len-3] == '='))
402 encoded[len-3] = '\0';
Damien Miller4a8ed542002-01-22 23:33:31 +1100403 blen = uudecode(encoded, blob, sizeof(blob));
Damien Millereba71ba2000-04-29 23:57:08 +1000404 if (blen < 0) {
405 fprintf(stderr, "uudecode failed.\n");
406 exit(1);
407 }
Damien Miller874d77b2000-10-14 16:23:11 +1100408 k = private ?
409 do_convert_private_ssh2_from_blob(blob, blen) :
Damien Miller0bc1bd82000-11-13 22:57:25 +1100410 key_from_blob(blob, blen);
Damien Miller874d77b2000-10-14 16:23:11 +1100411 if (k == NULL) {
412 fprintf(stderr, "decode blob failed.\n");
413 exit(1);
414 }
415 ok = private ?
Ben Lindstromd09fcf52001-03-29 00:29:54 +0000416 (k->type == KEY_DSA ?
417 PEM_write_DSAPrivateKey(stdout, k->dsa, NULL, NULL, 0, NULL, NULL) :
418 PEM_write_RSAPrivateKey(stdout, k->rsa, NULL, NULL, 0, NULL, NULL)) :
Damien Miller874d77b2000-10-14 16:23:11 +1100419 key_write(k, stdout);
420 if (!ok) {
421 fprintf(stderr, "key write failed");
422 exit(1);
423 }
Damien Millereba71ba2000-04-29 23:57:08 +1000424 key_free(k);
Damien Millera1db12b2002-01-22 23:20:15 +1100425 if (!private)
426 fprintf(stdout, "\n");
Damien Millereba71ba2000-04-29 23:57:08 +1000427 fclose(fp);
428 exit(0);
429}
430
Ben Lindstrombba81212001-06-25 05:01:22 +0000431static void
Damien Millereba71ba2000-04-29 23:57:08 +1000432do_print_public(struct passwd *pw)
433{
Ben Lindstromd0fca422001-03-26 13:44:06 +0000434 Key *prv;
Damien Millereba71ba2000-04-29 23:57:08 +1000435 struct stat st;
436
437 if (!have_identity)
438 ask_filename(pw, "Enter file in which the key is");
439 if (stat(identity_file, &st) < 0) {
440 perror(identity_file);
441 exit(1);
442 }
Ben Lindstromd78ae762001-06-05 20:35:09 +0000443 prv = load_identity(identity_file);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000444 if (prv == NULL) {
Damien Millereba71ba2000-04-29 23:57:08 +1000445 fprintf(stderr, "load failed\n");
446 exit(1);
447 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000448 if (!key_write(prv, stdout))
Damien Millereba71ba2000-04-29 23:57:08 +1000449 fprintf(stderr, "key_write failed");
Ben Lindstromd0fca422001-03-26 13:44:06 +0000450 key_free(prv);
Damien Millereba71ba2000-04-29 23:57:08 +1000451 fprintf(stdout, "\n");
452 exit(0);
453}
454
Ben Lindstrom6818bfb2001-08-06 21:40:04 +0000455#ifdef SMARTCARD
Ben Lindstromcd392282001-07-04 03:44:03 +0000456static void
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000457do_upload(struct passwd *pw, const char *sc_reader_id)
Ben Lindstromcd392282001-07-04 03:44:03 +0000458{
Ben Lindstromcd392282001-07-04 03:44:03 +0000459 Key *prv = NULL;
460 struct stat st;
Ben Lindstrom70e3ad82002-03-22 03:33:43 +0000461 int ret;
Ben Lindstromcd392282001-07-04 03:44:03 +0000462
463 if (!have_identity)
464 ask_filename(pw, "Enter file in which the key is");
465 if (stat(identity_file, &st) < 0) {
466 perror(identity_file);
Ben Lindstrom70e3ad82002-03-22 03:33:43 +0000467 exit(1);
Ben Lindstromcd392282001-07-04 03:44:03 +0000468 }
469 prv = load_identity(identity_file);
470 if (prv == NULL) {
471 error("load failed");
Ben Lindstrom70e3ad82002-03-22 03:33:43 +0000472 exit(1);
Ben Lindstromcd392282001-07-04 03:44:03 +0000473 }
Ben Lindstrom70e3ad82002-03-22 03:33:43 +0000474 ret = sc_put_key(prv, sc_reader_id);
475 key_free(prv);
476 if (ret < 0)
477 exit(1);
Damien Miller996acd22003-04-09 20:59:48 +1000478 logit("loading key done");
Ben Lindstrom70e3ad82002-03-22 03:33:43 +0000479 exit(0);
Ben Lindstromcd392282001-07-04 03:44:03 +0000480}
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000481
482static void
483do_download(struct passwd *pw, const char *sc_reader_id)
484{
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000485 Key **keys = NULL;
486 int i;
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000487
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000488 keys = sc_get_keys(sc_reader_id, NULL);
489 if (keys == NULL)
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000490 fatal("cannot read public key from smartcard");
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000491 for (i = 0; keys[i]; i++) {
492 key_write(keys[i], stdout);
493 key_free(keys[i]);
494 fprintf(stdout, "\n");
495 }
496 xfree(keys);
Ben Lindstrom8282d6a2001-08-06 21:44:05 +0000497 exit(0);
498}
Ben Lindstromffce1472001-08-06 21:57:31 +0000499#endif /* SMARTCARD */
Ben Lindstromcd392282001-07-04 03:44:03 +0000500
Ben Lindstrombba81212001-06-25 05:01:22 +0000501static void
Damien Miller10f6f6b1999-11-17 17:29:08 +1100502do_fingerprint(struct passwd *pw)
503{
Damien Miller98c7ad62000-03-09 21:27:49 +1100504 FILE *f;
Damien Millereba71ba2000-04-29 23:57:08 +1000505 Key *public;
Ben Lindstrom8fd372b2001-03-12 03:02:17 +0000506 char *comment = NULL, *cp, *ep, line[16*1024], *fp;
Ben Lindstrom65366a82001-12-06 16:32:47 +0000507 int i, skip = 0, num = 1, invalid = 1;
508 enum fp_rep rep;
509 enum fp_type fptype;
Damien Miller95def091999-11-25 00:26:21 +1100510 struct stat st;
Damien Miller10f6f6b1999-11-17 17:29:08 +1100511
Ben Lindstromd0fca422001-03-26 13:44:06 +0000512 fptype = print_bubblebabble ? SSH_FP_SHA1 : SSH_FP_MD5;
513 rep = print_bubblebabble ? SSH_FP_BUBBLEBABBLE : SSH_FP_HEX;
Ben Lindstrom8fd372b2001-03-12 03:02:17 +0000514
Damien Miller95def091999-11-25 00:26:21 +1100515 if (!have_identity)
516 ask_filename(pw, "Enter file in which the key is");
517 if (stat(identity_file, &st) < 0) {
518 perror(identity_file);
519 exit(1);
520 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000521 public = key_load_public(identity_file, &comment);
522 if (public != NULL) {
523 fp = key_fingerprint(public, fptype, rep);
Ben Lindstrom58d3b722002-06-23 21:28:13 +0000524 printf("%u %s %s\n", key_size(public), fp, comment);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100525 key_free(public);
526 xfree(comment);
Ben Lindstrom8fd372b2001-03-12 03:02:17 +0000527 xfree(fp);
Damien Miller98c7ad62000-03-09 21:27:49 +1100528 exit(0);
529 }
Damien Miller40b59852006-06-13 13:00:25 +1000530 if (comment) {
Ben Lindstromd0fca422001-03-26 13:44:06 +0000531 xfree(comment);
Damien Miller40b59852006-06-13 13:00:25 +1000532 comment = NULL;
533 }
Damien Miller98c7ad62000-03-09 21:27:49 +1100534
535 f = fopen(identity_file, "r");
536 if (f != NULL) {
Damien Miller98c7ad62000-03-09 21:27:49 +1100537 while (fgets(line, sizeof(line), f)) {
538 i = strlen(line) - 1;
539 if (line[i] != '\n') {
540 error("line %d too long: %.40s...", num, line);
541 skip = 1;
542 continue;
Damien Miller95def091999-11-25 00:26:21 +1100543 }
Damien Miller98c7ad62000-03-09 21:27:49 +1100544 num++;
545 if (skip) {
546 skip = 0;
547 continue;
548 }
549 line[i] = '\0';
550
551 /* Skip leading whitespace, empty and comment lines. */
552 for (cp = line; *cp == ' ' || *cp == '\t'; cp++)
553 ;
554 if (!*cp || *cp == '\n' || *cp == '#')
Damien Miller80163902007-01-05 16:30:16 +1100555 continue;
Damien Miller98c7ad62000-03-09 21:27:49 +1100556 i = strtol(cp, &ep, 10);
557 if (i == 0 || ep == NULL || (*ep != ' ' && *ep != '\t')) {
558 int quoted = 0;
559 comment = cp;
Ben Lindstrom58d3b722002-06-23 21:28:13 +0000560 for (; *cp && (quoted || (*cp != ' ' &&
561 *cp != '\t')); cp++) {
Damien Miller98c7ad62000-03-09 21:27:49 +1100562 if (*cp == '\\' && cp[1] == '"')
563 cp++; /* Skip both */
564 else if (*cp == '"')
565 quoted = !quoted;
566 }
567 if (!*cp)
568 continue;
569 *cp++ = '\0';
570 }
571 ep = cp;
Ben Lindstrom2941f112000-12-29 16:50:13 +0000572 public = key_new(KEY_RSA1);
573 if (key_read(public, &cp) != 1) {
574 cp = ep;
575 key_free(public);
576 public = key_new(KEY_UNSPEC);
577 if (key_read(public, &cp) != 1) {
578 key_free(public);
579 continue;
580 }
Damien Miller98c7ad62000-03-09 21:27:49 +1100581 }
Ben Lindstrom2941f112000-12-29 16:50:13 +0000582 comment = *cp ? cp : comment;
Ben Lindstromd0fca422001-03-26 13:44:06 +0000583 fp = key_fingerprint(public, fptype, rep);
Ben Lindstrom58d3b722002-06-23 21:28:13 +0000584 printf("%u %s %s\n", key_size(public), fp,
Ben Lindstrom2941f112000-12-29 16:50:13 +0000585 comment ? comment : "no comment");
Ben Lindstrom8fd372b2001-03-12 03:02:17 +0000586 xfree(fp);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000587 key_free(public);
Ben Lindstrom2941f112000-12-29 16:50:13 +0000588 invalid = 0;
Damien Miller95def091999-11-25 00:26:21 +1100589 }
Damien Miller98c7ad62000-03-09 21:27:49 +1100590 fclose(f);
Damien Miller95def091999-11-25 00:26:21 +1100591 }
Damien Miller98c7ad62000-03-09 21:27:49 +1100592 if (invalid) {
Damien Millereb5fec62001-11-12 10:52:44 +1100593 printf("%s is not a public key file.\n", identity_file);
Damien Miller98c7ad62000-03-09 21:27:49 +1100594 exit(1);
595 }
Damien Miller95def091999-11-25 00:26:21 +1100596 exit(0);
Damien Miller10f6f6b1999-11-17 17:29:08 +1100597}
598
Damien Miller4b42d7f2005-03-01 21:48:35 +1100599static void
600print_host(FILE *f, char *name, Key *public, int hash)
601{
602 if (hash && (name = host_hash(name, NULL, 0)) == NULL)
603 fatal("hash_host failed");
604 fprintf(f, "%s ", name);
605 if (!key_write(public, f))
606 fatal("key_write failed");
607 fprintf(f, "\n");
608}
609
610static void
611do_known_hosts(struct passwd *pw, const char *name)
612{
613 FILE *in, *out = stdout;
614 Key *public;
615 char *cp, *cp2, *kp, *kp2;
616 char line[16*1024], tmp[MAXPATHLEN], old[MAXPATHLEN];
617 int c, i, skip = 0, inplace = 0, num = 0, invalid = 0, has_unhashed = 0;
618
619 if (!have_identity) {
620 cp = tilde_expand_filename(_PATH_SSH_USER_HOSTFILE, pw->pw_uid);
621 if (strlcpy(identity_file, cp, sizeof(identity_file)) >=
622 sizeof(identity_file))
623 fatal("Specified known hosts path too long");
624 xfree(cp);
625 have_identity = 1;
626 }
627 if ((in = fopen(identity_file, "r")) == NULL)
628 fatal("fopen: %s", strerror(errno));
629
630 /*
631 * Find hosts goes to stdout, hash and deletions happen in-place
632 * A corner case is ssh-keygen -HF foo, which should go to stdout
633 */
634 if (!find_host && (hash_hosts || delete_host)) {
635 if (strlcpy(tmp, identity_file, sizeof(tmp)) >= sizeof(tmp) ||
636 strlcat(tmp, ".XXXXXXXXXX", sizeof(tmp)) >= sizeof(tmp) ||
637 strlcpy(old, identity_file, sizeof(old)) >= sizeof(old) ||
638 strlcat(old, ".old", sizeof(old)) >= sizeof(old))
639 fatal("known_hosts path too long");
640 umask(077);
641 if ((c = mkstemp(tmp)) == -1)
642 fatal("mkstemp: %s", strerror(errno));
643 if ((out = fdopen(c, "w")) == NULL) {
644 c = errno;
645 unlink(tmp);
646 fatal("fdopen: %s", strerror(c));
647 }
648 inplace = 1;
649 }
650
651 while (fgets(line, sizeof(line), in)) {
652 num++;
653 i = strlen(line) - 1;
654 if (line[i] != '\n') {
655 error("line %d too long: %.40s...", num, line);
656 skip = 1;
657 invalid = 1;
658 continue;
659 }
660 if (skip) {
661 skip = 0;
662 continue;
663 }
664 line[i] = '\0';
665
666 /* Skip leading whitespace, empty and comment lines. */
667 for (cp = line; *cp == ' ' || *cp == '\t'; cp++)
668 ;
669 if (!*cp || *cp == '\n' || *cp == '#') {
670 if (inplace)
671 fprintf(out, "%s\n", cp);
672 continue;
673 }
674 /* Find the end of the host name portion. */
675 for (kp = cp; *kp && *kp != ' ' && *kp != '\t'; kp++)
676 ;
677 if (*kp == '\0' || *(kp + 1) == '\0') {
678 error("line %d missing key: %.40s...",
679 num, line);
680 invalid = 1;
681 continue;
682 }
683 *kp++ = '\0';
684 kp2 = kp;
685
686 public = key_new(KEY_RSA1);
687 if (key_read(public, &kp) != 1) {
688 kp = kp2;
689 key_free(public);
690 public = key_new(KEY_UNSPEC);
691 if (key_read(public, &kp) != 1) {
692 error("line %d invalid key: %.40s...",
693 num, line);
694 key_free(public);
695 invalid = 1;
696 continue;
697 }
698 }
699
700 if (*cp == HASH_DELIM) {
701 if (find_host || delete_host) {
702 cp2 = host_hash(name, cp, strlen(cp));
703 if (cp2 == NULL) {
704 error("line %d: invalid hashed "
705 "name: %.64s...", num, line);
706 invalid = 1;
707 continue;
708 }
709 c = (strcmp(cp2, cp) == 0);
710 if (find_host && c) {
711 printf("# Host %s found: "
712 "line %d type %s\n", name,
713 num, key_type(public));
714 print_host(out, cp, public, 0);
715 }
716 if (delete_host && !c)
717 print_host(out, cp, public, 0);
718 } else if (hash_hosts)
719 print_host(out, cp, public, 0);
720 } else {
721 if (find_host || delete_host) {
722 c = (match_hostname(name, cp,
723 strlen(cp)) == 1);
724 if (find_host && c) {
725 printf("# Host %s found: "
726 "line %d type %s\n", name,
727 num, key_type(public));
728 print_host(out, cp, public, hash_hosts);
729 }
730 if (delete_host && !c)
731 print_host(out, cp, public, 0);
732 } else if (hash_hosts) {
Darren Tucker47eede72005-03-14 23:08:12 +1100733 for (cp2 = strsep(&cp, ",");
Damien Miller4b42d7f2005-03-01 21:48:35 +1100734 cp2 != NULL && *cp2 != '\0';
Damien Miller89eac802005-03-02 12:33:04 +1100735 cp2 = strsep(&cp, ",")) {
736 if (strcspn(cp2, "*?!") != strlen(cp2))
737 fprintf(stderr, "Warning: "
738 "ignoring host name with "
739 "metacharacters: %.64s\n",
740 cp2);
741 else
742 print_host(out, cp2, public, 1);
743 }
Damien Miller4b42d7f2005-03-01 21:48:35 +1100744 has_unhashed = 1;
745 }
746 }
747 key_free(public);
748 }
749 fclose(in);
750
751 if (invalid) {
752 fprintf(stderr, "%s is not a valid known_host file.\n",
753 identity_file);
754 if (inplace) {
755 fprintf(stderr, "Not replacing existing known_hosts "
Darren Tucker9f438a92005-03-14 23:09:18 +1100756 "file because of errors\n");
Damien Miller4b42d7f2005-03-01 21:48:35 +1100757 fclose(out);
758 unlink(tmp);
759 }
760 exit(1);
761 }
762
763 if (inplace) {
764 fclose(out);
765
766 /* Backup existing file */
767 if (unlink(old) == -1 && errno != ENOENT)
768 fatal("unlink %.100s: %s", old, strerror(errno));
769 if (link(identity_file, old) == -1)
770 fatal("link %.100s to %.100s: %s", identity_file, old,
771 strerror(errno));
772 /* Move new one into place */
773 if (rename(tmp, identity_file) == -1) {
774 error("rename\"%s\" to \"%s\": %s", tmp, identity_file,
775 strerror(errno));
776 unlink(tmp);
777 unlink(old);
778 exit(1);
779 }
780
781 fprintf(stderr, "%s updated.\n", identity_file);
782 fprintf(stderr, "Original contents retained as %s\n", old);
783 if (has_unhashed) {
784 fprintf(stderr, "WARNING: %s contains unhashed "
785 "entries\n", old);
786 fprintf(stderr, "Delete this file to ensure privacy "
Damien Miller0dc1bef2005-07-17 17:22:45 +1000787 "of hostnames\n");
Damien Miller4b42d7f2005-03-01 21:48:35 +1100788 }
789 }
790
791 exit(0);
792}
793
Damien Miller95def091999-11-25 00:26:21 +1100794/*
795 * Perform changing a passphrase. The argument is the passwd structure
796 * for the current user.
797 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000798static void
Damien Miller10f6f6b1999-11-17 17:29:08 +1100799do_change_passphrase(struct passwd *pw)
800{
Damien Miller95def091999-11-25 00:26:21 +1100801 char *comment;
802 char *old_passphrase, *passphrase1, *passphrase2;
803 struct stat st;
Damien Millereba71ba2000-04-29 23:57:08 +1000804 Key *private;
Damien Miller10f6f6b1999-11-17 17:29:08 +1100805
Damien Miller95def091999-11-25 00:26:21 +1100806 if (!have_identity)
807 ask_filename(pw, "Enter file in which the key is");
Damien Miller95def091999-11-25 00:26:21 +1100808 if (stat(identity_file, &st) < 0) {
809 perror(identity_file);
810 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000811 }
Damien Miller95def091999-11-25 00:26:21 +1100812 /* Try to load the file with empty passphrase. */
Ben Lindstromd0fca422001-03-26 13:44:06 +0000813 private = key_load_private(identity_file, "", &comment);
814 if (private == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100815 if (identity_passphrase)
816 old_passphrase = xstrdup(identity_passphrase);
817 else
Ben Lindstrom949974b2001-06-25 05:20:31 +0000818 old_passphrase =
819 read_passphrase("Enter old passphrase: ",
820 RP_ALLOW_STDIN);
821 private = key_load_private(identity_file, old_passphrase,
822 &comment);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000823 memset(old_passphrase, 0, strlen(old_passphrase));
824 xfree(old_passphrase);
825 if (private == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100826 printf("Bad passphrase.\n");
827 exit(1);
828 }
Damien Miller95def091999-11-25 00:26:21 +1100829 }
830 printf("Key has comment '%s'\n", comment);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000831
Damien Miller95def091999-11-25 00:26:21 +1100832 /* Ask the new passphrase (twice). */
833 if (identity_new_passphrase) {
834 passphrase1 = xstrdup(identity_new_passphrase);
835 passphrase2 = NULL;
836 } else {
837 passphrase1 =
Ben Lindstrom949974b2001-06-25 05:20:31 +0000838 read_passphrase("Enter new passphrase (empty for no "
839 "passphrase): ", RP_ALLOW_STDIN);
840 passphrase2 = read_passphrase("Enter same passphrase again: ",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100841 RP_ALLOW_STDIN);
Damien Miller95def091999-11-25 00:26:21 +1100842
843 /* Verify that they are the same. */
844 if (strcmp(passphrase1, passphrase2) != 0) {
845 memset(passphrase1, 0, strlen(passphrase1));
846 memset(passphrase2, 0, strlen(passphrase2));
847 xfree(passphrase1);
848 xfree(passphrase2);
849 printf("Pass phrases do not match. Try again.\n");
850 exit(1);
851 }
852 /* Destroy the other copy. */
853 memset(passphrase2, 0, strlen(passphrase2));
854 xfree(passphrase2);
855 }
856
857 /* Save the file using the new passphrase. */
Ben Lindstromd0fca422001-03-26 13:44:06 +0000858 if (!key_save_private(private, identity_file, passphrase1, comment)) {
Ben Lindstrom15f33862001-04-16 02:00:02 +0000859 printf("Saving the key failed: %s.\n", identity_file);
Damien Miller95def091999-11-25 00:26:21 +1100860 memset(passphrase1, 0, strlen(passphrase1));
861 xfree(passphrase1);
Damien Millereba71ba2000-04-29 23:57:08 +1000862 key_free(private);
Damien Miller95def091999-11-25 00:26:21 +1100863 xfree(comment);
864 exit(1);
865 }
866 /* Destroy the passphrase and the copy of the key in memory. */
867 memset(passphrase1, 0, strlen(passphrase1));
868 xfree(passphrase1);
Damien Millereba71ba2000-04-29 23:57:08 +1000869 key_free(private); /* Destroys contents */
Damien Miller95def091999-11-25 00:26:21 +1100870 xfree(comment);
871
872 printf("Your identification has been saved with the new passphrase.\n");
873 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000874}
875
Damien Miller37876e92003-05-15 10:19:46 +1000876/*
877 * Print the SSHFP RR.
878 */
Damien Millercb314822006-03-26 13:48:01 +1100879static int
880do_print_resource_record(struct passwd *pw, char *fname, char *hname)
Damien Miller37876e92003-05-15 10:19:46 +1000881{
882 Key *public;
883 char *comment = NULL;
884 struct stat st;
885
Damien Millercb314822006-03-26 13:48:01 +1100886 if (fname == NULL)
Damien Miller37876e92003-05-15 10:19:46 +1000887 ask_filename(pw, "Enter file in which the key is");
Damien Millercb314822006-03-26 13:48:01 +1100888 if (stat(fname, &st) < 0) {
889 if (errno == ENOENT)
890 return 0;
891 perror(fname);
Damien Miller37876e92003-05-15 10:19:46 +1000892 exit(1);
893 }
Damien Millercb314822006-03-26 13:48:01 +1100894 public = key_load_public(fname, &comment);
Damien Miller37876e92003-05-15 10:19:46 +1000895 if (public != NULL) {
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000896 export_dns_rr(hname, public, stdout, print_generic);
Damien Miller37876e92003-05-15 10:19:46 +1000897 key_free(public);
898 xfree(comment);
Damien Millercb314822006-03-26 13:48:01 +1100899 return 1;
Damien Miller37876e92003-05-15 10:19:46 +1000900 }
901 if (comment)
902 xfree(comment);
903
Damien Millercb314822006-03-26 13:48:01 +1100904 printf("failed to read v2 public key from %s.\n", fname);
Damien Miller37876e92003-05-15 10:19:46 +1000905 exit(1);
906}
Damien Miller37876e92003-05-15 10:19:46 +1000907
Damien Miller95def091999-11-25 00:26:21 +1100908/*
909 * Change the comment of a private key file.
910 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000911static void
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000912do_change_comment(struct passwd *pw)
913{
Ben Lindstrom5fc62702001-03-09 18:19:24 +0000914 char new_comment[1024], *comment, *passphrase;
Ben Lindstromd0fca422001-03-26 13:44:06 +0000915 Key *private;
916 Key *public;
Damien Miller95def091999-11-25 00:26:21 +1100917 struct stat st;
918 FILE *f;
Ben Lindstrom5fc62702001-03-09 18:19:24 +0000919 int fd;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000920
Damien Miller95def091999-11-25 00:26:21 +1100921 if (!have_identity)
922 ask_filename(pw, "Enter file in which the key is");
Damien Miller95def091999-11-25 00:26:21 +1100923 if (stat(identity_file, &st) < 0) {
924 perror(identity_file);
925 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000926 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000927 private = key_load_private(identity_file, "", &comment);
928 if (private == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100929 if (identity_passphrase)
930 passphrase = xstrdup(identity_passphrase);
931 else if (identity_new_passphrase)
932 passphrase = xstrdup(identity_new_passphrase);
933 else
Ben Lindstrom949974b2001-06-25 05:20:31 +0000934 passphrase = read_passphrase("Enter passphrase: ",
935 RP_ALLOW_STDIN);
Damien Miller95def091999-11-25 00:26:21 +1100936 /* Try to load using the passphrase. */
Ben Lindstromd0fca422001-03-26 13:44:06 +0000937 private = key_load_private(identity_file, passphrase, &comment);
938 if (private == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100939 memset(passphrase, 0, strlen(passphrase));
940 xfree(passphrase);
941 printf("Bad passphrase.\n");
942 exit(1);
943 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000944 } else {
945 passphrase = xstrdup("");
Damien Miller95def091999-11-25 00:26:21 +1100946 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000947 if (private->type != KEY_RSA1) {
948 fprintf(stderr, "Comments are only supported for RSA1 keys.\n");
949 key_free(private);
950 exit(1);
Damien Miller9f0f5c62001-12-21 14:45:46 +1100951 }
Damien Miller95def091999-11-25 00:26:21 +1100952 printf("Key now has comment '%s'\n", comment);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000953
Damien Miller95def091999-11-25 00:26:21 +1100954 if (identity_comment) {
955 strlcpy(new_comment, identity_comment, sizeof(new_comment));
956 } else {
957 printf("Enter new comment: ");
958 fflush(stdout);
959 if (!fgets(new_comment, sizeof(new_comment), stdin)) {
960 memset(passphrase, 0, strlen(passphrase));
Damien Millereba71ba2000-04-29 23:57:08 +1000961 key_free(private);
Damien Miller95def091999-11-25 00:26:21 +1100962 exit(1);
963 }
Damien Miller14b017d2007-09-17 16:09:15 +1000964 new_comment[strcspn(new_comment, "\n")] = '\0';
Damien Miller95def091999-11-25 00:26:21 +1100965 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000966
Damien Miller95def091999-11-25 00:26:21 +1100967 /* Save the file using the new passphrase. */
Ben Lindstromd0fca422001-03-26 13:44:06 +0000968 if (!key_save_private(private, identity_file, passphrase, new_comment)) {
Ben Lindstrom15f33862001-04-16 02:00:02 +0000969 printf("Saving the key failed: %s.\n", identity_file);
Damien Miller95def091999-11-25 00:26:21 +1100970 memset(passphrase, 0, strlen(passphrase));
971 xfree(passphrase);
Damien Millereba71ba2000-04-29 23:57:08 +1000972 key_free(private);
Damien Miller95def091999-11-25 00:26:21 +1100973 xfree(comment);
974 exit(1);
975 }
Damien Miller95def091999-11-25 00:26:21 +1100976 memset(passphrase, 0, strlen(passphrase));
977 xfree(passphrase);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000978 public = key_from_private(private);
Damien Millereba71ba2000-04-29 23:57:08 +1000979 key_free(private);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000980
Damien Miller95def091999-11-25 00:26:21 +1100981 strlcat(identity_file, ".pub", sizeof(identity_file));
Ben Lindstrom5fc62702001-03-09 18:19:24 +0000982 fd = open(identity_file, O_WRONLY | O_CREAT | O_TRUNC, 0644);
983 if (fd == -1) {
Damien Miller95def091999-11-25 00:26:21 +1100984 printf("Could not save your public key in %s\n", identity_file);
985 exit(1);
986 }
Ben Lindstrom5fc62702001-03-09 18:19:24 +0000987 f = fdopen(fd, "w");
988 if (f == NULL) {
989 printf("fdopen %s failed", identity_file);
990 exit(1);
991 }
Damien Millereba71ba2000-04-29 23:57:08 +1000992 if (!key_write(public, f))
993 fprintf(stderr, "write key failed");
994 key_free(public);
995 fprintf(f, " %s\n", new_comment);
Damien Miller95def091999-11-25 00:26:21 +1100996 fclose(f);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000997
Damien Miller95def091999-11-25 00:26:21 +1100998 xfree(comment);
999
1000 printf("The comment in your key file has been changed.\n");
1001 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001002}
1003
Ben Lindstrombba81212001-06-25 05:01:22 +00001004static void
Damien Miller431f66b1999-11-21 18:31:57 +11001005usage(void)
1006{
Damien Miller5cbe7ca2007-09-17 16:05:50 +10001007 fprintf(stderr, "usage: %s [options]\n", __progname);
Ben Lindstrom97be31e2001-08-06 21:49:06 +00001008 fprintf(stderr, "Options:\n");
Damien Miller9278ffa2005-05-26 11:59:06 +10001009 fprintf(stderr, " -a trials Number of trials for screening DH-GEX moduli.\n");
Ben Lindstrom97be31e2001-08-06 21:49:06 +00001010 fprintf(stderr, " -B Show bubblebabble digest of key file.\n");
Damien Miller9278ffa2005-05-26 11:59:06 +10001011 fprintf(stderr, " -b bits Number of bits in the key to create.\n");
Ben Lindstrom97be31e2001-08-06 21:49:06 +00001012 fprintf(stderr, " -C comment Provide new comment.\n");
Damien Miller9278ffa2005-05-26 11:59:06 +10001013 fprintf(stderr, " -c Change comment in private and public key files.\n");
Ben Lindstrom97be31e2001-08-06 21:49:06 +00001014#ifdef SMARTCARD
1015 fprintf(stderr, " -D reader Download public key from smartcard.\n");
Damien Miller9278ffa2005-05-26 11:59:06 +10001016#endif /* SMARTCARD */
Darren Tucker26dc3e62007-02-19 22:09:06 +11001017 fprintf(stderr, " -e Convert OpenSSH to RFC 4716 key file.\n");
Damien Miller9278ffa2005-05-26 11:59:06 +10001018 fprintf(stderr, " -F hostname Find hostname in known hosts file.\n");
1019 fprintf(stderr, " -f filename Filename of the key file.\n");
1020 fprintf(stderr, " -G file Generate candidates for DH-GEX moduli.\n");
1021 fprintf(stderr, " -g Use generic DNS resource record format.\n");
1022 fprintf(stderr, " -H Hash names in known_hosts file.\n");
Darren Tucker26dc3e62007-02-19 22:09:06 +11001023 fprintf(stderr, " -i Convert RFC 4716 to OpenSSH key file.\n");
Damien Miller9278ffa2005-05-26 11:59:06 +10001024 fprintf(stderr, " -l Show fingerprint of key file.\n");
1025 fprintf(stderr, " -M memory Amount of memory (MB) to use for generating DH-GEX moduli.\n");
1026 fprintf(stderr, " -N phrase Provide new passphrase.\n");
1027 fprintf(stderr, " -P phrase Provide old passphrase.\n");
1028 fprintf(stderr, " -p Change passphrase of private key file.\n");
1029 fprintf(stderr, " -q Quiet.\n");
1030 fprintf(stderr, " -R hostname Remove host from known_hosts file.\n");
1031 fprintf(stderr, " -r hostname Print DNS resource record.\n");
1032 fprintf(stderr, " -S start Start point (hex) for generating DH-GEX moduli.\n");
1033 fprintf(stderr, " -T file Screen candidates for DH-GEX moduli.\n");
1034 fprintf(stderr, " -t type Specify type of key to create.\n");
1035#ifdef SMARTCARD
Ben Lindstrom97be31e2001-08-06 21:49:06 +00001036 fprintf(stderr, " -U reader Upload private key to smartcard.\n");
1037#endif /* SMARTCARD */
Damien Miller9278ffa2005-05-26 11:59:06 +10001038 fprintf(stderr, " -v Verbose.\n");
1039 fprintf(stderr, " -W gen Generator to use for generating DH-GEX moduli.\n");
1040 fprintf(stderr, " -y Read private key file and print public key.\n");
Darren Tucker019cefe2003-08-02 22:40:07 +10001041
Damien Miller95def091999-11-25 00:26:21 +11001042 exit(1);
Damien Miller431f66b1999-11-21 18:31:57 +11001043}
1044
Damien Miller95def091999-11-25 00:26:21 +11001045/*
1046 * Main program for key management.
1047 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001048int
Damien Millerdf8b7db2007-01-05 16:22:57 +11001049main(int argc, char **argv)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001050{
Damien Millera41c8b12002-01-22 23:05:08 +11001051 char dotsshdir[MAXPATHLEN], comment[1024], *passphrase1, *passphrase2;
Tim Rice2e0e38e2003-09-08 16:11:33 -07001052 char out_file[MAXPATHLEN], *reader_id = NULL;
Damien Miller4b42d7f2005-03-01 21:48:35 +11001053 char *rr_hostname = NULL;
Ben Lindstrom5fc62702001-03-09 18:19:24 +00001054 Key *private, *public;
Damien Miller95def091999-11-25 00:26:21 +11001055 struct passwd *pw;
Damien Miller95def091999-11-25 00:26:21 +11001056 struct stat st;
Damien Millerb089fb52005-05-26 12:16:18 +10001057 int opt, type, fd, download = 0;
Darren Tucker2db8ae62005-06-01 23:02:25 +10001058 u_int32_t memory = 0, generator_wanted = 0, trials = 100;
Darren Tucker019cefe2003-08-02 22:40:07 +10001059 int do_gen_candidates = 0, do_screen_candidates = 0;
Darren Tucker06930c72003-12-31 11:34:51 +11001060 int log_level = SYSLOG_LEVEL_INFO;
Darren Tucker019cefe2003-08-02 22:40:07 +10001061 BIGNUM *start = NULL;
Damien Miller95def091999-11-25 00:26:21 +11001062 FILE *f;
Damien Miller02e754f2005-05-26 12:19:39 +10001063 const char *errstr;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001064
Damien Miller95def091999-11-25 00:26:21 +11001065 extern int optind;
1066 extern char *optarg;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001067
Darren Tuckerce321d82005-10-03 18:11:24 +10001068 /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
1069 sanitise_stdfd();
1070
Darren Tucker9ac56e92007-01-14 10:19:59 +11001071 __progname = ssh_get_progname(argv[0]);
Damien Millerf9b625c2000-07-09 22:42:32 +10001072
Damien Millerd3a18572000-06-07 19:55:44 +10001073 SSLeay_add_all_algorithms();
Damien Millerdf8b7db2007-01-05 16:22:57 +11001074 log_init(argv[0], SYSLOG_LEVEL_INFO, SYSLOG_FACILITY_USER, 1);
Darren Tucker019cefe2003-08-02 22:40:07 +10001075
Kevin Steves3a881912002-07-20 19:05:40 +00001076 init_rng();
1077 seed_rng();
Damien Millereba71ba2000-04-29 23:57:08 +10001078
Damien Miller5428f641999-11-25 11:54:57 +11001079 /* we need this for the home * directory. */
Damien Miller95def091999-11-25 00:26:21 +11001080 pw = getpwuid(getuid());
1081 if (!pw) {
1082 printf("You don't exist, go away!\n");
1083 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001084 }
Damien Millereba71ba2000-04-29 23:57:08 +10001085 if (gethostname(hostname, sizeof(hostname)) < 0) {
1086 perror("gethostname");
1087 exit(1);
1088 }
Damien Miller5428f641999-11-25 11:54:57 +11001089
Damien Millerdf8b7db2007-01-05 16:22:57 +11001090 while ((opt = getopt(argc, argv,
Damien Miller4b42d7f2005-03-01 21:48:35 +11001091 "degiqpclBHvxXyF:b:f:t:U:D:P:N:C:r:g:R:T:G:M:S:a:W:")) != -1) {
Damien Miller95def091999-11-25 00:26:21 +11001092 switch (opt) {
1093 case 'b':
Damien Miller5f340062006-03-26 14:27:57 +11001094 bits = (u_int32_t)strtonum(optarg, 768, 32768, &errstr);
Damien Miller02e754f2005-05-26 12:19:39 +10001095 if (errstr)
1096 fatal("Bits has bad value %s (%s)",
1097 optarg, errstr);
Damien Miller95def091999-11-25 00:26:21 +11001098 break;
Damien Miller4b42d7f2005-03-01 21:48:35 +11001099 case 'F':
1100 find_host = 1;
1101 rr_hostname = optarg;
1102 break;
1103 case 'H':
1104 hash_hosts = 1;
1105 break;
1106 case 'R':
1107 delete_host = 1;
1108 rr_hostname = optarg;
1109 break;
Damien Miller95def091999-11-25 00:26:21 +11001110 case 'l':
1111 print_fingerprint = 1;
1112 break;
Ben Lindstrom8fd372b2001-03-12 03:02:17 +00001113 case 'B':
1114 print_bubblebabble = 1;
1115 break;
Damien Miller95def091999-11-25 00:26:21 +11001116 case 'p':
1117 change_passphrase = 1;
1118 break;
Damien Miller95def091999-11-25 00:26:21 +11001119 case 'c':
1120 change_comment = 1;
1121 break;
Damien Miller95def091999-11-25 00:26:21 +11001122 case 'f':
Damien Millerb089fb52005-05-26 12:16:18 +10001123 if (strlcpy(identity_file, optarg, sizeof(identity_file)) >=
1124 sizeof(identity_file))
1125 fatal("Identity filename too long");
Damien Miller95def091999-11-25 00:26:21 +11001126 have_identity = 1;
1127 break;
Damien Miller37876e92003-05-15 10:19:46 +10001128 case 'g':
1129 print_generic = 1;
1130 break;
Damien Miller95def091999-11-25 00:26:21 +11001131 case 'P':
1132 identity_passphrase = optarg;
1133 break;
Damien Miller95def091999-11-25 00:26:21 +11001134 case 'N':
1135 identity_new_passphrase = optarg;
1136 break;
Damien Miller95def091999-11-25 00:26:21 +11001137 case 'C':
1138 identity_comment = optarg;
1139 break;
Damien Miller95def091999-11-25 00:26:21 +11001140 case 'q':
1141 quiet = 1;
1142 break;
Ben Lindstrom5a707822001-04-22 17:15:46 +00001143 case 'e':
Damien Millereba71ba2000-04-29 23:57:08 +10001144 case 'x':
Ben Lindstrom5a707822001-04-22 17:15:46 +00001145 /* export key */
Damien Millereba71ba2000-04-29 23:57:08 +10001146 convert_to_ssh2 = 1;
1147 break;
Ben Lindstrom5a707822001-04-22 17:15:46 +00001148 case 'i':
Damien Millereba71ba2000-04-29 23:57:08 +10001149 case 'X':
Ben Lindstrom5a707822001-04-22 17:15:46 +00001150 /* import key */
Damien Millereba71ba2000-04-29 23:57:08 +10001151 convert_from_ssh2 = 1;
1152 break;
Damien Millereba71ba2000-04-29 23:57:08 +10001153 case 'y':
1154 print_public = 1;
1155 break;
Damien Millereba71ba2000-04-29 23:57:08 +10001156 case 'd':
Damien Miller0bc1bd82000-11-13 22:57:25 +11001157 key_type_name = "dsa";
Damien Millereba71ba2000-04-29 23:57:08 +10001158 break;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001159 case 't':
1160 key_type_name = optarg;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001161 break;
Ben Lindstrom8282d6a2001-08-06 21:44:05 +00001162 case 'D':
1163 download = 1;
Damien Miller90967402006-03-26 14:07:26 +11001164 /*FALLTHROUGH*/
Ben Lindstromf19578c2001-08-06 21:46:54 +00001165 case 'U':
Ben Lindstrom8282d6a2001-08-06 21:44:05 +00001166 reader_id = optarg;
Ben Lindstromcd392282001-07-04 03:44:03 +00001167 break;
Darren Tucker06930c72003-12-31 11:34:51 +11001168 case 'v':
1169 if (log_level == SYSLOG_LEVEL_INFO)
1170 log_level = SYSLOG_LEVEL_DEBUG1;
1171 else {
Darren Tuckerfc959702004-07-17 16:12:08 +10001172 if (log_level >= SYSLOG_LEVEL_DEBUG1 &&
Darren Tucker06930c72003-12-31 11:34:51 +11001173 log_level < SYSLOG_LEVEL_DEBUG3)
1174 log_level++;
1175 }
1176 break;
Damien Miller37876e92003-05-15 10:19:46 +10001177 case 'r':
Damien Miller4b42d7f2005-03-01 21:48:35 +11001178 rr_hostname = optarg;
Damien Miller37876e92003-05-15 10:19:46 +10001179 break;
Darren Tucker019cefe2003-08-02 22:40:07 +10001180 case 'W':
Damien Miller5f340062006-03-26 14:27:57 +11001181 generator_wanted = (u_int32_t)strtonum(optarg, 1,
1182 UINT_MAX, &errstr);
Damien Millerb089fb52005-05-26 12:16:18 +10001183 if (errstr)
1184 fatal("Desired generator has bad value: %s (%s)",
1185 optarg, errstr);
Darren Tucker019cefe2003-08-02 22:40:07 +10001186 break;
1187 case 'a':
Damien Miller5f340062006-03-26 14:27:57 +11001188 trials = (u_int32_t)strtonum(optarg, 1, UINT_MAX, &errstr);
Damien Millerb089fb52005-05-26 12:16:18 +10001189 if (errstr)
1190 fatal("Invalid number of trials: %s (%s)",
1191 optarg, errstr);
Darren Tucker019cefe2003-08-02 22:40:07 +10001192 break;
1193 case 'M':
Damien Miller5f340062006-03-26 14:27:57 +11001194 memory = (u_int32_t)strtonum(optarg, 1, UINT_MAX, &errstr);
Damien Millerb089fb52005-05-26 12:16:18 +10001195 if (errstr) {
1196 fatal("Memory limit is %s: %s", errstr, optarg);
1197 }
Darren Tucker019cefe2003-08-02 22:40:07 +10001198 break;
1199 case 'G':
1200 do_gen_candidates = 1;
Damien Millerb089fb52005-05-26 12:16:18 +10001201 if (strlcpy(out_file, optarg, sizeof(out_file)) >=
1202 sizeof(out_file))
1203 fatal("Output filename too long");
Darren Tucker019cefe2003-08-02 22:40:07 +10001204 break;
1205 case 'T':
1206 do_screen_candidates = 1;
Damien Millerb089fb52005-05-26 12:16:18 +10001207 if (strlcpy(out_file, optarg, sizeof(out_file)) >=
1208 sizeof(out_file))
1209 fatal("Output filename too long");
Darren Tucker019cefe2003-08-02 22:40:07 +10001210 break;
1211 case 'S':
1212 /* XXX - also compare length against bits */
1213 if (BN_hex2bn(&start, optarg) == 0)
1214 fatal("Invalid start point.");
1215 break;
Damien Miller95def091999-11-25 00:26:21 +11001216 case '?':
1217 default:
1218 usage();
1219 }
1220 }
Darren Tucker06930c72003-12-31 11:34:51 +11001221
1222 /* reinit */
Damien Millerdf8b7db2007-01-05 16:22:57 +11001223 log_init(argv[0], log_level, SYSLOG_FACILITY_USER, 1);
Darren Tucker06930c72003-12-31 11:34:51 +11001224
Damien Millerdf8b7db2007-01-05 16:22:57 +11001225 if (optind < argc) {
Damien Miller95def091999-11-25 00:26:21 +11001226 printf("Too many arguments.\n");
1227 usage();
1228 }
1229 if (change_passphrase && change_comment) {
1230 printf("Can only have one of -p and -c.\n");
1231 usage();
1232 }
Damien Miller4b42d7f2005-03-01 21:48:35 +11001233 if (delete_host || hash_hosts || find_host)
1234 do_known_hosts(pw, rr_hostname);
Ben Lindstrom8fd372b2001-03-12 03:02:17 +00001235 if (print_fingerprint || print_bubblebabble)
Damien Miller95def091999-11-25 00:26:21 +11001236 do_fingerprint(pw);
Damien Miller95def091999-11-25 00:26:21 +11001237 if (change_passphrase)
1238 do_change_passphrase(pw);
Damien Miller4a10d2e2002-03-11 22:53:29 +11001239 if (change_comment)
1240 do_change_comment(pw);
Kevin Steves3a881912002-07-20 19:05:40 +00001241 if (convert_to_ssh2)
1242 do_convert_to_ssh2(pw);
1243 if (convert_from_ssh2)
1244 do_convert_from_ssh2(pw);
Damien Millereba71ba2000-04-29 23:57:08 +10001245 if (print_public)
1246 do_print_public(pw);
Damien Miller4b42d7f2005-03-01 21:48:35 +11001247 if (rr_hostname != NULL) {
Damien Millercb314822006-03-26 13:48:01 +11001248 unsigned int n = 0;
1249
1250 if (have_identity) {
1251 n = do_print_resource_record(pw,
1252 identity_file, rr_hostname);
1253 if (n == 0) {
1254 perror(identity_file);
1255 exit(1);
1256 }
1257 exit(0);
1258 } else {
1259
1260 n += do_print_resource_record(pw,
1261 _PATH_HOST_RSA_KEY_FILE, rr_hostname);
1262 n += do_print_resource_record(pw,
1263 _PATH_HOST_DSA_KEY_FILE, rr_hostname);
1264
1265 if (n == 0)
1266 fatal("no keys found.");
1267 exit(0);
1268 }
Damien Miller37876e92003-05-15 10:19:46 +10001269 }
Ben Lindstrom8282d6a2001-08-06 21:44:05 +00001270 if (reader_id != NULL) {
Ben Lindstrom6818bfb2001-08-06 21:40:04 +00001271#ifdef SMARTCARD
Ben Lindstrom8282d6a2001-08-06 21:44:05 +00001272 if (download)
1273 do_download(pw, reader_id);
1274 else
1275 do_upload(pw, reader_id);
Ben Lindstromffce1472001-08-06 21:57:31 +00001276#else /* SMARTCARD */
Ben Lindstrom6818bfb2001-08-06 21:40:04 +00001277 fatal("no support for smartcards.");
Ben Lindstromffce1472001-08-06 21:57:31 +00001278#endif /* SMARTCARD */
Ben Lindstrom8282d6a2001-08-06 21:44:05 +00001279 }
Damien Miller95def091999-11-25 00:26:21 +11001280
Darren Tucker019cefe2003-08-02 22:40:07 +10001281 if (do_gen_candidates) {
1282 FILE *out = fopen(out_file, "w");
Damien Miller787b2ec2003-11-21 23:56:47 +11001283
Darren Tucker019cefe2003-08-02 22:40:07 +10001284 if (out == NULL) {
1285 error("Couldn't open modulus candidate file \"%s\": %s",
1286 out_file, strerror(errno));
1287 return (1);
1288 }
Damien Miller3f54a9f2005-11-05 14:52:18 +11001289 if (bits == 0)
1290 bits = DEFAULT_BITS;
Darren Tucker019cefe2003-08-02 22:40:07 +10001291 if (gen_candidates(out, memory, bits, start) != 0)
Damien Miller15d72a02005-11-05 15:07:33 +11001292 fatal("modulus candidate generation failed");
Darren Tucker019cefe2003-08-02 22:40:07 +10001293
1294 return (0);
1295 }
1296
1297 if (do_screen_candidates) {
1298 FILE *in;
1299 FILE *out = fopen(out_file, "w");
1300
1301 if (have_identity && strcmp(identity_file, "-") != 0) {
1302 if ((in = fopen(identity_file, "r")) == NULL) {
1303 fatal("Couldn't open modulus candidate "
Damien Millera8e06ce2003-11-21 23:48:55 +11001304 "file \"%s\": %s", identity_file,
Darren Tucker019cefe2003-08-02 22:40:07 +10001305 strerror(errno));
1306 }
1307 } else
1308 in = stdin;
1309
1310 if (out == NULL) {
1311 fatal("Couldn't open moduli file \"%s\": %s",
1312 out_file, strerror(errno));
1313 }
1314 if (prime_test(in, out, trials, generator_wanted) != 0)
Damien Miller15d72a02005-11-05 15:07:33 +11001315 fatal("modulus screening failed");
Darren Tuckerf4220e62003-08-21 16:44:07 +10001316 return (0);
Darren Tucker019cefe2003-08-02 22:40:07 +10001317 }
1318
Damien Miller95def091999-11-25 00:26:21 +11001319 arc4random_stir();
1320
Damien Millerf14be5c2005-11-05 15:15:49 +11001321 if (key_type_name == NULL)
1322 key_type_name = "rsa";
1323
Damien Millere39cacc2000-11-29 12:18:44 +11001324 type = key_type_from_name(key_type_name);
1325 if (type == KEY_UNSPEC) {
1326 fprintf(stderr, "unknown key type %s\n", key_type_name);
1327 exit(1);
Damien Millereba71ba2000-04-29 23:57:08 +10001328 }
Damien Miller3f54a9f2005-11-05 14:52:18 +11001329 if (bits == 0)
1330 bits = (type == KEY_DSA) ? DEFAULT_BITS_DSA : DEFAULT_BITS;
Tim Rice660c3402005-11-28 17:45:32 -08001331 if (type == KEY_DSA && bits != 1024)
1332 fatal("DSA keys must be 1024 bits");
Darren Tucker3af2ac52005-11-29 13:10:24 +11001333 if (!quiet)
1334 printf("Generating public/private %s key pair.\n", key_type_name);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001335 private = key_generate(type, bits);
1336 if (private == NULL) {
1337 fprintf(stderr, "key_generate failed");
1338 exit(1);
1339 }
1340 public = key_from_private(private);
Damien Miller95def091999-11-25 00:26:21 +11001341
1342 if (!have_identity)
1343 ask_filename(pw, "Enter file in which to save the key");
1344
Damien Miller788f2122005-11-05 15:14:59 +11001345 /* Create ~/.ssh directory if it doesn't already exist. */
Ben Lindstrom226cfa02001-01-22 05:34:40 +00001346 snprintf(dotsshdir, sizeof dotsshdir, "%s/%s", pw->pw_dir, _PATH_SSH_USER_DIR);
Damien Miller95def091999-11-25 00:26:21 +11001347 if (strstr(identity_file, dotsshdir) != NULL &&
1348 stat(dotsshdir, &st) < 0) {
Damien Millerbe484b52000-07-15 14:14:16 +10001349 if (mkdir(dotsshdir, 0700) < 0)
Damien Miller95def091999-11-25 00:26:21 +11001350 error("Could not create directory '%s'.", dotsshdir);
1351 else if (!quiet)
1352 printf("Created directory '%s'.\n", dotsshdir);
1353 }
1354 /* If the file already exists, ask the user to confirm. */
1355 if (stat(identity_file, &st) >= 0) {
1356 char yesno[3];
1357 printf("%s already exists.\n", identity_file);
1358 printf("Overwrite (y/n)? ");
1359 fflush(stdout);
1360 if (fgets(yesno, sizeof(yesno), stdin) == NULL)
1361 exit(1);
1362 if (yesno[0] != 'y' && yesno[0] != 'Y')
1363 exit(1);
1364 }
1365 /* Ask for a passphrase (twice). */
1366 if (identity_passphrase)
1367 passphrase1 = xstrdup(identity_passphrase);
1368 else if (identity_new_passphrase)
1369 passphrase1 = xstrdup(identity_new_passphrase);
1370 else {
1371passphrase_again:
1372 passphrase1 =
Ben Lindstrom949974b2001-06-25 05:20:31 +00001373 read_passphrase("Enter passphrase (empty for no "
1374 "passphrase): ", RP_ALLOW_STDIN);
1375 passphrase2 = read_passphrase("Enter same passphrase again: ",
1376 RP_ALLOW_STDIN);
Damien Miller95def091999-11-25 00:26:21 +11001377 if (strcmp(passphrase1, passphrase2) != 0) {
Ben Lindstrom949974b2001-06-25 05:20:31 +00001378 /*
1379 * The passphrases do not match. Clear them and
1380 * retry.
1381 */
Damien Miller95def091999-11-25 00:26:21 +11001382 memset(passphrase1, 0, strlen(passphrase1));
1383 memset(passphrase2, 0, strlen(passphrase2));
1384 xfree(passphrase1);
1385 xfree(passphrase2);
1386 printf("Passphrases do not match. Try again.\n");
1387 goto passphrase_again;
1388 }
1389 /* Clear the other copy of the passphrase. */
1390 memset(passphrase2, 0, strlen(passphrase2));
1391 xfree(passphrase2);
1392 }
1393
Damien Miller95def091999-11-25 00:26:21 +11001394 if (identity_comment) {
1395 strlcpy(comment, identity_comment, sizeof(comment));
1396 } else {
Damien Miller4af51302000-04-16 11:18:38 +10001397 /* Create default commend field for the passphrase. */
Damien Miller95def091999-11-25 00:26:21 +11001398 snprintf(comment, sizeof comment, "%s@%s", pw->pw_name, hostname);
1399 }
1400
1401 /* Save the key with the given passphrase and comment. */
Ben Lindstromd0fca422001-03-26 13:44:06 +00001402 if (!key_save_private(private, identity_file, passphrase1, comment)) {
Ben Lindstrom15f33862001-04-16 02:00:02 +00001403 printf("Saving the key failed: %s.\n", identity_file);
Damien Miller95def091999-11-25 00:26:21 +11001404 memset(passphrase1, 0, strlen(passphrase1));
1405 xfree(passphrase1);
1406 exit(1);
1407 }
1408 /* Clear the passphrase. */
1409 memset(passphrase1, 0, strlen(passphrase1));
1410 xfree(passphrase1);
1411
1412 /* Clear the private key and the random number generator. */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001413 key_free(private);
Damien Miller95def091999-11-25 00:26:21 +11001414 arc4random_stir();
1415
1416 if (!quiet)
1417 printf("Your identification has been saved in %s.\n", identity_file);
1418
Damien Miller95def091999-11-25 00:26:21 +11001419 strlcat(identity_file, ".pub", sizeof(identity_file));
Ben Lindstrom5fc62702001-03-09 18:19:24 +00001420 fd = open(identity_file, O_WRONLY | O_CREAT | O_TRUNC, 0644);
1421 if (fd == -1) {
Damien Miller95def091999-11-25 00:26:21 +11001422 printf("Could not save your public key in %s\n", identity_file);
1423 exit(1);
1424 }
Ben Lindstrom5fc62702001-03-09 18:19:24 +00001425 f = fdopen(fd, "w");
1426 if (f == NULL) {
1427 printf("fdopen %s failed", identity_file);
1428 exit(1);
1429 }
Damien Millereba71ba2000-04-29 23:57:08 +10001430 if (!key_write(public, f))
1431 fprintf(stderr, "write key failed");
1432 fprintf(f, " %s\n", comment);
Damien Miller95def091999-11-25 00:26:21 +11001433 fclose(f);
1434
1435 if (!quiet) {
Ben Lindstromcfccef92001-03-13 04:57:58 +00001436 char *fp = key_fingerprint(public, SSH_FP_MD5, SSH_FP_HEX);
Damien Millereba71ba2000-04-29 23:57:08 +10001437 printf("Your public key has been saved in %s.\n",
1438 identity_file);
Damien Miller95def091999-11-25 00:26:21 +11001439 printf("The key fingerprint is:\n");
Ben Lindstromcfccef92001-03-13 04:57:58 +00001440 printf("%s %s\n", fp, comment);
1441 xfree(fp);
Damien Miller95def091999-11-25 00:26:21 +11001442 }
Damien Millereba71ba2000-04-29 23:57:08 +10001443
1444 key_free(public);
Damien Miller95def091999-11-25 00:26:21 +11001445 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001446}