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