]> andersk Git - openssh.git/blame - authfile.c
- stevesk@cvs.openbsd.org 2001/12/28 22:37:48
[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"
cf184a44 39RCSID("$OpenBSD: authfile.c,v 1.44 2001/12/27 18:26:13 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;
71 char buf[100], *cp;
a408af76 72 int fd, i;
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 */
5260325f 81 if (strcmp(passphrase, "") == 0)
94ec8c6b 82 cipher = cipher_by_number(SSH_CIPHER_NONE);
5260325f 83 else
94ec8c6b 84 cipher = cipher_by_number(SSH_AUTHFILE_CIPHER);
85 if (cipher == NULL)
86 fatal("save_private_key_rsa: bad cipher");
5260325f 87
88 /* This buffer is used to built the secret part of the private key. */
89 buffer_init(&buffer);
90
91 /* Put checkbytes for checking passphrase validity. */
92 rand = arc4random();
93 buf[0] = rand & 0xff;
94 buf[1] = (rand >> 8) & 0xff;
95 buf[2] = buf[0];
96 buf[3] = buf[1];
97 buffer_append(&buffer, buf, 4);
98
aa3378df 99 /*
100 * Store the private key (n and e will not be stored because they
101 * will be stored in plain text, and storing them also in encrypted
102 * format would just give known plaintext).
103 */
aeaa3d9e 104 buffer_put_bignum(&buffer, key->rsa->d);
105 buffer_put_bignum(&buffer, key->rsa->iqmp);
106 buffer_put_bignum(&buffer, key->rsa->q); /* reverse from SSL p */
107 buffer_put_bignum(&buffer, key->rsa->p); /* reverse from SSL q */
5260325f 108
109 /* Pad the part to be encrypted until its size is a multiple of 8. */
110 while (buffer_len(&buffer) % 8 != 0)
111 buffer_put_char(&buffer, 0);
112
113 /* This buffer will be used to contain the data in the file. */
114 buffer_init(&encrypted);
115
116 /* First store keyfile id string. */
7e2183c0 117 for (i = 0; authfile_id_string[i]; i++)
118 buffer_put_char(&encrypted, authfile_id_string[i]);
5260325f 119 buffer_put_char(&encrypted, 0);
120
121 /* Store cipher type. */
94ec8c6b 122 buffer_put_char(&encrypted, cipher->number);
5260325f 123 buffer_put_int(&encrypted, 0); /* For future extension */
124
125 /* Store public key. This will be in plain text. */
aeaa3d9e 126 buffer_put_int(&encrypted, BN_num_bits(key->rsa->n));
127 buffer_put_bignum(&encrypted, key->rsa->n);
128 buffer_put_bignum(&encrypted, key->rsa->e);
449c5ba5 129 buffer_put_cstring(&encrypted, comment);
5260325f 130
131 /* Allocate space for the private part of the key in the buffer. */
6c0fa2b1 132 cp = buffer_append_space(&encrypted, buffer_len(&buffer));
5260325f 133
94ec8c6b 134 cipher_set_key_string(&ciphercontext, cipher, passphrase);
1e3b8b07 135 cipher_encrypt(&ciphercontext, (u_char *) cp,
136 (u_char *) buffer_ptr(&buffer), buffer_len(&buffer));
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);
171 char *passphrase = (len > 0) ? (char *)_passphrase : NULL;
172 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;
5260325f 235 char *cp;
aeaa3d9e 236 int i;
237 off_t len;
5260325f 238
a408af76 239 len = lseek(fd, (off_t) 0, SEEK_END);
240 lseek(fd, (off_t) 0, SEEK_SET);
5260325f 241
242 buffer_init(&buffer);
6c0fa2b1 243 cp = buffer_append_space(&buffer, len);
5260325f 244
a408af76 245 if (read(fd, cp, (size_t) len) != (size_t) len) {
5260325f 246 debug("Read from key file %.200s failed: %.100s", filename,
a306f2dd 247 strerror(errno));
5260325f 248 buffer_free(&buffer);
aeaa3d9e 249 return NULL;
5260325f 250 }
5260325f 251
7e2183c0 252 /* Check that it is at least big enough to contain the ID string. */
253 if (len < sizeof(authfile_id_string)) {
2cdccb44 254 debug3("Not a RSA1 key file %.200s.", filename);
5260325f 255 buffer_free(&buffer);
aeaa3d9e 256 return NULL;
5260325f 257 }
aa3378df 258 /*
259 * Make sure it begins with the id string. Consume the id string
260 * from the buffer.
261 */
7e2183c0 262 for (i = 0; i < sizeof(authfile_id_string); i++)
263 if (buffer_get_char(&buffer) != authfile_id_string[i]) {
2cdccb44 264 debug3("Not a RSA1 key file %.200s.", filename);
5260325f 265 buffer_free(&buffer);
aeaa3d9e 266 return NULL;
5260325f 267 }
268 /* Skip cipher type and reserved data. */
269 (void) buffer_get_char(&buffer); /* cipher type */
270 (void) buffer_get_int(&buffer); /* reserved */
271
272 /* Read the public key from the buffer. */
273 buffer_get_int(&buffer);
aeaa3d9e 274 pub = key_new(KEY_RSA1);
275 buffer_get_bignum(&buffer, pub->rsa->n);
276 buffer_get_bignum(&buffer, pub->rsa->e);
277 if (commentp)
278 *commentp = buffer_get_string(&buffer, NULL);
5260325f 279 /* The encrypted private part is not parsed by this function. */
280
8efc0c15 281 buffer_free(&buffer);
aeaa3d9e 282 return pub;
8efc0c15 283}
284
aeaa3d9e 285/* load public key from private-key file, works only for SSH v1 */
286Key *
287key_load_public_type(int type, const char *filename, char **commentp)
a306f2dd 288{
aeaa3d9e 289 Key *pub;
290 int fd;
291
292 if (type == KEY_RSA1) {
293 fd = open(filename, O_RDONLY);
294 if (fd < 0)
295 return NULL;
296 pub = key_load_public_rsa1(fd, filename, commentp);
297 close(fd);
298 return pub;
a306f2dd 299 }
aeaa3d9e 300 return NULL;
a306f2dd 301}
302
aa3378df 303/*
304 * Loads the private key from the file. Returns 0 if an error is encountered
305 * (file does not exist or is not readable, or passphrase is bad). This
306 * initializes the private key.
307 * Assumes we are called under uid of the owner of the file.
308 */
8efc0c15 309
396c147e 310static Key *
aeaa3d9e 311key_load_private_rsa1(int fd, const char *filename, const char *passphrase,
312 char **commentp)
8efc0c15 313{
a306f2dd 314 int i, check1, check2, cipher_type;
5260325f 315 off_t len;
316 Buffer buffer, decrypted;
317 char *cp;
94ec8c6b 318 CipherContext ciphercontext;
319 Cipher *cipher;
aeaa3d9e 320 Key *prv = NULL;
5260325f 321
a408af76 322 len = lseek(fd, (off_t) 0, SEEK_END);
323 lseek(fd, (off_t) 0, SEEK_SET);
5260325f 324
325 buffer_init(&buffer);
6c0fa2b1 326 cp = buffer_append_space(&buffer, len);
5260325f 327
a408af76 328 if (read(fd, cp, (size_t) len) != (size_t) len) {
5260325f 329 debug("Read from key file %.200s failed: %.100s", filename,
fa08c86b 330 strerror(errno));
5260325f 331 buffer_free(&buffer);
a408af76 332 close(fd);
aeaa3d9e 333 return NULL;
5260325f 334 }
5260325f 335
7e2183c0 336 /* Check that it is at least big enough to contain the ID string. */
337 if (len < sizeof(authfile_id_string)) {
2cdccb44 338 debug3("Not a RSA1 key file %.200s.", filename);
5260325f 339 buffer_free(&buffer);
81333640 340 close(fd);
aeaa3d9e 341 return NULL;
5260325f 342 }
aa3378df 343 /*
344 * Make sure it begins with the id string. Consume the id string
345 * from the buffer.
346 */
7e2183c0 347 for (i = 0; i < sizeof(authfile_id_string); i++)
348 if (buffer_get_char(&buffer) != authfile_id_string[i]) {
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 }
81333640 354
5260325f 355 /* Read cipher type. */
356 cipher_type = buffer_get_char(&buffer);
357 (void) buffer_get_int(&buffer); /* Reserved data. */
358
359 /* Read the public key from the buffer. */
360 buffer_get_int(&buffer);
aeaa3d9e 361 prv = key_new_private(KEY_RSA1);
362
363 buffer_get_bignum(&buffer, prv->rsa->n);
364 buffer_get_bignum(&buffer, prv->rsa->e);
365 if (commentp)
366 *commentp = buffer_get_string(&buffer, NULL);
5260325f 367 else
368 xfree(buffer_get_string(&buffer, NULL));
369
370 /* Check that it is a supported cipher. */
94ec8c6b 371 cipher = cipher_by_number(cipher_type);
372 if (cipher == NULL) {
373 debug("Unsupported cipher %d used in key file %.200s.",
374 cipher_type, filename);
5260325f 375 buffer_free(&buffer);
376 goto fail;
377 }
378 /* Initialize space for decrypted data. */
379 buffer_init(&decrypted);
6c0fa2b1 380 cp = buffer_append_space(&decrypted, buffer_len(&buffer));
5260325f 381
382 /* Rest of the buffer is encrypted. Decrypt it using the passphrase. */
94ec8c6b 383 cipher_set_key_string(&ciphercontext, cipher, passphrase);
1e3b8b07 384 cipher_decrypt(&ciphercontext, (u_char *) cp,
385 (u_char *) buffer_ptr(&buffer), buffer_len(&buffer));
94ec8c6b 386 memset(&ciphercontext, 0, sizeof(ciphercontext));
8efc0c15 387 buffer_free(&buffer);
5260325f 388
389 check1 = buffer_get_char(&decrypted);
390 check2 = buffer_get_char(&decrypted);
391 if (check1 != buffer_get_char(&decrypted) ||
392 check2 != buffer_get_char(&decrypted)) {
393 if (strcmp(passphrase, "") != 0)
aeaa3d9e 394 debug("Bad passphrase supplied for key file %.200s.",
395 filename);
5260325f 396 /* Bad passphrase. */
397 buffer_free(&decrypted);
aeaa3d9e 398 goto fail;
5260325f 399 }
400 /* Read the rest of the private key. */
aeaa3d9e 401 buffer_get_bignum(&decrypted, prv->rsa->d);
402 buffer_get_bignum(&decrypted, prv->rsa->iqmp); /* u */
403 /* in SSL and SSH v1 p and q are exchanged */
404 buffer_get_bignum(&decrypted, prv->rsa->q); /* p */
405 buffer_get_bignum(&decrypted, prv->rsa->p); /* q */
5260325f 406
aeaa3d9e 407 /* calculate p-1 and q-1 */
b775c6f2 408 rsa_generate_additional_parameters(prv->rsa);
5260325f 409
410 buffer_free(&decrypted);
81333640 411 close(fd);
aeaa3d9e 412 return prv;
413
414fail:
415 if (commentp)
416 xfree(*commentp);
417 close(fd);
418 key_free(prv);
419 return NULL;
8efc0c15 420}
a306f2dd 421
396c147e 422static Key *
aeaa3d9e 423key_load_private_pem(int fd, int type, const char *passphrase,
424 char **commentp)
a306f2dd 425{
a306f2dd 426 FILE *fp;
fa08c86b 427 EVP_PKEY *pk = NULL;
aeaa3d9e 428 Key *prv = NULL;
fa08c86b 429 char *name = "<no key>";
a306f2dd 430
a306f2dd 431 fp = fdopen(fd, "r");
432 if (fp == NULL) {
58cfa257 433 error("fdopen failed: %s", strerror(errno));
81333640 434 close(fd);
aeaa3d9e 435 return NULL;
a306f2dd 436 }
fa08c86b 437 pk = PEM_read_PrivateKey(fp, NULL, NULL, (char *)passphrase);
438 if (pk == NULL) {
ae88ea7e 439 debug("PEM_read_PrivateKey failed");
fa08c86b 440 (void)ERR_get_error();
aeaa3d9e 441 } else if (pk->type == EVP_PKEY_RSA &&
184eed6a 442 (type == KEY_UNSPEC||type==KEY_RSA)) {
aeaa3d9e 443 prv = key_new(KEY_UNSPEC);
444 prv->rsa = EVP_PKEY_get1_RSA(pk);
445 prv->type = KEY_RSA;
446 name = "rsa w/o comment";
fa08c86b 447#ifdef DEBUG_PK
aeaa3d9e 448 RSA_print_fp(stderr, prv->rsa, 8);
fa08c86b 449#endif
aeaa3d9e 450 } else if (pk->type == EVP_PKEY_DSA &&
184eed6a 451 (type == KEY_UNSPEC||type==KEY_DSA)) {
aeaa3d9e 452 prv = key_new(KEY_UNSPEC);
453 prv->dsa = EVP_PKEY_get1_DSA(pk);
454 prv->type = KEY_DSA;
455 name = "dsa w/o comment";
fa08c86b 456#ifdef DEBUG_PK
aeaa3d9e 457 DSA_print_fp(stderr, prv->dsa, 8);
fa08c86b 458#endif
fa08c86b 459 } else {
460 error("PEM_read_PrivateKey: mismatch or "
461 "unknown EVP_PKEY save_type %d", pk->save_type);
a306f2dd 462 }
a306f2dd 463 fclose(fp);
fa08c86b 464 if (pk != NULL)
465 EVP_PKEY_free(pk);
aeaa3d9e 466 if (prv != NULL && commentp)
467 *commentp = xstrdup(name);
468 debug("read PEM private key done: type %s",
469 prv ? key_type(prv) : "<unknown>");
470 return prv;
a306f2dd 471}
472
396c147e 473static int
aeaa3d9e 474key_perm_ok(int fd, const char *filename)
a306f2dd 475{
a306f2dd 476 struct stat st;
477
d842a5eb 478 if (fstat(fd, &st) < 0)
479 return 0;
480 /*
481 * if a key owned by the user is accessed, then we check the
482 * permissions of the file. if the key owned by a different user,
483 * then we don't care.
484 */
9cd45ea4 485#ifdef HAVE_CYGWIN
22d89d24 486 if (check_ntsec(filename))
9cd45ea4 487#endif
d842a5eb 488 if ((st.st_uid == getuid()) && (st.st_mode & 077) != 0) {
a306f2dd 489 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
490 error("@ WARNING: UNPROTECTED PRIVATE KEY FILE! @");
491 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
d842a5eb 492 error("Permissions 0%3.3o for '%s' are too open.",
81333640 493 st.st_mode & 0777, filename);
a306f2dd 494 error("It is recommended that your private key files are NOT accessible by others.");
aeaa3d9e 495 error("This private key will be ignored.");
a306f2dd 496 return 0;
497 }
aeaa3d9e 498 return 1;
499}
81333640 500
aeaa3d9e 501Key *
502key_load_private_type(int type, const char *filename, const char *passphrase,
503 char **commentp)
504{
505 int fd;
506
507 fd = open(filename, O_RDONLY);
508 if (fd < 0)
509 return NULL;
510 if (!key_perm_ok(fd, filename)) {
58cfa257 511 error("bad permissions: ignore key: %s", filename);
aeaa3d9e 512 close(fd);
513 return NULL;
514 }
515 switch (type) {
516 case KEY_RSA1:
517 return key_load_private_rsa1(fd, filename, passphrase,
518 commentp);
519 /* closes fd */
a306f2dd 520 break;
521 case KEY_DSA:
fa08c86b 522 case KEY_RSA:
523 case KEY_UNSPEC:
aeaa3d9e 524 return key_load_private_pem(fd, type, passphrase, commentp);
525 /* closes fd */
81333640 526 break;
a306f2dd 527 default:
81333640 528 close(fd);
a306f2dd 529 break;
530 }
aeaa3d9e 531 return NULL;
532}
533
534Key *
535key_load_private(const char *filename, const char *passphrase,
536 char **commentp)
537{
eb2e1595 538 Key *pub, *prv;
aeaa3d9e 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 pub = key_load_public_rsa1(fd, filename, commentp);
550 lseek(fd, (off_t) 0, SEEK_SET); /* rewind */
551 if (pub == NULL) {
552 /* closes fd */
eb2e1595 553 prv = key_load_private_pem(fd, KEY_UNSPEC, passphrase, NULL);
554 /* use the filename as a comment for PEM */
555 if (commentp && prv)
a10bdd7c 556 *commentp = xstrdup(filename);
aeaa3d9e 557 } else {
558 /* it's a SSH v1 key if the public key part is readable */
559 key_free(pub);
560 /* closes fd */
eb2e1595 561 prv = key_load_private_rsa1(fd, filename, passphrase, NULL);
aeaa3d9e 562 }
eb2e1595 563 return prv;
a306f2dd 564}
bcbf86ec 565
396c147e 566static int
aeaa3d9e 567key_try_load_public(Key *k, const char *filename, char **commentp)
bcbf86ec 568{
569 FILE *f;
aeaa3d9e 570 char line[4096];
bcbf86ec 571 char *cp;
572
573 f = fopen(filename, "r");
574 if (f != NULL) {
575 while (fgets(line, sizeof(line), f)) {
576 line[sizeof(line)-1] = '\0';
577 cp = line;
6aacefa7 578 switch (*cp) {
bcbf86ec 579 case '#':
580 case '\n':
581 case '\0':
582 continue;
583 }
584 /* Skip leading whitespace. */
585 for (; *cp && (*cp == ' ' || *cp == '\t'); cp++)
586 ;
587 if (*cp) {
fa08c86b 588 if (key_read(k, &cp) == 1) {
bcbf86ec 589 if (commentp)
590 *commentp=xstrdup(filename);
591 fclose(f);
592 return 1;
593 }
594 }
595 }
596 fclose(f);
597 }
598 return 0;
599}
600
aeaa3d9e 601/* load public key from ssh v1 private or any pubkey file */
602Key *
603key_load_public(const char *filename, char **commentp)
bcbf86ec 604{
aeaa3d9e 605 Key *pub;
606 char file[MAXPATHLEN];
607
608 pub = key_load_public_type(KEY_RSA1, filename, commentp);
609 if (pub != NULL)
610 return pub;
611 pub = key_new(KEY_UNSPEC);
612 if (key_try_load_public(pub, filename, commentp) == 1)
613 return pub;
614 if ((strlcpy(file, filename, sizeof file) < sizeof(file)) &&
615 (strlcat(file, ".pub", sizeof file) < sizeof(file)) &&
616 (key_try_load_public(pub, file, commentp) == 1))
617 return pub;
618 key_free(pub);
619 return NULL;
bcbf86ec 620}
This page took 0.469953 seconds and 5 git commands to generate.