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