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