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