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