blob: 3bbc7cbb883a5fbff331f9666cdf2a49d3bde5d8 [file] [log] [blame]
Damien Miller5be9d9e2013-12-07 11:24:01 +11001/* $OpenBSD: authfile.c,v 1.100 2013/12/06 13:39:49 markus Exp $ */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002/*
Damien Miller95def091999-11-25 00:26:21 +11003 * Author: Tatu Ylonen <ylo@cs.hut.fi>
Damien Miller95def091999-11-25 00:26:21 +11004 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5 * All rights reserved
Damien Miller95def091999-11-25 00:26:21 +11006 * This file contains functions for reading and writing identity files, and
7 * for reading the passphrase from the user.
Damien Miller4af51302000-04-16 11:18:38 +10008 *
Damien Millere4340be2000-09-16 13:29:08 +11009 * As far as I am concerned, the code I have written for this software
10 * can be used freely for any purpose. Any derived versions of this
11 * software must be clearly marked as such, and if the derived work is
12 * incompatible with the protocol description in the RFC file, it must be
13 * called by a name other than "ssh" or "Secure Shell".
14 *
15 *
Damien Millerbcd00ab2013-12-07 10:41:55 +110016 * Copyright (c) 2000, 2013 Markus Friedl. All rights reserved.
Damien Millere4340be2000-09-16 13:29:08 +110017 *
18 * Redistribution and use in source and binary forms, with or without
19 * modification, are permitted provided that the following conditions
20 * are met:
21 * 1. Redistributions of source code must retain the above copyright
22 * notice, this list of conditions and the following disclaimer.
23 * 2. Redistributions in binary form must reproduce the above copyright
24 * notice, this list of conditions and the following disclaimer in the
25 * documentation and/or other materials provided with the distribution.
26 *
27 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
28 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
29 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
30 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
31 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
32 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
33 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
34 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
35 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
36 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Damien Miller95def091999-11-25 00:26:21 +110037 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100038
39#include "includes.h"
Damien Millerf17883e2006-03-15 11:45:54 +110040
41#include <sys/types.h>
42#include <sys/stat.h>
Damien Miller8dbffe72006-08-05 11:02:17 +100043#include <sys/param.h>
Damien Millerd7834352006-08-05 12:39:39 +100044#include <sys/uio.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100045
Damien Miller0bc1bd82000-11-13 22:57:25 +110046#include <openssl/err.h>
Damien Millereba71ba2000-04-29 23:57:08 +100047#include <openssl/evp.h>
Ben Lindstrom226cfa02001-01-22 05:34:40 +000048#include <openssl/pem.h>
Damien Millereba71ba2000-04-29 23:57:08 +100049
Darren Tuckere89ed1c2009-11-05 20:43:16 +110050/* compatibility with old or broken OpenSSL versions */
51#include "openbsd-compat/openssl-compat.h"
52
Damien Miller5be9d9e2013-12-07 11:24:01 +110053#include "crypto_api.h"
54
Darren Tuckerba724052006-07-12 22:24:22 +100055#include <errno.h>
Damien Miller57cf6382006-07-10 21:13:46 +100056#include <fcntl.h>
Damien Millerded319c2006-09-01 15:38:36 +100057#include <stdarg.h>
Damien Millera7a73ee2006-08-05 11:37:59 +100058#include <stdio.h>
Damien Millere7a1e5c2006-08-05 11:34:19 +100059#include <stdlib.h>
Damien Millere3476ed2006-07-24 14:13:33 +100060#include <string.h>
Damien Millere6b3b612006-07-24 14:01:23 +100061#include <unistd.h>
Damien Miller57cf6382006-07-10 21:13:46 +100062
Damien Miller42608282013-12-07 11:38:03 +110063#ifdef HAVE_UTIL_H
Damien Millerbcd00ab2013-12-07 10:41:55 +110064#include <util.h>
Damien Miller42608282013-12-07 11:38:03 +110065#endif
Damien Millerbcd00ab2013-12-07 10:41:55 +110066
Damien Millerd4a8b7e1999-10-27 13:42:43 +100067#include "xmalloc.h"
Damien Millerd7834352006-08-05 12:39:39 +100068#include "cipher.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100069#include "buffer.h"
Damien Millereba71ba2000-04-29 23:57:08 +100070#include "key.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000071#include "ssh.h"
72#include "log.h"
Ben Lindstrom31ca54a2001-02-09 02:11:24 +000073#include "authfile.h"
Damien Miller040b64f2002-01-22 23:10:04 +110074#include "rsa.h"
Darren Tuckerf0f90982004-12-11 13:39:50 +110075#include "misc.h"
Damien Millereccb9de2005-06-17 12:59:34 +100076#include "atomicio.h"
Damien Millerbcd00ab2013-12-07 10:41:55 +110077#include "uuencode.h"
78
79/* openssh private key file format */
80#define MARK_BEGIN "-----BEGIN OPENSSH PRIVATE KEY-----\n"
81#define MARK_END "-----END OPENSSH PRIVATE KEY-----\n"
82#define KDFNAME "bcrypt"
83#define AUTH_MAGIC "openssh-key-v1"
84#define SALT_LEN 16
85#define DEFAULT_CIPHERNAME "aes256-cbc"
86#define DEFAULT_ROUNDS 16
Damien Millerd4a8b7e1999-10-27 13:42:43 +100087
Damien Miller2ce12ef2011-05-05 14:17:18 +100088#define MAX_KEY_FILE_SIZE (1024 * 1024)
89
Ben Lindstromd0fca422001-03-26 13:44:06 +000090/* Version identification string for SSH v1 identity files. */
Ben Lindstrom1170d712001-01-29 07:51:26 +000091static const char authfile_id_string[] =
92 "SSH PRIVATE KEY FILE FORMAT 1.1\n";
Damien Millerd4a8b7e1999-10-27 13:42:43 +100093
Damien Millerbcd00ab2013-12-07 10:41:55 +110094static int
95key_private_to_blob2(Key *prv, Buffer *blob, const char *passphrase,
96 const char *comment, const char *ciphername, int rounds)
97{
98 u_char *key, *cp, salt[SALT_LEN];
99 size_t keylen, ivlen, blocksize, authlen;
100 u_int len, check;
101 int i, n;
102 const Cipher *c;
103 Buffer encoded, b, kdf;
104 CipherContext ctx;
105 const char *kdfname = KDFNAME;
106
107 if (rounds <= 0)
108 rounds = DEFAULT_ROUNDS;
109 if (passphrase == NULL || !strlen(passphrase)) {
110 ciphername = "none";
111 kdfname = "none";
112 } else if (ciphername == NULL)
113 ciphername = DEFAULT_CIPHERNAME;
114 else if (cipher_number(ciphername) != SSH_CIPHER_SSH2)
115 fatal("invalid cipher");
116
117 if ((c = cipher_by_name(ciphername)) == NULL)
118 fatal("unknown cipher name");
119 buffer_init(&kdf);
120 blocksize = cipher_blocksize(c);
121 keylen = cipher_keylen(c);
122 ivlen = cipher_ivlen(c);
123 authlen = cipher_authlen(c);
124 key = xcalloc(1, keylen + ivlen);
125 if (strcmp(kdfname, "none") != 0) {
126 arc4random_buf(salt, SALT_LEN);
127 if (bcrypt_pbkdf(passphrase, strlen(passphrase),
128 salt, SALT_LEN, key, keylen + ivlen, rounds) < 0)
129 fatal("bcrypt_pbkdf failed");
130 buffer_put_string(&kdf, salt, SALT_LEN);
131 buffer_put_int(&kdf, rounds);
132 }
133 cipher_init(&ctx, c, key, keylen, key + keylen , ivlen, 1);
134 memset(key, 0, keylen + ivlen);
135 free(key);
136
137 buffer_init(&encoded);
138 buffer_append(&encoded, AUTH_MAGIC, sizeof(AUTH_MAGIC));
139 buffer_put_cstring(&encoded, ciphername);
140 buffer_put_cstring(&encoded, kdfname);
141 buffer_put_string(&encoded, buffer_ptr(&kdf), buffer_len(&kdf));
142 buffer_put_int(&encoded, 1); /* number of keys */
143 key_to_blob(prv, &cp, &len); /* public key */
144 buffer_put_string(&encoded, cp, len);
145
146 memset(cp, 0, len);
147 free(cp);
148
149 buffer_free(&kdf);
150
151 /* set up the buffer that will be encrypted */
152 buffer_init(&b);
153
154 /* Random check bytes */
155 check = arc4random();
156 buffer_put_int(&b, check);
157 buffer_put_int(&b, check);
158
159 /* append private key and comment*/
160 key_private_serialize(prv, &b);
161 buffer_put_cstring(&b, comment);
162
163 /* padding */
164 i = 0;
165 while (buffer_len(&b) % blocksize)
166 buffer_put_char(&b, ++i & 0xff);
167
168 /* length */
169 buffer_put_int(&encoded, buffer_len(&b));
170
171 /* encrypt */
172 cp = buffer_append_space(&encoded, buffer_len(&b) + authlen);
173 if (cipher_crypt(&ctx, 0, cp, buffer_ptr(&b), buffer_len(&b), 0,
174 authlen) != 0)
175 fatal("%s: cipher_crypt failed", __func__);
176 buffer_free(&b);
177 cipher_cleanup(&ctx);
178
179 /* uuencode */
180 len = 2 * buffer_len(&encoded);
181 cp = xmalloc(len);
182 n = uuencode(buffer_ptr(&encoded), buffer_len(&encoded),
183 (char *)cp, len);
184 if (n < 0)
185 fatal("%s: uuencode", __func__);
186
187 buffer_clear(blob);
188 buffer_append(blob, MARK_BEGIN, sizeof(MARK_BEGIN) - 1);
189 for (i = 0; i < n; i++) {
190 buffer_put_char(blob, cp[i]);
191 if (i % 70 == 69)
192 buffer_put_char(blob, '\n');
193 }
194 if (i % 70 != 69)
195 buffer_put_char(blob, '\n');
196 buffer_append(blob, MARK_END, sizeof(MARK_END) - 1);
197 free(cp);
198
199 return buffer_len(blob);
200}
201
202static Key *
203key_parse_private2(Buffer *blob, int type, const char *passphrase,
204 char **commentp)
205{
206 u_char *key = NULL, *cp, *salt = NULL, pad, last;
207 char *comment = NULL, *ciphername = NULL, *kdfname = NULL, *kdfp;
208 u_int keylen = 0, ivlen, blocksize, slen, klen, len, rounds, nkeys;
209 u_int check1, check2, m1len, m2len;
210 size_t authlen;
211 const Cipher *c;
212 Buffer b, encoded, copy, kdf;
213 CipherContext ctx;
214 Key *k = NULL;
215 int dlen, ret, i;
216
217 buffer_init(&b);
218 buffer_init(&kdf);
219 buffer_init(&encoded);
220 buffer_init(&copy);
221
222 /* uudecode */
223 m1len = sizeof(MARK_BEGIN) - 1;
224 m2len = sizeof(MARK_END) - 1;
225 cp = buffer_ptr(blob);
226 len = buffer_len(blob);
227 if (len < m1len || memcmp(cp, MARK_BEGIN, m1len)) {
228 debug("%s: missing begin marker", __func__);
229 goto out;
230 }
231 cp += m1len;
232 len -= m1len;
233 while (len) {
234 if (*cp != '\n' && *cp != '\r')
235 buffer_put_char(&encoded, *cp);
236 last = *cp;
237 len--;
238 cp++;
239 if (last == '\n') {
240 if (len >= m2len && !memcmp(cp, MARK_END, m2len)) {
241 buffer_put_char(&encoded, '\0');
242 break;
243 }
244 }
245 }
246 if (!len) {
247 debug("%s: no end marker", __func__);
248 goto out;
249 }
250 len = buffer_len(&encoded);
251 if ((cp = buffer_append_space(&copy, len)) == NULL) {
252 error("%s: buffer_append_space", __func__);
253 goto out;
254 }
255 if ((dlen = uudecode(buffer_ptr(&encoded), cp, len)) < 0) {
256 error("%s: uudecode failed", __func__);
257 goto out;
258 }
259 if ((u_int)dlen > len) {
260 error("%s: crazy uudecode length %d > %u", __func__, dlen, len);
261 goto out;
262 }
263 buffer_consume_end(&copy, len - dlen);
264 if (buffer_len(&copy) < sizeof(AUTH_MAGIC) ||
265 memcmp(buffer_ptr(&copy), AUTH_MAGIC, sizeof(AUTH_MAGIC))) {
266 error("%s: bad magic", __func__);
267 goto out;
268 }
269 buffer_consume(&copy, sizeof(AUTH_MAGIC));
270
271 ciphername = buffer_get_cstring_ret(&copy, NULL);
272 if (ciphername == NULL ||
273 (c = cipher_by_name(ciphername)) == NULL) {
274 error("%s: unknown cipher name", __func__);
275 goto out;
276 }
277 if ((passphrase == NULL || !strlen(passphrase)) &&
278 strcmp(ciphername, "none") != 0) {
279 /* passphrase required */
280 goto out;
281 }
282 kdfname = buffer_get_cstring_ret(&copy, NULL);
283 if (kdfname == NULL ||
284 (!strcmp(kdfname, "none") && !strcmp(kdfname, "bcrypt"))) {
285 error("%s: unknown kdf name", __func__);
286 goto out;
287 }
288 if (!strcmp(kdfname, "none") && strcmp(ciphername, "none") != 0) {
289 error("%s: cipher %s requires kdf", __func__, ciphername);
290 goto out;
291 }
292 /* kdf options */
293 kdfp = buffer_get_string_ptr_ret(&copy, &klen);
294 if (kdfp == NULL) {
295 error("%s: kdf options not set", __func__);
296 goto out;
297 }
298 if (klen > 0) {
299 if ((cp = buffer_append_space(&kdf, klen)) == NULL) {
300 error("%s: kdf alloc failed", __func__);
301 goto out;
302 }
303 memcpy(cp, kdfp, klen);
304 }
305 /* number of keys */
306 if (buffer_get_int_ret(&nkeys, &copy) < 0) {
307 error("%s: key counter missing", __func__);
308 goto out;
309 }
310 if (nkeys != 1) {
311 error("%s: only one key supported", __func__);
312 goto out;
313 }
314 /* pubkey */
315 if ((cp = buffer_get_string_ret(&copy, &len)) == NULL) {
316 error("%s: pubkey not found", __func__);
317 goto out;
318 }
319 free(cp); /* XXX check pubkey against decrypted private key */
320
321 /* size of encrypted key blob */
322 len = buffer_get_int(&copy);
323 blocksize = cipher_blocksize(c);
324 authlen = cipher_authlen(c);
325 if (len < blocksize) {
326 error("%s: encrypted data too small", __func__);
327 goto out;
328 }
329 if (len % blocksize) {
330 error("%s: length not multiple of blocksize", __func__);
331 goto out;
332 }
333
334 /* setup key */
335 keylen = cipher_keylen(c);
336 ivlen = cipher_ivlen(c);
337 key = xcalloc(1, keylen + ivlen);
338 if (!strcmp(kdfname, "bcrypt")) {
339 if ((salt = buffer_get_string_ret(&kdf, &slen)) == NULL) {
340 error("%s: salt not set", __func__);
341 goto out;
342 }
343 if (buffer_get_int_ret(&rounds, &kdf) < 0) {
344 error("%s: rounds not set", __func__);
345 goto out;
346 }
347 if (bcrypt_pbkdf(passphrase, strlen(passphrase), salt, slen,
348 key, keylen + ivlen, rounds) < 0) {
349 error("%s: bcrypt_pbkdf failed", __func__);
350 goto out;
351 }
352 }
353
354 cp = buffer_append_space(&b, len);
355 cipher_init(&ctx, c, key, keylen, key + keylen, ivlen, 0);
356 ret = cipher_crypt(&ctx, 0, cp, buffer_ptr(&copy), len, 0, authlen);
357 cipher_cleanup(&ctx);
358 buffer_consume(&copy, len);
359
360 /* fail silently on decryption errors */
361 if (ret != 0) {
362 debug("%s: decrypt failed", __func__);
363 goto out;
364 }
365
366 if (buffer_len(&copy) != 0) {
367 error("%s: key blob has trailing data (len = %u)", __func__,
368 buffer_len(&copy));
369 goto out;
370 }
371
372 /* check bytes */
373 if (buffer_get_int_ret(&check1, &b) < 0 ||
374 buffer_get_int_ret(&check2, &b) < 0) {
375 error("check bytes missing");
376 goto out;
377 }
378 if (check1 != check2) {
379 debug("%s: decrypt failed: 0x%08x != 0x%08x", __func__,
380 check1, check2);
381 goto out;
382 }
383
384 k = key_private_deserialize(&b);
385
386 /* comment */
387 comment = buffer_get_cstring_ret(&b, NULL);
388
389 i = 0;
390 while (buffer_len(&b)) {
391 if (buffer_get_char_ret(&pad, &b) == -1 ||
392 pad != (++i & 0xff)) {
393 error("%s: bad padding", __func__);
394 key_free(k);
395 k = NULL;
396 goto out;
397 }
398 }
399
400 if (k && commentp) {
401 *commentp = comment;
402 comment = NULL;
403 }
404
405 /* XXX decode pubkey and check against private */
406 out:
407 free(ciphername);
408 free(kdfname);
409 free(salt);
410 free(comment);
411 if (key)
412 memset(key, 0, keylen + ivlen);
413 free(key);
414 buffer_free(&encoded);
415 buffer_free(&copy);
416 buffer_free(&kdf);
417 buffer_free(&b);
418 return k;
419}
420
Damien Miller5428f641999-11-25 11:54:57 +1100421/*
Damien Millera2327922010-12-01 12:01:21 +1100422 * Serialises the authentication (private) key to a blob, encrypting it with
423 * passphrase. The identification of the blob (lowest 64 bits of n) will
Damien Miller5428f641999-11-25 11:54:57 +1100424 * precede the key to provide identification of the key without needing a
425 * passphrase.
426 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000427static int
Damien Millera2327922010-12-01 12:01:21 +1100428key_private_rsa1_to_blob(Key *key, Buffer *blob, const char *passphrase,
Ben Lindstromd0fca422001-03-26 13:44:06 +0000429 const char *comment)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000430{
Damien Miller95def091999-11-25 00:26:21 +1100431 Buffer buffer, encrypted;
Damien Miller708d21c2002-01-22 23:18:15 +1100432 u_char buf[100], *cp;
Damien Millera2327922010-12-01 12:01:21 +1100433 int i, cipher_num;
Damien Miller874d77b2000-10-14 16:23:11 +1100434 CipherContext ciphercontext;
Damien Millerea111192013-04-23 19:24:32 +1000435 const Cipher *cipher;
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000436 u_int32_t rnd;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000437
Damien Miller5428f641999-11-25 11:54:57 +1100438 /*
439 * If the passphrase is empty, use SSH_CIPHER_NONE to ease converting
440 * to another cipher; otherwise use SSH_AUTHFILE_CIPHER.
441 */
Damien Miller963f6b22002-02-19 15:21:23 +1100442 cipher_num = (strcmp(passphrase, "") == 0) ?
443 SSH_CIPHER_NONE : SSH_AUTHFILE_CIPHER;
444 if ((cipher = cipher_by_number(cipher_num)) == NULL)
Damien Miller874d77b2000-10-14 16:23:11 +1100445 fatal("save_private_key_rsa: bad cipher");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000446
Damien Miller95def091999-11-25 00:26:21 +1100447 /* This buffer is used to built the secret part of the private key. */
448 buffer_init(&buffer);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000449
Damien Miller95def091999-11-25 00:26:21 +1100450 /* Put checkbytes for checking passphrase validity. */
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000451 rnd = arc4random();
452 buf[0] = rnd & 0xff;
453 buf[1] = (rnd >> 8) & 0xff;
Damien Miller95def091999-11-25 00:26:21 +1100454 buf[2] = buf[0];
455 buf[3] = buf[1];
456 buffer_append(&buffer, buf, 4);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000457
Damien Miller5428f641999-11-25 11:54:57 +1100458 /*
459 * Store the private key (n and e will not be stored because they
460 * will be stored in plain text, and storing them also in encrypted
461 * format would just give known plaintext).
462 */
Ben Lindstromd0fca422001-03-26 13:44:06 +0000463 buffer_put_bignum(&buffer, key->rsa->d);
464 buffer_put_bignum(&buffer, key->rsa->iqmp);
465 buffer_put_bignum(&buffer, key->rsa->q); /* reverse from SSL p */
466 buffer_put_bignum(&buffer, key->rsa->p); /* reverse from SSL q */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000467
Damien Miller95def091999-11-25 00:26:21 +1100468 /* Pad the part to be encrypted until its size is a multiple of 8. */
469 while (buffer_len(&buffer) % 8 != 0)
470 buffer_put_char(&buffer, 0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000471
Damien Miller95def091999-11-25 00:26:21 +1100472 /* This buffer will be used to contain the data in the file. */
473 buffer_init(&encrypted);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000474
Damien Miller95def091999-11-25 00:26:21 +1100475 /* First store keyfile id string. */
Ben Lindstrom1170d712001-01-29 07:51:26 +0000476 for (i = 0; authfile_id_string[i]; i++)
477 buffer_put_char(&encrypted, authfile_id_string[i]);
Damien Miller95def091999-11-25 00:26:21 +1100478 buffer_put_char(&encrypted, 0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000479
Damien Miller95def091999-11-25 00:26:21 +1100480 /* Store cipher type. */
Damien Miller963f6b22002-02-19 15:21:23 +1100481 buffer_put_char(&encrypted, cipher_num);
Damien Miller95def091999-11-25 00:26:21 +1100482 buffer_put_int(&encrypted, 0); /* For future extension */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000483
Damien Miller95def091999-11-25 00:26:21 +1100484 /* Store public key. This will be in plain text. */
Ben Lindstromd0fca422001-03-26 13:44:06 +0000485 buffer_put_int(&encrypted, BN_num_bits(key->rsa->n));
486 buffer_put_bignum(&encrypted, key->rsa->n);
487 buffer_put_bignum(&encrypted, key->rsa->e);
Ben Lindstrom664408d2001-06-09 01:42:01 +0000488 buffer_put_cstring(&encrypted, comment);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000489
Damien Miller95def091999-11-25 00:26:21 +1100490 /* Allocate space for the private part of the key in the buffer. */
Damien Miller5a6b4fe2001-12-21 14:56:54 +1100491 cp = buffer_append_space(&encrypted, buffer_len(&buffer));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000492
Damien Miller963f6b22002-02-19 15:21:23 +1100493 cipher_set_key_string(&ciphercontext, cipher, passphrase,
494 CIPHER_ENCRYPT);
Damien Millerbcd00ab2013-12-07 10:41:55 +1100495 if (cipher_crypt(&ciphercontext, 0, cp,
496 buffer_ptr(&buffer), buffer_len(&buffer), 0, 0) != 0)
497 fatal("%s: cipher_crypt failed", __func__);
Damien Miller963f6b22002-02-19 15:21:23 +1100498 cipher_cleanup(&ciphercontext);
Damien Miller874d77b2000-10-14 16:23:11 +1100499 memset(&ciphercontext, 0, sizeof(ciphercontext));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000500
Damien Miller95def091999-11-25 00:26:21 +1100501 /* Destroy temporary data. */
502 memset(buf, 0, sizeof(buf));
503 buffer_free(&buffer);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000504
Damien Millera2327922010-12-01 12:01:21 +1100505 buffer_append(blob, buffer_ptr(&encrypted), buffer_len(&encrypted));
Damien Miller95def091999-11-25 00:26:21 +1100506 buffer_free(&encrypted);
Damien Millera2327922010-12-01 12:01:21 +1100507
Damien Miller95def091999-11-25 00:26:21 +1100508 return 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000509}
510
Damien Millera2327922010-12-01 12:01:21 +1100511/* convert SSH v2 key in OpenSSL PEM format */
Ben Lindstrombba81212001-06-25 05:01:22 +0000512static int
Damien Millera2327922010-12-01 12:01:21 +1100513key_private_pem_to_blob(Key *key, Buffer *blob, const char *_passphrase,
Ben Lindstromd0fca422001-03-26 13:44:06 +0000514 const char *comment)
Damien Millereba71ba2000-04-29 23:57:08 +1000515{
Damien Miller0bc1bd82000-11-13 22:57:25 +1100516 int success = 0;
Damien Millera2327922010-12-01 12:01:21 +1100517 int blen, len = strlen(_passphrase);
Ben Lindstrom90fd8142002-02-26 18:09:42 +0000518 u_char *passphrase = (len > 0) ? (u_char *)_passphrase : NULL;
Darren Tuckerdf6578b2009-11-07 16:03:14 +1100519#if (OPENSSL_VERSION_NUMBER < 0x00907000L)
520 const EVP_CIPHER *cipher = (len > 0) ? EVP_des_ede3_cbc() : NULL;
521#else
Darren Tuckerdfb9b712009-10-24 11:46:43 +1100522 const EVP_CIPHER *cipher = (len > 0) ? EVP_aes_128_cbc() : NULL;
Darren Tuckerdf6578b2009-11-07 16:03:14 +1100523#endif
Damien Millera2327922010-12-01 12:01:21 +1100524 const u_char *bptr;
525 BIO *bio;
Damien Millereba71ba2000-04-29 23:57:08 +1000526
527 if (len > 0 && len <= 4) {
Ben Lindstrom15f33862001-04-16 02:00:02 +0000528 error("passphrase too short: have %d bytes, need > 4", len);
Damien Millereba71ba2000-04-29 23:57:08 +1000529 return 0;
530 }
Damien Millera2327922010-12-01 12:01:21 +1100531 if ((bio = BIO_new(BIO_s_mem())) == NULL) {
532 error("%s: BIO_new failed", __func__);
Damien Millereba71ba2000-04-29 23:57:08 +1000533 return 0;
534 }
Damien Miller0bc1bd82000-11-13 22:57:25 +1100535 switch (key->type) {
Ben Lindstromc1116602001-03-29 00:28:37 +0000536 case KEY_DSA:
Damien Millera2327922010-12-01 12:01:21 +1100537 success = PEM_write_bio_DSAPrivateKey(bio, key->dsa,
Ben Lindstromc1116602001-03-29 00:28:37 +0000538 cipher, passphrase, len, NULL, NULL);
539 break;
Damien Miller6af914a2010-09-10 11:39:26 +1000540#ifdef OPENSSL_HAS_ECC
Damien Millereb8b60e2010-08-31 22:41:14 +1000541 case KEY_ECDSA:
Damien Millera2327922010-12-01 12:01:21 +1100542 success = PEM_write_bio_ECPrivateKey(bio, key->ecdsa,
Damien Millereb8b60e2010-08-31 22:41:14 +1000543 cipher, passphrase, len, NULL, NULL);
544 break;
Damien Miller6af914a2010-09-10 11:39:26 +1000545#endif
Ben Lindstromc1116602001-03-29 00:28:37 +0000546 case KEY_RSA:
Damien Millera2327922010-12-01 12:01:21 +1100547 success = PEM_write_bio_RSAPrivateKey(bio, key->rsa,
Ben Lindstromc1116602001-03-29 00:28:37 +0000548 cipher, passphrase, len, NULL, NULL);
549 break;
Damien Millereba71ba2000-04-29 23:57:08 +1000550 }
Damien Millera2327922010-12-01 12:01:21 +1100551 if (success) {
552 if ((blen = BIO_get_mem_data(bio, &bptr)) <= 0)
553 success = 0;
554 else
555 buffer_append(blob, bptr, blen);
556 }
557 BIO_free(bio);
Damien Millereba71ba2000-04-29 23:57:08 +1000558 return success;
559}
560
Damien Millera2327922010-12-01 12:01:21 +1100561/* Save a key blob to a file */
562static int
563key_save_private_blob(Buffer *keybuf, const char *filename)
564{
565 int fd;
566
567 if ((fd = open(filename, O_WRONLY | O_CREAT | O_TRUNC, 0600)) < 0) {
568 error("open %s failed: %s.", filename, strerror(errno));
569 return 0;
570 }
571 if (atomicio(vwrite, fd, buffer_ptr(keybuf),
572 buffer_len(keybuf)) != buffer_len(keybuf)) {
573 error("write to key file %s failed: %s", filename,
574 strerror(errno));
575 close(fd);
576 unlink(filename);
577 return 0;
578 }
579 close(fd);
580 return 1;
581}
582
583/* Serialise "key" to buffer "blob" */
584static int
585key_private_to_blob(Key *key, Buffer *blob, const char *passphrase,
Damien Millerbcd00ab2013-12-07 10:41:55 +1100586 const char *comment, int force_new_format, const char *new_format_cipher,
587 int new_format_rounds)
Damien Millera2327922010-12-01 12:01:21 +1100588{
589 switch (key->type) {
590 case KEY_RSA1:
591 return key_private_rsa1_to_blob(key, blob, passphrase, comment);
592 case KEY_DSA:
593 case KEY_ECDSA:
594 case KEY_RSA:
Damien Millerbcd00ab2013-12-07 10:41:55 +1100595 if (force_new_format) {
596 return key_private_to_blob2(key, blob, passphrase,
597 comment, new_format_cipher, new_format_rounds);
598 }
Damien Millera2327922010-12-01 12:01:21 +1100599 return key_private_pem_to_blob(key, blob, passphrase, comment);
Damien Miller5be9d9e2013-12-07 11:24:01 +1100600 case KEY_ED25519:
601 return key_private_to_blob2(key, blob, passphrase,
602 comment, new_format_cipher, new_format_rounds);
Damien Millera2327922010-12-01 12:01:21 +1100603 default:
604 error("%s: cannot save key type %d", __func__, key->type);
605 return 0;
606 }
607}
608
Damien Millereba71ba2000-04-29 23:57:08 +1000609int
Ben Lindstromd0fca422001-03-26 13:44:06 +0000610key_save_private(Key *key, const char *filename, const char *passphrase,
Damien Millerbcd00ab2013-12-07 10:41:55 +1100611 const char *comment, int force_new_format, const char *new_format_cipher,
612 int new_format_rounds)
Damien Millereba71ba2000-04-29 23:57:08 +1000613{
Damien Millera2327922010-12-01 12:01:21 +1100614 Buffer keyblob;
615 int success = 0;
616
617 buffer_init(&keyblob);
Damien Millerbcd00ab2013-12-07 10:41:55 +1100618 if (!key_private_to_blob(key, &keyblob, passphrase, comment,
619 force_new_format, new_format_cipher, new_format_rounds))
Damien Millera2327922010-12-01 12:01:21 +1100620 goto out;
621 if (!key_save_private_blob(&keyblob, filename))
622 goto out;
623 success = 1;
624 out:
625 buffer_free(&keyblob);
626 return success;
627}
628
629/*
630 * Parse the public, unencrypted portion of a RSA1 key.
631 */
632static Key *
633key_parse_public_rsa1(Buffer *blob, char **commentp)
634{
635 Key *pub;
Damien Millere7ac2bd2011-06-20 14:23:25 +1000636 Buffer copy;
Damien Millera2327922010-12-01 12:01:21 +1100637
638 /* Check that it is at least big enough to contain the ID string. */
639 if (buffer_len(blob) < sizeof(authfile_id_string)) {
640 debug3("Truncated RSA1 identifier");
641 return NULL;
Damien Millereba71ba2000-04-29 23:57:08 +1000642 }
Damien Millera2327922010-12-01 12:01:21 +1100643
644 /*
645 * Make sure it begins with the id string. Consume the id string
646 * from the buffer.
647 */
648 if (memcmp(buffer_ptr(blob), authfile_id_string,
649 sizeof(authfile_id_string)) != 0) {
650 debug3("Incorrect RSA1 identifier");
651 return NULL;
652 }
Damien Millere7ac2bd2011-06-20 14:23:25 +1000653 buffer_init(&copy);
654 buffer_append(&copy, buffer_ptr(blob), buffer_len(blob));
655 buffer_consume(&copy, sizeof(authfile_id_string));
Damien Millera2327922010-12-01 12:01:21 +1100656
657 /* Skip cipher type and reserved data. */
Damien Millere7ac2bd2011-06-20 14:23:25 +1000658 (void) buffer_get_char(&copy); /* cipher type */
659 (void) buffer_get_int(&copy); /* reserved */
Damien Millera2327922010-12-01 12:01:21 +1100660
661 /* Read the public key from the buffer. */
Damien Millere7ac2bd2011-06-20 14:23:25 +1000662 (void) buffer_get_int(&copy);
Damien Millera2327922010-12-01 12:01:21 +1100663 pub = key_new(KEY_RSA1);
Damien Millere7ac2bd2011-06-20 14:23:25 +1000664 buffer_get_bignum(&copy, pub->rsa->n);
665 buffer_get_bignum(&copy, pub->rsa->e);
Damien Millera2327922010-12-01 12:01:21 +1100666 if (commentp)
Damien Millere7ac2bd2011-06-20 14:23:25 +1000667 *commentp = buffer_get_string(&copy, NULL);
Damien Millera2327922010-12-01 12:01:21 +1100668 /* The encrypted private part is not parsed by this function. */
Damien Millere7ac2bd2011-06-20 14:23:25 +1000669 buffer_free(&copy);
Damien Millera2327922010-12-01 12:01:21 +1100670
671 return pub;
672}
673
Damien Miller2ce12ef2011-05-05 14:17:18 +1000674/* Load a key from a fd into a buffer */
675int
Damien Millera2327922010-12-01 12:01:21 +1100676key_load_file(int fd, const char *filename, Buffer *blob)
677{
Damien Miller2ce12ef2011-05-05 14:17:18 +1000678 u_char buf[1024];
Damien Millera2327922010-12-01 12:01:21 +1100679 size_t len;
Damien Millera2327922010-12-01 12:01:21 +1100680 struct stat st;
681
682 if (fstat(fd, &st) < 0) {
683 error("%s: fstat of key file %.200s%sfailed: %.100s", __func__,
684 filename == NULL ? "" : filename,
685 filename == NULL ? "" : " ",
686 strerror(errno));
Damien Millera2327922010-12-01 12:01:21 +1100687 return 0;
688 }
Damien Miller2ce12ef2011-05-05 14:17:18 +1000689 if ((st.st_mode & (S_IFSOCK|S_IFCHR|S_IFIFO)) == 0 &&
690 st.st_size > MAX_KEY_FILE_SIZE) {
691 toobig:
Damien Millera2327922010-12-01 12:01:21 +1100692 error("%s: key file %.200s%stoo large", __func__,
693 filename == NULL ? "" : filename,
694 filename == NULL ? "" : " ");
Damien Millera2327922010-12-01 12:01:21 +1100695 return 0;
696 }
Damien Miller5d007702012-02-11 08:19:02 +1100697 buffer_clear(blob);
Damien Miller2ce12ef2011-05-05 14:17:18 +1000698 for (;;) {
699 if ((len = atomicio(read, fd, buf, sizeof(buf))) == 0) {
700 if (errno == EPIPE)
701 break;
702 debug("%s: read from key file %.200s%sfailed: %.100s",
703 __func__, filename == NULL ? "" : filename,
704 filename == NULL ? "" : " ", strerror(errno));
705 buffer_clear(blob);
706 bzero(buf, sizeof(buf));
707 return 0;
708 }
709 buffer_append(blob, buf, len);
710 if (buffer_len(blob) > MAX_KEY_FILE_SIZE) {
711 buffer_clear(blob);
712 bzero(buf, sizeof(buf));
713 goto toobig;
714 }
715 }
716 bzero(buf, sizeof(buf));
717 if ((st.st_mode & (S_IFSOCK|S_IFCHR|S_IFIFO)) == 0 &&
718 st.st_size != buffer_len(blob)) {
719 debug("%s: key file %.200s%schanged size while reading",
720 __func__, filename == NULL ? "" : filename,
721 filename == NULL ? "" : " ");
Damien Millera2327922010-12-01 12:01:21 +1100722 buffer_clear(blob);
Damien Millera2327922010-12-01 12:01:21 +1100723 return 0;
724 }
Damien Miller2ce12ef2011-05-05 14:17:18 +1000725
Damien Millera2327922010-12-01 12:01:21 +1100726 return 1;
Damien Millereba71ba2000-04-29 23:57:08 +1000727}
728
Damien Miller5428f641999-11-25 11:54:57 +1100729/*
Ben Lindstromd0fca422001-03-26 13:44:06 +0000730 * Loads the public part of the ssh v1 key file. Returns NULL if an error was
731 * encountered (the file does not exist or is not readable), and the key
Damien Miller5428f641999-11-25 11:54:57 +1100732 * otherwise.
733 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000734static Key *
Ben Lindstromd0fca422001-03-26 13:44:06 +0000735key_load_public_rsa1(int fd, const char *filename, char **commentp)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000736{
Damien Miller95def091999-11-25 00:26:21 +1100737 Buffer buffer;
Ben Lindstromd0fca422001-03-26 13:44:06 +0000738 Key *pub;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000739
Damien Miller95def091999-11-25 00:26:21 +1100740 buffer_init(&buffer);
Damien Millera2327922010-12-01 12:01:21 +1100741 if (!key_load_file(fd, filename, &buffer)) {
Damien Miller95def091999-11-25 00:26:21 +1100742 buffer_free(&buffer);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000743 return NULL;
Damien Miller95def091999-11-25 00:26:21 +1100744 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000745
Damien Millera2327922010-12-01 12:01:21 +1100746 pub = key_parse_public_rsa1(&buffer, commentp);
747 if (pub == NULL)
748 debug3("Could not load \"%s\" as a RSA1 public key", filename);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000749 buffer_free(&buffer);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000750 return pub;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000751}
752
Ben Lindstromd0fca422001-03-26 13:44:06 +0000753/* load public key from private-key file, works only for SSH v1 */
754Key *
755key_load_public_type(int type, const char *filename, char **commentp)
Damien Millereba71ba2000-04-29 23:57:08 +1000756{
Ben Lindstromd0fca422001-03-26 13:44:06 +0000757 Key *pub;
758 int fd;
759
760 if (type == KEY_RSA1) {
761 fd = open(filename, O_RDONLY);
762 if (fd < 0)
763 return NULL;
764 pub = key_load_public_rsa1(fd, filename, commentp);
765 close(fd);
766 return pub;
Damien Millereba71ba2000-04-29 23:57:08 +1000767 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000768 return NULL;
Damien Millereba71ba2000-04-29 23:57:08 +1000769}
770
Ben Lindstrombba81212001-06-25 05:01:22 +0000771static Key *
Damien Millera2327922010-12-01 12:01:21 +1100772key_parse_private_rsa1(Buffer *blob, const char *passphrase, char **commentp)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000773{
Damien Millereccb9de2005-06-17 12:59:34 +1000774 int check1, check2, cipher_type;
Damien Millera2327922010-12-01 12:01:21 +1100775 Buffer decrypted;
Damien Miller708d21c2002-01-22 23:18:15 +1100776 u_char *cp;
Damien Miller874d77b2000-10-14 16:23:11 +1100777 CipherContext ciphercontext;
Damien Millerea111192013-04-23 19:24:32 +1000778 const Cipher *cipher;
Ben Lindstromd0fca422001-03-26 13:44:06 +0000779 Key *prv = NULL;
Damien Millere7ac2bd2011-06-20 14:23:25 +1000780 Buffer copy;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000781
Ben Lindstrom1170d712001-01-29 07:51:26 +0000782 /* Check that it is at least big enough to contain the ID string. */
Damien Millera2327922010-12-01 12:01:21 +1100783 if (buffer_len(blob) < sizeof(authfile_id_string)) {
784 debug3("Truncated RSA1 identifier");
Ben Lindstromd0fca422001-03-26 13:44:06 +0000785 return NULL;
Damien Miller95def091999-11-25 00:26:21 +1100786 }
Damien Millera2327922010-12-01 12:01:21 +1100787
Damien Miller5428f641999-11-25 11:54:57 +1100788 /*
789 * Make sure it begins with the id string. Consume the id string
790 * from the buffer.
791 */
Damien Millera2327922010-12-01 12:01:21 +1100792 if (memcmp(buffer_ptr(blob), authfile_id_string,
793 sizeof(authfile_id_string)) != 0) {
794 debug3("Incorrect RSA1 identifier");
795 return NULL;
796 }
Damien Millere7ac2bd2011-06-20 14:23:25 +1000797 buffer_init(&copy);
798 buffer_append(&copy, buffer_ptr(blob), buffer_len(blob));
799 buffer_consume(&copy, sizeof(authfile_id_string));
Ben Lindstromb257cca2001-03-05 04:59:27 +0000800
Damien Miller95def091999-11-25 00:26:21 +1100801 /* Read cipher type. */
Damien Millere7ac2bd2011-06-20 14:23:25 +1000802 cipher_type = buffer_get_char(&copy);
803 (void) buffer_get_int(&copy); /* Reserved data. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000804
Damien Miller95def091999-11-25 00:26:21 +1100805 /* Read the public key from the buffer. */
Damien Millere7ac2bd2011-06-20 14:23:25 +1000806 (void) buffer_get_int(&copy);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000807 prv = key_new_private(KEY_RSA1);
808
Damien Millere7ac2bd2011-06-20 14:23:25 +1000809 buffer_get_bignum(&copy, prv->rsa->n);
810 buffer_get_bignum(&copy, prv->rsa->e);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000811 if (commentp)
Damien Millere7ac2bd2011-06-20 14:23:25 +1000812 *commentp = buffer_get_string(&copy, NULL);
Damien Miller95def091999-11-25 00:26:21 +1100813 else
Damien Millere7ac2bd2011-06-20 14:23:25 +1000814 (void)buffer_get_string_ptr(&copy, NULL);
Damien Miller95def091999-11-25 00:26:21 +1100815
816 /* Check that it is a supported cipher. */
Damien Miller874d77b2000-10-14 16:23:11 +1100817 cipher = cipher_by_number(cipher_type);
818 if (cipher == NULL) {
Damien Millera2327922010-12-01 12:01:21 +1100819 debug("Unsupported RSA1 cipher %d", cipher_type);
Damien Millere7ac2bd2011-06-20 14:23:25 +1000820 buffer_free(&copy);
Damien Miller95def091999-11-25 00:26:21 +1100821 goto fail;
822 }
823 /* Initialize space for decrypted data. */
824 buffer_init(&decrypted);
Damien Millere7ac2bd2011-06-20 14:23:25 +1000825 cp = buffer_append_space(&decrypted, buffer_len(&copy));
Damien Miller95def091999-11-25 00:26:21 +1100826
827 /* Rest of the buffer is encrypted. Decrypt it using the passphrase. */
Damien Miller963f6b22002-02-19 15:21:23 +1100828 cipher_set_key_string(&ciphercontext, cipher, passphrase,
829 CIPHER_DECRYPT);
Damien Millerbcd00ab2013-12-07 10:41:55 +1100830 if (cipher_crypt(&ciphercontext, 0, cp,
831 buffer_ptr(&copy), buffer_len(&copy), 0, 0) != 0)
832 fatal("%s: cipher_crypt failed", __func__);
Damien Miller963f6b22002-02-19 15:21:23 +1100833 cipher_cleanup(&ciphercontext);
Damien Miller874d77b2000-10-14 16:23:11 +1100834 memset(&ciphercontext, 0, sizeof(ciphercontext));
Damien Millere7ac2bd2011-06-20 14:23:25 +1000835 buffer_free(&copy);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000836
Damien Miller95def091999-11-25 00:26:21 +1100837 check1 = buffer_get_char(&decrypted);
838 check2 = buffer_get_char(&decrypted);
839 if (check1 != buffer_get_char(&decrypted) ||
840 check2 != buffer_get_char(&decrypted)) {
841 if (strcmp(passphrase, "") != 0)
Damien Millera2327922010-12-01 12:01:21 +1100842 debug("Bad passphrase supplied for RSA1 key");
Damien Miller95def091999-11-25 00:26:21 +1100843 /* Bad passphrase. */
844 buffer_free(&decrypted);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000845 goto fail;
Damien Miller95def091999-11-25 00:26:21 +1100846 }
847 /* Read the rest of the private key. */
Ben Lindstromd0fca422001-03-26 13:44:06 +0000848 buffer_get_bignum(&decrypted, prv->rsa->d);
849 buffer_get_bignum(&decrypted, prv->rsa->iqmp); /* u */
850 /* in SSL and SSH v1 p and q are exchanged */
851 buffer_get_bignum(&decrypted, prv->rsa->q); /* p */
852 buffer_get_bignum(&decrypted, prv->rsa->p); /* q */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000853
Ben Lindstromd0fca422001-03-26 13:44:06 +0000854 /* calculate p-1 and q-1 */
Damien Millerda755162002-01-22 23:09:22 +1100855 rsa_generate_additional_parameters(prv->rsa);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000856
Damien Miller95def091999-11-25 00:26:21 +1100857 buffer_free(&decrypted);
Damien Millered33d3b2003-03-15 11:36:18 +1100858
859 /* enable blinding */
860 if (RSA_blinding_on(prv->rsa, NULL) != 1) {
Damien Millera2327922010-12-01 12:01:21 +1100861 error("%s: RSA_blinding_on failed", __func__);
Damien Millered33d3b2003-03-15 11:36:18 +1100862 goto fail;
863 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000864 return prv;
865
866fail:
Darren Tuckera627d422013-06-02 07:31:17 +1000867 if (commentp != NULL)
868 free(*commentp);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000869 key_free(prv);
870 return NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000871}
Damien Millereba71ba2000-04-29 23:57:08 +1000872
Damien Millera2327922010-12-01 12:01:21 +1100873static Key *
874key_parse_private_pem(Buffer *blob, int type, const char *passphrase,
Ben Lindstromd0fca422001-03-26 13:44:06 +0000875 char **commentp)
Damien Millereba71ba2000-04-29 23:57:08 +1000876{
Damien Miller0bc1bd82000-11-13 22:57:25 +1100877 EVP_PKEY *pk = NULL;
Ben Lindstromd0fca422001-03-26 13:44:06 +0000878 Key *prv = NULL;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100879 char *name = "<no key>";
Damien Millera2327922010-12-01 12:01:21 +1100880 BIO *bio;
Damien Millereba71ba2000-04-29 23:57:08 +1000881
Damien Millera2327922010-12-01 12:01:21 +1100882 if ((bio = BIO_new_mem_buf(buffer_ptr(blob),
883 buffer_len(blob))) == NULL) {
884 error("%s: BIO_new_mem_buf failed", __func__);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000885 return NULL;
Damien Millereba71ba2000-04-29 23:57:08 +1000886 }
Damien Millera2327922010-12-01 12:01:21 +1100887
888 pk = PEM_read_bio_PrivateKey(bio, NULL, NULL, (char *)passphrase);
889 BIO_free(bio);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100890 if (pk == NULL) {
Damien Millera2327922010-12-01 12:01:21 +1100891 debug("%s: PEM_read_PrivateKey failed", __func__);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100892 (void)ERR_get_error();
Ben Lindstromd0fca422001-03-26 13:44:06 +0000893 } else if (pk->type == EVP_PKEY_RSA &&
Damien Miller9f0f5c62001-12-21 14:45:46 +1100894 (type == KEY_UNSPEC||type==KEY_RSA)) {
Ben Lindstromd0fca422001-03-26 13:44:06 +0000895 prv = key_new(KEY_UNSPEC);
896 prv->rsa = EVP_PKEY_get1_RSA(pk);
897 prv->type = KEY_RSA;
898 name = "rsa w/o comment";
Damien Miller0bc1bd82000-11-13 22:57:25 +1100899#ifdef DEBUG_PK
Ben Lindstromd0fca422001-03-26 13:44:06 +0000900 RSA_print_fp(stderr, prv->rsa, 8);
Damien Millereba71ba2000-04-29 23:57:08 +1000901#endif
Damien Millered33d3b2003-03-15 11:36:18 +1100902 if (RSA_blinding_on(prv->rsa, NULL) != 1) {
Damien Millera2327922010-12-01 12:01:21 +1100903 error("%s: RSA_blinding_on failed", __func__);
Damien Millered33d3b2003-03-15 11:36:18 +1100904 key_free(prv);
905 prv = NULL;
906 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000907 } else if (pk->type == EVP_PKEY_DSA &&
Damien Miller9f0f5c62001-12-21 14:45:46 +1100908 (type == KEY_UNSPEC||type==KEY_DSA)) {
Ben Lindstromd0fca422001-03-26 13:44:06 +0000909 prv = key_new(KEY_UNSPEC);
910 prv->dsa = EVP_PKEY_get1_DSA(pk);
911 prv->type = KEY_DSA;
912 name = "dsa w/o comment";
Damien Miller0bc1bd82000-11-13 22:57:25 +1100913#ifdef DEBUG_PK
Ben Lindstromd0fca422001-03-26 13:44:06 +0000914 DSA_print_fp(stderr, prv->dsa, 8);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100915#endif
Damien Miller6af914a2010-09-10 11:39:26 +1000916#ifdef OPENSSL_HAS_ECC
Damien Millereb8b60e2010-08-31 22:41:14 +1000917 } else if (pk->type == EVP_PKEY_EC &&
918 (type == KEY_UNSPEC||type==KEY_ECDSA)) {
919 prv = key_new(KEY_UNSPEC);
920 prv->ecdsa = EVP_PKEY_get1_EC_KEY(pk);
921 prv->type = KEY_ECDSA;
Damien Millerb472a902010-11-05 10:19:49 +1100922 if ((prv->ecdsa_nid = key_ecdsa_key_to_nid(prv->ecdsa)) == -1 ||
923 key_curve_nid_to_name(prv->ecdsa_nid) == NULL ||
924 key_ec_validate_public(EC_KEY_get0_group(prv->ecdsa),
Damien Millereb8b60e2010-08-31 22:41:14 +1000925 EC_KEY_get0_public_key(prv->ecdsa)) != 0 ||
926 key_ec_validate_private(prv->ecdsa) != 0) {
927 error("%s: bad ECDSA key", __func__);
928 key_free(prv);
929 prv = NULL;
930 }
Damien Millerbf0423e2010-09-10 11:20:38 +1000931 name = "ecdsa w/o comment";
Damien Millereb8b60e2010-08-31 22:41:14 +1000932#ifdef DEBUG_PK
Damien Millerb472a902010-11-05 10:19:49 +1100933 if (prv != NULL && prv->ecdsa != NULL)
Damien Millereb8b60e2010-08-31 22:41:14 +1000934 key_dump_ec_key(prv->ecdsa);
935#endif
Damien Miller6af914a2010-09-10 11:39:26 +1000936#endif /* OPENSSL_HAS_ECC */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100937 } else {
Damien Millera2327922010-12-01 12:01:21 +1100938 error("%s: PEM_read_PrivateKey: mismatch or "
939 "unknown EVP_PKEY save_type %d", __func__, pk->save_type);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100940 }
Damien Miller0bc1bd82000-11-13 22:57:25 +1100941 if (pk != NULL)
942 EVP_PKEY_free(pk);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000943 if (prv != NULL && commentp)
944 *commentp = xstrdup(name);
945 debug("read PEM private key done: type %s",
946 prv ? key_type(prv) : "<unknown>");
947 return prv;
Damien Millereba71ba2000-04-29 23:57:08 +1000948}
949
Damien Millera2327922010-12-01 12:01:21 +1100950Key *
951key_load_private_pem(int fd, int type, const char *passphrase,
952 char **commentp)
953{
954 Buffer buffer;
955 Key *prv;
956
957 buffer_init(&buffer);
958 if (!key_load_file(fd, NULL, &buffer)) {
959 buffer_free(&buffer);
960 return NULL;
961 }
962 prv = key_parse_private_pem(&buffer, type, passphrase, commentp);
963 buffer_free(&buffer);
964 return prv;
965}
966
Damien Miller8275fad2006-03-15 12:06:23 +1100967int
Ben Lindstromd0fca422001-03-26 13:44:06 +0000968key_perm_ok(int fd, const char *filename)
Damien Millereba71ba2000-04-29 23:57:08 +1000969{
Damien Millereba71ba2000-04-29 23:57:08 +1000970 struct stat st;
971
Ben Lindstrom7aff2612001-09-23 13:53:22 +0000972 if (fstat(fd, &st) < 0)
973 return 0;
974 /*
975 * if a key owned by the user is accessed, then we check the
976 * permissions of the file. if the key owned by a different user,
977 * then we don't care.
978 */
Damien Millerb70b61f2000-09-16 16:25:12 +1100979#ifdef HAVE_CYGWIN
Damien Millercb5e44a2000-09-29 12:12:36 +1100980 if (check_ntsec(filename))
Damien Millerb70b61f2000-09-16 16:25:12 +1100981#endif
Ben Lindstrom7aff2612001-09-23 13:53:22 +0000982 if ((st.st_uid == getuid()) && (st.st_mode & 077) != 0) {
Damien Millereba71ba2000-04-29 23:57:08 +1000983 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
984 error("@ WARNING: UNPROTECTED PRIVATE KEY FILE! @");
985 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
Ben Lindstrom7aff2612001-09-23 13:53:22 +0000986 error("Permissions 0%3.3o for '%s' are too open.",
Damien Miller04bd8b02003-05-25 14:38:33 +1000987 (u_int)st.st_mode & 0777, filename);
Damien Millera10abe92011-04-12 15:39:35 +1000988 error("It is required that your private key files are NOT accessible by others.");
Ben Lindstromd0fca422001-03-26 13:44:06 +0000989 error("This private key will be ignored.");
Damien Millereba71ba2000-04-29 23:57:08 +1000990 return 0;
991 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000992 return 1;
993}
Ben Lindstromb257cca2001-03-05 04:59:27 +0000994
Damien Millera2327922010-12-01 12:01:21 +1100995static Key *
996key_parse_private_type(Buffer *blob, int type, const char *passphrase,
997 char **commentp)
998{
Damien Millerbcd00ab2013-12-07 10:41:55 +1100999 Key *k;
1000
Damien Millera2327922010-12-01 12:01:21 +11001001 switch (type) {
1002 case KEY_RSA1:
1003 return key_parse_private_rsa1(blob, passphrase, commentp);
1004 case KEY_DSA:
1005 case KEY_ECDSA:
1006 case KEY_RSA:
Damien Miller5be9d9e2013-12-07 11:24:01 +11001007 return key_parse_private_pem(blob, type, passphrase, commentp);
1008 case KEY_ED25519:
1009 return key_parse_private2(blob, type, passphrase, commentp);
Damien Millera2327922010-12-01 12:01:21 +11001010 case KEY_UNSPEC:
Damien Millerbcd00ab2013-12-07 10:41:55 +11001011 if ((k = key_parse_private2(blob, type, passphrase, commentp)))
1012 return k;
Damien Millera2327922010-12-01 12:01:21 +11001013 return key_parse_private_pem(blob, type, passphrase, commentp);
1014 default:
Damien Miller9d276b82011-05-15 08:51:43 +10001015 error("%s: cannot parse key type %d", __func__, type);
Damien Millera2327922010-12-01 12:01:21 +11001016 break;
1017 }
1018 return NULL;
1019}
1020
Ben Lindstromd0fca422001-03-26 13:44:06 +00001021Key *
1022key_load_private_type(int type, const char *filename, const char *passphrase,
Darren Tucker232b76f2006-05-06 17:41:51 +10001023 char **commentp, int *perm_ok)
Ben Lindstromd0fca422001-03-26 13:44:06 +00001024{
1025 int fd;
Damien Millera2327922010-12-01 12:01:21 +11001026 Key *ret;
1027 Buffer buffer;
Ben Lindstromd0fca422001-03-26 13:44:06 +00001028
1029 fd = open(filename, O_RDONLY);
Darren Tuckerd4c86b12010-01-12 19:41:22 +11001030 if (fd < 0) {
1031 debug("could not open key file '%s': %s", filename,
1032 strerror(errno));
1033 if (perm_ok != NULL)
1034 *perm_ok = 0;
Ben Lindstromd0fca422001-03-26 13:44:06 +00001035 return NULL;
Darren Tucker69c01b12010-01-12 19:42:29 +11001036 }
Ben Lindstromd0fca422001-03-26 13:44:06 +00001037 if (!key_perm_ok(fd, filename)) {
Darren Tucker232b76f2006-05-06 17:41:51 +10001038 if (perm_ok != NULL)
1039 *perm_ok = 0;
Ben Lindstrom15f33862001-04-16 02:00:02 +00001040 error("bad permissions: ignore key: %s", filename);
Ben Lindstromd0fca422001-03-26 13:44:06 +00001041 close(fd);
1042 return NULL;
1043 }
Darren Tucker232b76f2006-05-06 17:41:51 +10001044 if (perm_ok != NULL)
1045 *perm_ok = 1;
Damien Millera2327922010-12-01 12:01:21 +11001046
1047 buffer_init(&buffer);
1048 if (!key_load_file(fd, filename, &buffer)) {
1049 buffer_free(&buffer);
Ben Lindstromb257cca2001-03-05 04:59:27 +00001050 close(fd);
Damien Millera2327922010-12-01 12:01:21 +11001051 return NULL;
Damien Millereba71ba2000-04-29 23:57:08 +10001052 }
Damien Millera2327922010-12-01 12:01:21 +11001053 close(fd);
1054 ret = key_parse_private_type(&buffer, type, passphrase, commentp);
1055 buffer_free(&buffer);
1056 return ret;
Ben Lindstromd0fca422001-03-26 13:44:06 +00001057}
1058
1059Key *
Damien Miller2ce12ef2011-05-05 14:17:18 +10001060key_parse_private(Buffer *buffer, const char *filename,
1061 const char *passphrase, char **commentp)
1062{
1063 Key *pub, *prv;
Damien Miller2ce12ef2011-05-05 14:17:18 +10001064
Damien Miller2ce12ef2011-05-05 14:17:18 +10001065 /* it's a SSH v1 key if the public key part is readable */
Damien Millere7ac2bd2011-06-20 14:23:25 +10001066 pub = key_parse_public_rsa1(buffer, commentp);
Damien Miller2ce12ef2011-05-05 14:17:18 +10001067 if (pub == NULL) {
1068 prv = key_parse_private_type(buffer, KEY_UNSPEC,
1069 passphrase, NULL);
1070 /* use the filename as a comment for PEM */
1071 if (commentp && prv)
1072 *commentp = xstrdup(filename);
1073 } else {
1074 key_free(pub);
1075 /* key_parse_public_rsa1() has already loaded the comment */
1076 prv = key_parse_private_type(buffer, KEY_RSA1, passphrase,
1077 NULL);
1078 }
1079 return prv;
1080}
1081
1082Key *
Ben Lindstromd0fca422001-03-26 13:44:06 +00001083key_load_private(const char *filename, const char *passphrase,
1084 char **commentp)
1085{
Damien Miller2ce12ef2011-05-05 14:17:18 +10001086 Key *prv;
1087 Buffer buffer;
Ben Lindstromd0fca422001-03-26 13:44:06 +00001088 int fd;
1089
1090 fd = open(filename, O_RDONLY);
Darren Tuckerd4c86b12010-01-12 19:41:22 +11001091 if (fd < 0) {
1092 debug("could not open key file '%s': %s", filename,
1093 strerror(errno));
Ben Lindstromd0fca422001-03-26 13:44:06 +00001094 return NULL;
Darren Tuckerd4c86b12010-01-12 19:41:22 +11001095 }
Ben Lindstromd0fca422001-03-26 13:44:06 +00001096 if (!key_perm_ok(fd, filename)) {
Ben Lindstrom15f33862001-04-16 02:00:02 +00001097 error("bad permissions: ignore key: %s", filename);
Ben Lindstromd0fca422001-03-26 13:44:06 +00001098 close(fd);
1099 return NULL;
1100 }
Damien Millera2327922010-12-01 12:01:21 +11001101
1102 buffer_init(&buffer);
1103 if (!key_load_file(fd, filename, &buffer)) {
1104 buffer_free(&buffer);
1105 close(fd);
1106 return NULL;
1107 }
1108 close(fd);
1109
Damien Miller2ce12ef2011-05-05 14:17:18 +10001110 prv = key_parse_private(&buffer, filename, passphrase, commentp);
Damien Millera2327922010-12-01 12:01:21 +11001111 buffer_free(&buffer);
Ben Lindstrom322915d2001-06-05 20:46:32 +00001112 return prv;
Damien Millereba71ba2000-04-29 23:57:08 +10001113}
Damien Millere4340be2000-09-16 13:29:08 +11001114
Ben Lindstrombba81212001-06-25 05:01:22 +00001115static int
Ben Lindstromd0fca422001-03-26 13:44:06 +00001116key_try_load_public(Key *k, const char *filename, char **commentp)
Damien Millere4340be2000-09-16 13:29:08 +11001117{
1118 FILE *f;
Darren Tucker22cc7412004-12-06 22:47:41 +11001119 char line[SSH_MAX_PUBKEY_BYTES];
Damien Millere4340be2000-09-16 13:29:08 +11001120 char *cp;
Darren Tuckerf0f90982004-12-11 13:39:50 +11001121 u_long linenum = 0;
Damien Millere4340be2000-09-16 13:29:08 +11001122
1123 f = fopen(filename, "r");
1124 if (f != NULL) {
Darren Tucker22cc7412004-12-06 22:47:41 +11001125 while (read_keyfile_line(f, filename, line, sizeof(line),
1126 &linenum) != -1) {
Damien Millere4340be2000-09-16 13:29:08 +11001127 cp = line;
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00001128 switch (*cp) {
Damien Millere4340be2000-09-16 13:29:08 +11001129 case '#':
1130 case '\n':
1131 case '\0':
1132 continue;
1133 }
Damien Miller32198242011-05-15 08:50:32 +10001134 /* Abort loading if this looks like a private key */
1135 if (strncmp(cp, "-----BEGIN", 10) == 0)
1136 break;
Damien Millere4340be2000-09-16 13:29:08 +11001137 /* Skip leading whitespace. */
1138 for (; *cp && (*cp == ' ' || *cp == '\t'); cp++)
1139 ;
1140 if (*cp) {
Damien Miller0bc1bd82000-11-13 22:57:25 +11001141 if (key_read(k, &cp) == 1) {
Damien Miller04bb56e2011-05-29 21:42:08 +10001142 cp[strcspn(cp, "\r\n")] = '\0';
1143 if (commentp) {
1144 *commentp = xstrdup(*cp ?
1145 cp : filename);
1146 }
Damien Millere4340be2000-09-16 13:29:08 +11001147 fclose(f);
1148 return 1;
1149 }
1150 }
1151 }
1152 fclose(f);
1153 }
1154 return 0;
1155}
1156
Ben Lindstromd0fca422001-03-26 13:44:06 +00001157/* load public key from ssh v1 private or any pubkey file */
1158Key *
1159key_load_public(const char *filename, char **commentp)
Damien Millere4340be2000-09-16 13:29:08 +11001160{
Ben Lindstromd0fca422001-03-26 13:44:06 +00001161 Key *pub;
1162 char file[MAXPATHLEN];
Damien Millere4340be2000-09-16 13:29:08 +11001163
Damien Millerdb274722003-05-14 13:45:22 +10001164 /* try rsa1 private key */
Ben Lindstromd0fca422001-03-26 13:44:06 +00001165 pub = key_load_public_type(KEY_RSA1, filename, commentp);
1166 if (pub != NULL)
1167 return pub;
Damien Millerdb274722003-05-14 13:45:22 +10001168
1169 /* try rsa1 public key */
1170 pub = key_new(KEY_RSA1);
1171 if (key_try_load_public(pub, filename, commentp) == 1)
1172 return pub;
1173 key_free(pub);
1174
1175 /* try ssh2 public key */
Ben Lindstromd0fca422001-03-26 13:44:06 +00001176 pub = key_new(KEY_UNSPEC);
1177 if (key_try_load_public(pub, filename, commentp) == 1)
1178 return pub;
1179 if ((strlcpy(file, filename, sizeof file) < sizeof(file)) &&
1180 (strlcat(file, ".pub", sizeof file) < sizeof(file)) &&
1181 (key_try_load_public(pub, file, commentp) == 1))
1182 return pub;
1183 key_free(pub);
1184 return NULL;
Damien Millere4340be2000-09-16 13:29:08 +11001185}
Damien Miller1aed65e2010-03-04 21:53:35 +11001186
Damien Millerc1583312010-08-05 13:04:50 +10001187/* Load the certificate associated with the named private key */
1188Key *
1189key_load_cert(const char *filename)
1190{
1191 Key *pub;
Damien Miller5458c4d2010-08-05 13:05:15 +10001192 char *file;
Damien Millerc1583312010-08-05 13:04:50 +10001193
1194 pub = key_new(KEY_UNSPEC);
Damien Miller5458c4d2010-08-05 13:05:15 +10001195 xasprintf(&file, "%s-cert.pub", filename);
1196 if (key_try_load_public(pub, file, NULL) == 1) {
Darren Tuckera627d422013-06-02 07:31:17 +10001197 free(file);
Damien Millerc1583312010-08-05 13:04:50 +10001198 return pub;
Damien Miller5458c4d2010-08-05 13:05:15 +10001199 }
Darren Tuckera627d422013-06-02 07:31:17 +10001200 free(file);
Damien Millerc1583312010-08-05 13:04:50 +10001201 key_free(pub);
1202 return NULL;
1203}
1204
1205/* Load private key and certificate */
1206Key *
1207key_load_private_cert(int type, const char *filename, const char *passphrase,
1208 int *perm_ok)
1209{
1210 Key *key, *pub;
1211
1212 switch (type) {
1213 case KEY_RSA:
1214 case KEY_DSA:
Damien Millereb8b60e2010-08-31 22:41:14 +10001215 case KEY_ECDSA:
Damien Millerc1583312010-08-05 13:04:50 +10001216 break;
1217 default:
1218 error("%s: unsupported key type", __func__);
1219 return NULL;
1220 }
1221
1222 if ((key = key_load_private_type(type, filename,
1223 passphrase, NULL, perm_ok)) == NULL)
1224 return NULL;
1225
1226 if ((pub = key_load_cert(filename)) == NULL) {
1227 key_free(key);
1228 return NULL;
1229 }
1230
1231 /* Make sure the private key matches the certificate */
1232 if (key_equal_public(key, pub) == 0) {
1233 error("%s: certificate does not match private key %s",
1234 __func__, filename);
1235 } else if (key_to_certified(key, key_cert_is_legacy(pub)) != 0) {
1236 error("%s: key_to_certified failed", __func__);
1237 } else {
1238 key_cert_copy(pub, key);
1239 key_free(pub);
1240 return key;
1241 }
1242
1243 key_free(key);
1244 key_free(pub);
1245 return NULL;
1246}
1247
Damien Miller1aed65e2010-03-04 21:53:35 +11001248/*
1249 * Returns 1 if the specified "key" is listed in the file "filename",
1250 * 0 if the key is not listed or -1 on error.
1251 * If strict_type is set then the key type must match exactly,
1252 * otherwise a comparison that ignores certficiate data is performed.
1253 */
1254int
1255key_in_file(Key *key, const char *filename, int strict_type)
1256{
1257 FILE *f;
1258 char line[SSH_MAX_PUBKEY_BYTES];
1259 char *cp;
1260 u_long linenum = 0;
1261 int ret = 0;
1262 Key *pub;
1263 int (*key_compare)(const Key *, const Key *) = strict_type ?
1264 key_equal : key_equal_public;
1265
1266 if ((f = fopen(filename, "r")) == NULL) {
1267 if (errno == ENOENT) {
1268 debug("%s: keyfile \"%s\" missing", __func__, filename);
1269 return 0;
1270 } else {
1271 error("%s: could not open keyfile \"%s\": %s", __func__,
1272 filename, strerror(errno));
1273 return -1;
1274 }
1275 }
1276
1277 while (read_keyfile_line(f, filename, line, sizeof(line),
1278 &linenum) != -1) {
1279 cp = line;
1280
1281 /* Skip leading whitespace. */
1282 for (; *cp && (*cp == ' ' || *cp == '\t'); cp++)
1283 ;
1284
1285 /* Skip comments and empty lines */
1286 switch (*cp) {
1287 case '#':
1288 case '\n':
1289 case '\0':
1290 continue;
1291 }
1292
1293 pub = key_new(KEY_UNSPEC);
1294 if (key_read(pub, &cp) != 1) {
1295 key_free(pub);
1296 continue;
1297 }
1298 if (key_compare(key, pub)) {
1299 ret = 1;
1300 key_free(pub);
1301 break;
1302 }
1303 key_free(pub);
1304 }
1305 fclose(f);
1306 return ret;
1307}