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