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