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