Improve support for running everything as a monolithic application.
[openssl.git] / apps / ca.c
1 /* apps/ca.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 /* The PPKI stuff has been donated by Jeff Barber <jeffb@issl.atl.hp.com> */
60
61 #include <stdio.h>
62 #include <stdlib.h>
63 #include <string.h>
64 #include <sys/types.h>
65 #include <sys/stat.h>
66 #include "apps.h"
67 #include <openssl/conf.h>
68 #include <openssl/bio.h>
69 #include <openssl/err.h>
70 #include <openssl/bn.h>
71 #include <openssl/txt_db.h>
72 #include <openssl/evp.h>
73 #include <openssl/x509.h>
74 #include <openssl/x509v3.h>
75 #include <openssl/objects.h>
76 #include <openssl/pem.h>
77
78 #ifndef W_OK
79 #  ifdef VMS
80 #    if defined(__DECC)
81 #      include <unistd.h>
82 #    else
83 #      include <unixlib.h>
84 #    endif
85 #  else
86 #    include <sys/file.h>
87 #  endif
88 #endif
89
90 #ifndef W_OK
91 #  define F_OK 0
92 #  define X_OK 1
93 #  define W_OK 2
94 #  define R_OK 4
95 #endif
96
97 #undef PROG
98 #define PROG ca_main
99
100 #define BASE_SECTION    "ca"
101 #define CONFIG_FILE "openssl.cnf"
102
103 #define ENV_DEFAULT_CA          "default_ca"
104
105 #define ENV_DIR                 "dir"
106 #define ENV_CERTS               "certs"
107 #define ENV_CRL_DIR             "crl_dir"
108 #define ENV_CA_DB               "CA_DB"
109 #define ENV_NEW_CERTS_DIR       "new_certs_dir"
110 #define ENV_CERTIFICATE         "certificate"
111 #define ENV_SERIAL              "serial"
112 #define ENV_CRL                 "crl"
113 #define ENV_PRIVATE_KEY         "private_key"
114 #define ENV_RANDFILE            "RANDFILE"
115 #define ENV_DEFAULT_DAYS        "default_days"
116 #define ENV_DEFAULT_STARTDATE   "default_startdate"
117 #define ENV_DEFAULT_ENDDATE     "default_enddate"
118 #define ENV_DEFAULT_CRL_DAYS    "default_crl_days"
119 #define ENV_DEFAULT_CRL_HOURS   "default_crl_hours"
120 #define ENV_DEFAULT_MD          "default_md"
121 #define ENV_PRESERVE            "preserve"
122 #define ENV_POLICY              "policy"
123 #define ENV_EXTENSIONS          "x509_extensions"
124 #define ENV_CRLEXT              "crl_extensions"
125 #define ENV_MSIE_HACK           "msie_hack"
126
127 #define ENV_DATABASE            "database"
128
129 #define DB_type         0
130 #define DB_exp_date     1
131 #define DB_rev_date     2
132 #define DB_serial       3       /* index - unique */
133 #define DB_file         4       
134 #define DB_name         5       /* index - unique for active */
135 #define DB_NUMBER       6
136
137 #define DB_TYPE_REV     'R'
138 #define DB_TYPE_EXP     'E'
139 #define DB_TYPE_VAL     'V'
140
141 static char *ca_usage[]={
142 "usage: ca args\n",
143 "\n",
144 " -verbose        - Talk alot while doing things\n",
145 " -config file    - A config file\n",
146 " -name arg       - The particular CA definition to use\n",
147 " -gencrl         - Generate a new CRL\n",
148 " -crldays days   - Days is when the next CRL is due\n",
149 " -crlhours hours - Hours is when the next CRL is due\n",
150 " -startdate YYMMDDHHMMSSZ  - certificate validity notBefore\n",
151 " -enddate YYMMDDHHMMSSZ    - certificate validity notAfter (overrides -days)\n",
152 " -days arg       - number of days to certify the certificate for\n",
153 " -md arg         - md to use, one of md2, md5, sha or sha1\n",
154 " -policy arg     - The CA 'policy' to support\n",
155 " -keyfile arg    - PEM private key file\n",
156 " -key arg        - key to decode the private key if it is encrypted\n",
157 " -cert file      - The CA certificate\n",
158 " -in file        - The input PEM encoded certificate request(s)\n",
159 " -out file       - Where to put the output file(s)\n",
160 " -outdir dir     - Where to put output certificates\n",
161 " -infiles ....   - The last argument, requests to process\n",
162 " -spkac file     - File contains DN and signed public key and challenge\n",
163 " -ss_cert file   - File contains a self signed cert to sign\n",
164 " -preserveDN     - Don't re-order the DN\n",
165 " -batch          - Don't ask questions\n",
166 " -msie_hack      - msie modifications to handle all those universal strings\n",
167 " -revoke file    - Revoke a certificate (given in file)\n",
168 " -extensions ..  - Extension section (override value in config file)\n",
169 " -crlexts ..     - CRL extension section (override value in config file)\n",
170 NULL
171 };
172
173 #ifdef EFENCE
174 extern int EF_PROTECT_FREE;
175 extern int EF_PROTECT_BELOW;
176 extern int EF_ALIGNMENT;
177 #endif
178
179 static int add_oid_section(LHASH *conf);
180 static void lookup_fail(char *name,char *tag);
181 static int MS_CALLBACK key_callback(char *buf,int len,int verify,void *u);
182 static unsigned long index_serial_hash(char **a);
183 static int index_serial_cmp(char **a, char **b);
184 static unsigned long index_name_hash(char **a);
185 static int index_name_qual(char **a);
186 static int index_name_cmp(char **a,char **b);
187 static BIGNUM *load_serial(char *serialfile);
188 static int save_serial(char *serialfile, BIGNUM *serial);
189 static int certify(X509 **xret, char *infile,EVP_PKEY *pkey,X509 *x509,
190                    const EVP_MD *dgst,STACK_OF(CONF_VALUE) *policy,TXT_DB *db,
191                    BIGNUM *serial, char *startdate,char *enddate, int days,
192                    int batch, char *ext_sect, LHASH *conf,int verbose);
193 static int certify_cert(X509 **xret, char *infile,EVP_PKEY *pkey,X509 *x509,
194                         const EVP_MD *dgst,STACK_OF(CONF_VALUE) *policy,
195                         TXT_DB *db, BIGNUM *serial,char *startdate,
196                         char *enddate, int days, int batch, char *ext_sect,
197                         LHASH *conf,int verbose);
198 static int certify_spkac(X509 **xret, char *infile,EVP_PKEY *pkey,X509 *x509,
199                          const EVP_MD *dgst,STACK_OF(CONF_VALUE) *policy,
200                          TXT_DB *db, BIGNUM *serial,char *startdate,
201                          char *enddate, int days, char *ext_sect,LHASH *conf,
202                                 int verbose);
203 static int fix_data(int nid, int *type);
204 static void write_new_certificate(BIO *bp, X509 *x, int output_der);
205 static int do_body(X509 **xret, EVP_PKEY *pkey, X509 *x509, const EVP_MD *dgst,
206         STACK_OF(CONF_VALUE) *policy, TXT_DB *db, BIGNUM *serial,
207         char *startdate, char *enddate, int days, int batch, int verbose,
208         X509_REQ *req, char *ext_sect, LHASH *conf);
209 static int do_revoke(X509 *x509, TXT_DB *db);
210 static int check_time_format(char *str);
211 static LHASH *conf=NULL;
212 static char *key=NULL;
213 static char *section=NULL;
214
215 static int preserve=0;
216 static int msie_hack=0;
217
218 int MAIN(int argc, char **argv)
219         {
220         int total=0;
221         int total_done=0;
222         int badops=0;
223         int ret=1;
224         int req=0;
225         int verbose=0;
226         int gencrl=0;
227         int dorevoke=0;
228         long crldays=0;
229         long crlhours=0;
230         long errorline= -1;
231         char *configfile=NULL;
232         char *md=NULL;
233         char *policy=NULL;
234         char *keyfile=NULL;
235         char *certfile=NULL;
236         char *infile=NULL;
237         char *spkac_file=NULL;
238         char *ss_cert_file=NULL;
239         EVP_PKEY *pkey=NULL;
240         int output_der = 0;
241         char *outfile=NULL;
242         char *outdir=NULL;
243         char *serialfile=NULL;
244         char *extensions=NULL;
245         char *crl_ext=NULL;
246         BIGNUM *serial=NULL;
247         char *startdate=NULL;
248         char *enddate=NULL;
249         int days=0;
250         int batch=0;
251         X509 *x509=NULL;
252         X509 *x=NULL;
253         BIO *in=NULL,*out=NULL,*Sout=NULL,*Cout=NULL;
254         char *dbfile=NULL;
255         TXT_DB *db=NULL;
256         X509_CRL *crl=NULL;
257         X509_CRL_INFO *ci=NULL;
258         X509_REVOKED *r=NULL;
259         char **pp,*p,*f;
260         int i,j;
261         long l;
262         const EVP_MD *dgst=NULL;
263         STACK_OF(CONF_VALUE) *attribs=NULL;
264         STACK *cert_sk=NULL;
265         BIO *hex=NULL;
266 #undef BSIZE
267 #define BSIZE 256
268         MS_STATIC char buf[3][BSIZE];
269
270 #ifdef EFENCE
271 EF_PROTECT_FREE=1;
272 EF_PROTECT_BELOW=1;
273 EF_ALIGNMENT=0;
274 #endif
275
276         apps_startup();
277
278         conf = NULL;
279         key = NULL;
280         section = NULL;
281
282         X509V3_add_standard_extensions();
283
284         preserve=0;
285         msie_hack=0;
286         if (bio_err == NULL)
287                 if ((bio_err=BIO_new(BIO_s_file())) != NULL)
288                         BIO_set_fp(bio_err,stderr,BIO_NOCLOSE|BIO_FP_TEXT);
289
290         argc--;
291         argv++;
292         while (argc >= 1)
293                 {
294                 if      (strcmp(*argv,"-verbose") == 0)
295                         verbose=1;
296                 else if (strcmp(*argv,"-config") == 0)
297                         {
298                         if (--argc < 1) goto bad;
299                         configfile= *(++argv);
300                         }
301                 else if (strcmp(*argv,"-name") == 0)
302                         {
303                         if (--argc < 1) goto bad;
304                         section= *(++argv);
305                         }
306                 else if (strcmp(*argv,"-startdate") == 0)
307                         {
308                         if (--argc < 1) goto bad;
309                         startdate= *(++argv);
310                         }
311                 else if (strcmp(*argv,"-enddate") == 0)
312                         {
313                         if (--argc < 1) goto bad;
314                         enddate= *(++argv);
315                         }
316                 else if (strcmp(*argv,"-days") == 0)
317                         {
318                         if (--argc < 1) goto bad;
319                         days=atoi(*(++argv));
320                         }
321                 else if (strcmp(*argv,"-md") == 0)
322                         {
323                         if (--argc < 1) goto bad;
324                         md= *(++argv);
325                         }
326                 else if (strcmp(*argv,"-policy") == 0)
327                         {
328                         if (--argc < 1) goto bad;
329                         policy= *(++argv);
330                         }
331                 else if (strcmp(*argv,"-keyfile") == 0)
332                         {
333                         if (--argc < 1) goto bad;
334                         keyfile= *(++argv);
335                         }
336                 else if (strcmp(*argv,"-key") == 0)
337                         {
338                         if (--argc < 1) goto bad;
339                         key= *(++argv);
340                         }
341                 else if (strcmp(*argv,"-cert") == 0)
342                         {
343                         if (--argc < 1) goto bad;
344                         certfile= *(++argv);
345                         }
346                 else if (strcmp(*argv,"-in") == 0)
347                         {
348                         if (--argc < 1) goto bad;
349                         infile= *(++argv);
350                         req=1;
351                         }
352                 else if (strcmp(*argv,"-out") == 0)
353                         {
354                         if (--argc < 1) goto bad;
355                         outfile= *(++argv);
356                         }
357                 else if (strcmp(*argv,"-outdir") == 0)
358                         {
359                         if (--argc < 1) goto bad;
360                         outdir= *(++argv);
361                         }
362                 else if (strcmp(*argv,"-batch") == 0)
363                         batch=1;
364                 else if (strcmp(*argv,"-preserveDN") == 0)
365                         preserve=1;
366                 else if (strcmp(*argv,"-gencrl") == 0)
367                         gencrl=1;
368                 else if (strcmp(*argv,"-msie_hack") == 0)
369                         msie_hack=1;
370                 else if (strcmp(*argv,"-crldays") == 0)
371                         {
372                         if (--argc < 1) goto bad;
373                         crldays= atol(*(++argv));
374                         }
375                 else if (strcmp(*argv,"-crlhours") == 0)
376                         {
377                         if (--argc < 1) goto bad;
378                         crlhours= atol(*(++argv));
379                         }
380                 else if (strcmp(*argv,"-infiles") == 0)
381                         {
382                         argc--;
383                         argv++;
384                         req=1;
385                         break;
386                         }
387                 else if (strcmp(*argv, "-ss_cert") == 0)
388                         {
389                         if (--argc < 1) goto bad;
390                         ss_cert_file = *(++argv);
391                         req=1;
392                         }
393                 else if (strcmp(*argv, "-spkac") == 0)
394                         {
395                         if (--argc < 1) goto bad;
396                         spkac_file = *(++argv);
397                         req=1;
398                         }
399                 else if (strcmp(*argv,"-revoke") == 0)
400                         {
401                         if (--argc < 1) goto bad;
402                         infile= *(++argv);
403                         dorevoke=1;
404                         }
405                 else if (strcmp(*argv,"-extensions") == 0)
406                         {
407                         if (--argc < 1) goto bad;
408                         extensions= *(++argv);
409                         }
410                 else if (strcmp(*argv,"-crlexts") == 0)
411                         {
412                         if (--argc < 1) goto bad;
413                         crl_ext= *(++argv);
414                         }
415                 else
416                         {
417 bad:
418                         BIO_printf(bio_err,"unknown option %s\n",*argv);
419                         badops=1;
420                         break;
421                         }
422                 argc--;
423                 argv++;
424                 }
425
426         if (badops)
427                 {
428                 for (pp=ca_usage; (*pp != NULL); pp++)
429                         BIO_printf(bio_err,*pp);
430                 goto err;
431                 }
432
433         ERR_load_crypto_strings();
434
435         /*****************************************************************/
436         if (configfile == NULL) configfile = getenv("OPENSSL_CONF");
437         if (configfile == NULL) configfile = getenv("SSLEAY_CONF");
438         if (configfile == NULL)
439                 {
440                 /* We will just use 'buf[0]' as a temporary buffer.  */
441 #ifdef VMS
442                 strncpy(buf[0],X509_get_default_cert_area(),
443                         sizeof(buf[0])-1-sizeof(CONFIG_FILE));
444 #else
445                 strncpy(buf[0],X509_get_default_cert_area(),
446                         sizeof(buf[0])-2-sizeof(CONFIG_FILE));
447                 strcat(buf[0],"/");
448 #endif
449                 strcat(buf[0],CONFIG_FILE);
450                 configfile=buf[0];
451                 }
452
453         BIO_printf(bio_err,"Using configuration from %s\n",configfile);
454         if ((conf=CONF_load(NULL,configfile,&errorline)) == NULL)
455                 {
456                 if (errorline <= 0)
457                         BIO_printf(bio_err,"error loading the config file '%s'\n",
458                                 configfile);
459                 else
460                         BIO_printf(bio_err,"error on line %ld of config file '%s'\n"
461                                 ,errorline,configfile);
462                 goto err;
463                 }
464
465         /* Lets get the config section we are using */
466         if (section == NULL)
467                 {
468                 section=CONF_get_string(conf,BASE_SECTION,ENV_DEFAULT_CA);
469                 if (section == NULL)
470                         {
471                         lookup_fail(BASE_SECTION,ENV_DEFAULT_CA);
472                         goto err;
473                         }
474                 }
475
476         if (conf != NULL)
477                 {
478                 p=CONF_get_string(conf,NULL,"oid_file");
479                 if (p != NULL)
480                         {
481                         BIO *oid_bio;
482
483                         oid_bio=BIO_new_file(p,"r");
484                         if (oid_bio == NULL) 
485                                 {
486                                 /*
487                                 BIO_printf(bio_err,"problems opening %s for extra oid's\n",p);
488                                 ERR_print_errors(bio_err);
489                                 */
490                                 ERR_clear_error();
491                                 }
492                         else
493                                 {
494                                 OBJ_create_objects(oid_bio);
495                                 BIO_free(oid_bio);
496                                 }
497                         }
498                 }
499                 if(!add_oid_section(conf)) {
500                         ERR_print_errors(bio_err);
501                         goto err;
502                 }
503
504         in=BIO_new(BIO_s_file());
505         out=BIO_new(BIO_s_file());
506         Sout=BIO_new(BIO_s_file());
507         Cout=BIO_new(BIO_s_file());
508         if ((in == NULL) || (out == NULL) || (Sout == NULL) || (Cout == NULL))
509                 {
510                 ERR_print_errors(bio_err);
511                 goto err;
512                 }
513
514         /*****************************************************************/
515         /* we definitly need an public key, so lets get it */
516
517         if ((keyfile == NULL) && ((keyfile=CONF_get_string(conf,
518                 section,ENV_PRIVATE_KEY)) == NULL))
519                 {
520                 lookup_fail(section,ENV_PRIVATE_KEY);
521                 goto err;
522                 }
523         if (BIO_read_filename(in,keyfile) <= 0)
524                 {
525                 perror(keyfile);
526                 BIO_printf(bio_err,"trying to load CA private key\n");
527                 goto err;
528                 }
529         if (key == NULL)
530                 pkey=PEM_read_bio_PrivateKey(in,NULL,NULL,NULL);
531         else
532                 {
533                 pkey=PEM_read_bio_PrivateKey(in,NULL,key_callback,NULL);
534                 memset(key,0,strlen(key));
535                 }
536         if (pkey == NULL)
537                 {
538                 BIO_printf(bio_err,"unable to load CA private key\n");
539                 goto err;
540                 }
541
542         /*****************************************************************/
543         /* we need a certificate */
544         if ((certfile == NULL) && ((certfile=CONF_get_string(conf,
545                 section,ENV_CERTIFICATE)) == NULL))
546                 {
547                 lookup_fail(section,ENV_CERTIFICATE);
548                 goto err;
549                 }
550         if (BIO_read_filename(in,certfile) <= 0)
551                 {
552                 perror(certfile);
553                 BIO_printf(bio_err,"trying to load CA certificate\n");
554                 goto err;
555                 }
556         x509=PEM_read_bio_X509(in,NULL,NULL,NULL);
557         if (x509 == NULL)
558                 {
559                 BIO_printf(bio_err,"unable to load CA certificate\n");
560                 goto err;
561                 }
562
563         if (!X509_check_private_key(x509,pkey))
564                 {
565                 BIO_printf(bio_err,"CA certificate and CA private key do not match\n");
566                 goto err;
567                 }
568
569         f=CONF_get_string(conf,BASE_SECTION,ENV_PRESERVE);
570         if ((f != NULL) && ((*f == 'y') || (*f == 'Y')))
571                 preserve=1;
572         f=CONF_get_string(conf,BASE_SECTION,ENV_MSIE_HACK);
573         if ((f != NULL) && ((*f == 'y') || (*f == 'Y')))
574                 msie_hack=1;
575
576         /*****************************************************************/
577         /* lookup where to write new certificates */
578         if ((outdir == NULL) && (req))
579                 {
580                 struct stat sb;
581
582                 if ((outdir=CONF_get_string(conf,section,ENV_NEW_CERTS_DIR))
583                         == NULL)
584                         {
585                         BIO_printf(bio_err,"there needs to be defined a directory for new certificate to be placed in\n");
586                         goto err;
587                         }
588 #ifdef VMS
589                 /* For technical reasons, VMS misbehaves with X_OK */
590                 if (access(outdir,R_OK|W_OK) != 0)
591 #else
592                 if (access(outdir,R_OK|W_OK|X_OK) != 0)
593 #endif
594                         {
595                         BIO_printf(bio_err,"I am unable to acces the %s directory\n",outdir);
596                         perror(outdir);
597                         goto err;
598                         }
599
600                 if (stat(outdir,&sb) != 0)
601                         {
602                         BIO_printf(bio_err,"unable to stat(%s)\n",outdir);
603                         perror(outdir);
604                         goto err;
605                         }
606 #ifdef S_IFDIR
607                 if (!(sb.st_mode & S_IFDIR))
608                         {
609                         BIO_printf(bio_err,"%s need to be a directory\n",outdir);
610                         perror(outdir);
611                         goto err;
612                         }
613 #endif
614                 }
615
616         /*****************************************************************/
617         /* we need to load the database file */
618         if ((dbfile=CONF_get_string(conf,section,ENV_DATABASE)) == NULL)
619                 {
620                 lookup_fail(section,ENV_DATABASE);
621                 goto err;
622                 }
623         if (BIO_read_filename(in,dbfile) <= 0)
624                 {
625                 perror(dbfile);
626                 BIO_printf(bio_err,"unable to open '%s'\n",dbfile);
627                 goto err;
628                 }
629         db=TXT_DB_read(in,DB_NUMBER);
630         if (db == NULL) goto err;
631
632         /* Lets check some fields */
633         for (i=0; i<sk_num(db->data); i++)
634                 {
635                 pp=(char **)sk_value(db->data,i);
636                 if ((pp[DB_type][0] != DB_TYPE_REV) &&
637                         (pp[DB_rev_date][0] != '\0'))
638                         {
639                         BIO_printf(bio_err,"entry %d: not revoked yet, but has a revocation date\n",i+1);
640                         goto err;
641                         }
642                 if ((pp[DB_type][0] == DB_TYPE_REV) &&
643                         !check_time_format(pp[DB_rev_date]))
644                         {
645                         BIO_printf(bio_err,"entry %d: invalid revocation date\n",
646                                 i+1);
647                         goto err;
648                         }
649                 if (!check_time_format(pp[DB_exp_date]))
650                         {
651                         BIO_printf(bio_err,"entry %d: invalid expiry date\n",i+1);
652                         goto err;
653                         }
654                 p=pp[DB_serial];
655                 j=strlen(p);
656                 if ((j&1) || (j < 2))
657                         {
658                         BIO_printf(bio_err,"entry %d: bad serial number length (%d)\n",i+1,j);
659                         goto err;
660                         }
661                 while (*p)
662                         {
663                         if (!(  ((*p >= '0') && (*p <= '9')) ||
664                                 ((*p >= 'A') && (*p <= 'F')) ||
665                                 ((*p >= 'a') && (*p <= 'f')))  )
666                                 {
667                                 BIO_printf(bio_err,"entry %d: bad serial number characters, char pos %ld, char is '%c'\n",i+1,(long)(p-pp[DB_serial]),*p);
668                                 goto err;
669                                 }
670                         p++;
671                         }
672                 }
673         if (verbose)
674                 {
675                 BIO_set_fp(out,stdout,BIO_NOCLOSE|BIO_FP_TEXT); /* cannot fail */
676                 TXT_DB_write(out,db);
677                 BIO_printf(bio_err,"%d entries loaded from the database\n",
678                         db->data->num);
679                 BIO_printf(bio_err,"generating indexs\n");
680                 }
681         
682         if (!TXT_DB_create_index(db,DB_serial,NULL,index_serial_hash,
683                 index_serial_cmp))
684                 {
685                 BIO_printf(bio_err,"error creating serial number index:(%ld,%ld,%ld)\n",db->error,db->arg1,db->arg2);
686                 goto err;
687                 }
688
689         if (!TXT_DB_create_index(db,DB_name,index_name_qual,index_name_hash,
690                 index_name_cmp))
691                 {
692                 BIO_printf(bio_err,"error creating name index:(%ld,%ld,%ld)\n",
693                         db->error,db->arg1,db->arg2);
694                 goto err;
695                 }
696
697         /*****************************************************************/
698         if (req || gencrl)
699                 {
700                 if (outfile != NULL)
701                         {
702
703                         if (BIO_write_filename(Sout,outfile) <= 0)
704                                 {
705                                 perror(outfile);
706                                 goto err;
707                                 }
708                         }
709                 else
710                         BIO_set_fp(Sout,stdout,BIO_NOCLOSE|BIO_FP_TEXT);
711                 }
712
713         if (req)
714                 {
715                 if ((md == NULL) && ((md=CONF_get_string(conf,
716                         section,ENV_DEFAULT_MD)) == NULL))
717                         {
718                         lookup_fail(section,ENV_DEFAULT_MD);
719                         goto err;
720                         }
721                 if ((dgst=EVP_get_digestbyname(md)) == NULL)
722                         {
723                         BIO_printf(bio_err,"%s is an unsupported message digest type\n",md);
724                         goto err;
725                         }
726                 if (verbose)
727                         BIO_printf(bio_err,"message digest is %s\n",
728                                 OBJ_nid2ln(dgst->type));
729                 if ((policy == NULL) && ((policy=CONF_get_string(conf,
730                         section,ENV_POLICY)) == NULL))
731                         {
732                         lookup_fail(section,ENV_POLICY);
733                         goto err;
734                         }
735                 if (verbose)
736                         BIO_printf(bio_err,"policy is %s\n",policy);
737
738                 if ((serialfile=CONF_get_string(conf,section,ENV_SERIAL))
739                         == NULL)
740                         {
741                         lookup_fail(section,ENV_SERIAL);
742                         goto err;
743                         }
744                 if(!extensions)
745                         extensions=CONF_get_string(conf,section,ENV_EXTENSIONS);
746                 if(extensions) {
747                         /* Check syntax of file */
748                         X509V3_CTX ctx;
749                         X509V3_set_ctx_test(&ctx);
750                         X509V3_set_conf_lhash(&ctx, conf);
751                         if(!X509V3_EXT_add_conf(conf, &ctx, extensions, NULL)) {
752                                 BIO_printf(bio_err,
753                                  "Error Loading extension section %s\n",
754                                                                  extensions);
755                                 ret = 1;
756                                 goto err;
757                         }
758                 }
759
760                 if (startdate == NULL)
761                         {
762                         startdate=CONF_get_string(conf,section,
763                                 ENV_DEFAULT_STARTDATE);
764                         }
765                 if (startdate && !ASN1_UTCTIME_set_string(NULL,startdate))
766                         {
767                         BIO_printf(bio_err,"start date is invalid, it should be YYMMDDHHMMSSZ\n");
768                         goto err;
769                         }
770                 if (startdate == NULL) startdate="today";
771
772                 if (enddate == NULL)
773                         {
774                         enddate=CONF_get_string(conf,section,
775                                 ENV_DEFAULT_ENDDATE);
776                         }
777                 if (enddate && !ASN1_UTCTIME_set_string(NULL,enddate))
778                         {
779                         BIO_printf(bio_err,"end date is invalid, it should be YYMMDDHHMMSSZ\n");
780                         goto err;
781                         }
782
783                 if (days == 0)
784                         {
785                         days=(int)CONF_get_number(conf,section,
786                                 ENV_DEFAULT_DAYS);
787                         }
788                 if (!enddate && (days == 0))
789                         {
790                         BIO_printf(bio_err,"cannot lookup how many days to certify for\n");
791                         goto err;
792                         }
793
794                 if ((serial=load_serial(serialfile)) == NULL)
795                         {
796                         BIO_printf(bio_err,"error while loading serial number\n");
797                         goto err;
798                         }
799                 if (verbose)
800                         {
801                         if ((f=BN_bn2hex(serial)) == NULL) goto err;
802                         BIO_printf(bio_err,"next serial number is %s\n",f);
803                         Free(f);
804                         }
805
806                 if ((attribs=CONF_get_section(conf,policy)) == NULL)
807                         {
808                         BIO_printf(bio_err,"unable to find 'section' for %s\n",policy);
809                         goto err;
810                         }
811
812                 if ((cert_sk=sk_new_null()) == NULL)
813                         {
814                         BIO_printf(bio_err,"Malloc failure\n");
815                         goto err;
816                         }
817                 if (spkac_file != NULL)
818                         {
819                         total++;
820                         j=certify_spkac(&x,spkac_file,pkey,x509,dgst,attribs,db,
821                                 serial,startdate,enddate, days,extensions,conf,
822                                 verbose);
823                         if (j < 0) goto err;
824                         if (j > 0)
825                                 {
826                                 total_done++;
827                                 BIO_printf(bio_err,"\n");
828                                 if (!BN_add_word(serial,1)) goto err;
829                                 if (!sk_push(cert_sk,(char *)x))
830                                         {
831                                         BIO_printf(bio_err,"Malloc failure\n");
832                                         goto err;
833                                         }
834                                 if (outfile)
835                                         {
836                                         output_der = 1;
837                                         batch = 1;
838                                         }
839                                 }
840                         }
841                 if (ss_cert_file != NULL)
842                         {
843                         total++;
844                         j=certify_cert(&x,ss_cert_file,pkey,x509,dgst,attribs,
845                                 db,serial,startdate,enddate,days,batch,
846                                 extensions,conf,verbose);
847                         if (j < 0) goto err;
848                         if (j > 0)
849                                 {
850                                 total_done++;
851                                 BIO_printf(bio_err,"\n");
852                                 if (!BN_add_word(serial,1)) goto err;
853                                 if (!sk_push(cert_sk,(char *)x))
854                                         {
855                                         BIO_printf(bio_err,"Malloc failure\n");
856                                         goto err;
857                                         }
858                                 }
859                         }
860                 if (infile != NULL)
861                         {
862                         total++;
863                         j=certify(&x,infile,pkey,x509,dgst,attribs,db,
864                                 serial,startdate,enddate,days,batch,
865                                 extensions,conf,verbose);
866                         if (j < 0) goto err;
867                         if (j > 0)
868                                 {
869                                 total_done++;
870                                 BIO_printf(bio_err,"\n");
871                                 if (!BN_add_word(serial,1)) goto err;
872                                 if (!sk_push(cert_sk,(char *)x))
873                                         {
874                                         BIO_printf(bio_err,"Malloc failure\n");
875                                         goto err;
876                                         }
877                                 }
878                         }
879                 for (i=0; i<argc; i++)
880                         {
881                         total++;
882                         j=certify(&x,argv[i],pkey,x509,dgst,attribs,db,
883                                 serial,startdate,enddate,days,batch,
884                                 extensions,conf,verbose);
885                         if (j < 0) goto err;
886                         if (j > 0)
887                                 {
888                                 total_done++;
889                                 BIO_printf(bio_err,"\n");
890                                 if (!BN_add_word(serial,1)) goto err;
891                                 if (!sk_push(cert_sk,(char *)x))
892                                         {
893                                         BIO_printf(bio_err,"Malloc failure\n");
894                                         goto err;
895                                         }
896                                 }
897                         }       
898                 /* we have a stack of newly certified certificates
899                  * and a data base and serial number that need
900                  * updating */
901
902                 if (sk_num(cert_sk) > 0)
903                         {
904                         if (!batch)
905                                 {
906                                 BIO_printf(bio_err,"\n%d out of %d certificate requests certified, commit? [y/n]",total_done,total);
907                                 (void)BIO_flush(bio_err);
908                                 buf[0][0]='\0';
909                                 fgets(buf[0],10,stdin);
910                                 if ((buf[0][0] != 'y') && (buf[0][0] != 'Y'))
911                                         {
912                                         BIO_printf(bio_err,"CERTIFICATION CANCELED\n"); 
913                                         ret=0;
914                                         goto err;
915                                         }
916                                 }
917
918                         BIO_printf(bio_err,"Write out database with %d new entries\n",sk_num(cert_sk));
919
920                         strncpy(buf[0],serialfile,BSIZE-4);
921
922 #ifdef VMS
923                         strcat(buf[0],"-new");
924 #else
925                         strcat(buf[0],".new");
926 #endif
927
928                         if (!save_serial(buf[0],serial)) goto err;
929
930                         strncpy(buf[1],dbfile,BSIZE-4);
931
932 #ifdef VMS
933                         strcat(buf[1],"-new");
934 #else
935                         strcat(buf[1],".new");
936 #endif
937
938                         if (BIO_write_filename(out,buf[1]) <= 0)
939                                 {
940                                 perror(dbfile);
941                                 BIO_printf(bio_err,"unable to open '%s'\n",dbfile);
942                                 goto err;
943                                 }
944                         l=TXT_DB_write(out,db);
945                         if (l <= 0) goto err;
946                         }
947         
948                 if (verbose)
949                         BIO_printf(bio_err,"writing new certificates\n");
950                 for (i=0; i<sk_num(cert_sk); i++)
951                         {
952                         int k;
953                         unsigned char *n;
954
955                         x=(X509 *)sk_value(cert_sk,i);
956
957                         j=x->cert_info->serialNumber->length;
958                         p=(char *)x->cert_info->serialNumber->data;
959                         
960                         strncpy(buf[2],outdir,BSIZE-(j*2)-6);
961
962 #ifndef VMS
963                         strcat(buf[2],"/");
964 #endif
965
966                         n=(unsigned char *)&(buf[2][strlen(buf[2])]);
967                         if (j > 0)
968                                 {
969                                 for (k=0; k<j; k++)
970                                         {
971                                         sprintf((char *)n,"%02X",(unsigned char)*(p++));
972                                         n+=2;
973                                         }
974                                 }
975                         else
976                                 {
977                                 *(n++)='0';
978                                 *(n++)='0';
979                                 }
980                         *(n++)='.'; *(n++)='p'; *(n++)='e'; *(n++)='m';
981                         *n='\0';
982                         if (verbose)
983                                 BIO_printf(bio_err,"writing %s\n",buf[2]);
984
985                         if (BIO_write_filename(Cout,buf[2]) <= 0)
986                                 {
987                                 perror(buf[2]);
988                                 goto err;
989                                 }
990                         write_new_certificate(Cout,x, 0);
991                         write_new_certificate(Sout,x, output_der);
992                         }
993
994                 if (sk_num(cert_sk))
995                         {
996                         /* Rename the database and the serial file */
997                         strncpy(buf[2],serialfile,BSIZE-4);
998
999 #ifdef VMS
1000                         strcat(buf[2],"-old");
1001 #else
1002                         strcat(buf[2],".old");
1003 #endif
1004
1005                         BIO_free(in);
1006                         BIO_free(out);
1007                         in=NULL;
1008                         out=NULL;
1009                         if (rename(serialfile,buf[2]) < 0)
1010                                 {
1011                                 BIO_printf(bio_err,"unabel to rename %s to %s\n",
1012                                         serialfile,buf[2]);
1013                                 perror("reason");
1014                                 goto err;
1015                                 }
1016                         if (rename(buf[0],serialfile) < 0)
1017                                 {
1018                                 BIO_printf(bio_err,"unabel to rename %s to %s\n",
1019                                         buf[0],serialfile);
1020                                 perror("reason");
1021                                 rename(buf[2],serialfile);
1022                                 goto err;
1023                                 }
1024
1025                         strncpy(buf[2],dbfile,BSIZE-4);
1026
1027 #ifdef VMS
1028                         strcat(buf[2],"-old");
1029 #else
1030                         strcat(buf[2],".old");
1031 #endif
1032
1033                         if (rename(dbfile,buf[2]) < 0)
1034                                 {
1035                                 BIO_printf(bio_err,"unabel to rename %s to %s\n",
1036                                         dbfile,buf[2]);
1037                                 perror("reason");
1038                                 goto err;
1039                                 }
1040                         if (rename(buf[1],dbfile) < 0)
1041                                 {
1042                                 BIO_printf(bio_err,"unabel to rename %s to %s\n",
1043                                         buf[1],dbfile);
1044                                 perror("reason");
1045                                 rename(buf[2],dbfile);
1046                                 goto err;
1047                                 }
1048                         BIO_printf(bio_err,"Data Base Updated\n");
1049                         }
1050                 }
1051         
1052         /*****************************************************************/
1053         if (gencrl)
1054                 {
1055                 if(!crl_ext) crl_ext=CONF_get_string(conf,section,ENV_CRLEXT);
1056                 if(crl_ext) {
1057                         /* Check syntax of file */
1058                         X509V3_CTX ctx;
1059                         X509V3_set_ctx_test(&ctx);
1060                         X509V3_set_conf_lhash(&ctx, conf);
1061                         if(!X509V3_EXT_add_conf(conf, &ctx, crl_ext, NULL)) {
1062                                 BIO_printf(bio_err,
1063                                  "Error Loading CRL extension section %s\n",
1064                                                                  crl_ext);
1065                                 ret = 1;
1066                                 goto err;
1067                         }
1068                 }
1069                 if ((hex=BIO_new(BIO_s_mem())) == NULL) goto err;
1070
1071                 if (!crldays && !crlhours)
1072                         {
1073                         crldays=CONF_get_number(conf,section,
1074                                 ENV_DEFAULT_CRL_DAYS);
1075                         crlhours=CONF_get_number(conf,section,
1076                                 ENV_DEFAULT_CRL_HOURS);
1077                         }
1078                 if ((crldays == 0) && (crlhours == 0))
1079                         {
1080                         BIO_printf(bio_err,"cannot lookup how long until the next CRL is issuer\n");
1081                         goto err;
1082                         }
1083
1084                 if (verbose) BIO_printf(bio_err,"making CRL\n");
1085                 if ((crl=X509_CRL_new()) == NULL) goto err;
1086                 ci=crl->crl;
1087                 X509_NAME_free(ci->issuer);
1088                 ci->issuer=X509_NAME_dup(x509->cert_info->subject);
1089                 if (ci->issuer == NULL) goto err;
1090
1091                 X509_gmtime_adj(ci->lastUpdate,0);
1092                 if (ci->nextUpdate == NULL)
1093                         ci->nextUpdate=ASN1_UTCTIME_new();
1094                 X509_gmtime_adj(ci->nextUpdate,(crldays*24+crlhours)*60*60);
1095
1096                 for (i=0; i<sk_num(db->data); i++)
1097                         {
1098                         pp=(char **)sk_value(db->data,i);
1099                         if (pp[DB_type][0] == DB_TYPE_REV)
1100                                 {
1101                                 if ((r=X509_REVOKED_new()) == NULL) goto err;
1102                                 ASN1_STRING_set((ASN1_STRING *)
1103                                         r->revocationDate,
1104                                         (unsigned char *)pp[DB_rev_date],
1105                                         strlen(pp[DB_rev_date]));
1106                                 /* strcpy(r->revocationDate,pp[DB_rev_date]);*/
1107
1108                                 (void)BIO_reset(hex);
1109                                 if (!BIO_puts(hex,pp[DB_serial]))
1110                                         goto err;
1111                                 if (!a2i_ASN1_INTEGER(hex,r->serialNumber,
1112                                         buf[0],BSIZE)) goto err;
1113
1114                                 sk_X509_REVOKED_push(ci->revoked,r);
1115                                 }
1116                         }
1117                 /* sort the data so it will be written in serial
1118                  * number order */
1119                 sk_X509_REVOKED_sort(ci->revoked);
1120                 for (i=0; i<sk_X509_REVOKED_num(ci->revoked); i++)
1121                         {
1122                         r=sk_X509_REVOKED_value(ci->revoked,i);
1123                         r->sequence=i;
1124                         }
1125
1126                 /* we now have a CRL */
1127                 if (verbose) BIO_printf(bio_err,"signing CRL\n");
1128                 if (md != NULL)
1129                         {
1130                         if ((dgst=EVP_get_digestbyname(md)) == NULL)
1131                                 {
1132                                 BIO_printf(bio_err,"%s is an unsupported message digest type\n",md);
1133                                 goto err;
1134                                 }
1135                         }
1136                 else
1137                     {
1138 #ifndef NO_DSA
1139                     if (pkey->type == EVP_PKEY_DSA) 
1140                         dgst=EVP_dss1();
1141                     else
1142 #endif
1143                         dgst=EVP_md5();
1144                     }
1145
1146                 /* Add any extensions asked for */
1147
1148                 if(crl_ext) {
1149                     X509V3_CTX crlctx;
1150                     if (ci->version == NULL)
1151                     if ((ci->version=ASN1_INTEGER_new()) == NULL) goto err;
1152                     ASN1_INTEGER_set(ci->version,1); /* version 2 CRL */
1153                     X509V3_set_ctx(&crlctx, x509, NULL, NULL, crl, 0);
1154                     X509V3_set_conf_lhash(&crlctx, conf);
1155
1156                     if(!X509V3_EXT_CRL_add_conf(conf, &crlctx,
1157                                                  crl_ext, crl)) goto err;
1158                 }
1159
1160                 if (!X509_CRL_sign(crl,pkey,dgst)) goto err;
1161
1162                 PEM_write_bio_X509_CRL(Sout,crl);
1163                 }
1164         /*****************************************************************/
1165         if (dorevoke)
1166                 {
1167                 in=BIO_new(BIO_s_file());
1168                 out=BIO_new(BIO_s_file());
1169                 if ((in == NULL) || (out == NULL))
1170                         {
1171                         ERR_print_errors(bio_err);
1172                         goto err;
1173                         }
1174                 if (infile == NULL) 
1175                         {
1176                         BIO_printf(bio_err,"no input files\n");
1177                         goto err;
1178                         }
1179                 else
1180                         {
1181                         if (BIO_read_filename(in,infile) <= 0)
1182                                 {
1183                                 perror(infile);
1184                                 BIO_printf(bio_err,"error trying to load '%s' certificate\n",infile);
1185                                 goto err;
1186                                 }
1187                         x509=PEM_read_bio_X509(in,NULL,NULL,NULL);
1188                         if (x509 == NULL)
1189                                 {
1190                                 BIO_printf(bio_err,"unable to load '%s' certificate\n",infile);
1191                                 goto err;
1192                                 }
1193                         j=do_revoke(x509,db);
1194
1195                         strncpy(buf[0],dbfile,BSIZE-4);
1196                         strcat(buf[0],".new");
1197                         if (BIO_write_filename(out,buf[0]) <= 0)
1198                                 {
1199                                 perror(dbfile);
1200                                 BIO_printf(bio_err,"unable to open '%s'\n",dbfile);
1201                                 goto err;
1202                                 }
1203                         j=TXT_DB_write(out,db);
1204                         if (j <= 0) goto err;
1205                         BIO_free(in);
1206                         BIO_free(out);
1207                         in=NULL;
1208                         out=NULL;
1209                         strncpy(buf[1],dbfile,BSIZE-4);
1210                         strcat(buf[1],".old");
1211                         if (rename(dbfile,buf[1]) < 0)
1212                                 {
1213                                 BIO_printf(bio_err,"unable to rename %s to %s\n", dbfile, buf[1]);
1214                                 perror("reason");
1215                                 goto err;
1216                                 }
1217                         if (rename(buf[0],dbfile) < 0)
1218                                 {
1219                                 BIO_printf(bio_err,"unable to rename %s to %s\n", buf[0],dbfile);
1220                                 perror("reason");
1221                                 rename(buf[1],dbfile);
1222                                 goto err;
1223                                 }
1224                         BIO_printf(bio_err,"Data Base Updated\n"); 
1225                         }
1226                 }
1227         /*****************************************************************/
1228         ret=0;
1229 err:
1230         BIO_free(hex);
1231         BIO_free(Cout);
1232         BIO_free(Sout);
1233         BIO_free(out);
1234         BIO_free(in);
1235
1236         sk_pop_free(cert_sk,X509_free);
1237
1238         if (ret) ERR_print_errors(bio_err);
1239         BN_free(serial);
1240         TXT_DB_free(db);
1241         EVP_PKEY_free(pkey);
1242         X509_free(x509);
1243         X509_CRL_free(crl);
1244         CONF_free(conf);
1245         X509V3_EXT_cleanup();
1246         OBJ_cleanup();
1247         EXIT(ret);
1248         }
1249
1250 static void lookup_fail(char *name, char *tag)
1251         {
1252         BIO_printf(bio_err,"variable lookup failed for %s::%s\n",name,tag);
1253         }
1254
1255 static int MS_CALLBACK key_callback(char *buf, int len, int verify, void *u)
1256         {
1257         int i;
1258
1259         if (key == NULL) return(0);
1260         i=strlen(key);
1261         i=(i > len)?len:i;
1262         memcpy(buf,key,i);
1263         return(i);
1264         }
1265
1266 static unsigned long index_serial_hash(char **a)
1267         {
1268         char *n;
1269
1270         n=a[DB_serial];
1271         while (*n == '0') n++;
1272         return(lh_strhash(n));
1273         }
1274
1275 static int index_serial_cmp(char **a, char **b)
1276         {
1277         char *aa,*bb;
1278
1279         for (aa=a[DB_serial]; *aa == '0'; aa++);
1280         for (bb=b[DB_serial]; *bb == '0'; bb++);
1281         return(strcmp(aa,bb));
1282         }
1283
1284 static unsigned long index_name_hash(char **a)
1285         { return(lh_strhash(a[DB_name])); }
1286
1287 static int index_name_qual(char **a)
1288         { return(a[0][0] == 'V'); }
1289
1290 static int index_name_cmp(char **a, char **b)
1291         { return(strcmp(a[DB_name],
1292              b[DB_name])); }
1293
1294 static BIGNUM *load_serial(char *serialfile)
1295         {
1296         BIO *in=NULL;
1297         BIGNUM *ret=NULL;
1298         MS_STATIC char buf[1024];
1299         ASN1_INTEGER *ai=NULL;
1300
1301         if ((in=BIO_new(BIO_s_file())) == NULL)
1302                 {
1303                 ERR_print_errors(bio_err);
1304                 goto err;
1305                 }
1306
1307         if (BIO_read_filename(in,serialfile) <= 0)
1308                 {
1309                 perror(serialfile);
1310                 goto err;
1311                 }
1312         ai=ASN1_INTEGER_new();
1313         if (ai == NULL) goto err;
1314         if (!a2i_ASN1_INTEGER(in,ai,buf,1024))
1315                 {
1316                 BIO_printf(bio_err,"unable to load number from %s\n",
1317                         serialfile);
1318                 goto err;
1319                 }
1320         ret=ASN1_INTEGER_to_BN(ai,NULL);
1321         if (ret == NULL)
1322                 {
1323                 BIO_printf(bio_err,"error converting number from bin to BIGNUM");
1324                 goto err;
1325                 }
1326 err:
1327         if (in != NULL) BIO_free(in);
1328         if (ai != NULL) ASN1_INTEGER_free(ai);
1329         return(ret);
1330         }
1331
1332 static int save_serial(char *serialfile, BIGNUM *serial)
1333         {
1334         BIO *out;
1335         int ret=0;
1336         ASN1_INTEGER *ai=NULL;
1337
1338         out=BIO_new(BIO_s_file());
1339         if (out == NULL)
1340                 {
1341                 ERR_print_errors(bio_err);
1342                 goto err;
1343                 }
1344         if (BIO_write_filename(out,serialfile) <= 0)
1345                 {
1346                 perror(serialfile);
1347                 goto err;
1348                 }
1349
1350         if ((ai=BN_to_ASN1_INTEGER(serial,NULL)) == NULL)
1351                 {
1352                 BIO_printf(bio_err,"error converting serial to ASN.1 format\n");
1353                 goto err;
1354                 }
1355         i2a_ASN1_INTEGER(out,ai);
1356         BIO_puts(out,"\n");
1357         ret=1;
1358 err:
1359         if (out != NULL) BIO_free(out);
1360         if (ai != NULL) ASN1_INTEGER_free(ai);
1361         return(ret);
1362         }
1363
1364 static int certify(X509 **xret, char *infile, EVP_PKEY *pkey, X509 *x509,
1365              const EVP_MD *dgst, STACK_OF(CONF_VALUE) *policy, TXT_DB *db,
1366              BIGNUM *serial, char *startdate, char *enddate, int days,
1367              int batch, char *ext_sect, LHASH *lconf, int verbose)
1368         {
1369         X509_REQ *req=NULL;
1370         BIO *in=NULL;
1371         EVP_PKEY *pktmp=NULL;
1372         int ok= -1,i;
1373
1374         in=BIO_new(BIO_s_file());
1375
1376         if (BIO_read_filename(in,infile) <= 0)
1377                 {
1378                 perror(infile);
1379                 goto err;
1380                 }
1381         if ((req=PEM_read_bio_X509_REQ(in,NULL,NULL,NULL)) == NULL)
1382                 {
1383                 BIO_printf(bio_err,"Error reading certificate request in %s\n",
1384                         infile);
1385                 goto err;
1386                 }
1387         if (verbose)
1388                 X509_REQ_print(bio_err,req);
1389
1390         BIO_printf(bio_err,"Check that the request matches the signature\n");
1391
1392         if ((pktmp=X509_REQ_get_pubkey(req)) == NULL)
1393                 {
1394                 BIO_printf(bio_err,"error unpacking public key\n");
1395                 goto err;
1396                 }
1397         i=X509_REQ_verify(req,pktmp);
1398         EVP_PKEY_free(pktmp);
1399         if (i < 0)
1400                 {
1401                 ok=0;
1402                 BIO_printf(bio_err,"Signature verification problems....\n");
1403                 goto err;
1404                 }
1405         if (i == 0)
1406                 {
1407                 ok=0;
1408                 BIO_printf(bio_err,"Signature did not match the certificate request\n");
1409                 goto err;
1410                 }
1411         else
1412                 BIO_printf(bio_err,"Signature ok\n");
1413
1414         ok=do_body(xret,pkey,x509,dgst,policy,db,serial,startdate, enddate,
1415                 days,batch,verbose,req,ext_sect,lconf);
1416
1417 err:
1418         if (req != NULL) X509_REQ_free(req);
1419         if (in != NULL) BIO_free(in);
1420         return(ok);
1421         }
1422
1423 static int certify_cert(X509 **xret, char *infile, EVP_PKEY *pkey, X509 *x509,
1424              const EVP_MD *dgst, STACK_OF(CONF_VALUE) *policy, TXT_DB *db,
1425              BIGNUM *serial, char *startdate, char *enddate, int days,
1426              int batch, char *ext_sect, LHASH *lconf, int verbose)
1427         {
1428         X509 *req=NULL;
1429         X509_REQ *rreq=NULL;
1430         BIO *in=NULL;
1431         EVP_PKEY *pktmp=NULL;
1432         int ok= -1,i;
1433
1434         in=BIO_new(BIO_s_file());
1435
1436         if (BIO_read_filename(in,infile) <= 0)
1437                 {
1438                 perror(infile);
1439                 goto err;
1440                 }
1441         if ((req=PEM_read_bio_X509(in,NULL,NULL,NULL)) == NULL)
1442                 {
1443                 BIO_printf(bio_err,"Error reading self signed certificate in %s\n",infile);
1444                 goto err;
1445                 }
1446         if (verbose)
1447                 X509_print(bio_err,req);
1448
1449         BIO_printf(bio_err,"Check that the request matches the signature\n");
1450
1451         if ((pktmp=X509_get_pubkey(req)) == NULL)
1452                 {
1453                 BIO_printf(bio_err,"error unpacking public key\n");
1454                 goto err;
1455                 }
1456         i=X509_verify(req,pktmp);
1457         EVP_PKEY_free(pktmp);
1458         if (i < 0)
1459                 {
1460                 ok=0;
1461                 BIO_printf(bio_err,"Signature verification problems....\n");
1462                 goto err;
1463                 }
1464         if (i == 0)
1465                 {
1466                 ok=0;
1467                 BIO_printf(bio_err,"Signature did not match the certificate\n");
1468                 goto err;
1469                 }
1470         else
1471                 BIO_printf(bio_err,"Signature ok\n");
1472
1473         if ((rreq=X509_to_X509_REQ(req,NULL,EVP_md5())) == NULL)
1474                 goto err;
1475
1476         ok=do_body(xret,pkey,x509,dgst,policy,db,serial,startdate,enddate,days,
1477                 batch,verbose,rreq,ext_sect,lconf);
1478
1479 err:
1480         if (rreq != NULL) X509_REQ_free(rreq);
1481         if (req != NULL) X509_free(req);
1482         if (in != NULL) BIO_free(in);
1483         return(ok);
1484         }
1485
1486 static int do_body(X509 **xret, EVP_PKEY *pkey, X509 *x509, const EVP_MD *dgst,
1487              STACK_OF(CONF_VALUE) *policy, TXT_DB *db, BIGNUM *serial,
1488              char *startdate, char *enddate, int days, int batch, int verbose,
1489              X509_REQ *req, char *ext_sect, LHASH *lconf)
1490         {
1491         X509_NAME *name=NULL,*CAname=NULL,*subject=NULL;
1492         ASN1_UTCTIME *tm,*tmptm;
1493         ASN1_STRING *str,*str2;
1494         ASN1_OBJECT *obj;
1495         X509 *ret=NULL;
1496         X509_CINF *ci;
1497         X509_NAME_ENTRY *ne;
1498         X509_NAME_ENTRY *tne,*push;
1499         EVP_PKEY *pktmp;
1500         int ok= -1,i,j,last,nid;
1501         char *p;
1502         CONF_VALUE *cv;
1503         char *row[DB_NUMBER],**rrow,**irow=NULL;
1504         char buf[25],*pbuf;
1505
1506         tmptm=ASN1_UTCTIME_new();
1507         if (tmptm == NULL)
1508                 {
1509                 BIO_printf(bio_err,"malloc error\n");
1510                 return(0);
1511                 }
1512
1513         for (i=0; i<DB_NUMBER; i++)
1514                 row[i]=NULL;
1515
1516         BIO_printf(bio_err,"The Subjects Distinguished Name is as follows\n");
1517         name=X509_REQ_get_subject_name(req);
1518         for (i=0; i<X509_NAME_entry_count(name); i++)
1519                 {
1520                 ne=(X509_NAME_ENTRY *)X509_NAME_get_entry(name,i);
1521                 obj=X509_NAME_ENTRY_get_object(ne);
1522                 j=i2a_ASN1_OBJECT(bio_err,obj);
1523                 str=X509_NAME_ENTRY_get_data(ne);
1524                 pbuf=buf;
1525                 for (j=22-j; j>0; j--)
1526                         *(pbuf++)=' ';
1527                 *(pbuf++)=':';
1528                 *(pbuf++)='\0';
1529                 BIO_puts(bio_err,buf);
1530
1531                 if (msie_hack)
1532                         {
1533                         /* assume all type should be strings */
1534                         nid=OBJ_obj2nid(ne->object);
1535
1536                         if (str->type == V_ASN1_UNIVERSALSTRING)
1537                                 ASN1_UNIVERSALSTRING_to_string(str);
1538
1539                         if ((str->type == V_ASN1_IA5STRING) &&
1540                                 (nid != NID_pkcs9_emailAddress))
1541                                 str->type=V_ASN1_T61STRING;
1542
1543                         if ((nid == NID_pkcs9_emailAddress) &&
1544                                 (str->type == V_ASN1_PRINTABLESTRING))
1545                                 str->type=V_ASN1_IA5STRING;
1546                         }
1547
1548                 if (str->type == V_ASN1_PRINTABLESTRING)
1549                         BIO_printf(bio_err,"PRINTABLE:'");
1550                 else if (str->type == V_ASN1_T61STRING)
1551                         BIO_printf(bio_err,"T61STRING:'");
1552                 else if (str->type == V_ASN1_IA5STRING)
1553                         BIO_printf(bio_err,"IA5STRING:'");
1554                 else if (str->type == V_ASN1_UNIVERSALSTRING)
1555                         BIO_printf(bio_err,"UNIVERSALSTRING:'");
1556                 else
1557                         BIO_printf(bio_err,"ASN.1 %2d:'",str->type);
1558
1559                 /* check some things */
1560                 if ((OBJ_obj2nid(obj) == NID_pkcs9_emailAddress) &&
1561                         (str->type != V_ASN1_IA5STRING))
1562                         {
1563                         BIO_printf(bio_err,"\nemailAddress type needs to be of type IA5STRING\n");
1564                         goto err;
1565                         }
1566                 j=ASN1_PRINTABLE_type(str->data,str->length);
1567                 if (    ((j == V_ASN1_T61STRING) &&
1568                          (str->type != V_ASN1_T61STRING)) ||
1569                         ((j == V_ASN1_IA5STRING) &&
1570                          (str->type == V_ASN1_PRINTABLESTRING)))
1571                         {
1572                         BIO_printf(bio_err,"\nThe string contains characters that are illegal for the ASN.1 type\n");
1573                         goto err;
1574                         }
1575                         
1576                 p=(char *)str->data;
1577                 for (j=str->length; j>0; j--)
1578                         {
1579                         if ((*p >= ' ') && (*p <= '~'))
1580                                 BIO_printf(bio_err,"%c",*p);
1581                         else if (*p & 0x80)
1582                                 BIO_printf(bio_err,"\\0x%02X",*p);
1583                         else if ((unsigned char)*p == 0xf7)
1584                                 BIO_printf(bio_err,"^?");
1585                         else    BIO_printf(bio_err,"^%c",*p+'@');
1586                         p++;
1587                         }
1588                 BIO_printf(bio_err,"'\n");
1589                 }
1590
1591         /* Ok, now we check the 'policy' stuff. */
1592         if ((subject=X509_NAME_new()) == NULL)
1593                 {
1594                 BIO_printf(bio_err,"Malloc failure\n");
1595                 goto err;
1596                 }
1597
1598         /* take a copy of the issuer name before we mess with it. */
1599         CAname=X509_NAME_dup(x509->cert_info->subject);
1600         if (CAname == NULL) goto err;
1601         str=str2=NULL;
1602
1603         for (i=0; i<sk_CONF_VALUE_num(policy); i++)
1604                 {
1605                 cv=sk_CONF_VALUE_value(policy,i); /* get the object id */
1606                 if ((j=OBJ_txt2nid(cv->name)) == NID_undef)
1607                         {
1608                         BIO_printf(bio_err,"%s:unknown object type in 'policy' configuration\n",cv->name);
1609                         goto err;
1610                         }
1611                 obj=OBJ_nid2obj(j);
1612
1613                 last= -1;
1614                 for (;;)
1615                         {
1616                         /* lookup the object in the supplied name list */
1617                         j=X509_NAME_get_index_by_OBJ(name,obj,last);
1618                         if (j < 0)
1619                                 {
1620                                 if (last != -1) break;
1621                                 tne=NULL;
1622                                 }
1623                         else
1624                                 {
1625                                 tne=X509_NAME_get_entry(name,j);
1626                                 }
1627                         last=j;
1628
1629                         /* depending on the 'policy', decide what to do. */
1630                         push=NULL;
1631                         if (strcmp(cv->value,"optional") == 0)
1632                                 {
1633                                 if (tne != NULL)
1634                                         push=tne;
1635                                 }
1636                         else if (strcmp(cv->value,"supplied") == 0)
1637                                 {
1638                                 if (tne == NULL)
1639                                         {
1640                                         BIO_printf(bio_err,"The %s field needed to be supplied and was missing\n",cv->name);
1641                                         goto err;
1642                                         }
1643                                 else
1644                                         push=tne;
1645                                 }
1646                         else if (strcmp(cv->value,"match") == 0)
1647                                 {
1648                                 int last2;
1649
1650                                 if (tne == NULL)
1651                                         {
1652                                         BIO_printf(bio_err,"The mandatory %s field was missing\n",cv->name);
1653                                         goto err;
1654                                         }
1655
1656                                 last2= -1;
1657
1658 again2:
1659                                 j=X509_NAME_get_index_by_OBJ(CAname,obj,last2);
1660                                 if ((j < 0) && (last2 == -1))
1661                                         {
1662                                         BIO_printf(bio_err,"The %s field does not exist in the CA certificate,\nthe 'policy' is misconfigured\n",cv->name);
1663                                         goto err;
1664                                         }
1665                                 if (j >= 0)
1666                                         {
1667                                         push=X509_NAME_get_entry(CAname,j);
1668                                         str=X509_NAME_ENTRY_get_data(tne);
1669                                         str2=X509_NAME_ENTRY_get_data(push);
1670                                         last2=j;
1671                                         if (ASN1_STRING_cmp(str,str2) != 0)
1672                                                 goto again2;
1673                                         }
1674                                 if (j < 0)
1675                                         {
1676                                         BIO_printf(bio_err,"The %s field needed to be the same in the\nCA certificate (%s) and the request (%s)\n",cv->name,((str == NULL)?"NULL":(char *)str->data),((str2 == NULL)?"NULL":(char *)str2->data));
1677                                         goto err;
1678                                         }
1679                                 }
1680                         else
1681                                 {
1682                                 BIO_printf(bio_err,"%s:invalid type in 'policy' configuration\n",cv->value);
1683                                 goto err;
1684                                 }
1685
1686                         if (push != NULL)
1687                                 {
1688                                 if (!X509_NAME_add_entry(subject,push,
1689                                         X509_NAME_entry_count(subject),0))
1690                                         {
1691                                         if (push != NULL)
1692                                                 X509_NAME_ENTRY_free(push);
1693                                         BIO_printf(bio_err,"Malloc failure\n");
1694                                         goto err;
1695                                         }
1696                                 }
1697                         if (j < 0) break;
1698                         }
1699                 }
1700
1701         if (preserve)
1702                 {
1703                 X509_NAME_free(subject);
1704                 subject=X509_NAME_dup(X509_REQ_get_subject_name(req));
1705                 if (subject == NULL) goto err;
1706                 }
1707
1708         if (verbose)
1709                 BIO_printf(bio_err,"The subject name apears to be ok, checking data base for clashes\n");
1710
1711         row[DB_name]=X509_NAME_oneline(subject,NULL,0);
1712         row[DB_serial]=BN_bn2hex(serial);
1713         if ((row[DB_name] == NULL) || (row[DB_serial] == NULL))
1714                 {
1715                 BIO_printf(bio_err,"Malloc failure\n");
1716                 goto err;
1717                 }
1718
1719         rrow=TXT_DB_get_by_index(db,DB_name,row);
1720         if (rrow != NULL)
1721                 {
1722                 BIO_printf(bio_err,"ERROR:There is already a certificate for %s\n",
1723                         row[DB_name]);
1724                 }
1725         else
1726                 {
1727                 rrow=TXT_DB_get_by_index(db,DB_serial,row);
1728                 if (rrow != NULL)
1729                         {
1730                         BIO_printf(bio_err,"ERROR:Serial number %s has already been issued,\n",
1731                                 row[DB_serial]);
1732                         BIO_printf(bio_err,"      check the database/serial_file for corruption\n");
1733                         }
1734                 }
1735
1736         if (rrow != NULL)
1737                 {
1738                 BIO_printf(bio_err,
1739                         "The matching entry has the following details\n");
1740                 if (rrow[DB_type][0] == 'E')
1741                         p="Expired";
1742                 else if (rrow[DB_type][0] == 'R')
1743                         p="Revoked";
1744                 else if (rrow[DB_type][0] == 'V')
1745                         p="Valid";
1746                 else
1747                         p="\ninvalid type, Data base error\n";
1748                 BIO_printf(bio_err,"Type          :%s\n",p);;
1749                 if (rrow[DB_type][0] == 'R')
1750                         {
1751                         p=rrow[DB_exp_date]; if (p == NULL) p="undef";
1752                         BIO_printf(bio_err,"Was revoked on:%s\n",p);
1753                         }
1754                 p=rrow[DB_exp_date]; if (p == NULL) p="undef";
1755                 BIO_printf(bio_err,"Expires on    :%s\n",p);
1756                 p=rrow[DB_serial]; if (p == NULL) p="undef";
1757                 BIO_printf(bio_err,"Serial Number :%s\n",p);
1758                 p=rrow[DB_file]; if (p == NULL) p="undef";
1759                 BIO_printf(bio_err,"File name     :%s\n",p);
1760                 p=rrow[DB_name]; if (p == NULL) p="undef";
1761                 BIO_printf(bio_err,"Subject Name  :%s\n",p);
1762                 ok= -1; /* This is now a 'bad' error. */
1763                 goto err;
1764                 }
1765
1766         /* We are now totaly happy, lets make and sign the certificate */
1767         if (verbose)
1768                 BIO_printf(bio_err,"Everything appears to be ok, creating and signing the certificate\n");
1769
1770         if ((ret=X509_new()) == NULL) goto err;
1771         ci=ret->cert_info;
1772
1773 #ifdef X509_V3
1774         /* Make it an X509 v3 certificate. */
1775         if (!X509_set_version(x509,2)) goto err;
1776 #endif
1777
1778         if (BN_to_ASN1_INTEGER(serial,ci->serialNumber) == NULL)
1779                 goto err;
1780         if (!X509_set_issuer_name(ret,X509_get_subject_name(x509)))
1781                 goto err;
1782
1783         BIO_printf(bio_err,"Certificate is to be certified until ");
1784         if (strcmp(startdate,"today") == 0)
1785                 X509_gmtime_adj(X509_get_notBefore(ret),0);
1786         else ASN1_UTCTIME_set_string(X509_get_notBefore(ret),startdate);
1787
1788         if (enddate == NULL)
1789                 X509_gmtime_adj(X509_get_notAfter(ret),(long)60*60*24*days);
1790         else ASN1_UTCTIME_set_string(X509_get_notAfter(ret),enddate);
1791
1792         ASN1_UTCTIME_print(bio_err,X509_get_notAfter(ret));
1793         if(days) BIO_printf(bio_err," (%d days)",days);
1794         BIO_printf(bio_err, "\n");
1795
1796         if (!X509_set_subject_name(ret,subject)) goto err;
1797
1798         pktmp=X509_REQ_get_pubkey(req);
1799         i = X509_set_pubkey(ret,pktmp);
1800         EVP_PKEY_free(pktmp);
1801         if (!i) goto err;
1802
1803         /* Lets add the extensions, if there are any */
1804         if (ext_sect)
1805                 {
1806                 X509V3_CTX ctx;
1807                 if (ci->version == NULL)
1808                         if ((ci->version=ASN1_INTEGER_new()) == NULL)
1809                                 goto err;
1810                 ASN1_INTEGER_set(ci->version,2); /* version 3 certificate */
1811
1812                 /* Free the current entries if any, there should not
1813                  * be any I belive */
1814                 if (ci->extensions != NULL)
1815                         sk_X509_EXTENSION_pop_free(ci->extensions,
1816                                                    X509_EXTENSION_free);
1817
1818                 ci->extensions = NULL;
1819
1820                 X509V3_set_ctx(&ctx, x509, ret, req, NULL, 0);
1821                 X509V3_set_conf_lhash(&ctx, lconf);
1822
1823                 if(!X509V3_EXT_add_conf(lconf, &ctx, ext_sect, ret)) goto err;
1824
1825                 }
1826
1827
1828         if (!batch)
1829                 {
1830                 BIO_printf(bio_err,"Sign the certificate? [y/n]:");
1831                 (void)BIO_flush(bio_err);
1832                 buf[0]='\0';
1833                 fgets(buf,sizeof(buf)-1,stdin);
1834                 if (!((buf[0] == 'y') || (buf[0] == 'Y')))
1835                         {
1836                         BIO_printf(bio_err,"CERTIFICATE WILL NOT BE CERTIFIED\n");
1837                         ok=0;
1838                         goto err;
1839                         }
1840                 }
1841
1842
1843 #ifndef NO_DSA
1844         if (pkey->type == EVP_PKEY_DSA) dgst=EVP_dss1();
1845         pktmp=X509_get_pubkey(ret);
1846         if (EVP_PKEY_missing_parameters(pktmp) &&
1847                 !EVP_PKEY_missing_parameters(pkey))
1848                 EVP_PKEY_copy_parameters(pktmp,pkey);
1849         EVP_PKEY_free(pktmp);
1850 #endif
1851
1852         if (!X509_sign(ret,pkey,dgst))
1853                 goto err;
1854
1855         /* We now just add it to the database */
1856         row[DB_type]=(char *)Malloc(2);
1857
1858         tm=X509_get_notAfter(ret);
1859         row[DB_exp_date]=(char *)Malloc(tm->length+1);
1860         memcpy(row[DB_exp_date],tm->data,tm->length);
1861         row[DB_exp_date][tm->length]='\0';
1862
1863         row[DB_rev_date]=NULL;
1864
1865         /* row[DB_serial] done already */
1866         row[DB_file]=(char *)Malloc(8);
1867         /* row[DB_name] done already */
1868
1869         if ((row[DB_type] == NULL) || (row[DB_exp_date] == NULL) ||
1870                 (row[DB_file] == NULL))
1871                 {
1872                 BIO_printf(bio_err,"Malloc failure\n");
1873                 goto err;
1874                 }
1875         strcpy(row[DB_file],"unknown");
1876         row[DB_type][0]='V';
1877         row[DB_type][1]='\0';
1878
1879         if ((irow=(char **)Malloc(sizeof(char *)*(DB_NUMBER+1))) == NULL)
1880                 {
1881                 BIO_printf(bio_err,"Malloc failure\n");
1882                 goto err;
1883                 }
1884
1885         for (i=0; i<DB_NUMBER; i++)
1886                 {
1887                 irow[i]=row[i];
1888                 row[i]=NULL;
1889                 }
1890         irow[DB_NUMBER]=NULL;
1891
1892         if (!TXT_DB_insert(db,irow))
1893                 {
1894                 BIO_printf(bio_err,"failed to update database\n");
1895                 BIO_printf(bio_err,"TXT_DB error number %ld\n",db->error);
1896                 goto err;
1897                 }
1898         ok=1;
1899 err:
1900         for (i=0; i<DB_NUMBER; i++)
1901                 if (row[i] != NULL) Free(row[i]);
1902
1903         if (CAname != NULL)
1904                 X509_NAME_free(CAname);
1905         if (subject != NULL)
1906                 X509_NAME_free(subject);
1907         if (tmptm != NULL)
1908                 ASN1_UTCTIME_free(tmptm);
1909         if (ok <= 0)
1910                 {
1911                 if (ret != NULL) X509_free(ret);
1912                 ret=NULL;
1913                 }
1914         else
1915                 *xret=ret;
1916         return(ok);
1917         }
1918
1919 static void write_new_certificate(BIO *bp, X509 *x, int output_der)
1920         {
1921         char *f;
1922         char buf[256];
1923
1924         if (output_der)
1925                 {
1926                 (void)i2d_X509_bio(bp,x);
1927                 return;
1928                 }
1929
1930         f=X509_NAME_oneline(X509_get_issuer_name(x),buf,256);
1931         BIO_printf(bp,"issuer :%s\n",f);
1932
1933         f=X509_NAME_oneline(X509_get_subject_name(x),buf,256);
1934         BIO_printf(bp,"subject:%s\n",f);
1935
1936         BIO_puts(bp,"serial :");
1937         i2a_ASN1_INTEGER(bp,x->cert_info->serialNumber);
1938         BIO_puts(bp,"\n\n");
1939         X509_print(bp,x);
1940         BIO_puts(bp,"\n");
1941         PEM_write_bio_X509(bp,x);
1942         BIO_puts(bp,"\n");
1943         }
1944
1945 static int certify_spkac(X509 **xret, char *infile, EVP_PKEY *pkey, X509 *x509,
1946              const EVP_MD *dgst, STACK_OF(CONF_VALUE) *policy, TXT_DB *db,
1947              BIGNUM *serial, char *startdate, char *enddate, int days,
1948              char *ext_sect, LHASH *lconf, int verbose)
1949         {
1950         STACK_OF(CONF_VALUE) *sk=NULL;
1951         LHASH *parms=NULL;
1952         X509_REQ *req=NULL;
1953         CONF_VALUE *cv=NULL;
1954         NETSCAPE_SPKI *spki = NULL;
1955         X509_REQ_INFO *ri;
1956         char *type,*buf;
1957         EVP_PKEY *pktmp=NULL;
1958         X509_NAME *n=NULL;
1959         X509_NAME_ENTRY *ne=NULL;
1960         int ok= -1,i,j;
1961         long errline;
1962         int nid;
1963
1964         /*
1965          * Load input file into a hash table.  (This is just an easy
1966          * way to read and parse the file, then put it into a convenient
1967          * STACK format).
1968          */
1969         parms=CONF_load(NULL,infile,&errline);
1970         if (parms == NULL)
1971                 {
1972                 BIO_printf(bio_err,"error on line %ld of %s\n",errline,infile);
1973                 ERR_print_errors(bio_err);
1974                 goto err;
1975                 }
1976
1977         sk=CONF_get_section(parms, "default");
1978         if (sk_CONF_VALUE_num(sk) == 0)
1979                 {
1980                 BIO_printf(bio_err, "no name/value pairs found in %s\n", infile);
1981                 CONF_free(parms);
1982                 goto err;
1983                 }
1984
1985         /*
1986          * Now create a dummy X509 request structure.  We don't actually
1987          * have an X509 request, but we have many of the components
1988          * (a public key, various DN components).  The idea is that we
1989          * put these components into the right X509 request structure
1990          * and we can use the same code as if you had a real X509 request.
1991          */
1992         req=X509_REQ_new();
1993         if (req == NULL)
1994                 {
1995                 ERR_print_errors(bio_err);
1996                 goto err;
1997                 }
1998
1999         /*
2000          * Build up the subject name set.
2001          */
2002         ri=req->req_info;
2003         n = ri->subject;
2004
2005         for (i = 0; ; i++)
2006                 {
2007                 if (sk_CONF_VALUE_num(sk) <= i) break;
2008
2009                 cv=sk_CONF_VALUE_value(sk,i);
2010                 type=cv->name;
2011                 /* Skip past any leading X. X: X, etc to allow for
2012                  * multiple instances
2013                  */
2014                 for(buf = cv->name; *buf ; buf++)
2015                         if ((*buf == ':') || (*buf == ',') || (*buf == '.')) {
2016                                         buf++;
2017                                         if(*buf) type = buf;
2018                                         break;
2019                 }
2020
2021                 buf=cv->value;
2022                 if ((nid=OBJ_txt2nid(type)) == NID_undef)
2023                         {
2024                         if (strcmp(type, "SPKAC") == 0)
2025                                 {
2026                                 spki = NETSCAPE_SPKI_b64_decode(cv->value, -1);
2027                                 if (spki == NULL)
2028                                         {
2029                                         BIO_printf(bio_err,"unable to load Netscape SPKAC structure\n");
2030                                         ERR_print_errors(bio_err);
2031                                         goto err;
2032                                         }
2033                                 }
2034                         continue;
2035                         }
2036
2037                 j=ASN1_PRINTABLE_type((unsigned char *)buf,-1);
2038                 if (fix_data(nid, &j) == 0)
2039                         {
2040                         BIO_printf(bio_err,
2041                                 "invalid characters in string %s\n",buf);
2042                         goto err;
2043                         }
2044
2045                 if ((ne=X509_NAME_ENTRY_create_by_NID(&ne,nid,j,
2046                         (unsigned char *)buf,
2047                         strlen(buf))) == NULL)
2048                         goto err;
2049
2050                 if (!X509_NAME_add_entry(n,ne,X509_NAME_entry_count(n),0))
2051                         goto err;
2052                 }
2053         if (spki == NULL)
2054                 {
2055                 BIO_printf(bio_err,"Netscape SPKAC structure not found in %s\n",
2056                         infile);
2057                 goto err;
2058                 }
2059
2060         /*
2061          * Now extract the key from the SPKI structure.
2062          */
2063
2064         BIO_printf(bio_err,"Check that the SPKAC request matches the signature\n");
2065
2066         if ((pktmp=NETSCAPE_SPKI_get_pubkey(spki)) == NULL)
2067                 {
2068                 BIO_printf(bio_err,"error unpacking SPKAC public key\n");
2069                 goto err;
2070                 }
2071
2072         j = NETSCAPE_SPKI_verify(spki, pktmp);
2073         if (j <= 0)
2074                 {
2075                 BIO_printf(bio_err,"signature verification failed on SPKAC public key\n");
2076                 goto err;
2077                 }
2078         BIO_printf(bio_err,"Signature ok\n");
2079
2080         X509_REQ_set_pubkey(req,pktmp);
2081         EVP_PKEY_free(pktmp);
2082         ok=do_body(xret,pkey,x509,dgst,policy,db,serial,startdate,enddate,
2083                    days,1,verbose,req,ext_sect,lconf);
2084 err:
2085         if (req != NULL) X509_REQ_free(req);
2086         if (parms != NULL) CONF_free(parms);
2087         if (spki != NULL) NETSCAPE_SPKI_free(spki);
2088         if (ne != NULL) X509_NAME_ENTRY_free(ne);
2089
2090         return(ok);
2091         }
2092
2093 static int fix_data(int nid, int *type)
2094         {
2095         if (nid == NID_pkcs9_emailAddress)
2096                 *type=V_ASN1_IA5STRING;
2097         if ((nid == NID_commonName) && (*type == V_ASN1_IA5STRING))
2098                 *type=V_ASN1_T61STRING;
2099         if ((nid == NID_pkcs9_challengePassword) && (*type == V_ASN1_IA5STRING))
2100                 *type=V_ASN1_T61STRING;
2101         if ((nid == NID_pkcs9_unstructuredName) && (*type == V_ASN1_T61STRING))
2102                 return(0);
2103         if (nid == NID_pkcs9_unstructuredName)
2104                 *type=V_ASN1_IA5STRING;
2105         return(1);
2106         }
2107
2108 static int check_time_format(char *str)
2109         {
2110         ASN1_UTCTIME tm;
2111
2112         tm.data=(unsigned char *)str;
2113         tm.length=strlen(str);
2114         tm.type=V_ASN1_UTCTIME;
2115         return(ASN1_UTCTIME_check(&tm));
2116         }
2117
2118 static int add_oid_section(LHASH *hconf)
2119 {       
2120         char *p;
2121         STACK_OF(CONF_VALUE) *sktmp;
2122         CONF_VALUE *cnf;
2123         int i;
2124         if(!(p=CONF_get_string(hconf,NULL,"oid_section"))) return 1;
2125         if(!(sktmp = CONF_get_section(hconf, p))) {
2126                 BIO_printf(bio_err, "problem loading oid section %s\n", p);
2127                 return 0;
2128         }
2129         for(i = 0; i < sk_CONF_VALUE_num(sktmp); i++) {
2130                 cnf = sk_CONF_VALUE_value(sktmp, i);
2131                 if(OBJ_create(cnf->value, cnf->name, cnf->name) == NID_undef) {
2132                         BIO_printf(bio_err, "problem creating object %s=%s\n",
2133                                                          cnf->name, cnf->value);
2134                         return 0;
2135                 }
2136         }
2137         return 1;
2138 }
2139
2140 static int do_revoke(X509 *x509, TXT_DB *db)
2141 {
2142         ASN1_UTCTIME *tm=NULL;
2143         char *row[DB_NUMBER],**rrow,**irow;
2144         int ok=-1,i;
2145
2146         for (i=0; i<DB_NUMBER; i++)
2147                 row[i]=NULL;
2148         row[DB_name]=X509_NAME_oneline(x509->cert_info->subject,NULL,0);
2149         row[DB_serial]=BN_bn2hex(ASN1_INTEGER_to_BN(x509->cert_info->serialNumber,NULL));
2150         if ((row[DB_name] == NULL) || (row[DB_serial] == NULL))
2151                 {
2152                 BIO_printf(bio_err,"Malloc failure\n");
2153                 goto err;
2154                 }
2155         rrow=TXT_DB_get_by_index(db,DB_name,row);
2156         if (rrow == NULL)
2157                 {
2158                 BIO_printf(bio_err,"Adding Entry to DB for %s\n", row[DB_name]);
2159
2160                 /* We now just add it to the database */
2161                 row[DB_type]=(char *)Malloc(2);
2162
2163                 tm=X509_get_notAfter(x509);
2164                 row[DB_exp_date]=(char *)Malloc(tm->length+1);
2165                 memcpy(row[DB_exp_date],tm->data,tm->length);
2166                 row[DB_exp_date][tm->length]='\0';
2167
2168                 row[DB_rev_date]=NULL;
2169
2170                 /* row[DB_serial] done already */
2171                 row[DB_file]=(char *)Malloc(8);
2172
2173                 /* row[DB_name] done already */
2174
2175                 if ((row[DB_type] == NULL) || (row[DB_exp_date] == NULL) ||
2176                         (row[DB_file] == NULL))
2177                         {
2178                         BIO_printf(bio_err,"Malloc failure\n");
2179                         goto err;
2180                         }
2181                 strcpy(row[DB_file],"unknown");
2182                 row[DB_type][0]='V';
2183                 row[DB_type][1]='\0';
2184
2185                 if ((irow=(char **)Malloc(sizeof(char *)*(DB_NUMBER+1))) == NULL)
2186                         {
2187                         BIO_printf(bio_err,"Malloc failure\n");
2188                         goto err;
2189                         }
2190
2191                 for (i=0; i<DB_NUMBER; i++)
2192                         {
2193                         irow[i]=row[i];
2194                         row[i]=NULL;
2195                         }
2196                 irow[DB_NUMBER]=NULL;
2197
2198                 if (!TXT_DB_insert(db,irow))
2199                         {
2200                         BIO_printf(bio_err,"failed to update database\n");
2201                         BIO_printf(bio_err,"TXT_DB error number %ld\n",db->error);
2202                         goto err;
2203                         }
2204
2205                 /* Revoke Certificate */
2206                 do_revoke(x509,db);
2207
2208                 ok=1;
2209                 goto err;
2210
2211                 }
2212         else if (index_serial_cmp(row,rrow))
2213                 {
2214                 BIO_printf(bio_err,"ERROR:no same serial number %s\n",
2215                            row[DB_serial]);
2216                 goto err;
2217                 }
2218         else if (rrow[DB_type][0]=='R')
2219                 {
2220                 BIO_printf(bio_err,"ERROR:Already revoked, serial number %s\n",
2221                            row[DB_serial]);
2222                 goto err;
2223                 }
2224         else
2225                 {
2226                 BIO_printf(bio_err,"Revoking Certificate %s.\n", rrow[DB_serial]);
2227                 tm=X509_gmtime_adj(tm,0);
2228                 rrow[DB_type][0]='R';
2229                 rrow[DB_type][1]='\0';
2230                 rrow[DB_rev_date]=(char *)Malloc(tm->length+1);
2231                 memcpy(rrow[DB_rev_date],tm->data,tm->length);
2232                 rrow[DB_rev_date][tm->length]='\0';
2233                 }
2234         ok=1;
2235 err:
2236         for (i=0; i<DB_NUMBER; i++)
2237                 {
2238                 if (row[i] != NULL) 
2239                         Free(row[i]);
2240                 }
2241         ASN1_UTCTIME_free(tm);
2242         return(ok);
2243 }
2244