PR: 2144
[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 #include <stdio.h>
113 #include <stdlib.h>
114 #include <string.h>
115 #include <sys/types.h>
116 #include <sys/stat.h>
117 #include <ctype.h>
118 #include <assert.h>
119 #include <openssl/err.h>
120 #include <openssl/x509.h>
121 #include <openssl/x509v3.h>
122 #include <openssl/pem.h>
123 #include <openssl/pkcs12.h>
124 #include <openssl/ui.h>
125 #include <openssl/safestack.h>
126 #ifndef OPENSSL_NO_ENGINE
127 #include <openssl/engine.h>
128 #endif
129 #ifndef OPENSSL_NO_RSA
130 #include <openssl/rsa.h>
131 #endif
132 #include <openssl/bn.h>
133 #ifndef OPENSSL_NO_JPAKE
134 #include <openssl/jpake.h>
135 #endif
136
137 #define NON_MAIN
138 #include "apps.h"
139 #undef NON_MAIN
140
141 typedef struct {
142         const char *name;
143         unsigned long flag;
144         unsigned long mask;
145 } NAME_EX_TBL;
146
147 static UI_METHOD *ui_method = NULL;
148
149 static int set_table_opts(unsigned long *flags, const char *arg, const NAME_EX_TBL *in_tbl);
150 static int set_multi_opts(unsigned long *flags, const char *arg, const NAME_EX_TBL *in_tbl);
151
152 #if !defined(OPENSSL_NO_RC4) && !defined(OPENSSL_NO_RSA)
153 /* Looks like this stuff is worth moving into separate function */
154 static EVP_PKEY *
155 load_netscape_key(BIO *err, BIO *key, const char *file,
156                 const char *key_descrip, int format);
157 #endif
158
159 int app_init(long mesgwin);
160 #ifdef undef /* never finished - probably never will be :-) */
161 int args_from_file(char *file, int *argc, char **argv[])
162         {
163         FILE *fp;
164         int num,i;
165         unsigned int len;
166         static char *buf=NULL;
167         static char **arg=NULL;
168         char *p;
169         struct stat stbuf;
170
171         if (stat(file,&stbuf) < 0) return(0);
172
173         fp=fopen(file,"r");
174         if (fp == NULL)
175                 return(0);
176
177         *argc=0;
178         *argv=NULL;
179
180         len=(unsigned int)stbuf.st_size;
181         if (buf != NULL) OPENSSL_free(buf);
182         buf=(char *)OPENSSL_malloc(len+1);
183         if (buf == NULL) return(0);
184
185         len=fread(buf,1,len,fp);
186         if (len <= 1) return(0);
187         buf[len]='\0';
188
189         i=0;
190         for (p=buf; *p; p++)
191                 if (*p == '\n') i++;
192         if (arg != NULL) OPENSSL_free(arg);
193         arg=(char **)OPENSSL_malloc(sizeof(char *)*(i*2));
194
195         *argv=arg;
196         num=0;
197         p=buf;
198         for (;;)
199                 {
200                 if (!*p) break;
201                 if (*p == '#') /* comment line */
202                         {
203                         while (*p && (*p != '\n')) p++;
204                         continue;
205                         }
206                 /* else we have a line */
207                 *(arg++)=p;
208                 num++;
209                 while (*p && ((*p != ' ') && (*p != '\t') && (*p != '\n')))
210                         p++;
211                 if (!*p) break;
212                 if (*p == '\n')
213                         {
214                         *(p++)='\0';
215                         continue;
216                         }
217                 /* else it is a tab or space */
218                 p++;
219                 while (*p && ((*p == ' ') || (*p == '\t') || (*p == '\n')))
220                         p++;
221                 if (!*p) break;
222                 if (*p == '\n')
223                         {
224                         p++;
225                         continue;
226                         }
227                 *(arg++)=p++;
228                 num++;
229                 while (*p && (*p != '\n')) p++;
230                 if (!*p) break;
231                 /* else *p == '\n' */
232                 *(p++)='\0';
233                 }
234         *argc=num;
235         return(1);
236         }
237 #endif
238
239 int str2fmt(char *s)
240         {
241         if      ((*s == 'D') || (*s == 'd'))
242                 return(FORMAT_ASN1);
243         else if ((*s == 'T') || (*s == 't'))
244                 return(FORMAT_TEXT);
245         else if ((*s == 'P') || (*s == 'p'))
246                 return(FORMAT_PEM);
247         else if ((*s == 'N') || (*s == 'n'))
248                 return(FORMAT_NETSCAPE);
249         else if ((*s == 'S') || (*s == 's'))
250                 return(FORMAT_SMIME);
251         else if ((*s == '1')
252                 || (strcmp(s,"PKCS12") == 0) || (strcmp(s,"pkcs12") == 0)
253                 || (strcmp(s,"P12") == 0) || (strcmp(s,"p12") == 0))
254                 return(FORMAT_PKCS12);
255         else if ((*s == 'E') || (*s == 'e'))
256                 return(FORMAT_ENGINE);
257         else
258                 return(FORMAT_UNDEF);
259         }
260
261 #if defined(OPENSSL_SYS_MSDOS) || defined(OPENSSL_SYS_WIN32) || defined(OPENSSL_SYS_WIN16) || defined(OPENSSL_SYS_NETWARE)
262 void program_name(char *in, char *out, int size)
263         {
264         int i,n;
265         char *p=NULL;
266
267         n=strlen(in);
268         /* find the last '/', '\' or ':' */
269         for (i=n-1; i>0; i--)
270                 {
271                 if ((in[i] == '/') || (in[i] == '\\') || (in[i] == ':'))
272                         {
273                         p= &(in[i+1]);
274                         break;
275                         }
276                 }
277         if (p == NULL)
278                 p=in;
279         n=strlen(p);
280
281 #if defined(OPENSSL_SYS_NETWARE)
282    /* strip off trailing .nlm if present. */
283    if ((n > 4) && (p[n-4] == '.') &&
284       ((p[n-3] == 'n') || (p[n-3] == 'N')) &&
285       ((p[n-2] == 'l') || (p[n-2] == 'L')) &&
286       ((p[n-1] == 'm') || (p[n-1] == 'M')))
287       n-=4;
288 #else
289         /* strip off trailing .exe if present. */
290         if ((n > 4) && (p[n-4] == '.') &&
291                 ((p[n-3] == 'e') || (p[n-3] == 'E')) &&
292                 ((p[n-2] == 'x') || (p[n-2] == 'X')) &&
293                 ((p[n-1] == 'e') || (p[n-1] == 'E')))
294                 n-=4;
295 #endif
296
297         if (n > size-1)
298                 n=size-1;
299
300         for (i=0; i<n; i++)
301                 {
302                 if ((p[i] >= 'A') && (p[i] <= 'Z'))
303                         out[i]=p[i]-'A'+'a';
304                 else
305                         out[i]=p[i];
306                 }
307         out[n]='\0';
308         }
309 #else
310 #ifdef OPENSSL_SYS_VMS
311 void program_name(char *in, char *out, int size)
312         {
313         char *p=in, *q;
314         char *chars=":]>";
315
316         while(*chars != '\0')
317                 {
318                 q=strrchr(p,*chars);
319                 if (q > p)
320                         p = q + 1;
321                 chars++;
322                 }
323
324         q=strrchr(p,'.');
325         if (q == NULL)
326                 q = p + strlen(p);
327         strncpy(out,p,size-1);
328         if (q-p >= size)
329                 {
330                 out[size-1]='\0';
331                 }
332         else
333                 {
334                 out[q-p]='\0';
335                 }
336         }
337 #else
338 void program_name(char *in, char *out, int size)
339         {
340         char *p;
341
342         p=strrchr(in,'/');
343         if (p != NULL)
344                 p++;
345         else
346                 p=in;
347         BUF_strlcpy(out,p,size);
348         }
349 #endif
350 #endif
351
352 int chopup_args(ARGS *arg, char *buf, int *argc, char **argv[])
353         {
354         int num,len,i;
355         char *p;
356
357         *argc=0;
358         *argv=NULL;
359
360         len=strlen(buf);
361         i=0;
362         if (arg->count == 0)
363                 {
364                 arg->count=20;
365                 arg->data=(char **)OPENSSL_malloc(sizeof(char *)*arg->count);
366                 }
367         for (i=0; i<arg->count; i++)
368                 arg->data[i]=NULL;
369
370         num=0;
371         p=buf;
372         for (;;)
373                 {
374                 /* first scan over white space */
375                 if (!*p) break;
376                 while (*p && ((*p == ' ') || (*p == '\t') || (*p == '\n')))
377                         p++;
378                 if (!*p) break;
379
380                 /* The start of something good :-) */
381                 if (num >= arg->count)
382                         {
383                         char **tmp_p;
384                         int tlen = arg->count + 20;
385                         tmp_p = (char **)OPENSSL_realloc(arg->data,
386                                 sizeof(char *)*tlen);
387                         if (tmp_p == NULL)
388                                 return 0;
389                         arg->data  = tmp_p;
390                         arg->count = tlen;
391                         /* initialize newly allocated data */
392                         for (i = num; i < arg->count; i++)
393                                 arg->data[i] = NULL;
394                         }
395                 arg->data[num++]=p;
396
397                 /* now look for the end of this */
398                 if ((*p == '\'') || (*p == '\"')) /* scan for closing quote */
399                         {
400                         i= *(p++);
401                         arg->data[num-1]++; /* jump over quote */
402                         while (*p && (*p != i))
403                                 p++;
404                         *p='\0';
405                         }
406                 else
407                         {
408                         while (*p && ((*p != ' ') &&
409                                 (*p != '\t') && (*p != '\n')))
410                                 p++;
411
412                         if (*p == '\0')
413                                 p--;
414                         else
415                                 *p='\0';
416                         }
417                 p++;
418                 }
419         *argc=num;
420         *argv=arg->data;
421         return(1);
422         }
423
424 #ifndef APP_INIT
425 int app_init(long mesgwin)
426         {
427         return(1);
428         }
429 #endif
430
431
432 int dump_cert_text (BIO *out, X509 *x)
433 {
434         char *p;
435
436         p=X509_NAME_oneline(X509_get_subject_name(x),NULL,0);
437         BIO_puts(out,"subject=");
438         BIO_puts(out,p);
439         OPENSSL_free(p);
440
441         p=X509_NAME_oneline(X509_get_issuer_name(x),NULL,0);
442         BIO_puts(out,"\nissuer=");
443         BIO_puts(out,p);
444         BIO_puts(out,"\n");
445         OPENSSL_free(p);
446
447         return 0;
448 }
449
450 static int ui_open(UI *ui)
451         {
452         return UI_method_get_opener(UI_OpenSSL())(ui);
453         }
454 static int ui_read(UI *ui, UI_STRING *uis)
455         {
456         if (UI_get_input_flags(uis) & UI_INPUT_FLAG_DEFAULT_PWD
457                 && UI_get0_user_data(ui))
458                 {
459                 switch(UI_get_string_type(uis))
460                         {
461                 case UIT_PROMPT:
462                 case UIT_VERIFY:
463                         {
464                         const char *password =
465                                 ((PW_CB_DATA *)UI_get0_user_data(ui))->password;
466                         if (password && password[0] != '\0')
467                                 {
468                                 UI_set_result(ui, uis, password);
469                                 return 1;
470                                 }
471                         }
472                 default:
473                         break;
474                         }
475                 }
476         return UI_method_get_reader(UI_OpenSSL())(ui, uis);
477         }
478 static int ui_write(UI *ui, UI_STRING *uis)
479         {
480         if (UI_get_input_flags(uis) & UI_INPUT_FLAG_DEFAULT_PWD
481                 && UI_get0_user_data(ui))
482                 {
483                 switch(UI_get_string_type(uis))
484                         {
485                 case UIT_PROMPT:
486                 case UIT_VERIFY:
487                         {
488                         const char *password =
489                                 ((PW_CB_DATA *)UI_get0_user_data(ui))->password;
490                         if (password && password[0] != '\0')
491                                 return 1;
492                         }
493                 default:
494                         break;
495                         }
496                 }
497         return UI_method_get_writer(UI_OpenSSL())(ui, uis);
498         }
499 static int ui_close(UI *ui)
500         {
501         return UI_method_get_closer(UI_OpenSSL())(ui);
502         }
503 int setup_ui_method(void)
504         {
505         ui_method = UI_create_method("OpenSSL application user interface");
506         UI_method_set_opener(ui_method, ui_open);
507         UI_method_set_reader(ui_method, ui_read);
508         UI_method_set_writer(ui_method, ui_write);
509         UI_method_set_closer(ui_method, ui_close);
510         return 0;
511         }
512 void destroy_ui_method(void)
513         {
514         if(ui_method)
515                 {
516                 UI_destroy_method(ui_method);
517                 ui_method = NULL;
518                 }
519         }
520 int password_callback(char *buf, int bufsiz, int verify,
521         PW_CB_DATA *cb_tmp)
522         {
523         UI *ui = NULL;
524         int res = 0;
525         const char *prompt_info = NULL;
526         const char *password = NULL;
527         PW_CB_DATA *cb_data = (PW_CB_DATA *)cb_tmp;
528
529         if (cb_data)
530                 {
531                 if (cb_data->password)
532                         password = cb_data->password;
533                 if (cb_data->prompt_info)
534                         prompt_info = cb_data->prompt_info;
535                 }
536
537         if (password)
538                 {
539                 res = strlen(password);
540                 if (res > bufsiz)
541                         res = bufsiz;
542                 memcpy(buf, password, res);
543                 return res;
544                 }
545
546         ui = UI_new_method(ui_method);
547         if (ui)
548                 {
549                 int ok = 0;
550                 char *buff = NULL;
551                 int ui_flags = 0;
552                 char *prompt = NULL;
553
554                 prompt = UI_construct_prompt(ui, "pass phrase",
555                         prompt_info);
556
557                 ui_flags |= UI_INPUT_FLAG_DEFAULT_PWD;
558                 UI_ctrl(ui, UI_CTRL_PRINT_ERRORS, 1, 0, 0);
559
560                 if (ok >= 0)
561                         ok = UI_add_input_string(ui,prompt,ui_flags,buf,
562                                 PW_MIN_LENGTH,BUFSIZ-1);
563                 if (ok >= 0 && verify)
564                         {
565                         buff = (char *)OPENSSL_malloc(bufsiz);
566                         ok = UI_add_verify_string(ui,prompt,ui_flags,buff,
567                                 PW_MIN_LENGTH,BUFSIZ-1, buf);
568                         }
569                 if (ok >= 0)
570                         do
571                                 {
572                                 ok = UI_process(ui);
573                                 }
574                         while (ok < 0 && UI_ctrl(ui, UI_CTRL_IS_REDOABLE, 0, 0, 0));
575
576                 if (buff)
577                         {
578                         OPENSSL_cleanse(buff,(unsigned int)bufsiz);
579                         OPENSSL_free(buff);
580                         }
581
582                 if (ok >= 0)
583                         res = strlen(buf);
584                 if (ok == -1)
585                         {
586                         BIO_printf(bio_err, "User interface error\n");
587                         ERR_print_errors(bio_err);
588                         OPENSSL_cleanse(buf,(unsigned int)bufsiz);
589                         res = 0;
590                         }
591                 if (ok == -2)
592                         {
593                         BIO_printf(bio_err,"aborted!\n");
594                         OPENSSL_cleanse(buf,(unsigned int)bufsiz);
595                         res = 0;
596                         }
597                 UI_free(ui);
598                 OPENSSL_free(prompt);
599                 }
600         return res;
601         }
602
603 static char *app_get_pass(BIO *err, char *arg, int keepbio);
604
605 int app_passwd(BIO *err, char *arg1, char *arg2, char **pass1, char **pass2)
606 {
607         int same;
608         if(!arg2 || !arg1 || strcmp(arg1, arg2)) same = 0;
609         else same = 1;
610         if(arg1) {
611                 *pass1 = app_get_pass(err, arg1, same);
612                 if(!*pass1) return 0;
613         } else if(pass1) *pass1 = NULL;
614         if(arg2) {
615                 *pass2 = app_get_pass(err, arg2, same ? 2 : 0);
616                 if(!*pass2) return 0;
617         } else if(pass2) *pass2 = NULL;
618         return 1;
619 }
620
621 static char *app_get_pass(BIO *err, char *arg, int keepbio)
622 {
623         char *tmp, tpass[APP_PASS_LEN];
624         static BIO *pwdbio = NULL;
625         int i;
626         if(!strncmp(arg, "pass:", 5)) return BUF_strdup(arg + 5);
627         if(!strncmp(arg, "env:", 4)) {
628                 tmp = getenv(arg + 4);
629                 if(!tmp) {
630                         BIO_printf(err, "Can't read environment variable %s\n", arg + 4);
631                         return NULL;
632                 }
633                 return BUF_strdup(tmp);
634         }
635         if(!keepbio || !pwdbio) {
636                 if(!strncmp(arg, "file:", 5)) {
637                         pwdbio = BIO_new_file(arg + 5, "r");
638                         if(!pwdbio) {
639                                 BIO_printf(err, "Can't open file %s\n", arg + 5);
640                                 return NULL;
641                         }
642                 } else if(!strncmp(arg, "fd:", 3)) {
643                         BIO *btmp;
644                         i = atoi(arg + 3);
645                         if(i >= 0) pwdbio = BIO_new_fd(i, BIO_NOCLOSE);
646                         if((i < 0) || !pwdbio) {
647                                 BIO_printf(err, "Can't access file descriptor %s\n", arg + 3);
648                                 return NULL;
649                         }
650                         /* Can't do BIO_gets on an fd BIO so add a buffering BIO */
651                         btmp = BIO_new(BIO_f_buffer());
652                         pwdbio = BIO_push(btmp, pwdbio);
653                 } else if(!strcmp(arg, "stdin")) {
654                         pwdbio = BIO_new_fp(stdin, BIO_NOCLOSE);
655                         if(!pwdbio) {
656                                 BIO_printf(err, "Can't open BIO for stdin\n");
657                                 return NULL;
658                         }
659                 } else {
660                         BIO_printf(err, "Invalid password argument \"%s\"\n", arg);
661                         return NULL;
662                 }
663         }
664         i = BIO_gets(pwdbio, tpass, APP_PASS_LEN);
665         if(keepbio != 1) {
666                 BIO_free_all(pwdbio);
667                 pwdbio = NULL;
668         }
669         if(i <= 0) {
670                 BIO_printf(err, "Error reading password from BIO\n");
671                 return NULL;
672         }
673         tmp = strchr(tpass, '\n');
674         if(tmp) *tmp = 0;
675         return BUF_strdup(tpass);
676 }
677
678 int add_oid_section(BIO *err, CONF *conf)
679 {       
680         char *p;
681         STACK_OF(CONF_VALUE) *sktmp;
682         CONF_VALUE *cnf;
683         int i;
684         if(!(p=NCONF_get_string(conf,NULL,"oid_section")))
685                 {
686                 ERR_clear_error();
687                 return 1;
688                 }
689         if(!(sktmp = NCONF_get_section(conf, p))) {
690                 BIO_printf(err, "problem loading oid section %s\n", p);
691                 return 0;
692         }
693         for(i = 0; i < sk_CONF_VALUE_num(sktmp); i++) {
694                 cnf = sk_CONF_VALUE_value(sktmp, i);
695                 if(OBJ_create(cnf->value, cnf->name, cnf->name) == NID_undef) {
696                         BIO_printf(err, "problem creating object %s=%s\n",
697                                                          cnf->name, cnf->value);
698                         return 0;
699                 }
700         }
701         return 1;
702 }
703
704 static int load_pkcs12(BIO *err, BIO *in, const char *desc,
705                 pem_password_cb *pem_cb,  void *cb_data,
706                 EVP_PKEY **pkey, X509 **cert, STACK_OF(X509) **ca)
707         {
708         const char *pass;
709         char tpass[PEM_BUFSIZE];
710         int len, ret = 0;
711         PKCS12 *p12;
712         p12 = d2i_PKCS12_bio(in, NULL);
713         if (p12 == NULL)
714                 {
715                 BIO_printf(err, "Error loading PKCS12 file for %s\n", desc);    
716                 goto die;
717                 }
718         /* See if an empty password will do */
719         if (PKCS12_verify_mac(p12, "", 0) || PKCS12_verify_mac(p12, NULL, 0))
720                 pass = "";
721         else
722                 {
723                 if (!pem_cb)
724                         pem_cb = (pem_password_cb *)password_callback;
725                 len = pem_cb(tpass, PEM_BUFSIZE, 0, cb_data);
726                 if (len < 0) 
727                         {
728                         BIO_printf(err, "Passpharse callback error for %s\n",
729                                         desc);
730                         goto die;
731                         }
732                 if (len < PEM_BUFSIZE)
733                         tpass[len] = 0;
734                 if (!PKCS12_verify_mac(p12, tpass, len))
735                         {
736                         BIO_printf(err,
737         "Mac verify error (wrong password?) in PKCS12 file for %s\n", desc);    
738                         goto die;
739                         }
740                 pass = tpass;
741                 }
742         ret = PKCS12_parse(p12, pass, pkey, cert, ca);
743         die:
744         if (p12)
745                 PKCS12_free(p12);
746         return ret;
747         }
748
749 X509 *load_cert(BIO *err, const char *file, int format,
750         const char *pass, ENGINE *e, const char *cert_descrip)
751         {
752         ASN1_HEADER *ah=NULL;
753         BUF_MEM *buf=NULL;
754         X509 *x=NULL;
755         BIO *cert;
756
757         if ((cert=BIO_new(BIO_s_file())) == NULL)
758                 {
759                 ERR_print_errors(err);
760                 goto end;
761                 }
762
763         if (file == NULL)
764                 {
765                 setvbuf(stdin, NULL, _IONBF, 0);
766                 BIO_set_fp(cert,stdin,BIO_NOCLOSE);
767                 }
768         else
769                 {
770                 if (BIO_read_filename(cert,file) <= 0)
771                         {
772                         BIO_printf(err, "Error opening %s %s\n",
773                                 cert_descrip, file);
774                         ERR_print_errors(err);
775                         goto end;
776                         }
777                 }
778
779         if      (format == FORMAT_ASN1)
780                 x=d2i_X509_bio(cert,NULL);
781         else if (format == FORMAT_NETSCAPE)
782                 {
783                 const unsigned char *p,*op;
784                 int size=0,i;
785
786                 /* We sort of have to do it this way because it is sort of nice
787                  * to read the header first and check it, then
788                  * try to read the certificate */
789                 buf=BUF_MEM_new();
790                 for (;;)
791                         {
792                         if ((buf == NULL) || (!BUF_MEM_grow(buf,size+1024*10)))
793                                 goto end;
794                         i=BIO_read(cert,&(buf->data[size]),1024*10);
795                         size+=i;
796                         if (i == 0) break;
797                         if (i < 0)
798                                 {
799                                 perror("reading certificate");
800                                 goto end;
801                                 }
802                         }
803                 p=(unsigned char *)buf->data;
804                 op=p;
805
806                 /* First load the header */
807                 if ((ah=d2i_ASN1_HEADER(NULL,&p,(long)size)) == NULL)
808                         goto end;
809                 if ((ah->header == NULL) || (ah->header->data == NULL) ||
810                         (strncmp(NETSCAPE_CERT_HDR,(char *)ah->header->data,
811                         ah->header->length) != 0))
812                         {
813                         BIO_printf(err,"Error reading header on certificate\n");
814                         goto end;
815                         }
816                 /* header is ok, so now read the object */
817                 p=op;
818                 ah->meth=X509_asn1_meth();
819                 if ((ah=d2i_ASN1_HEADER(&ah,&p,(long)size)) == NULL)
820                         goto end;
821                 x=(X509 *)ah->data;
822                 ah->data=NULL;
823                 }
824         else if (format == FORMAT_PEM)
825                 x=PEM_read_bio_X509_AUX(cert,NULL,
826                         (pem_password_cb *)password_callback, NULL);
827         else if (format == FORMAT_PKCS12)
828                 {
829                 if (!load_pkcs12(err, cert,cert_descrip, NULL, NULL,
830                                         NULL, &x, NULL))
831                         goto end;
832                 }
833         else    {
834                 BIO_printf(err,"bad input format specified for %s\n",
835                         cert_descrip);
836                 goto end;
837                 }
838 end:
839         if (x == NULL)
840                 {
841                 BIO_printf(err,"unable to load certificate\n");
842                 ERR_print_errors(err);
843                 }
844         if (ah != NULL) ASN1_HEADER_free(ah);
845         if (cert != NULL) BIO_free(cert);
846         if (buf != NULL) BUF_MEM_free(buf);
847         return(x);
848         }
849
850 EVP_PKEY *load_key(BIO *err, const char *file, int format, int maybe_stdin,
851         const char *pass, ENGINE *e, const char *key_descrip)
852         {
853         BIO *key=NULL;
854         EVP_PKEY *pkey=NULL;
855         PW_CB_DATA cb_data;
856
857         cb_data.password = pass;
858         cb_data.prompt_info = file;
859
860         if (file == NULL && (!maybe_stdin || format == FORMAT_ENGINE))
861                 {
862                 BIO_printf(err,"no keyfile specified\n");
863                 goto end;
864                 }
865 #ifndef OPENSSL_NO_ENGINE
866         if (format == FORMAT_ENGINE)
867                 {
868                 if (!e)
869                         BIO_printf(bio_err,"no engine specified\n");
870                 else
871                         pkey = ENGINE_load_private_key(e, file,
872                                 ui_method, &cb_data);
873                 goto end;
874                 }
875 #endif
876         key=BIO_new(BIO_s_file());
877         if (key == NULL)
878                 {
879                 ERR_print_errors(err);
880                 goto end;
881                 }
882         if (file == NULL && maybe_stdin)
883                 {
884                 setvbuf(stdin, NULL, _IONBF, 0);
885                 BIO_set_fp(key,stdin,BIO_NOCLOSE);
886                 }
887         else
888                 if (BIO_read_filename(key,file) <= 0)
889                         {
890                         BIO_printf(err, "Error opening %s %s\n",
891                                 key_descrip, file);
892                         ERR_print_errors(err);
893                         goto end;
894                         }
895         if (format == FORMAT_ASN1)
896                 {
897                 pkey=d2i_PrivateKey_bio(key, NULL);
898                 }
899         else if (format == FORMAT_PEM)
900                 {
901                 pkey=PEM_read_bio_PrivateKey(key,NULL,
902                         (pem_password_cb *)password_callback, &cb_data);
903                 }
904 #if !defined(OPENSSL_NO_RC4) && !defined(OPENSSL_NO_RSA)
905         else if (format == FORMAT_NETSCAPE || format == FORMAT_IISSGC)
906                 pkey = load_netscape_key(err, key, file, key_descrip, format);
907 #endif
908         else if (format == FORMAT_PKCS12)
909                 {
910                 if (!load_pkcs12(err, key, key_descrip,
911                                 (pem_password_cb *)password_callback, &cb_data,
912                                 &pkey, NULL, NULL))
913                         goto end;
914                 }
915         else
916                 {
917                 BIO_printf(err,"bad input format specified for key file\n");
918                 goto end;
919                 }
920  end:
921         if (key != NULL) BIO_free(key);
922         if (pkey == NULL)
923                 BIO_printf(err,"unable to load %s\n", key_descrip);
924         return(pkey);
925         }
926
927 EVP_PKEY *load_pubkey(BIO *err, const char *file, int format, int maybe_stdin,
928         const char *pass, ENGINE *e, const char *key_descrip)
929         {
930         BIO *key=NULL;
931         EVP_PKEY *pkey=NULL;
932         PW_CB_DATA cb_data;
933
934         cb_data.password = pass;
935         cb_data.prompt_info = file;
936
937         if (file == NULL && (!maybe_stdin || format == FORMAT_ENGINE))
938                 {
939                 BIO_printf(err,"no keyfile specified\n");
940                 goto end;
941                 }
942 #ifndef OPENSSL_NO_ENGINE
943         if (format == FORMAT_ENGINE)
944                 {
945                 if (!e)
946                         BIO_printf(bio_err,"no engine specified\n");
947                 else
948                         pkey = ENGINE_load_public_key(e, file,
949                                 ui_method, &cb_data);
950                 goto end;
951                 }
952 #endif
953         key=BIO_new(BIO_s_file());
954         if (key == NULL)
955                 {
956                 ERR_print_errors(err);
957                 goto end;
958                 }
959         if (file == NULL && maybe_stdin)
960                 {
961                 setvbuf(stdin, NULL, _IONBF, 0);
962                 BIO_set_fp(key,stdin,BIO_NOCLOSE);
963                 }
964         else
965                 if (BIO_read_filename(key,file) <= 0)
966                         {
967                         BIO_printf(err, "Error opening %s %s\n",
968                                 key_descrip, file);
969                         ERR_print_errors(err);
970                         goto end;
971                 }
972         if (format == FORMAT_ASN1)
973                 {
974                 pkey=d2i_PUBKEY_bio(key, NULL);
975                 }
976         else if (format == FORMAT_PEM)
977                 {
978                 pkey=PEM_read_bio_PUBKEY(key,NULL,
979                         (pem_password_cb *)password_callback, &cb_data);
980                 }
981 #if !defined(OPENSSL_NO_RC4) && !defined(OPENSSL_NO_RSA)
982         else if (format == FORMAT_NETSCAPE || format == FORMAT_IISSGC)
983                 pkey = load_netscape_key(err, key, file, key_descrip, format);
984 #endif
985         else
986                 {
987                 BIO_printf(err,"bad input format specified for key file\n");
988                 goto end;
989                 }
990  end:
991         if (key != NULL) BIO_free(key);
992         if (pkey == NULL)
993                 BIO_printf(err,"unable to load %s\n", key_descrip);
994         return(pkey);
995         }
996
997 #if !defined(OPENSSL_NO_RC4) && !defined(OPENSSL_NO_RSA)
998 static EVP_PKEY *
999 load_netscape_key(BIO *err, BIO *key, const char *file,
1000                 const char *key_descrip, int format)
1001         {
1002         EVP_PKEY *pkey;
1003         BUF_MEM *buf;
1004         RSA     *rsa;
1005         const unsigned char *p;
1006         int size, i;
1007
1008         buf=BUF_MEM_new();
1009         pkey = EVP_PKEY_new();
1010         size = 0;
1011         if (buf == NULL || pkey == NULL)
1012                 goto error;
1013         for (;;)
1014                 {
1015                 if (!BUF_MEM_grow_clean(buf,size+1024*10))
1016                         goto error;
1017                 i = BIO_read(key, &(buf->data[size]), 1024*10);
1018                 size += i;
1019                 if (i == 0)
1020                         break;
1021                 if (i < 0)
1022                         {
1023                                 BIO_printf(err, "Error reading %s %s",
1024                                         key_descrip, file);
1025                                 goto error;
1026                         }
1027                 }
1028         p=(unsigned char *)buf->data;
1029         rsa = d2i_RSA_NET(NULL,&p,(long)size,NULL,
1030                 (format == FORMAT_IISSGC ? 1 : 0));
1031         if (rsa == NULL)
1032                 goto error;
1033         BUF_MEM_free(buf);
1034         EVP_PKEY_set1_RSA(pkey, rsa);
1035         return pkey;
1036 error:
1037         BUF_MEM_free(buf);
1038         EVP_PKEY_free(pkey);
1039         return NULL;
1040         }
1041 #endif /* ndef OPENSSL_NO_RC4 */
1042
1043 STACK_OF(X509) *load_certs(BIO *err, const char *file, int format,
1044         const char *pass, ENGINE *e, const char *cert_descrip)
1045         {
1046         BIO *certs;
1047         int i;
1048         STACK_OF(X509) *othercerts = NULL;
1049         STACK_OF(X509_INFO) *allcerts = NULL;
1050         X509_INFO *xi;
1051         PW_CB_DATA cb_data;
1052
1053         cb_data.password = pass;
1054         cb_data.prompt_info = file;
1055
1056         if((certs = BIO_new(BIO_s_file())) == NULL)
1057                 {
1058                 ERR_print_errors(err);
1059                 goto end;
1060                 }
1061
1062         if (file == NULL)
1063                 BIO_set_fp(certs,stdin,BIO_NOCLOSE);
1064         else
1065                 {
1066                 if (BIO_read_filename(certs,file) <= 0)
1067                         {
1068                         BIO_printf(err, "Error opening %s %s\n",
1069                                 cert_descrip, file);
1070                         ERR_print_errors(err);
1071                         goto end;
1072                         }
1073                 }
1074
1075         if      (format == FORMAT_PEM)
1076                 {
1077                 othercerts = sk_X509_new_null();
1078                 if(!othercerts)
1079                         {
1080                         sk_X509_free(othercerts);
1081                         othercerts = NULL;
1082                         goto end;
1083                         }
1084                 allcerts = PEM_X509_INFO_read_bio(certs, NULL,
1085                                 (pem_password_cb *)password_callback, &cb_data);
1086                 for(i = 0; i < sk_X509_INFO_num(allcerts); i++)
1087                         {
1088                         xi = sk_X509_INFO_value (allcerts, i);
1089                         if (xi->x509)
1090                                 {
1091                                 sk_X509_push(othercerts, xi->x509);
1092                                 xi->x509 = NULL;
1093                                 }
1094                         }
1095                 goto end;
1096                 }
1097         else    {
1098                 BIO_printf(err,"bad input format specified for %s\n",
1099                         cert_descrip);
1100                 goto end;
1101                 }
1102 end:
1103         if (othercerts == NULL)
1104                 {
1105                 BIO_printf(err,"unable to load certificates\n");
1106                 ERR_print_errors(err);
1107                 }
1108         if (allcerts) sk_X509_INFO_pop_free(allcerts, X509_INFO_free);
1109         if (certs != NULL) BIO_free(certs);
1110         return(othercerts);
1111         }
1112
1113
1114 #define X509V3_EXT_UNKNOWN_MASK         (0xfL << 16)
1115 /* Return error for unknown extensions */
1116 #define X509V3_EXT_DEFAULT              0
1117 /* Print error for unknown extensions */
1118 #define X509V3_EXT_ERROR_UNKNOWN        (1L << 16)
1119 /* ASN1 parse unknown extensions */
1120 #define X509V3_EXT_PARSE_UNKNOWN        (2L << 16)
1121 /* BIO_dump unknown extensions */
1122 #define X509V3_EXT_DUMP_UNKNOWN         (3L << 16)
1123
1124 #define X509_FLAG_CA (X509_FLAG_NO_ISSUER | X509_FLAG_NO_PUBKEY | \
1125                          X509_FLAG_NO_HEADER | X509_FLAG_NO_VERSION)
1126
1127 int set_cert_ex(unsigned long *flags, const char *arg)
1128 {
1129         static const NAME_EX_TBL cert_tbl[] = {
1130                 { "compatible", X509_FLAG_COMPAT, 0xffffffffl},
1131                 { "ca_default", X509_FLAG_CA, 0xffffffffl},
1132                 { "no_header", X509_FLAG_NO_HEADER, 0},
1133                 { "no_version", X509_FLAG_NO_VERSION, 0},
1134                 { "no_serial", X509_FLAG_NO_SERIAL, 0},
1135                 { "no_signame", X509_FLAG_NO_SIGNAME, 0},
1136                 { "no_validity", X509_FLAG_NO_VALIDITY, 0},
1137                 { "no_subject", X509_FLAG_NO_SUBJECT, 0},
1138                 { "no_issuer", X509_FLAG_NO_ISSUER, 0},
1139                 { "no_pubkey", X509_FLAG_NO_PUBKEY, 0},
1140                 { "extensions", ~X509_FLAG_NO_EXTENSIONS, 0xffffffffl},
1141                 { "no_extensions", X509_FLAG_NO_EXTENSIONS, 0},
1142                 { "no_sigdump", X509_FLAG_NO_SIGDUMP, 0},
1143                 { "no_aux", X509_FLAG_NO_AUX, 0},
1144                 { "no_attributes", X509_FLAG_NO_ATTRIBUTES, 0},
1145                 { "ext_default", X509V3_EXT_DEFAULT, X509V3_EXT_UNKNOWN_MASK},
1146                 { "ext_error", X509V3_EXT_ERROR_UNKNOWN, X509V3_EXT_UNKNOWN_MASK},
1147                 { "ext_parse", X509V3_EXT_PARSE_UNKNOWN, X509V3_EXT_UNKNOWN_MASK},
1148                 { "ext_dump", X509V3_EXT_DUMP_UNKNOWN, X509V3_EXT_UNKNOWN_MASK},
1149                 { NULL, 0, 0}
1150         };
1151         return set_multi_opts(flags, arg, cert_tbl);
1152 }
1153
1154 int set_name_ex(unsigned long *flags, const char *arg)
1155 {
1156         static const NAME_EX_TBL ex_tbl[] = {
1157                 { "esc_2253", ASN1_STRFLGS_ESC_2253, 0},
1158                 { "esc_ctrl", ASN1_STRFLGS_ESC_CTRL, 0},
1159                 { "esc_msb", ASN1_STRFLGS_ESC_MSB, 0},
1160                 { "use_quote", ASN1_STRFLGS_ESC_QUOTE, 0},
1161                 { "utf8", ASN1_STRFLGS_UTF8_CONVERT, 0},
1162                 { "ignore_type", ASN1_STRFLGS_IGNORE_TYPE, 0},
1163                 { "show_type", ASN1_STRFLGS_SHOW_TYPE, 0},
1164                 { "dump_all", ASN1_STRFLGS_DUMP_ALL, 0},
1165                 { "dump_nostr", ASN1_STRFLGS_DUMP_UNKNOWN, 0},
1166                 { "dump_der", ASN1_STRFLGS_DUMP_DER, 0},
1167                 { "compat", XN_FLAG_COMPAT, 0xffffffffL},
1168                 { "sep_comma_plus", XN_FLAG_SEP_COMMA_PLUS, XN_FLAG_SEP_MASK},
1169                 { "sep_comma_plus_space", XN_FLAG_SEP_CPLUS_SPC, XN_FLAG_SEP_MASK},
1170                 { "sep_semi_plus_space", XN_FLAG_SEP_SPLUS_SPC, XN_FLAG_SEP_MASK},
1171                 { "sep_multiline", XN_FLAG_SEP_MULTILINE, XN_FLAG_SEP_MASK},
1172                 { "dn_rev", XN_FLAG_DN_REV, 0},
1173                 { "nofname", XN_FLAG_FN_NONE, XN_FLAG_FN_MASK},
1174                 { "sname", XN_FLAG_FN_SN, XN_FLAG_FN_MASK},
1175                 { "lname", XN_FLAG_FN_LN, XN_FLAG_FN_MASK},
1176                 { "align", XN_FLAG_FN_ALIGN, 0},
1177                 { "oid", XN_FLAG_FN_OID, XN_FLAG_FN_MASK},
1178                 { "space_eq", XN_FLAG_SPC_EQ, 0},
1179                 { "dump_unknown", XN_FLAG_DUMP_UNKNOWN_FIELDS, 0},
1180                 { "RFC2253", XN_FLAG_RFC2253, 0xffffffffL},
1181                 { "oneline", XN_FLAG_ONELINE, 0xffffffffL},
1182                 { "multiline", XN_FLAG_MULTILINE, 0xffffffffL},
1183                 { "ca_default", XN_FLAG_MULTILINE, 0xffffffffL},
1184                 { NULL, 0, 0}
1185         };
1186         return set_multi_opts(flags, arg, ex_tbl);
1187 }
1188
1189 int set_ext_copy(int *copy_type, const char *arg)
1190 {
1191         if (!strcasecmp(arg, "none"))
1192                 *copy_type = EXT_COPY_NONE;
1193         else if (!strcasecmp(arg, "copy"))
1194                 *copy_type = EXT_COPY_ADD;
1195         else if (!strcasecmp(arg, "copyall"))
1196                 *copy_type = EXT_COPY_ALL;
1197         else
1198                 return 0;
1199         return 1;
1200 }
1201
1202 int copy_extensions(X509 *x, X509_REQ *req, int copy_type)
1203 {
1204         STACK_OF(X509_EXTENSION) *exts = NULL;
1205         X509_EXTENSION *ext, *tmpext;
1206         ASN1_OBJECT *obj;
1207         int i, idx, ret = 0;
1208         if (!x || !req || (copy_type == EXT_COPY_NONE))
1209                 return 1;
1210         exts = X509_REQ_get_extensions(req);
1211
1212         for(i = 0; i < sk_X509_EXTENSION_num(exts); i++) {
1213                 ext = sk_X509_EXTENSION_value(exts, i);
1214                 obj = X509_EXTENSION_get_object(ext);
1215                 idx = X509_get_ext_by_OBJ(x, obj, -1);
1216                 /* Does extension exist? */
1217                 if (idx != -1) {
1218                         /* If normal copy don't override existing extension */
1219                         if (copy_type == EXT_COPY_ADD)
1220                                 continue;
1221                         /* Delete all extensions of same type */
1222                         do {
1223                                 tmpext = X509_get_ext(x, idx);
1224                                 X509_delete_ext(x, idx);
1225                                 X509_EXTENSION_free(tmpext);
1226                                 idx = X509_get_ext_by_OBJ(x, obj, -1);
1227                         } while (idx != -1);
1228                 }
1229                 if (!X509_add_ext(x, ext, -1))
1230                         goto end;
1231         }
1232
1233         ret = 1;
1234
1235         end:
1236
1237         sk_X509_EXTENSION_pop_free(exts, X509_EXTENSION_free);
1238
1239         return ret;
1240 }
1241                 
1242                 
1243                         
1244
1245 static int set_multi_opts(unsigned long *flags, const char *arg, const NAME_EX_TBL *in_tbl)
1246 {
1247         STACK_OF(CONF_VALUE) *vals;
1248         CONF_VALUE *val;
1249         int i, ret = 1;
1250         if(!arg) return 0;
1251         vals = X509V3_parse_list(arg);
1252         for (i = 0; i < sk_CONF_VALUE_num(vals); i++) {
1253                 val = sk_CONF_VALUE_value(vals, i);
1254                 if (!set_table_opts(flags, val->name, in_tbl))
1255                         ret = 0;
1256         }
1257         sk_CONF_VALUE_pop_free(vals, X509V3_conf_free);
1258         return ret;
1259 }
1260
1261 static int set_table_opts(unsigned long *flags, const char *arg, const NAME_EX_TBL *in_tbl)
1262 {
1263         char c;
1264         const NAME_EX_TBL *ptbl;
1265         c = arg[0];
1266
1267         if(c == '-') {
1268                 c = 0;
1269                 arg++;
1270         } else if (c == '+') {
1271                 c = 1;
1272                 arg++;
1273         } else c = 1;
1274
1275         for(ptbl = in_tbl; ptbl->name; ptbl++) {
1276                 if(!strcasecmp(arg, ptbl->name)) {
1277                         *flags &= ~ptbl->mask;
1278                         if(c) *flags |= ptbl->flag;
1279                         else *flags &= ~ptbl->flag;
1280                         return 1;
1281                 }
1282         }
1283         return 0;
1284 }
1285
1286 void print_name(BIO *out, const char *title, X509_NAME *nm, unsigned long lflags)
1287 {
1288         char *buf;
1289         char mline = 0;
1290         int indent = 0;
1291
1292         if(title) BIO_puts(out, title);
1293         if((lflags & XN_FLAG_SEP_MASK) == XN_FLAG_SEP_MULTILINE) {
1294                 mline = 1;
1295                 indent = 4;
1296         }
1297         if(lflags == XN_FLAG_COMPAT) {
1298                 buf = X509_NAME_oneline(nm, 0, 0);
1299                 BIO_puts(out, buf);
1300                 BIO_puts(out, "\n");
1301                 OPENSSL_free(buf);
1302         } else {
1303                 if(mline) BIO_puts(out, "\n");
1304                 X509_NAME_print_ex(out, nm, indent, lflags);
1305                 BIO_puts(out, "\n");
1306         }
1307 }
1308
1309 X509_STORE *setup_verify(BIO *bp, char *CAfile, char *CApath)
1310 {
1311         X509_STORE *store;
1312         X509_LOOKUP *lookup;
1313         if(!(store = X509_STORE_new())) goto end;
1314         lookup=X509_STORE_add_lookup(store,X509_LOOKUP_file());
1315         if (lookup == NULL) goto end;
1316         if (CAfile) {
1317                 if(!X509_LOOKUP_load_file(lookup,CAfile,X509_FILETYPE_PEM)) {
1318                         BIO_printf(bp, "Error loading file %s\n", CAfile);
1319                         goto end;
1320                 }
1321         } else X509_LOOKUP_load_file(lookup,NULL,X509_FILETYPE_DEFAULT);
1322                 
1323         lookup=X509_STORE_add_lookup(store,X509_LOOKUP_hash_dir());
1324         if (lookup == NULL) goto end;
1325         if (CApath) {
1326                 if(!X509_LOOKUP_add_dir(lookup,CApath,X509_FILETYPE_PEM)) {
1327                         BIO_printf(bp, "Error loading directory %s\n", CApath);
1328                         goto end;
1329                 }
1330         } else X509_LOOKUP_add_dir(lookup,NULL,X509_FILETYPE_DEFAULT);
1331
1332         ERR_clear_error();
1333         return store;
1334         end:
1335         X509_STORE_free(store);
1336         return NULL;
1337 }
1338
1339 #ifndef OPENSSL_NO_ENGINE
1340 /* Try to load an engine in a shareable library */
1341 static ENGINE *try_load_engine(BIO *err, const char *engine, int debug)
1342         {
1343         ENGINE *e = ENGINE_by_id("dynamic");
1344         if (e)
1345                 {
1346                 if (!ENGINE_ctrl_cmd_string(e, "SO_PATH", engine, 0)
1347                         || !ENGINE_ctrl_cmd_string(e, "LOAD", NULL, 0))
1348                         {
1349                         ENGINE_free(e);
1350                         e = NULL;
1351                         }
1352                 }
1353         return e;
1354         }
1355
1356 ENGINE *setup_engine(BIO *err, const char *engine, int debug)
1357         {
1358         ENGINE *e = NULL;
1359
1360         if (engine)
1361                 {
1362                 if(strcmp(engine, "auto") == 0)
1363                         {
1364                         BIO_printf(err,"enabling auto ENGINE support\n");
1365                         ENGINE_register_all_complete();
1366                         return NULL;
1367                         }
1368                 if((e = ENGINE_by_id(engine)) == NULL
1369                         && (e = try_load_engine(err, engine, debug)) == NULL)
1370                         {
1371                         BIO_printf(err,"invalid engine \"%s\"\n", engine);
1372                         ERR_print_errors(err);
1373                         return NULL;
1374                         }
1375                 if (debug)
1376                         {
1377                         ENGINE_ctrl(e, ENGINE_CTRL_SET_LOGSTREAM,
1378                                 0, err, 0);
1379                         }
1380                 ENGINE_ctrl_cmd(e, "SET_USER_INTERFACE", 0, ui_method, 0, 1);
1381                 if(!ENGINE_set_default(e, ENGINE_METHOD_ALL))
1382                         {
1383                         BIO_printf(err,"can't use that engine\n");
1384                         ERR_print_errors(err);
1385                         ENGINE_free(e);
1386                         return NULL;
1387                         }
1388
1389                 BIO_printf(err,"engine \"%s\" set.\n", ENGINE_get_id(e));
1390
1391                 /* Free our "structural" reference. */
1392                 ENGINE_free(e);
1393                 }
1394         return e;
1395         }
1396 #endif
1397
1398 int load_config(BIO *err, CONF *cnf)
1399         {
1400         if (!cnf)
1401                 cnf = config;
1402         if (!cnf)
1403                 return 1;
1404
1405         OPENSSL_load_builtin_modules();
1406
1407         if (CONF_modules_load(cnf, NULL, 0) <= 0)
1408                 {
1409                 BIO_printf(err, "Error configuring OpenSSL\n");
1410                 ERR_print_errors(err);
1411                 return 0;
1412                 }
1413         return 1;
1414         }
1415
1416 char *make_config_name()
1417         {
1418         const char *t=X509_get_default_cert_area();
1419         size_t len;
1420         char *p;
1421
1422         len=strlen(t)+strlen(OPENSSL_CONF)+2;
1423         p=OPENSSL_malloc(len);
1424         BUF_strlcpy(p,t,len);
1425 #ifndef OPENSSL_SYS_VMS
1426         BUF_strlcat(p,"/",len);
1427 #endif
1428         BUF_strlcat(p,OPENSSL_CONF,len);
1429
1430         return p;
1431         }
1432
1433 static unsigned long index_serial_hash(const char **a)
1434         {
1435         const char *n;
1436
1437         n=a[DB_serial];
1438         while (*n == '0') n++;
1439         return(lh_strhash(n));
1440         }
1441
1442 static int index_serial_cmp(const char **a, const char **b)
1443         {
1444         const char *aa,*bb;
1445
1446         for (aa=a[DB_serial]; *aa == '0'; aa++);
1447         for (bb=b[DB_serial]; *bb == '0'; bb++);
1448         return(strcmp(aa,bb));
1449         }
1450
1451 static int index_name_qual(char **a)
1452         { return(a[0][0] == 'V'); }
1453
1454 static unsigned long index_name_hash(const char **a)
1455         { return(lh_strhash(a[DB_name])); }
1456
1457 int index_name_cmp(const char **a, const char **b)
1458         { return(strcmp(a[DB_name],
1459              b[DB_name])); }
1460
1461 static IMPLEMENT_LHASH_HASH_FN(index_serial_hash,const char **)
1462 static IMPLEMENT_LHASH_COMP_FN(index_serial_cmp,const char **)
1463 static IMPLEMENT_LHASH_HASH_FN(index_name_hash,const char **)
1464 static IMPLEMENT_LHASH_COMP_FN(index_name_cmp,const char **)
1465
1466 #undef BSIZE
1467 #define BSIZE 256
1468
1469 BIGNUM *load_serial(char *serialfile, int create, ASN1_INTEGER **retai)
1470         {
1471         BIO *in=NULL;
1472         BIGNUM *ret=NULL;
1473         MS_STATIC char buf[1024];
1474         ASN1_INTEGER *ai=NULL;
1475
1476         ai=ASN1_INTEGER_new();
1477         if (ai == NULL) goto err;
1478
1479         if ((in=BIO_new(BIO_s_file())) == NULL)
1480                 {
1481                 ERR_print_errors(bio_err);
1482                 goto err;
1483                 }
1484
1485         if (BIO_read_filename(in,serialfile) <= 0)
1486                 {
1487                 if (!create)
1488                         {
1489                         perror(serialfile);
1490                         goto err;
1491                         }
1492                 else
1493                         {
1494                         ret=BN_new();
1495                         if (ret == NULL || !rand_serial(ret, ai))
1496                                 BIO_printf(bio_err, "Out of memory\n");
1497                         }
1498                 }
1499         else
1500                 {
1501                 if (!a2i_ASN1_INTEGER(in,ai,buf,1024))
1502                         {
1503                         BIO_printf(bio_err,"unable to load number from %s\n",
1504                                 serialfile);
1505                         goto err;
1506                         }
1507                 ret=ASN1_INTEGER_to_BN(ai,NULL);
1508                 if (ret == NULL)
1509                         {
1510                         BIO_printf(bio_err,"error converting number from bin to BIGNUM\n");
1511                         goto err;
1512                         }
1513                 }
1514
1515         if (ret && retai)
1516                 {
1517                 *retai = ai;
1518                 ai = NULL;
1519                 }
1520  err:
1521         if (in != NULL) BIO_free(in);
1522         if (ai != NULL) ASN1_INTEGER_free(ai);
1523         return(ret);
1524         }
1525
1526 int save_serial(char *serialfile, char *suffix, BIGNUM *serial, ASN1_INTEGER **retai)
1527         {
1528         char buf[1][BSIZE];
1529         BIO *out = NULL;
1530         int ret=0;
1531         ASN1_INTEGER *ai=NULL;
1532         int j;
1533
1534         if (suffix == NULL)
1535                 j = strlen(serialfile);
1536         else
1537                 j = strlen(serialfile) + strlen(suffix) + 1;
1538         if (j >= BSIZE)
1539                 {
1540                 BIO_printf(bio_err,"file name too long\n");
1541                 goto err;
1542                 }
1543
1544         if (suffix == NULL)
1545                 BUF_strlcpy(buf[0], serialfile, BSIZE);
1546         else
1547                 {
1548 #ifndef OPENSSL_SYS_VMS
1549                 j = BIO_snprintf(buf[0], sizeof buf[0], "%s.%s", serialfile, suffix);
1550 #else
1551                 j = BIO_snprintf(buf[0], sizeof buf[0], "%s-%s", serialfile, suffix);
1552 #endif
1553                 }
1554 #ifdef RL_DEBUG
1555         BIO_printf(bio_err, "DEBUG: writing \"%s\"\n", buf[0]);
1556 #endif
1557         out=BIO_new(BIO_s_file());
1558         if (out == NULL)
1559                 {
1560                 ERR_print_errors(bio_err);
1561                 goto err;
1562                 }
1563         if (BIO_write_filename(out,buf[0]) <= 0)
1564                 {
1565                 perror(serialfile);
1566                 goto err;
1567                 }
1568
1569         if ((ai=BN_to_ASN1_INTEGER(serial,NULL)) == NULL)
1570                 {
1571                 BIO_printf(bio_err,"error converting serial to ASN.1 format\n");
1572                 goto err;
1573                 }
1574         i2a_ASN1_INTEGER(out,ai);
1575         BIO_puts(out,"\n");
1576         ret=1;
1577         if (retai)
1578                 {
1579                 *retai = ai;
1580                 ai = NULL;
1581                 }
1582 err:
1583         if (out != NULL) BIO_free_all(out);
1584         if (ai != NULL) ASN1_INTEGER_free(ai);
1585         return(ret);
1586         }
1587
1588 int rotate_serial(char *serialfile, char *new_suffix, char *old_suffix)
1589         {
1590         char buf[5][BSIZE];
1591         int i,j;
1592         struct stat sb;
1593
1594         i = strlen(serialfile) + strlen(old_suffix);
1595         j = strlen(serialfile) + strlen(new_suffix);
1596         if (i > j) j = i;
1597         if (j + 1 >= BSIZE)
1598                 {
1599                 BIO_printf(bio_err,"file name too long\n");
1600                 goto err;
1601                 }
1602
1603 #ifndef OPENSSL_SYS_VMS
1604         j = BIO_snprintf(buf[0], sizeof buf[0], "%s.%s",
1605                 serialfile, new_suffix);
1606 #else
1607         j = BIO_snprintf(buf[0], sizeof buf[0], "%s-%s",
1608                 serialfile, new_suffix);
1609 #endif
1610 #ifndef OPENSSL_SYS_VMS
1611         j = BIO_snprintf(buf[1], sizeof buf[1], "%s.%s",
1612                 serialfile, old_suffix);
1613 #else
1614         j = BIO_snprintf(buf[1], sizeof buf[1], "%s-%s",
1615                 serialfile, old_suffix);
1616 #endif
1617         if (stat(serialfile,&sb) < 0)
1618                 {
1619                 if (errno != ENOENT 
1620 #ifdef ENOTDIR
1621                         && errno != ENOTDIR
1622 #endif
1623                    )
1624                         goto err;
1625                 }
1626         else
1627                 {
1628 #ifdef RL_DEBUG
1629                 BIO_printf(bio_err, "DEBUG: renaming \"%s\" to \"%s\"\n",
1630                         serialfile, buf[1]);
1631 #endif
1632                 if (rename(serialfile,buf[1]) < 0)
1633                         {
1634                         BIO_printf(bio_err,
1635                                 "unable to rename %s to %s\n",
1636                                 serialfile, buf[1]);
1637                         perror("reason");
1638                         goto err;
1639                         }
1640                 }
1641 #ifdef RL_DEBUG
1642         BIO_printf(bio_err, "DEBUG: renaming \"%s\" to \"%s\"\n",
1643                 buf[0],serialfile);
1644 #endif
1645         if (rename(buf[0],serialfile) < 0)
1646                 {
1647                 BIO_printf(bio_err,
1648                         "unable to rename %s to %s\n",
1649                         buf[0],serialfile);
1650                 perror("reason");
1651                 rename(buf[1],serialfile);
1652                 goto err;
1653                 }
1654         return 1;
1655  err:
1656         return 0;
1657         }
1658
1659 int rand_serial(BIGNUM *b, ASN1_INTEGER *ai)
1660         {
1661         BIGNUM *btmp;
1662         int ret = 0;
1663         if (b)
1664                 btmp = b;
1665         else
1666                 btmp = BN_new();
1667
1668         if (!btmp)
1669                 return 0;
1670
1671         if (!BN_pseudo_rand(btmp, SERIAL_RAND_BITS, 0, 0))
1672                 goto error;
1673         if (ai && !BN_to_ASN1_INTEGER(btmp, ai))
1674                 goto error;
1675
1676         ret = 1;
1677         
1678         error:
1679
1680         if (!b)
1681                 BN_free(btmp);
1682         
1683         return ret;
1684         }
1685
1686 CA_DB *load_index(char *dbfile, DB_ATTR *db_attr)
1687         {
1688         CA_DB *retdb = NULL;
1689         TXT_DB *tmpdb = NULL;
1690         BIO *in = BIO_new(BIO_s_file());
1691         CONF *dbattr_conf = NULL;
1692         char buf[1][BSIZE];
1693         long errorline= -1;
1694
1695         if (in == NULL)
1696                 {
1697                 ERR_print_errors(bio_err);
1698                 goto err;
1699                 }
1700         if (BIO_read_filename(in,dbfile) <= 0)
1701                 {
1702                 perror(dbfile);
1703                 BIO_printf(bio_err,"unable to open '%s'\n",dbfile);
1704                 goto err;
1705                 }
1706         if ((tmpdb = TXT_DB_read(in,DB_NUMBER)) == NULL)
1707                 {
1708                 if (tmpdb != NULL) TXT_DB_free(tmpdb);
1709                 goto err;
1710                 }
1711
1712 #ifndef OPENSSL_SYS_VMS
1713         BIO_snprintf(buf[0], sizeof buf[0], "%s.attr", dbfile);
1714 #else
1715         BIO_snprintf(buf[0], sizeof buf[0], "%s-attr", dbfile);
1716 #endif
1717         dbattr_conf = NCONF_new(NULL);
1718         if (NCONF_load(dbattr_conf,buf[0],&errorline) <= 0)
1719                 {
1720                 if (errorline > 0)
1721                         {
1722                         BIO_printf(bio_err,
1723                                 "error on line %ld of db attribute file '%s'\n"
1724                                 ,errorline,buf[0]);
1725                         goto err;
1726                         }
1727                 else
1728                         {
1729                         NCONF_free(dbattr_conf);
1730                         dbattr_conf = NULL;
1731                         }
1732                 }
1733
1734         if ((retdb = OPENSSL_malloc(sizeof(CA_DB))) == NULL)
1735                 {
1736                 fprintf(stderr, "Out of memory\n");
1737                 goto err;
1738                 }
1739
1740         retdb->db = tmpdb;
1741         tmpdb = NULL;
1742         if (db_attr)
1743                 retdb->attributes = *db_attr;
1744         else
1745                 {
1746                 retdb->attributes.unique_subject = 1;
1747                 }
1748
1749         if (dbattr_conf)
1750                 {
1751                 char *p = NCONF_get_string(dbattr_conf,NULL,"unique_subject");
1752                 if (p)
1753                         {
1754 #ifdef RL_DEBUG
1755                         BIO_printf(bio_err, "DEBUG[load_index]: unique_subject = \"%s\"\n", p);
1756 #endif
1757                         retdb->attributes.unique_subject = parse_yesno(p,1);
1758                         }
1759                 }
1760
1761  err:
1762         if (dbattr_conf) NCONF_free(dbattr_conf);
1763         if (tmpdb) TXT_DB_free(tmpdb);
1764         if (in) BIO_free_all(in);
1765         return retdb;
1766         }
1767
1768 int index_index(CA_DB *db)
1769         {
1770         if (!TXT_DB_create_index(db->db, DB_serial, NULL,
1771                                 LHASH_HASH_FN(index_serial_hash),
1772                                 LHASH_COMP_FN(index_serial_cmp)))
1773                 {
1774                 BIO_printf(bio_err,
1775                   "error creating serial number index:(%ld,%ld,%ld)\n",
1776                                         db->db->error,db->db->arg1,db->db->arg2);
1777                         return 0;
1778                 }
1779
1780         if (db->attributes.unique_subject
1781                 && !TXT_DB_create_index(db->db, DB_name, index_name_qual,
1782                         LHASH_HASH_FN(index_name_hash),
1783                         LHASH_COMP_FN(index_name_cmp)))
1784                 {
1785                 BIO_printf(bio_err,"error creating name index:(%ld,%ld,%ld)\n",
1786                         db->db->error,db->db->arg1,db->db->arg2);
1787                 return 0;
1788                 }
1789         return 1;
1790         }
1791
1792 int save_index(const char *dbfile, const char *suffix, CA_DB *db)
1793         {
1794         char buf[3][BSIZE];
1795         BIO *out = BIO_new(BIO_s_file());
1796         int j;
1797
1798         if (out == NULL)
1799                 {
1800                 ERR_print_errors(bio_err);
1801                 goto err;
1802                 }
1803
1804         j = strlen(dbfile) + strlen(suffix);
1805         if (j + 6 >= BSIZE)
1806                 {
1807                 BIO_printf(bio_err,"file name too long\n");
1808                 goto err;
1809                 }
1810
1811 #ifndef OPENSSL_SYS_VMS
1812         j = BIO_snprintf(buf[2], sizeof buf[2], "%s.attr", dbfile);
1813 #else
1814         j = BIO_snprintf(buf[2], sizeof buf[2], "%s-attr", dbfile);
1815 #endif
1816 #ifndef OPENSSL_SYS_VMS
1817         j = BIO_snprintf(buf[1], sizeof buf[1], "%s.attr.%s", dbfile, suffix);
1818 #else
1819         j = BIO_snprintf(buf[1], sizeof buf[1], "%s-attr-%s", dbfile, suffix);
1820 #endif
1821 #ifndef OPENSSL_SYS_VMS
1822         j = BIO_snprintf(buf[0], sizeof buf[0], "%s.%s", dbfile, suffix);
1823 #else
1824         j = BIO_snprintf(buf[0], sizeof buf[0], "%s-%s", dbfile, suffix);
1825 #endif
1826 #ifdef RL_DEBUG
1827         BIO_printf(bio_err, "DEBUG: writing \"%s\"\n", buf[0]);
1828 #endif
1829         if (BIO_write_filename(out,buf[0]) <= 0)
1830                 {
1831                 perror(dbfile);
1832                 BIO_printf(bio_err,"unable to open '%s'\n", dbfile);
1833                 goto err;
1834                 }
1835         j=TXT_DB_write(out,db->db);
1836         if (j <= 0) goto err;
1837                         
1838         BIO_free(out);
1839
1840         out = BIO_new(BIO_s_file());
1841 #ifdef RL_DEBUG
1842         BIO_printf(bio_err, "DEBUG: writing \"%s\"\n", buf[1]);
1843 #endif
1844         if (BIO_write_filename(out,buf[1]) <= 0)
1845                 {
1846                 perror(buf[2]);
1847                 BIO_printf(bio_err,"unable to open '%s'\n", buf[2]);
1848                 goto err;
1849                 }
1850         BIO_printf(out,"unique_subject = %s\n",
1851                 db->attributes.unique_subject ? "yes" : "no");
1852         BIO_free(out);
1853
1854         return 1;
1855  err:
1856         return 0;
1857         }
1858
1859 int rotate_index(const char *dbfile, const char *new_suffix, const char *old_suffix)
1860         {
1861         char buf[5][BSIZE];
1862         int i,j;
1863         struct stat sb;
1864
1865         i = strlen(dbfile) + strlen(old_suffix);
1866         j = strlen(dbfile) + strlen(new_suffix);
1867         if (i > j) j = i;
1868         if (j + 6 >= BSIZE)
1869                 {
1870                 BIO_printf(bio_err,"file name too long\n");
1871                 goto err;
1872                 }
1873
1874 #ifndef OPENSSL_SYS_VMS
1875         j = BIO_snprintf(buf[4], sizeof buf[4], "%s.attr", dbfile);
1876 #else
1877         j = BIO_snprintf(buf[4], sizeof buf[4], "%s-attr", dbfile);
1878 #endif
1879 #ifndef OPENSSL_SYS_VMS
1880         j = BIO_snprintf(buf[2], sizeof buf[2], "%s.attr.%s",
1881                 dbfile, new_suffix);
1882 #else
1883         j = BIO_snprintf(buf[2], sizeof buf[2], "%s-attr-%s",
1884                 dbfile, new_suffix);
1885 #endif
1886 #ifndef OPENSSL_SYS_VMS
1887         j = BIO_snprintf(buf[0], sizeof buf[0], "%s.%s",
1888                 dbfile, new_suffix);
1889 #else
1890         j = BIO_snprintf(buf[0], sizeof buf[0], "%s-%s",
1891                 dbfile, new_suffix);
1892 #endif
1893 #ifndef OPENSSL_SYS_VMS
1894         j = BIO_snprintf(buf[1], sizeof buf[1], "%s.%s",
1895                 dbfile, old_suffix);
1896 #else
1897         j = BIO_snprintf(buf[1], sizeof buf[1], "%s-%s",
1898                 dbfile, old_suffix);
1899 #endif
1900 #ifndef OPENSSL_SYS_VMS
1901         j = BIO_snprintf(buf[3], sizeof buf[3], "%s.attr.%s",
1902                 dbfile, old_suffix);
1903 #else
1904         j = BIO_snprintf(buf[3], sizeof buf[3], "%s-attr-%s",
1905                 dbfile, old_suffix);
1906 #endif
1907         if (stat(dbfile,&sb) < 0)
1908                 {
1909                 if (errno != ENOENT 
1910 #ifdef ENOTDIR
1911                         && errno != ENOTDIR
1912 #endif
1913                    )
1914                         goto err;
1915                 }
1916         else
1917                 {
1918 #ifdef RL_DEBUG
1919                 BIO_printf(bio_err, "DEBUG: renaming \"%s\" to \"%s\"\n",
1920                         dbfile, buf[1]);
1921 #endif
1922                 if (rename(dbfile,buf[1]) < 0)
1923                         {
1924                         BIO_printf(bio_err,
1925                                 "unable to rename %s to %s\n",
1926                                 dbfile, buf[1]);
1927                         perror("reason");
1928                         goto err;
1929                         }
1930                 }
1931 #ifdef RL_DEBUG
1932         BIO_printf(bio_err, "DEBUG: renaming \"%s\" to \"%s\"\n",
1933                 buf[0],dbfile);
1934 #endif
1935         if (rename(buf[0],dbfile) < 0)
1936                 {
1937                 BIO_printf(bio_err,
1938                         "unable to rename %s to %s\n",
1939                         buf[0],dbfile);
1940                 perror("reason");
1941                 rename(buf[1],dbfile);
1942                 goto err;
1943                 }
1944         if (stat(buf[4],&sb) < 0)
1945                 {
1946                 if (errno != ENOENT 
1947 #ifdef ENOTDIR
1948                         && errno != ENOTDIR
1949 #endif
1950                    )
1951                         goto err;
1952                 }
1953         else
1954                 {
1955 #ifdef RL_DEBUG
1956                 BIO_printf(bio_err, "DEBUG: renaming \"%s\" to \"%s\"\n",
1957                         buf[4],buf[3]);
1958 #endif
1959                 if (rename(buf[4],buf[3]) < 0)
1960                         {
1961                         BIO_printf(bio_err,
1962                                 "unable to rename %s to %s\n",
1963                                 buf[4], buf[3]);
1964                         perror("reason");
1965                         rename(dbfile,buf[0]);
1966                         rename(buf[1],dbfile);
1967                         goto err;
1968                         }
1969                 }
1970 #ifdef RL_DEBUG
1971         BIO_printf(bio_err, "DEBUG: renaming \"%s\" to \"%s\"\n",
1972                 buf[2],buf[4]);
1973 #endif
1974         if (rename(buf[2],buf[4]) < 0)
1975                 {
1976                 BIO_printf(bio_err,
1977                         "unable to rename %s to %s\n",
1978                         buf[2],buf[4]);
1979                 perror("reason");
1980                 rename(buf[3],buf[4]);
1981                 rename(dbfile,buf[0]);
1982                 rename(buf[1],dbfile);
1983                 goto err;
1984                 }
1985         return 1;
1986  err:
1987         return 0;
1988         }
1989
1990 void free_index(CA_DB *db)
1991         {
1992         if (db)
1993                 {
1994                 if (db->db) TXT_DB_free(db->db);
1995                 OPENSSL_free(db);
1996                 }
1997         }
1998
1999 int parse_yesno(const char *str, int def)
2000         {
2001         int ret = def;
2002         if (str)
2003                 {
2004                 switch (*str)
2005                         {
2006                 case 'f': /* false */
2007                 case 'F': /* FALSE */
2008                 case 'n': /* no */
2009                 case 'N': /* NO */
2010                 case '0': /* 0 */
2011                         ret = 0;
2012                         break;
2013                 case 't': /* true */
2014                 case 'T': /* TRUE */
2015                 case 'y': /* yes */
2016                 case 'Y': /* YES */
2017                 case '1': /* 1 */
2018                         ret = 1;
2019                         break;
2020                 default:
2021                         ret = def;
2022                         break;
2023                         }
2024                 }
2025         return ret;
2026         }
2027
2028 /*
2029  * subject is expected to be in the format /type0=value0/type1=value1/type2=...
2030  * where characters may be escaped by \
2031  */
2032 X509_NAME *parse_name(char *subject, long chtype, int multirdn)
2033         {
2034         size_t buflen = strlen(subject)+1; /* to copy the types and values into. due to escaping, the copy can only become shorter */
2035         char *buf = OPENSSL_malloc(buflen);
2036         size_t max_ne = buflen / 2 + 1; /* maximum number of name elements */
2037         char **ne_types = OPENSSL_malloc(max_ne * sizeof (char *));
2038         char **ne_values = OPENSSL_malloc(max_ne * sizeof (char *));
2039         int *mval = OPENSSL_malloc (max_ne * sizeof (int));
2040
2041         char *sp = subject, *bp = buf;
2042         int i, ne_num = 0;
2043
2044         X509_NAME *n = NULL;
2045         int nid;
2046
2047         if (!buf || !ne_types || !ne_values)
2048                 {
2049                 BIO_printf(bio_err, "malloc error\n");
2050                 goto error;
2051                 }       
2052
2053         if (*subject != '/')
2054                 {
2055                 BIO_printf(bio_err, "Subject does not start with '/'.\n");
2056                 goto error;
2057                 }
2058         sp++; /* skip leading / */
2059
2060         /* no multivalued RDN by default */
2061         mval[ne_num] = 0;
2062
2063         while (*sp)
2064                 {
2065                 /* collect type */
2066                 ne_types[ne_num] = bp;
2067                 while (*sp)
2068                         {
2069                         if (*sp == '\\') /* is there anything to escape in the type...? */
2070                                 {
2071                                 if (*++sp)
2072                                         *bp++ = *sp++;
2073                                 else    
2074                                         {
2075                                         BIO_printf(bio_err, "escape character at end of string\n");
2076                                         goto error;
2077                                         }
2078                                 }       
2079                         else if (*sp == '=')
2080                                 {
2081                                 sp++;
2082                                 *bp++ = '\0';
2083                                 break;
2084                                 }
2085                         else
2086                                 *bp++ = *sp++;
2087                         }
2088                 if (!*sp)
2089                         {
2090                         BIO_printf(bio_err, "end of string encountered while processing type of subject name element #%d\n", ne_num);
2091                         goto error;
2092                         }
2093                 ne_values[ne_num] = bp;
2094                 while (*sp)
2095                         {
2096                         if (*sp == '\\')
2097                                 {
2098                                 if (*++sp)
2099                                         *bp++ = *sp++;
2100                                 else
2101                                         {
2102                                         BIO_printf(bio_err, "escape character at end of string\n");
2103                                         goto error;
2104                                         }
2105                                 }
2106                         else if (*sp == '/')
2107                                 {
2108                                 sp++;
2109                                 /* no multivalued RDN by default */
2110                                 mval[ne_num+1] = 0;
2111                                 break;
2112                                 }
2113                         else if (*sp == '+' && multirdn)
2114                                 {
2115                                 /* a not escaped + signals a mutlivalued RDN */
2116                                 sp++;
2117                                 mval[ne_num+1] = -1;
2118                                 break;
2119                                 }
2120                         else
2121                                 *bp++ = *sp++;
2122                         }
2123                 *bp++ = '\0';
2124                 ne_num++;
2125                 }       
2126
2127         if (!(n = X509_NAME_new()))
2128                 goto error;
2129
2130         for (i = 0; i < ne_num; i++)
2131                 {
2132                 if ((nid=OBJ_txt2nid(ne_types[i])) == NID_undef)
2133                         {
2134                         BIO_printf(bio_err, "Subject Attribute %s has no known NID, skipped\n", ne_types[i]);
2135                         continue;
2136                         }
2137
2138                 if (!*ne_values[i])
2139                         {
2140                         BIO_printf(bio_err, "No value provided for Subject Attribute %s, skipped\n", ne_types[i]);
2141                         continue;
2142                         }
2143
2144                 if (!X509_NAME_add_entry_by_NID(n, nid, chtype, (unsigned char*)ne_values[i], -1,-1,mval[i]))
2145                         goto error;
2146                 }
2147
2148         OPENSSL_free(ne_values);
2149         OPENSSL_free(ne_types);
2150         OPENSSL_free(buf);
2151         return n;
2152
2153 error:
2154         X509_NAME_free(n);
2155         if (ne_values)
2156                 OPENSSL_free(ne_values);
2157         if (ne_types)
2158                 OPENSSL_free(ne_types);
2159         if (buf)
2160                 OPENSSL_free(buf);
2161         return NULL;
2162 }
2163
2164 /* This code MUST COME AFTER anything that uses rename() */
2165 #ifdef OPENSSL_SYS_WIN32
2166 int WIN32_rename(const char *from, const char *to)
2167         {
2168 #ifndef OPENSSL_SYS_WINCE
2169         /* Windows rename gives an error if 'to' exists, so delete it
2170          * first and ignore file not found errror
2171          */
2172         if((remove(to) != 0) && (errno != ENOENT))
2173                 return -1;
2174 #undef rename
2175         return rename(from, to);
2176 #else
2177         /* convert strings to UNICODE */
2178         {
2179         BOOL result = FALSE;
2180         WCHAR* wfrom;
2181         WCHAR* wto;
2182         int i;
2183         wfrom = malloc((strlen(from)+1)*2);
2184         wto = malloc((strlen(to)+1)*2);
2185         if (wfrom != NULL && wto != NULL)
2186                 {
2187                 for (i=0; i<(int)strlen(from)+1; i++)
2188                         wfrom[i] = (short)from[i];
2189                 for (i=0; i<(int)strlen(to)+1; i++)
2190                         wto[i] = (short)to[i];
2191                 result = MoveFile(wfrom, wto);
2192                 }
2193         if (wfrom != NULL)
2194                 free(wfrom);
2195         if (wto != NULL)
2196                 free(wto);
2197         return result;
2198         }
2199 #endif
2200         }
2201 #endif
2202
2203 int args_verify(char ***pargs, int *pargc,
2204                         int *badarg, BIO *err, X509_VERIFY_PARAM **pm)
2205         {
2206         ASN1_OBJECT *otmp = NULL;
2207         unsigned long flags = 0;
2208         int i;
2209         int purpose = 0;
2210         char **oldargs = *pargs;
2211         char *arg = **pargs, *argn = (*pargs)[1];
2212         if (!strcmp(arg, "-policy"))
2213                 {
2214                 if (!argn)
2215                         *badarg = 1;
2216                 else
2217                         {
2218                         otmp = OBJ_txt2obj(argn, 0);
2219                         if (!otmp)
2220                                 {
2221                                 BIO_printf(err, "Invalid Policy \"%s\"\n",
2222                                                                         argn);
2223                                 *badarg = 1;
2224                                 }
2225                         }
2226                 (*pargs)++;
2227                 }
2228         else if (strcmp(arg,"-purpose") == 0)
2229                 {
2230                 X509_PURPOSE *xptmp;
2231                 if (!argn)
2232                         *badarg = 1;
2233                 else
2234                         {
2235                         i = X509_PURPOSE_get_by_sname(argn);
2236                         if(i < 0)
2237                                 {
2238                                 BIO_printf(err, "unrecognized purpose\n");
2239                                 *badarg = 1;
2240                                 }
2241                         else
2242                                 {
2243                                 xptmp = X509_PURPOSE_get0(i);
2244                                 purpose = X509_PURPOSE_get_id(xptmp);
2245                                 }
2246                         }
2247                 (*pargs)++;
2248                 }
2249         else if (!strcmp(arg, "-ignore_critical"))
2250                 flags |= X509_V_FLAG_IGNORE_CRITICAL;
2251         else if (!strcmp(arg, "-issuer_checks"))
2252                 flags |= X509_V_FLAG_CB_ISSUER_CHECK;
2253         else if (!strcmp(arg, "-crl_check"))
2254                 flags |=  X509_V_FLAG_CRL_CHECK;
2255         else if (!strcmp(arg, "-crl_check_all"))
2256                 flags |= X509_V_FLAG_CRL_CHECK|X509_V_FLAG_CRL_CHECK_ALL;
2257         else if (!strcmp(arg, "-policy_check"))
2258                 flags |= X509_V_FLAG_POLICY_CHECK;
2259         else if (!strcmp(arg, "-explicit_policy"))
2260                 flags |= X509_V_FLAG_EXPLICIT_POLICY;
2261         else if (!strcmp(arg, "-x509_strict"))
2262                 flags |= X509_V_FLAG_X509_STRICT;
2263         else if (!strcmp(arg, "-policy_print"))
2264                 flags |= X509_V_FLAG_NOTIFY_POLICY;
2265         else if (!strcmp(arg, "-check_ss_sig"))
2266                 flags |= X509_V_FLAG_CHECK_SS_SIGNATURE;
2267         else
2268                 return 0;
2269
2270         if (*badarg)
2271                 {
2272                 if (*pm)
2273                         X509_VERIFY_PARAM_free(*pm);
2274                 *pm = NULL;
2275                 goto end;
2276                 }
2277
2278         if (!*pm && !(*pm = X509_VERIFY_PARAM_new()))
2279                 {
2280                 *badarg = 1;
2281                 goto end;
2282                 }
2283
2284         if (otmp)
2285                 X509_VERIFY_PARAM_add0_policy(*pm, otmp);
2286         if (flags)
2287                 X509_VERIFY_PARAM_set_flags(*pm, flags);
2288
2289         if (purpose)
2290                 X509_VERIFY_PARAM_set_purpose(*pm, purpose);
2291
2292         end:
2293
2294         (*pargs)++;
2295
2296         if (pargc)
2297                 *pargc -= *pargs - oldargs;
2298
2299         return 1;
2300
2301         }
2302
2303 static void nodes_print(BIO *out, const char *name,
2304         STACK_OF(X509_POLICY_NODE) *nodes)
2305         {
2306         X509_POLICY_NODE *node;
2307         int i;
2308         BIO_printf(out, "%s Policies:", name);
2309         if (nodes)
2310                 {
2311                 BIO_puts(out, "\n");
2312                 for (i = 0; i < sk_X509_POLICY_NODE_num(nodes); i++)
2313                         {
2314                         node = sk_X509_POLICY_NODE_value(nodes, i);
2315                         X509_POLICY_NODE_print(out, node, 2);
2316                         }
2317                 }
2318         else
2319                 BIO_puts(out, " <empty>\n");
2320         }
2321
2322 void policies_print(BIO *out, X509_STORE_CTX *ctx)
2323         {
2324         X509_POLICY_TREE *tree;
2325         int explicit_policy;
2326         int free_out = 0;
2327         if (out == NULL)
2328                 {
2329                 out = BIO_new_fp(stderr, BIO_NOCLOSE);
2330                 free_out = 1;
2331                 }
2332         tree = X509_STORE_CTX_get0_policy_tree(ctx);
2333         explicit_policy = X509_STORE_CTX_get_explicit_policy(ctx);
2334
2335         BIO_printf(out, "Require explicit Policy: %s\n",
2336                                 explicit_policy ? "True" : "False");
2337
2338         nodes_print(out, "Authority", X509_policy_tree_get0_policies(tree));
2339         nodes_print(out, "User", X509_policy_tree_get0_user_policies(tree));
2340         if (free_out)
2341                 BIO_free(out);
2342         }
2343
2344 #ifndef OPENSSL_NO_JPAKE
2345
2346 static JPAKE_CTX *jpake_init(const char *us, const char *them,
2347                                                          const char *secret)
2348         {
2349         BIGNUM *p = NULL;
2350         BIGNUM *g = NULL;
2351         BIGNUM *q = NULL;
2352         BIGNUM *bnsecret = BN_new();
2353         JPAKE_CTX *ctx;
2354
2355         /* Use a safe prime for p (that we found earlier) */
2356         BN_hex2bn(&p, "F9E5B365665EA7A05A9C534502780FEE6F1AB5BD4F49947FD036DBD7E905269AF46EF28B0FC07487EE4F5D20FB3C0AF8E700F3A2FA3414970CBED44FEDFF80CE78D800F184BB82435D137AADA2C6C16523247930A63B85661D1FC817A51ACD96168E95898A1F83A79FFB529368AA7833ABD1B0C3AEDDB14D2E1A2F71D99F763F");
2357         g = BN_new();
2358         BN_set_word(g, 2);
2359         q = BN_new();
2360         BN_rshift1(q, p);
2361
2362         BN_bin2bn((const unsigned char *)secret, strlen(secret), bnsecret);
2363
2364         ctx = JPAKE_CTX_new(us, them, p, g, q, bnsecret);
2365         BN_free(bnsecret);
2366         BN_free(q);
2367         BN_free(g);
2368         BN_free(p);
2369
2370         return ctx;
2371         }
2372
2373 static void jpake_send_part(BIO *conn, const JPAKE_STEP_PART *p)
2374         {
2375         BN_print(conn, p->gx);
2376         BIO_puts(conn, "\n");
2377         BN_print(conn, p->zkpx.gr);
2378         BIO_puts(conn, "\n");
2379         BN_print(conn, p->zkpx.b);
2380         BIO_puts(conn, "\n");
2381         }
2382
2383 static void jpake_send_step1(BIO *bconn, JPAKE_CTX *ctx)
2384         {
2385         JPAKE_STEP1 s1;
2386
2387         JPAKE_STEP1_init(&s1);
2388         JPAKE_STEP1_generate(&s1, ctx);
2389         jpake_send_part(bconn, &s1.p1);
2390         jpake_send_part(bconn, &s1.p2);
2391         (void)BIO_flush(bconn);
2392         JPAKE_STEP1_release(&s1);
2393         }
2394
2395 static void jpake_send_step2(BIO *bconn, JPAKE_CTX *ctx)
2396         {
2397         JPAKE_STEP2 s2;
2398
2399         JPAKE_STEP2_init(&s2);
2400         JPAKE_STEP2_generate(&s2, ctx);
2401         jpake_send_part(bconn, &s2);
2402         (void)BIO_flush(bconn);
2403         JPAKE_STEP2_release(&s2);
2404         }
2405
2406 static void jpake_send_step3a(BIO *bconn, JPAKE_CTX *ctx)
2407         {
2408         JPAKE_STEP3A s3a;
2409
2410         JPAKE_STEP3A_init(&s3a);
2411         JPAKE_STEP3A_generate(&s3a, ctx);
2412         BIO_write(bconn, s3a.hhk, sizeof s3a.hhk);
2413         (void)BIO_flush(bconn);
2414         JPAKE_STEP3A_release(&s3a);
2415         }
2416
2417 static void jpake_send_step3b(BIO *bconn, JPAKE_CTX *ctx)
2418         {
2419         JPAKE_STEP3B s3b;
2420
2421         JPAKE_STEP3B_init(&s3b);
2422         JPAKE_STEP3B_generate(&s3b, ctx);
2423         BIO_write(bconn, s3b.hk, sizeof s3b.hk);
2424         (void)BIO_flush(bconn);
2425         JPAKE_STEP3B_release(&s3b);
2426         }
2427
2428 static void readbn(BIGNUM **bn, BIO *bconn)
2429         {
2430         char buf[10240];
2431         int l;
2432
2433         l = BIO_gets(bconn, buf, sizeof buf);
2434         assert(l > 0);
2435         assert(buf[l-1] == '\n');
2436         buf[l-1] = '\0';
2437         BN_hex2bn(bn, buf);
2438         }
2439
2440 static void jpake_receive_part(JPAKE_STEP_PART *p, BIO *bconn)
2441         {
2442         readbn(&p->gx, bconn);
2443         readbn(&p->zkpx.gr, bconn);
2444         readbn(&p->zkpx.b, bconn);
2445         }
2446
2447 static void jpake_receive_step1(JPAKE_CTX *ctx, BIO *bconn)
2448         {
2449         JPAKE_STEP1 s1;
2450
2451         JPAKE_STEP1_init(&s1);
2452         jpake_receive_part(&s1.p1, bconn);
2453         jpake_receive_part(&s1.p2, bconn);
2454         if(!JPAKE_STEP1_process(ctx, &s1))
2455                 {
2456                 ERR_print_errors(bio_err);
2457                 exit(1);
2458                 }
2459         JPAKE_STEP1_release(&s1);
2460         }
2461
2462 static void jpake_receive_step2(JPAKE_CTX *ctx, BIO *bconn)
2463         {
2464         JPAKE_STEP2 s2;
2465
2466         JPAKE_STEP2_init(&s2);
2467         jpake_receive_part(&s2, bconn);
2468         if(!JPAKE_STEP2_process(ctx, &s2))
2469                 {
2470                 ERR_print_errors(bio_err);
2471                 exit(1);
2472                 }
2473         JPAKE_STEP2_release(&s2);
2474         }
2475
2476 static void jpake_receive_step3a(JPAKE_CTX *ctx, BIO *bconn)
2477         {
2478         JPAKE_STEP3A s3a;
2479         int l;
2480
2481         JPAKE_STEP3A_init(&s3a);
2482         l = BIO_read(bconn, s3a.hhk, sizeof s3a.hhk);
2483         assert(l == sizeof s3a.hhk);
2484         if(!JPAKE_STEP3A_process(ctx, &s3a))
2485                 {
2486                 ERR_print_errors(bio_err);
2487                 exit(1);
2488                 }
2489         JPAKE_STEP3A_release(&s3a);
2490         }
2491
2492 static void jpake_receive_step3b(JPAKE_CTX *ctx, BIO *bconn)
2493         {
2494         JPAKE_STEP3B s3b;
2495         int l;
2496
2497         JPAKE_STEP3B_init(&s3b);
2498         l = BIO_read(bconn, s3b.hk, sizeof s3b.hk);
2499         assert(l == sizeof s3b.hk);
2500         if(!JPAKE_STEP3B_process(ctx, &s3b))
2501                 {
2502                 ERR_print_errors(bio_err);
2503                 exit(1);
2504                 }
2505         JPAKE_STEP3B_release(&s3b);
2506         }
2507
2508 void jpake_client_auth(BIO *out, BIO *conn, const char *secret)
2509         {
2510         JPAKE_CTX *ctx;
2511         BIO *bconn;
2512
2513         BIO_puts(out, "Authenticating with JPAKE\n");
2514
2515         ctx = jpake_init("client", "server", secret);
2516
2517         bconn = BIO_new(BIO_f_buffer());
2518         BIO_push(bconn, conn);
2519
2520         jpake_send_step1(bconn, ctx);
2521         jpake_receive_step1(ctx, bconn);
2522         jpake_send_step2(bconn, ctx);
2523         jpake_receive_step2(ctx, bconn);
2524         jpake_send_step3a(bconn, ctx);
2525         jpake_receive_step3b(ctx, bconn);
2526
2527         /*
2528          * The problem is that you must use the derived key in the
2529          * session key or you are subject to man-in-the-middle
2530          * attacks.
2531          */
2532         BIO_puts(out, "JPAKE authentication succeeded (N.B. This version can"
2533                  " be MitMed. See the version in HEAD for how to do it"
2534                  " properly)\n");
2535
2536         BIO_pop(bconn);
2537         BIO_free(bconn);
2538         }
2539
2540 void jpake_server_auth(BIO *out, BIO *conn, const char *secret)
2541         {
2542         JPAKE_CTX *ctx;
2543         BIO *bconn;
2544
2545         BIO_puts(out, "Authenticating with JPAKE\n");
2546
2547         ctx = jpake_init("server", "client", secret);
2548
2549         bconn = BIO_new(BIO_f_buffer());
2550         BIO_push(bconn, conn);
2551
2552         jpake_receive_step1(ctx, bconn);
2553         jpake_send_step1(bconn, ctx);
2554         jpake_receive_step2(ctx, bconn);
2555         jpake_send_step2(bconn, ctx);
2556         jpake_receive_step3a(ctx, bconn);
2557         jpake_send_step3b(bconn, ctx);
2558
2559         /*
2560          * The problem is that you must use the derived key in the
2561          * session key or you are subject to man-in-the-middle
2562          * attacks.
2563          */
2564         BIO_puts(out, "JPAKE authentication succeeded (N.B. This version can"
2565                  " be MitMed. See the version in HEAD for how to do it"
2566                  " properly)\n");
2567
2568         BIO_pop(bconn);
2569         BIO_free(bconn);
2570         }
2571
2572 #endif