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