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