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