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