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