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