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