]> git.ipfire.org Git - thirdparty/openssl.git/blame - apps/ca.c
In OpenSSL builds, declare STACK for datatypes ...
[thirdparty/openssl.git] / apps / ca.c
CommitLineData
846e33c7 1/*
33388b44 2 * Copyright 1995-2020 The OpenSSL Project Authors. All Rights Reserved.
d02b48c6 3 *
dffa7520 4 * Licensed under the Apache License 2.0 (the "License"). You may not use
846e33c7
RS
5 * this file except in compliance with the License. You can obtain a copy
6 * in the file LICENSE in the source distribution or at
7 * https://www.openssl.org/source/license.html
d02b48c6 8 */
d02b48c6
RE
9#include <stdio.h>
10#include <stdlib.h>
11#include <string.h>
c67cdb50 12#include <ctype.h>
d02b48c6 13#include <sys/types.h>
ec577822
BM
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>
a6b7ffdd 23#include <openssl/ocsp.h>
ec577822 24#include <openssl/pem.h>
d02b48c6
RE
25
26#ifndef W_OK
0f113f3e 27# ifdef OPENSSL_SYS_VMS
e627a13c 28# include <unistd.h>
1fbab1dc 29# elif !defined(OPENSSL_SYS_VXWORKS) && !defined(OPENSSL_SYS_WINDOWS)
0f113f3e
MC
30# include <sys/file.h>
31# endif
7d7d2cbc
UM
32#endif
33
d610d27f 34#include "apps.h"
dab2cd68 35#include "progs.h"
d610d27f 36
852c2ed2
RS
37DEFINE_STACK_OF(X509)
38DEFINE_STACK_OF(X509_EXTENSION)
39DEFINE_STACK_OF(CONF_VALUE)
40DEFINE_STACK_OF_STRING()
41
7d7d2cbc 42#ifndef W_OK
0f113f3e 43# define F_OK 0
0f113f3e
MC
44# define W_OK 2
45# define R_OK 4
d02b48c6
RE
46#endif
47
dfc3ffe5
F
48#ifndef PATH_MAX
49# define PATH_MAX 4096
50#endif
d02b48c6 51
070c2332 52#define BASE_SECTION "ca"
d02b48c6 53
0f113f3e
MC
54#define ENV_DEFAULT_CA "default_ca"
55
070c2332 56#define STRING_MASK "string_mask"
0f113f3e
MC
57#define UTF8_IN "utf8"
58
0f113f3e 59#define ENV_NEW_CERTS_DIR "new_certs_dir"
070c2332 60#define ENV_CERTIFICATE "certificate"
0f113f3e 61#define ENV_SERIAL "serial"
ffb46830 62#define ENV_RAND_SERIAL "rand_serial"
0f113f3e 63#define ENV_CRLNUMBER "crlnumber"
0f113f3e 64#define ENV_PRIVATE_KEY "private_key"
0f113f3e
MC
65#define ENV_DEFAULT_DAYS "default_days"
66#define ENV_DEFAULT_STARTDATE "default_startdate"
67#define ENV_DEFAULT_ENDDATE "default_enddate"
68#define ENV_DEFAULT_CRL_DAYS "default_crl_days"
69#define ENV_DEFAULT_CRL_HOURS "default_crl_hours"
70#define ENV_DEFAULT_MD "default_md"
71#define ENV_DEFAULT_EMAIL_DN "email_in_dn"
72#define ENV_PRESERVE "preserve"
73#define ENV_POLICY "policy"
74#define ENV_EXTENSIONS "x509_extensions"
75#define ENV_CRLEXT "crl_extensions"
76#define ENV_MSIE_HACK "msie_hack"
77#define ENV_NAMEOPT "name_opt"
78#define ENV_CERTOPT "cert_opt"
79#define ENV_EXTCOPY "copy_extensions"
80#define ENV_UNIQUE_SUBJECT "unique_subject"
81
82#define ENV_DATABASE "database"
d02b48c6 83
a6b7ffdd 84/* Additional revocation information types */
06a79af2
F
85typedef 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;
0f113f3e 93
edbff8da 94static char *lookup_conf(const CONF *conf, const char *group, const char *tag);
cc696296
F
95
96static int certify(X509 **xret, const char *infile, EVP_PKEY *pkey, X509 *x509,
2292c8e1
RL
97 const EVP_MD *dgst,
98 STACK_OF(OPENSSL_STRING) *sigopts,
99 STACK_OF(OPENSSL_STRING) *vfyopts,
0f113f3e 100 STACK_OF(CONF_VALUE) *policy, CA_DB *db,
cc696296
F
101 BIGNUM *serial, const char *subj, unsigned long chtype,
102 int multirdn, int email_dn, const char *startdate,
103 const char *enddate,
104 long days, int batch, const char *ext_sect, CONF *conf,
0f113f3e 105 int verbose, unsigned long certopt, unsigned long nameopt,
2292c8e1 106 int default_op, int ext_copy, int selfsign);
cc696296 107static int certify_cert(X509 **xret, const char *infile, EVP_PKEY *pkey, X509 *x509,
2292c8e1
RL
108 const EVP_MD *dgst,
109 STACK_OF(OPENSSL_STRING) *sigopts,
110 STACK_OF(OPENSSL_STRING) *vfyopts,
0f113f3e 111 STACK_OF(CONF_VALUE) *policy, CA_DB *db,
cc696296
F
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,
0f113f3e 115 CONF *conf, int verbose, unsigned long certopt,
a773b52a 116 unsigned long nameopt, int default_op, int ext_copy);
cc696296 117static int certify_spkac(X509 **xret, const char *infile, EVP_PKEY *pkey,
0f113f3e
MC
118 X509 *x509, const EVP_MD *dgst,
119 STACK_OF(OPENSSL_STRING) *sigopts,
120 STACK_OF(CONF_VALUE) *policy, CA_DB *db,
cc696296
F
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,
0f113f3e
MC
124 int verbose, unsigned long certopt,
125 unsigned long nameopt, int default_op, int ext_copy);
0f113f3e
MC
126static 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,
cc696296
F
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,
0f113f3e
MC
132 CONF *conf, unsigned long certopt, unsigned long nameopt,
133 int default_op, int ext_copy, int selfsign);
f85b68cd
RL
134static int get_certificate_status(const char *ser_status, CA_DB *db);
135static int do_updatedb(CA_DB *db);
7c337e00 136static int check_time_format(const char *str);
06a79af2
F
137static int do_revoke(X509 *x509, CA_DB *db, REVINFO_TYPE rev_type,
138 const char *extval);
139static char *make_revocation_str(REVINFO_TYPE rev_type, const char *rev_arg);
140static int make_revoked(X509_REVOKED *rev, const char *str);
69b017f6 141static int old_entry_print(const ASN1_OBJECT *obj, const ASN1_STRING *str);
06a79af2 142static void write_new_certificate(BIO *bp, X509 *x, int output_der, int notext);
7e1b7485 143
0f113f3e 144static CONF *extconf = NULL;
0f113f3e
MC
145static int preserve = 0;
146static int msie_hack = 0;
35a99b63 147
7e1b7485
RS
148typedef 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,
2292c8e1 153 OPT_KEY, OPT_CERT, OPT_SELFSIGN, OPT_IN, OPT_OUT, OPT_OUTDIR, OPT_VFYOPT,
7e1b7485
RS
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,
ffb46830 158 OPT_RAND_SERIAL,
2292c8e1 159 OPT_R_ENUM, OPT_PROV_ENUM,
06a79af2
F
160 /* Do not change the order here; see related case statements below */
161 OPT_CRL_REASON, OPT_CRL_HOLD, OPT_CRL_COMPROMISE, OPT_CRL_CA_COMPROMISE
7e1b7485
RS
162} OPTION_CHOICE;
163
44c83ebd 164const OPTIONS ca_options[] = {
92de469f
RS
165 {OPT_HELP_STR, 1, '-', "Usage: %s [options] [certreq...]\n"},
166
5388f986 167 OPT_SECTION("General"),
7e1b7485
RS
168 {"help", OPT_HELP, '-', "Display this summary"},
169 {"verbose", OPT_VERBOSE, '-', "Verbose output during processing"},
5388f986
RS
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"),
7e1b7485
RS
186 {"config", OPT_CONFIG, 's', "A config file"},
187 {"name", OPT_NAME, 's', "The particular CA definition to use"},
d462b5ff 188 {"section", OPT_NAME, 's', "An alias for -name"},
5388f986
RS
189 {"policy", OPT_POLICY, 's', "The CA 'policy' to support"},
190
191 OPT_SECTION("Certificate"),
7e1b7485
RS
192 {"subj", OPT_SUBJ, 's', "Use arg instead of request's subject"},
193 {"utf8", OPT_UTF8, '-', "Input characters are UTF8 (default ASCII)"},
6755ff11 194 {"create_serial", OPT_CREATE_SERIAL, '-',
d6073e27 195 "If reading serial fails, create a new random serial"},
ffb46830
RS
196 {"rand_serial", OPT_RAND_SERIAL, '-',
197 "Always create a random serial; do not store it"},
7e1b7485
RS
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"},
5388f986
RS
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"},
5388f986
RS
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"),
7e1b7485 212 {"md", OPT_MD, 's', "md to use; one of md2, md5, sha or sha1"},
dd958974 213 {"keyfile", OPT_KEYFILE, 's', "Private key"},
7e1b7485 214 {"keyform", OPT_KEYFORM, 'f', "Private key file format (PEM or ENGINE)"},
16e1b281 215 {"passin", OPT_PASSIN, 's', "Input file pass phrase source"},
7e1b7485
RS
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"},
16e1b281 220 {"sigopt", OPT_SIGOPT, 's', "Signature parameter in n:v form"},
2292c8e1 221 {"vfyopt", OPT_SIGOPT, 's', "Verification parameter in n:v form"},
5388f986
RS
222
223 OPT_SECTION("Revocation"),
7e1b7485 224 {"gencrl", OPT_GENCRL, '-', "Generate a new CRL"},
b4b42ce6
F
225 {"valid", OPT_VALID, 's',
226 "Add a Valid(not-revoked) DB entry about a cert (given in file)"},
7e1b7485
RS
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)"},
6755ff11
MR
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"},
5388f986
RS
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
3ee1eac2 243 OPT_R_OPTIONS,
6bd4e3f2 244 OPT_PROV_OPTIONS,
92de469f
RS
245
246 OPT_PARAMETERS(),
247 {"certreq", 0, 0, "Certificate requests to be signed (optional)"},
7e1b7485
RS
248 {NULL}
249};
667ac4ec 250
7e1b7485 251int ca_main(int argc, char **argv)
0f113f3e 252{
fba13663 253 CONF *conf = NULL;
0f113f3e 254 ENGINE *e = NULL;
7e1b7485 255 BIGNUM *crlnumber = NULL, *serial = NULL;
0f113f3e 256 EVP_PKEY *pkey = NULL;
2d87ee68 257 BIO *in = NULL, *out = NULL, *Sout = NULL;
0f113f3e 258 ASN1_INTEGER *tmpser;
7e1b7485
RS
259 ASN1_TIME *tmptm;
260 CA_DB *db = NULL;
261 DB_ATTR db_attr;
0f113f3e 262 STACK_OF(CONF_VALUE) *attribs = NULL;
2292c8e1 263 STACK_OF(OPENSSL_STRING) *sigopts = NULL, *vfyopts = NULL;
7e1b7485
RS
264 STACK_OF(X509) *cert_sk = NULL;
265 X509_CRL *crl = NULL;
266 const EVP_MD *dgst = NULL;
fba13663 267 char *configfile = default_config_file, *section = NULL;
cc01d217 268 char *md = NULL, *policy = NULL, *keyfile = NULL;
cc696296
F
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;
7e1b7485 272 char *outdir = NULL, *outfile = NULL, *rev_arg = NULL, *ser_status = NULL;
cc696296
F
273 const char *serialfile = NULL, *subj = NULL;
274 char *prog, *startdate = NULL, *enddate = NULL;
3ee1eac2 275 char *dbfile = NULL, *f;
b5895815 276 char new_cert[PATH_MAX];
3a19b22a 277 char tmp[10 + 1] = "\0";
333b070e 278 char *const *pp;
7e1b7485 279 const char *p;
b5895815 280 size_t outdirlen = 0;
7e1b7485
RS
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;
aabbc24e 285 int rand_ser = 0, i, j, selfsign = 0, def_nid, def_ret;
cc01d217 286 long crldays = 0, crlhours = 0, crlsec = 0, days = 0;
b5c4209b 287 unsigned long chtype = MBSTRING_ASC, certopt = 0;
7e1b7485 288 X509 *x509 = NULL, *x509p = NULL, *x = NULL;
06a79af2 289 REVINFO_TYPE rev_type = REV_NONE;
7e1b7485
RS
290 X509_REVOKED *r = NULL;
291 OPTION_CHOICE o;
d02b48c6 292
7e1b7485
RS
293 prog = opt_init(argc, argv, ca_options);
294 while ((o = opt_next()) != OPT_EOF) {
295 switch (o) {
8bf78043
F
296 case OPT_EOF:
297 case OPT_ERR:
7e1b7485 298opthelp:
8bf78043
F
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;
ffb46830
RS
328 case OPT_RAND_SERIAL:
329 rand_ser = 1;
330 break;
7e1b7485 331 case OPT_CREATE_SERIAL:
0f113f3e 332 create_ser = 1;
7e1b7485
RS
333 break;
334 case OPT_MULTIVALUE_RDN:
0f113f3e 335 multirdn = 1;
7e1b7485
RS
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;
3ee1eac2
RS
362 case OPT_R_CASES:
363 if (!opt_rand(o))
364 goto end;
365 break;
6bd4e3f2
P
366 case OPT_PROV_CASES:
367 if (!opt_provider(o))
368 goto end;
369 break;
7e1b7485
RS
370 case OPT_KEY:
371 key = opt_arg();
372 break;
373 case OPT_CERT:
374 certfile = opt_arg();
375 break;
376 case OPT_SELFSIGN:
0f113f3e 377 selfsign = 1;
7e1b7485
RS
378 break;
379 case OPT_OUTDIR:
380 outdir = opt_arg();
381 break;
382 case OPT_SIGOPT:
383 if (sigopts == NULL)
0f113f3e 384 sigopts = sk_OPENSSL_STRING_new_null();
b5895815 385 if (sigopts == NULL || !sk_OPENSSL_STRING_push(sigopts, opt_arg()))
7e1b7485
RS
386 goto end;
387 break;
2292c8e1
RL
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;
7e1b7485 394 case OPT_NOTEXT:
0f113f3e 395 notext = 1;
7e1b7485
RS
396 break;
397 case OPT_BATCH:
0f113f3e 398 batch = 1;
7e1b7485
RS
399 break;
400 case OPT_PRESERVEDN:
0f113f3e 401 preserve = 1;
7e1b7485
RS
402 break;
403 case OPT_NOEMAILDN:
0f113f3e 404 email_dn = 0;
7e1b7485
RS
405 break;
406 case OPT_GENCRL:
0f113f3e 407 gencrl = 1;
7e1b7485
RS
408 break;
409 case OPT_MSIE_HACK:
0f113f3e 410 msie_hack = 1;
0f113f3e 411 break;
7e1b7485
RS
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:
0f113f3e 422 req = 1;
7e1b7485
RS
423 goto end_of_options;
424 case OPT_SS_CERT:
425 ss_cert_file = opt_arg();
0f113f3e 426 req = 1;
7e1b7485
RS
427 break;
428 case OPT_SPKAC:
429 spkac_file = opt_arg();
430 req = 1;
431 break;
432 case OPT_REVOKE:
433 infile = opt_arg();
0f113f3e 434 dorevoke = 1;
7e1b7485
RS
435 break;
436 case OPT_VALID:
437 infile = opt_arg();
0f113f3e 438 dorevoke = 2;
7e1b7485
RS
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:
0f113f3e 450 doupdatedb = 1;
7e1b7485
RS
451 break;
452 case OPT_CRLEXTS:
453 crl_ext = opt_arg();
454 break;
b5895815 455 case OPT_CRL_REASON: /* := REV_CRL_REASON */
7e1b7485 456 case OPT_CRL_HOLD:
7e1b7485 457 case OPT_CRL_COMPROMISE:
7e1b7485
RS
458 case OPT_CRL_CA_COMPROMISE:
459 rev_arg = opt_arg();
06a79af2 460 rev_type = (o - OPT_CRL_REASON) + REV_CRL_REASON;
7e1b7485
RS
461 break;
462 case OPT_ENGINE:
333b070e 463 e = setup_engine(opt_arg(), 0);
0f113f3e
MC
464 break;
465 }
0f113f3e 466 }
7e1b7485
RS
467end_of_options:
468 argc = opt_num_rest();
469 argv = opt_rest();
0f113f3e 470
0f113f3e 471 BIO_printf(bio_err, "Using configuration from %s\n", configfile);
2e66d3d6
HP
472
473 if ((conf = app_load_config(configfile)) == NULL)
474 goto end;
c821defc 475 if (configfile != default_config_file && !app_load_modules(conf))
2e66d3d6 476 goto end;
b5a93e22 477
0f113f3e 478 /* Lets get the config section we are using */
edbff8da
F
479 if (section == NULL
480 && (section = lookup_conf(conf, BASE_SECTION, ENV_DEFAULT_CA)) == NULL)
481 goto end;
0f113f3e 482
df364297
F
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");
0f113f3e 488
df364297
F
489 if (oid_bio == NULL) {
490 ERR_clear_error();
491 } else {
492 OBJ_create_objects(oid_bio);
493 BIO_free(oid_bio);
0f113f3e
MC
494 }
495 }
df364297
F
496 if (!add_oid_section(conf)) {
497 ERR_print_errors(bio_err);
498 goto end;
499 }
0f113f3e 500
3ee1eac2 501 app_RAND_load_conf(conf, BASE_SECTION);
0f113f3e
MC
502
503 f = NCONF_get_string(conf, section, STRING_MASK);
2234212c 504 if (f == NULL)
0f113f3e
MC
505 ERR_clear_error();
506
2234212c 507 if (f != NULL && !ASN1_STRING_set_default_mask_asc(f)) {
0f113f3e 508 BIO_printf(bio_err, "Invalid global string mask setting %s\n", f);
7e1b7485 509 goto end;
0f113f3e
MC
510 }
511
512 if (chtype != MBSTRING_UTF8) {
513 f = NCONF_get_string(conf, section, UTF8_IN);
2234212c 514 if (f == NULL)
0f113f3e 515 ERR_clear_error();
86885c28 516 else if (strcmp(f, "yes") == 0)
0f113f3e
MC
517 chtype = MBSTRING_UTF8;
518 }
519
520 db_attr.unique_subject = 1;
521 p = NCONF_get_string(conf, section, ENV_UNIQUE_SUBJECT);
2234212c 522 if (p != NULL)
0f113f3e 523 db_attr.unique_subject = parse_yesno(p, 1);
2234212c 524 else
0f113f3e 525 ERR_clear_error();
0f113f3e 526
8bf78043 527 /*****************************************************************/
0f113f3e
MC
528 /* report status of cert with serial number given on command line */
529 if (ser_status) {
edbff8da 530 dbfile = lookup_conf(conf, section, ENV_DATABASE);
d6073e27 531 if (dbfile == NULL)
7e1b7485 532 goto end;
edbff8da 533
0f113f3e
MC
534 db = load_index(dbfile, &db_attr);
535 if (db == NULL)
7e1b7485 536 goto end;
0f113f3e 537
a4107d73 538 if (index_index(db) <= 0)
7e1b7485 539 goto end;
0f113f3e
MC
540
541 if (get_certificate_status(ser_status, db) != 1)
542 BIO_printf(bio_err, "Error verifying serial %s!\n", ser_status);
7e1b7485 543 goto end;
0f113f3e
MC
544 }
545
8bf78043 546 /*****************************************************************/
0f113f3e
MC
547 /* we definitely need a private key, so let's get it */
548
edbff8da
F
549 if (keyfile == NULL
550 && (keyfile = lookup_conf(conf, section, ENV_PRIVATE_KEY)) == NULL)
7e1b7485 551 goto end;
edbff8da 552
2234212c 553 if (key == NULL) {
0f113f3e 554 free_key = 1;
7e1b7485 555 if (!app_passwd(passinarg, NULL, &key, NULL)) {
0f113f3e 556 BIO_printf(bio_err, "Error getting password\n");
7e1b7485 557 goto end;
0f113f3e
MC
558 }
559 }
7e1b7485 560 pkey = load_key(keyfile, keyformat, 0, key, e, "CA private key");
2234212c 561 if (key != NULL)
0f113f3e 562 OPENSSL_cleanse(key, strlen(key));
2234212c 563 if (pkey == NULL)
0f113f3e 564 /* load_key() has already printed an appropriate message */
7e1b7485 565 goto end;
0f113f3e 566
8bf78043 567 /*****************************************************************/
0f113f3e
MC
568 /* we need a certificate */
569 if (!selfsign || spkac_file || ss_cert_file || gencrl) {
edbff8da
F
570 if (certfile == NULL
571 && (certfile = lookup_conf(conf, section, ENV_CERTIFICATE)) == NULL)
7e1b7485 572 goto end;
edbff8da 573
a773b52a 574 x509 = load_cert(certfile, FORMAT_PEM, "CA certificate");
0f113f3e 575 if (x509 == NULL)
7e1b7485 576 goto end;
0f113f3e
MC
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");
7e1b7485 581 goto end;
0f113f3e
MC
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
2234212c 600 if (f != NULL) {
b5c4209b 601 if (!set_nameopt(f)) {
0f113f3e 602 BIO_printf(bio_err, "Invalid name options: \"%s\"\n", f);
7e1b7485 603 goto end;
0f113f3e
MC
604 }
605 default_op = 0;
f1cece55 606 }
0f113f3e
MC
607
608 f = NCONF_get_string(conf, section, ENV_CERTOPT);
609
2234212c 610 if (f != NULL) {
0f113f3e
MC
611 if (!set_cert_ex(&certopt, f)) {
612 BIO_printf(bio_err, "Invalid certificate options: \"%s\"\n", f);
7e1b7485 613 goto end;
0f113f3e
MC
614 }
615 default_op = 0;
2234212c 616 } else {
0f113f3e 617 ERR_clear_error();
2234212c 618 }
0f113f3e
MC
619
620 f = NCONF_get_string(conf, section, ENV_EXTCOPY);
621
2234212c 622 if (f != NULL) {
0f113f3e
MC
623 if (!set_ext_copy(&ext_copy, f)) {
624 BIO_printf(bio_err, "Invalid extension copy option: \"%s\"\n", f);
7e1b7485 625 goto end;
0f113f3e 626 }
2234212c 627 } else {
0f113f3e 628 ERR_clear_error();
2234212c 629 }
0f113f3e 630
8bf78043 631 /*****************************************************************/
0f113f3e
MC
632 /* lookup where to write new certificates */
633 if ((outdir == NULL) && (req)) {
634
edbff8da
F
635 outdir = NCONF_get_string(conf, section, ENV_NEW_CERTS_DIR);
636 if (outdir == NULL) {
0f113f3e
MC
637 BIO_printf(bio_err,
638 "there needs to be defined a directory for new certificate to be placed in\n");
7e1b7485 639 goto end;
0f113f3e 640 }
bc36ee62 641#ifndef OPENSSL_SYS_VMS
0f113f3e
MC
642 /*
643 * outdir is a directory spec, but access() for VMS demands a
b6d3cb54 644 * filename. We could use the DEC C routine to convert the
46d08509 645 * directory syntax to Unix, and give that to app_isdir,
b6d3cb54
RS
646 * but for now the fopen will catch the error if it's not a
647 * directory
0f113f3e 648 */
0f113f3e 649 if (app_isdir(outdir) <= 0) {
b6d3cb54 650 BIO_printf(bio_err, "%s: %s is not a directory\n", prog, outdir);
0f113f3e 651 perror(outdir);
7e1b7485 652 goto end;
0f113f3e 653 }
79875776 654#endif
0f113f3e
MC
655 }
656
8bf78043 657 /*****************************************************************/
0f113f3e 658 /* we need to load the database file */
edbff8da
F
659 dbfile = lookup_conf(conf, section, ENV_DATABASE);
660 if (dbfile == NULL)
7e1b7485 661 goto end;
edbff8da 662
0f113f3e
MC
663 db = load_index(dbfile, &db_attr);
664 if (db == NULL)
7e1b7485 665 goto end;
0f113f3e
MC
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);
7e1b7485 674 goto end;
0f113f3e
MC
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);
7e1b7485 679 goto end;
0f113f3e
MC
680 }
681 if (!check_time_format((char *)pp[DB_exp_date])) {
682 BIO_printf(bio_err, "entry %d: invalid expiry date\n", i + 1);
7e1b7485 683 goto end;
0f113f3e
MC
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);
7e1b7485 694 goto end;
0f113f3e 695 }
2fa45e6e 696 for ( ; *p; p++) {
18295f0c 697 if (!isxdigit(_UC(*p))) {
0f113f3e 698 BIO_printf(bio_err,
2fa45e6e
RS
699 "entry %d: bad char 0%o '%c' in serial number\n",
700 i + 1, *p, *p);
7e1b7485 701 goto end;
0f113f3e 702 }
0f113f3e
MC
703 }
704 }
705 if (verbose) {
7e1b7485 706 TXT_DB_write(bio_out, db->db);
0f113f3e
MC
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
a4107d73 712 if (index_index(db) <= 0)
7e1b7485 713 goto end;
0f113f3e 714
8bf78043 715 /*****************************************************************/
0f113f3e
MC
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");
7e1b7485 724 goto end;
0f113f3e
MC
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))
7e1b7485 730 goto end;
0f113f3e
MC
731
732 if (!rotate_index(dbfile, "new", "old"))
7e1b7485 733 goto end;
0f113f3e
MC
734
735 if (verbose)
b5895815 736 BIO_printf(bio_err, "Done. %d entries marked as expired\n", i);
0f113f3e
MC
737 }
738 }
739
cc01d217 740 /*****************************************************************/
0f113f3e
MC
741 /* Read extensions config file */
742 if (extfile) {
cc01d217 743 if ((extconf = app_load_config(extfile)) == NULL) {
0f113f3e 744 ret = 1;
7e1b7485 745 goto end;
0f113f3e
MC
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 */
edbff8da
F
753 if (extensions == NULL) {
754 extensions = NCONF_get_string(extconf, "default", "extensions");
755 if (extensions == NULL)
756 extensions = "default";
757 }
0f113f3e
MC
758 }
759
d303b9d8 760 /*****************************************************************/
0f113f3e 761 if (req || gencrl) {
69f6b3ce 762 if (spkac_file != NULL && outfile != NULL) {
25642ad2
RL
763 output_der = 1;
764 batch = 1;
765 }
0f113f3e
MC
766 }
767
aabbc24e
MC
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 */
f3021aca 775 dgst = EVP_md_null();
aabbc24e
MC
776 } else if (md == NULL
777 && (md = lookup_conf(conf, section, ENV_DEFAULT_MD)) == NULL) {
778 goto end;
f3021aca
MC
779 } else {
780 if (strcmp(md, "default") == 0) {
aabbc24e 781 if (def_ret <= 0) {
f3021aca
MC
782 BIO_puts(bio_err, "no default digest\n");
783 goto end;
784 }
785 md = (char *)OBJ_nid2sn(def_nid);
0f113f3e 786 }
0f113f3e 787
aabbc24e 788 if (!opt_md(md, &dgst))
f3021aca 789 goto end;
0f113f3e
MC
790 }
791
792 if (req) {
cdd202f2
F
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)
0f113f3e
MC
798 email_dn = 0;
799 }
800 if (verbose)
801 BIO_printf(bio_err, "message digest is %s\n",
cc9d6655 802 OBJ_nid2ln(EVP_MD_type(dgst)));
edbff8da
F
803 if (policy == NULL
804 && (policy = lookup_conf(conf, section, ENV_POLICY)) == NULL)
7e1b7485 805 goto end;
edbff8da 806
0f113f3e
MC
807 if (verbose)
808 BIO_printf(bio_err, "policy is %s\n", policy);
809
ffb46830
RS
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 }
0f113f3e 817
2234212c 818 if (extconf == NULL) {
0f113f3e
MC
819 /*
820 * no '-extfile' option, so we look for extensions in the main
821 * configuration file
822 */
2234212c 823 if (extensions == NULL) {
0f113f3e 824 extensions = NCONF_get_string(conf, section, ENV_EXTENSIONS);
2234212c 825 if (extensions == NULL)
0f113f3e
MC
826 ERR_clear_error();
827 }
2234212c 828 if (extensions != NULL) {
0f113f3e
MC
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;
7e1b7485 838 goto end;
0f113f3e
MC
839 }
840 }
841 }
842
843 if (startdate == NULL) {
b5895815 844 startdate = NCONF_get_string(conf, section, ENV_DEFAULT_STARTDATE);
0f113f3e
MC
845 if (startdate == NULL)
846 ERR_clear_error();
847 }
2234212c 848 if (startdate != NULL && !ASN1_TIME_set_string_X509(NULL, startdate)) {
0f113f3e
MC
849 BIO_printf(bio_err,
850 "start date is invalid, it should be YYMMDDHHMMSSZ or YYYYMMDDHHMMSSZ\n");
7e1b7485 851 goto end;
0f113f3e
MC
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 }
2234212c 861 if (enddate != NULL && !ASN1_TIME_set_string_X509(NULL, enddate)) {
0f113f3e
MC
862 BIO_printf(bio_err,
863 "end date is invalid, it should be YYMMDDHHMMSSZ or YYYYMMDDHHMMSSZ\n");
7e1b7485 864 goto end;
0f113f3e
MC
865 }
866
867 if (days == 0) {
868 if (!NCONF_get_number(conf, section, ENV_DEFAULT_DAYS, &days))
869 days = 0;
870 }
b5895815
F
871 if (enddate == NULL && days == 0) {
872 BIO_printf(bio_err, "cannot lookup how many days to certify for\n");
7e1b7485 873 goto end;
0f113f3e
MC
874 }
875
ffb46830
RS
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 }
0f113f3e
MC
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);
7e1b7485 900 goto end;
0f113f3e
MC
901 }
902
903 if ((cert_sk = sk_X509_new_null()) == NULL) {
904 BIO_printf(bio_err, "Memory allocation failure\n");
7e1b7485 905 goto end;
0f113f3e
MC
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,
b5c4209b 912 conf, verbose, certopt, get_nameopt(), default_op,
0f113f3e
MC
913 ext_copy);
914 if (j < 0)
7e1b7485 915 goto end;
0f113f3e
MC
916 if (j > 0) {
917 total_done++;
918 BIO_printf(bio_err, "\n");
919 if (!BN_add_word(serial, 1))
7e1b7485 920 goto end;
0f113f3e
MC
921 if (!sk_X509_push(cert_sk, x)) {
922 BIO_printf(bio_err, "Memory allocation failure\n");
7e1b7485 923 goto end;
0f113f3e 924 }
0f113f3e
MC
925 }
926 }
927 if (ss_cert_file != NULL) {
928 total++;
2292c8e1
RL
929 j = certify_cert(&x, ss_cert_file, pkey, x509, dgst,
930 sigopts, vfyopts, attribs,
0f113f3e
MC
931 db, serial, subj, chtype, multirdn, email_dn,
932 startdate, enddate, days, batch, extensions,
b5c4209b 933 conf, verbose, certopt, get_nameopt(), default_op,
a773b52a 934 ext_copy);
0f113f3e 935 if (j < 0)
7e1b7485 936 goto end;
0f113f3e
MC
937 if (j > 0) {
938 total_done++;
939 BIO_printf(bio_err, "\n");
940 if (!BN_add_word(serial, 1))
7e1b7485 941 goto end;
0f113f3e
MC
942 if (!sk_X509_push(cert_sk, x)) {
943 BIO_printf(bio_err, "Memory allocation failure\n");
7e1b7485 944 goto end;
0f113f3e
MC
945 }
946 }
947 }
948 if (infile != NULL) {
949 total++;
2292c8e1
RL
950 j = certify(&x, infile, pkey, x509p, dgst, sigopts, vfyopts,
951 attribs, db,
0f113f3e
MC
952 serial, subj, chtype, multirdn, email_dn, startdate,
953 enddate, days, batch, extensions, conf, verbose,
2292c8e1 954 certopt, get_nameopt(), default_op, ext_copy, selfsign);
0f113f3e 955 if (j < 0)
7e1b7485 956 goto end;
0f113f3e
MC
957 if (j > 0) {
958 total_done++;
959 BIO_printf(bio_err, "\n");
960 if (!BN_add_word(serial, 1))
7e1b7485 961 goto end;
0f113f3e
MC
962 if (!sk_X509_push(cert_sk, x)) {
963 BIO_printf(bio_err, "Memory allocation failure\n");
7e1b7485 964 goto end;
0f113f3e
MC
965 }
966 }
967 }
968 for (i = 0; i < argc; i++) {
969 total++;
2292c8e1
RL
970 j = certify(&x, argv[i], pkey, x509p, dgst, sigopts, vfyopts,
971 attribs, db,
0f113f3e
MC
972 serial, subj, chtype, multirdn, email_dn, startdate,
973 enddate, days, batch, extensions, conf, verbose,
2292c8e1 974 certopt, get_nameopt(), default_op, ext_copy, selfsign);
0f113f3e 975 if (j < 0)
7e1b7485 976 goto end;
0f113f3e
MC
977 if (j > 0) {
978 total_done++;
979 BIO_printf(bio_err, "\n");
aebd0e5c
PK
980 if (!BN_add_word(serial, 1)) {
981 X509_free(x);
7e1b7485 982 goto end;
aebd0e5c 983 }
0f113f3e
MC
984 if (!sk_X509_push(cert_sk, x)) {
985 BIO_printf(bio_err, "Memory allocation failure\n");
aebd0e5c 986 X509_free(x);
7e1b7485 987 goto end;
0f113f3e
MC
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);
3a19b22a
F
1002 tmp[0] = '\0';
1003 if (fgets(tmp, sizeof(tmp), stdin) == NULL) {
b5895815 1004 BIO_printf(bio_err, "CERTIFICATION CANCELED: I/O error\n");
0f113f3e 1005 ret = 0;
7e1b7485 1006 goto end;
0f113f3e 1007 }
3a19b22a 1008 if (tmp[0] != 'y' && tmp[0] != 'Y') {
0f113f3e
MC
1009 BIO_printf(bio_err, "CERTIFICATION CANCELED\n");
1010 ret = 0;
7e1b7485 1011 goto end;
0f113f3e
MC
1012 }
1013 }
1014
1015 BIO_printf(bio_err, "Write out database with %d new entries\n",
1016 sk_X509_num(cert_sk));
1017
aeec793b 1018 if (serialfile != NULL
ffb46830 1019 && !save_serial(serialfile, "new", serial, NULL))
7e1b7485 1020 goto end;
0f113f3e
MC
1021
1022 if (!save_index(dbfile, "new", db))
7e1b7485 1023 goto end;
0f113f3e
MC
1024 }
1025
b5895815
F
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
0f113f3e
MC
1031 if (verbose)
1032 BIO_printf(bio_err, "writing new certificates\n");
b5895815 1033
0f113f3e 1034 for (i = 0; i < sk_X509_num(cert_sk); i++) {
2d87ee68 1035 BIO *Cout = NULL;
0db1fb3f
F
1036 X509 *xi = sk_X509_value(cert_sk, i);
1037 ASN1_INTEGER *serialNumber = X509_get_serialNumber(xi);
b5895815
F
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;
0f113f3e 1042
b5895815 1043 if (outdirlen + filen_len > PATH_MAX) {
0f113f3e 1044 BIO_printf(bio_err, "certificate file name too long\n");
7e1b7485 1045 goto end;
0f113f3e
MC
1046 }
1047
b5895815
F
1048 if (snl > 0) {
1049 static const char HEX_DIGITS[] = "0123456789ABCDEF";
7d7d2cbc 1050
b5895815
F
1051 for (j = 0; j < snl; j++, psn++) {
1052 *n++ = HEX_DIGITS[*psn >> 4];
1053 *n++ = HEX_DIGITS[*psn & 0x0F];
0f113f3e
MC
1054 }
1055 } else {
1056 *(n++) = '0';
1057 *(n++) = '0';
1058 }
1059 *(n++) = '.';
1060 *(n++) = 'p';
1061 *(n++) = 'e';
1062 *(n++) = 'm';
b5895815 1063 *n = '\0'; /* closing new_cert */
0f113f3e 1064 if (verbose)
3a19b22a 1065 BIO_printf(bio_err, "writing %s\n", new_cert);
0f113f3e 1066
63871d9f
RL
1067 Sout = bio_open_default(outfile, 'w',
1068 output_der ? FORMAT_ASN1 : FORMAT_TEXT);
1069 if (Sout == NULL)
1070 goto end;
1071
3a19b22a 1072 Cout = BIO_new_file(new_cert, "w");
7e1b7485 1073 if (Cout == NULL) {
3a19b22a 1074 perror(new_cert);
7e1b7485 1075 goto end;
0f113f3e 1076 }
0db1fb3f
F
1077 write_new_certificate(Cout, xi, 0, notext);
1078 write_new_certificate(Sout, xi, output_der, notext);
2d87ee68 1079 BIO_free_all(Cout);
63871d9f
RL
1080 BIO_free_all(Sout);
1081 Sout = NULL;
0f113f3e
MC
1082 }
1083
1084 if (sk_X509_num(cert_sk)) {
1085 /* Rename the database and the serial file */
aeec793b
DMSP
1086 if (serialfile != NULL
1087 && !rotate_serial(serialfile, "new", "old"))
7e1b7485 1088 goto end;
0f113f3e
MC
1089
1090 if (!rotate_index(dbfile, "new", "old"))
7e1b7485 1091 goto end;
0f113f3e
MC
1092
1093 BIO_printf(bio_err, "Data Base Updated\n");
1094 }
1095 }
1096
8bf78043 1097 /*****************************************************************/
0f113f3e
MC
1098 if (gencrl) {
1099 int crl_v2 = 0;
2234212c 1100 if (crl_ext == NULL) {
0f113f3e 1101 crl_ext = NCONF_get_string(conf, section, ENV_CRLEXT);
2234212c 1102 if (crl_ext == NULL)
0f113f3e
MC
1103 ERR_clear_error();
1104 }
2234212c 1105 if (crl_ext != NULL) {
0f113f3e
MC
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,
b5895815 1112 "Error Loading CRL extension section %s\n", crl_ext);
0f113f3e 1113 ret = 1;
7e1b7485 1114 goto end;
0f113f3e
MC
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");
7e1b7485 1122 goto end;
0f113f3e
MC
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");
7e1b7485 1137 goto end;
0f113f3e
MC
1138 }
1139
1140 if (verbose)
1141 BIO_printf(bio_err, "making CRL\n");
1142 if ((crl = X509_CRL_new()) == NULL)
7e1b7485 1143 goto end;
0f113f3e 1144 if (!X509_CRL_set_issuer_name(crl, X509_get_subject_name(x509)))
7e1b7485 1145 goto end;
0f113f3e
MC
1146
1147 tmptm = ASN1_TIME_new();
bc2a0dd2
MC
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) {
0f113f3e 1153 BIO_puts(bio_err, "error setting CRL nextUpdate\n");
bc2a0dd2 1154 ASN1_TIME_free(tmptm);
7e1b7485 1155 goto end;
0f113f3e 1156 }
568ce3a5 1157 X509_CRL_set1_nextUpdate(crl, tmptm);
0f113f3e
MC
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)
7e1b7485 1165 goto end;
0f113f3e
MC
1166 j = make_revoked(r, pp[DB_rev_date]);
1167 if (!j)
7e1b7485 1168 goto end;
0f113f3e
MC
1169 if (j == 2)
1170 crl_v2 = 1;
1171 if (!BN_hex2bn(&serial, pp[DB_serial]))
7e1b7485 1172 goto end;
0f113f3e
MC
1173 tmpser = BN_to_ASN1_INTEGER(serial, NULL);
1174 BN_free(serial);
1175 serial = NULL;
1176 if (!tmpser)
7e1b7485 1177 goto end;
0f113f3e
MC
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
2234212c 1195 if (crl_ext != NULL || crlnumberfile != NULL) {
0f113f3e
MC
1196 X509V3_CTX crlctx;
1197 X509V3_set_ctx(&crlctx, x509, NULL, NULL, crl, 0);
1198 X509V3_set_nconf(&crlctx, conf);
1199
2234212c 1200 if (crl_ext != NULL)
0f113f3e 1201 if (!X509V3_EXT_CRL_add_nconf(conf, &crlctx, crl_ext, crl))
7e1b7485 1202 goto end;
0f113f3e
MC
1203 if (crlnumberfile != NULL) {
1204 tmpser = BN_to_ASN1_INTEGER(crlnumber, NULL);
1205 if (!tmpser)
7e1b7485 1206 goto end;
0f113f3e
MC
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))
7e1b7485 1211 goto end;
0f113f3e
MC
1212 }
1213 }
2234212c 1214 if (crl_ext != NULL || crl_v2) {
0f113f3e 1215 if (!X509_CRL_set_version(crl, 1))
7e1b7485 1216 goto end; /* version 2 CRL */
0f113f3e
MC
1217 }
1218
1219 /* we have a CRL number that need updating */
aeec793b
DMSP
1220 if (crlnumberfile != NULL
1221 && !save_serial(crlnumberfile, "new", crlnumber, NULL))
1222 goto end;
0f113f3e 1223
23a1d5e9
RS
1224 BN_free(crlnumber);
1225 crlnumber = NULL;
0f113f3e 1226
7e1b7485
RS
1227 if (!do_X509_CRL_sign(crl, pkey, dgst, sigopts))
1228 goto end;
0f113f3e 1229
63871d9f
RL
1230 Sout = bio_open_default(outfile, 'w',
1231 output_der ? FORMAT_ASN1 : FORMAT_TEXT);
1232 if (Sout == NULL)
1233 goto end;
1234
0f113f3e
MC
1235 PEM_write_bio_X509_CRL(Sout, crl);
1236
aeec793b
DMSP
1237 /* Rename the crlnumber file */
1238 if (crlnumberfile != NULL
1239 && !rotate_serial(crlnumberfile, "new", "old"))
1240 goto end;
0f113f3e
MC
1241
1242 }
8bf78043 1243 /*****************************************************************/
0f113f3e
MC
1244 if (dorevoke) {
1245 if (infile == NULL) {
1246 BIO_printf(bio_err, "no input files\n");
7e1b7485 1247 goto end;
0f113f3e
MC
1248 } else {
1249 X509 *revcert;
a773b52a 1250 revcert = load_cert(infile, FORMAT_PEM, infile);
0f113f3e 1251 if (revcert == NULL)
7e1b7485 1252 goto end;
0f113f3e 1253 if (dorevoke == 2)
06a79af2 1254 rev_type = REV_VALID;
0f113f3e
MC
1255 j = do_revoke(revcert, db, rev_type, rev_arg);
1256 if (j <= 0)
7e1b7485 1257 goto end;
0f113f3e
MC
1258 X509_free(revcert);
1259
1260 if (!save_index(dbfile, "new", db))
7e1b7485 1261 goto end;
0f113f3e
MC
1262
1263 if (!rotate_index(dbfile, "new", "old"))
7e1b7485 1264 goto end;
0f113f3e
MC
1265
1266 BIO_printf(bio_err, "Data Base Updated\n");
1267 }
1268 }
0f113f3e 1269 ret = 0;
ffb46830 1270
7e1b7485 1271 end:
ffb46830
RS
1272 if (ret)
1273 ERR_print_errors(bio_err);
0f113f3e
MC
1274 BIO_free_all(Sout);
1275 BIO_free_all(out);
1276 BIO_free_all(in);
222561fe 1277 sk_X509_pop_free(cert_sk, X509_free);
0f113f3e 1278
25aaa98a 1279 if (free_key)
0f113f3e
MC
1280 OPENSSL_free(key);
1281 BN_free(serial);
1282 BN_free(crlnumber);
1283 free_index(db);
25aaa98a 1284 sk_OPENSSL_STRING_free(sigopts);
2292c8e1 1285 sk_OPENSSL_STRING_free(vfyopts);
0f113f3e 1286 EVP_PKEY_free(pkey);
222561fe 1287 X509_free(x509);
0f113f3e
MC
1288 X509_CRL_free(crl);
1289 NCONF_free(conf);
1290 NCONF_free(extconf);
dd1abd44 1291 release_engine(e);
26a7d938 1292 return ret;
0f113f3e 1293}
d02b48c6 1294
edbff8da 1295static char *lookup_conf(const CONF *conf, const char *section, const char *tag)
0f113f3e 1296{
edbff8da
F
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;
0f113f3e 1301}
d02b48c6 1302
cc696296 1303static int certify(X509 **xret, const char *infile, EVP_PKEY *pkey, X509 *x509,
2292c8e1
RL
1304 const EVP_MD *dgst,
1305 STACK_OF(OPENSSL_STRING) *sigopts,
1306 STACK_OF(OPENSSL_STRING) *vfyopts,
0f113f3e 1307 STACK_OF(CONF_VALUE) *policy, CA_DB *db,
cc696296
F
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,
0f113f3e 1312 int verbose, unsigned long certopt, unsigned long nameopt,
2292c8e1 1313 int default_op, int ext_copy, int selfsign)
0f113f3e
MC
1314{
1315 X509_REQ *req = NULL;
1316 BIO *in = NULL;
1317 EVP_PKEY *pktmp = NULL;
1318 int ok = -1, i;
1319
7e1b7485
RS
1320 in = BIO_new_file(infile, "r");
1321 if (in == NULL) {
1322 ERR_print_errors(bio_err);
1323 goto end;
0f113f3e
MC
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);
7e1b7485 1328 goto end;
0f113f3e
MC
1329 }
1330 if (verbose)
b5c4209b 1331 X509_REQ_print_ex(bio_err, req, nameopt, X509_FLAG_COMPAT);
0f113f3e
MC
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;
7e1b7485 1339 goto end;
0f113f3e 1340 }
c5137473 1341 if ((pktmp = X509_REQ_get0_pubkey(req)) == NULL) {
0f113f3e 1342 BIO_printf(bio_err, "error unpacking public key\n");
7e1b7485 1343 goto end;
0f113f3e 1344 }
2292c8e1 1345 i = do_X509_REQ_verify(req, pktmp, vfyopts);
c5137473 1346 pktmp = NULL;
0f113f3e
MC
1347 if (i < 0) {
1348 ok = 0;
1349 BIO_printf(bio_err, "Signature verification problems....\n");
1350 ERR_print_errors(bio_err);
7e1b7485 1351 goto end;
0f113f3e
MC
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);
7e1b7485 1358 goto end;
2234212c 1359 } else {
0f113f3e 1360 BIO_printf(bio_err, "Signature ok\n");
2234212c 1361 }
0f113f3e
MC
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
7e1b7485 1368 end:
222561fe 1369 X509_REQ_free(req);
ca3a82c3 1370 BIO_free(in);
26a7d938 1371 return ok;
0f113f3e 1372}
d02b48c6 1373
cc696296 1374static int certify_cert(X509 **xret, const char *infile, EVP_PKEY *pkey, X509 *x509,
2292c8e1
RL
1375 const EVP_MD *dgst,
1376 STACK_OF(OPENSSL_STRING) *sigopts,
1377 STACK_OF(OPENSSL_STRING) *vfyopts,
0f113f3e 1378 STACK_OF(CONF_VALUE) *policy, CA_DB *db,
cc696296
F
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,
0f113f3e 1382 CONF *lconf, int verbose, unsigned long certopt,
a773b52a 1383 unsigned long nameopt, int default_op, int ext_copy)
0f113f3e
MC
1384{
1385 X509 *req = NULL;
1386 X509_REQ *rreq = NULL;
1387 EVP_PKEY *pktmp = NULL;
1388 int ok = -1, i;
1389
a773b52a 1390 if ((req = load_cert(infile, FORMAT_PEM, infile)) == NULL)
7e1b7485 1391 goto end;
0f113f3e
MC
1392 if (verbose)
1393 X509_print(bio_err, req);
1394
1395 BIO_printf(bio_err, "Check that the request matches the signature\n");
1396
c01ff880 1397 if ((pktmp = X509_get0_pubkey(req)) == NULL) {
0f113f3e 1398 BIO_printf(bio_err, "error unpacking public key\n");
7e1b7485 1399 goto end;
0f113f3e 1400 }
2292c8e1 1401 i = do_X509_verify(req, pktmp, vfyopts);
0f113f3e
MC
1402 if (i < 0) {
1403 ok = 0;
1404 BIO_printf(bio_err, "Signature verification problems....\n");
7e1b7485 1405 goto end;
0f113f3e
MC
1406 }
1407 if (i == 0) {
1408 ok = 0;
1409 BIO_printf(bio_err, "Signature did not match the certificate\n");
7e1b7485 1410 goto end;
2234212c 1411 } else {
0f113f3e 1412 BIO_printf(bio_err, "Signature ok\n");
2234212c 1413 }
0f113f3e 1414
f8547f62 1415 if ((rreq = X509_to_X509_REQ(req, NULL, NULL)) == NULL)
7e1b7485 1416 goto end;
0f113f3e
MC
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
7e1b7485 1423 end:
222561fe
RS
1424 X509_REQ_free(rreq);
1425 X509_free(req);
26a7d938 1426 return ok;
0f113f3e
MC
1427}
1428
1429static 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,
cc696296
F
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,
0f113f3e
MC
1435 CONF *lconf, unsigned long certopt, unsigned long nameopt,
1436 int default_op, int ext_copy, int selfsign)
1437{
8cc86b81
DDO
1438 const X509_NAME *name = NULL;
1439 X509_NAME *CAname = NULL, *subject = NULL;
568ce3a5 1440 const ASN1_TIME *tm;
0f113f3e
MC
1441 ASN1_STRING *str, *str2;
1442 ASN1_OBJECT *obj;
1443 X509 *ret = NULL;
07a38fd2 1444 X509_NAME_ENTRY *ne, *tne;
0f113f3e
MC
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
0f113f3e
MC
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);
7e1b7485 1462 goto end;
0f113f3e
MC
1463 }
1464 X509_REQ_set_subject_name(req, n);
0f113f3e
MC
1465 X509_NAME_free(n);
1466 }
1467
1468 if (default_op)
b5895815 1469 BIO_printf(bio_err, "The Subject's Distinguished Name is as follows\n");
0f113f3e
MC
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);
07a38fd2 1476 nid = OBJ_obj2nid(obj);
0f113f3e
MC
1477
1478 if (msie_hack) {
1479 /* assume all type should be strings */
0f113f3e
MC
1480
1481 if (str->type == V_ASN1_UNIVERSALSTRING)
1482 ASN1_UNIVERSALSTRING_to_string(str);
1483
07a38fd2 1484 if (str->type == V_ASN1_IA5STRING && nid != NID_pkcs9_emailAddress)
0f113f3e
MC
1485 str->type = V_ASN1_T61STRING;
1486
07a38fd2
F
1487 if (nid == NID_pkcs9_emailAddress
1488 && str->type == V_ASN1_PRINTABLESTRING)
0f113f3e
MC
1489 str->type = V_ASN1_IA5STRING;
1490 }
1491
1492 /* If no EMAIL is wanted in the subject */
07a38fd2 1493 if (nid == NID_pkcs9_emailAddress && !email_dn)
0f113f3e
MC
1494 continue;
1495
1496 /* check some things */
07a38fd2 1497 if (nid == NID_pkcs9_emailAddress && str->type != V_ASN1_IA5STRING) {
0f113f3e
MC
1498 BIO_printf(bio_err,
1499 "\nemailAddress type needs to be of type IA5STRING\n");
7e1b7485 1500 goto end;
0f113f3e 1501 }
07a38fd2 1502 if (str->type != V_ASN1_BMPSTRING && str->type != V_ASN1_UTF8STRING) {
0f113f3e 1503 j = ASN1_PRINTABLE_type(str->data, str->length);
07a38fd2
F
1504 if ((j == V_ASN1_T61STRING && str->type != V_ASN1_T61STRING) ||
1505 (j == V_ASN1_IA5STRING && str->type == V_ASN1_PRINTABLESTRING))
1506 {
0f113f3e
MC
1507 BIO_printf(bio_err,
1508 "\nThe string contains characters that are illegal for the ASN.1 type\n");
7e1b7485 1509 goto end;
0f113f3e
MC
1510 }
1511 }
1512
1513 if (default_op)
ecf3a1fb 1514 old_entry_print(obj, str);
0f113f3e
MC
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");
7e1b7485 1520 goto end;
0f113f3e
MC
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
a8d8e06b 1527 CAname = X509_NAME_dup(X509_get_subject_name(x509));
0f113f3e 1528 if (CAname == NULL)
7e1b7485 1529 goto end;
0f113f3e
MC
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);
7e1b7485 1538 goto end;
0f113f3e
MC
1539 }
1540 obj = OBJ_nid2obj(j);
1541
1542 last = -1;
1543 for (;;) {
07a38fd2
F
1544 X509_NAME_ENTRY *push = NULL;
1545
0f113f3e
MC
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. */
0f113f3e
MC
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);
7e1b7485 1566 goto end;
2234212c 1567 } else {
0f113f3e 1568 push = tne;
2234212c 1569 }
0f113f3e
MC
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);
7e1b7485 1577 goto end;
0f113f3e
MC
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,
fefa4d55 1586 "The %s field does not exist in the CA certificate,\n"
b5895815 1587 "the 'policy' is misconfigured\n", cv->name);
7e1b7485 1588 goto end;
0f113f3e
MC
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,
fefa4d55
F
1600 "The %s field is different between\n"
1601 "CA certificate (%s) and the request (%s)\n",
0f113f3e
MC
1602 cv->name,
1603 ((str2 == NULL) ? "NULL" : (char *)str2->data),
1604 ((str == NULL) ? "NULL" : (char *)str->data));
7e1b7485 1605 goto end;
0f113f3e
MC
1606 }
1607 } else {
1608 BIO_printf(bio_err,
1609 "%s:invalid type in 'policy' configuration\n",
1610 cv->value);
7e1b7485 1611 goto end;
0f113f3e
MC
1612 }
1613
1614 if (push != NULL) {
1615 if (!X509_NAME_add_entry(subject, push, -1, 0)) {
0f113f3e 1616 BIO_printf(bio_err, "Memory allocation failure\n");
7e1b7485 1617 goto end;
0f113f3e
MC
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)
7e1b7485 1630 goto end;
0f113f3e
MC
1631 }
1632
0f113f3e
MC
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)
7e1b7485 1639 goto end;
d02b48c6
RE
1640
1641#ifdef X509_V3
0f113f3e
MC
1642 /* Make it an X509 v3 certificate. */
1643 if (!X509_set_version(ret, 2))
7e1b7485 1644 goto end;
d02b48c6
RE
1645#endif
1646
22293ea1 1647 if (BN_to_ASN1_INTEGER(serial, X509_get_serialNumber(ret)) == NULL)
7e1b7485 1648 goto end;
0f113f3e
MC
1649 if (selfsign) {
1650 if (!X509_set_issuer_name(ret, subject))
7e1b7485 1651 goto end;
0f113f3e
MC
1652 } else {
1653 if (!X509_set_issuer_name(ret, X509_get_subject_name(x509)))
7e1b7485 1654 goto end;
0f113f3e
MC
1655 }
1656
dc047d31
DSH
1657 if (!set_cert_times(ret, startdate, enddate, days))
1658 goto end;
0f113f3e 1659
dc047d31 1660 if (enddate != NULL) {
0f113f3e 1661 int tdays;
0d502c35
MC
1662
1663 if (!ASN1_TIME_diff(&tdays, NULL, NULL, X509_get0_notAfter(ret)))
1664 goto end;
0f113f3e
MC
1665 days = tdays;
1666 }
1667
1668 if (!X509_set_subject_name(ret, subject))
7e1b7485 1669 goto end;
0f113f3e 1670
6e863f07 1671 pktmp = X509_REQ_get0_pubkey(req);
0f113f3e 1672 i = X509_set_pubkey(ret, pktmp);
0f113f3e 1673 if (!i)
7e1b7485 1674 goto end;
0f113f3e
MC
1675
1676 /* Lets add the extensions, if there are any */
1677 if (ext_sect) {
1678 X509V3_CTX ctx;
0f113f3e
MC
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
2234212c 1686 if (extconf != NULL) {
0f113f3e
MC
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);
7e1b7485 1702 goto end;
0f113f3e
MC
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);
7e1b7485 1716 goto end;
0f113f3e
MC
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);
7e1b7485 1730 goto end;
0f113f3e
MC
1731 }
1732
4881d849
RL
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
2cedf794
MC
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 }
991f0355 1759 i = -1;
2cedf794
MC
1760 while ((i = X509_NAME_get_index_by_NID(dn_subject,
1761 NID_pkcs9_emailAddress,
991f0355
F
1762 i)) >= 0) {
1763 tmpne = X509_NAME_delete_entry(dn_subject, i--);
2cedf794
MC
1764 X509_NAME_ENTRY_free(tmpne);
1765 }
1766
1767 if (!X509_set_subject_name(ret, dn_subject)) {
1768 X509_NAME_free(dn_subject);
7e1b7485 1769 goto end;
2cedf794
MC
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
5af88441
MC
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
2cedf794
MC
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;
0f113f3e
MC
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 ");
568ce3a5 1871 ASN1_TIME_print(bio_err, X509_get0_notAfter(ret));
0f113f3e
MC
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';
3a19b22a 1881 if (fgets(buf, sizeof(buf), stdin) == NULL) {
0f113f3e
MC
1882 BIO_printf(bio_err,
1883 "CERTIFICATE WILL NOT BE CERTIFIED: I/O error\n");
1884 ok = 0;
7e1b7485 1885 goto end;
0f113f3e 1886 }
3a19b22a 1887 if (!(buf[0] == 'y' || buf[0] == 'Y')) {
0f113f3e
MC
1888 BIO_printf(bio_err, "CERTIFICATE WILL NOT BE CERTIFIED\n");
1889 ok = 0;
7e1b7485 1890 goto end;
0f113f3e
MC
1891 }
1892 }
1893
c01ff880 1894 pktmp = X509_get0_pubkey(ret);
0f113f3e
MC
1895 if (EVP_PKEY_missing_parameters(pktmp) &&
1896 !EVP_PKEY_missing_parameters(pkey))
1897 EVP_PKEY_copy_parameters(pktmp, pkey);
0f113f3e 1898
7e1b7485
RS
1899 if (!do_X509_sign(ret, pkey, dgst, sigopts))
1900 goto end;
0f113f3e 1901
06a79af2 1902 /* We now just add it to the database as DB_TYPE_VAL('V') */
7644a9ae 1903 row[DB_type] = OPENSSL_strdup("V");
568ce3a5 1904 tm = X509_get0_notAfter(ret);
68dc6824 1905 row[DB_exp_date] = app_malloc(tm->length + 1, "row expdate");
0f113f3e
MC
1906 memcpy(row[DB_exp_date], tm->data, tm->length);
1907 row[DB_exp_date][tm->length] = '\0';
0f113f3e 1908 row[DB_rev_date] = NULL;
7644a9ae 1909 row[DB_file] = OPENSSL_strdup("unknown");
0f113f3e
MC
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");
7e1b7485 1913 goto end;
0f113f3e 1914 }
0f113f3e 1915
b4faea50 1916 irow = app_malloc(sizeof(*irow) * (DB_NUMBER + 1), "row space");
9ad52c56 1917 for (i = 0; i < DB_NUMBER; i++)
0f113f3e 1918 irow[i] = row[i];
0f113f3e
MC
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);
7e1b7485 1924 goto end;
0f113f3e 1925 }
9ad52c56 1926 irow = NULL;
0f113f3e 1927 ok = 1;
7e1b7485 1928 end:
01985122 1929 if (ok != 1) {
9ad52c56
BE
1930 for (i = 0; i < DB_NUMBER; i++)
1931 OPENSSL_free(row[i]);
9ad52c56 1932 }
01985122 1933 OPENSSL_free(irow);
0f113f3e 1934
222561fe
RS
1935 X509_NAME_free(CAname);
1936 X509_NAME_free(subject);
222561fe
RS
1937 if (ok <= 0)
1938 X509_free(ret);
1939 else
0f113f3e 1940 *xret = ret;
26a7d938 1941 return ok;
0f113f3e
MC
1942}
1943
b5895815 1944static void write_new_certificate(BIO *bp, X509 *x, int output_der, int notext)
0f113f3e
MC
1945{
1946
1947 if (output_der) {
1948 (void)i2d_X509_bio(bp, x);
1949 return;
1950 }
0f113f3e
MC
1951 if (!notext)
1952 X509_print(bp, x);
1953 PEM_write_bio_X509(bp, x);
1954}
1955
cc696296 1956static int certify_spkac(X509 **xret, const char *infile, EVP_PKEY *pkey,
0f113f3e
MC
1957 X509 *x509, const EVP_MD *dgst,
1958 STACK_OF(OPENSSL_STRING) *sigopts,
1959 STACK_OF(CONF_VALUE) *policy, CA_DB *db,
cc696296
F
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,
0f113f3e
MC
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;
0f113f3e
MC
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);
7e1b7485 1988 goto end;
0f113f3e
MC
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);
7e1b7485 1994 goto end;
0f113f3e
MC
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);
7e1b7485 2007 goto end;
0f113f3e
MC
2008 }
2009
2010 /*
2011 * Build up the subject name set.
2012 */
124055a9 2013 n = X509_REQ_get_subject_name(req);
0f113f3e
MC
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);
7e1b7485 2040 goto end;
0f113f3e
MC
2041 }
2042 }
2043 continue;
2044 }
2045
2046 if (!X509_NAME_add_entry_by_NID(n, nid, chtype,
2047 (unsigned char *)buf, -1, -1, 0))
7e1b7485 2048 goto end;
0f113f3e
MC
2049 }
2050 if (spki == NULL) {
2051 BIO_printf(bio_err, "Netscape SPKAC structure not found in %s\n",
2052 infile);
7e1b7485 2053 goto end;
0f113f3e
MC
2054 }
2055
2056 /*
2057 * Now extract the key from the SPKI structure.
2058 */
2059
b5895815 2060 BIO_printf(bio_err, "Check that the SPKAC request matches the signature\n");
0f113f3e
MC
2061
2062 if ((pktmp = NETSCAPE_SPKI_get_pubkey(spki)) == NULL) {
2063 BIO_printf(bio_err, "error unpacking SPKAC public key\n");
7e1b7485 2064 goto end;
0f113f3e
MC
2065 }
2066
2067 j = NETSCAPE_SPKI_verify(spki, pktmp);
2068 if (j <= 0) {
f6c006ea 2069 EVP_PKEY_free(pktmp);
0f113f3e
MC
2070 BIO_printf(bio_err,
2071 "signature verification failed on SPKAC public key\n");
7e1b7485 2072 goto end;
0f113f3e
MC
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);
7e1b7485 2082 end:
222561fe 2083 X509_REQ_free(req);
25aaa98a
RS
2084 CONF_free(parms);
2085 NETSCAPE_SPKI_free(spki);
222561fe 2086 X509_NAME_ENTRY_free(ne);
0f113f3e 2087
26a7d938 2088 return ok;
0f113f3e 2089}
d02b48c6 2090
7c337e00 2091static int check_time_format(const char *str)
0f113f3e
MC
2092{
2093 return ASN1_TIME_set_string(NULL, str);
2094}
d02b48c6 2095
06a79af2
F
2096static int do_revoke(X509 *x509, CA_DB *db, REVINFO_TYPE rev_type,
2097 const char *value)
0f113f3e 2098{
568ce3a5 2099 const ASN1_TIME *tm = NULL;
0f113f3e
MC
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)
7e1b7485 2110 goto end;
0f113f3e 2111 if (BN_is_zero(bn))
7644a9ae 2112 row[DB_serial] = OPENSSL_strdup("00");
0f113f3e
MC
2113 else
2114 row[DB_serial] = BN_bn2hex(bn);
2115 BN_free(bn);
5af88441
MC
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 }
0f113f3e
MC
2121 if ((row[DB_name] == NULL) || (row[DB_serial] == NULL)) {
2122 BIO_printf(bio_err, "Memory allocation failure\n");
7e1b7485 2123 goto end;
0f113f3e
MC
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
06a79af2 2135 /* We now just add it to the database as DB_TYPE_REV('V') */
7644a9ae 2136 row[DB_type] = OPENSSL_strdup("V");
568ce3a5 2137 tm = X509_get0_notAfter(x509);
68dc6824 2138 row[DB_exp_date] = app_malloc(tm->length + 1, "row exp_data");
0f113f3e
MC
2139 memcpy(row[DB_exp_date], tm->data, tm->length);
2140 row[DB_exp_date][tm->length] = '\0';
0f113f3e 2141 row[DB_rev_date] = NULL;
7644a9ae 2142 row[DB_file] = OPENSSL_strdup("unknown");
0f113f3e 2143
0fbaef9e
BE
2144 if (row[DB_type] == NULL || row[DB_file] == NULL) {
2145 BIO_printf(bio_err, "Memory allocation failure\n");
2146 goto end;
2147 }
2148
b4faea50 2149 irow = app_malloc(sizeof(*irow) * (DB_NUMBER + 1), "row ptr");
0fbaef9e 2150 for (i = 0; i < DB_NUMBER; i++)
0f113f3e 2151 irow[i] = row[i];
0f113f3e
MC
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);
0fbaef9e 2157 OPENSSL_free(irow);
7e1b7485 2158 goto end;
0f113f3e
MC
2159 }
2160
0fbaef9e
BE
2161 for (i = 0; i < DB_NUMBER; i++)
2162 row[i] = NULL;
2163
0f113f3e 2164 /* Revoke Certificate */
06a79af2 2165 if (rev_type == REV_VALID)
0f113f3e
MC
2166 ok = 1;
2167 else
06a79af2
F
2168 /* Retry revocation after DB insertion */
2169 ok = do_revoke(x509, db, rev_type, value);
0f113f3e 2170
7e1b7485 2171 goto end;
0f113f3e
MC
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]);
7e1b7485 2175 goto end;
06a79af2 2176 } else if (rev_type == REV_VALID) {
0f113f3e
MC
2177 BIO_printf(bio_err, "ERROR:Already present, serial number %s\n",
2178 row[DB_serial]);
7e1b7485 2179 goto end;
06a79af2 2180 } else if (rrow[DB_type][0] == DB_TYPE_REV) {
0f113f3e
MC
2181 BIO_printf(bio_err, "ERROR:Already revoked, serial number %s\n",
2182 row[DB_serial]);
7e1b7485 2183 goto end;
0f113f3e
MC
2184 } else {
2185 BIO_printf(bio_err, "Revoking Certificate %s.\n", rrow[DB_serial]);
06a79af2 2186 rev_str = make_revocation_str(rev_type, value);
0f113f3e
MC
2187 if (!rev_str) {
2188 BIO_printf(bio_err, "Error in revocation arguments\n");
7e1b7485 2189 goto end;
0f113f3e 2190 }
06a79af2 2191 rrow[DB_type][0] = DB_TYPE_REV;
0f113f3e
MC
2192 rrow[DB_type][1] = '\0';
2193 rrow[DB_rev_date] = rev_str;
2194 }
2195 ok = 1;
7e1b7485 2196 end:
0fbaef9e 2197 for (i = 0; i < DB_NUMBER; i++)
b548a1f1 2198 OPENSSL_free(row[i]);
26a7d938 2199 return ok;
0f113f3e 2200}
c67cdb50 2201
f85b68cd 2202static int get_certificate_status(const char *serial, CA_DB *db)
0f113f3e
MC
2203{
2204 char *row[DB_NUMBER], **rrow;
2205 int ok = -1, i;
f6c460e8 2206 size_t serial_len = strlen(serial);
0f113f3e
MC
2207
2208 /* Free Resources */
2209 for (i = 0; i < DB_NUMBER; i++)
2210 row[i] = NULL;
2211
2212 /* Malloc needed char spaces */
f6c460e8 2213 row[DB_serial] = app_malloc(serial_len + 2, "row serial#");
0f113f3e 2214
f6c460e8 2215 if (serial_len % 2) {
0f113f3e
MC
2216 /*
2217 * Set the first char to 0
9fa36f5f 2218 */
0f113f3e
MC
2219 row[DB_serial][0] = '0';
2220
2221 /* Copy String from serial to row[DB_serial] */
f6c460e8
F
2222 memcpy(row[DB_serial] + 1, serial, serial_len);
2223 row[DB_serial][serial_len + 1] = '\0';
0f113f3e
MC
2224 } else {
2225 /* Copy String from serial to row[DB_serial] */
f6c460e8
F
2226 memcpy(row[DB_serial], serial, serial_len);
2227 row[DB_serial][serial_len] = '\0';
0f113f3e
MC
2228 }
2229
2230 /* Make it Upper Case */
20967afb 2231 make_uppercase(row[DB_serial]);
0f113f3e
MC
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;
7e1b7485 2240 goto end;
06a79af2 2241 } else if (rrow[DB_type][0] == DB_TYPE_VAL) {
0f113f3e
MC
2242 BIO_printf(bio_err, "%s=Valid (%c)\n",
2243 row[DB_serial], rrow[DB_type][0]);
7e1b7485 2244 goto end;
06a79af2 2245 } else if (rrow[DB_type][0] == DB_TYPE_REV) {
0f113f3e
MC
2246 BIO_printf(bio_err, "%s=Revoked (%c)\n",
2247 row[DB_serial], rrow[DB_type][0]);
7e1b7485 2248 goto end;
06a79af2 2249 } else if (rrow[DB_type][0] == DB_TYPE_EXP) {
0f113f3e
MC
2250 BIO_printf(bio_err, "%s=Expired (%c)\n",
2251 row[DB_serial], rrow[DB_type][0]);
7e1b7485 2252 goto end;
06a79af2 2253 } else if (rrow[DB_type][0] == DB_TYPE_SUSP) {
0f113f3e
MC
2254 BIO_printf(bio_err, "%s=Suspended (%c)\n",
2255 row[DB_serial], rrow[DB_type][0]);
7e1b7485 2256 goto end;
0f113f3e
MC
2257 } else {
2258 BIO_printf(bio_err, "%s=Unknown (%c).\n",
2259 row[DB_serial], rrow[DB_type][0]);
2260 ok = -1;
2261 }
7e1b7485 2262 end:
0f113f3e 2263 for (i = 0; i < DB_NUMBER; i++) {
b548a1f1 2264 OPENSSL_free(row[i]);
0f113f3e 2265 }
26a7d938 2266 return ok;
0f113f3e
MC
2267}
2268
2269static 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();
96487cdd
MC
2277 if (a_tm == NULL)
2278 return -1;
0f113f3e
MC
2279
2280 /* get actual time and make a string */
bc2a0dd2
MC
2281 if (X509_gmtime_adj(a_tm, 0) == NULL) {
2282 ASN1_UTCTIME_free(a_tm);
2283 return -1;
2284 }
edbff8da 2285 a_tm_s = app_malloc(a_tm->length + 1, "time string");
0f113f3e
MC
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
06a79af2 2298 if (rrow[DB_type][0] == DB_TYPE_VAL) {
0f113f3e
MC
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) {
06a79af2 2308 rrow[DB_type][0] = DB_TYPE_EXP;
0f113f3e
MC
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) {
06a79af2 2315 rrow[DB_type][0] = DB_TYPE_EXP;
0f113f3e
MC
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
0f113f3e
MC
2325 ASN1_UTCTIME_free(a_tm);
2326 OPENSSL_free(a_tm_s);
26a7d938 2327 return cnt;
0f113f3e 2328}
a6b7ffdd 2329
7d727231 2330static const char *crl_reasons[] = {
0f113f3e
MC
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"
a6b7ffdd
DSH
2344};
2345
bdcb1a2c 2346#define NUM_REASONS OSSL_NELEM(crl_reasons)
a6b7ffdd 2347
0f113f3e
MC
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
a6b7ffdd
DSH
2353 */
2354
06a79af2 2355static char *make_revocation_str(REVINFO_TYPE rev_type, const char *rev_arg)
0f113f3e 2356{
cc696296 2357 char *str;
06a79af2 2358 const char *reason = NULL, *other = NULL;
0f113f3e
MC
2359 ASN1_OBJECT *otmp;
2360 ASN1_UTCTIME *revtm = NULL;
2361 int i;
06a79af2 2362
0f113f3e
MC
2363 switch (rev_type) {
2364 case REV_NONE:
06a79af2 2365 case REV_VALID:
0f113f3e
MC
2366 break;
2367
2368 case REV_CRL_REASON:
2369 for (i = 0; i < 8; i++) {
86885c28 2370 if (strcasecmp(rev_arg, crl_reasons[i]) == 0) {
0f113f3e
MC
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 */
0f113f3e
MC
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:
0f113f3e
MC
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;
0f113f3e
MC
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
68dc6824 2425 str = app_malloc(i, "revocation reason");
7644a9ae 2426 OPENSSL_strlcpy(str, (char *)revtm->data, i);
0f113f3e 2427 if (reason) {
7644a9ae
RS
2428 OPENSSL_strlcat(str, ",", i);
2429 OPENSSL_strlcat(str, reason, i);
0f113f3e
MC
2430 }
2431 if (other) {
7644a9ae
RS
2432 OPENSSL_strlcat(str, ",", i);
2433 OPENSSL_strlcat(str, other, i);
0f113f3e
MC
2434 }
2435 ASN1_UTCTIME_free(revtm);
2436 return str;
2437}
a6b7ffdd 2438
1d97c843 2439/*-
0f113f3e 2440 * Convert revocation field to X509_REVOKED entry
a6b7ffdd
DSH
2441 * return code:
2442 * 0 error
2443 * 1 OK
2444 * 2 OK and some extensions added (i.e. V2 CRL)
2445 */
2446
06a79af2 2447static int make_revoked(X509_REVOKED *rev, const char *str)
0f113f3e
MC
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)
7e1b7485 2461 goto end;
0f113f3e
MC
2462
2463 if (rev && !X509_REVOKED_set_revocationDate(rev, revDate))
7e1b7485 2464 goto end;
0f113f3e
MC
2465
2466 if (rev && (reason_code != OCSP_REVOKED_STATUS_NOSTATUS)) {
2467 rtmp = ASN1_ENUMERATED_new();
96487cdd 2468 if (rtmp == NULL || !ASN1_ENUMERATED_set(rtmp, reason_code))
7e1b7485 2469 goto end;
0f113f3e 2470 if (!X509_REVOKED_add1_ext_i2d(rev, NID_crl_reason, rtmp, 0, 0))
7e1b7485 2471 goto end;
0f113f3e
MC
2472 }
2473
2474 if (rev && comp_time) {
2475 if (!X509_REVOKED_add1_ext_i2d
2476 (rev, NID_invalidity_date, comp_time, 0, 0))
7e1b7485 2477 goto end;
0f113f3e
MC
2478 }
2479 if (rev && hold) {
2480 if (!X509_REVOKED_add1_ext_i2d
2481 (rev, NID_hold_instruction_code, hold, 0, 0))
7e1b7485 2482 goto end;
0f113f3e
MC
2483 }
2484
2485 if (reason_code != OCSP_REVOKED_STATUS_NOSTATUS)
2486 ret = 2;
2487 else
2488 ret = 1;
2489
7e1b7485 2490 end:
0f113f3e 2491
b548a1f1 2492 OPENSSL_free(tmp);
0f113f3e
MC
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}
bad40585 2500
69b017f6 2501static int old_entry_print(const ASN1_OBJECT *obj, const ASN1_STRING *str)
0f113f3e 2502{
cc696296
F
2503 char buf[25], *pbuf;
2504 const char *p;
0f113f3e 2505 int j;
cc696296 2506
ecf3a1fb 2507 j = i2a_ASN1_OBJECT(bio_err, obj);
0f113f3e
MC
2508 pbuf = buf;
2509 for (j = 22 - j; j > 0; j--)
2510 *(pbuf++) = ' ';
2511 *(pbuf++) = ':';
2512 *(pbuf++) = '\0';
ecf3a1fb 2513 BIO_puts(bio_err, buf);
0f113f3e
MC
2514
2515 if (str->type == V_ASN1_PRINTABLESTRING)
ecf3a1fb 2516 BIO_printf(bio_err, "PRINTABLE:'");
0f113f3e 2517 else if (str->type == V_ASN1_T61STRING)
ecf3a1fb 2518 BIO_printf(bio_err, "T61STRING:'");
0f113f3e 2519 else if (str->type == V_ASN1_IA5STRING)
ecf3a1fb 2520 BIO_printf(bio_err, "IA5STRING:'");
0f113f3e 2521 else if (str->type == V_ASN1_UNIVERSALSTRING)
ecf3a1fb 2522 BIO_printf(bio_err, "UNIVERSALSTRING:'");
0f113f3e 2523 else
ecf3a1fb 2524 BIO_printf(bio_err, "ASN.1 %2d:'", str->type);
0f113f3e 2525
cc696296 2526 p = (const char *)str->data;
0f113f3e
MC
2527 for (j = str->length; j > 0; j--) {
2528 if ((*p >= ' ') && (*p <= '~'))
ecf3a1fb 2529 BIO_printf(bio_err, "%c", *p);
0f113f3e 2530 else if (*p & 0x80)
ecf3a1fb 2531 BIO_printf(bio_err, "\\0x%02X", *p);
0f113f3e 2532 else if ((unsigned char)*p == 0xf7)
ecf3a1fb 2533 BIO_printf(bio_err, "^?");
0f113f3e 2534 else
ecf3a1fb 2535 BIO_printf(bio_err, "^%c", *p + '@');
0f113f3e
MC
2536 p++;
2537 }
ecf3a1fb 2538 BIO_printf(bio_err, "'\n");
0f113f3e
MC
2539 return 1;
2540}
2541
2542int unpack_revinfo(ASN1_TIME **prevtm, int *preason, ASN1_OBJECT **phold,
2543 ASN1_GENERALIZEDTIME **pinvtm, const char *str)
2544{
7e1b7485 2545 char *tmp;
0f113f3e
MC
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;
0f113f3e 2552
7644a9ae 2553 tmp = OPENSSL_strdup(str);
61986d32 2554 if (!tmp) {
a561bfe9 2555 BIO_printf(bio_err, "memory allocation failure\n");
7e1b7485 2556 goto end;
a561bfe9
MC
2557 }
2558
0f113f3e
MC
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();
96487cdd 2576 if (*prevtm == NULL) {
a561bfe9 2577 BIO_printf(bio_err, "memory allocation failure\n");
7e1b7485 2578 goto end;
a561bfe9 2579 }
0f113f3e
MC
2580 if (!ASN1_UTCTIME_set_string(*prevtm, rtime_str)) {
2581 BIO_printf(bio_err, "invalid revocation date %s\n", rtime_str);
7e1b7485 2582 goto end;
0f113f3e
MC
2583 }
2584 }
2585 if (reason_str) {
2586 for (i = 0; i < NUM_REASONS; i++) {
86885c28 2587 if (strcasecmp(reason_str, crl_reasons[i]) == 0) {
0f113f3e
MC
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);
7e1b7485 2594 goto end;
0f113f3e
MC
2595 }
2596
2234212c 2597 if (reason_code == 7) {
0f113f3e 2598 reason_code = OCSP_REVOKED_STATUS_REMOVEFROMCRL;
2234212c 2599 } else if (reason_code == 8) { /* Hold instruction */
0f113f3e
MC
2600 if (!arg_str) {
2601 BIO_printf(bio_err, "missing hold instruction\n");
7e1b7485 2602 goto end;
0f113f3e
MC
2603 }
2604 reason_code = OCSP_REVOKED_STATUS_CERTIFICATEHOLD;
2605 hold = OBJ_txt2obj(arg_str, 0);
2606
2607 if (!hold) {
b5895815 2608 BIO_printf(bio_err, "invalid object identifier %s\n", arg_str);
7e1b7485 2609 goto end;
0f113f3e
MC
2610 }
2611 if (phold)
2612 *phold = hold;
2ace7450
RS
2613 else
2614 ASN1_OBJECT_free(hold);
0f113f3e
MC
2615 } else if ((reason_code == 9) || (reason_code == 10)) {
2616 if (!arg_str) {
2617 BIO_printf(bio_err, "missing compromised time\n");
7e1b7485 2618 goto end;
0f113f3e
MC
2619 }
2620 comp_time = ASN1_GENERALIZEDTIME_new();
96487cdd 2621 if (comp_time == NULL) {
a561bfe9 2622 BIO_printf(bio_err, "memory allocation failure\n");
7e1b7485 2623 goto end;
a561bfe9 2624 }
0f113f3e
MC
2625 if (!ASN1_GENERALIZEDTIME_set_string(comp_time, arg_str)) {
2626 BIO_printf(bio_err, "invalid compromised time %s\n", arg_str);
7e1b7485 2627 goto end;
0f113f3e
MC
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;
2ace7450 2638 if (pinvtm) {
0f113f3e 2639 *pinvtm = comp_time;
2ace7450
RS
2640 comp_time = NULL;
2641 }
0f113f3e
MC
2642
2643 ret = 1;
2644
7e1b7485 2645 end:
0f113f3e 2646
b548a1f1 2647 OPENSSL_free(tmp);
2ace7450 2648 ASN1_GENERALIZEDTIME_free(comp_time);
0f113f3e
MC
2649
2650 return ret;
2651}