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