Don't crash on a missing Subject in index.txt
[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 <ctype.h>
65 #include <sys/types.h>
66 #include <openssl/conf.h>
67 #include <openssl/bio.h>
68 #include <openssl/err.h>
69 #include <openssl/bn.h>
70 #include <openssl/txt_db.h>
71 #include <openssl/evp.h>
72 #include <openssl/x509.h>
73 #include <openssl/x509v3.h>
74 #include <openssl/objects.h>
75 #include <openssl/ocsp.h>
76 #include <openssl/pem.h>
77
78 #ifndef W_OK
79 # ifdef OPENSSL_SYS_VMS
80 #  if defined(__DECC)
81 #   include <unistd.h>
82 #  else
83 #   include <unixlib.h>
84 #  endif
85 # elif !defined(OPENSSL_SYS_VXWORKS) && !defined(OPENSSL_SYS_WINDOWS) && !defined(OPENSSL_SYS_NETWARE)
86 #  include <sys/file.h>
87 # endif
88 #endif
89
90 #include "apps.h"
91
92 #ifndef W_OK
93 # define F_OK 0
94 # define X_OK 1
95 # define W_OK 2
96 # define R_OK 4
97 #endif
98
99 #undef PROG
100 #define PROG ca_main
101
102 #define BASE_SECTION            "ca"
103 #define CONFIG_FILE             "openssl.cnf"
104
105 #define ENV_DEFAULT_CA          "default_ca"
106
107 #define STRING_MASK             "string_mask"
108 #define UTF8_IN                 "utf8"
109
110 #define ENV_NEW_CERTS_DIR       "new_certs_dir"
111 #define ENV_CERTIFICATE         "certificate"
112 #define ENV_SERIAL              "serial"
113 #define ENV_CRLNUMBER           "crlnumber"
114 #define ENV_PRIVATE_KEY         "private_key"
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_DEFAULT_EMAIL_DN    "email_in_dn"
122 #define ENV_PRESERVE            "preserve"
123 #define ENV_POLICY              "policy"
124 #define ENV_EXTENSIONS          "x509_extensions"
125 #define ENV_CRLEXT              "crl_extensions"
126 #define ENV_MSIE_HACK           "msie_hack"
127 #define ENV_NAMEOPT             "name_opt"
128 #define ENV_CERTOPT             "cert_opt"
129 #define ENV_EXTCOPY             "copy_extensions"
130 #define ENV_UNIQUE_SUBJECT      "unique_subject"
131
132 #define ENV_DATABASE            "database"
133
134 /* Additional revocation information types */
135
136 #define REV_NONE                0 /* No addditional information */
137 #define REV_CRL_REASON          1 /* Value is CRL reason code */
138 #define REV_HOLD                2 /* Value is hold instruction */
139 #define REV_KEY_COMPROMISE      3 /* Value is cert key compromise time */
140 #define REV_CA_COMPROMISE       4 /* Value is CA key compromise time */
141
142 static const char *ca_usage[] = {
143     "usage: ca args\n",
144     "\n",
145     " -verbose        - Talk alot while doing things\n",
146     " -config file    - A config file\n",
147     " -name arg       - The particular CA definition to use\n",
148     " -gencrl         - Generate a new CRL\n",
149     " -crldays days   - Days is when the next CRL is due\n",
150     " -crlhours hours - Hours is when the next CRL is due\n",
151     " -startdate YYMMDDHHMMSSZ  - certificate validity notBefore\n",
152     " -enddate YYMMDDHHMMSSZ    - certificate validity notAfter (overrides -days)\n",
153     " -days arg       - number of days to certify the certificate for\n",
154     " -md arg         - md to use, one of md2, md5, sha or sha1\n",
155     " -policy arg     - The CA 'policy' to support\n",
156     " -keyfile arg    - private key file\n",
157     " -keyform arg    - private key file format (PEM or ENGINE)\n",
158     " -key arg        - key to decode the private key if it is encrypted\n",
159     " -cert file      - The CA certificate\n",
160     " -selfsign       - sign a certificate with the key associated with it\n",
161     " -in file        - The input PEM encoded certificate request(s)\n",
162     " -out file       - Where to put the output file(s)\n",
163     " -outdir dir     - Where to put output certificates\n",
164     " -infiles ....   - The last argument, requests to process\n",
165     " -spkac file     - File contains DN and signed public key and challenge\n",
166     " -ss_cert file   - File contains a self signed cert to sign\n",
167     " -preserveDN     - Don't re-order the DN\n",
168     " -noemailDN      - Don't add the EMAIL field into certificate' subject\n",
169     " -batch          - Don't ask questions\n",
170     " -msie_hack      - msie modifications to handle all those universal strings\n",
171     " -revoke file    - Revoke a certificate (given in file)\n",
172     " -subj arg       - Use arg instead of request's subject\n",
173     " -utf8           - input characters are UTF8 (default ASCII)\n",
174     " -multivalue-rdn - enable support for multivalued RDNs\n",
175     " -extensions ..  - Extension section (override value in config file)\n",
176     " -extfile file   - Configuration file with X509v3 extentions to add\n",
177     " -crlexts ..     - CRL extension section (override value in config file)\n",
178 #ifndef OPENSSL_NO_ENGINE
179     " -engine e       - use engine e, possibly a hardware device.\n",
180 #endif
181     " -status serial  - Shows certificate status given the serial number\n",
182     " -updatedb       - Updates db for expired certificates\n",
183     NULL
184 };
185
186 #ifdef EFENCE
187 extern int EF_PROTECT_FREE;
188 extern int EF_PROTECT_BELOW;
189 extern int EF_ALIGNMENT;
190 #endif
191
192 static void lookup_fail(const char *name, const char *tag);
193 static int certify(X509 **xret, char *infile, EVP_PKEY *pkey, X509 *x509,
194                    const EVP_MD *dgst, STACK_OF(OPENSSL_STRING) *sigopts,
195                    STACK_OF(CONF_VALUE) *policy, CA_DB *db,
196                    BIGNUM *serial, char *subj, unsigned long chtype,
197                    int multirdn, int email_dn, char *startdate, char *enddate,
198                    long days, int batch, char *ext_sect, CONF *conf,
199                    int verbose, unsigned long certopt, unsigned long nameopt,
200                    int default_op, int ext_copy, int selfsign);
201 static int certify_cert(X509 **xret, char *infile, EVP_PKEY *pkey, X509 *x509,
202                         const EVP_MD *dgst, STACK_OF(OPENSSL_STRING) *sigopts,
203                         STACK_OF(CONF_VALUE) *policy, CA_DB *db,
204                         BIGNUM *serial, char *subj, unsigned long chtype,
205                         int multirdn, int email_dn, char *startdate,
206                         char *enddate, long days, int batch, char *ext_sect,
207                         CONF *conf, int verbose, unsigned long certopt,
208                         unsigned long nameopt, int default_op, int ext_copy,
209                         ENGINE *e);
210 static int certify_spkac(X509 **xret, char *infile, EVP_PKEY *pkey,
211                          X509 *x509, const EVP_MD *dgst,
212                          STACK_OF(OPENSSL_STRING) *sigopts,
213                          STACK_OF(CONF_VALUE) *policy, CA_DB *db,
214                          BIGNUM *serial, char *subj, unsigned long chtype,
215                          int multirdn, int email_dn, char *startdate,
216                          char *enddate, long days, char *ext_sect, CONF *conf,
217                          int verbose, unsigned long certopt,
218                          unsigned long nameopt, int default_op, int ext_copy);
219 static void write_new_certificate(BIO *bp, X509 *x, int output_der,
220                                   int notext);
221 static int do_body(X509 **xret, EVP_PKEY *pkey, X509 *x509,
222                    const EVP_MD *dgst, STACK_OF(OPENSSL_STRING) *sigopts,
223                    STACK_OF(CONF_VALUE) *policy, CA_DB *db, BIGNUM *serial,
224                    char *subj, unsigned long chtype, int multirdn,
225                    int email_dn, char *startdate, char *enddate, long days,
226                    int batch, int verbose, X509_REQ *req, char *ext_sect,
227                    CONF *conf, unsigned long certopt, unsigned long nameopt,
228                    int default_op, int ext_copy, int selfsign);
229 static int do_revoke(X509 *x509, CA_DB *db, int ext, char *extval);
230 static int get_certificate_status(const char *ser_status, CA_DB *db);
231 static int do_updatedb(CA_DB *db);
232 static int check_time_format(const char *str);
233 char *make_revocation_str(int rev_type, char *rev_arg);
234 int make_revoked(X509_REVOKED *rev, const char *str);
235 int old_entry_print(BIO *bp, ASN1_OBJECT *obj, ASN1_STRING *str);
236 static CONF *conf = NULL;
237 static CONF *extconf = NULL;
238 static char *section = NULL;
239
240 static int preserve = 0;
241 static int msie_hack = 0;
242
243 int MAIN(int, char **);
244
245 int MAIN(int argc, char **argv)
246 {
247     ENGINE *e = NULL;
248     char *key = NULL, *passargin = NULL;
249     int create_ser = 0;
250     int free_key = 0;
251     int total = 0;
252     int total_done = 0;
253     int badops = 0;
254     int ret = 1;
255     int email_dn = 1;
256     int req = 0;
257     int verbose = 0;
258     int gencrl = 0;
259     int dorevoke = 0;
260     int doupdatedb = 0;
261     long crldays = 0;
262     long crlhours = 0;
263     long crlsec = 0;
264     long errorline = -1;
265     char *configfile = NULL;
266     char *md = NULL;
267     char *policy = NULL;
268     char *keyfile = NULL;
269     char *certfile = NULL;
270     int keyform = FORMAT_PEM;
271     char *infile = NULL;
272     char *spkac_file = NULL;
273     char *ss_cert_file = NULL;
274     char *ser_status = NULL;
275     EVP_PKEY *pkey = NULL;
276     int output_der = 0;
277     char *outfile = NULL;
278     char *outdir = NULL;
279     char *serialfile = NULL;
280     char *crlnumberfile = NULL;
281     char *extensions = NULL;
282     char *extfile = NULL;
283     char *subj = NULL;
284     unsigned long chtype = MBSTRING_ASC;
285     int multirdn = 0;
286     char *tmp_email_dn = NULL;
287     char *crl_ext = NULL;
288     int rev_type = REV_NONE;
289     char *rev_arg = NULL;
290     BIGNUM *serial = NULL;
291     BIGNUM *crlnumber = NULL;
292     char *startdate = NULL;
293     char *enddate = NULL;
294     long days = 0;
295     int batch = 0;
296     int notext = 0;
297     unsigned long nameopt = 0, certopt = 0;
298     int default_op = 1;
299     int ext_copy = EXT_COPY_NONE;
300     int selfsign = 0;
301     X509 *x509 = NULL, *x509p = NULL;
302     X509 *x = NULL;
303     BIO *in = NULL, *out = NULL, *Sout = NULL, *Cout = NULL;
304     char *dbfile = NULL;
305     CA_DB *db = NULL;
306     X509_CRL *crl = NULL;
307     X509_REVOKED *r = NULL;
308     ASN1_TIME *tmptm;
309     ASN1_INTEGER *tmpser;
310     char *f;
311     const char *p;
312     char *const *pp;
313     int i, j;
314     const EVP_MD *dgst = NULL;
315     STACK_OF(CONF_VALUE) *attribs = NULL;
316     STACK_OF(X509) *cert_sk = NULL;
317     STACK_OF(OPENSSL_STRING) *sigopts = NULL;
318 #undef BSIZE
319 #define BSIZE 256
320     MS_STATIC char buf[3][BSIZE];
321     char *randfile = NULL;
322     char *engine = NULL;
323     char *tofree = NULL;
324     DB_ATTR db_attr;
325
326 #ifdef EFENCE
327     EF_PROTECT_FREE = 1;
328     EF_PROTECT_BELOW = 1;
329     EF_ALIGNMENT = 0;
330 #endif
331
332     apps_startup();
333
334     conf = NULL;
335     key = NULL;
336     section = NULL;
337
338     preserve = 0;
339     msie_hack = 0;
340     if (bio_err == NULL)
341         if ((bio_err = BIO_new(BIO_s_file())) != NULL)
342             BIO_set_fp(bio_err, stderr, BIO_NOCLOSE | BIO_FP_TEXT);
343
344     argc--;
345     argv++;
346     while (argc >= 1) {
347         if (strcmp(*argv, "-verbose") == 0)
348             verbose = 1;
349         else if (strcmp(*argv, "-config") == 0) {
350             if (--argc < 1)
351                 goto bad;
352             configfile = *(++argv);
353         } else if (strcmp(*argv, "-name") == 0) {
354             if (--argc < 1)
355                 goto bad;
356             section = *(++argv);
357         } else if (strcmp(*argv, "-subj") == 0) {
358             if (--argc < 1)
359                 goto bad;
360             subj = *(++argv);
361             /* preserve=1; */
362         } else if (strcmp(*argv, "-utf8") == 0)
363             chtype = MBSTRING_UTF8;
364         else if (strcmp(*argv, "-create_serial") == 0)
365             create_ser = 1;
366         else if (strcmp(*argv, "-multivalue-rdn") == 0)
367             multirdn = 1;
368         else if (strcmp(*argv, "-startdate") == 0) {
369             if (--argc < 1)
370                 goto bad;
371             startdate = *(++argv);
372         } else if (strcmp(*argv, "-enddate") == 0) {
373             if (--argc < 1)
374                 goto bad;
375             enddate = *(++argv);
376         } else if (strcmp(*argv, "-days") == 0) {
377             if (--argc < 1)
378                 goto bad;
379             days = atoi(*(++argv));
380         } else if (strcmp(*argv, "-md") == 0) {
381             if (--argc < 1)
382                 goto bad;
383             md = *(++argv);
384         } else if (strcmp(*argv, "-policy") == 0) {
385             if (--argc < 1)
386                 goto bad;
387             policy = *(++argv);
388         } else if (strcmp(*argv, "-keyfile") == 0) {
389             if (--argc < 1)
390                 goto bad;
391             keyfile = *(++argv);
392         } else if (strcmp(*argv, "-keyform") == 0) {
393             if (--argc < 1)
394                 goto bad;
395             keyform = str2fmt(*(++argv));
396         } else if (strcmp(*argv, "-passin") == 0) {
397             if (--argc < 1)
398                 goto bad;
399             passargin = *(++argv);
400         } else if (strcmp(*argv, "-key") == 0) {
401             if (--argc < 1)
402                 goto bad;
403             key = *(++argv);
404         } else if (strcmp(*argv, "-cert") == 0) {
405             if (--argc < 1)
406                 goto bad;
407             certfile = *(++argv);
408         } else if (strcmp(*argv, "-selfsign") == 0)
409             selfsign = 1;
410         else if (strcmp(*argv, "-in") == 0) {
411             if (--argc < 1)
412                 goto bad;
413             infile = *(++argv);
414             req = 1;
415         } else if (strcmp(*argv, "-out") == 0) {
416             if (--argc < 1)
417                 goto bad;
418             outfile = *(++argv);
419         } else if (strcmp(*argv, "-outdir") == 0) {
420             if (--argc < 1)
421                 goto bad;
422             outdir = *(++argv);
423         } else if (strcmp(*argv, "-sigopt") == 0) {
424             if (--argc < 1)
425                 goto bad;
426             if (!sigopts)
427                 sigopts = sk_OPENSSL_STRING_new_null();
428             if (!sigopts || !sk_OPENSSL_STRING_push(sigopts, *(++argv)))
429                 goto bad;
430         } else if (strcmp(*argv, "-notext") == 0)
431             notext = 1;
432         else if (strcmp(*argv, "-batch") == 0)
433             batch = 1;
434         else if (strcmp(*argv, "-preserveDN") == 0)
435             preserve = 1;
436         else if (strcmp(*argv, "-noemailDN") == 0)
437             email_dn = 0;
438         else if (strcmp(*argv, "-gencrl") == 0)
439             gencrl = 1;
440         else if (strcmp(*argv, "-msie_hack") == 0)
441             msie_hack = 1;
442         else if (strcmp(*argv, "-crldays") == 0) {
443             if (--argc < 1)
444                 goto bad;
445             crldays = atol(*(++argv));
446         } else if (strcmp(*argv, "-crlhours") == 0) {
447             if (--argc < 1)
448                 goto bad;
449             crlhours = atol(*(++argv));
450         } else if (strcmp(*argv, "-crlsec") == 0) {
451             if (--argc < 1)
452                 goto bad;
453             crlsec = atol(*(++argv));
454         } else if (strcmp(*argv, "-infiles") == 0) {
455             argc--;
456             argv++;
457             req = 1;
458             break;
459         } else if (strcmp(*argv, "-ss_cert") == 0) {
460             if (--argc < 1)
461                 goto bad;
462             ss_cert_file = *(++argv);
463             req = 1;
464         } else if (strcmp(*argv, "-spkac") == 0) {
465             if (--argc < 1)
466                 goto bad;
467             spkac_file = *(++argv);
468             req = 1;
469         } else if (strcmp(*argv, "-revoke") == 0) {
470             if (--argc < 1)
471                 goto bad;
472             infile = *(++argv);
473             dorevoke = 1;
474         } else if (strcmp(*argv, "-valid") == 0) {
475             if (--argc < 1)
476                 goto bad;
477             infile = *(++argv);
478             dorevoke = 2;
479         } else if (strcmp(*argv, "-extensions") == 0) {
480             if (--argc < 1)
481                 goto bad;
482             extensions = *(++argv);
483         } else if (strcmp(*argv, "-extfile") == 0) {
484             if (--argc < 1)
485                 goto bad;
486             extfile = *(++argv);
487         } else if (strcmp(*argv, "-status") == 0) {
488             if (--argc < 1)
489                 goto bad;
490             ser_status = *(++argv);
491         } else if (strcmp(*argv, "-updatedb") == 0) {
492             doupdatedb = 1;
493         } else if (strcmp(*argv, "-crlexts") == 0) {
494             if (--argc < 1)
495                 goto bad;
496             crl_ext = *(++argv);
497         } else if (strcmp(*argv, "-crl_reason") == 0) {
498             if (--argc < 1)
499                 goto bad;
500             rev_arg = *(++argv);
501             rev_type = REV_CRL_REASON;
502         } else if (strcmp(*argv, "-crl_hold") == 0) {
503             if (--argc < 1)
504                 goto bad;
505             rev_arg = *(++argv);
506             rev_type = REV_HOLD;
507         } else if (strcmp(*argv, "-crl_compromise") == 0) {
508             if (--argc < 1)
509                 goto bad;
510             rev_arg = *(++argv);
511             rev_type = REV_KEY_COMPROMISE;
512         } else if (strcmp(*argv, "-crl_CA_compromise") == 0) {
513             if (--argc < 1)
514                 goto bad;
515             rev_arg = *(++argv);
516             rev_type = REV_CA_COMPROMISE;
517         }
518 #ifndef OPENSSL_NO_ENGINE
519         else if (strcmp(*argv, "-engine") == 0) {
520             if (--argc < 1)
521                 goto bad;
522             engine = *(++argv);
523         }
524 #endif
525         else {
526  bad:
527             BIO_printf(bio_err, "unknown option %s\n", *argv);
528             badops = 1;
529             break;
530         }
531         argc--;
532         argv++;
533     }
534
535     if (badops) {
536         const char **pp2;
537
538         for (pp2 = ca_usage; (*pp2 != NULL); pp2++)
539             BIO_printf(bio_err, "%s", *pp2);
540         goto err;
541     }
542
543     ERR_load_crypto_strings();
544
545         /*****************************************************************/
546     tofree = NULL;
547     if (configfile == NULL)
548         configfile = getenv("OPENSSL_CONF");
549     if (configfile == NULL)
550         configfile = getenv("SSLEAY_CONF");
551     if (configfile == NULL) {
552         const char *s = X509_get_default_cert_area();
553         size_t len;
554
555 #ifdef OPENSSL_SYS_VMS
556         len = strlen(s) + sizeof(CONFIG_FILE);
557         tofree = OPENSSL_malloc(len);
558         if (!tofree) {
559             BIO_printf(bio_err, "Out of memory\n");
560             goto err;
561         }
562         strcpy(tofree, s);
563 #else
564         len = strlen(s) + sizeof(CONFIG_FILE) + 1;
565         tofree = OPENSSL_malloc(len);
566         if (!tofree) {
567             BIO_printf(bio_err, "Out of memory\n");
568             goto err;
569         }
570         BUF_strlcpy(tofree, s, len);
571         BUF_strlcat(tofree, "/", len);
572 #endif
573         BUF_strlcat(tofree, CONFIG_FILE, len);
574         configfile = tofree;
575     }
576
577     BIO_printf(bio_err, "Using configuration from %s\n", configfile);
578     conf = NCONF_new(NULL);
579     if (NCONF_load(conf, configfile, &errorline) <= 0) {
580         if (errorline <= 0)
581             BIO_printf(bio_err, "error loading the config file '%s'\n",
582                        configfile);
583         else
584             BIO_printf(bio_err, "error on line %ld of config file '%s'\n",
585                        errorline, configfile);
586         goto err;
587     }
588     if (tofree) {
589         OPENSSL_free(tofree);
590         tofree = NULL;
591     }
592
593     if (!load_config(bio_err, conf))
594         goto err;
595
596     e = setup_engine(bio_err, engine, 0);
597
598     /* Lets get the config section we are using */
599     if (section == NULL) {
600         section = NCONF_get_string(conf, BASE_SECTION, ENV_DEFAULT_CA);
601         if (section == NULL) {
602             lookup_fail(BASE_SECTION, ENV_DEFAULT_CA);
603             goto err;
604         }
605     }
606
607     if (conf != NULL) {
608         p = NCONF_get_string(conf, NULL, "oid_file");
609         if (p == NULL)
610             ERR_clear_error();
611         if (p != NULL) {
612             BIO *oid_bio;
613
614             oid_bio = BIO_new_file(p, "r");
615             if (oid_bio == NULL) {
616                 /*-
617                 BIO_printf(bio_err,"problems opening %s for extra oid's\n",p);
618                 ERR_print_errors(bio_err);
619                 */
620                 ERR_clear_error();
621             } else {
622                 OBJ_create_objects(oid_bio);
623                 BIO_free(oid_bio);
624             }
625         }
626         if (!add_oid_section(bio_err, conf)) {
627             ERR_print_errors(bio_err);
628             goto err;
629         }
630     }
631
632     randfile = NCONF_get_string(conf, BASE_SECTION, "RANDFILE");
633     if (randfile == NULL)
634         ERR_clear_error();
635     app_RAND_load_file(randfile, bio_err, 0);
636
637     f = NCONF_get_string(conf, section, STRING_MASK);
638     if (!f)
639         ERR_clear_error();
640
641     if (f && !ASN1_STRING_set_default_mask_asc(f)) {
642         BIO_printf(bio_err, "Invalid global string mask setting %s\n", f);
643         goto err;
644     }
645
646     if (chtype != MBSTRING_UTF8) {
647         f = NCONF_get_string(conf, section, UTF8_IN);
648         if (!f)
649             ERR_clear_error();
650         else if (!strcmp(f, "yes"))
651             chtype = MBSTRING_UTF8;
652     }
653
654     db_attr.unique_subject = 1;
655     p = NCONF_get_string(conf, section, ENV_UNIQUE_SUBJECT);
656     if (p) {
657 #ifdef RL_DEBUG
658         BIO_printf(bio_err, "DEBUG: unique_subject = \"%s\"\n", p);
659 #endif
660         db_attr.unique_subject = parse_yesno(p, 1);
661     } else
662         ERR_clear_error();
663 #ifdef RL_DEBUG
664     if (!p)
665         BIO_printf(bio_err, "DEBUG: unique_subject undefined\n");
666 #endif
667 #ifdef RL_DEBUG
668     BIO_printf(bio_err, "DEBUG: configured unique_subject is %d\n",
669                db_attr.unique_subject);
670 #endif
671
672     in = BIO_new(BIO_s_file());
673     out = BIO_new(BIO_s_file());
674     Sout = BIO_new(BIO_s_file());
675     Cout = BIO_new(BIO_s_file());
676     if ((in == NULL) || (out == NULL) || (Sout == NULL) || (Cout == NULL)) {
677         ERR_print_errors(bio_err);
678         goto err;
679     }
680
681         /*****************************************************************/
682     /* report status of cert with serial number given on command line */
683     if (ser_status) {
684         if ((dbfile = NCONF_get_string(conf, section, ENV_DATABASE)) == NULL) {
685             lookup_fail(section, ENV_DATABASE);
686             goto err;
687         }
688         db = load_index(dbfile, &db_attr);
689         if (db == NULL)
690             goto err;
691
692         if (!index_index(db))
693             goto err;
694
695         if (get_certificate_status(ser_status, db) != 1)
696             BIO_printf(bio_err, "Error verifying serial %s!\n", ser_status);
697         goto err;
698     }
699
700         /*****************************************************************/
701     /* we definitely need a private key, so let's get it */
702
703     if ((keyfile == NULL) && ((keyfile = NCONF_get_string(conf,
704                                                           section,
705                                                           ENV_PRIVATE_KEY)) ==
706                               NULL)) {
707         lookup_fail(section, ENV_PRIVATE_KEY);
708         goto err;
709     }
710     if (!key) {
711         free_key = 1;
712         if (!app_passwd(bio_err, passargin, NULL, &key, NULL)) {
713             BIO_printf(bio_err, "Error getting password\n");
714             goto err;
715         }
716     }
717     pkey = load_key(bio_err, keyfile, keyform, 0, key, e, "CA private key");
718     if (key)
719         OPENSSL_cleanse(key, strlen(key));
720     if (pkey == NULL) {
721         /* load_key() has already printed an appropriate message */
722         goto err;
723     }
724
725         /*****************************************************************/
726     /* we need a certificate */
727     if (!selfsign || spkac_file || ss_cert_file || gencrl) {
728         if ((certfile == NULL)
729             && ((certfile = NCONF_get_string(conf,
730                                              section,
731                                              ENV_CERTIFICATE)) == NULL)) {
732             lookup_fail(section, ENV_CERTIFICATE);
733             goto err;
734         }
735         x509 = load_cert(bio_err, certfile, FORMAT_PEM, NULL, e,
736                          "CA certificate");
737         if (x509 == NULL)
738             goto err;
739
740         if (!X509_check_private_key(x509, pkey)) {
741             BIO_printf(bio_err,
742                        "CA certificate and CA private key do not match\n");
743             goto err;
744         }
745     }
746     if (!selfsign)
747         x509p = x509;
748
749     f = NCONF_get_string(conf, BASE_SECTION, ENV_PRESERVE);
750     if (f == NULL)
751         ERR_clear_error();
752     if ((f != NULL) && ((*f == 'y') || (*f == 'Y')))
753         preserve = 1;
754     f = NCONF_get_string(conf, BASE_SECTION, ENV_MSIE_HACK);
755     if (f == NULL)
756         ERR_clear_error();
757     if ((f != NULL) && ((*f == 'y') || (*f == 'Y')))
758         msie_hack = 1;
759
760     f = NCONF_get_string(conf, section, ENV_NAMEOPT);
761
762     if (f) {
763         if (!set_name_ex(&nameopt, f)) {
764             BIO_printf(bio_err, "Invalid name options: \"%s\"\n", f);
765             goto err;
766         }
767         default_op = 0;
768     } else
769         ERR_clear_error();
770
771     f = NCONF_get_string(conf, section, ENV_CERTOPT);
772
773     if (f) {
774         if (!set_cert_ex(&certopt, f)) {
775             BIO_printf(bio_err, "Invalid certificate options: \"%s\"\n", f);
776             goto err;
777         }
778         default_op = 0;
779     } else
780         ERR_clear_error();
781
782     f = NCONF_get_string(conf, section, ENV_EXTCOPY);
783
784     if (f) {
785         if (!set_ext_copy(&ext_copy, f)) {
786             BIO_printf(bio_err, "Invalid extension copy option: \"%s\"\n", f);
787             goto err;
788         }
789     } else
790         ERR_clear_error();
791
792         /*****************************************************************/
793     /* lookup where to write new certificates */
794     if ((outdir == NULL) && (req)) {
795
796         if ((outdir = NCONF_get_string(conf, section, ENV_NEW_CERTS_DIR))
797             == NULL) {
798             BIO_printf(bio_err,
799                        "there needs to be defined a directory for new certificate to be placed in\n");
800             goto err;
801         }
802 #ifndef OPENSSL_SYS_VMS
803         /*
804          * outdir is a directory spec, but access() for VMS demands a
805          * filename.  In any case, stat(), below, will catch the problem if
806          * outdir is not a directory spec, and the fopen() or open() will
807          * catch an error if there is no write access.
808          *
809          * Presumably, this problem could also be solved by using the DEC C
810          * routines to convert the directory syntax to Unixly, and give that
811          * to access().  However, time's too short to do that just now.
812          */
813 # ifndef _WIN32
814         if (access(outdir, R_OK | W_OK | X_OK) != 0)
815 # else
816         if (_access(outdir, R_OK | W_OK | X_OK) != 0)
817 # endif
818         {
819             BIO_printf(bio_err, "I am unable to access the %s directory\n",
820                        outdir);
821             perror(outdir);
822             goto err;
823         }
824
825         if (app_isdir(outdir) <= 0) {
826             BIO_printf(bio_err, "%s need to be a directory\n", outdir);
827             perror(outdir);
828             goto err;
829         }
830 #endif
831     }
832
833         /*****************************************************************/
834     /* we need to load the database file */
835     if ((dbfile = NCONF_get_string(conf, section, ENV_DATABASE)) == NULL) {
836         lookup_fail(section, ENV_DATABASE);
837         goto err;
838     }
839     db = load_index(dbfile, &db_attr);
840     if (db == NULL)
841         goto err;
842
843     /* Lets check some fields */
844     for (i = 0; i < sk_OPENSSL_PSTRING_num(db->db->data); i++) {
845         pp = sk_OPENSSL_PSTRING_value(db->db->data, i);
846         if ((pp[DB_type][0] != DB_TYPE_REV) && (pp[DB_rev_date][0] != '\0')) {
847             BIO_printf(bio_err,
848                        "entry %d: not revoked yet, but has a revocation date\n",
849                        i + 1);
850             goto err;
851         }
852         if ((pp[DB_type][0] == DB_TYPE_REV) &&
853             !make_revoked(NULL, pp[DB_rev_date])) {
854             BIO_printf(bio_err, " in entry %d\n", i + 1);
855             goto err;
856         }
857         if (!check_time_format((char *)pp[DB_exp_date])) {
858             BIO_printf(bio_err, "entry %d: invalid expiry date\n", i + 1);
859             goto err;
860         }
861         p = pp[DB_serial];
862         j = strlen(p);
863         if (*p == '-') {
864             p++;
865             j--;
866         }
867         if ((j & 1) || (j < 2)) {
868             BIO_printf(bio_err, "entry %d: bad serial number length (%d)\n",
869                        i + 1, j);
870             goto err;
871         }
872         while (*p) {
873             if (!(((*p >= '0') && (*p <= '9')) ||
874                   ((*p >= 'A') && (*p <= 'F')) ||
875                   ((*p >= 'a') && (*p <= 'f')))) {
876                 BIO_printf(bio_err,
877                            "entry %d: bad serial number characters, char pos %ld, char is '%c'\n",
878                            i + 1, (long)(p - pp[DB_serial]), *p);
879                 goto err;
880             }
881             p++;
882         }
883         if (pp[DB_name][0] == '\0') {
884             BIO_printf(bio_err, "entry %d: bad Subject\n", i + 1);
885             goto err;
886         }
887     }
888     if (verbose) {
889         BIO_set_fp(out, stdout, BIO_NOCLOSE | BIO_FP_TEXT); /* cannot fail */
890 #ifdef OPENSSL_SYS_VMS
891         {
892             BIO *tmpbio = BIO_new(BIO_f_linebuffer());
893             out = BIO_push(tmpbio, out);
894         }
895 #endif
896         TXT_DB_write(out, db->db);
897         BIO_printf(bio_err, "%d entries loaded from the database\n",
898                    sk_OPENSSL_PSTRING_num(db->db->data));
899         BIO_printf(bio_err, "generating index\n");
900     }
901
902     if (!index_index(db))
903         goto err;
904
905         /*****************************************************************/
906     /* Update the db file for expired certificates */
907     if (doupdatedb) {
908         if (verbose)
909             BIO_printf(bio_err, "Updating %s ...\n", dbfile);
910
911         i = do_updatedb(db);
912         if (i == -1) {
913             BIO_printf(bio_err, "Malloc failure\n");
914             goto err;
915         } else if (i == 0) {
916             if (verbose)
917                 BIO_printf(bio_err, "No entries found to mark expired\n");
918         } else {
919             if (!save_index(dbfile, "new", db))
920                 goto err;
921
922             if (!rotate_index(dbfile, "new", "old"))
923                 goto err;
924
925             if (verbose)
926                 BIO_printf(bio_err,
927                            "Done. %d entries marked as expired\n", i);
928         }
929     }
930
931         /*****************************************************************/
932     /* Read extentions config file                                   */
933     if (extfile) {
934         extconf = NCONF_new(NULL);
935         if (NCONF_load(extconf, extfile, &errorline) <= 0) {
936             if (errorline <= 0)
937                 BIO_printf(bio_err, "ERROR: loading the config file '%s'\n",
938                            extfile);
939             else
940                 BIO_printf(bio_err,
941                            "ERROR: on line %ld of config file '%s'\n",
942                            errorline, extfile);
943             ret = 1;
944             goto err;
945         }
946
947         if (verbose)
948             BIO_printf(bio_err, "Successfully loaded extensions file %s\n",
949                        extfile);
950
951         /* We can have sections in the ext file */
952         if (!extensions
953             && !(extensions =
954                  NCONF_get_string(extconf, "default", "extensions")))
955             extensions = "default";
956     }
957
958         /*****************************************************************/
959     if (req || gencrl) {
960         if (outfile != NULL) {
961             if (BIO_write_filename(Sout, outfile) <= 0) {
962                 perror(outfile);
963                 goto err;
964             }
965         } else {
966             BIO_set_fp(Sout, stdout, BIO_NOCLOSE | BIO_FP_TEXT);
967 #ifdef OPENSSL_SYS_VMS
968             {
969                 BIO *tmpbio = BIO_new(BIO_f_linebuffer());
970                 Sout = BIO_push(tmpbio, Sout);
971             }
972 #endif
973         }
974     }
975
976     if ((md == NULL) && ((md = NCONF_get_string(conf,
977                                                 section,
978                                                 ENV_DEFAULT_MD)) == NULL)) {
979         lookup_fail(section, ENV_DEFAULT_MD);
980         goto err;
981     }
982
983     if (!strcmp(md, "default")) {
984         int def_nid;
985         if (EVP_PKEY_get_default_digest_nid(pkey, &def_nid) <= 0) {
986             BIO_puts(bio_err, "no default digest\n");
987             goto err;
988         }
989         md = (char *)OBJ_nid2sn(def_nid);
990     }
991
992     if ((dgst = EVP_get_digestbyname(md)) == NULL) {
993         BIO_printf(bio_err, "%s is an unsupported message digest type\n", md);
994         goto err;
995     }
996
997     if (req) {
998         if ((email_dn == 1) && ((tmp_email_dn = NCONF_get_string(conf,
999                                                                  section,
1000                                                                  ENV_DEFAULT_EMAIL_DN))
1001                                 != NULL)) {
1002             if (strcmp(tmp_email_dn, "no") == 0)
1003                 email_dn = 0;
1004         }
1005         if (verbose)
1006             BIO_printf(bio_err, "message digest is %s\n",
1007                        OBJ_nid2ln(dgst->type));
1008         if ((policy == NULL) && ((policy = NCONF_get_string(conf,
1009                                                             section,
1010                                                             ENV_POLICY)) ==
1011                                  NULL)) {
1012             lookup_fail(section, ENV_POLICY);
1013             goto err;
1014         }
1015         if (verbose)
1016             BIO_printf(bio_err, "policy is %s\n", policy);
1017
1018         if ((serialfile = NCONF_get_string(conf, section, ENV_SERIAL))
1019             == NULL) {
1020             lookup_fail(section, ENV_SERIAL);
1021             goto err;
1022         }
1023
1024         if (!extconf) {
1025             /*
1026              * no '-extfile' option, so we look for extensions in the main
1027              * configuration file
1028              */
1029             if (!extensions) {
1030                 extensions = NCONF_get_string(conf, section, ENV_EXTENSIONS);
1031                 if (!extensions)
1032                     ERR_clear_error();
1033             }
1034             if (extensions) {
1035                 /* Check syntax of file */
1036                 X509V3_CTX ctx;
1037                 X509V3_set_ctx_test(&ctx);
1038                 X509V3_set_nconf(&ctx, conf);
1039                 if (!X509V3_EXT_add_nconf(conf, &ctx, extensions, NULL)) {
1040                     BIO_printf(bio_err,
1041                                "Error Loading extension section %s\n",
1042                                extensions);
1043                     ret = 1;
1044                     goto err;
1045                 }
1046             }
1047         }
1048
1049         if (startdate == NULL) {
1050             startdate = NCONF_get_string(conf, section,
1051                                          ENV_DEFAULT_STARTDATE);
1052             if (startdate == NULL)
1053                 ERR_clear_error();
1054         }
1055         if (startdate && !ASN1_TIME_set_string(NULL, startdate)) {
1056             BIO_printf(bio_err,
1057                        "start date is invalid, it should be YYMMDDHHMMSSZ or YYYYMMDDHHMMSSZ\n");
1058             goto err;
1059         }
1060         if (startdate == NULL)
1061             startdate = "today";
1062
1063         if (enddate == NULL) {
1064             enddate = NCONF_get_string(conf, section, ENV_DEFAULT_ENDDATE);
1065             if (enddate == NULL)
1066                 ERR_clear_error();
1067         }
1068         if (enddate && !ASN1_TIME_set_string(NULL, enddate)) {
1069             BIO_printf(bio_err,
1070                        "end date is invalid, it should be YYMMDDHHMMSSZ or YYYYMMDDHHMMSSZ\n");
1071             goto err;
1072         }
1073
1074         if (days == 0) {
1075             if (!NCONF_get_number(conf, section, ENV_DEFAULT_DAYS, &days))
1076                 days = 0;
1077         }
1078         if (!enddate && (days == 0)) {
1079             BIO_printf(bio_err,
1080                        "cannot lookup how many days to certify for\n");
1081             goto err;
1082         }
1083
1084         if ((serial = load_serial(serialfile, create_ser, NULL)) == NULL) {
1085             BIO_printf(bio_err, "error while loading serial number\n");
1086             goto err;
1087         }
1088         if (verbose) {
1089             if (BN_is_zero(serial))
1090                 BIO_printf(bio_err, "next serial number is 00\n");
1091             else {
1092                 if ((f = BN_bn2hex(serial)) == NULL)
1093                     goto err;
1094                 BIO_printf(bio_err, "next serial number is %s\n", f);
1095                 OPENSSL_free(f);
1096             }
1097         }
1098
1099         if ((attribs = NCONF_get_section(conf, policy)) == NULL) {
1100             BIO_printf(bio_err, "unable to find 'section' for %s\n", policy);
1101             goto err;
1102         }
1103
1104         if ((cert_sk = sk_X509_new_null()) == NULL) {
1105             BIO_printf(bio_err, "Memory allocation failure\n");
1106             goto err;
1107         }
1108         if (spkac_file != NULL) {
1109             total++;
1110             j = certify_spkac(&x, spkac_file, pkey, x509, dgst, sigopts,
1111                               attribs, db, serial, subj, chtype, multirdn,
1112                               email_dn, startdate, enddate, days, extensions,
1113                               conf, verbose, certopt, nameopt, default_op,
1114                               ext_copy);
1115             if (j < 0)
1116                 goto err;
1117             if (j > 0) {
1118                 total_done++;
1119                 BIO_printf(bio_err, "\n");
1120                 if (!BN_add_word(serial, 1))
1121                     goto err;
1122                 if (!sk_X509_push(cert_sk, x)) {
1123                     BIO_printf(bio_err, "Memory allocation failure\n");
1124                     goto err;
1125                 }
1126                 if (outfile) {
1127                     output_der = 1;
1128                     batch = 1;
1129                 }
1130             }
1131         }
1132         if (ss_cert_file != NULL) {
1133             total++;
1134             j = certify_cert(&x, ss_cert_file, pkey, x509, dgst, sigopts,
1135                              attribs,
1136                              db, serial, subj, chtype, multirdn, email_dn,
1137                              startdate, enddate, days, batch, extensions,
1138                              conf, verbose, certopt, nameopt, default_op,
1139                              ext_copy, e);
1140             if (j < 0)
1141                 goto err;
1142             if (j > 0) {
1143                 total_done++;
1144                 BIO_printf(bio_err, "\n");
1145                 if (!BN_add_word(serial, 1))
1146                     goto err;
1147                 if (!sk_X509_push(cert_sk, x)) {
1148                     BIO_printf(bio_err, "Memory allocation failure\n");
1149                     goto err;
1150                 }
1151             }
1152         }
1153         if (infile != NULL) {
1154             total++;
1155             j = certify(&x, infile, pkey, x509p, dgst, sigopts, attribs, db,
1156                         serial, subj, chtype, multirdn, email_dn, startdate,
1157                         enddate, days, batch, extensions, conf, verbose,
1158                         certopt, nameopt, default_op, ext_copy, selfsign);
1159             if (j < 0)
1160                 goto err;
1161             if (j > 0) {
1162                 total_done++;
1163                 BIO_printf(bio_err, "\n");
1164                 if (!BN_add_word(serial, 1))
1165                     goto err;
1166                 if (!sk_X509_push(cert_sk, x)) {
1167                     BIO_printf(bio_err, "Memory allocation failure\n");
1168                     goto err;
1169                 }
1170             }
1171         }
1172         for (i = 0; i < argc; i++) {
1173             total++;
1174             j = certify(&x, argv[i], pkey, x509p, dgst, sigopts, attribs, db,
1175                         serial, subj, chtype, multirdn, email_dn, startdate,
1176                         enddate, days, batch, extensions, conf, verbose,
1177                         certopt, nameopt, default_op, ext_copy, selfsign);
1178             if (j < 0)
1179                 goto err;
1180             if (j > 0) {
1181                 total_done++;
1182                 BIO_printf(bio_err, "\n");
1183                 if (!BN_add_word(serial, 1))
1184                     goto err;
1185                 if (!sk_X509_push(cert_sk, x)) {
1186                     BIO_printf(bio_err, "Memory allocation failure\n");
1187                     goto err;
1188                 }
1189             }
1190         }
1191         /*
1192          * we have a stack of newly certified certificates and a data base
1193          * and serial number that need updating
1194          */
1195
1196         if (sk_X509_num(cert_sk) > 0) {
1197             if (!batch) {
1198                 BIO_printf(bio_err,
1199                            "\n%d out of %d certificate requests certified, commit? [y/n]",
1200                            total_done, total);
1201                 (void)BIO_flush(bio_err);
1202                 buf[0][0] = '\0';
1203                 if (!fgets(buf[0], 10, stdin)) {
1204                     BIO_printf(bio_err,
1205                                "CERTIFICATION CANCELED: I/O error\n");
1206                     ret = 0;
1207                     goto err;
1208                 }
1209                 if ((buf[0][0] != 'y') && (buf[0][0] != 'Y')) {
1210                     BIO_printf(bio_err, "CERTIFICATION CANCELED\n");
1211                     ret = 0;
1212                     goto err;
1213                 }
1214             }
1215
1216             BIO_printf(bio_err, "Write out database with %d new entries\n",
1217                        sk_X509_num(cert_sk));
1218
1219             if (!save_serial(serialfile, "new", serial, NULL))
1220                 goto err;
1221
1222             if (!save_index(dbfile, "new", db))
1223                 goto err;
1224         }
1225
1226         if (verbose)
1227             BIO_printf(bio_err, "writing new certificates\n");
1228         for (i = 0; i < sk_X509_num(cert_sk); i++) {
1229             int k;
1230             char *n;
1231
1232             x = sk_X509_value(cert_sk, i);
1233
1234             j = x->cert_info->serialNumber->length;
1235             p = (const char *)x->cert_info->serialNumber->data;
1236
1237             if (strlen(outdir) >= (size_t)(j ? BSIZE - j * 2 - 6 : BSIZE - 8)) {
1238                 BIO_printf(bio_err, "certificate file name too long\n");
1239                 goto err;
1240             }
1241
1242             strcpy(buf[2], outdir);
1243
1244 #ifndef OPENSSL_SYS_VMS
1245             BUF_strlcat(buf[2], "/", sizeof(buf[2]));
1246 #endif
1247
1248             n = (char *)&(buf[2][strlen(buf[2])]);
1249             if (j > 0) {
1250                 for (k = 0; k < j; k++) {
1251                     if (n >= &(buf[2][sizeof(buf[2])]))
1252                         break;
1253                     BIO_snprintf(n,
1254                                  &buf[2][0] + sizeof(buf[2]) - n,
1255                                  "%02X", (unsigned char)*(p++));
1256                     n += 2;
1257                 }
1258             } else {
1259                 *(n++) = '0';
1260                 *(n++) = '0';
1261             }
1262             *(n++) = '.';
1263             *(n++) = 'p';
1264             *(n++) = 'e';
1265             *(n++) = 'm';
1266             *n = '\0';
1267             if (verbose)
1268                 BIO_printf(bio_err, "writing %s\n", buf[2]);
1269
1270             if (BIO_write_filename(Cout, buf[2]) <= 0) {
1271                 perror(buf[2]);
1272                 goto err;
1273             }
1274             write_new_certificate(Cout, x, 0, notext);
1275             write_new_certificate(Sout, x, output_der, notext);
1276         }
1277
1278         if (sk_X509_num(cert_sk)) {
1279             /* Rename the database and the serial file */
1280             if (!rotate_serial(serialfile, "new", "old"))
1281                 goto err;
1282
1283             if (!rotate_index(dbfile, "new", "old"))
1284                 goto err;
1285
1286             BIO_printf(bio_err, "Data Base Updated\n");
1287         }
1288     }
1289
1290         /*****************************************************************/
1291     if (gencrl) {
1292         int crl_v2 = 0;
1293         if (!crl_ext) {
1294             crl_ext = NCONF_get_string(conf, section, ENV_CRLEXT);
1295             if (!crl_ext)
1296                 ERR_clear_error();
1297         }
1298         if (crl_ext) {
1299             /* Check syntax of file */
1300             X509V3_CTX ctx;
1301             X509V3_set_ctx_test(&ctx);
1302             X509V3_set_nconf(&ctx, conf);
1303             if (!X509V3_EXT_add_nconf(conf, &ctx, crl_ext, NULL)) {
1304                 BIO_printf(bio_err,
1305                            "Error Loading CRL extension section %s\n",
1306                            crl_ext);
1307                 ret = 1;
1308                 goto err;
1309             }
1310         }
1311
1312         if ((crlnumberfile = NCONF_get_string(conf, section, ENV_CRLNUMBER))
1313             != NULL)
1314             if ((crlnumber = load_serial(crlnumberfile, 0, NULL)) == NULL) {
1315                 BIO_printf(bio_err, "error while loading CRL number\n");
1316                 goto err;
1317             }
1318
1319         if (!crldays && !crlhours && !crlsec) {
1320             if (!NCONF_get_number(conf, section,
1321                                   ENV_DEFAULT_CRL_DAYS, &crldays))
1322                 crldays = 0;
1323             if (!NCONF_get_number(conf, section,
1324                                   ENV_DEFAULT_CRL_HOURS, &crlhours))
1325                 crlhours = 0;
1326             ERR_clear_error();
1327         }
1328         if ((crldays == 0) && (crlhours == 0) && (crlsec == 0)) {
1329             BIO_printf(bio_err,
1330                        "cannot lookup how long until the next CRL is issued\n");
1331             goto err;
1332         }
1333
1334         if (verbose)
1335             BIO_printf(bio_err, "making CRL\n");
1336         if ((crl = X509_CRL_new()) == NULL)
1337             goto err;
1338         if (!X509_CRL_set_issuer_name(crl, X509_get_subject_name(x509)))
1339             goto err;
1340
1341         tmptm = ASN1_TIME_new();
1342         if (!tmptm)
1343             goto err;
1344         X509_gmtime_adj(tmptm, 0);
1345         X509_CRL_set_lastUpdate(crl, tmptm);
1346         if (!X509_time_adj_ex(tmptm, crldays, crlhours * 60 * 60 + crlsec,
1347                               NULL)) {
1348             BIO_puts(bio_err, "error setting CRL nextUpdate\n");
1349             goto err;
1350         }
1351         X509_CRL_set_nextUpdate(crl, tmptm);
1352
1353         ASN1_TIME_free(tmptm);
1354
1355         for (i = 0; i < sk_OPENSSL_PSTRING_num(db->db->data); i++) {
1356             pp = sk_OPENSSL_PSTRING_value(db->db->data, i);
1357             if (pp[DB_type][0] == DB_TYPE_REV) {
1358                 if ((r = X509_REVOKED_new()) == NULL)
1359                     goto err;
1360                 j = make_revoked(r, pp[DB_rev_date]);
1361                 if (!j)
1362                     goto err;
1363                 if (j == 2)
1364                     crl_v2 = 1;
1365                 if (!BN_hex2bn(&serial, pp[DB_serial]))
1366                     goto err;
1367                 tmpser = BN_to_ASN1_INTEGER(serial, NULL);
1368                 BN_free(serial);
1369                 serial = NULL;
1370                 if (!tmpser)
1371                     goto err;
1372                 X509_REVOKED_set_serialNumber(r, tmpser);
1373                 ASN1_INTEGER_free(tmpser);
1374                 X509_CRL_add0_revoked(crl, r);
1375             }
1376         }
1377
1378         /*
1379          * sort the data so it will be written in serial number order
1380          */
1381         X509_CRL_sort(crl);
1382
1383         /* we now have a CRL */
1384         if (verbose)
1385             BIO_printf(bio_err, "signing CRL\n");
1386
1387         /* Add any extensions asked for */
1388
1389         if (crl_ext || crlnumberfile != NULL) {
1390             X509V3_CTX crlctx;
1391             X509V3_set_ctx(&crlctx, x509, NULL, NULL, crl, 0);
1392             X509V3_set_nconf(&crlctx, conf);
1393
1394             if (crl_ext)
1395                 if (!X509V3_EXT_CRL_add_nconf(conf, &crlctx, crl_ext, crl))
1396                     goto err;
1397             if (crlnumberfile != NULL) {
1398                 tmpser = BN_to_ASN1_INTEGER(crlnumber, NULL);
1399                 if (!tmpser)
1400                     goto err;
1401                 X509_CRL_add1_ext_i2d(crl, NID_crl_number, tmpser, 0, 0);
1402                 ASN1_INTEGER_free(tmpser);
1403                 crl_v2 = 1;
1404                 if (!BN_add_word(crlnumber, 1))
1405                     goto err;
1406             }
1407         }
1408         if (crl_ext || crl_v2) {
1409             if (!X509_CRL_set_version(crl, 1))
1410                 goto err;       /* version 2 CRL */
1411         }
1412
1413         /* we have a CRL number that need updating */
1414         if (crlnumberfile != NULL)
1415             if (!save_serial(crlnumberfile, "new", crlnumber, NULL))
1416                 goto err;
1417
1418         if (crlnumber) {
1419             BN_free(crlnumber);
1420             crlnumber = NULL;
1421         }
1422
1423         if (!do_X509_CRL_sign(bio_err, crl, pkey, dgst, sigopts))
1424             goto err;
1425
1426         PEM_write_bio_X509_CRL(Sout, crl);
1427
1428         if (crlnumberfile != NULL) /* Rename the crlnumber file */
1429             if (!rotate_serial(crlnumberfile, "new", "old"))
1430                 goto err;
1431
1432     }
1433         /*****************************************************************/
1434     if (dorevoke) {
1435         if (infile == NULL) {
1436             BIO_printf(bio_err, "no input files\n");
1437             goto err;
1438         } else {
1439             X509 *revcert;
1440             revcert = load_cert(bio_err, infile, FORMAT_PEM, NULL, e, infile);
1441             if (revcert == NULL)
1442                 goto err;
1443             if (dorevoke == 2)
1444                 rev_type = -1;
1445             j = do_revoke(revcert, db, rev_type, rev_arg);
1446             if (j <= 0)
1447                 goto err;
1448             X509_free(revcert);
1449
1450             if (!save_index(dbfile, "new", db))
1451                 goto err;
1452
1453             if (!rotate_index(dbfile, "new", "old"))
1454                 goto err;
1455
1456             BIO_printf(bio_err, "Data Base Updated\n");
1457         }
1458     }
1459         /*****************************************************************/
1460     ret = 0;
1461  err:
1462     if (tofree)
1463         OPENSSL_free(tofree);
1464     BIO_free_all(Cout);
1465     BIO_free_all(Sout);
1466     BIO_free_all(out);
1467     BIO_free_all(in);
1468
1469     if (cert_sk)
1470         sk_X509_pop_free(cert_sk, X509_free);
1471
1472     if (ret)
1473         ERR_print_errors(bio_err);
1474     app_RAND_write_file(randfile, bio_err);
1475     if (free_key && key)
1476         OPENSSL_free(key);
1477     BN_free(serial);
1478     BN_free(crlnumber);
1479     free_index(db);
1480     if (sigopts)
1481         sk_OPENSSL_STRING_free(sigopts);
1482     EVP_PKEY_free(pkey);
1483     if (x509)
1484         X509_free(x509);
1485     X509_CRL_free(crl);
1486     NCONF_free(conf);
1487     NCONF_free(extconf);
1488     release_engine(e);
1489     OBJ_cleanup();
1490     apps_shutdown();
1491     OPENSSL_EXIT(ret);
1492 }
1493
1494 static void lookup_fail(const char *name, const char *tag)
1495 {
1496     BIO_printf(bio_err, "variable lookup failed for %s::%s\n", name, tag);
1497 }
1498
1499 static int certify(X509 **xret, char *infile, EVP_PKEY *pkey, X509 *x509,
1500                    const EVP_MD *dgst, STACK_OF(OPENSSL_STRING) *sigopts,
1501                    STACK_OF(CONF_VALUE) *policy, CA_DB *db,
1502                    BIGNUM *serial, char *subj, unsigned long chtype,
1503                    int multirdn, int email_dn, char *startdate, char *enddate,
1504                    long days, int batch, char *ext_sect, CONF *lconf,
1505                    int verbose, unsigned long certopt, unsigned long nameopt,
1506                    int default_op, int ext_copy, int selfsign)
1507 {
1508     X509_REQ *req = NULL;
1509     BIO *in = NULL;
1510     EVP_PKEY *pktmp = NULL;
1511     int ok = -1, i;
1512
1513     in = BIO_new(BIO_s_file());
1514
1515     if (BIO_read_filename(in, infile) <= 0) {
1516         perror(infile);
1517         goto err;
1518     }
1519     if ((req = PEM_read_bio_X509_REQ(in, NULL, NULL, NULL)) == NULL) {
1520         BIO_printf(bio_err, "Error reading certificate request in %s\n",
1521                    infile);
1522         goto err;
1523     }
1524     if (verbose)
1525         X509_REQ_print(bio_err, req);
1526
1527     BIO_printf(bio_err, "Check that the request matches the signature\n");
1528
1529     if (selfsign && !X509_REQ_check_private_key(req, pkey)) {
1530         BIO_printf(bio_err,
1531                    "Certificate request and CA private key do not match\n");
1532         ok = 0;
1533         goto err;
1534     }
1535     if ((pktmp = X509_REQ_get_pubkey(req)) == NULL) {
1536         BIO_printf(bio_err, "error unpacking public key\n");
1537         goto err;
1538     }
1539     i = X509_REQ_verify(req, pktmp);
1540     EVP_PKEY_free(pktmp);
1541     if (i < 0) {
1542         ok = 0;
1543         BIO_printf(bio_err, "Signature verification problems....\n");
1544         ERR_print_errors(bio_err);
1545         goto err;
1546     }
1547     if (i == 0) {
1548         ok = 0;
1549         BIO_printf(bio_err,
1550                    "Signature did not match the certificate request\n");
1551         ERR_print_errors(bio_err);
1552         goto err;
1553     } else
1554         BIO_printf(bio_err, "Signature ok\n");
1555
1556     ok = do_body(xret, pkey, x509, dgst, sigopts, policy, db, serial, subj,
1557                  chtype, multirdn, email_dn, startdate, enddate, days, batch,
1558                  verbose, req, ext_sect, lconf, certopt, nameopt, default_op,
1559                  ext_copy, selfsign);
1560
1561  err:
1562     if (req != NULL)
1563         X509_REQ_free(req);
1564     if (in != NULL)
1565         BIO_free(in);
1566     return (ok);
1567 }
1568
1569 static int certify_cert(X509 **xret, char *infile, EVP_PKEY *pkey, X509 *x509,
1570                         const EVP_MD *dgst, STACK_OF(OPENSSL_STRING) *sigopts,
1571                         STACK_OF(CONF_VALUE) *policy, CA_DB *db,
1572                         BIGNUM *serial, char *subj, unsigned long chtype,
1573                         int multirdn, int email_dn, char *startdate,
1574                         char *enddate, long days, int batch, char *ext_sect,
1575                         CONF *lconf, int verbose, unsigned long certopt,
1576                         unsigned long nameopt, int default_op, int ext_copy,
1577                         ENGINE *e)
1578 {
1579     X509 *req = NULL;
1580     X509_REQ *rreq = NULL;
1581     EVP_PKEY *pktmp = NULL;
1582     int ok = -1, i;
1583
1584     if ((req =
1585          load_cert(bio_err, infile, FORMAT_PEM, NULL, e, infile)) == NULL)
1586         goto err;
1587     if (verbose)
1588         X509_print(bio_err, req);
1589
1590     BIO_printf(bio_err, "Check that the request matches the signature\n");
1591
1592     if ((pktmp = X509_get_pubkey(req)) == NULL) {
1593         BIO_printf(bio_err, "error unpacking public key\n");
1594         goto err;
1595     }
1596     i = X509_verify(req, pktmp);
1597     EVP_PKEY_free(pktmp);
1598     if (i < 0) {
1599         ok = 0;
1600         BIO_printf(bio_err, "Signature verification problems....\n");
1601         goto err;
1602     }
1603     if (i == 0) {
1604         ok = 0;
1605         BIO_printf(bio_err, "Signature did not match the certificate\n");
1606         goto err;
1607     } else
1608         BIO_printf(bio_err, "Signature ok\n");
1609
1610     if ((rreq = X509_to_X509_REQ(req, NULL, EVP_md5())) == NULL)
1611         goto err;
1612
1613     ok = do_body(xret, pkey, x509, dgst, sigopts, policy, db, serial, subj,
1614                  chtype, multirdn, email_dn, startdate, enddate, days, batch,
1615                  verbose, rreq, ext_sect, lconf, certopt, nameopt, default_op,
1616                  ext_copy, 0);
1617
1618  err:
1619     if (rreq != NULL)
1620         X509_REQ_free(rreq);
1621     if (req != NULL)
1622         X509_free(req);
1623     return (ok);
1624 }
1625
1626 static int do_body(X509 **xret, EVP_PKEY *pkey, X509 *x509,
1627                    const EVP_MD *dgst, STACK_OF(OPENSSL_STRING) *sigopts,
1628                    STACK_OF(CONF_VALUE) *policy, CA_DB *db, BIGNUM *serial,
1629                    char *subj, unsigned long chtype, int multirdn,
1630                    int email_dn, char *startdate, char *enddate, long days,
1631                    int batch, int verbose, X509_REQ *req, char *ext_sect,
1632                    CONF *lconf, unsigned long certopt, unsigned long nameopt,
1633                    int default_op, int ext_copy, int selfsign)
1634 {
1635     X509_NAME *name = NULL, *CAname = NULL, *subject = NULL, *dn_subject =
1636         NULL;
1637     ASN1_UTCTIME *tm, *tmptm;
1638     ASN1_STRING *str, *str2;
1639     ASN1_OBJECT *obj;
1640     X509 *ret = NULL;
1641     X509_CINF *ci;
1642     X509_NAME_ENTRY *ne;
1643     X509_NAME_ENTRY *tne, *push;
1644     EVP_PKEY *pktmp;
1645     int ok = -1, i, j, last, nid;
1646     const char *p;
1647     CONF_VALUE *cv;
1648     OPENSSL_STRING row[DB_NUMBER];
1649     OPENSSL_STRING *irow = NULL;
1650     OPENSSL_STRING *rrow = NULL;
1651     char buf[25];
1652
1653     tmptm = ASN1_UTCTIME_new();
1654     if (tmptm == NULL) {
1655         BIO_printf(bio_err, "malloc error\n");
1656         return (0);
1657     }
1658
1659     for (i = 0; i < DB_NUMBER; i++)
1660         row[i] = NULL;
1661
1662     if (subj) {
1663         X509_NAME *n = parse_name(subj, chtype, multirdn);
1664
1665         if (!n) {
1666             ERR_print_errors(bio_err);
1667             goto err;
1668         }
1669         X509_REQ_set_subject_name(req, n);
1670         req->req_info->enc.modified = 1;
1671         X509_NAME_free(n);
1672     }
1673
1674     if (default_op)
1675         BIO_printf(bio_err,
1676                    "The Subject's Distinguished Name is as follows\n");
1677
1678     name = X509_REQ_get_subject_name(req);
1679     if (X509_NAME_entry_count(name) == 0) {
1680         BIO_printf(bio_err, "Error: The supplied Subject is empty\n");
1681         goto err;
1682     }
1683     for (i = 0; i < X509_NAME_entry_count(name); i++) {
1684         ne = X509_NAME_get_entry(name, i);
1685         str = X509_NAME_ENTRY_get_data(ne);
1686         obj = X509_NAME_ENTRY_get_object(ne);
1687
1688         if (msie_hack) {
1689             /* assume all type should be strings */
1690             nid = OBJ_obj2nid(ne->object);
1691
1692             if (str->type == V_ASN1_UNIVERSALSTRING)
1693                 ASN1_UNIVERSALSTRING_to_string(str);
1694
1695             if ((str->type == V_ASN1_IA5STRING) &&
1696                 (nid != NID_pkcs9_emailAddress))
1697                 str->type = V_ASN1_T61STRING;
1698
1699             if ((nid == NID_pkcs9_emailAddress) &&
1700                 (str->type == V_ASN1_PRINTABLESTRING))
1701                 str->type = V_ASN1_IA5STRING;
1702         }
1703
1704         /* If no EMAIL is wanted in the subject */
1705         if ((OBJ_obj2nid(obj) == NID_pkcs9_emailAddress) && (!email_dn))
1706             continue;
1707
1708         /* check some things */
1709         if ((OBJ_obj2nid(obj) == NID_pkcs9_emailAddress) &&
1710             (str->type != V_ASN1_IA5STRING)) {
1711             BIO_printf(bio_err,
1712                        "\nemailAddress type needs to be of type IA5STRING\n");
1713             goto err;
1714         }
1715         if ((str->type != V_ASN1_BMPSTRING)
1716             && (str->type != V_ASN1_UTF8STRING)) {
1717             j = ASN1_PRINTABLE_type(str->data, str->length);
1718             if (((j == V_ASN1_T61STRING) &&
1719                  (str->type != V_ASN1_T61STRING)) ||
1720                 ((j == V_ASN1_IA5STRING) &&
1721                  (str->type == V_ASN1_PRINTABLESTRING))) {
1722                 BIO_printf(bio_err,
1723                            "\nThe string contains characters that are illegal for the ASN.1 type\n");
1724                 goto err;
1725             }
1726         }
1727
1728         if (default_op)
1729             old_entry_print(bio_err, obj, str);
1730     }
1731
1732     /* Ok, now we check the 'policy' stuff. */
1733     if ((subject = X509_NAME_new()) == NULL) {
1734         BIO_printf(bio_err, "Memory allocation failure\n");
1735         goto err;
1736     }
1737
1738     /* take a copy of the issuer name before we mess with it. */
1739     if (selfsign)
1740         CAname = X509_NAME_dup(name);
1741     else
1742         CAname = X509_NAME_dup(x509->cert_info->subject);
1743     if (CAname == NULL)
1744         goto err;
1745     str = str2 = NULL;
1746
1747     for (i = 0; i < sk_CONF_VALUE_num(policy); i++) {
1748         cv = sk_CONF_VALUE_value(policy, i); /* get the object id */
1749         if ((j = OBJ_txt2nid(cv->name)) == NID_undef) {
1750             BIO_printf(bio_err,
1751                        "%s:unknown object type in 'policy' configuration\n",
1752                        cv->name);
1753             goto err;
1754         }
1755         obj = OBJ_nid2obj(j);
1756
1757         last = -1;
1758         for (;;) {
1759             /* lookup the object in the supplied name list */
1760             j = X509_NAME_get_index_by_OBJ(name, obj, last);
1761             if (j < 0) {
1762                 if (last != -1)
1763                     break;
1764                 tne = NULL;
1765             } else {
1766                 tne = X509_NAME_get_entry(name, j);
1767             }
1768             last = j;
1769
1770             /* depending on the 'policy', decide what to do. */
1771             push = NULL;
1772             if (strcmp(cv->value, "optional") == 0) {
1773                 if (tne != NULL)
1774                     push = tne;
1775             } else if (strcmp(cv->value, "supplied") == 0) {
1776                 if (tne == NULL) {
1777                     BIO_printf(bio_err,
1778                                "The %s field needed to be supplied and was missing\n",
1779                                cv->name);
1780                     goto err;
1781                 } else
1782                     push = tne;
1783             } else if (strcmp(cv->value, "match") == 0) {
1784                 int last2;
1785
1786                 if (tne == NULL) {
1787                     BIO_printf(bio_err,
1788                                "The mandatory %s field was missing\n",
1789                                cv->name);
1790                     goto err;
1791                 }
1792
1793                 last2 = -1;
1794
1795  again2:
1796                 j = X509_NAME_get_index_by_OBJ(CAname, obj, last2);
1797                 if ((j < 0) && (last2 == -1)) {
1798                     BIO_printf(bio_err,
1799                                "The %s field does not exist in the CA certificate,\nthe 'policy' is misconfigured\n",
1800                                cv->name);
1801                     goto err;
1802                 }
1803                 if (j >= 0) {
1804                     push = X509_NAME_get_entry(CAname, j);
1805                     str = X509_NAME_ENTRY_get_data(tne);
1806                     str2 = X509_NAME_ENTRY_get_data(push);
1807                     last2 = j;
1808                     if (ASN1_STRING_cmp(str, str2) != 0)
1809                         goto again2;
1810                 }
1811                 if (j < 0) {
1812                     BIO_printf(bio_err,
1813                                "The %s field needed to be the same in the\nCA certificate (%s) and the request (%s)\n",
1814                                cv->name,
1815                                ((str2 == NULL) ? "NULL" : (char *)str2->data),
1816                                ((str == NULL) ? "NULL" : (char *)str->data));
1817                     goto err;
1818                 }
1819             } else {
1820                 BIO_printf(bio_err,
1821                            "%s:invalid type in 'policy' configuration\n",
1822                            cv->value);
1823                 goto err;
1824             }
1825
1826             if (push != NULL) {
1827                 if (!X509_NAME_add_entry(subject, push, -1, 0)) {
1828                     if (push != NULL)
1829                         X509_NAME_ENTRY_free(push);
1830                     BIO_printf(bio_err, "Memory allocation failure\n");
1831                     goto err;
1832                 }
1833             }
1834             if (j < 0)
1835                 break;
1836         }
1837     }
1838
1839     if (preserve) {
1840         X509_NAME_free(subject);
1841         /* subject=X509_NAME_dup(X509_REQ_get_subject_name(req)); */
1842         subject = X509_NAME_dup(name);
1843         if (subject == NULL)
1844             goto err;
1845     }
1846
1847     if (X509_NAME_entry_count(subject) == 0) {
1848         BIO_printf(bio_err,
1849                    "Error: After applying policy the Subject is empty\n");
1850         goto err;
1851     }
1852
1853     if (verbose)
1854         BIO_printf(bio_err,
1855                    "The subject name appears to be ok, checking data base for clashes\n");
1856
1857     /* Build the correct Subject if no e-mail is wanted in the subject */
1858     /*
1859      * and add it later on because of the method extensions are added
1860      * (altName)
1861      */
1862
1863     if (email_dn)
1864         dn_subject = subject;
1865     else {
1866         X509_NAME_ENTRY *tmpne;
1867         /*
1868          * Its best to dup the subject DN and then delete any email addresses
1869          * because this retains its structure.
1870          */
1871         if (!(dn_subject = X509_NAME_dup(subject))) {
1872             BIO_printf(bio_err, "Memory allocation failure\n");
1873             goto err;
1874         }
1875         while ((i = X509_NAME_get_index_by_NID(dn_subject,
1876                                                NID_pkcs9_emailAddress,
1877                                                -1)) >= 0) {
1878             tmpne = X509_NAME_get_entry(dn_subject, i);
1879             X509_NAME_delete_entry(dn_subject, i);
1880             X509_NAME_ENTRY_free(tmpne);
1881         }
1882     }
1883
1884     if (BN_is_zero(serial))
1885         row[DB_serial] = BUF_strdup("00");
1886     else
1887         row[DB_serial] = BN_bn2hex(serial);
1888     if (row[DB_serial] == NULL) {
1889         BIO_printf(bio_err, "Memory allocation failure\n");
1890         goto err;
1891     }
1892
1893     if (db->attributes.unique_subject) {
1894         OPENSSL_STRING *crow = row;
1895
1896         rrow = TXT_DB_get_by_index(db->db, DB_name, crow);
1897         if (rrow != NULL) {
1898             BIO_printf(bio_err,
1899                        "ERROR:There is already a certificate for %s\n",
1900                        row[DB_name]);
1901         }
1902     }
1903     if (rrow == NULL) {
1904         rrow = TXT_DB_get_by_index(db->db, DB_serial, row);
1905         if (rrow != NULL) {
1906             BIO_printf(bio_err,
1907                        "ERROR:Serial number %s has already been issued,\n",
1908                        row[DB_serial]);
1909             BIO_printf(bio_err,
1910                        "      check the database/serial_file for corruption\n");
1911         }
1912     }
1913
1914     if (rrow != NULL) {
1915         BIO_printf(bio_err, "The matching entry has the following details\n");
1916         if (rrow[DB_type][0] == 'E')
1917             p = "Expired";
1918         else if (rrow[DB_type][0] == 'R')
1919             p = "Revoked";
1920         else if (rrow[DB_type][0] == 'V')
1921             p = "Valid";
1922         else
1923             p = "\ninvalid type, Data base error\n";
1924         BIO_printf(bio_err, "Type          :%s\n", p);;
1925         if (rrow[DB_type][0] == 'R') {
1926             p = rrow[DB_exp_date];
1927             if (p == NULL)
1928                 p = "undef";
1929             BIO_printf(bio_err, "Was revoked on:%s\n", p);
1930         }
1931         p = rrow[DB_exp_date];
1932         if (p == NULL)
1933             p = "undef";
1934         BIO_printf(bio_err, "Expires on    :%s\n", p);
1935         p = rrow[DB_serial];
1936         if (p == NULL)
1937             p = "undef";
1938         BIO_printf(bio_err, "Serial Number :%s\n", p);
1939         p = rrow[DB_file];
1940         if (p == NULL)
1941             p = "undef";
1942         BIO_printf(bio_err, "File name     :%s\n", p);
1943         p = rrow[DB_name];
1944         if (p == NULL)
1945             p = "undef";
1946         BIO_printf(bio_err, "Subject Name  :%s\n", p);
1947         ok = -1;                /* This is now a 'bad' error. */
1948         goto err;
1949     }
1950
1951     /* We are now totally happy, lets make and sign the certificate */
1952     if (verbose)
1953         BIO_printf(bio_err,
1954                    "Everything appears to be ok, creating and signing the certificate\n");
1955
1956     if ((ret = X509_new()) == NULL)
1957         goto err;
1958     ci = ret->cert_info;
1959
1960 #ifdef X509_V3
1961     /* Make it an X509 v3 certificate. */
1962     if (!X509_set_version(ret, 2))
1963         goto err;
1964 #endif
1965
1966     if (BN_to_ASN1_INTEGER(serial, ci->serialNumber) == NULL)
1967         goto err;
1968     if (selfsign) {
1969         if (!X509_set_issuer_name(ret, subject))
1970             goto err;
1971     } else {
1972         if (!X509_set_issuer_name(ret, X509_get_subject_name(x509)))
1973             goto err;
1974     }
1975
1976     if (strcmp(startdate, "today") == 0)
1977         X509_gmtime_adj(X509_get_notBefore(ret), 0);
1978     else
1979         ASN1_TIME_set_string(X509_get_notBefore(ret), startdate);
1980
1981     if (enddate == NULL)
1982         X509_time_adj_ex(X509_get_notAfter(ret), days, 0, NULL);
1983     else {
1984         int tdays;
1985         ASN1_TIME_set_string(X509_get_notAfter(ret), enddate);
1986         ASN1_TIME_diff(&tdays, NULL, NULL, X509_get_notAfter(ret));
1987         days = tdays;
1988     }
1989
1990     if (!X509_set_subject_name(ret, subject))
1991         goto err;
1992
1993     pktmp = X509_REQ_get_pubkey(req);
1994     i = X509_set_pubkey(ret, pktmp);
1995     EVP_PKEY_free(pktmp);
1996     if (!i)
1997         goto err;
1998
1999     /* Lets add the extensions, if there are any */
2000     if (ext_sect) {
2001         X509V3_CTX ctx;
2002
2003         /*
2004          * Free the current entries if any, there should not be any I believe
2005          */
2006         if (ci->extensions != NULL)
2007             sk_X509_EXTENSION_pop_free(ci->extensions, X509_EXTENSION_free);
2008
2009         ci->extensions = NULL;
2010
2011         /* Initialize the context structure */
2012         if (selfsign)
2013             X509V3_set_ctx(&ctx, ret, ret, req, NULL, 0);
2014         else
2015             X509V3_set_ctx(&ctx, x509, ret, req, NULL, 0);
2016
2017         if (extconf) {
2018             if (verbose)
2019                 BIO_printf(bio_err, "Extra configuration file found\n");
2020
2021             /* Use the extconf configuration db LHASH */
2022             X509V3_set_nconf(&ctx, extconf);
2023
2024             /* Test the structure (needed?) */
2025             /* X509V3_set_ctx_test(&ctx); */
2026
2027             /* Adds exts contained in the configuration file */
2028             if (!X509V3_EXT_add_nconf(extconf, &ctx, ext_sect, ret)) {
2029                 BIO_printf(bio_err,
2030                            "ERROR: adding extensions in section %s\n",
2031                            ext_sect);
2032                 ERR_print_errors(bio_err);
2033                 goto err;
2034             }
2035             if (verbose)
2036                 BIO_printf(bio_err,
2037                            "Successfully added extensions from file.\n");
2038         } else if (ext_sect) {
2039             /* We found extensions to be set from config file */
2040             X509V3_set_nconf(&ctx, lconf);
2041
2042             if (!X509V3_EXT_add_nconf(lconf, &ctx, ext_sect, ret)) {
2043                 BIO_printf(bio_err,
2044                            "ERROR: adding extensions in section %s\n",
2045                            ext_sect);
2046                 ERR_print_errors(bio_err);
2047                 goto err;
2048             }
2049
2050             if (verbose)
2051                 BIO_printf(bio_err,
2052                            "Successfully added extensions from config\n");
2053         }
2054     }
2055
2056     /* Copy extensions from request (if any) */
2057
2058     if (!copy_extensions(ret, req, ext_copy)) {
2059         BIO_printf(bio_err, "ERROR: adding extensions from request\n");
2060         ERR_print_errors(bio_err);
2061         goto err;
2062     }
2063
2064     {
2065         STACK_OF(X509_EXTENSION) *exts = ci->extensions;
2066
2067         if (exts != NULL && sk_X509_EXTENSION_num(exts) > 0)
2068             /* Make it an X509 v3 certificate. */
2069             if (!X509_set_version(ret, 2))
2070                 goto err;
2071     }
2072
2073     /* Set the right value for the noemailDN option */
2074     if (email_dn == 0) {
2075         if (!X509_set_subject_name(ret, dn_subject))
2076             goto err;
2077     }
2078
2079     if (!default_op) {
2080         BIO_printf(bio_err, "Certificate Details:\n");
2081         /*
2082          * Never print signature details because signature not present
2083          */
2084         certopt |= X509_FLAG_NO_SIGDUMP | X509_FLAG_NO_SIGNAME;
2085         X509_print_ex(bio_err, ret, nameopt, certopt);
2086     }
2087
2088     BIO_printf(bio_err, "Certificate is to be certified until ");
2089     ASN1_TIME_print(bio_err, X509_get_notAfter(ret));
2090     if (days)
2091         BIO_printf(bio_err, " (%ld days)", days);
2092     BIO_printf(bio_err, "\n");
2093
2094     if (!batch) {
2095
2096         BIO_printf(bio_err, "Sign the certificate? [y/n]:");
2097         (void)BIO_flush(bio_err);
2098         buf[0] = '\0';
2099         if (!fgets(buf, sizeof(buf) - 1, stdin)) {
2100             BIO_printf(bio_err,
2101                        "CERTIFICATE WILL NOT BE CERTIFIED: I/O error\n");
2102             ok = 0;
2103             goto err;
2104         }
2105         if (!((buf[0] == 'y') || (buf[0] == 'Y'))) {
2106             BIO_printf(bio_err, "CERTIFICATE WILL NOT BE CERTIFIED\n");
2107             ok = 0;
2108             goto err;
2109         }
2110     }
2111
2112     pktmp = X509_get_pubkey(ret);
2113     if (EVP_PKEY_missing_parameters(pktmp) &&
2114         !EVP_PKEY_missing_parameters(pkey))
2115         EVP_PKEY_copy_parameters(pktmp, pkey);
2116     EVP_PKEY_free(pktmp);
2117
2118     if (!do_X509_sign(bio_err, ret, pkey, dgst, sigopts))
2119         goto err;
2120
2121     /* We now just add it to the database */
2122     tm = X509_get_notAfter(ret);
2123     row[DB_type] = OPENSSL_malloc(2);
2124     row[DB_exp_date] = OPENSSL_malloc(tm->length + 1);
2125     row[DB_rev_date] = OPENSSL_malloc(1);
2126     row[DB_file] = OPENSSL_malloc(8);
2127     row[DB_name] = X509_NAME_oneline(X509_get_subject_name(ret), NULL, 0);
2128     if ((row[DB_type] == NULL) || (row[DB_exp_date] == NULL) ||
2129         (row[DB_rev_date] == NULL) ||
2130         (row[DB_file] == NULL) || (row[DB_name] == NULL)) {
2131         BIO_printf(bio_err, "Memory allocation failure\n");
2132         goto err;
2133     }
2134
2135     memcpy(row[DB_exp_date], tm->data, tm->length);
2136     row[DB_exp_date][tm->length] = '\0';
2137     row[DB_rev_date][0] = '\0';
2138     strcpy(row[DB_file], "unknown");
2139     row[DB_type][0] = 'V';
2140     row[DB_type][1] = '\0';
2141
2142     if ((irow =
2143          (char **)OPENSSL_malloc(sizeof(char *) * (DB_NUMBER + 1))) == NULL) {
2144         BIO_printf(bio_err, "Memory allocation failure\n");
2145         goto err;
2146     }
2147
2148     for (i = 0; i < DB_NUMBER; i++)
2149         irow[i] = row[i];
2150     irow[DB_NUMBER] = NULL;
2151
2152     if (!TXT_DB_insert(db->db, irow)) {
2153         BIO_printf(bio_err, "failed to update database\n");
2154         BIO_printf(bio_err, "TXT_DB error number %ld\n", db->db->error);
2155         goto err;
2156     }
2157     irow = NULL;
2158     ok = 1;
2159  err:
2160     if (irow != NULL) {
2161         for (i = 0; i < DB_NUMBER; i++)
2162             OPENSSL_free(row[i]);
2163         OPENSSL_free(irow);
2164     }
2165
2166     if (CAname != NULL)
2167         X509_NAME_free(CAname);
2168     if (subject != NULL)
2169         X509_NAME_free(subject);
2170     if ((dn_subject != NULL) && !email_dn)
2171         X509_NAME_free(dn_subject);
2172     if (tmptm != NULL)
2173         ASN1_UTCTIME_free(tmptm);
2174     if (ok <= 0) {
2175         if (ret != NULL)
2176             X509_free(ret);
2177         ret = NULL;
2178     } else
2179         *xret = ret;
2180     return (ok);
2181 }
2182
2183 static void write_new_certificate(BIO *bp, X509 *x, int output_der,
2184                                   int notext)
2185 {
2186
2187     if (output_der) {
2188         (void)i2d_X509_bio(bp, x);
2189         return;
2190     }
2191 #if 0
2192     /* ??? Not needed since X509_print prints all this stuff anyway */
2193     f = X509_NAME_oneline(X509_get_issuer_name(x), buf, 256);
2194     BIO_printf(bp, "issuer :%s\n", f);
2195
2196     f = X509_NAME_oneline(X509_get_subject_name(x), buf, 256);
2197     BIO_printf(bp, "subject:%s\n", f);
2198
2199     BIO_puts(bp, "serial :");
2200     i2a_ASN1_INTEGER(bp, x->cert_info->serialNumber);
2201     BIO_puts(bp, "\n\n");
2202 #endif
2203     if (!notext)
2204         X509_print(bp, x);
2205     PEM_write_bio_X509(bp, x);
2206 }
2207
2208 static int certify_spkac(X509 **xret, char *infile, EVP_PKEY *pkey,
2209                          X509 *x509, const EVP_MD *dgst,
2210                          STACK_OF(OPENSSL_STRING) *sigopts,
2211                          STACK_OF(CONF_VALUE) *policy, CA_DB *db,
2212                          BIGNUM *serial, char *subj, unsigned long chtype,
2213                          int multirdn, int email_dn, char *startdate,
2214                          char *enddate, long days, char *ext_sect,
2215                          CONF *lconf, int verbose, unsigned long certopt,
2216                          unsigned long nameopt, int default_op, int ext_copy)
2217 {
2218     STACK_OF(CONF_VALUE) *sk = NULL;
2219     LHASH_OF(CONF_VALUE) *parms = NULL;
2220     X509_REQ *req = NULL;
2221     CONF_VALUE *cv = NULL;
2222     NETSCAPE_SPKI *spki = NULL;
2223     X509_REQ_INFO *ri;
2224     char *type, *buf;
2225     EVP_PKEY *pktmp = NULL;
2226     X509_NAME *n = NULL;
2227     X509_NAME_ENTRY *ne = NULL;
2228     int ok = -1, i, j;
2229     long errline;
2230     int nid;
2231
2232     /*
2233      * Load input file into a hash table.  (This is just an easy
2234      * way to read and parse the file, then put it into a convenient
2235      * STACK format).
2236      */
2237     parms = CONF_load(NULL, infile, &errline);
2238     if (parms == NULL) {
2239         BIO_printf(bio_err, "error on line %ld of %s\n", errline, infile);
2240         ERR_print_errors(bio_err);
2241         goto err;
2242     }
2243
2244     sk = CONF_get_section(parms, "default");
2245     if (sk_CONF_VALUE_num(sk) == 0) {
2246         BIO_printf(bio_err, "no name/value pairs found in %s\n", infile);
2247         goto err;
2248     }
2249
2250     /*
2251      * Now create a dummy X509 request structure.  We don't actually
2252      * have an X509 request, but we have many of the components
2253      * (a public key, various DN components).  The idea is that we
2254      * put these components into the right X509 request structure
2255      * and we can use the same code as if you had a real X509 request.
2256      */
2257     req = X509_REQ_new();
2258     if (req == NULL) {
2259         ERR_print_errors(bio_err);
2260         goto err;
2261     }
2262
2263     /*
2264      * Build up the subject name set.
2265      */
2266     ri = req->req_info;
2267     n = ri->subject;
2268
2269     for (i = 0;; i++) {
2270         if (sk_CONF_VALUE_num(sk) <= i)
2271             break;
2272
2273         cv = sk_CONF_VALUE_value(sk, i);
2274         type = cv->name;
2275         /*
2276          * Skip past any leading X. X: X, etc to allow for multiple instances
2277          */
2278         for (buf = cv->name; *buf; buf++)
2279             if ((*buf == ':') || (*buf == ',') || (*buf == '.')) {
2280                 buf++;
2281                 if (*buf)
2282                     type = buf;
2283                 break;
2284             }
2285
2286         buf = cv->value;
2287         if ((nid = OBJ_txt2nid(type)) == NID_undef) {
2288             if (strcmp(type, "SPKAC") == 0) {
2289                 spki = NETSCAPE_SPKI_b64_decode(cv->value, -1);
2290                 if (spki == NULL) {
2291                     BIO_printf(bio_err,
2292                                "unable to load Netscape SPKAC structure\n");
2293                     ERR_print_errors(bio_err);
2294                     goto err;
2295                 }
2296             }
2297             continue;
2298         }
2299
2300         if (!X509_NAME_add_entry_by_NID(n, nid, chtype,
2301                                         (unsigned char *)buf, -1, -1, 0))
2302             goto err;
2303     }
2304     if (spki == NULL) {
2305         BIO_printf(bio_err, "Netscape SPKAC structure not found in %s\n",
2306                    infile);
2307         goto err;
2308     }
2309
2310     /*
2311      * Now extract the key from the SPKI structure.
2312      */
2313
2314     BIO_printf(bio_err,
2315                "Check that the SPKAC request matches the signature\n");
2316
2317     if ((pktmp = NETSCAPE_SPKI_get_pubkey(spki)) == NULL) {
2318         BIO_printf(bio_err, "error unpacking SPKAC public key\n");
2319         goto err;
2320     }
2321
2322     j = NETSCAPE_SPKI_verify(spki, pktmp);
2323     if (j <= 0) {
2324         EVP_PKEY_free(pktmp);
2325         BIO_printf(bio_err,
2326                    "signature verification failed on SPKAC public key\n");
2327         goto err;
2328     }
2329     BIO_printf(bio_err, "Signature ok\n");
2330
2331     X509_REQ_set_pubkey(req, pktmp);
2332     EVP_PKEY_free(pktmp);
2333     ok = do_body(xret, pkey, x509, dgst, sigopts, policy, db, serial, subj,
2334                  chtype, multirdn, email_dn, startdate, enddate, days, 1,
2335                  verbose, req, ext_sect, lconf, certopt, nameopt, default_op,
2336                  ext_copy, 0);
2337  err:
2338     if (req != NULL)
2339         X509_REQ_free(req);
2340     if (parms != NULL)
2341         CONF_free(parms);
2342     if (spki != NULL)
2343         NETSCAPE_SPKI_free(spki);
2344     if (ne != NULL)
2345         X509_NAME_ENTRY_free(ne);
2346
2347     return (ok);
2348 }
2349
2350 static int check_time_format(const char *str)
2351 {
2352     return ASN1_TIME_set_string(NULL, str);
2353 }
2354
2355 static int do_revoke(X509 *x509, CA_DB *db, int type, char *value)
2356 {
2357     ASN1_UTCTIME *tm = NULL;
2358     char *row[DB_NUMBER], **rrow, **irow;
2359     char *rev_str = NULL;
2360     BIGNUM *bn = NULL;
2361     int ok = -1, i;
2362
2363     for (i = 0; i < DB_NUMBER; i++)
2364         row[i] = NULL;
2365     row[DB_name] = X509_NAME_oneline(X509_get_subject_name(x509), NULL, 0);
2366     bn = ASN1_INTEGER_to_BN(X509_get_serialNumber(x509), NULL);
2367     if (!bn)
2368         goto err;
2369     if (BN_is_zero(bn))
2370         row[DB_serial] = BUF_strdup("00");
2371     else
2372         row[DB_serial] = BN_bn2hex(bn);
2373     BN_free(bn);
2374     if ((row[DB_name] == NULL) || (row[DB_serial] == NULL)) {
2375         BIO_printf(bio_err, "Memory allocation failure\n");
2376         goto err;
2377     }
2378     /*
2379      * We have to lookup by serial number because name lookup skips revoked
2380      * certs
2381      */
2382     rrow = TXT_DB_get_by_index(db->db, DB_serial, row);
2383     if (rrow == NULL) {
2384         BIO_printf(bio_err,
2385                    "Adding Entry with serial number %s to DB for %s\n",
2386                    row[DB_serial], row[DB_name]);
2387
2388         /* We now just add it to the database */
2389         row[DB_type] = (char *)OPENSSL_malloc(2);
2390
2391         tm = X509_get_notAfter(x509);
2392         row[DB_exp_date] = (char *)OPENSSL_malloc(tm->length + 1);
2393         memcpy(row[DB_exp_date], tm->data, tm->length);
2394         row[DB_exp_date][tm->length] = '\0';
2395
2396         row[DB_rev_date] = NULL;
2397
2398         /* row[DB_serial] done already */
2399         row[DB_file] = (char *)OPENSSL_malloc(8);
2400
2401         /* row[DB_name] done already */
2402
2403         if ((row[DB_type] == NULL) || (row[DB_exp_date] == NULL) ||
2404             (row[DB_file] == NULL)) {
2405             BIO_printf(bio_err, "Memory allocation failure\n");
2406             goto err;
2407         }
2408         BUF_strlcpy(row[DB_file], "unknown", 8);
2409         row[DB_type][0] = 'V';
2410         row[DB_type][1] = '\0';
2411
2412         if ((irow =
2413              (char **)OPENSSL_malloc(sizeof(char *) * (DB_NUMBER + 1))) ==
2414             NULL) {
2415             BIO_printf(bio_err, "Memory allocation failure\n");
2416             goto err;
2417         }
2418
2419         for (i = 0; i < DB_NUMBER; i++)
2420             irow[i] = row[i];
2421         irow[DB_NUMBER] = NULL;
2422
2423         if (!TXT_DB_insert(db->db, irow)) {
2424             BIO_printf(bio_err, "failed to update database\n");
2425             BIO_printf(bio_err, "TXT_DB error number %ld\n", db->db->error);
2426             OPENSSL_free(irow);
2427             goto err;
2428         }
2429
2430         for (i = 0; i < DB_NUMBER; i++)
2431             row[i] = NULL;
2432
2433         /* Revoke Certificate */
2434         if (type == -1)
2435             ok = 1;
2436         else
2437             ok = do_revoke(x509, db, type, value);
2438
2439         goto err;
2440
2441     } else if (index_name_cmp_noconst(row, rrow)) {
2442         BIO_printf(bio_err, "ERROR:name does not match %s\n", row[DB_name]);
2443         goto err;
2444     } else if (type == -1) {
2445         BIO_printf(bio_err, "ERROR:Already present, serial number %s\n",
2446                    row[DB_serial]);
2447         goto err;
2448     } else if (rrow[DB_type][0] == 'R') {
2449         BIO_printf(bio_err, "ERROR:Already revoked, serial number %s\n",
2450                    row[DB_serial]);
2451         goto err;
2452     } else {
2453         BIO_printf(bio_err, "Revoking Certificate %s.\n", rrow[DB_serial]);
2454         rev_str = make_revocation_str(type, value);
2455         if (!rev_str) {
2456             BIO_printf(bio_err, "Error in revocation arguments\n");
2457             goto err;
2458         }
2459         rrow[DB_type][0] = 'R';
2460         rrow[DB_type][1] = '\0';
2461         rrow[DB_rev_date] = rev_str;
2462     }
2463     ok = 1;
2464  err:
2465     for (i = 0; i < DB_NUMBER; i++) {
2466         if (row[i] != NULL)
2467             OPENSSL_free(row[i]);
2468     }
2469     return (ok);
2470 }
2471
2472 static int get_certificate_status(const char *serial, CA_DB *db)
2473 {
2474     char *row[DB_NUMBER], **rrow;
2475     int ok = -1, i;
2476
2477     /* Free Resources */
2478     for (i = 0; i < DB_NUMBER; i++)
2479         row[i] = NULL;
2480
2481     /* Malloc needed char spaces */
2482     row[DB_serial] = OPENSSL_malloc(strlen(serial) + 2);
2483     if (row[DB_serial] == NULL) {
2484         BIO_printf(bio_err, "Malloc failure\n");
2485         goto err;
2486     }
2487
2488     if (strlen(serial) % 2) {
2489         /*
2490          * Set the first char to 0
2491          */ ;
2492         row[DB_serial][0] = '0';
2493
2494         /* Copy String from serial to row[DB_serial] */
2495         memcpy(row[DB_serial] + 1, serial, strlen(serial));
2496         row[DB_serial][strlen(serial) + 1] = '\0';
2497     } else {
2498         /* Copy String from serial to row[DB_serial] */
2499         memcpy(row[DB_serial], serial, strlen(serial));
2500         row[DB_serial][strlen(serial)] = '\0';
2501     }
2502
2503     /* Make it Upper Case */
2504     for (i = 0; row[DB_serial][i] != '\0'; i++)
2505         row[DB_serial][i] = toupper((unsigned char)row[DB_serial][i]);
2506
2507     ok = 1;
2508
2509     /* Search for the certificate */
2510     rrow = TXT_DB_get_by_index(db->db, DB_serial, row);
2511     if (rrow == NULL) {
2512         BIO_printf(bio_err, "Serial %s not present in db.\n", row[DB_serial]);
2513         ok = -1;
2514         goto err;
2515     } else if (rrow[DB_type][0] == 'V') {
2516         BIO_printf(bio_err, "%s=Valid (%c)\n",
2517                    row[DB_serial], rrow[DB_type][0]);
2518         goto err;
2519     } else if (rrow[DB_type][0] == 'R') {
2520         BIO_printf(bio_err, "%s=Revoked (%c)\n",
2521                    row[DB_serial], rrow[DB_type][0]);
2522         goto err;
2523     } else if (rrow[DB_type][0] == 'E') {
2524         BIO_printf(bio_err, "%s=Expired (%c)\n",
2525                    row[DB_serial], rrow[DB_type][0]);
2526         goto err;
2527     } else if (rrow[DB_type][0] == 'S') {
2528         BIO_printf(bio_err, "%s=Suspended (%c)\n",
2529                    row[DB_serial], rrow[DB_type][0]);
2530         goto err;
2531     } else {
2532         BIO_printf(bio_err, "%s=Unknown (%c).\n",
2533                    row[DB_serial], rrow[DB_type][0]);
2534         ok = -1;
2535     }
2536  err:
2537     for (i = 0; i < DB_NUMBER; i++) {
2538         if (row[i] != NULL)
2539             OPENSSL_free(row[i]);
2540     }
2541     return (ok);
2542 }
2543
2544 static int do_updatedb(CA_DB *db)
2545 {
2546     ASN1_UTCTIME *a_tm = NULL;
2547     int i, cnt = 0;
2548     int db_y2k, a_y2k;          /* flags = 1 if y >= 2000 */
2549     char **rrow, *a_tm_s;
2550
2551     a_tm = ASN1_UTCTIME_new();
2552     if (a_tm == NULL)
2553         return -1;
2554
2555     /* get actual time and make a string */
2556     a_tm = X509_gmtime_adj(a_tm, 0);
2557     a_tm_s = (char *)OPENSSL_malloc(a_tm->length + 1);
2558     if (a_tm_s == NULL) {
2559         cnt = -1;
2560         goto err;
2561     }
2562
2563     memcpy(a_tm_s, a_tm->data, a_tm->length);
2564     a_tm_s[a_tm->length] = '\0';
2565
2566     if (strncmp(a_tm_s, "49", 2) <= 0)
2567         a_y2k = 1;
2568     else
2569         a_y2k = 0;
2570
2571     for (i = 0; i < sk_OPENSSL_PSTRING_num(db->db->data); i++) {
2572         rrow = sk_OPENSSL_PSTRING_value(db->db->data, i);
2573
2574         if (rrow[DB_type][0] == 'V') {
2575             /* ignore entries that are not valid */
2576             if (strncmp(rrow[DB_exp_date], "49", 2) <= 0)
2577                 db_y2k = 1;
2578             else
2579                 db_y2k = 0;
2580
2581             if (db_y2k == a_y2k) {
2582                 /* all on the same y2k side */
2583                 if (strcmp(rrow[DB_exp_date], a_tm_s) <= 0) {
2584                     rrow[DB_type][0] = 'E';
2585                     rrow[DB_type][1] = '\0';
2586                     cnt++;
2587
2588                     BIO_printf(bio_err, "%s=Expired\n", rrow[DB_serial]);
2589                 }
2590             } else if (db_y2k < a_y2k) {
2591                 rrow[DB_type][0] = 'E';
2592                 rrow[DB_type][1] = '\0';
2593                 cnt++;
2594
2595                 BIO_printf(bio_err, "%s=Expired\n", rrow[DB_serial]);
2596             }
2597
2598         }
2599     }
2600
2601  err:
2602
2603     ASN1_UTCTIME_free(a_tm);
2604     OPENSSL_free(a_tm_s);
2605
2606     return (cnt);
2607 }
2608
2609 static const char *crl_reasons[] = {
2610     /* CRL reason strings */
2611     "unspecified",
2612     "keyCompromise",
2613     "CACompromise",
2614     "affiliationChanged",
2615     "superseded",
2616     "cessationOfOperation",
2617     "certificateHold",
2618     "removeFromCRL",
2619     /* Additional pseudo reasons */
2620     "holdInstruction",
2621     "keyTime",
2622     "CAkeyTime"
2623 };
2624
2625 #define NUM_REASONS (sizeof(crl_reasons) / sizeof(char *))
2626
2627 /*
2628  * Given revocation information convert to a DB string. The format of the
2629  * string is: revtime[,reason,extra]. Where 'revtime' is the revocation time
2630  * (the current time). 'reason' is the optional CRL reason and 'extra' is any
2631  * additional argument
2632  */
2633
2634 char *make_revocation_str(int rev_type, char *rev_arg)
2635 {
2636     char *other = NULL, *str;
2637     const char *reason = NULL;
2638     ASN1_OBJECT *otmp;
2639     ASN1_UTCTIME *revtm = NULL;
2640     int i;
2641     switch (rev_type) {
2642     case REV_NONE:
2643         break;
2644
2645     case REV_CRL_REASON:
2646         for (i = 0; i < 8; i++) {
2647             if (!strcasecmp(rev_arg, crl_reasons[i])) {
2648                 reason = crl_reasons[i];
2649                 break;
2650             }
2651         }
2652         if (reason == NULL) {
2653             BIO_printf(bio_err, "Unknown CRL reason %s\n", rev_arg);
2654             return NULL;
2655         }
2656         break;
2657
2658     case REV_HOLD:
2659         /* Argument is an OID */
2660
2661         otmp = OBJ_txt2obj(rev_arg, 0);
2662         ASN1_OBJECT_free(otmp);
2663
2664         if (otmp == NULL) {
2665             BIO_printf(bio_err, "Invalid object identifier %s\n", rev_arg);
2666             return NULL;
2667         }
2668
2669         reason = "holdInstruction";
2670         other = rev_arg;
2671         break;
2672
2673     case REV_KEY_COMPROMISE:
2674     case REV_CA_COMPROMISE:
2675
2676         /* Argument is the key compromise time  */
2677         if (!ASN1_GENERALIZEDTIME_set_string(NULL, rev_arg)) {
2678             BIO_printf(bio_err,
2679                        "Invalid time format %s. Need YYYYMMDDHHMMSSZ\n",
2680                        rev_arg);
2681             return NULL;
2682         }
2683         other = rev_arg;
2684         if (rev_type == REV_KEY_COMPROMISE)
2685             reason = "keyTime";
2686         else
2687             reason = "CAkeyTime";
2688
2689         break;
2690
2691     }
2692
2693     revtm = X509_gmtime_adj(NULL, 0);
2694
2695     if (!revtm)
2696         return NULL;
2697
2698     i = revtm->length + 1;
2699
2700     if (reason)
2701         i += strlen(reason) + 1;
2702     if (other)
2703         i += strlen(other) + 1;
2704
2705     str = OPENSSL_malloc(i);
2706
2707     if (!str)
2708         return NULL;
2709
2710     BUF_strlcpy(str, (char *)revtm->data, i);
2711     if (reason) {
2712         BUF_strlcat(str, ",", i);
2713         BUF_strlcat(str, reason, i);
2714     }
2715     if (other) {
2716         BUF_strlcat(str, ",", i);
2717         BUF_strlcat(str, other, i);
2718     }
2719     ASN1_UTCTIME_free(revtm);
2720     return str;
2721 }
2722
2723 /*-
2724  * Convert revocation field to X509_REVOKED entry
2725  * return code:
2726  * 0 error
2727  * 1 OK
2728  * 2 OK and some extensions added (i.e. V2 CRL)
2729  */
2730
2731 int make_revoked(X509_REVOKED *rev, const char *str)
2732 {
2733     char *tmp = NULL;
2734     int reason_code = -1;
2735     int i, ret = 0;
2736     ASN1_OBJECT *hold = NULL;
2737     ASN1_GENERALIZEDTIME *comp_time = NULL;
2738     ASN1_ENUMERATED *rtmp = NULL;
2739
2740     ASN1_TIME *revDate = NULL;
2741
2742     i = unpack_revinfo(&revDate, &reason_code, &hold, &comp_time, str);
2743
2744     if (i == 0)
2745         goto err;
2746
2747     if (rev && !X509_REVOKED_set_revocationDate(rev, revDate))
2748         goto err;
2749
2750     if (rev && (reason_code != OCSP_REVOKED_STATUS_NOSTATUS)) {
2751         rtmp = ASN1_ENUMERATED_new();
2752         if (!rtmp || !ASN1_ENUMERATED_set(rtmp, reason_code))
2753             goto err;
2754         if (!X509_REVOKED_add1_ext_i2d(rev, NID_crl_reason, rtmp, 0, 0))
2755             goto err;
2756     }
2757
2758     if (rev && comp_time) {
2759         if (!X509_REVOKED_add1_ext_i2d
2760             (rev, NID_invalidity_date, comp_time, 0, 0))
2761             goto err;
2762     }
2763     if (rev && hold) {
2764         if (!X509_REVOKED_add1_ext_i2d
2765             (rev, NID_hold_instruction_code, hold, 0, 0))
2766             goto err;
2767     }
2768
2769     if (reason_code != OCSP_REVOKED_STATUS_NOSTATUS)
2770         ret = 2;
2771     else
2772         ret = 1;
2773
2774  err:
2775
2776     if (tmp)
2777         OPENSSL_free(tmp);
2778     ASN1_OBJECT_free(hold);
2779     ASN1_GENERALIZEDTIME_free(comp_time);
2780     ASN1_ENUMERATED_free(rtmp);
2781     ASN1_TIME_free(revDate);
2782
2783     return ret;
2784 }
2785
2786 int old_entry_print(BIO *bp, ASN1_OBJECT *obj, ASN1_STRING *str)
2787 {
2788     char buf[25], *pbuf, *p;
2789     int j;
2790     j = i2a_ASN1_OBJECT(bp, obj);
2791     pbuf = buf;
2792     for (j = 22 - j; j > 0; j--)
2793         *(pbuf++) = ' ';
2794     *(pbuf++) = ':';
2795     *(pbuf++) = '\0';
2796     BIO_puts(bp, buf);
2797
2798     if (str->type == V_ASN1_PRINTABLESTRING)
2799         BIO_printf(bp, "PRINTABLE:'");
2800     else if (str->type == V_ASN1_T61STRING)
2801         BIO_printf(bp, "T61STRING:'");
2802     else if (str->type == V_ASN1_IA5STRING)
2803         BIO_printf(bp, "IA5STRING:'");
2804     else if (str->type == V_ASN1_UNIVERSALSTRING)
2805         BIO_printf(bp, "UNIVERSALSTRING:'");
2806     else
2807         BIO_printf(bp, "ASN.1 %2d:'", str->type);
2808
2809     p = (char *)str->data;
2810     for (j = str->length; j > 0; j--) {
2811         if ((*p >= ' ') && (*p <= '~'))
2812             BIO_printf(bp, "%c", *p);
2813         else if (*p & 0x80)
2814             BIO_printf(bp, "\\0x%02X", *p);
2815         else if ((unsigned char)*p == 0xf7)
2816             BIO_printf(bp, "^?");
2817         else
2818             BIO_printf(bp, "^%c", *p + '@');
2819         p++;
2820     }
2821     BIO_printf(bp, "'\n");
2822     return 1;
2823 }
2824
2825 int unpack_revinfo(ASN1_TIME **prevtm, int *preason, ASN1_OBJECT **phold,
2826                    ASN1_GENERALIZEDTIME **pinvtm, const char *str)
2827 {
2828     char *tmp = NULL;
2829     char *rtime_str, *reason_str = NULL, *arg_str = NULL, *p;
2830     int reason_code = -1;
2831     int ret = 0;
2832     unsigned int i;
2833     ASN1_OBJECT *hold = NULL;
2834     ASN1_GENERALIZEDTIME *comp_time = NULL;
2835     tmp = BUF_strdup(str);
2836
2837     if (!tmp) {
2838         BIO_printf(bio_err, "memory allocation failure\n");
2839         goto err;
2840     }
2841
2842     p = strchr(tmp, ',');
2843
2844     rtime_str = tmp;
2845
2846     if (p) {
2847         *p = '\0';
2848         p++;
2849         reason_str = p;
2850         p = strchr(p, ',');
2851         if (p) {
2852             *p = '\0';
2853             arg_str = p + 1;
2854         }
2855     }
2856
2857     if (prevtm) {
2858         *prevtm = ASN1_UTCTIME_new();
2859         if (!*prevtm) {
2860             BIO_printf(bio_err, "memory allocation failure\n");
2861             goto err;
2862         }
2863         if (!ASN1_UTCTIME_set_string(*prevtm, rtime_str)) {
2864             BIO_printf(bio_err, "invalid revocation date %s\n", rtime_str);
2865             goto err;
2866         }
2867     }
2868     if (reason_str) {
2869         for (i = 0; i < NUM_REASONS; i++) {
2870             if (!strcasecmp(reason_str, crl_reasons[i])) {
2871                 reason_code = i;
2872                 break;
2873             }
2874         }
2875         if (reason_code == OCSP_REVOKED_STATUS_NOSTATUS) {
2876             BIO_printf(bio_err, "invalid reason code %s\n", reason_str);
2877             goto err;
2878         }
2879
2880         if (reason_code == 7)
2881             reason_code = OCSP_REVOKED_STATUS_REMOVEFROMCRL;
2882         else if (reason_code == 8) { /* Hold instruction */
2883             if (!arg_str) {
2884                 BIO_printf(bio_err, "missing hold instruction\n");
2885                 goto err;
2886             }
2887             reason_code = OCSP_REVOKED_STATUS_CERTIFICATEHOLD;
2888             hold = OBJ_txt2obj(arg_str, 0);
2889
2890             if (!hold) {
2891                 BIO_printf(bio_err, "invalid object identifier %s\n",
2892                            arg_str);
2893                 goto err;
2894             }
2895             if (phold)
2896                 *phold = hold;
2897         } else if ((reason_code == 9) || (reason_code == 10)) {
2898             if (!arg_str) {
2899                 BIO_printf(bio_err, "missing compromised time\n");
2900                 goto err;
2901             }
2902             comp_time = ASN1_GENERALIZEDTIME_new();
2903             if (!comp_time) {
2904                 BIO_printf(bio_err, "memory allocation failure\n");
2905                 goto err;
2906             }
2907             if (!ASN1_GENERALIZEDTIME_set_string(comp_time, arg_str)) {
2908                 BIO_printf(bio_err, "invalid compromised time %s\n", arg_str);
2909                 goto err;
2910             }
2911             if (reason_code == 9)
2912                 reason_code = OCSP_REVOKED_STATUS_KEYCOMPROMISE;
2913             else
2914                 reason_code = OCSP_REVOKED_STATUS_CACOMPROMISE;
2915         }
2916     }
2917
2918     if (preason)
2919         *preason = reason_code;
2920     if (pinvtm)
2921         *pinvtm = comp_time;
2922     else
2923         ASN1_GENERALIZEDTIME_free(comp_time);
2924
2925     ret = 1;
2926
2927  err:
2928
2929     if (tmp)
2930         OPENSSL_free(tmp);
2931     if (!phold)
2932         ASN1_OBJECT_free(hold);
2933     if (!pinvtm)
2934         ASN1_GENERALIZEDTIME_free(comp_time);
2935
2936     return ret;
2937 }