add OSSL_STACK_OF_X509_free() for commonly used pattern
[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         OSSL_STACK_OF_X509_free(*pcerts);
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         OSSL_STACK_OF_X509_free(certs);
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     OSSL_STACK_OF_X509_free(certs);
734     OSSL_STACK_OF_X509_free(result);
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         OSSL_STACK_OF_X509_free(certs);
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         OSSL_STACK_OF_X509_free(*certs);
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 int check_cert_attributes(BIO *bio, X509 *x,
2108                        const char *checkhost,
2109                        const char *checkemail, const char *checkip, int print)
2110 {
2111     int valid_host = 0;
2112     int valid_mail = 0;
2113     int valid_ip = 0;
2114     int ret = 1;
2115
2116     if (x == NULL)
2117         return 0;
2118
2119     if (checkhost != NULL) {
2120         valid_host = X509_check_host(x, checkhost, 0, 0, NULL);
2121         if (print)
2122             BIO_printf(bio, "Hostname %s does%s match certificate\n",
2123                        checkhost, valid_host == 1 ? "" : " NOT");
2124         ret = ret && valid_host;
2125     }
2126
2127     if (checkemail != NULL) {
2128         valid_mail = X509_check_email(x, checkemail, 0, 0);
2129         if (print)
2130             BIO_printf(bio, "Email %s does%s match certificate\n",
2131                        checkemail, valid_mail ? "" : " NOT");
2132         ret = ret && valid_mail;
2133     }
2134
2135     if (checkip != NULL) {
2136         valid_ip   =  X509_check_ip_asc(x, checkip, 0);
2137         if (print)
2138             BIO_printf(bio, "IP %s does%s match certificate\n",
2139                        checkip,  valid_ip ? "" : " NOT");
2140         ret = ret && valid_ip;
2141     }
2142
2143     return ret;
2144 }
2145
2146 static int do_pkey_ctx_init(EVP_PKEY_CTX *pkctx, STACK_OF(OPENSSL_STRING) *opts)
2147 {
2148     int i;
2149
2150     if (opts == NULL)
2151         return 1;
2152
2153     for (i = 0; i < sk_OPENSSL_STRING_num(opts); i++) {
2154         char *opt = sk_OPENSSL_STRING_value(opts, i);
2155         if (pkey_ctrl_string(pkctx, opt) <= 0) {
2156             BIO_printf(bio_err, "parameter error \"%s\"\n", opt);
2157             ERR_print_errors(bio_err);
2158             return 0;
2159         }
2160     }
2161
2162     return 1;
2163 }
2164
2165 static int do_x509_init(X509 *x, STACK_OF(OPENSSL_STRING) *opts)
2166 {
2167     int i;
2168
2169     if (opts == NULL)
2170         return 1;
2171
2172     for (i = 0; i < sk_OPENSSL_STRING_num(opts); i++) {
2173         char *opt = sk_OPENSSL_STRING_value(opts, i);
2174         if (x509_ctrl_string(x, opt) <= 0) {
2175             BIO_printf(bio_err, "parameter error \"%s\"\n", opt);
2176             ERR_print_errors(bio_err);
2177             return 0;
2178         }
2179     }
2180
2181     return 1;
2182 }
2183
2184 static int do_x509_req_init(X509_REQ *x, STACK_OF(OPENSSL_STRING) *opts)
2185 {
2186     int i;
2187
2188     if (opts == NULL)
2189         return 1;
2190
2191     for (i = 0; i < sk_OPENSSL_STRING_num(opts); i++) {
2192         char *opt = sk_OPENSSL_STRING_value(opts, i);
2193         if (x509_req_ctrl_string(x, opt) <= 0) {
2194             BIO_printf(bio_err, "parameter error \"%s\"\n", opt);
2195             ERR_print_errors(bio_err);
2196             return 0;
2197         }
2198     }
2199
2200     return 1;
2201 }
2202
2203 static int do_sign_init(EVP_MD_CTX *ctx, EVP_PKEY *pkey,
2204                         const char *md, STACK_OF(OPENSSL_STRING) *sigopts)
2205 {
2206     EVP_PKEY_CTX *pkctx = NULL;
2207     char def_md[80];
2208
2209     if (ctx == NULL)
2210         return 0;
2211     /*
2212      * EVP_PKEY_get_default_digest_name() returns 2 if the digest is mandatory
2213      * for this algorithm.
2214      */
2215     if (EVP_PKEY_get_default_digest_name(pkey, def_md, sizeof(def_md)) == 2
2216             && strcmp(def_md, "UNDEF") == 0) {
2217         /* The signing algorithm requires there to be no digest */
2218         md = NULL;
2219     }
2220
2221     return EVP_DigestSignInit_ex(ctx, &pkctx, md, app_get0_libctx(),
2222                                  app_get0_propq(), pkey, NULL)
2223         && do_pkey_ctx_init(pkctx, sigopts);
2224 }
2225
2226 static int adapt_keyid_ext(X509 *cert, X509V3_CTX *ext_ctx,
2227                            const char *name, const char *value, int add_default)
2228 {
2229     const STACK_OF(X509_EXTENSION) *exts = X509_get0_extensions(cert);
2230     X509_EXTENSION *new_ext = X509V3_EXT_nconf(NULL, ext_ctx, name, value);
2231     int idx, rv = 0;
2232
2233     if (new_ext == NULL)
2234         return rv;
2235
2236     idx = X509v3_get_ext_by_OBJ(exts, X509_EXTENSION_get_object(new_ext), -1);
2237     if (idx >= 0) {
2238         X509_EXTENSION *found_ext = X509v3_get_ext(exts, idx);
2239         ASN1_OCTET_STRING *encoded = X509_EXTENSION_get_data(found_ext);
2240         int disabled = ASN1_STRING_length(encoded) <= 2; /* indicating "none" */
2241
2242         if (disabled) {
2243             X509_delete_ext(cert, idx);
2244             X509_EXTENSION_free(found_ext);
2245         } /* else keep existing key identifier, which might be outdated */
2246         rv = 1;
2247     } else  {
2248         rv = !add_default || X509_add_ext(cert, new_ext, -1);
2249     }
2250     X509_EXTENSION_free(new_ext);
2251     return rv;
2252 }
2253
2254 int cert_matches_key(const X509 *cert, const EVP_PKEY *pkey)
2255 {
2256     int match;
2257
2258     ERR_set_mark();
2259     match = X509_check_private_key(cert, pkey);
2260     ERR_pop_to_mark();
2261     return match;
2262 }
2263
2264 /* Ensure RFC 5280 compliance, adapt keyIDs as needed, and sign the cert info */
2265 int do_X509_sign(X509 *cert, EVP_PKEY *pkey, const char *md,
2266                  STACK_OF(OPENSSL_STRING) *sigopts, X509V3_CTX *ext_ctx)
2267 {
2268     const STACK_OF(X509_EXTENSION) *exts = X509_get0_extensions(cert);
2269     EVP_MD_CTX *mctx = EVP_MD_CTX_new();
2270     int self_sign;
2271     int rv = 0;
2272
2273     if (sk_X509_EXTENSION_num(exts /* may be NULL */) > 0) {
2274         /* Prevent X509_V_ERR_EXTENSIONS_REQUIRE_VERSION_3 */
2275         if (!X509_set_version(cert, X509_VERSION_3))
2276             goto end;
2277
2278         /*
2279          * Add default SKID before AKID such that AKID can make use of it
2280          * in case the certificate is self-signed
2281          */
2282         /* Prevent X509_V_ERR_MISSING_SUBJECT_KEY_IDENTIFIER */
2283         if (!adapt_keyid_ext(cert, ext_ctx, "subjectKeyIdentifier", "hash", 1))
2284             goto end;
2285         /* Prevent X509_V_ERR_MISSING_AUTHORITY_KEY_IDENTIFIER */
2286         self_sign = cert_matches_key(cert, pkey);
2287         if (!adapt_keyid_ext(cert, ext_ctx, "authorityKeyIdentifier",
2288                              "keyid, issuer", !self_sign))
2289             goto end;
2290     }
2291
2292     if (mctx != NULL && do_sign_init(mctx, pkey, md, sigopts) > 0)
2293         rv = (X509_sign_ctx(cert, mctx) > 0);
2294  end:
2295     EVP_MD_CTX_free(mctx);
2296     return rv;
2297 }
2298
2299 /* Sign the certificate request info */
2300 int do_X509_REQ_sign(X509_REQ *x, EVP_PKEY *pkey, const char *md,
2301                      STACK_OF(OPENSSL_STRING) *sigopts)
2302 {
2303     int rv = 0;
2304     EVP_MD_CTX *mctx = EVP_MD_CTX_new();
2305
2306     if (do_sign_init(mctx, pkey, md, sigopts) > 0)
2307         rv = (X509_REQ_sign_ctx(x, mctx) > 0);
2308     EVP_MD_CTX_free(mctx);
2309     return rv;
2310 }
2311
2312 /* Sign the CRL info */
2313 int do_X509_CRL_sign(X509_CRL *x, EVP_PKEY *pkey, const char *md,
2314                      STACK_OF(OPENSSL_STRING) *sigopts)
2315 {
2316     int rv = 0;
2317     EVP_MD_CTX *mctx = EVP_MD_CTX_new();
2318
2319     if (do_sign_init(mctx, pkey, md, sigopts) > 0)
2320         rv = (X509_CRL_sign_ctx(x, mctx) > 0);
2321     EVP_MD_CTX_free(mctx);
2322     return rv;
2323 }
2324
2325 /*
2326  * do_X509_verify returns 1 if the signature is valid,
2327  * 0 if the signature check fails, or -1 if error occurs.
2328  */
2329 int do_X509_verify(X509 *x, EVP_PKEY *pkey, STACK_OF(OPENSSL_STRING) *vfyopts)
2330 {
2331     int rv = 0;
2332
2333     if (do_x509_init(x, vfyopts) > 0)
2334         rv = X509_verify(x, pkey);
2335     else
2336         rv = -1;
2337     return rv;
2338 }
2339
2340 /*
2341  * do_X509_REQ_verify returns 1 if the signature is valid,
2342  * 0 if the signature check fails, or -1 if error occurs.
2343  */
2344 int do_X509_REQ_verify(X509_REQ *x, EVP_PKEY *pkey,
2345                        STACK_OF(OPENSSL_STRING) *vfyopts)
2346 {
2347     int rv = 0;
2348
2349     if (do_x509_req_init(x, vfyopts) > 0)
2350         rv = X509_REQ_verify_ex(x, pkey,
2351                                  app_get0_libctx(), app_get0_propq());
2352     else
2353         rv = -1;
2354     return rv;
2355 }
2356
2357 /* Get first http URL from a DIST_POINT structure */
2358
2359 static const char *get_dp_url(DIST_POINT *dp)
2360 {
2361     GENERAL_NAMES *gens;
2362     GENERAL_NAME *gen;
2363     int i, gtype;
2364     ASN1_STRING *uri;
2365     if (!dp->distpoint || dp->distpoint->type != 0)
2366         return NULL;
2367     gens = dp->distpoint->name.fullname;
2368     for (i = 0; i < sk_GENERAL_NAME_num(gens); i++) {
2369         gen = sk_GENERAL_NAME_value(gens, i);
2370         uri = GENERAL_NAME_get0_value(gen, &gtype);
2371         if (gtype == GEN_URI && ASN1_STRING_length(uri) > 6) {
2372             const char *uptr = (const char *)ASN1_STRING_get0_data(uri);
2373
2374             if (IS_HTTP(uptr)) /* can/should not use HTTPS here */
2375                 return uptr;
2376         }
2377     }
2378     return NULL;
2379 }
2380
2381 /*
2382  * Look through a CRLDP structure and attempt to find an http URL to
2383  * downloads a CRL from.
2384  */
2385
2386 static X509_CRL *load_crl_crldp(STACK_OF(DIST_POINT) *crldp)
2387 {
2388     int i;
2389     const char *urlptr = NULL;
2390     for (i = 0; i < sk_DIST_POINT_num(crldp); i++) {
2391         DIST_POINT *dp = sk_DIST_POINT_value(crldp, i);
2392         urlptr = get_dp_url(dp);
2393         if (urlptr != NULL)
2394             return load_crl(urlptr, FORMAT_UNDEF, 0, "CRL via CDP");
2395     }
2396     return NULL;
2397 }
2398
2399 /*
2400  * Example of downloading CRLs from CRLDP:
2401  * not usable for real world as it always downloads and doesn't cache anything.
2402  */
2403
2404 static STACK_OF(X509_CRL) *crls_http_cb(const X509_STORE_CTX *ctx,
2405                                         const X509_NAME *nm)
2406 {
2407     X509 *x;
2408     STACK_OF(X509_CRL) *crls = NULL;
2409     X509_CRL *crl;
2410     STACK_OF(DIST_POINT) *crldp;
2411
2412     crls = sk_X509_CRL_new_null();
2413     if (!crls)
2414         return NULL;
2415     x = X509_STORE_CTX_get_current_cert(ctx);
2416     crldp = X509_get_ext_d2i(x, NID_crl_distribution_points, NULL, NULL);
2417     crl = load_crl_crldp(crldp);
2418     sk_DIST_POINT_pop_free(crldp, DIST_POINT_free);
2419     if (!crl) {
2420         sk_X509_CRL_free(crls);
2421         return NULL;
2422     }
2423     sk_X509_CRL_push(crls, crl);
2424     /* Try to download delta CRL */
2425     crldp = X509_get_ext_d2i(x, NID_freshest_crl, NULL, NULL);
2426     crl = load_crl_crldp(crldp);
2427     sk_DIST_POINT_pop_free(crldp, DIST_POINT_free);
2428     if (crl)
2429         sk_X509_CRL_push(crls, crl);
2430     return crls;
2431 }
2432
2433 void store_setup_crl_download(X509_STORE *st)
2434 {
2435     X509_STORE_set_lookup_crls_cb(st, crls_http_cb);
2436 }
2437
2438 #ifndef OPENSSL_NO_SOCK
2439 static const char *tls_error_hint(void)
2440 {
2441     unsigned long err = ERR_peek_error();
2442
2443     if (ERR_GET_LIB(err) != ERR_LIB_SSL)
2444         err = ERR_peek_last_error();
2445     if (ERR_GET_LIB(err) != ERR_LIB_SSL)
2446         return NULL;
2447
2448     switch (ERR_GET_REASON(err)) {
2449     case SSL_R_WRONG_VERSION_NUMBER:
2450         return "The server does not support (a suitable version of) TLS";
2451     case SSL_R_UNKNOWN_PROTOCOL:
2452         return "The server does not support HTTPS";
2453     case SSL_R_CERTIFICATE_VERIFY_FAILED:
2454         return "Cannot authenticate server via its TLS certificate, likely due to mismatch with our trusted TLS certs or missing revocation status";
2455     case SSL_AD_REASON_OFFSET + TLS1_AD_UNKNOWN_CA:
2456         return "Server did not accept our TLS certificate, likely due to mismatch with server's trust anchor or missing revocation status";
2457     case SSL_AD_REASON_OFFSET + SSL3_AD_HANDSHAKE_FAILURE:
2458         return "TLS handshake failure. Possibly the server requires our TLS certificate but did not receive it";
2459     default: /* no error or no hint available for error */
2460         return NULL;
2461     }
2462 }
2463
2464 /* HTTP callback function that supports TLS connection also via HTTPS proxy */
2465 BIO *app_http_tls_cb(BIO *hbio, void *arg, int connect, int detail)
2466 {
2467     if (connect && detail) { /* connecting with TLS */
2468         APP_HTTP_TLS_INFO *info = (APP_HTTP_TLS_INFO *)arg;
2469         SSL_CTX *ssl_ctx = info->ssl_ctx;
2470         SSL *ssl;
2471         BIO *sbio = NULL;
2472
2473         if ((info->use_proxy
2474              && !OSSL_HTTP_proxy_connect(hbio, info->server, info->port,
2475                                          NULL, NULL, /* no proxy credentials */
2476                                          info->timeout, bio_err, opt_getprog()))
2477                 || (sbio = BIO_new(BIO_f_ssl())) == NULL) {
2478             return NULL;
2479         }
2480         if (ssl_ctx == NULL || (ssl = SSL_new(ssl_ctx)) == NULL) {
2481             BIO_free(sbio);
2482             return NULL;
2483         }
2484
2485         SSL_set_tlsext_host_name(ssl, info->server);
2486
2487         SSL_set_connect_state(ssl);
2488         BIO_set_ssl(sbio, ssl, BIO_CLOSE);
2489
2490         hbio = BIO_push(sbio, hbio);
2491     } else if (!connect && !detail) { /* disconnecting after error */
2492         const char *hint = tls_error_hint();
2493
2494         if (hint != NULL)
2495             ERR_add_error_data(2, " : ", hint);
2496         /*
2497          * If we pop sbio and BIO_free() it this may lead to libssl double free.
2498          * Rely on BIO_free_all() done by OSSL_HTTP_transfer() in http_client.c
2499          */
2500     }
2501     return hbio;
2502 }
2503
2504 void APP_HTTP_TLS_INFO_free(APP_HTTP_TLS_INFO *info)
2505 {
2506     if (info != NULL) {
2507         SSL_CTX_free(info->ssl_ctx);
2508         OPENSSL_free(info);
2509     }
2510 }
2511
2512 ASN1_VALUE *app_http_get_asn1(const char *url, const char *proxy,
2513                               const char *no_proxy, SSL_CTX *ssl_ctx,
2514                               const STACK_OF(CONF_VALUE) *headers,
2515                               long timeout, const char *expected_content_type,
2516                               const ASN1_ITEM *it)
2517 {
2518     APP_HTTP_TLS_INFO info;
2519     char *server;
2520     char *port;
2521     int use_ssl;
2522     BIO *mem;
2523     ASN1_VALUE *resp = NULL;
2524
2525     if (url == NULL || it == NULL) {
2526         ERR_raise(ERR_LIB_HTTP, ERR_R_PASSED_NULL_PARAMETER);
2527         return NULL;
2528     }
2529
2530     if (!OSSL_HTTP_parse_url(url, &use_ssl, NULL /* userinfo */, &server, &port,
2531                              NULL /* port_num, */, NULL, NULL, NULL))
2532         return NULL;
2533     if (use_ssl && ssl_ctx == NULL) {
2534         ERR_raise_data(ERR_LIB_HTTP, ERR_R_PASSED_NULL_PARAMETER,
2535                        "missing SSL_CTX");
2536         goto end;
2537     }
2538
2539     info.server = server;
2540     info.port = port;
2541     info.use_proxy = proxy != NULL;
2542     info.timeout = timeout;
2543     info.ssl_ctx = ssl_ctx;
2544     mem = OSSL_HTTP_get(url, proxy, no_proxy, NULL /* bio */, NULL /* rbio */,
2545                         app_http_tls_cb, &info, 0 /* buf_size */, headers,
2546                         expected_content_type, 1 /* expect_asn1 */,
2547                         OSSL_HTTP_DEFAULT_MAX_RESP_LEN, timeout);
2548     resp = ASN1_item_d2i_bio(it, mem, NULL);
2549     BIO_free(mem);
2550
2551  end:
2552     OPENSSL_free(server);
2553     OPENSSL_free(port);
2554     return resp;
2555
2556 }
2557
2558 ASN1_VALUE *app_http_post_asn1(const char *host, const char *port,
2559                                const char *path, const char *proxy,
2560                                const char *no_proxy, SSL_CTX *ssl_ctx,
2561                                const STACK_OF(CONF_VALUE) *headers,
2562                                const char *content_type,
2563                                ASN1_VALUE *req, const ASN1_ITEM *req_it,
2564                                const char *expected_content_type,
2565                                long timeout, const ASN1_ITEM *rsp_it)
2566 {
2567     APP_HTTP_TLS_INFO info;
2568     BIO *rsp, *req_mem = ASN1_item_i2d_mem_bio(req_it, req);
2569     ASN1_VALUE *res;
2570
2571     if (req_mem == NULL)
2572         return NULL;
2573     info.server = host;
2574     info.port = port;
2575     info.use_proxy = proxy != NULL;
2576     info.timeout = timeout;
2577     info.ssl_ctx = ssl_ctx;
2578     rsp = OSSL_HTTP_transfer(NULL, host, port, path, ssl_ctx != NULL,
2579                              proxy, no_proxy, NULL /* bio */, NULL /* rbio */,
2580                              app_http_tls_cb, &info,
2581                              0 /* buf_size */, headers, content_type, req_mem,
2582                              expected_content_type, 1 /* expect_asn1 */,
2583                              OSSL_HTTP_DEFAULT_MAX_RESP_LEN, timeout,
2584                              0 /* keep_alive */);
2585     BIO_free(req_mem);
2586     res = ASN1_item_d2i_bio(rsp_it, rsp, NULL);
2587     BIO_free(rsp);
2588     return res;
2589 }
2590
2591 #endif
2592
2593 /*
2594  * Platform-specific sections
2595  */
2596 #if defined(_WIN32)
2597 # ifdef fileno
2598 #  undef fileno
2599 #  define fileno(a) (int)_fileno(a)
2600 # endif
2601
2602 # include <windows.h>
2603 # include <tchar.h>
2604
2605 static int WIN32_rename(const char *from, const char *to)
2606 {
2607     TCHAR *tfrom = NULL, *tto;
2608     DWORD err;
2609     int ret = 0;
2610
2611     if (sizeof(TCHAR) == 1) {
2612         tfrom = (TCHAR *)from;
2613         tto = (TCHAR *)to;
2614     } else {                    /* UNICODE path */
2615
2616         size_t i, flen = strlen(from) + 1, tlen = strlen(to) + 1;
2617         tfrom = malloc(sizeof(*tfrom) * (flen + tlen));
2618         if (tfrom == NULL)
2619             goto err;
2620         tto = tfrom + flen;
2621 # if !defined(_WIN32_WCE) || _WIN32_WCE>=101
2622         if (!MultiByteToWideChar(CP_ACP, 0, from, flen, (WCHAR *)tfrom, flen))
2623 # endif
2624             for (i = 0; i < flen; i++)
2625                 tfrom[i] = (TCHAR)from[i];
2626 # if !defined(_WIN32_WCE) || _WIN32_WCE>=101
2627         if (!MultiByteToWideChar(CP_ACP, 0, to, tlen, (WCHAR *)tto, tlen))
2628 # endif
2629             for (i = 0; i < tlen; i++)
2630                 tto[i] = (TCHAR)to[i];
2631     }
2632
2633     if (MoveFile(tfrom, tto))
2634         goto ok;
2635     err = GetLastError();
2636     if (err == ERROR_ALREADY_EXISTS || err == ERROR_FILE_EXISTS) {
2637         if (DeleteFile(tto) && MoveFile(tfrom, tto))
2638             goto ok;
2639         err = GetLastError();
2640     }
2641     if (err == ERROR_FILE_NOT_FOUND || err == ERROR_PATH_NOT_FOUND)
2642         errno = ENOENT;
2643     else if (err == ERROR_ACCESS_DENIED)
2644         errno = EACCES;
2645     else
2646         errno = EINVAL;         /* we could map more codes... */
2647  err:
2648     ret = -1;
2649  ok:
2650     if (tfrom != NULL && tfrom != (TCHAR *)from)
2651         free(tfrom);
2652     return ret;
2653 }
2654 #endif
2655
2656 /* app_tminterval section */
2657 #if defined(_WIN32)
2658 double app_tminterval(int stop, int usertime)
2659 {
2660     FILETIME now;
2661     double ret = 0;
2662     static ULARGE_INTEGER tmstart;
2663     static int warning = 1;
2664 # ifdef _WIN32_WINNT
2665     static HANDLE proc = NULL;
2666
2667     if (proc == NULL) {
2668         if (check_winnt())
2669             proc = OpenProcess(PROCESS_QUERY_INFORMATION, FALSE,
2670                                GetCurrentProcessId());
2671         if (proc == NULL)
2672             proc = (HANDLE) - 1;
2673     }
2674
2675     if (usertime && proc != (HANDLE) - 1) {
2676         FILETIME junk;
2677         GetProcessTimes(proc, &junk, &junk, &junk, &now);
2678     } else
2679 # endif
2680     {
2681         SYSTEMTIME systime;
2682
2683         if (usertime && warning) {
2684             BIO_printf(bio_err, "To get meaningful results, run "
2685                        "this program on idle system.\n");
2686             warning = 0;
2687         }
2688         GetSystemTime(&systime);
2689         SystemTimeToFileTime(&systime, &now);
2690     }
2691
2692     if (stop == TM_START) {
2693         tmstart.u.LowPart = now.dwLowDateTime;
2694         tmstart.u.HighPart = now.dwHighDateTime;
2695     } else {
2696         ULARGE_INTEGER tmstop;
2697
2698         tmstop.u.LowPart = now.dwLowDateTime;
2699         tmstop.u.HighPart = now.dwHighDateTime;
2700
2701         ret = (__int64)(tmstop.QuadPart - tmstart.QuadPart) * 1e-7;
2702     }
2703
2704     return ret;
2705 }
2706 #elif defined(OPENSSL_SYS_VXWORKS)
2707 # include <time.h>
2708
2709 double app_tminterval(int stop, int usertime)
2710 {
2711     double ret = 0;
2712 # ifdef CLOCK_REALTIME
2713     static struct timespec tmstart;
2714     struct timespec now;
2715 # else
2716     static unsigned long tmstart;
2717     unsigned long now;
2718 # endif
2719     static int warning = 1;
2720
2721     if (usertime && warning) {
2722         BIO_printf(bio_err, "To get meaningful results, run "
2723                    "this program on idle system.\n");
2724         warning = 0;
2725     }
2726 # ifdef CLOCK_REALTIME
2727     clock_gettime(CLOCK_REALTIME, &now);
2728     if (stop == TM_START)
2729         tmstart = now;
2730     else
2731         ret = ((now.tv_sec + now.tv_nsec * 1e-9)
2732                - (tmstart.tv_sec + tmstart.tv_nsec * 1e-9));
2733 # else
2734     now = tickGet();
2735     if (stop == TM_START)
2736         tmstart = now;
2737     else
2738         ret = (now - tmstart) / (double)sysClkRateGet();
2739 # endif
2740     return ret;
2741 }
2742
2743 #elif defined(_SC_CLK_TCK)      /* by means of unistd.h */
2744 # include <sys/times.h>
2745
2746 double app_tminterval(int stop, int usertime)
2747 {
2748     double ret = 0;
2749     struct tms rus;
2750     clock_t now = times(&rus);
2751     static clock_t tmstart;
2752
2753     if (usertime)
2754         now = rus.tms_utime;
2755
2756     if (stop == TM_START) {
2757         tmstart = now;
2758     } else {
2759         long int tck = sysconf(_SC_CLK_TCK);
2760         ret = (now - tmstart) / (double)tck;
2761     }
2762
2763     return ret;
2764 }
2765
2766 #else
2767 # include <sys/time.h>
2768 # include <sys/resource.h>
2769
2770 double app_tminterval(int stop, int usertime)
2771 {
2772     double ret = 0;
2773     struct rusage rus;
2774     struct timeval now;
2775     static struct timeval tmstart;
2776
2777     if (usertime)
2778         getrusage(RUSAGE_SELF, &rus), now = rus.ru_utime;
2779     else
2780         gettimeofday(&now, NULL);
2781
2782     if (stop == TM_START)
2783         tmstart = now;
2784     else
2785         ret = ((now.tv_sec + now.tv_usec * 1e-6)
2786                - (tmstart.tv_sec + tmstart.tv_usec * 1e-6));
2787
2788     return ret;
2789 }
2790 #endif
2791
2792 int app_access(const char* name, int flag)
2793 {
2794 #ifdef _WIN32
2795     return _access(name, flag);
2796 #else
2797     return access(name, flag);
2798 #endif
2799 }
2800
2801 int app_isdir(const char *name)
2802 {
2803     return opt_isdir(name);
2804 }
2805
2806 /* raw_read|write section */
2807 #if defined(__VMS)
2808 # include "vms_term_sock.h"
2809 static int stdin_sock = -1;
2810
2811 static void close_stdin_sock(void)
2812 {
2813     TerminalSocket (TERM_SOCK_DELETE, &stdin_sock);
2814 }
2815
2816 int fileno_stdin(void)
2817 {
2818     if (stdin_sock == -1) {
2819         TerminalSocket(TERM_SOCK_CREATE, &stdin_sock);
2820         atexit(close_stdin_sock);
2821     }
2822
2823     return stdin_sock;
2824 }
2825 #else
2826 int fileno_stdin(void)
2827 {
2828     return fileno(stdin);
2829 }
2830 #endif
2831
2832 int fileno_stdout(void)
2833 {
2834     return fileno(stdout);
2835 }
2836
2837 #if defined(_WIN32) && defined(STD_INPUT_HANDLE)
2838 int raw_read_stdin(void *buf, int siz)
2839 {
2840     DWORD n;
2841     if (ReadFile(GetStdHandle(STD_INPUT_HANDLE), buf, siz, &n, NULL))
2842         return n;
2843     else
2844         return -1;
2845 }
2846 #elif defined(__VMS)
2847 # include <sys/socket.h>
2848
2849 int raw_read_stdin(void *buf, int siz)
2850 {
2851     return recv(fileno_stdin(), buf, siz, 0);
2852 }
2853 #else
2854 # if defined(__TANDEM)
2855 #  if defined(OPENSSL_TANDEM_FLOSS)
2856 #   include <floss.h(floss_read)>
2857 #  endif
2858 # endif
2859 int raw_read_stdin(void *buf, int siz)
2860 {
2861     return read(fileno_stdin(), buf, siz);
2862 }
2863 #endif
2864
2865 #if defined(_WIN32) && defined(STD_OUTPUT_HANDLE)
2866 int raw_write_stdout(const void *buf, int siz)
2867 {
2868     DWORD n;
2869     if (WriteFile(GetStdHandle(STD_OUTPUT_HANDLE), buf, siz, &n, NULL))
2870         return n;
2871     else
2872         return -1;
2873 }
2874 #elif defined(OPENSSL_SYS_TANDEM) && defined(OPENSSL_THREADS) && defined(_SPT_MODEL_)
2875 # if defined(__TANDEM)
2876 #  if defined(OPENSSL_TANDEM_FLOSS)
2877 #   include <floss.h(floss_write)>
2878 #  endif
2879 # endif
2880 int raw_write_stdout(const void *buf, int siz)
2881 {
2882         return write(fileno(stdout), (void*)buf, siz);
2883 }
2884 #else
2885 # if defined(__TANDEM)
2886 #  if defined(OPENSSL_TANDEM_FLOSS)
2887 #   include <floss.h(floss_write)>
2888 #  endif
2889 # endif
2890 int raw_write_stdout(const void *buf, int siz)
2891 {
2892     return write(fileno_stdout(), buf, siz);
2893 }
2894 #endif
2895
2896 /*
2897  * Centralized handling of input and output files with format specification
2898  * The format is meant to show what the input and output is supposed to be,
2899  * and is therefore a show of intent more than anything else.  However, it
2900  * does impact behavior on some platforms, such as differentiating between
2901  * text and binary input/output on non-Unix platforms
2902  */
2903 BIO *dup_bio_in(int format)
2904 {
2905     return BIO_new_fp(stdin,
2906                       BIO_NOCLOSE | (FMT_istext(format) ? BIO_FP_TEXT : 0));
2907 }
2908
2909 BIO *dup_bio_out(int format)
2910 {
2911     BIO *b = BIO_new_fp(stdout,
2912                         BIO_NOCLOSE | (FMT_istext(format) ? BIO_FP_TEXT : 0));
2913     void *prefix = NULL;
2914
2915 #ifdef OPENSSL_SYS_VMS
2916     if (FMT_istext(format))
2917         b = BIO_push(BIO_new(BIO_f_linebuffer()), b);
2918 #endif
2919
2920     if (FMT_istext(format)
2921         && (prefix = getenv("HARNESS_OSSL_PREFIX")) != NULL) {
2922         b = BIO_push(BIO_new(BIO_f_prefix()), b);
2923         BIO_set_prefix(b, prefix);
2924     }
2925
2926     return b;
2927 }
2928
2929 BIO *dup_bio_err(int format)
2930 {
2931     BIO *b = BIO_new_fp(stderr,
2932                         BIO_NOCLOSE | (FMT_istext(format) ? BIO_FP_TEXT : 0));
2933 #ifdef OPENSSL_SYS_VMS
2934     if (FMT_istext(format))
2935         b = BIO_push(BIO_new(BIO_f_linebuffer()), b);
2936 #endif
2937     return b;
2938 }
2939
2940 void unbuffer(FILE *fp)
2941 {
2942 /*
2943  * On VMS, setbuf() will only take 32-bit pointers, and a compilation
2944  * with /POINTER_SIZE=64 will give off a MAYLOSEDATA2 warning here.
2945  * However, we trust that the C RTL will never give us a FILE pointer
2946  * above the first 4 GB of memory, so we simply turn off the warning
2947  * temporarily.
2948  */
2949 #if defined(OPENSSL_SYS_VMS) && defined(__DECC)
2950 # pragma environment save
2951 # pragma message disable maylosedata2
2952 #endif
2953     setbuf(fp, NULL);
2954 #if defined(OPENSSL_SYS_VMS) && defined(__DECC)
2955 # pragma environment restore
2956 #endif
2957 }
2958
2959 static const char *modestr(char mode, int format)
2960 {
2961     OPENSSL_assert(mode == 'a' || mode == 'r' || mode == 'w');
2962
2963     switch (mode) {
2964     case 'a':
2965         return FMT_istext(format) ? "a" : "ab";
2966     case 'r':
2967         return FMT_istext(format) ? "r" : "rb";
2968     case 'w':
2969         return FMT_istext(format) ? "w" : "wb";
2970     }
2971     /* The assert above should make sure we never reach this point */
2972     return NULL;
2973 }
2974
2975 static const char *modeverb(char mode)
2976 {
2977     switch (mode) {
2978     case 'a':
2979         return "appending";
2980     case 'r':
2981         return "reading";
2982     case 'w':
2983         return "writing";
2984     }
2985     return "(doing something)";
2986 }
2987
2988 /*
2989  * Open a file for writing, owner-read-only.
2990  */
2991 BIO *bio_open_owner(const char *filename, int format, int private)
2992 {
2993     FILE *fp = NULL;
2994     BIO *b = NULL;
2995     int textmode, bflags;
2996 #ifndef OPENSSL_NO_POSIX_IO
2997     int fd = -1, mode;
2998 #endif
2999
3000     if (!private || filename == NULL || strcmp(filename, "-") == 0)
3001         return bio_open_default(filename, 'w', format);
3002
3003     textmode = FMT_istext(format);
3004 #ifndef OPENSSL_NO_POSIX_IO
3005     mode = O_WRONLY;
3006 # ifdef O_CREAT
3007     mode |= O_CREAT;
3008 # endif
3009 # ifdef O_TRUNC
3010     mode |= O_TRUNC;
3011 # endif
3012     if (!textmode) {
3013 # ifdef O_BINARY
3014         mode |= O_BINARY;
3015 # elif defined(_O_BINARY)
3016         mode |= _O_BINARY;
3017 # endif
3018     }
3019
3020 # ifdef OPENSSL_SYS_VMS
3021     /* VMS doesn't have O_BINARY, it just doesn't make sense.  But,
3022      * it still needs to know that we're going binary, or fdopen()
3023      * will fail with "invalid argument"...  so we tell VMS what the
3024      * context is.
3025      */
3026     if (!textmode)
3027         fd = open(filename, mode, 0600, "ctx=bin");
3028     else
3029 # endif
3030         fd = open(filename, mode, 0600);
3031     if (fd < 0)
3032         goto err;
3033     fp = fdopen(fd, modestr('w', format));
3034 #else   /* OPENSSL_NO_POSIX_IO */
3035     /* Have stdio but not Posix IO, do the best we can */
3036     fp = fopen(filename, modestr('w', format));
3037 #endif  /* OPENSSL_NO_POSIX_IO */
3038     if (fp == NULL)
3039         goto err;
3040     bflags = BIO_CLOSE;
3041     if (textmode)
3042         bflags |= BIO_FP_TEXT;
3043     b = BIO_new_fp(fp, bflags);
3044     if (b != NULL)
3045         return b;
3046
3047  err:
3048     BIO_printf(bio_err, "%s: Can't open \"%s\" for writing, %s\n",
3049                opt_getprog(), filename, strerror(errno));
3050     ERR_print_errors(bio_err);
3051     /* If we have fp, then fdopen took over fd, so don't close both. */
3052     if (fp != NULL)
3053         fclose(fp);
3054 #ifndef OPENSSL_NO_POSIX_IO
3055     else if (fd >= 0)
3056         close(fd);
3057 #endif
3058     return NULL;
3059 }
3060
3061 static BIO *bio_open_default_(const char *filename, char mode, int format,
3062                               int quiet)
3063 {
3064     BIO *ret;
3065
3066     if (filename == NULL || strcmp(filename, "-") == 0) {
3067         ret = mode == 'r' ? dup_bio_in(format) : dup_bio_out(format);
3068         if (quiet) {
3069             ERR_clear_error();
3070             return ret;
3071         }
3072         if (ret != NULL)
3073             return ret;
3074         BIO_printf(bio_err,
3075                    "Can't open %s, %s\n",
3076                    mode == 'r' ? "stdin" : "stdout", strerror(errno));
3077     } else {
3078         ret = BIO_new_file(filename, modestr(mode, format));
3079         if (quiet) {
3080             ERR_clear_error();
3081             return ret;
3082         }
3083         if (ret != NULL)
3084             return ret;
3085         BIO_printf(bio_err,
3086                    "Can't open \"%s\" for %s, %s\n",
3087                    filename, modeverb(mode), strerror(errno));
3088     }
3089     ERR_print_errors(bio_err);
3090     return NULL;
3091 }
3092
3093 BIO *bio_open_default(const char *filename, char mode, int format)
3094 {
3095     return bio_open_default_(filename, mode, format, 0);
3096 }
3097
3098 BIO *bio_open_default_quiet(const char *filename, char mode, int format)
3099 {
3100     return bio_open_default_(filename, mode, format, 1);
3101 }
3102
3103 void wait_for_async(SSL *s)
3104 {
3105     /* On Windows select only works for sockets, so we simply don't wait  */
3106 #ifndef OPENSSL_SYS_WINDOWS
3107     int width = 0;
3108     fd_set asyncfds;
3109     OSSL_ASYNC_FD *fds;
3110     size_t numfds;
3111     size_t i;
3112
3113     if (!SSL_get_all_async_fds(s, NULL, &numfds))
3114         return;
3115     if (numfds == 0)
3116         return;
3117     fds = app_malloc(sizeof(OSSL_ASYNC_FD) * numfds, "allocate async fds");
3118     if (!SSL_get_all_async_fds(s, fds, &numfds)) {
3119         OPENSSL_free(fds);
3120         return;
3121     }
3122
3123     FD_ZERO(&asyncfds);
3124     for (i = 0; i < numfds; i++) {
3125         if (width <= (int)fds[i])
3126             width = (int)fds[i] + 1;
3127         openssl_fdset((int)fds[i], &asyncfds);
3128     }
3129     select(width, (void *)&asyncfds, NULL, NULL, NULL);
3130     OPENSSL_free(fds);
3131 #endif
3132 }
3133
3134 /* if OPENSSL_SYS_WINDOWS is defined then so is OPENSSL_SYS_MSDOS */
3135 #if defined(OPENSSL_SYS_MSDOS)
3136 int has_stdin_waiting(void)
3137 {
3138 # if defined(OPENSSL_SYS_WINDOWS)
3139     HANDLE inhand = GetStdHandle(STD_INPUT_HANDLE);
3140     DWORD events = 0;
3141     INPUT_RECORD inputrec;
3142     DWORD insize = 1;
3143     BOOL peeked;
3144
3145     if (inhand == INVALID_HANDLE_VALUE) {
3146         return 0;
3147     }
3148
3149     peeked = PeekConsoleInput(inhand, &inputrec, insize, &events);
3150     if (!peeked) {
3151         /* Probably redirected input? _kbhit() does not work in this case */
3152         if (!feof(stdin)) {
3153             return 1;
3154         }
3155         return 0;
3156     }
3157 # endif
3158     return _kbhit();
3159 }
3160 #endif
3161
3162 /* Corrupt a signature by modifying final byte */
3163 void corrupt_signature(const ASN1_STRING *signature)
3164 {
3165         unsigned char *s = signature->data;
3166         s[signature->length - 1] ^= 0x1;
3167 }
3168
3169 int set_cert_times(X509 *x, const char *startdate, const char *enddate,
3170                    int days)
3171 {
3172     if (startdate == NULL || strcmp(startdate, "today") == 0) {
3173         if (X509_gmtime_adj(X509_getm_notBefore(x), 0) == NULL)
3174             return 0;
3175     } else {
3176         if (!ASN1_TIME_set_string_X509(X509_getm_notBefore(x), startdate))
3177             return 0;
3178     }
3179     if (enddate == NULL) {
3180         if (X509_time_adj_ex(X509_getm_notAfter(x), days, 0, NULL)
3181             == NULL)
3182             return 0;
3183     } else if (!ASN1_TIME_set_string_X509(X509_getm_notAfter(x), enddate)) {
3184         return 0;
3185     }
3186     return 1;
3187 }
3188
3189 int set_crl_lastupdate(X509_CRL *crl, const char *lastupdate)
3190 {
3191     int ret = 0;
3192     ASN1_TIME *tm = ASN1_TIME_new();
3193
3194     if (tm == NULL)
3195         goto end;
3196
3197     if (lastupdate == NULL) {
3198         if (X509_gmtime_adj(tm, 0) == NULL)
3199             goto end;
3200     } else {
3201         if (!ASN1_TIME_set_string_X509(tm, lastupdate))
3202             goto end;
3203     }
3204
3205     if (!X509_CRL_set1_lastUpdate(crl, tm))
3206         goto end;
3207
3208     ret = 1;
3209 end:
3210     ASN1_TIME_free(tm);
3211     return ret;
3212 }
3213
3214 int set_crl_nextupdate(X509_CRL *crl, const char *nextupdate,
3215                        long days, long hours, long secs)
3216 {
3217     int ret = 0;
3218     ASN1_TIME *tm = ASN1_TIME_new();
3219
3220     if (tm == NULL)
3221         goto end;
3222
3223     if (nextupdate == NULL) {
3224         if (X509_time_adj_ex(tm, days, hours * 60 * 60 + secs, NULL) == NULL)
3225             goto end;
3226     } else {
3227         if (!ASN1_TIME_set_string_X509(tm, nextupdate))
3228             goto end;
3229     }
3230
3231     if (!X509_CRL_set1_nextUpdate(crl, tm))
3232         goto end;
3233
3234     ret = 1;
3235 end:
3236     ASN1_TIME_free(tm);
3237     return ret;
3238 }
3239
3240 void make_uppercase(char *string)
3241 {
3242     int i;
3243
3244     for (i = 0; string[i] != '\0'; i++)
3245         string[i] = toupper((unsigned char)string[i]);
3246 }
3247
3248 /* This function is defined here due to visibility of bio_err */
3249 int opt_printf_stderr(const char *fmt, ...)
3250 {
3251     va_list ap;
3252     int ret;
3253
3254     va_start(ap, fmt);
3255     ret = BIO_vprintf(bio_err, fmt, ap);
3256     va_end(ap);
3257     return ret;
3258 }
3259
3260 OSSL_PARAM *app_params_new_from_opts(STACK_OF(OPENSSL_STRING) *opts,
3261                                      const OSSL_PARAM *paramdefs)
3262 {
3263     OSSL_PARAM *params = NULL;
3264     size_t sz = (size_t)sk_OPENSSL_STRING_num(opts);
3265     size_t params_n;
3266     char *opt = "", *stmp, *vtmp = NULL;
3267     int found = 1;
3268
3269     if (opts == NULL)
3270         return NULL;
3271
3272     params = OPENSSL_zalloc(sizeof(OSSL_PARAM) * (sz + 1));
3273     if (params == NULL)
3274         return NULL;
3275
3276     for (params_n = 0; params_n < sz; params_n++) {
3277         opt = sk_OPENSSL_STRING_value(opts, (int)params_n);
3278         if ((stmp = OPENSSL_strdup(opt)) == NULL
3279             || (vtmp = strchr(stmp, ':')) == NULL)
3280             goto err;
3281         /* Replace ':' with 0 to terminate the string pointed to by stmp */
3282         *vtmp = 0;
3283         /* Skip over the separator so that vmtp points to the value */
3284         vtmp++;
3285         if (!OSSL_PARAM_allocate_from_text(&params[params_n], paramdefs,
3286                                            stmp, vtmp, strlen(vtmp), &found))
3287             goto err;
3288         OPENSSL_free(stmp);
3289     }
3290     params[params_n] = OSSL_PARAM_construct_end();
3291     return params;
3292 err:
3293     OPENSSL_free(stmp);
3294     BIO_printf(bio_err, "Parameter %s '%s'\n", found ? "error" : "unknown",
3295                opt);
3296     ERR_print_errors(bio_err);
3297     app_params_free(params);
3298     return NULL;
3299 }
3300
3301 void app_params_free(OSSL_PARAM *params)
3302 {
3303     int i;
3304
3305     if (params != NULL) {
3306         for (i = 0; params[i].key != NULL; ++i)
3307             OPENSSL_free(params[i].data);
3308         OPENSSL_free(params);
3309     }
3310 }
3311
3312 EVP_PKEY *app_keygen(EVP_PKEY_CTX *ctx, const char *alg, int bits, int verbose)
3313 {
3314     EVP_PKEY *res = NULL;
3315
3316     if (verbose && alg != NULL) {
3317         BIO_printf(bio_err, "Generating %s key", alg);
3318         if (bits > 0)
3319             BIO_printf(bio_err, " with %d bits\n", bits);
3320         else
3321             BIO_printf(bio_err, "\n");
3322     }
3323     if (!RAND_status())
3324         BIO_printf(bio_err, "Warning: generating random key material may take a long time\n"
3325                    "if the system has a poor entropy source\n");
3326     if (EVP_PKEY_keygen(ctx, &res) <= 0)
3327         app_bail_out("%s: Error generating %s key\n", opt_getprog(),
3328                      alg != NULL ? alg : "asymmetric");
3329     return res;
3330 }
3331
3332 EVP_PKEY *app_paramgen(EVP_PKEY_CTX *ctx, const char *alg)
3333 {
3334     EVP_PKEY *res = NULL;
3335
3336     if (!RAND_status())
3337         BIO_printf(bio_err, "Warning: generating random key parameters may take a long time\n"
3338                    "if the system has a poor entropy source\n");
3339     if (EVP_PKEY_paramgen(ctx, &res) <= 0)
3340         app_bail_out("%s: Generating %s key parameters failed\n",
3341                      opt_getprog(), alg != NULL ? alg : "asymmetric");
3342     return res;
3343 }
3344
3345 /*
3346  * Return non-zero if the legacy path is still an option.
3347  * This decision is based on the global command line operations and the
3348  * behaviour thus far.
3349  */
3350 int opt_legacy_okay(void)
3351 {
3352     int provider_options = opt_provider_option_given();
3353     int libctx = app_get0_libctx() != NULL || app_get0_propq() != NULL;
3354 #ifndef OPENSSL_NO_ENGINE
3355     ENGINE *e = ENGINE_get_first();
3356
3357     if (e != NULL) {
3358         ENGINE_free(e);
3359         return 1;
3360     }
3361 #endif
3362     /*
3363      * Having a provider option specified or a custom library context or
3364      * property query, is a sure sign we're not using legacy.
3365      */
3366     if (provider_options || libctx)
3367         return 0;
3368     return 1;
3369 }