]> andersk Git - openssh.git/blame - authfile.c
- djm@cvs.openbsd.org 2004/08/23 11:48:09
[openssh.git] / authfile.c
CommitLineData
8efc0c15 1/*
5260325f 2 * Author: Tatu Ylonen <ylo@cs.hut.fi>
5260325f 3 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4 * All rights reserved
5260325f 5 * This file contains functions for reading and writing identity files, and
6 * for reading the passphrase from the user.
6ae2364d 7 *
bcbf86ec 8 * As far as I am concerned, the code I have written for this software
9 * can be used freely for any purpose. Any derived versions of this
10 * software must be clearly marked as such, and if the derived work is
11 * incompatible with the protocol description in the RFC file, it must be
12 * called by a name other than "ssh" or "Secure Shell".
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.
5260325f 36 */
8efc0c15 37
38#include "includes.h"
528afafa 39RCSID("$OpenBSD: authfile.c,v 1.58 2004/08/23 11:48:09 djm Exp $");
8efc0c15 40
fa08c86b 41#include <openssl/err.h>
a306f2dd 42#include <openssl/evp.h>
42f11eb2 43#include <openssl/pem.h>
a306f2dd 44
42f11eb2 45#include "cipher.h"
8efc0c15 46#include "xmalloc.h"
47#include "buffer.h"
48#include "bufaux.h"
a306f2dd 49#include "key.h"
42f11eb2 50#include "ssh.h"
51#include "log.h"
5ca51e19 52#include "authfile.h"
cf184a44 53#include "rsa.h"
8efc0c15 54
aeaa3d9e 55/* Version identification string for SSH v1 identity files. */
7e2183c0 56static const char authfile_id_string[] =
57 "SSH PRIVATE KEY FILE FORMAT 1.1\n";
8efc0c15 58
aa3378df 59/*
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 */
8efc0c15 65
396c147e 66static int
aeaa3d9e 67key_save_private_rsa1(Key *key, const char *filename, const char *passphrase,
68 const char *comment)
8efc0c15 69{
5260325f 70 Buffer buffer, encrypted;
20905a8e 71 u_char buf[100], *cp;
3ee832e5 72 int fd, i, cipher_num;
94ec8c6b 73 CipherContext ciphercontext;
74 Cipher *cipher;
ca75d7de 75 u_int32_t rnd;
5260325f 76
aa3378df 77 /*
78 * If the passphrase is empty, use SSH_CIPHER_NONE to ease converting
79 * to another cipher; otherwise use SSH_AUTHFILE_CIPHER.
80 */
3ee832e5 81 cipher_num = (strcmp(passphrase, "") == 0) ?
82 SSH_CIPHER_NONE : SSH_AUTHFILE_CIPHER;
83 if ((cipher = cipher_by_number(cipher_num)) == NULL)
94ec8c6b 84 fatal("save_private_key_rsa: bad cipher");
5260325f 85
86 /* This buffer is used to built the secret part of the private key. */
87 buffer_init(&buffer);
88
89 /* Put checkbytes for checking passphrase validity. */
ca75d7de 90 rnd = arc4random();
91 buf[0] = rnd & 0xff;
92 buf[1] = (rnd >> 8) & 0xff;
5260325f 93 buf[2] = buf[0];
94 buf[3] = buf[1];
95 buffer_append(&buffer, buf, 4);
96
aa3378df 97 /*
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 */
aeaa3d9e 102 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 */
5260325f 106
107 /* 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);
110
111 /* This buffer will be used to contain the data in the file. */
112 buffer_init(&encrypted);
113
114 /* First store keyfile id string. */
7e2183c0 115 for (i = 0; authfile_id_string[i]; i++)
116 buffer_put_char(&encrypted, authfile_id_string[i]);
5260325f 117 buffer_put_char(&encrypted, 0);
118
119 /* Store cipher type. */
3ee832e5 120 buffer_put_char(&encrypted, cipher_num);
5260325f 121 buffer_put_int(&encrypted, 0); /* For future extension */
122
123 /* Store public key. This will be in plain text. */
aeaa3d9e 124 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);
449c5ba5 127 buffer_put_cstring(&encrypted, comment);
5260325f 128
129 /* Allocate space for the private part of the key in the buffer. */
6c0fa2b1 130 cp = buffer_append_space(&encrypted, buffer_len(&buffer));
5260325f 131
3ee832e5 132 cipher_set_key_string(&ciphercontext, cipher, passphrase,
133 CIPHER_ENCRYPT);
134 cipher_crypt(&ciphercontext, cp,
20905a8e 135 buffer_ptr(&buffer), buffer_len(&buffer));
3ee832e5 136 cipher_cleanup(&ciphercontext);
94ec8c6b 137 memset(&ciphercontext, 0, sizeof(ciphercontext));
5260325f 138
139 /* Destroy temporary data. */
140 memset(buf, 0, sizeof(buf));
141 buffer_free(&buffer);
142
a408af76 143 fd = open(filename, O_WRONLY | O_CREAT | O_TRUNC, 0600);
58cfa257 144 if (fd < 0) {
145 error("open %s failed: %s.", filename, strerror(errno));
1bd71826 146 buffer_free(&encrypted);
5260325f 147 return 0;
58cfa257 148 }
a408af76 149 if (write(fd, buffer_ptr(&encrypted), buffer_len(&encrypted)) !=
5260325f 150 buffer_len(&encrypted)) {
58cfa257 151 error("write to key file %s failed: %s", filename,
184eed6a 152 strerror(errno));
5260325f 153 buffer_free(&encrypted);
a408af76 154 close(fd);
77bb0bca 155 unlink(filename);
5260325f 156 return 0;
157 }
a408af76 158 close(fd);
5260325f 159 buffer_free(&encrypted);
160 return 1;
8efc0c15 161}
162
aeaa3d9e 163/* save SSH v2 key in OpenSSL PEM format */
396c147e 164static int
aeaa3d9e 165key_save_private_pem(Key *key, const char *filename, const char *_passphrase,
166 const char *comment)
a306f2dd 167{
168 FILE *fp;
169 int fd;
fa08c86b 170 int success = 0;
171 int len = strlen(_passphrase);
c66f9d0e 172 u_char *passphrase = (len > 0) ? (u_char *)_passphrase : NULL;
714954dc 173 const EVP_CIPHER *cipher = (len > 0) ? EVP_des_ede3_cbc() : NULL;
a306f2dd 174
175 if (len > 0 && len <= 4) {
58cfa257 176 error("passphrase too short: have %d bytes, need > 4", len);
a306f2dd 177 return 0;
178 }
179 fd = open(filename, O_WRONLY | O_CREAT | O_TRUNC, 0600);
180 if (fd < 0) {
58cfa257 181 error("open %s failed: %s.", filename, strerror(errno));
a306f2dd 182 return 0;
183 }
184 fp = fdopen(fd, "w");
185 if (fp == NULL ) {
58cfa257 186 error("fdopen %s failed: %s.", filename, strerror(errno));
a306f2dd 187 close(fd);
188 return 0;
189 }
fa08c86b 190 switch (key->type) {
569807fb 191 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;
a306f2dd 199 }
200 fclose(fp);
201 return success;
202}
203
204int
aeaa3d9e 205key_save_private(Key *key, const char *filename, const char *passphrase,
a306f2dd 206 const char *comment)
207{
208 switch (key->type) {
fa08c86b 209 case KEY_RSA1:
aeaa3d9e 210 return key_save_private_rsa1(key, filename, passphrase,
211 comment);
a306f2dd 212 break;
213 case KEY_DSA:
fa08c86b 214 case KEY_RSA:
aeaa3d9e 215 return key_save_private_pem(key, filename, passphrase,
216 comment);
a306f2dd 217 break;
218 default:
219 break;
220 }
58cfa257 221 error("key_save_private: cannot save key type %d", key->type);
a306f2dd 222 return 0;
223}
224
aa3378df 225/*
aeaa3d9e 226 * 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
aa3378df 228 * otherwise.
229 */
8efc0c15 230
396c147e 231static Key *
aeaa3d9e 232key_load_public_rsa1(int fd, const char *filename, char **commentp)
8efc0c15 233{
5260325f 234 Buffer buffer;
aeaa3d9e 235 Key *pub;
378d9956 236 struct stat st;
5260325f 237 char *cp;
aeaa3d9e 238 int i;
f6be21a0 239 size_t len;
5260325f 240
378d9956 241 if (fstat(fd, &st) < 0) {
242 error("fstat for key file %.200s failed: %.100s",
243 filename, strerror(errno));
244 return NULL;
245 }
528afafa 246 if (st.st_size > 1*1024*1024) {
247 error("key file %.200s too large", filename);
248 return NULL;
249 }
f6be21a0 250 len = (size_t)st.st_size; /* truncated */
5260325f 251
252 buffer_init(&buffer);
6c0fa2b1 253 cp = buffer_append_space(&buffer, len);
5260325f 254
a408af76 255 if (read(fd, cp, (size_t) len) != (size_t) len) {
5260325f 256 debug("Read from key file %.200s failed: %.100s", filename,
a306f2dd 257 strerror(errno));
5260325f 258 buffer_free(&buffer);
aeaa3d9e 259 return NULL;
5260325f 260 }
5260325f 261
7e2183c0 262 /* Check that it is at least big enough to contain the ID string. */
263 if (len < sizeof(authfile_id_string)) {
2cdccb44 264 debug3("Not a RSA1 key file %.200s.", filename);
5260325f 265 buffer_free(&buffer);
aeaa3d9e 266 return NULL;
5260325f 267 }
aa3378df 268 /*
269 * Make sure it begins with the id string. Consume the id string
270 * from the buffer.
271 */
7e2183c0 272 for (i = 0; i < sizeof(authfile_id_string); i++)
273 if (buffer_get_char(&buffer) != authfile_id_string[i]) {
2cdccb44 274 debug3("Not a RSA1 key file %.200s.", filename);
5260325f 275 buffer_free(&buffer);
aeaa3d9e 276 return NULL;
5260325f 277 }
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. */
1169c3df 283 (void) buffer_get_int(&buffer);
aeaa3d9e 284 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);
5260325f 289 /* The encrypted private part is not parsed by this function. */
290
8efc0c15 291 buffer_free(&buffer);
aeaa3d9e 292 return pub;
8efc0c15 293}
294
aeaa3d9e 295/* load public key from private-key file, works only for SSH v1 */
296Key *
297key_load_public_type(int type, const char *filename, char **commentp)
a306f2dd 298{
aeaa3d9e 299 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;
a306f2dd 309 }
aeaa3d9e 310 return NULL;
a306f2dd 311}
312
aa3378df 313/*
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 */
8efc0c15 319
396c147e 320static Key *
aeaa3d9e 321key_load_private_rsa1(int fd, const char *filename, const char *passphrase,
322 char **commentp)
8efc0c15 323{
a306f2dd 324 int i, check1, check2, cipher_type;
f6be21a0 325 size_t len;
5260325f 326 Buffer buffer, decrypted;
20905a8e 327 u_char *cp;
94ec8c6b 328 CipherContext ciphercontext;
329 Cipher *cipher;
aeaa3d9e 330 Key *prv = NULL;
378d9956 331 struct stat st;
5260325f 332
378d9956 333 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 }
f6be21a0 339 if (st.st_size > 1*1024*1024) {
528afafa 340 error("key file %.200s too large", filename);
f6be21a0 341 close(fd);
342 return (NULL);
343 }
344 len = (size_t)st.st_size; /* truncated */
5260325f 345
346 buffer_init(&buffer);
6c0fa2b1 347 cp = buffer_append_space(&buffer, len);
5260325f 348
a408af76 349 if (read(fd, cp, (size_t) len) != (size_t) len) {
5260325f 350 debug("Read from key file %.200s failed: %.100s", filename,
fa08c86b 351 strerror(errno));
5260325f 352 buffer_free(&buffer);
a408af76 353 close(fd);
aeaa3d9e 354 return NULL;
5260325f 355 }
5260325f 356
7e2183c0 357 /* Check that it is at least big enough to contain the ID string. */
358 if (len < sizeof(authfile_id_string)) {
2cdccb44 359 debug3("Not a RSA1 key file %.200s.", filename);
5260325f 360 buffer_free(&buffer);
81333640 361 close(fd);
aeaa3d9e 362 return NULL;
5260325f 363 }
aa3378df 364 /*
365 * Make sure it begins with the id string. Consume the id string
366 * from the buffer.
367 */
7e2183c0 368 for (i = 0; i < sizeof(authfile_id_string); i++)
369 if (buffer_get_char(&buffer) != authfile_id_string[i]) {
2cdccb44 370 debug3("Not a RSA1 key file %.200s.", filename);
5260325f 371 buffer_free(&buffer);
81333640 372 close(fd);
aeaa3d9e 373 return NULL;
5260325f 374 }
81333640 375
5260325f 376 /* Read cipher type. */
377 cipher_type = buffer_get_char(&buffer);
378 (void) buffer_get_int(&buffer); /* Reserved data. */
379
380 /* Read the public key from the buffer. */
1169c3df 381 (void) buffer_get_int(&buffer);
aeaa3d9e 382 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);
5260325f 388 else
389 xfree(buffer_get_string(&buffer, NULL));
390
391 /* Check that it is a supported cipher. */
94ec8c6b 392 cipher = cipher_by_number(cipher_type);
393 if (cipher == NULL) {
394 debug("Unsupported cipher %d used in key file %.200s.",
395 cipher_type, filename);
5260325f 396 buffer_free(&buffer);
397 goto fail;
398 }
399 /* Initialize space for decrypted data. */
400 buffer_init(&decrypted);
6c0fa2b1 401 cp = buffer_append_space(&decrypted, buffer_len(&buffer));
5260325f 402
403 /* Rest of the buffer is encrypted. Decrypt it using the passphrase. */
3ee832e5 404 cipher_set_key_string(&ciphercontext, cipher, passphrase,
405 CIPHER_DECRYPT);
406 cipher_crypt(&ciphercontext, cp,
20905a8e 407 buffer_ptr(&buffer), buffer_len(&buffer));
3ee832e5 408 cipher_cleanup(&ciphercontext);
94ec8c6b 409 memset(&ciphercontext, 0, sizeof(ciphercontext));
8efc0c15 410 buffer_free(&buffer);
5260325f 411
412 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)
aeaa3d9e 417 debug("Bad passphrase supplied for key file %.200s.",
418 filename);
5260325f 419 /* Bad passphrase. */
420 buffer_free(&decrypted);
aeaa3d9e 421 goto fail;
5260325f 422 }
423 /* Read the rest of the private key. */
aeaa3d9e 424 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 */
5260325f 429
aeaa3d9e 430 /* calculate p-1 and q-1 */
b775c6f2 431 rsa_generate_additional_parameters(prv->rsa);
5260325f 432
433 buffer_free(&decrypted);
15e98f49 434
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 }
81333640 440 close(fd);
aeaa3d9e 441 return prv;
442
443fail:
444 if (commentp)
445 xfree(*commentp);
446 close(fd);
447 key_free(prv);
448 return NULL;
8efc0c15 449}
a306f2dd 450
39c00dc2 451Key *
aeaa3d9e 452key_load_private_pem(int fd, int type, const char *passphrase,
453 char **commentp)
a306f2dd 454{
a306f2dd 455 FILE *fp;
fa08c86b 456 EVP_PKEY *pk = NULL;
aeaa3d9e 457 Key *prv = NULL;
fa08c86b 458 char *name = "<no key>";
a306f2dd 459
a306f2dd 460 fp = fdopen(fd, "r");
461 if (fp == NULL) {
58cfa257 462 error("fdopen failed: %s", strerror(errno));
81333640 463 close(fd);
aeaa3d9e 464 return NULL;
a306f2dd 465 }
fa08c86b 466 pk = PEM_read_PrivateKey(fp, NULL, NULL, (char *)passphrase);
467 if (pk == NULL) {
ae88ea7e 468 debug("PEM_read_PrivateKey failed");
fa08c86b 469 (void)ERR_get_error();
aeaa3d9e 470 } else if (pk->type == EVP_PKEY_RSA &&
184eed6a 471 (type == KEY_UNSPEC||type==KEY_RSA)) {
aeaa3d9e 472 prv = key_new(KEY_UNSPEC);
473 prv->rsa = EVP_PKEY_get1_RSA(pk);
474 prv->type = KEY_RSA;
475 name = "rsa w/o comment";
fa08c86b 476#ifdef DEBUG_PK
aeaa3d9e 477 RSA_print_fp(stderr, prv->rsa, 8);
fa08c86b 478#endif
15e98f49 479 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 }
aeaa3d9e 484 } else if (pk->type == EVP_PKEY_DSA &&
184eed6a 485 (type == KEY_UNSPEC||type==KEY_DSA)) {
aeaa3d9e 486 prv = key_new(KEY_UNSPEC);
487 prv->dsa = EVP_PKEY_get1_DSA(pk);
488 prv->type = KEY_DSA;
489 name = "dsa w/o comment";
fa08c86b 490#ifdef DEBUG_PK
aeaa3d9e 491 DSA_print_fp(stderr, prv->dsa, 8);
fa08c86b 492#endif
fa08c86b 493 } else {
494 error("PEM_read_PrivateKey: mismatch or "
495 "unknown EVP_PKEY save_type %d", pk->save_type);
a306f2dd 496 }
a306f2dd 497 fclose(fp);
fa08c86b 498 if (pk != NULL)
499 EVP_PKEY_free(pk);
aeaa3d9e 500 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;
a306f2dd 505}
506
396c147e 507static int
aeaa3d9e 508key_perm_ok(int fd, const char *filename)
a306f2dd 509{
a306f2dd 510 struct stat st;
511
d842a5eb 512 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 */
9cd45ea4 519#ifdef HAVE_CYGWIN
22d89d24 520 if (check_ntsec(filename))
9cd45ea4 521#endif
d842a5eb 522 if ((st.st_uid == getuid()) && (st.st_mode & 077) != 0) {
a306f2dd 523 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
524 error("@ WARNING: UNPROTECTED PRIVATE KEY FILE! @");
525 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
d842a5eb 526 error("Permissions 0%3.3o for '%s' are too open.",
b9ed513a 527 (u_int)st.st_mode & 0777, filename);
a306f2dd 528 error("It is recommended that your private key files are NOT accessible by others.");
aeaa3d9e 529 error("This private key will be ignored.");
a306f2dd 530 return 0;
531 }
aeaa3d9e 532 return 1;
533}
81333640 534
aeaa3d9e 535Key *
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)) {
58cfa257 545 error("bad permissions: ignore key: %s", filename);
aeaa3d9e 546 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 */
a306f2dd 554 break;
555 case KEY_DSA:
fa08c86b 556 case KEY_RSA:
557 case KEY_UNSPEC:
aeaa3d9e 558 return key_load_private_pem(fd, type, passphrase, commentp);
559 /* closes fd */
81333640 560 break;
a306f2dd 561 default:
81333640 562 close(fd);
a306f2dd 563 break;
564 }
aeaa3d9e 565 return NULL;
566}
567
568Key *
569key_load_private(const char *filename, const char *passphrase,
570 char **commentp)
571{
eb2e1595 572 Key *pub, *prv;
aeaa3d9e 573 int fd;
574
575 fd = open(filename, O_RDONLY);
576 if (fd < 0)
577 return NULL;
578 if (!key_perm_ok(fd, filename)) {
58cfa257 579 error("bad permissions: ignore key: %s", filename);
aeaa3d9e 580 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 */
eb2e1595 587 prv = key_load_private_pem(fd, KEY_UNSPEC, passphrase, NULL);
588 /* use the filename as a comment for PEM */
589 if (commentp && prv)
a10bdd7c 590 *commentp = xstrdup(filename);
aeaa3d9e 591 } else {
592 /* it's a SSH v1 key if the public key part is readable */
593 key_free(pub);
594 /* closes fd */
eb2e1595 595 prv = key_load_private_rsa1(fd, filename, passphrase, NULL);
aeaa3d9e 596 }
eb2e1595 597 return prv;
a306f2dd 598}
bcbf86ec 599
396c147e 600static int
aeaa3d9e 601key_try_load_public(Key *k, const char *filename, char **commentp)
bcbf86ec 602{
603 FILE *f;
aeaa3d9e 604 char line[4096];
bcbf86ec 605 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;
6aacefa7 612 switch (*cp) {
bcbf86ec 613 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) {
fa08c86b 622 if (key_read(k, &cp) == 1) {
bcbf86ec 623 if (commentp)
624 *commentp=xstrdup(filename);
625 fclose(f);
626 return 1;
627 }
628 }
629 }
630 fclose(f);
631 }
632 return 0;
633}
634
aeaa3d9e 635/* load public key from ssh v1 private or any pubkey file */
636Key *
637key_load_public(const char *filename, char **commentp)
bcbf86ec 638{
aeaa3d9e 639 Key *pub;
640 char file[MAXPATHLEN];
641
3566c73c 642 /* try rsa1 private key */
aeaa3d9e 643 pub = key_load_public_type(KEY_RSA1, filename, commentp);
644 if (pub != NULL)
645 return pub;
3566c73c 646
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 */
aeaa3d9e 654 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;
bcbf86ec 663}
This page took 0.273476 seconds and 5 git commands to generate.