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