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