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