1c182bafb60b05d27db69afa9ac733bae1e60765
[openssl.git] / apps / apps.c
1 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
2  * All rights reserved.
3  *
4  * This package is an SSL implementation written
5  * by Eric Young (eay@cryptsoft.com).
6  * The implementation was written so as to conform with Netscapes SSL.
7  *
8  * This library is free for commercial and non-commercial use as long as
9  * the following conditions are aheared to.  The following conditions
10  * apply to all code found in this distribution, be it the RC4, RSA,
11  * lhash, DES, etc., code; not just the SSL code.  The SSL documentation
12  * included with this distribution is covered by the same copyright terms
13  * except that the holder is Tim Hudson (tjh@cryptsoft.com).
14  *
15  * Copyright remains Eric Young's, and as such any Copyright notices in
16  * the code are not to be removed.
17  * If this package is used in a product, Eric Young should be given attribution
18  * as the author of the parts of the library used.
19  * This can be in the form of a textual message at program startup or
20  * in documentation (online or textual) provided with the package.
21  *
22  * Redistribution and use in source and binary forms, with or without
23  * modification, are permitted provided that the following conditions
24  * are met:
25  * 1. Redistributions of source code must retain the copyright
26  *    notice, this list of conditions and the following disclaimer.
27  * 2. Redistributions in binary form must reproduce the above copyright
28  *    notice, this list of conditions and the following disclaimer in the
29  *    documentation and/or other materials provided with the distribution.
30  * 3. All advertising materials mentioning features or use of this software
31  *    must display the following acknowledgement:
32  *    "This product includes cryptographic software written by
33  *     Eric Young (eay@cryptsoft.com)"
34  *    The word 'cryptographic' can be left out if the rouines from the library
35  *    being used are not cryptographic related :-).
36  * 4. If you include any Windows specific code (or a derivative thereof) from
37  *    the apps directory (application code) you must include an acknowledgement:
38  *    "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
39  *
40  * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
41  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
42  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
43  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
44  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
45  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
46  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
47  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
48  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
49  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
50  * SUCH DAMAGE.
51  *
52  * The licence and distribution terms for any publically available version or
53  * derivative of this code cannot be changed.  i.e. this code cannot simply be
54  * copied and put under another distribution licence
55  * [including the GNU Public Licence.]
56  */
57 /* ====================================================================
58  * Copyright (c) 1998-2001 The OpenSSL Project.  All rights reserved.
59  *
60  * Redistribution and use in source and binary forms, with or without
61  * modification, are permitted provided that the following conditions
62  * are met:
63  *
64  * 1. Redistributions of source code must retain the above copyright
65  *    notice, this list of conditions and the following disclaimer.
66  *
67  * 2. Redistributions in binary form must reproduce the above copyright
68  *    notice, this list of conditions and the following disclaimer in
69  *    the documentation and/or other materials provided with the
70  *    distribution.
71  *
72  * 3. All advertising materials mentioning features or use of this
73  *    software must display the following acknowledgment:
74  *    "This product includes software developed by the OpenSSL Project
75  *    for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
76  *
77  * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
78  *    endorse or promote products derived from this software without
79  *    prior written permission. For written permission, please contact
80  *    openssl-core@openssl.org.
81  *
82  * 5. Products derived from this software may not be called "OpenSSL"
83  *    nor may "OpenSSL" appear in their names without prior written
84  *    permission of the OpenSSL Project.
85  *
86  * 6. Redistributions of any form whatsoever must retain the following
87  *    acknowledgment:
88  *    "This product includes software developed by the OpenSSL Project
89  *    for use in the OpenSSL Toolkit (http://www.openssl.org/)"
90  *
91  * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
92  * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
93  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
94  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR
95  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
96  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
97  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
98  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
99  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
100  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
101  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
102  * OF THE POSSIBILITY OF SUCH DAMAGE.
103  * ====================================================================
104  *
105  * This product includes cryptographic software written by Eric Young
106  * (eay@cryptsoft.com).  This product includes software written by Tim
107  * Hudson (tjh@cryptsoft.com).
108  *
109  */
110
111 #if !defined(_POSIX_C_SOURCE) && defined(OPENSSL_SYS_VMS)
112 /*
113  * On VMS, you need to define this to get the declaration of fileno().  The
114  * value 2 is to make sure no function defined in POSIX-2 is left undefined.
115  */
116 # define _POSIX_C_SOURCE 2
117 #endif
118 #include <stdio.h>
119 #include <stdlib.h>
120 #include <string.h>
121 #if !defined(OPENSSL_SYS_WIN32) && !defined(OPENSSL_SYS_WINCE) && !defined(NETWARE_CLIB)
122 # include <strings.h>
123 #endif
124 #include <sys/types.h>
125 #include <ctype.h>
126 #include <errno.h>
127 #include <assert.h>
128 #include <openssl/err.h>
129 #include <openssl/x509.h>
130 #include <openssl/x509v3.h>
131 #include <openssl/pem.h>
132 #include <openssl/pkcs12.h>
133 #include <openssl/ui.h>
134 #include <openssl/safestack.h>
135 #ifndef OPENSSL_NO_ENGINE
136 # include <openssl/engine.h>
137 #endif
138 #ifndef OPENSSL_NO_RSA
139 # include <openssl/rsa.h>
140 #endif
141 #include <openssl/bn.h>
142 #ifndef OPENSSL_NO_JPAKE
143 # include <openssl/jpake.h>
144 #endif
145 #include <openssl/ssl.h>
146
147 #include "apps.h"
148
149 #ifdef _WIN32
150 static int WIN32_rename(const char *from, const char *to);
151 # define rename(from,to) WIN32_rename((from),(to))
152 #endif
153
154 typedef struct {
155     const char *name;
156     unsigned long flag;
157     unsigned long mask;
158 } NAME_EX_TBL;
159
160 static UI_METHOD *ui_method = NULL;
161
162 static int set_table_opts(unsigned long *flags, const char *arg,
163                           const NAME_EX_TBL * in_tbl);
164 static int set_multi_opts(unsigned long *flags, const char *arg,
165                           const NAME_EX_TBL * in_tbl);
166
167 #if !defined(OPENSSL_NO_RC4) && !defined(OPENSSL_NO_RSA)
168 /* Looks like this stuff is worth moving into separate function */
169 static EVP_PKEY *load_netscape_key(BIO *key, const char *file,
170                                    const char *key_descrip, int format);
171 #endif
172
173 int app_init(long mesgwin);
174
175 int chopup_args(ARGS *arg, char *buf)
176 {
177     int quoted;
178     char c = '\0', *p = NULL;
179
180     arg->argc = 0;
181     if (arg->size == 0) {
182         arg->size = 20;
183         arg->argv = app_malloc(sizeof(*arg->argv) * arg->size, "argv space");
184         if (arg->argv == NULL)
185             return 0;
186     }
187
188     for (p = buf;;) {
189         /* Skip whitespace. */
190         while (*p && isspace(*p))
191             p++;
192         if (!*p)
193             break;
194
195         /* The start of something good :-) */
196         if (arg->argc >= arg->size) {
197             arg->size += 20;
198             arg->argv = OPENSSL_realloc(arg->argv,
199                                         sizeof(*arg->argv) * arg->size);
200             if (arg->argv == NULL)
201                 return 0;
202         }
203         quoted = *p == '\'' || *p == '"';
204         if (quoted)
205             c = *p++;
206         arg->argv[arg->argc++] = p;
207
208         /* now look for the end of this */
209         if (quoted) {
210             while (*p && *p != c)
211                 p++;
212             *p++ = '\0';
213         } else {
214             while (*p && !isspace(*p))
215                 p++;
216             if (*p)
217                 *p++ = '\0';
218         }
219     }
220     arg->argv[arg->argc] = NULL;
221     return (1);
222 }
223
224 #ifndef APP_INIT
225 int app_init(long mesgwin)
226 {
227     return (1);
228 }
229 #endif
230
231 int ctx_set_verify_locations(SSL_CTX *ctx,
232                              const char *CAfile, const char *CApath)
233 {
234     if (CAfile == NULL && CApath == NULL)
235         return SSL_CTX_set_default_verify_paths(ctx);
236     return SSL_CTX_load_verify_locations(ctx, CAfile, CApath);
237 }
238
239 int dump_cert_text(BIO *out, X509 *x)
240 {
241     char *p;
242
243     p = X509_NAME_oneline(X509_get_subject_name(x), NULL, 0);
244     BIO_puts(out, "subject=");
245     BIO_puts(out, p);
246     OPENSSL_free(p);
247
248     p = X509_NAME_oneline(X509_get_issuer_name(x), NULL, 0);
249     BIO_puts(out, "\nissuer=");
250     BIO_puts(out, p);
251     BIO_puts(out, "\n");
252     OPENSSL_free(p);
253
254     return 0;
255 }
256
257 static int ui_open(UI *ui)
258 {
259     return UI_method_get_opener(UI_OpenSSL())(ui);
260 }
261
262 static int ui_read(UI *ui, UI_STRING *uis)
263 {
264     if (UI_get_input_flags(uis) & UI_INPUT_FLAG_DEFAULT_PWD
265         && UI_get0_user_data(ui)) {
266         switch (UI_get_string_type(uis)) {
267         case UIT_PROMPT:
268         case UIT_VERIFY:
269             {
270                 const char *password =
271                     ((PW_CB_DATA *)UI_get0_user_data(ui))->password;
272                 if (password && password[0] != '\0') {
273                     UI_set_result(ui, uis, password);
274                     return 1;
275                 }
276             }
277         default:
278             break;
279         }
280     }
281     return UI_method_get_reader(UI_OpenSSL())(ui, uis);
282 }
283
284 static int ui_write(UI *ui, UI_STRING *uis)
285 {
286     if (UI_get_input_flags(uis) & UI_INPUT_FLAG_DEFAULT_PWD
287         && UI_get0_user_data(ui)) {
288         switch (UI_get_string_type(uis)) {
289         case UIT_PROMPT:
290         case UIT_VERIFY:
291             {
292                 const char *password =
293                     ((PW_CB_DATA *)UI_get0_user_data(ui))->password;
294                 if (password && password[0] != '\0')
295                     return 1;
296             }
297         default:
298             break;
299         }
300     }
301     return UI_method_get_writer(UI_OpenSSL())(ui, uis);
302 }
303
304 static int ui_close(UI *ui)
305 {
306     return UI_method_get_closer(UI_OpenSSL())(ui);
307 }
308
309 int setup_ui_method(void)
310 {
311     ui_method = UI_create_method("OpenSSL application user interface");
312     UI_method_set_opener(ui_method, ui_open);
313     UI_method_set_reader(ui_method, ui_read);
314     UI_method_set_writer(ui_method, ui_write);
315     UI_method_set_closer(ui_method, ui_close);
316     return 0;
317 }
318
319 void destroy_ui_method(void)
320 {
321     if (ui_method) {
322         UI_destroy_method(ui_method);
323         ui_method = NULL;
324     }
325 }
326
327 int password_callback(char *buf, int bufsiz, int verify, PW_CB_DATA *cb_tmp)
328 {
329     UI *ui = NULL;
330     int res = 0;
331     const char *prompt_info = NULL;
332     const char *password = NULL;
333     PW_CB_DATA *cb_data = (PW_CB_DATA *)cb_tmp;
334
335     if (cb_data) {
336         if (cb_data->password)
337             password = cb_data->password;
338         if (cb_data->prompt_info)
339             prompt_info = cb_data->prompt_info;
340     }
341
342     if (password) {
343         res = strlen(password);
344         if (res > bufsiz)
345             res = bufsiz;
346         memcpy(buf, password, res);
347         return res;
348     }
349
350     ui = UI_new_method(ui_method);
351     if (ui) {
352         int ok = 0;
353         char *buff = NULL;
354         int ui_flags = 0;
355         char *prompt;
356
357         prompt = UI_construct_prompt(ui, "pass phrase", prompt_info);
358         if (!prompt) {
359             BIO_printf(bio_err, "Out of memory\n");
360             UI_free(ui);
361             return 0;
362         }
363
364         ui_flags |= UI_INPUT_FLAG_DEFAULT_PWD;
365         UI_ctrl(ui, UI_CTRL_PRINT_ERRORS, 1, 0, 0);
366
367         if (ok >= 0)
368             ok = UI_add_input_string(ui, prompt, ui_flags, buf,
369                                      PW_MIN_LENGTH, bufsiz - 1);
370         if (ok >= 0 && verify) {
371             buff = app_malloc(bufsiz, "password buffer");
372             ok = UI_add_verify_string(ui, prompt, ui_flags, buff,
373                                       PW_MIN_LENGTH, bufsiz - 1, buf);
374         }
375         if (ok >= 0)
376             do {
377                 ok = UI_process(ui);
378             }
379             while (ok < 0 && UI_ctrl(ui, UI_CTRL_IS_REDOABLE, 0, 0, 0));
380
381         OPENSSL_clear_free(buff, (unsigned int)bufsiz);
382
383         if (ok >= 0)
384             res = strlen(buf);
385         if (ok == -1) {
386             BIO_printf(bio_err, "User interface error\n");
387             ERR_print_errors(bio_err);
388             OPENSSL_cleanse(buf, (unsigned int)bufsiz);
389             res = 0;
390         }
391         if (ok == -2) {
392             BIO_printf(bio_err, "aborted!\n");
393             OPENSSL_cleanse(buf, (unsigned int)bufsiz);
394             res = 0;
395         }
396         UI_free(ui);
397         OPENSSL_free(prompt);
398     }
399     return res;
400 }
401
402 static char *app_get_pass(char *arg, int keepbio);
403
404 int app_passwd(char *arg1, char *arg2, char **pass1, char **pass2)
405 {
406     int same;
407     if (!arg2 || !arg1 || strcmp(arg1, arg2))
408         same = 0;
409     else
410         same = 1;
411     if (arg1) {
412         *pass1 = app_get_pass(arg1, same);
413         if (!*pass1)
414             return 0;
415     } else if (pass1)
416         *pass1 = NULL;
417     if (arg2) {
418         *pass2 = app_get_pass(arg2, same ? 2 : 0);
419         if (!*pass2)
420             return 0;
421     } else if (pass2)
422         *pass2 = NULL;
423     return 1;
424 }
425
426 static char *app_get_pass(char *arg, int keepbio)
427 {
428     char *tmp, tpass[APP_PASS_LEN];
429     static BIO *pwdbio = NULL;
430     int i;
431
432     if (strncmp(arg, "pass:", 5) == 0)
433         return BUF_strdup(arg + 5);
434     if (strncmp(arg, "env:", 4) == 0) {
435         tmp = getenv(arg + 4);
436         if (!tmp) {
437             BIO_printf(bio_err, "Can't read environment variable %s\n", arg + 4);
438             return NULL;
439         }
440         return BUF_strdup(tmp);
441     }
442     if (!keepbio || !pwdbio) {
443         if (strncmp(arg, "file:", 5) == 0) {
444             pwdbio = BIO_new_file(arg + 5, "r");
445             if (!pwdbio) {
446                 BIO_printf(bio_err, "Can't open file %s\n", arg + 5);
447                 return NULL;
448             }
449 #if !defined(_WIN32)
450             /*
451              * Under _WIN32, which covers even Win64 and CE, file
452              * descriptors referenced by BIO_s_fd are not inherited
453              * by child process and therefore below is not an option.
454              * It could have been an option if bss_fd.c was operating
455              * on real Windows descriptors, such as those obtained
456              * with CreateFile.
457              */
458         } else if (strncmp(arg, "fd:", 3) == 0) {
459             BIO *btmp;
460             i = atoi(arg + 3);
461             if (i >= 0)
462                 pwdbio = BIO_new_fd(i, BIO_NOCLOSE);
463             if ((i < 0) || !pwdbio) {
464                 BIO_printf(bio_err, "Can't access file descriptor %s\n", arg + 3);
465                 return NULL;
466             }
467             /*
468              * Can't do BIO_gets on an fd BIO so add a buffering BIO
469              */
470             btmp = BIO_new(BIO_f_buffer());
471             pwdbio = BIO_push(btmp, pwdbio);
472 #endif
473         } else if (strcmp(arg, "stdin") == 0) {
474             pwdbio = dup_bio_in();
475             if (!pwdbio) {
476                 BIO_printf(bio_err, "Can't open BIO for stdin\n");
477                 return NULL;
478             }
479         } else {
480             BIO_printf(bio_err, "Invalid password argument \"%s\"\n", arg);
481             return NULL;
482         }
483     }
484     i = BIO_gets(pwdbio, tpass, APP_PASS_LEN);
485     if (keepbio != 1) {
486         BIO_free_all(pwdbio);
487         pwdbio = NULL;
488     }
489     if (i <= 0) {
490         BIO_printf(bio_err, "Error reading password from BIO\n");
491         return NULL;
492     }
493     tmp = strchr(tpass, '\n');
494     if (tmp)
495         *tmp = 0;
496     return BUF_strdup(tpass);
497 }
498
499 int add_oid_section(CONF *conf)
500 {
501     char *p;
502     STACK_OF(CONF_VALUE) *sktmp;
503     CONF_VALUE *cnf;
504     int i;
505     if (!(p = NCONF_get_string(conf, NULL, "oid_section"))) {
506         ERR_clear_error();
507         return 1;
508     }
509     if (!(sktmp = NCONF_get_section(conf, p))) {
510         BIO_printf(bio_err, "problem loading oid section %s\n", p);
511         return 0;
512     }
513     for (i = 0; i < sk_CONF_VALUE_num(sktmp); i++) {
514         cnf = sk_CONF_VALUE_value(sktmp, i);
515         if (OBJ_create(cnf->value, cnf->name, cnf->name) == NID_undef) {
516             BIO_printf(bio_err, "problem creating object %s=%s\n",
517                        cnf->name, cnf->value);
518             return 0;
519         }
520     }
521     return 1;
522 }
523
524 static int load_pkcs12(BIO *in, const char *desc,
525                        pem_password_cb *pem_cb, void *cb_data,
526                        EVP_PKEY **pkey, X509 **cert, STACK_OF(X509) **ca)
527 {
528     const char *pass;
529     char tpass[PEM_BUFSIZE];
530     int len, ret = 0;
531     PKCS12 *p12;
532     p12 = d2i_PKCS12_bio(in, NULL);
533     if (p12 == NULL) {
534         BIO_printf(bio_err, "Error loading PKCS12 file for %s\n", desc);
535         goto die;
536     }
537     /* See if an empty password will do */
538     if (PKCS12_verify_mac(p12, "", 0) || PKCS12_verify_mac(p12, NULL, 0))
539         pass = "";
540     else {
541         if (!pem_cb)
542             pem_cb = (pem_password_cb *)password_callback;
543         len = pem_cb(tpass, PEM_BUFSIZE, 0, cb_data);
544         if (len < 0) {
545             BIO_printf(bio_err, "Passphrase callback error for %s\n", desc);
546             goto die;
547         }
548         if (len < PEM_BUFSIZE)
549             tpass[len] = 0;
550         if (!PKCS12_verify_mac(p12, tpass, len)) {
551             BIO_printf(bio_err,
552                        "Mac verify error (wrong password?) in PKCS12 file for %s\n",
553                        desc);
554             goto die;
555         }
556         pass = tpass;
557     }
558     ret = PKCS12_parse(p12, pass, pkey, cert, ca);
559  die:
560     PKCS12_free(p12);
561     return ret;
562 }
563
564 int load_cert_crl_http(const char *url, X509 **pcert, X509_CRL **pcrl)
565 {
566     char *host = NULL, *port = NULL, *path = NULL;
567     BIO *bio = NULL;
568     OCSP_REQ_CTX *rctx = NULL;
569     int use_ssl, rv = 0;
570     if (!OCSP_parse_url(url, &host, &port, &path, &use_ssl))
571         goto err;
572     if (use_ssl) {
573         BIO_puts(bio_err, "https not supported\n");
574         goto err;
575     }
576     bio = BIO_new_connect(host);
577     if (!bio || !BIO_set_conn_port(bio, port))
578         goto err;
579     rctx = OCSP_REQ_CTX_new(bio, 1024);
580     if (!rctx)
581         goto err;
582     if (!OCSP_REQ_CTX_http(rctx, "GET", path))
583         goto err;
584     if (!OCSP_REQ_CTX_add1_header(rctx, "Host", host))
585         goto err;
586     if (pcert) {
587         do {
588             rv = X509_http_nbio(rctx, pcert);
589         } while (rv == -1);
590     } else {
591         do {
592             rv = X509_CRL_http_nbio(rctx, pcrl);
593         } while (rv == -1);
594     }
595
596  err:
597     OPENSSL_free(host);
598     OPENSSL_free(path);
599     OPENSSL_free(port);
600     if (bio)
601         BIO_free_all(bio);
602     OCSP_REQ_CTX_free(rctx);
603     if (rv != 1) {
604         BIO_printf(bio_err, "Error loading %s from %s\n",
605                    pcert ? "certificate" : "CRL", url);
606         ERR_print_errors(bio_err);
607     }
608     return rv;
609 }
610
611 X509 *load_cert(const char *file, int format,
612                 const char *pass, ENGINE *e, const char *cert_descrip)
613 {
614     X509 *x = NULL;
615     BIO *cert;
616
617     if (format == FORMAT_HTTP) {
618         load_cert_crl_http(file, &x, NULL);
619         return x;
620     }
621
622     if (file == NULL) {
623         unbuffer(stdin);
624         cert = dup_bio_in();
625     } else
626         cert = bio_open_default(file, RB(format));
627     if (cert == NULL)
628         goto end;
629
630     if (format == FORMAT_ASN1)
631         x = d2i_X509_bio(cert, NULL);
632     else if (format == FORMAT_NETSCAPE) {
633         NETSCAPE_X509 *nx;
634         nx = ASN1_item_d2i_bio(ASN1_ITEM_rptr(NETSCAPE_X509), cert, NULL);
635         if (nx == NULL)
636             goto end;
637
638         if ((strncmp(NETSCAPE_CERT_HDR, (char *)nx->header->data,
639                      nx->header->length) != 0)) {
640             NETSCAPE_X509_free(nx);
641             BIO_printf(bio_err, "Error reading header on certificate\n");
642             goto end;
643         }
644         x = nx->cert;
645         nx->cert = NULL;
646         NETSCAPE_X509_free(nx);
647     } else if (format == FORMAT_PEM)
648         x = PEM_read_bio_X509_AUX(cert, NULL,
649                                   (pem_password_cb *)password_callback, NULL);
650     else if (format == FORMAT_PKCS12) {
651         if (!load_pkcs12(cert, cert_descrip, NULL, NULL, NULL, &x, NULL))
652             goto end;
653     } else {
654         BIO_printf(bio_err, "bad input format specified for %s\n", cert_descrip);
655         goto end;
656     }
657  end:
658     if (x == NULL) {
659         BIO_printf(bio_err, "unable to load certificate\n");
660         ERR_print_errors(bio_err);
661     }
662     BIO_free(cert);
663     return (x);
664 }
665
666 X509_CRL *load_crl(const char *infile, int format)
667 {
668     X509_CRL *x = NULL;
669     BIO *in = NULL;
670
671     if (format == FORMAT_HTTP) {
672         load_cert_crl_http(infile, NULL, &x);
673         return x;
674     }
675
676     in = bio_open_default(infile, RB(format));
677     if (in == NULL)
678         goto end;
679     if (format == FORMAT_ASN1)
680         x = d2i_X509_CRL_bio(in, NULL);
681     else if (format == FORMAT_PEM)
682         x = PEM_read_bio_X509_CRL(in, NULL, NULL, NULL);
683     else {
684         BIO_printf(bio_err, "bad input format specified for input crl\n");
685         goto end;
686     }
687     if (x == NULL) {
688         BIO_printf(bio_err, "unable to load CRL\n");
689         ERR_print_errors(bio_err);
690         goto end;
691     }
692
693  end:
694     BIO_free(in);
695     return (x);
696 }
697
698 EVP_PKEY *load_key(const char *file, int format, int maybe_stdin,
699                    const char *pass, ENGINE *e, const char *key_descrip)
700 {
701     BIO *key = NULL;
702     EVP_PKEY *pkey = NULL;
703     PW_CB_DATA cb_data;
704
705     cb_data.password = pass;
706     cb_data.prompt_info = file;
707
708     if (file == NULL && (!maybe_stdin || format == FORMAT_ENGINE)) {
709         BIO_printf(bio_err, "no keyfile specified\n");
710         goto end;
711     }
712 #ifndef OPENSSL_NO_ENGINE
713     if (format == FORMAT_ENGINE) {
714         if (!e)
715             BIO_printf(bio_err, "no engine specified\n");
716         else {
717             pkey = ENGINE_load_private_key(e, file, ui_method, &cb_data);
718             if (!pkey) {
719                 BIO_printf(bio_err, "cannot load %s from engine\n", key_descrip);
720                 ERR_print_errors(bio_err);
721             }
722         }
723         goto end;
724     }
725 #endif
726     if (file == NULL && maybe_stdin) {
727         unbuffer(stdin);
728         key = dup_bio_in();
729     } else
730         key = bio_open_default(file, RB(format));
731     if (key == NULL)
732         goto end;
733     if (format == FORMAT_ASN1) {
734         pkey = d2i_PrivateKey_bio(key, NULL);
735     } else if (format == FORMAT_PEM) {
736         pkey = PEM_read_bio_PrivateKey(key, NULL,
737                                        (pem_password_cb *)password_callback,
738                                        &cb_data);
739     }
740 #if !defined(OPENSSL_NO_RC4) && !defined(OPENSSL_NO_RSA)
741     else if (format == FORMAT_NETSCAPE)
742         pkey = load_netscape_key(key, file, key_descrip, format);
743 #endif
744     else if (format == FORMAT_PKCS12) {
745         if (!load_pkcs12(key, key_descrip,
746                          (pem_password_cb *)password_callback, &cb_data,
747                          &pkey, NULL, NULL))
748             goto end;
749     }
750 #if !defined(OPENSSL_NO_RSA) && !defined(OPENSSL_NO_DSA) && !defined (OPENSSL_NO_RC4)
751     else if (format == FORMAT_MSBLOB)
752         pkey = b2i_PrivateKey_bio(key);
753     else if (format == FORMAT_PVK)
754         pkey = b2i_PVK_bio(key, (pem_password_cb *)password_callback,
755                            &cb_data);
756 #endif
757     else {
758         BIO_printf(bio_err, "bad input format specified for key file\n");
759         goto end;
760     }
761  end:
762     BIO_free(key);
763     if (pkey == NULL) {
764         BIO_printf(bio_err, "unable to load %s\n", key_descrip);
765         ERR_print_errors(bio_err);
766     }
767     return (pkey);
768 }
769
770 static const char *key_file_format(int format)
771 {
772     if (format == FORMAT_PEM || format == FORMAT_PEMRSA)
773         return "r";
774     return "rb";
775 }
776
777 EVP_PKEY *load_pubkey(const char *file, int format, int maybe_stdin,
778                       const char *pass, ENGINE *e, const char *key_descrip)
779 {
780     BIO *key = NULL;
781     EVP_PKEY *pkey = NULL;
782     PW_CB_DATA cb_data;
783
784     cb_data.password = pass;
785     cb_data.prompt_info = file;
786
787     if (file == NULL && (!maybe_stdin || format == FORMAT_ENGINE)) {
788         BIO_printf(bio_err, "no keyfile specified\n");
789         goto end;
790     }
791 #ifndef OPENSSL_NO_ENGINE
792     if (format == FORMAT_ENGINE) {
793         if (!e)
794             BIO_printf(bio_err, "no engine specified\n");
795         else
796             pkey = ENGINE_load_public_key(e, file, ui_method, &cb_data);
797         goto end;
798     }
799 #endif
800     if (file == NULL && maybe_stdin) {
801         unbuffer(stdin);
802         key = dup_bio_in();
803     } else
804         key = bio_open_default(file, key_file_format(format));
805     if (key == NULL)
806         goto end;
807     if (format == FORMAT_ASN1) {
808         pkey = d2i_PUBKEY_bio(key, NULL);
809     }
810 #ifndef OPENSSL_NO_RSA
811     else if (format == FORMAT_ASN1RSA) {
812         RSA *rsa;
813         rsa = d2i_RSAPublicKey_bio(key, NULL);
814         if (rsa) {
815             pkey = EVP_PKEY_new();
816             if (pkey)
817                 EVP_PKEY_set1_RSA(pkey, rsa);
818             RSA_free(rsa);
819         } else
820             pkey = NULL;
821     } else if (format == FORMAT_PEMRSA) {
822         RSA *rsa;
823         rsa = PEM_read_bio_RSAPublicKey(key, NULL,
824                                         (pem_password_cb *)password_callback,
825                                         &cb_data);
826         if (rsa) {
827             pkey = EVP_PKEY_new();
828             if (pkey)
829                 EVP_PKEY_set1_RSA(pkey, rsa);
830             RSA_free(rsa);
831         } else
832             pkey = NULL;
833     }
834 #endif
835     else if (format == FORMAT_PEM) {
836         pkey = PEM_read_bio_PUBKEY(key, NULL,
837                                    (pem_password_cb *)password_callback,
838                                    &cb_data);
839     }
840 #if !defined(OPENSSL_NO_RC4) && !defined(OPENSSL_NO_RSA)
841     else if (format == FORMAT_NETSCAPE)
842         pkey = load_netscape_key(key, file, key_descrip, format);
843 #endif
844 #if !defined(OPENSSL_NO_RSA) && !defined(OPENSSL_NO_DSA)
845     else if (format == FORMAT_MSBLOB)
846         pkey = b2i_PublicKey_bio(key);
847 #endif
848  end:
849     BIO_free(key);
850     if (pkey == NULL)
851         BIO_printf(bio_err, "unable to load %s\n", key_descrip);
852     return (pkey);
853 }
854
855 #if !defined(OPENSSL_NO_RC4) && !defined(OPENSSL_NO_RSA)
856 static EVP_PKEY *load_netscape_key(BIO *key, const char *file,
857                                    const char *key_descrip, int format)
858 {
859     EVP_PKEY *pkey;
860     BUF_MEM *buf;
861     RSA *rsa;
862     const unsigned char *p;
863     int size, i;
864
865     buf = BUF_MEM_new();
866     pkey = EVP_PKEY_new();
867     size = 0;
868     if (buf == NULL || pkey == NULL)
869         goto error;
870     for (;;) {
871         if (!BUF_MEM_grow_clean(buf, size + 1024 * 10))
872             goto error;
873         i = BIO_read(key, &(buf->data[size]), 1024 * 10);
874         size += i;
875         if (i == 0)
876             break;
877         if (i < 0) {
878             BIO_printf(bio_err, "Error reading %s %s", key_descrip, file);
879             goto error;
880         }
881     }
882     p = (unsigned char *)buf->data;
883     rsa = d2i_RSA_NET(NULL, &p, (long)size, NULL, 0);
884     if (rsa == NULL)
885         goto error;
886     BUF_MEM_free(buf);
887     EVP_PKEY_set1_RSA(pkey, rsa);
888     return pkey;
889  error:
890     BUF_MEM_free(buf);
891     EVP_PKEY_free(pkey);
892     return NULL;
893 }
894 #endif                          /* ndef OPENSSL_NO_RC4 */
895
896 static int load_certs_crls(const char *file, int format,
897                            const char *pass, ENGINE *e, const char *desc,
898                            STACK_OF(X509) **pcerts,
899                            STACK_OF(X509_CRL) **pcrls)
900 {
901     int i;
902     BIO *bio;
903     STACK_OF(X509_INFO) *xis = NULL;
904     X509_INFO *xi;
905     PW_CB_DATA cb_data;
906     int rv = 0;
907
908     cb_data.password = pass;
909     cb_data.prompt_info = file;
910
911     if (format != FORMAT_PEM) {
912         BIO_printf(bio_err, "bad input format specified for %s\n", desc);
913         return 0;
914     }
915
916     bio = bio_open_default(file, "r");
917     if (bio == NULL)
918         return 0;
919
920     xis = PEM_X509_INFO_read_bio(bio, NULL,
921                                  (pem_password_cb *)password_callback,
922                                  &cb_data);
923
924     BIO_free(bio);
925
926     if (pcerts) {
927         *pcerts = sk_X509_new_null();
928         if (!*pcerts)
929             goto end;
930     }
931
932     if (pcrls) {
933         *pcrls = sk_X509_CRL_new_null();
934         if (!*pcrls)
935             goto end;
936     }
937
938     for (i = 0; i < sk_X509_INFO_num(xis); i++) {
939         xi = sk_X509_INFO_value(xis, i);
940         if (xi->x509 && pcerts) {
941             if (!sk_X509_push(*pcerts, xi->x509))
942                 goto end;
943             xi->x509 = NULL;
944         }
945         if (xi->crl && pcrls) {
946             if (!sk_X509_CRL_push(*pcrls, xi->crl))
947                 goto end;
948             xi->crl = NULL;
949         }
950     }
951
952     if (pcerts && sk_X509_num(*pcerts) > 0)
953         rv = 1;
954
955     if (pcrls && sk_X509_CRL_num(*pcrls) > 0)
956         rv = 1;
957
958  end:
959
960     sk_X509_INFO_pop_free(xis, X509_INFO_free);
961
962     if (rv == 0) {
963         if (pcerts) {
964             sk_X509_pop_free(*pcerts, X509_free);
965             *pcerts = NULL;
966         }
967         if (pcrls) {
968             sk_X509_CRL_pop_free(*pcrls, X509_CRL_free);
969             *pcrls = NULL;
970         }
971         BIO_printf(bio_err, "unable to load %s\n",
972                    pcerts ? "certificates" : "CRLs");
973         ERR_print_errors(bio_err);
974     }
975     return rv;
976 }
977
978 void* app_malloc(int sz, const char *what)
979 {
980     void *vp = OPENSSL_malloc(sz);
981
982     if (vp == NULL) {
983         BIO_printf(bio_err, "%s: Could not allocate %d bytes for %s\n",
984                 opt_getprog(), sz, what);
985         ERR_print_errors(bio_err);
986         exit(1);
987     }
988     return vp;
989 }
990
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") == 0)
1088         *copy_type = EXT_COPY_NONE;
1089     else if (strcasecmp(arg, "copy") == 0)
1090         *copy_type = EXT_COPY_ADD;
1091     else if (strcasecmp(arg, "copyall") == 0)
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) == 0) {
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     ASN1_INTEGER_free(ai);
1418     return (ret);
1419 }
1420
1421 int save_serial(char *serialfile, char *suffix, BIGNUM *serial,
1422                 ASN1_INTEGER **retai)
1423 {
1424     char buf[1][BSIZE];
1425     BIO *out = NULL;
1426     int ret = 0;
1427     ASN1_INTEGER *ai = NULL;
1428     int j;
1429
1430     if (suffix == NULL)
1431         j = strlen(serialfile);
1432     else
1433         j = strlen(serialfile) + strlen(suffix) + 1;
1434     if (j >= BSIZE) {
1435         BIO_printf(bio_err, "file name too long\n");
1436         goto err;
1437     }
1438
1439     if (suffix == NULL)
1440         BUF_strlcpy(buf[0], serialfile, BSIZE);
1441     else {
1442 #ifndef OPENSSL_SYS_VMS
1443         j = BIO_snprintf(buf[0], sizeof buf[0], "%s.%s", serialfile, suffix);
1444 #else
1445         j = BIO_snprintf(buf[0], sizeof buf[0], "%s-%s", serialfile, suffix);
1446 #endif
1447     }
1448 #ifdef RL_DEBUG
1449     BIO_printf(bio_err, "DEBUG: writing \"%s\"\n", buf[0]);
1450 #endif
1451     out = BIO_new_file(buf[0], "w");
1452     if (out == NULL) {
1453         ERR_print_errors(bio_err);
1454         goto err;
1455     }
1456
1457     if ((ai = BN_to_ASN1_INTEGER(serial, NULL)) == NULL) {
1458         BIO_printf(bio_err, "error converting serial to ASN.1 format\n");
1459         goto err;
1460     }
1461     i2a_ASN1_INTEGER(out, ai);
1462     BIO_puts(out, "\n");
1463     ret = 1;
1464     if (retai) {
1465         *retai = ai;
1466         ai = NULL;
1467     }
1468  err:
1469     BIO_free_all(out);
1470     ASN1_INTEGER_free(ai);
1471     return (ret);
1472 }
1473
1474 int rotate_serial(char *serialfile, char *new_suffix, char *old_suffix)
1475 {
1476     char buf[5][BSIZE];
1477     int i, j;
1478
1479     i = strlen(serialfile) + strlen(old_suffix);
1480     j = strlen(serialfile) + strlen(new_suffix);
1481     if (i > j)
1482         j = i;
1483     if (j + 1 >= BSIZE) {
1484         BIO_printf(bio_err, "file name too long\n");
1485         goto err;
1486     }
1487 #ifndef OPENSSL_SYS_VMS
1488     j = BIO_snprintf(buf[0], sizeof buf[0], "%s.%s", serialfile, new_suffix);
1489 #else
1490     j = BIO_snprintf(buf[0], sizeof buf[0], "%s-%s", serialfile, new_suffix);
1491 #endif
1492 #ifndef OPENSSL_SYS_VMS
1493     j = BIO_snprintf(buf[1], sizeof buf[1], "%s.%s", serialfile, old_suffix);
1494 #else
1495     j = BIO_snprintf(buf[1], sizeof buf[1], "%s-%s", serialfile, old_suffix);
1496 #endif
1497 #ifdef RL_DEBUG
1498     BIO_printf(bio_err, "DEBUG: renaming \"%s\" to \"%s\"\n",
1499                serialfile, buf[1]);
1500 #endif
1501     if (rename(serialfile, buf[1]) < 0 && errno != ENOENT
1502 #ifdef ENOTDIR
1503         && errno != ENOTDIR
1504 #endif
1505         ) {
1506         BIO_printf(bio_err,
1507                    "unable to rename %s to %s\n", serialfile, buf[1]);
1508         perror("reason");
1509         goto err;
1510     }
1511 #ifdef RL_DEBUG
1512     BIO_printf(bio_err, "DEBUG: renaming \"%s\" to \"%s\"\n",
1513                buf[0], serialfile);
1514 #endif
1515     if (rename(buf[0], serialfile) < 0) {
1516         BIO_printf(bio_err,
1517                    "unable to rename %s to %s\n", buf[0], serialfile);
1518         perror("reason");
1519         rename(buf[1], serialfile);
1520         goto err;
1521     }
1522     return 1;
1523  err:
1524     return 0;
1525 }
1526
1527 int rand_serial(BIGNUM *b, ASN1_INTEGER *ai)
1528 {
1529     BIGNUM *btmp;
1530     int ret = 0;
1531
1532     if (b)
1533         btmp = b;
1534     else
1535         btmp = BN_new();
1536
1537     if (!btmp)
1538         return 0;
1539
1540     if (!BN_pseudo_rand(btmp, SERIAL_RAND_BITS, 0, 0))
1541         goto error;
1542     if (ai && !BN_to_ASN1_INTEGER(btmp, ai))
1543         goto error;
1544
1545     ret = 1;
1546
1547  error:
1548
1549     if (btmp != b)
1550         BN_free(btmp);
1551
1552     return ret;
1553 }
1554
1555 CA_DB *load_index(char *dbfile, DB_ATTR *db_attr)
1556 {
1557     CA_DB *retdb = NULL;
1558     TXT_DB *tmpdb = NULL;
1559     BIO *in;
1560     CONF *dbattr_conf = NULL;
1561     char buf[1][BSIZE];
1562     long errorline = -1;
1563
1564     in = BIO_new_file(dbfile, "r");
1565     if (in == NULL) {
1566         ERR_print_errors(bio_err);
1567         goto err;
1568     }
1569     if ((tmpdb = TXT_DB_read(in, DB_NUMBER)) == NULL)
1570         goto err;
1571
1572 #ifndef OPENSSL_SYS_VMS
1573     BIO_snprintf(buf[0], sizeof buf[0], "%s.attr", dbfile);
1574 #else
1575     BIO_snprintf(buf[0], sizeof buf[0], "%s-attr", dbfile);
1576 #endif
1577     dbattr_conf = NCONF_new(NULL);
1578     if (NCONF_load(dbattr_conf, buf[0], &errorline) <= 0) {
1579         if (errorline > 0) {
1580             BIO_printf(bio_err,
1581                        "error on line %ld of db attribute file '%s'\n",
1582                        errorline, buf[0]);
1583             goto err;
1584         } else {
1585             NCONF_free(dbattr_conf);
1586             dbattr_conf = NULL;
1587         }
1588     }
1589
1590     retdb = app_malloc(sizeof(*retdb), "new DB");
1591     retdb->db = tmpdb;
1592     tmpdb = NULL;
1593     if (db_attr)
1594         retdb->attributes = *db_attr;
1595     else {
1596         retdb->attributes.unique_subject = 1;
1597     }
1598
1599     if (dbattr_conf) {
1600         char *p = NCONF_get_string(dbattr_conf, NULL, "unique_subject");
1601         if (p) {
1602 #ifdef RL_DEBUG
1603             BIO_printf(bio_err,
1604                        "DEBUG[load_index]: unique_subject = \"%s\"\n", p);
1605 #endif
1606             retdb->attributes.unique_subject = parse_yesno(p, 1);
1607         }
1608     }
1609
1610  err:
1611     NCONF_free(dbattr_conf);
1612     TXT_DB_free(tmpdb);
1613     BIO_free_all(in);
1614     return retdb;
1615 }
1616
1617 int index_index(CA_DB *db)
1618 {
1619     if (!TXT_DB_create_index(db->db, DB_serial, NULL,
1620                              LHASH_HASH_FN(index_serial),
1621                              LHASH_COMP_FN(index_serial))) {
1622         BIO_printf(bio_err,
1623                    "error creating serial number index:(%ld,%ld,%ld)\n",
1624                    db->db->error, db->db->arg1, db->db->arg2);
1625         return 0;
1626     }
1627
1628     if (db->attributes.unique_subject
1629         && !TXT_DB_create_index(db->db, DB_name, index_name_qual,
1630                                 LHASH_HASH_FN(index_name),
1631                                 LHASH_COMP_FN(index_name))) {
1632         BIO_printf(bio_err, "error creating name index:(%ld,%ld,%ld)\n",
1633                    db->db->error, db->db->arg1, db->db->arg2);
1634         return 0;
1635     }
1636     return 1;
1637 }
1638
1639 int save_index(const char *dbfile, const char *suffix, CA_DB *db)
1640 {
1641     char buf[3][BSIZE];
1642     BIO *out;
1643     int j;
1644
1645     j = strlen(dbfile) + strlen(suffix);
1646     if (j + 6 >= BSIZE) {
1647         BIO_printf(bio_err, "file name too long\n");
1648         goto err;
1649     }
1650 #ifndef OPENSSL_SYS_VMS
1651     j = BIO_snprintf(buf[2], sizeof buf[2], "%s.attr", dbfile);
1652 #else
1653     j = BIO_snprintf(buf[2], sizeof buf[2], "%s-attr", dbfile);
1654 #endif
1655 #ifndef OPENSSL_SYS_VMS
1656     j = BIO_snprintf(buf[1], sizeof buf[1], "%s.attr.%s", dbfile, suffix);
1657 #else
1658     j = BIO_snprintf(buf[1], sizeof buf[1], "%s-attr-%s", dbfile, suffix);
1659 #endif
1660 #ifndef OPENSSL_SYS_VMS
1661     j = BIO_snprintf(buf[0], sizeof buf[0], "%s.%s", dbfile, suffix);
1662 #else
1663     j = BIO_snprintf(buf[0], sizeof buf[0], "%s-%s", dbfile, suffix);
1664 #endif
1665 #ifdef RL_DEBUG
1666     BIO_printf(bio_err, "DEBUG: writing \"%s\"\n", buf[0]);
1667 #endif
1668     out = BIO_new_file(buf[0], "w");
1669     if (out == NULL) {
1670         perror(dbfile);
1671         BIO_printf(bio_err, "unable to open '%s'\n", dbfile);
1672         goto err;
1673     }
1674     j = TXT_DB_write(out, db->db);
1675     BIO_free(out);
1676     if (j <= 0)
1677         goto err;
1678
1679     out = BIO_new_file(buf[1], "w");
1680 #ifdef RL_DEBUG
1681     BIO_printf(bio_err, "DEBUG: writing \"%s\"\n", buf[1]);
1682 #endif
1683     if (out == NULL) {
1684         perror(buf[2]);
1685         BIO_printf(bio_err, "unable to open '%s'\n", buf[2]);
1686         goto err;
1687     }
1688     BIO_printf(out, "unique_subject = %s\n",
1689                db->attributes.unique_subject ? "yes" : "no");
1690     BIO_free(out);
1691
1692     return 1;
1693  err:
1694     return 0;
1695 }
1696
1697 int rotate_index(const char *dbfile, const char *new_suffix,
1698                  const char *old_suffix)
1699 {
1700     char buf[5][BSIZE];
1701     int i, j;
1702
1703     i = strlen(dbfile) + strlen(old_suffix);
1704     j = strlen(dbfile) + strlen(new_suffix);
1705     if (i > j)
1706         j = i;
1707     if (j + 6 >= BSIZE) {
1708         BIO_printf(bio_err, "file name too long\n");
1709         goto err;
1710     }
1711 #ifndef OPENSSL_SYS_VMS
1712     j = BIO_snprintf(buf[4], sizeof buf[4], "%s.attr", dbfile);
1713 #else
1714     j = BIO_snprintf(buf[4], sizeof buf[4], "%s-attr", dbfile);
1715 #endif
1716 #ifndef OPENSSL_SYS_VMS
1717     j = BIO_snprintf(buf[2], sizeof buf[2], "%s.attr.%s", dbfile, new_suffix);
1718 #else
1719     j = BIO_snprintf(buf[2], sizeof buf[2], "%s-attr-%s", dbfile, new_suffix);
1720 #endif
1721 #ifndef OPENSSL_SYS_VMS
1722     j = BIO_snprintf(buf[0], sizeof buf[0], "%s.%s", dbfile, new_suffix);
1723 #else
1724     j = BIO_snprintf(buf[0], sizeof buf[0], "%s-%s", dbfile, new_suffix);
1725 #endif
1726 #ifndef OPENSSL_SYS_VMS
1727     j = BIO_snprintf(buf[1], sizeof buf[1], "%s.%s", dbfile, old_suffix);
1728 #else
1729     j = BIO_snprintf(buf[1], sizeof buf[1], "%s-%s", dbfile, old_suffix);
1730 #endif
1731 #ifndef OPENSSL_SYS_VMS
1732     j = BIO_snprintf(buf[3], sizeof buf[3], "%s.attr.%s", dbfile, old_suffix);
1733 #else
1734     j = BIO_snprintf(buf[3], sizeof buf[3], "%s-attr-%s", dbfile, old_suffix);
1735 #endif
1736 #ifdef RL_DEBUG
1737     BIO_printf(bio_err, "DEBUG: renaming \"%s\" to \"%s\"\n", dbfile, buf[1]);
1738 #endif
1739     if (rename(dbfile, buf[1]) < 0 && errno != ENOENT
1740 #ifdef ENOTDIR
1741         && errno != ENOTDIR
1742 #endif
1743         ) {
1744         BIO_printf(bio_err, "unable to rename %s to %s\n", dbfile, buf[1]);
1745         perror("reason");
1746         goto err;
1747     }
1748 #ifdef RL_DEBUG
1749     BIO_printf(bio_err, "DEBUG: renaming \"%s\" to \"%s\"\n", buf[0], dbfile);
1750 #endif
1751     if (rename(buf[0], dbfile) < 0) {
1752         BIO_printf(bio_err, "unable to rename %s to %s\n", buf[0], dbfile);
1753         perror("reason");
1754         rename(buf[1], dbfile);
1755         goto err;
1756     }
1757 #ifdef RL_DEBUG
1758     BIO_printf(bio_err, "DEBUG: renaming \"%s\" to \"%s\"\n", buf[4], buf[3]);
1759 #endif
1760     if (rename(buf[4], buf[3]) < 0 && errno != ENOENT
1761 #ifdef ENOTDIR
1762         && errno != ENOTDIR
1763 #endif
1764         ) {
1765         BIO_printf(bio_err, "unable to rename %s to %s\n", buf[4], buf[3]);
1766         perror("reason");
1767         rename(dbfile, buf[0]);
1768         rename(buf[1], dbfile);
1769         goto err;
1770     }
1771 #ifdef RL_DEBUG
1772     BIO_printf(bio_err, "DEBUG: renaming \"%s\" to \"%s\"\n", buf[2], buf[4]);
1773 #endif
1774     if (rename(buf[2], buf[4]) < 0) {
1775         BIO_printf(bio_err, "unable to rename %s to %s\n", buf[2], buf[4]);
1776         perror("reason");
1777         rename(buf[3], buf[4]);
1778         rename(dbfile, buf[0]);
1779         rename(buf[1], dbfile);
1780         goto err;
1781     }
1782     return 1;
1783  err:
1784     return 0;
1785 }
1786
1787 void free_index(CA_DB *db)
1788 {
1789     if (db) {
1790         TXT_DB_free(db->db);
1791         OPENSSL_free(db);
1792     }
1793 }
1794
1795 int parse_yesno(const char *str, int def)
1796 {
1797     if (str) {
1798         switch (*str) {
1799         case 'f':              /* false */
1800         case 'F':              /* FALSE */
1801         case 'n':              /* no */
1802         case 'N':              /* NO */
1803         case '0':              /* 0 */
1804             return 0;
1805         case 't':              /* true */
1806         case 'T':              /* TRUE */
1807         case 'y':              /* yes */
1808         case 'Y':              /* YES */
1809         case '1':              /* 1 */
1810             return 1;
1811         }
1812     }
1813     return def;
1814 }
1815
1816 /*
1817  * name is expected to be in the format /type0=value0/type1=value1/type2=...
1818  * where characters may be escaped by \
1819  */
1820 X509_NAME *parse_name(const char *cp, long chtype, int canmulti)
1821 {
1822     int nextismulti = 0;
1823     char *work;
1824     X509_NAME *n;
1825
1826     if (*cp++ != '/')
1827         return NULL;
1828
1829     n = X509_NAME_new();
1830     if (n == NULL)
1831         return NULL;
1832     work = OPENSSL_strdup(cp);
1833     if (work == NULL)
1834         goto err;
1835
1836     while (*cp) {
1837         char *bp = work;
1838         char *typestr = bp;
1839         unsigned char *valstr;
1840         int nid;
1841         int ismulti = nextismulti;
1842         nextismulti = 0;
1843
1844         /* Collect the type */
1845         while (*cp && *cp != '=')
1846             *bp++ = *cp++;
1847         if (*cp == '\0') {
1848             BIO_printf(bio_err,
1849                     "%s: Hit end of string before finding the equals.\n",
1850                     opt_getprog());
1851             goto err;
1852         }
1853         *bp++ = '\0';
1854         ++cp;
1855
1856         /* Collect the value. */
1857         valstr = (unsigned char *)bp;
1858         for (; *cp && *cp != '/'; *bp++ = *cp++) {
1859             if (canmulti && *cp == '+') {
1860                 nextismulti = 1;
1861                 break;
1862             }
1863             if (*cp == '\\' && *++cp == '\0') {
1864                 BIO_printf(bio_err,
1865                         "%s: escape character at end of string\n",
1866                         opt_getprog());
1867                 goto err;
1868             }
1869         }
1870         *bp++ = '\0';
1871
1872         /* If not at EOS (must be + or /), move forward. */
1873         if (*cp)
1874             ++cp;
1875
1876         /* Parse */
1877         nid = OBJ_txt2nid(typestr);
1878         if (nid == NID_undef) {
1879             BIO_printf(bio_err, "%s: Skipping unknown attribute \"%s\"\n",
1880                       opt_getprog(), typestr);
1881             continue;
1882         }
1883         if (!X509_NAME_add_entry_by_NID(n, nid, chtype,
1884                                         valstr, strlen((char *)valstr),
1885                                         -1, ismulti ? -1 : 0))
1886             goto err;
1887     }
1888
1889     OPENSSL_free(work);
1890     return n;
1891
1892  err:
1893     X509_NAME_free(n);
1894     OPENSSL_free(work);
1895     return NULL;
1896 }
1897
1898 /*
1899  * Read whole contents of a BIO into an allocated memory buffer and return
1900  * it.
1901  */
1902
1903 int bio_to_mem(unsigned char **out, int maxlen, BIO *in)
1904 {
1905     BIO *mem;
1906     int len, ret;
1907     unsigned char tbuf[1024];
1908     mem = BIO_new(BIO_s_mem());
1909     if (!mem)
1910         return -1;
1911     for (;;) {
1912         if ((maxlen != -1) && maxlen < 1024)
1913             len = maxlen;
1914         else
1915             len = 1024;
1916         len = BIO_read(in, tbuf, len);
1917         if (len <= 0)
1918             break;
1919         if (BIO_write(mem, tbuf, len) != len) {
1920             BIO_free(mem);
1921             return -1;
1922         }
1923         maxlen -= len;
1924
1925         if (maxlen == 0)
1926             break;
1927     }
1928     ret = BIO_get_mem_data(mem, (char **)out);
1929     BIO_set_flags(mem, BIO_FLAGS_MEM_RDONLY);
1930     BIO_free(mem);
1931     return ret;
1932 }
1933
1934 int pkey_ctrl_string(EVP_PKEY_CTX *ctx, char *value)
1935 {
1936     int rv;
1937     char *stmp, *vtmp = NULL;
1938     stmp = BUF_strdup(value);
1939     if (!stmp)
1940         return -1;
1941     vtmp = strchr(stmp, ':');
1942     if (vtmp) {
1943         *vtmp = 0;
1944         vtmp++;
1945     }
1946     rv = EVP_PKEY_CTX_ctrl_str(ctx, stmp, vtmp);
1947     OPENSSL_free(stmp);
1948     return rv;
1949 }
1950
1951 static void nodes_print(const char *name, STACK_OF(X509_POLICY_NODE) *nodes)
1952 {
1953     X509_POLICY_NODE *node;
1954     int i;
1955
1956     BIO_printf(bio_err, "%s Policies:", name);
1957     if (nodes) {
1958         BIO_puts(bio_err, "\n");
1959         for (i = 0; i < sk_X509_POLICY_NODE_num(nodes); i++) {
1960             node = sk_X509_POLICY_NODE_value(nodes, i);
1961             X509_POLICY_NODE_print(bio_err, node, 2);
1962         }
1963     } else
1964         BIO_puts(bio_err, " <empty>\n");
1965 }
1966
1967 void policies_print(X509_STORE_CTX *ctx)
1968 {
1969     X509_POLICY_TREE *tree;
1970     int explicit_policy;
1971     tree = X509_STORE_CTX_get0_policy_tree(ctx);
1972     explicit_policy = X509_STORE_CTX_get_explicit_policy(ctx);
1973
1974     BIO_printf(bio_err, "Require explicit Policy: %s\n",
1975                explicit_policy ? "True" : "False");
1976
1977     nodes_print("Authority", X509_policy_tree_get0_policies(tree));
1978     nodes_print("User", X509_policy_tree_get0_user_policies(tree));
1979 }
1980
1981 #if !defined(OPENSSL_NO_JPAKE) && !defined(OPENSSL_NO_PSK)
1982
1983 static JPAKE_CTX *jpake_init(const char *us, const char *them,
1984                              const char *secret)
1985 {
1986     BIGNUM *p = NULL;
1987     BIGNUM *g = NULL;
1988     BIGNUM *q = NULL;
1989     BIGNUM *bnsecret = BN_new();
1990     JPAKE_CTX *ctx;
1991
1992     /* Use a safe prime for p (that we found earlier) */
1993     BN_hex2bn(&p,
1994               "F9E5B365665EA7A05A9C534502780FEE6F1AB5BD4F49947FD036DBD7E905269AF46EF28B0FC07487EE4F5D20FB3C0AF8E700F3A2FA3414970CBED44FEDFF80CE78D800F184BB82435D137AADA2C6C16523247930A63B85661D1FC817A51ACD96168E95898A1F83A79FFB529368AA7833ABD1B0C3AEDDB14D2E1A2F71D99F763F");
1995     g = BN_new();
1996     BN_set_word(g, 2);
1997     q = BN_new();
1998     BN_rshift1(q, p);
1999
2000     BN_bin2bn((const unsigned char *)secret, strlen(secret), bnsecret);
2001
2002     ctx = JPAKE_CTX_new(us, them, p, g, q, bnsecret);
2003     BN_free(bnsecret);
2004     BN_free(q);
2005     BN_free(g);
2006     BN_free(p);
2007
2008     return ctx;
2009 }
2010
2011 static void jpake_send_part(BIO *conn, const JPAKE_STEP_PART *p)
2012 {
2013     BN_print(conn, p->gx);
2014     BIO_puts(conn, "\n");
2015     BN_print(conn, p->zkpx.gr);
2016     BIO_puts(conn, "\n");
2017     BN_print(conn, p->zkpx.b);
2018     BIO_puts(conn, "\n");
2019 }
2020
2021 static void jpake_send_step1(BIO *bconn, JPAKE_CTX *ctx)
2022 {
2023     JPAKE_STEP1 s1;
2024
2025     JPAKE_STEP1_init(&s1);
2026     JPAKE_STEP1_generate(&s1, ctx);
2027     jpake_send_part(bconn, &s1.p1);
2028     jpake_send_part(bconn, &s1.p2);
2029     (void)BIO_flush(bconn);
2030     JPAKE_STEP1_release(&s1);
2031 }
2032
2033 static void jpake_send_step2(BIO *bconn, JPAKE_CTX *ctx)
2034 {
2035     JPAKE_STEP2 s2;
2036
2037     JPAKE_STEP2_init(&s2);
2038     JPAKE_STEP2_generate(&s2, ctx);
2039     jpake_send_part(bconn, &s2);
2040     (void)BIO_flush(bconn);
2041     JPAKE_STEP2_release(&s2);
2042 }
2043
2044 static void jpake_send_step3a(BIO *bconn, JPAKE_CTX *ctx)
2045 {
2046     JPAKE_STEP3A s3a;
2047
2048     JPAKE_STEP3A_init(&s3a);
2049     JPAKE_STEP3A_generate(&s3a, ctx);
2050     BIO_write(bconn, s3a.hhk, sizeof s3a.hhk);
2051     (void)BIO_flush(bconn);
2052     JPAKE_STEP3A_release(&s3a);
2053 }
2054
2055 static void jpake_send_step3b(BIO *bconn, JPAKE_CTX *ctx)
2056 {
2057     JPAKE_STEP3B s3b;
2058
2059     JPAKE_STEP3B_init(&s3b);
2060     JPAKE_STEP3B_generate(&s3b, ctx);
2061     BIO_write(bconn, s3b.hk, sizeof s3b.hk);
2062     (void)BIO_flush(bconn);
2063     JPAKE_STEP3B_release(&s3b);
2064 }
2065
2066 static void readbn(BIGNUM **bn, BIO *bconn)
2067 {
2068     char buf[10240];
2069     int l;
2070
2071     l = BIO_gets(bconn, buf, sizeof buf);
2072     assert(l > 0);
2073     assert(buf[l - 1] == '\n');
2074     buf[l - 1] = '\0';
2075     BN_hex2bn(bn, buf);
2076 }
2077
2078 static void jpake_receive_part(JPAKE_STEP_PART *p, BIO *bconn)
2079 {
2080     readbn(&p->gx, bconn);
2081     readbn(&p->zkpx.gr, bconn);
2082     readbn(&p->zkpx.b, bconn);
2083 }
2084
2085 static void jpake_receive_step1(JPAKE_CTX *ctx, BIO *bconn)
2086 {
2087     JPAKE_STEP1 s1;
2088
2089     JPAKE_STEP1_init(&s1);
2090     jpake_receive_part(&s1.p1, bconn);
2091     jpake_receive_part(&s1.p2, bconn);
2092     if (!JPAKE_STEP1_process(ctx, &s1)) {
2093         ERR_print_errors(bio_err);
2094         exit(1);
2095     }
2096     JPAKE_STEP1_release(&s1);
2097 }
2098
2099 static void jpake_receive_step2(JPAKE_CTX *ctx, BIO *bconn)
2100 {
2101     JPAKE_STEP2 s2;
2102
2103     JPAKE_STEP2_init(&s2);
2104     jpake_receive_part(&s2, bconn);
2105     if (!JPAKE_STEP2_process(ctx, &s2)) {
2106         ERR_print_errors(bio_err);
2107         exit(1);
2108     }
2109     JPAKE_STEP2_release(&s2);
2110 }
2111
2112 static void jpake_receive_step3a(JPAKE_CTX *ctx, BIO *bconn)
2113 {
2114     JPAKE_STEP3A s3a;
2115     int l;
2116
2117     JPAKE_STEP3A_init(&s3a);
2118     l = BIO_read(bconn, s3a.hhk, sizeof s3a.hhk);
2119     assert(l == sizeof s3a.hhk);
2120     if (!JPAKE_STEP3A_process(ctx, &s3a)) {
2121         ERR_print_errors(bio_err);
2122         exit(1);
2123     }
2124     JPAKE_STEP3A_release(&s3a);
2125 }
2126
2127 static void jpake_receive_step3b(JPAKE_CTX *ctx, BIO *bconn)
2128 {
2129     JPAKE_STEP3B s3b;
2130     int l;
2131
2132     JPAKE_STEP3B_init(&s3b);
2133     l = BIO_read(bconn, s3b.hk, sizeof s3b.hk);
2134     assert(l == sizeof s3b.hk);
2135     if (!JPAKE_STEP3B_process(ctx, &s3b)) {
2136         ERR_print_errors(bio_err);
2137         exit(1);
2138     }
2139     JPAKE_STEP3B_release(&s3b);
2140 }
2141
2142 void jpake_client_auth(BIO *out, BIO *conn, const char *secret)
2143 {
2144     JPAKE_CTX *ctx;
2145     BIO *bconn;
2146
2147     BIO_puts(out, "Authenticating with JPAKE\n");
2148
2149     ctx = jpake_init("client", "server", secret);
2150
2151     bconn = BIO_new(BIO_f_buffer());
2152     BIO_push(bconn, conn);
2153
2154     jpake_send_step1(bconn, ctx);
2155     jpake_receive_step1(ctx, bconn);
2156     jpake_send_step2(bconn, ctx);
2157     jpake_receive_step2(ctx, bconn);
2158     jpake_send_step3a(bconn, ctx);
2159     jpake_receive_step3b(ctx, bconn);
2160
2161     BIO_puts(out, "JPAKE authentication succeeded, setting PSK\n");
2162
2163     OPENSSL_free(psk_key);
2164     psk_key = BN_bn2hex(JPAKE_get_shared_key(ctx));
2165
2166     BIO_pop(bconn);
2167     BIO_free(bconn);
2168
2169     JPAKE_CTX_free(ctx);
2170 }
2171
2172 void jpake_server_auth(BIO *out, BIO *conn, const char *secret)
2173 {
2174     JPAKE_CTX *ctx;
2175     BIO *bconn;
2176
2177     BIO_puts(out, "Authenticating with JPAKE\n");
2178
2179     ctx = jpake_init("server", "client", secret);
2180
2181     bconn = BIO_new(BIO_f_buffer());
2182     BIO_push(bconn, conn);
2183
2184     jpake_receive_step1(ctx, bconn);
2185     jpake_send_step1(bconn, ctx);
2186     jpake_receive_step2(ctx, bconn);
2187     jpake_send_step2(bconn, ctx);
2188     jpake_receive_step3a(ctx, bconn);
2189     jpake_send_step3b(bconn, ctx);
2190
2191     BIO_puts(out, "JPAKE authentication succeeded, setting PSK\n");
2192
2193     OPENSSL_free(psk_key);
2194     psk_key = BN_bn2hex(JPAKE_get_shared_key(ctx));
2195
2196     BIO_pop(bconn);
2197     BIO_free(bconn);
2198
2199     JPAKE_CTX_free(ctx);
2200 }
2201
2202 #endif
2203
2204 #ifndef OPENSSL_NO_TLSEXT
2205 /*-
2206  * next_protos_parse parses a comma separated list of strings into a string
2207  * in a format suitable for passing to SSL_CTX_set_next_protos_advertised.
2208  *   outlen: (output) set to the length of the resulting buffer on success.
2209  *   err: (maybe NULL) on failure, an error message line is written to this BIO.
2210  *   in: a NUL termianted string like "abc,def,ghi"
2211  *
2212  *   returns: a malloced buffer or NULL on failure.
2213  */
2214 unsigned char *next_protos_parse(unsigned short *outlen, const char *in)
2215 {
2216     size_t len;
2217     unsigned char *out;
2218     size_t i, start = 0;
2219
2220     len = strlen(in);
2221     if (len >= 65535)
2222         return NULL;
2223
2224     out = app_malloc(strlen(in) + 1, "NPN buffer");
2225     for (i = 0; i <= len; ++i) {
2226         if (i == len || in[i] == ',') {
2227             if (i - start > 255) {
2228                 OPENSSL_free(out);
2229                 return NULL;
2230             }
2231             out[start] = i - start;
2232             start = i + 1;
2233         } else
2234             out[i + 1] = in[i];
2235     }
2236
2237     *outlen = len + 1;
2238     return out;
2239 }
2240 #endif                          /* ndef OPENSSL_NO_TLSEXT */
2241
2242 void print_cert_checks(BIO *bio, X509 *x,
2243                        const char *checkhost,
2244                        const char *checkemail, const char *checkip)
2245 {
2246     if (x == NULL)
2247         return;
2248     if (checkhost) {
2249         BIO_printf(bio, "Hostname %s does%s match certificate\n",
2250                    checkhost,
2251                    X509_check_host(x, checkhost, 0, 0, NULL) == 1
2252                        ? "" : " NOT");
2253     }
2254
2255     if (checkemail) {
2256         BIO_printf(bio, "Email %s does%s match certificate\n",
2257                    checkemail, X509_check_email(x, checkemail, 0, 0)
2258                    ? "" : " NOT");
2259     }
2260
2261     if (checkip) {
2262         BIO_printf(bio, "IP %s does%s match certificate\n",
2263                    checkip, X509_check_ip_asc(x, checkip, 0) ? "" : " NOT");
2264     }
2265 }
2266
2267 /* Get first http URL from a DIST_POINT structure */
2268
2269 static const char *get_dp_url(DIST_POINT *dp)
2270 {
2271     GENERAL_NAMES *gens;
2272     GENERAL_NAME *gen;
2273     int i, gtype;
2274     ASN1_STRING *uri;
2275     if (!dp->distpoint || dp->distpoint->type != 0)
2276         return NULL;
2277     gens = dp->distpoint->name.fullname;
2278     for (i = 0; i < sk_GENERAL_NAME_num(gens); i++) {
2279         gen = sk_GENERAL_NAME_value(gens, i);
2280         uri = GENERAL_NAME_get0_value(gen, &gtype);
2281         if (gtype == GEN_URI && ASN1_STRING_length(uri) > 6) {
2282             char *uptr = (char *)ASN1_STRING_data(uri);
2283             if (strncmp(uptr, "http://", 7) == 0)
2284                 return uptr;
2285         }
2286     }
2287     return NULL;
2288 }
2289
2290 /*
2291  * Look through a CRLDP structure and attempt to find an http URL to
2292  * downloads a CRL from.
2293  */
2294
2295 static X509_CRL *load_crl_crldp(STACK_OF(DIST_POINT) *crldp)
2296 {
2297     int i;
2298     const char *urlptr = NULL;
2299     for (i = 0; i < sk_DIST_POINT_num(crldp); i++) {
2300         DIST_POINT *dp = sk_DIST_POINT_value(crldp, i);
2301         urlptr = get_dp_url(dp);
2302         if (urlptr)
2303             return load_crl(urlptr, FORMAT_HTTP);
2304     }
2305     return NULL;
2306 }
2307
2308 /*
2309  * Example of downloading CRLs from CRLDP: not usable for real world as it
2310  * always downloads, doesn't support non-blocking I/O and doesn't cache
2311  * anything.
2312  */
2313
2314 static STACK_OF(X509_CRL) *crls_http_cb(X509_STORE_CTX *ctx, X509_NAME *nm)
2315 {
2316     X509 *x;
2317     STACK_OF(X509_CRL) *crls = NULL;
2318     X509_CRL *crl;
2319     STACK_OF(DIST_POINT) *crldp;
2320
2321     crls = sk_X509_CRL_new_null();
2322     if (!crls)
2323         return NULL;
2324     x = X509_STORE_CTX_get_current_cert(ctx);
2325     crldp = X509_get_ext_d2i(x, NID_crl_distribution_points, NULL, NULL);
2326     crl = load_crl_crldp(crldp);
2327     sk_DIST_POINT_pop_free(crldp, DIST_POINT_free);
2328     if (!crl)
2329         return NULL;
2330     sk_X509_CRL_push(crls, crl);
2331     /* Try to download delta CRL */
2332     crldp = X509_get_ext_d2i(x, NID_freshest_crl, NULL, NULL);
2333     crl = load_crl_crldp(crldp);
2334     sk_DIST_POINT_pop_free(crldp, DIST_POINT_free);
2335     if (crl)
2336         sk_X509_CRL_push(crls, crl);
2337     return crls;
2338 }
2339
2340 void store_setup_crl_download(X509_STORE *st)
2341 {
2342     X509_STORE_set_lookup_crls_cb(st, crls_http_cb);
2343 }
2344
2345 /*
2346  * Platform-specific sections
2347  */
2348 #if defined(_WIN32)
2349 # ifdef fileno
2350 #  undef fileno
2351 #  define fileno(a) (int)_fileno(a)
2352 # endif
2353
2354 # include <windows.h>
2355 # include <tchar.h>
2356
2357 static int WIN32_rename(const char *from, const char *to)
2358 {
2359     TCHAR *tfrom = NULL, *tto;
2360     DWORD err;
2361     int ret = 0;
2362
2363     if (sizeof(TCHAR) == 1) {
2364         tfrom = (TCHAR *)from;
2365         tto = (TCHAR *)to;
2366     } else {                    /* UNICODE path */
2367
2368         size_t i, flen = strlen(from) + 1, tlen = strlen(to) + 1;
2369         tfrom = malloc(sizeof(*tfrom) * (flen + tlen));
2370         if (tfrom == NULL)
2371             goto err;
2372         tto = tfrom + flen;
2373 # if !defined(_WIN32_WCE) || _WIN32_WCE>=101
2374         if (!MultiByteToWideChar(CP_ACP, 0, from, flen, (WCHAR *)tfrom, flen))
2375 # endif
2376             for (i = 0; i < flen; i++)
2377                 tfrom[i] = (TCHAR)from[i];
2378 # if !defined(_WIN32_WCE) || _WIN32_WCE>=101
2379         if (!MultiByteToWideChar(CP_ACP, 0, to, tlen, (WCHAR *)tto, tlen))
2380 # endif
2381             for (i = 0; i < tlen; i++)
2382                 tto[i] = (TCHAR)to[i];
2383     }
2384
2385     if (MoveFile(tfrom, tto))
2386         goto ok;
2387     err = GetLastError();
2388     if (err == ERROR_ALREADY_EXISTS || err == ERROR_FILE_EXISTS) {
2389         if (DeleteFile(tto) && MoveFile(tfrom, tto))
2390             goto ok;
2391         err = GetLastError();
2392     }
2393     if (err == ERROR_FILE_NOT_FOUND || err == ERROR_PATH_NOT_FOUND)
2394         errno = ENOENT;
2395     else if (err == ERROR_ACCESS_DENIED)
2396         errno = EACCES;
2397     else
2398         errno = EINVAL;         /* we could map more codes... */
2399  err:
2400     ret = -1;
2401  ok:
2402     if (tfrom != NULL && tfrom != (TCHAR *)from)
2403         free(tfrom);
2404     return ret;
2405 }
2406 #endif
2407
2408 /* app_tminterval section */
2409 #if defined(_WIN32)
2410 double app_tminterval(int stop, int usertime)
2411 {
2412     FILETIME now;
2413     double ret = 0;
2414     static ULARGE_INTEGER tmstart;
2415     static int warning = 1;
2416 # ifdef _WIN32_WINNT
2417     static HANDLE proc = NULL;
2418
2419     if (proc == NULL) {
2420         if (check_winnt())
2421             proc = OpenProcess(PROCESS_QUERY_INFORMATION, FALSE,
2422                                GetCurrentProcessId());
2423         if (proc == NULL)
2424             proc = (HANDLE) - 1;
2425     }
2426
2427     if (usertime && proc != (HANDLE) - 1) {
2428         FILETIME junk;
2429         GetProcessTimes(proc, &junk, &junk, &junk, &now);
2430     } else
2431 # endif
2432     {
2433         SYSTEMTIME systime;
2434
2435         if (usertime && warning) {
2436             BIO_printf(bio_err, "To get meaningful results, run "
2437                        "this program on idle system.\n");
2438             warning = 0;
2439         }
2440         GetSystemTime(&systime);
2441         SystemTimeToFileTime(&systime, &now);
2442     }
2443
2444     if (stop == TM_START) {
2445         tmstart.u.LowPart = now.dwLowDateTime;
2446         tmstart.u.HighPart = now.dwHighDateTime;
2447     } else {
2448         ULARGE_INTEGER tmstop;
2449
2450         tmstop.u.LowPart = now.dwLowDateTime;
2451         tmstop.u.HighPart = now.dwHighDateTime;
2452
2453         ret = (__int64)(tmstop.QuadPart - tmstart.QuadPart) * 1e-7;
2454     }
2455
2456     return (ret);
2457 }
2458 #elif defined(OPENSSL_SYS_NETWARE)
2459 # include <time.h>
2460
2461 double app_tminterval(int stop, int usertime)
2462 {
2463     static clock_t tmstart;
2464     static int warning = 1;
2465     double ret = 0;
2466
2467     if (usertime && warning) {
2468         BIO_printf(bio_err, "To get meaningful results, run "
2469                    "this program on idle system.\n");
2470         warning = 0;
2471     }
2472
2473     if (stop == TM_START)
2474         tmstart = clock();
2475     else
2476         ret = (clock() - tmstart) / (double)CLOCKS_PER_SEC;
2477
2478     return (ret);
2479 }
2480
2481
2482 #elif defined(OPENSSL_SYSTEM_VXWORKS)
2483 # include <time.h>
2484
2485 double app_tminterval(int stop, int usertime)
2486 {
2487     double ret = 0;
2488 # ifdef CLOCK_REALTIME
2489     static struct timespec tmstart;
2490     struct timespec now;
2491 # else
2492     static unsigned long tmstart;
2493     unsigned long now;
2494 # endif
2495     static int warning = 1;
2496
2497     if (usertime && warning) {
2498         BIO_printf(bio_err, "To get meaningful results, run "
2499                    "this program on idle system.\n");
2500         warning = 0;
2501     }
2502 # ifdef CLOCK_REALTIME
2503     clock_gettime(CLOCK_REALTIME, &now);
2504     if (stop == TM_START)
2505         tmstart = now;
2506     else
2507         ret = ((now.tv_sec + now.tv_nsec * 1e-9)
2508                - (tmstart.tv_sec + tmstart.tv_nsec * 1e-9));
2509 # else
2510     now = tickGet();
2511     if (stop == TM_START)
2512         tmstart = now;
2513     else
2514         ret = (now - tmstart) / (double)sysClkRateGet();
2515 # endif
2516     return (ret);
2517 }
2518
2519 #elif defined(OPENSSL_SYSTEM_VMS)
2520 # include <time.h>
2521 # include <times.h>
2522
2523 double app_tminterval(int stop, int usertime)
2524 {
2525     static clock_t tmstart;
2526     double ret = 0;
2527     clock_t now;
2528 # ifdef __TMS
2529     struct tms rus;
2530
2531     now = times(&rus);
2532     if (usertime)
2533         now = rus.tms_utime;
2534 # else
2535     if (usertime)
2536         now = clock();          /* sum of user and kernel times */
2537     else {
2538         struct timeval tv;
2539         gettimeofday(&tv, NULL);
2540         now = (clock_t)((unsigned long long)tv.tv_sec * CLK_TCK +
2541                         (unsigned long long)tv.tv_usec * (1000000 / CLK_TCK)
2542             );
2543     }
2544 # endif
2545     if (stop == TM_START)
2546         tmstart = now;
2547     else
2548         ret = (now - tmstart) / (double)(CLK_TCK);
2549
2550     return (ret);
2551 }
2552
2553 #elif defined(_SC_CLK_TCK)      /* by means of unistd.h */
2554 # include <sys/times.h>
2555
2556 double app_tminterval(int stop, int usertime)
2557 {
2558     double ret = 0;
2559     struct tms rus;
2560     clock_t now = times(&rus);
2561     static clock_t tmstart;
2562
2563     if (usertime)
2564         now = rus.tms_utime;
2565
2566     if (stop == TM_START)
2567         tmstart = now;
2568     else {
2569         long int tck = sysconf(_SC_CLK_TCK);
2570         ret = (now - tmstart) / (double)tck;
2571     }
2572
2573     return (ret);
2574 }
2575
2576 #else
2577 # include <sys/time.h>
2578 # include <sys/resource.h>
2579
2580 double app_tminterval(int stop, int usertime)
2581 {
2582     double ret = 0;
2583     struct rusage rus;
2584     struct timeval now;
2585     static struct timeval tmstart;
2586
2587     if (usertime)
2588         getrusage(RUSAGE_SELF, &rus), now = rus.ru_utime;
2589     else
2590         gettimeofday(&now, NULL);
2591
2592     if (stop == TM_START)
2593         tmstart = now;
2594     else
2595         ret = ((now.tv_sec + now.tv_usec * 1e-6)
2596                - (tmstart.tv_sec + tmstart.tv_usec * 1e-6));
2597
2598     return ret;
2599 }
2600 #endif
2601
2602 int app_access(const char* name, int flag)
2603 {
2604 #ifdef _WIN32
2605     return _access(name, flag);
2606 #else
2607     return access(name, flag);
2608 #endif
2609 }
2610
2611 int app_hex(char c)
2612 {
2613     switch (c) {
2614     default:
2615     case '0':
2616         return 0;
2617     case '1':
2618         return 1;
2619     case '2':
2620         return 2;
2621     case '3':
2622         return 3;
2623     case '4':
2624           return 4;
2625     case '5':
2626           return 5;
2627     case '6':
2628           return 6;
2629     case '7':
2630           return 7;
2631     case '8':
2632           return 8;
2633     case '9':
2634           return 9;
2635     case 'a': case 'A':
2636           return 0x0A;
2637     case 'b': case 'B':
2638           return 0x0B;
2639     case 'c': case 'C':
2640           return 0x0C;
2641     case 'd': case 'D':
2642           return 0x0D;
2643     case 'e': case 'E':
2644           return 0x0E;
2645     case 'f': case 'F':
2646           return 0x0F;
2647     }
2648 }
2649
2650 /* app_isdir section */
2651 #ifdef _WIN32
2652 int app_isdir(const char *name)
2653 {
2654     HANDLE hList;
2655     WIN32_FIND_DATA FileData;
2656 # if defined(UNICODE) || defined(_UNICODE)
2657     size_t i, len_0 = strlen(name) + 1;
2658
2659     if (len_0 > OSSL_NELEM(FileData.cFileName))
2660         return -1;
2661
2662 #  if !defined(_WIN32_WCE) || _WIN32_WCE>=101
2663     if (!MultiByteToWideChar
2664         (CP_ACP, 0, name, len_0, FileData.cFileName, len_0))
2665 #  endif
2666         for (i = 0; i < len_0; i++)
2667             FileData.cFileName[i] = (WCHAR)name[i];
2668
2669     hList = FindFirstFile(FileData.cFileName, &FileData);
2670 # else
2671     hList = FindFirstFile(name, &FileData);
2672 # endif
2673     if (hList == INVALID_HANDLE_VALUE)
2674         return -1;
2675     FindClose(hList);
2676     return ((FileData.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) != 0);
2677 }
2678 #else
2679 # include <sys/stat.h>
2680 # ifndef S_ISDIR
2681 #  if defined(_S_IFMT) && defined(_S_IFDIR)
2682 #   define S_ISDIR(a)   (((a) & _S_IFMT) == _S_IFDIR)
2683 #  else
2684 #   define S_ISDIR(a)   (((a) & S_IFMT) == S_IFDIR)
2685 #  endif
2686 # endif
2687
2688 int app_isdir(const char *name)
2689 {
2690 # if defined(S_ISDIR)
2691     struct stat st;
2692
2693     if (stat(name, &st) == 0)
2694         return S_ISDIR(st.st_mode);
2695     else
2696         return -1;
2697 # else
2698     return -1;
2699 # endif
2700 }
2701 #endif
2702
2703 /* raw_read|write section */
2704 #if defined(_WIN32) && defined(STD_INPUT_HANDLE)
2705 int raw_read_stdin(void *buf, int siz)
2706 {
2707     DWORD n;
2708     if (ReadFile(GetStdHandle(STD_INPUT_HANDLE), buf, siz, &n, NULL))
2709         return (n);
2710     else
2711         return (-1);
2712 }
2713 #else
2714 int raw_read_stdin(void *buf, int siz)
2715 {
2716     return read(fileno(stdin), buf, siz);
2717 }
2718 #endif
2719
2720 #if defined(_WIN32) && defined(STD_OUTPUT_HANDLE)
2721 int raw_write_stdout(const void *buf, int siz)
2722 {
2723     DWORD n;
2724     if (WriteFile(GetStdHandle(STD_OUTPUT_HANDLE), buf, siz, &n, NULL))
2725         return (n);
2726     else
2727         return (-1);
2728 }
2729 #else
2730 int raw_write_stdout(const void *buf, int siz)
2731 {
2732     return write(fileno(stdout), buf, siz);
2733 }
2734 #endif