2 * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
4 * Licensed under the Apache License 2.0 (the "License"). You may not use
5 * this file except in compliance with the License. You can obtain a copy
6 * in the file LICENSE in the source distribution or at
7 * https://www.openssl.org/source/license.html
13 #include <sys/types.h>
14 #include <openssl/conf.h>
15 #include <openssl/bio.h>
16 #include <openssl/err.h>
17 #include <openssl/bn.h>
18 #include <openssl/txt_db.h>
19 #include <openssl/evp.h>
20 #include <openssl/x509.h>
21 #include <openssl/x509v3.h>
22 #include <openssl/objects.h>
23 #include <openssl/ocsp.h>
24 #include <openssl/pem.h>
27 # ifdef OPENSSL_SYS_VMS
29 # elif !defined(OPENSSL_SYS_VXWORKS) && !defined(OPENSSL_SYS_WINDOWS) && !defined(OPENSSL_SYS_TANDEM)
30 # include <sys/file.h>
44 # define PATH_MAX 4096
47 #define BASE_SECTION "ca"
49 #define ENV_DEFAULT_CA "default_ca"
51 #define STRING_MASK "string_mask"
52 #define UTF8_IN "utf8"
54 #define ENV_NEW_CERTS_DIR "new_certs_dir"
55 #define ENV_CERTIFICATE "certificate"
56 #define ENV_SERIAL "serial"
57 #define ENV_RAND_SERIAL "rand_serial"
58 #define ENV_CRLNUMBER "crlnumber"
59 #define ENV_PRIVATE_KEY "private_key"
60 #define ENV_DEFAULT_DAYS "default_days"
61 #define ENV_DEFAULT_STARTDATE "default_startdate"
62 #define ENV_DEFAULT_ENDDATE "default_enddate"
63 #define ENV_DEFAULT_CRL_DAYS "default_crl_days"
64 #define ENV_DEFAULT_CRL_HOURS "default_crl_hours"
65 #define ENV_DEFAULT_MD "default_md"
66 #define ENV_DEFAULT_EMAIL_DN "email_in_dn"
67 #define ENV_PRESERVE "preserve"
68 #define ENV_POLICY "policy"
69 #define ENV_EXTENSIONS "x509_extensions"
70 #define ENV_CRLEXT "crl_extensions"
71 #define ENV_MSIE_HACK "msie_hack"
72 #define ENV_NAMEOPT "name_opt"
73 #define ENV_CERTOPT "cert_opt"
74 #define ENV_EXTCOPY "copy_extensions"
75 #define ENV_UNIQUE_SUBJECT "unique_subject"
77 #define ENV_DATABASE "database"
79 /* Additional revocation information types */
81 REV_VALID
= -1, /* Valid (not-revoked) status */
82 REV_NONE
= 0, /* No additional information */
83 REV_CRL_REASON
= 1, /* Value is CRL reason code */
84 REV_HOLD
= 2, /* Value is hold instruction */
85 REV_KEY_COMPROMISE
= 3, /* Value is cert key compromise time */
86 REV_CA_COMPROMISE
= 4 /* Value is CA key compromise time */
89 static char *lookup_conf(const CONF
*conf
, const char *group
, const char *tag
);
91 static int certify(X509
**xret
, const char *infile
, int informat
,
92 EVP_PKEY
*pkey
, X509
*x509
,
94 STACK_OF(OPENSSL_STRING
) *sigopts
,
95 STACK_OF(OPENSSL_STRING
) *vfyopts
,
96 STACK_OF(CONF_VALUE
) *policy
, CA_DB
*db
,
97 BIGNUM
*serial
, const char *subj
, unsigned long chtype
,
98 int multirdn
, int email_dn
, const char *startdate
,
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
, unsigned long dateopt
);
103 static int certify_cert(X509
**xret
, const char *infile
, int certformat
,
104 const char *passin
, EVP_PKEY
*pkey
, X509
*x509
,
106 STACK_OF(OPENSSL_STRING
) *sigopts
,
107 STACK_OF(OPENSSL_STRING
) *vfyopts
,
108 STACK_OF(CONF_VALUE
) *policy
, CA_DB
*db
,
109 BIGNUM
*serial
, const char *subj
, unsigned long chtype
,
110 int multirdn
, int email_dn
, const char *startdate
,
111 const char *enddate
, long days
, int batch
, const char *ext_sect
,
112 CONF
*conf
, int verbose
, unsigned long certopt
,
113 unsigned long nameopt
, int default_op
, int ext_copy
, unsigned long dateopt
);
114 static int certify_spkac(X509
**xret
, const char *infile
, EVP_PKEY
*pkey
,
115 X509
*x509
, const char *dgst
,
116 STACK_OF(OPENSSL_STRING
) *sigopts
,
117 STACK_OF(CONF_VALUE
) *policy
, CA_DB
*db
,
118 BIGNUM
*serial
, const char *subj
, unsigned long chtype
,
119 int multirdn
, int email_dn
, const char *startdate
,
120 const char *enddate
, long days
, const char *ext_sect
, CONF
*conf
,
121 int verbose
, unsigned long certopt
,
122 unsigned long nameopt
, int default_op
, int ext_copy
, unsigned long dateopt
);
123 static int do_body(X509
**xret
, EVP_PKEY
*pkey
, X509
*x509
,
124 const char *dgst
, STACK_OF(OPENSSL_STRING
) *sigopts
,
125 STACK_OF(CONF_VALUE
) *policy
, CA_DB
*db
, BIGNUM
*serial
,
126 const char *subj
, unsigned long chtype
, int multirdn
,
127 int email_dn
, const char *startdate
, const char *enddate
, long days
,
128 int batch
, int verbose
, X509_REQ
*req
, const char *ext_sect
,
129 CONF
*conf
, unsigned long certopt
, unsigned long nameopt
,
130 int default_op
, int ext_copy
, int selfsign
, unsigned long dateopt
);
131 static int get_certificate_status(const char *ser_status
, CA_DB
*db
);
132 static int do_updatedb(CA_DB
*db
);
133 static int check_time_format(const char *str
);
134 static int do_revoke(X509
*x509
, CA_DB
*db
, REVINFO_TYPE rev_type
,
136 static char *make_revocation_str(REVINFO_TYPE rev_type
, const char *rev_arg
);
137 static int make_revoked(X509_REVOKED
*rev
, const char *str
);
138 static int old_entry_print(const ASN1_OBJECT
*obj
, const ASN1_STRING
*str
);
139 static void write_new_certificate(BIO
*bp
, X509
*x
, int output_der
, int notext
);
141 static CONF
*extfile_conf
= NULL
;
142 static int preserve
= 0;
143 static int msie_hack
= 0;
145 typedef enum OPTION_choice
{
147 OPT_ENGINE
, OPT_VERBOSE
, OPT_CONFIG
, OPT_NAME
, OPT_SUBJ
, OPT_UTF8
,
148 OPT_CREATE_SERIAL
, OPT_MULTIVALUE_RDN
, OPT_STARTDATE
, OPT_ENDDATE
,
149 OPT_DAYS
, OPT_MD
, OPT_POLICY
, OPT_KEYFILE
, OPT_KEYFORM
, OPT_PASSIN
,
150 OPT_KEY
, OPT_CERT
, OPT_CERTFORM
, OPT_SELFSIGN
,
151 OPT_IN
, OPT_INFORM
, OPT_OUT
, OPT_DATEOPT
, OPT_OUTDIR
, OPT_VFYOPT
,
152 OPT_SIGOPT
, OPT_NOTEXT
, OPT_BATCH
, OPT_PRESERVEDN
, OPT_NOEMAILDN
,
153 OPT_GENCRL
, OPT_MSIE_HACK
, OPT_CRL_LASTUPDATE
, OPT_CRL_NEXTUPDATE
,
154 OPT_CRLDAYS
, OPT_CRLHOURS
, OPT_CRLSEC
,
155 OPT_INFILES
, OPT_SS_CERT
, OPT_SPKAC
, OPT_REVOKE
, OPT_VALID
,
156 OPT_EXTENSIONS
, OPT_EXTFILE
, OPT_STATUS
, OPT_UPDATEDB
, OPT_CRLEXTS
,
158 OPT_R_ENUM
, OPT_PROV_ENUM
,
159 /* Do not change the order here; see related case statements below */
160 OPT_CRL_REASON
, OPT_CRL_HOLD
, OPT_CRL_COMPROMISE
, OPT_CRL_CA_COMPROMISE
163 const OPTIONS ca_options
[] = {
164 {OPT_HELP_STR
, 1, '-', "Usage: %s [options] [certreq...]\n"},
166 OPT_SECTION("General"),
167 {"help", OPT_HELP
, '-', "Display this summary"},
168 {"verbose", OPT_VERBOSE
, '-', "Verbose output during processing"},
169 {"outdir", OPT_OUTDIR
, '/', "Where to put output cert"},
170 {"in", OPT_IN
, '<', "The input cert request(s)"},
171 {"inform", OPT_INFORM
, 'F', "CSR input format (DER or PEM); default PEM"},
172 {"infiles", OPT_INFILES
, '-', "The last argument, requests to process"},
173 {"out", OPT_OUT
, '>', "Where to put the output file(s)"},
174 {"dateopt", OPT_DATEOPT
, 's', "Datetime format used for printing. (rfc_822/iso_8601). Default is rfc_822."},
175 {"notext", OPT_NOTEXT
, '-', "Do not print the generated certificate"},
176 {"batch", OPT_BATCH
, '-', "Don't ask questions"},
177 {"msie_hack", OPT_MSIE_HACK
, '-',
178 "msie modifications to handle all Universal Strings"},
179 {"ss_cert", OPT_SS_CERT
, '<', "File contains a self signed cert to sign"},
180 {"spkac", OPT_SPKAC
, '<',
181 "File contains DN and signed public key and challenge"},
182 #ifndef OPENSSL_NO_ENGINE
183 {"engine", OPT_ENGINE
, 's', "Use engine, possibly a hardware device"},
186 OPT_SECTION("Configuration"),
187 {"config", OPT_CONFIG
, 's', "A config file"},
188 {"name", OPT_NAME
, 's', "The particular CA definition to use"},
189 {"section", OPT_NAME
, 's', "An alias for -name"},
190 {"policy", OPT_POLICY
, 's', "The CA 'policy' to support"},
192 OPT_SECTION("Certificate"),
193 {"subj", OPT_SUBJ
, 's', "Use arg instead of request's subject"},
194 {"utf8", OPT_UTF8
, '-', "Input characters are UTF8; default ASCII"},
195 {"create_serial", OPT_CREATE_SERIAL
, '-',
196 "If reading serial fails, create a new random serial"},
197 {"rand_serial", OPT_RAND_SERIAL
, '-',
198 "Always create a random serial; do not store it"},
199 {"multivalue-rdn", OPT_MULTIVALUE_RDN
, '-',
200 "Deprecated; multi-valued RDNs support is always on."},
201 {"startdate", OPT_STARTDATE
, 's', "Cert notBefore, YYMMDDHHMMSSZ"},
202 {"enddate", OPT_ENDDATE
, 's',
203 "YYMMDDHHMMSSZ cert notAfter (overrides -days)"},
204 {"days", OPT_DAYS
, 'p', "Number of days to certify the cert for"},
205 {"extensions", OPT_EXTENSIONS
, 's',
206 "Extension section (override value in config file)"},
207 {"extfile", OPT_EXTFILE
, '<',
208 "Configuration file with X509v3 extensions to add"},
209 {"preserveDN", OPT_PRESERVEDN
, '-', "Don't re-order the DN"},
210 {"noemailDN", OPT_NOEMAILDN
, '-', "Don't add the EMAIL field to the DN"},
212 OPT_SECTION("Signing"),
213 {"md", OPT_MD
, 's', "Digest to use, such as sha256"},
214 {"keyfile", OPT_KEYFILE
, 's', "The CA private key"},
215 {"keyform", OPT_KEYFORM
, 'f',
216 "Private key file format (ENGINE, other values ignored)"},
217 {"passin", OPT_PASSIN
, 's', "Key and cert input file pass phrase source"},
218 {"key", OPT_KEY
, 's',
219 "Key to decrypt the private key or cert files if encrypted. Better use -passin"},
220 {"cert", OPT_CERT
, '<', "The CA cert"},
221 {"certform", OPT_CERTFORM
, 'F',
222 "Certificate input format (DER/PEM/P12); has no effect"},
223 {"selfsign", OPT_SELFSIGN
, '-',
224 "Sign a cert with the key associated with it"},
225 {"sigopt", OPT_SIGOPT
, 's', "Signature parameter in n:v form"},
226 {"vfyopt", OPT_VFYOPT
, 's', "Verification parameter in n:v form"},
228 OPT_SECTION("Revocation"),
229 {"gencrl", OPT_GENCRL
, '-', "Generate a new CRL"},
230 {"valid", OPT_VALID
, 's',
231 "Add a Valid(not-revoked) DB entry about a cert (given in file)"},
232 {"status", OPT_STATUS
, 's', "Shows cert status given the serial number"},
233 {"updatedb", OPT_UPDATEDB
, '-', "Updates db for expired cert"},
234 {"crlexts", OPT_CRLEXTS
, 's',
235 "CRL extension section (override value in config file)"},
236 {"crl_reason", OPT_CRL_REASON
, 's', "revocation reason"},
237 {"crl_hold", OPT_CRL_HOLD
, 's',
238 "the hold instruction, an OID. Sets revocation reason to certificateHold"},
239 {"crl_compromise", OPT_CRL_COMPROMISE
, 's',
240 "sets compromise time to val and the revocation reason to keyCompromise"},
241 {"crl_CA_compromise", OPT_CRL_CA_COMPROMISE
, 's',
242 "sets compromise time to val and the revocation reason to CACompromise"},
243 {"crl_lastupdate", OPT_CRL_LASTUPDATE
, 's',
244 "Sets the CRL lastUpdate time to val (YYMMDDHHMMSSZ or YYYYMMDDHHMMSSZ)"},
245 {"crl_nextupdate", OPT_CRL_NEXTUPDATE
, 's',
246 "Sets the CRL nextUpdate time to val (YYMMDDHHMMSSZ or YYYYMMDDHHMMSSZ)"},
247 {"crldays", OPT_CRLDAYS
, 'p', "Days until the next CRL is due"},
248 {"crlhours", OPT_CRLHOURS
, 'p', "Hours until the next CRL is due"},
249 {"crlsec", OPT_CRLSEC
, 'p', "Seconds until the next CRL is due"},
250 {"revoke", OPT_REVOKE
, '<', "Revoke a cert (given in file)"},
256 {"certreq", 0, 0, "Certificate requests to be signed (optional)"},
260 int ca_main(int argc
, char **argv
)
264 BIGNUM
*crlnumber
= NULL
, *serial
= NULL
;
265 EVP_PKEY
*pkey
= NULL
;
266 BIO
*in
= NULL
, *out
= NULL
, *Sout
= NULL
;
267 ASN1_INTEGER
*tmpser
;
270 STACK_OF(CONF_VALUE
) *attribs
= NULL
;
271 STACK_OF(OPENSSL_STRING
) *sigopts
= NULL
, *vfyopts
= NULL
;
272 STACK_OF(X509
) *cert_sk
= NULL
;
273 X509_CRL
*crl
= NULL
;
274 char *configfile
= default_config_file
, *section
= NULL
;
275 char def_dgst
[80] = "";
276 char *dgst
= NULL
, *policy
= NULL
, *keyfile
= NULL
;
277 char *certfile
= NULL
, *crl_ext
= NULL
, *crlnumberfile
= NULL
;
278 int certformat
= FORMAT_UNDEF
, informat
= FORMAT_UNDEF
;
279 unsigned long dateopt
= ASN1_DTFLGS_RFC822
;
280 const char *infile
= NULL
, *spkac_file
= NULL
, *ss_cert_file
= NULL
;
281 const char *extensions
= NULL
, *extfile
= NULL
, *passinarg
= NULL
;
283 char *outdir
= NULL
, *outfile
= NULL
, *rev_arg
= NULL
, *ser_status
= NULL
;
284 const char *serialfile
= NULL
, *subj
= NULL
;
285 char *prog
, *startdate
= NULL
, *enddate
= NULL
;
286 char *dbfile
= NULL
, *f
;
287 char new_cert
[PATH_MAX
];
288 char tmp
[10 + 1] = "\0";
291 size_t outdirlen
= 0;
292 int create_ser
= 0, free_passin
= 0, total
= 0, total_done
= 0;
293 int batch
= 0, default_op
= 1, doupdatedb
= 0, ext_copy
= EXT_COPY_NONE
;
294 int keyformat
= FORMAT_UNDEF
, multirdn
= 1, notext
= 0, output_der
= 0;
295 int ret
= 1, email_dn
= 1, req
= 0, verbose
= 0, gencrl
= 0, dorevoke
= 0;
296 int rand_ser
= 0, i
, j
, selfsign
= 0, def_ret
;
297 char *crl_lastupdate
= NULL
, *crl_nextupdate
= NULL
;
298 long crldays
= 0, crlhours
= 0, crlsec
= 0, days
= 0;
299 unsigned long chtype
= MBSTRING_ASC
, certopt
= 0;
300 X509
*x509
= NULL
, *x509p
= NULL
, *x
= NULL
;
301 REVINFO_TYPE rev_type
= REV_NONE
;
302 X509_REVOKED
*r
= NULL
;
305 prog
= opt_init(argc
, argv
, ca_options
);
306 while ((o
= opt_next()) != OPT_EOF
) {
311 BIO_printf(bio_err
, "%s: Use -help for summary.\n", prog
);
314 opt_help(ca_options
);
322 if (!opt_format(opt_arg(), OPT_FMT_PEMDER
, &informat
))
329 if (!set_dateopt(&dateopt
, opt_arg()))
336 configfile
= opt_arg();
346 chtype
= MBSTRING_UTF8
;
348 case OPT_RAND_SERIAL
:
351 case OPT_CREATE_SERIAL
:
354 case OPT_MULTIVALUE_RDN
:
358 startdate
= opt_arg();
364 days
= atoi(opt_arg());
376 if (!opt_format(opt_arg(), OPT_FMT_ANY
, &keyformat
))
380 passinarg
= opt_arg();
387 if (!opt_provider(o
))
394 certfile
= opt_arg();
397 if (!opt_format(opt_arg(), OPT_FMT_ANY
, &certformat
))
408 sigopts
= sk_OPENSSL_STRING_new_null();
409 if (sigopts
== NULL
|| !sk_OPENSSL_STRING_push(sigopts
, opt_arg()))
414 vfyopts
= sk_OPENSSL_STRING_new_null();
415 if (vfyopts
== NULL
|| !sk_OPENSSL_STRING_push(vfyopts
, opt_arg()))
436 case OPT_CRL_LASTUPDATE
:
437 crl_lastupdate
= opt_arg();
439 case OPT_CRL_NEXTUPDATE
:
440 crl_nextupdate
= opt_arg();
443 crldays
= atol(opt_arg());
446 crlhours
= atol(opt_arg());
449 crlsec
= atol(opt_arg());
455 ss_cert_file
= opt_arg();
459 spkac_file
= opt_arg();
471 extensions
= opt_arg();
477 ser_status
= opt_arg();
485 case OPT_CRL_REASON
: /* := REV_CRL_REASON */
487 case OPT_CRL_COMPROMISE
:
488 case OPT_CRL_CA_COMPROMISE
:
490 rev_type
= (o
- OPT_CRL_REASON
) + REV_CRL_REASON
;
493 e
= setup_engine(opt_arg(), 0);
499 /* Remaining args are files to certify. */
500 argc
= opt_num_rest();
503 if ((conf
= app_load_config_verbose(configfile
, 1)) == NULL
)
505 if (configfile
!= default_config_file
&& !app_load_modules(conf
))
508 /* Lets get the config section we are using */
510 && (section
= lookup_conf(conf
, BASE_SECTION
, ENV_DEFAULT_CA
)) == NULL
)
513 p
= NCONF_get_string(conf
, NULL
, "oid_file");
517 BIO
*oid_bio
= BIO_new_file(p
, "r");
519 if (oid_bio
== NULL
) {
522 OBJ_create_objects(oid_bio
);
526 if (!add_oid_section(conf
))
529 app_RAND_load_conf(conf
, BASE_SECTION
);
530 if (!app_RAND_load())
533 f
= NCONF_get_string(conf
, section
, STRING_MASK
);
537 if (f
!= NULL
&& !ASN1_STRING_set_default_mask_asc(f
)) {
538 BIO_printf(bio_err
, "Invalid global string mask setting %s\n", f
);
542 if (chtype
!= MBSTRING_UTF8
) {
543 f
= NCONF_get_string(conf
, section
, UTF8_IN
);
546 else if (strcmp(f
, "yes") == 0)
547 chtype
= MBSTRING_UTF8
;
550 db_attr
.unique_subject
= 1;
551 p
= NCONF_get_string(conf
, section
, ENV_UNIQUE_SUBJECT
);
553 db_attr
.unique_subject
= parse_yesno(p
, 1);
557 /*****************************************************************/
558 /* report status of cert with serial number given on command line */
560 dbfile
= lookup_conf(conf
, section
, ENV_DATABASE
);
564 db
= load_index(dbfile
, &db_attr
);
566 BIO_printf(bio_err
, "Problem with index file: %s (could not load/parse file)\n", dbfile
);
570 if (index_index(db
) <= 0)
573 if (get_certificate_status(ser_status
, db
) != 1)
574 BIO_printf(bio_err
, "Error verifying serial %s!\n", ser_status
);
578 /*****************************************************************/
579 /* we definitely need a private key, so let's get it */
582 && (keyfile
= lookup_conf(conf
, section
, ENV_PRIVATE_KEY
)) == NULL
)
585 if (passin
== NULL
) {
587 if (!app_passwd(passinarg
, NULL
, &passin
, NULL
)) {
588 BIO_printf(bio_err
, "Error getting password\n");
592 pkey
= load_key(keyfile
, keyformat
, 0, passin
, e
, "CA private key");
595 /* load_key() has already printed an appropriate message */
598 /*****************************************************************/
599 /* we need a certificate */
600 if (!selfsign
|| spkac_file
|| ss_cert_file
|| gencrl
) {
602 && (certfile
= lookup_conf(conf
, section
, ENV_CERTIFICATE
)) == NULL
)
605 x509
= load_cert_pass(certfile
, certformat
, 1, passin
, "CA certificate");
609 if (!X509_check_private_key(x509
, pkey
)) {
611 "CA certificate and CA private key do not match\n");
618 f
= NCONF_get_string(conf
, BASE_SECTION
, ENV_PRESERVE
);
621 if ((f
!= NULL
) && ((*f
== 'y') || (*f
== 'Y')))
623 f
= NCONF_get_string(conf
, BASE_SECTION
, ENV_MSIE_HACK
);
626 if ((f
!= NULL
) && ((*f
== 'y') || (*f
== 'Y')))
629 f
= NCONF_get_string(conf
, section
, ENV_NAMEOPT
);
634 if (!set_nameopt(f
)) {
635 BIO_printf(bio_err
, "Invalid name options: \"%s\"\n", f
);
641 f
= NCONF_get_string(conf
, section
, ENV_CERTOPT
);
644 if (!set_cert_ex(&certopt
, f
)) {
645 BIO_printf(bio_err
, "Invalid certificate options: \"%s\"\n", f
);
653 f
= NCONF_get_string(conf
, section
, ENV_EXTCOPY
);
656 if (!set_ext_copy(&ext_copy
, f
)) {
657 BIO_printf(bio_err
, "Invalid extension copy option: \"%s\"\n", f
);
664 /*****************************************************************/
665 /* lookup where to write new certificates */
666 if ((outdir
== NULL
) && (req
)) {
668 outdir
= NCONF_get_string(conf
, section
, ENV_NEW_CERTS_DIR
);
669 if (outdir
== NULL
) {
671 "there needs to be defined a directory for new certificate to be placed in\n");
674 #ifndef OPENSSL_SYS_VMS
676 * outdir is a directory spec, but access() for VMS demands a
677 * filename. We could use the DEC C routine to convert the
678 * directory syntax to Unix, and give that to app_isdir,
679 * but for now the fopen will catch the error if it's not a
682 if (app_isdir(outdir
) <= 0) {
683 BIO_printf(bio_err
, "%s: %s is not a directory\n", prog
, outdir
);
690 /*****************************************************************/
691 /* we need to load the database file */
692 dbfile
= lookup_conf(conf
, section
, ENV_DATABASE
);
696 db
= load_index(dbfile
, &db_attr
);
698 BIO_printf(bio_err
, "Problem with index file: %s (could not load/parse file)\n", dbfile
);
702 /* Lets check some fields */
703 for (i
= 0; i
< sk_OPENSSL_PSTRING_num(db
->db
->data
); i
++) {
704 pp
= sk_OPENSSL_PSTRING_value(db
->db
->data
, i
);
705 if ((pp
[DB_type
][0] != DB_TYPE_REV
) && (pp
[DB_rev_date
][0] != '\0')) {
707 "entry %d: not revoked yet, but has a revocation date\n",
711 if ((pp
[DB_type
][0] == DB_TYPE_REV
) &&
712 !make_revoked(NULL
, pp
[DB_rev_date
])) {
713 BIO_printf(bio_err
, " in entry %d\n", i
+ 1);
716 if (!check_time_format((char *)pp
[DB_exp_date
])) {
717 BIO_printf(bio_err
, "entry %d: invalid expiry date\n", i
+ 1);
726 if ((j
& 1) || (j
< 2)) {
727 BIO_printf(bio_err
, "entry %d: bad serial number length (%d)\n",
732 if (!isxdigit(_UC(*p
))) {
734 "entry %d: bad char 0%o '%c' in serial number\n",
741 TXT_DB_write(bio_out
, db
->db
);
742 BIO_printf(bio_err
, "%d entries loaded from the database\n",
743 sk_OPENSSL_PSTRING_num(db
->db
->data
));
744 BIO_printf(bio_err
, "generating index\n");
747 if (index_index(db
) <= 0)
750 /*****************************************************************/
751 /* Update the db file for expired certificates */
754 BIO_printf(bio_err
, "Updating %s ...\n", dbfile
);
758 BIO_printf(bio_err
, "Malloc failure\n");
762 BIO_printf(bio_err
, "No entries found to mark expired\n");
764 if (!save_index(dbfile
, "new", db
))
767 if (!rotate_index(dbfile
, "new", "old"))
771 BIO_printf(bio_err
, "Done. %d entries marked as expired\n", i
);
775 /*****************************************************************/
776 /* Read extensions config file */
778 if ((extfile_conf
= app_load_config(extfile
)) == NULL
) {
784 BIO_printf(bio_err
, "Successfully loaded extensions file %s\n",
787 /* We can have sections in the ext file */
788 if (extensions
== NULL
) {
789 extensions
= NCONF_get_string(extfile_conf
, "default", "extensions");
790 if (extensions
== NULL
) {
792 extensions
= "default";
797 /*****************************************************************/
799 if (spkac_file
!= NULL
&& outfile
!= NULL
) {
805 def_ret
= EVP_PKEY_get_default_digest_name(pkey
, def_dgst
, sizeof(def_dgst
));
807 * EVP_PKEY_get_default_digest_name() returns 2 if the digest is
808 * mandatory for this algorithm.
810 * That call may give back the name "UNDEF", which has these meanings:
812 * when def_ret == 2: the user MUST leave the digest unspecified
813 * when def_ret == 1: the user MAY leave the digest unspecified
815 if (def_ret
== 2 && strcmp(def_dgst
, "UNDEF") == 0) {
817 } else if (dgst
== NULL
818 && (dgst
= lookup_conf(conf
, section
, ENV_DEFAULT_MD
)) == NULL
819 && strcmp(def_dgst
, "UNDEF") != 0) {
822 if (strcmp(dgst
, "default") == 0 || strcmp(def_dgst
, "UNDEF") == 0) {
824 BIO_puts(bio_err
, "no default digest\n");
833 char *tmp_email_dn
= NULL
;
835 tmp_email_dn
= NCONF_get_string(conf
, section
, ENV_DEFAULT_EMAIL_DN
);
836 if (tmp_email_dn
== NULL
)
838 if (tmp_email_dn
!= NULL
&& strcmp(tmp_email_dn
, "no") == 0)
842 BIO_printf(bio_err
, "message digest is %s\n", dgst
);
844 && (policy
= lookup_conf(conf
, section
, ENV_POLICY
)) == NULL
)
848 BIO_printf(bio_err
, "policy is %s\n", policy
);
850 if (NCONF_get_string(conf
, section
, ENV_RAND_SERIAL
) != NULL
) {
854 serialfile
= lookup_conf(conf
, section
, ENV_SERIAL
);
855 if (serialfile
== NULL
)
859 if (extfile_conf
!= NULL
) {
860 /* Check syntax of extfile */
863 X509V3_set_ctx_test(&ctx
);
864 X509V3_set_nconf(&ctx
, extfile_conf
);
865 if (!X509V3_EXT_add_nconf(extfile_conf
, &ctx
, extensions
, NULL
)) {
867 "Error checking certificate extensions from extfile section %s\n",
874 * no '-extfile' option, so we look for extensions in the main
877 if (extensions
== NULL
) {
878 extensions
= NCONF_get_string(conf
, section
, ENV_EXTENSIONS
);
879 if (extensions
== NULL
)
882 if (extensions
!= NULL
) {
883 /* Check syntax of config file section */
886 X509V3_set_ctx_test(&ctx
);
887 X509V3_set_nconf(&ctx
, conf
);
888 if (!X509V3_EXT_add_nconf(conf
, &ctx
, extensions
, NULL
)) {
890 "Error checking certificate extension config section %s\n",
898 if (startdate
== NULL
) {
899 startdate
= NCONF_get_string(conf
, section
, ENV_DEFAULT_STARTDATE
);
900 if (startdate
== NULL
)
903 if (startdate
!= NULL
&& !ASN1_TIME_set_string_X509(NULL
, startdate
)) {
905 "start date is invalid, it should be YYMMDDHHMMSSZ or YYYYMMDDHHMMSSZ\n");
908 if (startdate
== NULL
)
911 if (enddate
== NULL
) {
912 enddate
= NCONF_get_string(conf
, section
, ENV_DEFAULT_ENDDATE
);
916 if (enddate
!= NULL
&& !ASN1_TIME_set_string_X509(NULL
, enddate
)) {
918 "end date is invalid, it should be YYMMDDHHMMSSZ or YYYYMMDDHHMMSSZ\n");
923 if (!NCONF_get_number(conf
, section
, ENV_DEFAULT_DAYS
, &days
)) {
928 if (enddate
== NULL
&& days
== 0) {
929 BIO_printf(bio_err
, "cannot lookup how many days to certify for\n");
934 if ((serial
= BN_new()) == NULL
|| !rand_serial(serial
, NULL
)) {
935 BIO_printf(bio_err
, "error generating serial number\n");
939 serial
= load_serial(serialfile
, NULL
, create_ser
, NULL
);
940 if (serial
== NULL
) {
941 BIO_printf(bio_err
, "error while loading serial number\n");
945 if (BN_is_zero(serial
)) {
946 BIO_printf(bio_err
, "next serial number is 00\n");
948 if ((f
= BN_bn2hex(serial
)) == NULL
)
950 BIO_printf(bio_err
, "next serial number is %s\n", f
);
956 if ((attribs
= NCONF_get_section(conf
, policy
)) == NULL
) {
957 BIO_printf(bio_err
, "unable to find 'section' for %s\n", policy
);
961 if ((cert_sk
= sk_X509_new_null()) == NULL
) {
962 BIO_printf(bio_err
, "Memory allocation failure\n");
965 if (spkac_file
!= NULL
) {
967 j
= certify_spkac(&x
, spkac_file
, pkey
, x509
, dgst
, sigopts
,
968 attribs
, db
, serial
, subj
, chtype
, multirdn
,
969 email_dn
, startdate
, enddate
, days
, extensions
,
970 conf
, verbose
, certopt
, get_nameopt(), default_op
,
976 BIO_printf(bio_err
, "\n");
977 if (!BN_add_word(serial
, 1))
979 if (!sk_X509_push(cert_sk
, x
)) {
980 BIO_printf(bio_err
, "Memory allocation failure\n");
985 if (ss_cert_file
!= NULL
) {
987 j
= certify_cert(&x
, ss_cert_file
, certformat
, passin
, pkey
,
988 x509
, dgst
, sigopts
, vfyopts
, attribs
,
989 db
, serial
, subj
, chtype
, multirdn
, email_dn
,
990 startdate
, enddate
, days
, batch
, extensions
,
991 conf
, verbose
, certopt
, get_nameopt(), default_op
,
997 BIO_printf(bio_err
, "\n");
998 if (!BN_add_word(serial
, 1))
1000 if (!sk_X509_push(cert_sk
, x
)) {
1001 BIO_printf(bio_err
, "Memory allocation failure\n");
1006 if (infile
!= NULL
) {
1008 j
= certify(&x
, infile
, informat
, pkey
, x509p
, dgst
,
1009 sigopts
, vfyopts
, attribs
, db
,
1010 serial
, subj
, chtype
, multirdn
, email_dn
, startdate
,
1011 enddate
, days
, batch
, extensions
, conf
, verbose
,
1012 certopt
, get_nameopt(), default_op
, ext_copy
, selfsign
, dateopt
);
1017 BIO_printf(bio_err
, "\n");
1018 if (!BN_add_word(serial
, 1))
1020 if (!sk_X509_push(cert_sk
, x
)) {
1021 BIO_printf(bio_err
, "Memory allocation failure\n");
1026 for (i
= 0; i
< argc
; i
++) {
1028 j
= certify(&x
, argv
[i
], informat
, pkey
, x509p
, dgst
,
1031 serial
, subj
, chtype
, multirdn
, email_dn
, startdate
,
1032 enddate
, days
, batch
, extensions
, conf
, verbose
,
1033 certopt
, get_nameopt(), default_op
, ext_copy
, selfsign
, dateopt
);
1038 BIO_printf(bio_err
, "\n");
1039 if (!BN_add_word(serial
, 1)) {
1043 if (!sk_X509_push(cert_sk
, x
)) {
1044 BIO_printf(bio_err
, "Memory allocation failure\n");
1051 * we have a stack of newly certified certificates and a database
1052 * and serial number that need updating
1055 if (sk_X509_num(cert_sk
) > 0) {
1058 "\n%d out of %d certificate requests certified, commit? [y/n]",
1060 (void)BIO_flush(bio_err
);
1062 if (fgets(tmp
, sizeof(tmp
), stdin
) == NULL
) {
1063 BIO_printf(bio_err
, "CERTIFICATION CANCELED: I/O error\n");
1067 if (tmp
[0] != 'y' && tmp
[0] != 'Y') {
1068 BIO_printf(bio_err
, "CERTIFICATION CANCELED\n");
1074 BIO_printf(bio_err
, "Write out database with %d new entries\n",
1075 sk_X509_num(cert_sk
));
1077 if (serialfile
!= NULL
1078 && !save_serial(serialfile
, "new", serial
, NULL
))
1081 if (!save_index(dbfile
, "new", db
))
1085 outdirlen
= OPENSSL_strlcpy(new_cert
, outdir
, sizeof(new_cert
));
1086 #ifndef OPENSSL_SYS_VMS
1087 outdirlen
= OPENSSL_strlcat(new_cert
, "/", sizeof(new_cert
));
1091 BIO_printf(bio_err
, "writing new certificates\n");
1093 for (i
= 0; i
< sk_X509_num(cert_sk
); i
++) {
1095 X509
*xi
= sk_X509_value(cert_sk
, i
);
1096 const ASN1_INTEGER
*serialNumber
= X509_get0_serialNumber(xi
);
1097 const unsigned char *psn
= ASN1_STRING_get0_data(serialNumber
);
1098 const int snl
= ASN1_STRING_length(serialNumber
);
1099 const int filen_len
= 2 * (snl
> 0 ? snl
: 1) + sizeof(".pem");
1100 char *n
= new_cert
+ outdirlen
;
1102 if (outdirlen
+ filen_len
> PATH_MAX
) {
1103 BIO_printf(bio_err
, "certificate file name too long\n");
1108 static const char HEX_DIGITS
[] = "0123456789ABCDEF";
1110 for (j
= 0; j
< snl
; j
++, psn
++) {
1111 *n
++ = HEX_DIGITS
[*psn
>> 4];
1112 *n
++ = HEX_DIGITS
[*psn
& 0x0F];
1122 *n
= '\0'; /* closing new_cert */
1124 BIO_printf(bio_err
, "writing %s\n", new_cert
);
1126 Sout
= bio_open_default(outfile
, 'w',
1127 output_der
? FORMAT_ASN1
: FORMAT_TEXT
);
1131 Cout
= BIO_new_file(new_cert
, "w");
1136 write_new_certificate(Cout
, xi
, 0, notext
);
1137 write_new_certificate(Sout
, xi
, output_der
, notext
);
1143 if (sk_X509_num(cert_sk
)) {
1144 /* Rename the database and the serial file */
1145 if (serialfile
!= NULL
1146 && !rotate_serial(serialfile
, "new", "old"))
1149 if (!rotate_index(dbfile
, "new", "old"))
1152 BIO_printf(bio_err
, "Database updated\n");
1156 /*****************************************************************/
1159 if (crl_ext
== NULL
) {
1160 crl_ext
= NCONF_get_string(conf
, section
, ENV_CRLEXT
);
1161 if (crl_ext
== NULL
)
1164 if (crl_ext
!= NULL
) {
1165 /* Check syntax of file */
1168 X509V3_set_ctx_test(&ctx
);
1169 X509V3_set_nconf(&ctx
, conf
);
1170 if (!X509V3_EXT_add_nconf(conf
, &ctx
, crl_ext
, NULL
)) {
1172 "Error checking CRL extension section %s\n", crl_ext
);
1178 crlnumberfile
= NCONF_get_string(conf
, section
, ENV_CRLNUMBER
);
1179 if (crlnumberfile
!= NULL
) {
1180 if ((crlnumber
= load_serial(crlnumberfile
, NULL
, 0, NULL
))
1182 BIO_printf(bio_err
, "error while loading CRL number\n");
1189 if (!crldays
&& !crlhours
&& !crlsec
) {
1190 if (!NCONF_get_number(conf
, section
,
1191 ENV_DEFAULT_CRL_DAYS
, &crldays
)) {
1195 if (!NCONF_get_number(conf
, section
,
1196 ENV_DEFAULT_CRL_HOURS
, &crlhours
)) {
1201 if ((crl_nextupdate
== NULL
) &&
1202 (crldays
== 0) && (crlhours
== 0) && (crlsec
== 0)) {
1204 "cannot lookup how long until the next CRL is issued\n");
1209 BIO_printf(bio_err
, "making CRL\n");
1210 if ((crl
= X509_CRL_new_ex(app_get0_libctx(), app_get0_propq())) == NULL
)
1212 if (!X509_CRL_set_issuer_name(crl
, X509_get_subject_name(x509
)))
1215 if (!set_crl_lastupdate(crl
, crl_lastupdate
)) {
1216 BIO_puts(bio_err
, "error setting CRL lastUpdate\n");
1221 if (!set_crl_nextupdate(crl
, crl_nextupdate
,
1222 crldays
, crlhours
, crlsec
)) {
1223 BIO_puts(bio_err
, "error setting CRL nextUpdate\n");
1228 for (i
= 0; i
< sk_OPENSSL_PSTRING_num(db
->db
->data
); i
++) {
1229 pp
= sk_OPENSSL_PSTRING_value(db
->db
->data
, i
);
1230 if (pp
[DB_type
][0] == DB_TYPE_REV
) {
1231 if ((r
= X509_REVOKED_new()) == NULL
)
1233 j
= make_revoked(r
, pp
[DB_rev_date
]);
1238 if (!BN_hex2bn(&serial
, pp
[DB_serial
]))
1240 tmpser
= BN_to_ASN1_INTEGER(serial
, NULL
);
1245 X509_REVOKED_set_serialNumber(r
, tmpser
);
1246 ASN1_INTEGER_free(tmpser
);
1247 X509_CRL_add0_revoked(crl
, r
);
1252 * sort the data so it will be written in serial number order
1256 /* we now have a CRL */
1258 BIO_printf(bio_err
, "signing CRL\n");
1260 /* Add any extensions asked for */
1262 if (crl_ext
!= NULL
|| crlnumberfile
!= NULL
) {
1265 X509V3_set_ctx(&crlctx
, x509
, NULL
, NULL
, crl
, 0);
1266 X509V3_set_nconf(&crlctx
, conf
);
1268 if (crl_ext
!= NULL
)
1269 if (!X509V3_EXT_CRL_add_nconf(conf
, &crlctx
, crl_ext
, crl
)) {
1271 "Error adding CRL extensions from section %s\n", crl_ext
);
1274 if (crlnumberfile
!= NULL
) {
1275 tmpser
= BN_to_ASN1_INTEGER(crlnumber
, NULL
);
1278 X509_CRL_add1_ext_i2d(crl
, NID_crl_number
, tmpser
, 0, 0);
1279 ASN1_INTEGER_free(tmpser
);
1281 if (!BN_add_word(crlnumber
, 1))
1285 if (crl_ext
!= NULL
|| crl_v2
) {
1286 if (!X509_CRL_set_version(crl
, X509_CRL_VERSION_2
))
1290 /* we have a CRL number that need updating */
1291 if (crlnumberfile
!= NULL
1292 && !save_serial(crlnumberfile
, "new", crlnumber
, NULL
))
1298 if (!do_X509_CRL_sign(crl
, pkey
, dgst
, sigopts
))
1301 Sout
= bio_open_default(outfile
, 'w',
1302 output_der
? FORMAT_ASN1
: FORMAT_TEXT
);
1306 PEM_write_bio_X509_CRL(Sout
, crl
);
1308 /* Rename the crlnumber file */
1309 if (crlnumberfile
!= NULL
1310 && !rotate_serial(crlnumberfile
, "new", "old"))
1314 /*****************************************************************/
1316 if (infile
== NULL
) {
1317 BIO_printf(bio_err
, "no input files\n");
1322 revcert
= load_cert_pass(infile
, informat
, 1, passin
,
1323 "certificate to be revoked");
1324 if (revcert
== NULL
)
1327 rev_type
= REV_VALID
;
1328 j
= do_revoke(revcert
, db
, rev_type
, rev_arg
);
1333 if (!save_index(dbfile
, "new", db
))
1336 if (!rotate_index(dbfile
, "new", "old"))
1339 BIO_printf(bio_err
, "Database updated\n");
1346 ERR_print_errors(bio_err
);
1350 sk_X509_pop_free(cert_sk
, X509_free
);
1354 OPENSSL_free(passin
);
1358 sk_OPENSSL_STRING_free(sigopts
);
1359 sk_OPENSSL_STRING_free(vfyopts
);
1360 EVP_PKEY_free(pkey
);
1364 NCONF_free(extfile_conf
);
1369 static char *lookup_conf(const CONF
*conf
, const char *section
, const char *tag
)
1371 char *entry
= NCONF_get_string(conf
, section
, tag
);
1373 BIO_printf(bio_err
, "variable lookup failed for %s::%s\n", section
, tag
);
1377 static int certify(X509
**xret
, const char *infile
, int informat
,
1378 EVP_PKEY
*pkey
, X509
*x509
,
1380 STACK_OF(OPENSSL_STRING
) *sigopts
,
1381 STACK_OF(OPENSSL_STRING
) *vfyopts
,
1382 STACK_OF(CONF_VALUE
) *policy
, CA_DB
*db
,
1383 BIGNUM
*serial
, const char *subj
, unsigned long chtype
,
1384 int multirdn
, int email_dn
, const char *startdate
,
1385 const char *enddate
,
1386 long days
, int batch
, const char *ext_sect
, CONF
*lconf
,
1387 int verbose
, unsigned long certopt
, unsigned long nameopt
,
1388 int default_op
, int ext_copy
, int selfsign
, unsigned long dateopt
)
1390 X509_REQ
*req
= NULL
;
1391 EVP_PKEY
*pktmp
= NULL
;
1394 req
= load_csr(infile
, informat
, "certificate request");
1397 if ((pktmp
= X509_REQ_get0_pubkey(req
)) == NULL
) {
1398 BIO_printf(bio_err
, "Error unpacking public key\n");
1402 X509_REQ_print_ex(bio_err
, req
, nameopt
, X509_FLAG_COMPAT
);
1404 BIO_printf(bio_err
, "Check that the request matches the signature\n");
1407 if (selfsign
&& !X509_REQ_check_private_key(req
, pkey
)) {
1409 "Certificate request and CA private key do not match\n");
1412 i
= do_X509_REQ_verify(req
, pktmp
, vfyopts
);
1414 BIO_printf(bio_err
, "Signature verification problems...\n");
1419 "Signature did not match the certificate request\n");
1422 BIO_printf(bio_err
, "Signature ok\n");
1424 ok
= do_body(xret
, pkey
, x509
, dgst
, sigopts
, policy
, db
, serial
, subj
,
1425 chtype
, multirdn
, email_dn
, startdate
, enddate
, days
, batch
,
1426 verbose
, req
, ext_sect
, lconf
, certopt
, nameopt
, default_op
,
1427 ext_copy
, selfsign
, dateopt
);
1430 ERR_print_errors(bio_err
);
1435 static int certify_cert(X509
**xret
, const char *infile
, int certformat
,
1436 const char *passin
, EVP_PKEY
*pkey
, X509
*x509
,
1438 STACK_OF(OPENSSL_STRING
) *sigopts
,
1439 STACK_OF(OPENSSL_STRING
) *vfyopts
,
1440 STACK_OF(CONF_VALUE
) *policy
, CA_DB
*db
,
1441 BIGNUM
*serial
, const char *subj
, unsigned long chtype
,
1442 int multirdn
, int email_dn
, const char *startdate
,
1443 const char *enddate
, long days
, int batch
, const char *ext_sect
,
1444 CONF
*lconf
, int verbose
, unsigned long certopt
,
1445 unsigned long nameopt
, int default_op
, int ext_copy
, unsigned long dateopt
)
1447 X509
*template_cert
= NULL
;
1448 X509_REQ
*rreq
= NULL
;
1449 EVP_PKEY
*pktmp
= NULL
;
1452 if ((template_cert
= load_cert_pass(infile
, certformat
, 1, passin
,
1453 "template certificate")) == NULL
)
1456 X509_print(bio_err
, template_cert
);
1458 BIO_printf(bio_err
, "Check that the request matches the signature\n");
1460 if ((pktmp
= X509_get0_pubkey(template_cert
)) == NULL
) {
1461 BIO_printf(bio_err
, "error unpacking public key\n");
1464 i
= do_X509_verify(template_cert
, pktmp
, vfyopts
);
1467 BIO_printf(bio_err
, "Signature verification problems....\n");
1472 BIO_printf(bio_err
, "Signature did not match the certificate\n");
1475 BIO_printf(bio_err
, "Signature ok\n");
1478 if ((rreq
= X509_to_X509_REQ(template_cert
, NULL
, NULL
)) == NULL
)
1481 ok
= do_body(xret
, pkey
, x509
, dgst
, sigopts
, policy
, db
, serial
, subj
,
1482 chtype
, multirdn
, email_dn
, startdate
, enddate
, days
, batch
,
1483 verbose
, rreq
, ext_sect
, lconf
, certopt
, nameopt
, default_op
,
1484 ext_copy
, 0, dateopt
);
1487 X509_REQ_free(rreq
);
1488 X509_free(template_cert
);
1492 static int do_body(X509
**xret
, EVP_PKEY
*pkey
, X509
*x509
,
1493 const char *dgst
, STACK_OF(OPENSSL_STRING
) *sigopts
,
1494 STACK_OF(CONF_VALUE
) *policy
, CA_DB
*db
, BIGNUM
*serial
,
1495 const char *subj
, unsigned long chtype
, int multirdn
,
1496 int email_dn
, const char *startdate
, const char *enddate
, long days
,
1497 int batch
, int verbose
, X509_REQ
*req
, const char *ext_sect
,
1498 CONF
*lconf
, unsigned long certopt
, unsigned long nameopt
,
1499 int default_op
, int ext_copy
, int selfsign
, unsigned long dateopt
)
1501 const X509_NAME
*name
= NULL
;
1502 X509_NAME
*CAname
= NULL
, *subject
= NULL
;
1503 const ASN1_TIME
*tm
;
1504 ASN1_STRING
*str
, *str2
;
1507 X509_NAME_ENTRY
*ne
, *tne
;
1509 int ok
= -1, i
, j
, last
, nid
;
1512 OPENSSL_STRING row
[DB_NUMBER
];
1513 OPENSSL_STRING
*irow
= NULL
;
1514 OPENSSL_STRING
*rrow
= NULL
;
1518 for (i
= 0; i
< DB_NUMBER
; i
++)
1522 X509_NAME
*n
= parse_name(subj
, chtype
, multirdn
, "subject");
1526 X509_REQ_set_subject_name(req
, n
);
1531 BIO_printf(bio_err
, "The Subject's Distinguished Name is as follows\n");
1533 name
= X509_REQ_get_subject_name(req
);
1534 for (i
= 0; i
< X509_NAME_entry_count(name
); i
++) {
1535 ne
= X509_NAME_get_entry(name
, i
);
1536 str
= X509_NAME_ENTRY_get_data(ne
);
1537 obj
= X509_NAME_ENTRY_get_object(ne
);
1538 nid
= OBJ_obj2nid(obj
);
1541 /* assume all type should be strings */
1543 if (str
->type
== V_ASN1_UNIVERSALSTRING
)
1544 ASN1_UNIVERSALSTRING_to_string(str
);
1546 if (str
->type
== V_ASN1_IA5STRING
&& nid
!= NID_pkcs9_emailAddress
)
1547 str
->type
= V_ASN1_T61STRING
;
1549 if (nid
== NID_pkcs9_emailAddress
1550 && str
->type
== V_ASN1_PRINTABLESTRING
)
1551 str
->type
= V_ASN1_IA5STRING
;
1554 /* If no EMAIL is wanted in the subject */
1555 if (nid
== NID_pkcs9_emailAddress
&& !email_dn
)
1558 /* check some things */
1559 if (nid
== NID_pkcs9_emailAddress
&& str
->type
!= V_ASN1_IA5STRING
) {
1561 "\nemailAddress type needs to be of type IA5STRING\n");
1564 if (str
->type
!= V_ASN1_BMPSTRING
&& str
->type
!= V_ASN1_UTF8STRING
) {
1565 j
= ASN1_PRINTABLE_type(str
->data
, str
->length
);
1566 if ((j
== V_ASN1_T61STRING
&& str
->type
!= V_ASN1_T61STRING
) ||
1567 (j
== V_ASN1_IA5STRING
&& str
->type
== V_ASN1_PRINTABLESTRING
))
1570 "\nThe string contains characters that are illegal for the ASN.1 type\n");
1576 old_entry_print(obj
, str
);
1579 /* Ok, now we check the 'policy' stuff. */
1580 if ((subject
= X509_NAME_new()) == NULL
) {
1581 BIO_printf(bio_err
, "Memory allocation failure\n");
1585 /* take a copy of the issuer name before we mess with it. */
1587 CAname
= X509_NAME_dup(name
);
1589 CAname
= X509_NAME_dup(X509_get_subject_name(x509
));
1594 for (i
= 0; i
< sk_CONF_VALUE_num(policy
); i
++) {
1595 cv
= sk_CONF_VALUE_value(policy
, i
); /* get the object id */
1596 if ((j
= OBJ_txt2nid(cv
->name
)) == NID_undef
) {
1598 "%s:unknown object type in 'policy' configuration\n",
1602 obj
= OBJ_nid2obj(j
);
1606 X509_NAME_ENTRY
*push
= NULL
;
1608 /* lookup the object in the supplied name list */
1609 j
= X509_NAME_get_index_by_OBJ(name
, obj
, last
);
1615 tne
= X509_NAME_get_entry(name
, j
);
1619 /* depending on the 'policy', decide what to do. */
1620 if (strcmp(cv
->value
, "optional") == 0) {
1623 } else if (strcmp(cv
->value
, "supplied") == 0) {
1626 "The %s field needed to be supplied and was missing\n",
1632 } else if (strcmp(cv
->value
, "match") == 0) {
1637 "The mandatory %s field was missing\n",
1645 j
= X509_NAME_get_index_by_OBJ(CAname
, obj
, last2
);
1646 if ((j
< 0) && (last2
== -1)) {
1648 "The %s field does not exist in the CA certificate,\n"
1649 "the 'policy' is misconfigured\n", cv
->name
);
1653 push
= X509_NAME_get_entry(CAname
, j
);
1654 str
= X509_NAME_ENTRY_get_data(tne
);
1655 str2
= X509_NAME_ENTRY_get_data(push
);
1657 if (ASN1_STRING_cmp(str
, str2
) != 0)
1662 "The %s field is different between\n"
1663 "CA certificate (%s) and the request (%s)\n",
1665 ((str2
== NULL
) ? "NULL" : (char *)str2
->data
),
1666 ((str
== NULL
) ? "NULL" : (char *)str
->data
));
1671 "%s:invalid type in 'policy' configuration\n",
1677 if (!X509_NAME_add_entry(subject
, push
, -1, 0)) {
1678 BIO_printf(bio_err
, "Memory allocation failure\n");
1688 X509_NAME_free(subject
);
1689 /* subject=X509_NAME_dup(X509_REQ_get_subject_name(req)); */
1690 subject
= X509_NAME_dup(name
);
1691 if (subject
== NULL
)
1695 /* We are now totally happy, lets make and sign the certificate */
1698 "Everything appears to be ok, creating and signing the certificate\n");
1700 if ((ret
= X509_new_ex(app_get0_libctx(), app_get0_propq())) == NULL
)
1703 if (BN_to_ASN1_INTEGER(serial
, X509_get_serialNumber(ret
)) == NULL
)
1706 if (!X509_set_issuer_name(ret
, subject
))
1709 if (!X509_set_issuer_name(ret
, X509_get_subject_name(x509
)))
1713 if (!set_cert_times(ret
, startdate
, enddate
, days
))
1716 if (enddate
!= NULL
) {
1719 if (!ASN1_TIME_diff(&tdays
, NULL
, NULL
, X509_get0_notAfter(ret
)))
1724 if (!X509_set_subject_name(ret
, subject
))
1727 pktmp
= X509_REQ_get0_pubkey(req
);
1728 i
= X509_set_pubkey(ret
, pktmp
);
1732 /* Initialize the context structure */
1733 X509V3_set_ctx(&ext_ctx
, selfsign
? ret
: x509
,
1734 ret
, req
, NULL
, X509V3_CTX_REPLACE
);
1736 /* Lets add the extensions, if there are any */
1738 if (extfile_conf
!= NULL
) {
1740 BIO_printf(bio_err
, "Extra configuration file found\n");
1742 /* Use the extfile_conf configuration db LHASH */
1743 X509V3_set_nconf(&ext_ctx
, extfile_conf
);
1745 /* Adds exts contained in the configuration file */
1746 if (!X509V3_EXT_add_nconf(extfile_conf
, &ext_ctx
, ext_sect
, ret
)) {
1748 "Error adding certificate extensions from extfile section %s\n",
1754 "Successfully added extensions from file.\n");
1755 } else if (ext_sect
) {
1756 /* We found extensions to be set from config file */
1757 X509V3_set_nconf(&ext_ctx
, lconf
);
1759 if (!X509V3_EXT_add_nconf(lconf
, &ext_ctx
, ext_sect
, ret
)) {
1761 "Error adding certificate extensions from config section %s\n",
1768 "Successfully added extensions from config\n");
1772 /* Copy extensions from request (if any) */
1774 if (!copy_extensions(ret
, req
, ext_copy
)) {
1775 BIO_printf(bio_err
, "ERROR: adding extensions from request\n");
1781 "The subject name appears to be ok, checking database for clashes\n");
1783 /* Build the correct Subject if no e-mail is wanted in the subject. */
1785 X509_NAME_ENTRY
*tmpne
;
1786 X509_NAME
*dn_subject
;
1789 * Its best to dup the subject DN and then delete any email addresses
1790 * because this retains its structure.
1792 if ((dn_subject
= X509_NAME_dup(subject
)) == NULL
) {
1793 BIO_printf(bio_err
, "Memory allocation failure\n");
1797 while ((i
= X509_NAME_get_index_by_NID(dn_subject
,
1798 NID_pkcs9_emailAddress
,
1800 tmpne
= X509_NAME_delete_entry(dn_subject
, i
--);
1801 X509_NAME_ENTRY_free(tmpne
);
1804 if (!X509_set_subject_name(ret
, dn_subject
)) {
1805 X509_NAME_free(dn_subject
);
1808 X509_NAME_free(dn_subject
);
1811 row
[DB_name
] = X509_NAME_oneline(X509_get_subject_name(ret
), NULL
, 0);
1812 if (row
[DB_name
] == NULL
) {
1813 BIO_printf(bio_err
, "Memory allocation failure\n");
1817 if (BN_is_zero(serial
))
1818 row
[DB_serial
] = OPENSSL_strdup("00");
1820 row
[DB_serial
] = BN_bn2hex(serial
);
1821 if (row
[DB_serial
] == NULL
) {
1822 BIO_printf(bio_err
, "Memory allocation failure\n");
1826 if (row
[DB_name
][0] == '\0') {
1828 * An empty subject! We'll use the serial number instead. If
1829 * unique_subject is in use then we don't want different entries with
1830 * empty subjects matching each other.
1832 OPENSSL_free(row
[DB_name
]);
1833 row
[DB_name
] = OPENSSL_strdup(row
[DB_serial
]);
1834 if (row
[DB_name
] == NULL
) {
1835 BIO_printf(bio_err
, "Memory allocation failure\n");
1840 if (db
->attributes
.unique_subject
) {
1841 OPENSSL_STRING
*crow
= row
;
1843 rrow
= TXT_DB_get_by_index(db
->db
, DB_name
, crow
);
1846 "ERROR:There is already a certificate for %s\n",
1851 rrow
= TXT_DB_get_by_index(db
->db
, DB_serial
, row
);
1854 "ERROR:Serial number %s has already been issued,\n",
1857 " check the database/serial_file for corruption\n");
1862 BIO_printf(bio_err
, "The matching entry has the following details\n");
1863 if (rrow
[DB_type
][0] == DB_TYPE_EXP
)
1865 else if (rrow
[DB_type
][0] == DB_TYPE_REV
)
1867 else if (rrow
[DB_type
][0] == DB_TYPE_VAL
)
1870 p
= "\ninvalid type, Database error\n";
1871 BIO_printf(bio_err
, "Type :%s\n", p
);;
1872 if (rrow
[DB_type
][0] == DB_TYPE_REV
) {
1873 p
= rrow
[DB_exp_date
];
1876 BIO_printf(bio_err
, "Was revoked on:%s\n", p
);
1878 p
= rrow
[DB_exp_date
];
1881 BIO_printf(bio_err
, "Expires on :%s\n", p
);
1882 p
= rrow
[DB_serial
];
1885 BIO_printf(bio_err
, "Serial Number :%s\n", p
);
1889 BIO_printf(bio_err
, "File name :%s\n", p
);
1893 BIO_printf(bio_err
, "Subject Name :%s\n", p
);
1894 ok
= -1; /* This is now a 'bad' error. */
1899 BIO_printf(bio_err
, "Certificate Details:\n");
1901 * Never print signature details because signature not present
1903 certopt
|= X509_FLAG_NO_SIGDUMP
| X509_FLAG_NO_SIGNAME
;
1904 X509_print_ex(bio_err
, ret
, nameopt
, certopt
);
1907 BIO_printf(bio_err
, "Certificate is to be certified until ");
1908 ASN1_TIME_print_ex(bio_err
, X509_get0_notAfter(ret
), dateopt
);
1910 BIO_printf(bio_err
, " (%ld days)", days
);
1911 BIO_printf(bio_err
, "\n");
1915 BIO_printf(bio_err
, "Sign the certificate? [y/n]:");
1916 (void)BIO_flush(bio_err
);
1918 if (fgets(buf
, sizeof(buf
), stdin
) == NULL
) {
1920 "CERTIFICATE WILL NOT BE CERTIFIED: I/O error\n");
1924 if (!(buf
[0] == 'y' || buf
[0] == 'Y')) {
1925 BIO_printf(bio_err
, "CERTIFICATE WILL NOT BE CERTIFIED\n");
1931 pktmp
= X509_get0_pubkey(ret
);
1932 if (EVP_PKEY_missing_parameters(pktmp
) &&
1933 !EVP_PKEY_missing_parameters(pkey
))
1934 EVP_PKEY_copy_parameters(pktmp
, pkey
);
1936 if (!do_X509_sign(ret
, pkey
, dgst
, sigopts
, &ext_ctx
))
1939 /* We now just add it to the database as DB_TYPE_VAL('V') */
1940 row
[DB_type
] = OPENSSL_strdup("V");
1941 tm
= X509_get0_notAfter(ret
);
1942 row
[DB_exp_date
] = app_malloc(tm
->length
+ 1, "row expdate");
1943 memcpy(row
[DB_exp_date
], tm
->data
, tm
->length
);
1944 row
[DB_exp_date
][tm
->length
] = '\0';
1945 row
[DB_rev_date
] = NULL
;
1946 row
[DB_file
] = OPENSSL_strdup("unknown");
1947 if ((row
[DB_type
] == NULL
) || (row
[DB_file
] == NULL
)
1948 || (row
[DB_name
] == NULL
)) {
1949 BIO_printf(bio_err
, "Memory allocation failure\n");
1953 irow
= app_malloc(sizeof(*irow
) * (DB_NUMBER
+ 1), "row space");
1954 for (i
= 0; i
< DB_NUMBER
; i
++)
1956 irow
[DB_NUMBER
] = NULL
;
1958 if (!TXT_DB_insert(db
->db
, irow
)) {
1959 BIO_printf(bio_err
, "failed to update database\n");
1960 BIO_printf(bio_err
, "TXT_DB error number %ld\n", db
->db
->error
);
1967 for (i
= 0; i
< DB_NUMBER
; i
++)
1968 OPENSSL_free(row
[i
]);
1972 X509_NAME_free(CAname
);
1973 X509_NAME_free(subject
);
1981 static void write_new_certificate(BIO
*bp
, X509
*x
, int output_der
, int notext
)
1985 (void)i2d_X509_bio(bp
, x
);
1990 PEM_write_bio_X509(bp
, x
);
1993 static int certify_spkac(X509
**xret
, const char *infile
, EVP_PKEY
*pkey
,
1994 X509
*x509
, const char *dgst
,
1995 STACK_OF(OPENSSL_STRING
) *sigopts
,
1996 STACK_OF(CONF_VALUE
) *policy
, CA_DB
*db
,
1997 BIGNUM
*serial
, const char *subj
, unsigned long chtype
,
1998 int multirdn
, int email_dn
, const char *startdate
,
1999 const char *enddate
, long days
, const char *ext_sect
,
2000 CONF
*lconf
, int verbose
, unsigned long certopt
,
2001 unsigned long nameopt
, int default_op
, int ext_copy
, unsigned long dateopt
)
2003 STACK_OF(CONF_VALUE
) *sk
= NULL
;
2004 LHASH_OF(CONF_VALUE
) *parms
= NULL
;
2005 X509_REQ
*req
= NULL
;
2006 CONF_VALUE
*cv
= NULL
;
2007 NETSCAPE_SPKI
*spki
= NULL
;
2009 EVP_PKEY
*pktmp
= NULL
;
2010 X509_NAME
*n
= NULL
;
2011 X509_NAME_ENTRY
*ne
= NULL
;
2017 * Load input file into a hash table. (This is just an easy
2018 * way to read and parse the file, then put it into a convenient
2021 parms
= CONF_load(NULL
, infile
, &errline
);
2022 if (parms
== NULL
) {
2023 BIO_printf(bio_err
, "error on line %ld of %s\n", errline
, infile
);
2027 sk
= CONF_get_section(parms
, "default");
2028 if (sk_CONF_VALUE_num(sk
) == 0) {
2029 BIO_printf(bio_err
, "no name/value pairs found in %s\n", infile
);
2034 * Now create a dummy X509 request structure. We don't actually
2035 * have an X509 request, but we have many of the components
2036 * (a public key, various DN components). The idea is that we
2037 * put these components into the right X509 request structure
2038 * and we can use the same code as if you had a real X509 request.
2040 req
= X509_REQ_new();
2045 * Build up the subject name set.
2047 n
= X509_REQ_get_subject_name(req
);
2050 if (sk_CONF_VALUE_num(sk
) <= i
)
2053 cv
= sk_CONF_VALUE_value(sk
, i
);
2056 * Skip past any leading X. X: X, etc to allow for multiple instances
2058 for (buf
= cv
->name
; *buf
; buf
++)
2059 if ((*buf
== ':') || (*buf
== ',') || (*buf
== '.')) {
2067 if ((nid
= OBJ_txt2nid(type
)) == NID_undef
) {
2068 if (strcmp(type
, "SPKAC") == 0) {
2069 spki
= NETSCAPE_SPKI_b64_decode(cv
->value
, -1);
2072 "unable to load Netscape SPKAC structure\n");
2079 if (!X509_NAME_add_entry_by_NID(n
, nid
, chtype
,
2080 (unsigned char *)buf
, -1, -1, 0))
2084 BIO_printf(bio_err
, "Netscape SPKAC structure not found in %s\n",
2090 * Now extract the key from the SPKI structure.
2093 BIO_printf(bio_err
, "Check that the SPKAC request matches the signature\n");
2095 if ((pktmp
= NETSCAPE_SPKI_get_pubkey(spki
)) == NULL
) {
2096 BIO_printf(bio_err
, "error unpacking SPKAC public key\n");
2100 j
= NETSCAPE_SPKI_verify(spki
, pktmp
);
2102 EVP_PKEY_free(pktmp
);
2104 "signature verification failed on SPKAC public key\n");
2107 BIO_printf(bio_err
, "Signature ok\n");
2109 X509_REQ_set_pubkey(req
, pktmp
);
2110 EVP_PKEY_free(pktmp
);
2111 ok
= do_body(xret
, pkey
, x509
, dgst
, sigopts
, policy
, db
, serial
, subj
,
2112 chtype
, multirdn
, email_dn
, startdate
, enddate
, days
, 1,
2113 verbose
, req
, ext_sect
, lconf
, certopt
, nameopt
, default_op
,
2114 ext_copy
, 0, dateopt
);
2118 NETSCAPE_SPKI_free(spki
);
2119 X509_NAME_ENTRY_free(ne
);
2124 static int check_time_format(const char *str
)
2126 return ASN1_TIME_set_string(NULL
, str
);
2129 static int do_revoke(X509
*x509
, CA_DB
*db
, REVINFO_TYPE rev_type
,
2132 const ASN1_TIME
*tm
= NULL
;
2133 char *row
[DB_NUMBER
], **rrow
, **irow
;
2134 char *rev_str
= NULL
;
2138 for (i
= 0; i
< DB_NUMBER
; i
++)
2140 row
[DB_name
] = X509_NAME_oneline(X509_get_subject_name(x509
), NULL
, 0);
2141 bn
= ASN1_INTEGER_to_BN(X509_get0_serialNumber(x509
), NULL
);
2145 row
[DB_serial
] = OPENSSL_strdup("00");
2147 row
[DB_serial
] = BN_bn2hex(bn
);
2149 if (row
[DB_name
] != NULL
&& row
[DB_name
][0] == '\0') {
2150 /* Entries with empty Subjects actually use the serial number instead */
2151 OPENSSL_free(row
[DB_name
]);
2152 row
[DB_name
] = OPENSSL_strdup(row
[DB_serial
]);
2154 if ((row
[DB_name
] == NULL
) || (row
[DB_serial
] == NULL
)) {
2155 BIO_printf(bio_err
, "Memory allocation failure\n");
2159 * We have to lookup by serial number because name lookup skips revoked
2162 rrow
= TXT_DB_get_by_index(db
->db
, DB_serial
, row
);
2165 "Adding Entry with serial number %s to DB for %s\n",
2166 row
[DB_serial
], row
[DB_name
]);
2168 /* We now just add it to the database as DB_TYPE_REV('V') */
2169 row
[DB_type
] = OPENSSL_strdup("V");
2170 tm
= X509_get0_notAfter(x509
);
2171 row
[DB_exp_date
] = app_malloc(tm
->length
+ 1, "row exp_data");
2172 memcpy(row
[DB_exp_date
], tm
->data
, tm
->length
);
2173 row
[DB_exp_date
][tm
->length
] = '\0';
2174 row
[DB_rev_date
] = NULL
;
2175 row
[DB_file
] = OPENSSL_strdup("unknown");
2177 if (row
[DB_type
] == NULL
|| row
[DB_file
] == NULL
) {
2178 BIO_printf(bio_err
, "Memory allocation failure\n");
2182 irow
= app_malloc(sizeof(*irow
) * (DB_NUMBER
+ 1), "row ptr");
2183 for (i
= 0; i
< DB_NUMBER
; i
++)
2185 irow
[DB_NUMBER
] = NULL
;
2187 if (!TXT_DB_insert(db
->db
, irow
)) {
2188 BIO_printf(bio_err
, "failed to update database\n");
2189 BIO_printf(bio_err
, "TXT_DB error number %ld\n", db
->db
->error
);
2194 for (i
= 0; i
< DB_NUMBER
; i
++)
2197 /* Revoke Certificate */
2198 if (rev_type
== REV_VALID
)
2201 /* Retry revocation after DB insertion */
2202 ok
= do_revoke(x509
, db
, rev_type
, value
);
2206 } else if (index_name_cmp_noconst(row
, rrow
)) {
2207 BIO_printf(bio_err
, "ERROR:name does not match %s\n", row
[DB_name
]);
2209 } else if (rev_type
== REV_VALID
) {
2210 BIO_printf(bio_err
, "ERROR:Already present, serial number %s\n",
2213 } else if (rrow
[DB_type
][0] == DB_TYPE_REV
) {
2214 BIO_printf(bio_err
, "ERROR:Already revoked, serial number %s\n",
2218 BIO_printf(bio_err
, "Revoking Certificate %s.\n", rrow
[DB_serial
]);
2219 rev_str
= make_revocation_str(rev_type
, value
);
2221 BIO_printf(bio_err
, "Error in revocation arguments\n");
2224 rrow
[DB_type
][0] = DB_TYPE_REV
;
2225 rrow
[DB_type
][1] = '\0';
2226 rrow
[DB_rev_date
] = rev_str
;
2230 for (i
= 0; i
< DB_NUMBER
; i
++)
2231 OPENSSL_free(row
[i
]);
2235 static int get_certificate_status(const char *serial
, CA_DB
*db
)
2237 char *row
[DB_NUMBER
], **rrow
;
2239 size_t serial_len
= strlen(serial
);
2241 /* Free Resources */
2242 for (i
= 0; i
< DB_NUMBER
; i
++)
2245 /* Malloc needed char spaces */
2246 row
[DB_serial
] = app_malloc(serial_len
+ 2, "row serial#");
2248 if (serial_len
% 2) {
2250 * Set the first char to 0
2252 row
[DB_serial
][0] = '0';
2254 /* Copy String from serial to row[DB_serial] */
2255 memcpy(row
[DB_serial
] + 1, serial
, serial_len
);
2256 row
[DB_serial
][serial_len
+ 1] = '\0';
2258 /* Copy String from serial to row[DB_serial] */
2259 memcpy(row
[DB_serial
], serial
, serial_len
);
2260 row
[DB_serial
][serial_len
] = '\0';
2263 /* Make it Upper Case */
2264 make_uppercase(row
[DB_serial
]);
2268 /* Search for the certificate */
2269 rrow
= TXT_DB_get_by_index(db
->db
, DB_serial
, row
);
2271 BIO_printf(bio_err
, "Serial %s not present in db.\n", row
[DB_serial
]);
2274 } else if (rrow
[DB_type
][0] == DB_TYPE_VAL
) {
2275 BIO_printf(bio_err
, "%s=Valid (%c)\n",
2276 row
[DB_serial
], rrow
[DB_type
][0]);
2278 } else if (rrow
[DB_type
][0] == DB_TYPE_REV
) {
2279 BIO_printf(bio_err
, "%s=Revoked (%c)\n",
2280 row
[DB_serial
], rrow
[DB_type
][0]);
2282 } else if (rrow
[DB_type
][0] == DB_TYPE_EXP
) {
2283 BIO_printf(bio_err
, "%s=Expired (%c)\n",
2284 row
[DB_serial
], rrow
[DB_type
][0]);
2286 } else if (rrow
[DB_type
][0] == DB_TYPE_SUSP
) {
2287 BIO_printf(bio_err
, "%s=Suspended (%c)\n",
2288 row
[DB_serial
], rrow
[DB_type
][0]);
2291 BIO_printf(bio_err
, "%s=Unknown (%c).\n",
2292 row
[DB_serial
], rrow
[DB_type
][0]);
2296 for (i
= 0; i
< DB_NUMBER
; i
++) {
2297 OPENSSL_free(row
[i
]);
2302 static int do_updatedb(CA_DB
*db
)
2304 ASN1_TIME
*a_tm
= NULL
;
2308 a_tm
= ASN1_TIME_new();
2312 /* get actual time */
2313 if (X509_gmtime_adj(a_tm
, 0) == NULL
) {
2314 ASN1_TIME_free(a_tm
);
2318 for (i
= 0; i
< sk_OPENSSL_PSTRING_num(db
->db
->data
); i
++) {
2319 rrow
= sk_OPENSSL_PSTRING_value(db
->db
->data
, i
);
2321 if (rrow
[DB_type
][0] == DB_TYPE_VAL
) {
2322 /* ignore entries that are not valid */
2323 ASN1_TIME
*exp_date
= NULL
;
2325 exp_date
= ASN1_TIME_new();
2326 if (exp_date
== NULL
) {
2327 ASN1_TIME_free(a_tm
);
2331 if (!ASN1_TIME_set_string(exp_date
, rrow
[DB_exp_date
])) {
2332 ASN1_TIME_free(a_tm
);
2333 ASN1_TIME_free(exp_date
);
2337 if (ASN1_TIME_compare(exp_date
, a_tm
) <= 0) {
2338 rrow
[DB_type
][0] = DB_TYPE_EXP
;
2339 rrow
[DB_type
][1] = '\0';
2342 BIO_printf(bio_err
, "%s=Expired\n", rrow
[DB_serial
]);
2344 ASN1_TIME_free(exp_date
);
2348 ASN1_TIME_free(a_tm
);
2352 static const char *crl_reasons
[] = {
2353 /* CRL reason strings */
2357 "affiliationChanged",
2359 "cessationOfOperation",
2362 /* Additional pseudo reasons */
2368 #define NUM_REASONS OSSL_NELEM(crl_reasons)
2371 * Given revocation information convert to a DB string. The format of the
2372 * string is: revtime[,reason,extra]. Where 'revtime' is the revocation time
2373 * (the current time). 'reason' is the optional CRL reason and 'extra' is any
2374 * additional argument
2377 static char *make_revocation_str(REVINFO_TYPE rev_type
, const char *rev_arg
)
2380 const char *reason
= NULL
, *other
= NULL
;
2382 ASN1_UTCTIME
*revtm
= NULL
;
2390 case REV_CRL_REASON
:
2391 for (i
= 0; i
< 8; i
++) {
2392 if (OPENSSL_strcasecmp(rev_arg
, crl_reasons
[i
]) == 0) {
2393 reason
= crl_reasons
[i
];
2397 if (reason
== NULL
) {
2398 BIO_printf(bio_err
, "Unknown CRL reason %s\n", rev_arg
);
2404 /* Argument is an OID */
2405 otmp
= OBJ_txt2obj(rev_arg
, 0);
2406 ASN1_OBJECT_free(otmp
);
2409 BIO_printf(bio_err
, "Invalid object identifier %s\n", rev_arg
);
2413 reason
= "holdInstruction";
2417 case REV_KEY_COMPROMISE
:
2418 case REV_CA_COMPROMISE
:
2419 /* Argument is the key compromise time */
2420 if (!ASN1_GENERALIZEDTIME_set_string(NULL
, rev_arg
)) {
2422 "Invalid time format %s. Need YYYYMMDDHHMMSSZ\n",
2427 if (rev_type
== REV_KEY_COMPROMISE
)
2430 reason
= "CAkeyTime";
2435 revtm
= X509_gmtime_adj(NULL
, 0);
2440 i
= revtm
->length
+ 1;
2443 i
+= strlen(reason
) + 1;
2445 i
+= strlen(other
) + 1;
2447 str
= app_malloc(i
, "revocation reason");
2448 OPENSSL_strlcpy(str
, (char *)revtm
->data
, i
);
2450 OPENSSL_strlcat(str
, ",", i
);
2451 OPENSSL_strlcat(str
, reason
, i
);
2454 OPENSSL_strlcat(str
, ",", i
);
2455 OPENSSL_strlcat(str
, other
, i
);
2457 ASN1_UTCTIME_free(revtm
);
2462 * Convert revocation field to X509_REVOKED entry
2466 * 2 OK and some extensions added (i.e. V2 CRL)
2469 static int make_revoked(X509_REVOKED
*rev
, const char *str
)
2472 int reason_code
= -1;
2474 ASN1_OBJECT
*hold
= NULL
;
2475 ASN1_GENERALIZEDTIME
*comp_time
= NULL
;
2476 ASN1_ENUMERATED
*rtmp
= NULL
;
2478 ASN1_TIME
*revDate
= NULL
;
2480 i
= unpack_revinfo(&revDate
, &reason_code
, &hold
, &comp_time
, str
);
2485 if (rev
&& !X509_REVOKED_set_revocationDate(rev
, revDate
))
2488 if (rev
&& (reason_code
!= OCSP_REVOKED_STATUS_NOSTATUS
)) {
2489 rtmp
= ASN1_ENUMERATED_new();
2490 if (rtmp
== NULL
|| !ASN1_ENUMERATED_set(rtmp
, reason_code
))
2492 if (X509_REVOKED_add1_ext_i2d(rev
, NID_crl_reason
, rtmp
, 0, 0) <= 0)
2496 if (rev
&& comp_time
) {
2497 if (X509_REVOKED_add1_ext_i2d
2498 (rev
, NID_invalidity_date
, comp_time
, 0, 0) <= 0)
2502 if (X509_REVOKED_add1_ext_i2d
2503 (rev
, NID_hold_instruction_code
, hold
, 0, 0) <= 0)
2507 if (reason_code
!= OCSP_REVOKED_STATUS_NOSTATUS
)
2515 ASN1_OBJECT_free(hold
);
2516 ASN1_GENERALIZEDTIME_free(comp_time
);
2517 ASN1_ENUMERATED_free(rtmp
);
2518 ASN1_TIME_free(revDate
);
2523 static int old_entry_print(const ASN1_OBJECT
*obj
, const ASN1_STRING
*str
)
2525 char buf
[25], *pbuf
;
2529 j
= i2a_ASN1_OBJECT(bio_err
, obj
);
2531 for (j
= 22 - j
; j
> 0; j
--)
2535 BIO_puts(bio_err
, buf
);
2537 if (str
->type
== V_ASN1_PRINTABLESTRING
)
2538 BIO_printf(bio_err
, "PRINTABLE:'");
2539 else if (str
->type
== V_ASN1_T61STRING
)
2540 BIO_printf(bio_err
, "T61STRING:'");
2541 else if (str
->type
== V_ASN1_IA5STRING
)
2542 BIO_printf(bio_err
, "IA5STRING:'");
2543 else if (str
->type
== V_ASN1_UNIVERSALSTRING
)
2544 BIO_printf(bio_err
, "UNIVERSALSTRING:'");
2546 BIO_printf(bio_err
, "ASN.1 %2d:'", str
->type
);
2548 p
= (const char *)str
->data
;
2549 for (j
= str
->length
; j
> 0; j
--) {
2550 if ((*p
>= ' ') && (*p
<= '~'))
2551 BIO_printf(bio_err
, "%c", *p
);
2553 BIO_printf(bio_err
, "\\0x%02X", *p
);
2554 else if ((unsigned char)*p
== 0xf7)
2555 BIO_printf(bio_err
, "^?");
2557 BIO_printf(bio_err
, "^%c", *p
+ '@');
2560 BIO_printf(bio_err
, "'\n");
2564 int unpack_revinfo(ASN1_TIME
**prevtm
, int *preason
, ASN1_OBJECT
**phold
,
2565 ASN1_GENERALIZEDTIME
**pinvtm
, const char *str
)
2568 char *rtime_str
, *reason_str
= NULL
, *arg_str
= NULL
, *p
;
2569 int reason_code
= -1;
2572 ASN1_OBJECT
*hold
= NULL
;
2573 ASN1_GENERALIZEDTIME
*comp_time
= NULL
;
2575 tmp
= OPENSSL_strdup(str
);
2577 BIO_printf(bio_err
, "memory allocation failure\n");
2581 p
= strchr(tmp
, ',');
2597 *prevtm
= ASN1_UTCTIME_new();
2598 if (*prevtm
== NULL
) {
2599 BIO_printf(bio_err
, "memory allocation failure\n");
2602 if (!ASN1_UTCTIME_set_string(*prevtm
, rtime_str
)) {
2603 BIO_printf(bio_err
, "invalid revocation date %s\n", rtime_str
);
2608 for (i
= 0; i
< NUM_REASONS
; i
++) {
2609 if (OPENSSL_strcasecmp(reason_str
, crl_reasons
[i
]) == 0) {
2614 if (reason_code
== OCSP_REVOKED_STATUS_NOSTATUS
) {
2615 BIO_printf(bio_err
, "invalid reason code %s\n", reason_str
);
2619 if (reason_code
== 7) {
2620 reason_code
= OCSP_REVOKED_STATUS_REMOVEFROMCRL
;
2621 } else if (reason_code
== 8) { /* Hold instruction */
2623 BIO_printf(bio_err
, "missing hold instruction\n");
2626 reason_code
= OCSP_REVOKED_STATUS_CERTIFICATEHOLD
;
2627 hold
= OBJ_txt2obj(arg_str
, 0);
2630 BIO_printf(bio_err
, "invalid object identifier %s\n", arg_str
);
2636 ASN1_OBJECT_free(hold
);
2637 } else if ((reason_code
== 9) || (reason_code
== 10)) {
2639 BIO_printf(bio_err
, "missing compromised time\n");
2642 comp_time
= ASN1_GENERALIZEDTIME_new();
2643 if (comp_time
== NULL
) {
2644 BIO_printf(bio_err
, "memory allocation failure\n");
2647 if (!ASN1_GENERALIZEDTIME_set_string(comp_time
, arg_str
)) {
2648 BIO_printf(bio_err
, "invalid compromised time %s\n", arg_str
);
2651 if (reason_code
== 9)
2652 reason_code
= OCSP_REVOKED_STATUS_KEYCOMPROMISE
;
2654 reason_code
= OCSP_REVOKED_STATUS_CACOMPROMISE
;
2659 *preason
= reason_code
;
2661 *pinvtm
= comp_time
;
2670 ASN1_GENERALIZEDTIME_free(comp_time
);