]> git.ipfire.org Git - thirdparty/openssl.git/blob - apps/apps.c
Remove support for OPENSSL_NO_TLSEXT
[thirdparty/openssl.git] / apps / apps.c
1 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
2 * All rights reserved.
3 *
4 * This package is an SSL implementation written
5 * by Eric Young (eay@cryptsoft.com).
6 * The implementation was written so as to conform with Netscapes SSL.
7 *
8 * This library is free for commercial and non-commercial use as long as
9 * the following conditions are aheared to. The following conditions
10 * apply to all code found in this distribution, be it the RC4, RSA,
11 * lhash, DES, etc., code; not just the SSL code. The SSL documentation
12 * included with this distribution is covered by the same copyright terms
13 * except that the holder is Tim Hudson (tjh@cryptsoft.com).
14 *
15 * Copyright remains Eric Young's, and as such any Copyright notices in
16 * the code are not to be removed.
17 * If this package is used in a product, Eric Young should be given attribution
18 * as the author of the parts of the library used.
19 * This can be in the form of a textual message at program startup or
20 * in documentation (online or textual) provided with the package.
21 *
22 * Redistribution and use in source and binary forms, with or without
23 * modification, are permitted provided that the following conditions
24 * are met:
25 * 1. Redistributions of source code must retain the copyright
26 * notice, this list of conditions and the following disclaimer.
27 * 2. Redistributions in binary form must reproduce the above copyright
28 * notice, this list of conditions and the following disclaimer in the
29 * documentation and/or other materials provided with the distribution.
30 * 3. All advertising materials mentioning features or use of this software
31 * must display the following acknowledgement:
32 * "This product includes cryptographic software written by
33 * Eric Young (eay@cryptsoft.com)"
34 * The word 'cryptographic' can be left out if the rouines from the library
35 * being used are not cryptographic related :-).
36 * 4. If you include any Windows specific code (or a derivative thereof) from
37 * the apps directory (application code) you must include an acknowledgement:
38 * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
39 *
40 * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
41 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
42 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
43 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
44 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
45 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
46 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
47 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
48 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
49 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
50 * SUCH DAMAGE.
51 *
52 * The licence and distribution terms for any publically available version or
53 * derivative of this code cannot be changed. i.e. this code cannot simply be
54 * copied and put under another distribution licence
55 * [including the GNU Public Licence.]
56 */
57 /* ====================================================================
58 * Copyright (c) 1998-2001 The OpenSSL Project. All rights reserved.
59 *
60 * Redistribution and use in source and binary forms, with or without
61 * modification, are permitted provided that the following conditions
62 * are met:
63 *
64 * 1. Redistributions of source code must retain the above copyright
65 * notice, this list of conditions and the following disclaimer.
66 *
67 * 2. Redistributions in binary form must reproduce the above copyright
68 * notice, this list of conditions and the following disclaimer in
69 * the documentation and/or other materials provided with the
70 * distribution.
71 *
72 * 3. All advertising materials mentioning features or use of this
73 * software must display the following acknowledgment:
74 * "This product includes software developed by the OpenSSL Project
75 * for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
76 *
77 * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
78 * endorse or promote products derived from this software without
79 * prior written permission. For written permission, please contact
80 * openssl-core@openssl.org.
81 *
82 * 5. Products derived from this software may not be called "OpenSSL"
83 * nor may "OpenSSL" appear in their names without prior written
84 * permission of the OpenSSL Project.
85 *
86 * 6. Redistributions of any form whatsoever must retain the following
87 * acknowledgment:
88 * "This product includes software developed by the OpenSSL Project
89 * for use in the OpenSSL Toolkit (http://www.openssl.org/)"
90 *
91 * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
92 * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
93 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
94 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
95 * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
96 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
97 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
98 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
99 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
100 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
101 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
102 * OF THE POSSIBILITY OF SUCH DAMAGE.
103 * ====================================================================
104 *
105 * This product includes cryptographic software written by Eric Young
106 * (eay@cryptsoft.com). This product includes software written by Tim
107 * Hudson (tjh@cryptsoft.com).
108 *
109 */
110
111 #if !defined(_POSIX_C_SOURCE) && defined(OPENSSL_SYS_VMS)
112 /*
113 * On VMS, you need to define this to get the declaration of fileno(). The
114 * value 2 is to make sure no function defined in POSIX-2 is left undefined.
115 */
116 # define _POSIX_C_SOURCE 2
117 #endif
118 #include <stdio.h>
119 #include <stdlib.h>
120 #include <string.h>
121 #if !defined(OPENSSL_SYS_WIN32) && !defined(OPENSSL_SYS_WINCE) && !defined(NETWARE_CLIB)
122 # include <strings.h>
123 #endif
124 #include <sys/types.h>
125 #include <ctype.h>
126 #include <errno.h>
127 #include <assert.h>
128 #include <openssl/err.h>
129 #include <openssl/x509.h>
130 #include <openssl/x509v3.h>
131 #include <openssl/pem.h>
132 #include <openssl/pkcs12.h>
133 #include <openssl/ui.h>
134 #include <openssl/safestack.h>
135 #ifndef OPENSSL_NO_ENGINE
136 # include <openssl/engine.h>
137 #endif
138 #ifndef OPENSSL_NO_RSA
139 # include <openssl/rsa.h>
140 #endif
141 #include <openssl/bn.h>
142 #ifndef OPENSSL_NO_JPAKE
143 # include <openssl/jpake.h>
144 #endif
145 #include <openssl/ssl.h>
146
147 #include "apps.h"
148
149 #ifdef _WIN32
150 static int WIN32_rename(const char *from, const char *to);
151 # define rename(from,to) WIN32_rename((from),(to))
152 #endif
153
154 typedef struct {
155 const char *name;
156 unsigned long flag;
157 unsigned long mask;
158 } NAME_EX_TBL;
159
160 static UI_METHOD *ui_method = NULL;
161
162 static int set_table_opts(unsigned long *flags, const char *arg,
163 const NAME_EX_TBL * in_tbl);
164 static int set_multi_opts(unsigned long *flags, const char *arg,
165 const NAME_EX_TBL * in_tbl);
166
167 #if !defined(OPENSSL_NO_RC4) && !defined(OPENSSL_NO_RSA)
168 /* Looks like this stuff is worth moving into separate function */
169 static EVP_PKEY *load_netscape_key(BIO *key, const char *file,
170 const char *key_descrip, int format);
171 #endif
172
173 int app_init(long mesgwin);
174
175 int chopup_args(ARGS *arg, char *buf)
176 {
177 int quoted;
178 char c = '\0', *p = NULL;
179
180 arg->argc = 0;
181 if (arg->size == 0) {
182 arg->size = 20;
183 arg->argv = app_malloc(sizeof(*arg->argv) * arg->size, "argv space");
184 if (arg->argv == NULL)
185 return 0;
186 }
187
188 for (p = buf;;) {
189 /* Skip whitespace. */
190 while (*p && isspace(*p))
191 p++;
192 if (!*p)
193 break;
194
195 /* The start of something good :-) */
196 if (arg->argc >= arg->size) {
197 arg->size += 20;
198 arg->argv = OPENSSL_realloc(arg->argv,
199 sizeof(*arg->argv) * arg->size);
200 if (arg->argv == NULL)
201 return 0;
202 }
203 quoted = *p == '\'' || *p == '"';
204 if (quoted)
205 c = *p++;
206 arg->argv[arg->argc++] = p;
207
208 /* now look for the end of this */
209 if (quoted) {
210 while (*p && *p != c)
211 p++;
212 *p++ = '\0';
213 } else {
214 while (*p && !isspace(*p))
215 p++;
216 if (*p)
217 *p++ = '\0';
218 }
219 }
220 arg->argv[arg->argc] = NULL;
221 return (1);
222 }
223
224 #ifndef APP_INIT
225 int app_init(long mesgwin)
226 {
227 return (1);
228 }
229 #endif
230
231 int ctx_set_verify_locations(SSL_CTX *ctx,
232 const char *CAfile, const char *CApath)
233 {
234 if (CAfile == NULL && CApath == NULL)
235 return SSL_CTX_set_default_verify_paths(ctx);
236 return SSL_CTX_load_verify_locations(ctx, CAfile, CApath);
237 }
238
239 int dump_cert_text(BIO *out, X509 *x)
240 {
241 char *p;
242
243 p = X509_NAME_oneline(X509_get_subject_name(x), NULL, 0);
244 BIO_puts(out, "subject=");
245 BIO_puts(out, p);
246 OPENSSL_free(p);
247
248 p = X509_NAME_oneline(X509_get_issuer_name(x), NULL, 0);
249 BIO_puts(out, "\nissuer=");
250 BIO_puts(out, p);
251 BIO_puts(out, "\n");
252 OPENSSL_free(p);
253
254 return 0;
255 }
256
257 static int ui_open(UI *ui)
258 {
259 return UI_method_get_opener(UI_OpenSSL())(ui);
260 }
261
262 static int ui_read(UI *ui, UI_STRING *uis)
263 {
264 if (UI_get_input_flags(uis) & UI_INPUT_FLAG_DEFAULT_PWD
265 && UI_get0_user_data(ui)) {
266 switch (UI_get_string_type(uis)) {
267 case UIT_PROMPT:
268 case UIT_VERIFY:
269 {
270 const char *password =
271 ((PW_CB_DATA *)UI_get0_user_data(ui))->password;
272 if (password && password[0] != '\0') {
273 UI_set_result(ui, uis, password);
274 return 1;
275 }
276 }
277 default:
278 break;
279 }
280 }
281 return UI_method_get_reader(UI_OpenSSL())(ui, uis);
282 }
283
284 static int ui_write(UI *ui, UI_STRING *uis)
285 {
286 if (UI_get_input_flags(uis) & UI_INPUT_FLAG_DEFAULT_PWD
287 && UI_get0_user_data(ui)) {
288 switch (UI_get_string_type(uis)) {
289 case UIT_PROMPT:
290 case UIT_VERIFY:
291 {
292 const char *password =
293 ((PW_CB_DATA *)UI_get0_user_data(ui))->password;
294 if (password && password[0] != '\0')
295 return 1;
296 }
297 default:
298 break;
299 }
300 }
301 return UI_method_get_writer(UI_OpenSSL())(ui, uis);
302 }
303
304 static int ui_close(UI *ui)
305 {
306 return UI_method_get_closer(UI_OpenSSL())(ui);
307 }
308
309 int setup_ui_method(void)
310 {
311 ui_method = UI_create_method("OpenSSL application user interface");
312 UI_method_set_opener(ui_method, ui_open);
313 UI_method_set_reader(ui_method, ui_read);
314 UI_method_set_writer(ui_method, ui_write);
315 UI_method_set_closer(ui_method, ui_close);
316 return 0;
317 }
318
319 void destroy_ui_method(void)
320 {
321 if (ui_method) {
322 UI_destroy_method(ui_method);
323 ui_method = NULL;
324 }
325 }
326
327 int password_callback(char *buf, int bufsiz, int verify, PW_CB_DATA *cb_tmp)
328 {
329 UI *ui = NULL;
330 int res = 0;
331 const char *prompt_info = NULL;
332 const char *password = NULL;
333 PW_CB_DATA *cb_data = (PW_CB_DATA *)cb_tmp;
334
335 if (cb_data) {
336 if (cb_data->password)
337 password = cb_data->password;
338 if (cb_data->prompt_info)
339 prompt_info = cb_data->prompt_info;
340 }
341
342 if (password) {
343 res = strlen(password);
344 if (res > bufsiz)
345 res = bufsiz;
346 memcpy(buf, password, res);
347 return res;
348 }
349
350 ui = UI_new_method(ui_method);
351 if (ui) {
352 int ok = 0;
353 char *buff = NULL;
354 int ui_flags = 0;
355 char *prompt;
356
357 prompt = UI_construct_prompt(ui, "pass phrase", prompt_info);
358 if (!prompt) {
359 BIO_printf(bio_err, "Out of memory\n");
360 UI_free(ui);
361 return 0;
362 }
363
364 ui_flags |= UI_INPUT_FLAG_DEFAULT_PWD;
365 UI_ctrl(ui, UI_CTRL_PRINT_ERRORS, 1, 0, 0);
366
367 if (ok >= 0)
368 ok = UI_add_input_string(ui, prompt, ui_flags, buf,
369 PW_MIN_LENGTH, bufsiz - 1);
370 if (ok >= 0 && verify) {
371 buff = app_malloc(bufsiz, "password buffer");
372 ok = UI_add_verify_string(ui, prompt, ui_flags, buff,
373 PW_MIN_LENGTH, bufsiz - 1, buf);
374 }
375 if (ok >= 0)
376 do {
377 ok = UI_process(ui);
378 }
379 while (ok < 0 && UI_ctrl(ui, UI_CTRL_IS_REDOABLE, 0, 0, 0));
380
381 OPENSSL_clear_free(buff, (unsigned int)bufsiz);
382
383 if (ok >= 0)
384 res = strlen(buf);
385 if (ok == -1) {
386 BIO_printf(bio_err, "User interface error\n");
387 ERR_print_errors(bio_err);
388 OPENSSL_cleanse(buf, (unsigned int)bufsiz);
389 res = 0;
390 }
391 if (ok == -2) {
392 BIO_printf(bio_err, "aborted!\n");
393 OPENSSL_cleanse(buf, (unsigned int)bufsiz);
394 res = 0;
395 }
396 UI_free(ui);
397 OPENSSL_free(prompt);
398 }
399 return res;
400 }
401
402 static char *app_get_pass(char *arg, int keepbio);
403
404 int app_passwd(char *arg1, char *arg2, char **pass1, char **pass2)
405 {
406 int same;
407 if (!arg2 || !arg1 || strcmp(arg1, arg2))
408 same = 0;
409 else
410 same = 1;
411 if (arg1) {
412 *pass1 = app_get_pass(arg1, same);
413 if (!*pass1)
414 return 0;
415 } else if (pass1)
416 *pass1 = NULL;
417 if (arg2) {
418 *pass2 = app_get_pass(arg2, same ? 2 : 0);
419 if (!*pass2)
420 return 0;
421 } else if (pass2)
422 *pass2 = NULL;
423 return 1;
424 }
425
426 static char *app_get_pass(char *arg, int keepbio)
427 {
428 char *tmp, tpass[APP_PASS_LEN];
429 static BIO *pwdbio = NULL;
430 int i;
431
432 if (strncmp(arg, "pass:", 5) == 0)
433 return BUF_strdup(arg + 5);
434 if (strncmp(arg, "env:", 4) == 0) {
435 tmp = getenv(arg + 4);
436 if (!tmp) {
437 BIO_printf(bio_err, "Can't read environment variable %s\n", arg + 4);
438 return NULL;
439 }
440 return BUF_strdup(tmp);
441 }
442 if (!keepbio || !pwdbio) {
443 if (strncmp(arg, "file:", 5) == 0) {
444 pwdbio = BIO_new_file(arg + 5, "r");
445 if (!pwdbio) {
446 BIO_printf(bio_err, "Can't open file %s\n", arg + 5);
447 return NULL;
448 }
449 #if !defined(_WIN32)
450 /*
451 * Under _WIN32, which covers even Win64 and CE, file
452 * descriptors referenced by BIO_s_fd are not inherited
453 * by child process and therefore below is not an option.
454 * It could have been an option if bss_fd.c was operating
455 * on real Windows descriptors, such as those obtained
456 * with CreateFile.
457 */
458 } else if (strncmp(arg, "fd:", 3) == 0) {
459 BIO *btmp;
460 i = atoi(arg + 3);
461 if (i >= 0)
462 pwdbio = BIO_new_fd(i, BIO_NOCLOSE);
463 if ((i < 0) || !pwdbio) {
464 BIO_printf(bio_err, "Can't access file descriptor %s\n", arg + 3);
465 return NULL;
466 }
467 /*
468 * Can't do BIO_gets on an fd BIO so add a buffering BIO
469 */
470 btmp = BIO_new(BIO_f_buffer());
471 pwdbio = BIO_push(btmp, pwdbio);
472 #endif
473 } else if (strcmp(arg, "stdin") == 0) {
474 pwdbio = dup_bio_in();
475 if (!pwdbio) {
476 BIO_printf(bio_err, "Can't open BIO for stdin\n");
477 return NULL;
478 }
479 } else {
480 BIO_printf(bio_err, "Invalid password argument \"%s\"\n", arg);
481 return NULL;
482 }
483 }
484 i = BIO_gets(pwdbio, tpass, APP_PASS_LEN);
485 if (keepbio != 1) {
486 BIO_free_all(pwdbio);
487 pwdbio = NULL;
488 }
489 if (i <= 0) {
490 BIO_printf(bio_err, "Error reading password from BIO\n");
491 return NULL;
492 }
493 tmp = strchr(tpass, '\n');
494 if (tmp)
495 *tmp = 0;
496 return BUF_strdup(tpass);
497 }
498
499 int add_oid_section(CONF *conf)
500 {
501 char *p;
502 STACK_OF(CONF_VALUE) *sktmp;
503 CONF_VALUE *cnf;
504 int i;
505
506 if ((p = NCONF_get_string(conf, NULL, "oid_section")) == NULL) {
507 ERR_clear_error();
508 return 1;
509 }
510 if ((sktmp = NCONF_get_section(conf, p)) == NULL) {
511 BIO_printf(bio_err, "problem loading oid section %s\n", p);
512 return 0;
513 }
514 for (i = 0; i < sk_CONF_VALUE_num(sktmp); i++) {
515 cnf = sk_CONF_VALUE_value(sktmp, i);
516 if (OBJ_create(cnf->value, cnf->name, cnf->name) == NID_undef) {
517 BIO_printf(bio_err, "problem creating object %s=%s\n",
518 cnf->name, cnf->value);
519 return 0;
520 }
521 }
522 return 1;
523 }
524
525 static int load_pkcs12(BIO *in, const char *desc,
526 pem_password_cb *pem_cb, void *cb_data,
527 EVP_PKEY **pkey, X509 **cert, STACK_OF(X509) **ca)
528 {
529 const char *pass;
530 char tpass[PEM_BUFSIZE];
531 int len, ret = 0;
532 PKCS12 *p12;
533 p12 = d2i_PKCS12_bio(in, NULL);
534 if (p12 == NULL) {
535 BIO_printf(bio_err, "Error loading PKCS12 file for %s\n", desc);
536 goto die;
537 }
538 /* See if an empty password will do */
539 if (PKCS12_verify_mac(p12, "", 0) || PKCS12_verify_mac(p12, NULL, 0))
540 pass = "";
541 else {
542 if (!pem_cb)
543 pem_cb = (pem_password_cb *)password_callback;
544 len = pem_cb(tpass, PEM_BUFSIZE, 0, cb_data);
545 if (len < 0) {
546 BIO_printf(bio_err, "Passphrase callback error for %s\n", desc);
547 goto die;
548 }
549 if (len < PEM_BUFSIZE)
550 tpass[len] = 0;
551 if (!PKCS12_verify_mac(p12, tpass, len)) {
552 BIO_printf(bio_err,
553 "Mac verify error (wrong password?) in PKCS12 file for %s\n",
554 desc);
555 goto die;
556 }
557 pass = tpass;
558 }
559 ret = PKCS12_parse(p12, pass, pkey, cert, ca);
560 die:
561 PKCS12_free(p12);
562 return ret;
563 }
564
565 int load_cert_crl_http(const char *url, X509 **pcert, X509_CRL **pcrl)
566 {
567 char *host = NULL, *port = NULL, *path = NULL;
568 BIO *bio = NULL;
569 OCSP_REQ_CTX *rctx = NULL;
570 int use_ssl, rv = 0;
571 if (!OCSP_parse_url(url, &host, &port, &path, &use_ssl))
572 goto err;
573 if (use_ssl) {
574 BIO_puts(bio_err, "https not supported\n");
575 goto err;
576 }
577 bio = BIO_new_connect(host);
578 if (!bio || !BIO_set_conn_port(bio, port))
579 goto err;
580 rctx = OCSP_REQ_CTX_new(bio, 1024);
581 if (!rctx)
582 goto err;
583 if (!OCSP_REQ_CTX_http(rctx, "GET", path))
584 goto err;
585 if (!OCSP_REQ_CTX_add1_header(rctx, "Host", host))
586 goto err;
587 if (pcert) {
588 do {
589 rv = X509_http_nbio(rctx, pcert);
590 } while (rv == -1);
591 } else {
592 do {
593 rv = X509_CRL_http_nbio(rctx, pcrl);
594 } while (rv == -1);
595 }
596
597 err:
598 OPENSSL_free(host);
599 OPENSSL_free(path);
600 OPENSSL_free(port);
601 if (bio)
602 BIO_free_all(bio);
603 OCSP_REQ_CTX_free(rctx);
604 if (rv != 1) {
605 BIO_printf(bio_err, "Error loading %s from %s\n",
606 pcert ? "certificate" : "CRL", url);
607 ERR_print_errors(bio_err);
608 }
609 return rv;
610 }
611
612 X509 *load_cert(const char *file, int format,
613 const char *pass, ENGINE *e, const char *cert_descrip)
614 {
615 X509 *x = NULL;
616 BIO *cert;
617
618 if (format == FORMAT_HTTP) {
619 load_cert_crl_http(file, &x, NULL);
620 return x;
621 }
622
623 if (file == NULL) {
624 unbuffer(stdin);
625 cert = dup_bio_in();
626 } else
627 cert = bio_open_default(file, RB(format));
628 if (cert == NULL)
629 goto end;
630
631 if (format == FORMAT_ASN1)
632 x = d2i_X509_bio(cert, NULL);
633 else if (format == FORMAT_NETSCAPE) {
634 NETSCAPE_X509 *nx;
635 nx = ASN1_item_d2i_bio(ASN1_ITEM_rptr(NETSCAPE_X509), cert, NULL);
636 if (nx == NULL)
637 goto end;
638
639 if ((strncmp(NETSCAPE_CERT_HDR, (char *)nx->header->data,
640 nx->header->length) != 0)) {
641 NETSCAPE_X509_free(nx);
642 BIO_printf(bio_err, "Error reading header on certificate\n");
643 goto end;
644 }
645 x = nx->cert;
646 nx->cert = NULL;
647 NETSCAPE_X509_free(nx);
648 } else if (format == FORMAT_PEM)
649 x = PEM_read_bio_X509_AUX(cert, NULL,
650 (pem_password_cb *)password_callback, NULL);
651 else if (format == FORMAT_PKCS12) {
652 if (!load_pkcs12(cert, cert_descrip, NULL, NULL, NULL, &x, NULL))
653 goto end;
654 } else {
655 BIO_printf(bio_err, "bad input format specified for %s\n", cert_descrip);
656 goto end;
657 }
658 end:
659 if (x == NULL) {
660 BIO_printf(bio_err, "unable to load certificate\n");
661 ERR_print_errors(bio_err);
662 }
663 BIO_free(cert);
664 return (x);
665 }
666
667 X509_CRL *load_crl(const char *infile, int format)
668 {
669 X509_CRL *x = NULL;
670 BIO *in = NULL;
671
672 if (format == FORMAT_HTTP) {
673 load_cert_crl_http(infile, NULL, &x);
674 return x;
675 }
676
677 in = bio_open_default(infile, RB(format));
678 if (in == NULL)
679 goto end;
680 if (format == FORMAT_ASN1)
681 x = d2i_X509_CRL_bio(in, NULL);
682 else if (format == FORMAT_PEM)
683 x = PEM_read_bio_X509_CRL(in, NULL, NULL, NULL);
684 else {
685 BIO_printf(bio_err, "bad input format specified for input crl\n");
686 goto end;
687 }
688 if (x == NULL) {
689 BIO_printf(bio_err, "unable to load CRL\n");
690 ERR_print_errors(bio_err);
691 goto end;
692 }
693
694 end:
695 BIO_free(in);
696 return (x);
697 }
698
699 EVP_PKEY *load_key(const char *file, int format, int maybe_stdin,
700 const char *pass, ENGINE *e, const char *key_descrip)
701 {
702 BIO *key = NULL;
703 EVP_PKEY *pkey = NULL;
704 PW_CB_DATA cb_data;
705
706 cb_data.password = pass;
707 cb_data.prompt_info = file;
708
709 if (file == NULL && (!maybe_stdin || format == FORMAT_ENGINE)) {
710 BIO_printf(bio_err, "no keyfile specified\n");
711 goto end;
712 }
713 #ifndef OPENSSL_NO_ENGINE
714 if (format == FORMAT_ENGINE) {
715 if (!e)
716 BIO_printf(bio_err, "no engine specified\n");
717 else {
718 pkey = ENGINE_load_private_key(e, file, ui_method, &cb_data);
719 if (!pkey) {
720 BIO_printf(bio_err, "cannot load %s from engine\n", key_descrip);
721 ERR_print_errors(bio_err);
722 }
723 }
724 goto end;
725 }
726 #endif
727 if (file == NULL && maybe_stdin) {
728 unbuffer(stdin);
729 key = dup_bio_in();
730 } else
731 key = bio_open_default(file, RB(format));
732 if (key == NULL)
733 goto end;
734 if (format == FORMAT_ASN1) {
735 pkey = d2i_PrivateKey_bio(key, NULL);
736 } else if (format == FORMAT_PEM) {
737 pkey = PEM_read_bio_PrivateKey(key, NULL,
738 (pem_password_cb *)password_callback,
739 &cb_data);
740 }
741 #if !defined(OPENSSL_NO_RC4) && !defined(OPENSSL_NO_RSA)
742 else if (format == FORMAT_NETSCAPE)
743 pkey = load_netscape_key(key, file, key_descrip, format);
744 #endif
745 else if (format == FORMAT_PKCS12) {
746 if (!load_pkcs12(key, key_descrip,
747 (pem_password_cb *)password_callback, &cb_data,
748 &pkey, NULL, NULL))
749 goto end;
750 }
751 #if !defined(OPENSSL_NO_RSA) && !defined(OPENSSL_NO_DSA) && !defined (OPENSSL_NO_RC4)
752 else if (format == FORMAT_MSBLOB)
753 pkey = b2i_PrivateKey_bio(key);
754 else if (format == FORMAT_PVK)
755 pkey = b2i_PVK_bio(key, (pem_password_cb *)password_callback,
756 &cb_data);
757 #endif
758 else {
759 BIO_printf(bio_err, "bad input format specified for key file\n");
760 goto end;
761 }
762 end:
763 BIO_free(key);
764 if (pkey == NULL) {
765 BIO_printf(bio_err, "unable to load %s\n", key_descrip);
766 ERR_print_errors(bio_err);
767 }
768 return (pkey);
769 }
770
771 static const char *key_file_format(int format)
772 {
773 if (format == FORMAT_PEM || format == FORMAT_PEMRSA)
774 return "r";
775 return "rb";
776 }
777
778 EVP_PKEY *load_pubkey(const char *file, int format, int maybe_stdin,
779 const char *pass, ENGINE *e, const char *key_descrip)
780 {
781 BIO *key = NULL;
782 EVP_PKEY *pkey = NULL;
783 PW_CB_DATA cb_data;
784
785 cb_data.password = pass;
786 cb_data.prompt_info = file;
787
788 if (file == NULL && (!maybe_stdin || format == FORMAT_ENGINE)) {
789 BIO_printf(bio_err, "no keyfile specified\n");
790 goto end;
791 }
792 #ifndef OPENSSL_NO_ENGINE
793 if (format == FORMAT_ENGINE) {
794 if (!e)
795 BIO_printf(bio_err, "no engine specified\n");
796 else
797 pkey = ENGINE_load_public_key(e, file, ui_method, &cb_data);
798 goto end;
799 }
800 #endif
801 if (file == NULL && maybe_stdin) {
802 unbuffer(stdin);
803 key = dup_bio_in();
804 } else
805 key = bio_open_default(file, key_file_format(format));
806 if (key == NULL)
807 goto end;
808 if (format == FORMAT_ASN1) {
809 pkey = d2i_PUBKEY_bio(key, NULL);
810 }
811 #ifndef OPENSSL_NO_RSA
812 else if (format == FORMAT_ASN1RSA) {
813 RSA *rsa;
814 rsa = d2i_RSAPublicKey_bio(key, NULL);
815 if (rsa) {
816 pkey = EVP_PKEY_new();
817 if (pkey)
818 EVP_PKEY_set1_RSA(pkey, rsa);
819 RSA_free(rsa);
820 } else
821 pkey = NULL;
822 } else if (format == FORMAT_PEMRSA) {
823 RSA *rsa;
824 rsa = PEM_read_bio_RSAPublicKey(key, NULL,
825 (pem_password_cb *)password_callback,
826 &cb_data);
827 if (rsa) {
828 pkey = EVP_PKEY_new();
829 if (pkey)
830 EVP_PKEY_set1_RSA(pkey, rsa);
831 RSA_free(rsa);
832 } else
833 pkey = NULL;
834 }
835 #endif
836 else if (format == FORMAT_PEM) {
837 pkey = PEM_read_bio_PUBKEY(key, NULL,
838 (pem_password_cb *)password_callback,
839 &cb_data);
840 }
841 #if !defined(OPENSSL_NO_RC4) && !defined(OPENSSL_NO_RSA)
842 else if (format == FORMAT_NETSCAPE)
843 pkey = load_netscape_key(key, file, key_descrip, format);
844 #endif
845 #if !defined(OPENSSL_NO_RSA) && !defined(OPENSSL_NO_DSA)
846 else if (format == FORMAT_MSBLOB)
847 pkey = b2i_PublicKey_bio(key);
848 #endif
849 end:
850 BIO_free(key);
851 if (pkey == NULL)
852 BIO_printf(bio_err, "unable to load %s\n", key_descrip);
853 return (pkey);
854 }
855
856 #if !defined(OPENSSL_NO_RC4) && !defined(OPENSSL_NO_RSA)
857 static EVP_PKEY *load_netscape_key(BIO *key, const char *file,
858 const char *key_descrip, int format)
859 {
860 EVP_PKEY *pkey;
861 BUF_MEM *buf;
862 RSA *rsa;
863 const unsigned char *p;
864 int size, i;
865
866 buf = BUF_MEM_new();
867 pkey = EVP_PKEY_new();
868 size = 0;
869 if (buf == NULL || pkey == NULL)
870 goto error;
871 for (;;) {
872 if (!BUF_MEM_grow_clean(buf, size + 1024 * 10))
873 goto error;
874 i = BIO_read(key, &(buf->data[size]), 1024 * 10);
875 size += i;
876 if (i == 0)
877 break;
878 if (i < 0) {
879 BIO_printf(bio_err, "Error reading %s %s", key_descrip, file);
880 goto error;
881 }
882 }
883 p = (unsigned char *)buf->data;
884 rsa = d2i_RSA_NET(NULL, &p, (long)size, NULL, 0);
885 if (rsa == NULL)
886 goto error;
887 BUF_MEM_free(buf);
888 EVP_PKEY_set1_RSA(pkey, rsa);
889 return pkey;
890 error:
891 BUF_MEM_free(buf);
892 EVP_PKEY_free(pkey);
893 return NULL;
894 }
895 #endif /* ndef OPENSSL_NO_RC4 */
896
897 static int load_certs_crls(const char *file, int format,
898 const char *pass, ENGINE *e, const char *desc,
899 STACK_OF(X509) **pcerts,
900 STACK_OF(X509_CRL) **pcrls)
901 {
902 int i;
903 BIO *bio;
904 STACK_OF(X509_INFO) *xis = NULL;
905 X509_INFO *xi;
906 PW_CB_DATA cb_data;
907 int rv = 0;
908
909 cb_data.password = pass;
910 cb_data.prompt_info = file;
911
912 if (format != FORMAT_PEM) {
913 BIO_printf(bio_err, "bad input format specified for %s\n", desc);
914 return 0;
915 }
916
917 bio = bio_open_default(file, "r");
918 if (bio == NULL)
919 return 0;
920
921 xis = PEM_X509_INFO_read_bio(bio, NULL,
922 (pem_password_cb *)password_callback,
923 &cb_data);
924
925 BIO_free(bio);
926
927 if (pcerts) {
928 *pcerts = sk_X509_new_null();
929 if (!*pcerts)
930 goto end;
931 }
932
933 if (pcrls) {
934 *pcrls = sk_X509_CRL_new_null();
935 if (!*pcrls)
936 goto end;
937 }
938
939 for (i = 0; i < sk_X509_INFO_num(xis); i++) {
940 xi = sk_X509_INFO_value(xis, i);
941 if (xi->x509 && pcerts) {
942 if (!sk_X509_push(*pcerts, xi->x509))
943 goto end;
944 xi->x509 = NULL;
945 }
946 if (xi->crl && pcrls) {
947 if (!sk_X509_CRL_push(*pcrls, xi->crl))
948 goto end;
949 xi->crl = NULL;
950 }
951 }
952
953 if (pcerts && sk_X509_num(*pcerts) > 0)
954 rv = 1;
955
956 if (pcrls && sk_X509_CRL_num(*pcrls) > 0)
957 rv = 1;
958
959 end:
960
961 sk_X509_INFO_pop_free(xis, X509_INFO_free);
962
963 if (rv == 0) {
964 if (pcerts) {
965 sk_X509_pop_free(*pcerts, X509_free);
966 *pcerts = NULL;
967 }
968 if (pcrls) {
969 sk_X509_CRL_pop_free(*pcrls, X509_CRL_free);
970 *pcrls = NULL;
971 }
972 BIO_printf(bio_err, "unable to load %s\n",
973 pcerts ? "certificates" : "CRLs");
974 ERR_print_errors(bio_err);
975 }
976 return rv;
977 }
978
979 void* app_malloc(int sz, const char *what)
980 {
981 void *vp = OPENSSL_malloc(sz);
982
983 if (vp == NULL) {
984 BIO_printf(bio_err, "%s: Could not allocate %d bytes for %s\n",
985 opt_getprog(), sz, what);
986 ERR_print_errors(bio_err);
987 exit(1);
988 }
989 return vp;
990 }
991
992
993
994 STACK_OF(X509) *load_certs(const char *file, int format,
995 const char *pass, ENGINE *e, const char *desc)
996 {
997 STACK_OF(X509) *certs;
998 if (!load_certs_crls(file, format, pass, e, desc, &certs, NULL))
999 return NULL;
1000 return certs;
1001 }
1002
1003 STACK_OF(X509_CRL) *load_crls(const char *file, int format,
1004 const char *pass, ENGINE *e, const char *desc)
1005 {
1006 STACK_OF(X509_CRL) *crls;
1007 if (!load_certs_crls(file, format, pass, e, desc, NULL, &crls))
1008 return NULL;
1009 return crls;
1010 }
1011
1012 #define X509V3_EXT_UNKNOWN_MASK (0xfL << 16)
1013 /* Return error for unknown extensions */
1014 #define X509V3_EXT_DEFAULT 0
1015 /* Print error for unknown extensions */
1016 #define X509V3_EXT_ERROR_UNKNOWN (1L << 16)
1017 /* ASN1 parse unknown extensions */
1018 #define X509V3_EXT_PARSE_UNKNOWN (2L << 16)
1019 /* BIO_dump unknown extensions */
1020 #define X509V3_EXT_DUMP_UNKNOWN (3L << 16)
1021
1022 #define X509_FLAG_CA (X509_FLAG_NO_ISSUER | X509_FLAG_NO_PUBKEY | \
1023 X509_FLAG_NO_HEADER | X509_FLAG_NO_VERSION)
1024
1025 int set_cert_ex(unsigned long *flags, const char *arg)
1026 {
1027 static const NAME_EX_TBL cert_tbl[] = {
1028 {"compatible", X509_FLAG_COMPAT, 0xffffffffl},
1029 {"ca_default", X509_FLAG_CA, 0xffffffffl},
1030 {"no_header", X509_FLAG_NO_HEADER, 0},
1031 {"no_version", X509_FLAG_NO_VERSION, 0},
1032 {"no_serial", X509_FLAG_NO_SERIAL, 0},
1033 {"no_signame", X509_FLAG_NO_SIGNAME, 0},
1034 {"no_validity", X509_FLAG_NO_VALIDITY, 0},
1035 {"no_subject", X509_FLAG_NO_SUBJECT, 0},
1036 {"no_issuer", X509_FLAG_NO_ISSUER, 0},
1037 {"no_pubkey", X509_FLAG_NO_PUBKEY, 0},
1038 {"no_extensions", X509_FLAG_NO_EXTENSIONS, 0},
1039 {"no_sigdump", X509_FLAG_NO_SIGDUMP, 0},
1040 {"no_aux", X509_FLAG_NO_AUX, 0},
1041 {"no_attributes", X509_FLAG_NO_ATTRIBUTES, 0},
1042 {"ext_default", X509V3_EXT_DEFAULT, X509V3_EXT_UNKNOWN_MASK},
1043 {"ext_error", X509V3_EXT_ERROR_UNKNOWN, X509V3_EXT_UNKNOWN_MASK},
1044 {"ext_parse", X509V3_EXT_PARSE_UNKNOWN, X509V3_EXT_UNKNOWN_MASK},
1045 {"ext_dump", X509V3_EXT_DUMP_UNKNOWN, X509V3_EXT_UNKNOWN_MASK},
1046 {NULL, 0, 0}
1047 };
1048 return set_multi_opts(flags, arg, cert_tbl);
1049 }
1050
1051 int set_name_ex(unsigned long *flags, const char *arg)
1052 {
1053 static const NAME_EX_TBL ex_tbl[] = {
1054 {"esc_2253", ASN1_STRFLGS_ESC_2253, 0},
1055 {"esc_ctrl", ASN1_STRFLGS_ESC_CTRL, 0},
1056 {"esc_msb", ASN1_STRFLGS_ESC_MSB, 0},
1057 {"use_quote", ASN1_STRFLGS_ESC_QUOTE, 0},
1058 {"utf8", ASN1_STRFLGS_UTF8_CONVERT, 0},
1059 {"ignore_type", ASN1_STRFLGS_IGNORE_TYPE, 0},
1060 {"show_type", ASN1_STRFLGS_SHOW_TYPE, 0},
1061 {"dump_all", ASN1_STRFLGS_DUMP_ALL, 0},
1062 {"dump_nostr", ASN1_STRFLGS_DUMP_UNKNOWN, 0},
1063 {"dump_der", ASN1_STRFLGS_DUMP_DER, 0},
1064 {"compat", XN_FLAG_COMPAT, 0xffffffffL},
1065 {"sep_comma_plus", XN_FLAG_SEP_COMMA_PLUS, XN_FLAG_SEP_MASK},
1066 {"sep_comma_plus_space", XN_FLAG_SEP_CPLUS_SPC, XN_FLAG_SEP_MASK},
1067 {"sep_semi_plus_space", XN_FLAG_SEP_SPLUS_SPC, XN_FLAG_SEP_MASK},
1068 {"sep_multiline", XN_FLAG_SEP_MULTILINE, XN_FLAG_SEP_MASK},
1069 {"dn_rev", XN_FLAG_DN_REV, 0},
1070 {"nofname", XN_FLAG_FN_NONE, XN_FLAG_FN_MASK},
1071 {"sname", XN_FLAG_FN_SN, XN_FLAG_FN_MASK},
1072 {"lname", XN_FLAG_FN_LN, XN_FLAG_FN_MASK},
1073 {"align", XN_FLAG_FN_ALIGN, 0},
1074 {"oid", XN_FLAG_FN_OID, XN_FLAG_FN_MASK},
1075 {"space_eq", XN_FLAG_SPC_EQ, 0},
1076 {"dump_unknown", XN_FLAG_DUMP_UNKNOWN_FIELDS, 0},
1077 {"RFC2253", XN_FLAG_RFC2253, 0xffffffffL},
1078 {"oneline", XN_FLAG_ONELINE, 0xffffffffL},
1079 {"multiline", XN_FLAG_MULTILINE, 0xffffffffL},
1080 {"ca_default", XN_FLAG_MULTILINE, 0xffffffffL},
1081 {NULL, 0, 0}
1082 };
1083 return set_multi_opts(flags, arg, ex_tbl);
1084 }
1085
1086 int set_ext_copy(int *copy_type, const char *arg)
1087 {
1088 if (strcasecmp(arg, "none") == 0)
1089 *copy_type = EXT_COPY_NONE;
1090 else if (strcasecmp(arg, "copy") == 0)
1091 *copy_type = EXT_COPY_ADD;
1092 else if (strcasecmp(arg, "copyall") == 0)
1093 *copy_type = EXT_COPY_ALL;
1094 else
1095 return 0;
1096 return 1;
1097 }
1098
1099 int copy_extensions(X509 *x, X509_REQ *req, int copy_type)
1100 {
1101 STACK_OF(X509_EXTENSION) *exts = NULL;
1102 X509_EXTENSION *ext, *tmpext;
1103 ASN1_OBJECT *obj;
1104 int i, idx, ret = 0;
1105 if (!x || !req || (copy_type == EXT_COPY_NONE))
1106 return 1;
1107 exts = X509_REQ_get_extensions(req);
1108
1109 for (i = 0; i < sk_X509_EXTENSION_num(exts); i++) {
1110 ext = sk_X509_EXTENSION_value(exts, i);
1111 obj = X509_EXTENSION_get_object(ext);
1112 idx = X509_get_ext_by_OBJ(x, obj, -1);
1113 /* Does extension exist? */
1114 if (idx != -1) {
1115 /* If normal copy don't override existing extension */
1116 if (copy_type == EXT_COPY_ADD)
1117 continue;
1118 /* Delete all extensions of same type */
1119 do {
1120 tmpext = X509_get_ext(x, idx);
1121 X509_delete_ext(x, idx);
1122 X509_EXTENSION_free(tmpext);
1123 idx = X509_get_ext_by_OBJ(x, obj, -1);
1124 } while (idx != -1);
1125 }
1126 if (!X509_add_ext(x, ext, -1))
1127 goto end;
1128 }
1129
1130 ret = 1;
1131
1132 end:
1133
1134 sk_X509_EXTENSION_pop_free(exts, X509_EXTENSION_free);
1135
1136 return ret;
1137 }
1138
1139 static int set_multi_opts(unsigned long *flags, const char *arg,
1140 const NAME_EX_TBL * in_tbl)
1141 {
1142 STACK_OF(CONF_VALUE) *vals;
1143 CONF_VALUE *val;
1144 int i, ret = 1;
1145 if (!arg)
1146 return 0;
1147 vals = X509V3_parse_list(arg);
1148 for (i = 0; i < sk_CONF_VALUE_num(vals); i++) {
1149 val = sk_CONF_VALUE_value(vals, i);
1150 if (!set_table_opts(flags, val->name, in_tbl))
1151 ret = 0;
1152 }
1153 sk_CONF_VALUE_pop_free(vals, X509V3_conf_free);
1154 return ret;
1155 }
1156
1157 static int set_table_opts(unsigned long *flags, const char *arg,
1158 const NAME_EX_TBL * in_tbl)
1159 {
1160 char c;
1161 const NAME_EX_TBL *ptbl;
1162 c = arg[0];
1163
1164 if (c == '-') {
1165 c = 0;
1166 arg++;
1167 } else if (c == '+') {
1168 c = 1;
1169 arg++;
1170 } else
1171 c = 1;
1172
1173 for (ptbl = in_tbl; ptbl->name; ptbl++) {
1174 if (strcasecmp(arg, ptbl->name) == 0) {
1175 *flags &= ~ptbl->mask;
1176 if (c)
1177 *flags |= ptbl->flag;
1178 else
1179 *flags &= ~ptbl->flag;
1180 return 1;
1181 }
1182 }
1183 return 0;
1184 }
1185
1186 void print_name(BIO *out, const char *title, X509_NAME *nm,
1187 unsigned long lflags)
1188 {
1189 char *buf;
1190 char mline = 0;
1191 int indent = 0;
1192
1193 if (title)
1194 BIO_puts(out, title);
1195 if ((lflags & XN_FLAG_SEP_MASK) == XN_FLAG_SEP_MULTILINE) {
1196 mline = 1;
1197 indent = 4;
1198 }
1199 if (lflags == XN_FLAG_COMPAT) {
1200 buf = X509_NAME_oneline(nm, 0, 0);
1201 BIO_puts(out, buf);
1202 BIO_puts(out, "\n");
1203 OPENSSL_free(buf);
1204 } else {
1205 if (mline)
1206 BIO_puts(out, "\n");
1207 X509_NAME_print_ex(out, nm, indent, lflags);
1208 BIO_puts(out, "\n");
1209 }
1210 }
1211
1212 void print_bignum_var(BIO *out, BIGNUM *in, const char *var,
1213 int len, unsigned char *buffer)
1214 {
1215 BIO_printf(out, " static unsigned char %s_%d[] = {", var, len);
1216 if (BN_is_zero(in))
1217 BIO_printf(out, "\n\t0x00");
1218 else {
1219 int i, l;
1220
1221 l = BN_bn2bin(in, buffer);
1222 for (i = 0; i < l; i++) {
1223 if ((i % 10) == 0)
1224 BIO_printf(out, "\n\t");
1225 if (i < l - 1)
1226 BIO_printf(out, "0x%02X, ", buffer[i]);
1227 else
1228 BIO_printf(out, "0x%02X", buffer[i]);
1229 }
1230 }
1231 BIO_printf(out, "\n };\n");
1232 }
1233 void print_array(BIO *out, const char* title, int len, const unsigned char* d)
1234 {
1235 int i;
1236
1237 BIO_printf(out, "unsigned char %s[%d] = {", title, len);
1238 for (i = 0; i < len; i++) {
1239 if ((i % 10) == 0)
1240 BIO_printf(out, "\n ");
1241 if (i < len - 1)
1242 BIO_printf(out, "0x%02X, ", d[i]);
1243 else
1244 BIO_printf(out, "0x%02X", d[i]);
1245 }
1246 BIO_printf(out, "\n};\n");
1247 }
1248
1249 X509_STORE *setup_verify(char *CAfile, char *CApath)
1250 {
1251 X509_STORE *store = X509_STORE_new();
1252 X509_LOOKUP *lookup;
1253
1254 if (!store)
1255 goto end;
1256 lookup = X509_STORE_add_lookup(store, X509_LOOKUP_file());
1257 if (lookup == NULL)
1258 goto end;
1259 if (CAfile) {
1260 if (!X509_LOOKUP_load_file(lookup, CAfile, X509_FILETYPE_PEM)) {
1261 BIO_printf(bio_err, "Error loading file %s\n", CAfile);
1262 goto end;
1263 }
1264 } else
1265 X509_LOOKUP_load_file(lookup, NULL, X509_FILETYPE_DEFAULT);
1266
1267 lookup = X509_STORE_add_lookup(store, X509_LOOKUP_hash_dir());
1268 if (lookup == NULL)
1269 goto end;
1270 if (CApath) {
1271 if (!X509_LOOKUP_add_dir(lookup, CApath, X509_FILETYPE_PEM)) {
1272 BIO_printf(bio_err, "Error loading directory %s\n", CApath);
1273 goto end;
1274 }
1275 } else
1276 X509_LOOKUP_add_dir(lookup, NULL, X509_FILETYPE_DEFAULT);
1277
1278 ERR_clear_error();
1279 return store;
1280 end:
1281 X509_STORE_free(store);
1282 return NULL;
1283 }
1284
1285 #ifndef OPENSSL_NO_ENGINE
1286 /* Try to load an engine in a shareable library */
1287 static ENGINE *try_load_engine(const char *engine, int debug)
1288 {
1289 ENGINE *e = ENGINE_by_id("dynamic");
1290 if (e) {
1291 if (!ENGINE_ctrl_cmd_string(e, "SO_PATH", engine, 0)
1292 || !ENGINE_ctrl_cmd_string(e, "LOAD", NULL, 0)) {
1293 ENGINE_free(e);
1294 e = NULL;
1295 }
1296 }
1297 return e;
1298 }
1299
1300 ENGINE *setup_engine(const char *engine, int debug)
1301 {
1302 ENGINE *e = NULL;
1303
1304 if (engine) {
1305 if (strcmp(engine, "auto") == 0) {
1306 BIO_printf(bio_err, "enabling auto ENGINE support\n");
1307 ENGINE_register_all_complete();
1308 return NULL;
1309 }
1310 if ((e = ENGINE_by_id(engine)) == NULL
1311 && (e = try_load_engine(engine, debug)) == NULL) {
1312 BIO_printf(bio_err, "invalid engine \"%s\"\n", engine);
1313 ERR_print_errors(bio_err);
1314 return NULL;
1315 }
1316 if (debug) {
1317 ENGINE_ctrl(e, ENGINE_CTRL_SET_LOGSTREAM, 0, bio_err, 0);
1318 }
1319 ENGINE_ctrl_cmd(e, "SET_USER_INTERFACE", 0, ui_method, 0, 1);
1320 if (!ENGINE_set_default(e, ENGINE_METHOD_ALL)) {
1321 BIO_printf(bio_err, "can't use that engine\n");
1322 ERR_print_errors(bio_err);
1323 ENGINE_free(e);
1324 return NULL;
1325 }
1326
1327 BIO_printf(bio_err, "engine \"%s\" set.\n", ENGINE_get_id(e));
1328
1329 /* Free our "structural" reference. */
1330 ENGINE_free(e);
1331 }
1332 return e;
1333 }
1334 #endif
1335
1336 static unsigned long index_serial_hash(const OPENSSL_CSTRING *a)
1337 {
1338 const char *n;
1339
1340 n = a[DB_serial];
1341 while (*n == '0')
1342 n++;
1343 return (lh_strhash(n));
1344 }
1345
1346 static int index_serial_cmp(const OPENSSL_CSTRING *a,
1347 const OPENSSL_CSTRING *b)
1348 {
1349 const char *aa, *bb;
1350
1351 for (aa = a[DB_serial]; *aa == '0'; aa++) ;
1352 for (bb = b[DB_serial]; *bb == '0'; bb++) ;
1353 return (strcmp(aa, bb));
1354 }
1355
1356 static int index_name_qual(char **a)
1357 {
1358 return (a[0][0] == 'V');
1359 }
1360
1361 static unsigned long index_name_hash(const OPENSSL_CSTRING *a)
1362 {
1363 return (lh_strhash(a[DB_name]));
1364 }
1365
1366 int index_name_cmp(const OPENSSL_CSTRING *a, const OPENSSL_CSTRING *b)
1367 {
1368 return (strcmp(a[DB_name], b[DB_name]));
1369 }
1370
1371 static IMPLEMENT_LHASH_HASH_FN(index_serial, OPENSSL_CSTRING)
1372 static IMPLEMENT_LHASH_COMP_FN(index_serial, OPENSSL_CSTRING)
1373 static IMPLEMENT_LHASH_HASH_FN(index_name, OPENSSL_CSTRING)
1374 static IMPLEMENT_LHASH_COMP_FN(index_name, OPENSSL_CSTRING)
1375 #undef BSIZE
1376 #define BSIZE 256
1377 BIGNUM *load_serial(char *serialfile, int create, ASN1_INTEGER **retai)
1378 {
1379 BIO *in = NULL;
1380 BIGNUM *ret = NULL;
1381 char buf[1024];
1382 ASN1_INTEGER *ai = NULL;
1383
1384 ai = ASN1_INTEGER_new();
1385 if (ai == NULL)
1386 goto err;
1387
1388 in = BIO_new_file(serialfile, "r");
1389 if (in == NULL) {
1390 if (!create) {
1391 perror(serialfile);
1392 goto err;
1393 }
1394 ERR_clear_error();
1395 ret = BN_new();
1396 if (ret == NULL || !rand_serial(ret, ai))
1397 BIO_printf(bio_err, "Out of memory\n");
1398 } else {
1399 if (!a2i_ASN1_INTEGER(in, ai, buf, 1024)) {
1400 BIO_printf(bio_err, "unable to load number from %s\n",
1401 serialfile);
1402 goto err;
1403 }
1404 ret = ASN1_INTEGER_to_BN(ai, NULL);
1405 if (ret == NULL) {
1406 BIO_printf(bio_err,
1407 "error converting number from bin to BIGNUM\n");
1408 goto err;
1409 }
1410 }
1411
1412 if (ret && retai) {
1413 *retai = ai;
1414 ai = NULL;
1415 }
1416 err:
1417 BIO_free(in);
1418 ASN1_INTEGER_free(ai);
1419 return (ret);
1420 }
1421
1422 int save_serial(char *serialfile, char *suffix, BIGNUM *serial,
1423 ASN1_INTEGER **retai)
1424 {
1425 char buf[1][BSIZE];
1426 BIO *out = NULL;
1427 int ret = 0;
1428 ASN1_INTEGER *ai = NULL;
1429 int j;
1430
1431 if (suffix == NULL)
1432 j = strlen(serialfile);
1433 else
1434 j = strlen(serialfile) + strlen(suffix) + 1;
1435 if (j >= BSIZE) {
1436 BIO_printf(bio_err, "file name too long\n");
1437 goto err;
1438 }
1439
1440 if (suffix == NULL)
1441 BUF_strlcpy(buf[0], serialfile, BSIZE);
1442 else {
1443 #ifndef OPENSSL_SYS_VMS
1444 j = BIO_snprintf(buf[0], sizeof buf[0], "%s.%s", serialfile, suffix);
1445 #else
1446 j = BIO_snprintf(buf[0], sizeof buf[0], "%s-%s", serialfile, suffix);
1447 #endif
1448 }
1449 #ifdef RL_DEBUG
1450 BIO_printf(bio_err, "DEBUG: writing \"%s\"\n", buf[0]);
1451 #endif
1452 out = BIO_new_file(buf[0], "w");
1453 if (out == NULL) {
1454 ERR_print_errors(bio_err);
1455 goto err;
1456 }
1457
1458 if ((ai = BN_to_ASN1_INTEGER(serial, NULL)) == NULL) {
1459 BIO_printf(bio_err, "error converting serial to ASN.1 format\n");
1460 goto err;
1461 }
1462 i2a_ASN1_INTEGER(out, ai);
1463 BIO_puts(out, "\n");
1464 ret = 1;
1465 if (retai) {
1466 *retai = ai;
1467 ai = NULL;
1468 }
1469 err:
1470 BIO_free_all(out);
1471 ASN1_INTEGER_free(ai);
1472 return (ret);
1473 }
1474
1475 int rotate_serial(char *serialfile, char *new_suffix, char *old_suffix)
1476 {
1477 char buf[5][BSIZE];
1478 int i, j;
1479
1480 i = strlen(serialfile) + strlen(old_suffix);
1481 j = strlen(serialfile) + strlen(new_suffix);
1482 if (i > j)
1483 j = i;
1484 if (j + 1 >= BSIZE) {
1485 BIO_printf(bio_err, "file name too long\n");
1486 goto err;
1487 }
1488 #ifndef OPENSSL_SYS_VMS
1489 j = BIO_snprintf(buf[0], sizeof buf[0], "%s.%s", serialfile, new_suffix);
1490 #else
1491 j = BIO_snprintf(buf[0], sizeof buf[0], "%s-%s", serialfile, new_suffix);
1492 #endif
1493 #ifndef OPENSSL_SYS_VMS
1494 j = BIO_snprintf(buf[1], sizeof buf[1], "%s.%s", serialfile, old_suffix);
1495 #else
1496 j = BIO_snprintf(buf[1], sizeof buf[1], "%s-%s", serialfile, old_suffix);
1497 #endif
1498 #ifdef RL_DEBUG
1499 BIO_printf(bio_err, "DEBUG: renaming \"%s\" to \"%s\"\n",
1500 serialfile, buf[1]);
1501 #endif
1502 if (rename(serialfile, buf[1]) < 0 && errno != ENOENT
1503 #ifdef ENOTDIR
1504 && errno != ENOTDIR
1505 #endif
1506 ) {
1507 BIO_printf(bio_err,
1508 "unable to rename %s to %s\n", serialfile, buf[1]);
1509 perror("reason");
1510 goto err;
1511 }
1512 #ifdef RL_DEBUG
1513 BIO_printf(bio_err, "DEBUG: renaming \"%s\" to \"%s\"\n",
1514 buf[0], serialfile);
1515 #endif
1516 if (rename(buf[0], serialfile) < 0) {
1517 BIO_printf(bio_err,
1518 "unable to rename %s to %s\n", buf[0], serialfile);
1519 perror("reason");
1520 rename(buf[1], serialfile);
1521 goto err;
1522 }
1523 return 1;
1524 err:
1525 return 0;
1526 }
1527
1528 int rand_serial(BIGNUM *b, ASN1_INTEGER *ai)
1529 {
1530 BIGNUM *btmp;
1531 int ret = 0;
1532
1533 if (b)
1534 btmp = b;
1535 else
1536 btmp = BN_new();
1537
1538 if (!btmp)
1539 return 0;
1540
1541 if (!BN_pseudo_rand(btmp, SERIAL_RAND_BITS, 0, 0))
1542 goto error;
1543 if (ai && !BN_to_ASN1_INTEGER(btmp, ai))
1544 goto error;
1545
1546 ret = 1;
1547
1548 error:
1549
1550 if (btmp != b)
1551 BN_free(btmp);
1552
1553 return ret;
1554 }
1555
1556 CA_DB *load_index(char *dbfile, DB_ATTR *db_attr)
1557 {
1558 CA_DB *retdb = NULL;
1559 TXT_DB *tmpdb = NULL;
1560 BIO *in;
1561 CONF *dbattr_conf = NULL;
1562 char buf[1][BSIZE];
1563 long errorline = -1;
1564
1565 in = BIO_new_file(dbfile, "r");
1566 if (in == NULL) {
1567 ERR_print_errors(bio_err);
1568 goto err;
1569 }
1570 if ((tmpdb = TXT_DB_read(in, DB_NUMBER)) == NULL)
1571 goto err;
1572
1573 #ifndef OPENSSL_SYS_VMS
1574 BIO_snprintf(buf[0], sizeof buf[0], "%s.attr", dbfile);
1575 #else
1576 BIO_snprintf(buf[0], sizeof buf[0], "%s-attr", dbfile);
1577 #endif
1578 dbattr_conf = NCONF_new(NULL);
1579 if (NCONF_load(dbattr_conf, buf[0], &errorline) <= 0) {
1580 if (errorline > 0) {
1581 BIO_printf(bio_err,
1582 "error on line %ld of db attribute file '%s'\n",
1583 errorline, buf[0]);
1584 goto err;
1585 } else {
1586 NCONF_free(dbattr_conf);
1587 dbattr_conf = NULL;
1588 }
1589 }
1590
1591 retdb = app_malloc(sizeof(*retdb), "new DB");
1592 retdb->db = tmpdb;
1593 tmpdb = NULL;
1594 if (db_attr)
1595 retdb->attributes = *db_attr;
1596 else {
1597 retdb->attributes.unique_subject = 1;
1598 }
1599
1600 if (dbattr_conf) {
1601 char *p = NCONF_get_string(dbattr_conf, NULL, "unique_subject");
1602 if (p) {
1603 #ifdef RL_DEBUG
1604 BIO_printf(bio_err,
1605 "DEBUG[load_index]: unique_subject = \"%s\"\n", p);
1606 #endif
1607 retdb->attributes.unique_subject = parse_yesno(p, 1);
1608 }
1609 }
1610
1611 err:
1612 NCONF_free(dbattr_conf);
1613 TXT_DB_free(tmpdb);
1614 BIO_free_all(in);
1615 return retdb;
1616 }
1617
1618 int index_index(CA_DB *db)
1619 {
1620 if (!TXT_DB_create_index(db->db, DB_serial, NULL,
1621 LHASH_HASH_FN(index_serial),
1622 LHASH_COMP_FN(index_serial))) {
1623 BIO_printf(bio_err,
1624 "error creating serial number index:(%ld,%ld,%ld)\n",
1625 db->db->error, db->db->arg1, db->db->arg2);
1626 return 0;
1627 }
1628
1629 if (db->attributes.unique_subject
1630 && !TXT_DB_create_index(db->db, DB_name, index_name_qual,
1631 LHASH_HASH_FN(index_name),
1632 LHASH_COMP_FN(index_name))) {
1633 BIO_printf(bio_err, "error creating name index:(%ld,%ld,%ld)\n",
1634 db->db->error, db->db->arg1, db->db->arg2);
1635 return 0;
1636 }
1637 return 1;
1638 }
1639
1640 int save_index(const char *dbfile, const char *suffix, CA_DB *db)
1641 {
1642 char buf[3][BSIZE];
1643 BIO *out;
1644 int j;
1645
1646 j = strlen(dbfile) + strlen(suffix);
1647 if (j + 6 >= BSIZE) {
1648 BIO_printf(bio_err, "file name too long\n");
1649 goto err;
1650 }
1651 #ifndef OPENSSL_SYS_VMS
1652 j = BIO_snprintf(buf[2], sizeof buf[2], "%s.attr", dbfile);
1653 #else
1654 j = BIO_snprintf(buf[2], sizeof buf[2], "%s-attr", dbfile);
1655 #endif
1656 #ifndef OPENSSL_SYS_VMS
1657 j = BIO_snprintf(buf[1], sizeof buf[1], "%s.attr.%s", dbfile, suffix);
1658 #else
1659 j = BIO_snprintf(buf[1], sizeof buf[1], "%s-attr-%s", dbfile, suffix);
1660 #endif
1661 #ifndef OPENSSL_SYS_VMS
1662 j = BIO_snprintf(buf[0], sizeof buf[0], "%s.%s", dbfile, suffix);
1663 #else
1664 j = BIO_snprintf(buf[0], sizeof buf[0], "%s-%s", dbfile, suffix);
1665 #endif
1666 #ifdef RL_DEBUG
1667 BIO_printf(bio_err, "DEBUG: writing \"%s\"\n", buf[0]);
1668 #endif
1669 out = BIO_new_file(buf[0], "w");
1670 if (out == NULL) {
1671 perror(dbfile);
1672 BIO_printf(bio_err, "unable to open '%s'\n", dbfile);
1673 goto err;
1674 }
1675 j = TXT_DB_write(out, db->db);
1676 BIO_free(out);
1677 if (j <= 0)
1678 goto err;
1679
1680 out = BIO_new_file(buf[1], "w");
1681 #ifdef RL_DEBUG
1682 BIO_printf(bio_err, "DEBUG: writing \"%s\"\n", buf[1]);
1683 #endif
1684 if (out == NULL) {
1685 perror(buf[2]);
1686 BIO_printf(bio_err, "unable to open '%s'\n", buf[2]);
1687 goto err;
1688 }
1689 BIO_printf(out, "unique_subject = %s\n",
1690 db->attributes.unique_subject ? "yes" : "no");
1691 BIO_free(out);
1692
1693 return 1;
1694 err:
1695 return 0;
1696 }
1697
1698 int rotate_index(const char *dbfile, const char *new_suffix,
1699 const char *old_suffix)
1700 {
1701 char buf[5][BSIZE];
1702 int i, j;
1703
1704 i = strlen(dbfile) + strlen(old_suffix);
1705 j = strlen(dbfile) + strlen(new_suffix);
1706 if (i > j)
1707 j = i;
1708 if (j + 6 >= BSIZE) {
1709 BIO_printf(bio_err, "file name too long\n");
1710 goto err;
1711 }
1712 #ifndef OPENSSL_SYS_VMS
1713 j = BIO_snprintf(buf[4], sizeof buf[4], "%s.attr", dbfile);
1714 #else
1715 j = BIO_snprintf(buf[4], sizeof buf[4], "%s-attr", dbfile);
1716 #endif
1717 #ifndef OPENSSL_SYS_VMS
1718 j = BIO_snprintf(buf[2], sizeof buf[2], "%s.attr.%s", dbfile, new_suffix);
1719 #else
1720 j = BIO_snprintf(buf[2], sizeof buf[2], "%s-attr-%s", dbfile, new_suffix);
1721 #endif
1722 #ifndef OPENSSL_SYS_VMS
1723 j = BIO_snprintf(buf[0], sizeof buf[0], "%s.%s", dbfile, new_suffix);
1724 #else
1725 j = BIO_snprintf(buf[0], sizeof buf[0], "%s-%s", dbfile, new_suffix);
1726 #endif
1727 #ifndef OPENSSL_SYS_VMS
1728 j = BIO_snprintf(buf[1], sizeof buf[1], "%s.%s", dbfile, old_suffix);
1729 #else
1730 j = BIO_snprintf(buf[1], sizeof buf[1], "%s-%s", dbfile, old_suffix);
1731 #endif
1732 #ifndef OPENSSL_SYS_VMS
1733 j = BIO_snprintf(buf[3], sizeof buf[3], "%s.attr.%s", dbfile, old_suffix);
1734 #else
1735 j = BIO_snprintf(buf[3], sizeof buf[3], "%s-attr-%s", dbfile, old_suffix);
1736 #endif
1737 #ifdef RL_DEBUG
1738 BIO_printf(bio_err, "DEBUG: renaming \"%s\" to \"%s\"\n", dbfile, buf[1]);
1739 #endif
1740 if (rename(dbfile, buf[1]) < 0 && errno != ENOENT
1741 #ifdef ENOTDIR
1742 && errno != ENOTDIR
1743 #endif
1744 ) {
1745 BIO_printf(bio_err, "unable to rename %s to %s\n", dbfile, buf[1]);
1746 perror("reason");
1747 goto err;
1748 }
1749 #ifdef RL_DEBUG
1750 BIO_printf(bio_err, "DEBUG: renaming \"%s\" to \"%s\"\n", buf[0], dbfile);
1751 #endif
1752 if (rename(buf[0], dbfile) < 0) {
1753 BIO_printf(bio_err, "unable to rename %s to %s\n", buf[0], dbfile);
1754 perror("reason");
1755 rename(buf[1], dbfile);
1756 goto err;
1757 }
1758 #ifdef RL_DEBUG
1759 BIO_printf(bio_err, "DEBUG: renaming \"%s\" to \"%s\"\n", buf[4], buf[3]);
1760 #endif
1761 if (rename(buf[4], buf[3]) < 0 && errno != ENOENT
1762 #ifdef ENOTDIR
1763 && errno != ENOTDIR
1764 #endif
1765 ) {
1766 BIO_printf(bio_err, "unable to rename %s to %s\n", buf[4], buf[3]);
1767 perror("reason");
1768 rename(dbfile, buf[0]);
1769 rename(buf[1], dbfile);
1770 goto err;
1771 }
1772 #ifdef RL_DEBUG
1773 BIO_printf(bio_err, "DEBUG: renaming \"%s\" to \"%s\"\n", buf[2], buf[4]);
1774 #endif
1775 if (rename(buf[2], buf[4]) < 0) {
1776 BIO_printf(bio_err, "unable to rename %s to %s\n", buf[2], buf[4]);
1777 perror("reason");
1778 rename(buf[3], buf[4]);
1779 rename(dbfile, buf[0]);
1780 rename(buf[1], dbfile);
1781 goto err;
1782 }
1783 return 1;
1784 err:
1785 return 0;
1786 }
1787
1788 void free_index(CA_DB *db)
1789 {
1790 if (db) {
1791 TXT_DB_free(db->db);
1792 OPENSSL_free(db);
1793 }
1794 }
1795
1796 int parse_yesno(const char *str, int def)
1797 {
1798 if (str) {
1799 switch (*str) {
1800 case 'f': /* false */
1801 case 'F': /* FALSE */
1802 case 'n': /* no */
1803 case 'N': /* NO */
1804 case '0': /* 0 */
1805 return 0;
1806 case 't': /* true */
1807 case 'T': /* TRUE */
1808 case 'y': /* yes */
1809 case 'Y': /* YES */
1810 case '1': /* 1 */
1811 return 1;
1812 }
1813 }
1814 return def;
1815 }
1816
1817 /*
1818 * name is expected to be in the format /type0=value0/type1=value1/type2=...
1819 * where characters may be escaped by \
1820 */
1821 X509_NAME *parse_name(const char *cp, long chtype, int canmulti)
1822 {
1823 int nextismulti = 0;
1824 char *work;
1825 X509_NAME *n;
1826
1827 if (*cp++ != '/')
1828 return NULL;
1829
1830 n = X509_NAME_new();
1831 if (n == NULL)
1832 return NULL;
1833 work = OPENSSL_strdup(cp);
1834 if (work == NULL)
1835 goto err;
1836
1837 while (*cp) {
1838 char *bp = work;
1839 char *typestr = bp;
1840 unsigned char *valstr;
1841 int nid;
1842 int ismulti = nextismulti;
1843 nextismulti = 0;
1844
1845 /* Collect the type */
1846 while (*cp && *cp != '=')
1847 *bp++ = *cp++;
1848 if (*cp == '\0') {
1849 BIO_printf(bio_err,
1850 "%s: Hit end of string before finding the equals.\n",
1851 opt_getprog());
1852 goto err;
1853 }
1854 *bp++ = '\0';
1855 ++cp;
1856
1857 /* Collect the value. */
1858 valstr = (unsigned char *)bp;
1859 for (; *cp && *cp != '/'; *bp++ = *cp++) {
1860 if (canmulti && *cp == '+') {
1861 nextismulti = 1;
1862 break;
1863 }
1864 if (*cp == '\\' && *++cp == '\0') {
1865 BIO_printf(bio_err,
1866 "%s: escape character at end of string\n",
1867 opt_getprog());
1868 goto err;
1869 }
1870 }
1871 *bp++ = '\0';
1872
1873 /* If not at EOS (must be + or /), move forward. */
1874 if (*cp)
1875 ++cp;
1876
1877 /* Parse */
1878 nid = OBJ_txt2nid(typestr);
1879 if (nid == NID_undef) {
1880 BIO_printf(bio_err, "%s: Skipping unknown attribute \"%s\"\n",
1881 opt_getprog(), typestr);
1882 continue;
1883 }
1884 if (!X509_NAME_add_entry_by_NID(n, nid, chtype,
1885 valstr, strlen((char *)valstr),
1886 -1, ismulti ? -1 : 0))
1887 goto err;
1888 }
1889
1890 OPENSSL_free(work);
1891 return n;
1892
1893 err:
1894 X509_NAME_free(n);
1895 OPENSSL_free(work);
1896 return NULL;
1897 }
1898
1899 /*
1900 * Read whole contents of a BIO into an allocated memory buffer and return
1901 * it.
1902 */
1903
1904 int bio_to_mem(unsigned char **out, int maxlen, BIO *in)
1905 {
1906 BIO *mem;
1907 int len, ret;
1908 unsigned char tbuf[1024];
1909 mem = BIO_new(BIO_s_mem());
1910 if (!mem)
1911 return -1;
1912 for (;;) {
1913 if ((maxlen != -1) && maxlen < 1024)
1914 len = maxlen;
1915 else
1916 len = 1024;
1917 len = BIO_read(in, tbuf, len);
1918 if (len <= 0)
1919 break;
1920 if (BIO_write(mem, tbuf, len) != len) {
1921 BIO_free(mem);
1922 return -1;
1923 }
1924 maxlen -= len;
1925
1926 if (maxlen == 0)
1927 break;
1928 }
1929 ret = BIO_get_mem_data(mem, (char **)out);
1930 BIO_set_flags(mem, BIO_FLAGS_MEM_RDONLY);
1931 BIO_free(mem);
1932 return ret;
1933 }
1934
1935 int pkey_ctrl_string(EVP_PKEY_CTX *ctx, char *value)
1936 {
1937 int rv;
1938 char *stmp, *vtmp = NULL;
1939 stmp = BUF_strdup(value);
1940 if (!stmp)
1941 return -1;
1942 vtmp = strchr(stmp, ':');
1943 if (vtmp) {
1944 *vtmp = 0;
1945 vtmp++;
1946 }
1947 rv = EVP_PKEY_CTX_ctrl_str(ctx, stmp, vtmp);
1948 OPENSSL_free(stmp);
1949 return rv;
1950 }
1951
1952 static void nodes_print(const char *name, STACK_OF(X509_POLICY_NODE) *nodes)
1953 {
1954 X509_POLICY_NODE *node;
1955 int i;
1956
1957 BIO_printf(bio_err, "%s Policies:", name);
1958 if (nodes) {
1959 BIO_puts(bio_err, "\n");
1960 for (i = 0; i < sk_X509_POLICY_NODE_num(nodes); i++) {
1961 node = sk_X509_POLICY_NODE_value(nodes, i);
1962 X509_POLICY_NODE_print(bio_err, node, 2);
1963 }
1964 } else
1965 BIO_puts(bio_err, " <empty>\n");
1966 }
1967
1968 void policies_print(X509_STORE_CTX *ctx)
1969 {
1970 X509_POLICY_TREE *tree;
1971 int explicit_policy;
1972 tree = X509_STORE_CTX_get0_policy_tree(ctx);
1973 explicit_policy = X509_STORE_CTX_get_explicit_policy(ctx);
1974
1975 BIO_printf(bio_err, "Require explicit Policy: %s\n",
1976 explicit_policy ? "True" : "False");
1977
1978 nodes_print("Authority", X509_policy_tree_get0_policies(tree));
1979 nodes_print("User", X509_policy_tree_get0_user_policies(tree));
1980 }
1981
1982 #if !defined(OPENSSL_NO_JPAKE) && !defined(OPENSSL_NO_PSK)
1983
1984 static JPAKE_CTX *jpake_init(const char *us, const char *them,
1985 const char *secret)
1986 {
1987 BIGNUM *p = NULL;
1988 BIGNUM *g = NULL;
1989 BIGNUM *q = NULL;
1990 BIGNUM *bnsecret = BN_new();
1991 JPAKE_CTX *ctx;
1992
1993 /* Use a safe prime for p (that we found earlier) */
1994 BN_hex2bn(&p,
1995 "F9E5B365665EA7A05A9C534502780FEE6F1AB5BD4F49947FD036DBD7E905269AF46EF28B0FC07487EE4F5D20FB3C0AF8E700F3A2FA3414970CBED44FEDFF80CE78D800F184BB82435D137AADA2C6C16523247930A63B85661D1FC817A51ACD96168E95898A1F83A79FFB529368AA7833ABD1B0C3AEDDB14D2E1A2F71D99F763F");
1996 g = BN_new();
1997 BN_set_word(g, 2);
1998 q = BN_new();
1999 BN_rshift1(q, p);
2000
2001 BN_bin2bn((const unsigned char *)secret, strlen(secret), bnsecret);
2002
2003 ctx = JPAKE_CTX_new(us, them, p, g, q, bnsecret);
2004 BN_free(bnsecret);
2005 BN_free(q);
2006 BN_free(g);
2007 BN_free(p);
2008
2009 return ctx;
2010 }
2011
2012 static void jpake_send_part(BIO *conn, const JPAKE_STEP_PART *p)
2013 {
2014 BN_print(conn, p->gx);
2015 BIO_puts(conn, "\n");
2016 BN_print(conn, p->zkpx.gr);
2017 BIO_puts(conn, "\n");
2018 BN_print(conn, p->zkpx.b);
2019 BIO_puts(conn, "\n");
2020 }
2021
2022 static void jpake_send_step1(BIO *bconn, JPAKE_CTX *ctx)
2023 {
2024 JPAKE_STEP1 s1;
2025
2026 JPAKE_STEP1_init(&s1);
2027 JPAKE_STEP1_generate(&s1, ctx);
2028 jpake_send_part(bconn, &s1.p1);
2029 jpake_send_part(bconn, &s1.p2);
2030 (void)BIO_flush(bconn);
2031 JPAKE_STEP1_release(&s1);
2032 }
2033
2034 static void jpake_send_step2(BIO *bconn, JPAKE_CTX *ctx)
2035 {
2036 JPAKE_STEP2 s2;
2037
2038 JPAKE_STEP2_init(&s2);
2039 JPAKE_STEP2_generate(&s2, ctx);
2040 jpake_send_part(bconn, &s2);
2041 (void)BIO_flush(bconn);
2042 JPAKE_STEP2_release(&s2);
2043 }
2044
2045 static void jpake_send_step3a(BIO *bconn, JPAKE_CTX *ctx)
2046 {
2047 JPAKE_STEP3A s3a;
2048
2049 JPAKE_STEP3A_init(&s3a);
2050 JPAKE_STEP3A_generate(&s3a, ctx);
2051 BIO_write(bconn, s3a.hhk, sizeof s3a.hhk);
2052 (void)BIO_flush(bconn);
2053 JPAKE_STEP3A_release(&s3a);
2054 }
2055
2056 static void jpake_send_step3b(BIO *bconn, JPAKE_CTX *ctx)
2057 {
2058 JPAKE_STEP3B s3b;
2059
2060 JPAKE_STEP3B_init(&s3b);
2061 JPAKE_STEP3B_generate(&s3b, ctx);
2062 BIO_write(bconn, s3b.hk, sizeof s3b.hk);
2063 (void)BIO_flush(bconn);
2064 JPAKE_STEP3B_release(&s3b);
2065 }
2066
2067 static void readbn(BIGNUM **bn, BIO *bconn)
2068 {
2069 char buf[10240];
2070 int l;
2071
2072 l = BIO_gets(bconn, buf, sizeof buf);
2073 assert(l > 0);
2074 assert(buf[l - 1] == '\n');
2075 buf[l - 1] = '\0';
2076 BN_hex2bn(bn, buf);
2077 }
2078
2079 static void jpake_receive_part(JPAKE_STEP_PART *p, BIO *bconn)
2080 {
2081 readbn(&p->gx, bconn);
2082 readbn(&p->zkpx.gr, bconn);
2083 readbn(&p->zkpx.b, bconn);
2084 }
2085
2086 static void jpake_receive_step1(JPAKE_CTX *ctx, BIO *bconn)
2087 {
2088 JPAKE_STEP1 s1;
2089
2090 JPAKE_STEP1_init(&s1);
2091 jpake_receive_part(&s1.p1, bconn);
2092 jpake_receive_part(&s1.p2, bconn);
2093 if (!JPAKE_STEP1_process(ctx, &s1)) {
2094 ERR_print_errors(bio_err);
2095 exit(1);
2096 }
2097 JPAKE_STEP1_release(&s1);
2098 }
2099
2100 static void jpake_receive_step2(JPAKE_CTX *ctx, BIO *bconn)
2101 {
2102 JPAKE_STEP2 s2;
2103
2104 JPAKE_STEP2_init(&s2);
2105 jpake_receive_part(&s2, bconn);
2106 if (!JPAKE_STEP2_process(ctx, &s2)) {
2107 ERR_print_errors(bio_err);
2108 exit(1);
2109 }
2110 JPAKE_STEP2_release(&s2);
2111 }
2112
2113 static void jpake_receive_step3a(JPAKE_CTX *ctx, BIO *bconn)
2114 {
2115 JPAKE_STEP3A s3a;
2116 int l;
2117
2118 JPAKE_STEP3A_init(&s3a);
2119 l = BIO_read(bconn, s3a.hhk, sizeof s3a.hhk);
2120 assert(l == sizeof s3a.hhk);
2121 if (!JPAKE_STEP3A_process(ctx, &s3a)) {
2122 ERR_print_errors(bio_err);
2123 exit(1);
2124 }
2125 JPAKE_STEP3A_release(&s3a);
2126 }
2127
2128 static void jpake_receive_step3b(JPAKE_CTX *ctx, BIO *bconn)
2129 {
2130 JPAKE_STEP3B s3b;
2131 int l;
2132
2133 JPAKE_STEP3B_init(&s3b);
2134 l = BIO_read(bconn, s3b.hk, sizeof s3b.hk);
2135 assert(l == sizeof s3b.hk);
2136 if (!JPAKE_STEP3B_process(ctx, &s3b)) {
2137 ERR_print_errors(bio_err);
2138 exit(1);
2139 }
2140 JPAKE_STEP3B_release(&s3b);
2141 }
2142
2143 void jpake_client_auth(BIO *out, BIO *conn, const char *secret)
2144 {
2145 JPAKE_CTX *ctx;
2146 BIO *bconn;
2147
2148 BIO_puts(out, "Authenticating with JPAKE\n");
2149
2150 ctx = jpake_init("client", "server", secret);
2151
2152 bconn = BIO_new(BIO_f_buffer());
2153 BIO_push(bconn, conn);
2154
2155 jpake_send_step1(bconn, ctx);
2156 jpake_receive_step1(ctx, bconn);
2157 jpake_send_step2(bconn, ctx);
2158 jpake_receive_step2(ctx, bconn);
2159 jpake_send_step3a(bconn, ctx);
2160 jpake_receive_step3b(ctx, bconn);
2161
2162 BIO_puts(out, "JPAKE authentication succeeded, setting PSK\n");
2163
2164 OPENSSL_free(psk_key);
2165 psk_key = BN_bn2hex(JPAKE_get_shared_key(ctx));
2166
2167 BIO_pop(bconn);
2168 BIO_free(bconn);
2169
2170 JPAKE_CTX_free(ctx);
2171 }
2172
2173 void jpake_server_auth(BIO *out, BIO *conn, const char *secret)
2174 {
2175 JPAKE_CTX *ctx;
2176 BIO *bconn;
2177
2178 BIO_puts(out, "Authenticating with JPAKE\n");
2179
2180 ctx = jpake_init("server", "client", secret);
2181
2182 bconn = BIO_new(BIO_f_buffer());
2183 BIO_push(bconn, conn);
2184
2185 jpake_receive_step1(ctx, bconn);
2186 jpake_send_step1(bconn, ctx);
2187 jpake_receive_step2(ctx, bconn);
2188 jpake_send_step2(bconn, ctx);
2189 jpake_receive_step3a(ctx, bconn);
2190 jpake_send_step3b(bconn, ctx);
2191
2192 BIO_puts(out, "JPAKE authentication succeeded, setting PSK\n");
2193
2194 OPENSSL_free(psk_key);
2195 psk_key = BN_bn2hex(JPAKE_get_shared_key(ctx));
2196
2197 BIO_pop(bconn);
2198 BIO_free(bconn);
2199
2200 JPAKE_CTX_free(ctx);
2201 }
2202
2203 #endif
2204
2205 /*-
2206 * next_protos_parse parses a comma separated list of strings into a string
2207 * in a format suitable for passing to SSL_CTX_set_next_protos_advertised.
2208 * outlen: (output) set to the length of the resulting buffer on success.
2209 * err: (maybe NULL) on failure, an error message line is written to this BIO.
2210 * in: a NUL termianted string like "abc,def,ghi"
2211 *
2212 * returns: a malloced buffer or NULL on failure.
2213 */
2214 unsigned char *next_protos_parse(unsigned short *outlen, const char *in)
2215 {
2216 size_t len;
2217 unsigned char *out;
2218 size_t i, start = 0;
2219
2220 len = strlen(in);
2221 if (len >= 65535)
2222 return NULL;
2223
2224 out = app_malloc(strlen(in) + 1, "NPN buffer");
2225 for (i = 0; i <= len; ++i) {
2226 if (i == len || in[i] == ',') {
2227 if (i - start > 255) {
2228 OPENSSL_free(out);
2229 return NULL;
2230 }
2231 out[start] = i - start;
2232 start = i + 1;
2233 } else
2234 out[i + 1] = in[i];
2235 }
2236
2237 *outlen = len + 1;
2238 return out;
2239 }
2240
2241 void print_cert_checks(BIO *bio, X509 *x,
2242 const char *checkhost,
2243 const char *checkemail, const char *checkip)
2244 {
2245 if (x == NULL)
2246 return;
2247 if (checkhost) {
2248 BIO_printf(bio, "Hostname %s does%s match certificate\n",
2249 checkhost,
2250 X509_check_host(x, checkhost, 0, 0, NULL) == 1
2251 ? "" : " NOT");
2252 }
2253
2254 if (checkemail) {
2255 BIO_printf(bio, "Email %s does%s match certificate\n",
2256 checkemail, X509_check_email(x, checkemail, 0, 0)
2257 ? "" : " NOT");
2258 }
2259
2260 if (checkip) {
2261 BIO_printf(bio, "IP %s does%s match certificate\n",
2262 checkip, X509_check_ip_asc(x, checkip, 0) ? "" : " NOT");
2263 }
2264 }
2265
2266 /* Get first http URL from a DIST_POINT structure */
2267
2268 static const char *get_dp_url(DIST_POINT *dp)
2269 {
2270 GENERAL_NAMES *gens;
2271 GENERAL_NAME *gen;
2272 int i, gtype;
2273 ASN1_STRING *uri;
2274 if (!dp->distpoint || dp->distpoint->type != 0)
2275 return NULL;
2276 gens = dp->distpoint->name.fullname;
2277 for (i = 0; i < sk_GENERAL_NAME_num(gens); i++) {
2278 gen = sk_GENERAL_NAME_value(gens, i);
2279 uri = GENERAL_NAME_get0_value(gen, &gtype);
2280 if (gtype == GEN_URI && ASN1_STRING_length(uri) > 6) {
2281 char *uptr = (char *)ASN1_STRING_data(uri);
2282 if (strncmp(uptr, "http://", 7) == 0)
2283 return uptr;
2284 }
2285 }
2286 return NULL;
2287 }
2288
2289 /*
2290 * Look through a CRLDP structure and attempt to find an http URL to
2291 * downloads a CRL from.
2292 */
2293
2294 static X509_CRL *load_crl_crldp(STACK_OF(DIST_POINT) *crldp)
2295 {
2296 int i;
2297 const char *urlptr = NULL;
2298 for (i = 0; i < sk_DIST_POINT_num(crldp); i++) {
2299 DIST_POINT *dp = sk_DIST_POINT_value(crldp, i);
2300 urlptr = get_dp_url(dp);
2301 if (urlptr)
2302 return load_crl(urlptr, FORMAT_HTTP);
2303 }
2304 return NULL;
2305 }
2306
2307 /*
2308 * Example of downloading CRLs from CRLDP: not usable for real world as it
2309 * always downloads, doesn't support non-blocking I/O and doesn't cache
2310 * anything.
2311 */
2312
2313 static STACK_OF(X509_CRL) *crls_http_cb(X509_STORE_CTX *ctx, X509_NAME *nm)
2314 {
2315 X509 *x;
2316 STACK_OF(X509_CRL) *crls = NULL;
2317 X509_CRL *crl;
2318 STACK_OF(DIST_POINT) *crldp;
2319
2320 crls = sk_X509_CRL_new_null();
2321 if (!crls)
2322 return NULL;
2323 x = X509_STORE_CTX_get_current_cert(ctx);
2324 crldp = X509_get_ext_d2i(x, NID_crl_distribution_points, NULL, NULL);
2325 crl = load_crl_crldp(crldp);
2326 sk_DIST_POINT_pop_free(crldp, DIST_POINT_free);
2327 if (!crl)
2328 return NULL;
2329 sk_X509_CRL_push(crls, crl);
2330 /* Try to download delta CRL */
2331 crldp = X509_get_ext_d2i(x, NID_freshest_crl, NULL, NULL);
2332 crl = load_crl_crldp(crldp);
2333 sk_DIST_POINT_pop_free(crldp, DIST_POINT_free);
2334 if (crl)
2335 sk_X509_CRL_push(crls, crl);
2336 return crls;
2337 }
2338
2339 void store_setup_crl_download(X509_STORE *st)
2340 {
2341 X509_STORE_set_lookup_crls_cb(st, crls_http_cb);
2342 }
2343
2344 /*
2345 * Platform-specific sections
2346 */
2347 #if defined(_WIN32)
2348 # ifdef fileno
2349 # undef fileno
2350 # define fileno(a) (int)_fileno(a)
2351 # endif
2352
2353 # include <windows.h>
2354 # include <tchar.h>
2355
2356 static int WIN32_rename(const char *from, const char *to)
2357 {
2358 TCHAR *tfrom = NULL, *tto;
2359 DWORD err;
2360 int ret = 0;
2361
2362 if (sizeof(TCHAR) == 1) {
2363 tfrom = (TCHAR *)from;
2364 tto = (TCHAR *)to;
2365 } else { /* UNICODE path */
2366
2367 size_t i, flen = strlen(from) + 1, tlen = strlen(to) + 1;
2368 tfrom = malloc(sizeof(*tfrom) * (flen + tlen));
2369 if (tfrom == NULL)
2370 goto err;
2371 tto = tfrom + flen;
2372 # if !defined(_WIN32_WCE) || _WIN32_WCE>=101
2373 if (!MultiByteToWideChar(CP_ACP, 0, from, flen, (WCHAR *)tfrom, flen))
2374 # endif
2375 for (i = 0; i < flen; i++)
2376 tfrom[i] = (TCHAR)from[i];
2377 # if !defined(_WIN32_WCE) || _WIN32_WCE>=101
2378 if (!MultiByteToWideChar(CP_ACP, 0, to, tlen, (WCHAR *)tto, tlen))
2379 # endif
2380 for (i = 0; i < tlen; i++)
2381 tto[i] = (TCHAR)to[i];
2382 }
2383
2384 if (MoveFile(tfrom, tto))
2385 goto ok;
2386 err = GetLastError();
2387 if (err == ERROR_ALREADY_EXISTS || err == ERROR_FILE_EXISTS) {
2388 if (DeleteFile(tto) && MoveFile(tfrom, tto))
2389 goto ok;
2390 err = GetLastError();
2391 }
2392 if (err == ERROR_FILE_NOT_FOUND || err == ERROR_PATH_NOT_FOUND)
2393 errno = ENOENT;
2394 else if (err == ERROR_ACCESS_DENIED)
2395 errno = EACCES;
2396 else
2397 errno = EINVAL; /* we could map more codes... */
2398 err:
2399 ret = -1;
2400 ok:
2401 if (tfrom != NULL && tfrom != (TCHAR *)from)
2402 free(tfrom);
2403 return ret;
2404 }
2405 #endif
2406
2407 /* app_tminterval section */
2408 #if defined(_WIN32)
2409 double app_tminterval(int stop, int usertime)
2410 {
2411 FILETIME now;
2412 double ret = 0;
2413 static ULARGE_INTEGER tmstart;
2414 static int warning = 1;
2415 # ifdef _WIN32_WINNT
2416 static HANDLE proc = NULL;
2417
2418 if (proc == NULL) {
2419 if (check_winnt())
2420 proc = OpenProcess(PROCESS_QUERY_INFORMATION, FALSE,
2421 GetCurrentProcessId());
2422 if (proc == NULL)
2423 proc = (HANDLE) - 1;
2424 }
2425
2426 if (usertime && proc != (HANDLE) - 1) {
2427 FILETIME junk;
2428 GetProcessTimes(proc, &junk, &junk, &junk, &now);
2429 } else
2430 # endif
2431 {
2432 SYSTEMTIME systime;
2433
2434 if (usertime && warning) {
2435 BIO_printf(bio_err, "To get meaningful results, run "
2436 "this program on idle system.\n");
2437 warning = 0;
2438 }
2439 GetSystemTime(&systime);
2440 SystemTimeToFileTime(&systime, &now);
2441 }
2442
2443 if (stop == TM_START) {
2444 tmstart.u.LowPart = now.dwLowDateTime;
2445 tmstart.u.HighPart = now.dwHighDateTime;
2446 } else {
2447 ULARGE_INTEGER tmstop;
2448
2449 tmstop.u.LowPart = now.dwLowDateTime;
2450 tmstop.u.HighPart = now.dwHighDateTime;
2451
2452 ret = (__int64)(tmstop.QuadPart - tmstart.QuadPart) * 1e-7;
2453 }
2454
2455 return (ret);
2456 }
2457 #elif defined(OPENSSL_SYS_NETWARE)
2458 # include <time.h>
2459
2460 double app_tminterval(int stop, int usertime)
2461 {
2462 static clock_t tmstart;
2463 static int warning = 1;
2464 double ret = 0;
2465
2466 if (usertime && warning) {
2467 BIO_printf(bio_err, "To get meaningful results, run "
2468 "this program on idle system.\n");
2469 warning = 0;
2470 }
2471
2472 if (stop == TM_START)
2473 tmstart = clock();
2474 else
2475 ret = (clock() - tmstart) / (double)CLOCKS_PER_SEC;
2476
2477 return (ret);
2478 }
2479
2480
2481 #elif defined(OPENSSL_SYSTEM_VXWORKS)
2482 # include <time.h>
2483
2484 double app_tminterval(int stop, int usertime)
2485 {
2486 double ret = 0;
2487 # ifdef CLOCK_REALTIME
2488 static struct timespec tmstart;
2489 struct timespec now;
2490 # else
2491 static unsigned long tmstart;
2492 unsigned long now;
2493 # endif
2494 static int warning = 1;
2495
2496 if (usertime && warning) {
2497 BIO_printf(bio_err, "To get meaningful results, run "
2498 "this program on idle system.\n");
2499 warning = 0;
2500 }
2501 # ifdef CLOCK_REALTIME
2502 clock_gettime(CLOCK_REALTIME, &now);
2503 if (stop == TM_START)
2504 tmstart = now;
2505 else
2506 ret = ((now.tv_sec + now.tv_nsec * 1e-9)
2507 - (tmstart.tv_sec + tmstart.tv_nsec * 1e-9));
2508 # else
2509 now = tickGet();
2510 if (stop == TM_START)
2511 tmstart = now;
2512 else
2513 ret = (now - tmstart) / (double)sysClkRateGet();
2514 # endif
2515 return (ret);
2516 }
2517
2518 #elif defined(OPENSSL_SYSTEM_VMS)
2519 # include <time.h>
2520 # include <times.h>
2521
2522 double app_tminterval(int stop, int usertime)
2523 {
2524 static clock_t tmstart;
2525 double ret = 0;
2526 clock_t now;
2527 # ifdef __TMS
2528 struct tms rus;
2529
2530 now = times(&rus);
2531 if (usertime)
2532 now = rus.tms_utime;
2533 # else
2534 if (usertime)
2535 now = clock(); /* sum of user and kernel times */
2536 else {
2537 struct timeval tv;
2538 gettimeofday(&tv, NULL);
2539 now = (clock_t)((unsigned long long)tv.tv_sec * CLK_TCK +
2540 (unsigned long long)tv.tv_usec * (1000000 / CLK_TCK)
2541 );
2542 }
2543 # endif
2544 if (stop == TM_START)
2545 tmstart = now;
2546 else
2547 ret = (now - tmstart) / (double)(CLK_TCK);
2548
2549 return (ret);
2550 }
2551
2552 #elif defined(_SC_CLK_TCK) /* by means of unistd.h */
2553 # include <sys/times.h>
2554
2555 double app_tminterval(int stop, int usertime)
2556 {
2557 double ret = 0;
2558 struct tms rus;
2559 clock_t now = times(&rus);
2560 static clock_t tmstart;
2561
2562 if (usertime)
2563 now = rus.tms_utime;
2564
2565 if (stop == TM_START)
2566 tmstart = now;
2567 else {
2568 long int tck = sysconf(_SC_CLK_TCK);
2569 ret = (now - tmstart) / (double)tck;
2570 }
2571
2572 return (ret);
2573 }
2574
2575 #else
2576 # include <sys/time.h>
2577 # include <sys/resource.h>
2578
2579 double app_tminterval(int stop, int usertime)
2580 {
2581 double ret = 0;
2582 struct rusage rus;
2583 struct timeval now;
2584 static struct timeval tmstart;
2585
2586 if (usertime)
2587 getrusage(RUSAGE_SELF, &rus), now = rus.ru_utime;
2588 else
2589 gettimeofday(&now, NULL);
2590
2591 if (stop == TM_START)
2592 tmstart = now;
2593 else
2594 ret = ((now.tv_sec + now.tv_usec * 1e-6)
2595 - (tmstart.tv_sec + tmstart.tv_usec * 1e-6));
2596
2597 return ret;
2598 }
2599 #endif
2600
2601 int app_access(const char* name, int flag)
2602 {
2603 #ifdef _WIN32
2604 return _access(name, flag);
2605 #else
2606 return access(name, flag);
2607 #endif
2608 }
2609
2610 int app_hex(char c)
2611 {
2612 switch (c) {
2613 default:
2614 case '0':
2615 return 0;
2616 case '1':
2617 return 1;
2618 case '2':
2619 return 2;
2620 case '3':
2621 return 3;
2622 case '4':
2623 return 4;
2624 case '5':
2625 return 5;
2626 case '6':
2627 return 6;
2628 case '7':
2629 return 7;
2630 case '8':
2631 return 8;
2632 case '9':
2633 return 9;
2634 case 'a': case 'A':
2635 return 0x0A;
2636 case 'b': case 'B':
2637 return 0x0B;
2638 case 'c': case 'C':
2639 return 0x0C;
2640 case 'd': case 'D':
2641 return 0x0D;
2642 case 'e': case 'E':
2643 return 0x0E;
2644 case 'f': case 'F':
2645 return 0x0F;
2646 }
2647 }
2648
2649 /* app_isdir section */
2650 #ifdef _WIN32
2651 int app_isdir(const char *name)
2652 {
2653 HANDLE hList;
2654 WIN32_FIND_DATA FileData;
2655 # if defined(UNICODE) || defined(_UNICODE)
2656 size_t i, len_0 = strlen(name) + 1;
2657
2658 if (len_0 > OSSL_NELEM(FileData.cFileName))
2659 return -1;
2660
2661 # if !defined(_WIN32_WCE) || _WIN32_WCE>=101
2662 if (!MultiByteToWideChar
2663 (CP_ACP, 0, name, len_0, FileData.cFileName, len_0))
2664 # endif
2665 for (i = 0; i < len_0; i++)
2666 FileData.cFileName[i] = (WCHAR)name[i];
2667
2668 hList = FindFirstFile(FileData.cFileName, &FileData);
2669 # else
2670 hList = FindFirstFile(name, &FileData);
2671 # endif
2672 if (hList == INVALID_HANDLE_VALUE)
2673 return -1;
2674 FindClose(hList);
2675 return ((FileData.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) != 0);
2676 }
2677 #else
2678 # include <sys/stat.h>
2679 # ifndef S_ISDIR
2680 # if defined(_S_IFMT) && defined(_S_IFDIR)
2681 # define S_ISDIR(a) (((a) & _S_IFMT) == _S_IFDIR)
2682 # else
2683 # define S_ISDIR(a) (((a) & S_IFMT) == S_IFDIR)
2684 # endif
2685 # endif
2686
2687 int app_isdir(const char *name)
2688 {
2689 # if defined(S_ISDIR)
2690 struct stat st;
2691
2692 if (stat(name, &st) == 0)
2693 return S_ISDIR(st.st_mode);
2694 else
2695 return -1;
2696 # else
2697 return -1;
2698 # endif
2699 }
2700 #endif
2701
2702 /* raw_read|write section */
2703 #if defined(_WIN32) && defined(STD_INPUT_HANDLE)
2704 int raw_read_stdin(void *buf, int siz)
2705 {
2706 DWORD n;
2707 if (ReadFile(GetStdHandle(STD_INPUT_HANDLE), buf, siz, &n, NULL))
2708 return (n);
2709 else
2710 return (-1);
2711 }
2712 #else
2713 int raw_read_stdin(void *buf, int siz)
2714 {
2715 return read(fileno(stdin), buf, siz);
2716 }
2717 #endif
2718
2719 #if defined(_WIN32) && defined(STD_OUTPUT_HANDLE)
2720 int raw_write_stdout(const void *buf, int siz)
2721 {
2722 DWORD n;
2723 if (WriteFile(GetStdHandle(STD_OUTPUT_HANDLE), buf, siz, &n, NULL))
2724 return (n);
2725 else
2726 return (-1);
2727 }
2728 #else
2729 int raw_write_stdout(const void *buf, int siz)
2730 {
2731 return write(fileno(stdout), buf, siz);
2732 }
2733 #endif