5a32dc0a02ef0a96199273fb30309c1e9952e3c2
[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 int index_index(CA_DB *db)
1601 {
1602     if (!TXT_DB_create_index(db->db, DB_serial, NULL,
1603                              LHASH_HASH_FN(index_serial),
1604                              LHASH_COMP_FN(index_serial))) {
1605         BIO_printf(bio_err,
1606                    "error creating serial number index:(%ld,%ld,%ld)\n",
1607                    db->db->error, db->db->arg1, db->db->arg2);
1608         return 0;
1609     }
1610
1611     if (db->attributes.unique_subject
1612         && !TXT_DB_create_index(db->db, DB_name, index_name_qual,
1613                                 LHASH_HASH_FN(index_name),
1614                                 LHASH_COMP_FN(index_name))) {
1615         BIO_printf(bio_err, "error creating name index:(%ld,%ld,%ld)\n",
1616                    db->db->error, db->db->arg1, db->db->arg2);
1617         return 0;
1618     }
1619     return 1;
1620 }
1621
1622 int save_index(const char *dbfile, const char *suffix, CA_DB *db)
1623 {
1624     char buf[3][BSIZE];
1625     BIO *out;
1626     int j;
1627
1628     j = strlen(dbfile) + strlen(suffix);
1629     if (j + 6 >= BSIZE) {
1630         BIO_printf(bio_err, "file name too long\n");
1631         goto err;
1632     }
1633 #ifndef OPENSSL_SYS_VMS
1634     j = BIO_snprintf(buf[2], sizeof(buf[2]), "%s.attr", dbfile);
1635     j = BIO_snprintf(buf[1], sizeof(buf[1]), "%s.attr.%s", dbfile, suffix);
1636     j = BIO_snprintf(buf[0], sizeof(buf[0]), "%s.%s", dbfile, suffix);
1637 #else
1638     j = BIO_snprintf(buf[2], sizeof(buf[2]), "%s-attr", dbfile);
1639     j = BIO_snprintf(buf[1], sizeof(buf[1]), "%s-attr-%s", dbfile, suffix);
1640     j = BIO_snprintf(buf[0], sizeof(buf[0]), "%s-%s", dbfile, suffix);
1641 #endif
1642     out = BIO_new_file(buf[0], "w");
1643     if (out == NULL) {
1644         perror(dbfile);
1645         BIO_printf(bio_err, "unable to open '%s'\n", dbfile);
1646         goto err;
1647     }
1648     j = TXT_DB_write(out, db->db);
1649     BIO_free(out);
1650     if (j <= 0)
1651         goto err;
1652
1653     out = BIO_new_file(buf[1], "w");
1654     if (out == NULL) {
1655         perror(buf[2]);
1656         BIO_printf(bio_err, "unable to open '%s'\n", buf[2]);
1657         goto err;
1658     }
1659     BIO_printf(out, "unique_subject = %s\n",
1660                db->attributes.unique_subject ? "yes" : "no");
1661     BIO_free(out);
1662
1663     return 1;
1664  err:
1665     return 0;
1666 }
1667
1668 int rotate_index(const char *dbfile, const char *new_suffix,
1669                  const char *old_suffix)
1670 {
1671     char buf[5][BSIZE];
1672     int i, j;
1673
1674     i = strlen(dbfile) + strlen(old_suffix);
1675     j = strlen(dbfile) + strlen(new_suffix);
1676     if (i > j)
1677         j = i;
1678     if (j + 6 >= BSIZE) {
1679         BIO_printf(bio_err, "file name too long\n");
1680         goto err;
1681     }
1682 #ifndef OPENSSL_SYS_VMS
1683     j = BIO_snprintf(buf[4], sizeof(buf[4]), "%s.attr", dbfile);
1684     j = BIO_snprintf(buf[3], sizeof(buf[3]), "%s.attr.%s", dbfile, old_suffix);
1685     j = BIO_snprintf(buf[2], sizeof(buf[2]), "%s.attr.%s", dbfile, new_suffix);
1686     j = BIO_snprintf(buf[1], sizeof(buf[1]), "%s.%s", dbfile, old_suffix);
1687     j = BIO_snprintf(buf[0], sizeof(buf[0]), "%s.%s", dbfile, new_suffix);
1688 #else
1689     j = BIO_snprintf(buf[4], sizeof(buf[4]), "%s-attr", dbfile);
1690     j = BIO_snprintf(buf[3], sizeof(buf[3]), "%s-attr-%s", dbfile, old_suffix);
1691     j = BIO_snprintf(buf[2], sizeof(buf[2]), "%s-attr-%s", dbfile, new_suffix);
1692     j = BIO_snprintf(buf[1], sizeof(buf[1]), "%s-%s", dbfile, old_suffix);
1693     j = BIO_snprintf(buf[0], sizeof(buf[0]), "%s-%s", dbfile, new_suffix);
1694 #endif
1695     if (rename(dbfile, buf[1]) < 0 && errno != ENOENT
1696 #ifdef ENOTDIR
1697         && errno != ENOTDIR
1698 #endif
1699         ) {
1700         BIO_printf(bio_err, "unable to rename %s to %s\n", dbfile, buf[1]);
1701         perror("reason");
1702         goto err;
1703     }
1704     if (rename(buf[0], dbfile) < 0) {
1705         BIO_printf(bio_err, "unable to rename %s to %s\n", buf[0], dbfile);
1706         perror("reason");
1707         rename(buf[1], dbfile);
1708         goto err;
1709     }
1710     if (rename(buf[4], buf[3]) < 0 && errno != ENOENT
1711 #ifdef ENOTDIR
1712         && errno != ENOTDIR
1713 #endif
1714         ) {
1715         BIO_printf(bio_err, "unable to rename %s to %s\n", buf[4], buf[3]);
1716         perror("reason");
1717         rename(dbfile, buf[0]);
1718         rename(buf[1], dbfile);
1719         goto err;
1720     }
1721     if (rename(buf[2], buf[4]) < 0) {
1722         BIO_printf(bio_err, "unable to rename %s to %s\n", buf[2], buf[4]);
1723         perror("reason");
1724         rename(buf[3], buf[4]);
1725         rename(dbfile, buf[0]);
1726         rename(buf[1], dbfile);
1727         goto err;
1728     }
1729     return 1;
1730  err:
1731     return 0;
1732 }
1733
1734 void free_index(CA_DB *db)
1735 {
1736     if (db) {
1737         TXT_DB_free(db->db);
1738         OPENSSL_free(db->dbfname);
1739         OPENSSL_free(db);
1740     }
1741 }
1742
1743 int parse_yesno(const char *str, int def)
1744 {
1745     if (str) {
1746         switch (*str) {
1747         case 'f':              /* false */
1748         case 'F':              /* FALSE */
1749         case 'n':              /* no */
1750         case 'N':              /* NO */
1751         case '0':              /* 0 */
1752             return 0;
1753         case 't':              /* true */
1754         case 'T':              /* TRUE */
1755         case 'y':              /* yes */
1756         case 'Y':              /* YES */
1757         case '1':              /* 1 */
1758             return 1;
1759         }
1760     }
1761     return def;
1762 }
1763
1764 /*
1765  * name is expected to be in the format /type0=value0/type1=value1/type2=...
1766  * where characters may be escaped by \
1767  */
1768 X509_NAME *parse_name(const char *cp, long chtype, int canmulti)
1769 {
1770     int nextismulti = 0;
1771     char *work;
1772     X509_NAME *n;
1773
1774     if (*cp++ != '/')
1775         return NULL;
1776
1777     n = X509_NAME_new();
1778     if (n == NULL)
1779         return NULL;
1780     work = OPENSSL_strdup(cp);
1781     if (work == NULL)
1782         goto err;
1783
1784     while (*cp) {
1785         char *bp = work;
1786         char *typestr = bp;
1787         unsigned char *valstr;
1788         int nid;
1789         int ismulti = nextismulti;
1790         nextismulti = 0;
1791
1792         /* Collect the type */
1793         while (*cp && *cp != '=')
1794             *bp++ = *cp++;
1795         if (*cp == '\0') {
1796             BIO_printf(bio_err,
1797                     "%s: Hit end of string before finding the equals.\n",
1798                     opt_getprog());
1799             goto err;
1800         }
1801         *bp++ = '\0';
1802         ++cp;
1803
1804         /* Collect the value. */
1805         valstr = (unsigned char *)bp;
1806         for (; *cp && *cp != '/'; *bp++ = *cp++) {
1807             if (canmulti && *cp == '+') {
1808                 nextismulti = 1;
1809                 break;
1810             }
1811             if (*cp == '\\' && *++cp == '\0') {
1812                 BIO_printf(bio_err,
1813                         "%s: escape character at end of string\n",
1814                         opt_getprog());
1815                 goto err;
1816             }
1817         }
1818         *bp++ = '\0';
1819
1820         /* If not at EOS (must be + or /), move forward. */
1821         if (*cp)
1822             ++cp;
1823
1824         /* Parse */
1825         nid = OBJ_txt2nid(typestr);
1826         if (nid == NID_undef) {
1827             BIO_printf(bio_err, "%s: Skipping unknown attribute \"%s\"\n",
1828                       opt_getprog(), typestr);
1829             continue;
1830         }
1831         if (!X509_NAME_add_entry_by_NID(n, nid, chtype,
1832                                         valstr, strlen((char *)valstr),
1833                                         -1, ismulti ? -1 : 0))
1834             goto err;
1835     }
1836
1837     OPENSSL_free(work);
1838     return n;
1839
1840  err:
1841     X509_NAME_free(n);
1842     OPENSSL_free(work);
1843     return NULL;
1844 }
1845
1846 /*
1847  * Read whole contents of a BIO into an allocated memory buffer and return
1848  * it.
1849  */
1850
1851 int bio_to_mem(unsigned char **out, int maxlen, BIO *in)
1852 {
1853     BIO *mem;
1854     int len, ret;
1855     unsigned char tbuf[1024];
1856
1857     mem = BIO_new(BIO_s_mem());
1858     if (mem == NULL)
1859         return -1;
1860     for (;;) {
1861         if ((maxlen != -1) && maxlen < 1024)
1862             len = maxlen;
1863         else
1864             len = 1024;
1865         len = BIO_read(in, tbuf, len);
1866         if (len < 0) {
1867             BIO_free(mem);
1868             return -1;
1869         }
1870         if (len == 0)
1871             break;
1872         if (BIO_write(mem, tbuf, len) != len) {
1873             BIO_free(mem);
1874             return -1;
1875         }
1876         maxlen -= len;
1877
1878         if (maxlen == 0)
1879             break;
1880     }
1881     ret = BIO_get_mem_data(mem, (char **)out);
1882     BIO_set_flags(mem, BIO_FLAGS_MEM_RDONLY);
1883     BIO_free(mem);
1884     return ret;
1885 }
1886
1887 int pkey_ctrl_string(EVP_PKEY_CTX *ctx, const char *value)
1888 {
1889     int rv;
1890     char *stmp, *vtmp = NULL;
1891     stmp = OPENSSL_strdup(value);
1892     if (!stmp)
1893         return -1;
1894     vtmp = strchr(stmp, ':');
1895     if (vtmp) {
1896         *vtmp = 0;
1897         vtmp++;
1898     }
1899     rv = EVP_PKEY_CTX_ctrl_str(ctx, stmp, vtmp);
1900     OPENSSL_free(stmp);
1901     return rv;
1902 }
1903
1904 static void nodes_print(const char *name, STACK_OF(X509_POLICY_NODE) *nodes)
1905 {
1906     X509_POLICY_NODE *node;
1907     int i;
1908
1909     BIO_printf(bio_err, "%s Policies:", name);
1910     if (nodes) {
1911         BIO_puts(bio_err, "\n");
1912         for (i = 0; i < sk_X509_POLICY_NODE_num(nodes); i++) {
1913             node = sk_X509_POLICY_NODE_value(nodes, i);
1914             X509_POLICY_NODE_print(bio_err, node, 2);
1915         }
1916     } else {
1917         BIO_puts(bio_err, " <empty>\n");
1918     }
1919 }
1920
1921 void policies_print(X509_STORE_CTX *ctx)
1922 {
1923     X509_POLICY_TREE *tree;
1924     int explicit_policy;
1925     tree = X509_STORE_CTX_get0_policy_tree(ctx);
1926     explicit_policy = X509_STORE_CTX_get_explicit_policy(ctx);
1927
1928     BIO_printf(bio_err, "Require explicit Policy: %s\n",
1929                explicit_policy ? "True" : "False");
1930
1931     nodes_print("Authority", X509_policy_tree_get0_policies(tree));
1932     nodes_print("User", X509_policy_tree_get0_user_policies(tree));
1933 }
1934
1935 /*-
1936  * next_protos_parse parses a comma separated list of strings into a string
1937  * in a format suitable for passing to SSL_CTX_set_next_protos_advertised.
1938  *   outlen: (output) set to the length of the resulting buffer on success.
1939  *   err: (maybe NULL) on failure, an error message line is written to this BIO.
1940  *   in: a NUL terminated string like "abc,def,ghi"
1941  *
1942  *   returns: a malloc'd buffer or NULL on failure.
1943  */
1944 unsigned char *next_protos_parse(size_t *outlen, const char *in)
1945 {
1946     size_t len;
1947     unsigned char *out;
1948     size_t i, start = 0;
1949
1950     len = strlen(in);
1951     if (len >= 65535)
1952         return NULL;
1953
1954     out = app_malloc(strlen(in) + 1, "NPN buffer");
1955     for (i = 0; i <= len; ++i) {
1956         if (i == len || in[i] == ',') {
1957             if (i - start > 255) {
1958                 OPENSSL_free(out);
1959                 return NULL;
1960             }
1961             out[start] = (unsigned char)(i - start);
1962             start = i + 1;
1963         } else {
1964             out[i + 1] = in[i];
1965         }
1966     }
1967
1968     *outlen = len + 1;
1969     return out;
1970 }
1971
1972 void print_cert_checks(BIO *bio, X509 *x,
1973                        const char *checkhost,
1974                        const char *checkemail, const char *checkip)
1975 {
1976     if (x == NULL)
1977         return;
1978     if (checkhost) {
1979         BIO_printf(bio, "Hostname %s does%s match certificate\n",
1980                    checkhost,
1981                    X509_check_host(x, checkhost, 0, 0, NULL) == 1
1982                        ? "" : " NOT");
1983     }
1984
1985     if (checkemail) {
1986         BIO_printf(bio, "Email %s does%s match certificate\n",
1987                    checkemail, X509_check_email(x, checkemail, 0, 0)
1988                    ? "" : " NOT");
1989     }
1990
1991     if (checkip) {
1992         BIO_printf(bio, "IP %s does%s match certificate\n",
1993                    checkip, X509_check_ip_asc(x, checkip, 0) ? "" : " NOT");
1994     }
1995 }
1996
1997 /* Get first http URL from a DIST_POINT structure */
1998
1999 static const char *get_dp_url(DIST_POINT *dp)
2000 {
2001     GENERAL_NAMES *gens;
2002     GENERAL_NAME *gen;
2003     int i, gtype;
2004     ASN1_STRING *uri;
2005     if (!dp->distpoint || dp->distpoint->type != 0)
2006         return NULL;
2007     gens = dp->distpoint->name.fullname;
2008     for (i = 0; i < sk_GENERAL_NAME_num(gens); i++) {
2009         gen = sk_GENERAL_NAME_value(gens, i);
2010         uri = GENERAL_NAME_get0_value(gen, &gtype);
2011         if (gtype == GEN_URI && ASN1_STRING_length(uri) > 6) {
2012             const char *uptr = (const char *)ASN1_STRING_get0_data(uri);
2013             if (strncmp(uptr, "http://", 7) == 0)
2014                 return uptr;
2015         }
2016     }
2017     return NULL;
2018 }
2019
2020 /*
2021  * Look through a CRLDP structure and attempt to find an http URL to
2022  * downloads a CRL from.
2023  */
2024
2025 static X509_CRL *load_crl_crldp(STACK_OF(DIST_POINT) *crldp)
2026 {
2027     int i;
2028     const char *urlptr = NULL;
2029     for (i = 0; i < sk_DIST_POINT_num(crldp); i++) {
2030         DIST_POINT *dp = sk_DIST_POINT_value(crldp, i);
2031         urlptr = get_dp_url(dp);
2032         if (urlptr)
2033             return load_crl(urlptr, FORMAT_HTTP);
2034     }
2035     return NULL;
2036 }
2037
2038 /*
2039  * Example of downloading CRLs from CRLDP: not usable for real world as it
2040  * always downloads, doesn't support non-blocking I/O and doesn't cache
2041  * anything.
2042  */
2043
2044 static STACK_OF(X509_CRL) *crls_http_cb(X509_STORE_CTX *ctx, X509_NAME *nm)
2045 {
2046     X509 *x;
2047     STACK_OF(X509_CRL) *crls = NULL;
2048     X509_CRL *crl;
2049     STACK_OF(DIST_POINT) *crldp;
2050
2051     crls = sk_X509_CRL_new_null();
2052     if (!crls)
2053         return NULL;
2054     x = X509_STORE_CTX_get_current_cert(ctx);
2055     crldp = X509_get_ext_d2i(x, NID_crl_distribution_points, NULL, NULL);
2056     crl = load_crl_crldp(crldp);
2057     sk_DIST_POINT_pop_free(crldp, DIST_POINT_free);
2058     if (!crl) {
2059         sk_X509_CRL_free(crls);
2060         return NULL;
2061     }
2062     sk_X509_CRL_push(crls, crl);
2063     /* Try to download delta CRL */
2064     crldp = X509_get_ext_d2i(x, NID_freshest_crl, NULL, NULL);
2065     crl = load_crl_crldp(crldp);
2066     sk_DIST_POINT_pop_free(crldp, DIST_POINT_free);
2067     if (crl)
2068         sk_X509_CRL_push(crls, crl);
2069     return crls;
2070 }
2071
2072 void store_setup_crl_download(X509_STORE *st)
2073 {
2074     X509_STORE_set_lookup_crls_cb(st, crls_http_cb);
2075 }
2076
2077 /*
2078  * Platform-specific sections
2079  */
2080 #if defined(_WIN32)
2081 # ifdef fileno
2082 #  undef fileno
2083 #  define fileno(a) (int)_fileno(a)
2084 # endif
2085
2086 # include <windows.h>
2087 # include <tchar.h>
2088
2089 static int WIN32_rename(const char *from, const char *to)
2090 {
2091     TCHAR *tfrom = NULL, *tto;
2092     DWORD err;
2093     int ret = 0;
2094
2095     if (sizeof(TCHAR) == 1) {
2096         tfrom = (TCHAR *)from;
2097         tto = (TCHAR *)to;
2098     } else {                    /* UNICODE path */
2099
2100         size_t i, flen = strlen(from) + 1, tlen = strlen(to) + 1;
2101         tfrom = malloc(sizeof(*tfrom) * (flen + tlen));
2102         if (tfrom == NULL)
2103             goto err;
2104         tto = tfrom + flen;
2105 # if !defined(_WIN32_WCE) || _WIN32_WCE>=101
2106         if (!MultiByteToWideChar(CP_ACP, 0, from, flen, (WCHAR *)tfrom, flen))
2107 # endif
2108             for (i = 0; i < flen; i++)
2109                 tfrom[i] = (TCHAR)from[i];
2110 # if !defined(_WIN32_WCE) || _WIN32_WCE>=101
2111         if (!MultiByteToWideChar(CP_ACP, 0, to, tlen, (WCHAR *)tto, tlen))
2112 # endif
2113             for (i = 0; i < tlen; i++)
2114                 tto[i] = (TCHAR)to[i];
2115     }
2116
2117     if (MoveFile(tfrom, tto))
2118         goto ok;
2119     err = GetLastError();
2120     if (err == ERROR_ALREADY_EXISTS || err == ERROR_FILE_EXISTS) {
2121         if (DeleteFile(tto) && MoveFile(tfrom, tto))
2122             goto ok;
2123         err = GetLastError();
2124     }
2125     if (err == ERROR_FILE_NOT_FOUND || err == ERROR_PATH_NOT_FOUND)
2126         errno = ENOENT;
2127     else if (err == ERROR_ACCESS_DENIED)
2128         errno = EACCES;
2129     else
2130         errno = EINVAL;         /* we could map more codes... */
2131  err:
2132     ret = -1;
2133  ok:
2134     if (tfrom != NULL && tfrom != (TCHAR *)from)
2135         free(tfrom);
2136     return ret;
2137 }
2138 #endif
2139
2140 /* app_tminterval section */
2141 #if defined(_WIN32)
2142 double app_tminterval(int stop, int usertime)
2143 {
2144     FILETIME now;
2145     double ret = 0;
2146     static ULARGE_INTEGER tmstart;
2147     static int warning = 1;
2148 # ifdef _WIN32_WINNT
2149     static HANDLE proc = NULL;
2150
2151     if (proc == NULL) {
2152         if (check_winnt())
2153             proc = OpenProcess(PROCESS_QUERY_INFORMATION, FALSE,
2154                                GetCurrentProcessId());
2155         if (proc == NULL)
2156             proc = (HANDLE) - 1;
2157     }
2158
2159     if (usertime && proc != (HANDLE) - 1) {
2160         FILETIME junk;
2161         GetProcessTimes(proc, &junk, &junk, &junk, &now);
2162     } else
2163 # endif
2164     {
2165         SYSTEMTIME systime;
2166
2167         if (usertime && warning) {
2168             BIO_printf(bio_err, "To get meaningful results, run "
2169                        "this program on idle system.\n");
2170             warning = 0;
2171         }
2172         GetSystemTime(&systime);
2173         SystemTimeToFileTime(&systime, &now);
2174     }
2175
2176     if (stop == TM_START) {
2177         tmstart.u.LowPart = now.dwLowDateTime;
2178         tmstart.u.HighPart = now.dwHighDateTime;
2179     } else {
2180         ULARGE_INTEGER tmstop;
2181
2182         tmstop.u.LowPart = now.dwLowDateTime;
2183         tmstop.u.HighPart = now.dwHighDateTime;
2184
2185         ret = (__int64)(tmstop.QuadPart - tmstart.QuadPart) * 1e-7;
2186     }
2187
2188     return ret;
2189 }
2190 #elif defined(OPENSSL_SYSTEM_VXWORKS)
2191 # include <time.h>
2192
2193 double app_tminterval(int stop, int usertime)
2194 {
2195     double ret = 0;
2196 # ifdef CLOCK_REALTIME
2197     static struct timespec tmstart;
2198     struct timespec now;
2199 # else
2200     static unsigned long tmstart;
2201     unsigned long now;
2202 # endif
2203     static int warning = 1;
2204
2205     if (usertime && warning) {
2206         BIO_printf(bio_err, "To get meaningful results, run "
2207                    "this program on idle system.\n");
2208         warning = 0;
2209     }
2210 # ifdef CLOCK_REALTIME
2211     clock_gettime(CLOCK_REALTIME, &now);
2212     if (stop == TM_START)
2213         tmstart = now;
2214     else
2215         ret = ((now.tv_sec + now.tv_nsec * 1e-9)
2216                - (tmstart.tv_sec + tmstart.tv_nsec * 1e-9));
2217 # else
2218     now = tickGet();
2219     if (stop == TM_START)
2220         tmstart = now;
2221     else
2222         ret = (now - tmstart) / (double)sysClkRateGet();
2223 # endif
2224     return ret;
2225 }
2226
2227 #elif defined(OPENSSL_SYSTEM_VMS)
2228 # include <time.h>
2229 # include <times.h>
2230
2231 double app_tminterval(int stop, int usertime)
2232 {
2233     static clock_t tmstart;
2234     double ret = 0;
2235     clock_t now;
2236 # ifdef __TMS
2237     struct tms rus;
2238
2239     now = times(&rus);
2240     if (usertime)
2241         now = rus.tms_utime;
2242 # else
2243     if (usertime)
2244         now = clock();          /* sum of user and kernel times */
2245     else {
2246         struct timeval tv;
2247         gettimeofday(&tv, NULL);
2248         now = (clock_t)((unsigned long long)tv.tv_sec * CLK_TCK +
2249                         (unsigned long long)tv.tv_usec * (1000000 / CLK_TCK)
2250             );
2251     }
2252 # endif
2253     if (stop == TM_START)
2254         tmstart = now;
2255     else
2256         ret = (now - tmstart) / (double)(CLK_TCK);
2257
2258     return ret;
2259 }
2260
2261 #elif defined(_SC_CLK_TCK)      /* by means of unistd.h */
2262 # include <sys/times.h>
2263
2264 double app_tminterval(int stop, int usertime)
2265 {
2266     double ret = 0;
2267     struct tms rus;
2268     clock_t now = times(&rus);
2269     static clock_t tmstart;
2270
2271     if (usertime)
2272         now = rus.tms_utime;
2273
2274     if (stop == TM_START) {
2275         tmstart = now;
2276     } else {
2277         long int tck = sysconf(_SC_CLK_TCK);
2278         ret = (now - tmstart) / (double)tck;
2279     }
2280
2281     return ret;
2282 }
2283
2284 #else
2285 # include <sys/time.h>
2286 # include <sys/resource.h>
2287
2288 double app_tminterval(int stop, int usertime)
2289 {
2290     double ret = 0;
2291     struct rusage rus;
2292     struct timeval now;
2293     static struct timeval tmstart;
2294
2295     if (usertime)
2296         getrusage(RUSAGE_SELF, &rus), now = rus.ru_utime;
2297     else
2298         gettimeofday(&now, NULL);
2299
2300     if (stop == TM_START)
2301         tmstart = now;
2302     else
2303         ret = ((now.tv_sec + now.tv_usec * 1e-6)
2304                - (tmstart.tv_sec + tmstart.tv_usec * 1e-6));
2305
2306     return ret;
2307 }
2308 #endif
2309
2310 int app_access(const char* name, int flag)
2311 {
2312 #ifdef _WIN32
2313     return _access(name, flag);
2314 #else
2315     return access(name, flag);
2316 #endif
2317 }
2318
2319 /* app_isdir section */
2320 #ifdef _WIN32
2321 int app_isdir(const char *name)
2322 {
2323     DWORD attr;
2324 # if defined(UNICODE) || defined(_UNICODE)
2325     size_t i, len_0 = strlen(name) + 1;
2326     WCHAR tempname[MAX_PATH];
2327
2328     if (len_0 > MAX_PATH)
2329         return -1;
2330
2331 #  if !defined(_WIN32_WCE) || _WIN32_WCE>=101
2332     if (!MultiByteToWideChar(CP_ACP, 0, name, len_0, tempname, MAX_PATH))
2333 #  endif
2334         for (i = 0; i < len_0; i++)
2335             tempname[i] = (WCHAR)name[i];
2336
2337     attr = GetFileAttributes(tempname);
2338 # else
2339     attr = GetFileAttributes(name);
2340 # endif
2341     if (attr == INVALID_FILE_ATTRIBUTES)
2342         return -1;
2343     return ((attr & FILE_ATTRIBUTE_DIRECTORY) != 0);
2344 }
2345 #else
2346 # include <sys/stat.h>
2347 # ifndef S_ISDIR
2348 #  if defined(_S_IFMT) && defined(_S_IFDIR)
2349 #   define S_ISDIR(a)   (((a) & _S_IFMT) == _S_IFDIR)
2350 #  else
2351 #   define S_ISDIR(a)   (((a) & S_IFMT) == S_IFDIR)
2352 #  endif
2353 # endif
2354
2355 int app_isdir(const char *name)
2356 {
2357 # if defined(S_ISDIR)
2358     struct stat st;
2359
2360     if (stat(name, &st) == 0)
2361         return S_ISDIR(st.st_mode);
2362     else
2363         return -1;
2364 # else
2365     return -1;
2366 # endif
2367 }
2368 #endif
2369
2370 /* app_dirname section */
2371
2372 /*
2373  * This exactly follows what POSIX's
2374  * dirname does, but is implemented
2375  * in a more platform independent way.
2376  *
2377  * path        dirname
2378  * /usr/lib    /usr
2379  * /usr/       /
2380  * usr         .
2381  * /           /
2382  * .           .
2383  * ..          .
2384  * ""          .
2385  *
2386  * Note: this function also keeps the
2387  * possibility of modifying the 'path'
2388  * string same as POSIX dirname.
2389  */
2390 static char *posix_dirname(char *path)
2391 {
2392     size_t l;
2393     char *ret = ".";
2394
2395     l = strlen(path);
2396     if (l == 0)
2397         goto out;
2398     if (strcmp(path, ".") == 0)
2399         goto out;
2400     if (strcmp(path, "..") == 0)
2401         goto out;
2402     if (strcmp(path, "/") == 0) {
2403         ret = "/";
2404         goto out;
2405     }
2406     if (path[l - 1] == '/') {
2407         /* /usr/ */
2408         path[l - 1] = '\0';
2409     }
2410     if ((ret = strrchr(path, '/')) == NULL) {
2411         /* usr */
2412         ret = ".";
2413     } else if (ret == path) {
2414         /* /usr */
2415         *++ret = '\0';
2416         ret = path;
2417     } else {
2418         /* /usr/lib */
2419         *ret = '\0';
2420         ret = path;
2421     }
2422  out:
2423     return ret;
2424 }
2425
2426 /*
2427  * TODO: implement app_dirname for Windows.
2428  */
2429 #if !defined(_WIN32)
2430 char *app_dirname(char *path)
2431 {
2432     return posix_dirname(path);
2433 }
2434 #elif defined(__VMS)
2435 /*
2436  * sys$filescan fills the given item list with pointers into the original
2437  * path string, so all we need to do is to find the file name and simply
2438  * put a NUL byte wherever the FSCN$_NAME pointer points.  If there is no
2439  * file name part and the path string isn't the empty string, we know for
2440  * a fact that the whole string is a directory spec and return it as is.
2441  * Otherwise or if that pointer is the starting address of the original
2442  * path string, we know to return "sys$disk:[]", which corresponds to the
2443  * Unixly ".".
2444  *
2445  * If sys$filescan returns an error status, we know that this is not
2446  * parsable as a VMS file spec, and then use the fallback, in case we
2447  * have a Unix type path.
2448  */
2449 char *app_dirname(char *path)
2450 {
2451     char *ret = "sys$disk:[]";
2452     struct dsc$descriptor_s dsc_path = { 0 };
2453     ile2 itemlist[] = {
2454         {0, FSCN$_NAME, 0},
2455         {0, 0, 0}
2456     };
2457     int fields;
2458     int status;
2459
2460     dsc_path.dsc$a_pointer = path;
2461     dsc_path.dsc$w_length = strlen(path);
2462     status = sys$filescan(&dsc_path, itemlist, &fields, 0, 0);
2463
2464     if (!(status & 1))
2465         return posix_dirname(path);
2466
2467     if ((fields & (1 << FSCN$_NAME)) == 0) {
2468         if (dsc_path.dsc$w_length != 0)
2469             ret = path;
2470     } else if (itemlist[0].ile2$ps_bufaddr != path) {
2471         if (itemlist[0].ile2$ps_bufaddr != path) {
2472             *itemlist[0].ile2$ps_bufaddr = '\0';
2473             ret = path;
2474         }
2475     }
2476     return ret;
2477 }
2478 #endif
2479
2480 /* raw_read|write section */
2481 #if defined(__VMS)
2482 # include "vms_term_sock.h"
2483 static int stdin_sock = -1;
2484
2485 static void close_stdin_sock(void)
2486 {
2487     TerminalSocket (TERM_SOCK_DELETE, &stdin_sock);
2488 }
2489
2490 int fileno_stdin(void)
2491 {
2492     if (stdin_sock == -1) {
2493         TerminalSocket(TERM_SOCK_CREATE, &stdin_sock);
2494         atexit(close_stdin_sock);
2495     }
2496
2497     return stdin_sock;
2498 }
2499 #else
2500 int fileno_stdin(void)
2501 {
2502     return fileno(stdin);
2503 }
2504 #endif
2505
2506 int fileno_stdout(void)
2507 {
2508     return fileno(stdout);
2509 }
2510
2511 #if defined(_WIN32) && defined(STD_INPUT_HANDLE)
2512 int raw_read_stdin(void *buf, int siz)
2513 {
2514     DWORD n;
2515     if (ReadFile(GetStdHandle(STD_INPUT_HANDLE), buf, siz, &n, NULL))
2516         return n;
2517     else
2518         return -1;
2519 }
2520 #elif defined(__VMS)
2521 # include <sys/socket.h>
2522
2523 int raw_read_stdin(void *buf, int siz)
2524 {
2525     return recv(fileno_stdin(), buf, siz, 0);
2526 }
2527 #else
2528 int raw_read_stdin(void *buf, int siz)
2529 {
2530     return read(fileno_stdin(), buf, siz);
2531 }
2532 #endif
2533
2534 #if defined(_WIN32) && defined(STD_OUTPUT_HANDLE)
2535 int raw_write_stdout(const void *buf, int siz)
2536 {
2537     DWORD n;
2538     if (WriteFile(GetStdHandle(STD_OUTPUT_HANDLE), buf, siz, &n, NULL))
2539         return n;
2540     else
2541         return -1;
2542 }
2543 #else
2544 int raw_write_stdout(const void *buf, int siz)
2545 {
2546     return write(fileno_stdout(), buf, siz);
2547 }
2548 #endif
2549
2550 /*
2551  * Centralized handling if input and output files with format specification
2552  * The format is meant to show what the input and output is supposed to be,
2553  * and is therefore a show of intent more than anything else.  However, it
2554  * does impact behavior on some platform, such as differentiating between
2555  * text and binary input/output on non-Unix platforms
2556  */
2557 static int istext(int format)
2558 {
2559     return (format & B_FORMAT_TEXT) == B_FORMAT_TEXT;
2560 }
2561
2562 BIO *dup_bio_in(int format)
2563 {
2564     return BIO_new_fp(stdin,
2565                       BIO_NOCLOSE | (istext(format) ? BIO_FP_TEXT : 0));
2566 }
2567
2568 static BIO_METHOD *prefix_method = NULL;
2569
2570 BIO *dup_bio_out(int format)
2571 {
2572     BIO *b = BIO_new_fp(stdout,
2573                         BIO_NOCLOSE | (istext(format) ? BIO_FP_TEXT : 0));
2574     void *prefix = NULL;
2575
2576 #ifdef OPENSSL_SYS_VMS
2577     if (istext(format))
2578         b = BIO_push(BIO_new(BIO_f_linebuffer()), b);
2579 #endif
2580
2581     if (istext(format) && (prefix = getenv("HARNESS_OSSL_PREFIX")) != NULL) {
2582         if (prefix_method == NULL)
2583             prefix_method = apps_bf_prefix();
2584         b = BIO_push(BIO_new(prefix_method), b);
2585         BIO_ctrl(b, PREFIX_CTRL_SET_PREFIX, 0, prefix);
2586     }
2587
2588     return b;
2589 }
2590
2591 BIO *dup_bio_err(int format)
2592 {
2593     BIO *b = BIO_new_fp(stderr,
2594                         BIO_NOCLOSE | (istext(format) ? BIO_FP_TEXT : 0));
2595 #ifdef OPENSSL_SYS_VMS
2596     if (istext(format))
2597         b = BIO_push(BIO_new(BIO_f_linebuffer()), b);
2598 #endif
2599     return b;
2600 }
2601
2602 void destroy_prefix_method()
2603 {
2604     BIO_meth_free(prefix_method);
2605     prefix_method = NULL;
2606 }
2607
2608 void unbuffer(FILE *fp)
2609 {
2610 /*
2611  * On VMS, setbuf() will only take 32-bit pointers, and a compilation
2612  * with /POINTER_SIZE=64 will give off a MAYLOSEDATA2 warning here.
2613  * However, we trust that the C RTL will never give us a FILE pointer
2614  * above the first 4 GB of memory, so we simply turn off the warning
2615  * temporarily.
2616  */
2617 #if defined(OPENSSL_SYS_VMS) && defined(__DECC)
2618 # pragma environment save
2619 # pragma message disable maylosedata2
2620 #endif
2621     setbuf(fp, NULL);
2622 #if defined(OPENSSL_SYS_VMS) && defined(__DECC)
2623 # pragma environment restore
2624 #endif
2625 }
2626
2627 static const char *modestr(char mode, int format)
2628 {
2629     OPENSSL_assert(mode == 'a' || mode == 'r' || mode == 'w');
2630
2631     switch (mode) {
2632     case 'a':
2633         return istext(format) ? "a" : "ab";
2634     case 'r':
2635         return istext(format) ? "r" : "rb";
2636     case 'w':
2637         return istext(format) ? "w" : "wb";
2638     }
2639     /* The assert above should make sure we never reach this point */
2640     return NULL;
2641 }
2642
2643 static const char *modeverb(char mode)
2644 {
2645     switch (mode) {
2646     case 'a':
2647         return "appending";
2648     case 'r':
2649         return "reading";
2650     case 'w':
2651         return "writing";
2652     }
2653     return "(doing something)";
2654 }
2655
2656 /*
2657  * Open a file for writing, owner-read-only.
2658  */
2659 BIO *bio_open_owner(const char *filename, int format, int private)
2660 {
2661     FILE *fp = NULL;
2662     BIO *b = NULL;
2663     int fd = -1, bflags, mode, textmode;
2664
2665     if (!private || filename == NULL || strcmp(filename, "-") == 0)
2666         return bio_open_default(filename, 'w', format);
2667
2668     mode = O_WRONLY;
2669 #ifdef O_CREAT
2670     mode |= O_CREAT;
2671 #endif
2672 #ifdef O_TRUNC
2673     mode |= O_TRUNC;
2674 #endif
2675     textmode = istext(format);
2676     if (!textmode) {
2677 #ifdef O_BINARY
2678         mode |= O_BINARY;
2679 #elif defined(_O_BINARY)
2680         mode |= _O_BINARY;
2681 #endif
2682     }
2683
2684 #ifdef OPENSSL_SYS_VMS
2685     /* VMS doesn't have O_BINARY, it just doesn't make sense.  But,
2686      * it still needs to know that we're going binary, or fdopen()
2687      * will fail with "invalid argument"...  so we tell VMS what the
2688      * context is.
2689      */
2690     if (!textmode)
2691         fd = open(filename, mode, 0600, "ctx=bin");
2692     else
2693 #endif
2694         fd = open(filename, mode, 0600);
2695     if (fd < 0)
2696         goto err;
2697     fp = fdopen(fd, modestr('w', format));
2698     if (fp == NULL)
2699         goto err;
2700     bflags = BIO_CLOSE;
2701     if (textmode)
2702         bflags |= BIO_FP_TEXT;
2703     b = BIO_new_fp(fp, bflags);
2704     if (b)
2705         return b;
2706
2707  err:
2708     BIO_printf(bio_err, "%s: Can't open \"%s\" for writing, %s\n",
2709                opt_getprog(), filename, strerror(errno));
2710     ERR_print_errors(bio_err);
2711     /* If we have fp, then fdopen took over fd, so don't close both. */
2712     if (fp)
2713         fclose(fp);
2714     else if (fd >= 0)
2715         close(fd);
2716     return NULL;
2717 }
2718
2719 static BIO *bio_open_default_(const char *filename, char mode, int format,
2720                               int quiet)
2721 {
2722     BIO *ret;
2723
2724     if (filename == NULL || strcmp(filename, "-") == 0) {
2725         ret = mode == 'r' ? dup_bio_in(format) : dup_bio_out(format);
2726         if (quiet) {
2727             ERR_clear_error();
2728             return ret;
2729         }
2730         if (ret != NULL)
2731             return ret;
2732         BIO_printf(bio_err,
2733                    "Can't open %s, %s\n",
2734                    mode == 'r' ? "stdin" : "stdout", strerror(errno));
2735     } else {
2736         ret = BIO_new_file(filename, modestr(mode, format));
2737         if (quiet) {
2738             ERR_clear_error();
2739             return ret;
2740         }
2741         if (ret != NULL)
2742             return ret;
2743         BIO_printf(bio_err,
2744                    "Can't open %s for %s, %s\n",
2745                    filename, modeverb(mode), strerror(errno));
2746     }
2747     ERR_print_errors(bio_err);
2748     return NULL;
2749 }
2750
2751 BIO *bio_open_default(const char *filename, char mode, int format)
2752 {
2753     return bio_open_default_(filename, mode, format, 0);
2754 }
2755
2756 BIO *bio_open_default_quiet(const char *filename, char mode, int format)
2757 {
2758     return bio_open_default_(filename, mode, format, 1);
2759 }
2760
2761 void wait_for_async(SSL *s)
2762 {
2763     /* On Windows select only works for sockets, so we simply don't wait  */
2764 #ifndef OPENSSL_SYS_WINDOWS
2765     int width = 0;
2766     fd_set asyncfds;
2767     OSSL_ASYNC_FD *fds;
2768     size_t numfds;
2769     size_t i;
2770
2771     if (!SSL_get_all_async_fds(s, NULL, &numfds))
2772         return;
2773     if (numfds == 0)
2774         return;
2775     fds = app_malloc(sizeof(OSSL_ASYNC_FD) * numfds, "allocate async fds");
2776     if (!SSL_get_all_async_fds(s, fds, &numfds)) {
2777         OPENSSL_free(fds);
2778         return;
2779     }
2780
2781     FD_ZERO(&asyncfds);
2782     for (i = 0; i < numfds; i++) {
2783         if (width <= (int)fds[i])
2784             width = (int)fds[i] + 1;
2785         openssl_fdset((int)fds[i], &asyncfds);
2786     }
2787     select(width, (void *)&asyncfds, NULL, NULL, NULL);
2788     OPENSSL_free(fds);
2789 #endif
2790 }
2791
2792 /* if OPENSSL_SYS_WINDOWS is defined then so is OPENSSL_SYS_MSDOS */
2793 #if defined(OPENSSL_SYS_MSDOS)
2794 int has_stdin_waiting(void)
2795 {
2796 # if defined(OPENSSL_SYS_WINDOWS)
2797     HANDLE inhand = GetStdHandle(STD_INPUT_HANDLE);
2798     DWORD events = 0;
2799     INPUT_RECORD inputrec;
2800     DWORD insize = 1;
2801     BOOL peeked;
2802
2803     if (inhand == INVALID_HANDLE_VALUE) {
2804         return 0;
2805     }
2806
2807     peeked = PeekConsoleInput(inhand, &inputrec, insize, &events);
2808     if (!peeked) {
2809         /* Probably redirected input? _kbhit() does not work in this case */
2810         if (!feof(stdin)) {
2811             return 1;
2812         }
2813         return 0;
2814     }
2815 # endif
2816     return _kbhit();
2817 }
2818 #endif
2819
2820 /* Corrupt a signature by modifying final byte */
2821 void corrupt_signature(const ASN1_STRING *signature)
2822 {
2823         unsigned char *s = signature->data;
2824         s[signature->length - 1] ^= 0x1;
2825 }
2826
2827 int set_cert_times(X509 *x, const char *startdate, const char *enddate,
2828                    int days)
2829 {
2830     if (startdate == NULL || strcmp(startdate, "today") == 0) {
2831         if (X509_gmtime_adj(X509_getm_notBefore(x), 0) == NULL)
2832             return 0;
2833     } else {
2834         if (!ASN1_TIME_set_string_X509(X509_getm_notBefore(x), startdate))
2835             return 0;
2836     }
2837     if (enddate == NULL) {
2838         if (X509_time_adj_ex(X509_getm_notAfter(x), days, 0, NULL)
2839             == NULL)
2840             return 0;
2841     } else if (!ASN1_TIME_set_string_X509(X509_getm_notAfter(x), enddate)) {
2842         return 0;
2843     }
2844     return 1;
2845 }
2846
2847 void make_uppercase(char *string)
2848 {
2849     int i;
2850
2851     for (i = 0; string[i] != '\0'; i++)
2852         string[i] = toupper((unsigned char)string[i]);
2853 }