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