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