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