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