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