blob: 66bdc0ef190d5e7e8ddab8b095e9337d28777208 [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"
Damien Millere4340be2000-09-16 13:29:08 +110039RCSID("$OpenBSD: authfile.c,v 1.19 2000/09/07 20:27:49 deraadt Exp $");
Damien Millerd4a8b7e1999-10-27 13:42:43 +100040
41#include <openssl/bn.h>
Damien Millereba71ba2000-04-29 23:57:08 +100042#include <openssl/dsa.h>
43#include <openssl/rsa.h>
44#include <openssl/pem.h>
45#include <openssl/evp.h>
46
Damien Millerd4a8b7e1999-10-27 13:42:43 +100047#include "xmalloc.h"
48#include "buffer.h"
49#include "bufaux.h"
50#include "cipher.h"
51#include "ssh.h"
Damien Millereba71ba2000-04-29 23:57:08 +100052#include "key.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100053
54/* Version identification string for identity files. */
55#define AUTHFILE_ID_STRING "SSH PRIVATE KEY FILE FORMAT 1.1\n"
56
Damien Miller5428f641999-11-25 11:54:57 +110057/*
58 * Saves the authentication (private) key in a file, encrypting it with
59 * passphrase. The identification of the file (lowest 64 bits of n) will
60 * precede the key to provide identification of the key without needing a
61 * passphrase.
62 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100063
64int
Damien Millereba71ba2000-04-29 23:57:08 +100065save_private_key_rsa(const char *filename, const char *passphrase,
66 RSA *key, const char *comment)
Damien Millerd4a8b7e1999-10-27 13:42:43 +100067{
Damien Miller95def091999-11-25 00:26:21 +110068 Buffer buffer, encrypted;
69 char buf[100], *cp;
Damien Miller037a0dc1999-12-07 15:38:31 +110070 int fd, i;
Damien Miller95def091999-11-25 00:26:21 +110071 CipherContext cipher;
72 int cipher_type;
73 u_int32_t rand;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100074
Damien Miller5428f641999-11-25 11:54:57 +110075 /*
76 * If the passphrase is empty, use SSH_CIPHER_NONE to ease converting
77 * to another cipher; otherwise use SSH_AUTHFILE_CIPHER.
78 */
Damien Miller95def091999-11-25 00:26:21 +110079 if (strcmp(passphrase, "") == 0)
80 cipher_type = SSH_CIPHER_NONE;
81 else
82 cipher_type = SSH_AUTHFILE_CIPHER;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100083
Damien Miller95def091999-11-25 00:26:21 +110084 /* This buffer is used to built the secret part of the private key. */
85 buffer_init(&buffer);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100086
Damien Miller95def091999-11-25 00:26:21 +110087 /* Put checkbytes for checking passphrase validity. */
88 rand = arc4random();
89 buf[0] = rand & 0xff;
90 buf[1] = (rand >> 8) & 0xff;
91 buf[2] = buf[0];
92 buf[3] = buf[1];
93 buffer_append(&buffer, buf, 4);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100094
Damien Miller5428f641999-11-25 11:54:57 +110095 /*
96 * Store the private key (n and e will not be stored because they
97 * will be stored in plain text, and storing them also in encrypted
98 * format would just give known plaintext).
99 */
Damien Miller95def091999-11-25 00:26:21 +1100100 buffer_put_bignum(&buffer, key->d);
101 buffer_put_bignum(&buffer, key->iqmp);
102 buffer_put_bignum(&buffer, key->q); /* reverse from SSL p */
103 buffer_put_bignum(&buffer, key->p); /* reverse from SSL q */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000104
Damien Miller95def091999-11-25 00:26:21 +1100105 /* Pad the part to be encrypted until its size is a multiple of 8. */
106 while (buffer_len(&buffer) % 8 != 0)
107 buffer_put_char(&buffer, 0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000108
Damien Miller95def091999-11-25 00:26:21 +1100109 /* This buffer will be used to contain the data in the file. */
110 buffer_init(&encrypted);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000111
Damien Miller95def091999-11-25 00:26:21 +1100112 /* First store keyfile id string. */
113 cp = AUTHFILE_ID_STRING;
114 for (i = 0; cp[i]; i++)
115 buffer_put_char(&encrypted, cp[i]);
116 buffer_put_char(&encrypted, 0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000117
Damien Miller95def091999-11-25 00:26:21 +1100118 /* Store cipher type. */
119 buffer_put_char(&encrypted, cipher_type);
120 buffer_put_int(&encrypted, 0); /* For future extension */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000121
Damien Miller95def091999-11-25 00:26:21 +1100122 /* Store public key. This will be in plain text. */
123 buffer_put_int(&encrypted, BN_num_bits(key->n));
124 buffer_put_bignum(&encrypted, key->n);
125 buffer_put_bignum(&encrypted, key->e);
126 buffer_put_string(&encrypted, comment, strlen(comment));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000127
Damien Miller95def091999-11-25 00:26:21 +1100128 /* Allocate space for the private part of the key in the buffer. */
129 buffer_append_space(&encrypted, &cp, buffer_len(&buffer));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000130
Damien Miller1383bd82000-04-06 12:32:37 +1000131 cipher_set_key_string(&cipher, cipher_type, passphrase);
Damien Miller95def091999-11-25 00:26:21 +1100132 cipher_encrypt(&cipher, (unsigned char *) cp,
133 (unsigned char *) buffer_ptr(&buffer),
134 buffer_len(&buffer));
135 memset(&cipher, 0, sizeof(cipher));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000136
Damien Miller95def091999-11-25 00:26:21 +1100137 /* Destroy temporary data. */
138 memset(buf, 0, sizeof(buf));
139 buffer_free(&buffer);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000140
Damien Miller037a0dc1999-12-07 15:38:31 +1100141 fd = open(filename, O_WRONLY | O_CREAT | O_TRUNC, 0600);
142 if (fd < 0)
Damien Miller95def091999-11-25 00:26:21 +1100143 return 0;
Damien Miller037a0dc1999-12-07 15:38:31 +1100144 if (write(fd, buffer_ptr(&encrypted), buffer_len(&encrypted)) !=
Damien Miller95def091999-11-25 00:26:21 +1100145 buffer_len(&encrypted)) {
146 debug("Write to key file %.200s failed: %.100s", filename,
147 strerror(errno));
148 buffer_free(&encrypted);
Damien Miller037a0dc1999-12-07 15:38:31 +1100149 close(fd);
Damien Miller95def091999-11-25 00:26:21 +1100150 remove(filename);
151 return 0;
152 }
Damien Miller037a0dc1999-12-07 15:38:31 +1100153 close(fd);
Damien Miller95def091999-11-25 00:26:21 +1100154 buffer_free(&encrypted);
155 return 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000156}
157
Damien Millereba71ba2000-04-29 23:57:08 +1000158/* save DSA key in OpenSSL PEM format */
159
160int
161save_private_key_dsa(const char *filename, const char *passphrase,
162 DSA *dsa, const char *comment)
163{
164 FILE *fp;
165 int fd;
166 int success = 1;
167 int len = strlen(passphrase);
168
169 if (len > 0 && len <= 4) {
170 error("passphrase too short: %d bytes", len);
171 errno = 0;
172 return 0;
173 }
174 fd = open(filename, O_WRONLY | O_CREAT | O_TRUNC, 0600);
175 if (fd < 0) {
176 debug("open %s failed", filename);
177 return 0;
178 }
179 fp = fdopen(fd, "w");
180 if (fp == NULL ) {
181 debug("fdopen %s failed", filename);
182 close(fd);
183 return 0;
184 }
185 if (len > 0) {
186 if (!PEM_write_DSAPrivateKey(fp, dsa, EVP_des_ede3_cbc(),
187 (char *)passphrase, strlen(passphrase), NULL, NULL))
188 success = 0;
189 } else {
190 if (!PEM_write_DSAPrivateKey(fp, dsa, NULL,
191 NULL, 0, NULL, NULL))
192 success = 0;
193 }
194 fclose(fp);
195 return success;
196}
197
198int
199save_private_key(const char *filename, const char *passphrase, Key *key,
200 const char *comment)
201{
202 switch (key->type) {
203 case KEY_RSA:
204 return save_private_key_rsa(filename, passphrase, key->rsa, comment);
205 break;
206 case KEY_DSA:
207 return save_private_key_dsa(filename, passphrase, key->dsa, comment);
208 break;
209 default:
210 break;
211 }
212 return 0;
213}
214
Damien Miller5428f641999-11-25 11:54:57 +1100215/*
216 * Loads the public part of the key file. Returns 0 if an error was
217 * encountered (the file does not exist or is not readable), and non-zero
218 * otherwise.
219 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000220
221int
Damien Millereba71ba2000-04-29 23:57:08 +1000222load_public_key_rsa(const char *filename, RSA * pub, char **comment_return)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000223{
Damien Miller037a0dc1999-12-07 15:38:31 +1100224 int fd, i;
Damien Miller95def091999-11-25 00:26:21 +1100225 off_t len;
226 Buffer buffer;
227 char *cp;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000228
Damien Miller037a0dc1999-12-07 15:38:31 +1100229 fd = open(filename, O_RDONLY);
230 if (fd < 0)
Damien Miller95def091999-11-25 00:26:21 +1100231 return 0;
Damien Miller037a0dc1999-12-07 15:38:31 +1100232 len = lseek(fd, (off_t) 0, SEEK_END);
233 lseek(fd, (off_t) 0, SEEK_SET);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000234
Damien Miller95def091999-11-25 00:26:21 +1100235 buffer_init(&buffer);
236 buffer_append_space(&buffer, &cp, len);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000237
Damien Miller037a0dc1999-12-07 15:38:31 +1100238 if (read(fd, cp, (size_t) len) != (size_t) len) {
Damien Miller95def091999-11-25 00:26:21 +1100239 debug("Read from key file %.200s failed: %.100s", filename,
Damien Millereba71ba2000-04-29 23:57:08 +1000240 strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +1100241 buffer_free(&buffer);
Damien Miller037a0dc1999-12-07 15:38:31 +1100242 close(fd);
Damien Miller95def091999-11-25 00:26:21 +1100243 return 0;
244 }
Damien Miller037a0dc1999-12-07 15:38:31 +1100245 close(fd);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000246
Damien Miller95def091999-11-25 00:26:21 +1100247 /* Check that it is at least big enought to contain the ID string. */
248 if (len < strlen(AUTHFILE_ID_STRING) + 1) {
249 debug("Bad key file %.200s.", filename);
250 buffer_free(&buffer);
251 return 0;
252 }
Damien Miller5428f641999-11-25 11:54:57 +1100253 /*
254 * Make sure it begins with the id string. Consume the id string
255 * from the buffer.
256 */
Damien Miller95def091999-11-25 00:26:21 +1100257 for (i = 0; i < (unsigned int) strlen(AUTHFILE_ID_STRING) + 1; i++)
Damien Miller037a0dc1999-12-07 15:38:31 +1100258 if (buffer_get_char(&buffer) != (u_char) AUTHFILE_ID_STRING[i]) {
Damien Miller95def091999-11-25 00:26:21 +1100259 debug("Bad key file %.200s.", filename);
260 buffer_free(&buffer);
261 return 0;
262 }
263 /* Skip cipher type and reserved data. */
264 (void) buffer_get_char(&buffer); /* cipher type */
265 (void) buffer_get_int(&buffer); /* reserved */
266
267 /* Read the public key from the buffer. */
268 buffer_get_int(&buffer);
Damien Millereba71ba2000-04-29 23:57:08 +1000269 /* XXX alloc */
270 if (pub->n == NULL)
271 pub->n = BN_new();
Damien Miller95def091999-11-25 00:26:21 +1100272 buffer_get_bignum(&buffer, pub->n);
Damien Millereba71ba2000-04-29 23:57:08 +1000273 /* XXX alloc */
274 if (pub->e == NULL)
275 pub->e = BN_new();
Damien Miller95def091999-11-25 00:26:21 +1100276 buffer_get_bignum(&buffer, pub->e);
277 if (comment_return)
278 *comment_return = buffer_get_string(&buffer, NULL);
279 /* The encrypted private part is not parsed by this function. */
280
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000281 buffer_free(&buffer);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000282
Damien Miller95def091999-11-25 00:26:21 +1100283 return 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000284}
285
Damien Millere4340be2000-09-16 13:29:08 +1100286/* load public key from private-key file */
Damien Millereba71ba2000-04-29 23:57:08 +1000287int
288load_public_key(const char *filename, Key * key, char **comment_return)
289{
290 switch (key->type) {
291 case KEY_RSA:
292 return load_public_key_rsa(filename, key->rsa, comment_return);
293 break;
294 case KEY_DSA:
295 default:
296 break;
297 }
298 return 0;
299}
300
Damien Miller5428f641999-11-25 11:54:57 +1100301/*
302 * Loads the private key from the file. Returns 0 if an error is encountered
303 * (file does not exist or is not readable, or passphrase is bad). This
304 * initializes the private key.
305 * Assumes we are called under uid of the owner of the file.
306 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000307
308int
Damien Millereba71ba2000-04-29 23:57:08 +1000309load_private_key_rsa(int fd, const char *filename,
310 const char *passphrase, RSA * prv, char **comment_return)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000311{
Damien Millereba71ba2000-04-29 23:57:08 +1000312 int i, check1, check2, cipher_type;
Damien Miller95def091999-11-25 00:26:21 +1100313 off_t len;
314 Buffer buffer, decrypted;
315 char *cp;
316 CipherContext cipher;
317 BN_CTX *ctx;
318 BIGNUM *aux;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000319
Damien Miller037a0dc1999-12-07 15:38:31 +1100320 len = lseek(fd, (off_t) 0, SEEK_END);
321 lseek(fd, (off_t) 0, SEEK_SET);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000322
Damien Miller95def091999-11-25 00:26:21 +1100323 buffer_init(&buffer);
324 buffer_append_space(&buffer, &cp, len);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000325
Damien Miller037a0dc1999-12-07 15:38:31 +1100326 if (read(fd, cp, (size_t) len) != (size_t) len) {
Damien Miller95def091999-11-25 00:26:21 +1100327 debug("Read from key file %.200s failed: %.100s", filename,
328 strerror(errno));
329 buffer_free(&buffer);
Damien Miller037a0dc1999-12-07 15:38:31 +1100330 close(fd);
Damien Miller95def091999-11-25 00:26:21 +1100331 return 0;
332 }
Damien Miller037a0dc1999-12-07 15:38:31 +1100333 close(fd);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000334
Damien Miller95def091999-11-25 00:26:21 +1100335 /* Check that it is at least big enought to contain the ID string. */
336 if (len < strlen(AUTHFILE_ID_STRING) + 1) {
337 debug("Bad key file %.200s.", filename);
338 buffer_free(&buffer);
339 return 0;
340 }
Damien Miller5428f641999-11-25 11:54:57 +1100341 /*
342 * Make sure it begins with the id string. Consume the id string
343 * from the buffer.
344 */
Damien Miller95def091999-11-25 00:26:21 +1100345 for (i = 0; i < (unsigned int) strlen(AUTHFILE_ID_STRING) + 1; i++)
346 if (buffer_get_char(&buffer) != (unsigned char) AUTHFILE_ID_STRING[i]) {
347 debug("Bad key file %.200s.", filename);
348 buffer_free(&buffer);
349 return 0;
350 }
351 /* Read cipher type. */
352 cipher_type = buffer_get_char(&buffer);
353 (void) buffer_get_int(&buffer); /* Reserved data. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000354
Damien Miller95def091999-11-25 00:26:21 +1100355 /* Read the public key from the buffer. */
356 buffer_get_int(&buffer);
357 prv->n = BN_new();
358 buffer_get_bignum(&buffer, prv->n);
359 prv->e = BN_new();
360 buffer_get_bignum(&buffer, prv->e);
361 if (comment_return)
362 *comment_return = buffer_get_string(&buffer, NULL);
363 else
364 xfree(buffer_get_string(&buffer, NULL));
365
366 /* Check that it is a supported cipher. */
Damien Miller1383bd82000-04-06 12:32:37 +1000367 if (((cipher_mask1() | SSH_CIPHER_NONE | SSH_AUTHFILE_CIPHER) &
Damien Miller95def091999-11-25 00:26:21 +1100368 (1 << cipher_type)) == 0) {
369 debug("Unsupported cipher %.100s used in key file %.200s.",
370 cipher_name(cipher_type), filename);
371 buffer_free(&buffer);
372 goto fail;
373 }
374 /* Initialize space for decrypted data. */
375 buffer_init(&decrypted);
376 buffer_append_space(&decrypted, &cp, buffer_len(&buffer));
377
378 /* Rest of the buffer is encrypted. Decrypt it using the passphrase. */
Damien Miller1383bd82000-04-06 12:32:37 +1000379 cipher_set_key_string(&cipher, cipher_type, passphrase);
Damien Miller95def091999-11-25 00:26:21 +1100380 cipher_decrypt(&cipher, (unsigned char *) cp,
381 (unsigned char *) buffer_ptr(&buffer),
382 buffer_len(&buffer));
383
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000384 buffer_free(&buffer);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000385
Damien Miller95def091999-11-25 00:26:21 +1100386 check1 = buffer_get_char(&decrypted);
387 check2 = buffer_get_char(&decrypted);
388 if (check1 != buffer_get_char(&decrypted) ||
389 check2 != buffer_get_char(&decrypted)) {
390 if (strcmp(passphrase, "") != 0)
391 debug("Bad passphrase supplied for key file %.200s.", filename);
392 /* Bad passphrase. */
393 buffer_free(&decrypted);
394fail:
395 BN_clear_free(prv->n);
Damien Millereba71ba2000-04-29 23:57:08 +1000396 prv->n = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100397 BN_clear_free(prv->e);
Damien Millereba71ba2000-04-29 23:57:08 +1000398 prv->e = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100399 if (comment_return)
400 xfree(*comment_return);
401 return 0;
402 }
403 /* Read the rest of the private key. */
404 prv->d = BN_new();
405 buffer_get_bignum(&decrypted, prv->d);
406 prv->iqmp = BN_new();
407 buffer_get_bignum(&decrypted, prv->iqmp); /* u */
408 /* in SSL and SSH p and q are exchanged */
409 prv->q = BN_new();
410 buffer_get_bignum(&decrypted, prv->q); /* p */
411 prv->p = BN_new();
412 buffer_get_bignum(&decrypted, prv->p); /* q */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000413
Damien Miller95def091999-11-25 00:26:21 +1100414 ctx = BN_CTX_new();
415 aux = BN_new();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000416
Damien Miller95def091999-11-25 00:26:21 +1100417 BN_sub(aux, prv->q, BN_value_one());
418 prv->dmq1 = BN_new();
419 BN_mod(prv->dmq1, prv->d, aux, ctx);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000420
Damien Miller95def091999-11-25 00:26:21 +1100421 BN_sub(aux, prv->p, BN_value_one());
422 prv->dmp1 = BN_new();
423 BN_mod(prv->dmp1, prv->d, aux, ctx);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000424
Damien Miller95def091999-11-25 00:26:21 +1100425 BN_clear_free(aux);
426 BN_CTX_free(ctx);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000427
Damien Miller95def091999-11-25 00:26:21 +1100428 buffer_free(&decrypted);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000429
Damien Miller95def091999-11-25 00:26:21 +1100430 return 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000431}
Damien Millereba71ba2000-04-29 23:57:08 +1000432
433int
434load_private_key_dsa(int fd, const char *passphrase, Key *k, char **comment_return)
435{
436 DSA *dsa;
437 BIO *in;
438 FILE *fp;
439
440 in = BIO_new(BIO_s_file());
441 if (in == NULL) {
442 error("BIO_new failed");
443 return 0;
444 }
445 fp = fdopen(fd, "r");
446 if (fp == NULL) {
447 error("fdopen failed");
448 return 0;
449 }
450 BIO_set_fp(in, fp, BIO_NOCLOSE);
451 dsa = PEM_read_bio_DSAPrivateKey(in, NULL, NULL, (char *)passphrase);
452 if (dsa == NULL) {
453 debug("PEM_read_bio_DSAPrivateKey failed");
454 } else {
455 /* replace k->dsa with loaded key */
456 DSA_free(k->dsa);
457 k->dsa = dsa;
458 }
459 BIO_free(in);
460 fclose(fp);
461 if (comment_return)
462 *comment_return = xstrdup("dsa w/o comment");
463 debug("read DSA private key done");
464#ifdef DEBUG_DSS
465 DSA_print_fp(stderr, dsa, 8);
466#endif
467 return dsa != NULL ? 1 : 0;
468}
469
470int
471load_private_key(const char *filename, const char *passphrase, Key *key,
472 char **comment_return)
473{
474 int fd;
475 int ret = 0;
476 struct stat st;
477
478 fd = open(filename, O_RDONLY);
479 if (fd < 0)
480 return 0;
481
Damien Millerb70b61f2000-09-16 16:25:12 +1100482 /* check owner and modes. */
483#ifdef HAVE_CYGWIN
484 if (check_ntsec(filename))
485#endif
Damien Millereba71ba2000-04-29 23:57:08 +1000486 if (fstat(fd, &st) < 0 ||
487 (st.st_uid != 0 && st.st_uid != getuid()) ||
488 (st.st_mode & 077) != 0) {
489 close(fd);
490 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
491 error("@ WARNING: UNPROTECTED PRIVATE KEY FILE! @");
492 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
493 error("Bad ownership or mode(0%3.3o) for '%s'.",
494 st.st_mode & 0777, filename);
495 error("It is recommended that your private key files are NOT accessible by others.");
496 return 0;
497 }
498 switch (key->type) {
499 case KEY_RSA:
500 if (key->rsa->e != NULL) {
501 BN_clear_free(key->rsa->e);
502 key->rsa->e = NULL;
503 }
504 if (key->rsa->n != NULL) {
505 BN_clear_free(key->rsa->n);
506 key->rsa->n = NULL;
507 }
508 ret = load_private_key_rsa(fd, filename, passphrase,
509 key->rsa, comment_return);
510 break;
511 case KEY_DSA:
512 ret = load_private_key_dsa(fd, passphrase, key, comment_return);
513 default:
514 break;
515 }
516 close(fd);
517 return ret;
518}
Damien Millere4340be2000-09-16 13:29:08 +1100519
520int
521do_load_public_key(const char *filename, Key *k, char **commentp)
522{
523 FILE *f;
524 unsigned int bits;
525 char line[1024];
526 char *cp;
527
528 f = fopen(filename, "r");
529 if (f != NULL) {
530 while (fgets(line, sizeof(line), f)) {
531 line[sizeof(line)-1] = '\0';
532 cp = line;
533 switch(*cp){
534 case '#':
535 case '\n':
536 case '\0':
537 continue;
538 }
539 /* Skip leading whitespace. */
540 for (; *cp && (*cp == ' ' || *cp == '\t'); cp++)
541 ;
542 if (*cp) {
543 bits = key_read(k, &cp);
544 if (bits != 0) {
545 if (commentp)
546 *commentp=xstrdup(filename);
547 fclose(f);
548 return 1;
549 }
550 }
551 }
552 fclose(f);
553 }
554 return 0;
555}
556
557/* load public key from pubkey file */
558int
559try_load_public_key(const char *filename, Key *k, char **commentp)
560{
561 char pub[MAXPATHLEN];
562
563 if (do_load_public_key(filename, k, commentp) == 1)
564 return 1;
565 if (strlcpy(pub, filename, sizeof pub) >= MAXPATHLEN)
566 return 0;
567 if (strlcat(pub, ".pub", sizeof pub) >= MAXPATHLEN)
568 return 0;
569 if (do_load_public_key(pub, k, commentp) == 1)
570 return 1;
571 return 0;
572}