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