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