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