blob: 1c006c43d5c4523e33913fb12f3b71af31ee0e95 [file] [log] [blame]
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001/*
Damien Miller95def091999-11-25 00:26:21 +11002 * Author: Tatu Ylonen <ylo@cs.hut.fi>
Damien Miller95def091999-11-25 00:26:21 +11003 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4 * All rights reserved
Damien Miller95def091999-11-25 00:26:21 +11005 * This file contains functions for reading and writing identity files, and
6 * for reading the passphrase from the user.
Damien Miller4af51302000-04-16 11:18:38 +10007 *
Damien Millere4340be2000-09-16 13:29:08 +11008 * 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".
13 *
14 *
15 * Copyright (c) 2000 Markus Friedl. All rights reserved.
16 *
17 * Redistribution and use in source and binary forms, with or without
18 * modification, are permitted provided that the following conditions
19 * are met:
20 * 1. Redistributions of source code must retain the above copyright
21 * notice, this list of conditions and the following disclaimer.
22 * 2. Redistributions in binary form must reproduce the above copyright
23 * notice, this list of conditions and the following disclaimer in the
24 * documentation and/or other materials provided with the distribution.
25 *
26 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
27 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
28 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
29 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
30 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
31 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
32 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
33 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
35 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Damien Miller95def091999-11-25 00:26:21 +110036 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100037
38#include "includes.h"
Darren Tuckerf4b43712004-08-29 16:28:39 +100039RCSID("$OpenBSD: authfile.c,v 1.58 2004/08/23 11:48:09 djm Exp $");
Damien Millerd4a8b7e1999-10-27 13:42:43 +100040
Damien Miller0bc1bd82000-11-13 22:57:25 +110041#include <openssl/err.h>
Damien Millereba71ba2000-04-29 23:57:08 +100042#include <openssl/evp.h>
Ben Lindstrom226cfa02001-01-22 05:34:40 +000043#include <openssl/pem.h>
Damien Millereba71ba2000-04-29 23:57:08 +100044
Ben Lindstrom226cfa02001-01-22 05:34:40 +000045#include "cipher.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100046#include "xmalloc.h"
47#include "buffer.h"
48#include "bufaux.h"
Damien Millereba71ba2000-04-29 23:57:08 +100049#include "key.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000050#include "ssh.h"
51#include "log.h"
Ben Lindstrom31ca54a2001-02-09 02:11:24 +000052#include "authfile.h"
Damien Miller040b64f2002-01-22 23:10:04 +110053#include "rsa.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100054
Ben Lindstromd0fca422001-03-26 13:44:06 +000055/* Version identification string for SSH v1 identity files. */
Ben Lindstrom1170d712001-01-29 07:51:26 +000056static const char authfile_id_string[] =
57 "SSH PRIVATE KEY FILE FORMAT 1.1\n";
Damien Millerd4a8b7e1999-10-27 13:42:43 +100058
Damien Miller5428f641999-11-25 11:54:57 +110059/*
60 * Saves the authentication (private) key in a file, encrypting it with
61 * passphrase. The identification of the file (lowest 64 bits of n) will
62 * precede the key to provide identification of the key without needing a
63 * passphrase.
64 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100065
Ben Lindstrombba81212001-06-25 05:01:22 +000066static int
Ben Lindstromd0fca422001-03-26 13:44:06 +000067key_save_private_rsa1(Key *key, const char *filename, const char *passphrase,
68 const char *comment)
Damien Millerd4a8b7e1999-10-27 13:42:43 +100069{
Damien Miller95def091999-11-25 00:26:21 +110070 Buffer buffer, encrypted;
Damien Miller708d21c2002-01-22 23:18:15 +110071 u_char buf[100], *cp;
Damien Miller963f6b22002-02-19 15:21:23 +110072 int fd, i, cipher_num;
Damien Miller874d77b2000-10-14 16:23:11 +110073 CipherContext ciphercontext;
74 Cipher *cipher;
Darren Tucker3f9fdc72004-06-22 12:56:01 +100075 u_int32_t rnd;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100076
Damien Miller5428f641999-11-25 11:54:57 +110077 /*
78 * If the passphrase is empty, use SSH_CIPHER_NONE to ease converting
79 * to another cipher; otherwise use SSH_AUTHFILE_CIPHER.
80 */
Damien Miller963f6b22002-02-19 15:21:23 +110081 cipher_num = (strcmp(passphrase, "") == 0) ?
82 SSH_CIPHER_NONE : SSH_AUTHFILE_CIPHER;
83 if ((cipher = cipher_by_number(cipher_num)) == NULL)
Damien Miller874d77b2000-10-14 16:23:11 +110084 fatal("save_private_key_rsa: bad cipher");
Damien Millerd4a8b7e1999-10-27 13:42:43 +100085
Damien Miller95def091999-11-25 00:26:21 +110086 /* This buffer is used to built the secret part of the private key. */
87 buffer_init(&buffer);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100088
Damien Miller95def091999-11-25 00:26:21 +110089 /* Put checkbytes for checking passphrase validity. */
Darren Tucker3f9fdc72004-06-22 12:56:01 +100090 rnd = arc4random();
91 buf[0] = rnd & 0xff;
92 buf[1] = (rnd >> 8) & 0xff;
Damien Miller95def091999-11-25 00:26:21 +110093 buf[2] = buf[0];
94 buf[3] = buf[1];
95 buffer_append(&buffer, buf, 4);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100096
Damien Miller5428f641999-11-25 11:54:57 +110097 /*
98 * Store the private key (n and e will not be stored because they
99 * will be stored in plain text, and storing them also in encrypted
100 * format would just give known plaintext).
101 */
Ben Lindstromd0fca422001-03-26 13:44:06 +0000102 buffer_put_bignum(&buffer, key->rsa->d);
103 buffer_put_bignum(&buffer, key->rsa->iqmp);
104 buffer_put_bignum(&buffer, key->rsa->q); /* reverse from SSL p */
105 buffer_put_bignum(&buffer, key->rsa->p); /* reverse from SSL q */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000106
Damien Miller95def091999-11-25 00:26:21 +1100107 /* Pad the part to be encrypted until its size is a multiple of 8. */
108 while (buffer_len(&buffer) % 8 != 0)
109 buffer_put_char(&buffer, 0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000110
Damien Miller95def091999-11-25 00:26:21 +1100111 /* This buffer will be used to contain the data in the file. */
112 buffer_init(&encrypted);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000113
Damien Miller95def091999-11-25 00:26:21 +1100114 /* First store keyfile id string. */
Ben Lindstrom1170d712001-01-29 07:51:26 +0000115 for (i = 0; authfile_id_string[i]; i++)
116 buffer_put_char(&encrypted, authfile_id_string[i]);
Damien Miller95def091999-11-25 00:26:21 +1100117 buffer_put_char(&encrypted, 0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000118
Damien Miller95def091999-11-25 00:26:21 +1100119 /* Store cipher type. */
Damien Miller963f6b22002-02-19 15:21:23 +1100120 buffer_put_char(&encrypted, cipher_num);
Damien Miller95def091999-11-25 00:26:21 +1100121 buffer_put_int(&encrypted, 0); /* For future extension */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000122
Damien Miller95def091999-11-25 00:26:21 +1100123 /* Store public key. This will be in plain text. */
Ben Lindstromd0fca422001-03-26 13:44:06 +0000124 buffer_put_int(&encrypted, BN_num_bits(key->rsa->n));
125 buffer_put_bignum(&encrypted, key->rsa->n);
126 buffer_put_bignum(&encrypted, key->rsa->e);
Ben Lindstrom664408d2001-06-09 01:42:01 +0000127 buffer_put_cstring(&encrypted, comment);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000128
Damien Miller95def091999-11-25 00:26:21 +1100129 /* Allocate space for the private part of the key in the buffer. */
Damien Miller5a6b4fe2001-12-21 14:56:54 +1100130 cp = buffer_append_space(&encrypted, buffer_len(&buffer));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000131
Damien Miller963f6b22002-02-19 15:21:23 +1100132 cipher_set_key_string(&ciphercontext, cipher, passphrase,
133 CIPHER_ENCRYPT);
134 cipher_crypt(&ciphercontext, cp,
Damien Miller708d21c2002-01-22 23:18:15 +1100135 buffer_ptr(&buffer), buffer_len(&buffer));
Damien Miller963f6b22002-02-19 15:21:23 +1100136 cipher_cleanup(&ciphercontext);
Damien Miller874d77b2000-10-14 16:23:11 +1100137 memset(&ciphercontext, 0, sizeof(ciphercontext));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000138
Damien Miller95def091999-11-25 00:26:21 +1100139 /* Destroy temporary data. */
140 memset(buf, 0, sizeof(buf));
141 buffer_free(&buffer);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000142
Damien Miller037a0dc1999-12-07 15:38:31 +1100143 fd = open(filename, O_WRONLY | O_CREAT | O_TRUNC, 0600);
Ben Lindstrom15f33862001-04-16 02:00:02 +0000144 if (fd < 0) {
145 error("open %s failed: %s.", filename, strerror(errno));
Darren Tuckerd1d41b32003-09-22 21:01:27 +1000146 buffer_free(&encrypted);
Damien Miller95def091999-11-25 00:26:21 +1100147 return 0;
Ben Lindstrom15f33862001-04-16 02:00:02 +0000148 }
Damien Miller037a0dc1999-12-07 15:38:31 +1100149 if (write(fd, buffer_ptr(&encrypted), buffer_len(&encrypted)) !=
Damien Miller95def091999-11-25 00:26:21 +1100150 buffer_len(&encrypted)) {
Ben Lindstrom15f33862001-04-16 02:00:02 +0000151 error("write to key file %s failed: %s", filename,
Damien Miller9f0f5c62001-12-21 14:45:46 +1100152 strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +1100153 buffer_free(&encrypted);
Damien Miller037a0dc1999-12-07 15:38:31 +1100154 close(fd);
Damien Miller78315eb2000-09-29 23:01:36 +1100155 unlink(filename);
Damien Miller95def091999-11-25 00:26:21 +1100156 return 0;
157 }
Damien Miller037a0dc1999-12-07 15:38:31 +1100158 close(fd);
Damien Miller95def091999-11-25 00:26:21 +1100159 buffer_free(&encrypted);
160 return 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000161}
162
Ben Lindstromd0fca422001-03-26 13:44:06 +0000163/* save SSH v2 key in OpenSSL PEM format */
Ben Lindstrombba81212001-06-25 05:01:22 +0000164static int
Ben Lindstromd0fca422001-03-26 13:44:06 +0000165key_save_private_pem(Key *key, const char *filename, const char *_passphrase,
166 const char *comment)
Damien Millereba71ba2000-04-29 23:57:08 +1000167{
168 FILE *fp;
169 int fd;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100170 int success = 0;
171 int len = strlen(_passphrase);
Ben Lindstrom90fd8142002-02-26 18:09:42 +0000172 u_char *passphrase = (len > 0) ? (u_char *)_passphrase : NULL;
Ben Lindstrom80cb27d2002-03-05 01:33:36 +0000173 const EVP_CIPHER *cipher = (len > 0) ? EVP_des_ede3_cbc() : NULL;
Damien Millereba71ba2000-04-29 23:57:08 +1000174
175 if (len > 0 && len <= 4) {
Ben Lindstrom15f33862001-04-16 02:00:02 +0000176 error("passphrase too short: have %d bytes, need > 4", len);
Damien Millereba71ba2000-04-29 23:57:08 +1000177 return 0;
178 }
179 fd = open(filename, O_WRONLY | O_CREAT | O_TRUNC, 0600);
180 if (fd < 0) {
Ben Lindstrom15f33862001-04-16 02:00:02 +0000181 error("open %s failed: %s.", filename, strerror(errno));
Damien Millereba71ba2000-04-29 23:57:08 +1000182 return 0;
183 }
184 fp = fdopen(fd, "w");
185 if (fp == NULL ) {
Ben Lindstrom15f33862001-04-16 02:00:02 +0000186 error("fdopen %s failed: %s.", filename, strerror(errno));
Damien Millereba71ba2000-04-29 23:57:08 +1000187 close(fd);
188 return 0;
189 }
Damien Miller0bc1bd82000-11-13 22:57:25 +1100190 switch (key->type) {
Ben Lindstromc1116602001-03-29 00:28:37 +0000191 case KEY_DSA:
192 success = PEM_write_DSAPrivateKey(fp, key->dsa,
193 cipher, passphrase, len, NULL, NULL);
194 break;
195 case KEY_RSA:
196 success = PEM_write_RSAPrivateKey(fp, key->rsa,
197 cipher, passphrase, len, NULL, NULL);
198 break;
Damien Millereba71ba2000-04-29 23:57:08 +1000199 }
200 fclose(fp);
201 return success;
202}
203
204int
Ben Lindstromd0fca422001-03-26 13:44:06 +0000205key_save_private(Key *key, const char *filename, const char *passphrase,
Damien Millereba71ba2000-04-29 23:57:08 +1000206 const char *comment)
207{
208 switch (key->type) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100209 case KEY_RSA1:
Ben Lindstromd0fca422001-03-26 13:44:06 +0000210 return key_save_private_rsa1(key, filename, passphrase,
211 comment);
Damien Millereba71ba2000-04-29 23:57:08 +1000212 break;
213 case KEY_DSA:
Damien Miller0bc1bd82000-11-13 22:57:25 +1100214 case KEY_RSA:
Ben Lindstromd0fca422001-03-26 13:44:06 +0000215 return key_save_private_pem(key, filename, passphrase,
216 comment);
Damien Millereba71ba2000-04-29 23:57:08 +1000217 break;
218 default:
219 break;
220 }
Ben Lindstrom15f33862001-04-16 02:00:02 +0000221 error("key_save_private: cannot save key type %d", key->type);
Damien Millereba71ba2000-04-29 23:57:08 +1000222 return 0;
223}
224
Damien Miller5428f641999-11-25 11:54:57 +1100225/*
Ben Lindstromd0fca422001-03-26 13:44:06 +0000226 * Loads the public part of the ssh v1 key file. Returns NULL if an error was
227 * encountered (the file does not exist or is not readable), and the key
Damien Miller5428f641999-11-25 11:54:57 +1100228 * otherwise.
229 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000230
Ben Lindstrombba81212001-06-25 05:01:22 +0000231static Key *
Ben Lindstromd0fca422001-03-26 13:44:06 +0000232key_load_public_rsa1(int fd, const char *filename, char **commentp)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000233{
Damien Miller95def091999-11-25 00:26:21 +1100234 Buffer buffer;
Ben Lindstromd0fca422001-03-26 13:44:06 +0000235 Key *pub;
Ben Lindstrom44adb8f2002-12-23 02:00:23 +0000236 struct stat st;
Damien Miller95def091999-11-25 00:26:21 +1100237 char *cp;
Ben Lindstromd0fca422001-03-26 13:44:06 +0000238 int i;
Darren Tucker1f8311c2004-05-13 16:39:33 +1000239 size_t len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000240
Ben Lindstrom44adb8f2002-12-23 02:00:23 +0000241 if (fstat(fd, &st) < 0) {
242 error("fstat for key file %.200s failed: %.100s",
243 filename, strerror(errno));
244 return NULL;
245 }
Darren Tuckerf4b43712004-08-29 16:28:39 +1000246 if (st.st_size > 1*1024*1024) {
247 error("key file %.200s too large", filename);
248 return NULL;
249 }
Darren Tucker1f8311c2004-05-13 16:39:33 +1000250 len = (size_t)st.st_size; /* truncated */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000251
Damien Miller95def091999-11-25 00:26:21 +1100252 buffer_init(&buffer);
Damien Miller5a6b4fe2001-12-21 14:56:54 +1100253 cp = buffer_append_space(&buffer, len);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000254
Damien Miller037a0dc1999-12-07 15:38:31 +1100255 if (read(fd, cp, (size_t) len) != (size_t) len) {
Damien Miller95def091999-11-25 00:26:21 +1100256 debug("Read from key file %.200s failed: %.100s", filename,
Damien Millereba71ba2000-04-29 23:57:08 +1000257 strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +1100258 buffer_free(&buffer);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000259 return NULL;
Damien Miller95def091999-11-25 00:26:21 +1100260 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000261
Ben Lindstrom1170d712001-01-29 07:51:26 +0000262 /* Check that it is at least big enough to contain the ID string. */
263 if (len < sizeof(authfile_id_string)) {
Damien Miller058655c2001-10-10 15:03:36 +1000264 debug3("Not a RSA1 key file %.200s.", filename);
Damien Miller95def091999-11-25 00:26:21 +1100265 buffer_free(&buffer);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000266 return NULL;
Damien Miller95def091999-11-25 00:26:21 +1100267 }
Damien Miller5428f641999-11-25 11:54:57 +1100268 /*
269 * Make sure it begins with the id string. Consume the id string
270 * from the buffer.
271 */
Ben Lindstrom1170d712001-01-29 07:51:26 +0000272 for (i = 0; i < sizeof(authfile_id_string); i++)
273 if (buffer_get_char(&buffer) != authfile_id_string[i]) {
Damien Miller058655c2001-10-10 15:03:36 +1000274 debug3("Not a RSA1 key file %.200s.", filename);
Damien Miller95def091999-11-25 00:26:21 +1100275 buffer_free(&buffer);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000276 return NULL;
Damien Miller95def091999-11-25 00:26:21 +1100277 }
278 /* Skip cipher type and reserved data. */
279 (void) buffer_get_char(&buffer); /* cipher type */
280 (void) buffer_get_int(&buffer); /* reserved */
281
282 /* Read the public key from the buffer. */
Ben Lindstromc5a7f4f2002-06-25 23:19:13 +0000283 (void) buffer_get_int(&buffer);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000284 pub = key_new(KEY_RSA1);
285 buffer_get_bignum(&buffer, pub->rsa->n);
286 buffer_get_bignum(&buffer, pub->rsa->e);
287 if (commentp)
288 *commentp = buffer_get_string(&buffer, NULL);
Damien Miller95def091999-11-25 00:26:21 +1100289 /* The encrypted private part is not parsed by this function. */
290
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000291 buffer_free(&buffer);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000292 return pub;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000293}
294
Ben Lindstromd0fca422001-03-26 13:44:06 +0000295/* load public key from private-key file, works only for SSH v1 */
296Key *
297key_load_public_type(int type, const char *filename, char **commentp)
Damien Millereba71ba2000-04-29 23:57:08 +1000298{
Ben Lindstromd0fca422001-03-26 13:44:06 +0000299 Key *pub;
300 int fd;
301
302 if (type == KEY_RSA1) {
303 fd = open(filename, O_RDONLY);
304 if (fd < 0)
305 return NULL;
306 pub = key_load_public_rsa1(fd, filename, commentp);
307 close(fd);
308 return pub;
Damien Millereba71ba2000-04-29 23:57:08 +1000309 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000310 return NULL;
Damien Millereba71ba2000-04-29 23:57:08 +1000311}
312
Damien Miller5428f641999-11-25 11:54:57 +1100313/*
314 * Loads the private key from the file. Returns 0 if an error is encountered
315 * (file does not exist or is not readable, or passphrase is bad). This
316 * initializes the private key.
317 * Assumes we are called under uid of the owner of the file.
318 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000319
Ben Lindstrombba81212001-06-25 05:01:22 +0000320static Key *
Ben Lindstromd0fca422001-03-26 13:44:06 +0000321key_load_private_rsa1(int fd, const char *filename, const char *passphrase,
322 char **commentp)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000323{
Damien Millereba71ba2000-04-29 23:57:08 +1000324 int i, check1, check2, cipher_type;
Darren Tucker1f8311c2004-05-13 16:39:33 +1000325 size_t len;
Damien Miller95def091999-11-25 00:26:21 +1100326 Buffer buffer, decrypted;
Damien Miller708d21c2002-01-22 23:18:15 +1100327 u_char *cp;
Damien Miller874d77b2000-10-14 16:23:11 +1100328 CipherContext ciphercontext;
329 Cipher *cipher;
Ben Lindstromd0fca422001-03-26 13:44:06 +0000330 Key *prv = NULL;
Ben Lindstrom44adb8f2002-12-23 02:00:23 +0000331 struct stat st;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000332
Ben Lindstrom44adb8f2002-12-23 02:00:23 +0000333 if (fstat(fd, &st) < 0) {
334 error("fstat for key file %.200s failed: %.100s",
335 filename, strerror(errno));
336 close(fd);
337 return NULL;
338 }
Darren Tucker1f8311c2004-05-13 16:39:33 +1000339 if (st.st_size > 1*1024*1024) {
Darren Tuckerf4b43712004-08-29 16:28:39 +1000340 error("key file %.200s too large", filename);
Darren Tucker1f8311c2004-05-13 16:39:33 +1000341 close(fd);
342 return (NULL);
343 }
344 len = (size_t)st.st_size; /* truncated */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000345
Damien Miller95def091999-11-25 00:26:21 +1100346 buffer_init(&buffer);
Damien Miller5a6b4fe2001-12-21 14:56:54 +1100347 cp = buffer_append_space(&buffer, len);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000348
Damien Miller037a0dc1999-12-07 15:38:31 +1100349 if (read(fd, cp, (size_t) len) != (size_t) len) {
Damien Miller95def091999-11-25 00:26:21 +1100350 debug("Read from key file %.200s failed: %.100s", filename,
Damien Miller0bc1bd82000-11-13 22:57:25 +1100351 strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +1100352 buffer_free(&buffer);
Damien Miller037a0dc1999-12-07 15:38:31 +1100353 close(fd);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000354 return NULL;
Damien Miller95def091999-11-25 00:26:21 +1100355 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000356
Ben Lindstrom1170d712001-01-29 07:51:26 +0000357 /* Check that it is at least big enough to contain the ID string. */
358 if (len < sizeof(authfile_id_string)) {
Damien Miller058655c2001-10-10 15:03:36 +1000359 debug3("Not a RSA1 key file %.200s.", filename);
Damien Miller95def091999-11-25 00:26:21 +1100360 buffer_free(&buffer);
Ben Lindstromb257cca2001-03-05 04:59:27 +0000361 close(fd);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000362 return NULL;
Damien Miller95def091999-11-25 00:26:21 +1100363 }
Damien Miller5428f641999-11-25 11:54:57 +1100364 /*
365 * Make sure it begins with the id string. Consume the id string
366 * from the buffer.
367 */
Ben Lindstrom1170d712001-01-29 07:51:26 +0000368 for (i = 0; i < sizeof(authfile_id_string); i++)
369 if (buffer_get_char(&buffer) != authfile_id_string[i]) {
Damien Miller058655c2001-10-10 15:03:36 +1000370 debug3("Not a RSA1 key file %.200s.", filename);
Damien Miller95def091999-11-25 00:26:21 +1100371 buffer_free(&buffer);
Ben Lindstromb257cca2001-03-05 04:59:27 +0000372 close(fd);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000373 return NULL;
Damien Miller95def091999-11-25 00:26:21 +1100374 }
Ben Lindstromb257cca2001-03-05 04:59:27 +0000375
Damien Miller95def091999-11-25 00:26:21 +1100376 /* Read cipher type. */
377 cipher_type = buffer_get_char(&buffer);
378 (void) buffer_get_int(&buffer); /* Reserved data. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000379
Damien Miller95def091999-11-25 00:26:21 +1100380 /* Read the public key from the buffer. */
Ben Lindstromc5a7f4f2002-06-25 23:19:13 +0000381 (void) buffer_get_int(&buffer);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000382 prv = key_new_private(KEY_RSA1);
383
384 buffer_get_bignum(&buffer, prv->rsa->n);
385 buffer_get_bignum(&buffer, prv->rsa->e);
386 if (commentp)
387 *commentp = buffer_get_string(&buffer, NULL);
Damien Miller95def091999-11-25 00:26:21 +1100388 else
389 xfree(buffer_get_string(&buffer, NULL));
390
391 /* Check that it is a supported cipher. */
Damien Miller874d77b2000-10-14 16:23:11 +1100392 cipher = cipher_by_number(cipher_type);
393 if (cipher == NULL) {
394 debug("Unsupported cipher %d used in key file %.200s.",
395 cipher_type, filename);
Damien Miller95def091999-11-25 00:26:21 +1100396 buffer_free(&buffer);
397 goto fail;
398 }
399 /* Initialize space for decrypted data. */
400 buffer_init(&decrypted);
Damien Miller5a6b4fe2001-12-21 14:56:54 +1100401 cp = buffer_append_space(&decrypted, buffer_len(&buffer));
Damien Miller95def091999-11-25 00:26:21 +1100402
403 /* Rest of the buffer is encrypted. Decrypt it using the passphrase. */
Damien Miller963f6b22002-02-19 15:21:23 +1100404 cipher_set_key_string(&ciphercontext, cipher, passphrase,
405 CIPHER_DECRYPT);
406 cipher_crypt(&ciphercontext, cp,
Damien Miller708d21c2002-01-22 23:18:15 +1100407 buffer_ptr(&buffer), buffer_len(&buffer));
Damien Miller963f6b22002-02-19 15:21:23 +1100408 cipher_cleanup(&ciphercontext);
Damien Miller874d77b2000-10-14 16:23:11 +1100409 memset(&ciphercontext, 0, sizeof(ciphercontext));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000410 buffer_free(&buffer);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000411
Damien Miller95def091999-11-25 00:26:21 +1100412 check1 = buffer_get_char(&decrypted);
413 check2 = buffer_get_char(&decrypted);
414 if (check1 != buffer_get_char(&decrypted) ||
415 check2 != buffer_get_char(&decrypted)) {
416 if (strcmp(passphrase, "") != 0)
Ben Lindstromd0fca422001-03-26 13:44:06 +0000417 debug("Bad passphrase supplied for key file %.200s.",
418 filename);
Damien Miller95def091999-11-25 00:26:21 +1100419 /* Bad passphrase. */
420 buffer_free(&decrypted);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000421 goto fail;
Damien Miller95def091999-11-25 00:26:21 +1100422 }
423 /* Read the rest of the private key. */
Ben Lindstromd0fca422001-03-26 13:44:06 +0000424 buffer_get_bignum(&decrypted, prv->rsa->d);
425 buffer_get_bignum(&decrypted, prv->rsa->iqmp); /* u */
426 /* in SSL and SSH v1 p and q are exchanged */
427 buffer_get_bignum(&decrypted, prv->rsa->q); /* p */
428 buffer_get_bignum(&decrypted, prv->rsa->p); /* q */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000429
Ben Lindstromd0fca422001-03-26 13:44:06 +0000430 /* calculate p-1 and q-1 */
Damien Millerda755162002-01-22 23:09:22 +1100431 rsa_generate_additional_parameters(prv->rsa);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000432
Damien Miller95def091999-11-25 00:26:21 +1100433 buffer_free(&decrypted);
Damien Millered33d3b2003-03-15 11:36:18 +1100434
435 /* enable blinding */
436 if (RSA_blinding_on(prv->rsa, NULL) != 1) {
437 error("key_load_private_rsa1: RSA_blinding_on failed");
438 goto fail;
439 }
Ben Lindstromb257cca2001-03-05 04:59:27 +0000440 close(fd);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000441 return prv;
442
443fail:
444 if (commentp)
445 xfree(*commentp);
446 close(fd);
447 key_free(prv);
448 return NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000449}
Damien Millereba71ba2000-04-29 23:57:08 +1000450
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000451Key *
Ben Lindstromd0fca422001-03-26 13:44:06 +0000452key_load_private_pem(int fd, int type, const char *passphrase,
453 char **commentp)
Damien Millereba71ba2000-04-29 23:57:08 +1000454{
Damien Millereba71ba2000-04-29 23:57:08 +1000455 FILE *fp;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100456 EVP_PKEY *pk = NULL;
Ben Lindstromd0fca422001-03-26 13:44:06 +0000457 Key *prv = NULL;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100458 char *name = "<no key>";
Damien Millereba71ba2000-04-29 23:57:08 +1000459
Damien Millereba71ba2000-04-29 23:57:08 +1000460 fp = fdopen(fd, "r");
461 if (fp == NULL) {
Ben Lindstrom15f33862001-04-16 02:00:02 +0000462 error("fdopen failed: %s", strerror(errno));
Ben Lindstromb257cca2001-03-05 04:59:27 +0000463 close(fd);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000464 return NULL;
Damien Millereba71ba2000-04-29 23:57:08 +1000465 }
Damien Miller0bc1bd82000-11-13 22:57:25 +1100466 pk = PEM_read_PrivateKey(fp, NULL, NULL, (char *)passphrase);
467 if (pk == NULL) {
Ben Lindstrom648772f2001-04-19 20:47:10 +0000468 debug("PEM_read_PrivateKey failed");
Damien Miller0bc1bd82000-11-13 22:57:25 +1100469 (void)ERR_get_error();
Ben Lindstromd0fca422001-03-26 13:44:06 +0000470 } else if (pk->type == EVP_PKEY_RSA &&
Damien Miller9f0f5c62001-12-21 14:45:46 +1100471 (type == KEY_UNSPEC||type==KEY_RSA)) {
Ben Lindstromd0fca422001-03-26 13:44:06 +0000472 prv = key_new(KEY_UNSPEC);
473 prv->rsa = EVP_PKEY_get1_RSA(pk);
474 prv->type = KEY_RSA;
475 name = "rsa w/o comment";
Damien Miller0bc1bd82000-11-13 22:57:25 +1100476#ifdef DEBUG_PK
Ben Lindstromd0fca422001-03-26 13:44:06 +0000477 RSA_print_fp(stderr, prv->rsa, 8);
Damien Millereba71ba2000-04-29 23:57:08 +1000478#endif
Damien Millered33d3b2003-03-15 11:36:18 +1100479 if (RSA_blinding_on(prv->rsa, NULL) != 1) {
480 error("key_load_private_pem: RSA_blinding_on failed");
481 key_free(prv);
482 prv = NULL;
483 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000484 } else if (pk->type == EVP_PKEY_DSA &&
Damien Miller9f0f5c62001-12-21 14:45:46 +1100485 (type == KEY_UNSPEC||type==KEY_DSA)) {
Ben Lindstromd0fca422001-03-26 13:44:06 +0000486 prv = key_new(KEY_UNSPEC);
487 prv->dsa = EVP_PKEY_get1_DSA(pk);
488 prv->type = KEY_DSA;
489 name = "dsa w/o comment";
Damien Miller0bc1bd82000-11-13 22:57:25 +1100490#ifdef DEBUG_PK
Ben Lindstromd0fca422001-03-26 13:44:06 +0000491 DSA_print_fp(stderr, prv->dsa, 8);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100492#endif
Damien Miller0bc1bd82000-11-13 22:57:25 +1100493 } else {
494 error("PEM_read_PrivateKey: mismatch or "
495 "unknown EVP_PKEY save_type %d", pk->save_type);
496 }
497 fclose(fp);
498 if (pk != NULL)
499 EVP_PKEY_free(pk);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000500 if (prv != NULL && commentp)
501 *commentp = xstrdup(name);
502 debug("read PEM private key done: type %s",
503 prv ? key_type(prv) : "<unknown>");
504 return prv;
Damien Millereba71ba2000-04-29 23:57:08 +1000505}
506
Ben Lindstrombba81212001-06-25 05:01:22 +0000507static int
Ben Lindstromd0fca422001-03-26 13:44:06 +0000508key_perm_ok(int fd, const char *filename)
Damien Millereba71ba2000-04-29 23:57:08 +1000509{
Damien Millereba71ba2000-04-29 23:57:08 +1000510 struct stat st;
511
Ben Lindstrom7aff2612001-09-23 13:53:22 +0000512 if (fstat(fd, &st) < 0)
513 return 0;
514 /*
515 * if a key owned by the user is accessed, then we check the
516 * permissions of the file. if the key owned by a different user,
517 * then we don't care.
518 */
Damien Millerb70b61f2000-09-16 16:25:12 +1100519#ifdef HAVE_CYGWIN
Damien Millercb5e44a2000-09-29 12:12:36 +1100520 if (check_ntsec(filename))
Damien Millerb70b61f2000-09-16 16:25:12 +1100521#endif
Ben Lindstrom7aff2612001-09-23 13:53:22 +0000522 if ((st.st_uid == getuid()) && (st.st_mode & 077) != 0) {
Damien Millereba71ba2000-04-29 23:57:08 +1000523 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
524 error("@ WARNING: UNPROTECTED PRIVATE KEY FILE! @");
525 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
Ben Lindstrom7aff2612001-09-23 13:53:22 +0000526 error("Permissions 0%3.3o for '%s' are too open.",
Damien Miller04bd8b02003-05-25 14:38:33 +1000527 (u_int)st.st_mode & 0777, filename);
Damien Millereba71ba2000-04-29 23:57:08 +1000528 error("It is recommended that your private key files are NOT accessible by others.");
Ben Lindstromd0fca422001-03-26 13:44:06 +0000529 error("This private key will be ignored.");
Damien Millereba71ba2000-04-29 23:57:08 +1000530 return 0;
531 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000532 return 1;
533}
Ben Lindstromb257cca2001-03-05 04:59:27 +0000534
Ben Lindstromd0fca422001-03-26 13:44:06 +0000535Key *
536key_load_private_type(int type, const char *filename, const char *passphrase,
537 char **commentp)
538{
539 int fd;
540
541 fd = open(filename, O_RDONLY);
542 if (fd < 0)
543 return NULL;
544 if (!key_perm_ok(fd, filename)) {
Ben Lindstrom15f33862001-04-16 02:00:02 +0000545 error("bad permissions: ignore key: %s", filename);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000546 close(fd);
547 return NULL;
548 }
549 switch (type) {
550 case KEY_RSA1:
551 return key_load_private_rsa1(fd, filename, passphrase,
552 commentp);
553 /* closes fd */
Damien Millereba71ba2000-04-29 23:57:08 +1000554 break;
555 case KEY_DSA:
Damien Miller0bc1bd82000-11-13 22:57:25 +1100556 case KEY_RSA:
557 case KEY_UNSPEC:
Ben Lindstromd0fca422001-03-26 13:44:06 +0000558 return key_load_private_pem(fd, type, passphrase, commentp);
559 /* closes fd */
Ben Lindstromb257cca2001-03-05 04:59:27 +0000560 break;
Damien Millereba71ba2000-04-29 23:57:08 +1000561 default:
Ben Lindstromb257cca2001-03-05 04:59:27 +0000562 close(fd);
Damien Millereba71ba2000-04-29 23:57:08 +1000563 break;
564 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000565 return NULL;
566}
567
568Key *
569key_load_private(const char *filename, const char *passphrase,
570 char **commentp)
571{
Ben Lindstrom322915d2001-06-05 20:46:32 +0000572 Key *pub, *prv;
Ben Lindstromd0fca422001-03-26 13:44:06 +0000573 int fd;
574
575 fd = open(filename, O_RDONLY);
576 if (fd < 0)
577 return NULL;
578 if (!key_perm_ok(fd, filename)) {
Ben Lindstrom15f33862001-04-16 02:00:02 +0000579 error("bad permissions: ignore key: %s", filename);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000580 close(fd);
581 return NULL;
582 }
583 pub = key_load_public_rsa1(fd, filename, commentp);
584 lseek(fd, (off_t) 0, SEEK_SET); /* rewind */
585 if (pub == NULL) {
586 /* closes fd */
Ben Lindstrom322915d2001-06-05 20:46:32 +0000587 prv = key_load_private_pem(fd, KEY_UNSPEC, passphrase, NULL);
588 /* use the filename as a comment for PEM */
589 if (commentp && prv)
Ben Lindstrom2d0356f2001-06-05 21:13:57 +0000590 *commentp = xstrdup(filename);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000591 } else {
592 /* it's a SSH v1 key if the public key part is readable */
593 key_free(pub);
594 /* closes fd */
Ben Lindstrom322915d2001-06-05 20:46:32 +0000595 prv = key_load_private_rsa1(fd, filename, passphrase, NULL);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000596 }
Ben Lindstrom322915d2001-06-05 20:46:32 +0000597 return prv;
Damien Millereba71ba2000-04-29 23:57:08 +1000598}
Damien Millere4340be2000-09-16 13:29:08 +1100599
Ben Lindstrombba81212001-06-25 05:01:22 +0000600static int
Ben Lindstromd0fca422001-03-26 13:44:06 +0000601key_try_load_public(Key *k, const char *filename, char **commentp)
Damien Millere4340be2000-09-16 13:29:08 +1100602{
603 FILE *f;
Ben Lindstromd0fca422001-03-26 13:44:06 +0000604 char line[4096];
Damien Millere4340be2000-09-16 13:29:08 +1100605 char *cp;
606
607 f = fopen(filename, "r");
608 if (f != NULL) {
609 while (fgets(line, sizeof(line), f)) {
610 line[sizeof(line)-1] = '\0';
611 cp = line;
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +0000612 switch (*cp) {
Damien Millere4340be2000-09-16 13:29:08 +1100613 case '#':
614 case '\n':
615 case '\0':
616 continue;
617 }
618 /* Skip leading whitespace. */
619 for (; *cp && (*cp == ' ' || *cp == '\t'); cp++)
620 ;
621 if (*cp) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100622 if (key_read(k, &cp) == 1) {
Damien Millere4340be2000-09-16 13:29:08 +1100623 if (commentp)
624 *commentp=xstrdup(filename);
625 fclose(f);
626 return 1;
627 }
628 }
629 }
630 fclose(f);
631 }
632 return 0;
633}
634
Ben Lindstromd0fca422001-03-26 13:44:06 +0000635/* load public key from ssh v1 private or any pubkey file */
636Key *
637key_load_public(const char *filename, char **commentp)
Damien Millere4340be2000-09-16 13:29:08 +1100638{
Ben Lindstromd0fca422001-03-26 13:44:06 +0000639 Key *pub;
640 char file[MAXPATHLEN];
Damien Millere4340be2000-09-16 13:29:08 +1100641
Damien Millerdb274722003-05-14 13:45:22 +1000642 /* try rsa1 private key */
Ben Lindstromd0fca422001-03-26 13:44:06 +0000643 pub = key_load_public_type(KEY_RSA1, filename, commentp);
644 if (pub != NULL)
645 return pub;
Damien Millerdb274722003-05-14 13:45:22 +1000646
647 /* try rsa1 public key */
648 pub = key_new(KEY_RSA1);
649 if (key_try_load_public(pub, filename, commentp) == 1)
650 return pub;
651 key_free(pub);
652
653 /* try ssh2 public key */
Ben Lindstromd0fca422001-03-26 13:44:06 +0000654 pub = key_new(KEY_UNSPEC);
655 if (key_try_load_public(pub, filename, commentp) == 1)
656 return pub;
657 if ((strlcpy(file, filename, sizeof file) < sizeof(file)) &&
658 (strlcat(file, ".pub", sizeof file) < sizeof(file)) &&
659 (key_try_load_public(pub, file, commentp) == 1))
660 return pub;
661 key_free(pub);
662 return NULL;
Damien Millere4340be2000-09-16 13:29:08 +1100663}