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