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