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