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