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