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