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