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