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