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