]> git.ipfire.org Git - thirdparty/openssl.git/blame - apps/ca.c
Don't use "version" in "OpenSSL Version 1.1.0" etc
[thirdparty/openssl.git] / apps / ca.c
CommitLineData
846e33c7 1/*
2234212c 2 * Copyright 1995-2017 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 30# ifdef OPENSSL_SYS_VMS
e627a13c 31# include <unistd.h>
1fbab1dc 32# elif !defined(OPENSSL_SYS_VXWORKS) && !defined(OPENSSL_SYS_WINDOWS)
0f113f3e
MC
33# include <sys/file.h>
34# endif
7d7d2cbc
UM
35#endif
36
d610d27f
RL
37#include "apps.h"
38
7d7d2cbc 39#ifndef W_OK
0f113f3e
MC
40# define F_OK 0
41# define X_OK 1
42# define W_OK 2
43# define R_OK 4
d02b48c6
RE
44#endif
45
dfc3ffe5
F
46#ifndef PATH_MAX
47# define PATH_MAX 4096
48#endif
49#ifndef NAME_MAX
50# define NAME_MAX 255
51#endif
52
53#define CERT_MAX (PATH_MAX + NAME_MAX)
d02b48c6 54
070c2332 55#define BASE_SECTION "ca"
d02b48c6 56
0f113f3e
MC
57#define ENV_DEFAULT_CA "default_ca"
58
070c2332 59#define STRING_MASK "string_mask"
0f113f3e
MC
60#define UTF8_IN "utf8"
61
0f113f3e 62#define ENV_NEW_CERTS_DIR "new_certs_dir"
070c2332 63#define ENV_CERTIFICATE "certificate"
0f113f3e
MC
64#define ENV_SERIAL "serial"
65#define ENV_CRLNUMBER "crlnumber"
0f113f3e 66#define ENV_PRIVATE_KEY "private_key"
0f113f3e
MC
67#define ENV_DEFAULT_DAYS "default_days"
68#define ENV_DEFAULT_STARTDATE "default_startdate"
69#define ENV_DEFAULT_ENDDATE "default_enddate"
70#define ENV_DEFAULT_CRL_DAYS "default_crl_days"
71#define ENV_DEFAULT_CRL_HOURS "default_crl_hours"
72#define ENV_DEFAULT_MD "default_md"
73#define ENV_DEFAULT_EMAIL_DN "email_in_dn"
74#define ENV_PRESERVE "preserve"
75#define ENV_POLICY "policy"
76#define ENV_EXTENSIONS "x509_extensions"
77#define ENV_CRLEXT "crl_extensions"
78#define ENV_MSIE_HACK "msie_hack"
79#define ENV_NAMEOPT "name_opt"
80#define ENV_CERTOPT "cert_opt"
81#define ENV_EXTCOPY "copy_extensions"
82#define ENV_UNIQUE_SUBJECT "unique_subject"
83
84#define ENV_DATABASE "database"
d02b48c6 85
a6b7ffdd 86/* Additional revocation information types */
06a79af2
F
87typedef enum {
88 REV_VALID = -1, /* Valid (not-revoked) status */
89 REV_NONE = 0, /* No additional information */
90 REV_CRL_REASON = 1, /* Value is CRL reason code */
91 REV_HOLD = 2, /* Value is hold instruction */
92 REV_KEY_COMPROMISE = 3, /* Value is cert key compromise time */
93 REV_CA_COMPROMISE = 4 /* Value is CA key compromise time */
94} REVINFO_TYPE;
0f113f3e 95
edbff8da 96static char *lookup_conf(const CONF *conf, const char *group, const char *tag);
cc696296
F
97
98static int certify(X509 **xret, const char *infile, EVP_PKEY *pkey, X509 *x509,
0f113f3e
MC
99 const EVP_MD *dgst, STACK_OF(OPENSSL_STRING) *sigopts,
100 STACK_OF(CONF_VALUE) *policy, CA_DB *db,
cc696296
F
101 BIGNUM *serial, const char *subj, unsigned long chtype,
102 int multirdn, int email_dn, const char *startdate,
103 const char *enddate,
104 long days, int batch, const char *ext_sect, CONF *conf,
0f113f3e
MC
105 int verbose, unsigned long certopt, unsigned long nameopt,
106 int default_op, int ext_copy, int selfsign);
cc696296 107static int certify_cert(X509 **xret, const char *infile, EVP_PKEY *pkey, X509 *x509,
0f113f3e
MC
108 const EVP_MD *dgst, STACK_OF(OPENSSL_STRING) *sigopts,
109 STACK_OF(CONF_VALUE) *policy, CA_DB *db,
cc696296
F
110 BIGNUM *serial, const char *subj, unsigned long chtype,
111 int multirdn, int email_dn, const char *startdate,
112 const char *enddate, long days, int batch, const char *ext_sect,
0f113f3e 113 CONF *conf, int verbose, unsigned long certopt,
a773b52a 114 unsigned long nameopt, int default_op, int ext_copy);
cc696296 115static int certify_spkac(X509 **xret, const char *infile, EVP_PKEY *pkey,
0f113f3e
MC
116 X509 *x509, const EVP_MD *dgst,
117 STACK_OF(OPENSSL_STRING) *sigopts,
118 STACK_OF(CONF_VALUE) *policy, CA_DB *db,
cc696296
F
119 BIGNUM *serial, const char *subj, unsigned long chtype,
120 int multirdn, int email_dn, const char *startdate,
121 const char *enddate, long days, const char *ext_sect, CONF *conf,
0f113f3e
MC
122 int verbose, unsigned long certopt,
123 unsigned long nameopt, int default_op, int ext_copy);
0f113f3e
MC
124static int do_body(X509 **xret, EVP_PKEY *pkey, X509 *x509,
125 const EVP_MD *dgst, STACK_OF(OPENSSL_STRING) *sigopts,
126 STACK_OF(CONF_VALUE) *policy, CA_DB *db, BIGNUM *serial,
cc696296
F
127 const char *subj, unsigned long chtype, int multirdn,
128 int email_dn, const char *startdate, const char *enddate, long days,
129 int batch, int verbose, X509_REQ *req, const char *ext_sect,
0f113f3e
MC
130 CONF *conf, unsigned long certopt, unsigned long nameopt,
131 int default_op, int ext_copy, int selfsign);
f85b68cd
RL
132static int get_certificate_status(const char *ser_status, CA_DB *db);
133static int do_updatedb(CA_DB *db);
7c337e00 134static int check_time_format(const char *str);
06a79af2
F
135static int do_revoke(X509 *x509, CA_DB *db, REVINFO_TYPE rev_type,
136 const char *extval);
137static char *make_revocation_str(REVINFO_TYPE rev_type, const char *rev_arg);
138static int make_revoked(X509_REVOKED *rev, const char *str);
69b017f6 139static int old_entry_print(const ASN1_OBJECT *obj, const ASN1_STRING *str);
06a79af2 140static void write_new_certificate(BIO *bp, X509 *x, int output_der, int notext);
7e1b7485 141
0f113f3e 142static CONF *extconf = NULL;
0f113f3e
MC
143static int preserve = 0;
144static int msie_hack = 0;
35a99b63 145
7e1b7485
RS
146typedef enum OPTION_choice {
147 OPT_ERR = -1, OPT_EOF = 0, OPT_HELP,
148 OPT_ENGINE, OPT_VERBOSE, OPT_CONFIG, OPT_NAME, OPT_SUBJ, OPT_UTF8,
149 OPT_CREATE_SERIAL, OPT_MULTIVALUE_RDN, OPT_STARTDATE, OPT_ENDDATE,
150 OPT_DAYS, OPT_MD, OPT_POLICY, OPT_KEYFILE, OPT_KEYFORM, OPT_PASSIN,
151 OPT_KEY, OPT_CERT, OPT_SELFSIGN, OPT_IN, OPT_OUT, OPT_OUTDIR,
152 OPT_SIGOPT, OPT_NOTEXT, OPT_BATCH, OPT_PRESERVEDN, OPT_NOEMAILDN,
153 OPT_GENCRL, OPT_MSIE_HACK, OPT_CRLDAYS, OPT_CRLHOURS, OPT_CRLSEC,
154 OPT_INFILES, OPT_SS_CERT, OPT_SPKAC, OPT_REVOKE, OPT_VALID,
155 OPT_EXTENSIONS, OPT_EXTFILE, OPT_STATUS, OPT_UPDATEDB, OPT_CRLEXTS,
06a79af2
F
156 /* Do not change the order here; see related case statements below */
157 OPT_CRL_REASON, OPT_CRL_HOLD, OPT_CRL_COMPROMISE, OPT_CRL_CA_COMPROMISE
7e1b7485
RS
158} OPTION_CHOICE;
159
44c83ebd 160const OPTIONS ca_options[] = {
7e1b7485
RS
161 {"help", OPT_HELP, '-', "Display this summary"},
162 {"verbose", OPT_VERBOSE, '-', "Verbose output during processing"},
163 {"config", OPT_CONFIG, 's', "A config file"},
164 {"name", OPT_NAME, 's', "The particular CA definition to use"},
165 {"subj", OPT_SUBJ, 's', "Use arg instead of request's subject"},
166 {"utf8", OPT_UTF8, '-', "Input characters are UTF8 (default ASCII)"},
6755ff11 167 {"create_serial", OPT_CREATE_SERIAL, '-',
d6073e27 168 "If reading serial fails, create a new random serial"},
7e1b7485
RS
169 {"multivalue-rdn", OPT_MULTIVALUE_RDN, '-',
170 "Enable support for multivalued RDNs"},
171 {"startdate", OPT_STARTDATE, 's', "Cert notBefore, YYMMDDHHMMSSZ"},
172 {"enddate", OPT_ENDDATE, 's',
173 "YYMMDDHHMMSSZ cert notAfter (overrides -days)"},
174 {"days", OPT_DAYS, 'p', "Number of days to certify the cert for"},
175 {"md", OPT_MD, 's', "md to use; one of md2, md5, sha or sha1"},
176 {"policy", OPT_POLICY, 's', "The CA 'policy' to support"},
dd958974 177 {"keyfile", OPT_KEYFILE, 's', "Private key"},
7e1b7485 178 {"keyform", OPT_KEYFORM, 'f', "Private key file format (PEM or ENGINE)"},
16e1b281 179 {"passin", OPT_PASSIN, 's', "Input file pass phrase source"},
7e1b7485
RS
180 {"key", OPT_KEY, 's', "Key to decode the private key if it is encrypted"},
181 {"cert", OPT_CERT, '<', "The CA cert"},
182 {"selfsign", OPT_SELFSIGN, '-',
183 "Sign a cert with the key associated with it"},
184 {"in", OPT_IN, '<', "The input PEM encoded cert request(s)"},
185 {"out", OPT_OUT, '>', "Where to put the output file(s)"},
186 {"outdir", OPT_OUTDIR, '/', "Where to put output cert"},
16e1b281
F
187 {"sigopt", OPT_SIGOPT, 's', "Signature parameter in n:v form"},
188 {"notext", OPT_NOTEXT, '-', "Do not print the generated certificate"},
7e1b7485
RS
189 {"batch", OPT_BATCH, '-', "Don't ask questions"},
190 {"preserveDN", OPT_PRESERVEDN, '-', "Don't re-order the DN"},
191 {"noemailDN", OPT_NOEMAILDN, '-', "Don't add the EMAIL field to the DN"},
192 {"gencrl", OPT_GENCRL, '-', "Generate a new CRL"},
193 {"msie_hack", OPT_MSIE_HACK, '-',
194 "msie modifications to handle all those universal strings"},
16e1b281
F
195 {"crldays", OPT_CRLDAYS, 'p', "Days until the next CRL is due"},
196 {"crlhours", OPT_CRLHOURS, 'p', "Hours until the next CRL is due"},
197 {"crlsec", OPT_CRLSEC, 'p', "Seconds until the next CRL is due"},
7e1b7485
RS
198 {"infiles", OPT_INFILES, '-', "The last argument, requests to process"},
199 {"ss_cert", OPT_SS_CERT, '<', "File contains a self signed cert to sign"},
200 {"spkac", OPT_SPKAC, '<',
201 "File contains DN and signed public key and challenge"},
202 {"revoke", OPT_REVOKE, '<', "Revoke a cert (given in file)"},
b4b42ce6
F
203 {"valid", OPT_VALID, 's',
204 "Add a Valid(not-revoked) DB entry about a cert (given in file)"},
7e1b7485
RS
205 {"extensions", OPT_EXTENSIONS, 's',
206 "Extension section (override value in config file)"},
207 {"extfile", OPT_EXTFILE, '<',
208 "Configuration file with X509v3 extensions to add"},
209 {"status", OPT_STATUS, 's', "Shows cert status given the serial number"},
210 {"updatedb", OPT_UPDATEDB, '-', "Updates db for expired cert"},
211 {"crlexts", OPT_CRLEXTS, 's',
212 "CRL extension section (override value in config file)"},
6755ff11
MR
213 {"crl_reason", OPT_CRL_REASON, 's', "revocation reason"},
214 {"crl_hold", OPT_CRL_HOLD, 's',
215 "the hold instruction, an OID. Sets revocation reason to certificateHold"},
216 {"crl_compromise", OPT_CRL_COMPROMISE, 's',
217 "sets compromise time to val and the revocation reason to keyCompromise"},
218 {"crl_CA_compromise", OPT_CRL_CA_COMPROMISE, 's',
219 "sets compromise time to val and the revocation reason to CACompromise"},
7e1b7485
RS
220#ifndef OPENSSL_NO_ENGINE
221 {"engine", OPT_ENGINE, 's', "Use engine, possibly a hardware device"},
222#endif
223 {NULL}
224};
667ac4ec 225
7e1b7485 226int ca_main(int argc, char **argv)
0f113f3e 227{
fba13663 228 CONF *conf = NULL;
0f113f3e 229 ENGINE *e = NULL;
7e1b7485 230 BIGNUM *crlnumber = NULL, *serial = NULL;
0f113f3e 231 EVP_PKEY *pkey = NULL;
2d87ee68 232 BIO *in = NULL, *out = NULL, *Sout = NULL;
0f113f3e 233 ASN1_INTEGER *tmpser;
7e1b7485
RS
234 ASN1_TIME *tmptm;
235 CA_DB *db = NULL;
236 DB_ATTR db_attr;
0f113f3e 237 STACK_OF(CONF_VALUE) *attribs = NULL;
0f113f3e 238 STACK_OF(OPENSSL_STRING) *sigopts = NULL;
7e1b7485
RS
239 STACK_OF(X509) *cert_sk = NULL;
240 X509_CRL *crl = NULL;
241 const EVP_MD *dgst = NULL;
fba13663 242 char *configfile = default_config_file, *section = NULL;
cc01d217 243 char *md = NULL, *policy = NULL, *keyfile = NULL;
cc696296
F
244 char *certfile = NULL, *crl_ext = NULL, *crlnumberfile = NULL, *key = NULL;
245 const char *infile = NULL, *spkac_file = NULL, *ss_cert_file = NULL;
246 const char *extensions = NULL, *extfile = NULL, *passinarg = NULL;
7e1b7485 247 char *outdir = NULL, *outfile = NULL, *rev_arg = NULL, *ser_status = NULL;
cc696296
F
248 const char *serialfile = NULL, *subj = NULL;
249 char *prog, *startdate = NULL, *enddate = NULL;
8bf78043 250 char *dbfile = NULL, *f, *randfile = NULL;
dfc3ffe5 251 char new_cert[CERT_MAX + 1];
3a19b22a 252 char tmp[10 + 1] = "\0";
333b070e 253 char *const *pp;
7e1b7485
RS
254 const char *p;
255 int create_ser = 0, free_key = 0, total = 0, total_done = 0;
256 int batch = 0, default_op = 1, doupdatedb = 0, ext_copy = EXT_COPY_NONE;
257 int keyformat = FORMAT_PEM, multirdn = 0, notext = 0, output_der = 0;
258 int ret = 1, email_dn = 1, req = 0, verbose = 0, gencrl = 0, dorevoke = 0;
06a79af2 259 int i, j, selfsign = 0;
cc01d217 260 long crldays = 0, crlhours = 0, crlsec = 0, days = 0;
b5c4209b 261 unsigned long chtype = MBSTRING_ASC, certopt = 0;
7e1b7485 262 X509 *x509 = NULL, *x509p = NULL, *x = NULL;
06a79af2 263 REVINFO_TYPE rev_type = REV_NONE;
7e1b7485
RS
264 X509_REVOKED *r = NULL;
265 OPTION_CHOICE o;
d02b48c6 266
dfc3ffe5
F
267 new_cert[CERT_MAX] = '\0';
268
7e1b7485
RS
269 prog = opt_init(argc, argv, ca_options);
270 while ((o = opt_next()) != OPT_EOF) {
271 switch (o) {
8bf78043
F
272 case OPT_EOF:
273 case OPT_ERR:
7e1b7485 274opthelp:
8bf78043
F
275 BIO_printf(bio_err, "%s: Use -help for summary.\n", prog);
276 goto end;
277 case OPT_HELP:
278 opt_help(ca_options);
279 ret = 0;
280 goto end;
281 case OPT_IN:
282 req = 1;
283 infile = opt_arg();
284 break;
285 case OPT_OUT:
286 outfile = opt_arg();
287 break;
288 case OPT_VERBOSE:
289 verbose = 1;
290 break;
291 case OPT_CONFIG:
292 configfile = opt_arg();
293 break;
294 case OPT_NAME:
295 section = opt_arg();
296 break;
297 case OPT_SUBJ:
298 subj = opt_arg();
299 /* preserve=1; */
300 break;
301 case OPT_UTF8:
302 chtype = MBSTRING_UTF8;
303 break;
7e1b7485 304 case OPT_CREATE_SERIAL:
0f113f3e 305 create_ser = 1;
7e1b7485
RS
306 break;
307 case OPT_MULTIVALUE_RDN:
0f113f3e 308 multirdn = 1;
7e1b7485
RS
309 break;
310 case OPT_STARTDATE:
311 startdate = opt_arg();
312 break;
313 case OPT_ENDDATE:
314 enddate = opt_arg();
315 break;
316 case OPT_DAYS:
317 days = atoi(opt_arg());
318 break;
319 case OPT_MD:
320 md = opt_arg();
321 break;
322 case OPT_POLICY:
323 policy = opt_arg();
324 break;
325 case OPT_KEYFILE:
326 keyfile = opt_arg();
327 break;
328 case OPT_KEYFORM:
329 if (!opt_format(opt_arg(), OPT_FMT_ANY, &keyformat))
330 goto opthelp;
331 break;
332 case OPT_PASSIN:
333 passinarg = opt_arg();
334 break;
335 case OPT_KEY:
336 key = opt_arg();
337 break;
338 case OPT_CERT:
339 certfile = opt_arg();
340 break;
341 case OPT_SELFSIGN:
0f113f3e 342 selfsign = 1;
7e1b7485
RS
343 break;
344 case OPT_OUTDIR:
345 outdir = opt_arg();
346 break;
347 case OPT_SIGOPT:
348 if (sigopts == NULL)
0f113f3e 349 sigopts = sk_OPENSSL_STRING_new_null();
7e1b7485
RS
350 if (sigopts == NULL
351 || !sk_OPENSSL_STRING_push(sigopts, opt_arg()))
352 goto end;
353 break;
354 case OPT_NOTEXT:
0f113f3e 355 notext = 1;
7e1b7485
RS
356 break;
357 case OPT_BATCH:
0f113f3e 358 batch = 1;
7e1b7485
RS
359 break;
360 case OPT_PRESERVEDN:
0f113f3e 361 preserve = 1;
7e1b7485
RS
362 break;
363 case OPT_NOEMAILDN:
0f113f3e 364 email_dn = 0;
7e1b7485
RS
365 break;
366 case OPT_GENCRL:
0f113f3e 367 gencrl = 1;
7e1b7485
RS
368 break;
369 case OPT_MSIE_HACK:
0f113f3e 370 msie_hack = 1;
0f113f3e 371 break;
7e1b7485
RS
372 case OPT_CRLDAYS:
373 crldays = atol(opt_arg());
374 break;
375 case OPT_CRLHOURS:
376 crlhours = atol(opt_arg());
377 break;
378 case OPT_CRLSEC:
379 crlsec = atol(opt_arg());
380 break;
381 case OPT_INFILES:
0f113f3e 382 req = 1;
7e1b7485
RS
383 goto end_of_options;
384 case OPT_SS_CERT:
385 ss_cert_file = opt_arg();
0f113f3e 386 req = 1;
7e1b7485
RS
387 break;
388 case OPT_SPKAC:
389 spkac_file = opt_arg();
390 req = 1;
391 break;
392 case OPT_REVOKE:
393 infile = opt_arg();
0f113f3e 394 dorevoke = 1;
7e1b7485
RS
395 break;
396 case OPT_VALID:
397 infile = opt_arg();
0f113f3e 398 dorevoke = 2;
7e1b7485
RS
399 break;
400 case OPT_EXTENSIONS:
401 extensions = opt_arg();
402 break;
403 case OPT_EXTFILE:
404 extfile = opt_arg();
405 break;
406 case OPT_STATUS:
407 ser_status = opt_arg();
408 break;
409 case OPT_UPDATEDB:
0f113f3e 410 doupdatedb = 1;
7e1b7485
RS
411 break;
412 case OPT_CRLEXTS:
413 crl_ext = opt_arg();
414 break;
06a79af2 415 case OPT_CRL_REASON: /* := REV_CRL_REASON */
7e1b7485 416 case OPT_CRL_HOLD:
7e1b7485 417 case OPT_CRL_COMPROMISE:
7e1b7485
RS
418 case OPT_CRL_CA_COMPROMISE:
419 rev_arg = opt_arg();
06a79af2 420 rev_type = (o - OPT_CRL_REASON) + REV_CRL_REASON;
7e1b7485
RS
421 break;
422 case OPT_ENGINE:
333b070e 423 e = setup_engine(opt_arg(), 0);
0f113f3e
MC
424 break;
425 }
0f113f3e 426 }
7e1b7485
RS
427end_of_options:
428 argc = opt_num_rest();
429 argv = opt_rest();
0f113f3e 430
0f113f3e 431 BIO_printf(bio_err, "Using configuration from %s\n", configfile);
2e66d3d6
HP
432
433 if ((conf = app_load_config(configfile)) == NULL)
434 goto end;
c821defc 435 if (configfile != default_config_file && !app_load_modules(conf))
2e66d3d6 436 goto end;
b5a93e22 437
0f113f3e 438 /* Lets get the config section we are using */
edbff8da
F
439 if (section == NULL
440 && (section = lookup_conf(conf, BASE_SECTION, ENV_DEFAULT_CA)) == NULL)
441 goto end;
0f113f3e
MC
442
443 if (conf != NULL) {
444 p = NCONF_get_string(conf, NULL, "oid_file");
445 if (p == NULL)
446 ERR_clear_error();
447 if (p != NULL) {
448 BIO *oid_bio;
449
450 oid_bio = BIO_new_file(p, "r");
451 if (oid_bio == NULL) {
50e735f9
MC
452 /*-
453 BIO_printf(bio_err,"problems opening %s for extra oid's\n",p);
454 ERR_print_errors(bio_err);
455 */
0f113f3e
MC
456 ERR_clear_error();
457 } else {
458 OBJ_create_objects(oid_bio);
459 BIO_free(oid_bio);
460 }
461 }
7e1b7485 462 if (!add_oid_section(conf)) {
0f113f3e 463 ERR_print_errors(bio_err);
7e1b7485 464 goto end;
0f113f3e
MC
465 }
466 }
467
468 randfile = NCONF_get_string(conf, BASE_SECTION, "RANDFILE");
469 if (randfile == NULL)
470 ERR_clear_error();
7e1b7485 471 app_RAND_load_file(randfile, 0);
0f113f3e
MC
472
473 f = NCONF_get_string(conf, section, STRING_MASK);
2234212c 474 if (f == NULL)
0f113f3e
MC
475 ERR_clear_error();
476
2234212c 477 if (f != NULL && !ASN1_STRING_set_default_mask_asc(f)) {
0f113f3e 478 BIO_printf(bio_err, "Invalid global string mask setting %s\n", f);
7e1b7485 479 goto end;
0f113f3e
MC
480 }
481
482 if (chtype != MBSTRING_UTF8) {
483 f = NCONF_get_string(conf, section, UTF8_IN);
2234212c 484 if (f == NULL)
0f113f3e 485 ERR_clear_error();
86885c28 486 else if (strcmp(f, "yes") == 0)
0f113f3e
MC
487 chtype = MBSTRING_UTF8;
488 }
489
490 db_attr.unique_subject = 1;
491 p = NCONF_get_string(conf, section, ENV_UNIQUE_SUBJECT);
2234212c 492 if (p != NULL)
0f113f3e 493 db_attr.unique_subject = parse_yesno(p, 1);
2234212c 494 else
0f113f3e 495 ERR_clear_error();
0f113f3e 496
8bf78043 497 /*****************************************************************/
0f113f3e
MC
498 /* report status of cert with serial number given on command line */
499 if (ser_status) {
edbff8da 500 dbfile = lookup_conf(conf, section, ENV_DATABASE);
d6073e27 501 if (dbfile == NULL)
7e1b7485 502 goto end;
edbff8da 503
0f113f3e
MC
504 db = load_index(dbfile, &db_attr);
505 if (db == NULL)
7e1b7485 506 goto end;
0f113f3e
MC
507
508 if (!index_index(db))
7e1b7485 509 goto end;
0f113f3e
MC
510
511 if (get_certificate_status(ser_status, db) != 1)
512 BIO_printf(bio_err, "Error verifying serial %s!\n", ser_status);
7e1b7485 513 goto end;
0f113f3e
MC
514 }
515
8bf78043 516 /*****************************************************************/
0f113f3e
MC
517 /* we definitely need a private key, so let's get it */
518
edbff8da
F
519 if (keyfile == NULL
520 && (keyfile = lookup_conf(conf, section, ENV_PRIVATE_KEY)) == NULL)
7e1b7485 521 goto end;
edbff8da 522
2234212c 523 if (key == NULL) {
0f113f3e 524 free_key = 1;
7e1b7485 525 if (!app_passwd(passinarg, NULL, &key, NULL)) {
0f113f3e 526 BIO_printf(bio_err, "Error getting password\n");
7e1b7485 527 goto end;
0f113f3e
MC
528 }
529 }
7e1b7485 530 pkey = load_key(keyfile, keyformat, 0, key, e, "CA private key");
2234212c 531 if (key != NULL)
0f113f3e 532 OPENSSL_cleanse(key, strlen(key));
2234212c 533 if (pkey == NULL)
0f113f3e 534 /* load_key() has already printed an appropriate message */
7e1b7485 535 goto end;
0f113f3e 536
8bf78043 537 /*****************************************************************/
0f113f3e
MC
538 /* we need a certificate */
539 if (!selfsign || spkac_file || ss_cert_file || gencrl) {
edbff8da
F
540 if (certfile == NULL
541 && (certfile = lookup_conf(conf, section, ENV_CERTIFICATE)) == NULL)
7e1b7485 542 goto end;
edbff8da 543
a773b52a 544 x509 = load_cert(certfile, FORMAT_PEM, "CA certificate");
0f113f3e 545 if (x509 == NULL)
7e1b7485 546 goto end;
0f113f3e
MC
547
548 if (!X509_check_private_key(x509, pkey)) {
549 BIO_printf(bio_err,
550 "CA certificate and CA private key do not match\n");
7e1b7485 551 goto end;
0f113f3e
MC
552 }
553 }
554 if (!selfsign)
555 x509p = x509;
556
557 f = NCONF_get_string(conf, BASE_SECTION, ENV_PRESERVE);
558 if (f == NULL)
559 ERR_clear_error();
560 if ((f != NULL) && ((*f == 'y') || (*f == 'Y')))
561 preserve = 1;
562 f = NCONF_get_string(conf, BASE_SECTION, ENV_MSIE_HACK);
563 if (f == NULL)
564 ERR_clear_error();
565 if ((f != NULL) && ((*f == 'y') || (*f == 'Y')))
566 msie_hack = 1;
567
568 f = NCONF_get_string(conf, section, ENV_NAMEOPT);
569
2234212c 570 if (f != NULL) {
b5c4209b 571 if (!set_nameopt(f)) {
0f113f3e 572 BIO_printf(bio_err, "Invalid name options: \"%s\"\n", f);
7e1b7485 573 goto end;
0f113f3e
MC
574 }
575 default_op = 0;
f1cece55 576 }
0f113f3e
MC
577
578 f = NCONF_get_string(conf, section, ENV_CERTOPT);
579
2234212c 580 if (f != NULL) {
0f113f3e
MC
581 if (!set_cert_ex(&certopt, f)) {
582 BIO_printf(bio_err, "Invalid certificate options: \"%s\"\n", f);
7e1b7485 583 goto end;
0f113f3e
MC
584 }
585 default_op = 0;
2234212c 586 } else {
0f113f3e 587 ERR_clear_error();
2234212c 588 }
0f113f3e
MC
589
590 f = NCONF_get_string(conf, section, ENV_EXTCOPY);
591
2234212c 592 if (f != NULL) {
0f113f3e
MC
593 if (!set_ext_copy(&ext_copy, f)) {
594 BIO_printf(bio_err, "Invalid extension copy option: \"%s\"\n", f);
7e1b7485 595 goto end;
0f113f3e 596 }
2234212c 597 } else {
0f113f3e 598 ERR_clear_error();
2234212c 599 }
0f113f3e 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 777
2234212c 778 if (extconf == NULL) {
0f113f3e
MC
779 /*
780 * no '-extfile' option, so we look for extensions in the main
781 * configuration file
782 */
2234212c 783 if (extensions == NULL) {
0f113f3e 784 extensions = NCONF_get_string(conf, section, ENV_EXTENSIONS);
2234212c 785 if (extensions == NULL)
0f113f3e
MC
786 ERR_clear_error();
787 }
2234212c 788 if (extensions != NULL) {
0f113f3e
MC
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 }
2234212c 809 if (startdate != NULL && !ASN1_TIME_set_string_X509(NULL, startdate)) {
0f113f3e
MC
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 }
2234212c 822 if (enddate != NULL && !ASN1_TIME_set_string_X509(NULL, enddate)) {
0f113f3e
MC
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 }
2234212c 832 if (enddate == NULL && (days == 0)) {
0f113f3e
MC
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) {
2234212c 843 if (BN_is_zero(serial)) {
0f113f3e 844 BIO_printf(bio_err, "next serial number is 00\n");
2234212c 845 } else {
0f113f3e 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,
b5c4209b 867 conf, verbose, certopt, get_nameopt(), default_op,
0f113f3e
MC
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,
b5c4209b 892 conf, verbose, certopt, get_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,
b5c4209b 912 certopt, get_nameopt(), default_op, ext_copy, selfsign);
0f113f3e 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,
b5c4209b 931 certopt, get_nameopt(), default_op, ext_copy, selfsign);
0f113f3e 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);
3a19b22a
F
956 tmp[0] = '\0';
957 if (fgets(tmp, sizeof(tmp), stdin) == NULL) {
0f113f3e
MC
958 BIO_printf(bio_err,
959 "CERTIFICATION CANCELED: I/O error\n");
960 ret = 0;
7e1b7485 961 goto end;
0f113f3e 962 }
3a19b22a 963 if (tmp[0] != 'y' && tmp[0] != 'Y') {
0f113f3e
MC
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++) {
2d87ee68 983 BIO *Cout = NULL;
0db1fb3f
F
984 X509 *xi = sk_X509_value(cert_sk, i);
985 ASN1_INTEGER *serialNumber = X509_get_serialNumber(xi);
0f113f3e
MC
986 int k;
987 char *n;
988
a8d8e06b 989 j = ASN1_STRING_length(serialNumber);
17ebf85a 990 p = (const char *)ASN1_STRING_get0_data(serialNumber);
0f113f3e 991
dfc3ffe5 992 if (strlen(outdir) >= (size_t)(j ? CERT_MAX - j * 2 - 6 : CERT_MAX - 8)) {
0f113f3e 993 BIO_printf(bio_err, "certificate file name too long\n");
7e1b7485 994 goto end;
0f113f3e
MC
995 }
996
3a19b22a 997 strcpy(new_cert, outdir);
bc36ee62 998#ifndef OPENSSL_SYS_VMS
3a19b22a 999 OPENSSL_strlcat(new_cert, "/", sizeof(new_cert));
7d7d2cbc
UM
1000#endif
1001
3a19b22a 1002 n = (char *)&(new_cert[strlen(new_cert)]);
0f113f3e
MC
1003 if (j > 0) {
1004 for (k = 0; k < j; k++) {
3a19b22a 1005 if (n >= &(new_cert[sizeof(new_cert)]))
0f113f3e
MC
1006 break;
1007 BIO_snprintf(n,
3a19b22a 1008 &new_cert[0] + sizeof(new_cert) - n,
0f113f3e
MC
1009 "%02X", (unsigned char)*(p++));
1010 n += 2;
1011 }
1012 } else {
1013 *(n++) = '0';
1014 *(n++) = '0';
1015 }
1016 *(n++) = '.';
1017 *(n++) = 'p';
1018 *(n++) = 'e';
1019 *(n++) = 'm';
1020 *n = '\0';
1021 if (verbose)
3a19b22a 1022 BIO_printf(bio_err, "writing %s\n", new_cert);
0f113f3e 1023
3a19b22a 1024 Cout = BIO_new_file(new_cert, "w");
7e1b7485 1025 if (Cout == NULL) {
3a19b22a 1026 perror(new_cert);
7e1b7485 1027 goto end;
0f113f3e 1028 }
0db1fb3f
F
1029 write_new_certificate(Cout, xi, 0, notext);
1030 write_new_certificate(Sout, xi, output_der, notext);
2d87ee68 1031 BIO_free_all(Cout);
0f113f3e
MC
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;
2234212c 1049 if (crl_ext == NULL) {
0f113f3e 1050 crl_ext = NCONF_get_string(conf, section, ENV_CRLEXT);
2234212c 1051 if (crl_ext == NULL)
0f113f3e
MC
1052 ERR_clear_error();
1053 }
2234212c 1054 if (crl_ext != NULL) {
0f113f3e
MC
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 1100 X509_gmtime_adj(tmptm, 0);
568ce3a5 1101 X509_CRL_set1_lastUpdate(crl, tmptm);
0f113f3e
MC
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 1106 }
568ce3a5 1107 X509_CRL_set1_nextUpdate(crl, tmptm);
0f113f3e
MC
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
2234212c 1145 if (crl_ext != NULL || crlnumberfile != NULL) {
0f113f3e
MC
1146 X509V3_CTX crlctx;
1147 X509V3_set_ctx(&crlctx, x509, NULL, NULL, crl, 0);
1148 X509V3_set_nconf(&crlctx, conf);
1149
2234212c 1150 if (crl_ext != NULL)
0f113f3e 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 }
2234212c 1164 if (crl_ext != NULL || crl_v2) {
0f113f3e 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 1197 if (dorevoke == 2)
06a79af2 1198 rev_type = REV_VALID;
0f113f3e
MC
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(Sout);
1217 BIO_free_all(out);
1218 BIO_free_all(in);
222561fe 1219 sk_X509_pop_free(cert_sk, X509_free);
0f113f3e
MC
1220
1221 if (ret)
1222 ERR_print_errors(bio_err);
7e1b7485 1223 app_RAND_write_file(randfile);
25aaa98a 1224 if (free_key)
0f113f3e
MC
1225 OPENSSL_free(key);
1226 BN_free(serial);
1227 BN_free(crlnumber);
1228 free_index(db);
25aaa98a 1229 sk_OPENSSL_STRING_free(sigopts);
0f113f3e 1230 EVP_PKEY_free(pkey);
222561fe 1231 X509_free(x509);
0f113f3e
MC
1232 X509_CRL_free(crl);
1233 NCONF_free(conf);
1234 NCONF_free(extconf);
dd1abd44 1235 release_engine(e);
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
cc696296 1247static int certify(X509 **xret, const 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,
cc696296
F
1250 BIGNUM *serial, const char *subj, unsigned long chtype,
1251 int multirdn, int email_dn, const char *startdate,
1252 const char *enddate,
1253 long days, int batch, const char *ext_sect, CONF *lconf,
0f113f3e
MC
1254 int verbose, unsigned long certopt, unsigned long nameopt,
1255 int default_op, int ext_copy, int selfsign)
1256{
1257 X509_REQ *req = NULL;
1258 BIO *in = NULL;
1259 EVP_PKEY *pktmp = NULL;
1260 int ok = -1, i;
1261
7e1b7485
RS
1262 in = BIO_new_file(infile, "r");
1263 if (in == NULL) {
1264 ERR_print_errors(bio_err);
1265 goto end;
0f113f3e
MC
1266 }
1267 if ((req = PEM_read_bio_X509_REQ(in, NULL, NULL, NULL)) == NULL) {
1268 BIO_printf(bio_err, "Error reading certificate request in %s\n",
1269 infile);
7e1b7485 1270 goto end;
0f113f3e
MC
1271 }
1272 if (verbose)
b5c4209b 1273 X509_REQ_print_ex(bio_err, req, nameopt, X509_FLAG_COMPAT);
0f113f3e
MC
1274
1275 BIO_printf(bio_err, "Check that the request matches the signature\n");
1276
1277 if (selfsign && !X509_REQ_check_private_key(req, pkey)) {
1278 BIO_printf(bio_err,
1279 "Certificate request and CA private key do not match\n");
1280 ok = 0;
7e1b7485 1281 goto end;
0f113f3e 1282 }
c5137473 1283 if ((pktmp = X509_REQ_get0_pubkey(req)) == NULL) {
0f113f3e 1284 BIO_printf(bio_err, "error unpacking public key\n");
7e1b7485 1285 goto end;
0f113f3e
MC
1286 }
1287 i = X509_REQ_verify(req, pktmp);
c5137473 1288 pktmp = NULL;
0f113f3e
MC
1289 if (i < 0) {
1290 ok = 0;
1291 BIO_printf(bio_err, "Signature verification problems....\n");
1292 ERR_print_errors(bio_err);
7e1b7485 1293 goto end;
0f113f3e
MC
1294 }
1295 if (i == 0) {
1296 ok = 0;
1297 BIO_printf(bio_err,
1298 "Signature did not match the certificate request\n");
1299 ERR_print_errors(bio_err);
7e1b7485 1300 goto end;
2234212c 1301 } else {
0f113f3e 1302 BIO_printf(bio_err, "Signature ok\n");
2234212c 1303 }
0f113f3e
MC
1304
1305 ok = do_body(xret, pkey, x509, dgst, sigopts, policy, db, serial, subj,
1306 chtype, multirdn, email_dn, startdate, enddate, days, batch,
1307 verbose, req, ext_sect, lconf, certopt, nameopt, default_op,
1308 ext_copy, selfsign);
1309
7e1b7485 1310 end:
222561fe 1311 X509_REQ_free(req);
ca3a82c3 1312 BIO_free(in);
0f113f3e
MC
1313 return (ok);
1314}
d02b48c6 1315
cc696296 1316static int certify_cert(X509 **xret, const char *infile, EVP_PKEY *pkey, X509 *x509,
0f113f3e
MC
1317 const EVP_MD *dgst, STACK_OF(OPENSSL_STRING) *sigopts,
1318 STACK_OF(CONF_VALUE) *policy, CA_DB *db,
cc696296
F
1319 BIGNUM *serial, const char *subj, unsigned long chtype,
1320 int multirdn, int email_dn, const char *startdate,
1321 const char *enddate, long days, int batch, const char *ext_sect,
0f113f3e 1322 CONF *lconf, int verbose, unsigned long certopt,
a773b52a 1323 unsigned long nameopt, int default_op, int ext_copy)
0f113f3e
MC
1324{
1325 X509 *req = NULL;
1326 X509_REQ *rreq = NULL;
1327 EVP_PKEY *pktmp = NULL;
1328 int ok = -1, i;
1329
a773b52a 1330 if ((req = load_cert(infile, FORMAT_PEM, infile)) == NULL)
7e1b7485 1331 goto end;
0f113f3e
MC
1332 if (verbose)
1333 X509_print(bio_err, req);
1334
1335 BIO_printf(bio_err, "Check that the request matches the signature\n");
1336
c01ff880 1337 if ((pktmp = X509_get0_pubkey(req)) == NULL) {
0f113f3e 1338 BIO_printf(bio_err, "error unpacking public key\n");
7e1b7485 1339 goto end;
0f113f3e
MC
1340 }
1341 i = X509_verify(req, pktmp);
0f113f3e
MC
1342 if (i < 0) {
1343 ok = 0;
1344 BIO_printf(bio_err, "Signature verification problems....\n");
7e1b7485 1345 goto end;
0f113f3e
MC
1346 }
1347 if (i == 0) {
1348 ok = 0;
1349 BIO_printf(bio_err, "Signature did not match the certificate\n");
7e1b7485 1350 goto end;
2234212c 1351 } else {
0f113f3e 1352 BIO_printf(bio_err, "Signature ok\n");
2234212c 1353 }
0f113f3e 1354
f8547f62 1355 if ((rreq = X509_to_X509_REQ(req, NULL, NULL)) == NULL)
7e1b7485 1356 goto end;
0f113f3e
MC
1357
1358 ok = do_body(xret, pkey, x509, dgst, sigopts, policy, db, serial, subj,
1359 chtype, multirdn, email_dn, startdate, enddate, days, batch,
1360 verbose, rreq, ext_sect, lconf, certopt, nameopt, default_op,
1361 ext_copy, 0);
1362
7e1b7485 1363 end:
222561fe
RS
1364 X509_REQ_free(rreq);
1365 X509_free(req);
0f113f3e
MC
1366 return (ok);
1367}
1368
1369static int do_body(X509 **xret, EVP_PKEY *pkey, X509 *x509,
1370 const EVP_MD *dgst, STACK_OF(OPENSSL_STRING) *sigopts,
1371 STACK_OF(CONF_VALUE) *policy, CA_DB *db, BIGNUM *serial,
cc696296
F
1372 const char *subj, unsigned long chtype, int multirdn,
1373 int email_dn, const char *startdate, const char *enddate, long days,
1374 int batch, int verbose, X509_REQ *req, const char *ext_sect,
0f113f3e
MC
1375 CONF *lconf, unsigned long certopt, unsigned long nameopt,
1376 int default_op, int ext_copy, int selfsign)
1377{
1378 X509_NAME *name = NULL, *CAname = NULL, *subject = NULL, *dn_subject =
1379 NULL;
568ce3a5 1380 const ASN1_TIME *tm;
0f113f3e
MC
1381 ASN1_STRING *str, *str2;
1382 ASN1_OBJECT *obj;
1383 X509 *ret = NULL;
07a38fd2 1384 X509_NAME_ENTRY *ne, *tne;
0f113f3e
MC
1385 EVP_PKEY *pktmp;
1386 int ok = -1, i, j, last, nid;
1387 const char *p;
1388 CONF_VALUE *cv;
1389 OPENSSL_STRING row[DB_NUMBER];
1390 OPENSSL_STRING *irow = NULL;
1391 OPENSSL_STRING *rrow = NULL;
1392 char buf[25];
1393
0f113f3e
MC
1394 for (i = 0; i < DB_NUMBER; i++)
1395 row[i] = NULL;
1396
1397 if (subj) {
1398 X509_NAME *n = parse_name(subj, chtype, multirdn);
1399
1400 if (!n) {
1401 ERR_print_errors(bio_err);
7e1b7485 1402 goto end;
0f113f3e
MC
1403 }
1404 X509_REQ_set_subject_name(req, n);
0f113f3e
MC
1405 X509_NAME_free(n);
1406 }
1407
1408 if (default_op)
1409 BIO_printf(bio_err,
1410 "The Subject's Distinguished Name is as follows\n");
1411
1412 name = X509_REQ_get_subject_name(req);
1413 for (i = 0; i < X509_NAME_entry_count(name); i++) {
1414 ne = X509_NAME_get_entry(name, i);
1415 str = X509_NAME_ENTRY_get_data(ne);
1416 obj = X509_NAME_ENTRY_get_object(ne);
07a38fd2 1417 nid = OBJ_obj2nid(obj);
0f113f3e
MC
1418
1419 if (msie_hack) {
1420 /* assume all type should be strings */
0f113f3e
MC
1421
1422 if (str->type == V_ASN1_UNIVERSALSTRING)
1423 ASN1_UNIVERSALSTRING_to_string(str);
1424
07a38fd2 1425 if (str->type == V_ASN1_IA5STRING && nid != NID_pkcs9_emailAddress)
0f113f3e
MC
1426 str->type = V_ASN1_T61STRING;
1427
07a38fd2
F
1428 if (nid == NID_pkcs9_emailAddress
1429 && str->type == V_ASN1_PRINTABLESTRING)
0f113f3e
MC
1430 str->type = V_ASN1_IA5STRING;
1431 }
1432
1433 /* If no EMAIL is wanted in the subject */
07a38fd2 1434 if (nid == NID_pkcs9_emailAddress && !email_dn)
0f113f3e
MC
1435 continue;
1436
1437 /* check some things */
07a38fd2 1438 if (nid == NID_pkcs9_emailAddress && str->type != V_ASN1_IA5STRING) {
0f113f3e
MC
1439 BIO_printf(bio_err,
1440 "\nemailAddress type needs to be of type IA5STRING\n");
7e1b7485 1441 goto end;
0f113f3e 1442 }
07a38fd2 1443 if (str->type != V_ASN1_BMPSTRING && str->type != V_ASN1_UTF8STRING) {
0f113f3e 1444 j = ASN1_PRINTABLE_type(str->data, str->length);
07a38fd2
F
1445 if ((j == V_ASN1_T61STRING && str->type != V_ASN1_T61STRING) ||
1446 (j == V_ASN1_IA5STRING && str->type == V_ASN1_PRINTABLESTRING))
1447 {
0f113f3e
MC
1448 BIO_printf(bio_err,
1449 "\nThe string contains characters that are illegal for the ASN.1 type\n");
7e1b7485 1450 goto end;
0f113f3e
MC
1451 }
1452 }
1453
1454 if (default_op)
ecf3a1fb 1455 old_entry_print(obj, str);
0f113f3e
MC
1456 }
1457
1458 /* Ok, now we check the 'policy' stuff. */
1459 if ((subject = X509_NAME_new()) == NULL) {
1460 BIO_printf(bio_err, "Memory allocation failure\n");
7e1b7485 1461 goto end;
0f113f3e
MC
1462 }
1463
1464 /* take a copy of the issuer name before we mess with it. */
1465 if (selfsign)
1466 CAname = X509_NAME_dup(name);
1467 else
a8d8e06b 1468 CAname = X509_NAME_dup(X509_get_subject_name(x509));
0f113f3e 1469 if (CAname == NULL)
7e1b7485 1470 goto end;
0f113f3e
MC
1471 str = str2 = NULL;
1472
1473 for (i = 0; i < sk_CONF_VALUE_num(policy); i++) {
1474 cv = sk_CONF_VALUE_value(policy, i); /* get the object id */
1475 if ((j = OBJ_txt2nid(cv->name)) == NID_undef) {
1476 BIO_printf(bio_err,
1477 "%s:unknown object type in 'policy' configuration\n",
1478 cv->name);
7e1b7485 1479 goto end;
0f113f3e
MC
1480 }
1481 obj = OBJ_nid2obj(j);
1482
1483 last = -1;
1484 for (;;) {
07a38fd2
F
1485 X509_NAME_ENTRY *push = NULL;
1486
0f113f3e
MC
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. */
0f113f3e
MC
1499 if (strcmp(cv->value, "optional") == 0) {
1500 if (tne != NULL)
1501 push = tne;
1502 } else if (strcmp(cv->value, "supplied") == 0) {
1503 if (tne == NULL) {
1504 BIO_printf(bio_err,
1505 "The %s field needed to be supplied and was missing\n",
1506 cv->name);
7e1b7485 1507 goto end;
2234212c 1508 } else {
0f113f3e 1509 push = tne;
2234212c 1510 }
0f113f3e
MC
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
bd91e3c8 1580 /*
07a38fd2
F
1581 * Build the correct Subject if no e-mail is wanted in the subject.
1582 * And add it later on because of the method extensions are added (altName)
0f113f3e
MC
1583 */
1584
2234212c 1585 if (email_dn) {
0f113f3e 1586 dn_subject = subject;
2234212c 1587 } else {
0f113f3e
MC
1588 X509_NAME_ENTRY *tmpne;
1589 /*
1590 * Its best to dup the subject DN and then delete any email addresses
1591 * because this retains its structure.
1592 */
75ebbd9a 1593 if ((dn_subject = X509_NAME_dup(subject)) == NULL) {
0f113f3e 1594 BIO_printf(bio_err, "Memory allocation failure\n");
7e1b7485 1595 goto end;
0f113f3e
MC
1596 }
1597 while ((i = X509_NAME_get_index_by_NID(dn_subject,
1598 NID_pkcs9_emailAddress,
1599 -1)) >= 0) {
1600 tmpne = X509_NAME_get_entry(dn_subject, i);
1601 X509_NAME_delete_entry(dn_subject, i);
1602 X509_NAME_ENTRY_free(tmpne);
1603 }
1604 }
1605
1606 if (BN_is_zero(serial))
7644a9ae 1607 row[DB_serial] = OPENSSL_strdup("00");
0f113f3e
MC
1608 else
1609 row[DB_serial] = BN_bn2hex(serial);
1610 if (row[DB_serial] == NULL) {
1611 BIO_printf(bio_err, "Memory allocation failure\n");
7e1b7485 1612 goto end;
0f113f3e
MC
1613 }
1614
1615 if (db->attributes.unique_subject) {
1616 OPENSSL_STRING *crow = row;
1617
1618 rrow = TXT_DB_get_by_index(db->db, DB_name, crow);
1619 if (rrow != NULL) {
1620 BIO_printf(bio_err,
1621 "ERROR:There is already a certificate for %s\n",
1622 row[DB_name]);
1623 }
1624 }
1625 if (rrow == NULL) {
1626 rrow = TXT_DB_get_by_index(db->db, DB_serial, row);
1627 if (rrow != NULL) {
1628 BIO_printf(bio_err,
1629 "ERROR:Serial number %s has already been issued,\n",
1630 row[DB_serial]);
1631 BIO_printf(bio_err,
1632 " check the database/serial_file for corruption\n");
1633 }
1634 }
1635
1636 if (rrow != NULL) {
1637 BIO_printf(bio_err, "The matching entry has the following details\n");
06a79af2 1638 if (rrow[DB_type][0] == DB_TYPE_EXP)
0f113f3e 1639 p = "Expired";
06a79af2 1640 else if (rrow[DB_type][0] == DB_TYPE_REV)
0f113f3e 1641 p = "Revoked";
06a79af2 1642 else if (rrow[DB_type][0] == DB_TYPE_VAL)
0f113f3e
MC
1643 p = "Valid";
1644 else
1645 p = "\ninvalid type, Data base error\n";
1646 BIO_printf(bio_err, "Type :%s\n", p);;
06a79af2 1647 if (rrow[DB_type][0] == DB_TYPE_REV) {
0f113f3e
MC
1648 p = rrow[DB_exp_date];
1649 if (p == NULL)
1650 p = "undef";
1651 BIO_printf(bio_err, "Was revoked on:%s\n", p);
1652 }
1653 p = rrow[DB_exp_date];
1654 if (p == NULL)
1655 p = "undef";
1656 BIO_printf(bio_err, "Expires on :%s\n", p);
1657 p = rrow[DB_serial];
1658 if (p == NULL)
1659 p = "undef";
1660 BIO_printf(bio_err, "Serial Number :%s\n", p);
1661 p = rrow[DB_file];
1662 if (p == NULL)
1663 p = "undef";
1664 BIO_printf(bio_err, "File name :%s\n", p);
1665 p = rrow[DB_name];
1666 if (p == NULL)
1667 p = "undef";
1668 BIO_printf(bio_err, "Subject Name :%s\n", p);
1669 ok = -1; /* This is now a 'bad' error. */
7e1b7485 1670 goto end;
0f113f3e
MC
1671 }
1672
1673 /* We are now totally happy, lets make and sign the certificate */
1674 if (verbose)
1675 BIO_printf(bio_err,
1676 "Everything appears to be ok, creating and signing the certificate\n");
1677
1678 if ((ret = X509_new()) == NULL)
7e1b7485 1679 goto end;
d02b48c6
RE
1680
1681#ifdef X509_V3
0f113f3e
MC
1682 /* Make it an X509 v3 certificate. */
1683 if (!X509_set_version(ret, 2))
7e1b7485 1684 goto end;
d02b48c6
RE
1685#endif
1686
22293ea1 1687 if (BN_to_ASN1_INTEGER(serial, X509_get_serialNumber(ret)) == NULL)
7e1b7485 1688 goto end;
0f113f3e
MC
1689 if (selfsign) {
1690 if (!X509_set_issuer_name(ret, subject))
7e1b7485 1691 goto end;
0f113f3e
MC
1692 } else {
1693 if (!X509_set_issuer_name(ret, X509_get_subject_name(x509)))
7e1b7485 1694 goto end;
0f113f3e
MC
1695 }
1696
dc047d31
DSH
1697 if (!set_cert_times(ret, startdate, enddate, days))
1698 goto end;
0f113f3e 1699
dc047d31 1700 if (enddate != NULL) {
0f113f3e 1701 int tdays;
568ce3a5 1702 ASN1_TIME_diff(&tdays, NULL, NULL, X509_get0_notAfter(ret));
0f113f3e
MC
1703 days = tdays;
1704 }
1705
1706 if (!X509_set_subject_name(ret, subject))
7e1b7485 1707 goto end;
0f113f3e 1708
6e863f07 1709 pktmp = X509_REQ_get0_pubkey(req);
0f113f3e 1710 i = X509_set_pubkey(ret, pktmp);
0f113f3e 1711 if (!i)
7e1b7485 1712 goto end;
0f113f3e
MC
1713
1714 /* Lets add the extensions, if there are any */
1715 if (ext_sect) {
1716 X509V3_CTX ctx;
a8d8e06b 1717 X509_set_version(ret, 2);
0f113f3e
MC
1718
1719 /* Initialize the context structure */
1720 if (selfsign)
1721 X509V3_set_ctx(&ctx, ret, ret, req, NULL, 0);
1722 else
1723 X509V3_set_ctx(&ctx, x509, ret, req, NULL, 0);
1724
2234212c 1725 if (extconf != NULL) {
0f113f3e
MC
1726 if (verbose)
1727 BIO_printf(bio_err, "Extra configuration file found\n");
1728
1729 /* Use the extconf configuration db LHASH */
1730 X509V3_set_nconf(&ctx, extconf);
1731
1732 /* Test the structure (needed?) */
1733 /* X509V3_set_ctx_test(&ctx); */
1734
1735 /* Adds exts contained in the configuration file */
1736 if (!X509V3_EXT_add_nconf(extconf, &ctx, ext_sect, ret)) {
1737 BIO_printf(bio_err,
1738 "ERROR: adding extensions in section %s\n",
1739 ext_sect);
1740 ERR_print_errors(bio_err);
7e1b7485 1741 goto end;
0f113f3e
MC
1742 }
1743 if (verbose)
1744 BIO_printf(bio_err,
1745 "Successfully added extensions from file.\n");
1746 } else if (ext_sect) {
1747 /* We found extensions to be set from config file */
1748 X509V3_set_nconf(&ctx, lconf);
1749
1750 if (!X509V3_EXT_add_nconf(lconf, &ctx, ext_sect, ret)) {
1751 BIO_printf(bio_err,
1752 "ERROR: adding extensions in section %s\n",
1753 ext_sect);
1754 ERR_print_errors(bio_err);
7e1b7485 1755 goto end;
0f113f3e
MC
1756 }
1757
1758 if (verbose)
1759 BIO_printf(bio_err,
1760 "Successfully added extensions from config\n");
1761 }
1762 }
1763
1764 /* Copy extensions from request (if any) */
1765
1766 if (!copy_extensions(ret, req, ext_copy)) {
1767 BIO_printf(bio_err, "ERROR: adding extensions from request\n");
1768 ERR_print_errors(bio_err);
7e1b7485 1769 goto end;
0f113f3e
MC
1770 }
1771
1772 /* Set the right value for the noemailDN option */
1773 if (email_dn == 0) {
1774 if (!X509_set_subject_name(ret, dn_subject))
7e1b7485 1775 goto end;
0f113f3e
MC
1776 }
1777
1778 if (!default_op) {
1779 BIO_printf(bio_err, "Certificate Details:\n");
1780 /*
1781 * Never print signature details because signature not present
1782 */
1783 certopt |= X509_FLAG_NO_SIGDUMP | X509_FLAG_NO_SIGNAME;
1784 X509_print_ex(bio_err, ret, nameopt, certopt);
1785 }
1786
1787 BIO_printf(bio_err, "Certificate is to be certified until ");
568ce3a5 1788 ASN1_TIME_print(bio_err, X509_get0_notAfter(ret));
0f113f3e
MC
1789 if (days)
1790 BIO_printf(bio_err, " (%ld days)", days);
1791 BIO_printf(bio_err, "\n");
1792
1793 if (!batch) {
1794
1795 BIO_printf(bio_err, "Sign the certificate? [y/n]:");
1796 (void)BIO_flush(bio_err);
1797 buf[0] = '\0';
3a19b22a 1798 if (fgets(buf, sizeof(buf), stdin) == NULL) {
0f113f3e
MC
1799 BIO_printf(bio_err,
1800 "CERTIFICATE WILL NOT BE CERTIFIED: I/O error\n");
1801 ok = 0;
7e1b7485 1802 goto end;
0f113f3e 1803 }
3a19b22a 1804 if (!(buf[0] == 'y' || buf[0] == 'Y')) {
0f113f3e
MC
1805 BIO_printf(bio_err, "CERTIFICATE WILL NOT BE CERTIFIED\n");
1806 ok = 0;
7e1b7485 1807 goto end;
0f113f3e
MC
1808 }
1809 }
1810
c01ff880 1811 pktmp = X509_get0_pubkey(ret);
0f113f3e
MC
1812 if (EVP_PKEY_missing_parameters(pktmp) &&
1813 !EVP_PKEY_missing_parameters(pkey))
1814 EVP_PKEY_copy_parameters(pktmp, pkey);
0f113f3e 1815
7e1b7485
RS
1816 if (!do_X509_sign(ret, pkey, dgst, sigopts))
1817 goto end;
0f113f3e 1818
06a79af2 1819 /* We now just add it to the database as DB_TYPE_VAL('V') */
7644a9ae 1820 row[DB_type] = OPENSSL_strdup("V");
568ce3a5 1821 tm = X509_get0_notAfter(ret);
68dc6824 1822 row[DB_exp_date] = app_malloc(tm->length + 1, "row expdate");
0f113f3e
MC
1823 memcpy(row[DB_exp_date], tm->data, tm->length);
1824 row[DB_exp_date][tm->length] = '\0';
0f113f3e 1825 row[DB_rev_date] = NULL;
7644a9ae 1826 row[DB_file] = OPENSSL_strdup("unknown");
0f113f3e
MC
1827 row[DB_name] = X509_NAME_oneline(X509_get_subject_name(ret), NULL, 0);
1828
1829 if ((row[DB_type] == NULL) || (row[DB_exp_date] == NULL) ||
1830 (row[DB_file] == NULL) || (row[DB_name] == NULL)) {
1831 BIO_printf(bio_err, "Memory allocation failure\n");
7e1b7485 1832 goto end;
0f113f3e 1833 }
0f113f3e 1834
b4faea50 1835 irow = app_malloc(sizeof(*irow) * (DB_NUMBER + 1), "row space");
9ad52c56 1836 for (i = 0; i < DB_NUMBER; i++)
0f113f3e 1837 irow[i] = row[i];
0f113f3e
MC
1838 irow[DB_NUMBER] = NULL;
1839
1840 if (!TXT_DB_insert(db->db, irow)) {
1841 BIO_printf(bio_err, "failed to update database\n");
1842 BIO_printf(bio_err, "TXT_DB error number %ld\n", db->db->error);
7e1b7485 1843 goto end;
0f113f3e 1844 }
9ad52c56 1845 irow = NULL;
0f113f3e 1846 ok = 1;
7e1b7485 1847 end:
9ad52c56
BE
1848 if (irow != NULL) {
1849 for (i = 0; i < DB_NUMBER; i++)
1850 OPENSSL_free(row[i]);
1851 OPENSSL_free(irow);
1852 }
0f113f3e 1853
222561fe
RS
1854 X509_NAME_free(CAname);
1855 X509_NAME_free(subject);
1856 if (dn_subject != subject)
0f113f3e 1857 X509_NAME_free(dn_subject);
222561fe
RS
1858 if (ok <= 0)
1859 X509_free(ret);
1860 else
0f113f3e
MC
1861 *xret = ret;
1862 return (ok);
1863}
1864
1865static void write_new_certificate(BIO *bp, X509 *x, int output_der,
1866 int notext)
1867{
1868
1869 if (output_der) {
1870 (void)i2d_X509_bio(bp, x);
1871 return;
1872 }
0f113f3e
MC
1873 if (!notext)
1874 X509_print(bp, x);
1875 PEM_write_bio_X509(bp, x);
1876}
1877
cc696296 1878static int certify_spkac(X509 **xret, const char *infile, EVP_PKEY *pkey,
0f113f3e
MC
1879 X509 *x509, const EVP_MD *dgst,
1880 STACK_OF(OPENSSL_STRING) *sigopts,
1881 STACK_OF(CONF_VALUE) *policy, CA_DB *db,
cc696296
F
1882 BIGNUM *serial, const char *subj, unsigned long chtype,
1883 int multirdn, int email_dn, const char *startdate,
1884 const char *enddate, long days, const char *ext_sect,
0f113f3e
MC
1885 CONF *lconf, int verbose, unsigned long certopt,
1886 unsigned long nameopt, int default_op, int ext_copy)
1887{
1888 STACK_OF(CONF_VALUE) *sk = NULL;
1889 LHASH_OF(CONF_VALUE) *parms = NULL;
1890 X509_REQ *req = NULL;
1891 CONF_VALUE *cv = NULL;
1892 NETSCAPE_SPKI *spki = NULL;
0f113f3e
MC
1893 char *type, *buf;
1894 EVP_PKEY *pktmp = NULL;
1895 X509_NAME *n = NULL;
1896 X509_NAME_ENTRY *ne = NULL;
1897 int ok = -1, i, j;
1898 long errline;
1899 int nid;
1900
1901 /*
1902 * Load input file into a hash table. (This is just an easy
1903 * way to read and parse the file, then put it into a convenient
1904 * STACK format).
1905 */
1906 parms = CONF_load(NULL, infile, &errline);
1907 if (parms == NULL) {
1908 BIO_printf(bio_err, "error on line %ld of %s\n", errline, infile);
1909 ERR_print_errors(bio_err);
7e1b7485 1910 goto end;
0f113f3e
MC
1911 }
1912
1913 sk = CONF_get_section(parms, "default");
1914 if (sk_CONF_VALUE_num(sk) == 0) {
1915 BIO_printf(bio_err, "no name/value pairs found in %s\n", infile);
7e1b7485 1916 goto end;
0f113f3e
MC
1917 }
1918
1919 /*
1920 * Now create a dummy X509 request structure. We don't actually
1921 * have an X509 request, but we have many of the components
1922 * (a public key, various DN components). The idea is that we
1923 * put these components into the right X509 request structure
1924 * and we can use the same code as if you had a real X509 request.
1925 */
1926 req = X509_REQ_new();
1927 if (req == NULL) {
1928 ERR_print_errors(bio_err);
7e1b7485 1929 goto end;
0f113f3e
MC
1930 }
1931
1932 /*
1933 * Build up the subject name set.
1934 */
124055a9 1935 n = X509_REQ_get_subject_name(req);
0f113f3e
MC
1936
1937 for (i = 0;; i++) {
1938 if (sk_CONF_VALUE_num(sk) <= i)
1939 break;
1940
1941 cv = sk_CONF_VALUE_value(sk, i);
1942 type = cv->name;
1943 /*
1944 * Skip past any leading X. X: X, etc to allow for multiple instances
1945 */
1946 for (buf = cv->name; *buf; buf++)
1947 if ((*buf == ':') || (*buf == ',') || (*buf == '.')) {
1948 buf++;
1949 if (*buf)
1950 type = buf;
1951 break;
1952 }
1953
1954 buf = cv->value;
1955 if ((nid = OBJ_txt2nid(type)) == NID_undef) {
1956 if (strcmp(type, "SPKAC") == 0) {
1957 spki = NETSCAPE_SPKI_b64_decode(cv->value, -1);
1958 if (spki == NULL) {
1959 BIO_printf(bio_err,
1960 "unable to load Netscape SPKAC structure\n");
1961 ERR_print_errors(bio_err);
7e1b7485 1962 goto end;
0f113f3e
MC
1963 }
1964 }
1965 continue;
1966 }
1967
1968 if (!X509_NAME_add_entry_by_NID(n, nid, chtype,
1969 (unsigned char *)buf, -1, -1, 0))
7e1b7485 1970 goto end;
0f113f3e
MC
1971 }
1972 if (spki == NULL) {
1973 BIO_printf(bio_err, "Netscape SPKAC structure not found in %s\n",
1974 infile);
7e1b7485 1975 goto end;
0f113f3e
MC
1976 }
1977
1978 /*
1979 * Now extract the key from the SPKI structure.
1980 */
1981
1982 BIO_printf(bio_err,
1983 "Check that the SPKAC request matches the signature\n");
1984
1985 if ((pktmp = NETSCAPE_SPKI_get_pubkey(spki)) == NULL) {
1986 BIO_printf(bio_err, "error unpacking SPKAC public key\n");
7e1b7485 1987 goto end;
0f113f3e
MC
1988 }
1989
1990 j = NETSCAPE_SPKI_verify(spki, pktmp);
1991 if (j <= 0) {
f6c006ea 1992 EVP_PKEY_free(pktmp);
0f113f3e
MC
1993 BIO_printf(bio_err,
1994 "signature verification failed on SPKAC public key\n");
7e1b7485 1995 goto end;
0f113f3e
MC
1996 }
1997 BIO_printf(bio_err, "Signature ok\n");
1998
1999 X509_REQ_set_pubkey(req, pktmp);
2000 EVP_PKEY_free(pktmp);
2001 ok = do_body(xret, pkey, x509, dgst, sigopts, policy, db, serial, subj,
2002 chtype, multirdn, email_dn, startdate, enddate, days, 1,
2003 verbose, req, ext_sect, lconf, certopt, nameopt, default_op,
2004 ext_copy, 0);
7e1b7485 2005 end:
222561fe 2006 X509_REQ_free(req);
25aaa98a
RS
2007 CONF_free(parms);
2008 NETSCAPE_SPKI_free(spki);
222561fe 2009 X509_NAME_ENTRY_free(ne);
0f113f3e
MC
2010
2011 return (ok);
2012}
d02b48c6 2013
7c337e00 2014static int check_time_format(const char *str)
0f113f3e
MC
2015{
2016 return ASN1_TIME_set_string(NULL, str);
2017}
d02b48c6 2018
06a79af2
F
2019static int do_revoke(X509 *x509, CA_DB *db, REVINFO_TYPE rev_type,
2020 const char *value)
0f113f3e 2021{
568ce3a5 2022 const ASN1_TIME *tm = NULL;
0f113f3e
MC
2023 char *row[DB_NUMBER], **rrow, **irow;
2024 char *rev_str = NULL;
2025 BIGNUM *bn = NULL;
2026 int ok = -1, i;
2027
2028 for (i = 0; i < DB_NUMBER; i++)
2029 row[i] = NULL;
2030 row[DB_name] = X509_NAME_oneline(X509_get_subject_name(x509), NULL, 0);
2031 bn = ASN1_INTEGER_to_BN(X509_get_serialNumber(x509), NULL);
2032 if (!bn)
7e1b7485 2033 goto end;
0f113f3e 2034 if (BN_is_zero(bn))
7644a9ae 2035 row[DB_serial] = OPENSSL_strdup("00");
0f113f3e
MC
2036 else
2037 row[DB_serial] = BN_bn2hex(bn);
2038 BN_free(bn);
2039 if ((row[DB_name] == NULL) || (row[DB_serial] == NULL)) {
2040 BIO_printf(bio_err, "Memory allocation failure\n");
7e1b7485 2041 goto end;
0f113f3e
MC
2042 }
2043 /*
2044 * We have to lookup by serial number because name lookup skips revoked
2045 * certs
2046 */
2047 rrow = TXT_DB_get_by_index(db->db, DB_serial, row);
2048 if (rrow == NULL) {
2049 BIO_printf(bio_err,
2050 "Adding Entry with serial number %s to DB for %s\n",
2051 row[DB_serial], row[DB_name]);
2052
06a79af2 2053 /* We now just add it to the database as DB_TYPE_REV('V') */
7644a9ae 2054 row[DB_type] = OPENSSL_strdup("V");
568ce3a5 2055 tm = X509_get0_notAfter(x509);
68dc6824 2056 row[DB_exp_date] = app_malloc(tm->length + 1, "row exp_data");
0f113f3e
MC
2057 memcpy(row[DB_exp_date], tm->data, tm->length);
2058 row[DB_exp_date][tm->length] = '\0';
0f113f3e 2059 row[DB_rev_date] = NULL;
7644a9ae 2060 row[DB_file] = OPENSSL_strdup("unknown");
0f113f3e 2061
0fbaef9e
BE
2062 if (row[DB_type] == NULL || row[DB_file] == NULL) {
2063 BIO_printf(bio_err, "Memory allocation failure\n");
2064 goto end;
2065 }
2066
b4faea50 2067 irow = app_malloc(sizeof(*irow) * (DB_NUMBER + 1), "row ptr");
0fbaef9e 2068 for (i = 0; i < DB_NUMBER; i++)
0f113f3e 2069 irow[i] = row[i];
0f113f3e
MC
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);
0fbaef9e 2075 OPENSSL_free(irow);
7e1b7485 2076 goto end;
0f113f3e
MC
2077 }
2078
0fbaef9e
BE
2079 for (i = 0; i < DB_NUMBER; i++)
2080 row[i] = NULL;
2081
0f113f3e 2082 /* Revoke Certificate */
06a79af2 2083 if (rev_type == REV_VALID)
0f113f3e
MC
2084 ok = 1;
2085 else
06a79af2
F
2086 /* Retry revocation after DB insertion */
2087 ok = do_revoke(x509, db, rev_type, value);
0f113f3e 2088
7e1b7485 2089 goto end;
0f113f3e
MC
2090
2091 } else if (index_name_cmp_noconst(row, rrow)) {
2092 BIO_printf(bio_err, "ERROR:name does not match %s\n", row[DB_name]);
7e1b7485 2093 goto end;
06a79af2 2094 } else if (rev_type == REV_VALID) {
0f113f3e
MC
2095 BIO_printf(bio_err, "ERROR:Already present, serial number %s\n",
2096 row[DB_serial]);
7e1b7485 2097 goto end;
06a79af2 2098 } else if (rrow[DB_type][0] == DB_TYPE_REV) {
0f113f3e
MC
2099 BIO_printf(bio_err, "ERROR:Already revoked, serial number %s\n",
2100 row[DB_serial]);
7e1b7485 2101 goto end;
0f113f3e
MC
2102 } else {
2103 BIO_printf(bio_err, "Revoking Certificate %s.\n", rrow[DB_serial]);
06a79af2 2104 rev_str = make_revocation_str(rev_type, value);
0f113f3e
MC
2105 if (!rev_str) {
2106 BIO_printf(bio_err, "Error in revocation arguments\n");
7e1b7485 2107 goto end;
0f113f3e 2108 }
06a79af2 2109 rrow[DB_type][0] = DB_TYPE_REV;
0f113f3e
MC
2110 rrow[DB_type][1] = '\0';
2111 rrow[DB_rev_date] = rev_str;
2112 }
2113 ok = 1;
7e1b7485 2114 end:
0fbaef9e 2115 for (i = 0; i < DB_NUMBER; i++)
b548a1f1 2116 OPENSSL_free(row[i]);
0f113f3e
MC
2117 return (ok);
2118}
c67cdb50 2119
f85b68cd 2120static int get_certificate_status(const char *serial, CA_DB *db)
0f113f3e
MC
2121{
2122 char *row[DB_NUMBER], **rrow;
2123 int ok = -1, i;
f6c460e8 2124 size_t serial_len = strlen(serial);
0f113f3e
MC
2125
2126 /* Free Resources */
2127 for (i = 0; i < DB_NUMBER; i++)
2128 row[i] = NULL;
2129
2130 /* Malloc needed char spaces */
f6c460e8 2131 row[DB_serial] = app_malloc(serial_len + 2, "row serial#");
0f113f3e 2132
f6c460e8 2133 if (serial_len % 2) {
0f113f3e
MC
2134 /*
2135 * Set the first char to 0
9fa36f5f 2136 */
0f113f3e
MC
2137 row[DB_serial][0] = '0';
2138
2139 /* Copy String from serial to row[DB_serial] */
f6c460e8
F
2140 memcpy(row[DB_serial] + 1, serial, serial_len);
2141 row[DB_serial][serial_len + 1] = '\0';
0f113f3e
MC
2142 } else {
2143 /* Copy String from serial to row[DB_serial] */
f6c460e8
F
2144 memcpy(row[DB_serial], serial, serial_len);
2145 row[DB_serial][serial_len] = '\0';
0f113f3e
MC
2146 }
2147
2148 /* Make it Upper Case */
20967afb 2149 make_uppercase(row[DB_serial]);
0f113f3e
MC
2150
2151 ok = 1;
2152
2153 /* Search for the certificate */
2154 rrow = TXT_DB_get_by_index(db->db, DB_serial, row);
2155 if (rrow == NULL) {
2156 BIO_printf(bio_err, "Serial %s not present in db.\n", row[DB_serial]);
2157 ok = -1;
7e1b7485 2158 goto end;
06a79af2 2159 } else if (rrow[DB_type][0] == DB_TYPE_VAL) {
0f113f3e
MC
2160 BIO_printf(bio_err, "%s=Valid (%c)\n",
2161 row[DB_serial], rrow[DB_type][0]);
7e1b7485 2162 goto end;
06a79af2 2163 } else if (rrow[DB_type][0] == DB_TYPE_REV) {
0f113f3e
MC
2164 BIO_printf(bio_err, "%s=Revoked (%c)\n",
2165 row[DB_serial], rrow[DB_type][0]);
7e1b7485 2166 goto end;
06a79af2 2167 } else if (rrow[DB_type][0] == DB_TYPE_EXP) {
0f113f3e
MC
2168 BIO_printf(bio_err, "%s=Expired (%c)\n",
2169 row[DB_serial], rrow[DB_type][0]);
7e1b7485 2170 goto end;
06a79af2 2171 } else if (rrow[DB_type][0] == DB_TYPE_SUSP) {
0f113f3e
MC
2172 BIO_printf(bio_err, "%s=Suspended (%c)\n",
2173 row[DB_serial], rrow[DB_type][0]);
7e1b7485 2174 goto end;
0f113f3e
MC
2175 } else {
2176 BIO_printf(bio_err, "%s=Unknown (%c).\n",
2177 row[DB_serial], rrow[DB_type][0]);
2178 ok = -1;
2179 }
7e1b7485 2180 end:
0f113f3e 2181 for (i = 0; i < DB_NUMBER; i++) {
b548a1f1 2182 OPENSSL_free(row[i]);
0f113f3e
MC
2183 }
2184 return (ok);
2185}
2186
2187static int do_updatedb(CA_DB *db)
2188{
2189 ASN1_UTCTIME *a_tm = NULL;
2190 int i, cnt = 0;
2191 int db_y2k, a_y2k; /* flags = 1 if y >= 2000 */
2192 char **rrow, *a_tm_s;
2193
2194 a_tm = ASN1_UTCTIME_new();
96487cdd
MC
2195 if (a_tm == NULL)
2196 return -1;
0f113f3e
MC
2197
2198 /* get actual time and make a string */
2199 a_tm = X509_gmtime_adj(a_tm, 0);
edbff8da 2200 a_tm_s = app_malloc(a_tm->length + 1, "time string");
0f113f3e
MC
2201
2202 memcpy(a_tm_s, a_tm->data, a_tm->length);
2203 a_tm_s[a_tm->length] = '\0';
2204
2205 if (strncmp(a_tm_s, "49", 2) <= 0)
2206 a_y2k = 1;
2207 else
2208 a_y2k = 0;
2209
2210 for (i = 0; i < sk_OPENSSL_PSTRING_num(db->db->data); i++) {
2211 rrow = sk_OPENSSL_PSTRING_value(db->db->data, i);
2212
06a79af2 2213 if (rrow[DB_type][0] == DB_TYPE_VAL) {
0f113f3e
MC
2214 /* ignore entries that are not valid */
2215 if (strncmp(rrow[DB_exp_date], "49", 2) <= 0)
2216 db_y2k = 1;
2217 else
2218 db_y2k = 0;
2219
2220 if (db_y2k == a_y2k) {
2221 /* all on the same y2k side */
2222 if (strcmp(rrow[DB_exp_date], a_tm_s) <= 0) {
06a79af2 2223 rrow[DB_type][0] = DB_TYPE_EXP;
0f113f3e
MC
2224 rrow[DB_type][1] = '\0';
2225 cnt++;
2226
2227 BIO_printf(bio_err, "%s=Expired\n", rrow[DB_serial]);
2228 }
2229 } else if (db_y2k < a_y2k) {
06a79af2 2230 rrow[DB_type][0] = DB_TYPE_EXP;
0f113f3e
MC
2231 rrow[DB_type][1] = '\0';
2232 cnt++;
2233
2234 BIO_printf(bio_err, "%s=Expired\n", rrow[DB_serial]);
2235 }
2236
2237 }
2238 }
2239
0f113f3e
MC
2240 ASN1_UTCTIME_free(a_tm);
2241 OPENSSL_free(a_tm_s);
0f113f3e
MC
2242 return (cnt);
2243}
a6b7ffdd 2244
7d727231 2245static const char *crl_reasons[] = {
0f113f3e
MC
2246 /* CRL reason strings */
2247 "unspecified",
2248 "keyCompromise",
2249 "CACompromise",
2250 "affiliationChanged",
2251 "superseded",
2252 "cessationOfOperation",
2253 "certificateHold",
2254 "removeFromCRL",
2255 /* Additional pseudo reasons */
2256 "holdInstruction",
2257 "keyTime",
2258 "CAkeyTime"
a6b7ffdd
DSH
2259};
2260
bdcb1a2c 2261#define NUM_REASONS OSSL_NELEM(crl_reasons)
a6b7ffdd 2262
0f113f3e
MC
2263/*
2264 * Given revocation information convert to a DB string. The format of the
2265 * string is: revtime[,reason,extra]. Where 'revtime' is the revocation time
2266 * (the current time). 'reason' is the optional CRL reason and 'extra' is any
2267 * additional argument
a6b7ffdd
DSH
2268 */
2269
06a79af2 2270static char *make_revocation_str(REVINFO_TYPE rev_type, const char *rev_arg)
0f113f3e 2271{
cc696296 2272 char *str;
06a79af2 2273 const char *reason = NULL, *other = NULL;
0f113f3e
MC
2274 ASN1_OBJECT *otmp;
2275 ASN1_UTCTIME *revtm = NULL;
2276 int i;
06a79af2 2277
0f113f3e
MC
2278 switch (rev_type) {
2279 case REV_NONE:
06a79af2 2280 case REV_VALID:
0f113f3e
MC
2281 break;
2282
2283 case REV_CRL_REASON:
2284 for (i = 0; i < 8; i++) {
86885c28 2285 if (strcasecmp(rev_arg, crl_reasons[i]) == 0) {
0f113f3e
MC
2286 reason = crl_reasons[i];
2287 break;
2288 }
2289 }
2290 if (reason == NULL) {
2291 BIO_printf(bio_err, "Unknown CRL reason %s\n", rev_arg);
2292 return NULL;
2293 }
2294 break;
2295
2296 case REV_HOLD:
2297 /* Argument is an OID */
0f113f3e
MC
2298 otmp = OBJ_txt2obj(rev_arg, 0);
2299 ASN1_OBJECT_free(otmp);
2300
2301 if (otmp == NULL) {
2302 BIO_printf(bio_err, "Invalid object identifier %s\n", rev_arg);
2303 return NULL;
2304 }
2305
2306 reason = "holdInstruction";
2307 other = rev_arg;
2308 break;
2309
2310 case REV_KEY_COMPROMISE:
2311 case REV_CA_COMPROMISE:
0f113f3e
MC
2312 /* Argument is the key compromise time */
2313 if (!ASN1_GENERALIZEDTIME_set_string(NULL, rev_arg)) {
2314 BIO_printf(bio_err,
2315 "Invalid time format %s. Need YYYYMMDDHHMMSSZ\n",
2316 rev_arg);
2317 return NULL;
2318 }
2319 other = rev_arg;
2320 if (rev_type == REV_KEY_COMPROMISE)
2321 reason = "keyTime";
2322 else
2323 reason = "CAkeyTime";
2324
2325 break;
0f113f3e
MC
2326 }
2327
2328 revtm = X509_gmtime_adj(NULL, 0);
2329
2330 if (!revtm)
2331 return NULL;
2332
2333 i = revtm->length + 1;
2334
2335 if (reason)
2336 i += strlen(reason) + 1;
2337 if (other)
2338 i += strlen(other) + 1;
2339
68dc6824 2340 str = app_malloc(i, "revocation reason");
7644a9ae 2341 OPENSSL_strlcpy(str, (char *)revtm->data, i);
0f113f3e 2342 if (reason) {
7644a9ae
RS
2343 OPENSSL_strlcat(str, ",", i);
2344 OPENSSL_strlcat(str, reason, i);
0f113f3e
MC
2345 }
2346 if (other) {
7644a9ae
RS
2347 OPENSSL_strlcat(str, ",", i);
2348 OPENSSL_strlcat(str, other, i);
0f113f3e
MC
2349 }
2350 ASN1_UTCTIME_free(revtm);
2351 return str;
2352}
a6b7ffdd 2353
1d97c843 2354/*-
0f113f3e 2355 * Convert revocation field to X509_REVOKED entry
a6b7ffdd
DSH
2356 * return code:
2357 * 0 error
2358 * 1 OK
2359 * 2 OK and some extensions added (i.e. V2 CRL)
2360 */
2361
06a79af2 2362static int make_revoked(X509_REVOKED *rev, const char *str)
0f113f3e
MC
2363{
2364 char *tmp = NULL;
2365 int reason_code = -1;
2366 int i, ret = 0;
2367 ASN1_OBJECT *hold = NULL;
2368 ASN1_GENERALIZEDTIME *comp_time = NULL;
2369 ASN1_ENUMERATED *rtmp = NULL;
2370
2371 ASN1_TIME *revDate = NULL;
2372
2373 i = unpack_revinfo(&revDate, &reason_code, &hold, &comp_time, str);
2374
2375 if (i == 0)
7e1b7485 2376 goto end;
0f113f3e
MC
2377
2378 if (rev && !X509_REVOKED_set_revocationDate(rev, revDate))
7e1b7485 2379 goto end;
0f113f3e
MC
2380
2381 if (rev && (reason_code != OCSP_REVOKED_STATUS_NOSTATUS)) {
2382 rtmp = ASN1_ENUMERATED_new();
96487cdd 2383 if (rtmp == NULL || !ASN1_ENUMERATED_set(rtmp, reason_code))
7e1b7485 2384 goto end;
0f113f3e 2385 if (!X509_REVOKED_add1_ext_i2d(rev, NID_crl_reason, rtmp, 0, 0))
7e1b7485 2386 goto end;
0f113f3e
MC
2387 }
2388
2389 if (rev && comp_time) {
2390 if (!X509_REVOKED_add1_ext_i2d
2391 (rev, NID_invalidity_date, comp_time, 0, 0))
7e1b7485 2392 goto end;
0f113f3e
MC
2393 }
2394 if (rev && hold) {
2395 if (!X509_REVOKED_add1_ext_i2d
2396 (rev, NID_hold_instruction_code, hold, 0, 0))
7e1b7485 2397 goto end;
0f113f3e
MC
2398 }
2399
2400 if (reason_code != OCSP_REVOKED_STATUS_NOSTATUS)
2401 ret = 2;
2402 else
2403 ret = 1;
2404
7e1b7485 2405 end:
0f113f3e 2406
b548a1f1 2407 OPENSSL_free(tmp);
0f113f3e
MC
2408 ASN1_OBJECT_free(hold);
2409 ASN1_GENERALIZEDTIME_free(comp_time);
2410 ASN1_ENUMERATED_free(rtmp);
2411 ASN1_TIME_free(revDate);
2412
2413 return ret;
2414}
bad40585 2415
69b017f6 2416static int old_entry_print(const ASN1_OBJECT *obj, const ASN1_STRING *str)
0f113f3e 2417{
cc696296
F
2418 char buf[25], *pbuf;
2419 const char *p;
0f113f3e 2420 int j;
cc696296 2421
ecf3a1fb 2422 j = i2a_ASN1_OBJECT(bio_err, obj);
0f113f3e
MC
2423 pbuf = buf;
2424 for (j = 22 - j; j > 0; j--)
2425 *(pbuf++) = ' ';
2426 *(pbuf++) = ':';
2427 *(pbuf++) = '\0';
ecf3a1fb 2428 BIO_puts(bio_err, buf);
0f113f3e
MC
2429
2430 if (str->type == V_ASN1_PRINTABLESTRING)
ecf3a1fb 2431 BIO_printf(bio_err, "PRINTABLE:'");
0f113f3e 2432 else if (str->type == V_ASN1_T61STRING)
ecf3a1fb 2433 BIO_printf(bio_err, "T61STRING:'");
0f113f3e 2434 else if (str->type == V_ASN1_IA5STRING)
ecf3a1fb 2435 BIO_printf(bio_err, "IA5STRING:'");
0f113f3e 2436 else if (str->type == V_ASN1_UNIVERSALSTRING)
ecf3a1fb 2437 BIO_printf(bio_err, "UNIVERSALSTRING:'");
0f113f3e 2438 else
ecf3a1fb 2439 BIO_printf(bio_err, "ASN.1 %2d:'", str->type);
0f113f3e 2440
cc696296 2441 p = (const char *)str->data;
0f113f3e
MC
2442 for (j = str->length; j > 0; j--) {
2443 if ((*p >= ' ') && (*p <= '~'))
ecf3a1fb 2444 BIO_printf(bio_err, "%c", *p);
0f113f3e 2445 else if (*p & 0x80)
ecf3a1fb 2446 BIO_printf(bio_err, "\\0x%02X", *p);
0f113f3e 2447 else if ((unsigned char)*p == 0xf7)
ecf3a1fb 2448 BIO_printf(bio_err, "^?");
0f113f3e 2449 else
ecf3a1fb 2450 BIO_printf(bio_err, "^%c", *p + '@');
0f113f3e
MC
2451 p++;
2452 }
ecf3a1fb 2453 BIO_printf(bio_err, "'\n");
0f113f3e
MC
2454 return 1;
2455}
2456
2457int unpack_revinfo(ASN1_TIME **prevtm, int *preason, ASN1_OBJECT **phold,
2458 ASN1_GENERALIZEDTIME **pinvtm, const char *str)
2459{
7e1b7485 2460 char *tmp;
0f113f3e
MC
2461 char *rtime_str, *reason_str = NULL, *arg_str = NULL, *p;
2462 int reason_code = -1;
2463 int ret = 0;
2464 unsigned int i;
2465 ASN1_OBJECT *hold = NULL;
2466 ASN1_GENERALIZEDTIME *comp_time = NULL;
0f113f3e 2467
7644a9ae 2468 tmp = OPENSSL_strdup(str);
61986d32 2469 if (!tmp) {
a561bfe9 2470 BIO_printf(bio_err, "memory allocation failure\n");
7e1b7485 2471 goto end;
a561bfe9
MC
2472 }
2473
0f113f3e
MC
2474 p = strchr(tmp, ',');
2475
2476 rtime_str = tmp;
2477
2478 if (p) {
2479 *p = '\0';
2480 p++;
2481 reason_str = p;
2482 p = strchr(p, ',');
2483 if (p) {
2484 *p = '\0';
2485 arg_str = p + 1;
2486 }
2487 }
2488
2489 if (prevtm) {
2490 *prevtm = ASN1_UTCTIME_new();
96487cdd 2491 if (*prevtm == NULL) {
a561bfe9 2492 BIO_printf(bio_err, "memory allocation failure\n");
7e1b7485 2493 goto end;
a561bfe9 2494 }
0f113f3e
MC
2495 if (!ASN1_UTCTIME_set_string(*prevtm, rtime_str)) {
2496 BIO_printf(bio_err, "invalid revocation date %s\n", rtime_str);
7e1b7485 2497 goto end;
0f113f3e
MC
2498 }
2499 }
2500 if (reason_str) {
2501 for (i = 0; i < NUM_REASONS; i++) {
86885c28 2502 if (strcasecmp(reason_str, crl_reasons[i]) == 0) {
0f113f3e
MC
2503 reason_code = i;
2504 break;
2505 }
2506 }
2507 if (reason_code == OCSP_REVOKED_STATUS_NOSTATUS) {
2508 BIO_printf(bio_err, "invalid reason code %s\n", reason_str);
7e1b7485 2509 goto end;
0f113f3e
MC
2510 }
2511
2234212c 2512 if (reason_code == 7) {
0f113f3e 2513 reason_code = OCSP_REVOKED_STATUS_REMOVEFROMCRL;
2234212c 2514 } else if (reason_code == 8) { /* Hold instruction */
0f113f3e
MC
2515 if (!arg_str) {
2516 BIO_printf(bio_err, "missing hold instruction\n");
7e1b7485 2517 goto end;
0f113f3e
MC
2518 }
2519 reason_code = OCSP_REVOKED_STATUS_CERTIFICATEHOLD;
2520 hold = OBJ_txt2obj(arg_str, 0);
2521
2522 if (!hold) {
2523 BIO_printf(bio_err, "invalid object identifier %s\n",
2524 arg_str);
7e1b7485 2525 goto end;
0f113f3e
MC
2526 }
2527 if (phold)
2528 *phold = hold;
2ace7450
RS
2529 else
2530 ASN1_OBJECT_free(hold);
0f113f3e
MC
2531 } else if ((reason_code == 9) || (reason_code == 10)) {
2532 if (!arg_str) {
2533 BIO_printf(bio_err, "missing compromised time\n");
7e1b7485 2534 goto end;
0f113f3e
MC
2535 }
2536 comp_time = ASN1_GENERALIZEDTIME_new();
96487cdd 2537 if (comp_time == NULL) {
a561bfe9 2538 BIO_printf(bio_err, "memory allocation failure\n");
7e1b7485 2539 goto end;
a561bfe9 2540 }
0f113f3e
MC
2541 if (!ASN1_GENERALIZEDTIME_set_string(comp_time, arg_str)) {
2542 BIO_printf(bio_err, "invalid compromised time %s\n", arg_str);
7e1b7485 2543 goto end;
0f113f3e
MC
2544 }
2545 if (reason_code == 9)
2546 reason_code = OCSP_REVOKED_STATUS_KEYCOMPROMISE;
2547 else
2548 reason_code = OCSP_REVOKED_STATUS_CACOMPROMISE;
2549 }
2550 }
2551
2552 if (preason)
2553 *preason = reason_code;
2ace7450 2554 if (pinvtm) {
0f113f3e 2555 *pinvtm = comp_time;
2ace7450
RS
2556 comp_time = NULL;
2557 }
0f113f3e
MC
2558
2559 ret = 1;
2560
7e1b7485 2561 end:
0f113f3e 2562
b548a1f1 2563 OPENSSL_free(tmp);
2ace7450 2564 ASN1_GENERALIZEDTIME_free(comp_time);
0f113f3e
MC
2565
2566 return ret;
2567}