Fix provider cipher reinit after init/update with a partial update block.
[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                         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      "Enable support for multivalued RDNs"},
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', "Private key"},
218     {"keyform", OPT_KEYFORM, 'f', "Private key file format (ENGINE, other values ignored)"},
219     {"passin", OPT_PASSIN, 's', "Input file pass phrase source"},
220     {"key", OPT_KEY, 's', "Key to decode the private key if it is encrypted"},
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_SIGOPT, '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, *key = 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 *outdir = NULL, *outfile = NULL, *rev_arg = NULL, *ser_status = NULL;
280     const char *serialfile = NULL, *subj = NULL;
281     char *prog, *startdate = NULL, *enddate = NULL;
282     char *dbfile = NULL, *f;
283     char new_cert[PATH_MAX];
284     char tmp[10 + 1] = "\0";
285     char *const *pp;
286     const char *p;
287     size_t outdirlen = 0;
288     int create_ser = 0, free_key = 0, total = 0, total_done = 0;
289     int batch = 0, default_op = 1, doupdatedb = 0, ext_copy = EXT_COPY_NONE;
290     int keyformat = FORMAT_PEM, multirdn = 0, notext = 0, output_der = 0;
291     int ret = 1, email_dn = 1, req = 0, verbose = 0, gencrl = 0, dorevoke = 0;
292     int rand_ser = 0, i, j, selfsign = 0, def_nid, def_ret;
293     long crldays = 0, crlhours = 0, crlsec = 0, days = 0;
294     unsigned long chtype = MBSTRING_ASC, certopt = 0;
295     X509 *x509 = NULL, *x509p = NULL, *x = NULL;
296     REVINFO_TYPE rev_type = REV_NONE;
297     X509_REVOKED *r = NULL;
298     OPTION_CHOICE o;
299
300     prog = opt_init(argc, argv, ca_options);
301     while ((o = opt_next()) != OPT_EOF) {
302         switch (o) {
303         case OPT_EOF:
304         case OPT_ERR:
305 opthelp:
306             BIO_printf(bio_err, "%s: Use -help for summary.\n", prog);
307             goto end;
308         case OPT_HELP:
309             opt_help(ca_options);
310             ret = 0;
311             goto end;
312         case OPT_IN:
313             req = 1;
314             infile = opt_arg();
315             break;
316         case OPT_INFORM:
317             if (!opt_format(opt_arg(), OPT_FMT_PEMDER, &informat))
318                 goto opthelp;
319             break;
320         case OPT_OUT:
321             outfile = opt_arg();
322             break;
323         case OPT_VERBOSE:
324             verbose = 1;
325             break;
326         case OPT_CONFIG:
327             configfile = opt_arg();
328             break;
329         case OPT_NAME:
330             section = opt_arg();
331             break;
332         case OPT_SUBJ:
333             subj = opt_arg();
334             /* preserve=1; */
335             break;
336         case OPT_UTF8:
337             chtype = MBSTRING_UTF8;
338             break;
339         case OPT_RAND_SERIAL:
340             rand_ser = 1;
341             break;
342         case OPT_CREATE_SERIAL:
343             create_ser = 1;
344             break;
345         case OPT_MULTIVALUE_RDN:
346             multirdn = 1;
347             break;
348         case OPT_STARTDATE:
349             startdate = opt_arg();
350             break;
351         case OPT_ENDDATE:
352             enddate = opt_arg();
353             break;
354         case OPT_DAYS:
355             days = atoi(opt_arg());
356             break;
357         case OPT_MD:
358             md = opt_arg();
359             break;
360         case OPT_POLICY:
361             policy = opt_arg();
362             break;
363         case OPT_KEYFILE:
364             keyfile = opt_arg();
365             break;
366         case OPT_KEYFORM:
367             if (!opt_format(opt_arg(), OPT_FMT_ANY, &keyformat))
368                 goto opthelp;
369             break;
370         case OPT_PASSIN:
371             passinarg = opt_arg();
372             break;
373         case OPT_R_CASES:
374             if (!opt_rand(o))
375                 goto end;
376             break;
377         case OPT_PROV_CASES:
378             if (!opt_provider(o))
379                 goto end;
380             break;
381         case OPT_KEY:
382             key = opt_arg();
383             break;
384         case OPT_CERT:
385             certfile = opt_arg();
386             break;
387         case OPT_CERTFORM:
388             if (!opt_format(opt_arg(), OPT_FMT_ANY, &certformat))
389                 goto opthelp;
390             break;
391         case OPT_SELFSIGN:
392             selfsign = 1;
393             break;
394         case OPT_OUTDIR:
395             outdir = opt_arg();
396             break;
397         case OPT_SIGOPT:
398             if (sigopts == NULL)
399                 sigopts = sk_OPENSSL_STRING_new_null();
400             if (sigopts == NULL || !sk_OPENSSL_STRING_push(sigopts, opt_arg()))
401                 goto end;
402             break;
403         case OPT_VFYOPT:
404             if (vfyopts == NULL)
405                 vfyopts = sk_OPENSSL_STRING_new_null();
406             if (vfyopts == NULL || !sk_OPENSSL_STRING_push(vfyopts, opt_arg()))
407                 goto end;
408             break;
409         case OPT_NOTEXT:
410             notext = 1;
411             break;
412         case OPT_BATCH:
413             batch = 1;
414             break;
415         case OPT_PRESERVEDN:
416             preserve = 1;
417             break;
418         case OPT_NOEMAILDN:
419             email_dn = 0;
420             break;
421         case OPT_GENCRL:
422             gencrl = 1;
423             break;
424         case OPT_MSIE_HACK:
425             msie_hack = 1;
426             break;
427         case OPT_CRLDAYS:
428             crldays = atol(opt_arg());
429             break;
430         case OPT_CRLHOURS:
431             crlhours = atol(opt_arg());
432             break;
433         case OPT_CRLSEC:
434             crlsec = atol(opt_arg());
435             break;
436         case OPT_INFILES:
437             req = 1;
438             goto end_of_options;
439         case OPT_SS_CERT:
440             ss_cert_file = opt_arg();
441             req = 1;
442             break;
443         case OPT_SPKAC:
444             spkac_file = opt_arg();
445             req = 1;
446             break;
447         case OPT_REVOKE:
448             infile = opt_arg();
449             dorevoke = 1;
450             break;
451         case OPT_VALID:
452             infile = opt_arg();
453             dorevoke = 2;
454             break;
455         case OPT_EXTENSIONS:
456             extensions = opt_arg();
457             break;
458         case OPT_EXTFILE:
459             extfile = opt_arg();
460             break;
461         case OPT_STATUS:
462             ser_status = opt_arg();
463             break;
464         case OPT_UPDATEDB:
465             doupdatedb = 1;
466             break;
467         case OPT_CRLEXTS:
468             crl_ext = opt_arg();
469             break;
470         case OPT_CRL_REASON:   /* := REV_CRL_REASON */
471         case OPT_CRL_HOLD:
472         case OPT_CRL_COMPROMISE:
473         case OPT_CRL_CA_COMPROMISE:
474             rev_arg = opt_arg();
475             rev_type = (o - OPT_CRL_REASON) + REV_CRL_REASON;
476             break;
477         case OPT_ENGINE:
478             e = setup_engine(opt_arg(), 0);
479             break;
480         }
481     }
482 end_of_options:
483     argc = opt_num_rest();
484     argv = opt_rest();
485
486     BIO_printf(bio_err, "Using configuration from %s\n", configfile);
487
488     if ((conf = app_load_config(configfile)) == NULL)
489         goto end;
490     if (configfile != default_config_file && !app_load_modules(conf))
491         goto end;
492
493     /* Lets get the config section we are using */
494     if (section == NULL
495         && (section = lookup_conf(conf, BASE_SECTION, ENV_DEFAULT_CA)) == NULL)
496         goto end;
497
498     p = NCONF_get_string(conf, NULL, "oid_file");
499     if (p == NULL)
500         ERR_clear_error();
501     if (p != NULL) {
502         BIO *oid_bio = BIO_new_file(p, "r");
503
504         if (oid_bio == NULL) {
505             ERR_clear_error();
506         } else {
507             OBJ_create_objects(oid_bio);
508             BIO_free(oid_bio);
509         }
510     }
511     if (!add_oid_section(conf)) {
512         ERR_print_errors(bio_err);
513         goto end;
514     }
515
516     app_RAND_load_conf(conf, BASE_SECTION);
517
518     f = NCONF_get_string(conf, section, STRING_MASK);
519     if (f == NULL)
520         ERR_clear_error();
521
522     if (f != NULL && !ASN1_STRING_set_default_mask_asc(f)) {
523         BIO_printf(bio_err, "Invalid global string mask setting %s\n", f);
524         goto end;
525     }
526
527     if (chtype != MBSTRING_UTF8) {
528         f = NCONF_get_string(conf, section, UTF8_IN);
529         if (f == NULL)
530             ERR_clear_error();
531         else if (strcmp(f, "yes") == 0)
532             chtype = MBSTRING_UTF8;
533     }
534
535     db_attr.unique_subject = 1;
536     p = NCONF_get_string(conf, section, ENV_UNIQUE_SUBJECT);
537     if (p != NULL)
538         db_attr.unique_subject = parse_yesno(p, 1);
539     else
540         ERR_clear_error();
541
542     /*****************************************************************/
543     /* report status of cert with serial number given on command line */
544     if (ser_status) {
545         dbfile = lookup_conf(conf, section, ENV_DATABASE);
546         if (dbfile == NULL)
547             goto end;
548
549         db = load_index(dbfile, &db_attr);
550         if (db == NULL)
551             goto end;
552
553         if (index_index(db) <= 0)
554             goto end;
555
556         if (get_certificate_status(ser_status, db) != 1)
557             BIO_printf(bio_err, "Error verifying serial %s!\n", ser_status);
558         goto end;
559     }
560
561     /*****************************************************************/
562     /* we definitely need a private key, so let's get it */
563
564     if (keyfile == NULL
565         && (keyfile = lookup_conf(conf, section, ENV_PRIVATE_KEY)) == NULL)
566         goto end;
567
568     if (key == NULL) {
569         free_key = 1;
570         if (!app_passwd(passinarg, NULL, &key, NULL)) {
571             BIO_printf(bio_err, "Error getting password\n");
572             goto end;
573         }
574     }
575     pkey = load_key(keyfile, keyformat, 0, key, e, "CA private key");
576     cleanse(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(certfile, certformat, "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, pkey, x509, dgst,
944                              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             revcert = load_cert(infile, certformat, infile);
1266             if (revcert == NULL)
1267                 goto end;
1268             if (dorevoke == 2)
1269                 rev_type = REV_VALID;
1270             j = do_revoke(revcert, db, rev_type, rev_arg);
1271             if (j <= 0)
1272                 goto end;
1273             X509_free(revcert);
1274
1275             if (!save_index(dbfile, "new", db))
1276                 goto end;
1277
1278             if (!rotate_index(dbfile, "new", "old"))
1279                 goto end;
1280
1281             BIO_printf(bio_err, "Data Base Updated\n");
1282         }
1283     }
1284     ret = 0;
1285
1286  end:
1287     if (ret)
1288         ERR_print_errors(bio_err);
1289     BIO_free_all(Sout);
1290     BIO_free_all(out);
1291     BIO_free_all(in);
1292     sk_X509_pop_free(cert_sk, X509_free);
1293
1294     if (free_key)
1295         OPENSSL_free(key);
1296     BN_free(serial);
1297     BN_free(crlnumber);
1298     free_index(db);
1299     sk_OPENSSL_STRING_free(sigopts);
1300     sk_OPENSSL_STRING_free(vfyopts);
1301     EVP_PKEY_free(pkey);
1302     X509_free(x509);
1303     X509_CRL_free(crl);
1304     NCONF_free(conf);
1305     NCONF_free(extconf);
1306     release_engine(e);
1307     return ret;
1308 }
1309
1310 static char *lookup_conf(const CONF *conf, const char *section, const char *tag)
1311 {
1312     char *entry = NCONF_get_string(conf, section, tag);
1313     if (entry == NULL)
1314         BIO_printf(bio_err, "variable lookup failed for %s::%s\n", section, tag);
1315     return entry;
1316 }
1317
1318 static int certify(X509 **xret, const char *infile, int informat,
1319                    EVP_PKEY *pkey, X509 *x509,
1320                    const EVP_MD *dgst,
1321                    STACK_OF(OPENSSL_STRING) *sigopts,
1322                    STACK_OF(OPENSSL_STRING) *vfyopts,
1323                    STACK_OF(CONF_VALUE) *policy, CA_DB *db,
1324                    BIGNUM *serial, const char *subj, unsigned long chtype,
1325                    int multirdn, int email_dn, const char *startdate,
1326                    const char *enddate,
1327                    long days, int batch, const char *ext_sect, CONF *lconf,
1328                    int verbose, unsigned long certopt, unsigned long nameopt,
1329                    int default_op, int ext_copy, int selfsign)
1330 {
1331     X509_REQ *req = NULL;
1332     EVP_PKEY *pktmp = NULL;
1333     int ok = -1, i;
1334
1335     req = load_csr(infile, informat, "certificate request");
1336     if (req == NULL)
1337         goto end;
1338     if (verbose)
1339         X509_REQ_print_ex(bio_err, req, nameopt, X509_FLAG_COMPAT);
1340
1341     BIO_printf(bio_err, "Check that the request matches the signature\n");
1342
1343     if (selfsign && !X509_REQ_check_private_key(req, pkey)) {
1344         BIO_printf(bio_err,
1345                    "Certificate request and CA private key do not match\n");
1346         ok = 0;
1347         goto end;
1348     }
1349     if ((pktmp = X509_REQ_get0_pubkey(req)) == NULL) {
1350         BIO_printf(bio_err, "error unpacking public key\n");
1351         goto end;
1352     }
1353     i = do_X509_REQ_verify(req, pktmp, vfyopts);
1354     pktmp = NULL;
1355     if (i < 0) {
1356         ok = 0;
1357         BIO_printf(bio_err, "Signature verification problems....\n");
1358         ERR_print_errors(bio_err);
1359         goto end;
1360     }
1361     if (i == 0) {
1362         ok = 0;
1363         BIO_printf(bio_err,
1364                    "Signature did not match the certificate request\n");
1365         ERR_print_errors(bio_err);
1366         goto end;
1367     } else {
1368         BIO_printf(bio_err, "Signature ok\n");
1369     }
1370
1371     ok = do_body(xret, pkey, x509, dgst, sigopts, policy, db, serial, subj,
1372                  chtype, multirdn, email_dn, startdate, enddate, days, batch,
1373                  verbose, req, ext_sect, lconf, certopt, nameopt, default_op,
1374                  ext_copy, selfsign);
1375
1376  end:
1377     X509_REQ_free(req);
1378     return ok;
1379 }
1380
1381 static int certify_cert(X509 **xret, const char *infile, int certformat,
1382                         EVP_PKEY *pkey, X509 *x509,
1383                         const EVP_MD *dgst,
1384                         STACK_OF(OPENSSL_STRING) *sigopts,
1385                         STACK_OF(OPENSSL_STRING) *vfyopts,
1386                         STACK_OF(CONF_VALUE) *policy, CA_DB *db,
1387                         BIGNUM *serial, const char *subj, unsigned long chtype,
1388                         int multirdn, int email_dn, const char *startdate,
1389                         const char *enddate, long days, int batch, const char *ext_sect,
1390                         CONF *lconf, int verbose, unsigned long certopt,
1391                         unsigned long nameopt, int default_op, int ext_copy)
1392 {
1393     X509 *req = NULL;
1394     X509_REQ *rreq = NULL;
1395     EVP_PKEY *pktmp = NULL;
1396     int ok = -1, i;
1397
1398     if ((req = load_cert(infile, certformat, infile)) == NULL)
1399         goto end;
1400     if (verbose)
1401         X509_print(bio_err, req);
1402
1403     BIO_printf(bio_err, "Check that the request matches the signature\n");
1404
1405     if ((pktmp = X509_get0_pubkey(req)) == NULL) {
1406         BIO_printf(bio_err, "error unpacking public key\n");
1407         goto end;
1408     }
1409     i = do_X509_verify(req, pktmp, vfyopts);
1410     if (i < 0) {
1411         ok = 0;
1412         BIO_printf(bio_err, "Signature verification problems....\n");
1413         goto end;
1414     }
1415     if (i == 0) {
1416         ok = 0;
1417         BIO_printf(bio_err, "Signature did not match the certificate\n");
1418         goto end;
1419     } else {
1420         BIO_printf(bio_err, "Signature ok\n");
1421     }
1422
1423     if ((rreq = X509_to_X509_REQ(req, NULL, NULL)) == NULL)
1424         goto end;
1425
1426     ok = do_body(xret, pkey, x509, dgst, sigopts, policy, db, serial, subj,
1427                  chtype, multirdn, email_dn, startdate, enddate, days, batch,
1428                  verbose, rreq, ext_sect, lconf, certopt, nameopt, default_op,
1429                  ext_copy, 0);
1430
1431  end:
1432     X509_REQ_free(rreq);
1433     X509_free(req);
1434     return ok;
1435 }
1436
1437 static int do_body(X509 **xret, EVP_PKEY *pkey, X509 *x509,
1438                    const EVP_MD *dgst, STACK_OF(OPENSSL_STRING) *sigopts,
1439                    STACK_OF(CONF_VALUE) *policy, CA_DB *db, BIGNUM *serial,
1440                    const char *subj, unsigned long chtype, int multirdn,
1441                    int email_dn, const char *startdate, const char *enddate, long days,
1442                    int batch, int verbose, X509_REQ *req, const char *ext_sect,
1443                    CONF *lconf, unsigned long certopt, unsigned long nameopt,
1444                    int default_op, int ext_copy, int selfsign)
1445 {
1446     const X509_NAME *name = NULL;
1447     X509_NAME *CAname = NULL, *subject = NULL;
1448     const ASN1_TIME *tm;
1449     ASN1_STRING *str, *str2;
1450     ASN1_OBJECT *obj;
1451     X509 *ret = NULL;
1452     X509_NAME_ENTRY *ne, *tne;
1453     EVP_PKEY *pktmp;
1454     int ok = -1, i, j, last, nid;
1455     const char *p;
1456     CONF_VALUE *cv;
1457     OPENSSL_STRING row[DB_NUMBER];
1458     OPENSSL_STRING *irow = NULL;
1459     OPENSSL_STRING *rrow = NULL;
1460     char buf[25];
1461
1462     for (i = 0; i < DB_NUMBER; i++)
1463         row[i] = NULL;
1464
1465     if (subj) {
1466         X509_NAME *n = parse_name(subj, chtype, multirdn, "subject");
1467
1468         if (!n) {
1469             ERR_print_errors(bio_err);
1470             goto end;
1471         }
1472         X509_REQ_set_subject_name(req, n);
1473         X509_NAME_free(n);
1474     }
1475
1476     if (default_op)
1477         BIO_printf(bio_err, "The Subject's Distinguished Name is as follows\n");
1478
1479     name = X509_REQ_get_subject_name(req);
1480     for (i = 0; i < X509_NAME_entry_count(name); i++) {
1481         ne = X509_NAME_get_entry(name, i);
1482         str = X509_NAME_ENTRY_get_data(ne);
1483         obj = X509_NAME_ENTRY_get_object(ne);
1484         nid = OBJ_obj2nid(obj);
1485
1486         if (msie_hack) {
1487             /* assume all type should be strings */
1488
1489             if (str->type == V_ASN1_UNIVERSALSTRING)
1490                 ASN1_UNIVERSALSTRING_to_string(str);
1491
1492             if (str->type == V_ASN1_IA5STRING && nid != NID_pkcs9_emailAddress)
1493                 str->type = V_ASN1_T61STRING;
1494
1495             if (nid == NID_pkcs9_emailAddress
1496                 && str->type == V_ASN1_PRINTABLESTRING)
1497                 str->type = V_ASN1_IA5STRING;
1498         }
1499
1500         /* If no EMAIL is wanted in the subject */
1501         if (nid == NID_pkcs9_emailAddress && !email_dn)
1502             continue;
1503
1504         /* check some things */
1505         if (nid == NID_pkcs9_emailAddress && str->type != V_ASN1_IA5STRING) {
1506             BIO_printf(bio_err,
1507                        "\nemailAddress type needs to be of type IA5STRING\n");
1508             goto end;
1509         }
1510         if (str->type != V_ASN1_BMPSTRING && str->type != V_ASN1_UTF8STRING) {
1511             j = ASN1_PRINTABLE_type(str->data, str->length);
1512             if ((j == V_ASN1_T61STRING && str->type != V_ASN1_T61STRING) ||
1513                 (j == V_ASN1_IA5STRING && str->type == V_ASN1_PRINTABLESTRING))
1514             {
1515                 BIO_printf(bio_err,
1516                            "\nThe string contains characters that are illegal for the ASN.1 type\n");
1517                 goto end;
1518             }
1519         }
1520
1521         if (default_op)
1522             old_entry_print(obj, str);
1523     }
1524
1525     /* Ok, now we check the 'policy' stuff. */
1526     if ((subject = X509_NAME_new()) == NULL) {
1527         BIO_printf(bio_err, "Memory allocation failure\n");
1528         goto end;
1529     }
1530
1531     /* take a copy of the issuer name before we mess with it. */
1532     if (selfsign)
1533         CAname = X509_NAME_dup(name);
1534     else
1535         CAname = X509_NAME_dup(X509_get_subject_name(x509));
1536     if (CAname == NULL)
1537         goto end;
1538     str = str2 = NULL;
1539
1540     for (i = 0; i < sk_CONF_VALUE_num(policy); i++) {
1541         cv = sk_CONF_VALUE_value(policy, i); /* get the object id */
1542         if ((j = OBJ_txt2nid(cv->name)) == NID_undef) {
1543             BIO_printf(bio_err,
1544                        "%s:unknown object type in 'policy' configuration\n",
1545                        cv->name);
1546             goto end;
1547         }
1548         obj = OBJ_nid2obj(j);
1549
1550         last = -1;
1551         for (;;) {
1552             X509_NAME_ENTRY *push = NULL;
1553
1554             /* lookup the object in the supplied name list */
1555             j = X509_NAME_get_index_by_OBJ(name, obj, last);
1556             if (j < 0) {
1557                 if (last != -1)
1558                     break;
1559                 tne = NULL;
1560             } else {
1561                 tne = X509_NAME_get_entry(name, j);
1562             }
1563             last = j;
1564
1565             /* depending on the 'policy', decide what to do. */
1566             if (strcmp(cv->value, "optional") == 0) {
1567                 if (tne != NULL)
1568                     push = tne;
1569             } else if (strcmp(cv->value, "supplied") == 0) {
1570                 if (tne == NULL) {
1571                     BIO_printf(bio_err,
1572                                "The %s field needed to be supplied and was missing\n",
1573                                cv->name);
1574                     goto end;
1575                 } else {
1576                     push = tne;
1577                 }
1578             } else if (strcmp(cv->value, "match") == 0) {
1579                 int last2;
1580
1581                 if (tne == NULL) {
1582                     BIO_printf(bio_err,
1583                                "The mandatory %s field was missing\n",
1584                                cv->name);
1585                     goto end;
1586                 }
1587
1588                 last2 = -1;
1589
1590  again2:
1591                 j = X509_NAME_get_index_by_OBJ(CAname, obj, last2);
1592                 if ((j < 0) && (last2 == -1)) {
1593                     BIO_printf(bio_err,
1594                                "The %s field does not exist in the CA certificate,\n"
1595                                "the 'policy' is misconfigured\n", cv->name);
1596                     goto end;
1597                 }
1598                 if (j >= 0) {
1599                     push = X509_NAME_get_entry(CAname, j);
1600                     str = X509_NAME_ENTRY_get_data(tne);
1601                     str2 = X509_NAME_ENTRY_get_data(push);
1602                     last2 = j;
1603                     if (ASN1_STRING_cmp(str, str2) != 0)
1604                         goto again2;
1605                 }
1606                 if (j < 0) {
1607                     BIO_printf(bio_err,
1608                                "The %s field is different between\n"
1609                                "CA certificate (%s) and the request (%s)\n",
1610                                cv->name,
1611                                ((str2 == NULL) ? "NULL" : (char *)str2->data),
1612                                ((str == NULL) ? "NULL" : (char *)str->data));
1613                     goto end;
1614                 }
1615             } else {
1616                 BIO_printf(bio_err,
1617                            "%s:invalid type in 'policy' configuration\n",
1618                            cv->value);
1619                 goto end;
1620             }
1621
1622             if (push != NULL) {
1623                 if (!X509_NAME_add_entry(subject, push, -1, 0)) {
1624                     BIO_printf(bio_err, "Memory allocation failure\n");
1625                     goto end;
1626                 }
1627             }
1628             if (j < 0)
1629                 break;
1630         }
1631     }
1632
1633     if (preserve) {
1634         X509_NAME_free(subject);
1635         /* subject=X509_NAME_dup(X509_REQ_get_subject_name(req)); */
1636         subject = X509_NAME_dup(name);
1637         if (subject == NULL)
1638             goto end;
1639     }
1640
1641     /* We are now totally happy, lets make and sign the certificate */
1642     if (verbose)
1643         BIO_printf(bio_err,
1644                    "Everything appears to be ok, creating and signing the certificate\n");
1645
1646     if ((ret = X509_new_with_libctx(app_get0_libctx(), app_get0_propq())) == NULL)
1647         goto end;
1648
1649 #ifdef X509_V3
1650     /* Make it an X509 v3 certificate. */
1651     if (!X509_set_version(ret, 2))
1652         goto end;
1653 #endif
1654
1655     if (BN_to_ASN1_INTEGER(serial, X509_get_serialNumber(ret)) == NULL)
1656         goto end;
1657     if (selfsign) {
1658         if (!X509_set_issuer_name(ret, subject))
1659             goto end;
1660     } else {
1661         if (!X509_set_issuer_name(ret, X509_get_subject_name(x509)))
1662             goto end;
1663     }
1664
1665     if (!set_cert_times(ret, startdate, enddate, days))
1666         goto end;
1667
1668     if (enddate != NULL) {
1669         int tdays;
1670
1671         if (!ASN1_TIME_diff(&tdays, NULL, NULL, X509_get0_notAfter(ret)))
1672             goto end;
1673         days = tdays;
1674     }
1675
1676     if (!X509_set_subject_name(ret, subject))
1677         goto end;
1678
1679     pktmp = X509_REQ_get0_pubkey(req);
1680     i = X509_set_pubkey(ret, pktmp);
1681     if (!i)
1682         goto end;
1683
1684     /* Lets add the extensions, if there are any */
1685     if (ext_sect) {
1686         X509V3_CTX ctx;
1687
1688         /* Initialize the context structure */
1689         if (selfsign)
1690             X509V3_set_ctx(&ctx, ret, ret, req, NULL, 0);
1691         else
1692             X509V3_set_ctx(&ctx, x509, ret, req, NULL, 0);
1693
1694         if (extconf != NULL) {
1695             if (verbose)
1696                 BIO_printf(bio_err, "Extra configuration file found\n");
1697
1698             /* Use the extconf configuration db LHASH */
1699             X509V3_set_nconf(&ctx, extconf);
1700
1701             /* Test the structure (needed?) */
1702             /* X509V3_set_ctx_test(&ctx); */
1703
1704             /* Adds exts contained in the configuration file */
1705             if (!X509V3_EXT_add_nconf(extconf, &ctx, ext_sect, ret)) {
1706                 BIO_printf(bio_err,
1707                            "ERROR: adding extensions in section %s\n",
1708                            ext_sect);
1709                 ERR_print_errors(bio_err);
1710                 goto end;
1711             }
1712             if (verbose)
1713                 BIO_printf(bio_err,
1714                            "Successfully added extensions from file.\n");
1715         } else if (ext_sect) {
1716             /* We found extensions to be set from config file */
1717             X509V3_set_nconf(&ctx, lconf);
1718
1719             if (!X509V3_EXT_add_nconf(lconf, &ctx, ext_sect, ret)) {
1720                 BIO_printf(bio_err,
1721                            "ERROR: adding extensions in section %s\n",
1722                            ext_sect);
1723                 ERR_print_errors(bio_err);
1724                 goto end;
1725             }
1726
1727             if (verbose)
1728                 BIO_printf(bio_err,
1729                            "Successfully added extensions from config\n");
1730         }
1731     }
1732
1733     /* Copy extensions from request (if any) */
1734
1735     if (!copy_extensions(ret, req, ext_copy)) {
1736         BIO_printf(bio_err, "ERROR: adding extensions from request\n");
1737         ERR_print_errors(bio_err);
1738         goto end;
1739     }
1740
1741     {
1742         const STACK_OF(X509_EXTENSION) *exts = X509_get0_extensions(ret);
1743
1744         if (exts != NULL && sk_X509_EXTENSION_num(exts) > 0)
1745             /* Make it an X509 v3 certificate. */
1746             if (!X509_set_version(ret, 2))
1747                 goto end;
1748     }
1749
1750     if (verbose)
1751         BIO_printf(bio_err,
1752                    "The subject name appears to be ok, checking data base for clashes\n");
1753
1754     /* Build the correct Subject if no e-mail is wanted in the subject. */
1755     if (!email_dn) {
1756         X509_NAME_ENTRY *tmpne;
1757         X509_NAME *dn_subject;
1758
1759         /*
1760          * Its best to dup the subject DN and then delete any email addresses
1761          * because this retains its structure.
1762          */
1763         if ((dn_subject = X509_NAME_dup(subject)) == NULL) {
1764             BIO_printf(bio_err, "Memory allocation failure\n");
1765             goto end;
1766         }
1767         i = -1;
1768         while ((i = X509_NAME_get_index_by_NID(dn_subject,
1769                                                NID_pkcs9_emailAddress,
1770                                                i)) >= 0) {
1771             tmpne = X509_NAME_delete_entry(dn_subject, i--);
1772             X509_NAME_ENTRY_free(tmpne);
1773         }
1774
1775         if (!X509_set_subject_name(ret, dn_subject)) {
1776             X509_NAME_free(dn_subject);
1777             goto end;
1778         }
1779         X509_NAME_free(dn_subject);
1780     }
1781
1782     row[DB_name] = X509_NAME_oneline(X509_get_subject_name(ret), NULL, 0);
1783     if (row[DB_name] == NULL) {
1784         BIO_printf(bio_err, "Memory allocation failure\n");
1785         goto end;
1786     }
1787
1788     if (BN_is_zero(serial))
1789         row[DB_serial] = OPENSSL_strdup("00");
1790     else
1791         row[DB_serial] = BN_bn2hex(serial);
1792     if (row[DB_serial] == NULL) {
1793         BIO_printf(bio_err, "Memory allocation failure\n");
1794         goto end;
1795     }
1796
1797     if (row[DB_name][0] == '\0') {
1798         /*
1799          * An empty subject! We'll use the serial number instead. If
1800          * unique_subject is in use then we don't want different entries with
1801          * empty subjects matching each other.
1802          */
1803         OPENSSL_free(row[DB_name]);
1804         row[DB_name] = OPENSSL_strdup(row[DB_serial]);
1805         if (row[DB_name] == NULL) {
1806             BIO_printf(bio_err, "Memory allocation failure\n");
1807             goto end;
1808         }
1809     }
1810
1811     if (db->attributes.unique_subject) {
1812         OPENSSL_STRING *crow = row;
1813
1814         rrow = TXT_DB_get_by_index(db->db, DB_name, crow);
1815         if (rrow != NULL) {
1816             BIO_printf(bio_err,
1817                        "ERROR:There is already a certificate for %s\n",
1818                        row[DB_name]);
1819         }
1820     }
1821     if (rrow == NULL) {
1822         rrow = TXT_DB_get_by_index(db->db, DB_serial, row);
1823         if (rrow != NULL) {
1824             BIO_printf(bio_err,
1825                        "ERROR:Serial number %s has already been issued,\n",
1826                        row[DB_serial]);
1827             BIO_printf(bio_err,
1828                        "      check the database/serial_file for corruption\n");
1829         }
1830     }
1831
1832     if (rrow != NULL) {
1833         BIO_printf(bio_err, "The matching entry has the following details\n");
1834         if (rrow[DB_type][0] == DB_TYPE_EXP)
1835             p = "Expired";
1836         else if (rrow[DB_type][0] == DB_TYPE_REV)
1837             p = "Revoked";
1838         else if (rrow[DB_type][0] == DB_TYPE_VAL)
1839             p = "Valid";
1840         else
1841             p = "\ninvalid type, Data base error\n";
1842         BIO_printf(bio_err, "Type          :%s\n", p);;
1843         if (rrow[DB_type][0] == DB_TYPE_REV) {
1844             p = rrow[DB_exp_date];
1845             if (p == NULL)
1846                 p = "undef";
1847             BIO_printf(bio_err, "Was revoked on:%s\n", p);
1848         }
1849         p = rrow[DB_exp_date];
1850         if (p == NULL)
1851             p = "undef";
1852         BIO_printf(bio_err, "Expires on    :%s\n", p);
1853         p = rrow[DB_serial];
1854         if (p == NULL)
1855             p = "undef";
1856         BIO_printf(bio_err, "Serial Number :%s\n", p);
1857         p = rrow[DB_file];
1858         if (p == NULL)
1859             p = "undef";
1860         BIO_printf(bio_err, "File name     :%s\n", p);
1861         p = rrow[DB_name];
1862         if (p == NULL)
1863             p = "undef";
1864         BIO_printf(bio_err, "Subject Name  :%s\n", p);
1865         ok = -1;                /* This is now a 'bad' error. */
1866         goto end;
1867     }
1868
1869     if (!default_op) {
1870         BIO_printf(bio_err, "Certificate Details:\n");
1871         /*
1872          * Never print signature details because signature not present
1873          */
1874         certopt |= X509_FLAG_NO_SIGDUMP | X509_FLAG_NO_SIGNAME;
1875         X509_print_ex(bio_err, ret, nameopt, certopt);
1876     }
1877
1878     BIO_printf(bio_err, "Certificate is to be certified until ");
1879     ASN1_TIME_print(bio_err, X509_get0_notAfter(ret));
1880     if (days)
1881         BIO_printf(bio_err, " (%ld days)", days);
1882     BIO_printf(bio_err, "\n");
1883
1884     if (!batch) {
1885
1886         BIO_printf(bio_err, "Sign the certificate? [y/n]:");
1887         (void)BIO_flush(bio_err);
1888         buf[0] = '\0';
1889         if (fgets(buf, sizeof(buf), stdin) == NULL) {
1890             BIO_printf(bio_err,
1891                        "CERTIFICATE WILL NOT BE CERTIFIED: I/O error\n");
1892             ok = 0;
1893             goto end;
1894         }
1895         if (!(buf[0] == 'y' || buf[0] == 'Y')) {
1896             BIO_printf(bio_err, "CERTIFICATE WILL NOT BE CERTIFIED\n");
1897             ok = 0;
1898             goto end;
1899         }
1900     }
1901
1902     pktmp = X509_get0_pubkey(ret);
1903     if (EVP_PKEY_missing_parameters(pktmp) &&
1904         !EVP_PKEY_missing_parameters(pkey))
1905         EVP_PKEY_copy_parameters(pktmp, pkey);
1906
1907     if (!do_X509_sign(ret, pkey, dgst, sigopts))
1908         goto end;
1909
1910     /* We now just add it to the database as DB_TYPE_VAL('V') */
1911     row[DB_type] = OPENSSL_strdup("V");
1912     tm = X509_get0_notAfter(ret);
1913     row[DB_exp_date] = app_malloc(tm->length + 1, "row expdate");
1914     memcpy(row[DB_exp_date], tm->data, tm->length);
1915     row[DB_exp_date][tm->length] = '\0';
1916     row[DB_rev_date] = NULL;
1917     row[DB_file] = OPENSSL_strdup("unknown");
1918     if ((row[DB_type] == NULL) || (row[DB_exp_date] == NULL) ||
1919         (row[DB_file] == NULL) || (row[DB_name] == NULL)) {
1920         BIO_printf(bio_err, "Memory allocation failure\n");
1921         goto end;
1922     }
1923
1924     irow = app_malloc(sizeof(*irow) * (DB_NUMBER + 1), "row space");
1925     for (i = 0; i < DB_NUMBER; i++)
1926         irow[i] = row[i];
1927     irow[DB_NUMBER] = NULL;
1928
1929     if (!TXT_DB_insert(db->db, irow)) {
1930         BIO_printf(bio_err, "failed to update database\n");
1931         BIO_printf(bio_err, "TXT_DB error number %ld\n", db->db->error);
1932         goto end;
1933     }
1934     irow = NULL;
1935     ok = 1;
1936  end:
1937     if (ok != 1) {
1938         for (i = 0; i < DB_NUMBER; i++)
1939             OPENSSL_free(row[i]);
1940     }
1941     OPENSSL_free(irow);
1942
1943     X509_NAME_free(CAname);
1944     X509_NAME_free(subject);
1945     if (ok <= 0)
1946         X509_free(ret);
1947     else
1948         *xret = ret;
1949     return ok;
1950 }
1951
1952 static void write_new_certificate(BIO *bp, X509 *x, int output_der, int notext)
1953 {
1954
1955     if (output_der) {
1956         (void)i2d_X509_bio(bp, x);
1957         return;
1958     }
1959     if (!notext)
1960         X509_print(bp, x);
1961     PEM_write_bio_X509(bp, x);
1962 }
1963
1964 static int certify_spkac(X509 **xret, const char *infile, EVP_PKEY *pkey,
1965                          X509 *x509, const EVP_MD *dgst,
1966                          STACK_OF(OPENSSL_STRING) *sigopts,
1967                          STACK_OF(CONF_VALUE) *policy, CA_DB *db,
1968                          BIGNUM *serial, const char *subj, unsigned long chtype,
1969                          int multirdn, int email_dn, const char *startdate,
1970                          const char *enddate, long days, const char *ext_sect,
1971                          CONF *lconf, int verbose, unsigned long certopt,
1972                          unsigned long nameopt, int default_op, int ext_copy)
1973 {
1974     STACK_OF(CONF_VALUE) *sk = NULL;
1975     LHASH_OF(CONF_VALUE) *parms = NULL;
1976     X509_REQ *req = NULL;
1977     CONF_VALUE *cv = NULL;
1978     NETSCAPE_SPKI *spki = NULL;
1979     char *type, *buf;
1980     EVP_PKEY *pktmp = NULL;
1981     X509_NAME *n = NULL;
1982     X509_NAME_ENTRY *ne = NULL;
1983     int ok = -1, i, j;
1984     long errline;
1985     int nid;
1986
1987     /*
1988      * Load input file into a hash table.  (This is just an easy
1989      * way to read and parse the file, then put it into a convenient
1990      * STACK format).
1991      */
1992     parms = CONF_load(NULL, infile, &errline);
1993     if (parms == NULL) {
1994         BIO_printf(bio_err, "error on line %ld of %s\n", errline, infile);
1995         ERR_print_errors(bio_err);
1996         goto end;
1997     }
1998
1999     sk = CONF_get_section(parms, "default");
2000     if (sk_CONF_VALUE_num(sk) == 0) {
2001         BIO_printf(bio_err, "no name/value pairs found in %s\n", infile);
2002         goto end;
2003     }
2004
2005     /*
2006      * Now create a dummy X509 request structure.  We don't actually
2007      * have an X509 request, but we have many of the components
2008      * (a public key, various DN components).  The idea is that we
2009      * put these components into the right X509 request structure
2010      * and we can use the same code as if you had a real X509 request.
2011      */
2012     req = X509_REQ_new();
2013     if (req == NULL) {
2014         ERR_print_errors(bio_err);
2015         goto end;
2016     }
2017
2018     /*
2019      * Build up the subject name set.
2020      */
2021     n = X509_REQ_get_subject_name(req);
2022
2023     for (i = 0;; i++) {
2024         if (sk_CONF_VALUE_num(sk) <= i)
2025             break;
2026
2027         cv = sk_CONF_VALUE_value(sk, i);
2028         type = cv->name;
2029         /*
2030          * Skip past any leading X. X: X, etc to allow for multiple instances
2031          */
2032         for (buf = cv->name; *buf; buf++)
2033             if ((*buf == ':') || (*buf == ',') || (*buf == '.')) {
2034                 buf++;
2035                 if (*buf)
2036                     type = buf;
2037                 break;
2038             }
2039
2040         buf = cv->value;
2041         if ((nid = OBJ_txt2nid(type)) == NID_undef) {
2042             if (strcmp(type, "SPKAC") == 0) {
2043                 spki = NETSCAPE_SPKI_b64_decode(cv->value, -1);
2044                 if (spki == NULL) {
2045                     BIO_printf(bio_err,
2046                                "unable to load Netscape SPKAC structure\n");
2047                     ERR_print_errors(bio_err);
2048                     goto end;
2049                 }
2050             }
2051             continue;
2052         }
2053
2054         if (!X509_NAME_add_entry_by_NID(n, nid, chtype,
2055                                         (unsigned char *)buf, -1, -1, 0))
2056             goto end;
2057     }
2058     if (spki == NULL) {
2059         BIO_printf(bio_err, "Netscape SPKAC structure not found in %s\n",
2060                    infile);
2061         goto end;
2062     }
2063
2064     /*
2065      * Now extract the key from the SPKI structure.
2066      */
2067
2068     BIO_printf(bio_err, "Check that the SPKAC request matches the signature\n");
2069
2070     if ((pktmp = NETSCAPE_SPKI_get_pubkey(spki)) == NULL) {
2071         BIO_printf(bio_err, "error unpacking SPKAC public key\n");
2072         goto end;
2073     }
2074
2075     j = NETSCAPE_SPKI_verify(spki, pktmp);
2076     if (j <= 0) {
2077         EVP_PKEY_free(pktmp);
2078         BIO_printf(bio_err,
2079                    "signature verification failed on SPKAC public key\n");
2080         goto end;
2081     }
2082     BIO_printf(bio_err, "Signature ok\n");
2083
2084     X509_REQ_set_pubkey(req, pktmp);
2085     EVP_PKEY_free(pktmp);
2086     ok = do_body(xret, pkey, x509, dgst, sigopts, policy, db, serial, subj,
2087                  chtype, multirdn, email_dn, startdate, enddate, days, 1,
2088                  verbose, req, ext_sect, lconf, certopt, nameopt, default_op,
2089                  ext_copy, 0);
2090  end:
2091     X509_REQ_free(req);
2092     CONF_free(parms);
2093     NETSCAPE_SPKI_free(spki);
2094     X509_NAME_ENTRY_free(ne);
2095
2096     return ok;
2097 }
2098
2099 static int check_time_format(const char *str)
2100 {
2101     return ASN1_TIME_set_string(NULL, str);
2102 }
2103
2104 static int do_revoke(X509 *x509, CA_DB *db, REVINFO_TYPE rev_type,
2105                      const char *value)
2106 {
2107     const ASN1_TIME *tm = NULL;
2108     char *row[DB_NUMBER], **rrow, **irow;
2109     char *rev_str = NULL;
2110     BIGNUM *bn = NULL;
2111     int ok = -1, i;
2112
2113     for (i = 0; i < DB_NUMBER; i++)
2114         row[i] = NULL;
2115     row[DB_name] = X509_NAME_oneline(X509_get_subject_name(x509), NULL, 0);
2116     bn = ASN1_INTEGER_to_BN(X509_get0_serialNumber(x509), NULL);
2117     if (!bn)
2118         goto end;
2119     if (BN_is_zero(bn))
2120         row[DB_serial] = OPENSSL_strdup("00");
2121     else
2122         row[DB_serial] = BN_bn2hex(bn);
2123     BN_free(bn);
2124     if (row[DB_name] != NULL && row[DB_name][0] == '\0') {
2125         /* Entries with empty Subjects actually use the serial number instead */
2126         OPENSSL_free(row[DB_name]);
2127         row[DB_name] = OPENSSL_strdup(row[DB_serial]);
2128     }
2129     if ((row[DB_name] == NULL) || (row[DB_serial] == NULL)) {
2130         BIO_printf(bio_err, "Memory allocation failure\n");
2131         goto end;
2132     }
2133     /*
2134      * We have to lookup by serial number because name lookup skips revoked
2135      * certs
2136      */
2137     rrow = TXT_DB_get_by_index(db->db, DB_serial, row);
2138     if (rrow == NULL) {
2139         BIO_printf(bio_err,
2140                    "Adding Entry with serial number %s to DB for %s\n",
2141                    row[DB_serial], row[DB_name]);
2142
2143         /* We now just add it to the database as DB_TYPE_REV('V') */
2144         row[DB_type] = OPENSSL_strdup("V");
2145         tm = X509_get0_notAfter(x509);
2146         row[DB_exp_date] = app_malloc(tm->length + 1, "row exp_data");
2147         memcpy(row[DB_exp_date], tm->data, tm->length);
2148         row[DB_exp_date][tm->length] = '\0';
2149         row[DB_rev_date] = NULL;
2150         row[DB_file] = OPENSSL_strdup("unknown");
2151
2152         if (row[DB_type] == NULL || row[DB_file] == NULL) {
2153             BIO_printf(bio_err, "Memory allocation failure\n");
2154             goto end;
2155         }
2156
2157         irow = app_malloc(sizeof(*irow) * (DB_NUMBER + 1), "row ptr");
2158         for (i = 0; i < DB_NUMBER; i++)
2159             irow[i] = row[i];
2160         irow[DB_NUMBER] = NULL;
2161
2162         if (!TXT_DB_insert(db->db, irow)) {
2163             BIO_printf(bio_err, "failed to update database\n");
2164             BIO_printf(bio_err, "TXT_DB error number %ld\n", db->db->error);
2165             OPENSSL_free(irow);
2166             goto end;
2167         }
2168
2169         for (i = 0; i < DB_NUMBER; i++)
2170             row[i] = NULL;
2171
2172         /* Revoke Certificate */
2173         if (rev_type == REV_VALID)
2174             ok = 1;
2175         else
2176             /* Retry revocation after DB insertion */
2177             ok = do_revoke(x509, db, rev_type, value);
2178
2179         goto end;
2180
2181     } else if (index_name_cmp_noconst(row, rrow)) {
2182         BIO_printf(bio_err, "ERROR:name does not match %s\n", row[DB_name]);
2183         goto end;
2184     } else if (rev_type == REV_VALID) {
2185         BIO_printf(bio_err, "ERROR:Already present, serial number %s\n",
2186                    row[DB_serial]);
2187         goto end;
2188     } else if (rrow[DB_type][0] == DB_TYPE_REV) {
2189         BIO_printf(bio_err, "ERROR:Already revoked, serial number %s\n",
2190                    row[DB_serial]);
2191         goto end;
2192     } else {
2193         BIO_printf(bio_err, "Revoking Certificate %s.\n", rrow[DB_serial]);
2194         rev_str = make_revocation_str(rev_type, value);
2195         if (!rev_str) {
2196             BIO_printf(bio_err, "Error in revocation arguments\n");
2197             goto end;
2198         }
2199         rrow[DB_type][0] = DB_TYPE_REV;
2200         rrow[DB_type][1] = '\0';
2201         rrow[DB_rev_date] = rev_str;
2202     }
2203     ok = 1;
2204  end:
2205     for (i = 0; i < DB_NUMBER; i++)
2206         OPENSSL_free(row[i]);
2207     return ok;
2208 }
2209
2210 static int get_certificate_status(const char *serial, CA_DB *db)
2211 {
2212     char *row[DB_NUMBER], **rrow;
2213     int ok = -1, i;
2214     size_t serial_len = strlen(serial);
2215
2216     /* Free Resources */
2217     for (i = 0; i < DB_NUMBER; i++)
2218         row[i] = NULL;
2219
2220     /* Malloc needed char spaces */
2221     row[DB_serial] = app_malloc(serial_len + 2, "row serial#");
2222
2223     if (serial_len % 2) {
2224         /*
2225          * Set the first char to 0
2226          */
2227         row[DB_serial][0] = '0';
2228
2229         /* Copy String from serial to row[DB_serial] */
2230         memcpy(row[DB_serial] + 1, serial, serial_len);
2231         row[DB_serial][serial_len + 1] = '\0';
2232     } else {
2233         /* Copy String from serial to row[DB_serial] */
2234         memcpy(row[DB_serial], serial, serial_len);
2235         row[DB_serial][serial_len] = '\0';
2236     }
2237
2238     /* Make it Upper Case */
2239     make_uppercase(row[DB_serial]);
2240
2241     ok = 1;
2242
2243     /* Search for the certificate */
2244     rrow = TXT_DB_get_by_index(db->db, DB_serial, row);
2245     if (rrow == NULL) {
2246         BIO_printf(bio_err, "Serial %s not present in db.\n", row[DB_serial]);
2247         ok = -1;
2248         goto end;
2249     } else if (rrow[DB_type][0] == DB_TYPE_VAL) {
2250         BIO_printf(bio_err, "%s=Valid (%c)\n",
2251                    row[DB_serial], rrow[DB_type][0]);
2252         goto end;
2253     } else if (rrow[DB_type][0] == DB_TYPE_REV) {
2254         BIO_printf(bio_err, "%s=Revoked (%c)\n",
2255                    row[DB_serial], rrow[DB_type][0]);
2256         goto end;
2257     } else if (rrow[DB_type][0] == DB_TYPE_EXP) {
2258         BIO_printf(bio_err, "%s=Expired (%c)\n",
2259                    row[DB_serial], rrow[DB_type][0]);
2260         goto end;
2261     } else if (rrow[DB_type][0] == DB_TYPE_SUSP) {
2262         BIO_printf(bio_err, "%s=Suspended (%c)\n",
2263                    row[DB_serial], rrow[DB_type][0]);
2264         goto end;
2265     } else {
2266         BIO_printf(bio_err, "%s=Unknown (%c).\n",
2267                    row[DB_serial], rrow[DB_type][0]);
2268         ok = -1;
2269     }
2270  end:
2271     for (i = 0; i < DB_NUMBER; i++) {
2272         OPENSSL_free(row[i]);
2273     }
2274     return ok;
2275 }
2276
2277 static int do_updatedb(CA_DB *db)
2278 {
2279     ASN1_UTCTIME *a_tm = NULL;
2280     int i, cnt = 0;
2281     int db_y2k, a_y2k;          /* flags = 1 if y >= 2000 */
2282     char **rrow, *a_tm_s;
2283
2284     a_tm = ASN1_UTCTIME_new();
2285     if (a_tm == NULL)
2286         return -1;
2287
2288     /* get actual time and make a string */
2289     if (X509_gmtime_adj(a_tm, 0) == NULL) {
2290         ASN1_UTCTIME_free(a_tm);
2291         return -1;
2292     }
2293     a_tm_s = app_malloc(a_tm->length + 1, "time string");
2294
2295     memcpy(a_tm_s, a_tm->data, a_tm->length);
2296     a_tm_s[a_tm->length] = '\0';
2297
2298     if (strncmp(a_tm_s, "49", 2) <= 0)
2299         a_y2k = 1;
2300     else
2301         a_y2k = 0;
2302
2303     for (i = 0; i < sk_OPENSSL_PSTRING_num(db->db->data); i++) {
2304         rrow = sk_OPENSSL_PSTRING_value(db->db->data, i);
2305
2306         if (rrow[DB_type][0] == DB_TYPE_VAL) {
2307             /* ignore entries that are not valid */
2308             if (strncmp(rrow[DB_exp_date], "49", 2) <= 0)
2309                 db_y2k = 1;
2310             else
2311                 db_y2k = 0;
2312
2313             if (db_y2k == a_y2k) {
2314                 /* all on the same y2k side */
2315                 if (strcmp(rrow[DB_exp_date], a_tm_s) <= 0) {
2316                     rrow[DB_type][0] = DB_TYPE_EXP;
2317                     rrow[DB_type][1] = '\0';
2318                     cnt++;
2319
2320                     BIO_printf(bio_err, "%s=Expired\n", rrow[DB_serial]);
2321                 }
2322             } else if (db_y2k < a_y2k) {
2323                 rrow[DB_type][0] = DB_TYPE_EXP;
2324                 rrow[DB_type][1] = '\0';
2325                 cnt++;
2326
2327                 BIO_printf(bio_err, "%s=Expired\n", rrow[DB_serial]);
2328             }
2329
2330         }
2331     }
2332
2333     ASN1_UTCTIME_free(a_tm);
2334     OPENSSL_free(a_tm_s);
2335     return cnt;
2336 }
2337
2338 static const char *crl_reasons[] = {
2339     /* CRL reason strings */
2340     "unspecified",
2341     "keyCompromise",
2342     "CACompromise",
2343     "affiliationChanged",
2344     "superseded",
2345     "cessationOfOperation",
2346     "certificateHold",
2347     "removeFromCRL",
2348     /* Additional pseudo reasons */
2349     "holdInstruction",
2350     "keyTime",
2351     "CAkeyTime"
2352 };
2353
2354 #define NUM_REASONS OSSL_NELEM(crl_reasons)
2355
2356 /*
2357  * Given revocation information convert to a DB string. The format of the
2358  * string is: revtime[,reason,extra]. Where 'revtime' is the revocation time
2359  * (the current time). 'reason' is the optional CRL reason and 'extra' is any
2360  * additional argument
2361  */
2362
2363 static char *make_revocation_str(REVINFO_TYPE rev_type, const char *rev_arg)
2364 {
2365     char *str;
2366     const char *reason = NULL, *other = NULL;
2367     ASN1_OBJECT *otmp;
2368     ASN1_UTCTIME *revtm = NULL;
2369     int i;
2370
2371     switch (rev_type) {
2372     case REV_NONE:
2373     case REV_VALID:
2374         break;
2375
2376     case REV_CRL_REASON:
2377         for (i = 0; i < 8; i++) {
2378             if (strcasecmp(rev_arg, crl_reasons[i]) == 0) {
2379                 reason = crl_reasons[i];
2380                 break;
2381             }
2382         }
2383         if (reason == NULL) {
2384             BIO_printf(bio_err, "Unknown CRL reason %s\n", rev_arg);
2385             return NULL;
2386         }
2387         break;
2388
2389     case REV_HOLD:
2390         /* Argument is an OID */
2391         otmp = OBJ_txt2obj(rev_arg, 0);
2392         ASN1_OBJECT_free(otmp);
2393
2394         if (otmp == NULL) {
2395             BIO_printf(bio_err, "Invalid object identifier %s\n", rev_arg);
2396             return NULL;
2397         }
2398
2399         reason = "holdInstruction";
2400         other = rev_arg;
2401         break;
2402
2403     case REV_KEY_COMPROMISE:
2404     case REV_CA_COMPROMISE:
2405         /* Argument is the key compromise time  */
2406         if (!ASN1_GENERALIZEDTIME_set_string(NULL, rev_arg)) {
2407             BIO_printf(bio_err,
2408                        "Invalid time format %s. Need YYYYMMDDHHMMSSZ\n",
2409                        rev_arg);
2410             return NULL;
2411         }
2412         other = rev_arg;
2413         if (rev_type == REV_KEY_COMPROMISE)
2414             reason = "keyTime";
2415         else
2416             reason = "CAkeyTime";
2417
2418         break;
2419     }
2420
2421     revtm = X509_gmtime_adj(NULL, 0);
2422
2423     if (!revtm)
2424         return NULL;
2425
2426     i = revtm->length + 1;
2427
2428     if (reason)
2429         i += strlen(reason) + 1;
2430     if (other)
2431         i += strlen(other) + 1;
2432
2433     str = app_malloc(i, "revocation reason");
2434     OPENSSL_strlcpy(str, (char *)revtm->data, i);
2435     if (reason) {
2436         OPENSSL_strlcat(str, ",", i);
2437         OPENSSL_strlcat(str, reason, i);
2438     }
2439     if (other) {
2440         OPENSSL_strlcat(str, ",", i);
2441         OPENSSL_strlcat(str, other, i);
2442     }
2443     ASN1_UTCTIME_free(revtm);
2444     return str;
2445 }
2446
2447 /*-
2448  * Convert revocation field to X509_REVOKED entry
2449  * return code:
2450  * 0 error
2451  * 1 OK
2452  * 2 OK and some extensions added (i.e. V2 CRL)
2453  */
2454
2455 static int make_revoked(X509_REVOKED *rev, const char *str)
2456 {
2457     char *tmp = NULL;
2458     int reason_code = -1;
2459     int i, ret = 0;
2460     ASN1_OBJECT *hold = NULL;
2461     ASN1_GENERALIZEDTIME *comp_time = NULL;
2462     ASN1_ENUMERATED *rtmp = NULL;
2463
2464     ASN1_TIME *revDate = NULL;
2465
2466     i = unpack_revinfo(&revDate, &reason_code, &hold, &comp_time, str);
2467
2468     if (i == 0)
2469         goto end;
2470
2471     if (rev && !X509_REVOKED_set_revocationDate(rev, revDate))
2472         goto end;
2473
2474     if (rev && (reason_code != OCSP_REVOKED_STATUS_NOSTATUS)) {
2475         rtmp = ASN1_ENUMERATED_new();
2476         if (rtmp == NULL || !ASN1_ENUMERATED_set(rtmp, reason_code))
2477             goto end;
2478         if (!X509_REVOKED_add1_ext_i2d(rev, NID_crl_reason, rtmp, 0, 0))
2479             goto end;
2480     }
2481
2482     if (rev && comp_time) {
2483         if (!X509_REVOKED_add1_ext_i2d
2484             (rev, NID_invalidity_date, comp_time, 0, 0))
2485             goto end;
2486     }
2487     if (rev && hold) {
2488         if (!X509_REVOKED_add1_ext_i2d
2489             (rev, NID_hold_instruction_code, hold, 0, 0))
2490             goto end;
2491     }
2492
2493     if (reason_code != OCSP_REVOKED_STATUS_NOSTATUS)
2494         ret = 2;
2495     else
2496         ret = 1;
2497
2498  end:
2499
2500     OPENSSL_free(tmp);
2501     ASN1_OBJECT_free(hold);
2502     ASN1_GENERALIZEDTIME_free(comp_time);
2503     ASN1_ENUMERATED_free(rtmp);
2504     ASN1_TIME_free(revDate);
2505
2506     return ret;
2507 }
2508
2509 static int old_entry_print(const ASN1_OBJECT *obj, const ASN1_STRING *str)
2510 {
2511     char buf[25], *pbuf;
2512     const char *p;
2513     int j;
2514
2515     j = i2a_ASN1_OBJECT(bio_err, obj);
2516     pbuf = buf;
2517     for (j = 22 - j; j > 0; j--)
2518         *(pbuf++) = ' ';
2519     *(pbuf++) = ':';
2520     *(pbuf++) = '\0';
2521     BIO_puts(bio_err, buf);
2522
2523     if (str->type == V_ASN1_PRINTABLESTRING)
2524         BIO_printf(bio_err, "PRINTABLE:'");
2525     else if (str->type == V_ASN1_T61STRING)
2526         BIO_printf(bio_err, "T61STRING:'");
2527     else if (str->type == V_ASN1_IA5STRING)
2528         BIO_printf(bio_err, "IA5STRING:'");
2529     else if (str->type == V_ASN1_UNIVERSALSTRING)
2530         BIO_printf(bio_err, "UNIVERSALSTRING:'");
2531     else
2532         BIO_printf(bio_err, "ASN.1 %2d:'", str->type);
2533
2534     p = (const char *)str->data;
2535     for (j = str->length; j > 0; j--) {
2536         if ((*p >= ' ') && (*p <= '~'))
2537             BIO_printf(bio_err, "%c", *p);
2538         else if (*p & 0x80)
2539             BIO_printf(bio_err, "\\0x%02X", *p);
2540         else if ((unsigned char)*p == 0xf7)
2541             BIO_printf(bio_err, "^?");
2542         else
2543             BIO_printf(bio_err, "^%c", *p + '@');
2544         p++;
2545     }
2546     BIO_printf(bio_err, "'\n");
2547     return 1;
2548 }
2549
2550 int unpack_revinfo(ASN1_TIME **prevtm, int *preason, ASN1_OBJECT **phold,
2551                    ASN1_GENERALIZEDTIME **pinvtm, const char *str)
2552 {
2553     char *tmp;
2554     char *rtime_str, *reason_str = NULL, *arg_str = NULL, *p;
2555     int reason_code = -1;
2556     int ret = 0;
2557     unsigned int i;
2558     ASN1_OBJECT *hold = NULL;
2559     ASN1_GENERALIZEDTIME *comp_time = NULL;
2560
2561     tmp = OPENSSL_strdup(str);
2562     if (!tmp) {
2563         BIO_printf(bio_err, "memory allocation failure\n");
2564         goto end;
2565     }
2566
2567     p = strchr(tmp, ',');
2568
2569     rtime_str = tmp;
2570
2571     if (p) {
2572         *p = '\0';
2573         p++;
2574         reason_str = p;
2575         p = strchr(p, ',');
2576         if (p) {
2577             *p = '\0';
2578             arg_str = p + 1;
2579         }
2580     }
2581
2582     if (prevtm) {
2583         *prevtm = ASN1_UTCTIME_new();
2584         if (*prevtm == NULL) {
2585             BIO_printf(bio_err, "memory allocation failure\n");
2586             goto end;
2587         }
2588         if (!ASN1_UTCTIME_set_string(*prevtm, rtime_str)) {
2589             BIO_printf(bio_err, "invalid revocation date %s\n", rtime_str);
2590             goto end;
2591         }
2592     }
2593     if (reason_str) {
2594         for (i = 0; i < NUM_REASONS; i++) {
2595             if (strcasecmp(reason_str, crl_reasons[i]) == 0) {
2596                 reason_code = i;
2597                 break;
2598             }
2599         }
2600         if (reason_code == OCSP_REVOKED_STATUS_NOSTATUS) {
2601             BIO_printf(bio_err, "invalid reason code %s\n", reason_str);
2602             goto end;
2603         }
2604
2605         if (reason_code == 7) {
2606             reason_code = OCSP_REVOKED_STATUS_REMOVEFROMCRL;
2607         } else if (reason_code == 8) { /* Hold instruction */
2608             if (!arg_str) {
2609                 BIO_printf(bio_err, "missing hold instruction\n");
2610                 goto end;
2611             }
2612             reason_code = OCSP_REVOKED_STATUS_CERTIFICATEHOLD;
2613             hold = OBJ_txt2obj(arg_str, 0);
2614
2615             if (!hold) {
2616                 BIO_printf(bio_err, "invalid object identifier %s\n", arg_str);
2617                 goto end;
2618             }
2619             if (phold)
2620                 *phold = hold;
2621             else
2622                 ASN1_OBJECT_free(hold);
2623         } else if ((reason_code == 9) || (reason_code == 10)) {
2624             if (!arg_str) {
2625                 BIO_printf(bio_err, "missing compromised time\n");
2626                 goto end;
2627             }
2628             comp_time = ASN1_GENERALIZEDTIME_new();
2629             if (comp_time == NULL) {
2630                 BIO_printf(bio_err, "memory allocation failure\n");
2631                 goto end;
2632             }
2633             if (!ASN1_GENERALIZEDTIME_set_string(comp_time, arg_str)) {
2634                 BIO_printf(bio_err, "invalid compromised time %s\n", arg_str);
2635                 goto end;
2636             }
2637             if (reason_code == 9)
2638                 reason_code = OCSP_REVOKED_STATUS_KEYCOMPROMISE;
2639             else
2640                 reason_code = OCSP_REVOKED_STATUS_CACOMPROMISE;
2641         }
2642     }
2643
2644     if (preason)
2645         *preason = reason_code;
2646     if (pinvtm) {
2647         *pinvtm = comp_time;
2648         comp_time = NULL;
2649     }
2650
2651     ret = 1;
2652
2653  end:
2654
2655     OPENSSL_free(tmp);
2656     ASN1_GENERALIZEDTIME_free(comp_time);
2657
2658     return ret;
2659 }