RT4313: Fix build for !IMPLEMENTED code path in CRYPTO_secure_free()
[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(_UC(*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(_UC(*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     if (format == FORMAT_ENGINE) {
767         if (e == NULL)
768             BIO_printf(bio_err, "no engine specified\n");
769         else {
770 #ifndef OPENSSL_NO_ENGINE
771             pkey = ENGINE_load_private_key(e, file, ui_method, &cb_data);
772             if (pkey == NULL) {
773                 BIO_printf(bio_err, "cannot load %s from engine\n", key_descrip);
774                 ERR_print_errors(bio_err);
775             }
776 #else
777             BIO_printf(bio_err, "engines not supported\n");
778 #endif
779         }
780         goto end;
781     }
782     if (file == NULL && maybe_stdin) {
783         unbuffer(stdin);
784         key = dup_bio_in(format);
785     } else
786         key = bio_open_default(file, 'r', format);
787     if (key == NULL)
788         goto end;
789     if (format == FORMAT_ASN1) {
790         pkey = d2i_PrivateKey_bio(key, NULL);
791     } else if (format == FORMAT_PEM) {
792         pkey = PEM_read_bio_PrivateKey(key, NULL,
793                                        (pem_password_cb *)password_callback,
794                                        &cb_data);
795     }
796     else if (format == FORMAT_PKCS12) {
797         if (!load_pkcs12(key, key_descrip,
798                          (pem_password_cb *)password_callback, &cb_data,
799                          &pkey, NULL, NULL))
800             goto end;
801     }
802 #if !defined(OPENSSL_NO_RSA) && !defined(OPENSSL_NO_DSA) && !defined (OPENSSL_NO_RC4)
803     else if (format == FORMAT_MSBLOB)
804         pkey = b2i_PrivateKey_bio(key);
805     else if (format == FORMAT_PVK)
806         pkey = b2i_PVK_bio(key, (pem_password_cb *)password_callback,
807                            &cb_data);
808 #endif
809     else {
810         BIO_printf(bio_err, "bad input format specified for key file\n");
811         goto end;
812     }
813  end:
814     BIO_free(key);
815     if (pkey == NULL) {
816         BIO_printf(bio_err, "unable to load %s\n", key_descrip);
817         ERR_print_errors(bio_err);
818     }
819     return (pkey);
820 }
821
822 EVP_PKEY *load_pubkey(const char *file, int format, int maybe_stdin,
823                       const char *pass, ENGINE *e, const char *key_descrip)
824 {
825     BIO *key = NULL;
826     EVP_PKEY *pkey = NULL;
827     PW_CB_DATA cb_data;
828
829     cb_data.password = pass;
830     cb_data.prompt_info = file;
831
832     if (file == NULL && (!maybe_stdin || format == FORMAT_ENGINE)) {
833         BIO_printf(bio_err, "no keyfile specified\n");
834         goto end;
835     }
836     if (format == FORMAT_ENGINE) {
837         if (e == NULL)
838             BIO_printf(bio_err, "no engine specified\n");
839         else {
840 #ifndef OPENSSL_NO_ENGINE
841             pkey = ENGINE_load_public_key(e, file, ui_method, &cb_data);
842             if (pkey == NULL) {
843                 BIO_printf(bio_err, "cannot load %s from engine\n", key_descrip);
844                 ERR_print_errors(bio_err);
845             }
846 #else
847             BIO_printf(bio_err, "engines not supported\n");
848 #endif
849         }
850         goto end;
851     }
852     if (file == NULL && maybe_stdin) {
853         unbuffer(stdin);
854         key = dup_bio_in(format);
855     } else
856         key = bio_open_default(file, 'r', format);
857     if (key == NULL)
858         goto end;
859     if (format == FORMAT_ASN1) {
860         pkey = d2i_PUBKEY_bio(key, NULL);
861     }
862     else if (format == FORMAT_ASN1RSA) {
863 #ifndef OPENSSL_NO_RSA
864         RSA *rsa;
865         rsa = d2i_RSAPublicKey_bio(key, NULL);
866         if (rsa) {
867             pkey = EVP_PKEY_new();
868             if (pkey != NULL)
869                 EVP_PKEY_set1_RSA(pkey, rsa);
870             RSA_free(rsa);
871         } else
872 #else
873         BIO_printf(bio_err, "RSA keys not supported\n");
874 #endif
875             pkey = NULL;
876     } else if (format == FORMAT_PEMRSA) {
877 #ifndef OPENSSL_NO_RSA
878         RSA *rsa;
879         rsa = PEM_read_bio_RSAPublicKey(key, NULL,
880                                         (pem_password_cb *)password_callback,
881                                         &cb_data);
882         if (rsa != NULL) {
883             pkey = EVP_PKEY_new();
884             if (pkey != NULL)
885                 EVP_PKEY_set1_RSA(pkey, rsa);
886             RSA_free(rsa);
887         } else
888 #else
889         BIO_printf(bio_err, "RSA keys not supported\n");
890 #endif
891             pkey = NULL;
892     }
893     else if (format == FORMAT_PEM) {
894         pkey = PEM_read_bio_PUBKEY(key, NULL,
895                                    (pem_password_cb *)password_callback,
896                                    &cb_data);
897     }
898 #if !defined(OPENSSL_NO_RSA) && !defined(OPENSSL_NO_DSA)
899     else if (format == FORMAT_MSBLOB)
900         pkey = b2i_PublicKey_bio(key);
901 #endif
902  end:
903     BIO_free(key);
904     if (pkey == NULL)
905         BIO_printf(bio_err, "unable to load %s\n", key_descrip);
906     return (pkey);
907 }
908
909 static int load_certs_crls(const char *file, int format,
910                            const char *pass, ENGINE *e, const char *desc,
911                            STACK_OF(X509) **pcerts,
912                            STACK_OF(X509_CRL) **pcrls)
913 {
914     int i;
915     BIO *bio;
916     STACK_OF(X509_INFO) *xis = NULL;
917     X509_INFO *xi;
918     PW_CB_DATA cb_data;
919     int rv = 0;
920
921     cb_data.password = pass;
922     cb_data.prompt_info = file;
923
924     if (format != FORMAT_PEM) {
925         BIO_printf(bio_err, "bad input format specified for %s\n", desc);
926         return 0;
927     }
928
929     bio = bio_open_default(file, 'r', FORMAT_PEM);
930     if (bio == NULL)
931         return 0;
932
933     xis = PEM_X509_INFO_read_bio(bio, NULL,
934                                  (pem_password_cb *)password_callback,
935                                  &cb_data);
936
937     BIO_free(bio);
938
939     if (pcerts && *pcerts == NULL) {
940         *pcerts = sk_X509_new_null();
941         if (!*pcerts)
942             goto end;
943     }
944
945     if (pcrls && *pcrls == NULL) {
946         *pcrls = sk_X509_CRL_new_null();
947         if (!*pcrls)
948             goto end;
949     }
950
951     for (i = 0; i < sk_X509_INFO_num(xis); i++) {
952         xi = sk_X509_INFO_value(xis, i);
953         if (xi->x509 && pcerts) {
954             if (!sk_X509_push(*pcerts, xi->x509))
955                 goto end;
956             xi->x509 = NULL;
957         }
958         if (xi->crl && pcrls) {
959             if (!sk_X509_CRL_push(*pcrls, xi->crl))
960                 goto end;
961             xi->crl = NULL;
962         }
963     }
964
965     if (pcerts && sk_X509_num(*pcerts) > 0)
966         rv = 1;
967
968     if (pcrls && sk_X509_CRL_num(*pcrls) > 0)
969         rv = 1;
970
971  end:
972
973     sk_X509_INFO_pop_free(xis, X509_INFO_free);
974
975     if (rv == 0) {
976         if (pcerts) {
977             sk_X509_pop_free(*pcerts, X509_free);
978             *pcerts = NULL;
979         }
980         if (pcrls) {
981             sk_X509_CRL_pop_free(*pcrls, X509_CRL_free);
982             *pcrls = NULL;
983         }
984         BIO_printf(bio_err, "unable to load %s\n",
985                    pcerts ? "certificates" : "CRLs");
986         ERR_print_errors(bio_err);
987     }
988     return rv;
989 }
990
991 void* app_malloc(int sz, const char *what)
992 {
993     void *vp = OPENSSL_malloc(sz);
994
995     if (vp == NULL) {
996         BIO_printf(bio_err, "%s: Could not allocate %d bytes for %s\n",
997                 opt_getprog(), sz, what);
998         ERR_print_errors(bio_err);
999         exit(1);
1000     }
1001     return vp;
1002 }
1003
1004 /*
1005  * Initialize or extend, if *certs != NULL,  a certificate stack.
1006  */
1007 int load_certs(const char *file, STACK_OF(X509) **certs, int format,
1008                const char *pass, ENGINE *e, const char *desc)
1009 {
1010     return load_certs_crls(file, format, pass, e, desc, certs, NULL);
1011 }
1012
1013 /*
1014  * Initialize or extend, if *crls != NULL,  a certificate stack.
1015  */
1016 int load_crls(const char *file, STACK_OF(X509_CRL) **crls, int format,
1017               const char *pass, ENGINE *e, const char *desc)
1018 {
1019     return load_certs_crls(file, format, pass, e, desc, NULL, crls);
1020 }
1021
1022 #define X509V3_EXT_UNKNOWN_MASK         (0xfL << 16)
1023 /* Return error for unknown extensions */
1024 #define X509V3_EXT_DEFAULT              0
1025 /* Print error for unknown extensions */
1026 #define X509V3_EXT_ERROR_UNKNOWN        (1L << 16)
1027 /* ASN1 parse unknown extensions */
1028 #define X509V3_EXT_PARSE_UNKNOWN        (2L << 16)
1029 /* BIO_dump unknown extensions */
1030 #define X509V3_EXT_DUMP_UNKNOWN         (3L << 16)
1031
1032 #define X509_FLAG_CA (X509_FLAG_NO_ISSUER | X509_FLAG_NO_PUBKEY | \
1033                          X509_FLAG_NO_HEADER | X509_FLAG_NO_VERSION)
1034
1035 int set_cert_ex(unsigned long *flags, const char *arg)
1036 {
1037     static const NAME_EX_TBL cert_tbl[] = {
1038         {"compatible", X509_FLAG_COMPAT, 0xffffffffl},
1039         {"ca_default", X509_FLAG_CA, 0xffffffffl},
1040         {"no_header", X509_FLAG_NO_HEADER, 0},
1041         {"no_version", X509_FLAG_NO_VERSION, 0},
1042         {"no_serial", X509_FLAG_NO_SERIAL, 0},
1043         {"no_signame", X509_FLAG_NO_SIGNAME, 0},
1044         {"no_validity", X509_FLAG_NO_VALIDITY, 0},
1045         {"no_subject", X509_FLAG_NO_SUBJECT, 0},
1046         {"no_issuer", X509_FLAG_NO_ISSUER, 0},
1047         {"no_pubkey", X509_FLAG_NO_PUBKEY, 0},
1048         {"no_extensions", X509_FLAG_NO_EXTENSIONS, 0},
1049         {"no_sigdump", X509_FLAG_NO_SIGDUMP, 0},
1050         {"no_aux", X509_FLAG_NO_AUX, 0},
1051         {"no_attributes", X509_FLAG_NO_ATTRIBUTES, 0},
1052         {"ext_default", X509V3_EXT_DEFAULT, X509V3_EXT_UNKNOWN_MASK},
1053         {"ext_error", X509V3_EXT_ERROR_UNKNOWN, X509V3_EXT_UNKNOWN_MASK},
1054         {"ext_parse", X509V3_EXT_PARSE_UNKNOWN, X509V3_EXT_UNKNOWN_MASK},
1055         {"ext_dump", X509V3_EXT_DUMP_UNKNOWN, X509V3_EXT_UNKNOWN_MASK},
1056         {NULL, 0, 0}
1057     };
1058     return set_multi_opts(flags, arg, cert_tbl);
1059 }
1060
1061 int set_name_ex(unsigned long *flags, const char *arg)
1062 {
1063     static const NAME_EX_TBL ex_tbl[] = {
1064         {"esc_2253", ASN1_STRFLGS_ESC_2253, 0},
1065         {"esc_ctrl", ASN1_STRFLGS_ESC_CTRL, 0},
1066         {"esc_msb", ASN1_STRFLGS_ESC_MSB, 0},
1067         {"use_quote", ASN1_STRFLGS_ESC_QUOTE, 0},
1068         {"utf8", ASN1_STRFLGS_UTF8_CONVERT, 0},
1069         {"ignore_type", ASN1_STRFLGS_IGNORE_TYPE, 0},
1070         {"show_type", ASN1_STRFLGS_SHOW_TYPE, 0},
1071         {"dump_all", ASN1_STRFLGS_DUMP_ALL, 0},
1072         {"dump_nostr", ASN1_STRFLGS_DUMP_UNKNOWN, 0},
1073         {"dump_der", ASN1_STRFLGS_DUMP_DER, 0},
1074         {"compat", XN_FLAG_COMPAT, 0xffffffffL},
1075         {"sep_comma_plus", XN_FLAG_SEP_COMMA_PLUS, XN_FLAG_SEP_MASK},
1076         {"sep_comma_plus_space", XN_FLAG_SEP_CPLUS_SPC, XN_FLAG_SEP_MASK},
1077         {"sep_semi_plus_space", XN_FLAG_SEP_SPLUS_SPC, XN_FLAG_SEP_MASK},
1078         {"sep_multiline", XN_FLAG_SEP_MULTILINE, XN_FLAG_SEP_MASK},
1079         {"dn_rev", XN_FLAG_DN_REV, 0},
1080         {"nofname", XN_FLAG_FN_NONE, XN_FLAG_FN_MASK},
1081         {"sname", XN_FLAG_FN_SN, XN_FLAG_FN_MASK},
1082         {"lname", XN_FLAG_FN_LN, XN_FLAG_FN_MASK},
1083         {"align", XN_FLAG_FN_ALIGN, 0},
1084         {"oid", XN_FLAG_FN_OID, XN_FLAG_FN_MASK},
1085         {"space_eq", XN_FLAG_SPC_EQ, 0},
1086         {"dump_unknown", XN_FLAG_DUMP_UNKNOWN_FIELDS, 0},
1087         {"RFC2253", XN_FLAG_RFC2253, 0xffffffffL},
1088         {"oneline", XN_FLAG_ONELINE, 0xffffffffL},
1089         {"multiline", XN_FLAG_MULTILINE, 0xffffffffL},
1090         {"ca_default", XN_FLAG_MULTILINE, 0xffffffffL},
1091         {NULL, 0, 0}
1092     };
1093     if (set_multi_opts(flags, arg, ex_tbl) == 0)
1094         return 0;
1095     if ((*flags & XN_FLAG_SEP_MASK) == 0)
1096         *flags |= XN_FLAG_SEP_CPLUS_SPC;
1097     return 1;
1098 }
1099
1100 int set_ext_copy(int *copy_type, const char *arg)
1101 {
1102     if (strcasecmp(arg, "none") == 0)
1103         *copy_type = EXT_COPY_NONE;
1104     else if (strcasecmp(arg, "copy") == 0)
1105         *copy_type = EXT_COPY_ADD;
1106     else if (strcasecmp(arg, "copyall") == 0)
1107         *copy_type = EXT_COPY_ALL;
1108     else
1109         return 0;
1110     return 1;
1111 }
1112
1113 int copy_extensions(X509 *x, X509_REQ *req, int copy_type)
1114 {
1115     STACK_OF(X509_EXTENSION) *exts = NULL;
1116     X509_EXTENSION *ext, *tmpext;
1117     ASN1_OBJECT *obj;
1118     int i, idx, ret = 0;
1119     if (!x || !req || (copy_type == EXT_COPY_NONE))
1120         return 1;
1121     exts = X509_REQ_get_extensions(req);
1122
1123     for (i = 0; i < sk_X509_EXTENSION_num(exts); i++) {
1124         ext = sk_X509_EXTENSION_value(exts, i);
1125         obj = X509_EXTENSION_get_object(ext);
1126         idx = X509_get_ext_by_OBJ(x, obj, -1);
1127         /* Does extension exist? */
1128         if (idx != -1) {
1129             /* If normal copy don't override existing extension */
1130             if (copy_type == EXT_COPY_ADD)
1131                 continue;
1132             /* Delete all extensions of same type */
1133             do {
1134                 tmpext = X509_get_ext(x, idx);
1135                 X509_delete_ext(x, idx);
1136                 X509_EXTENSION_free(tmpext);
1137                 idx = X509_get_ext_by_OBJ(x, obj, -1);
1138             } while (idx != -1);
1139         }
1140         if (!X509_add_ext(x, ext, -1))
1141             goto end;
1142     }
1143
1144     ret = 1;
1145
1146  end:
1147
1148     sk_X509_EXTENSION_pop_free(exts, X509_EXTENSION_free);
1149
1150     return ret;
1151 }
1152
1153 static int set_multi_opts(unsigned long *flags, const char *arg,
1154                           const NAME_EX_TBL * in_tbl)
1155 {
1156     STACK_OF(CONF_VALUE) *vals;
1157     CONF_VALUE *val;
1158     int i, ret = 1;
1159     if (!arg)
1160         return 0;
1161     vals = X509V3_parse_list(arg);
1162     for (i = 0; i < sk_CONF_VALUE_num(vals); i++) {
1163         val = sk_CONF_VALUE_value(vals, i);
1164         if (!set_table_opts(flags, val->name, in_tbl))
1165             ret = 0;
1166     }
1167     sk_CONF_VALUE_pop_free(vals, X509V3_conf_free);
1168     return ret;
1169 }
1170
1171 static int set_table_opts(unsigned long *flags, const char *arg,
1172                           const NAME_EX_TBL * in_tbl)
1173 {
1174     char c;
1175     const NAME_EX_TBL *ptbl;
1176     c = arg[0];
1177
1178     if (c == '-') {
1179         c = 0;
1180         arg++;
1181     } else if (c == '+') {
1182         c = 1;
1183         arg++;
1184     } else
1185         c = 1;
1186
1187     for (ptbl = in_tbl; ptbl->name; ptbl++) {
1188         if (strcasecmp(arg, ptbl->name) == 0) {
1189             *flags &= ~ptbl->mask;
1190             if (c)
1191                 *flags |= ptbl->flag;
1192             else
1193                 *flags &= ~ptbl->flag;
1194             return 1;
1195         }
1196     }
1197     return 0;
1198 }
1199
1200 void print_name(BIO *out, const char *title, X509_NAME *nm,
1201                 unsigned long lflags)
1202 {
1203     char *buf;
1204     char mline = 0;
1205     int indent = 0;
1206
1207     if (title)
1208         BIO_puts(out, title);
1209     if ((lflags & XN_FLAG_SEP_MASK) == XN_FLAG_SEP_MULTILINE) {
1210         mline = 1;
1211         indent = 4;
1212     }
1213     if (lflags == XN_FLAG_COMPAT) {
1214         buf = X509_NAME_oneline(nm, 0, 0);
1215         BIO_puts(out, buf);
1216         BIO_puts(out, "\n");
1217         OPENSSL_free(buf);
1218     } else {
1219         if (mline)
1220             BIO_puts(out, "\n");
1221         X509_NAME_print_ex(out, nm, indent, lflags);
1222         BIO_puts(out, "\n");
1223     }
1224 }
1225
1226 void print_bignum_var(BIO *out, BIGNUM *in, const char *var,
1227                       int len, unsigned char *buffer)
1228 {
1229     BIO_printf(out, "    static unsigned char %s_%d[] = {", var, len);
1230     if (BN_is_zero(in))
1231         BIO_printf(out, "\n\t0x00");
1232     else {
1233         int i, l;
1234
1235         l = BN_bn2bin(in, buffer);
1236         for (i = 0; i < l; i++) {
1237             if ((i % 10) == 0)
1238                 BIO_printf(out, "\n\t");
1239             if (i < l - 1)
1240                 BIO_printf(out, "0x%02X, ", buffer[i]);
1241             else
1242                 BIO_printf(out, "0x%02X", buffer[i]);
1243         }
1244     }
1245     BIO_printf(out, "\n    };\n");
1246 }
1247 void print_array(BIO *out, const char* title, int len, const unsigned char* d)
1248 {
1249     int i;
1250
1251     BIO_printf(out, "unsigned char %s[%d] = {", title, len);
1252     for (i = 0; i < len; i++) {
1253         if ((i % 10) == 0)
1254             BIO_printf(out, "\n    ");
1255         if (i < len - 1)
1256             BIO_printf(out, "0x%02X, ", d[i]);
1257         else
1258             BIO_printf(out, "0x%02X", d[i]);
1259     }
1260     BIO_printf(out, "\n};\n");
1261 }
1262
1263 X509_STORE *setup_verify(char *CAfile, char *CApath, int noCAfile, int noCApath)
1264 {
1265     X509_STORE *store = X509_STORE_new();
1266     X509_LOOKUP *lookup;
1267
1268     if (store == NULL)
1269         goto end;
1270
1271     if(CAfile != NULL || !noCAfile) {
1272         lookup = X509_STORE_add_lookup(store, X509_LOOKUP_file());
1273         if (lookup == NULL)
1274             goto end;
1275         if (CAfile) {
1276             if (!X509_LOOKUP_load_file(lookup, CAfile, X509_FILETYPE_PEM)) {
1277                 BIO_printf(bio_err, "Error loading file %s\n", CAfile);
1278                 goto end;
1279             }
1280         } else
1281             X509_LOOKUP_load_file(lookup, NULL, X509_FILETYPE_DEFAULT);
1282     }
1283
1284     if(CApath != NULL || !noCApath) {
1285         lookup = X509_STORE_add_lookup(store, X509_LOOKUP_hash_dir());
1286         if (lookup == NULL)
1287             goto end;
1288         if (CApath) {
1289             if (!X509_LOOKUP_add_dir(lookup, CApath, X509_FILETYPE_PEM)) {
1290                 BIO_printf(bio_err, "Error loading directory %s\n", CApath);
1291                 goto end;
1292             }
1293         } else
1294             X509_LOOKUP_add_dir(lookup, NULL, X509_FILETYPE_DEFAULT);
1295     }
1296
1297     ERR_clear_error();
1298     return store;
1299  end:
1300     X509_STORE_free(store);
1301     return NULL;
1302 }
1303
1304 #ifndef OPENSSL_NO_ENGINE
1305 /* Try to load an engine in a shareable library */
1306 static ENGINE *try_load_engine(const char *engine, int debug)
1307 {
1308     ENGINE *e = ENGINE_by_id("dynamic");
1309     if (e) {
1310         if (!ENGINE_ctrl_cmd_string(e, "SO_PATH", engine, 0)
1311             || !ENGINE_ctrl_cmd_string(e, "LOAD", NULL, 0)) {
1312             ENGINE_free(e);
1313             e = NULL;
1314         }
1315     }
1316     return e;
1317 }
1318
1319 ENGINE *setup_engine(const char *engine, int debug)
1320 {
1321     ENGINE *e = NULL;
1322
1323     if (engine) {
1324         if (strcmp(engine, "auto") == 0) {
1325             BIO_printf(bio_err, "enabling auto ENGINE support\n");
1326             ENGINE_register_all_complete();
1327             return NULL;
1328         }
1329         if ((e = ENGINE_by_id(engine)) == NULL
1330             && (e = try_load_engine(engine, debug)) == NULL) {
1331             BIO_printf(bio_err, "invalid engine \"%s\"\n", engine);
1332             ERR_print_errors(bio_err);
1333             return NULL;
1334         }
1335         if (debug) {
1336             ENGINE_ctrl(e, ENGINE_CTRL_SET_LOGSTREAM, 0, bio_err, 0);
1337         }
1338         ENGINE_ctrl_cmd(e, "SET_USER_INTERFACE", 0, ui_method, 0, 1);
1339         if (!ENGINE_set_default(e, ENGINE_METHOD_ALL)) {
1340             BIO_printf(bio_err, "can't use that engine\n");
1341             ERR_print_errors(bio_err);
1342             ENGINE_free(e);
1343             return NULL;
1344         }
1345
1346         BIO_printf(bio_err, "engine \"%s\" set.\n", ENGINE_get_id(e));
1347
1348         /* Free our "structural" reference. */
1349         ENGINE_free(e);
1350     }
1351     return e;
1352 }
1353 #endif
1354
1355 static unsigned long index_serial_hash(const OPENSSL_CSTRING *a)
1356 {
1357     const char *n;
1358
1359     n = a[DB_serial];
1360     while (*n == '0')
1361         n++;
1362     return (lh_strhash(n));
1363 }
1364
1365 static int index_serial_cmp(const OPENSSL_CSTRING *a,
1366                             const OPENSSL_CSTRING *b)
1367 {
1368     const char *aa, *bb;
1369
1370     for (aa = a[DB_serial]; *aa == '0'; aa++) ;
1371     for (bb = b[DB_serial]; *bb == '0'; bb++) ;
1372     return (strcmp(aa, bb));
1373 }
1374
1375 static int index_name_qual(char **a)
1376 {
1377     return (a[0][0] == 'V');
1378 }
1379
1380 static unsigned long index_name_hash(const OPENSSL_CSTRING *a)
1381 {
1382     return (lh_strhash(a[DB_name]));
1383 }
1384
1385 int index_name_cmp(const OPENSSL_CSTRING *a, const OPENSSL_CSTRING *b)
1386 {
1387     return (strcmp(a[DB_name], b[DB_name]));
1388 }
1389
1390 static IMPLEMENT_LHASH_HASH_FN(index_serial, OPENSSL_CSTRING)
1391 static IMPLEMENT_LHASH_COMP_FN(index_serial, OPENSSL_CSTRING)
1392 static IMPLEMENT_LHASH_HASH_FN(index_name, OPENSSL_CSTRING)
1393 static IMPLEMENT_LHASH_COMP_FN(index_name, OPENSSL_CSTRING)
1394 #undef BSIZE
1395 #define BSIZE 256
1396 BIGNUM *load_serial(char *serialfile, int create, ASN1_INTEGER **retai)
1397 {
1398     BIO *in = NULL;
1399     BIGNUM *ret = NULL;
1400     char buf[1024];
1401     ASN1_INTEGER *ai = NULL;
1402
1403     ai = ASN1_INTEGER_new();
1404     if (ai == NULL)
1405         goto err;
1406
1407     in = BIO_new_file(serialfile, "r");
1408     if (in == NULL) {
1409         if (!create) {
1410             perror(serialfile);
1411             goto err;
1412         }
1413         ERR_clear_error();
1414         ret = BN_new();
1415         if (ret == NULL || !rand_serial(ret, ai))
1416             BIO_printf(bio_err, "Out of memory\n");
1417     } else {
1418         if (!a2i_ASN1_INTEGER(in, ai, buf, 1024)) {
1419             BIO_printf(bio_err, "unable to load number from %s\n",
1420                        serialfile);
1421             goto err;
1422         }
1423         ret = ASN1_INTEGER_to_BN(ai, NULL);
1424         if (ret == NULL) {
1425             BIO_printf(bio_err,
1426                        "error converting number from bin to BIGNUM\n");
1427             goto err;
1428         }
1429     }
1430
1431     if (ret && retai) {
1432         *retai = ai;
1433         ai = NULL;
1434     }
1435  err:
1436     BIO_free(in);
1437     ASN1_INTEGER_free(ai);
1438     return (ret);
1439 }
1440
1441 int save_serial(char *serialfile, char *suffix, BIGNUM *serial,
1442                 ASN1_INTEGER **retai)
1443 {
1444     char buf[1][BSIZE];
1445     BIO *out = NULL;
1446     int ret = 0;
1447     ASN1_INTEGER *ai = NULL;
1448     int j;
1449
1450     if (suffix == NULL)
1451         j = strlen(serialfile);
1452     else
1453         j = strlen(serialfile) + strlen(suffix) + 1;
1454     if (j >= BSIZE) {
1455         BIO_printf(bio_err, "file name too long\n");
1456         goto err;
1457     }
1458
1459     if (suffix == NULL)
1460         OPENSSL_strlcpy(buf[0], serialfile, BSIZE);
1461     else {
1462 #ifndef OPENSSL_SYS_VMS
1463         j = BIO_snprintf(buf[0], sizeof buf[0], "%s.%s", serialfile, suffix);
1464 #else
1465         j = BIO_snprintf(buf[0], sizeof buf[0], "%s-%s", serialfile, suffix);
1466 #endif
1467     }
1468 #ifdef RL_DEBUG
1469     BIO_printf(bio_err, "DEBUG: writing \"%s\"\n", buf[0]);
1470 #endif
1471     out = BIO_new_file(buf[0], "w");
1472     if (out == NULL) {
1473         ERR_print_errors(bio_err);
1474         goto err;
1475     }
1476
1477     if ((ai = BN_to_ASN1_INTEGER(serial, NULL)) == NULL) {
1478         BIO_printf(bio_err, "error converting serial to ASN.1 format\n");
1479         goto err;
1480     }
1481     i2a_ASN1_INTEGER(out, ai);
1482     BIO_puts(out, "\n");
1483     ret = 1;
1484     if (retai) {
1485         *retai = ai;
1486         ai = NULL;
1487     }
1488  err:
1489     BIO_free_all(out);
1490     ASN1_INTEGER_free(ai);
1491     return (ret);
1492 }
1493
1494 int rotate_serial(char *serialfile, char *new_suffix, char *old_suffix)
1495 {
1496     char buf[5][BSIZE];
1497     int i, j;
1498
1499     i = strlen(serialfile) + strlen(old_suffix);
1500     j = strlen(serialfile) + strlen(new_suffix);
1501     if (i > j)
1502         j = i;
1503     if (j + 1 >= BSIZE) {
1504         BIO_printf(bio_err, "file name too long\n");
1505         goto err;
1506     }
1507 #ifndef OPENSSL_SYS_VMS
1508     j = BIO_snprintf(buf[0], sizeof buf[0], "%s.%s", serialfile, new_suffix);
1509 #else
1510     j = BIO_snprintf(buf[0], sizeof buf[0], "%s-%s", serialfile, new_suffix);
1511 #endif
1512 #ifndef OPENSSL_SYS_VMS
1513     j = BIO_snprintf(buf[1], sizeof buf[1], "%s.%s", serialfile, old_suffix);
1514 #else
1515     j = BIO_snprintf(buf[1], sizeof buf[1], "%s-%s", serialfile, old_suffix);
1516 #endif
1517 #ifdef RL_DEBUG
1518     BIO_printf(bio_err, "DEBUG: renaming \"%s\" to \"%s\"\n",
1519                serialfile, buf[1]);
1520 #endif
1521     if (rename(serialfile, buf[1]) < 0 && errno != ENOENT
1522 #ifdef ENOTDIR
1523         && errno != ENOTDIR
1524 #endif
1525         ) {
1526         BIO_printf(bio_err,
1527                    "unable to rename %s to %s\n", serialfile, buf[1]);
1528         perror("reason");
1529         goto err;
1530     }
1531 #ifdef RL_DEBUG
1532     BIO_printf(bio_err, "DEBUG: renaming \"%s\" to \"%s\"\n",
1533                buf[0], serialfile);
1534 #endif
1535     if (rename(buf[0], serialfile) < 0) {
1536         BIO_printf(bio_err,
1537                    "unable to rename %s to %s\n", buf[0], serialfile);
1538         perror("reason");
1539         rename(buf[1], serialfile);
1540         goto err;
1541     }
1542     return 1;
1543  err:
1544     return 0;
1545 }
1546
1547 int rand_serial(BIGNUM *b, ASN1_INTEGER *ai)
1548 {
1549     BIGNUM *btmp;
1550     int ret = 0;
1551
1552     if (b)
1553         btmp = b;
1554     else
1555         btmp = BN_new();
1556
1557     if (btmp == NULL)
1558         return 0;
1559
1560     if (!BN_pseudo_rand(btmp, SERIAL_RAND_BITS, 0, 0))
1561         goto error;
1562     if (ai && !BN_to_ASN1_INTEGER(btmp, ai))
1563         goto error;
1564
1565     ret = 1;
1566
1567  error:
1568
1569     if (btmp != b)
1570         BN_free(btmp);
1571
1572     return ret;
1573 }
1574
1575 CA_DB *load_index(char *dbfile, DB_ATTR *db_attr)
1576 {
1577     CA_DB *retdb = NULL;
1578     TXT_DB *tmpdb = NULL;
1579     BIO *in;
1580     CONF *dbattr_conf = NULL;
1581     char buf[BSIZE];
1582
1583     in = BIO_new_file(dbfile, "r");
1584     if (in == NULL) {
1585         ERR_print_errors(bio_err);
1586         goto err;
1587     }
1588     if ((tmpdb = TXT_DB_read(in, DB_NUMBER)) == NULL)
1589         goto err;
1590
1591 #ifndef OPENSSL_SYS_VMS
1592     BIO_snprintf(buf, sizeof buf, "%s.attr", dbfile);
1593 #else
1594     BIO_snprintf(buf, sizeof buf, "%s-attr", dbfile);
1595 #endif
1596     dbattr_conf = app_load_config(buf);
1597
1598     retdb = app_malloc(sizeof(*retdb), "new DB");
1599     retdb->db = tmpdb;
1600     tmpdb = NULL;
1601     if (db_attr)
1602         retdb->attributes = *db_attr;
1603     else {
1604         retdb->attributes.unique_subject = 1;
1605     }
1606
1607     if (dbattr_conf) {
1608         char *p = NCONF_get_string(dbattr_conf, NULL, "unique_subject");
1609         if (p) {
1610 #ifdef RL_DEBUG
1611             BIO_printf(bio_err,
1612                        "DEBUG[load_index]: unique_subject = \"%s\"\n", p);
1613 #endif
1614             retdb->attributes.unique_subject = parse_yesno(p, 1);
1615         }
1616     }
1617
1618  err:
1619     NCONF_free(dbattr_conf);
1620     TXT_DB_free(tmpdb);
1621     BIO_free_all(in);
1622     return retdb;
1623 }
1624
1625 int index_index(CA_DB *db)
1626 {
1627     if (!TXT_DB_create_index(db->db, DB_serial, NULL,
1628                              LHASH_HASH_FN(index_serial),
1629                              LHASH_COMP_FN(index_serial))) {
1630         BIO_printf(bio_err,
1631                    "error creating serial number index:(%ld,%ld,%ld)\n",
1632                    db->db->error, db->db->arg1, db->db->arg2);
1633         return 0;
1634     }
1635
1636     if (db->attributes.unique_subject
1637         && !TXT_DB_create_index(db->db, DB_name, index_name_qual,
1638                                 LHASH_HASH_FN(index_name),
1639                                 LHASH_COMP_FN(index_name))) {
1640         BIO_printf(bio_err, "error creating name index:(%ld,%ld,%ld)\n",
1641                    db->db->error, db->db->arg1, db->db->arg2);
1642         return 0;
1643     }
1644     return 1;
1645 }
1646
1647 int save_index(const char *dbfile, const char *suffix, CA_DB *db)
1648 {
1649     char buf[3][BSIZE];
1650     BIO *out;
1651     int j;
1652
1653     j = strlen(dbfile) + strlen(suffix);
1654     if (j + 6 >= BSIZE) {
1655         BIO_printf(bio_err, "file name too long\n");
1656         goto err;
1657     }
1658 #ifndef OPENSSL_SYS_VMS
1659     j = BIO_snprintf(buf[2], sizeof buf[2], "%s.attr", dbfile);
1660 #else
1661     j = BIO_snprintf(buf[2], sizeof buf[2], "%s-attr", dbfile);
1662 #endif
1663 #ifndef OPENSSL_SYS_VMS
1664     j = BIO_snprintf(buf[1], sizeof buf[1], "%s.attr.%s", dbfile, suffix);
1665 #else
1666     j = BIO_snprintf(buf[1], sizeof buf[1], "%s-attr-%s", dbfile, suffix);
1667 #endif
1668 #ifndef OPENSSL_SYS_VMS
1669     j = BIO_snprintf(buf[0], sizeof buf[0], "%s.%s", dbfile, suffix);
1670 #else
1671     j = BIO_snprintf(buf[0], sizeof buf[0], "%s-%s", dbfile, suffix);
1672 #endif
1673 #ifdef RL_DEBUG
1674     BIO_printf(bio_err, "DEBUG: writing \"%s\"\n", buf[0]);
1675 #endif
1676     out = BIO_new_file(buf[0], "w");
1677     if (out == NULL) {
1678         perror(dbfile);
1679         BIO_printf(bio_err, "unable to open '%s'\n", dbfile);
1680         goto err;
1681     }
1682     j = TXT_DB_write(out, db->db);
1683     BIO_free(out);
1684     if (j <= 0)
1685         goto err;
1686
1687     out = BIO_new_file(buf[1], "w");
1688 #ifdef RL_DEBUG
1689     BIO_printf(bio_err, "DEBUG: writing \"%s\"\n", buf[1]);
1690 #endif
1691     if (out == NULL) {
1692         perror(buf[2]);
1693         BIO_printf(bio_err, "unable to open '%s'\n", buf[2]);
1694         goto err;
1695     }
1696     BIO_printf(out, "unique_subject = %s\n",
1697                db->attributes.unique_subject ? "yes" : "no");
1698     BIO_free(out);
1699
1700     return 1;
1701  err:
1702     return 0;
1703 }
1704
1705 int rotate_index(const char *dbfile, const char *new_suffix,
1706                  const char *old_suffix)
1707 {
1708     char buf[5][BSIZE];
1709     int i, j;
1710
1711     i = strlen(dbfile) + strlen(old_suffix);
1712     j = strlen(dbfile) + strlen(new_suffix);
1713     if (i > j)
1714         j = i;
1715     if (j + 6 >= BSIZE) {
1716         BIO_printf(bio_err, "file name too long\n");
1717         goto err;
1718     }
1719 #ifndef OPENSSL_SYS_VMS
1720     j = BIO_snprintf(buf[4], sizeof buf[4], "%s.attr", dbfile);
1721 #else
1722     j = BIO_snprintf(buf[4], sizeof buf[4], "%s-attr", dbfile);
1723 #endif
1724 #ifndef OPENSSL_SYS_VMS
1725     j = BIO_snprintf(buf[2], sizeof buf[2], "%s.attr.%s", dbfile, new_suffix);
1726 #else
1727     j = BIO_snprintf(buf[2], sizeof buf[2], "%s-attr-%s", dbfile, new_suffix);
1728 #endif
1729 #ifndef OPENSSL_SYS_VMS
1730     j = BIO_snprintf(buf[0], sizeof buf[0], "%s.%s", dbfile, new_suffix);
1731 #else
1732     j = BIO_snprintf(buf[0], sizeof buf[0], "%s-%s", dbfile, new_suffix);
1733 #endif
1734 #ifndef OPENSSL_SYS_VMS
1735     j = BIO_snprintf(buf[1], sizeof buf[1], "%s.%s", dbfile, old_suffix);
1736 #else
1737     j = BIO_snprintf(buf[1], sizeof buf[1], "%s-%s", dbfile, old_suffix);
1738 #endif
1739 #ifndef OPENSSL_SYS_VMS
1740     j = BIO_snprintf(buf[3], sizeof buf[3], "%s.attr.%s", dbfile, old_suffix);
1741 #else
1742     j = BIO_snprintf(buf[3], sizeof buf[3], "%s-attr-%s", dbfile, old_suffix);
1743 #endif
1744 #ifdef RL_DEBUG
1745     BIO_printf(bio_err, "DEBUG: renaming \"%s\" to \"%s\"\n", dbfile, buf[1]);
1746 #endif
1747     if (rename(dbfile, buf[1]) < 0 && errno != ENOENT
1748 #ifdef ENOTDIR
1749         && errno != ENOTDIR
1750 #endif
1751         ) {
1752         BIO_printf(bio_err, "unable to rename %s to %s\n", dbfile, buf[1]);
1753         perror("reason");
1754         goto err;
1755     }
1756 #ifdef RL_DEBUG
1757     BIO_printf(bio_err, "DEBUG: renaming \"%s\" to \"%s\"\n", buf[0], dbfile);
1758 #endif
1759     if (rename(buf[0], dbfile) < 0) {
1760         BIO_printf(bio_err, "unable to rename %s to %s\n", buf[0], dbfile);
1761         perror("reason");
1762         rename(buf[1], dbfile);
1763         goto err;
1764     }
1765 #ifdef RL_DEBUG
1766     BIO_printf(bio_err, "DEBUG: renaming \"%s\" to \"%s\"\n", buf[4], buf[3]);
1767 #endif
1768     if (rename(buf[4], buf[3]) < 0 && errno != ENOENT
1769 #ifdef ENOTDIR
1770         && errno != ENOTDIR
1771 #endif
1772         ) {
1773         BIO_printf(bio_err, "unable to rename %s to %s\n", buf[4], buf[3]);
1774         perror("reason");
1775         rename(dbfile, buf[0]);
1776         rename(buf[1], dbfile);
1777         goto err;
1778     }
1779 #ifdef RL_DEBUG
1780     BIO_printf(bio_err, "DEBUG: renaming \"%s\" to \"%s\"\n", buf[2], buf[4]);
1781 #endif
1782     if (rename(buf[2], buf[4]) < 0) {
1783         BIO_printf(bio_err, "unable to rename %s to %s\n", buf[2], buf[4]);
1784         perror("reason");
1785         rename(buf[3], buf[4]);
1786         rename(dbfile, buf[0]);
1787         rename(buf[1], dbfile);
1788         goto err;
1789     }
1790     return 1;
1791  err:
1792     return 0;
1793 }
1794
1795 void free_index(CA_DB *db)
1796 {
1797     if (db) {
1798         TXT_DB_free(db->db);
1799         OPENSSL_free(db);
1800     }
1801 }
1802
1803 int parse_yesno(const char *str, int def)
1804 {
1805     if (str) {
1806         switch (*str) {
1807         case 'f':              /* false */
1808         case 'F':              /* FALSE */
1809         case 'n':              /* no */
1810         case 'N':              /* NO */
1811         case '0':              /* 0 */
1812             return 0;
1813         case 't':              /* true */
1814         case 'T':              /* TRUE */
1815         case 'y':              /* yes */
1816         case 'Y':              /* YES */
1817         case '1':              /* 1 */
1818             return 1;
1819         }
1820     }
1821     return def;
1822 }
1823
1824 /*
1825  * name is expected to be in the format /type0=value0/type1=value1/type2=...
1826  * where characters may be escaped by \
1827  */
1828 X509_NAME *parse_name(const char *cp, long chtype, int canmulti)
1829 {
1830     int nextismulti = 0;
1831     char *work;
1832     X509_NAME *n;
1833
1834     if (*cp++ != '/')
1835         return NULL;
1836
1837     n = X509_NAME_new();
1838     if (n == NULL)
1839         return NULL;
1840     work = OPENSSL_strdup(cp);
1841     if (work == NULL)
1842         goto err;
1843
1844     while (*cp) {
1845         char *bp = work;
1846         char *typestr = bp;
1847         unsigned char *valstr;
1848         int nid;
1849         int ismulti = nextismulti;
1850         nextismulti = 0;
1851
1852         /* Collect the type */
1853         while (*cp && *cp != '=')
1854             *bp++ = *cp++;
1855         if (*cp == '\0') {
1856             BIO_printf(bio_err,
1857                     "%s: Hit end of string before finding the equals.\n",
1858                     opt_getprog());
1859             goto err;
1860         }
1861         *bp++ = '\0';
1862         ++cp;
1863
1864         /* Collect the value. */
1865         valstr = (unsigned char *)bp;
1866         for (; *cp && *cp != '/'; *bp++ = *cp++) {
1867             if (canmulti && *cp == '+') {
1868                 nextismulti = 1;
1869                 break;
1870             }
1871             if (*cp == '\\' && *++cp == '\0') {
1872                 BIO_printf(bio_err,
1873                         "%s: escape character at end of string\n",
1874                         opt_getprog());
1875                 goto err;
1876             }
1877         }
1878         *bp++ = '\0';
1879
1880         /* If not at EOS (must be + or /), move forward. */
1881         if (*cp)
1882             ++cp;
1883
1884         /* Parse */
1885         nid = OBJ_txt2nid(typestr);
1886         if (nid == NID_undef) {
1887             BIO_printf(bio_err, "%s: Skipping unknown attribute \"%s\"\n",
1888                       opt_getprog(), typestr);
1889             continue;
1890         }
1891         if (!X509_NAME_add_entry_by_NID(n, nid, chtype,
1892                                         valstr, strlen((char *)valstr),
1893                                         -1, ismulti ? -1 : 0))
1894             goto err;
1895     }
1896
1897     OPENSSL_free(work);
1898     return n;
1899
1900  err:
1901     X509_NAME_free(n);
1902     OPENSSL_free(work);
1903     return NULL;
1904 }
1905
1906 /*
1907  * Read whole contents of a BIO into an allocated memory buffer and return
1908  * it.
1909  */
1910
1911 int bio_to_mem(unsigned char **out, int maxlen, BIO *in)
1912 {
1913     BIO *mem;
1914     int len, ret;
1915     unsigned char tbuf[1024];
1916     mem = BIO_new(BIO_s_mem());
1917     if (mem == NULL)
1918         return -1;
1919     for (;;) {
1920         if ((maxlen != -1) && maxlen < 1024)
1921             len = maxlen;
1922         else
1923             len = 1024;
1924         len = BIO_read(in, tbuf, len);
1925         if (len < 0) {
1926             BIO_free(mem);
1927             return -1;
1928         }
1929         if (len == 0)
1930             break;
1931         if (BIO_write(mem, tbuf, len) != len) {
1932             BIO_free(mem);
1933             return -1;
1934         }
1935         maxlen -= len;
1936
1937         if (maxlen == 0)
1938             break;
1939     }
1940     ret = BIO_get_mem_data(mem, (char **)out);
1941     BIO_set_flags(mem, BIO_FLAGS_MEM_RDONLY);
1942     BIO_free(mem);
1943     return ret;
1944 }
1945
1946 int pkey_ctrl_string(EVP_PKEY_CTX *ctx, const char *value)
1947 {
1948     int rv;
1949     char *stmp, *vtmp = NULL;
1950     stmp = OPENSSL_strdup(value);
1951     if (!stmp)
1952         return -1;
1953     vtmp = strchr(stmp, ':');
1954     if (vtmp) {
1955         *vtmp = 0;
1956         vtmp++;
1957     }
1958     rv = EVP_PKEY_CTX_ctrl_str(ctx, stmp, vtmp);
1959     OPENSSL_free(stmp);
1960     return rv;
1961 }
1962
1963 static void nodes_print(const char *name, STACK_OF(X509_POLICY_NODE) *nodes)
1964 {
1965     X509_POLICY_NODE *node;
1966     int i;
1967
1968     BIO_printf(bio_err, "%s Policies:", name);
1969     if (nodes) {
1970         BIO_puts(bio_err, "\n");
1971         for (i = 0; i < sk_X509_POLICY_NODE_num(nodes); i++) {
1972             node = sk_X509_POLICY_NODE_value(nodes, i);
1973             X509_POLICY_NODE_print(bio_err, node, 2);
1974         }
1975     } else
1976         BIO_puts(bio_err, " <empty>\n");
1977 }
1978
1979 void policies_print(X509_STORE_CTX *ctx)
1980 {
1981     X509_POLICY_TREE *tree;
1982     int explicit_policy;
1983     tree = X509_STORE_CTX_get0_policy_tree(ctx);
1984     explicit_policy = X509_STORE_CTX_get_explicit_policy(ctx);
1985
1986     BIO_printf(bio_err, "Require explicit Policy: %s\n",
1987                explicit_policy ? "True" : "False");
1988
1989     nodes_print("Authority", X509_policy_tree_get0_policies(tree));
1990     nodes_print("User", X509_policy_tree_get0_user_policies(tree));
1991 }
1992
1993 #if !defined(OPENSSL_NO_JPAKE) && !defined(OPENSSL_NO_PSK)
1994
1995 static JPAKE_CTX *jpake_init(const char *us, const char *them,
1996                              const char *secret)
1997 {
1998     BIGNUM *p = NULL;
1999     BIGNUM *g = NULL;
2000     BIGNUM *q = NULL;
2001     BIGNUM *bnsecret = BN_new();
2002     JPAKE_CTX *ctx;
2003
2004     /* Use a safe prime for p (that we found earlier) */
2005     BN_hex2bn(&p,
2006               "F9E5B365665EA7A05A9C534502780FEE6F1AB5BD4F49947FD036DBD7E905269AF46EF28B0FC07487EE4F5D20FB3C0AF8E700F3A2FA3414970CBED44FEDFF80CE78D800F184BB82435D137AADA2C6C16523247930A63B85661D1FC817A51ACD96168E95898A1F83A79FFB529368AA7833ABD1B0C3AEDDB14D2E1A2F71D99F763F");
2007     g = BN_new();
2008     BN_set_word(g, 2);
2009     q = BN_new();
2010     BN_rshift1(q, p);
2011
2012     BN_bin2bn((const unsigned char *)secret, strlen(secret), bnsecret);
2013
2014     ctx = JPAKE_CTX_new(us, them, p, g, q, bnsecret);
2015     BN_free(bnsecret);
2016     BN_free(q);
2017     BN_free(g);
2018     BN_free(p);
2019
2020     return ctx;
2021 }
2022
2023 static void jpake_send_part(BIO *conn, const JPAKE_STEP_PART *p)
2024 {
2025     BN_print(conn, p->gx);
2026     BIO_puts(conn, "\n");
2027     BN_print(conn, p->zkpx.gr);
2028     BIO_puts(conn, "\n");
2029     BN_print(conn, p->zkpx.b);
2030     BIO_puts(conn, "\n");
2031 }
2032
2033 static void jpake_send_step1(BIO *bconn, JPAKE_CTX *ctx)
2034 {
2035     JPAKE_STEP1 s1;
2036
2037     JPAKE_STEP1_init(&s1);
2038     JPAKE_STEP1_generate(&s1, ctx);
2039     jpake_send_part(bconn, &s1.p1);
2040     jpake_send_part(bconn, &s1.p2);
2041     (void)BIO_flush(bconn);
2042     JPAKE_STEP1_release(&s1);
2043 }
2044
2045 static void jpake_send_step2(BIO *bconn, JPAKE_CTX *ctx)
2046 {
2047     JPAKE_STEP2 s2;
2048
2049     JPAKE_STEP2_init(&s2);
2050     JPAKE_STEP2_generate(&s2, ctx);
2051     jpake_send_part(bconn, &s2);
2052     (void)BIO_flush(bconn);
2053     JPAKE_STEP2_release(&s2);
2054 }
2055
2056 static void jpake_send_step3a(BIO *bconn, JPAKE_CTX *ctx)
2057 {
2058     JPAKE_STEP3A s3a;
2059
2060     JPAKE_STEP3A_init(&s3a);
2061     JPAKE_STEP3A_generate(&s3a, ctx);
2062     BIO_write(bconn, s3a.hhk, sizeof s3a.hhk);
2063     (void)BIO_flush(bconn);
2064     JPAKE_STEP3A_release(&s3a);
2065 }
2066
2067 static void jpake_send_step3b(BIO *bconn, JPAKE_CTX *ctx)
2068 {
2069     JPAKE_STEP3B s3b;
2070
2071     JPAKE_STEP3B_init(&s3b);
2072     JPAKE_STEP3B_generate(&s3b, ctx);
2073     BIO_write(bconn, s3b.hk, sizeof s3b.hk);
2074     (void)BIO_flush(bconn);
2075     JPAKE_STEP3B_release(&s3b);
2076 }
2077
2078 static void readbn(BIGNUM **bn, BIO *bconn)
2079 {
2080     char buf[10240];
2081     int l;
2082
2083     l = BIO_gets(bconn, buf, sizeof buf);
2084     assert(l > 0);
2085     assert(buf[l - 1] == '\n');
2086     buf[l - 1] = '\0';
2087     BN_hex2bn(bn, buf);
2088 }
2089
2090 static void jpake_receive_part(JPAKE_STEP_PART *p, BIO *bconn)
2091 {
2092     readbn(&p->gx, bconn);
2093     readbn(&p->zkpx.gr, bconn);
2094     readbn(&p->zkpx.b, bconn);
2095 }
2096
2097 static void jpake_receive_step1(JPAKE_CTX *ctx, BIO *bconn)
2098 {
2099     JPAKE_STEP1 s1;
2100
2101     JPAKE_STEP1_init(&s1);
2102     jpake_receive_part(&s1.p1, bconn);
2103     jpake_receive_part(&s1.p2, bconn);
2104     if (!JPAKE_STEP1_process(ctx, &s1)) {
2105         ERR_print_errors(bio_err);
2106         exit(1);
2107     }
2108     JPAKE_STEP1_release(&s1);
2109 }
2110
2111 static void jpake_receive_step2(JPAKE_CTX *ctx, BIO *bconn)
2112 {
2113     JPAKE_STEP2 s2;
2114
2115     JPAKE_STEP2_init(&s2);
2116     jpake_receive_part(&s2, bconn);
2117     if (!JPAKE_STEP2_process(ctx, &s2)) {
2118         ERR_print_errors(bio_err);
2119         exit(1);
2120     }
2121     JPAKE_STEP2_release(&s2);
2122 }
2123
2124 static void jpake_receive_step3a(JPAKE_CTX *ctx, BIO *bconn)
2125 {
2126     JPAKE_STEP3A s3a;
2127     int l;
2128
2129     JPAKE_STEP3A_init(&s3a);
2130     l = BIO_read(bconn, s3a.hhk, sizeof s3a.hhk);
2131     assert(l == sizeof s3a.hhk);
2132     if (!JPAKE_STEP3A_process(ctx, &s3a)) {
2133         ERR_print_errors(bio_err);
2134         exit(1);
2135     }
2136     JPAKE_STEP3A_release(&s3a);
2137 }
2138
2139 static void jpake_receive_step3b(JPAKE_CTX *ctx, BIO *bconn)
2140 {
2141     JPAKE_STEP3B s3b;
2142     int l;
2143
2144     JPAKE_STEP3B_init(&s3b);
2145     l = BIO_read(bconn, s3b.hk, sizeof s3b.hk);
2146     assert(l == sizeof s3b.hk);
2147     if (!JPAKE_STEP3B_process(ctx, &s3b)) {
2148         ERR_print_errors(bio_err);
2149         exit(1);
2150     }
2151     JPAKE_STEP3B_release(&s3b);
2152 }
2153
2154 void jpake_client_auth(BIO *out, BIO *conn, const char *secret)
2155 {
2156     JPAKE_CTX *ctx;
2157     BIO *bconn;
2158
2159     BIO_puts(out, "Authenticating with JPAKE\n");
2160
2161     ctx = jpake_init("client", "server", secret);
2162
2163     bconn = BIO_new(BIO_f_buffer());
2164     BIO_push(bconn, conn);
2165
2166     jpake_send_step1(bconn, ctx);
2167     jpake_receive_step1(ctx, bconn);
2168     jpake_send_step2(bconn, ctx);
2169     jpake_receive_step2(ctx, bconn);
2170     jpake_send_step3a(bconn, ctx);
2171     jpake_receive_step3b(ctx, bconn);
2172
2173     BIO_puts(out, "JPAKE authentication succeeded, setting PSK\n");
2174
2175     OPENSSL_free(psk_key);
2176     psk_key = BN_bn2hex(JPAKE_get_shared_key(ctx));
2177
2178     BIO_pop(bconn);
2179     BIO_free(bconn);
2180
2181     JPAKE_CTX_free(ctx);
2182 }
2183
2184 void jpake_server_auth(BIO *out, BIO *conn, const char *secret)
2185 {
2186     JPAKE_CTX *ctx;
2187     BIO *bconn;
2188
2189     BIO_puts(out, "Authenticating with JPAKE\n");
2190
2191     ctx = jpake_init("server", "client", secret);
2192
2193     bconn = BIO_new(BIO_f_buffer());
2194     BIO_push(bconn, conn);
2195
2196     jpake_receive_step1(ctx, bconn);
2197     jpake_send_step1(bconn, ctx);
2198     jpake_receive_step2(ctx, bconn);
2199     jpake_send_step2(bconn, ctx);
2200     jpake_receive_step3a(ctx, bconn);
2201     jpake_send_step3b(bconn, ctx);
2202
2203     BIO_puts(out, "JPAKE authentication succeeded, setting PSK\n");
2204
2205     OPENSSL_free(psk_key);
2206     psk_key = BN_bn2hex(JPAKE_get_shared_key(ctx));
2207
2208     BIO_pop(bconn);
2209     BIO_free(bconn);
2210
2211     JPAKE_CTX_free(ctx);
2212 }
2213
2214 #endif
2215
2216 /*-
2217  * next_protos_parse parses a comma separated list of strings into a string
2218  * in a format suitable for passing to SSL_CTX_set_next_protos_advertised.
2219  *   outlen: (output) set to the length of the resulting buffer on success.
2220  *   err: (maybe NULL) on failure, an error message line is written to this BIO.
2221  *   in: a NUL termianted string like "abc,def,ghi"
2222  *
2223  *   returns: a malloced buffer or NULL on failure.
2224  */
2225 unsigned char *next_protos_parse(unsigned short *outlen, const char *in)
2226 {
2227     size_t len;
2228     unsigned char *out;
2229     size_t i, start = 0;
2230
2231     len = strlen(in);
2232     if (len >= 65535)
2233         return NULL;
2234
2235     out = app_malloc(strlen(in) + 1, "NPN buffer");
2236     for (i = 0; i <= len; ++i) {
2237         if (i == len || in[i] == ',') {
2238             if (i - start > 255) {
2239                 OPENSSL_free(out);
2240                 return NULL;
2241             }
2242             out[start] = i - start;
2243             start = i + 1;
2244         } else
2245             out[i + 1] = in[i];
2246     }
2247
2248     *outlen = len + 1;
2249     return out;
2250 }
2251
2252 void print_cert_checks(BIO *bio, X509 *x,
2253                        const char *checkhost,
2254                        const char *checkemail, const char *checkip)
2255 {
2256     if (x == NULL)
2257         return;
2258     if (checkhost) {
2259         BIO_printf(bio, "Hostname %s does%s match certificate\n",
2260                    checkhost,
2261                    X509_check_host(x, checkhost, 0, 0, NULL) == 1
2262                        ? "" : " NOT");
2263     }
2264
2265     if (checkemail) {
2266         BIO_printf(bio, "Email %s does%s match certificate\n",
2267                    checkemail, X509_check_email(x, checkemail, 0, 0)
2268                    ? "" : " NOT");
2269     }
2270
2271     if (checkip) {
2272         BIO_printf(bio, "IP %s does%s match certificate\n",
2273                    checkip, X509_check_ip_asc(x, checkip, 0) ? "" : " NOT");
2274     }
2275 }
2276
2277 /* Get first http URL from a DIST_POINT structure */
2278
2279 static const char *get_dp_url(DIST_POINT *dp)
2280 {
2281     GENERAL_NAMES *gens;
2282     GENERAL_NAME *gen;
2283     int i, gtype;
2284     ASN1_STRING *uri;
2285     if (!dp->distpoint || dp->distpoint->type != 0)
2286         return NULL;
2287     gens = dp->distpoint->name.fullname;
2288     for (i = 0; i < sk_GENERAL_NAME_num(gens); i++) {
2289         gen = sk_GENERAL_NAME_value(gens, i);
2290         uri = GENERAL_NAME_get0_value(gen, &gtype);
2291         if (gtype == GEN_URI && ASN1_STRING_length(uri) > 6) {
2292             char *uptr = (char *)ASN1_STRING_data(uri);
2293             if (strncmp(uptr, "http://", 7) == 0)
2294                 return uptr;
2295         }
2296     }
2297     return NULL;
2298 }
2299
2300 /*
2301  * Look through a CRLDP structure and attempt to find an http URL to
2302  * downloads a CRL from.
2303  */
2304
2305 static X509_CRL *load_crl_crldp(STACK_OF(DIST_POINT) *crldp)
2306 {
2307     int i;
2308     const char *urlptr = NULL;
2309     for (i = 0; i < sk_DIST_POINT_num(crldp); i++) {
2310         DIST_POINT *dp = sk_DIST_POINT_value(crldp, i);
2311         urlptr = get_dp_url(dp);
2312         if (urlptr)
2313             return load_crl(urlptr, FORMAT_HTTP);
2314     }
2315     return NULL;
2316 }
2317
2318 /*
2319  * Example of downloading CRLs from CRLDP: not usable for real world as it
2320  * always downloads, doesn't support non-blocking I/O and doesn't cache
2321  * anything.
2322  */
2323
2324 static STACK_OF(X509_CRL) *crls_http_cb(X509_STORE_CTX *ctx, X509_NAME *nm)
2325 {
2326     X509 *x;
2327     STACK_OF(X509_CRL) *crls = NULL;
2328     X509_CRL *crl;
2329     STACK_OF(DIST_POINT) *crldp;
2330
2331     crls = sk_X509_CRL_new_null();
2332     if (!crls)
2333         return NULL;
2334     x = X509_STORE_CTX_get_current_cert(ctx);
2335     crldp = X509_get_ext_d2i(x, NID_crl_distribution_points, NULL, NULL);
2336     crl = load_crl_crldp(crldp);
2337     sk_DIST_POINT_pop_free(crldp, DIST_POINT_free);
2338     if (!crl)
2339         return NULL;
2340     sk_X509_CRL_push(crls, crl);
2341     /* Try to download delta CRL */
2342     crldp = X509_get_ext_d2i(x, NID_freshest_crl, NULL, NULL);
2343     crl = load_crl_crldp(crldp);
2344     sk_DIST_POINT_pop_free(crldp, DIST_POINT_free);
2345     if (crl)
2346         sk_X509_CRL_push(crls, crl);
2347     return crls;
2348 }
2349
2350 void store_setup_crl_download(X509_STORE *st)
2351 {
2352     X509_STORE_set_lookup_crls_cb(st, crls_http_cb);
2353 }
2354
2355 /*
2356  * Platform-specific sections
2357  */
2358 #if defined(_WIN32)
2359 # ifdef fileno
2360 #  undef fileno
2361 #  define fileno(a) (int)_fileno(a)
2362 # endif
2363
2364 # include <windows.h>
2365 # include <tchar.h>
2366
2367 static int WIN32_rename(const char *from, const char *to)
2368 {
2369     TCHAR *tfrom = NULL, *tto;
2370     DWORD err;
2371     int ret = 0;
2372
2373     if (sizeof(TCHAR) == 1) {
2374         tfrom = (TCHAR *)from;
2375         tto = (TCHAR *)to;
2376     } else {                    /* UNICODE path */
2377
2378         size_t i, flen = strlen(from) + 1, tlen = strlen(to) + 1;
2379         tfrom = malloc(sizeof(*tfrom) * (flen + tlen));
2380         if (tfrom == NULL)
2381             goto err;
2382         tto = tfrom + flen;
2383 # if !defined(_WIN32_WCE) || _WIN32_WCE>=101
2384         if (!MultiByteToWideChar(CP_ACP, 0, from, flen, (WCHAR *)tfrom, flen))
2385 # endif
2386             for (i = 0; i < flen; i++)
2387                 tfrom[i] = (TCHAR)from[i];
2388 # if !defined(_WIN32_WCE) || _WIN32_WCE>=101
2389         if (!MultiByteToWideChar(CP_ACP, 0, to, tlen, (WCHAR *)tto, tlen))
2390 # endif
2391             for (i = 0; i < tlen; i++)
2392                 tto[i] = (TCHAR)to[i];
2393     }
2394
2395     if (MoveFile(tfrom, tto))
2396         goto ok;
2397     err = GetLastError();
2398     if (err == ERROR_ALREADY_EXISTS || err == ERROR_FILE_EXISTS) {
2399         if (DeleteFile(tto) && MoveFile(tfrom, tto))
2400             goto ok;
2401         err = GetLastError();
2402     }
2403     if (err == ERROR_FILE_NOT_FOUND || err == ERROR_PATH_NOT_FOUND)
2404         errno = ENOENT;
2405     else if (err == ERROR_ACCESS_DENIED)
2406         errno = EACCES;
2407     else
2408         errno = EINVAL;         /* we could map more codes... */
2409  err:
2410     ret = -1;
2411  ok:
2412     if (tfrom != NULL && tfrom != (TCHAR *)from)
2413         free(tfrom);
2414     return ret;
2415 }
2416 #endif
2417
2418 /* app_tminterval section */
2419 #if defined(_WIN32)
2420 double app_tminterval(int stop, int usertime)
2421 {
2422     FILETIME now;
2423     double ret = 0;
2424     static ULARGE_INTEGER tmstart;
2425     static int warning = 1;
2426 # ifdef _WIN32_WINNT
2427     static HANDLE proc = NULL;
2428
2429     if (proc == NULL) {
2430         if (check_winnt())
2431             proc = OpenProcess(PROCESS_QUERY_INFORMATION, FALSE,
2432                                GetCurrentProcessId());
2433         if (proc == NULL)
2434             proc = (HANDLE) - 1;
2435     }
2436
2437     if (usertime && proc != (HANDLE) - 1) {
2438         FILETIME junk;
2439         GetProcessTimes(proc, &junk, &junk, &junk, &now);
2440     } else
2441 # endif
2442     {
2443         SYSTEMTIME systime;
2444
2445         if (usertime && warning) {
2446             BIO_printf(bio_err, "To get meaningful results, run "
2447                        "this program on idle system.\n");
2448             warning = 0;
2449         }
2450         GetSystemTime(&systime);
2451         SystemTimeToFileTime(&systime, &now);
2452     }
2453
2454     if (stop == TM_START) {
2455         tmstart.u.LowPart = now.dwLowDateTime;
2456         tmstart.u.HighPart = now.dwHighDateTime;
2457     } else {
2458         ULARGE_INTEGER tmstop;
2459
2460         tmstop.u.LowPart = now.dwLowDateTime;
2461         tmstop.u.HighPart = now.dwHighDateTime;
2462
2463         ret = (__int64)(tmstop.QuadPart - tmstart.QuadPart) * 1e-7;
2464     }
2465
2466     return (ret);
2467 }
2468 #elif defined(OPENSSL_SYS_NETWARE)
2469 # include <time.h>
2470
2471 double app_tminterval(int stop, int usertime)
2472 {
2473     static clock_t tmstart;
2474     static int warning = 1;
2475     double ret = 0;
2476
2477     if (usertime && warning) {
2478         BIO_printf(bio_err, "To get meaningful results, run "
2479                    "this program on idle system.\n");
2480         warning = 0;
2481     }
2482
2483     if (stop == TM_START)
2484         tmstart = clock();
2485     else
2486         ret = (clock() - tmstart) / (double)CLOCKS_PER_SEC;
2487
2488     return (ret);
2489 }
2490
2491
2492 #elif defined(OPENSSL_SYSTEM_VXWORKS)
2493 # include <time.h>
2494
2495 double app_tminterval(int stop, int usertime)
2496 {
2497     double ret = 0;
2498 # ifdef CLOCK_REALTIME
2499     static struct timespec tmstart;
2500     struct timespec now;
2501 # else
2502     static unsigned long tmstart;
2503     unsigned long now;
2504 # endif
2505     static int warning = 1;
2506
2507     if (usertime && warning) {
2508         BIO_printf(bio_err, "To get meaningful results, run "
2509                    "this program on idle system.\n");
2510         warning = 0;
2511     }
2512 # ifdef CLOCK_REALTIME
2513     clock_gettime(CLOCK_REALTIME, &now);
2514     if (stop == TM_START)
2515         tmstart = now;
2516     else
2517         ret = ((now.tv_sec + now.tv_nsec * 1e-9)
2518                - (tmstart.tv_sec + tmstart.tv_nsec * 1e-9));
2519 # else
2520     now = tickGet();
2521     if (stop == TM_START)
2522         tmstart = now;
2523     else
2524         ret = (now - tmstart) / (double)sysClkRateGet();
2525 # endif
2526     return (ret);
2527 }
2528
2529 #elif defined(OPENSSL_SYSTEM_VMS)
2530 # include <time.h>
2531 # include <times.h>
2532
2533 double app_tminterval(int stop, int usertime)
2534 {
2535     static clock_t tmstart;
2536     double ret = 0;
2537     clock_t now;
2538 # ifdef __TMS
2539     struct tms rus;
2540
2541     now = times(&rus);
2542     if (usertime)
2543         now = rus.tms_utime;
2544 # else
2545     if (usertime)
2546         now = clock();          /* sum of user and kernel times */
2547     else {
2548         struct timeval tv;
2549         gettimeofday(&tv, NULL);
2550         now = (clock_t)((unsigned long long)tv.tv_sec * CLK_TCK +
2551                         (unsigned long long)tv.tv_usec * (1000000 / CLK_TCK)
2552             );
2553     }
2554 # endif
2555     if (stop == TM_START)
2556         tmstart = now;
2557     else
2558         ret = (now - tmstart) / (double)(CLK_TCK);
2559
2560     return (ret);
2561 }
2562
2563 #elif defined(_SC_CLK_TCK)      /* by means of unistd.h */
2564 # include <sys/times.h>
2565
2566 double app_tminterval(int stop, int usertime)
2567 {
2568     double ret = 0;
2569     struct tms rus;
2570     clock_t now = times(&rus);
2571     static clock_t tmstart;
2572
2573     if (usertime)
2574         now = rus.tms_utime;
2575
2576     if (stop == TM_START)
2577         tmstart = now;
2578     else {
2579         long int tck = sysconf(_SC_CLK_TCK);
2580         ret = (now - tmstart) / (double)tck;
2581     }
2582
2583     return (ret);
2584 }
2585
2586 #else
2587 # include <sys/time.h>
2588 # include <sys/resource.h>
2589
2590 double app_tminterval(int stop, int usertime)
2591 {
2592     double ret = 0;
2593     struct rusage rus;
2594     struct timeval now;
2595     static struct timeval tmstart;
2596
2597     if (usertime)
2598         getrusage(RUSAGE_SELF, &rus), now = rus.ru_utime;
2599     else
2600         gettimeofday(&now, NULL);
2601
2602     if (stop == TM_START)
2603         tmstart = now;
2604     else
2605         ret = ((now.tv_sec + now.tv_usec * 1e-6)
2606                - (tmstart.tv_sec + tmstart.tv_usec * 1e-6));
2607
2608     return ret;
2609 }
2610 #endif
2611
2612 int app_access(const char* name, int flag)
2613 {
2614 #ifdef _WIN32
2615     return _access(name, flag);
2616 #else
2617     return access(name, flag);
2618 #endif
2619 }
2620
2621 int app_hex(char c)
2622 {
2623     switch (c) {
2624     default:
2625     case '0':
2626         return 0;
2627     case '1':
2628         return 1;
2629     case '2':
2630         return 2;
2631     case '3':
2632         return 3;
2633     case '4':
2634           return 4;
2635     case '5':
2636           return 5;
2637     case '6':
2638           return 6;
2639     case '7':
2640           return 7;
2641     case '8':
2642           return 8;
2643     case '9':
2644           return 9;
2645     case 'a': case 'A':
2646           return 0x0A;
2647     case 'b': case 'B':
2648           return 0x0B;
2649     case 'c': case 'C':
2650           return 0x0C;
2651     case 'd': case 'D':
2652           return 0x0D;
2653     case 'e': case 'E':
2654           return 0x0E;
2655     case 'f': case 'F':
2656           return 0x0F;
2657     }
2658 }
2659
2660 /* app_isdir section */
2661 #ifdef _WIN32
2662 int app_isdir(const char *name)
2663 {
2664     HANDLE hList;
2665     WIN32_FIND_DATA FileData;
2666 # if defined(UNICODE) || defined(_UNICODE)
2667     size_t i, len_0 = strlen(name) + 1;
2668
2669     if (len_0 > OSSL_NELEM(FileData.cFileName))
2670         return -1;
2671
2672 #  if !defined(_WIN32_WCE) || _WIN32_WCE>=101
2673     if (!MultiByteToWideChar
2674         (CP_ACP, 0, name, len_0, FileData.cFileName, len_0))
2675 #  endif
2676         for (i = 0; i < len_0; i++)
2677             FileData.cFileName[i] = (WCHAR)name[i];
2678
2679     hList = FindFirstFile(FileData.cFileName, &FileData);
2680 # else
2681     hList = FindFirstFile(name, &FileData);
2682 # endif
2683     if (hList == INVALID_HANDLE_VALUE)
2684         return -1;
2685     FindClose(hList);
2686     return ((FileData.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) != 0);
2687 }
2688 #else
2689 # include <sys/stat.h>
2690 # ifndef S_ISDIR
2691 #  if defined(_S_IFMT) && defined(_S_IFDIR)
2692 #   define S_ISDIR(a)   (((a) & _S_IFMT) == _S_IFDIR)
2693 #  else
2694 #   define S_ISDIR(a)   (((a) & S_IFMT) == S_IFDIR)
2695 #  endif
2696 # endif
2697
2698 int app_isdir(const char *name)
2699 {
2700 # if defined(S_ISDIR)
2701     struct stat st;
2702
2703     if (stat(name, &st) == 0)
2704         return S_ISDIR(st.st_mode);
2705     else
2706         return -1;
2707 # else
2708     return -1;
2709 # endif
2710 }
2711 #endif
2712
2713 /* raw_read|write section */
2714 #if defined(_WIN32) && defined(STD_INPUT_HANDLE)
2715 int raw_read_stdin(void *buf, int siz)
2716 {
2717     DWORD n;
2718     if (ReadFile(GetStdHandle(STD_INPUT_HANDLE), buf, siz, &n, NULL))
2719         return (n);
2720     else
2721         return (-1);
2722 }
2723 #else
2724 int raw_read_stdin(void *buf, int siz)
2725 {
2726     return read(fileno(stdin), buf, siz);
2727 }
2728 #endif
2729
2730 #if defined(_WIN32) && defined(STD_OUTPUT_HANDLE)
2731 int raw_write_stdout(const void *buf, int siz)
2732 {
2733     DWORD n;
2734     if (WriteFile(GetStdHandle(STD_OUTPUT_HANDLE), buf, siz, &n, NULL))
2735         return (n);
2736     else
2737         return (-1);
2738 }
2739 #else
2740 int raw_write_stdout(const void *buf, int siz)
2741 {
2742     return write(fileno(stdout), buf, siz);
2743 }
2744 #endif
2745
2746 /*
2747  * Centralized handling if input and output files with format specification
2748  * The format is meant to show what the input and output is supposed to be,
2749  * and is therefore a show of intent more than anything else.  However, it
2750  * does impact behavior on some platform, such as differentiating between
2751  * text and binary input/output on non-Unix platforms
2752  */
2753 static int istext(int format)
2754 {
2755     return (format & B_FORMAT_TEXT) == B_FORMAT_TEXT;
2756 }
2757
2758 BIO *dup_bio_in(int format)
2759 {
2760     return BIO_new_fp(stdin,
2761                       BIO_NOCLOSE | (istext(format) ? BIO_FP_TEXT : 0));
2762 }
2763
2764 BIO *dup_bio_out(int format)
2765 {
2766     BIO *b = BIO_new_fp(stdout,
2767                         BIO_NOCLOSE | (istext(format) ? BIO_FP_TEXT : 0));
2768 #ifdef OPENSSL_SYS_VMS
2769     if (istext(format))
2770         b = BIO_push(BIO_new(BIO_f_linebuffer()), b);
2771 #endif
2772     return b;
2773 }
2774
2775 void unbuffer(FILE *fp)
2776 {
2777     setbuf(fp, NULL);
2778 }
2779
2780 static const char *modestr(char mode, int format)
2781 {
2782     OPENSSL_assert(mode == 'a' || mode == 'r' || mode == 'w');
2783
2784     switch (mode) {
2785     case 'a':
2786         return istext(format) ? "a" : "ab";
2787     case 'r':
2788         return istext(format) ? "r" : "rb";
2789     case 'w':
2790         return istext(format) ? "w" : "wb";
2791     }
2792     /* The assert above should make sure we never reach this point */
2793     return NULL;
2794 }
2795
2796 static const char *modeverb(char mode)
2797 {
2798     switch (mode) {
2799     case 'a':
2800         return "appending";
2801     case 'r':
2802         return "reading";
2803     case 'w':
2804         return "writing";
2805     }
2806     return "(doing something)";
2807 }
2808
2809 /*
2810  * Open a file for writing, owner-read-only.
2811  */
2812 BIO *bio_open_owner(const char *filename, int format, int private)
2813 {
2814     FILE *fp = NULL;
2815     BIO *b = NULL;
2816     int fd = -1, bflags, mode, textmode;
2817
2818     if (!private || filename == NULL || strcmp(filename, "-") == 0)
2819         return bio_open_default(filename, 'w', format);
2820
2821     mode = O_WRONLY;
2822 #ifdef O_CREAT
2823     mode |= O_CREAT;
2824 #endif
2825 #ifdef O_TRUNC
2826     mode |= O_TRUNC;
2827 #endif
2828     textmode = istext(format);
2829     if (!textmode) {
2830 #ifdef O_BINARY
2831         mode |= O_BINARY;
2832 #elif defined(_O_BINARY)
2833         mode |= _O_BINARY;
2834 #endif
2835     }
2836
2837 #ifdef OPENSSL_SYS_VMS
2838     /* VMS doesn't have O_BINARY, it just doesn't make sense.  But,
2839      * it still needs to know that we're going binary, or fdopen()
2840      * will fail with "invalid argument"...  so we tell VMS what the
2841      * context is.
2842      */
2843     if (!textmode)
2844         fd = open(filename, mode, 0600, "ctx=bin");
2845     else
2846 #endif
2847         fd = open(filename, mode, 0600);
2848     if (fd < 0)
2849         goto err;
2850     fp = fdopen(fd, modestr('w', format));
2851     if (fp == NULL)
2852         goto err;
2853     bflags = BIO_CLOSE;
2854     if (textmode)
2855         bflags |= BIO_FP_TEXT;
2856     b = BIO_new_fp(fp, bflags);
2857     if (b)
2858         return b;
2859
2860  err:
2861     BIO_printf(bio_err, "%s: Can't open \"%s\" for writing, %s\n",
2862                opt_getprog(), filename, strerror(errno));
2863     ERR_print_errors(bio_err);
2864     /* If we have fp, then fdopen took over fd, so don't close both. */
2865     if (fp)
2866         fclose(fp);
2867     else if (fd >= 0)
2868         close(fd);
2869     return NULL;
2870 }
2871
2872 static BIO *bio_open_default_(const char *filename, char mode, int format,
2873                               int quiet)
2874 {
2875     BIO *ret;
2876
2877     if (filename == NULL || strcmp(filename, "-") == 0) {
2878         ret = mode == 'r' ? dup_bio_in(format) : dup_bio_out(format);
2879         if (quiet) {
2880             ERR_clear_error();
2881             return ret;
2882         }
2883         if (ret != NULL)
2884             return ret;
2885         BIO_printf(bio_err,
2886                    "Can't open %s, %s\n",
2887                    mode == 'r' ? "stdin" : "stdout", strerror(errno));
2888     } else {
2889         ret = BIO_new_file(filename, modestr(mode, format));
2890         if (quiet) {
2891             ERR_clear_error();
2892             return ret;
2893         }
2894         if (ret != NULL)
2895             return ret;
2896         BIO_printf(bio_err,
2897                    "Can't open %s for %s, %s\n",
2898                    filename, modeverb(mode), strerror(errno));
2899     }
2900     ERR_print_errors(bio_err);
2901     return NULL;
2902 }
2903
2904 BIO *bio_open_default(const char *filename, char mode, int format)
2905 {
2906     return bio_open_default_(filename, mode, format, 0);
2907 }
2908
2909 BIO *bio_open_default_quiet(const char *filename, char mode, int format)
2910 {
2911     return bio_open_default_(filename, mode, format, 1);
2912 }
2913
2914 void wait_for_async(SSL *s)
2915 {
2916     int width, fd;
2917     fd_set asyncfds;
2918
2919     fd = SSL_get_async_wait_fd(s);
2920     if (fd < 0)
2921         return;
2922
2923     width = fd + 1;
2924     FD_ZERO(&asyncfds);
2925     openssl_fdset(fd, &asyncfds);
2926     select(width, (void *)&asyncfds, NULL, NULL, NULL);
2927 }