Add and use HAS_CASE_PREFIX(), CHECK_AND_SKIP_CASE_PREFIX(), and HAS_CASE_SUFFIX()
[openssl.git] / apps / lib / apps.c
1 /*
2  * Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved.
3  *
4  * Licensed under the Apache License 2.0 (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 #ifndef OPENSSL_NO_ENGINE
19 /* We need to use some deprecated APIs */
20 # define OPENSSL_SUPPRESS_DEPRECATED
21 # include <openssl/engine.h>
22 #endif
23
24 #include <stdio.h>
25 #include <stdlib.h>
26 #include <string.h>
27 #include <sys/types.h>
28 #ifndef OPENSSL_NO_POSIX_IO
29 # include <sys/stat.h>
30 # include <fcntl.h>
31 #endif
32 #include <ctype.h>
33 #include <errno.h>
34 #include <openssl/err.h>
35 #include <openssl/x509.h>
36 #include <openssl/x509v3.h>
37 #include <openssl/http.h>
38 #include <openssl/pem.h>
39 #include <openssl/store.h>
40 #include <openssl/pkcs12.h>
41 #include <openssl/ui.h>
42 #include <openssl/safestack.h>
43 #include <openssl/rsa.h>
44 #include <openssl/rand.h>
45 #include <openssl/bn.h>
46 #include <openssl/ssl.h>
47 #include <openssl/store.h>
48 #include <openssl/core_names.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 #if defined(OPENSSL_SYS_WINDOWS) || defined(OPENSSL_SYS_MSDOS)
58 # include <conio.h>
59 #endif
60
61 #if defined(OPENSSL_SYS_MSDOS) && !defined(_WIN32) || defined(__BORLANDC__)
62 # define _kbhit kbhit
63 #endif
64
65 static BIO *bio_open_default_(const char *filename, char mode, int format,
66                               int quiet);
67
68 #define PASS_SOURCE_SIZE_MAX 4
69
70 DEFINE_STACK_OF(CONF)
71
72 typedef struct {
73     const char *name;
74     unsigned long flag;
75     unsigned long mask;
76 } NAME_EX_TBL;
77
78 static int set_table_opts(unsigned long *flags, const char *arg,
79                           const NAME_EX_TBL * in_tbl);
80 static int set_multi_opts(unsigned long *flags, const char *arg,
81                           const NAME_EX_TBL * in_tbl);
82 static
83 int load_key_certs_crls_suppress(const char *uri, int format, int maybe_stdin,
84                                  const char *pass, const char *desc,
85                                  EVP_PKEY **ppkey, EVP_PKEY **ppubkey,
86                                  EVP_PKEY **pparams,
87                                  X509 **pcert, STACK_OF(X509) **pcerts,
88                                  X509_CRL **pcrl, STACK_OF(X509_CRL) **pcrls,
89                                  int suppress_decode_errors);
90
91 int app_init(long mesgwin);
92
93 int chopup_args(ARGS *arg, char *buf)
94 {
95     int quoted;
96     char c = '\0', *p = NULL;
97
98     arg->argc = 0;
99     if (arg->size == 0) {
100         arg->size = 20;
101         arg->argv = app_malloc(sizeof(*arg->argv) * arg->size, "argv space");
102     }
103
104     for (p = buf;;) {
105         /* Skip whitespace. */
106         while (*p && isspace(_UC(*p)))
107             p++;
108         if (*p == '\0')
109             break;
110
111         /* The start of something good :-) */
112         if (arg->argc >= arg->size) {
113             char **tmp;
114             arg->size += 20;
115             tmp = OPENSSL_realloc(arg->argv, sizeof(*arg->argv) * arg->size);
116             if (tmp == NULL)
117                 return 0;
118             arg->argv = tmp;
119         }
120         quoted = *p == '\'' || *p == '"';
121         if (quoted)
122             c = *p++;
123         arg->argv[arg->argc++] = p;
124
125         /* now look for the end of this */
126         if (quoted) {
127             while (*p && *p != c)
128                 p++;
129             *p++ = '\0';
130         } else {
131             while (*p && !isspace(_UC(*p)))
132                 p++;
133             if (*p)
134                 *p++ = '\0';
135         }
136     }
137     arg->argv[arg->argc] = NULL;
138     return 1;
139 }
140
141 #ifndef APP_INIT
142 int app_init(long mesgwin)
143 {
144     return 1;
145 }
146 #endif
147
148 int ctx_set_verify_locations(SSL_CTX *ctx,
149                              const char *CAfile, int noCAfile,
150                              const char *CApath, int noCApath,
151                              const char *CAstore, int noCAstore)
152 {
153     if (CAfile == NULL && CApath == NULL && CAstore == NULL) {
154         if (!noCAfile && SSL_CTX_set_default_verify_file(ctx) <= 0)
155             return 0;
156         if (!noCApath && SSL_CTX_set_default_verify_dir(ctx) <= 0)
157             return 0;
158         if (!noCAstore && SSL_CTX_set_default_verify_store(ctx) <= 0)
159             return 0;
160
161         return 1;
162     }
163
164     if (CAfile != NULL && !SSL_CTX_load_verify_file(ctx, CAfile))
165         return 0;
166     if (CApath != NULL && !SSL_CTX_load_verify_dir(ctx, CApath))
167         return 0;
168     if (CAstore != NULL && !SSL_CTX_load_verify_store(ctx, CAstore))
169         return 0;
170     return 1;
171 }
172
173 #ifndef OPENSSL_NO_CT
174
175 int ctx_set_ctlog_list_file(SSL_CTX *ctx, const char *path)
176 {
177     if (path == NULL)
178         return SSL_CTX_set_default_ctlog_list_file(ctx);
179
180     return SSL_CTX_set_ctlog_list_file(ctx, path);
181 }
182
183 #endif
184
185 static unsigned long nmflag = 0;
186 static char nmflag_set = 0;
187
188 int set_nameopt(const char *arg)
189 {
190     int ret = set_name_ex(&nmflag, arg);
191
192     if (ret)
193         nmflag_set = 1;
194
195     return ret;
196 }
197
198 unsigned long get_nameopt(void)
199 {
200     return (nmflag_set) ? nmflag : XN_FLAG_SEP_CPLUS_SPC | ASN1_STRFLGS_UTF8_CONVERT;
201 }
202
203 void dump_cert_text(BIO *out, X509 *x)
204 {
205     print_name(out, "subject=", X509_get_subject_name(x));
206     print_name(out, "issuer=", X509_get_issuer_name(x));
207 }
208
209 int wrap_password_callback(char *buf, int bufsiz, int verify, void *userdata)
210 {
211     return password_callback(buf, bufsiz, verify, (PW_CB_DATA *)userdata);
212 }
213
214
215 static char *app_get_pass(const char *arg, int keepbio);
216
217 char *get_passwd(const char *pass, const char *desc)
218 {
219     char *result = NULL;
220
221     if (desc == NULL)
222         desc = "<unknown>";
223     if (!app_passwd(pass, NULL, &result, NULL))
224         BIO_printf(bio_err, "Error getting password for %s\n", desc);
225     if (pass != NULL && result == NULL) {
226         BIO_printf(bio_err,
227                    "Trying plain input string (better precede with 'pass:')\n");
228         result = OPENSSL_strdup(pass);
229         if (result == NULL)
230             BIO_printf(bio_err, "Out of memory getting password for %s\n", desc);
231     }
232     return result;
233 }
234
235 int app_passwd(const char *arg1, const char *arg2, char **pass1, char **pass2)
236 {
237     int same = arg1 != NULL && arg2 != NULL && strcmp(arg1, arg2) == 0;
238
239     if (arg1 != NULL) {
240         *pass1 = app_get_pass(arg1, same);
241         if (*pass1 == NULL)
242             return 0;
243     } else if (pass1 != NULL) {
244         *pass1 = NULL;
245     }
246     if (arg2 != NULL) {
247         *pass2 = app_get_pass(arg2, same ? 2 : 0);
248         if (*pass2 == NULL)
249             return 0;
250     } else if (pass2 != NULL) {
251         *pass2 = NULL;
252     }
253     return 1;
254 }
255
256 static char *app_get_pass(const char *arg, int keepbio)
257 {
258     static BIO *pwdbio = NULL;
259     char *tmp, tpass[APP_PASS_LEN];
260     int i;
261
262     /* PASS_SOURCE_SIZE_MAX = max number of chars before ':' in below strings */
263     if (CHECK_AND_SKIP_PREFIX(arg, "pass:"))
264         return OPENSSL_strdup(arg);
265     if (CHECK_AND_SKIP_PREFIX(arg, "env:")) {
266         tmp = getenv(arg);
267         if (tmp == NULL) {
268             BIO_printf(bio_err, "No environment variable %s\n", arg);
269             return NULL;
270         }
271         return OPENSSL_strdup(tmp);
272     }
273     if (!keepbio || pwdbio == NULL) {
274         if (CHECK_AND_SKIP_PREFIX(arg, "file:")) {
275             pwdbio = BIO_new_file(arg, "r");
276             if (pwdbio == NULL) {
277                 BIO_printf(bio_err, "Can't open file %s\n", arg);
278                 return NULL;
279             }
280 #if !defined(_WIN32)
281             /*
282              * Under _WIN32, which covers even Win64 and CE, file
283              * descriptors referenced by BIO_s_fd are not inherited
284              * by child process and therefore below is not an option.
285              * It could have been an option if bss_fd.c was operating
286              * on real Windows descriptors, such as those obtained
287              * with CreateFile.
288              */
289         } else if (CHECK_AND_SKIP_PREFIX(arg, "fd:")) {
290             BIO *btmp;
291             i = atoi(arg);
292             if (i >= 0)
293                 pwdbio = BIO_new_fd(i, BIO_NOCLOSE);
294             if ((i < 0) || !pwdbio) {
295                 BIO_printf(bio_err, "Can't access file descriptor %s\n", arg);
296                 return NULL;
297             }
298             /*
299              * Can't do BIO_gets on an fd BIO so add a buffering BIO
300              */
301             btmp = BIO_new(BIO_f_buffer());
302             pwdbio = BIO_push(btmp, pwdbio);
303 #endif
304         } else if (strcmp(arg, "stdin") == 0) {
305             pwdbio = dup_bio_in(FORMAT_TEXT);
306             if (pwdbio == NULL) {
307                 BIO_printf(bio_err, "Can't open BIO for stdin\n");
308                 return NULL;
309             }
310         } else {
311             /* argument syntax error; do not reveal too much about arg */
312             tmp = strchr(arg, ':');
313             if (tmp == NULL || tmp - arg > PASS_SOURCE_SIZE_MAX)
314                 BIO_printf(bio_err,
315                            "Invalid password argument, missing ':' within the first %d chars\n",
316                            PASS_SOURCE_SIZE_MAX + 1);
317             else
318                 BIO_printf(bio_err,
319                            "Invalid password argument, starting with \"%.*s\"\n",
320                            (int)(tmp - arg + 1), arg);
321             return NULL;
322         }
323     }
324     i = BIO_gets(pwdbio, tpass, APP_PASS_LEN);
325     if (keepbio != 1) {
326         BIO_free_all(pwdbio);
327         pwdbio = NULL;
328     }
329     if (i <= 0) {
330         BIO_printf(bio_err, "Error reading password from BIO\n");
331         return NULL;
332     }
333     tmp = strchr(tpass, '\n');
334     if (tmp != NULL)
335         *tmp = 0;
336     return OPENSSL_strdup(tpass);
337 }
338
339 CONF *app_load_config_bio(BIO *in, const char *filename)
340 {
341     long errorline = -1;
342     CONF *conf;
343     int i;
344
345     conf = NCONF_new_ex(app_get0_libctx(), NULL);
346     i = NCONF_load_bio(conf, in, &errorline);
347     if (i > 0)
348         return conf;
349
350     if (errorline <= 0) {
351         BIO_printf(bio_err, "%s: Can't load ", opt_getprog());
352     } else {
353         BIO_printf(bio_err, "%s: Error on line %ld of ", opt_getprog(),
354                    errorline);
355     }
356     if (filename != NULL)
357         BIO_printf(bio_err, "config file \"%s\"\n", filename);
358     else
359         BIO_printf(bio_err, "config input");
360
361     NCONF_free(conf);
362     return NULL;
363 }
364
365 CONF *app_load_config_verbose(const char *filename, int verbose)
366 {
367     if (verbose) {
368         if (*filename == '\0')
369             BIO_printf(bio_err, "No configuration used\n");
370         else
371             BIO_printf(bio_err, "Using configuration from %s\n", filename);
372     }
373     return app_load_config_internal(filename, 0);
374 }
375
376 CONF *app_load_config_internal(const char *filename, int quiet)
377 {
378     BIO *in;
379     CONF *conf;
380
381     if (filename == NULL || *filename != '\0') {
382         if ((in = bio_open_default_(filename, 'r', FORMAT_TEXT, quiet)) == NULL)
383             return NULL;
384         conf = app_load_config_bio(in, filename);
385         BIO_free(in);
386     } else {
387         /* Return empty config if filename is empty string. */
388         conf = NCONF_new_ex(app_get0_libctx(), NULL);
389     }
390     return conf;
391 }
392
393 int app_load_modules(const CONF *config)
394 {
395     CONF *to_free = NULL;
396
397     if (config == NULL)
398         config = to_free = app_load_config_quiet(default_config_file);
399     if (config == NULL)
400         return 1;
401
402     if (CONF_modules_load(config, NULL, 0) <= 0) {
403         BIO_printf(bio_err, "Error configuring OpenSSL modules\n");
404         ERR_print_errors(bio_err);
405         NCONF_free(to_free);
406         return 0;
407     }
408     NCONF_free(to_free);
409     return 1;
410 }
411
412 int add_oid_section(CONF *conf)
413 {
414     char *p;
415     STACK_OF(CONF_VALUE) *sktmp;
416     CONF_VALUE *cnf;
417     int i;
418
419     if ((p = NCONF_get_string(conf, NULL, "oid_section")) == NULL) {
420         ERR_clear_error();
421         return 1;
422     }
423     if ((sktmp = NCONF_get_section(conf, p)) == NULL) {
424         BIO_printf(bio_err, "problem loading oid section %s\n", p);
425         return 0;
426     }
427     for (i = 0; i < sk_CONF_VALUE_num(sktmp); i++) {
428         cnf = sk_CONF_VALUE_value(sktmp, i);
429         if (OBJ_create(cnf->value, cnf->name, cnf->name) == NID_undef) {
430             BIO_printf(bio_err, "problem creating object %s=%s\n",
431                        cnf->name, cnf->value);
432             return 0;
433         }
434     }
435     return 1;
436 }
437
438 CONF *app_load_config_modules(const char *configfile)
439 {
440     CONF *conf = NULL;
441
442     if (configfile != NULL) {
443         if ((conf = app_load_config_verbose(configfile, 1)) == NULL)
444             return NULL;
445         if (configfile != default_config_file && !app_load_modules(conf)) {
446             NCONF_free(conf);
447             conf = NULL;
448         }
449     }
450     return conf;
451 }
452
453 #define IS_HTTP(uri) ((uri) != NULL  && HAS_PREFIX(uri, OSSL_HTTP_PREFIX))
454 #define IS_HTTPS(uri) ((uri) != NULL && HAS_PREFIX(uri, OSSL_HTTPS_PREFIX))
455
456 X509 *load_cert_pass(const char *uri, int format, int maybe_stdin,
457                      const char *pass, const char *desc)
458 {
459     X509 *cert = NULL;
460
461     if (desc == NULL)
462         desc = "certificate";
463     if (IS_HTTPS(uri))
464         BIO_printf(bio_err, "Loading %s over HTTPS is unsupported\n", desc);
465     else if (IS_HTTP(uri))
466         cert = X509_load_http(uri, NULL, NULL, 0 /* timeout */);
467     else
468         (void)load_key_certs_crls(uri, format, maybe_stdin, pass, desc,
469                                   NULL, NULL, NULL, &cert, NULL, NULL, NULL);
470     if (cert == NULL) {
471         BIO_printf(bio_err, "Unable to load %s\n", desc);
472         ERR_print_errors(bio_err);
473     }
474     return cert;
475 }
476
477 X509_CRL *load_crl(const char *uri, int format, int maybe_stdin,
478                    const char *desc)
479 {
480     X509_CRL *crl = NULL;
481
482     if (desc == NULL)
483         desc = "CRL";
484     if (IS_HTTPS(uri))
485         BIO_printf(bio_err, "Loading %s over HTTPS is unsupported\n", desc);
486     else if (IS_HTTP(uri))
487         crl = X509_CRL_load_http(uri, NULL, NULL, 0 /* timeout */);
488     else
489         (void)load_key_certs_crls(uri, format, maybe_stdin, NULL, desc,
490                                   NULL, NULL,  NULL, NULL, NULL, &crl, NULL);
491     if (crl == NULL) {
492         BIO_printf(bio_err, "Unable to load %s\n", desc);
493         ERR_print_errors(bio_err);
494     }
495     return crl;
496 }
497
498 X509_REQ *load_csr(const char *file, int format, const char *desc)
499 {
500     X509_REQ *req = NULL;
501     BIO *in;
502
503     if (format == FORMAT_UNDEF)
504         format = FORMAT_PEM;
505     if (desc == NULL)
506         desc = "CSR";
507     in = bio_open_default(file, 'r', format);
508     if (in == NULL)
509         goto end;
510
511     if (format == FORMAT_ASN1)
512         req = d2i_X509_REQ_bio(in, NULL);
513     else if (format == FORMAT_PEM)
514         req = PEM_read_bio_X509_REQ(in, NULL, NULL, NULL);
515     else
516         print_format_error(format, OPT_FMT_PEMDER);
517
518  end:
519     if (req == NULL) {
520         BIO_printf(bio_err, "Unable to load %s\n", desc);
521         ERR_print_errors(bio_err);
522     }
523     BIO_free(in);
524     return req;
525 }
526
527 void cleanse(char *str)
528 {
529     if (str != NULL)
530         OPENSSL_cleanse(str, strlen(str));
531 }
532
533 void clear_free(char *str)
534 {
535     if (str != NULL)
536         OPENSSL_clear_free(str, strlen(str));
537 }
538
539 EVP_PKEY *load_key(const char *uri, int format, int may_stdin,
540                    const char *pass, ENGINE *e, const char *desc)
541 {
542     EVP_PKEY *pkey = NULL;
543     char *allocated_uri = NULL;
544
545     if (desc == NULL)
546         desc = "private key";
547
548     if (format == FORMAT_ENGINE) {
549         uri = allocated_uri = make_engine_uri(e, uri, desc);
550     }
551     (void)load_key_certs_crls(uri, format, may_stdin, pass, desc,
552                               &pkey, NULL, NULL, NULL, NULL, NULL, NULL);
553
554     OPENSSL_free(allocated_uri);
555     return pkey;
556 }
557
558 EVP_PKEY *load_pubkey(const char *uri, int format, int maybe_stdin,
559                       const char *pass, ENGINE *e, const char *desc)
560 {
561     EVP_PKEY *pkey = NULL;
562     char *allocated_uri = NULL;
563
564     if (desc == NULL)
565         desc = "public key";
566
567     if (format == FORMAT_ENGINE) {
568         uri = allocated_uri = make_engine_uri(e, uri, desc);
569     }
570     (void)load_key_certs_crls(uri, format, maybe_stdin, pass, desc,
571                               NULL, &pkey, NULL, NULL, NULL, NULL, NULL);
572
573     OPENSSL_free(allocated_uri);
574     return pkey;
575 }
576
577 EVP_PKEY *load_keyparams_suppress(const char *uri, int format, int maybe_stdin,
578                                  const char *keytype, const char *desc,
579                                  int suppress_decode_errors)
580 {
581     EVP_PKEY *params = NULL;
582
583     if (desc == NULL)
584         desc = "key parameters";
585
586     (void)load_key_certs_crls_suppress(uri, format, maybe_stdin, NULL, desc,
587                                        NULL, NULL, &params, NULL, NULL, NULL,
588                                        NULL, suppress_decode_errors);
589     if (params != NULL && keytype != NULL && !EVP_PKEY_is_a(params, keytype)) {
590         if (!suppress_decode_errors) {
591             BIO_printf(bio_err,
592                        "Unable to load %s from %s (unexpected parameters type)\n",
593                        desc, uri);
594             ERR_print_errors(bio_err);
595         }
596         EVP_PKEY_free(params);
597         params = NULL;
598     }
599     return params;
600 }
601
602 EVP_PKEY *load_keyparams(const char *uri, int format, int maybe_stdin,
603                          const char *keytype, const char *desc)
604 {
605     return load_keyparams_suppress(uri, format, maybe_stdin, keytype, desc, 0);
606 }
607
608 void app_bail_out(char *fmt, ...)
609 {
610     va_list args;
611
612     va_start(args, fmt);
613     BIO_vprintf(bio_err, fmt, args);
614     va_end(args);
615     ERR_print_errors(bio_err);
616     exit(EXIT_FAILURE);
617 }
618
619 void *app_malloc(size_t sz, const char *what)
620 {
621     void *vp = OPENSSL_malloc(sz);
622
623     if (vp == NULL)
624         app_bail_out("%s: Could not allocate %zu bytes for %s\n",
625                      opt_getprog(), sz, what);
626     return vp;
627 }
628
629 char *next_item(char *opt) /* in list separated by comma and/or space */
630 {
631     /* advance to separator (comma or whitespace), if any */
632     while (*opt != ',' && !isspace(*opt) && *opt != '\0')
633         opt++;
634     if (*opt != '\0') {
635         /* terminate current item */
636         *opt++ = '\0';
637         /* skip over any whitespace after separator */
638         while (isspace(*opt))
639             opt++;
640     }
641     return *opt == '\0' ? NULL : opt; /* NULL indicates end of input */
642 }
643
644 static void warn_cert_msg(const char *uri, X509 *cert, const char *msg)
645 {
646     char *subj = X509_NAME_oneline(X509_get_subject_name(cert), NULL, 0);
647
648     BIO_printf(bio_err, "Warning: certificate from '%s' with subject '%s' %s\n",
649                uri, subj, msg);
650     OPENSSL_free(subj);
651 }
652
653 static void warn_cert(const char *uri, X509 *cert, int warn_EE,
654                       X509_VERIFY_PARAM *vpm)
655 {
656     uint32_t ex_flags = X509_get_extension_flags(cert);
657     int res = X509_cmp_timeframe(vpm, X509_get0_notBefore(cert),
658                                  X509_get0_notAfter(cert));
659
660     if (res != 0)
661         warn_cert_msg(uri, cert, res > 0 ? "has expired" : "not yet valid");
662     if (warn_EE && (ex_flags & EXFLAG_V1) == 0 && (ex_flags & EXFLAG_CA) == 0)
663         warn_cert_msg(uri, cert, "is not a CA cert");
664 }
665
666 static void warn_certs(const char *uri, STACK_OF(X509) *certs, int warn_EE,
667                        X509_VERIFY_PARAM *vpm)
668 {
669     int i;
670
671     for (i = 0; i < sk_X509_num(certs); i++)
672         warn_cert(uri, sk_X509_value(certs, i), warn_EE, vpm);
673 }
674
675 int load_cert_certs(const char *uri,
676                     X509 **pcert, STACK_OF(X509) **pcerts,
677                     int exclude_http, const char *pass, const char *desc,
678                     X509_VERIFY_PARAM *vpm)
679 {
680     int ret = 0;
681     char *pass_string;
682
683     if (exclude_http && (HAS_CASE_PREFIX(uri, "http://")
684                          || HAS_CASE_PREFIX(uri, "https://"))) {
685         BIO_printf(bio_err, "error: HTTP retrieval not allowed for %s\n", desc);
686         return ret;
687     }
688     pass_string = get_passwd(pass, desc);
689     ret = load_key_certs_crls(uri, FORMAT_UNDEF, 0, pass_string, desc,
690                               NULL, NULL, NULL,
691                               pcert, pcerts, NULL, NULL);
692     clear_free(pass_string);
693
694     if (ret) {
695         if (pcert != NULL)
696             warn_cert(uri, *pcert, 0, vpm);
697         warn_certs(uri, *pcerts, 1, vpm);
698     } else {
699         sk_X509_pop_free(*pcerts, X509_free);
700         *pcerts = NULL;
701     }
702     return ret;
703 }
704
705 STACK_OF(X509) *load_certs_multifile(char *files, const char *pass,
706                                      const char *desc, X509_VERIFY_PARAM *vpm)
707 {
708     STACK_OF(X509) *certs = NULL;
709     STACK_OF(X509) *result = sk_X509_new_null();
710
711     if (files == NULL)
712         goto err;
713     if (result == NULL)
714         goto oom;
715
716     while (files != NULL) {
717         char *next = next_item(files);
718
719         if (!load_cert_certs(files, NULL, &certs, 0, pass, desc, vpm))
720             goto err;
721         if (!X509_add_certs(result, certs,
722                             X509_ADD_FLAG_UP_REF | X509_ADD_FLAG_NO_DUP))
723             goto oom;
724         sk_X509_pop_free(certs, X509_free);
725         certs = NULL;
726         files = next;
727     }
728     return result;
729
730  oom:
731     BIO_printf(bio_err, "out of memory\n");
732  err:
733     sk_X509_pop_free(certs, X509_free);
734     sk_X509_pop_free(result, X509_free);
735     return NULL;
736 }
737
738 static X509_STORE *sk_X509_to_store(X509_STORE *store /* may be NULL */,
739                                     const STACK_OF(X509) *certs /* may NULL */)
740 {
741     int i;
742
743     if (store == NULL)
744         store = X509_STORE_new();
745     if (store == NULL)
746         return NULL;
747     for (i = 0; i < sk_X509_num(certs); i++) {
748         if (!X509_STORE_add_cert(store, sk_X509_value(certs, i))) {
749             X509_STORE_free(store);
750             return NULL;
751         }
752     }
753     return store;
754 }
755
756 /*
757  * Create cert store structure with certificates read from given file(s).
758  * Returns pointer to created X509_STORE on success, NULL on error.
759  */
760 X509_STORE *load_certstore(char *input, const char *pass, const char *desc,
761                            X509_VERIFY_PARAM *vpm)
762 {
763     X509_STORE *store = NULL;
764     STACK_OF(X509) *certs = NULL;
765
766     while (input != NULL) {
767         char *next = next_item(input);
768         int ok;
769
770         if (!load_cert_certs(input, NULL, &certs, 1, pass, desc, vpm)) {
771             X509_STORE_free(store);
772             return NULL;
773         }
774         ok = (store = sk_X509_to_store(store, certs)) != NULL;
775         sk_X509_pop_free(certs, X509_free);
776         certs = NULL;
777         if (!ok)
778             return NULL;
779         input = next;
780     }
781     return store;
782 }
783
784 /*
785  * Initialize or extend, if *certs != NULL, a certificate stack.
786  * The caller is responsible for freeing *certs if its value is left not NULL.
787  */
788 int load_certs(const char *uri, int maybe_stdin, STACK_OF(X509) **certs,
789                const char *pass, const char *desc)
790 {
791     int was_NULL = *certs == NULL;
792     int ret = load_key_certs_crls(uri, FORMAT_UNDEF, maybe_stdin,
793                                   pass, desc, NULL, NULL,
794                                   NULL, NULL, certs, NULL, NULL);
795
796     if (!ret && was_NULL) {
797         sk_X509_pop_free(*certs, X509_free);
798         *certs = NULL;
799     }
800     return ret;
801 }
802
803 /*
804  * Initialize or extend, if *crls != NULL, a certificate stack.
805  * The caller is responsible for freeing *crls if its value is left not NULL.
806  */
807 int load_crls(const char *uri, STACK_OF(X509_CRL) **crls,
808               const char *pass, const char *desc)
809 {
810     int was_NULL = *crls == NULL;
811     int ret = load_key_certs_crls(uri, FORMAT_UNDEF, 0, pass, desc,
812                                   NULL, NULL, NULL,
813                                   NULL, NULL, NULL, crls);
814
815     if (!ret && was_NULL) {
816         sk_X509_CRL_pop_free(*crls, X509_CRL_free);
817         *crls = NULL;
818     }
819     return ret;
820 }
821
822 static const char *format2string(int format)
823 {
824     switch (format) {
825     case FORMAT_PEM:
826         return "PEM";
827     case FORMAT_ASN1:
828         return "DER";
829     }
830     return NULL;
831 }
832
833 /* Set type expectation, but clear it if objects of different types expected. */
834 #define SET_EXPECT(expect, val) ((expect) = (expect) < 0 ? (val) : ((expect) == (val) ? (val) : 0))
835 /*
836  * Load those types of credentials for which the result pointer is not NULL.
837  * Reads from stdio if uri is NULL and maybe_stdin is nonzero.
838  * For non-NULL ppkey, pcert, and pcrl the first suitable value found is loaded.
839  * If pcerts is non-NULL and *pcerts == NULL then a new cert list is allocated.
840  * If pcerts is non-NULL then all available certificates are appended to *pcerts
841  * except any certificate assigned to *pcert.
842  * If pcrls is non-NULL and *pcrls == NULL then a new list of CRLs is allocated.
843  * If pcrls is non-NULL then all available CRLs are appended to *pcerts
844  * except any CRL assigned to *pcrl.
845  * In any case (also on error) the caller is responsible for freeing all members
846  * of *pcerts and *pcrls (as far as they are not NULL).
847  */
848 static
849 int load_key_certs_crls_suppress(const char *uri, int format, int maybe_stdin,
850                                  const char *pass, const char *desc,
851                                  EVP_PKEY **ppkey, EVP_PKEY **ppubkey,
852                                  EVP_PKEY **pparams,
853                                  X509 **pcert, STACK_OF(X509) **pcerts,
854                                  X509_CRL **pcrl, STACK_OF(X509_CRL) **pcrls,
855                                  int suppress_decode_errors)
856 {
857     PW_CB_DATA uidata;
858     OSSL_STORE_CTX *ctx = NULL;
859     OSSL_LIB_CTX *libctx = app_get0_libctx();
860     const char *propq = app_get0_propq();
861     int ncerts = 0;
862     int ncrls = 0;
863     const char *failed =
864         ppkey != NULL ? "key" : ppubkey != NULL ? "public key" :
865         pparams != NULL ? "params" : pcert != NULL ? "cert" :
866         pcrl != NULL ? "CRL" : pcerts != NULL ? "certs" :
867         pcrls != NULL ? "CRLs" : NULL;
868     int cnt_expectations = 0;
869     int expect = -1;
870     const char *input_type;
871     OSSL_PARAM itp[2];
872     const OSSL_PARAM *params = NULL;
873
874     if (ppkey != NULL) {
875         *ppkey = NULL;
876         cnt_expectations++;
877         SET_EXPECT(expect, OSSL_STORE_INFO_PKEY);
878     }
879     if (ppubkey != NULL) {
880         *ppubkey = NULL;
881         cnt_expectations++;
882         SET_EXPECT(expect, OSSL_STORE_INFO_PUBKEY);
883     }
884     if (pparams != NULL) {
885         *pparams = NULL;
886         cnt_expectations++;
887         SET_EXPECT(expect, OSSL_STORE_INFO_PARAMS);
888     }
889     if (pcert != NULL) {
890         *pcert = NULL;
891         cnt_expectations++;
892         SET_EXPECT(expect, OSSL_STORE_INFO_CERT);
893     }
894     if (pcerts != NULL) {
895         if (*pcerts == NULL && (*pcerts = sk_X509_new_null()) == NULL) {
896             BIO_printf(bio_err, "Out of memory loading");
897             goto end;
898         }
899         cnt_expectations++;
900         SET_EXPECT(expect, OSSL_STORE_INFO_CERT);
901     }
902     if (pcrl != NULL) {
903         *pcrl = NULL;
904         cnt_expectations++;
905         SET_EXPECT(expect, OSSL_STORE_INFO_CRL);
906     }
907     if (pcrls != NULL) {
908         if (*pcrls == NULL && (*pcrls = sk_X509_CRL_new_null()) == NULL) {
909             BIO_printf(bio_err, "Out of memory loading");
910             goto end;
911         }
912         cnt_expectations++;
913         SET_EXPECT(expect, OSSL_STORE_INFO_CRL);
914     }
915     if (cnt_expectations == 0) {
916         BIO_printf(bio_err, "Internal error: nothing to load from %s\n",
917                    uri != NULL ? uri : "<stdin>");
918         return 0;
919     }
920
921     uidata.password = pass;
922     uidata.prompt_info = uri;
923
924     if ((input_type = format2string(format)) != NULL) {
925        itp[0] = OSSL_PARAM_construct_utf8_string(OSSL_STORE_PARAM_INPUT_TYPE,
926                                                  (char *)input_type, 0);
927        itp[1] = OSSL_PARAM_construct_end();
928        params = itp;
929     }
930
931     if (uri == NULL) {
932         BIO *bio;
933
934         if (!maybe_stdin) {
935             BIO_printf(bio_err, "No filename or uri specified for loading");
936             goto end;
937         }
938         uri = "<stdin>";
939         unbuffer(stdin);
940         bio = BIO_new_fp(stdin, 0);
941         if (bio != NULL) {
942             ctx = OSSL_STORE_attach(bio, "file", libctx, propq,
943                                     get_ui_method(), &uidata, params,
944                                     NULL, NULL);
945             BIO_free(bio);
946         }
947     } else {
948         ctx = OSSL_STORE_open_ex(uri, libctx, propq, get_ui_method(), &uidata,
949                                  params, NULL, NULL);
950     }
951     if (ctx == NULL) {
952         BIO_printf(bio_err, "Could not open file or uri for loading");
953         goto end;
954     }
955     if (expect > 0 && !OSSL_STORE_expect(ctx, expect))
956         goto end;
957
958     failed = NULL;
959     while (cnt_expectations > 0 && !OSSL_STORE_eof(ctx)) {
960         OSSL_STORE_INFO *info = OSSL_STORE_load(ctx);
961         int type, ok = 1;
962
963         /*
964          * This can happen (for example) if we attempt to load a file with
965          * multiple different types of things in it - but the thing we just
966          * tried to load wasn't one of the ones we wanted, e.g. if we're trying
967          * to load a certificate but the file has both the private key and the
968          * certificate in it. We just retry until eof.
969          */
970         if (info == NULL) {
971             continue;
972         }
973
974         type = OSSL_STORE_INFO_get_type(info);
975         switch (type) {
976         case OSSL_STORE_INFO_PKEY:
977             if (ppkey != NULL && *ppkey == NULL) {
978                 ok = (*ppkey = OSSL_STORE_INFO_get1_PKEY(info)) != NULL;
979                 cnt_expectations -= ok;
980             }
981             /*
982              * An EVP_PKEY with private parts also holds the public parts,
983              * so if the caller asked for a public key, and we got a private
984              * key, we can still pass it back.
985              */
986             if (ok && ppubkey != NULL && *ppubkey == NULL) {
987                 ok = ((*ppubkey = OSSL_STORE_INFO_get1_PKEY(info)) != NULL);
988                 cnt_expectations -= ok;
989             }
990             break;
991         case OSSL_STORE_INFO_PUBKEY:
992             if (ppubkey != NULL && *ppubkey == NULL) {
993                 ok = ((*ppubkey = OSSL_STORE_INFO_get1_PUBKEY(info)) != NULL);
994                 cnt_expectations -= ok;
995             }
996             break;
997         case OSSL_STORE_INFO_PARAMS:
998             if (pparams != NULL && *pparams == NULL) {
999                 ok = ((*pparams = OSSL_STORE_INFO_get1_PARAMS(info)) != NULL);
1000                 cnt_expectations -= ok;
1001             }
1002             break;
1003         case OSSL_STORE_INFO_CERT:
1004             if (pcert != NULL && *pcert == NULL) {
1005                 ok = (*pcert = OSSL_STORE_INFO_get1_CERT(info)) != NULL;
1006                 cnt_expectations -= ok;
1007             }
1008             else if (pcerts != NULL)
1009                 ok = X509_add_cert(*pcerts,
1010                                    OSSL_STORE_INFO_get1_CERT(info),
1011                                    X509_ADD_FLAG_DEFAULT);
1012             ncerts += ok;
1013             break;
1014         case OSSL_STORE_INFO_CRL:
1015             if (pcrl != NULL && *pcrl == NULL) {
1016                 ok = (*pcrl = OSSL_STORE_INFO_get1_CRL(info)) != NULL;
1017                 cnt_expectations -= ok;
1018             }
1019             else if (pcrls != NULL)
1020                 ok = sk_X509_CRL_push(*pcrls, OSSL_STORE_INFO_get1_CRL(info));
1021             ncrls += ok;
1022             break;
1023         default:
1024             /* skip any other type */
1025             break;
1026         }
1027         OSSL_STORE_INFO_free(info);
1028         if (!ok) {
1029             failed = info == NULL ? NULL : OSSL_STORE_INFO_type_string(type);
1030             BIO_printf(bio_err, "Error reading");
1031             break;
1032         }
1033     }
1034
1035  end:
1036     OSSL_STORE_close(ctx);
1037     if (failed == NULL) {
1038         int any = 0;
1039
1040         if ((ppkey != NULL && *ppkey == NULL)
1041             || (ppubkey != NULL && *ppubkey == NULL)) {
1042             failed = "key";
1043         } else if (pparams != NULL && *pparams == NULL) {
1044             failed = "params";
1045         } else if ((pcert != NULL || pcerts != NULL) && ncerts == 0) {
1046             if (pcert == NULL)
1047                 any = 1;
1048             failed = "cert";
1049         } else if ((pcrl != NULL || pcrls != NULL) && ncrls == 0) {
1050             if (pcrl == NULL)
1051                 any = 1;
1052             failed = "CRL";
1053         }
1054         if (!suppress_decode_errors) {
1055             if (failed != NULL)
1056                 BIO_printf(bio_err, "Could not read");
1057             if (any)
1058                 BIO_printf(bio_err, " any");
1059         }
1060     }
1061     if (!suppress_decode_errors && failed != NULL) {
1062         if (desc != NULL && strstr(desc, failed) != NULL) {
1063             BIO_printf(bio_err, " %s", desc);
1064         } else {
1065             BIO_printf(bio_err, " %s", failed);
1066             if (desc != NULL)
1067                 BIO_printf(bio_err, " of %s", desc);
1068         }
1069         if (uri != NULL)
1070             BIO_printf(bio_err, " from %s", uri);
1071         BIO_printf(bio_err, "\n");
1072         ERR_print_errors(bio_err);
1073     }
1074     if (suppress_decode_errors || failed == NULL)
1075         /* clear any spurious errors */
1076         ERR_clear_error();
1077     return failed == NULL;
1078 }
1079
1080 int load_key_certs_crls(const char *uri, int format, int maybe_stdin,
1081                         const char *pass, const char *desc,
1082                         EVP_PKEY **ppkey, EVP_PKEY **ppubkey,
1083                         EVP_PKEY **pparams,
1084                         X509 **pcert, STACK_OF(X509) **pcerts,
1085                         X509_CRL **pcrl, STACK_OF(X509_CRL) **pcrls)
1086 {
1087     return load_key_certs_crls_suppress(uri, format, maybe_stdin, pass, desc,
1088                                         ppkey, ppubkey, pparams, pcert, pcerts,
1089                                         pcrl, pcrls, 0);
1090 }
1091
1092 #define X509V3_EXT_UNKNOWN_MASK         (0xfL << 16)
1093 /* Return error for unknown extensions */
1094 #define X509V3_EXT_DEFAULT              0
1095 /* Print error for unknown extensions */
1096 #define X509V3_EXT_ERROR_UNKNOWN        (1L << 16)
1097 /* ASN1 parse unknown extensions */
1098 #define X509V3_EXT_PARSE_UNKNOWN        (2L << 16)
1099 /* BIO_dump unknown extensions */
1100 #define X509V3_EXT_DUMP_UNKNOWN         (3L << 16)
1101
1102 #define X509_FLAG_CA (X509_FLAG_NO_ISSUER | X509_FLAG_NO_PUBKEY | \
1103                          X509_FLAG_NO_HEADER | X509_FLAG_NO_VERSION)
1104
1105 int set_cert_ex(unsigned long *flags, const char *arg)
1106 {
1107     static const NAME_EX_TBL cert_tbl[] = {
1108         {"compatible", X509_FLAG_COMPAT, 0xffffffffl},
1109         {"ca_default", X509_FLAG_CA, 0xffffffffl},
1110         {"no_header", X509_FLAG_NO_HEADER, 0},
1111         {"no_version", X509_FLAG_NO_VERSION, 0},
1112         {"no_serial", X509_FLAG_NO_SERIAL, 0},
1113         {"no_signame", X509_FLAG_NO_SIGNAME, 0},
1114         {"no_validity", X509_FLAG_NO_VALIDITY, 0},
1115         {"no_subject", X509_FLAG_NO_SUBJECT, 0},
1116         {"no_issuer", X509_FLAG_NO_ISSUER, 0},
1117         {"no_pubkey", X509_FLAG_NO_PUBKEY, 0},
1118         {"no_extensions", X509_FLAG_NO_EXTENSIONS, 0},
1119         {"no_sigdump", X509_FLAG_NO_SIGDUMP, 0},
1120         {"no_aux", X509_FLAG_NO_AUX, 0},
1121         {"no_attributes", X509_FLAG_NO_ATTRIBUTES, 0},
1122         {"ext_default", X509V3_EXT_DEFAULT, X509V3_EXT_UNKNOWN_MASK},
1123         {"ext_error", X509V3_EXT_ERROR_UNKNOWN, X509V3_EXT_UNKNOWN_MASK},
1124         {"ext_parse", X509V3_EXT_PARSE_UNKNOWN, X509V3_EXT_UNKNOWN_MASK},
1125         {"ext_dump", X509V3_EXT_DUMP_UNKNOWN, X509V3_EXT_UNKNOWN_MASK},
1126         {NULL, 0, 0}
1127     };
1128     return set_multi_opts(flags, arg, cert_tbl);
1129 }
1130
1131 int set_name_ex(unsigned long *flags, const char *arg)
1132 {
1133     static const NAME_EX_TBL ex_tbl[] = {
1134         {"esc_2253", ASN1_STRFLGS_ESC_2253, 0},
1135         {"esc_2254", ASN1_STRFLGS_ESC_2254, 0},
1136         {"esc_ctrl", ASN1_STRFLGS_ESC_CTRL, 0},
1137         {"esc_msb", ASN1_STRFLGS_ESC_MSB, 0},
1138         {"use_quote", ASN1_STRFLGS_ESC_QUOTE, 0},
1139         {"utf8", ASN1_STRFLGS_UTF8_CONVERT, 0},
1140         {"ignore_type", ASN1_STRFLGS_IGNORE_TYPE, 0},
1141         {"show_type", ASN1_STRFLGS_SHOW_TYPE, 0},
1142         {"dump_all", ASN1_STRFLGS_DUMP_ALL, 0},
1143         {"dump_nostr", ASN1_STRFLGS_DUMP_UNKNOWN, 0},
1144         {"dump_der", ASN1_STRFLGS_DUMP_DER, 0},
1145         {"compat", XN_FLAG_COMPAT, 0xffffffffL},
1146         {"sep_comma_plus", XN_FLAG_SEP_COMMA_PLUS, XN_FLAG_SEP_MASK},
1147         {"sep_comma_plus_space", XN_FLAG_SEP_CPLUS_SPC, XN_FLAG_SEP_MASK},
1148         {"sep_semi_plus_space", XN_FLAG_SEP_SPLUS_SPC, XN_FLAG_SEP_MASK},
1149         {"sep_multiline", XN_FLAG_SEP_MULTILINE, XN_FLAG_SEP_MASK},
1150         {"dn_rev", XN_FLAG_DN_REV, 0},
1151         {"nofname", XN_FLAG_FN_NONE, XN_FLAG_FN_MASK},
1152         {"sname", XN_FLAG_FN_SN, XN_FLAG_FN_MASK},
1153         {"lname", XN_FLAG_FN_LN, XN_FLAG_FN_MASK},
1154         {"align", XN_FLAG_FN_ALIGN, 0},
1155         {"oid", XN_FLAG_FN_OID, XN_FLAG_FN_MASK},
1156         {"space_eq", XN_FLAG_SPC_EQ, 0},
1157         {"dump_unknown", XN_FLAG_DUMP_UNKNOWN_FIELDS, 0},
1158         {"RFC2253", XN_FLAG_RFC2253, 0xffffffffL},
1159         {"oneline", XN_FLAG_ONELINE, 0xffffffffL},
1160         {"multiline", XN_FLAG_MULTILINE, 0xffffffffL},
1161         {"ca_default", XN_FLAG_MULTILINE, 0xffffffffL},
1162         {NULL, 0, 0}
1163     };
1164     if (set_multi_opts(flags, arg, ex_tbl) == 0)
1165         return 0;
1166     if (*flags != XN_FLAG_COMPAT
1167         && (*flags & XN_FLAG_SEP_MASK) == 0)
1168         *flags |= XN_FLAG_SEP_CPLUS_SPC;
1169     return 1;
1170 }
1171
1172 int set_dateopt(unsigned long *dateopt, const char *arg)
1173 {
1174     if (strcasecmp(arg, "rfc_822") == 0)
1175         *dateopt = ASN1_DTFLGS_RFC822;
1176     else if (strcasecmp(arg, "iso_8601") == 0)
1177         *dateopt = ASN1_DTFLGS_ISO8601;
1178     return 0;
1179 }
1180
1181 int set_ext_copy(int *copy_type, const char *arg)
1182 {
1183     if (strcasecmp(arg, "none") == 0)
1184         *copy_type = EXT_COPY_NONE;
1185     else if (strcasecmp(arg, "copy") == 0)
1186         *copy_type = EXT_COPY_ADD;
1187     else if (strcasecmp(arg, "copyall") == 0)
1188         *copy_type = EXT_COPY_ALL;
1189     else
1190         return 0;
1191     return 1;
1192 }
1193
1194 int copy_extensions(X509 *x, X509_REQ *req, int copy_type)
1195 {
1196     STACK_OF(X509_EXTENSION) *exts;
1197     int i, ret = 0;
1198
1199     if (x == NULL || req == NULL)
1200         return 0;
1201     if (copy_type == EXT_COPY_NONE)
1202         return 1;
1203     exts = X509_REQ_get_extensions(req);
1204
1205     for (i = 0; i < sk_X509_EXTENSION_num(exts); i++) {
1206         X509_EXTENSION *ext = sk_X509_EXTENSION_value(exts, i);
1207         ASN1_OBJECT *obj = X509_EXTENSION_get_object(ext);
1208         int idx = X509_get_ext_by_OBJ(x, obj, -1);
1209
1210         /* Does extension exist in target? */
1211         if (idx != -1) {
1212             /* If normal copy don't override existing extension */
1213             if (copy_type == EXT_COPY_ADD)
1214                 continue;
1215             /* Delete all extensions of same type */
1216             do {
1217                 X509_EXTENSION_free(X509_delete_ext(x, idx));
1218                 idx = X509_get_ext_by_OBJ(x, obj, -1);
1219             } while (idx != -1);
1220         }
1221         if (!X509_add_ext(x, ext, -1))
1222             goto end;
1223     }
1224     ret = 1;
1225
1226  end:
1227     sk_X509_EXTENSION_pop_free(exts, X509_EXTENSION_free);
1228     return ret;
1229 }
1230
1231 static int set_multi_opts(unsigned long *flags, const char *arg,
1232                           const NAME_EX_TBL * in_tbl)
1233 {
1234     STACK_OF(CONF_VALUE) *vals;
1235     CONF_VALUE *val;
1236     int i, ret = 1;
1237     if (!arg)
1238         return 0;
1239     vals = X509V3_parse_list(arg);
1240     for (i = 0; i < sk_CONF_VALUE_num(vals); i++) {
1241         val = sk_CONF_VALUE_value(vals, i);
1242         if (!set_table_opts(flags, val->name, in_tbl))
1243             ret = 0;
1244     }
1245     sk_CONF_VALUE_pop_free(vals, X509V3_conf_free);
1246     return ret;
1247 }
1248
1249 static int set_table_opts(unsigned long *flags, const char *arg,
1250                           const NAME_EX_TBL * in_tbl)
1251 {
1252     char c;
1253     const NAME_EX_TBL *ptbl;
1254     c = arg[0];
1255
1256     if (c == '-') {
1257         c = 0;
1258         arg++;
1259     } else if (c == '+') {
1260         c = 1;
1261         arg++;
1262     } else {
1263         c = 1;
1264     }
1265
1266     for (ptbl = in_tbl; ptbl->name; ptbl++) {
1267         if (strcasecmp(arg, ptbl->name) == 0) {
1268             *flags &= ~ptbl->mask;
1269             if (c)
1270                 *flags |= ptbl->flag;
1271             else
1272                 *flags &= ~ptbl->flag;
1273             return 1;
1274         }
1275     }
1276     return 0;
1277 }
1278
1279 void print_name(BIO *out, const char *title, const X509_NAME *nm)
1280 {
1281     char *buf;
1282     char mline = 0;
1283     int indent = 0;
1284     unsigned long lflags = get_nameopt();
1285
1286     if (out == NULL)
1287         return;
1288     if (title != NULL)
1289         BIO_puts(out, title);
1290     if ((lflags & XN_FLAG_SEP_MASK) == XN_FLAG_SEP_MULTILINE) {
1291         mline = 1;
1292         indent = 4;
1293     }
1294     if (lflags == XN_FLAG_COMPAT) {
1295         buf = X509_NAME_oneline(nm, 0, 0);
1296         BIO_puts(out, buf);
1297         BIO_puts(out, "\n");
1298         OPENSSL_free(buf);
1299     } else {
1300         if (mline)
1301             BIO_puts(out, "\n");
1302         X509_NAME_print_ex(out, nm, indent, lflags);
1303         BIO_puts(out, "\n");
1304     }
1305 }
1306
1307 void print_bignum_var(BIO *out, const BIGNUM *in, const char *var,
1308                       int len, unsigned char *buffer)
1309 {
1310     BIO_printf(out, "    static unsigned char %s_%d[] = {", var, len);
1311     if (BN_is_zero(in)) {
1312         BIO_printf(out, "\n        0x00");
1313     } else {
1314         int i, l;
1315
1316         l = BN_bn2bin(in, buffer);
1317         for (i = 0; i < l; i++) {
1318             BIO_printf(out, (i % 10) == 0 ? "\n        " : " ");
1319             if (i < l - 1)
1320                 BIO_printf(out, "0x%02X,", buffer[i]);
1321             else
1322                 BIO_printf(out, "0x%02X", buffer[i]);
1323         }
1324     }
1325     BIO_printf(out, "\n    };\n");
1326 }
1327
1328 void print_array(BIO *out, const char* title, int len, const unsigned char* d)
1329 {
1330     int i;
1331
1332     BIO_printf(out, "unsigned char %s[%d] = {", title, len);
1333     for (i = 0; i < len; i++) {
1334         if ((i % 10) == 0)
1335             BIO_printf(out, "\n    ");
1336         if (i < len - 1)
1337             BIO_printf(out, "0x%02X, ", d[i]);
1338         else
1339             BIO_printf(out, "0x%02X", d[i]);
1340     }
1341     BIO_printf(out, "\n};\n");
1342 }
1343
1344 X509_STORE *setup_verify(const char *CAfile, int noCAfile,
1345                          const char *CApath, int noCApath,
1346                          const char *CAstore, int noCAstore)
1347 {
1348     X509_STORE *store = X509_STORE_new();
1349     X509_LOOKUP *lookup;
1350     OSSL_LIB_CTX *libctx = app_get0_libctx();
1351     const char *propq = app_get0_propq();
1352
1353     if (store == NULL)
1354         goto end;
1355
1356     if (CAfile != NULL || !noCAfile) {
1357         lookup = X509_STORE_add_lookup(store, X509_LOOKUP_file());
1358         if (lookup == NULL)
1359             goto end;
1360         if (CAfile != NULL) {
1361             if (!X509_LOOKUP_load_file_ex(lookup, CAfile, X509_FILETYPE_PEM,
1362                                           libctx, propq)) {
1363                 BIO_printf(bio_err, "Error loading file %s\n", CAfile);
1364                 goto end;
1365             }
1366         } else {
1367             X509_LOOKUP_load_file_ex(lookup, NULL, X509_FILETYPE_DEFAULT,
1368                                      libctx, propq);
1369         }
1370     }
1371
1372     if (CApath != NULL || !noCApath) {
1373         lookup = X509_STORE_add_lookup(store, X509_LOOKUP_hash_dir());
1374         if (lookup == NULL)
1375             goto end;
1376         if (CApath != NULL) {
1377             if (!X509_LOOKUP_add_dir(lookup, CApath, X509_FILETYPE_PEM)) {
1378                 BIO_printf(bio_err, "Error loading directory %s\n", CApath);
1379                 goto end;
1380             }
1381         } else {
1382             X509_LOOKUP_add_dir(lookup, NULL, X509_FILETYPE_DEFAULT);
1383         }
1384     }
1385
1386     if (CAstore != NULL || !noCAstore) {
1387         lookup = X509_STORE_add_lookup(store, X509_LOOKUP_store());
1388         if (lookup == NULL)
1389             goto end;
1390         if (!X509_LOOKUP_add_store_ex(lookup, CAstore, libctx, propq)) {
1391             if (CAstore != NULL)
1392                 BIO_printf(bio_err, "Error loading store URI %s\n", CAstore);
1393             goto end;
1394         }
1395     }
1396
1397     ERR_clear_error();
1398     return store;
1399  end:
1400     ERR_print_errors(bio_err);
1401     X509_STORE_free(store);
1402     return NULL;
1403 }
1404
1405 static unsigned long index_serial_hash(const OPENSSL_CSTRING *a)
1406 {
1407     const char *n;
1408
1409     n = a[DB_serial];
1410     while (*n == '0')
1411         n++;
1412     return OPENSSL_LH_strhash(n);
1413 }
1414
1415 static int index_serial_cmp(const OPENSSL_CSTRING *a,
1416                             const OPENSSL_CSTRING *b)
1417 {
1418     const char *aa, *bb;
1419
1420     for (aa = a[DB_serial]; *aa == '0'; aa++) ;
1421     for (bb = b[DB_serial]; *bb == '0'; bb++) ;
1422     return strcmp(aa, bb);
1423 }
1424
1425 static int index_name_qual(char **a)
1426 {
1427     return (a[0][0] == 'V');
1428 }
1429
1430 static unsigned long index_name_hash(const OPENSSL_CSTRING *a)
1431 {
1432     return OPENSSL_LH_strhash(a[DB_name]);
1433 }
1434
1435 int index_name_cmp(const OPENSSL_CSTRING *a, const OPENSSL_CSTRING *b)
1436 {
1437     return strcmp(a[DB_name], b[DB_name]);
1438 }
1439
1440 static IMPLEMENT_LHASH_HASH_FN(index_serial, OPENSSL_CSTRING)
1441 static IMPLEMENT_LHASH_COMP_FN(index_serial, OPENSSL_CSTRING)
1442 static IMPLEMENT_LHASH_HASH_FN(index_name, OPENSSL_CSTRING)
1443 static IMPLEMENT_LHASH_COMP_FN(index_name, OPENSSL_CSTRING)
1444 #undef BSIZE
1445 #define BSIZE 256
1446 BIGNUM *load_serial(const char *serialfile, int create, ASN1_INTEGER **retai)
1447 {
1448     BIO *in = NULL;
1449     BIGNUM *ret = NULL;
1450     char buf[1024];
1451     ASN1_INTEGER *ai = NULL;
1452
1453     ai = ASN1_INTEGER_new();
1454     if (ai == NULL)
1455         goto err;
1456
1457     in = BIO_new_file(serialfile, "r");
1458     if (in == NULL) {
1459         if (!create) {
1460             perror(serialfile);
1461             goto err;
1462         }
1463         ERR_clear_error();
1464         ret = BN_new();
1465         if (ret == NULL || !rand_serial(ret, ai))
1466             BIO_printf(bio_err, "Out of memory\n");
1467     } else {
1468         if (!a2i_ASN1_INTEGER(in, ai, buf, 1024)) {
1469             BIO_printf(bio_err, "Unable to load number from %s\n",
1470                        serialfile);
1471             goto err;
1472         }
1473         ret = ASN1_INTEGER_to_BN(ai, NULL);
1474         if (ret == NULL) {
1475             BIO_printf(bio_err, "Error converting number from bin to BIGNUM\n");
1476             goto err;
1477         }
1478     }
1479
1480     if (ret && retai) {
1481         *retai = ai;
1482         ai = NULL;
1483     }
1484  err:
1485     ERR_print_errors(bio_err);
1486     BIO_free(in);
1487     ASN1_INTEGER_free(ai);
1488     return ret;
1489 }
1490
1491 int save_serial(const char *serialfile, const char *suffix, const BIGNUM *serial,
1492                 ASN1_INTEGER **retai)
1493 {
1494     char buf[1][BSIZE];
1495     BIO *out = NULL;
1496     int ret = 0;
1497     ASN1_INTEGER *ai = NULL;
1498     int j;
1499
1500     if (suffix == NULL)
1501         j = strlen(serialfile);
1502     else
1503         j = strlen(serialfile) + strlen(suffix) + 1;
1504     if (j >= BSIZE) {
1505         BIO_printf(bio_err, "File name too long\n");
1506         goto err;
1507     }
1508
1509     if (suffix == NULL)
1510         OPENSSL_strlcpy(buf[0], serialfile, BSIZE);
1511     else {
1512 #ifndef OPENSSL_SYS_VMS
1513         j = BIO_snprintf(buf[0], sizeof(buf[0]), "%s.%s", serialfile, suffix);
1514 #else
1515         j = BIO_snprintf(buf[0], sizeof(buf[0]), "%s-%s", serialfile, suffix);
1516 #endif
1517     }
1518     out = BIO_new_file(buf[0], "w");
1519     if (out == NULL) {
1520         goto err;
1521     }
1522
1523     if ((ai = BN_to_ASN1_INTEGER(serial, NULL)) == NULL) {
1524         BIO_printf(bio_err, "error converting serial to ASN.1 format\n");
1525         goto err;
1526     }
1527     i2a_ASN1_INTEGER(out, ai);
1528     BIO_puts(out, "\n");
1529     ret = 1;
1530     if (retai) {
1531         *retai = ai;
1532         ai = NULL;
1533     }
1534  err:
1535     if (!ret)
1536         ERR_print_errors(bio_err);
1537     BIO_free_all(out);
1538     ASN1_INTEGER_free(ai);
1539     return ret;
1540 }
1541
1542 int rotate_serial(const char *serialfile, const char *new_suffix,
1543                   const char *old_suffix)
1544 {
1545     char buf[2][BSIZE];
1546     int i, j;
1547
1548     i = strlen(serialfile) + strlen(old_suffix);
1549     j = strlen(serialfile) + strlen(new_suffix);
1550     if (i > j)
1551         j = i;
1552     if (j + 1 >= BSIZE) {
1553         BIO_printf(bio_err, "File name too long\n");
1554         goto err;
1555     }
1556 #ifndef OPENSSL_SYS_VMS
1557     j = BIO_snprintf(buf[0], sizeof(buf[0]), "%s.%s", serialfile, new_suffix);
1558     j = BIO_snprintf(buf[1], sizeof(buf[1]), "%s.%s", serialfile, old_suffix);
1559 #else
1560     j = BIO_snprintf(buf[0], sizeof(buf[0]), "%s-%s", serialfile, new_suffix);
1561     j = BIO_snprintf(buf[1], sizeof(buf[1]), "%s-%s", serialfile, old_suffix);
1562 #endif
1563     if (rename(serialfile, buf[1]) < 0 && errno != ENOENT
1564 #ifdef ENOTDIR
1565         && errno != ENOTDIR
1566 #endif
1567         ) {
1568         BIO_printf(bio_err,
1569                    "Unable to rename %s to %s\n", serialfile, buf[1]);
1570         perror("reason");
1571         goto err;
1572     }
1573     if (rename(buf[0], serialfile) < 0) {
1574         BIO_printf(bio_err,
1575                    "Unable to rename %s to %s\n", buf[0], serialfile);
1576         perror("reason");
1577         rename(buf[1], serialfile);
1578         goto err;
1579     }
1580     return 1;
1581  err:
1582     ERR_print_errors(bio_err);
1583     return 0;
1584 }
1585
1586 int rand_serial(BIGNUM *b, ASN1_INTEGER *ai)
1587 {
1588     BIGNUM *btmp;
1589     int ret = 0;
1590
1591     btmp = b == NULL ? BN_new() : b;
1592     if (btmp == NULL)
1593         return 0;
1594
1595     if (!BN_rand(btmp, SERIAL_RAND_BITS, BN_RAND_TOP_ANY, BN_RAND_BOTTOM_ANY))
1596         goto error;
1597     if (ai && !BN_to_ASN1_INTEGER(btmp, ai))
1598         goto error;
1599
1600     ret = 1;
1601
1602  error:
1603
1604     if (btmp != b)
1605         BN_free(btmp);
1606
1607     return ret;
1608 }
1609
1610 CA_DB *load_index(const char *dbfile, DB_ATTR *db_attr)
1611 {
1612     CA_DB *retdb = NULL;
1613     TXT_DB *tmpdb = NULL;
1614     BIO *in;
1615     CONF *dbattr_conf = NULL;
1616     char buf[BSIZE];
1617 #ifndef OPENSSL_NO_POSIX_IO
1618     FILE *dbfp;
1619     struct stat dbst;
1620 #endif
1621
1622     in = BIO_new_file(dbfile, "r");
1623     if (in == NULL)
1624         goto err;
1625
1626 #ifndef OPENSSL_NO_POSIX_IO
1627     BIO_get_fp(in, &dbfp);
1628     if (fstat(fileno(dbfp), &dbst) == -1) {
1629         ERR_raise_data(ERR_LIB_SYS, errno,
1630                        "calling fstat(%s)", dbfile);
1631         goto err;
1632     }
1633 #endif
1634
1635     if ((tmpdb = TXT_DB_read(in, DB_NUMBER)) == NULL)
1636         goto err;
1637
1638 #ifndef OPENSSL_SYS_VMS
1639     BIO_snprintf(buf, sizeof(buf), "%s.attr", dbfile);
1640 #else
1641     BIO_snprintf(buf, sizeof(buf), "%s-attr", dbfile);
1642 #endif
1643     dbattr_conf = app_load_config_quiet(buf);
1644
1645     retdb = app_malloc(sizeof(*retdb), "new DB");
1646     retdb->db = tmpdb;
1647     tmpdb = NULL;
1648     if (db_attr)
1649         retdb->attributes = *db_attr;
1650     else {
1651         retdb->attributes.unique_subject = 1;
1652     }
1653
1654     if (dbattr_conf) {
1655         char *p = NCONF_get_string(dbattr_conf, NULL, "unique_subject");
1656         if (p) {
1657             retdb->attributes.unique_subject = parse_yesno(p, 1);
1658         }
1659     }
1660
1661     retdb->dbfname = OPENSSL_strdup(dbfile);
1662 #ifndef OPENSSL_NO_POSIX_IO
1663     retdb->dbst = dbst;
1664 #endif
1665
1666  err:
1667     ERR_print_errors(bio_err);
1668     NCONF_free(dbattr_conf);
1669     TXT_DB_free(tmpdb);
1670     BIO_free_all(in);
1671     return retdb;
1672 }
1673
1674 /*
1675  * Returns > 0 on success, <= 0 on error
1676  */
1677 int index_index(CA_DB *db)
1678 {
1679     if (!TXT_DB_create_index(db->db, DB_serial, NULL,
1680                              LHASH_HASH_FN(index_serial),
1681                              LHASH_COMP_FN(index_serial))) {
1682         BIO_printf(bio_err,
1683                    "Error creating serial number index:(%ld,%ld,%ld)\n",
1684                    db->db->error, db->db->arg1, db->db->arg2);
1685         goto err;
1686     }
1687
1688     if (db->attributes.unique_subject
1689         && !TXT_DB_create_index(db->db, DB_name, index_name_qual,
1690                                 LHASH_HASH_FN(index_name),
1691                                 LHASH_COMP_FN(index_name))) {
1692         BIO_printf(bio_err, "Error creating name index:(%ld,%ld,%ld)\n",
1693                    db->db->error, db->db->arg1, db->db->arg2);
1694         goto err;
1695     }
1696     return 1;
1697  err:
1698     ERR_print_errors(bio_err);
1699     return 0;
1700 }
1701
1702 int save_index(const char *dbfile, const char *suffix, CA_DB *db)
1703 {
1704     char buf[3][BSIZE];
1705     BIO *out;
1706     int j;
1707
1708     j = strlen(dbfile) + strlen(suffix);
1709     if (j + 6 >= BSIZE) {
1710         BIO_printf(bio_err, "File name too long\n");
1711         goto err;
1712     }
1713 #ifndef OPENSSL_SYS_VMS
1714     j = BIO_snprintf(buf[2], sizeof(buf[2]), "%s.attr", dbfile);
1715     j = BIO_snprintf(buf[1], sizeof(buf[1]), "%s.attr.%s", dbfile, suffix);
1716     j = BIO_snprintf(buf[0], sizeof(buf[0]), "%s.%s", dbfile, suffix);
1717 #else
1718     j = BIO_snprintf(buf[2], sizeof(buf[2]), "%s-attr", dbfile);
1719     j = BIO_snprintf(buf[1], sizeof(buf[1]), "%s-attr-%s", dbfile, suffix);
1720     j = BIO_snprintf(buf[0], sizeof(buf[0]), "%s-%s", dbfile, suffix);
1721 #endif
1722     out = BIO_new_file(buf[0], "w");
1723     if (out == NULL) {
1724         perror(dbfile);
1725         BIO_printf(bio_err, "Unable to open '%s'\n", dbfile);
1726         goto err;
1727     }
1728     j = TXT_DB_write(out, db->db);
1729     BIO_free(out);
1730     if (j <= 0)
1731         goto err;
1732
1733     out = BIO_new_file(buf[1], "w");
1734     if (out == NULL) {
1735         perror(buf[2]);
1736         BIO_printf(bio_err, "Unable to open '%s'\n", buf[2]);
1737         goto err;
1738     }
1739     BIO_printf(out, "unique_subject = %s\n",
1740                db->attributes.unique_subject ? "yes" : "no");
1741     BIO_free(out);
1742
1743     return 1;
1744  err:
1745     ERR_print_errors(bio_err);
1746     return 0;
1747 }
1748
1749 int rotate_index(const char *dbfile, const char *new_suffix,
1750                  const char *old_suffix)
1751 {
1752     char buf[5][BSIZE];
1753     int i, j;
1754
1755     i = strlen(dbfile) + strlen(old_suffix);
1756     j = strlen(dbfile) + strlen(new_suffix);
1757     if (i > j)
1758         j = i;
1759     if (j + 6 >= BSIZE) {
1760         BIO_printf(bio_err, "File name too long\n");
1761         goto err;
1762     }
1763 #ifndef OPENSSL_SYS_VMS
1764     j = BIO_snprintf(buf[4], sizeof(buf[4]), "%s.attr", dbfile);
1765     j = BIO_snprintf(buf[3], sizeof(buf[3]), "%s.attr.%s", dbfile, old_suffix);
1766     j = BIO_snprintf(buf[2], sizeof(buf[2]), "%s.attr.%s", dbfile, new_suffix);
1767     j = BIO_snprintf(buf[1], sizeof(buf[1]), "%s.%s", dbfile, old_suffix);
1768     j = BIO_snprintf(buf[0], sizeof(buf[0]), "%s.%s", dbfile, new_suffix);
1769 #else
1770     j = BIO_snprintf(buf[4], sizeof(buf[4]), "%s-attr", dbfile);
1771     j = BIO_snprintf(buf[3], sizeof(buf[3]), "%s-attr-%s", dbfile, old_suffix);
1772     j = BIO_snprintf(buf[2], sizeof(buf[2]), "%s-attr-%s", dbfile, new_suffix);
1773     j = BIO_snprintf(buf[1], sizeof(buf[1]), "%s-%s", dbfile, old_suffix);
1774     j = BIO_snprintf(buf[0], sizeof(buf[0]), "%s-%s", dbfile, new_suffix);
1775 #endif
1776     if (rename(dbfile, buf[1]) < 0 && errno != ENOENT
1777 #ifdef ENOTDIR
1778         && errno != ENOTDIR
1779 #endif
1780         ) {
1781         BIO_printf(bio_err, "Unable to rename %s to %s\n", dbfile, buf[1]);
1782         perror("reason");
1783         goto err;
1784     }
1785     if (rename(buf[0], dbfile) < 0) {
1786         BIO_printf(bio_err, "Unable to rename %s to %s\n", buf[0], dbfile);
1787         perror("reason");
1788         rename(buf[1], dbfile);
1789         goto err;
1790     }
1791     if (rename(buf[4], buf[3]) < 0 && errno != ENOENT
1792 #ifdef ENOTDIR
1793         && errno != ENOTDIR
1794 #endif
1795         ) {
1796         BIO_printf(bio_err, "Unable to rename %s to %s\n", buf[4], buf[3]);
1797         perror("reason");
1798         rename(dbfile, buf[0]);
1799         rename(buf[1], dbfile);
1800         goto err;
1801     }
1802     if (rename(buf[2], buf[4]) < 0) {
1803         BIO_printf(bio_err, "Unable to rename %s to %s\n", buf[2], buf[4]);
1804         perror("reason");
1805         rename(buf[3], buf[4]);
1806         rename(dbfile, buf[0]);
1807         rename(buf[1], dbfile);
1808         goto err;
1809     }
1810     return 1;
1811  err:
1812     ERR_print_errors(bio_err);
1813     return 0;
1814 }
1815
1816 void free_index(CA_DB *db)
1817 {
1818     if (db) {
1819         TXT_DB_free(db->db);
1820         OPENSSL_free(db->dbfname);
1821         OPENSSL_free(db);
1822     }
1823 }
1824
1825 int parse_yesno(const char *str, int def)
1826 {
1827     if (str) {
1828         switch (*str) {
1829         case 'f':              /* false */
1830         case 'F':              /* FALSE */
1831         case 'n':              /* no */
1832         case 'N':              /* NO */
1833         case '0':              /* 0 */
1834             return 0;
1835         case 't':              /* true */
1836         case 'T':              /* TRUE */
1837         case 'y':              /* yes */
1838         case 'Y':              /* YES */
1839         case '1':              /* 1 */
1840             return 1;
1841         }
1842     }
1843     return def;
1844 }
1845
1846 /*
1847  * name is expected to be in the format /type0=value0/type1=value1/type2=...
1848  * where + can be used instead of / to form multi-valued RDNs if canmulti
1849  * and characters may be escaped by \
1850  */
1851 X509_NAME *parse_name(const char *cp, int chtype, int canmulti,
1852                       const char *desc)
1853 {
1854     int nextismulti = 0;
1855     char *work;
1856     X509_NAME *n;
1857
1858     if (*cp++ != '/') {
1859         BIO_printf(bio_err,
1860                    "%s: %s name is expected to be in the format "
1861                    "/type0=value0/type1=value1/type2=... where characters may "
1862                    "be escaped by \\. This name is not in that format: '%s'\n",
1863                    opt_getprog(), desc, --cp);
1864         return NULL;
1865     }
1866
1867     n = X509_NAME_new();
1868     if (n == NULL) {
1869         BIO_printf(bio_err, "%s: Out of memory\n", opt_getprog());
1870         return NULL;
1871     }
1872     work = OPENSSL_strdup(cp);
1873     if (work == NULL) {
1874         BIO_printf(bio_err, "%s: Error copying %s name input\n",
1875                    opt_getprog(), desc);
1876         goto err;
1877     }
1878
1879     while (*cp != '\0') {
1880         char *bp = work;
1881         char *typestr = bp;
1882         unsigned char *valstr;
1883         int nid;
1884         int ismulti = nextismulti;
1885         nextismulti = 0;
1886
1887         /* Collect the type */
1888         while (*cp != '\0' && *cp != '=')
1889             *bp++ = *cp++;
1890         *bp++ = '\0';
1891         if (*cp == '\0') {
1892             BIO_printf(bio_err,
1893                        "%s: Missing '=' after RDN type string '%s' in %s name string\n",
1894                        opt_getprog(), typestr, desc);
1895             goto err;
1896         }
1897         ++cp;
1898
1899         /* Collect the value. */
1900         valstr = (unsigned char *)bp;
1901         for (; *cp != '\0' && *cp != '/'; *bp++ = *cp++) {
1902             /* unescaped '+' symbol string signals further member of multiRDN */
1903             if (canmulti && *cp == '+') {
1904                 nextismulti = 1;
1905                 break;
1906             }
1907             if (*cp == '\\' && *++cp == '\0') {
1908                 BIO_printf(bio_err,
1909                            "%s: Escape character at end of %s name string\n",
1910                            opt_getprog(), desc);
1911                 goto err;
1912             }
1913         }
1914         *bp++ = '\0';
1915
1916         /* If not at EOS (must be + or /), move forward. */
1917         if (*cp != '\0')
1918             ++cp;
1919
1920         /* Parse */
1921         nid = OBJ_txt2nid(typestr);
1922         if (nid == NID_undef) {
1923             BIO_printf(bio_err,
1924                        "%s: Skipping unknown %s name attribute \"%s\"\n",
1925                        opt_getprog(), desc, typestr);
1926             if (ismulti)
1927                 BIO_printf(bio_err,
1928                            "Hint: a '+' in a value string needs be escaped using '\\' else a new member of a multi-valued RDN is expected\n");
1929             continue;
1930         }
1931         if (*valstr == '\0') {
1932             BIO_printf(bio_err,
1933                        "%s: No value provided for %s name attribute \"%s\", skipped\n",
1934                        opt_getprog(), desc, typestr);
1935             continue;
1936         }
1937         if (!X509_NAME_add_entry_by_NID(n, nid, chtype,
1938                                         valstr, strlen((char *)valstr),
1939                                         -1, ismulti ? -1 : 0)) {
1940             ERR_print_errors(bio_err);
1941             BIO_printf(bio_err,
1942                        "%s: Error adding %s name attribute \"/%s=%s\"\n",
1943                        opt_getprog(), desc, typestr, valstr);
1944             goto err;
1945         }
1946     }
1947
1948     OPENSSL_free(work);
1949     return n;
1950
1951  err:
1952     X509_NAME_free(n);
1953     OPENSSL_free(work);
1954     return NULL;
1955 }
1956
1957 /*
1958  * Read whole contents of a BIO into an allocated memory buffer and return
1959  * it.
1960  */
1961
1962 int bio_to_mem(unsigned char **out, int maxlen, BIO *in)
1963 {
1964     BIO *mem;
1965     int len, ret;
1966     unsigned char tbuf[1024];
1967
1968     mem = BIO_new(BIO_s_mem());
1969     if (mem == NULL)
1970         return -1;
1971     for (;;) {
1972         if ((maxlen != -1) && maxlen < 1024)
1973             len = maxlen;
1974         else
1975             len = 1024;
1976         len = BIO_read(in, tbuf, len);
1977         if (len < 0) {
1978             BIO_free(mem);
1979             return -1;
1980         }
1981         if (len == 0)
1982             break;
1983         if (BIO_write(mem, tbuf, len) != len) {
1984             BIO_free(mem);
1985             return -1;
1986         }
1987         maxlen -= len;
1988
1989         if (maxlen == 0)
1990             break;
1991     }
1992     ret = BIO_get_mem_data(mem, (char **)out);
1993     BIO_set_flags(mem, BIO_FLAGS_MEM_RDONLY);
1994     BIO_free(mem);
1995     return ret;
1996 }
1997
1998 int pkey_ctrl_string(EVP_PKEY_CTX *ctx, const char *value)
1999 {
2000     int rv = 0;
2001     char *stmp, *vtmp = NULL;
2002
2003     stmp = OPENSSL_strdup(value);
2004     if (stmp == NULL)
2005         return -1;
2006     vtmp = strchr(stmp, ':');
2007     if (vtmp == NULL)
2008         goto err;
2009
2010     *vtmp = 0;
2011     vtmp++;
2012     rv = EVP_PKEY_CTX_ctrl_str(ctx, stmp, vtmp);
2013
2014  err:
2015     OPENSSL_free(stmp);
2016     return rv;
2017 }
2018
2019 static void nodes_print(const char *name, STACK_OF(X509_POLICY_NODE) *nodes)
2020 {
2021     X509_POLICY_NODE *node;
2022     int i;
2023
2024     BIO_printf(bio_err, "%s Policies:", name);
2025     if (nodes) {
2026         BIO_puts(bio_err, "\n");
2027         for (i = 0; i < sk_X509_POLICY_NODE_num(nodes); i++) {
2028             node = sk_X509_POLICY_NODE_value(nodes, i);
2029             X509_POLICY_NODE_print(bio_err, node, 2);
2030         }
2031     } else {
2032         BIO_puts(bio_err, " <empty>\n");
2033     }
2034 }
2035
2036 void policies_print(X509_STORE_CTX *ctx)
2037 {
2038     X509_POLICY_TREE *tree;
2039     int explicit_policy;
2040     tree = X509_STORE_CTX_get0_policy_tree(ctx);
2041     explicit_policy = X509_STORE_CTX_get_explicit_policy(ctx);
2042
2043     BIO_printf(bio_err, "Require explicit Policy: %s\n",
2044                explicit_policy ? "True" : "False");
2045
2046     nodes_print("Authority", X509_policy_tree_get0_policies(tree));
2047     nodes_print("User", X509_policy_tree_get0_user_policies(tree));
2048 }
2049
2050 /*-
2051  * next_protos_parse parses a comma separated list of strings into a string
2052  * in a format suitable for passing to SSL_CTX_set_next_protos_advertised.
2053  *   outlen: (output) set to the length of the resulting buffer on success.
2054  *   err: (maybe NULL) on failure, an error message line is written to this BIO.
2055  *   in: a NUL terminated string like "abc,def,ghi"
2056  *
2057  *   returns: a malloc'd buffer or NULL on failure.
2058  */
2059 unsigned char *next_protos_parse(size_t *outlen, const char *in)
2060 {
2061     size_t len;
2062     unsigned char *out;
2063     size_t i, start = 0;
2064     size_t skipped = 0;
2065
2066     len = strlen(in);
2067     if (len == 0 || len >= 65535)
2068         return NULL;
2069
2070     out = app_malloc(len + 1, "NPN buffer");
2071     for (i = 0; i <= len; ++i) {
2072         if (i == len || in[i] == ',') {
2073             /*
2074              * Zero-length ALPN elements are invalid on the wire, we could be
2075              * strict and reject the entire string, but just ignoring extra
2076              * commas seems harmless and more friendly.
2077              *
2078              * Every comma we skip in this way puts the input buffer another
2079              * byte ahead of the output buffer, so all stores into the output
2080              * buffer need to be decremented by the number commas skipped.
2081              */
2082             if (i == start) {
2083                 ++start;
2084                 ++skipped;
2085                 continue;
2086             }
2087             if (i - start > 255) {
2088                 OPENSSL_free(out);
2089                 return NULL;
2090             }
2091             out[start-skipped] = (unsigned char)(i - start);
2092             start = i + 1;
2093         } else {
2094             out[i + 1 - skipped] = in[i];
2095         }
2096     }
2097
2098     if (len <= skipped) {
2099         OPENSSL_free(out);
2100         return NULL;
2101     }
2102
2103     *outlen = len + 1 - skipped;
2104     return out;
2105 }
2106
2107 void print_cert_checks(BIO *bio, X509 *x,
2108                        const char *checkhost,
2109                        const char *checkemail, const char *checkip)
2110 {
2111     if (x == NULL)
2112         return;
2113     if (checkhost) {
2114         BIO_printf(bio, "Hostname %s does%s match certificate\n",
2115                    checkhost,
2116                    X509_check_host(x, checkhost, 0, 0, NULL) == 1
2117                        ? "" : " NOT");
2118     }
2119
2120     if (checkemail) {
2121         BIO_printf(bio, "Email %s does%s match certificate\n",
2122                    checkemail, X509_check_email(x, checkemail, 0, 0)
2123                    ? "" : " NOT");
2124     }
2125
2126     if (checkip) {
2127         BIO_printf(bio, "IP %s does%s match certificate\n",
2128                    checkip, X509_check_ip_asc(x, checkip, 0) ? "" : " NOT");
2129     }
2130 }
2131
2132 static int do_pkey_ctx_init(EVP_PKEY_CTX *pkctx, STACK_OF(OPENSSL_STRING) *opts)
2133 {
2134     int i;
2135
2136     if (opts == NULL)
2137         return 1;
2138
2139     for (i = 0; i < sk_OPENSSL_STRING_num(opts); i++) {
2140         char *opt = sk_OPENSSL_STRING_value(opts, i);
2141         if (pkey_ctrl_string(pkctx, opt) <= 0) {
2142             BIO_printf(bio_err, "parameter error \"%s\"\n", opt);
2143             ERR_print_errors(bio_err);
2144             return 0;
2145         }
2146     }
2147
2148     return 1;
2149 }
2150
2151 static int do_x509_init(X509 *x, STACK_OF(OPENSSL_STRING) *opts)
2152 {
2153     int i;
2154
2155     if (opts == NULL)
2156         return 1;
2157
2158     for (i = 0; i < sk_OPENSSL_STRING_num(opts); i++) {
2159         char *opt = sk_OPENSSL_STRING_value(opts, i);
2160         if (x509_ctrl_string(x, opt) <= 0) {
2161             BIO_printf(bio_err, "parameter error \"%s\"\n", opt);
2162             ERR_print_errors(bio_err);
2163             return 0;
2164         }
2165     }
2166
2167     return 1;
2168 }
2169
2170 static int do_x509_req_init(X509_REQ *x, STACK_OF(OPENSSL_STRING) *opts)
2171 {
2172     int i;
2173
2174     if (opts == NULL)
2175         return 1;
2176
2177     for (i = 0; i < sk_OPENSSL_STRING_num(opts); i++) {
2178         char *opt = sk_OPENSSL_STRING_value(opts, i);
2179         if (x509_req_ctrl_string(x, opt) <= 0) {
2180             BIO_printf(bio_err, "parameter error \"%s\"\n", opt);
2181             ERR_print_errors(bio_err);
2182             return 0;
2183         }
2184     }
2185
2186     return 1;
2187 }
2188
2189 static int do_sign_init(EVP_MD_CTX *ctx, EVP_PKEY *pkey,
2190                         const char *md, STACK_OF(OPENSSL_STRING) *sigopts)
2191 {
2192     EVP_PKEY_CTX *pkctx = NULL;
2193     char def_md[80];
2194
2195     if (ctx == NULL)
2196         return 0;
2197     /*
2198      * EVP_PKEY_get_default_digest_name() returns 2 if the digest is mandatory
2199      * for this algorithm.
2200      */
2201     if (EVP_PKEY_get_default_digest_name(pkey, def_md, sizeof(def_md)) == 2
2202             && strcmp(def_md, "UNDEF") == 0) {
2203         /* The signing algorithm requires there to be no digest */
2204         md = NULL;
2205     }
2206
2207     return EVP_DigestSignInit_ex(ctx, &pkctx, md, app_get0_libctx(),
2208                                  app_get0_propq(), pkey, NULL)
2209         && do_pkey_ctx_init(pkctx, sigopts);
2210 }
2211
2212 static int adapt_keyid_ext(X509 *cert, X509V3_CTX *ext_ctx,
2213                            const char *name, const char *value, int add_default)
2214 {
2215     const STACK_OF(X509_EXTENSION) *exts = X509_get0_extensions(cert);
2216     X509_EXTENSION *new_ext = X509V3_EXT_nconf(NULL, ext_ctx, name, value);
2217     int idx, rv = 0;
2218
2219     if (new_ext == NULL)
2220         return rv;
2221
2222     idx = X509v3_get_ext_by_OBJ(exts, X509_EXTENSION_get_object(new_ext), -1);
2223     if (idx >= 0) {
2224         X509_EXTENSION *found_ext = X509v3_get_ext(exts, idx);
2225         ASN1_OCTET_STRING *encoded = X509_EXTENSION_get_data(found_ext);
2226         int disabled = ASN1_STRING_length(encoded) <= 2; /* indicating "none" */
2227
2228         if (disabled) {
2229             X509_delete_ext(cert, idx);
2230             X509_EXTENSION_free(found_ext);
2231         } /* else keep existing key identifier, which might be outdated */
2232         rv = 1;
2233     } else  {
2234         rv = !add_default || X509_add_ext(cert, new_ext, -1);
2235     }
2236     X509_EXTENSION_free(new_ext);
2237     return rv;
2238 }
2239
2240 int cert_matches_key(const X509 *cert, const EVP_PKEY *pkey)
2241 {
2242     int match;
2243
2244     ERR_set_mark();
2245     match = X509_check_private_key(cert, pkey);
2246     ERR_pop_to_mark();
2247     return match;
2248 }
2249
2250 /* Ensure RFC 5280 compliance, adapt keyIDs as needed, and sign the cert info */
2251 int do_X509_sign(X509 *cert, EVP_PKEY *pkey, const char *md,
2252                  STACK_OF(OPENSSL_STRING) *sigopts, X509V3_CTX *ext_ctx)
2253 {
2254     const STACK_OF(X509_EXTENSION) *exts = X509_get0_extensions(cert);
2255     EVP_MD_CTX *mctx = EVP_MD_CTX_new();
2256     int self_sign;
2257     int rv = 0;
2258
2259     if (sk_X509_EXTENSION_num(exts /* may be NULL */) > 0) {
2260         /* Prevent X509_V_ERR_EXTENSIONS_REQUIRE_VERSION_3 */
2261         if (!X509_set_version(cert, X509_VERSION_3))
2262             goto end;
2263
2264         /*
2265          * Add default SKID before AKID such that AKID can make use of it
2266          * in case the certificate is self-signed
2267          */
2268         /* Prevent X509_V_ERR_MISSING_SUBJECT_KEY_IDENTIFIER */
2269         if (!adapt_keyid_ext(cert, ext_ctx, "subjectKeyIdentifier", "hash", 1))
2270             goto end;
2271         /* Prevent X509_V_ERR_MISSING_AUTHORITY_KEY_IDENTIFIER */
2272         self_sign = cert_matches_key(cert, pkey);
2273         if (!adapt_keyid_ext(cert, ext_ctx, "authorityKeyIdentifier",
2274                              "keyid, issuer", !self_sign))
2275             goto end;
2276     }
2277
2278     if (mctx != NULL && do_sign_init(mctx, pkey, md, sigopts) > 0)
2279         rv = (X509_sign_ctx(cert, mctx) > 0);
2280  end:
2281     EVP_MD_CTX_free(mctx);
2282     return rv;
2283 }
2284
2285 /* Sign the certificate request info */
2286 int do_X509_REQ_sign(X509_REQ *x, EVP_PKEY *pkey, const char *md,
2287                      STACK_OF(OPENSSL_STRING) *sigopts)
2288 {
2289     int rv = 0;
2290     EVP_MD_CTX *mctx = EVP_MD_CTX_new();
2291
2292     if (do_sign_init(mctx, pkey, md, sigopts) > 0)
2293         rv = (X509_REQ_sign_ctx(x, mctx) > 0);
2294     EVP_MD_CTX_free(mctx);
2295     return rv;
2296 }
2297
2298 /* Sign the CRL info */
2299 int do_X509_CRL_sign(X509_CRL *x, EVP_PKEY *pkey, const char *md,
2300                      STACK_OF(OPENSSL_STRING) *sigopts)
2301 {
2302     int rv = 0;
2303     EVP_MD_CTX *mctx = EVP_MD_CTX_new();
2304
2305     if (do_sign_init(mctx, pkey, md, sigopts) > 0)
2306         rv = (X509_CRL_sign_ctx(x, mctx) > 0);
2307     EVP_MD_CTX_free(mctx);
2308     return rv;
2309 }
2310
2311 int do_X509_verify(X509 *x, EVP_PKEY *pkey, STACK_OF(OPENSSL_STRING) *vfyopts)
2312 {
2313     int rv = 0;
2314
2315     if (do_x509_init(x, vfyopts) > 0)
2316         rv = (X509_verify(x, pkey) > 0);
2317     return rv;
2318 }
2319
2320 int do_X509_REQ_verify(X509_REQ *x, EVP_PKEY *pkey,
2321                        STACK_OF(OPENSSL_STRING) *vfyopts)
2322 {
2323     int rv = 0;
2324
2325     if (do_x509_req_init(x, vfyopts) > 0)
2326         rv = (X509_REQ_verify_ex(x, pkey,
2327                                  app_get0_libctx(), app_get0_propq()) > 0);
2328     return rv;
2329 }
2330
2331 /* Get first http URL from a DIST_POINT structure */
2332
2333 static const char *get_dp_url(DIST_POINT *dp)
2334 {
2335     GENERAL_NAMES *gens;
2336     GENERAL_NAME *gen;
2337     int i, gtype;
2338     ASN1_STRING *uri;
2339     if (!dp->distpoint || dp->distpoint->type != 0)
2340         return NULL;
2341     gens = dp->distpoint->name.fullname;
2342     for (i = 0; i < sk_GENERAL_NAME_num(gens); i++) {
2343         gen = sk_GENERAL_NAME_value(gens, i);
2344         uri = GENERAL_NAME_get0_value(gen, &gtype);
2345         if (gtype == GEN_URI && ASN1_STRING_length(uri) > 6) {
2346             const char *uptr = (const char *)ASN1_STRING_get0_data(uri);
2347
2348             if (IS_HTTP(uptr)) /* can/should not use HTTPS here */
2349                 return uptr;
2350         }
2351     }
2352     return NULL;
2353 }
2354
2355 /*
2356  * Look through a CRLDP structure and attempt to find an http URL to
2357  * downloads a CRL from.
2358  */
2359
2360 static X509_CRL *load_crl_crldp(STACK_OF(DIST_POINT) *crldp)
2361 {
2362     int i;
2363     const char *urlptr = NULL;
2364     for (i = 0; i < sk_DIST_POINT_num(crldp); i++) {
2365         DIST_POINT *dp = sk_DIST_POINT_value(crldp, i);
2366         urlptr = get_dp_url(dp);
2367         if (urlptr != NULL)
2368             return load_crl(urlptr, FORMAT_UNDEF, 0, "CRL via CDP");
2369     }
2370     return NULL;
2371 }
2372
2373 /*
2374  * Example of downloading CRLs from CRLDP:
2375  * not usable for real world as it always downloads and doesn't cache anything.
2376  */
2377
2378 static STACK_OF(X509_CRL) *crls_http_cb(const X509_STORE_CTX *ctx,
2379                                         const X509_NAME *nm)
2380 {
2381     X509 *x;
2382     STACK_OF(X509_CRL) *crls = NULL;
2383     X509_CRL *crl;
2384     STACK_OF(DIST_POINT) *crldp;
2385
2386     crls = sk_X509_CRL_new_null();
2387     if (!crls)
2388         return NULL;
2389     x = X509_STORE_CTX_get_current_cert(ctx);
2390     crldp = X509_get_ext_d2i(x, NID_crl_distribution_points, NULL, NULL);
2391     crl = load_crl_crldp(crldp);
2392     sk_DIST_POINT_pop_free(crldp, DIST_POINT_free);
2393     if (!crl) {
2394         sk_X509_CRL_free(crls);
2395         return NULL;
2396     }
2397     sk_X509_CRL_push(crls, crl);
2398     /* Try to download delta CRL */
2399     crldp = X509_get_ext_d2i(x, NID_freshest_crl, NULL, NULL);
2400     crl = load_crl_crldp(crldp);
2401     sk_DIST_POINT_pop_free(crldp, DIST_POINT_free);
2402     if (crl)
2403         sk_X509_CRL_push(crls, crl);
2404     return crls;
2405 }
2406
2407 void store_setup_crl_download(X509_STORE *st)
2408 {
2409     X509_STORE_set_lookup_crls_cb(st, crls_http_cb);
2410 }
2411
2412 #ifndef OPENSSL_NO_SOCK
2413 static const char *tls_error_hint(void)
2414 {
2415     unsigned long err = ERR_peek_error();
2416
2417     if (ERR_GET_LIB(err) != ERR_LIB_SSL)
2418         err = ERR_peek_last_error();
2419     if (ERR_GET_LIB(err) != ERR_LIB_SSL)
2420         return NULL;
2421
2422     switch (ERR_GET_REASON(err)) {
2423     case SSL_R_WRONG_VERSION_NUMBER:
2424         return "The server does not support (a suitable version of) TLS";
2425     case SSL_R_UNKNOWN_PROTOCOL:
2426         return "The server does not support HTTPS";
2427     case SSL_R_CERTIFICATE_VERIFY_FAILED:
2428         return "Cannot authenticate server via its TLS certificate, likely due to mismatch with our trusted TLS certs or missing revocation status";
2429     case SSL_AD_REASON_OFFSET + TLS1_AD_UNKNOWN_CA:
2430         return "Server did not accept our TLS certificate, likely due to mismatch with server's trust anchor or missing revocation status";
2431     case SSL_AD_REASON_OFFSET + SSL3_AD_HANDSHAKE_FAILURE:
2432         return "TLS handshake failure. Possibly the server requires our TLS certificate but did not receive it";
2433     default: /* no error or no hint available for error */
2434         return NULL;
2435     }
2436 }
2437
2438 /* HTTP callback function that supports TLS connection also via HTTPS proxy */
2439 BIO *app_http_tls_cb(BIO *hbio, void *arg, int connect, int detail)
2440 {
2441     if (connect && detail) { /* connecting with TLS */
2442         APP_HTTP_TLS_INFO *info = (APP_HTTP_TLS_INFO *)arg;
2443         SSL_CTX *ssl_ctx = info->ssl_ctx;
2444         SSL *ssl;
2445         BIO *sbio = NULL;
2446
2447         if ((info->use_proxy
2448              && !OSSL_HTTP_proxy_connect(hbio, info->server, info->port,
2449                                          NULL, NULL, /* no proxy credentials */
2450                                          info->timeout, bio_err, opt_getprog()))
2451                 || (sbio = BIO_new(BIO_f_ssl())) == NULL) {
2452             return NULL;
2453         }
2454         if (ssl_ctx == NULL || (ssl = SSL_new(ssl_ctx)) == NULL) {
2455             BIO_free(sbio);
2456             return NULL;
2457         }
2458
2459         SSL_set_tlsext_host_name(ssl, info->server);
2460
2461         SSL_set_connect_state(ssl);
2462         BIO_set_ssl(sbio, ssl, BIO_CLOSE);
2463
2464         hbio = BIO_push(sbio, hbio);
2465     } else if (!connect && !detail) { /* disconnecting after error */
2466         const char *hint = tls_error_hint();
2467
2468         if (hint != NULL)
2469             ERR_add_error_data(2, " : ", hint);
2470         /*
2471          * If we pop sbio and BIO_free() it this may lead to libssl double free.
2472          * Rely on BIO_free_all() done by OSSL_HTTP_transfer() in http_client.c
2473          */
2474     }
2475     return hbio;
2476 }
2477
2478 void APP_HTTP_TLS_INFO_free(APP_HTTP_TLS_INFO *info)
2479 {
2480     if (info != NULL) {
2481         SSL_CTX_free(info->ssl_ctx);
2482         OPENSSL_free(info);
2483     }
2484 }
2485
2486 ASN1_VALUE *app_http_get_asn1(const char *url, const char *proxy,
2487                               const char *no_proxy, SSL_CTX *ssl_ctx,
2488                               const STACK_OF(CONF_VALUE) *headers,
2489                               long timeout, const char *expected_content_type,
2490                               const ASN1_ITEM *it)
2491 {
2492     APP_HTTP_TLS_INFO info;
2493     char *server;
2494     char *port;
2495     int use_ssl;
2496     BIO *mem;
2497     ASN1_VALUE *resp = NULL;
2498
2499     if (url == NULL || it == NULL) {
2500         ERR_raise(ERR_LIB_HTTP, ERR_R_PASSED_NULL_PARAMETER);
2501         return NULL;
2502     }
2503
2504     if (!OSSL_HTTP_parse_url(url, &use_ssl, NULL /* userinfo */, &server, &port,
2505                              NULL /* port_num, */, NULL, NULL, NULL))
2506         return NULL;
2507     if (use_ssl && ssl_ctx == NULL) {
2508         ERR_raise_data(ERR_LIB_HTTP, ERR_R_PASSED_NULL_PARAMETER,
2509                        "missing SSL_CTX");
2510         goto end;
2511     }
2512
2513     info.server = server;
2514     info.port = port;
2515     info.use_proxy = proxy != NULL;
2516     info.timeout = timeout;
2517     info.ssl_ctx = ssl_ctx;
2518     mem = OSSL_HTTP_get(url, proxy, no_proxy, NULL /* bio */, NULL /* rbio */,
2519                         app_http_tls_cb, &info, 0 /* buf_size */, headers,
2520                         expected_content_type, 1 /* expect_asn1 */,
2521                         OSSL_HTTP_DEFAULT_MAX_RESP_LEN, timeout);
2522     resp = ASN1_item_d2i_bio(it, mem, NULL);
2523     BIO_free(mem);
2524
2525  end:
2526     OPENSSL_free(server);
2527     OPENSSL_free(port);
2528     return resp;
2529
2530 }
2531
2532 ASN1_VALUE *app_http_post_asn1(const char *host, const char *port,
2533                                const char *path, const char *proxy,
2534                                const char *no_proxy, SSL_CTX *ssl_ctx,
2535                                const STACK_OF(CONF_VALUE) *headers,
2536                                const char *content_type,
2537                                ASN1_VALUE *req, const ASN1_ITEM *req_it,
2538                                const char *expected_content_type,
2539                                long timeout, const ASN1_ITEM *rsp_it)
2540 {
2541     APP_HTTP_TLS_INFO info;
2542     BIO *rsp, *req_mem = ASN1_item_i2d_mem_bio(req_it, req);
2543     ASN1_VALUE *res;
2544
2545     if (req_mem == NULL)
2546         return NULL;
2547     info.server = host;
2548     info.port = port;
2549     info.use_proxy = proxy != NULL;
2550     info.timeout = timeout;
2551     info.ssl_ctx = ssl_ctx;
2552     rsp = OSSL_HTTP_transfer(NULL, host, port, path, ssl_ctx != NULL,
2553                              proxy, no_proxy, NULL /* bio */, NULL /* rbio */,
2554                              app_http_tls_cb, &info,
2555                              0 /* buf_size */, headers, content_type, req_mem,
2556                              expected_content_type, 1 /* expect_asn1 */,
2557                              OSSL_HTTP_DEFAULT_MAX_RESP_LEN, timeout,
2558                              0 /* keep_alive */);
2559     BIO_free(req_mem);
2560     res = ASN1_item_d2i_bio(rsp_it, rsp, NULL);
2561     BIO_free(rsp);
2562     return res;
2563 }
2564
2565 #endif
2566
2567 /*
2568  * Platform-specific sections
2569  */
2570 #if defined(_WIN32)
2571 # ifdef fileno
2572 #  undef fileno
2573 #  define fileno(a) (int)_fileno(a)
2574 # endif
2575
2576 # include <windows.h>
2577 # include <tchar.h>
2578
2579 static int WIN32_rename(const char *from, const char *to)
2580 {
2581     TCHAR *tfrom = NULL, *tto;
2582     DWORD err;
2583     int ret = 0;
2584
2585     if (sizeof(TCHAR) == 1) {
2586         tfrom = (TCHAR *)from;
2587         tto = (TCHAR *)to;
2588     } else {                    /* UNICODE path */
2589
2590         size_t i, flen = strlen(from) + 1, tlen = strlen(to) + 1;
2591         tfrom = malloc(sizeof(*tfrom) * (flen + tlen));
2592         if (tfrom == NULL)
2593             goto err;
2594         tto = tfrom + flen;
2595 # if !defined(_WIN32_WCE) || _WIN32_WCE>=101
2596         if (!MultiByteToWideChar(CP_ACP, 0, from, flen, (WCHAR *)tfrom, flen))
2597 # endif
2598             for (i = 0; i < flen; i++)
2599                 tfrom[i] = (TCHAR)from[i];
2600 # if !defined(_WIN32_WCE) || _WIN32_WCE>=101
2601         if (!MultiByteToWideChar(CP_ACP, 0, to, tlen, (WCHAR *)tto, tlen))
2602 # endif
2603             for (i = 0; i < tlen; i++)
2604                 tto[i] = (TCHAR)to[i];
2605     }
2606
2607     if (MoveFile(tfrom, tto))
2608         goto ok;
2609     err = GetLastError();
2610     if (err == ERROR_ALREADY_EXISTS || err == ERROR_FILE_EXISTS) {
2611         if (DeleteFile(tto) && MoveFile(tfrom, tto))
2612             goto ok;
2613         err = GetLastError();
2614     }
2615     if (err == ERROR_FILE_NOT_FOUND || err == ERROR_PATH_NOT_FOUND)
2616         errno = ENOENT;
2617     else if (err == ERROR_ACCESS_DENIED)
2618         errno = EACCES;
2619     else
2620         errno = EINVAL;         /* we could map more codes... */
2621  err:
2622     ret = -1;
2623  ok:
2624     if (tfrom != NULL && tfrom != (TCHAR *)from)
2625         free(tfrom);
2626     return ret;
2627 }
2628 #endif
2629
2630 /* app_tminterval section */
2631 #if defined(_WIN32)
2632 double app_tminterval(int stop, int usertime)
2633 {
2634     FILETIME now;
2635     double ret = 0;
2636     static ULARGE_INTEGER tmstart;
2637     static int warning = 1;
2638 # ifdef _WIN32_WINNT
2639     static HANDLE proc = NULL;
2640
2641     if (proc == NULL) {
2642         if (check_winnt())
2643             proc = OpenProcess(PROCESS_QUERY_INFORMATION, FALSE,
2644                                GetCurrentProcessId());
2645         if (proc == NULL)
2646             proc = (HANDLE) - 1;
2647     }
2648
2649     if (usertime && proc != (HANDLE) - 1) {
2650         FILETIME junk;
2651         GetProcessTimes(proc, &junk, &junk, &junk, &now);
2652     } else
2653 # endif
2654     {
2655         SYSTEMTIME systime;
2656
2657         if (usertime && warning) {
2658             BIO_printf(bio_err, "To get meaningful results, run "
2659                        "this program on idle system.\n");
2660             warning = 0;
2661         }
2662         GetSystemTime(&systime);
2663         SystemTimeToFileTime(&systime, &now);
2664     }
2665
2666     if (stop == TM_START) {
2667         tmstart.u.LowPart = now.dwLowDateTime;
2668         tmstart.u.HighPart = now.dwHighDateTime;
2669     } else {
2670         ULARGE_INTEGER tmstop;
2671
2672         tmstop.u.LowPart = now.dwLowDateTime;
2673         tmstop.u.HighPart = now.dwHighDateTime;
2674
2675         ret = (__int64)(tmstop.QuadPart - tmstart.QuadPart) * 1e-7;
2676     }
2677
2678     return ret;
2679 }
2680 #elif defined(OPENSSL_SYS_VXWORKS)
2681 # include <time.h>
2682
2683 double app_tminterval(int stop, int usertime)
2684 {
2685     double ret = 0;
2686 # ifdef CLOCK_REALTIME
2687     static struct timespec tmstart;
2688     struct timespec now;
2689 # else
2690     static unsigned long tmstart;
2691     unsigned long now;
2692 # endif
2693     static int warning = 1;
2694
2695     if (usertime && warning) {
2696         BIO_printf(bio_err, "To get meaningful results, run "
2697                    "this program on idle system.\n");
2698         warning = 0;
2699     }
2700 # ifdef CLOCK_REALTIME
2701     clock_gettime(CLOCK_REALTIME, &now);
2702     if (stop == TM_START)
2703         tmstart = now;
2704     else
2705         ret = ((now.tv_sec + now.tv_nsec * 1e-9)
2706                - (tmstart.tv_sec + tmstart.tv_nsec * 1e-9));
2707 # else
2708     now = tickGet();
2709     if (stop == TM_START)
2710         tmstart = now;
2711     else
2712         ret = (now - tmstart) / (double)sysClkRateGet();
2713 # endif
2714     return ret;
2715 }
2716
2717 #elif defined(_SC_CLK_TCK)      /* by means of unistd.h */
2718 # include <sys/times.h>
2719
2720 double app_tminterval(int stop, int usertime)
2721 {
2722     double ret = 0;
2723     struct tms rus;
2724     clock_t now = times(&rus);
2725     static clock_t tmstart;
2726
2727     if (usertime)
2728         now = rus.tms_utime;
2729
2730     if (stop == TM_START) {
2731         tmstart = now;
2732     } else {
2733         long int tck = sysconf(_SC_CLK_TCK);
2734         ret = (now - tmstart) / (double)tck;
2735     }
2736
2737     return ret;
2738 }
2739
2740 #else
2741 # include <sys/time.h>
2742 # include <sys/resource.h>
2743
2744 double app_tminterval(int stop, int usertime)
2745 {
2746     double ret = 0;
2747     struct rusage rus;
2748     struct timeval now;
2749     static struct timeval tmstart;
2750
2751     if (usertime)
2752         getrusage(RUSAGE_SELF, &rus), now = rus.ru_utime;
2753     else
2754         gettimeofday(&now, NULL);
2755
2756     if (stop == TM_START)
2757         tmstart = now;
2758     else
2759         ret = ((now.tv_sec + now.tv_usec * 1e-6)
2760                - (tmstart.tv_sec + tmstart.tv_usec * 1e-6));
2761
2762     return ret;
2763 }
2764 #endif
2765
2766 int app_access(const char* name, int flag)
2767 {
2768 #ifdef _WIN32
2769     return _access(name, flag);
2770 #else
2771     return access(name, flag);
2772 #endif
2773 }
2774
2775 int app_isdir(const char *name)
2776 {
2777     return opt_isdir(name);
2778 }
2779
2780 /* raw_read|write section */
2781 #if defined(__VMS)
2782 # include "vms_term_sock.h"
2783 static int stdin_sock = -1;
2784
2785 static void close_stdin_sock(void)
2786 {
2787     TerminalSocket (TERM_SOCK_DELETE, &stdin_sock);
2788 }
2789
2790 int fileno_stdin(void)
2791 {
2792     if (stdin_sock == -1) {
2793         TerminalSocket(TERM_SOCK_CREATE, &stdin_sock);
2794         atexit(close_stdin_sock);
2795     }
2796
2797     return stdin_sock;
2798 }
2799 #else
2800 int fileno_stdin(void)
2801 {
2802     return fileno(stdin);
2803 }
2804 #endif
2805
2806 int fileno_stdout(void)
2807 {
2808     return fileno(stdout);
2809 }
2810
2811 #if defined(_WIN32) && defined(STD_INPUT_HANDLE)
2812 int raw_read_stdin(void *buf, int siz)
2813 {
2814     DWORD n;
2815     if (ReadFile(GetStdHandle(STD_INPUT_HANDLE), buf, siz, &n, NULL))
2816         return n;
2817     else
2818         return -1;
2819 }
2820 #elif defined(__VMS)
2821 # include <sys/socket.h>
2822
2823 int raw_read_stdin(void *buf, int siz)
2824 {
2825     return recv(fileno_stdin(), buf, siz, 0);
2826 }
2827 #else
2828 # if defined(__TANDEM)
2829 #  if defined(OPENSSL_TANDEM_FLOSS)
2830 #   include <floss.h(floss_read)>
2831 #  endif
2832 # endif
2833 int raw_read_stdin(void *buf, int siz)
2834 {
2835     return read(fileno_stdin(), buf, siz);
2836 }
2837 #endif
2838
2839 #if defined(_WIN32) && defined(STD_OUTPUT_HANDLE)
2840 int raw_write_stdout(const void *buf, int siz)
2841 {
2842     DWORD n;
2843     if (WriteFile(GetStdHandle(STD_OUTPUT_HANDLE), buf, siz, &n, NULL))
2844         return n;
2845     else
2846         return -1;
2847 }
2848 #elif defined(OPENSSL_SYS_TANDEM) && defined(OPENSSL_THREADS) && defined(_SPT_MODEL_)
2849 # if defined(__TANDEM)
2850 #  if defined(OPENSSL_TANDEM_FLOSS)
2851 #   include <floss.h(floss_write)>
2852 #  endif
2853 # endif
2854 int raw_write_stdout(const void *buf, int siz)
2855 {
2856         return write(fileno(stdout), (void*)buf, siz);
2857 }
2858 #else
2859 # if defined(__TANDEM)
2860 #  if defined(OPENSSL_TANDEM_FLOSS)
2861 #   include <floss.h(floss_write)>
2862 #  endif
2863 # endif
2864 int raw_write_stdout(const void *buf, int siz)
2865 {
2866     return write(fileno_stdout(), buf, siz);
2867 }
2868 #endif
2869
2870 /*
2871  * Centralized handling of input and output files with format specification
2872  * The format is meant to show what the input and output is supposed to be,
2873  * and is therefore a show of intent more than anything else.  However, it
2874  * does impact behavior on some platforms, such as differentiating between
2875  * text and binary input/output on non-Unix platforms
2876  */
2877 BIO *dup_bio_in(int format)
2878 {
2879     return BIO_new_fp(stdin,
2880                       BIO_NOCLOSE | (FMT_istext(format) ? BIO_FP_TEXT : 0));
2881 }
2882
2883 BIO *dup_bio_out(int format)
2884 {
2885     BIO *b = BIO_new_fp(stdout,
2886                         BIO_NOCLOSE | (FMT_istext(format) ? BIO_FP_TEXT : 0));
2887     void *prefix = NULL;
2888
2889 #ifdef OPENSSL_SYS_VMS
2890     if (FMT_istext(format))
2891         b = BIO_push(BIO_new(BIO_f_linebuffer()), b);
2892 #endif
2893
2894     if (FMT_istext(format)
2895         && (prefix = getenv("HARNESS_OSSL_PREFIX")) != NULL) {
2896         b = BIO_push(BIO_new(BIO_f_prefix()), b);
2897         BIO_set_prefix(b, prefix);
2898     }
2899
2900     return b;
2901 }
2902
2903 BIO *dup_bio_err(int format)
2904 {
2905     BIO *b = BIO_new_fp(stderr,
2906                         BIO_NOCLOSE | (FMT_istext(format) ? BIO_FP_TEXT : 0));
2907 #ifdef OPENSSL_SYS_VMS
2908     if (FMT_istext(format))
2909         b = BIO_push(BIO_new(BIO_f_linebuffer()), b);
2910 #endif
2911     return b;
2912 }
2913
2914 void unbuffer(FILE *fp)
2915 {
2916 /*
2917  * On VMS, setbuf() will only take 32-bit pointers, and a compilation
2918  * with /POINTER_SIZE=64 will give off a MAYLOSEDATA2 warning here.
2919  * However, we trust that the C RTL will never give us a FILE pointer
2920  * above the first 4 GB of memory, so we simply turn off the warning
2921  * temporarily.
2922  */
2923 #if defined(OPENSSL_SYS_VMS) && defined(__DECC)
2924 # pragma environment save
2925 # pragma message disable maylosedata2
2926 #endif
2927     setbuf(fp, NULL);
2928 #if defined(OPENSSL_SYS_VMS) && defined(__DECC)
2929 # pragma environment restore
2930 #endif
2931 }
2932
2933 static const char *modestr(char mode, int format)
2934 {
2935     OPENSSL_assert(mode == 'a' || mode == 'r' || mode == 'w');
2936
2937     switch (mode) {
2938     case 'a':
2939         return FMT_istext(format) ? "a" : "ab";
2940     case 'r':
2941         return FMT_istext(format) ? "r" : "rb";
2942     case 'w':
2943         return FMT_istext(format) ? "w" : "wb";
2944     }
2945     /* The assert above should make sure we never reach this point */
2946     return NULL;
2947 }
2948
2949 static const char *modeverb(char mode)
2950 {
2951     switch (mode) {
2952     case 'a':
2953         return "appending";
2954     case 'r':
2955         return "reading";
2956     case 'w':
2957         return "writing";
2958     }
2959     return "(doing something)";
2960 }
2961
2962 /*
2963  * Open a file for writing, owner-read-only.
2964  */
2965 BIO *bio_open_owner(const char *filename, int format, int private)
2966 {
2967     FILE *fp = NULL;
2968     BIO *b = NULL;
2969     int textmode, bflags;
2970 #ifndef OPENSSL_NO_POSIX_IO
2971     int fd = -1, mode;
2972 #endif
2973
2974     if (!private || filename == NULL || strcmp(filename, "-") == 0)
2975         return bio_open_default(filename, 'w', format);
2976
2977     textmode = FMT_istext(format);
2978 #ifndef OPENSSL_NO_POSIX_IO
2979     mode = O_WRONLY;
2980 # ifdef O_CREAT
2981     mode |= O_CREAT;
2982 # endif
2983 # ifdef O_TRUNC
2984     mode |= O_TRUNC;
2985 # endif
2986     if (!textmode) {
2987 # ifdef O_BINARY
2988         mode |= O_BINARY;
2989 # elif defined(_O_BINARY)
2990         mode |= _O_BINARY;
2991 # endif
2992     }
2993
2994 # ifdef OPENSSL_SYS_VMS
2995     /* VMS doesn't have O_BINARY, it just doesn't make sense.  But,
2996      * it still needs to know that we're going binary, or fdopen()
2997      * will fail with "invalid argument"...  so we tell VMS what the
2998      * context is.
2999      */
3000     if (!textmode)
3001         fd = open(filename, mode, 0600, "ctx=bin");
3002     else
3003 # endif
3004         fd = open(filename, mode, 0600);
3005     if (fd < 0)
3006         goto err;
3007     fp = fdopen(fd, modestr('w', format));
3008 #else   /* OPENSSL_NO_POSIX_IO */
3009     /* Have stdio but not Posix IO, do the best we can */
3010     fp = fopen(filename, modestr('w', format));
3011 #endif  /* OPENSSL_NO_POSIX_IO */
3012     if (fp == NULL)
3013         goto err;
3014     bflags = BIO_CLOSE;
3015     if (textmode)
3016         bflags |= BIO_FP_TEXT;
3017     b = BIO_new_fp(fp, bflags);
3018     if (b != NULL)
3019         return b;
3020
3021  err:
3022     BIO_printf(bio_err, "%s: Can't open \"%s\" for writing, %s\n",
3023                opt_getprog(), filename, strerror(errno));
3024     ERR_print_errors(bio_err);
3025     /* If we have fp, then fdopen took over fd, so don't close both. */
3026     if (fp != NULL)
3027         fclose(fp);
3028 #ifndef OPENSSL_NO_POSIX_IO
3029     else if (fd >= 0)
3030         close(fd);
3031 #endif
3032     return NULL;
3033 }
3034
3035 static BIO *bio_open_default_(const char *filename, char mode, int format,
3036                               int quiet)
3037 {
3038     BIO *ret;
3039
3040     if (filename == NULL || strcmp(filename, "-") == 0) {
3041         ret = mode == 'r' ? dup_bio_in(format) : dup_bio_out(format);
3042         if (quiet) {
3043             ERR_clear_error();
3044             return ret;
3045         }
3046         if (ret != NULL)
3047             return ret;
3048         BIO_printf(bio_err,
3049                    "Can't open %s, %s\n",
3050                    mode == 'r' ? "stdin" : "stdout", strerror(errno));
3051     } else {
3052         ret = BIO_new_file(filename, modestr(mode, format));
3053         if (quiet) {
3054             ERR_clear_error();
3055             return ret;
3056         }
3057         if (ret != NULL)
3058             return ret;
3059         BIO_printf(bio_err,
3060                    "Can't open \"%s\" for %s, %s\n",
3061                    filename, modeverb(mode), strerror(errno));
3062     }
3063     ERR_print_errors(bio_err);
3064     return NULL;
3065 }
3066
3067 BIO *bio_open_default(const char *filename, char mode, int format)
3068 {
3069     return bio_open_default_(filename, mode, format, 0);
3070 }
3071
3072 BIO *bio_open_default_quiet(const char *filename, char mode, int format)
3073 {
3074     return bio_open_default_(filename, mode, format, 1);
3075 }
3076
3077 void wait_for_async(SSL *s)
3078 {
3079     /* On Windows select only works for sockets, so we simply don't wait  */
3080 #ifndef OPENSSL_SYS_WINDOWS
3081     int width = 0;
3082     fd_set asyncfds;
3083     OSSL_ASYNC_FD *fds;
3084     size_t numfds;
3085     size_t i;
3086
3087     if (!SSL_get_all_async_fds(s, NULL, &numfds))
3088         return;
3089     if (numfds == 0)
3090         return;
3091     fds = app_malloc(sizeof(OSSL_ASYNC_FD) * numfds, "allocate async fds");
3092     if (!SSL_get_all_async_fds(s, fds, &numfds)) {
3093         OPENSSL_free(fds);
3094         return;
3095     }
3096
3097     FD_ZERO(&asyncfds);
3098     for (i = 0; i < numfds; i++) {
3099         if (width <= (int)fds[i])
3100             width = (int)fds[i] + 1;
3101         openssl_fdset((int)fds[i], &asyncfds);
3102     }
3103     select(width, (void *)&asyncfds, NULL, NULL, NULL);
3104     OPENSSL_free(fds);
3105 #endif
3106 }
3107
3108 /* if OPENSSL_SYS_WINDOWS is defined then so is OPENSSL_SYS_MSDOS */
3109 #if defined(OPENSSL_SYS_MSDOS)
3110 int has_stdin_waiting(void)
3111 {
3112 # if defined(OPENSSL_SYS_WINDOWS)
3113     HANDLE inhand = GetStdHandle(STD_INPUT_HANDLE);
3114     DWORD events = 0;
3115     INPUT_RECORD inputrec;
3116     DWORD insize = 1;
3117     BOOL peeked;
3118
3119     if (inhand == INVALID_HANDLE_VALUE) {
3120         return 0;
3121     }
3122
3123     peeked = PeekConsoleInput(inhand, &inputrec, insize, &events);
3124     if (!peeked) {
3125         /* Probably redirected input? _kbhit() does not work in this case */
3126         if (!feof(stdin)) {
3127             return 1;
3128         }
3129         return 0;
3130     }
3131 # endif
3132     return _kbhit();
3133 }
3134 #endif
3135
3136 /* Corrupt a signature by modifying final byte */
3137 void corrupt_signature(const ASN1_STRING *signature)
3138 {
3139         unsigned char *s = signature->data;
3140         s[signature->length - 1] ^= 0x1;
3141 }
3142
3143 int set_cert_times(X509 *x, const char *startdate, const char *enddate,
3144                    int days)
3145 {
3146     if (startdate == NULL || strcmp(startdate, "today") == 0) {
3147         if (X509_gmtime_adj(X509_getm_notBefore(x), 0) == NULL)
3148             return 0;
3149     } else {
3150         if (!ASN1_TIME_set_string_X509(X509_getm_notBefore(x), startdate))
3151             return 0;
3152     }
3153     if (enddate == NULL) {
3154         if (X509_time_adj_ex(X509_getm_notAfter(x), days, 0, NULL)
3155             == NULL)
3156             return 0;
3157     } else if (!ASN1_TIME_set_string_X509(X509_getm_notAfter(x), enddate)) {
3158         return 0;
3159     }
3160     return 1;
3161 }
3162
3163 int set_crl_lastupdate(X509_CRL *crl, const char *lastupdate)
3164 {
3165     int ret = 0;
3166     ASN1_TIME *tm = ASN1_TIME_new();
3167
3168     if (tm == NULL)
3169         goto end;
3170
3171     if (lastupdate == NULL) {
3172         if (X509_gmtime_adj(tm, 0) == NULL)
3173             goto end;
3174     } else {
3175         if (!ASN1_TIME_set_string_X509(tm, lastupdate))
3176             goto end;
3177     }
3178
3179     if (!X509_CRL_set1_lastUpdate(crl, tm))
3180         goto end;
3181
3182     ret = 1;
3183 end:
3184     ASN1_TIME_free(tm);
3185     return ret;
3186 }
3187
3188 int set_crl_nextupdate(X509_CRL *crl, const char *nextupdate,
3189                        long days, long hours, long secs)
3190 {
3191     int ret = 0;
3192     ASN1_TIME *tm = ASN1_TIME_new();
3193
3194     if (tm == NULL)
3195         goto end;
3196
3197     if (nextupdate == NULL) {
3198         if (X509_time_adj_ex(tm, days, hours * 60 * 60 + secs, NULL) == NULL)
3199             goto end;
3200     } else {
3201         if (!ASN1_TIME_set_string_X509(tm, nextupdate))
3202             goto end;
3203     }
3204
3205     if (!X509_CRL_set1_nextUpdate(crl, tm))
3206         goto end;
3207
3208     ret = 1;
3209 end:
3210     ASN1_TIME_free(tm);
3211     return ret;
3212 }
3213
3214 void make_uppercase(char *string)
3215 {
3216     int i;
3217
3218     for (i = 0; string[i] != '\0'; i++)
3219         string[i] = toupper((unsigned char)string[i]);
3220 }
3221
3222 /* This function is defined here due to visibility of bio_err */
3223 int opt_printf_stderr(const char *fmt, ...)
3224 {
3225     va_list ap;
3226     int ret;
3227
3228     va_start(ap, fmt);
3229     ret = BIO_vprintf(bio_err, fmt, ap);
3230     va_end(ap);
3231     return ret;
3232 }
3233
3234 OSSL_PARAM *app_params_new_from_opts(STACK_OF(OPENSSL_STRING) *opts,
3235                                      const OSSL_PARAM *paramdefs)
3236 {
3237     OSSL_PARAM *params = NULL;
3238     size_t sz = (size_t)sk_OPENSSL_STRING_num(opts);
3239     size_t params_n;
3240     char *opt = "", *stmp, *vtmp = NULL;
3241     int found = 1;
3242
3243     if (opts == NULL)
3244         return NULL;
3245
3246     params = OPENSSL_zalloc(sizeof(OSSL_PARAM) * (sz + 1));
3247     if (params == NULL)
3248         return NULL;
3249
3250     for (params_n = 0; params_n < sz; params_n++) {
3251         opt = sk_OPENSSL_STRING_value(opts, (int)params_n);
3252         if ((stmp = OPENSSL_strdup(opt)) == NULL
3253             || (vtmp = strchr(stmp, ':')) == NULL)
3254             goto err;
3255         /* Replace ':' with 0 to terminate the string pointed to by stmp */
3256         *vtmp = 0;
3257         /* Skip over the separator so that vmtp points to the value */
3258         vtmp++;
3259         if (!OSSL_PARAM_allocate_from_text(&params[params_n], paramdefs,
3260                                            stmp, vtmp, strlen(vtmp), &found))
3261             goto err;
3262         OPENSSL_free(stmp);
3263     }
3264     params[params_n] = OSSL_PARAM_construct_end();
3265     return params;
3266 err:
3267     OPENSSL_free(stmp);
3268     BIO_printf(bio_err, "Parameter %s '%s'\n", found ? "error" : "unknown",
3269                opt);
3270     ERR_print_errors(bio_err);
3271     app_params_free(params);
3272     return NULL;
3273 }
3274
3275 void app_params_free(OSSL_PARAM *params)
3276 {
3277     int i;
3278
3279     if (params != NULL) {
3280         for (i = 0; params[i].key != NULL; ++i)
3281             OPENSSL_free(params[i].data);
3282         OPENSSL_free(params);
3283     }
3284 }
3285
3286 EVP_PKEY *app_keygen(EVP_PKEY_CTX *ctx, const char *alg, int bits, int verbose)
3287 {
3288     EVP_PKEY *res = NULL;
3289
3290     if (verbose && alg != NULL) {
3291         BIO_printf(bio_err, "Generating %s key", alg);
3292         if (bits > 0)
3293             BIO_printf(bio_err, " with %d bits\n", bits);
3294         else
3295             BIO_printf(bio_err, "\n");
3296     }
3297     if (!RAND_status())
3298         BIO_printf(bio_err, "Warning: generating random key material may take a long time\n"
3299                    "if the system has a poor entropy source\n");
3300     if (EVP_PKEY_keygen(ctx, &res) <= 0)
3301         app_bail_out("%s: Error generating %s key\n", opt_getprog(),
3302                      alg != NULL ? alg : "asymmetric");
3303     return res;
3304 }
3305
3306 EVP_PKEY *app_paramgen(EVP_PKEY_CTX *ctx, const char *alg)
3307 {
3308     EVP_PKEY *res = NULL;
3309
3310     if (!RAND_status())
3311         BIO_printf(bio_err, "Warning: generating random key parameters may take a long time\n"
3312                    "if the system has a poor entropy source\n");
3313     if (EVP_PKEY_paramgen(ctx, &res) <= 0)
3314         app_bail_out("%s: Generating %s key parameters failed\n",
3315                      opt_getprog(), alg != NULL ? alg : "asymmetric");
3316     return res;
3317 }
3318
3319 /*
3320  * Return non-zero if the legacy path is still an option.
3321  * This decision is based on the global command line operations and the
3322  * behaviour thus far.
3323  */
3324 int opt_legacy_okay(void)
3325 {
3326     int provider_options = opt_provider_option_given();
3327     int libctx = app_get0_libctx() != NULL || app_get0_propq() != NULL;
3328 #ifndef OPENSSL_NO_ENGINE
3329     ENGINE *e = ENGINE_get_first();
3330
3331     if (e != NULL) {
3332         ENGINE_free(e);
3333         return 1;
3334     }
3335 #endif
3336     /*
3337      * Having a provider option specified or a custom library context or
3338      * property query, is a sure sign we're not using legacy.
3339      */
3340     if (provider_options || libctx)
3341         return 0;
3342     return 1;
3343 }