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