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