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