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