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