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