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