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