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