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