Build resource files
[openssl.git] / apps / ca.c
1 /*
2  * Copyright 1995-2021 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', "Digest to use, such as sha256"},
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     if (!app_RAND_load())
525         goto end;
526
527     f = NCONF_get_string(conf, section, STRING_MASK);
528     if (f == NULL)
529         ERR_clear_error();
530
531     if (f != NULL && !ASN1_STRING_set_default_mask_asc(f)) {
532         BIO_printf(bio_err, "Invalid global string mask setting %s\n", f);
533         goto end;
534     }
535
536     if (chtype != MBSTRING_UTF8) {
537         f = NCONF_get_string(conf, section, UTF8_IN);
538         if (f == NULL)
539             ERR_clear_error();
540         else if (strcmp(f, "yes") == 0)
541             chtype = MBSTRING_UTF8;
542     }
543
544     db_attr.unique_subject = 1;
545     p = NCONF_get_string(conf, section, ENV_UNIQUE_SUBJECT);
546     if (p != NULL)
547         db_attr.unique_subject = parse_yesno(p, 1);
548     else
549         ERR_clear_error();
550
551     /*****************************************************************/
552     /* report status of cert with serial number given on command line */
553     if (ser_status) {
554         dbfile = lookup_conf(conf, section, ENV_DATABASE);
555         if (dbfile == NULL)
556             goto end;
557
558         db = load_index(dbfile, &db_attr);
559         if (db == NULL)
560             goto end;
561
562         if (index_index(db) <= 0)
563             goto end;
564
565         if (get_certificate_status(ser_status, db) != 1)
566             BIO_printf(bio_err, "Error verifying serial %s!\n", ser_status);
567         goto end;
568     }
569
570     /*****************************************************************/
571     /* we definitely need a private key, so let's get it */
572
573     if (keyfile == NULL
574         && (keyfile = lookup_conf(conf, section, ENV_PRIVATE_KEY)) == NULL)
575         goto end;
576
577     if (passin == NULL) {
578         free_passin = 1;
579         if (!app_passwd(passinarg, NULL, &passin, NULL)) {
580             BIO_printf(bio_err, "Error getting password\n");
581             goto end;
582         }
583     }
584     pkey = load_key(keyfile, keyformat, 0, passin, e, "CA private key");
585     cleanse(passin);
586     if (pkey == NULL)
587         /* load_key() has already printed an appropriate message */
588         goto end;
589
590     /*****************************************************************/
591     /* we need a certificate */
592     if (!selfsign || spkac_file || ss_cert_file || gencrl) {
593         if (certfile == NULL
594             && (certfile = lookup_conf(conf, section, ENV_CERTIFICATE)) == NULL)
595             goto end;
596
597         x509 = load_cert_pass(certfile, 1, passin, "CA certificate");
598         if (x509 == NULL)
599             goto end;
600
601         if (!X509_check_private_key(x509, pkey)) {
602             BIO_printf(bio_err,
603                        "CA certificate and CA private key do not match\n");
604             goto end;
605         }
606     }
607     if (!selfsign)
608         x509p = x509;
609
610     f = NCONF_get_string(conf, BASE_SECTION, ENV_PRESERVE);
611     if (f == NULL)
612         ERR_clear_error();
613     if ((f != NULL) && ((*f == 'y') || (*f == 'Y')))
614         preserve = 1;
615     f = NCONF_get_string(conf, BASE_SECTION, ENV_MSIE_HACK);
616     if (f == NULL)
617         ERR_clear_error();
618     if ((f != NULL) && ((*f == 'y') || (*f == 'Y')))
619         msie_hack = 1;
620
621     f = NCONF_get_string(conf, section, ENV_NAMEOPT);
622
623     if (f != NULL) {
624         if (!set_nameopt(f)) {
625             BIO_printf(bio_err, "Invalid name options: \"%s\"\n", f);
626             goto end;
627         }
628         default_op = 0;
629     }
630
631     f = NCONF_get_string(conf, section, ENV_CERTOPT);
632
633     if (f != NULL) {
634         if (!set_cert_ex(&certopt, f)) {
635             BIO_printf(bio_err, "Invalid certificate options: \"%s\"\n", f);
636             goto end;
637         }
638         default_op = 0;
639     } else {
640         ERR_clear_error();
641     }
642
643     f = NCONF_get_string(conf, section, ENV_EXTCOPY);
644
645     if (f != NULL) {
646         if (!set_ext_copy(&ext_copy, f)) {
647             BIO_printf(bio_err, "Invalid extension copy option: \"%s\"\n", f);
648             goto end;
649         }
650     } else {
651         ERR_clear_error();
652     }
653
654     /*****************************************************************/
655     /* lookup where to write new certificates */
656     if ((outdir == NULL) && (req)) {
657
658         outdir = NCONF_get_string(conf, section, ENV_NEW_CERTS_DIR);
659         if (outdir == NULL) {
660             BIO_printf(bio_err,
661                        "there needs to be defined a directory for new certificate to be placed in\n");
662             goto end;
663         }
664 #ifndef OPENSSL_SYS_VMS
665         /*
666          * outdir is a directory spec, but access() for VMS demands a
667          * filename.  We could use the DEC C routine to convert the
668          * directory syntax to Unix, and give that to app_isdir,
669          * but for now the fopen will catch the error if it's not a
670          * directory
671          */
672         if (app_isdir(outdir) <= 0) {
673             BIO_printf(bio_err, "%s: %s is not a directory\n", prog, outdir);
674             perror(outdir);
675             goto end;
676         }
677 #endif
678     }
679
680     /*****************************************************************/
681     /* we need to load the database file */
682     dbfile = lookup_conf(conf, section, ENV_DATABASE);
683     if (dbfile == NULL)
684         goto end;
685
686     db = load_index(dbfile, &db_attr);
687     if (db == NULL)
688         goto end;
689
690     /* Lets check some fields */
691     for (i = 0; i < sk_OPENSSL_PSTRING_num(db->db->data); i++) {
692         pp = sk_OPENSSL_PSTRING_value(db->db->data, i);
693         if ((pp[DB_type][0] != DB_TYPE_REV) && (pp[DB_rev_date][0] != '\0')) {
694             BIO_printf(bio_err,
695                        "entry %d: not revoked yet, but has a revocation date\n",
696                        i + 1);
697             goto end;
698         }
699         if ((pp[DB_type][0] == DB_TYPE_REV) &&
700             !make_revoked(NULL, pp[DB_rev_date])) {
701             BIO_printf(bio_err, " in entry %d\n", i + 1);
702             goto end;
703         }
704         if (!check_time_format((char *)pp[DB_exp_date])) {
705             BIO_printf(bio_err, "entry %d: invalid expiry date\n", i + 1);
706             goto end;
707         }
708         p = pp[DB_serial];
709         j = strlen(p);
710         if (*p == '-') {
711             p++;
712             j--;
713         }
714         if ((j & 1) || (j < 2)) {
715             BIO_printf(bio_err, "entry %d: bad serial number length (%d)\n",
716                        i + 1, j);
717             goto end;
718         }
719         for ( ; *p; p++) {
720             if (!isxdigit(_UC(*p))) {
721                 BIO_printf(bio_err,
722                            "entry %d: bad char 0%o '%c' in serial number\n",
723                            i + 1, *p, *p);
724                 goto end;
725             }
726         }
727     }
728     if (verbose) {
729         TXT_DB_write(bio_out, db->db);
730         BIO_printf(bio_err, "%d entries loaded from the database\n",
731                    sk_OPENSSL_PSTRING_num(db->db->data));
732         BIO_printf(bio_err, "generating index\n");
733     }
734
735     if (index_index(db) <= 0)
736         goto end;
737
738     /*****************************************************************/
739     /* Update the db file for expired certificates */
740     if (doupdatedb) {
741         if (verbose)
742             BIO_printf(bio_err, "Updating %s ...\n", dbfile);
743
744         i = do_updatedb(db);
745         if (i == -1) {
746             BIO_printf(bio_err, "Malloc failure\n");
747             goto end;
748         } else if (i == 0) {
749             if (verbose)
750                 BIO_printf(bio_err, "No entries found to mark expired\n");
751         } else {
752             if (!save_index(dbfile, "new", db))
753                 goto end;
754
755             if (!rotate_index(dbfile, "new", "old"))
756                 goto end;
757
758             if (verbose)
759                 BIO_printf(bio_err, "Done. %d entries marked as expired\n", i);
760         }
761     }
762
763     /*****************************************************************/
764     /* Read extensions config file                                   */
765     if (extfile) {
766         if ((extfile_conf = app_load_config(extfile)) == NULL) {
767             ret = 1;
768             goto end;
769         }
770
771         if (verbose)
772             BIO_printf(bio_err, "Successfully loaded extensions file %s\n",
773                        extfile);
774
775         /* We can have sections in the ext file */
776         if (extensions == NULL) {
777             extensions = NCONF_get_string(extfile_conf, "default", "extensions");
778             if (extensions == NULL)
779                 extensions = "default";
780         }
781     }
782
783     /*****************************************************************/
784     if (req || gencrl) {
785         if (spkac_file != NULL && outfile != NULL) {
786             output_der = 1;
787             batch = 1;
788         }
789     }
790
791     def_ret = EVP_PKEY_get_default_digest_nid(pkey, &def_nid);
792     /*
793      * EVP_PKEY_get_default_digest_nid() returns 2 if the digest is
794      * mandatory for this algorithm.
795      */
796     if (def_ret == 2 && def_nid == NID_undef) {
797         /* The signing algorithm requires there to be no digest */
798         dgst = EVP_md_null();
799     } else if (md == NULL
800                && (md = lookup_conf(conf, section, ENV_DEFAULT_MD)) == NULL) {
801         goto end;
802     } else {
803         if (strcmp(md, "default") == 0) {
804             if (def_ret <= 0) {
805                 BIO_puts(bio_err, "no default digest\n");
806                 goto end;
807             }
808             md = (char *)OBJ_nid2sn(def_nid);
809         }
810
811         if (!opt_md(md, &dgst))
812             goto end;
813     }
814
815     if (req) {
816         if (email_dn == 1) {
817             char *tmp_email_dn = NULL;
818
819             tmp_email_dn = NCONF_get_string(conf, section, ENV_DEFAULT_EMAIL_DN);
820             if (tmp_email_dn != NULL && strcmp(tmp_email_dn, "no") == 0)
821                 email_dn = 0;
822         }
823         if (verbose)
824             BIO_printf(bio_err, "message digest is %s\n",
825                        EVP_MD_name(dgst));
826         if (policy == NULL
827             && (policy = lookup_conf(conf, section, ENV_POLICY)) == NULL)
828             goto end;
829
830         if (verbose)
831             BIO_printf(bio_err, "policy is %s\n", policy);
832
833         if (NCONF_get_string(conf, section, ENV_RAND_SERIAL) != NULL) {
834             rand_ser = 1;
835         } else {
836             serialfile = lookup_conf(conf, section, ENV_SERIAL);
837             if (serialfile == NULL)
838                 goto end;
839         }
840
841         if (extfile_conf != NULL) {
842             /* Check syntax of extfile */
843             X509V3_CTX ctx;
844
845             X509V3_set_ctx_test(&ctx);
846             X509V3_set_nconf(&ctx, extfile_conf);
847             if (!X509V3_EXT_add_nconf(extfile_conf, &ctx, extensions, NULL)) {
848                 BIO_printf(bio_err,
849                            "Error checking certificate extensions from extfile section %s\n",
850                            extensions);
851                 ret = 1;
852                 goto end;
853             }
854         } else {
855             /*
856              * no '-extfile' option, so we look for extensions in the main
857              * configuration file
858              */
859             if (extensions == NULL) {
860                 extensions = NCONF_get_string(conf, section, ENV_EXTENSIONS);
861                 if (extensions == NULL)
862                     ERR_clear_error();
863             }
864             if (extensions != NULL) {
865                 /* Check syntax of config file section */
866                 X509V3_CTX ctx;
867
868                 X509V3_set_ctx_test(&ctx);
869                 X509V3_set_nconf(&ctx, conf);
870                 if (!X509V3_EXT_add_nconf(conf, &ctx, extensions, NULL)) {
871                     BIO_printf(bio_err,
872                                "Error checking certificate extension config section %s\n",
873                                extensions);
874                     ret = 1;
875                     goto end;
876                 }
877             }
878         }
879
880         if (startdate == NULL) {
881             startdate = NCONF_get_string(conf, section, ENV_DEFAULT_STARTDATE);
882             if (startdate == NULL)
883                 ERR_clear_error();
884         }
885         if (startdate != NULL && !ASN1_TIME_set_string_X509(NULL, startdate)) {
886             BIO_printf(bio_err,
887                        "start date is invalid, it should be YYMMDDHHMMSSZ or YYYYMMDDHHMMSSZ\n");
888             goto end;
889         }
890         if (startdate == NULL)
891             startdate = "today";
892
893         if (enddate == NULL) {
894             enddate = NCONF_get_string(conf, section, ENV_DEFAULT_ENDDATE);
895             if (enddate == NULL)
896                 ERR_clear_error();
897         }
898         if (enddate != NULL && !ASN1_TIME_set_string_X509(NULL, enddate)) {
899             BIO_printf(bio_err,
900                        "end date is invalid, it should be YYMMDDHHMMSSZ or YYYYMMDDHHMMSSZ\n");
901             goto end;
902         }
903
904         if (days == 0) {
905             if (!NCONF_get_number(conf, section, ENV_DEFAULT_DAYS, &days))
906                 days = 0;
907         }
908         if (enddate == NULL && days == 0) {
909             BIO_printf(bio_err, "cannot lookup how many days to certify for\n");
910             goto end;
911         }
912
913         if (rand_ser) {
914             if ((serial = BN_new()) == NULL || !rand_serial(serial, NULL)) {
915                 BIO_printf(bio_err, "error generating serial number\n");
916                 goto end;
917             }
918         } else {
919             if ((serial = load_serial(serialfile, create_ser, NULL)) == NULL) {
920                 BIO_printf(bio_err, "error while loading serial number\n");
921                 goto end;
922             }
923             if (verbose) {
924                 if (BN_is_zero(serial)) {
925                     BIO_printf(bio_err, "next serial number is 00\n");
926                 } else {
927                     if ((f = BN_bn2hex(serial)) == NULL)
928                         goto end;
929                     BIO_printf(bio_err, "next serial number is %s\n", f);
930                     OPENSSL_free(f);
931                 }
932             }
933         }
934
935         if ((attribs = NCONF_get_section(conf, policy)) == NULL) {
936             BIO_printf(bio_err, "unable to find 'section' for %s\n", policy);
937             goto end;
938         }
939
940         if ((cert_sk = sk_X509_new_null()) == NULL) {
941             BIO_printf(bio_err, "Memory allocation failure\n");
942             goto end;
943         }
944         if (spkac_file != NULL) {
945             total++;
946             j = certify_spkac(&x, spkac_file, pkey, x509, dgst, sigopts,
947                               attribs, db, serial, subj, chtype, multirdn,
948                               email_dn, startdate, enddate, days, extensions,
949                               conf, verbose, certopt, get_nameopt(), default_op,
950                               ext_copy);
951             if (j < 0)
952                 goto end;
953             if (j > 0) {
954                 total_done++;
955                 BIO_printf(bio_err, "\n");
956                 if (!BN_add_word(serial, 1))
957                     goto end;
958                 if (!sk_X509_push(cert_sk, x)) {
959                     BIO_printf(bio_err, "Memory allocation failure\n");
960                     goto end;
961                 }
962             }
963         }
964         if (ss_cert_file != NULL) {
965             total++;
966             j = certify_cert(&x, ss_cert_file, certformat, passin, pkey,
967                              x509, dgst, sigopts, vfyopts, attribs,
968                              db, serial, subj, chtype, multirdn, email_dn,
969                              startdate, enddate, days, batch, extensions,
970                              conf, verbose, certopt, get_nameopt(), default_op,
971                              ext_copy);
972             if (j < 0)
973                 goto end;
974             if (j > 0) {
975                 total_done++;
976                 BIO_printf(bio_err, "\n");
977                 if (!BN_add_word(serial, 1))
978                     goto end;
979                 if (!sk_X509_push(cert_sk, x)) {
980                     BIO_printf(bio_err, "Memory allocation failure\n");
981                     goto end;
982                 }
983             }
984         }
985         if (infile != NULL) {
986             total++;
987             j = certify(&x, infile, informat, pkey, x509p, dgst,
988                         sigopts, vfyopts, attribs, db,
989                         serial, subj, chtype, multirdn, email_dn, startdate,
990                         enddate, days, batch, extensions, conf, verbose,
991                         certopt, get_nameopt(), default_op, ext_copy, selfsign);
992             if (j < 0)
993                 goto end;
994             if (j > 0) {
995                 total_done++;
996                 BIO_printf(bio_err, "\n");
997                 if (!BN_add_word(serial, 1))
998                     goto end;
999                 if (!sk_X509_push(cert_sk, x)) {
1000                     BIO_printf(bio_err, "Memory allocation failure\n");
1001                     goto end;
1002                 }
1003             }
1004         }
1005         for (i = 0; i < argc; i++) {
1006             total++;
1007             j = certify(&x, argv[i], informat, pkey, x509p, dgst,
1008                         sigopts, vfyopts,
1009                         attribs, db,
1010                         serial, subj, chtype, multirdn, email_dn, startdate,
1011                         enddate, days, batch, extensions, conf, verbose,
1012                         certopt, get_nameopt(), default_op, ext_copy, selfsign);
1013             if (j < 0)
1014                 goto end;
1015             if (j > 0) {
1016                 total_done++;
1017                 BIO_printf(bio_err, "\n");
1018                 if (!BN_add_word(serial, 1)) {
1019                     X509_free(x);
1020                     goto end;
1021                 }
1022                 if (!sk_X509_push(cert_sk, x)) {
1023                     BIO_printf(bio_err, "Memory allocation failure\n");
1024                     X509_free(x);
1025                     goto end;
1026                 }
1027             }
1028         }
1029         /*
1030          * we have a stack of newly certified certificates and a data base
1031          * and serial number that need updating
1032          */
1033
1034         if (sk_X509_num(cert_sk) > 0) {
1035             if (!batch) {
1036                 BIO_printf(bio_err,
1037                            "\n%d out of %d certificate requests certified, commit? [y/n]",
1038                            total_done, total);
1039                 (void)BIO_flush(bio_err);
1040                 tmp[0] = '\0';
1041                 if (fgets(tmp, sizeof(tmp), stdin) == NULL) {
1042                     BIO_printf(bio_err, "CERTIFICATION CANCELED: I/O error\n");
1043                     ret = 0;
1044                     goto end;
1045                 }
1046                 if (tmp[0] != 'y' && tmp[0] != 'Y') {
1047                     BIO_printf(bio_err, "CERTIFICATION CANCELED\n");
1048                     ret = 0;
1049                     goto end;
1050                 }
1051             }
1052
1053             BIO_printf(bio_err, "Write out database with %d new entries\n",
1054                        sk_X509_num(cert_sk));
1055
1056             if (serialfile != NULL
1057                     && !save_serial(serialfile, "new", serial, NULL))
1058                 goto end;
1059
1060             if (!save_index(dbfile, "new", db))
1061                 goto end;
1062         }
1063
1064         outdirlen = OPENSSL_strlcpy(new_cert, outdir, sizeof(new_cert));
1065 #ifndef OPENSSL_SYS_VMS
1066         outdirlen = OPENSSL_strlcat(new_cert, "/", sizeof(new_cert));
1067 #endif
1068
1069         if (verbose)
1070             BIO_printf(bio_err, "writing new certificates\n");
1071
1072         for (i = 0; i < sk_X509_num(cert_sk); i++) {
1073             BIO *Cout = NULL;
1074             X509 *xi = sk_X509_value(cert_sk, i);
1075             const ASN1_INTEGER *serialNumber = X509_get0_serialNumber(xi);
1076             const unsigned char *psn = ASN1_STRING_get0_data(serialNumber);
1077             const int snl = ASN1_STRING_length(serialNumber);
1078             const int filen_len = 2 * (snl > 0 ? snl : 1) + sizeof(".pem");
1079             char *n = new_cert + outdirlen;
1080
1081             if (outdirlen + filen_len > PATH_MAX) {
1082                 BIO_printf(bio_err, "certificate file name too long\n");
1083                 goto end;
1084             }
1085
1086             if (snl > 0) {
1087                 static const char HEX_DIGITS[] = "0123456789ABCDEF";
1088
1089                 for (j = 0; j < snl; j++, psn++) {
1090                     *n++ = HEX_DIGITS[*psn >> 4];
1091                     *n++ = HEX_DIGITS[*psn & 0x0F];
1092                 }
1093             } else {
1094                 *(n++) = '0';
1095                 *(n++) = '0';
1096             }
1097             *(n++) = '.';
1098             *(n++) = 'p';
1099             *(n++) = 'e';
1100             *(n++) = 'm';
1101             *n = '\0';          /* closing new_cert */
1102             if (verbose)
1103                 BIO_printf(bio_err, "writing %s\n", new_cert);
1104
1105             Sout = bio_open_default(outfile, 'w',
1106                                     output_der ? FORMAT_ASN1 : FORMAT_TEXT);
1107             if (Sout == NULL)
1108                 goto end;
1109
1110             Cout = BIO_new_file(new_cert, "w");
1111             if (Cout == NULL) {
1112                 perror(new_cert);
1113                 goto end;
1114             }
1115             write_new_certificate(Cout, xi, 0, notext);
1116             write_new_certificate(Sout, xi, output_der, notext);
1117             BIO_free_all(Cout);
1118             BIO_free_all(Sout);
1119             Sout = NULL;
1120         }
1121
1122         if (sk_X509_num(cert_sk)) {
1123             /* Rename the database and the serial file */
1124             if (serialfile != NULL
1125                     && !rotate_serial(serialfile, "new", "old"))
1126                 goto end;
1127
1128             if (!rotate_index(dbfile, "new", "old"))
1129                 goto end;
1130
1131             BIO_printf(bio_err, "Data Base Updated\n");
1132         }
1133     }
1134
1135     /*****************************************************************/
1136     if (gencrl) {
1137         int crl_v2 = 0;
1138         if (crl_ext == NULL) {
1139             crl_ext = NCONF_get_string(conf, section, ENV_CRLEXT);
1140             if (crl_ext == NULL)
1141                 ERR_clear_error();
1142         }
1143         if (crl_ext != NULL) {
1144             /* Check syntax of file */
1145             X509V3_CTX ctx;
1146
1147             X509V3_set_ctx_test(&ctx);
1148             X509V3_set_nconf(&ctx, conf);
1149             if (!X509V3_EXT_add_nconf(conf, &ctx, crl_ext, NULL)) {
1150                 BIO_printf(bio_err,
1151                            "Error checking CRL extension section %s\n", crl_ext);
1152                 ret = 1;
1153                 goto end;
1154             }
1155         }
1156
1157         if ((crlnumberfile = NCONF_get_string(conf, section, ENV_CRLNUMBER))
1158             != NULL)
1159             if ((crlnumber = load_serial(crlnumberfile, 0, NULL)) == NULL) {
1160                 BIO_printf(bio_err, "error while loading CRL number\n");
1161                 goto end;
1162             }
1163
1164         if (!crldays && !crlhours && !crlsec) {
1165             if (!NCONF_get_number(conf, section,
1166                                   ENV_DEFAULT_CRL_DAYS, &crldays))
1167                 crldays = 0;
1168             if (!NCONF_get_number(conf, section,
1169                                   ENV_DEFAULT_CRL_HOURS, &crlhours))
1170                 crlhours = 0;
1171             ERR_clear_error();
1172         }
1173         if ((crl_nextupdate == NULL) &&
1174                 (crldays == 0) && (crlhours == 0) && (crlsec == 0)) {
1175             BIO_printf(bio_err,
1176                        "cannot lookup how long until the next CRL is issued\n");
1177             goto end;
1178         }
1179
1180         if (verbose)
1181             BIO_printf(bio_err, "making CRL\n");
1182         if ((crl = X509_CRL_new_ex(app_get0_libctx(), app_get0_propq())) == NULL)
1183             goto end;
1184         if (!X509_CRL_set_issuer_name(crl, X509_get_subject_name(x509)))
1185             goto end;
1186
1187         if (!set_crl_lastupdate(crl, crl_lastupdate)) {
1188             BIO_puts(bio_err, "error setting CRL lastUpdate\n");
1189             ret = 1;
1190             goto end;
1191         }
1192
1193         if (!set_crl_nextupdate(crl, crl_nextupdate,
1194                                 crldays, crlhours, crlsec)) {
1195             BIO_puts(bio_err, "error setting CRL nextUpdate\n");
1196             ret = 1;
1197             goto end;
1198         }
1199
1200         for (i = 0; i < sk_OPENSSL_PSTRING_num(db->db->data); i++) {
1201             pp = sk_OPENSSL_PSTRING_value(db->db->data, i);
1202             if (pp[DB_type][0] == DB_TYPE_REV) {
1203                 if ((r = X509_REVOKED_new()) == NULL)
1204                     goto end;
1205                 j = make_revoked(r, pp[DB_rev_date]);
1206                 if (!j)
1207                     goto end;
1208                 if (j == 2)
1209                     crl_v2 = 1;
1210                 if (!BN_hex2bn(&serial, pp[DB_serial]))
1211                     goto end;
1212                 tmpser = BN_to_ASN1_INTEGER(serial, NULL);
1213                 BN_free(serial);
1214                 serial = NULL;
1215                 if (!tmpser)
1216                     goto end;
1217                 X509_REVOKED_set_serialNumber(r, tmpser);
1218                 ASN1_INTEGER_free(tmpser);
1219                 X509_CRL_add0_revoked(crl, r);
1220             }
1221         }
1222
1223         /*
1224          * sort the data so it will be written in serial number order
1225          */
1226         X509_CRL_sort(crl);
1227
1228         /* we now have a CRL */
1229         if (verbose)
1230             BIO_printf(bio_err, "signing CRL\n");
1231
1232         /* Add any extensions asked for */
1233
1234         if (crl_ext != NULL || crlnumberfile != NULL) {
1235             X509V3_CTX crlctx;
1236
1237             X509V3_set_ctx(&crlctx, x509, NULL, NULL, crl, 0);
1238             X509V3_set_nconf(&crlctx, conf);
1239
1240             if (crl_ext != NULL)
1241                 if (!X509V3_EXT_CRL_add_nconf(conf, &crlctx, crl_ext, crl)) {
1242                     BIO_printf(bio_err,
1243                                "Error adding CRL extensions from section %s\n", crl_ext);
1244                     goto end;
1245                 }
1246             if (crlnumberfile != NULL) {
1247                 tmpser = BN_to_ASN1_INTEGER(crlnumber, NULL);
1248                 if (!tmpser)
1249                     goto end;
1250                 X509_CRL_add1_ext_i2d(crl, NID_crl_number, tmpser, 0, 0);
1251                 ASN1_INTEGER_free(tmpser);
1252                 crl_v2 = 1;
1253                 if (!BN_add_word(crlnumber, 1))
1254                     goto end;
1255             }
1256         }
1257         if (crl_ext != NULL || crl_v2) {
1258             if (!X509_CRL_set_version(crl, 1))
1259                 goto end;       /* version 2 CRL */
1260         }
1261
1262         /* we have a CRL number that need updating */
1263         if (crlnumberfile != NULL
1264                 && !save_serial(crlnumberfile, "new", crlnumber, NULL))
1265             goto end;
1266
1267         BN_free(crlnumber);
1268         crlnumber = NULL;
1269
1270         if (!do_X509_CRL_sign(crl, pkey, dgst, sigopts))
1271             goto end;
1272
1273         Sout = bio_open_default(outfile, 'w',
1274                                 output_der ? FORMAT_ASN1 : FORMAT_TEXT);
1275         if (Sout == NULL)
1276             goto end;
1277
1278         PEM_write_bio_X509_CRL(Sout, crl);
1279
1280         /* Rename the crlnumber file */
1281         if (crlnumberfile != NULL
1282                 && !rotate_serial(crlnumberfile, "new", "old"))
1283             goto end;
1284
1285     }
1286     /*****************************************************************/
1287     if (dorevoke) {
1288         if (infile == NULL) {
1289             BIO_printf(bio_err, "no input files\n");
1290             goto end;
1291         } else {
1292             X509 *revcert;
1293
1294             revcert = load_cert_pass(infile, 1, passin,
1295                                      "certificate to be revoked");
1296             if (revcert == NULL)
1297                 goto end;
1298             if (dorevoke == 2)
1299                 rev_type = REV_VALID;
1300             j = do_revoke(revcert, db, rev_type, rev_arg);
1301             if (j <= 0)
1302                 goto end;
1303             X509_free(revcert);
1304
1305             if (!save_index(dbfile, "new", db))
1306                 goto end;
1307
1308             if (!rotate_index(dbfile, "new", "old"))
1309                 goto end;
1310
1311             BIO_printf(bio_err, "Data Base Updated\n");
1312         }
1313     }
1314     ret = 0;
1315
1316  end:
1317     if (ret)
1318         ERR_print_errors(bio_err);
1319     BIO_free_all(Sout);
1320     BIO_free_all(out);
1321     BIO_free_all(in);
1322     sk_X509_pop_free(cert_sk, X509_free);
1323
1324     cleanse(passin);
1325     if (free_passin)
1326         OPENSSL_free(passin);
1327     BN_free(serial);
1328     BN_free(crlnumber);
1329     free_index(db);
1330     sk_OPENSSL_STRING_free(sigopts);
1331     sk_OPENSSL_STRING_free(vfyopts);
1332     EVP_PKEY_free(pkey);
1333     X509_free(x509);
1334     X509_CRL_free(crl);
1335     NCONF_free(conf);
1336     NCONF_free(extfile_conf);
1337     release_engine(e);
1338     return ret;
1339 }
1340
1341 static char *lookup_conf(const CONF *conf, const char *section, const char *tag)
1342 {
1343     char *entry = NCONF_get_string(conf, section, tag);
1344     if (entry == NULL)
1345         BIO_printf(bio_err, "variable lookup failed for %s::%s\n", section, tag);
1346     return entry;
1347 }
1348
1349 static int certify(X509 **xret, const char *infile, int informat,
1350                    EVP_PKEY *pkey, X509 *x509,
1351                    const EVP_MD *dgst,
1352                    STACK_OF(OPENSSL_STRING) *sigopts,
1353                    STACK_OF(OPENSSL_STRING) *vfyopts,
1354                    STACK_OF(CONF_VALUE) *policy, CA_DB *db,
1355                    BIGNUM *serial, const char *subj, unsigned long chtype,
1356                    int multirdn, int email_dn, const char *startdate,
1357                    const char *enddate,
1358                    long days, int batch, const char *ext_sect, CONF *lconf,
1359                    int verbose, unsigned long certopt, unsigned long nameopt,
1360                    int default_op, int ext_copy, int selfsign)
1361 {
1362     X509_REQ *req = NULL;
1363     EVP_PKEY *pktmp = NULL;
1364     int ok = -1, i;
1365
1366     req = load_csr(infile, informat, "certificate request");
1367     if (req == NULL)
1368         goto end;
1369     if ((pktmp = X509_REQ_get0_pubkey(req)) == NULL) {
1370         BIO_printf(bio_err, "Error unpacking public key\n");
1371         goto end;
1372     }
1373     if (verbose)
1374         X509_REQ_print_ex(bio_err, req, nameopt, X509_FLAG_COMPAT);
1375
1376     BIO_printf(bio_err, "Check that the request matches the signature\n");
1377     ok = 0;
1378
1379     if (selfsign && !X509_REQ_check_private_key(req, pkey)) {
1380         BIO_printf(bio_err,
1381                    "Certificate request and CA private key do not match\n");
1382         goto end;
1383     }
1384     i = do_X509_REQ_verify(req, pktmp, vfyopts);
1385     if (i < 0) {
1386         BIO_printf(bio_err, "Signature verification problems...\n");
1387         goto end;
1388     }
1389     if (i == 0) {
1390         BIO_printf(bio_err,
1391                    "Signature did not match the certificate request\n");
1392         goto end;
1393     }
1394     BIO_printf(bio_err, "Signature ok\n");
1395
1396     ok = do_body(xret, pkey, x509, dgst, sigopts, policy, db, serial, subj,
1397                  chtype, multirdn, email_dn, startdate, enddate, days, batch,
1398                  verbose, req, ext_sect, lconf, certopt, nameopt, default_op,
1399                  ext_copy, selfsign);
1400
1401  end:
1402     ERR_print_errors(bio_err);
1403     X509_REQ_free(req);
1404     return ok;
1405 }
1406
1407 static int certify_cert(X509 **xret, const char *infile, int certformat,
1408                         const char *passin, EVP_PKEY *pkey, X509 *x509,
1409                         const EVP_MD *dgst,
1410                         STACK_OF(OPENSSL_STRING) *sigopts,
1411                         STACK_OF(OPENSSL_STRING) *vfyopts,
1412                         STACK_OF(CONF_VALUE) *policy, CA_DB *db,
1413                         BIGNUM *serial, const char *subj, unsigned long chtype,
1414                         int multirdn, int email_dn, const char *startdate,
1415                         const char *enddate, long days, int batch, const char *ext_sect,
1416                         CONF *lconf, int verbose, unsigned long certopt,
1417                         unsigned long nameopt, int default_op, int ext_copy)
1418 {
1419     X509 *template_cert = NULL;
1420     X509_REQ *rreq = NULL;
1421     EVP_PKEY *pktmp = NULL;
1422     int ok = -1, i;
1423
1424     if ((template_cert = load_cert_pass(infile, 1, passin,
1425                                         "template certificate")) == NULL)
1426         goto end;
1427     if (verbose)
1428         X509_print(bio_err, template_cert);
1429
1430     BIO_printf(bio_err, "Check that the request matches the signature\n");
1431
1432     if ((pktmp = X509_get0_pubkey(template_cert)) == NULL) {
1433         BIO_printf(bio_err, "error unpacking public key\n");
1434         goto end;
1435     }
1436     i = do_X509_verify(template_cert, pktmp, vfyopts);
1437     if (i < 0) {
1438         ok = 0;
1439         BIO_printf(bio_err, "Signature verification problems....\n");
1440         goto end;
1441     }
1442     if (i == 0) {
1443         ok = 0;
1444         BIO_printf(bio_err, "Signature did not match the certificate\n");
1445         goto end;
1446     } else {
1447         BIO_printf(bio_err, "Signature ok\n");
1448     }
1449
1450     if ((rreq = X509_to_X509_REQ(template_cert, NULL, NULL)) == NULL)
1451         goto end;
1452
1453     ok = do_body(xret, pkey, x509, dgst, sigopts, policy, db, serial, subj,
1454                  chtype, multirdn, email_dn, startdate, enddate, days, batch,
1455                  verbose, rreq, ext_sect, lconf, certopt, nameopt, default_op,
1456                  ext_copy, 0);
1457
1458  end:
1459     X509_REQ_free(rreq);
1460     X509_free(template_cert);
1461     return ok;
1462 }
1463
1464 static int do_body(X509 **xret, EVP_PKEY *pkey, X509 *x509,
1465                    const EVP_MD *dgst, STACK_OF(OPENSSL_STRING) *sigopts,
1466                    STACK_OF(CONF_VALUE) *policy, CA_DB *db, BIGNUM *serial,
1467                    const char *subj, unsigned long chtype, int multirdn,
1468                    int email_dn, const char *startdate, const char *enddate, long days,
1469                    int batch, int verbose, X509_REQ *req, const char *ext_sect,
1470                    CONF *lconf, unsigned long certopt, unsigned long nameopt,
1471                    int default_op, int ext_copy, int selfsign)
1472 {
1473     const X509_NAME *name = NULL;
1474     X509_NAME *CAname = NULL, *subject = NULL;
1475     const ASN1_TIME *tm;
1476     ASN1_STRING *str, *str2;
1477     ASN1_OBJECT *obj;
1478     X509 *ret = NULL;
1479     X509_NAME_ENTRY *ne, *tne;
1480     EVP_PKEY *pktmp;
1481     int ok = -1, i, j, last, nid;
1482     const char *p;
1483     CONF_VALUE *cv;
1484     OPENSSL_STRING row[DB_NUMBER];
1485     OPENSSL_STRING *irow = NULL;
1486     OPENSSL_STRING *rrow = NULL;
1487     char buf[25];
1488     X509V3_CTX ext_ctx;
1489
1490     for (i = 0; i < DB_NUMBER; i++)
1491         row[i] = NULL;
1492
1493     if (subj) {
1494         X509_NAME *n = parse_name(subj, chtype, multirdn, "subject");
1495
1496         if (!n)
1497             goto end;
1498         X509_REQ_set_subject_name(req, n);
1499         X509_NAME_free(n);
1500     }
1501
1502     if (default_op)
1503         BIO_printf(bio_err, "The Subject's Distinguished Name is as follows\n");
1504
1505     name = X509_REQ_get_subject_name(req);
1506     for (i = 0; i < X509_NAME_entry_count(name); i++) {
1507         ne = X509_NAME_get_entry(name, i);
1508         str = X509_NAME_ENTRY_get_data(ne);
1509         obj = X509_NAME_ENTRY_get_object(ne);
1510         nid = OBJ_obj2nid(obj);
1511
1512         if (msie_hack) {
1513             /* assume all type should be strings */
1514
1515             if (str->type == V_ASN1_UNIVERSALSTRING)
1516                 ASN1_UNIVERSALSTRING_to_string(str);
1517
1518             if (str->type == V_ASN1_IA5STRING && nid != NID_pkcs9_emailAddress)
1519                 str->type = V_ASN1_T61STRING;
1520
1521             if (nid == NID_pkcs9_emailAddress
1522                 && str->type == V_ASN1_PRINTABLESTRING)
1523                 str->type = V_ASN1_IA5STRING;
1524         }
1525
1526         /* If no EMAIL is wanted in the subject */
1527         if (nid == NID_pkcs9_emailAddress && !email_dn)
1528             continue;
1529
1530         /* check some things */
1531         if (nid == NID_pkcs9_emailAddress && str->type != V_ASN1_IA5STRING) {
1532             BIO_printf(bio_err,
1533                        "\nemailAddress type needs to be of type IA5STRING\n");
1534             goto end;
1535         }
1536         if (str->type != V_ASN1_BMPSTRING && str->type != V_ASN1_UTF8STRING) {
1537             j = ASN1_PRINTABLE_type(str->data, str->length);
1538             if ((j == V_ASN1_T61STRING && str->type != V_ASN1_T61STRING) ||
1539                 (j == V_ASN1_IA5STRING && str->type == V_ASN1_PRINTABLESTRING))
1540             {
1541                 BIO_printf(bio_err,
1542                            "\nThe string contains characters that are illegal for the ASN.1 type\n");
1543                 goto end;
1544             }
1545         }
1546
1547         if (default_op)
1548             old_entry_print(obj, str);
1549     }
1550
1551     /* Ok, now we check the 'policy' stuff. */
1552     if ((subject = X509_NAME_new()) == NULL) {
1553         BIO_printf(bio_err, "Memory allocation failure\n");
1554         goto end;
1555     }
1556
1557     /* take a copy of the issuer name before we mess with it. */
1558     if (selfsign)
1559         CAname = X509_NAME_dup(name);
1560     else
1561         CAname = X509_NAME_dup(X509_get_subject_name(x509));
1562     if (CAname == NULL)
1563         goto end;
1564     str = str2 = NULL;
1565
1566     for (i = 0; i < sk_CONF_VALUE_num(policy); i++) {
1567         cv = sk_CONF_VALUE_value(policy, i); /* get the object id */
1568         if ((j = OBJ_txt2nid(cv->name)) == NID_undef) {
1569             BIO_printf(bio_err,
1570                        "%s:unknown object type in 'policy' configuration\n",
1571                        cv->name);
1572             goto end;
1573         }
1574         obj = OBJ_nid2obj(j);
1575
1576         last = -1;
1577         for (;;) {
1578             X509_NAME_ENTRY *push = NULL;
1579
1580             /* lookup the object in the supplied name list */
1581             j = X509_NAME_get_index_by_OBJ(name, obj, last);
1582             if (j < 0) {
1583                 if (last != -1)
1584                     break;
1585                 tne = NULL;
1586             } else {
1587                 tne = X509_NAME_get_entry(name, j);
1588             }
1589             last = j;
1590
1591             /* depending on the 'policy', decide what to do. */
1592             if (strcmp(cv->value, "optional") == 0) {
1593                 if (tne != NULL)
1594                     push = tne;
1595             } else if (strcmp(cv->value, "supplied") == 0) {
1596                 if (tne == NULL) {
1597                     BIO_printf(bio_err,
1598                                "The %s field needed to be supplied and was missing\n",
1599                                cv->name);
1600                     goto end;
1601                 } else {
1602                     push = tne;
1603                 }
1604             } else if (strcmp(cv->value, "match") == 0) {
1605                 int last2;
1606
1607                 if (tne == NULL) {
1608                     BIO_printf(bio_err,
1609                                "The mandatory %s field was missing\n",
1610                                cv->name);
1611                     goto end;
1612                 }
1613
1614                 last2 = -1;
1615
1616  again2:
1617                 j = X509_NAME_get_index_by_OBJ(CAname, obj, last2);
1618                 if ((j < 0) && (last2 == -1)) {
1619                     BIO_printf(bio_err,
1620                                "The %s field does not exist in the CA certificate,\n"
1621                                "the 'policy' is misconfigured\n", cv->name);
1622                     goto end;
1623                 }
1624                 if (j >= 0) {
1625                     push = X509_NAME_get_entry(CAname, j);
1626                     str = X509_NAME_ENTRY_get_data(tne);
1627                     str2 = X509_NAME_ENTRY_get_data(push);
1628                     last2 = j;
1629                     if (ASN1_STRING_cmp(str, str2) != 0)
1630                         goto again2;
1631                 }
1632                 if (j < 0) {
1633                     BIO_printf(bio_err,
1634                                "The %s field is different between\n"
1635                                "CA certificate (%s) and the request (%s)\n",
1636                                cv->name,
1637                                ((str2 == NULL) ? "NULL" : (char *)str2->data),
1638                                ((str == NULL) ? "NULL" : (char *)str->data));
1639                     goto end;
1640                 }
1641             } else {
1642                 BIO_printf(bio_err,
1643                            "%s:invalid type in 'policy' configuration\n",
1644                            cv->value);
1645                 goto end;
1646             }
1647
1648             if (push != NULL) {
1649                 if (!X509_NAME_add_entry(subject, push, -1, 0)) {
1650                     BIO_printf(bio_err, "Memory allocation failure\n");
1651                     goto end;
1652                 }
1653             }
1654             if (j < 0)
1655                 break;
1656         }
1657     }
1658
1659     if (preserve) {
1660         X509_NAME_free(subject);
1661         /* subject=X509_NAME_dup(X509_REQ_get_subject_name(req)); */
1662         subject = X509_NAME_dup(name);
1663         if (subject == NULL)
1664             goto end;
1665     }
1666
1667     /* We are now totally happy, lets make and sign the certificate */
1668     if (verbose)
1669         BIO_printf(bio_err,
1670                    "Everything appears to be ok, creating and signing the certificate\n");
1671
1672     if ((ret = X509_new_ex(app_get0_libctx(), app_get0_propq())) == NULL)
1673         goto end;
1674
1675     if (BN_to_ASN1_INTEGER(serial, X509_get_serialNumber(ret)) == NULL)
1676         goto end;
1677     if (selfsign) {
1678         if (!X509_set_issuer_name(ret, subject))
1679             goto end;
1680     } else {
1681         if (!X509_set_issuer_name(ret, X509_get_subject_name(x509)))
1682             goto end;
1683     }
1684
1685     if (!set_cert_times(ret, startdate, enddate, days))
1686         goto end;
1687
1688     if (enddate != NULL) {
1689         int tdays;
1690
1691         if (!ASN1_TIME_diff(&tdays, NULL, NULL, X509_get0_notAfter(ret)))
1692             goto end;
1693         days = tdays;
1694     }
1695
1696     if (!X509_set_subject_name(ret, subject))
1697         goto end;
1698
1699     pktmp = X509_REQ_get0_pubkey(req);
1700     i = X509_set_pubkey(ret, pktmp);
1701     if (!i)
1702         goto end;
1703
1704     /* Initialize the context structure */
1705     X509V3_set_ctx(&ext_ctx, selfsign ? ret : x509,
1706                    ret, req, NULL, X509V3_CTX_REPLACE);
1707
1708     /* Lets add the extensions, if there are any */
1709     if (ext_sect) {
1710         if (extfile_conf != NULL) {
1711             if (verbose)
1712                 BIO_printf(bio_err, "Extra configuration file found\n");
1713
1714             /* Use the extfile_conf configuration db LHASH */
1715             X509V3_set_nconf(&ext_ctx, extfile_conf);
1716
1717             /* Adds exts contained in the configuration file */
1718             if (!X509V3_EXT_add_nconf(extfile_conf, &ext_ctx, ext_sect, ret)) {
1719                 BIO_printf(bio_err,
1720                            "Error adding certificate extensions from extfile section %s\n",
1721                            ext_sect);
1722                 goto end;
1723             }
1724             if (verbose)
1725                 BIO_printf(bio_err,
1726                            "Successfully added extensions from file.\n");
1727         } else if (ext_sect) {
1728             /* We found extensions to be set from config file */
1729             X509V3_set_nconf(&ext_ctx, lconf);
1730
1731             if (!X509V3_EXT_add_nconf(lconf, &ext_ctx, ext_sect, ret)) {
1732                 BIO_printf(bio_err,
1733                            "Error adding certificate extensions from config section %s\n",
1734                            ext_sect);
1735                 goto end;
1736             }
1737
1738             if (verbose)
1739                 BIO_printf(bio_err,
1740                            "Successfully added extensions from config\n");
1741         }
1742     }
1743
1744     /* Copy extensions from request (if any) */
1745
1746     if (!copy_extensions(ret, req, ext_copy)) {
1747         BIO_printf(bio_err, "ERROR: adding extensions from request\n");
1748         goto end;
1749     }
1750
1751     if (verbose)
1752         BIO_printf(bio_err,
1753                    "The subject name appears to be ok, checking data base for clashes\n");
1754
1755     /* Build the correct Subject if no e-mail is wanted in the subject. */
1756     if (!email_dn) {
1757         X509_NAME_ENTRY *tmpne;
1758         X509_NAME *dn_subject;
1759
1760         /*
1761          * Its best to dup the subject DN and then delete any email addresses
1762          * because this retains its structure.
1763          */
1764         if ((dn_subject = X509_NAME_dup(subject)) == NULL) {
1765             BIO_printf(bio_err, "Memory allocation failure\n");
1766             goto end;
1767         }
1768         i = -1;
1769         while ((i = X509_NAME_get_index_by_NID(dn_subject,
1770                                                NID_pkcs9_emailAddress,
1771                                                i)) >= 0) {
1772             tmpne = X509_NAME_delete_entry(dn_subject, i--);
1773             X509_NAME_ENTRY_free(tmpne);
1774         }
1775
1776         if (!X509_set_subject_name(ret, dn_subject)) {
1777             X509_NAME_free(dn_subject);
1778             goto end;
1779         }
1780         X509_NAME_free(dn_subject);
1781     }
1782
1783     row[DB_name] = X509_NAME_oneline(X509_get_subject_name(ret), NULL, 0);
1784     if (row[DB_name] == NULL) {
1785         BIO_printf(bio_err, "Memory allocation failure\n");
1786         goto end;
1787     }
1788
1789     if (BN_is_zero(serial))
1790         row[DB_serial] = OPENSSL_strdup("00");
1791     else
1792         row[DB_serial] = BN_bn2hex(serial);
1793     if (row[DB_serial] == NULL) {
1794         BIO_printf(bio_err, "Memory allocation failure\n");
1795         goto end;
1796     }
1797
1798     if (row[DB_name][0] == '\0') {
1799         /*
1800          * An empty subject! We'll use the serial number instead. If
1801          * unique_subject is in use then we don't want different entries with
1802          * empty subjects matching each other.
1803          */
1804         OPENSSL_free(row[DB_name]);
1805         row[DB_name] = OPENSSL_strdup(row[DB_serial]);
1806         if (row[DB_name] == NULL) {
1807             BIO_printf(bio_err, "Memory allocation failure\n");
1808             goto end;
1809         }
1810     }
1811
1812     if (db->attributes.unique_subject) {
1813         OPENSSL_STRING *crow = row;
1814
1815         rrow = TXT_DB_get_by_index(db->db, DB_name, crow);
1816         if (rrow != NULL) {
1817             BIO_printf(bio_err,
1818                        "ERROR:There is already a certificate for %s\n",
1819                        row[DB_name]);
1820         }
1821     }
1822     if (rrow == NULL) {
1823         rrow = TXT_DB_get_by_index(db->db, DB_serial, row);
1824         if (rrow != NULL) {
1825             BIO_printf(bio_err,
1826                        "ERROR:Serial number %s has already been issued,\n",
1827                        row[DB_serial]);
1828             BIO_printf(bio_err,
1829                        "      check the database/serial_file for corruption\n");
1830         }
1831     }
1832
1833     if (rrow != NULL) {
1834         BIO_printf(bio_err, "The matching entry has the following details\n");
1835         if (rrow[DB_type][0] == DB_TYPE_EXP)
1836             p = "Expired";
1837         else if (rrow[DB_type][0] == DB_TYPE_REV)
1838             p = "Revoked";
1839         else if (rrow[DB_type][0] == DB_TYPE_VAL)
1840             p = "Valid";
1841         else
1842             p = "\ninvalid type, Data base error\n";
1843         BIO_printf(bio_err, "Type          :%s\n", p);;
1844         if (rrow[DB_type][0] == DB_TYPE_REV) {
1845             p = rrow[DB_exp_date];
1846             if (p == NULL)
1847                 p = "undef";
1848             BIO_printf(bio_err, "Was revoked on:%s\n", p);
1849         }
1850         p = rrow[DB_exp_date];
1851         if (p == NULL)
1852             p = "undef";
1853         BIO_printf(bio_err, "Expires on    :%s\n", p);
1854         p = rrow[DB_serial];
1855         if (p == NULL)
1856             p = "undef";
1857         BIO_printf(bio_err, "Serial Number :%s\n", p);
1858         p = rrow[DB_file];
1859         if (p == NULL)
1860             p = "undef";
1861         BIO_printf(bio_err, "File name     :%s\n", p);
1862         p = rrow[DB_name];
1863         if (p == NULL)
1864             p = "undef";
1865         BIO_printf(bio_err, "Subject Name  :%s\n", p);
1866         ok = -1;                /* This is now a 'bad' error. */
1867         goto end;
1868     }
1869
1870     if (!default_op) {
1871         BIO_printf(bio_err, "Certificate Details:\n");
1872         /*
1873          * Never print signature details because signature not present
1874          */
1875         certopt |= X509_FLAG_NO_SIGDUMP | X509_FLAG_NO_SIGNAME;
1876         X509_print_ex(bio_err, ret, nameopt, certopt);
1877     }
1878
1879     BIO_printf(bio_err, "Certificate is to be certified until ");
1880     ASN1_TIME_print(bio_err, X509_get0_notAfter(ret));
1881     if (days)
1882         BIO_printf(bio_err, " (%ld days)", days);
1883     BIO_printf(bio_err, "\n");
1884
1885     if (!batch) {
1886
1887         BIO_printf(bio_err, "Sign the certificate? [y/n]:");
1888         (void)BIO_flush(bio_err);
1889         buf[0] = '\0';
1890         if (fgets(buf, sizeof(buf), stdin) == NULL) {
1891             BIO_printf(bio_err,
1892                        "CERTIFICATE WILL NOT BE CERTIFIED: I/O error\n");
1893             ok = 0;
1894             goto end;
1895         }
1896         if (!(buf[0] == 'y' || buf[0] == 'Y')) {
1897             BIO_printf(bio_err, "CERTIFICATE WILL NOT BE CERTIFIED\n");
1898             ok = 0;
1899             goto end;
1900         }
1901     }
1902
1903     pktmp = X509_get0_pubkey(ret);
1904     if (EVP_PKEY_missing_parameters(pktmp) &&
1905         !EVP_PKEY_missing_parameters(pkey))
1906         EVP_PKEY_copy_parameters(pktmp, pkey);
1907
1908     if (!do_X509_sign(ret, pkey, dgst, sigopts, &ext_ctx))
1909         goto end;
1910
1911     /* We now just add it to the database as DB_TYPE_VAL('V') */
1912     row[DB_type] = OPENSSL_strdup("V");
1913     tm = X509_get0_notAfter(ret);
1914     row[DB_exp_date] = app_malloc(tm->length + 1, "row expdate");
1915     memcpy(row[DB_exp_date], tm->data, tm->length);
1916     row[DB_exp_date][tm->length] = '\0';
1917     row[DB_rev_date] = NULL;
1918     row[DB_file] = OPENSSL_strdup("unknown");
1919     if ((row[DB_type] == NULL) || (row[DB_file] == NULL)
1920         || (row[DB_name] == NULL)) {
1921         BIO_printf(bio_err, "Memory allocation failure\n");
1922         goto end;
1923     }
1924
1925     irow = app_malloc(sizeof(*irow) * (DB_NUMBER + 1), "row space");
1926     for (i = 0; i < DB_NUMBER; i++)
1927         irow[i] = row[i];
1928     irow[DB_NUMBER] = NULL;
1929
1930     if (!TXT_DB_insert(db->db, irow)) {
1931         BIO_printf(bio_err, "failed to update database\n");
1932         BIO_printf(bio_err, "TXT_DB error number %ld\n", db->db->error);
1933         goto end;
1934     }
1935     irow = NULL;
1936     ok = 1;
1937  end:
1938     if (ok != 1) {
1939         for (i = 0; i < DB_NUMBER; i++)
1940             OPENSSL_free(row[i]);
1941     }
1942     OPENSSL_free(irow);
1943
1944     X509_NAME_free(CAname);
1945     X509_NAME_free(subject);
1946     if (ok <= 0)
1947         X509_free(ret);
1948     else
1949         *xret = ret;
1950     return ok;
1951 }
1952
1953 static void write_new_certificate(BIO *bp, X509 *x, int output_der, int notext)
1954 {
1955
1956     if (output_der) {
1957         (void)i2d_X509_bio(bp, x);
1958         return;
1959     }
1960     if (!notext)
1961         X509_print(bp, x);
1962     PEM_write_bio_X509(bp, x);
1963 }
1964
1965 static int certify_spkac(X509 **xret, const char *infile, EVP_PKEY *pkey,
1966                          X509 *x509, const EVP_MD *dgst,
1967                          STACK_OF(OPENSSL_STRING) *sigopts,
1968                          STACK_OF(CONF_VALUE) *policy, CA_DB *db,
1969                          BIGNUM *serial, const char *subj, unsigned long chtype,
1970                          int multirdn, int email_dn, const char *startdate,
1971                          const char *enddate, long days, const char *ext_sect,
1972                          CONF *lconf, int verbose, unsigned long certopt,
1973                          unsigned long nameopt, int default_op, int ext_copy)
1974 {
1975     STACK_OF(CONF_VALUE) *sk = NULL;
1976     LHASH_OF(CONF_VALUE) *parms = NULL;
1977     X509_REQ *req = NULL;
1978     CONF_VALUE *cv = NULL;
1979     NETSCAPE_SPKI *spki = NULL;
1980     char *type, *buf;
1981     EVP_PKEY *pktmp = NULL;
1982     X509_NAME *n = NULL;
1983     X509_NAME_ENTRY *ne = NULL;
1984     int ok = -1, i, j;
1985     long errline;
1986     int nid;
1987
1988     /*
1989      * Load input file into a hash table.  (This is just an easy
1990      * way to read and parse the file, then put it into a convenient
1991      * STACK format).
1992      */
1993     parms = CONF_load(NULL, infile, &errline);
1994     if (parms == NULL) {
1995         BIO_printf(bio_err, "error on line %ld of %s\n", errline, infile);
1996         goto end;
1997     }
1998
1999     sk = CONF_get_section(parms, "default");
2000     if (sk_CONF_VALUE_num(sk) == 0) {
2001         BIO_printf(bio_err, "no name/value pairs found in %s\n", infile);
2002         goto end;
2003     }
2004
2005     /*
2006      * Now create a dummy X509 request structure.  We don't actually
2007      * have an X509 request, but we have many of the components
2008      * (a public key, various DN components).  The idea is that we
2009      * put these components into the right X509 request structure
2010      * and we can use the same code as if you had a real X509 request.
2011      */
2012     req = X509_REQ_new();
2013     if (req == NULL)
2014         goto end;
2015
2016     /*
2017      * Build up the subject name set.
2018      */
2019     n = X509_REQ_get_subject_name(req);
2020
2021     for (i = 0;; i++) {
2022         if (sk_CONF_VALUE_num(sk) <= i)
2023             break;
2024
2025         cv = sk_CONF_VALUE_value(sk, i);
2026         type = cv->name;
2027         /*
2028          * Skip past any leading X. X: X, etc to allow for multiple instances
2029          */
2030         for (buf = cv->name; *buf; buf++)
2031             if ((*buf == ':') || (*buf == ',') || (*buf == '.')) {
2032                 buf++;
2033                 if (*buf)
2034                     type = buf;
2035                 break;
2036             }
2037
2038         buf = cv->value;
2039         if ((nid = OBJ_txt2nid(type)) == NID_undef) {
2040             if (strcmp(type, "SPKAC") == 0) {
2041                 spki = NETSCAPE_SPKI_b64_decode(cv->value, -1);
2042                 if (spki == NULL) {
2043                     BIO_printf(bio_err,
2044                                "unable to load Netscape SPKAC structure\n");
2045                     goto end;
2046                 }
2047             }
2048             continue;
2049         }
2050
2051         if (!X509_NAME_add_entry_by_NID(n, nid, chtype,
2052                                         (unsigned char *)buf, -1, -1, 0))
2053             goto end;
2054     }
2055     if (spki == NULL) {
2056         BIO_printf(bio_err, "Netscape SPKAC structure not found in %s\n",
2057                    infile);
2058         goto end;
2059     }
2060
2061     /*
2062      * Now extract the key from the SPKI structure.
2063      */
2064
2065     BIO_printf(bio_err, "Check that the SPKAC request matches the signature\n");
2066
2067     if ((pktmp = NETSCAPE_SPKI_get_pubkey(spki)) == NULL) {
2068         BIO_printf(bio_err, "error unpacking SPKAC public key\n");
2069         goto end;
2070     }
2071
2072     j = NETSCAPE_SPKI_verify(spki, pktmp);
2073     if (j <= 0) {
2074         EVP_PKEY_free(pktmp);
2075         BIO_printf(bio_err,
2076                    "signature verification failed on SPKAC public key\n");
2077         goto end;
2078     }
2079     BIO_printf(bio_err, "Signature ok\n");
2080
2081     X509_REQ_set_pubkey(req, pktmp);
2082     EVP_PKEY_free(pktmp);
2083     ok = do_body(xret, pkey, x509, dgst, sigopts, policy, db, serial, subj,
2084                  chtype, multirdn, email_dn, startdate, enddate, days, 1,
2085                  verbose, req, ext_sect, lconf, certopt, nameopt, default_op,
2086                  ext_copy, 0);
2087  end:
2088     X509_REQ_free(req);
2089     CONF_free(parms);
2090     NETSCAPE_SPKI_free(spki);
2091     X509_NAME_ENTRY_free(ne);
2092
2093     return ok;
2094 }
2095
2096 static int check_time_format(const char *str)
2097 {
2098     return ASN1_TIME_set_string(NULL, str);
2099 }
2100
2101 static int do_revoke(X509 *x509, CA_DB *db, REVINFO_TYPE rev_type,
2102                      const char *value)
2103 {
2104     const ASN1_TIME *tm = NULL;
2105     char *row[DB_NUMBER], **rrow, **irow;
2106     char *rev_str = NULL;
2107     BIGNUM *bn = NULL;
2108     int ok = -1, i;
2109
2110     for (i = 0; i < DB_NUMBER; i++)
2111         row[i] = NULL;
2112     row[DB_name] = X509_NAME_oneline(X509_get_subject_name(x509), NULL, 0);
2113     bn = ASN1_INTEGER_to_BN(X509_get0_serialNumber(x509), NULL);
2114     if (!bn)
2115         goto end;
2116     if (BN_is_zero(bn))
2117         row[DB_serial] = OPENSSL_strdup("00");
2118     else
2119         row[DB_serial] = BN_bn2hex(bn);
2120     BN_free(bn);
2121     if (row[DB_name] != NULL && row[DB_name][0] == '\0') {
2122         /* Entries with empty Subjects actually use the serial number instead */
2123         OPENSSL_free(row[DB_name]);
2124         row[DB_name] = OPENSSL_strdup(row[DB_serial]);
2125     }
2126     if ((row[DB_name] == NULL) || (row[DB_serial] == NULL)) {
2127         BIO_printf(bio_err, "Memory allocation failure\n");
2128         goto end;
2129     }
2130     /*
2131      * We have to lookup by serial number because name lookup skips revoked
2132      * certs
2133      */
2134     rrow = TXT_DB_get_by_index(db->db, DB_serial, row);
2135     if (rrow == NULL) {
2136         BIO_printf(bio_err,
2137                    "Adding Entry with serial number %s to DB for %s\n",
2138                    row[DB_serial], row[DB_name]);
2139
2140         /* We now just add it to the database as DB_TYPE_REV('V') */
2141         row[DB_type] = OPENSSL_strdup("V");
2142         tm = X509_get0_notAfter(x509);
2143         row[DB_exp_date] = app_malloc(tm->length + 1, "row exp_data");
2144         memcpy(row[DB_exp_date], tm->data, tm->length);
2145         row[DB_exp_date][tm->length] = '\0';
2146         row[DB_rev_date] = NULL;
2147         row[DB_file] = OPENSSL_strdup("unknown");
2148
2149         if (row[DB_type] == NULL || row[DB_file] == NULL) {
2150             BIO_printf(bio_err, "Memory allocation failure\n");
2151             goto end;
2152         }
2153
2154         irow = app_malloc(sizeof(*irow) * (DB_NUMBER + 1), "row ptr");
2155         for (i = 0; i < DB_NUMBER; i++)
2156             irow[i] = row[i];
2157         irow[DB_NUMBER] = NULL;
2158
2159         if (!TXT_DB_insert(db->db, irow)) {
2160             BIO_printf(bio_err, "failed to update database\n");
2161             BIO_printf(bio_err, "TXT_DB error number %ld\n", db->db->error);
2162             OPENSSL_free(irow);
2163             goto end;
2164         }
2165
2166         for (i = 0; i < DB_NUMBER; i++)
2167             row[i] = NULL;
2168
2169         /* Revoke Certificate */
2170         if (rev_type == REV_VALID)
2171             ok = 1;
2172         else
2173             /* Retry revocation after DB insertion */
2174             ok = do_revoke(x509, db, rev_type, value);
2175
2176         goto end;
2177
2178     } else if (index_name_cmp_noconst(row, rrow)) {
2179         BIO_printf(bio_err, "ERROR:name does not match %s\n", row[DB_name]);
2180         goto end;
2181     } else if (rev_type == REV_VALID) {
2182         BIO_printf(bio_err, "ERROR:Already present, serial number %s\n",
2183                    row[DB_serial]);
2184         goto end;
2185     } else if (rrow[DB_type][0] == DB_TYPE_REV) {
2186         BIO_printf(bio_err, "ERROR:Already revoked, serial number %s\n",
2187                    row[DB_serial]);
2188         goto end;
2189     } else {
2190         BIO_printf(bio_err, "Revoking Certificate %s.\n", rrow[DB_serial]);
2191         rev_str = make_revocation_str(rev_type, value);
2192         if (!rev_str) {
2193             BIO_printf(bio_err, "Error in revocation arguments\n");
2194             goto end;
2195         }
2196         rrow[DB_type][0] = DB_TYPE_REV;
2197         rrow[DB_type][1] = '\0';
2198         rrow[DB_rev_date] = rev_str;
2199     }
2200     ok = 1;
2201  end:
2202     for (i = 0; i < DB_NUMBER; i++)
2203         OPENSSL_free(row[i]);
2204     return ok;
2205 }
2206
2207 static int get_certificate_status(const char *serial, CA_DB *db)
2208 {
2209     char *row[DB_NUMBER], **rrow;
2210     int ok = -1, i;
2211     size_t serial_len = strlen(serial);
2212
2213     /* Free Resources */
2214     for (i = 0; i < DB_NUMBER; i++)
2215         row[i] = NULL;
2216
2217     /* Malloc needed char spaces */
2218     row[DB_serial] = app_malloc(serial_len + 2, "row serial#");
2219
2220     if (serial_len % 2) {
2221         /*
2222          * Set the first char to 0
2223          */
2224         row[DB_serial][0] = '0';
2225
2226         /* Copy String from serial to row[DB_serial] */
2227         memcpy(row[DB_serial] + 1, serial, serial_len);
2228         row[DB_serial][serial_len + 1] = '\0';
2229     } else {
2230         /* Copy String from serial to row[DB_serial] */
2231         memcpy(row[DB_serial], serial, serial_len);
2232         row[DB_serial][serial_len] = '\0';
2233     }
2234
2235     /* Make it Upper Case */
2236     make_uppercase(row[DB_serial]);
2237
2238     ok = 1;
2239
2240     /* Search for the certificate */
2241     rrow = TXT_DB_get_by_index(db->db, DB_serial, row);
2242     if (rrow == NULL) {
2243         BIO_printf(bio_err, "Serial %s not present in db.\n", row[DB_serial]);
2244         ok = -1;
2245         goto end;
2246     } else if (rrow[DB_type][0] == DB_TYPE_VAL) {
2247         BIO_printf(bio_err, "%s=Valid (%c)\n",
2248                    row[DB_serial], rrow[DB_type][0]);
2249         goto end;
2250     } else if (rrow[DB_type][0] == DB_TYPE_REV) {
2251         BIO_printf(bio_err, "%s=Revoked (%c)\n",
2252                    row[DB_serial], rrow[DB_type][0]);
2253         goto end;
2254     } else if (rrow[DB_type][0] == DB_TYPE_EXP) {
2255         BIO_printf(bio_err, "%s=Expired (%c)\n",
2256                    row[DB_serial], rrow[DB_type][0]);
2257         goto end;
2258     } else if (rrow[DB_type][0] == DB_TYPE_SUSP) {
2259         BIO_printf(bio_err, "%s=Suspended (%c)\n",
2260                    row[DB_serial], rrow[DB_type][0]);
2261         goto end;
2262     } else {
2263         BIO_printf(bio_err, "%s=Unknown (%c).\n",
2264                    row[DB_serial], rrow[DB_type][0]);
2265         ok = -1;
2266     }
2267  end:
2268     for (i = 0; i < DB_NUMBER; i++) {
2269         OPENSSL_free(row[i]);
2270     }
2271     return ok;
2272 }
2273
2274 static int do_updatedb(CA_DB *db)
2275 {
2276     ASN1_TIME *a_tm = NULL;
2277     int i, cnt = 0;
2278     char **rrow;
2279
2280     a_tm = ASN1_TIME_new();
2281     if (a_tm == NULL)
2282         return -1;
2283
2284     /* get actual time */
2285     if (X509_gmtime_adj(a_tm, 0) == NULL) {
2286         ASN1_TIME_free(a_tm);
2287         return -1;
2288     }
2289
2290     for (i = 0; i < sk_OPENSSL_PSTRING_num(db->db->data); i++) {
2291         rrow = sk_OPENSSL_PSTRING_value(db->db->data, i);
2292
2293         if (rrow[DB_type][0] == DB_TYPE_VAL) {
2294             /* ignore entries that are not valid */
2295             ASN1_TIME *exp_date = NULL;
2296
2297             exp_date = ASN1_TIME_new();
2298             if (exp_date == NULL) {
2299                 ASN1_TIME_free(a_tm);
2300                 return -1;
2301             }
2302
2303             if (!ASN1_TIME_set_string(exp_date, rrow[DB_exp_date])) {
2304                 ASN1_TIME_free(a_tm);
2305                 ASN1_TIME_free(exp_date);
2306                 return -1;
2307             }
2308
2309             if (ASN1_TIME_compare(exp_date, a_tm) <= 0) {
2310                 rrow[DB_type][0] = DB_TYPE_EXP;
2311                 rrow[DB_type][1] = '\0';
2312                 cnt++;
2313
2314                 BIO_printf(bio_err, "%s=Expired\n", rrow[DB_serial]);
2315             }
2316             ASN1_TIME_free(exp_date);
2317         }
2318     }
2319
2320     ASN1_TIME_free(a_tm);
2321     return cnt;
2322 }
2323
2324 static const char *crl_reasons[] = {
2325     /* CRL reason strings */
2326     "unspecified",
2327     "keyCompromise",
2328     "CACompromise",
2329     "affiliationChanged",
2330     "superseded",
2331     "cessationOfOperation",
2332     "certificateHold",
2333     "removeFromCRL",
2334     /* Additional pseudo reasons */
2335     "holdInstruction",
2336     "keyTime",
2337     "CAkeyTime"
2338 };
2339
2340 #define NUM_REASONS OSSL_NELEM(crl_reasons)
2341
2342 /*
2343  * Given revocation information convert to a DB string. The format of the
2344  * string is: revtime[,reason,extra]. Where 'revtime' is the revocation time
2345  * (the current time). 'reason' is the optional CRL reason and 'extra' is any
2346  * additional argument
2347  */
2348
2349 static char *make_revocation_str(REVINFO_TYPE rev_type, const char *rev_arg)
2350 {
2351     char *str;
2352     const char *reason = NULL, *other = NULL;
2353     ASN1_OBJECT *otmp;
2354     ASN1_UTCTIME *revtm = NULL;
2355     int i;
2356
2357     switch (rev_type) {
2358     case REV_NONE:
2359     case REV_VALID:
2360         break;
2361
2362     case REV_CRL_REASON:
2363         for (i = 0; i < 8; i++) {
2364             if (strcasecmp(rev_arg, crl_reasons[i]) == 0) {
2365                 reason = crl_reasons[i];
2366                 break;
2367             }
2368         }
2369         if (reason == NULL) {
2370             BIO_printf(bio_err, "Unknown CRL reason %s\n", rev_arg);
2371             return NULL;
2372         }
2373         break;
2374
2375     case REV_HOLD:
2376         /* Argument is an OID */
2377         otmp = OBJ_txt2obj(rev_arg, 0);
2378         ASN1_OBJECT_free(otmp);
2379
2380         if (otmp == NULL) {
2381             BIO_printf(bio_err, "Invalid object identifier %s\n", rev_arg);
2382             return NULL;
2383         }
2384
2385         reason = "holdInstruction";
2386         other = rev_arg;
2387         break;
2388
2389     case REV_KEY_COMPROMISE:
2390     case REV_CA_COMPROMISE:
2391         /* Argument is the key compromise time  */
2392         if (!ASN1_GENERALIZEDTIME_set_string(NULL, rev_arg)) {
2393             BIO_printf(bio_err,
2394                        "Invalid time format %s. Need YYYYMMDDHHMMSSZ\n",
2395                        rev_arg);
2396             return NULL;
2397         }
2398         other = rev_arg;
2399         if (rev_type == REV_KEY_COMPROMISE)
2400             reason = "keyTime";
2401         else
2402             reason = "CAkeyTime";
2403
2404         break;
2405     }
2406
2407     revtm = X509_gmtime_adj(NULL, 0);
2408
2409     if (!revtm)
2410         return NULL;
2411
2412     i = revtm->length + 1;
2413
2414     if (reason)
2415         i += strlen(reason) + 1;
2416     if (other)
2417         i += strlen(other) + 1;
2418
2419     str = app_malloc(i, "revocation reason");
2420     OPENSSL_strlcpy(str, (char *)revtm->data, i);
2421     if (reason) {
2422         OPENSSL_strlcat(str, ",", i);
2423         OPENSSL_strlcat(str, reason, i);
2424     }
2425     if (other) {
2426         OPENSSL_strlcat(str, ",", i);
2427         OPENSSL_strlcat(str, other, i);
2428     }
2429     ASN1_UTCTIME_free(revtm);
2430     return str;
2431 }
2432
2433 /*-
2434  * Convert revocation field to X509_REVOKED entry
2435  * return code:
2436  * 0 error
2437  * 1 OK
2438  * 2 OK and some extensions added (i.e. V2 CRL)
2439  */
2440
2441 static int make_revoked(X509_REVOKED *rev, const char *str)
2442 {
2443     char *tmp = NULL;
2444     int reason_code = -1;
2445     int i, ret = 0;
2446     ASN1_OBJECT *hold = NULL;
2447     ASN1_GENERALIZEDTIME *comp_time = NULL;
2448     ASN1_ENUMERATED *rtmp = NULL;
2449
2450     ASN1_TIME *revDate = NULL;
2451
2452     i = unpack_revinfo(&revDate, &reason_code, &hold, &comp_time, str);
2453
2454     if (i == 0)
2455         goto end;
2456
2457     if (rev && !X509_REVOKED_set_revocationDate(rev, revDate))
2458         goto end;
2459
2460     if (rev && (reason_code != OCSP_REVOKED_STATUS_NOSTATUS)) {
2461         rtmp = ASN1_ENUMERATED_new();
2462         if (rtmp == NULL || !ASN1_ENUMERATED_set(rtmp, reason_code))
2463             goto end;
2464         if (!X509_REVOKED_add1_ext_i2d(rev, NID_crl_reason, rtmp, 0, 0))
2465             goto end;
2466     }
2467
2468     if (rev && comp_time) {
2469         if (!X509_REVOKED_add1_ext_i2d
2470             (rev, NID_invalidity_date, comp_time, 0, 0))
2471             goto end;
2472     }
2473     if (rev && hold) {
2474         if (!X509_REVOKED_add1_ext_i2d
2475             (rev, NID_hold_instruction_code, hold, 0, 0))
2476             goto end;
2477     }
2478
2479     if (reason_code != OCSP_REVOKED_STATUS_NOSTATUS)
2480         ret = 2;
2481     else
2482         ret = 1;
2483
2484  end:
2485
2486     OPENSSL_free(tmp);
2487     ASN1_OBJECT_free(hold);
2488     ASN1_GENERALIZEDTIME_free(comp_time);
2489     ASN1_ENUMERATED_free(rtmp);
2490     ASN1_TIME_free(revDate);
2491
2492     return ret;
2493 }
2494
2495 static int old_entry_print(const ASN1_OBJECT *obj, const ASN1_STRING *str)
2496 {
2497     char buf[25], *pbuf;
2498     const char *p;
2499     int j;
2500
2501     j = i2a_ASN1_OBJECT(bio_err, obj);
2502     pbuf = buf;
2503     for (j = 22 - j; j > 0; j--)
2504         *(pbuf++) = ' ';
2505     *(pbuf++) = ':';
2506     *(pbuf++) = '\0';
2507     BIO_puts(bio_err, buf);
2508
2509     if (str->type == V_ASN1_PRINTABLESTRING)
2510         BIO_printf(bio_err, "PRINTABLE:'");
2511     else if (str->type == V_ASN1_T61STRING)
2512         BIO_printf(bio_err, "T61STRING:'");
2513     else if (str->type == V_ASN1_IA5STRING)
2514         BIO_printf(bio_err, "IA5STRING:'");
2515     else if (str->type == V_ASN1_UNIVERSALSTRING)
2516         BIO_printf(bio_err, "UNIVERSALSTRING:'");
2517     else
2518         BIO_printf(bio_err, "ASN.1 %2d:'", str->type);
2519
2520     p = (const char *)str->data;
2521     for (j = str->length; j > 0; j--) {
2522         if ((*p >= ' ') && (*p <= '~'))
2523             BIO_printf(bio_err, "%c", *p);
2524         else if (*p & 0x80)
2525             BIO_printf(bio_err, "\\0x%02X", *p);
2526         else if ((unsigned char)*p == 0xf7)
2527             BIO_printf(bio_err, "^?");
2528         else
2529             BIO_printf(bio_err, "^%c", *p + '@');
2530         p++;
2531     }
2532     BIO_printf(bio_err, "'\n");
2533     return 1;
2534 }
2535
2536 int unpack_revinfo(ASN1_TIME **prevtm, int *preason, ASN1_OBJECT **phold,
2537                    ASN1_GENERALIZEDTIME **pinvtm, const char *str)
2538 {
2539     char *tmp;
2540     char *rtime_str, *reason_str = NULL, *arg_str = NULL, *p;
2541     int reason_code = -1;
2542     int ret = 0;
2543     unsigned int i;
2544     ASN1_OBJECT *hold = NULL;
2545     ASN1_GENERALIZEDTIME *comp_time = NULL;
2546
2547     tmp = OPENSSL_strdup(str);
2548     if (!tmp) {
2549         BIO_printf(bio_err, "memory allocation failure\n");
2550         goto end;
2551     }
2552
2553     p = strchr(tmp, ',');
2554
2555     rtime_str = tmp;
2556
2557     if (p) {
2558         *p = '\0';
2559         p++;
2560         reason_str = p;
2561         p = strchr(p, ',');
2562         if (p) {
2563             *p = '\0';
2564             arg_str = p + 1;
2565         }
2566     }
2567
2568     if (prevtm) {
2569         *prevtm = ASN1_UTCTIME_new();
2570         if (*prevtm == NULL) {
2571             BIO_printf(bio_err, "memory allocation failure\n");
2572             goto end;
2573         }
2574         if (!ASN1_UTCTIME_set_string(*prevtm, rtime_str)) {
2575             BIO_printf(bio_err, "invalid revocation date %s\n", rtime_str);
2576             goto end;
2577         }
2578     }
2579     if (reason_str) {
2580         for (i = 0; i < NUM_REASONS; i++) {
2581             if (strcasecmp(reason_str, crl_reasons[i]) == 0) {
2582                 reason_code = i;
2583                 break;
2584             }
2585         }
2586         if (reason_code == OCSP_REVOKED_STATUS_NOSTATUS) {
2587             BIO_printf(bio_err, "invalid reason code %s\n", reason_str);
2588             goto end;
2589         }
2590
2591         if (reason_code == 7) {
2592             reason_code = OCSP_REVOKED_STATUS_REMOVEFROMCRL;
2593         } else if (reason_code == 8) { /* Hold instruction */
2594             if (!arg_str) {
2595                 BIO_printf(bio_err, "missing hold instruction\n");
2596                 goto end;
2597             }
2598             reason_code = OCSP_REVOKED_STATUS_CERTIFICATEHOLD;
2599             hold = OBJ_txt2obj(arg_str, 0);
2600
2601             if (!hold) {
2602                 BIO_printf(bio_err, "invalid object identifier %s\n", arg_str);
2603                 goto end;
2604             }
2605             if (phold)
2606                 *phold = hold;
2607             else
2608                 ASN1_OBJECT_free(hold);
2609         } else if ((reason_code == 9) || (reason_code == 10)) {
2610             if (!arg_str) {
2611                 BIO_printf(bio_err, "missing compromised time\n");
2612                 goto end;
2613             }
2614             comp_time = ASN1_GENERALIZEDTIME_new();
2615             if (comp_time == NULL) {
2616                 BIO_printf(bio_err, "memory allocation failure\n");
2617                 goto end;
2618             }
2619             if (!ASN1_GENERALIZEDTIME_set_string(comp_time, arg_str)) {
2620                 BIO_printf(bio_err, "invalid compromised time %s\n", arg_str);
2621                 goto end;
2622             }
2623             if (reason_code == 9)
2624                 reason_code = OCSP_REVOKED_STATUS_KEYCOMPROMISE;
2625             else
2626                 reason_code = OCSP_REVOKED_STATUS_CACOMPROMISE;
2627         }
2628     }
2629
2630     if (preason)
2631         *preason = reason_code;
2632     if (pinvtm) {
2633         *pinvtm = comp_time;
2634         comp_time = NULL;
2635     }
2636
2637     ret = 1;
2638
2639  end:
2640
2641     OPENSSL_free(tmp);
2642     ASN1_GENERALIZEDTIME_free(comp_time);
2643
2644     return ret;
2645 }