]> andersk Git - openssh.git/blame - authfile.c
- (djm) OpenBSD CVS Sync
[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"
3566c73c 39RCSID("$OpenBSD: authfile.c,v 1.53 2003/05/11 16:56:48 markus 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;
5260325f 75 u_int32_t rand;
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. */
90 rand = arc4random();
91 buf[0] = rand & 0xff;
92 buf[1] = (rand >> 8) & 0xff;
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));
5260325f 146 return 0;
58cfa257 147 }
a408af76 148 if (write(fd, buffer_ptr(&encrypted), buffer_len(&encrypted)) !=
5260325f 149 buffer_len(&encrypted)) {
58cfa257 150 error("write to key file %s failed: %s", filename,
184eed6a 151 strerror(errno));
5260325f 152 buffer_free(&encrypted);
a408af76 153 close(fd);
77bb0bca 154 unlink(filename);
5260325f 155 return 0;
156 }
a408af76 157 close(fd);
5260325f 158 buffer_free(&encrypted);
159 return 1;
8efc0c15 160}
161
aeaa3d9e 162/* save SSH v2 key in OpenSSL PEM format */
396c147e 163static int
aeaa3d9e 164key_save_private_pem(Key *key, const char *filename, const char *_passphrase,
165 const char *comment)
a306f2dd 166{
167 FILE *fp;
168 int fd;
fa08c86b 169 int success = 0;
170 int len = strlen(_passphrase);
c66f9d0e 171 u_char *passphrase = (len > 0) ? (u_char *)_passphrase : NULL;
714954dc 172 const EVP_CIPHER *cipher = (len > 0) ? EVP_des_ede3_cbc() : NULL;
a306f2dd 173
174 if (len > 0 && len <= 4) {
58cfa257 175 error("passphrase too short: have %d bytes, need > 4", len);
a306f2dd 176 return 0;
177 }
178 fd = open(filename, O_WRONLY | O_CREAT | O_TRUNC, 0600);
179 if (fd < 0) {
58cfa257 180 error("open %s failed: %s.", filename, strerror(errno));
a306f2dd 181 return 0;
182 }
183 fp = fdopen(fd, "w");
184 if (fp == NULL ) {
58cfa257 185 error("fdopen %s failed: %s.", filename, strerror(errno));
a306f2dd 186 close(fd);
187 return 0;
188 }
fa08c86b 189 switch (key->type) {
569807fb 190 case KEY_DSA:
191 success = PEM_write_DSAPrivateKey(fp, key->dsa,
192 cipher, passphrase, len, NULL, NULL);
193 break;
194 case KEY_RSA:
195 success = PEM_write_RSAPrivateKey(fp, key->rsa,
196 cipher, passphrase, len, NULL, NULL);
197 break;
a306f2dd 198 }
199 fclose(fp);
200 return success;
201}
202
203int
aeaa3d9e 204key_save_private(Key *key, const char *filename, const char *passphrase,
a306f2dd 205 const char *comment)
206{
207 switch (key->type) {
fa08c86b 208 case KEY_RSA1:
aeaa3d9e 209 return key_save_private_rsa1(key, filename, passphrase,
210 comment);
a306f2dd 211 break;
212 case KEY_DSA:
fa08c86b 213 case KEY_RSA:
aeaa3d9e 214 return key_save_private_pem(key, filename, passphrase,
215 comment);
a306f2dd 216 break;
217 default:
218 break;
219 }
58cfa257 220 error("key_save_private: cannot save key type %d", key->type);
a306f2dd 221 return 0;
222}
223
aa3378df 224/*
aeaa3d9e 225 * Loads the public part of the ssh v1 key file. Returns NULL if an error was
226 * encountered (the file does not exist or is not readable), and the key
aa3378df 227 * otherwise.
228 */
8efc0c15 229
396c147e 230static Key *
aeaa3d9e 231key_load_public_rsa1(int fd, const char *filename, char **commentp)
8efc0c15 232{
5260325f 233 Buffer buffer;
aeaa3d9e 234 Key *pub;
378d9956 235 struct stat st;
5260325f 236 char *cp;
aeaa3d9e 237 int i;
238 off_t len;
5260325f 239
378d9956 240 if (fstat(fd, &st) < 0) {
241 error("fstat for key file %.200s failed: %.100s",
242 filename, strerror(errno));
243 return NULL;
244 }
245 len = st.st_size;
5260325f 246
247 buffer_init(&buffer);
6c0fa2b1 248 cp = buffer_append_space(&buffer, len);
5260325f 249
a408af76 250 if (read(fd, cp, (size_t) len) != (size_t) len) {
5260325f 251 debug("Read from key file %.200s failed: %.100s", filename,
a306f2dd 252 strerror(errno));
5260325f 253 buffer_free(&buffer);
aeaa3d9e 254 return NULL;
5260325f 255 }
5260325f 256
7e2183c0 257 /* Check that it is at least big enough to contain the ID string. */
258 if (len < sizeof(authfile_id_string)) {
2cdccb44 259 debug3("Not a RSA1 key file %.200s.", filename);
5260325f 260 buffer_free(&buffer);
aeaa3d9e 261 return NULL;
5260325f 262 }
aa3378df 263 /*
264 * Make sure it begins with the id string. Consume the id string
265 * from the buffer.
266 */
7e2183c0 267 for (i = 0; i < sizeof(authfile_id_string); i++)
268 if (buffer_get_char(&buffer) != authfile_id_string[i]) {
2cdccb44 269 debug3("Not a RSA1 key file %.200s.", filename);
5260325f 270 buffer_free(&buffer);
aeaa3d9e 271 return NULL;
5260325f 272 }
273 /* Skip cipher type and reserved data. */
274 (void) buffer_get_char(&buffer); /* cipher type */
275 (void) buffer_get_int(&buffer); /* reserved */
276
277 /* Read the public key from the buffer. */
1169c3df 278 (void) buffer_get_int(&buffer);
aeaa3d9e 279 pub = key_new(KEY_RSA1);
280 buffer_get_bignum(&buffer, pub->rsa->n);
281 buffer_get_bignum(&buffer, pub->rsa->e);
282 if (commentp)
283 *commentp = buffer_get_string(&buffer, NULL);
5260325f 284 /* The encrypted private part is not parsed by this function. */
285
8efc0c15 286 buffer_free(&buffer);
aeaa3d9e 287 return pub;
8efc0c15 288}
289
aeaa3d9e 290/* load public key from private-key file, works only for SSH v1 */
291Key *
292key_load_public_type(int type, const char *filename, char **commentp)
a306f2dd 293{
aeaa3d9e 294 Key *pub;
295 int fd;
296
297 if (type == KEY_RSA1) {
298 fd = open(filename, O_RDONLY);
299 if (fd < 0)
300 return NULL;
301 pub = key_load_public_rsa1(fd, filename, commentp);
302 close(fd);
303 return pub;
a306f2dd 304 }
aeaa3d9e 305 return NULL;
a306f2dd 306}
307
aa3378df 308/*
309 * Loads the private key from the file. Returns 0 if an error is encountered
310 * (file does not exist or is not readable, or passphrase is bad). This
311 * initializes the private key.
312 * Assumes we are called under uid of the owner of the file.
313 */
8efc0c15 314
396c147e 315static Key *
aeaa3d9e 316key_load_private_rsa1(int fd, const char *filename, const char *passphrase,
317 char **commentp)
8efc0c15 318{
a306f2dd 319 int i, check1, check2, cipher_type;
5260325f 320 off_t len;
321 Buffer buffer, decrypted;
20905a8e 322 u_char *cp;
94ec8c6b 323 CipherContext ciphercontext;
324 Cipher *cipher;
aeaa3d9e 325 Key *prv = NULL;
378d9956 326 struct stat st;
5260325f 327
378d9956 328 if (fstat(fd, &st) < 0) {
329 error("fstat for key file %.200s failed: %.100s",
330 filename, strerror(errno));
331 close(fd);
332 return NULL;
333 }
334 len = st.st_size;
5260325f 335
336 buffer_init(&buffer);
6c0fa2b1 337 cp = buffer_append_space(&buffer, len);
5260325f 338
a408af76 339 if (read(fd, cp, (size_t) len) != (size_t) len) {
5260325f 340 debug("Read from key file %.200s failed: %.100s", filename,
fa08c86b 341 strerror(errno));
5260325f 342 buffer_free(&buffer);
a408af76 343 close(fd);
aeaa3d9e 344 return NULL;
5260325f 345 }
5260325f 346
7e2183c0 347 /* Check that it is at least big enough to contain the ID string. */
348 if (len < sizeof(authfile_id_string)) {
2cdccb44 349 debug3("Not a RSA1 key file %.200s.", filename);
5260325f 350 buffer_free(&buffer);
81333640 351 close(fd);
aeaa3d9e 352 return NULL;
5260325f 353 }
aa3378df 354 /*
355 * Make sure it begins with the id string. Consume the id string
356 * from the buffer.
357 */
7e2183c0 358 for (i = 0; i < sizeof(authfile_id_string); i++)
359 if (buffer_get_char(&buffer) != authfile_id_string[i]) {
2cdccb44 360 debug3("Not a RSA1 key file %.200s.", filename);
5260325f 361 buffer_free(&buffer);
81333640 362 close(fd);
aeaa3d9e 363 return NULL;
5260325f 364 }
81333640 365
5260325f 366 /* Read cipher type. */
367 cipher_type = buffer_get_char(&buffer);
368 (void) buffer_get_int(&buffer); /* Reserved data. */
369
370 /* Read the public key from the buffer. */
1169c3df 371 (void) buffer_get_int(&buffer);
aeaa3d9e 372 prv = key_new_private(KEY_RSA1);
373
374 buffer_get_bignum(&buffer, prv->rsa->n);
375 buffer_get_bignum(&buffer, prv->rsa->e);
376 if (commentp)
377 *commentp = buffer_get_string(&buffer, NULL);
5260325f 378 else
379 xfree(buffer_get_string(&buffer, NULL));
380
381 /* Check that it is a supported cipher. */
94ec8c6b 382 cipher = cipher_by_number(cipher_type);
383 if (cipher == NULL) {
384 debug("Unsupported cipher %d used in key file %.200s.",
385 cipher_type, filename);
5260325f 386 buffer_free(&buffer);
387 goto fail;
388 }
389 /* Initialize space for decrypted data. */
390 buffer_init(&decrypted);
6c0fa2b1 391 cp = buffer_append_space(&decrypted, buffer_len(&buffer));
5260325f 392
393 /* Rest of the buffer is encrypted. Decrypt it using the passphrase. */
3ee832e5 394 cipher_set_key_string(&ciphercontext, cipher, passphrase,
395 CIPHER_DECRYPT);
396 cipher_crypt(&ciphercontext, cp,
20905a8e 397 buffer_ptr(&buffer), buffer_len(&buffer));
3ee832e5 398 cipher_cleanup(&ciphercontext);
94ec8c6b 399 memset(&ciphercontext, 0, sizeof(ciphercontext));
8efc0c15 400 buffer_free(&buffer);
5260325f 401
402 check1 = buffer_get_char(&decrypted);
403 check2 = buffer_get_char(&decrypted);
404 if (check1 != buffer_get_char(&decrypted) ||
405 check2 != buffer_get_char(&decrypted)) {
406 if (strcmp(passphrase, "") != 0)
aeaa3d9e 407 debug("Bad passphrase supplied for key file %.200s.",
408 filename);
5260325f 409 /* Bad passphrase. */
410 buffer_free(&decrypted);
aeaa3d9e 411 goto fail;
5260325f 412 }
413 /* Read the rest of the private key. */
aeaa3d9e 414 buffer_get_bignum(&decrypted, prv->rsa->d);
415 buffer_get_bignum(&decrypted, prv->rsa->iqmp); /* u */
416 /* in SSL and SSH v1 p and q are exchanged */
417 buffer_get_bignum(&decrypted, prv->rsa->q); /* p */
418 buffer_get_bignum(&decrypted, prv->rsa->p); /* q */
5260325f 419
aeaa3d9e 420 /* calculate p-1 and q-1 */
b775c6f2 421 rsa_generate_additional_parameters(prv->rsa);
5260325f 422
423 buffer_free(&decrypted);
15e98f49 424
425 /* enable blinding */
426 if (RSA_blinding_on(prv->rsa, NULL) != 1) {
427 error("key_load_private_rsa1: RSA_blinding_on failed");
428 goto fail;
429 }
81333640 430 close(fd);
aeaa3d9e 431 return prv;
432
433fail:
434 if (commentp)
435 xfree(*commentp);
436 close(fd);
437 key_free(prv);
438 return NULL;
8efc0c15 439}
a306f2dd 440
39c00dc2 441Key *
aeaa3d9e 442key_load_private_pem(int fd, int type, const char *passphrase,
443 char **commentp)
a306f2dd 444{
a306f2dd 445 FILE *fp;
fa08c86b 446 EVP_PKEY *pk = NULL;
aeaa3d9e 447 Key *prv = NULL;
fa08c86b 448 char *name = "<no key>";
a306f2dd 449
a306f2dd 450 fp = fdopen(fd, "r");
451 if (fp == NULL) {
58cfa257 452 error("fdopen failed: %s", strerror(errno));
81333640 453 close(fd);
aeaa3d9e 454 return NULL;
a306f2dd 455 }
fa08c86b 456 pk = PEM_read_PrivateKey(fp, NULL, NULL, (char *)passphrase);
457 if (pk == NULL) {
ae88ea7e 458 debug("PEM_read_PrivateKey failed");
fa08c86b 459 (void)ERR_get_error();
aeaa3d9e 460 } else if (pk->type == EVP_PKEY_RSA &&
184eed6a 461 (type == KEY_UNSPEC||type==KEY_RSA)) {
aeaa3d9e 462 prv = key_new(KEY_UNSPEC);
463 prv->rsa = EVP_PKEY_get1_RSA(pk);
464 prv->type = KEY_RSA;
465 name = "rsa w/o comment";
fa08c86b 466#ifdef DEBUG_PK
aeaa3d9e 467 RSA_print_fp(stderr, prv->rsa, 8);
fa08c86b 468#endif
15e98f49 469 if (RSA_blinding_on(prv->rsa, NULL) != 1) {
470 error("key_load_private_pem: RSA_blinding_on failed");
471 key_free(prv);
472 prv = NULL;
473 }
aeaa3d9e 474 } else if (pk->type == EVP_PKEY_DSA &&
184eed6a 475 (type == KEY_UNSPEC||type==KEY_DSA)) {
aeaa3d9e 476 prv = key_new(KEY_UNSPEC);
477 prv->dsa = EVP_PKEY_get1_DSA(pk);
478 prv->type = KEY_DSA;
479 name = "dsa w/o comment";
fa08c86b 480#ifdef DEBUG_PK
aeaa3d9e 481 DSA_print_fp(stderr, prv->dsa, 8);
fa08c86b 482#endif
fa08c86b 483 } else {
484 error("PEM_read_PrivateKey: mismatch or "
485 "unknown EVP_PKEY save_type %d", pk->save_type);
a306f2dd 486 }
a306f2dd 487 fclose(fp);
fa08c86b 488 if (pk != NULL)
489 EVP_PKEY_free(pk);
aeaa3d9e 490 if (prv != NULL && commentp)
491 *commentp = xstrdup(name);
492 debug("read PEM private key done: type %s",
493 prv ? key_type(prv) : "<unknown>");
494 return prv;
a306f2dd 495}
496
396c147e 497static int
aeaa3d9e 498key_perm_ok(int fd, const char *filename)
a306f2dd 499{
a306f2dd 500 struct stat st;
501
d842a5eb 502 if (fstat(fd, &st) < 0)
503 return 0;
504 /*
505 * if a key owned by the user is accessed, then we check the
506 * permissions of the file. if the key owned by a different user,
507 * then we don't care.
508 */
9cd45ea4 509#ifdef HAVE_CYGWIN
22d89d24 510 if (check_ntsec(filename))
9cd45ea4 511#endif
d842a5eb 512 if ((st.st_uid == getuid()) && (st.st_mode & 077) != 0) {
a306f2dd 513 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
514 error("@ WARNING: UNPROTECTED PRIVATE KEY FILE! @");
515 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
d842a5eb 516 error("Permissions 0%3.3o for '%s' are too open.",
81333640 517 st.st_mode & 0777, filename);
a306f2dd 518 error("It is recommended that your private key files are NOT accessible by others.");
aeaa3d9e 519 error("This private key will be ignored.");
a306f2dd 520 return 0;
521 }
aeaa3d9e 522 return 1;
523}
81333640 524
aeaa3d9e 525Key *
526key_load_private_type(int type, const char *filename, const char *passphrase,
527 char **commentp)
528{
529 int fd;
530
531 fd = open(filename, O_RDONLY);
532 if (fd < 0)
533 return NULL;
534 if (!key_perm_ok(fd, filename)) {
58cfa257 535 error("bad permissions: ignore key: %s", filename);
aeaa3d9e 536 close(fd);
537 return NULL;
538 }
539 switch (type) {
540 case KEY_RSA1:
541 return key_load_private_rsa1(fd, filename, passphrase,
542 commentp);
543 /* closes fd */
a306f2dd 544 break;
545 case KEY_DSA:
fa08c86b 546 case KEY_RSA:
547 case KEY_UNSPEC:
aeaa3d9e 548 return key_load_private_pem(fd, type, passphrase, commentp);
549 /* closes fd */
81333640 550 break;
a306f2dd 551 default:
81333640 552 close(fd);
a306f2dd 553 break;
554 }
aeaa3d9e 555 return NULL;
556}
557
558Key *
559key_load_private(const char *filename, const char *passphrase,
560 char **commentp)
561{
eb2e1595 562 Key *pub, *prv;
aeaa3d9e 563 int fd;
564
565 fd = open(filename, O_RDONLY);
566 if (fd < 0)
567 return NULL;
568 if (!key_perm_ok(fd, filename)) {
58cfa257 569 error("bad permissions: ignore key: %s", filename);
aeaa3d9e 570 close(fd);
571 return NULL;
572 }
573 pub = key_load_public_rsa1(fd, filename, commentp);
574 lseek(fd, (off_t) 0, SEEK_SET); /* rewind */
575 if (pub == NULL) {
576 /* closes fd */
eb2e1595 577 prv = key_load_private_pem(fd, KEY_UNSPEC, passphrase, NULL);
578 /* use the filename as a comment for PEM */
579 if (commentp && prv)
a10bdd7c 580 *commentp = xstrdup(filename);
aeaa3d9e 581 } else {
582 /* it's a SSH v1 key if the public key part is readable */
583 key_free(pub);
584 /* closes fd */
eb2e1595 585 prv = key_load_private_rsa1(fd, filename, passphrase, NULL);
aeaa3d9e 586 }
eb2e1595 587 return prv;
a306f2dd 588}
bcbf86ec 589
396c147e 590static int
aeaa3d9e 591key_try_load_public(Key *k, const char *filename, char **commentp)
bcbf86ec 592{
593 FILE *f;
aeaa3d9e 594 char line[4096];
bcbf86ec 595 char *cp;
596
597 f = fopen(filename, "r");
598 if (f != NULL) {
599 while (fgets(line, sizeof(line), f)) {
600 line[sizeof(line)-1] = '\0';
601 cp = line;
6aacefa7 602 switch (*cp) {
bcbf86ec 603 case '#':
604 case '\n':
605 case '\0':
606 continue;
607 }
608 /* Skip leading whitespace. */
609 for (; *cp && (*cp == ' ' || *cp == '\t'); cp++)
610 ;
611 if (*cp) {
fa08c86b 612 if (key_read(k, &cp) == 1) {
bcbf86ec 613 if (commentp)
614 *commentp=xstrdup(filename);
615 fclose(f);
616 return 1;
617 }
618 }
619 }
620 fclose(f);
621 }
622 return 0;
623}
624
aeaa3d9e 625/* load public key from ssh v1 private or any pubkey file */
626Key *
627key_load_public(const char *filename, char **commentp)
bcbf86ec 628{
aeaa3d9e 629 Key *pub;
630 char file[MAXPATHLEN];
631
3566c73c 632 /* try rsa1 private key */
aeaa3d9e 633 pub = key_load_public_type(KEY_RSA1, filename, commentp);
634 if (pub != NULL)
635 return pub;
3566c73c 636
637 /* try rsa1 public key */
638 pub = key_new(KEY_RSA1);
639 if (key_try_load_public(pub, filename, commentp) == 1)
640 return pub;
641 key_free(pub);
642
643 /* try ssh2 public key */
aeaa3d9e 644 pub = key_new(KEY_UNSPEC);
645 if (key_try_load_public(pub, filename, commentp) == 1)
646 return pub;
647 if ((strlcpy(file, filename, sizeof file) < sizeof(file)) &&
648 (strlcat(file, ".pub", sizeof file) < sizeof(file)) &&
649 (key_try_load_public(pub, file, commentp) == 1))
650 return pub;
651 key_free(pub);
652 return NULL;
bcbf86ec 653}
This page took 0.271093 seconds and 5 git commands to generate.