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