]> git.ipfire.org Git - thirdparty/openssl.git/blame - apps/apps.c
Duplicate includes
[thirdparty/openssl.git] / apps / apps.c
CommitLineData
846e33c7
RS
1/*
2 * Copyright 1995-2016 The OpenSSL Project Authors. All Rights Reserved.
a661b653 3 *
846e33c7
RS
4 * Licensed under the OpenSSL license (the "License"). You may not use
5 * this file except in compliance with the License. You can obtain a copy
6 * in the file LICENSE in the source distribution or at
7 * https://www.openssl.org/source/license.html
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>
a412b891
RL
21#ifndef NO_SYS_TYPES_H
22# include <sys/types.h>
23#endif
24#ifndef OPENSSL_NO_POSIX_IO
25# include <sys/stat.h>
26# include <fcntl.h>
27#endif
d652a095 28#include <ctype.h>
a1ad253f 29#include <errno.h>
90ae4673
RL
30#include <openssl/err.h>
31#include <openssl/x509.h>
535d79da 32#include <openssl/x509v3.h>
90ae4673
RL
33#include <openssl/pem.h>
34#include <openssl/pkcs12.h>
2fe5adc3 35#include <openssl/ui.h>
90ae4673 36#include <openssl/safestack.h>
0b13e9f0 37#ifndef OPENSSL_NO_ENGINE
0f113f3e 38# include <openssl/engine.h>
0b13e9f0 39#endif
3eeaab4b 40#ifndef OPENSSL_NO_RSA
0f113f3e 41# include <openssl/rsa.h>
3eeaab4b 42#endif
f0eae953 43#include <openssl/bn.h>
7e1b7485 44#include <openssl/ssl.h>
75dd6c1a 45#include "s_apps.h"
d610d27f 46#include "apps.h"
d610d27f 47
a1ad253f
AP
48#ifdef _WIN32
49static int WIN32_rename(const char *from, const char *to);
0f113f3e 50# define rename(from,to) WIN32_rename((from),(to))
a1ad253f
AP
51#endif
52
8ca533e3 53typedef struct {
0f113f3e
MC
54 const char *name;
55 unsigned long flag;
56 unsigned long mask;
8ca533e3
DSH
57} NAME_EX_TBL;
58
e93836b9 59#if !defined(OPENSSL_NO_UI) || !defined(OPENSSL_NO_ENGINE)
2fe5adc3 60static UI_METHOD *ui_method = NULL;
e93836b9 61#endif
2fe5adc3 62
0f113f3e
MC
63static int set_table_opts(unsigned long *flags, const char *arg,
64 const NAME_EX_TBL * in_tbl);
65static int set_multi_opts(unsigned long *flags, const char *arg,
66 const NAME_EX_TBL * in_tbl);
8ca533e3 67
d02b48c6 68int app_init(long mesgwin);
0f113f3e 69
7e1b7485 70int chopup_args(ARGS *arg, char *buf)
0f113f3e 71{
7e1b7485 72 int quoted;
4c9b0a03 73 char c = '\0', *p = NULL;
0f113f3e 74
7e1b7485
RS
75 arg->argc = 0;
76 if (arg->size == 0) {
77 arg->size = 20;
b4faea50 78 arg->argv = app_malloc(sizeof(*arg->argv) * arg->size, "argv space");
0f113f3e 79 }
0f113f3e 80
7e1b7485
RS
81 for (p = buf;;) {
82 /* Skip whitespace. */
18295f0c 83 while (*p && isspace(_UC(*p)))
0f113f3e
MC
84 p++;
85 if (!*p)
86 break;
87
88 /* The start of something good :-) */
7e1b7485 89 if (arg->argc >= arg->size) {
7c0ef843 90 char **tmp;
7e1b7485 91 arg->size += 20;
7c0ef843
DSH
92 tmp = OPENSSL_realloc(arg->argv, sizeof(*arg->argv) * arg->size);
93 if (tmp == NULL)
0f113f3e 94 return 0;
7c0ef843 95 arg->argv = tmp;
0f113f3e 96 }
7e1b7485
RS
97 quoted = *p == '\'' || *p == '"';
98 if (quoted)
99 c = *p++;
100 arg->argv[arg->argc++] = p;
0f113f3e
MC
101
102 /* now look for the end of this */
7e1b7485
RS
103 if (quoted) {
104 while (*p && *p != c)
0f113f3e 105 p++;
7e1b7485 106 *p++ = '\0';
0f113f3e 107 } else {
18295f0c 108 while (*p && !isspace(_UC(*p)))
0f113f3e 109 p++;
7e1b7485
RS
110 if (*p)
111 *p++ = '\0';
0f113f3e 112 }
0f113f3e 113 }
7e1b7485 114 arg->argv[arg->argc] = NULL;
0f113f3e
MC
115 return (1);
116}
d02b48c6
RE
117
118#ifndef APP_INIT
6b691a5c 119int app_init(long mesgwin)
0f113f3e
MC
120{
121 return (1);
122}
d02b48c6 123#endif
53b1899e 124
2b6bcb70
MC
125int ctx_set_verify_locations(SSL_CTX *ctx, const char *CAfile,
126 const char *CApath, int noCAfile, int noCApath)
7e1b7485 127{
2b6bcb70
MC
128 if (CAfile == NULL && CApath == NULL) {
129 if (!noCAfile && SSL_CTX_set_default_verify_file(ctx) <= 0)
130 return 0;
131 if (!noCApath && SSL_CTX_set_default_verify_dir(ctx) <= 0)
132 return 0;
133
134 return 1;
135 }
7e1b7485
RS
136 return SSL_CTX_load_verify_locations(ctx, CAfile, CApath);
137}
138
b5369582
RP
139#ifndef OPENSSL_NO_CT
140
dd696a55
RP
141int ctx_set_ctlog_list_file(SSL_CTX *ctx, const char *path)
142{
143 if (path == NULL) {
328f36c5 144 return SSL_CTX_set_default_ctlog_list_file(ctx);
dd696a55
RP
145 }
146
147 return SSL_CTX_set_ctlog_list_file(ctx, path);
148}
149
b5369582
RP
150#endif
151
0f113f3e 152int dump_cert_text(BIO *out, X509 *x)
954ef7ef 153{
0f113f3e 154 char *p;
54a656ef 155
0f113f3e
MC
156 p = X509_NAME_oneline(X509_get_subject_name(x), NULL, 0);
157 BIO_puts(out, "subject=");
158 BIO_puts(out, p);
159 OPENSSL_free(p);
954ef7ef 160
0f113f3e
MC
161 p = X509_NAME_oneline(X509_get_issuer_name(x), NULL, 0);
162 BIO_puts(out, "\nissuer=");
163 BIO_puts(out, p);
164 BIO_puts(out, "\n");
165 OPENSSL_free(p);
54a656ef 166
0f113f3e 167 return 0;
954ef7ef 168}
a3fe382e 169
923b1857 170#ifndef OPENSSL_NO_UI
2fe5adc3 171static int ui_open(UI *ui)
0f113f3e
MC
172{
173 return UI_method_get_opener(UI_OpenSSL())(ui);
174}
175
2fe5adc3 176static int ui_read(UI *ui, UI_STRING *uis)
0f113f3e
MC
177{
178 if (UI_get_input_flags(uis) & UI_INPUT_FLAG_DEFAULT_PWD
179 && UI_get0_user_data(ui)) {
180 switch (UI_get_string_type(uis)) {
181 case UIT_PROMPT:
182 case UIT_VERIFY:
183 {
184 const char *password =
185 ((PW_CB_DATA *)UI_get0_user_data(ui))->password;
186 if (password && password[0] != '\0') {
187 UI_set_result(ui, uis, password);
188 return 1;
189 }
190 }
191 default:
192 break;
193 }
194 }
195 return UI_method_get_reader(UI_OpenSSL())(ui, uis);
196}
197
2fe5adc3 198static int ui_write(UI *ui, UI_STRING *uis)
0f113f3e
MC
199{
200 if (UI_get_input_flags(uis) & UI_INPUT_FLAG_DEFAULT_PWD
201 && UI_get0_user_data(ui)) {
202 switch (UI_get_string_type(uis)) {
203 case UIT_PROMPT:
204 case UIT_VERIFY:
205 {
206 const char *password =
207 ((PW_CB_DATA *)UI_get0_user_data(ui))->password;
208 if (password && password[0] != '\0')
209 return 1;
210 }
211 default:
212 break;
213 }
214 }
215 return UI_method_get_writer(UI_OpenSSL())(ui, uis);
216}
217
2fe5adc3 218static int ui_close(UI *ui)
0f113f3e
MC
219{
220 return UI_method_get_closer(UI_OpenSSL())(ui);
221}
222
40889b9c 223int setup_ui_method(void)
0f113f3e
MC
224{
225 ui_method = UI_create_method("OpenSSL application user interface");
226 UI_method_set_opener(ui_method, ui_open);
227 UI_method_set_reader(ui_method, ui_read);
228 UI_method_set_writer(ui_method, ui_write);
229 UI_method_set_closer(ui_method, ui_close);
230 return 0;
231}
232
40889b9c 233void destroy_ui_method(void)
0f113f3e
MC
234{
235 if (ui_method) {
236 UI_destroy_method(ui_method);
237 ui_method = NULL;
238 }
239}
923b1857 240#endif
0f113f3e
MC
241
242int password_callback(char *buf, int bufsiz, int verify, PW_CB_DATA *cb_tmp)
243{
0f113f3e 244 int res = 0;
923b1857
RL
245#ifndef OPENSSL_NO_UI
246 UI *ui = NULL;
0f113f3e 247 const char *prompt_info = NULL;
923b1857 248#endif
0f113f3e
MC
249 const char *password = NULL;
250 PW_CB_DATA *cb_data = (PW_CB_DATA *)cb_tmp;
251
252 if (cb_data) {
253 if (cb_data->password)
254 password = cb_data->password;
923b1857 255#ifndef OPENSSL_NO_UI
0f113f3e
MC
256 if (cb_data->prompt_info)
257 prompt_info = cb_data->prompt_info;
923b1857 258#endif
0f113f3e
MC
259 }
260
261 if (password) {
262 res = strlen(password);
263 if (res > bufsiz)
264 res = bufsiz;
265 memcpy(buf, password, res);
266 return res;
267 }
268
923b1857 269#ifndef OPENSSL_NO_UI
0f113f3e
MC
270 ui = UI_new_method(ui_method);
271 if (ui) {
272 int ok = 0;
273 char *buff = NULL;
274 int ui_flags = 0;
7e1b7485 275 char *prompt;
0f113f3e
MC
276
277 prompt = UI_construct_prompt(ui, "pass phrase", prompt_info);
61986d32 278 if (!prompt) {
918bb865
MC
279 BIO_printf(bio_err, "Out of memory\n");
280 UI_free(ui);
281 return 0;
282 }
0f113f3e
MC
283
284 ui_flags |= UI_INPUT_FLAG_DEFAULT_PWD;
285 UI_ctrl(ui, UI_CTRL_PRINT_ERRORS, 1, 0, 0);
286
287 if (ok >= 0)
288 ok = UI_add_input_string(ui, prompt, ui_flags, buf,
289 PW_MIN_LENGTH, bufsiz - 1);
290 if (ok >= 0 && verify) {
68dc6824 291 buff = app_malloc(bufsiz, "password buffer");
0f113f3e
MC
292 ok = UI_add_verify_string(ui, prompt, ui_flags, buff,
293 PW_MIN_LENGTH, bufsiz - 1, buf);
294 }
295 if (ok >= 0)
296 do {
297 ok = UI_process(ui);
298 }
299 while (ok < 0 && UI_ctrl(ui, UI_CTRL_IS_REDOABLE, 0, 0, 0));
300
4b45c6e5 301 OPENSSL_clear_free(buff, (unsigned int)bufsiz);
0f113f3e
MC
302
303 if (ok >= 0)
304 res = strlen(buf);
305 if (ok == -1) {
306 BIO_printf(bio_err, "User interface error\n");
307 ERR_print_errors(bio_err);
308 OPENSSL_cleanse(buf, (unsigned int)bufsiz);
309 res = 0;
310 }
311 if (ok == -2) {
312 BIO_printf(bio_err, "aborted!\n");
313 OPENSSL_cleanse(buf, (unsigned int)bufsiz);
314 res = 0;
315 }
316 UI_free(ui);
317 OPENSSL_free(prompt);
318 }
923b1857 319#endif
0f113f3e
MC
320 return res;
321}
30b4c272 322
cc696296 323static char *app_get_pass(const char *arg, int keepbio);
a3fe382e 324
cc696296 325int app_passwd(const char *arg1, const char *arg2, char **pass1, char **pass2)
a3fe382e 326{
0f113f3e
MC
327 int same;
328 if (!arg2 || !arg1 || strcmp(arg1, arg2))
329 same = 0;
330 else
331 same = 1;
332 if (arg1) {
7e1b7485 333 *pass1 = app_get_pass(arg1, same);
0f113f3e
MC
334 if (!*pass1)
335 return 0;
336 } else if (pass1)
337 *pass1 = NULL;
338 if (arg2) {
7e1b7485 339 *pass2 = app_get_pass(arg2, same ? 2 : 0);
0f113f3e
MC
340 if (!*pass2)
341 return 0;
342 } else if (pass2)
343 *pass2 = NULL;
344 return 1;
a3fe382e
DSH
345}
346
cc696296 347static char *app_get_pass(const char *arg, int keepbio)
a3fe382e 348{
0f113f3e
MC
349 char *tmp, tpass[APP_PASS_LEN];
350 static BIO *pwdbio = NULL;
351 int i;
86885c28
RS
352
353 if (strncmp(arg, "pass:", 5) == 0)
7644a9ae 354 return OPENSSL_strdup(arg + 5);
86885c28 355 if (strncmp(arg, "env:", 4) == 0) {
0f113f3e
MC
356 tmp = getenv(arg + 4);
357 if (!tmp) {
7e1b7485 358 BIO_printf(bio_err, "Can't read environment variable %s\n", arg + 4);
0f113f3e
MC
359 return NULL;
360 }
7644a9ae 361 return OPENSSL_strdup(tmp);
0f113f3e
MC
362 }
363 if (!keepbio || !pwdbio) {
86885c28 364 if (strncmp(arg, "file:", 5) == 0) {
0f113f3e
MC
365 pwdbio = BIO_new_file(arg + 5, "r");
366 if (!pwdbio) {
7e1b7485 367 BIO_printf(bio_err, "Can't open file %s\n", arg + 5);
0f113f3e
MC
368 return NULL;
369 }
eff7cb41 370#if !defined(_WIN32)
0f113f3e
MC
371 /*
372 * Under _WIN32, which covers even Win64 and CE, file
373 * descriptors referenced by BIO_s_fd are not inherited
374 * by child process and therefore below is not an option.
375 * It could have been an option if bss_fd.c was operating
376 * on real Windows descriptors, such as those obtained
377 * with CreateFile.
378 */
86885c28 379 } else if (strncmp(arg, "fd:", 3) == 0) {
0f113f3e
MC
380 BIO *btmp;
381 i = atoi(arg + 3);
382 if (i >= 0)
383 pwdbio = BIO_new_fd(i, BIO_NOCLOSE);
384 if ((i < 0) || !pwdbio) {
7e1b7485 385 BIO_printf(bio_err, "Can't access file descriptor %s\n", arg + 3);
0f113f3e
MC
386 return NULL;
387 }
388 /*
389 * Can't do BIO_gets on an fd BIO so add a buffering BIO
390 */
391 btmp = BIO_new(BIO_f_buffer());
392 pwdbio = BIO_push(btmp, pwdbio);
393#endif
86885c28 394 } else if (strcmp(arg, "stdin") == 0) {
a60994df 395 pwdbio = dup_bio_in(FORMAT_TEXT);
0f113f3e 396 if (!pwdbio) {
7e1b7485 397 BIO_printf(bio_err, "Can't open BIO for stdin\n");
0f113f3e
MC
398 return NULL;
399 }
400 } else {
7e1b7485 401 BIO_printf(bio_err, "Invalid password argument \"%s\"\n", arg);
0f113f3e
MC
402 return NULL;
403 }
404 }
405 i = BIO_gets(pwdbio, tpass, APP_PASS_LEN);
406 if (keepbio != 1) {
407 BIO_free_all(pwdbio);
408 pwdbio = NULL;
409 }
410 if (i <= 0) {
7e1b7485 411 BIO_printf(bio_err, "Error reading password from BIO\n");
0f113f3e
MC
412 return NULL;
413 }
414 tmp = strchr(tpass, '\n');
415 if (tmp)
416 *tmp = 0;
7644a9ae 417 return OPENSSL_strdup(tpass);
a3fe382e 418}
90ae4673 419
296f54ee 420static CONF *app_load_config_(BIO *in, const char *filename)
cc01d217
RS
421{
422 long errorline = -1;
423 CONF *conf;
424 int i;
cc01d217
RS
425
426 conf = NCONF_new(NULL);
427 i = NCONF_load_bio(conf, in, &errorline);
cc01d217
RS
428 if (i > 0)
429 return conf;
430
431 if (errorline <= 0)
432 BIO_printf(bio_err, "%s: Can't load config file \"%s\"\n",
433 opt_getprog(), filename);
434 else
435 BIO_printf(bio_err, "%s: Error on line %ld of config file \"%s\"\n",
436 opt_getprog(), errorline, filename);
437 NCONF_free(conf);
438 return NULL;
439}
296f54ee
RL
440CONF *app_load_config(const char *filename)
441{
442 BIO *in;
443 CONF *conf;
444
bdd58d98 445 in = bio_open_default(filename, 'r', FORMAT_TEXT);
296f54ee
RL
446 if (in == NULL)
447 return NULL;
448
449 conf = app_load_config_(in, filename);
450 BIO_free(in);
451 return conf;
452}
453CONF *app_load_config_quiet(const char *filename)
454{
455 BIO *in;
456 CONF *conf;
457
bdd58d98 458 in = bio_open_default_quiet(filename, 'r', FORMAT_TEXT);
296f54ee
RL
459 if (in == NULL)
460 return NULL;
461
462 conf = app_load_config_(in, filename);
463 BIO_free(in);
464 return conf;
465}
466
467int app_load_modules(const CONF *config)
468{
469 CONF *to_free = NULL;
470
471 if (config == NULL)
dccd20d1 472 config = to_free = app_load_config_quiet(default_config_file);
296f54ee 473 if (config == NULL)
dccd20d1 474 return 1;
296f54ee
RL
475
476 if (CONF_modules_load(config, NULL, 0) <= 0) {
477 BIO_printf(bio_err, "Error configuring OpenSSL modules\n");
478 ERR_print_errors(bio_err);
479 NCONF_free(to_free);
480 return 0;
481 }
482 NCONF_free(to_free);
483 return 1;
484}
cc01d217 485
7e1b7485 486int add_oid_section(CONF *conf)
0f113f3e
MC
487{
488 char *p;
489 STACK_OF(CONF_VALUE) *sktmp;
490 CONF_VALUE *cnf;
491 int i;
75ebbd9a
RS
492
493 if ((p = NCONF_get_string(conf, NULL, "oid_section")) == NULL) {
0f113f3e
MC
494 ERR_clear_error();
495 return 1;
496 }
75ebbd9a 497 if ((sktmp = NCONF_get_section(conf, p)) == NULL) {
7e1b7485 498 BIO_printf(bio_err, "problem loading oid section %s\n", p);
0f113f3e
MC
499 return 0;
500 }
501 for (i = 0; i < sk_CONF_VALUE_num(sktmp); i++) {
502 cnf = sk_CONF_VALUE_value(sktmp, i);
503 if (OBJ_create(cnf->value, cnf->name, cnf->name) == NID_undef) {
7e1b7485 504 BIO_printf(bio_err, "problem creating object %s=%s\n",
0f113f3e
MC
505 cnf->name, cnf->value);
506 return 0;
507 }
508 }
509 return 1;
431b0cce
RL
510}
511
7e1b7485 512static int load_pkcs12(BIO *in, const char *desc,
0f113f3e
MC
513 pem_password_cb *pem_cb, void *cb_data,
514 EVP_PKEY **pkey, X509 **cert, STACK_OF(X509) **ca)
515{
516 const char *pass;
517 char tpass[PEM_BUFSIZE];
518 int len, ret = 0;
519 PKCS12 *p12;
520 p12 = d2i_PKCS12_bio(in, NULL);
521 if (p12 == NULL) {
7e1b7485 522 BIO_printf(bio_err, "Error loading PKCS12 file for %s\n", desc);
0f113f3e
MC
523 goto die;
524 }
525 /* See if an empty password will do */
526 if (PKCS12_verify_mac(p12, "", 0) || PKCS12_verify_mac(p12, NULL, 0))
527 pass = "";
528 else {
529 if (!pem_cb)
530 pem_cb = (pem_password_cb *)password_callback;
531 len = pem_cb(tpass, PEM_BUFSIZE, 0, cb_data);
532 if (len < 0) {
7e1b7485 533 BIO_printf(bio_err, "Passphrase callback error for %s\n", desc);
0f113f3e
MC
534 goto die;
535 }
536 if (len < PEM_BUFSIZE)
537 tpass[len] = 0;
538 if (!PKCS12_verify_mac(p12, tpass, len)) {
7e1b7485 539 BIO_printf(bio_err,
0f113f3e
MC
540 "Mac verify error (wrong password?) in PKCS12 file for %s\n",
541 desc);
542 goto die;
543 }
544 pass = tpass;
545 }
546 ret = PKCS12_parse(p12, pass, pkey, cert, ca);
547 die:
e0e920b1 548 PKCS12_free(p12);
0f113f3e
MC
549 return ret;
550}
e90fadda 551
f9e55034 552#if !defined(OPENSSL_NO_OCSP) && !defined(OPENSSL_NO_SOCK)
5d322287 553static int load_cert_crl_http(const char *url, X509 **pcert, X509_CRL **pcrl)
0f113f3e
MC
554{
555 char *host = NULL, *port = NULL, *path = NULL;
556 BIO *bio = NULL;
557 OCSP_REQ_CTX *rctx = NULL;
558 int use_ssl, rv = 0;
559 if (!OCSP_parse_url(url, &host, &port, &path, &use_ssl))
560 goto err;
561 if (use_ssl) {
7e1b7485 562 BIO_puts(bio_err, "https not supported\n");
0f113f3e
MC
563 goto err;
564 }
565 bio = BIO_new_connect(host);
566 if (!bio || !BIO_set_conn_port(bio, port))
567 goto err;
568 rctx = OCSP_REQ_CTX_new(bio, 1024);
96487cdd 569 if (rctx == NULL)
0f113f3e
MC
570 goto err;
571 if (!OCSP_REQ_CTX_http(rctx, "GET", path))
572 goto err;
573 if (!OCSP_REQ_CTX_add1_header(rctx, "Host", host))
574 goto err;
575 if (pcert) {
576 do {
577 rv = X509_http_nbio(rctx, pcert);
7e1b7485 578 } while (rv == -1);
0f113f3e
MC
579 } else {
580 do {
581 rv = X509_CRL_http_nbio(rctx, pcrl);
582 } while (rv == -1);
583 }
584
585 err:
25aaa98a
RS
586 OPENSSL_free(host);
587 OPENSSL_free(path);
588 OPENSSL_free(port);
0f113f3e
MC
589 if (bio)
590 BIO_free_all(bio);
895cba19 591 OCSP_REQ_CTX_free(rctx);
0f113f3e 592 if (rv != 1) {
7e1b7485
RS
593 BIO_printf(bio_err, "Error loading %s from %s\n",
594 pcert ? "certificate" : "CRL", url);
0f113f3e
MC
595 ERR_print_errors(bio_err);
596 }
597 return rv;
598}
5d322287 599#endif
95ea5318 600
a773b52a 601X509 *load_cert(const char *file, int format, const char *cert_descrip)
0f113f3e
MC
602{
603 X509 *x = NULL;
604 BIO *cert;
605
606 if (format == FORMAT_HTTP) {
f9e55034 607#if !defined(OPENSSL_NO_OCSP) && !defined(OPENSSL_NO_SOCK)
7e1b7485 608 load_cert_crl_http(file, &x, NULL);
5d322287 609#endif
0f113f3e
MC
610 return x;
611 }
612
0f113f3e 613 if (file == NULL) {
7e1b7485 614 unbuffer(stdin);
a60994df 615 cert = dup_bio_in(format);
7e1b7485 616 } else
bdd58d98 617 cert = bio_open_default(file, 'r', format);
7e1b7485
RS
618 if (cert == NULL)
619 goto end;
0f113f3e
MC
620
621 if (format == FORMAT_ASN1)
622 x = d2i_X509_bio(cert, NULL);
0bc2f365 623 else if (format == FORMAT_PEM)
0f113f3e
MC
624 x = PEM_read_bio_X509_AUX(cert, NULL,
625 (pem_password_cb *)password_callback, NULL);
626 else if (format == FORMAT_PKCS12) {
7e1b7485 627 if (!load_pkcs12(cert, cert_descrip, NULL, NULL, NULL, &x, NULL))
0f113f3e
MC
628 goto end;
629 } else {
7e1b7485 630 BIO_printf(bio_err, "bad input format specified for %s\n", cert_descrip);
0f113f3e
MC
631 goto end;
632 }
633 end:
634 if (x == NULL) {
7e1b7485
RS
635 BIO_printf(bio_err, "unable to load certificate\n");
636 ERR_print_errors(bio_err);
0f113f3e 637 }
25aaa98a 638 BIO_free(cert);
0f113f3e
MC
639 return (x);
640}
90ae4673 641
0090a686 642X509_CRL *load_crl(const char *infile, int format)
0f113f3e
MC
643{
644 X509_CRL *x = NULL;
645 BIO *in = NULL;
646
647 if (format == FORMAT_HTTP) {
f9e55034 648#if !defined(OPENSSL_NO_OCSP) && !defined(OPENSSL_NO_SOCK)
7e1b7485 649 load_cert_crl_http(infile, NULL, &x);
5d322287 650#endif
0f113f3e
MC
651 return x;
652 }
653
bdd58d98 654 in = bio_open_default(infile, 'r', format);
7e1b7485 655 if (in == NULL)
0f113f3e 656 goto end;
0f113f3e
MC
657 if (format == FORMAT_ASN1)
658 x = d2i_X509_CRL_bio(in, NULL);
659 else if (format == FORMAT_PEM)
660 x = PEM_read_bio_X509_CRL(in, NULL, NULL, NULL);
661 else {
662 BIO_printf(bio_err, "bad input format specified for input crl\n");
663 goto end;
664 }
665 if (x == NULL) {
666 BIO_printf(bio_err, "unable to load CRL\n");
667 ERR_print_errors(bio_err);
668 goto end;
669 }
fdb78f3d 670
0f113f3e
MC
671 end:
672 BIO_free(in);
673 return (x);
674}
fdb78f3d 675
7e1b7485 676EVP_PKEY *load_key(const char *file, int format, int maybe_stdin,
0f113f3e
MC
677 const char *pass, ENGINE *e, const char *key_descrip)
678{
679 BIO *key = NULL;
680 EVP_PKEY *pkey = NULL;
681 PW_CB_DATA cb_data;
682
683 cb_data.password = pass;
684 cb_data.prompt_info = file;
685
686 if (file == NULL && (!maybe_stdin || format == FORMAT_ENGINE)) {
7e1b7485 687 BIO_printf(bio_err, "no keyfile specified\n");
0f113f3e
MC
688 goto end;
689 }
0f113f3e 690 if (format == FORMAT_ENGINE) {
0c20802c 691 if (e == NULL)
7e1b7485 692 BIO_printf(bio_err, "no engine specified\n");
0f113f3e 693 else {
0c20802c 694#ifndef OPENSSL_NO_ENGINE
0f113f3e 695 pkey = ENGINE_load_private_key(e, file, ui_method, &cb_data);
0c20802c 696 if (pkey == NULL) {
7e1b7485
RS
697 BIO_printf(bio_err, "cannot load %s from engine\n", key_descrip);
698 ERR_print_errors(bio_err);
0f113f3e 699 }
0c20802c
VD
700#else
701 BIO_printf(bio_err, "engines not supported\n");
702#endif
0f113f3e
MC
703 }
704 goto end;
705 }
0f113f3e 706 if (file == NULL && maybe_stdin) {
7e1b7485 707 unbuffer(stdin);
a60994df 708 key = dup_bio_in(format);
7e1b7485 709 } else
bdd58d98 710 key = bio_open_default(file, 'r', format);
7e1b7485 711 if (key == NULL)
0f113f3e 712 goto end;
0f113f3e
MC
713 if (format == FORMAT_ASN1) {
714 pkey = d2i_PrivateKey_bio(key, NULL);
715 } else if (format == FORMAT_PEM) {
716 pkey = PEM_read_bio_PrivateKey(key, NULL,
717 (pem_password_cb *)password_callback,
718 &cb_data);
719 }
0f113f3e 720 else if (format == FORMAT_PKCS12) {
7e1b7485 721 if (!load_pkcs12(key, key_descrip,
0f113f3e
MC
722 (pem_password_cb *)password_callback, &cb_data,
723 &pkey, NULL, NULL))
724 goto end;
725 }
00a37b5a 726#if !defined(OPENSSL_NO_RSA) && !defined(OPENSSL_NO_DSA) && !defined (OPENSSL_NO_RC4)
0f113f3e
MC
727 else if (format == FORMAT_MSBLOB)
728 pkey = b2i_PrivateKey_bio(key);
729 else if (format == FORMAT_PVK)
730 pkey = b2i_PVK_bio(key, (pem_password_cb *)password_callback,
731 &cb_data);
732#endif
733 else {
7e1b7485 734 BIO_printf(bio_err, "bad input format specified for key file\n");
0f113f3e
MC
735 goto end;
736 }
90ae4673 737 end:
25aaa98a 738 BIO_free(key);
0f113f3e 739 if (pkey == NULL) {
7e1b7485
RS
740 BIO_printf(bio_err, "unable to load %s\n", key_descrip);
741 ERR_print_errors(bio_err);
0f113f3e
MC
742 }
743 return (pkey);
744}
90ae4673 745
7e1b7485 746EVP_PKEY *load_pubkey(const char *file, int format, int maybe_stdin,
0f113f3e
MC
747 const char *pass, ENGINE *e, const char *key_descrip)
748{
749 BIO *key = NULL;
750 EVP_PKEY *pkey = NULL;
751 PW_CB_DATA cb_data;
752
753 cb_data.password = pass;
754 cb_data.prompt_info = file;
755
756 if (file == NULL && (!maybe_stdin || format == FORMAT_ENGINE)) {
7e1b7485 757 BIO_printf(bio_err, "no keyfile specified\n");
0f113f3e
MC
758 goto end;
759 }
0f113f3e 760 if (format == FORMAT_ENGINE) {
0c20802c 761 if (e == NULL)
0f113f3e 762 BIO_printf(bio_err, "no engine specified\n");
0c20802c
VD
763 else {
764#ifndef OPENSSL_NO_ENGINE
0f113f3e 765 pkey = ENGINE_load_public_key(e, file, ui_method, &cb_data);
0c20802c
VD
766 if (pkey == NULL) {
767 BIO_printf(bio_err, "cannot load %s from engine\n", key_descrip);
768 ERR_print_errors(bio_err);
769 }
770#else
771 BIO_printf(bio_err, "engines not supported\n");
772#endif
773 }
0f113f3e
MC
774 goto end;
775 }
0f113f3e 776 if (file == NULL && maybe_stdin) {
7e1b7485 777 unbuffer(stdin);
a60994df 778 key = dup_bio_in(format);
7e1b7485 779 } else
bdd58d98 780 key = bio_open_default(file, 'r', format);
7e1b7485 781 if (key == NULL)
0f113f3e 782 goto end;
0f113f3e
MC
783 if (format == FORMAT_ASN1) {
784 pkey = d2i_PUBKEY_bio(key, NULL);
785 }
0f113f3e 786 else if (format == FORMAT_ASN1RSA) {
0c20802c 787#ifndef OPENSSL_NO_RSA
0f113f3e
MC
788 RSA *rsa;
789 rsa = d2i_RSAPublicKey_bio(key, NULL);
790 if (rsa) {
791 pkey = EVP_PKEY_new();
96487cdd 792 if (pkey != NULL)
0f113f3e
MC
793 EVP_PKEY_set1_RSA(pkey, rsa);
794 RSA_free(rsa);
795 } else
0c20802c
VD
796#else
797 BIO_printf(bio_err, "RSA keys not supported\n");
798#endif
0f113f3e
MC
799 pkey = NULL;
800 } else if (format == FORMAT_PEMRSA) {
0c20802c 801#ifndef OPENSSL_NO_RSA
0f113f3e
MC
802 RSA *rsa;
803 rsa = PEM_read_bio_RSAPublicKey(key, NULL,
804 (pem_password_cb *)password_callback,
805 &cb_data);
96487cdd 806 if (rsa != NULL) {
0f113f3e 807 pkey = EVP_PKEY_new();
96487cdd 808 if (pkey != NULL)
0f113f3e
MC
809 EVP_PKEY_set1_RSA(pkey, rsa);
810 RSA_free(rsa);
811 } else
0c20802c
VD
812#else
813 BIO_printf(bio_err, "RSA keys not supported\n");
814#endif
0f113f3e
MC
815 pkey = NULL;
816 }
0f113f3e
MC
817 else if (format == FORMAT_PEM) {
818 pkey = PEM_read_bio_PUBKEY(key, NULL,
819 (pem_password_cb *)password_callback,
820 &cb_data);
821 }
d4f0339c 822#if !defined(OPENSSL_NO_RSA) && !defined(OPENSSL_NO_DSA)
0f113f3e
MC
823 else if (format == FORMAT_MSBLOB)
824 pkey = b2i_PublicKey_bio(key);
d4f0339c 825#endif
bd08a2bd 826 end:
25aaa98a 827 BIO_free(key);
0f113f3e 828 if (pkey == NULL)
7e1b7485 829 BIO_printf(bio_err, "unable to load %s\n", key_descrip);
0f113f3e
MC
830 return (pkey);
831}
bd08a2bd 832
7e1b7485 833static int load_certs_crls(const char *file, int format,
a773b52a 834 const char *pass, const char *desc,
0f113f3e
MC
835 STACK_OF(X509) **pcerts,
836 STACK_OF(X509_CRL) **pcrls)
837{
838 int i;
839 BIO *bio;
840 STACK_OF(X509_INFO) *xis = NULL;
841 X509_INFO *xi;
842 PW_CB_DATA cb_data;
843 int rv = 0;
844
845 cb_data.password = pass;
846 cb_data.prompt_info = file;
847
848 if (format != FORMAT_PEM) {
7e1b7485 849 BIO_printf(bio_err, "bad input format specified for %s\n", desc);
0f113f3e
MC
850 return 0;
851 }
852
bdd58d98 853 bio = bio_open_default(file, 'r', FORMAT_PEM);
7e1b7485 854 if (bio == NULL)
0f113f3e 855 return 0;
0f113f3e
MC
856
857 xis = PEM_X509_INFO_read_bio(bio, NULL,
858 (pem_password_cb *)password_callback,
859 &cb_data);
860
861 BIO_free(bio);
862
0996dc54 863 if (pcerts && *pcerts == NULL) {
0f113f3e
MC
864 *pcerts = sk_X509_new_null();
865 if (!*pcerts)
866 goto end;
867 }
868
0996dc54 869 if (pcrls && *pcrls == NULL) {
0f113f3e
MC
870 *pcrls = sk_X509_CRL_new_null();
871 if (!*pcrls)
872 goto end;
873 }
874
875 for (i = 0; i < sk_X509_INFO_num(xis); i++) {
876 xi = sk_X509_INFO_value(xis, i);
877 if (xi->x509 && pcerts) {
878 if (!sk_X509_push(*pcerts, xi->x509))
879 goto end;
880 xi->x509 = NULL;
881 }
882 if (xi->crl && pcrls) {
883 if (!sk_X509_CRL_push(*pcrls, xi->crl))
884 goto end;
885 xi->crl = NULL;
886 }
887 }
888
889 if (pcerts && sk_X509_num(*pcerts) > 0)
890 rv = 1;
891
892 if (pcrls && sk_X509_CRL_num(*pcrls) > 0)
893 rv = 1;
894
895 end:
896
222561fe 897 sk_X509_INFO_pop_free(xis, X509_INFO_free);
0f113f3e
MC
898
899 if (rv == 0) {
900 if (pcerts) {
901 sk_X509_pop_free(*pcerts, X509_free);
902 *pcerts = NULL;
903 }
904 if (pcrls) {
905 sk_X509_CRL_pop_free(*pcrls, X509_CRL_free);
906 *pcrls = NULL;
907 }
7e1b7485 908 BIO_printf(bio_err, "unable to load %s\n",
0f113f3e 909 pcerts ? "certificates" : "CRLs");
7e1b7485 910 ERR_print_errors(bio_err);
0f113f3e
MC
911 }
912 return rv;
913}
90ae4673 914
68dc6824
RS
915void* app_malloc(int sz, const char *what)
916{
917 void *vp = OPENSSL_malloc(sz);
918
919 if (vp == NULL) {
920 BIO_printf(bio_err, "%s: Could not allocate %d bytes for %s\n",
921 opt_getprog(), sz, what);
922 ERR_print_errors(bio_err);
923 exit(1);
924 }
925 return vp;
926}
927
0996dc54 928/*
6b4a77f5 929 * Initialize or extend, if *certs != NULL, a certificate stack.
0996dc54
VD
930 */
931int load_certs(const char *file, STACK_OF(X509) **certs, int format,
a773b52a 932 const char *pass, const char *desc)
0f113f3e 933{
a773b52a 934 return load_certs_crls(file, format, pass, desc, certs, NULL);
0f113f3e 935}
245d2ee3 936
0996dc54 937/*
6b4a77f5 938 * Initialize or extend, if *crls != NULL, a certificate stack.
0996dc54
VD
939 */
940int load_crls(const char *file, STACK_OF(X509_CRL) **crls, int format,
a773b52a 941 const char *pass, const char *desc)
0f113f3e 942{
a773b52a 943 return load_certs_crls(file, format, pass, desc, NULL, crls);
0f113f3e
MC
944}
945
946#define X509V3_EXT_UNKNOWN_MASK (0xfL << 16)
8ca533e3 947/* Return error for unknown extensions */
0f113f3e 948#define X509V3_EXT_DEFAULT 0
8ca533e3 949/* Print error for unknown extensions */
0f113f3e 950#define X509V3_EXT_ERROR_UNKNOWN (1L << 16)
8ca533e3 951/* ASN1 parse unknown extensions */
0f113f3e 952#define X509V3_EXT_PARSE_UNKNOWN (2L << 16)
8ca533e3 953/* BIO_dump unknown extensions */
0f113f3e 954#define X509V3_EXT_DUMP_UNKNOWN (3L << 16)
8ca533e3 955
535d79da 956#define X509_FLAG_CA (X509_FLAG_NO_ISSUER | X509_FLAG_NO_PUBKEY | \
0f113f3e 957 X509_FLAG_NO_HEADER | X509_FLAG_NO_VERSION)
535d79da 958
8ca533e3
DSH
959int set_cert_ex(unsigned long *flags, const char *arg)
960{
0f113f3e
MC
961 static const NAME_EX_TBL cert_tbl[] = {
962 {"compatible", X509_FLAG_COMPAT, 0xffffffffl},
963 {"ca_default", X509_FLAG_CA, 0xffffffffl},
964 {"no_header", X509_FLAG_NO_HEADER, 0},
965 {"no_version", X509_FLAG_NO_VERSION, 0},
966 {"no_serial", X509_FLAG_NO_SERIAL, 0},
967 {"no_signame", X509_FLAG_NO_SIGNAME, 0},
968 {"no_validity", X509_FLAG_NO_VALIDITY, 0},
969 {"no_subject", X509_FLAG_NO_SUBJECT, 0},
970 {"no_issuer", X509_FLAG_NO_ISSUER, 0},
971 {"no_pubkey", X509_FLAG_NO_PUBKEY, 0},
972 {"no_extensions", X509_FLAG_NO_EXTENSIONS, 0},
973 {"no_sigdump", X509_FLAG_NO_SIGDUMP, 0},
974 {"no_aux", X509_FLAG_NO_AUX, 0},
975 {"no_attributes", X509_FLAG_NO_ATTRIBUTES, 0},
976 {"ext_default", X509V3_EXT_DEFAULT, X509V3_EXT_UNKNOWN_MASK},
977 {"ext_error", X509V3_EXT_ERROR_UNKNOWN, X509V3_EXT_UNKNOWN_MASK},
978 {"ext_parse", X509V3_EXT_PARSE_UNKNOWN, X509V3_EXT_UNKNOWN_MASK},
979 {"ext_dump", X509V3_EXT_DUMP_UNKNOWN, X509V3_EXT_UNKNOWN_MASK},
980 {NULL, 0, 0}
981 };
982 return set_multi_opts(flags, arg, cert_tbl);
8ca533e3 983}
a657546f
DSH
984
985int set_name_ex(unsigned long *flags, const char *arg)
986{
0f113f3e
MC
987 static const NAME_EX_TBL ex_tbl[] = {
988 {"esc_2253", ASN1_STRFLGS_ESC_2253, 0},
bc776510 989 {"esc_2254", ASN1_STRFLGS_ESC_2254, 0},
0f113f3e
MC
990 {"esc_ctrl", ASN1_STRFLGS_ESC_CTRL, 0},
991 {"esc_msb", ASN1_STRFLGS_ESC_MSB, 0},
992 {"use_quote", ASN1_STRFLGS_ESC_QUOTE, 0},
993 {"utf8", ASN1_STRFLGS_UTF8_CONVERT, 0},
994 {"ignore_type", ASN1_STRFLGS_IGNORE_TYPE, 0},
995 {"show_type", ASN1_STRFLGS_SHOW_TYPE, 0},
996 {"dump_all", ASN1_STRFLGS_DUMP_ALL, 0},
997 {"dump_nostr", ASN1_STRFLGS_DUMP_UNKNOWN, 0},
998 {"dump_der", ASN1_STRFLGS_DUMP_DER, 0},
999 {"compat", XN_FLAG_COMPAT, 0xffffffffL},
1000 {"sep_comma_plus", XN_FLAG_SEP_COMMA_PLUS, XN_FLAG_SEP_MASK},
1001 {"sep_comma_plus_space", XN_FLAG_SEP_CPLUS_SPC, XN_FLAG_SEP_MASK},
1002 {"sep_semi_plus_space", XN_FLAG_SEP_SPLUS_SPC, XN_FLAG_SEP_MASK},
1003 {"sep_multiline", XN_FLAG_SEP_MULTILINE, XN_FLAG_SEP_MASK},
1004 {"dn_rev", XN_FLAG_DN_REV, 0},
1005 {"nofname", XN_FLAG_FN_NONE, XN_FLAG_FN_MASK},
1006 {"sname", XN_FLAG_FN_SN, XN_FLAG_FN_MASK},
1007 {"lname", XN_FLAG_FN_LN, XN_FLAG_FN_MASK},
1008 {"align", XN_FLAG_FN_ALIGN, 0},
1009 {"oid", XN_FLAG_FN_OID, XN_FLAG_FN_MASK},
1010 {"space_eq", XN_FLAG_SPC_EQ, 0},
1011 {"dump_unknown", XN_FLAG_DUMP_UNKNOWN_FIELDS, 0},
1012 {"RFC2253", XN_FLAG_RFC2253, 0xffffffffL},
1013 {"oneline", XN_FLAG_ONELINE, 0xffffffffL},
1014 {"multiline", XN_FLAG_MULTILINE, 0xffffffffL},
1015 {"ca_default", XN_FLAG_MULTILINE, 0xffffffffL},
1016 {NULL, 0, 0}
1017 };
03706afa
DSH
1018 if (set_multi_opts(flags, arg, ex_tbl) == 0)
1019 return 0;
1020 if ((*flags & XN_FLAG_SEP_MASK) == 0)
1021 *flags |= XN_FLAG_SEP_CPLUS_SPC;
1022 return 1;
535d79da
DSH
1023}
1024
791bd0cd
DSH
1025int set_ext_copy(int *copy_type, const char *arg)
1026{
86885c28 1027 if (strcasecmp(arg, "none") == 0)
0f113f3e 1028 *copy_type = EXT_COPY_NONE;
86885c28 1029 else if (strcasecmp(arg, "copy") == 0)
0f113f3e 1030 *copy_type = EXT_COPY_ADD;
86885c28 1031 else if (strcasecmp(arg, "copyall") == 0)
0f113f3e
MC
1032 *copy_type = EXT_COPY_ALL;
1033 else
1034 return 0;
1035 return 1;
791bd0cd
DSH
1036}
1037
1038int copy_extensions(X509 *x, X509_REQ *req, int copy_type)
1039{
0f113f3e
MC
1040 STACK_OF(X509_EXTENSION) *exts = NULL;
1041 X509_EXTENSION *ext, *tmpext;
1042 ASN1_OBJECT *obj;
1043 int i, idx, ret = 0;
1044 if (!x || !req || (copy_type == EXT_COPY_NONE))
1045 return 1;
1046 exts = X509_REQ_get_extensions(req);
1047
1048 for (i = 0; i < sk_X509_EXTENSION_num(exts); i++) {
1049 ext = sk_X509_EXTENSION_value(exts, i);
1050 obj = X509_EXTENSION_get_object(ext);
1051 idx = X509_get_ext_by_OBJ(x, obj, -1);
1052 /* Does extension exist? */
1053 if (idx != -1) {
1054 /* If normal copy don't override existing extension */
1055 if (copy_type == EXT_COPY_ADD)
1056 continue;
1057 /* Delete all extensions of same type */
1058 do {
1059 tmpext = X509_get_ext(x, idx);
1060 X509_delete_ext(x, idx);
1061 X509_EXTENSION_free(tmpext);
1062 idx = X509_get_ext_by_OBJ(x, obj, -1);
1063 } while (idx != -1);
1064 }
1065 if (!X509_add_ext(x, ext, -1))
1066 goto end;
1067 }
1068
1069 ret = 1;
1070
1071 end:
1072
1073 sk_X509_EXTENSION_pop_free(exts, X509_EXTENSION_free);
1074
1075 return ret;
1076}
1077
1078static int set_multi_opts(unsigned long *flags, const char *arg,
1079 const NAME_EX_TBL * in_tbl)
1080{
1081 STACK_OF(CONF_VALUE) *vals;
1082 CONF_VALUE *val;
1083 int i, ret = 1;
1084 if (!arg)
1085 return 0;
1086 vals = X509V3_parse_list(arg);
1087 for (i = 0; i < sk_CONF_VALUE_num(vals); i++) {
1088 val = sk_CONF_VALUE_value(vals, i);
1089 if (!set_table_opts(flags, val->name, in_tbl))
1090 ret = 0;
1091 }
1092 sk_CONF_VALUE_pop_free(vals, X509V3_conf_free);
1093 return ret;
1094}
1095
1096static int set_table_opts(unsigned long *flags, const char *arg,
1097 const NAME_EX_TBL * in_tbl)
1098{
1099 char c;
1100 const NAME_EX_TBL *ptbl;
1101 c = arg[0];
1102
1103 if (c == '-') {
1104 c = 0;
1105 arg++;
1106 } else if (c == '+') {
1107 c = 1;
1108 arg++;
1109 } else
1110 c = 1;
1111
1112 for (ptbl = in_tbl; ptbl->name; ptbl++) {
86885c28 1113 if (strcasecmp(arg, ptbl->name) == 0) {
0f113f3e
MC
1114 *flags &= ~ptbl->mask;
1115 if (c)
1116 *flags |= ptbl->flag;
1117 else
1118 *flags &= ~ptbl->flag;
1119 return 1;
1120 }
1121 }
1122 return 0;
1123}
1124
1125void print_name(BIO *out, const char *title, X509_NAME *nm,
1126 unsigned long lflags)
1127{
1128 char *buf;
1129 char mline = 0;
1130 int indent = 0;
1131
1132 if (title)
1133 BIO_puts(out, title);
1134 if ((lflags & XN_FLAG_SEP_MASK) == XN_FLAG_SEP_MULTILINE) {
1135 mline = 1;
1136 indent = 4;
1137 }
1138 if (lflags == XN_FLAG_COMPAT) {
1139 buf = X509_NAME_oneline(nm, 0, 0);
1140 BIO_puts(out, buf);
1141 BIO_puts(out, "\n");
1142 OPENSSL_free(buf);
1143 } else {
1144 if (mline)
1145 BIO_puts(out, "\n");
1146 X509_NAME_print_ex(out, nm, indent, lflags);
1147 BIO_puts(out, "\n");
1148 }
a657546f
DSH
1149}
1150
2ac6115d 1151void print_bignum_var(BIO *out, const BIGNUM *in, const char *var,
7e1b7485 1152 int len, unsigned char *buffer)
81f169e9 1153{
7e1b7485
RS
1154 BIO_printf(out, " static unsigned char %s_%d[] = {", var, len);
1155 if (BN_is_zero(in))
1156 BIO_printf(out, "\n\t0x00");
1157 else {
1158 int i, l;
1159
1160 l = BN_bn2bin(in, buffer);
1161 for (i = 0; i < l; i++) {
1162 if ((i % 10) == 0)
1163 BIO_printf(out, "\n\t");
1164 if (i < l - 1)
1165 BIO_printf(out, "0x%02X, ", buffer[i]);
1166 else
1167 BIO_printf(out, "0x%02X", buffer[i]);
1168 }
1169 }
1170 BIO_printf(out, "\n };\n");
1171}
1172void print_array(BIO *out, const char* title, int len, const unsigned char* d)
1173{
1174 int i;
1175
1176 BIO_printf(out, "unsigned char %s[%d] = {", title, len);
1177 for (i = 0; i < len; i++) {
1178 if ((i % 10) == 0)
1179 BIO_printf(out, "\n ");
1180 if (i < len - 1)
1181 BIO_printf(out, "0x%02X, ", d[i]);
1182 else
1183 BIO_printf(out, "0x%02X", d[i]);
1184 }
1185 BIO_printf(out, "\n};\n");
1186}
1187
cc696296 1188X509_STORE *setup_verify(const char *CAfile, const char *CApath, int noCAfile, int noCApath)
7e1b7485
RS
1189{
1190 X509_STORE *store = X509_STORE_new();
0f113f3e 1191 X509_LOOKUP *lookup;
7e1b7485 1192
96487cdd 1193 if (store == NULL)
0f113f3e 1194 goto end;
2b6bcb70 1195
e8aa8b6c 1196 if (CAfile != NULL || !noCAfile) {
2b6bcb70
MC
1197 lookup = X509_STORE_add_lookup(store, X509_LOOKUP_file());
1198 if (lookup == NULL)
0f113f3e 1199 goto end;
2b6bcb70
MC
1200 if (CAfile) {
1201 if (!X509_LOOKUP_load_file(lookup, CAfile, X509_FILETYPE_PEM)) {
1202 BIO_printf(bio_err, "Error loading file %s\n", CAfile);
1203 goto end;
1204 }
1205 } else
1206 X509_LOOKUP_load_file(lookup, NULL, X509_FILETYPE_DEFAULT);
1207 }
0f113f3e 1208
e8aa8b6c 1209 if (CApath != NULL || !noCApath) {
2b6bcb70
MC
1210 lookup = X509_STORE_add_lookup(store, X509_LOOKUP_hash_dir());
1211 if (lookup == NULL)
0f113f3e 1212 goto end;
2b6bcb70
MC
1213 if (CApath) {
1214 if (!X509_LOOKUP_add_dir(lookup, CApath, X509_FILETYPE_PEM)) {
1215 BIO_printf(bio_err, "Error loading directory %s\n", CApath);
1216 goto end;
1217 }
1218 } else
1219 X509_LOOKUP_add_dir(lookup, NULL, X509_FILETYPE_DEFAULT);
1220 }
0f113f3e
MC
1221
1222 ERR_clear_error();
1223 return store;
1224 end:
1225 X509_STORE_free(store);
1226 return NULL;
81f169e9 1227}
531d630b 1228
0b13e9f0 1229#ifndef OPENSSL_NO_ENGINE
e1a00d7d 1230/* Try to load an engine in a shareable library */
a773b52a 1231static ENGINE *try_load_engine(const char *engine)
0f113f3e
MC
1232{
1233 ENGINE *e = ENGINE_by_id("dynamic");
1234 if (e) {
1235 if (!ENGINE_ctrl_cmd_string(e, "SO_PATH", engine, 0)
1236 || !ENGINE_ctrl_cmd_string(e, "LOAD", NULL, 0)) {
1237 ENGINE_free(e);
1238 e = NULL;
1239 }
1240 }
1241 return e;
1242}
e1a00d7d 1243
7e1b7485 1244ENGINE *setup_engine(const char *engine, int debug)
0f113f3e
MC
1245{
1246 ENGINE *e = NULL;
1247
1248 if (engine) {
1249 if (strcmp(engine, "auto") == 0) {
7e1b7485 1250 BIO_printf(bio_err, "enabling auto ENGINE support\n");
0f113f3e
MC
1251 ENGINE_register_all_complete();
1252 return NULL;
1253 }
1254 if ((e = ENGINE_by_id(engine)) == NULL
a773b52a 1255 && (e = try_load_engine(engine)) == NULL) {
7e1b7485
RS
1256 BIO_printf(bio_err, "invalid engine \"%s\"\n", engine);
1257 ERR_print_errors(bio_err);
0f113f3e
MC
1258 return NULL;
1259 }
1260 if (debug) {
7e1b7485 1261 ENGINE_ctrl(e, ENGINE_CTRL_SET_LOGSTREAM, 0, bio_err, 0);
531d630b 1262 }
0f113f3e
MC
1263 ENGINE_ctrl_cmd(e, "SET_USER_INTERFACE", 0, ui_method, 0, 1);
1264 if (!ENGINE_set_default(e, ENGINE_METHOD_ALL)) {
7e1b7485
RS
1265 BIO_printf(bio_err, "can't use that engine\n");
1266 ERR_print_errors(bio_err);
0f113f3e
MC
1267 ENGINE_free(e);
1268 return NULL;
1269 }
1270
7e1b7485 1271 BIO_printf(bio_err, "engine \"%s\" set.\n", ENGINE_get_id(e));
0f113f3e
MC
1272
1273 /* Free our "structural" reference. */
1274 ENGINE_free(e);
1275 }
1276 return e;
1277}
0b13e9f0 1278#endif
3647bee2 1279
c869da88 1280static unsigned long index_serial_hash(const OPENSSL_CSTRING *a)
0f113f3e
MC
1281{
1282 const char *n;
f85b68cd 1283
0f113f3e
MC
1284 n = a[DB_serial];
1285 while (*n == '0')
1286 n++;
739a1eb1 1287 return OPENSSL_LH_strhash(n);
0f113f3e 1288}
f85b68cd 1289
0f113f3e
MC
1290static int index_serial_cmp(const OPENSSL_CSTRING *a,
1291 const OPENSSL_CSTRING *b)
1292{
1293 const char *aa, *bb;
f85b68cd 1294
0f113f3e
MC
1295 for (aa = a[DB_serial]; *aa == '0'; aa++) ;
1296 for (bb = b[DB_serial]; *bb == '0'; bb++) ;
1297 return (strcmp(aa, bb));
1298}
f85b68cd
RL
1299
1300static int index_name_qual(char **a)
0f113f3e
MC
1301{
1302 return (a[0][0] == 'V');
1303}
f85b68cd 1304
c869da88 1305static unsigned long index_name_hash(const OPENSSL_CSTRING *a)
0f113f3e 1306{
739a1eb1 1307 return OPENSSL_LH_strhash(a[DB_name]);
0f113f3e 1308}
f85b68cd 1309
c869da88 1310int index_name_cmp(const OPENSSL_CSTRING *a, const OPENSSL_CSTRING *b)
0f113f3e
MC
1311{
1312 return (strcmp(a[DB_name], b[DB_name]));
1313}
f85b68cd 1314
c869da88
DSH
1315static IMPLEMENT_LHASH_HASH_FN(index_serial, OPENSSL_CSTRING)
1316static IMPLEMENT_LHASH_COMP_FN(index_serial, OPENSSL_CSTRING)
1317static IMPLEMENT_LHASH_HASH_FN(index_name, OPENSSL_CSTRING)
1318static IMPLEMENT_LHASH_COMP_FN(index_name, OPENSSL_CSTRING)
f85b68cd
RL
1319#undef BSIZE
1320#define BSIZE 256
cc696296 1321BIGNUM *load_serial(const char *serialfile, int create, ASN1_INTEGER **retai)
0f113f3e
MC
1322{
1323 BIO *in = NULL;
1324 BIGNUM *ret = NULL;
68b00c23 1325 char buf[1024];
0f113f3e
MC
1326 ASN1_INTEGER *ai = NULL;
1327
1328 ai = ASN1_INTEGER_new();
1329 if (ai == NULL)
1330 goto err;
1331
7e1b7485
RS
1332 in = BIO_new_file(serialfile, "r");
1333 if (in == NULL) {
0f113f3e
MC
1334 if (!create) {
1335 perror(serialfile);
1336 goto err;
0f113f3e 1337 }
7e1b7485
RS
1338 ERR_clear_error();
1339 ret = BN_new();
1340 if (ret == NULL || !rand_serial(ret, ai))
1341 BIO_printf(bio_err, "Out of memory\n");
0f113f3e
MC
1342 } else {
1343 if (!a2i_ASN1_INTEGER(in, ai, buf, 1024)) {
1344 BIO_printf(bio_err, "unable to load number from %s\n",
1345 serialfile);
1346 goto err;
1347 }
1348 ret = ASN1_INTEGER_to_BN(ai, NULL);
1349 if (ret == NULL) {
1350 BIO_printf(bio_err,
1351 "error converting number from bin to BIGNUM\n");
1352 goto err;
1353 }
1354 }
1355
1356 if (ret && retai) {
1357 *retai = ai;
1358 ai = NULL;
1359 }
f85b68cd 1360 err:
ca3a82c3 1361 BIO_free(in);
2ace7450 1362 ASN1_INTEGER_free(ai);
0f113f3e
MC
1363 return (ret);
1364}
1365
cc696296 1366int save_serial(const char *serialfile, const char *suffix, const BIGNUM *serial,
0f113f3e
MC
1367 ASN1_INTEGER **retai)
1368{
1369 char buf[1][BSIZE];
1370 BIO *out = NULL;
1371 int ret = 0;
1372 ASN1_INTEGER *ai = NULL;
1373 int j;
1374
1375 if (suffix == NULL)
1376 j = strlen(serialfile);
1377 else
1378 j = strlen(serialfile) + strlen(suffix) + 1;
1379 if (j >= BSIZE) {
1380 BIO_printf(bio_err, "file name too long\n");
1381 goto err;
1382 }
1383
1384 if (suffix == NULL)
7644a9ae 1385 OPENSSL_strlcpy(buf[0], serialfile, BSIZE);
0f113f3e 1386 else {
4c771796 1387#ifndef OPENSSL_SYS_VMS
0f113f3e 1388 j = BIO_snprintf(buf[0], sizeof buf[0], "%s.%s", serialfile, suffix);
4c771796 1389#else
0f113f3e 1390 j = BIO_snprintf(buf[0], sizeof buf[0], "%s-%s", serialfile, suffix);
4c771796 1391#endif
0f113f3e 1392 }
7e1b7485 1393 out = BIO_new_file(buf[0], "w");
0f113f3e
MC
1394 if (out == NULL) {
1395 ERR_print_errors(bio_err);
1396 goto err;
1397 }
0f113f3e
MC
1398
1399 if ((ai = BN_to_ASN1_INTEGER(serial, NULL)) == NULL) {
1400 BIO_printf(bio_err, "error converting serial to ASN.1 format\n");
1401 goto err;
1402 }
1403 i2a_ASN1_INTEGER(out, ai);
1404 BIO_puts(out, "\n");
1405 ret = 1;
1406 if (retai) {
1407 *retai = ai;
1408 ai = NULL;
1409 }
1410 err:
ca3a82c3 1411 BIO_free_all(out);
2ace7450 1412 ASN1_INTEGER_free(ai);
0f113f3e
MC
1413 return (ret);
1414}
f85b68cd 1415
cc696296
F
1416int rotate_serial(const char *serialfile, const char *new_suffix,
1417 const char *old_suffix)
0f113f3e 1418{
bde136c8 1419 char buf[2][BSIZE];
0f113f3e
MC
1420 int i, j;
1421
1422 i = strlen(serialfile) + strlen(old_suffix);
1423 j = strlen(serialfile) + strlen(new_suffix);
1424 if (i > j)
1425 j = i;
1426 if (j + 1 >= BSIZE) {
1427 BIO_printf(bio_err, "file name too long\n");
1428 goto err;
1429 }
4c771796 1430#ifndef OPENSSL_SYS_VMS
0f113f3e 1431 j = BIO_snprintf(buf[0], sizeof buf[0], "%s.%s", serialfile, new_suffix);
0f113f3e 1432 j = BIO_snprintf(buf[1], sizeof buf[1], "%s.%s", serialfile, old_suffix);
4c771796 1433#else
d63a5e5e 1434 j = BIO_snprintf(buf[0], sizeof buf[0], "%s-%s", serialfile, new_suffix);
0f113f3e 1435 j = BIO_snprintf(buf[1], sizeof buf[1], "%s-%s", serialfile, old_suffix);
a1ad253f 1436#endif
0f113f3e 1437 if (rename(serialfile, buf[1]) < 0 && errno != ENOENT
4c771796 1438#ifdef ENOTDIR
0f113f3e
MC
1439 && errno != ENOTDIR
1440#endif
1441 ) {
1442 BIO_printf(bio_err,
1443 "unable to rename %s to %s\n", serialfile, buf[1]);
1444 perror("reason");
1445 goto err;
1446 }
0f113f3e
MC
1447 if (rename(buf[0], serialfile) < 0) {
1448 BIO_printf(bio_err,
1449 "unable to rename %s to %s\n", buf[0], serialfile);
1450 perror("reason");
1451 rename(buf[1], serialfile);
1452 goto err;
1453 }
1454 return 1;
4c771796 1455 err:
0f113f3e
MC
1456 return 0;
1457}
4c771796 1458
64674bcc 1459int rand_serial(BIGNUM *b, ASN1_INTEGER *ai)
0f113f3e
MC
1460{
1461 BIGNUM *btmp;
1462 int ret = 0;
23a1d5e9 1463
0f113f3e
MC
1464 if (b)
1465 btmp = b;
1466 else
1467 btmp = BN_new();
1468
96487cdd 1469 if (btmp == NULL)
0f113f3e
MC
1470 return 0;
1471
1472 if (!BN_pseudo_rand(btmp, SERIAL_RAND_BITS, 0, 0))
1473 goto error;
1474 if (ai && !BN_to_ASN1_INTEGER(btmp, ai))
1475 goto error;
1476
1477 ret = 1;
1478
1479 error:
1480
23a1d5e9 1481 if (btmp != b)
0f113f3e
MC
1482 BN_free(btmp);
1483
1484 return ret;
1485}
64674bcc 1486
cc696296 1487CA_DB *load_index(const char *dbfile, DB_ATTR *db_attr)
0f113f3e
MC
1488{
1489 CA_DB *retdb = NULL;
1490 TXT_DB *tmpdb = NULL;
7e1b7485 1491 BIO *in;
0f113f3e 1492 CONF *dbattr_conf = NULL;
cc01d217 1493 char buf[BSIZE];
0f113f3e 1494
7e1b7485 1495 in = BIO_new_file(dbfile, "r");
0f113f3e
MC
1496 if (in == NULL) {
1497 ERR_print_errors(bio_err);
1498 goto err;
1499 }
0f113f3e
MC
1500 if ((tmpdb = TXT_DB_read(in, DB_NUMBER)) == NULL)
1501 goto err;
f85b68cd
RL
1502
1503#ifndef OPENSSL_SYS_VMS
cc01d217 1504 BIO_snprintf(buf, sizeof buf, "%s.attr", dbfile);
f85b68cd 1505#else
cc01d217 1506 BIO_snprintf(buf, sizeof buf, "%s-attr", dbfile);
0f113f3e 1507#endif
cc01d217 1508 dbattr_conf = app_load_config(buf);
0f113f3e 1509
b4faea50 1510 retdb = app_malloc(sizeof(*retdb), "new DB");
0f113f3e
MC
1511 retdb->db = tmpdb;
1512 tmpdb = NULL;
1513 if (db_attr)
1514 retdb->attributes = *db_attr;
1515 else {
1516 retdb->attributes.unique_subject = 1;
1517 }
1518
1519 if (dbattr_conf) {
1520 char *p = NCONF_get_string(dbattr_conf, NULL, "unique_subject");
1521 if (p) {
0f113f3e
MC
1522 retdb->attributes.unique_subject = parse_yesno(p, 1);
1523 }
1524 }
f85b68cd
RL
1525
1526 err:
efa7dd64 1527 NCONF_free(dbattr_conf);
895cba19 1528 TXT_DB_free(tmpdb);
ca3a82c3 1529 BIO_free_all(in);
0f113f3e
MC
1530 return retdb;
1531}
f85b68cd
RL
1532
1533int index_index(CA_DB *db)
0f113f3e
MC
1534{
1535 if (!TXT_DB_create_index(db->db, DB_serial, NULL,
1536 LHASH_HASH_FN(index_serial),
1537 LHASH_COMP_FN(index_serial))) {
1538 BIO_printf(bio_err,
1539 "error creating serial number index:(%ld,%ld,%ld)\n",
1540 db->db->error, db->db->arg1, db->db->arg2);
1541 return 0;
1542 }
1543
1544 if (db->attributes.unique_subject
1545 && !TXT_DB_create_index(db->db, DB_name, index_name_qual,
1546 LHASH_HASH_FN(index_name),
1547 LHASH_COMP_FN(index_name))) {
1548 BIO_printf(bio_err, "error creating name index:(%ld,%ld,%ld)\n",
1549 db->db->error, db->db->arg1, db->db->arg2);
1550 return 0;
1551 }
1552 return 1;
1553}
f85b68cd 1554
7d727231 1555int save_index(const char *dbfile, const char *suffix, CA_DB *db)
0f113f3e
MC
1556{
1557 char buf[3][BSIZE];
7e1b7485 1558 BIO *out;
0f113f3e
MC
1559 int j;
1560
0f113f3e
MC
1561 j = strlen(dbfile) + strlen(suffix);
1562 if (j + 6 >= BSIZE) {
1563 BIO_printf(bio_err, "file name too long\n");
1564 goto err;
1565 }
f85b68cd 1566#ifndef OPENSSL_SYS_VMS
0f113f3e 1567 j = BIO_snprintf(buf[2], sizeof buf[2], "%s.attr", dbfile);
0f113f3e 1568 j = BIO_snprintf(buf[1], sizeof buf[1], "%s.attr.%s", dbfile, suffix);
0f113f3e 1569 j = BIO_snprintf(buf[0], sizeof buf[0], "%s.%s", dbfile, suffix);
f85b68cd 1570#else
d63a5e5e
RS
1571 j = BIO_snprintf(buf[2], sizeof buf[2], "%s-attr", dbfile);
1572 j = BIO_snprintf(buf[1], sizeof buf[1], "%s-attr-%s", dbfile, suffix);
0f113f3e 1573 j = BIO_snprintf(buf[0], sizeof buf[0], "%s-%s", dbfile, suffix);
63b6fe2b 1574#endif
7e1b7485
RS
1575 out = BIO_new_file(buf[0], "w");
1576 if (out == NULL) {
0f113f3e
MC
1577 perror(dbfile);
1578 BIO_printf(bio_err, "unable to open '%s'\n", dbfile);
1579 goto err;
1580 }
1581 j = TXT_DB_write(out, db->db);
7e1b7485 1582 BIO_free(out);
0f113f3e
MC
1583 if (j <= 0)
1584 goto err;
1585
7e1b7485 1586 out = BIO_new_file(buf[1], "w");
7e1b7485 1587 if (out == NULL) {
0f113f3e
MC
1588 perror(buf[2]);
1589 BIO_printf(bio_err, "unable to open '%s'\n", buf[2]);
1590 goto err;
1591 }
1592 BIO_printf(out, "unique_subject = %s\n",
1593 db->attributes.unique_subject ? "yes" : "no");
1594 BIO_free(out);
1595
1596 return 1;
f85b68cd 1597 err:
0f113f3e
MC
1598 return 0;
1599}
f85b68cd 1600
0f113f3e
MC
1601int rotate_index(const char *dbfile, const char *new_suffix,
1602 const char *old_suffix)
1603{
1604 char buf[5][BSIZE];
1605 int i, j;
1606
1607 i = strlen(dbfile) + strlen(old_suffix);
1608 j = strlen(dbfile) + strlen(new_suffix);
1609 if (i > j)
1610 j = i;
1611 if (j + 6 >= BSIZE) {
1612 BIO_printf(bio_err, "file name too long\n");
1613 goto err;
1614 }
f85b68cd 1615#ifndef OPENSSL_SYS_VMS
0f113f3e 1616 j = BIO_snprintf(buf[4], sizeof buf[4], "%s.attr", dbfile);
d63a5e5e 1617 j = BIO_snprintf(buf[3], sizeof buf[3], "%s.attr.%s", dbfile, old_suffix);
0f113f3e 1618 j = BIO_snprintf(buf[2], sizeof buf[2], "%s.attr.%s", dbfile, new_suffix);
0f113f3e 1619 j = BIO_snprintf(buf[1], sizeof buf[1], "%s.%s", dbfile, old_suffix);
d63a5e5e 1620 j = BIO_snprintf(buf[0], sizeof buf[0], "%s.%s", dbfile, new_suffix);
f85b68cd 1621#else
d63a5e5e 1622 j = BIO_snprintf(buf[4], sizeof buf[4], "%s-attr", dbfile);
0f113f3e 1623 j = BIO_snprintf(buf[3], sizeof buf[3], "%s-attr-%s", dbfile, old_suffix);
d63a5e5e
RS
1624 j = BIO_snprintf(buf[2], sizeof buf[2], "%s-attr-%s", dbfile, new_suffix);
1625 j = BIO_snprintf(buf[1], sizeof buf[1], "%s-%s", dbfile, old_suffix);
1626 j = BIO_snprintf(buf[0], sizeof buf[0], "%s-%s", dbfile, new_suffix);
63b6fe2b 1627#endif
0f113f3e 1628 if (rename(dbfile, buf[1]) < 0 && errno != ENOENT
a1ad253f 1629#ifdef ENOTDIR
0f113f3e 1630 && errno != ENOTDIR
a1ad253f 1631#endif
0f113f3e
MC
1632 ) {
1633 BIO_printf(bio_err, "unable to rename %s to %s\n", dbfile, buf[1]);
1634 perror("reason");
1635 goto err;
1636 }
0f113f3e
MC
1637 if (rename(buf[0], dbfile) < 0) {
1638 BIO_printf(bio_err, "unable to rename %s to %s\n", buf[0], dbfile);
1639 perror("reason");
1640 rename(buf[1], dbfile);
1641 goto err;
1642 }
0f113f3e 1643 if (rename(buf[4], buf[3]) < 0 && errno != ENOENT
a1ad253f 1644#ifdef ENOTDIR
0f113f3e
MC
1645 && errno != ENOTDIR
1646#endif
1647 ) {
1648 BIO_printf(bio_err, "unable to rename %s to %s\n", buf[4], buf[3]);
1649 perror("reason");
1650 rename(dbfile, buf[0]);
1651 rename(buf[1], dbfile);
1652 goto err;
1653 }
0f113f3e
MC
1654 if (rename(buf[2], buf[4]) < 0) {
1655 BIO_printf(bio_err, "unable to rename %s to %s\n", buf[2], buf[4]);
1656 perror("reason");
1657 rename(buf[3], buf[4]);
1658 rename(dbfile, buf[0]);
1659 rename(buf[1], dbfile);
1660 goto err;
1661 }
1662 return 1;
f85b68cd 1663 err:
0f113f3e
MC
1664 return 0;
1665}
f85b68cd
RL
1666
1667void free_index(CA_DB *db)
0f113f3e
MC
1668{
1669 if (db) {
895cba19 1670 TXT_DB_free(db->db);
0f113f3e
MC
1671 OPENSSL_free(db);
1672 }
1673}
6d5ffb59 1674
ff990440 1675int parse_yesno(const char *str, int def)
0f113f3e 1676{
0f113f3e
MC
1677 if (str) {
1678 switch (*str) {
1679 case 'f': /* false */
1680 case 'F': /* FALSE */
1681 case 'n': /* no */
1682 case 'N': /* NO */
1683 case '0': /* 0 */
1bb2daea 1684 return 0;
0f113f3e
MC
1685 case 't': /* true */
1686 case 'T': /* TRUE */
1687 case 'y': /* yes */
1688 case 'Y': /* YES */
1689 case '1': /* 1 */
1bb2daea 1690 return 1;
0f113f3e
MC
1691 }
1692 }
1bb2daea 1693 return def;
0f113f3e 1694}
03ddbdd9 1695
6d5ffb59 1696/*
db4c08f0 1697 * name is expected to be in the format /type0=value0/type1=value1/type2=...
6d5ffb59
RL
1698 * where characters may be escaped by \
1699 */
db4c08f0 1700X509_NAME *parse_name(const char *cp, long chtype, int canmulti)
0f113f3e 1701{
db4c08f0
RS
1702 int nextismulti = 0;
1703 char *work;
1704 X509_NAME *n;
0f113f3e 1705
db4c08f0
RS
1706 if (*cp++ != '/')
1707 return NULL;
1708
1709 n = X509_NAME_new();
1710 if (n == NULL)
1711 return NULL;
a3ed492f 1712 work = OPENSSL_strdup(cp);
db4c08f0
RS
1713 if (work == NULL)
1714 goto err;
1715
1716 while (*cp) {
1717 char *bp = work;
1718 char *typestr = bp;
1719 unsigned char *valstr;
1720 int nid;
1721 int ismulti = nextismulti;
1722 nextismulti = 0;
1723
1724 /* Collect the type */
1725 while (*cp && *cp != '=')
1726 *bp++ = *cp++;
1727 if (*cp == '\0') {
0f113f3e 1728 BIO_printf(bio_err,
db4c08f0
RS
1729 "%s: Hit end of string before finding the equals.\n",
1730 opt_getprog());
1731 goto err;
0f113f3e 1732 }
db4c08f0
RS
1733 *bp++ = '\0';
1734 ++cp;
1735
1736 /* Collect the value. */
1737 valstr = (unsigned char *)bp;
1738 for (; *cp && *cp != '/'; *bp++ = *cp++) {
1739 if (canmulti && *cp == '+') {
1740 nextismulti = 1;
0f113f3e 1741 break;
db4c08f0
RS
1742 }
1743 if (*cp == '\\' && *++cp == '\0') {
1744 BIO_printf(bio_err,
1745 "%s: escape character at end of string\n",
1746 opt_getprog());
1747 goto err;
1748 }
0f113f3e
MC
1749 }
1750 *bp++ = '\0';
0f113f3e 1751
db4c08f0
RS
1752 /* If not at EOS (must be + or /), move forward. */
1753 if (*cp)
1754 ++cp;
0f113f3e 1755
db4c08f0
RS
1756 /* Parse */
1757 nid = OBJ_txt2nid(typestr);
1758 if (nid == NID_undef) {
1759 BIO_printf(bio_err, "%s: Skipping unknown attribute \"%s\"\n",
1760 opt_getprog(), typestr);
0f113f3e
MC
1761 continue;
1762 }
db4c08f0
RS
1763 if (!X509_NAME_add_entry_by_NID(n, nid, chtype,
1764 valstr, strlen((char *)valstr),
1765 -1, ismulti ? -1 : 0))
1766 goto err;
0f113f3e
MC
1767 }
1768
a3ed492f 1769 OPENSSL_free(work);
0f113f3e
MC
1770 return n;
1771
db4c08f0 1772 err:
0f113f3e 1773 X509_NAME_free(n);
a3ed492f 1774 OPENSSL_free(work);
0f113f3e 1775 return NULL;
6d5ffb59
RL
1776}
1777
0f113f3e
MC
1778/*
1779 * Read whole contents of a BIO into an allocated memory buffer and return
1780 * it.
a9164153
DSH
1781 */
1782
1783int bio_to_mem(unsigned char **out, int maxlen, BIO *in)
0f113f3e
MC
1784{
1785 BIO *mem;
1786 int len, ret;
1787 unsigned char tbuf[1024];
bde136c8 1788
0f113f3e 1789 mem = BIO_new(BIO_s_mem());
96487cdd 1790 if (mem == NULL)
0f113f3e
MC
1791 return -1;
1792 for (;;) {
1793 if ((maxlen != -1) && maxlen < 1024)
1794 len = maxlen;
1795 else
1796 len = 1024;
1797 len = BIO_read(in, tbuf, len);
0c20802c
VD
1798 if (len < 0) {
1799 BIO_free(mem);
1800 return -1;
1801 }
1802 if (len == 0)
0f113f3e
MC
1803 break;
1804 if (BIO_write(mem, tbuf, len) != len) {
1805 BIO_free(mem);
1806 return -1;
1807 }
1808 maxlen -= len;
1809
1810 if (maxlen == 0)
1811 break;
1812 }
1813 ret = BIO_get_mem_data(mem, (char **)out);
1814 BIO_set_flags(mem, BIO_FLAGS_MEM_RDONLY);
1815 BIO_free(mem);
1816 return ret;
1817}
a9164153 1818
0c20802c 1819int pkey_ctrl_string(EVP_PKEY_CTX *ctx, const char *value)
0f113f3e
MC
1820{
1821 int rv;
1822 char *stmp, *vtmp = NULL;
7644a9ae 1823 stmp = OPENSSL_strdup(value);
0f113f3e
MC
1824 if (!stmp)
1825 return -1;
1826 vtmp = strchr(stmp, ':');
1827 if (vtmp) {
1828 *vtmp = 0;
1829 vtmp++;
1830 }
1831 rv = EVP_PKEY_CTX_ctrl_str(ctx, stmp, vtmp);
1832 OPENSSL_free(stmp);
1833 return rv;
1834}
a2318e86 1835
ecf3a1fb 1836static void nodes_print(const char *name, STACK_OF(X509_POLICY_NODE) *nodes)
0f113f3e
MC
1837{
1838 X509_POLICY_NODE *node;
1839 int i;
ecf3a1fb
RS
1840
1841 BIO_printf(bio_err, "%s Policies:", name);
0f113f3e 1842 if (nodes) {
ecf3a1fb 1843 BIO_puts(bio_err, "\n");
0f113f3e
MC
1844 for (i = 0; i < sk_X509_POLICY_NODE_num(nodes); i++) {
1845 node = sk_X509_POLICY_NODE_value(nodes, i);
ecf3a1fb 1846 X509_POLICY_NODE_print(bio_err, node, 2);
0f113f3e
MC
1847 }
1848 } else
ecf3a1fb 1849 BIO_puts(bio_err, " <empty>\n");
0f113f3e 1850}
c431798e 1851
ecf3a1fb 1852void policies_print(X509_STORE_CTX *ctx)
0f113f3e
MC
1853{
1854 X509_POLICY_TREE *tree;
1855 int explicit_policy;
0f113f3e
MC
1856 tree = X509_STORE_CTX_get0_policy_tree(ctx);
1857 explicit_policy = X509_STORE_CTX_get_explicit_policy(ctx);
1858
ecf3a1fb 1859 BIO_printf(bio_err, "Require explicit Policy: %s\n",
0f113f3e
MC
1860 explicit_policy ? "True" : "False");
1861
ecf3a1fb
RS
1862 nodes_print("Authority", X509_policy_tree_get0_policies(tree));
1863 nodes_print("User", X509_policy_tree_get0_user_policies(tree));
0f113f3e 1864}
ffa10187 1865
3a83462d
MC
1866/*-
1867 * next_protos_parse parses a comma separated list of strings into a string
71fa4513
BL
1868 * in a format suitable for passing to SSL_CTX_set_next_protos_advertised.
1869 * outlen: (output) set to the length of the resulting buffer on success.
1870 * err: (maybe NULL) on failure, an error message line is written to this BIO.
8483a003 1871 * in: a NUL terminated string like "abc,def,ghi"
71fa4513 1872 *
8483a003 1873 * returns: a malloc'd buffer or NULL on failure.
71fa4513 1874 */
817cd0d5 1875unsigned char *next_protos_parse(size_t *outlen, const char *in)
0f113f3e
MC
1876{
1877 size_t len;
1878 unsigned char *out;
1879 size_t i, start = 0;
1880
1881 len = strlen(in);
1882 if (len >= 65535)
1883 return NULL;
1884
68dc6824 1885 out = app_malloc(strlen(in) + 1, "NPN buffer");
0f113f3e
MC
1886 for (i = 0; i <= len; ++i) {
1887 if (i == len || in[i] == ',') {
1888 if (i - start > 255) {
1889 OPENSSL_free(out);
1890 return NULL;
1891 }
1892 out[start] = i - start;
1893 start = i + 1;
1894 } else
1895 out[i + 1] = in[i];
1896 }
1897
1898 *outlen = len + 1;
1899 return out;
1900}
71fa4513 1901
a70da5b3 1902void print_cert_checks(BIO *bio, X509 *x,
0f113f3e
MC
1903 const char *checkhost,
1904 const char *checkemail, const char *checkip)
1905{
1906 if (x == NULL)
1907 return;
1908 if (checkhost) {
1909 BIO_printf(bio, "Hostname %s does%s match certificate\n",
7e1b7485
RS
1910 checkhost,
1911 X509_check_host(x, checkhost, 0, 0, NULL) == 1
1912 ? "" : " NOT");
0f113f3e
MC
1913 }
1914
1915 if (checkemail) {
1916 BIO_printf(bio, "Email %s does%s match certificate\n",
7e1b7485
RS
1917 checkemail, X509_check_email(x, checkemail, 0, 0)
1918 ? "" : " NOT");
0f113f3e
MC
1919 }
1920
1921 if (checkip) {
1922 BIO_printf(bio, "IP %s does%s match certificate\n",
1923 checkip, X509_check_ip_asc(x, checkip, 0) ? "" : " NOT");
1924 }
1925}
a70da5b3 1926
0090a686
DSH
1927/* Get first http URL from a DIST_POINT structure */
1928
1929static const char *get_dp_url(DIST_POINT *dp)
0f113f3e
MC
1930{
1931 GENERAL_NAMES *gens;
1932 GENERAL_NAME *gen;
1933 int i, gtype;
1934 ASN1_STRING *uri;
1935 if (!dp->distpoint || dp->distpoint->type != 0)
1936 return NULL;
1937 gens = dp->distpoint->name.fullname;
1938 for (i = 0; i < sk_GENERAL_NAME_num(gens); i++) {
1939 gen = sk_GENERAL_NAME_value(gens, i);
1940 uri = GENERAL_NAME_get0_value(gen, &gtype);
1941 if (gtype == GEN_URI && ASN1_STRING_length(uri) > 6) {
17ebf85a 1942 const char *uptr = (const char *)ASN1_STRING_get0_data(uri);
86885c28 1943 if (strncmp(uptr, "http://", 7) == 0)
0f113f3e
MC
1944 return uptr;
1945 }
1946 }
1947 return NULL;
1948}
1949
1950/*
1951 * Look through a CRLDP structure and attempt to find an http URL to
1952 * downloads a CRL from.
0090a686
DSH
1953 */
1954
1955static X509_CRL *load_crl_crldp(STACK_OF(DIST_POINT) *crldp)
0f113f3e
MC
1956{
1957 int i;
1958 const char *urlptr = NULL;
1959 for (i = 0; i < sk_DIST_POINT_num(crldp); i++) {
1960 DIST_POINT *dp = sk_DIST_POINT_value(crldp, i);
1961 urlptr = get_dp_url(dp);
1962 if (urlptr)
1963 return load_crl(urlptr, FORMAT_HTTP);
1964 }
1965 return NULL;
1966}
1967
1968/*
1969 * Example of downloading CRLs from CRLDP: not usable for real world as it
1970 * always downloads, doesn't support non-blocking I/O and doesn't cache
1971 * anything.
0090a686
DSH
1972 */
1973
1974static STACK_OF(X509_CRL) *crls_http_cb(X509_STORE_CTX *ctx, X509_NAME *nm)
0f113f3e
MC
1975{
1976 X509 *x;
1977 STACK_OF(X509_CRL) *crls = NULL;
1978 X509_CRL *crl;
1979 STACK_OF(DIST_POINT) *crldp;
7e1b7485
RS
1980
1981 crls = sk_X509_CRL_new_null();
1982 if (!crls)
1983 return NULL;
0f113f3e
MC
1984 x = X509_STORE_CTX_get_current_cert(ctx);
1985 crldp = X509_get_ext_d2i(x, NID_crl_distribution_points, NULL, NULL);
1986 crl = load_crl_crldp(crldp);
1987 sk_DIST_POINT_pop_free(crldp, DIST_POINT_free);
fe2b7dfd
MC
1988 if (!crl) {
1989 sk_X509_CRL_free(crls);
0f113f3e 1990 return NULL;
fe2b7dfd 1991 }
0f113f3e
MC
1992 sk_X509_CRL_push(crls, crl);
1993 /* Try to download delta CRL */
1994 crldp = X509_get_ext_d2i(x, NID_freshest_crl, NULL, NULL);
1995 crl = load_crl_crldp(crldp);
1996 sk_DIST_POINT_pop_free(crldp, DIST_POINT_free);
1997 if (crl)
1998 sk_X509_CRL_push(crls, crl);
1999 return crls;
2000}
0090a686
DSH
2001
2002void store_setup_crl_download(X509_STORE *st)
0f113f3e
MC
2003{
2004 X509_STORE_set_lookup_crls_cb(st, crls_http_cb);
2005}
0090a686 2006
0a39d8f2
AP
2007/*
2008 * Platform-specific sections
2009 */
ffa10187 2010#if defined(_WIN32)
a1ad253f
AP
2011# ifdef fileno
2012# undef fileno
2013# define fileno(a) (int)_fileno(a)
2014# endif
2015
2016# include <windows.h>
2017# include <tchar.h>
2018
2019static int WIN32_rename(const char *from, const char *to)
0f113f3e
MC
2020{
2021 TCHAR *tfrom = NULL, *tto;
2022 DWORD err;
2023 int ret = 0;
2024
2025 if (sizeof(TCHAR) == 1) {
2026 tfrom = (TCHAR *)from;
2027 tto = (TCHAR *)to;
2028 } else { /* UNICODE path */
2029
2030 size_t i, flen = strlen(from) + 1, tlen = strlen(to) + 1;
b1ad95e3 2031 tfrom = malloc(sizeof(*tfrom) * (flen + tlen));
0f113f3e
MC
2032 if (tfrom == NULL)
2033 goto err;
2034 tto = tfrom + flen;
2035# if !defined(_WIN32_WCE) || _WIN32_WCE>=101
2036 if (!MultiByteToWideChar(CP_ACP, 0, from, flen, (WCHAR *)tfrom, flen))
2037# endif
2038 for (i = 0; i < flen; i++)
2039 tfrom[i] = (TCHAR)from[i];
2040# if !defined(_WIN32_WCE) || _WIN32_WCE>=101
2041 if (!MultiByteToWideChar(CP_ACP, 0, to, tlen, (WCHAR *)tto, tlen))
2042# endif
2043 for (i = 0; i < tlen; i++)
2044 tto[i] = (TCHAR)to[i];
2045 }
2046
2047 if (MoveFile(tfrom, tto))
2048 goto ok;
2049 err = GetLastError();
2050 if (err == ERROR_ALREADY_EXISTS || err == ERROR_FILE_EXISTS) {
2051 if (DeleteFile(tto) && MoveFile(tfrom, tto))
2052 goto ok;
2053 err = GetLastError();
2054 }
2055 if (err == ERROR_FILE_NOT_FOUND || err == ERROR_PATH_NOT_FOUND)
2056 errno = ENOENT;
2057 else if (err == ERROR_ACCESS_DENIED)
2058 errno = EACCES;
2059 else
2060 errno = EINVAL; /* we could map more codes... */
2061 err:
2062 ret = -1;
2063 ok:
2064 if (tfrom != NULL && tfrom != (TCHAR *)from)
2065 free(tfrom);
2066 return ret;
2067}
0a39d8f2
AP
2068#endif
2069
2070/* app_tminterval section */
2071#if defined(_WIN32)
0f113f3e
MC
2072double app_tminterval(int stop, int usertime)
2073{
2074 FILETIME now;
2075 double ret = 0;
2076 static ULARGE_INTEGER tmstart;
2077 static int warning = 1;
2078# ifdef _WIN32_WINNT
2079 static HANDLE proc = NULL;
2080
2081 if (proc == NULL) {
2082 if (check_winnt())
2083 proc = OpenProcess(PROCESS_QUERY_INFORMATION, FALSE,
2084 GetCurrentProcessId());
2085 if (proc == NULL)
2086 proc = (HANDLE) - 1;
2087 }
2088
2089 if (usertime && proc != (HANDLE) - 1) {
2090 FILETIME junk;
2091 GetProcessTimes(proc, &junk, &junk, &junk, &now);
2092 } else
2093# endif
2094 {
2095 SYSTEMTIME systime;
9135fddb 2096
0f113f3e
MC
2097 if (usertime && warning) {
2098 BIO_printf(bio_err, "To get meaningful results, run "
2099 "this program on idle system.\n");
2100 warning = 0;
2101 }
2102 GetSystemTime(&systime);
2103 SystemTimeToFileTime(&systime, &now);
2104 }
9135fddb 2105
0f113f3e
MC
2106 if (stop == TM_START) {
2107 tmstart.u.LowPart = now.dwLowDateTime;
2108 tmstart.u.HighPart = now.dwHighDateTime;
2109 } else {
2110 ULARGE_INTEGER tmstop;
9135fddb 2111
0f113f3e
MC
2112 tmstop.u.LowPart = now.dwLowDateTime;
2113 tmstop.u.HighPart = now.dwHighDateTime;
9135fddb 2114
0f113f3e
MC
2115 ret = (__int64)(tmstop.QuadPart - tmstart.QuadPart) * 1e-7;
2116 }
9135fddb 2117
0f113f3e
MC
2118 return (ret);
2119}
0f113f3e
MC
2120#elif defined(OPENSSL_SYSTEM_VXWORKS)
2121# include <time.h>
0a39d8f2 2122
0f113f3e
MC
2123double app_tminterval(int stop, int usertime)
2124{
2125 double ret = 0;
2126# ifdef CLOCK_REALTIME
2127 static struct timespec tmstart;
2128 struct timespec now;
2129# else
2130 static unsigned long tmstart;
2131 unsigned long now;
2132# endif
2133 static int warning = 1;
2134
2135 if (usertime && warning) {
2136 BIO_printf(bio_err, "To get meaningful results, run "
2137 "this program on idle system.\n");
2138 warning = 0;
2139 }
2140# ifdef CLOCK_REALTIME
2141 clock_gettime(CLOCK_REALTIME, &now);
2142 if (stop == TM_START)
2143 tmstart = now;
2144 else
2145 ret = ((now.tv_sec + now.tv_nsec * 1e-9)
2146 - (tmstart.tv_sec + tmstart.tv_nsec * 1e-9));
2147# else
2148 now = tickGet();
2149 if (stop == TM_START)
2150 tmstart = now;
2151 else
2152 ret = (now - tmstart) / (double)sysClkRateGet();
2153# endif
2154 return (ret);
2155}
0a39d8f2 2156
0f113f3e
MC
2157#elif defined(OPENSSL_SYSTEM_VMS)
2158# include <time.h>
2159# include <times.h>
0a39d8f2 2160
0f113f3e
MC
2161double app_tminterval(int stop, int usertime)
2162{
2163 static clock_t tmstart;
2164 double ret = 0;
2165 clock_t now;
2166# ifdef __TMS
2167 struct tms rus;
2168
2169 now = times(&rus);
2170 if (usertime)
2171 now = rus.tms_utime;
2172# else
2173 if (usertime)
2174 now = clock(); /* sum of user and kernel times */
2175 else {
2176 struct timeval tv;
2177 gettimeofday(&tv, NULL);
2178 now = (clock_t)((unsigned long long)tv.tv_sec * CLK_TCK +
2179 (unsigned long long)tv.tv_usec * (1000000 / CLK_TCK)
2180 );
2181 }
2182# endif
2183 if (stop == TM_START)
2184 tmstart = now;
2185 else
2186 ret = (now - tmstart) / (double)(CLK_TCK);
0a39d8f2 2187
0f113f3e
MC
2188 return (ret);
2189}
0a39d8f2 2190
0f113f3e
MC
2191#elif defined(_SC_CLK_TCK) /* by means of unistd.h */
2192# include <sys/times.h>
0a39d8f2 2193
0f113f3e
MC
2194double app_tminterval(int stop, int usertime)
2195{
2196 double ret = 0;
2197 struct tms rus;
2198 clock_t now = times(&rus);
2199 static clock_t tmstart;
2200
2201 if (usertime)
2202 now = rus.tms_utime;
2203
2204 if (stop == TM_START)
2205 tmstart = now;
2206 else {
2207 long int tck = sysconf(_SC_CLK_TCK);
2208 ret = (now - tmstart) / (double)tck;
2209 }
2210
2211 return (ret);
2212}
0a39d8f2 2213
0f113f3e
MC
2214#else
2215# include <sys/time.h>
2216# include <sys/resource.h>
0a39d8f2 2217
0f113f3e
MC
2218double app_tminterval(int stop, int usertime)
2219{
2220 double ret = 0;
2221 struct rusage rus;
2222 struct timeval now;
2223 static struct timeval tmstart;
2224
2225 if (usertime)
2226 getrusage(RUSAGE_SELF, &rus), now = rus.ru_utime;
2227 else
2228 gettimeofday(&now, NULL);
2229
2230 if (stop == TM_START)
2231 tmstart = now;
2232 else
2233 ret = ((now.tv_sec + now.tv_usec * 1e-6)
2234 - (tmstart.tv_sec + tmstart.tv_usec * 1e-6));
2235
2236 return ret;
2237}
0a39d8f2 2238#endif
a1ad253f 2239
7e1b7485
RS
2240int app_access(const char* name, int flag)
2241{
2242#ifdef _WIN32
2243 return _access(name, flag);
2244#else
2245 return access(name, flag);
2246#endif
2247}
2248
0a39d8f2
AP
2249/* app_isdir section */
2250#ifdef _WIN32
ffa10187 2251int app_isdir(const char *name)
0f113f3e
MC
2252{
2253 HANDLE hList;
2254 WIN32_FIND_DATA FileData;
2255# if defined(UNICODE) || defined(_UNICODE)
2256 size_t i, len_0 = strlen(name) + 1;
2257
bdcb1a2c 2258 if (len_0 > OSSL_NELEM(FileData.cFileName))
0f113f3e
MC
2259 return -1;
2260
2261# if !defined(_WIN32_WCE) || _WIN32_WCE>=101
2262 if (!MultiByteToWideChar
2263 (CP_ACP, 0, name, len_0, FileData.cFileName, len_0))
2264# endif
2265 for (i = 0; i < len_0; i++)
2266 FileData.cFileName[i] = (WCHAR)name[i];
2267
2268 hList = FindFirstFile(FileData.cFileName, &FileData);
2269# else
2270 hList = FindFirstFile(name, &FileData);
2271# endif
2272 if (hList == INVALID_HANDLE_VALUE)
2273 return -1;
2274 FindClose(hList);
2275 return ((FileData.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) != 0);
2276}
ffa10187 2277#else
0f113f3e
MC
2278# include <sys/stat.h>
2279# ifndef S_ISDIR
2280# if defined(_S_IFMT) && defined(_S_IFDIR)
2281# define S_ISDIR(a) (((a) & _S_IFMT) == _S_IFDIR)
2282# else
2283# define S_ISDIR(a) (((a) & S_IFMT) == S_IFDIR)
2284# endif
2285# endif
ffa10187
AP
2286
2287int app_isdir(const char *name)
0f113f3e
MC
2288{
2289# if defined(S_ISDIR)
2290 struct stat st;
2291
2292 if (stat(name, &st) == 0)
2293 return S_ISDIR(st.st_mode);
2294 else
2295 return -1;
2296# else
2297 return -1;
2298# endif
2299}
ffa10187
AP
2300#endif
2301
0a39d8f2 2302/* raw_read|write section */
ffa10187 2303#if defined(_WIN32) && defined(STD_INPUT_HANDLE)
0f113f3e
MC
2304int raw_read_stdin(void *buf, int siz)
2305{
2306 DWORD n;
2307 if (ReadFile(GetStdHandle(STD_INPUT_HANDLE), buf, siz, &n, NULL))
2308 return (n);
2309 else
2310 return (-1);
2311}
ffa10187 2312#else
0f113f3e
MC
2313int raw_read_stdin(void *buf, int siz)
2314{
2315 return read(fileno(stdin), buf, siz);
2316}
ffa10187
AP
2317#endif
2318
2319#if defined(_WIN32) && defined(STD_OUTPUT_HANDLE)
0f113f3e
MC
2320int raw_write_stdout(const void *buf, int siz)
2321{
2322 DWORD n;
2323 if (WriteFile(GetStdHandle(STD_OUTPUT_HANDLE), buf, siz, &n, NULL))
2324 return (n);
2325 else
2326 return (-1);
2327}
ffa10187 2328#else
0f113f3e
MC
2329int raw_write_stdout(const void *buf, int siz)
2330{
2331 return write(fileno(stdout), buf, siz);
2332}
ffa10187 2333#endif
a412b891
RL
2334
2335/*
2336 * Centralized handling if input and output files with format specification
2337 * The format is meant to show what the input and output is supposed to be,
2338 * and is therefore a show of intent more than anything else. However, it
2339 * does impact behavior on some platform, such as differentiating between
2340 * text and binary input/output on non-Unix platforms
2341 */
496f4f9d 2342static int istext(int format)
a412b891 2343{
a60994df 2344 return (format & B_FORMAT_TEXT) == B_FORMAT_TEXT;
a412b891
RL
2345}
2346
a60994df 2347BIO *dup_bio_in(int format)
a412b891 2348{
a60994df
RL
2349 return BIO_new_fp(stdin,
2350 BIO_NOCLOSE | (istext(format) ? BIO_FP_TEXT : 0));
2351}
2352
2353BIO *dup_bio_out(int format)
2354{
2355 BIO *b = BIO_new_fp(stdout,
2356 BIO_NOCLOSE | (istext(format) ? BIO_FP_TEXT : 0));
a412b891 2357#ifdef OPENSSL_SYS_VMS
a60994df
RL
2358 if (istext(format))
2359 b = BIO_push(BIO_new(BIO_f_linebuffer()), b);
149bd5d6
RL
2360#endif
2361 return b;
2362}
2363
2364BIO *dup_bio_err(int format)
2365{
2366 BIO *b = BIO_new_fp(stderr,
2367 BIO_NOCLOSE | (istext(format) ? BIO_FP_TEXT : 0));
2368#ifdef OPENSSL_SYS_VMS
2369 if (istext(format))
2370 b = BIO_push(BIO_new(BIO_f_linebuffer()), b);
a412b891
RL
2371#endif
2372 return b;
2373}
2374
2375void unbuffer(FILE *fp)
2376{
90dbd250
RL
2377/*
2378 * On VMS, setbuf() will only take 32-bit pointers, and a compilation
2379 * with /POINTER_SIZE=64 will give off a MAYLOSEDATA2 warning here.
2380 * However, we trust that the C RTL will never give us a FILE pointer
2381 * above the first 4 GB of memory, so we simply turn off the warning
2382 * temporarily.
2383 */
2384#if defined(OPENSSL_SYS_VMS) && defined(__DECC)
2385# pragma environment save
2386# pragma message disable maylosedata2
2387#endif
a412b891 2388 setbuf(fp, NULL);
90dbd250
RL
2389#if defined(OPENSSL_SYS_VMS) && defined(__DECC)
2390# pragma environment restore
2391#endif
a412b891
RL
2392}
2393
2394static const char *modestr(char mode, int format)
2395{
2396 OPENSSL_assert(mode == 'a' || mode == 'r' || mode == 'w');
2397
2398 switch (mode) {
2399 case 'a':
a60994df 2400 return istext(format) ? "a" : "ab";
a412b891 2401 case 'r':
a60994df 2402 return istext(format) ? "r" : "rb";
a412b891 2403 case 'w':
a60994df 2404 return istext(format) ? "w" : "wb";
a412b891
RL
2405 }
2406 /* The assert above should make sure we never reach this point */
2407 return NULL;
2408}
2409
2410static const char *modeverb(char mode)
2411{
2412 switch (mode) {
2413 case 'a':
2414 return "appending";
2415 case 'r':
2416 return "reading";
2417 case 'w':
2418 return "writing";
2419 }
2420 return "(doing something)";
2421}
2422
2423/*
2424 * Open a file for writing, owner-read-only.
2425 */
2426BIO *bio_open_owner(const char *filename, int format, int private)
2427{
2428 FILE *fp = NULL;
2429 BIO *b = NULL;
1cd5cc36 2430 int fd = -1, bflags, mode, textmode;
a412b891
RL
2431
2432 if (!private || filename == NULL || strcmp(filename, "-") == 0)
2433 return bio_open_default(filename, 'w', format);
2434
2435 mode = O_WRONLY;
2436#ifdef O_CREAT
2437 mode |= O_CREAT;
2438#endif
2439#ifdef O_TRUNC
2440 mode |= O_TRUNC;
2441#endif
1cd5cc36
RL
2442 textmode = istext(format);
2443 if (!textmode) {
a412b891
RL
2444#ifdef O_BINARY
2445 mode |= O_BINARY;
2446#elif defined(_O_BINARY)
2447 mode |= _O_BINARY;
2448#endif
2449 }
2450
fbd03b09
RL
2451#ifdef OPENSSL_SYS_VMS
2452 /* VMS doesn't have O_BINARY, it just doesn't make sense. But,
2453 * it still needs to know that we're going binary, or fdopen()
2454 * will fail with "invalid argument"... so we tell VMS what the
2455 * context is.
2456 */
2457 if (!textmode)
2458 fd = open(filename, mode, 0600, "ctx=bin");
2459 else
2460#endif
2461 fd = open(filename, mode, 0600);
a412b891
RL
2462 if (fd < 0)
2463 goto err;
2464 fp = fdopen(fd, modestr('w', format));
2465 if (fp == NULL)
2466 goto err;
2467 bflags = BIO_CLOSE;
1cd5cc36 2468 if (textmode)
a412b891
RL
2469 bflags |= BIO_FP_TEXT;
2470 b = BIO_new_fp(fp, bflags);
2471 if (b)
2472 return b;
2473
2474 err:
2475 BIO_printf(bio_err, "%s: Can't open \"%s\" for writing, %s\n",
2476 opt_getprog(), filename, strerror(errno));
2477 ERR_print_errors(bio_err);
2478 /* If we have fp, then fdopen took over fd, so don't close both. */
2479 if (fp)
2480 fclose(fp);
2481 else if (fd >= 0)
2482 close(fd);
2483 return NULL;
2484}
2485
2486static BIO *bio_open_default_(const char *filename, char mode, int format,
2487 int quiet)
2488{
2489 BIO *ret;
2490
2491 if (filename == NULL || strcmp(filename, "-") == 0) {
a60994df 2492 ret = mode == 'r' ? dup_bio_in(format) : dup_bio_out(format);
a412b891
RL
2493 if (quiet) {
2494 ERR_clear_error();
2495 return ret;
2496 }
2497 if (ret != NULL)
2498 return ret;
2499 BIO_printf(bio_err,
2500 "Can't open %s, %s\n",
2501 mode == 'r' ? "stdin" : "stdout", strerror(errno));
2502 } else {
2503 ret = BIO_new_file(filename, modestr(mode, format));
2504 if (quiet) {
2505 ERR_clear_error();
2506 return ret;
2507 }
2508 if (ret != NULL)
2509 return ret;
2510 BIO_printf(bio_err,
2511 "Can't open %s for %s, %s\n",
2512 filename, modeverb(mode), strerror(errno));
2513 }
2514 ERR_print_errors(bio_err);
2515 return NULL;
2516}
2517
2518BIO *bio_open_default(const char *filename, char mode, int format)
2519{
2520 return bio_open_default_(filename, mode, format, 0);
2521}
2522
2523BIO *bio_open_default_quiet(const char *filename, char mode, int format)
2524{
2525 return bio_open_default_(filename, mode, format, 1);
2526}
2527
e1b9840e
MC
2528void wait_for_async(SSL *s)
2529{
d6e03b70
MC
2530 /* On Windows select only works for sockets, so we simply don't wait */
2531#ifndef OPENSSL_SYS_WINDOWS
ff75a257 2532 int width = 0;
e1b9840e 2533 fd_set asyncfds;
ff75a257
MC
2534 OSSL_ASYNC_FD *fds;
2535 size_t numfds;
e1b9840e 2536
ff75a257
MC
2537 if (!SSL_get_all_async_fds(s, NULL, &numfds))
2538 return;
2539 if (numfds == 0)
e1b9840e 2540 return;
589902b2 2541 fds = app_malloc(sizeof(OSSL_ASYNC_FD) * numfds, "allocate async fds");
ff75a257
MC
2542 if (!SSL_get_all_async_fds(s, fds, &numfds)) {
2543 OPENSSL_free(fds);
2544 }
e1b9840e 2545
e1b9840e 2546 FD_ZERO(&asyncfds);
ff75a257
MC
2547 while (numfds > 0) {
2548 if (width <= (int)*fds)
2549 width = (int)*fds + 1;
2550 openssl_fdset((int)*fds, &asyncfds);
2551 numfds--;
2552 fds++;
2553 }
e1b9840e 2554 select(width, (void *)&asyncfds, NULL, NULL, NULL);
d6e03b70 2555#endif
e1b9840e 2556}
75dd6c1a
MC
2557
2558/* if OPENSSL_SYS_WINDOWS is defined then so is OPENSSL_SYS_MSDOS */
2559#if defined(OPENSSL_SYS_MSDOS)
2560int has_stdin_waiting(void)
2561{
2562# if defined(OPENSSL_SYS_WINDOWS)
2563 HANDLE inhand = GetStdHandle(STD_INPUT_HANDLE);
2564 DWORD events = 0;
2565 INPUT_RECORD inputrec;
2566 DWORD insize = 1;
2567 BOOL peeked;
2568
2569 if (inhand == INVALID_HANDLE_VALUE) {
2570 return 0;
2571 }
2572
2573 peeked = PeekConsoleInput(inhand, &inputrec, insize, &events);
2574 if (!peeked) {
2575 /* Probably redirected input? _kbhit() does not work in this case */
2576 if (!feof(stdin)) {
2577 return 1;
2578 }
2579 return 0;
2580 }
2581# endif
2582 return _kbhit();
2583}
2584#endif
17ebf85a
DSH
2585
2586/* Corrupt a signature by modifying final byte */
a0754084 2587void corrupt_signature(const ASN1_STRING *signature)
17ebf85a 2588{
a0754084
DSH
2589 unsigned char *s = signature->data;
2590 s[signature->length - 1] ^= 0x1;
17ebf85a 2591}
dc047d31
DSH
2592
2593int set_cert_times(X509 *x, const char *startdate, const char *enddate,
2594 int days)
2595{
2596 int rv = 0;
2597 ASN1_TIME *tm = ASN1_TIME_new();
2598 if (tm == NULL)
2599 goto err;
2600 if (startdate == NULL || strcmp(startdate, "today") == 0) {
2601 if (!X509_gmtime_adj(tm, 0))
2602 goto err;
2603 } else if (!ASN1_TIME_set_string(tm, startdate)) {
2604 goto err;
2605 }
2606
568ce3a5 2607 if (!X509_set1_notBefore(x, tm))
dc047d31
DSH
2608 goto err;
2609
2610 if (enddate == NULL) {
2611 if (!X509_time_adj_ex(tm, days, 0, NULL))
2612 goto err;
2613 } else if (!ASN1_TIME_set_string(tm, enddate)) {
2614 goto err;
2615 }
2616
568ce3a5 2617 if (!X509_set1_notAfter(x, tm))
dc047d31
DSH
2618 goto err;
2619
2620 rv = 1;
2621
2622 err:
2623 ASN1_TIME_free(tm);
2624 return rv;
2625}