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