]> git.ipfire.org Git - thirdparty/openssl.git/blame - apps/ca.c
Move more comments that confuse indent
[thirdparty/openssl.git] / apps / ca.c
CommitLineData
d02b48c6 1/* apps/ca.c */
58964a49 2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
d02b48c6
RE
3 * All rights reserved.
4 *
5 * This package is an SSL implementation written
6 * by Eric Young (eay@cryptsoft.com).
7 * The implementation was written so as to conform with Netscapes SSL.
8 *
9 * This library is free for commercial and non-commercial use as long as
10 * the following conditions are aheared to. The following conditions
11 * apply to all code found in this distribution, be it the RC4, RSA,
12 * lhash, DES, etc., code; not just the SSL code. The SSL documentation
13 * included with this distribution is covered by the same copyright terms
14 * except that the holder is Tim Hudson (tjh@cryptsoft.com).
15 *
16 * Copyright remains Eric Young's, and as such any Copyright notices in
17 * the code are not to be removed.
18 * If this package is used in a product, Eric Young should be given attribution
19 * as the author of the parts of the library used.
20 * This can be in the form of a textual message at program startup or
21 * in documentation (online or textual) provided with the package.
22 *
23 * Redistribution and use in source and binary forms, with or without
24 * modification, are permitted provided that the following conditions
25 * are met:
26 * 1. Redistributions of source code must retain the copyright
27 * notice, this list of conditions and the following disclaimer.
28 * 2. Redistributions in binary form must reproduce the above copyright
29 * notice, this list of conditions and the following disclaimer in the
30 * documentation and/or other materials provided with the distribution.
31 * 3. All advertising materials mentioning features or use of this software
32 * must display the following acknowledgement:
33 * "This product includes cryptographic software written by
34 * Eric Young (eay@cryptsoft.com)"
35 * The word 'cryptographic' can be left out if the rouines from the library
36 * being used are not cryptographic related :-).
37 * 4. If you include any Windows specific code (or a derivative thereof) from
38 * the apps directory (application code) you must include an acknowledgement:
39 * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
40 *
41 * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
42 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
43 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
44 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
45 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
46 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
47 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
48 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
49 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
50 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
51 * SUCH DAMAGE.
52 *
53 * The licence and distribution terms for any publically available version or
54 * derivative of this code cannot be changed. i.e. this code cannot simply be
55 * copied and put under another distribution licence
56 * [including the GNU Public Licence.]
57 */
58
59/* The PPKI stuff has been donated by Jeff Barber <jeffb@issl.atl.hp.com> */
60
61#include <stdio.h>
62#include <stdlib.h>
63#include <string.h>
c67cdb50 64#include <ctype.h>
d02b48c6 65#include <sys/types.h>
ec577822
BM
66#include <openssl/conf.h>
67#include <openssl/bio.h>
68#include <openssl/err.h>
69#include <openssl/bn.h>
70#include <openssl/txt_db.h>
71#include <openssl/evp.h>
72#include <openssl/x509.h>
73#include <openssl/x509v3.h>
74#include <openssl/objects.h>
a6b7ffdd 75#include <openssl/ocsp.h>
ec577822 76#include <openssl/pem.h>
d02b48c6
RE
77
78#ifndef W_OK
bc36ee62 79# ifdef OPENSSL_SYS_VMS
7d7d2cbc
UM
80# if defined(__DECC)
81# include <unistd.h>
82# else
83# include <unixlib.h>
84# endif
4d8743f4 85# elif !defined(OPENSSL_SYS_VXWORKS) && !defined(OPENSSL_SYS_WINDOWS) && !defined(OPENSSL_SYS_NETWARE)
7d7d2cbc
UM
86# include <sys/file.h>
87# endif
88#endif
89
d610d27f
RL
90#include "apps.h"
91
7d7d2cbc
UM
92#ifndef W_OK
93# define F_OK 0
94# define X_OK 1
95# define W_OK 2
96# define R_OK 4
d02b48c6
RE
97#endif
98
99#undef PROG
100#define PROG ca_main
101
102#define BASE_SECTION "ca"
d5a2ea4b 103#define CONFIG_FILE "openssl.cnf"
d02b48c6
RE
104
105#define ENV_DEFAULT_CA "default_ca"
106
cbdac46d
DSH
107#define STRING_MASK "string_mask"
108#define UTF8_IN "utf8"
109
d02b48c6
RE
110#define ENV_DIR "dir"
111#define ENV_CERTS "certs"
112#define ENV_CRL_DIR "crl_dir"
113#define ENV_CA_DB "CA_DB"
114#define ENV_NEW_CERTS_DIR "new_certs_dir"
115#define ENV_CERTIFICATE "certificate"
116#define ENV_SERIAL "serial"
fd4ef699 117#define ENV_CRLNUMBER "crlnumber"
d02b48c6
RE
118#define ENV_CRL "crl"
119#define ENV_PRIVATE_KEY "private_key"
120#define ENV_RANDFILE "RANDFILE"
121#define ENV_DEFAULT_DAYS "default_days"
58964a49 122#define ENV_DEFAULT_STARTDATE "default_startdate"
ed7f60fb 123#define ENV_DEFAULT_ENDDATE "default_enddate"
d02b48c6
RE
124#define ENV_DEFAULT_CRL_DAYS "default_crl_days"
125#define ENV_DEFAULT_CRL_HOURS "default_crl_hours"
126#define ENV_DEFAULT_MD "default_md"
89da653f 127#define ENV_DEFAULT_EMAIL_DN "email_in_dn"
d02b48c6
RE
128#define ENV_PRESERVE "preserve"
129#define ENV_POLICY "policy"
130#define ENV_EXTENSIONS "x509_extensions"
1756d405 131#define ENV_CRLEXT "crl_extensions"
d02b48c6 132#define ENV_MSIE_HACK "msie_hack"
535d79da
DSH
133#define ENV_NAMEOPT "name_opt"
134#define ENV_CERTOPT "cert_opt"
791bd0cd 135#define ENV_EXTCOPY "copy_extensions"
03ddbdd9 136#define ENV_UNIQUE_SUBJECT "unique_subject"
d02b48c6
RE
137
138#define ENV_DATABASE "database"
139
a6b7ffdd
DSH
140/* Additional revocation information types */
141
142#define REV_NONE 0 /* No addditional information */
143#define REV_CRL_REASON 1 /* Value is CRL reason code */
144#define REV_HOLD 2 /* Value is hold instruction */
145#define REV_KEY_COMPROMISE 3 /* Value is cert key compromise time */
146#define REV_CA_COMPROMISE 4 /* Value is CA key compromise time */
147
7d727231 148static const char *ca_usage[]={
d02b48c6
RE
149"usage: ca args\n",
150"\n",
478b50cf 151" -verbose - Talk a lot while doing things\n",
d02b48c6
RE
152" -config file - A config file\n",
153" -name arg - The particular CA definition to use\n",
154" -gencrl - Generate a new CRL\n",
155" -crldays days - Days is when the next CRL is due\n",
156" -crlhours hours - Hours is when the next CRL is due\n",
9a0f732d
BM
157" -startdate YYMMDDHHMMSSZ - certificate validity notBefore\n",
158" -enddate YYMMDDHHMMSSZ - certificate validity notAfter (overrides -days)\n",
d02b48c6
RE
159" -days arg - number of days to certify the certificate for\n",
160" -md arg - md to use, one of md2, md5, sha or sha1\n",
161" -policy arg - The CA 'policy' to support\n",
32d862ed
RL
162" -keyfile arg - private key file\n",
163" -keyform arg - private key file format (PEM or ENGINE)\n",
d02b48c6 164" -key arg - key to decode the private key if it is encrypted\n",
29d28247 165" -cert file - The CA certificate\n",
d6df2b28 166" -selfsign - sign a certificate with the key associated with it\n",
d02b48c6
RE
167" -in file - The input PEM encoded certificate request(s)\n",
168" -out file - Where to put the output file(s)\n",
169" -outdir dir - Where to put output certificates\n",
170" -infiles .... - The last argument, requests to process\n",
171" -spkac file - File contains DN and signed public key and challenge\n",
58964a49 172" -ss_cert file - File contains a self signed cert to sign\n",
d02b48c6 173" -preserveDN - Don't re-order the DN\n",
89da653f 174" -noemailDN - Don't add the EMAIL field into certificate' subject\n",
7c7c8851
RE
175" -batch - Don't ask questions\n",
176" -msie_hack - msie modifications to handle all those universal strings\n",
f9a25931 177" -revoke file - Revoke a certificate (given in file)\n",
bad40585 178" -subj arg - Use arg instead of request's subject\n",
cbdac46d 179" -utf8 - input characters are UTF8 (default ASCII)\n",
7ce9e425 180" -multivalue-rdn - enable support for multivalued RDNs\n",
87a25f90 181" -extensions .. - Extension section (override value in config file)\n",
478b50cf 182" -extfile file - Configuration file with X509v3 extensions to add\n",
87a25f90 183" -crlexts .. - CRL extension section (override value in config file)\n",
0b13e9f0 184#ifndef OPENSSL_NO_ENGINE
5270e702 185" -engine e - use engine e, possibly a hardware device.\n",
0b13e9f0 186#endif
c67cdb50
BM
187" -status serial - Shows certificate status given the serial number\n",
188" -updatedb - Updates db for expired certificates\n",
d02b48c6
RE
189NULL
190};
191
192#ifdef EFENCE
193extern int EF_PROTECT_FREE;
194extern int EF_PROTECT_BELOW;
195extern int EF_ALIGNMENT;
196#endif
197
7d727231 198static void lookup_fail(const char *name, const char *tag);
d02b48c6 199static int certify(X509 **xret, char *infile,EVP_PKEY *pkey,X509 *x509,
4c623cdd
DSH
200 const EVP_MD *dgst,STACK_OF(OPENSSL_STRING) *sigopts,
201 STACK_OF(CONF_VALUE) *policy,CA_DB *db,
cbdac46d 202 BIGNUM *serial, char *subj,unsigned long chtype, int multirdn, int email_dn, char *startdate,
89da653f
BM
203 char *enddate, long days, int batch, char *ext_sect, CONF *conf,
204 int verbose, unsigned long certopt, unsigned long nameopt,
16b1b035 205 int default_op, int ext_copy, int selfsign);
58964a49 206static int certify_cert(X509 **xret, char *infile,EVP_PKEY *pkey,X509 *x509,
4c623cdd
DSH
207 const EVP_MD *dgst,STACK_OF(OPENSSL_STRING) *sigopts,
208 STACK_OF(CONF_VALUE) *policy,
cbdac46d 209 CA_DB *db, BIGNUM *serial, char *subj,unsigned long chtype, int multirdn, int email_dn,
89da653f
BM
210 char *startdate, char *enddate, long days, int batch,
211 char *ext_sect, CONF *conf,int verbose, unsigned long certopt,
ce16450a
RL
212 unsigned long nameopt, int default_op, int ext_copy,
213 ENGINE *e);
d02b48c6 214static int certify_spkac(X509 **xret, char *infile,EVP_PKEY *pkey,X509 *x509,
4c623cdd
DSH
215 const EVP_MD *dgst,STACK_OF(OPENSSL_STRING) *sigopts,
216 STACK_OF(CONF_VALUE) *policy,
cbdac46d 217 CA_DB *db, BIGNUM *serial,char *subj,unsigned long chtype, int multirdn, int email_dn,
89da653f
BM
218 char *startdate, char *enddate, long days, char *ext_sect,
219 CONF *conf, int verbose, unsigned long certopt,
220 unsigned long nameopt, int default_op, int ext_copy);
82fc1d9c 221static void write_new_certificate(BIO *bp, X509 *x, int output_der, int notext);
e778802f 222static int do_body(X509 **xret, EVP_PKEY *pkey, X509 *x509, const EVP_MD *dgst,
4c623cdd 223 STACK_OF(OPENSSL_STRING) *sigopts,
cbdac46d 224 STACK_OF(CONF_VALUE) *policy, CA_DB *db, BIGNUM *serial,char *subj,unsigned long chtype, int multirdn,
89da653f
BM
225 int email_dn, char *startdate, char *enddate, long days, int batch,
226 int verbose, X509_REQ *req, char *ext_sect, CONF *conf,
535d79da 227 unsigned long certopt, unsigned long nameopt, int default_op,
16b1b035 228 int ext_copy, int selfsign);
f85b68cd
RL
229static int do_revoke(X509 *x509, CA_DB *db, int ext, char *extval);
230static int get_certificate_status(const char *ser_status, CA_DB *db);
231static int do_updatedb(CA_DB *db);
7c337e00 232static int check_time_format(const char *str);
a6b7ffdd 233char *make_revocation_str(int rev_type, char *rev_arg);
7d727231 234int make_revoked(X509_REVOKED *rev, const char *str);
535d79da 235int old_entry_print(BIO *bp, ASN1_OBJECT *obj, ASN1_STRING *str);
b7a26e6d
DSH
236static CONF *conf=NULL;
237static CONF *extconf=NULL;
d02b48c6
RE
238static char *section=NULL;
239
240static int preserve=0;
241static int msie_hack=0;
242
35a99b63 243
667ac4ec
RE
244int MAIN(int, char **);
245
6b691a5c 246int MAIN(int argc, char **argv)
d02b48c6 247 {
5270e702 248 ENGINE *e = NULL;
bd08a2bd 249 char *key=NULL,*passargin=NULL;
64674bcc 250 int create_ser = 0;
b65f8513 251 int free_key = 0;
d02b48c6
RE
252 int total=0;
253 int total_done=0;
254 int badops=0;
255 int ret=1;
89da653f 256 int email_dn=1;
d02b48c6
RE
257 int req=0;
258 int verbose=0;
259 int gencrl=0;
a36a1a51 260 int dorevoke=0;
c67cdb50 261 int doupdatedb=0;
d02b48c6
RE
262 long crldays=0;
263 long crlhours=0;
f6e7d014 264 long crlsec=0;
d02b48c6
RE
265 long errorline= -1;
266 char *configfile=NULL;
267 char *md=NULL;
268 char *policy=NULL;
269 char *keyfile=NULL;
270 char *certfile=NULL;
32d862ed 271 int keyform=FORMAT_PEM;
d02b48c6
RE
272 char *infile=NULL;
273 char *spkac_file=NULL;
58964a49 274 char *ss_cert_file=NULL;
c67cdb50 275 char *ser_status=NULL;
d02b48c6
RE
276 EVP_PKEY *pkey=NULL;
277 int output_der = 0;
278 char *outfile=NULL;
279 char *outdir=NULL;
280 char *serialfile=NULL;
fd4ef699 281 char *crlnumberfile=NULL;
d02b48c6 282 char *extensions=NULL;
dfebac32 283 char *extfile=NULL;
bad40585 284 char *subj=NULL;
cbdac46d 285 unsigned long chtype = MBSTRING_ASC;
7ce9e425 286 int multirdn = 0;
89da653f 287 char *tmp_email_dn=NULL;
1756d405 288 char *crl_ext=NULL;
a6b7ffdd
DSH
289 int rev_type = REV_NONE;
290 char *rev_arg = NULL;
d02b48c6 291 BIGNUM *serial=NULL;
fd4ef699 292 BIGNUM *crlnumber=NULL;
58964a49 293 char *startdate=NULL;
ed7f60fb 294 char *enddate=NULL;
b7a26e6d 295 long days=0;
d02b48c6 296 int batch=0;
82fc1d9c 297 int notext=0;
535d79da
DSH
298 unsigned long nameopt = 0, certopt = 0;
299 int default_op = 1;
791bd0cd 300 int ext_copy = EXT_COPY_NONE;
16b1b035
RL
301 int selfsign = 0;
302 X509 *x509=NULL, *x509p = NULL;
d02b48c6
RE
303 X509 *x=NULL;
304 BIO *in=NULL,*out=NULL,*Sout=NULL,*Cout=NULL;
305 char *dbfile=NULL;
f85b68cd 306 CA_DB *db=NULL;
d02b48c6 307 X509_CRL *crl=NULL;
d02b48c6 308 X509_REVOKED *r=NULL;
35bf3541
DSH
309 ASN1_TIME *tmptm;
310 ASN1_INTEGER *tmpser;
ff990440 311 char *f;
5ce278a7
BL
312 const char *p;
313 char * const *pp;
d02b48c6 314 int i,j;
e778802f 315 const EVP_MD *dgst=NULL;
ba404b5e 316 STACK_OF(CONF_VALUE) *attribs=NULL;
b4604683 317 STACK_OF(X509) *cert_sk=NULL;
4c623cdd 318 STACK_OF(OPENSSL_STRING) *sigopts = NULL;
d02b48c6
RE
319#undef BSIZE
320#define BSIZE 256
321 MS_STATIC char buf[3][BSIZE];
95fdc5ee 322 char *randfile=NULL;
0b13e9f0 323#ifndef OPENSSL_NO_ENGINE
5270e702 324 char *engine = NULL;
0b13e9f0 325#endif
54a656ef 326 char *tofree=NULL;
f85b68cd 327 DB_ATTR db_attr;
d02b48c6
RE
328
329#ifdef EFENCE
330EF_PROTECT_FREE=1;
331EF_PROTECT_BELOW=1;
332EF_ALIGNMENT=0;
333#endif
334
335 apps_startup();
336
a32640b0 337 conf = NULL;
b74ba295
BM
338 key = NULL;
339 section = NULL;
340
d02b48c6 341 preserve=0;
b74ba295 342 msie_hack=0;
d02b48c6
RE
343 if (bio_err == NULL)
344 if ((bio_err=BIO_new(BIO_s_file())) != NULL)
58964a49 345 BIO_set_fp(bio_err,stderr,BIO_NOCLOSE|BIO_FP_TEXT);
d02b48c6
RE
346
347 argc--;
348 argv++;
349 while (argc >= 1)
350 {
351 if (strcmp(*argv,"-verbose") == 0)
352 verbose=1;
353 else if (strcmp(*argv,"-config") == 0)
354 {
355 if (--argc < 1) goto bad;
356 configfile= *(++argv);
357 }
358 else if (strcmp(*argv,"-name") == 0)
359 {
360 if (--argc < 1) goto bad;
361 section= *(++argv);
362 }
bad40585
BM
363 else if (strcmp(*argv,"-subj") == 0)
364 {
365 if (--argc < 1) goto bad;
366 subj= *(++argv);
367 /* preserve=1; */
368 }
cbdac46d
DSH
369 else if (strcmp(*argv,"-utf8") == 0)
370 chtype = MBSTRING_UTF8;
64674bcc
DSH
371 else if (strcmp(*argv,"-create_serial") == 0)
372 create_ser = 1;
7ce9e425
RL
373 else if (strcmp(*argv,"-multivalue-rdn") == 0)
374 multirdn=1;
58964a49
RE
375 else if (strcmp(*argv,"-startdate") == 0)
376 {
377 if (--argc < 1) goto bad;
378 startdate= *(++argv);
379 }
ed7f60fb
DSH
380 else if (strcmp(*argv,"-enddate") == 0)
381 {
382 if (--argc < 1) goto bad;
383 enddate= *(++argv);
384 }
d02b48c6
RE
385 else if (strcmp(*argv,"-days") == 0)
386 {
387 if (--argc < 1) goto bad;
388 days=atoi(*(++argv));
389 }
390 else if (strcmp(*argv,"-md") == 0)
391 {
392 if (--argc < 1) goto bad;
393 md= *(++argv);
394 }
395 else if (strcmp(*argv,"-policy") == 0)
396 {
397 if (--argc < 1) goto bad;
398 policy= *(++argv);
399 }
400 else if (strcmp(*argv,"-keyfile") == 0)
401 {
402 if (--argc < 1) goto bad;
403 keyfile= *(++argv);
404 }
32d862ed
RL
405 else if (strcmp(*argv,"-keyform") == 0)
406 {
407 if (--argc < 1) goto bad;
408 keyform=str2fmt(*(++argv));
409 }
bd08a2bd
DSH
410 else if (strcmp(*argv,"-passin") == 0)
411 {
412 if (--argc < 1) goto bad;
413 passargin= *(++argv);
414 }
d02b48c6
RE
415 else if (strcmp(*argv,"-key") == 0)
416 {
417 if (--argc < 1) goto bad;
418 key= *(++argv);
419 }
420 else if (strcmp(*argv,"-cert") == 0)
421 {
422 if (--argc < 1) goto bad;
423 certfile= *(++argv);
424 }
16b1b035
RL
425 else if (strcmp(*argv,"-selfsign") == 0)
426 selfsign=1;
d02b48c6
RE
427 else if (strcmp(*argv,"-in") == 0)
428 {
429 if (--argc < 1) goto bad;
430 infile= *(++argv);
431 req=1;
432 }
433 else if (strcmp(*argv,"-out") == 0)
434 {
435 if (--argc < 1) goto bad;
436 outfile= *(++argv);
437 }
438 else if (strcmp(*argv,"-outdir") == 0)
439 {
440 if (--argc < 1) goto bad;
441 outdir= *(++argv);
442 }
4c623cdd
DSH
443 else if (strcmp(*argv,"-sigopt") == 0)
444 {
445 if (--argc < 1)
446 goto bad;
447 if (!sigopts)
448 sigopts = sk_OPENSSL_STRING_new_null();
449 if (!sigopts || !sk_OPENSSL_STRING_push(sigopts, *(++argv)))
450 goto bad;
451 }
82fc1d9c
DSH
452 else if (strcmp(*argv,"-notext") == 0)
453 notext=1;
d02b48c6
RE
454 else if (strcmp(*argv,"-batch") == 0)
455 batch=1;
456 else if (strcmp(*argv,"-preserveDN") == 0)
457 preserve=1;
89da653f
BM
458 else if (strcmp(*argv,"-noemailDN") == 0)
459 email_dn=0;
d02b48c6
RE
460 else if (strcmp(*argv,"-gencrl") == 0)
461 gencrl=1;
462 else if (strcmp(*argv,"-msie_hack") == 0)
463 msie_hack=1;
464 else if (strcmp(*argv,"-crldays") == 0)
465 {
466 if (--argc < 1) goto bad;
467 crldays= atol(*(++argv));
468 }
469 else if (strcmp(*argv,"-crlhours") == 0)
470 {
471 if (--argc < 1) goto bad;
472 crlhours= atol(*(++argv));
473 }
f6e7d014
DSH
474 else if (strcmp(*argv,"-crlsec") == 0)
475 {
476 if (--argc < 1) goto bad;
477 crlsec = atol(*(++argv));
478 }
d02b48c6
RE
479 else if (strcmp(*argv,"-infiles") == 0)
480 {
481 argc--;
482 argv++;
483 req=1;
484 break;
485 }
58964a49
RE
486 else if (strcmp(*argv, "-ss_cert") == 0)
487 {
488 if (--argc < 1) goto bad;
489 ss_cert_file = *(++argv);
490 req=1;
491 }
d02b48c6
RE
492 else if (strcmp(*argv, "-spkac") == 0)
493 {
494 if (--argc < 1) goto bad;
495 spkac_file = *(++argv);
496 req=1;
497 }
f9a25931
RE
498 else if (strcmp(*argv,"-revoke") == 0)
499 {
500 if (--argc < 1) goto bad;
501 infile= *(++argv);
a36a1a51 502 dorevoke=1;
f9a25931 503 }
648f551a
DSH
504 else if (strcmp(*argv,"-valid") == 0)
505 {
506 if (--argc < 1) goto bad;
507 infile= *(++argv);
508 dorevoke=2;
509 }
87a25f90
DSH
510 else if (strcmp(*argv,"-extensions") == 0)
511 {
512 if (--argc < 1) goto bad;
513 extensions= *(++argv);
514 }
dfebac32
BM
515 else if (strcmp(*argv,"-extfile") == 0)
516 {
517 if (--argc < 1) goto bad;
518 extfile= *(++argv);
519 }
c67cdb50
BM
520 else if (strcmp(*argv,"-status") == 0)
521 {
522 if (--argc < 1) goto bad;
523 ser_status= *(++argv);
524 }
525 else if (strcmp(*argv,"-updatedb") == 0)
526 {
527 doupdatedb=1;
528 }
87a25f90
DSH
529 else if (strcmp(*argv,"-crlexts") == 0)
530 {
531 if (--argc < 1) goto bad;
532 crl_ext= *(++argv);
533 }
a6b7ffdd
DSH
534 else if (strcmp(*argv,"-crl_reason") == 0)
535 {
536 if (--argc < 1) goto bad;
537 rev_arg = *(++argv);
538 rev_type = REV_CRL_REASON;
539 }
540 else if (strcmp(*argv,"-crl_hold") == 0)
541 {
542 if (--argc < 1) goto bad;
543 rev_arg = *(++argv);
544 rev_type = REV_HOLD;
545 }
546 else if (strcmp(*argv,"-crl_compromise") == 0)
547 {
548 if (--argc < 1) goto bad;
549 rev_arg = *(++argv);
550 rev_type = REV_KEY_COMPROMISE;
551 }
552 else if (strcmp(*argv,"-crl_CA_compromise") == 0)
553 {
554 if (--argc < 1) goto bad;
555 rev_arg = *(++argv);
556 rev_type = REV_CA_COMPROMISE;
557 }
0b13e9f0 558#ifndef OPENSSL_NO_ENGINE
5270e702
RL
559 else if (strcmp(*argv,"-engine") == 0)
560 {
561 if (--argc < 1) goto bad;
562 engine= *(++argv);
563 }
0b13e9f0 564#endif
d02b48c6
RE
565 else
566 {
567bad:
568 BIO_printf(bio_err,"unknown option %s\n",*argv);
569 badops=1;
570 break;
571 }
572 argc--;
573 argv++;
574 }
575
576 if (badops)
577 {
5ce278a7
BL
578 const char **pp2;
579
580 for (pp2=ca_usage; (*pp2 != NULL); pp2++)
581 BIO_printf(bio_err,"%s",*pp2);
d02b48c6
RE
582 goto err;
583 }
584
585 ERR_load_crypto_strings();
586
587 /*****************************************************************/
54a656ef 588 tofree=NULL;
e40b7abe
DSH
589 if (configfile == NULL) configfile = getenv("OPENSSL_CONF");
590 if (configfile == NULL) configfile = getenv("SSLEAY_CONF");
d02b48c6
RE
591 if (configfile == NULL)
592 {
54a656ef 593 const char *s=X509_get_default_cert_area();
d420ac2c 594 size_t len;
54a656ef 595
bc36ee62 596#ifdef OPENSSL_SYS_VMS
d420ac2c
RL
597 len = strlen(s)+sizeof(CONFIG_FILE);
598 tofree=OPENSSL_malloc(len);
54a656ef 599 strcpy(tofree,s);
7d7d2cbc 600#else
d420ac2c
RL
601 len = strlen(s)+sizeof(CONFIG_FILE)+1;
602 tofree=OPENSSL_malloc(len);
603 BUF_strlcpy(tofree,s,len);
604 BUF_strlcat(tofree,"/",len);
7d7d2cbc 605#endif
d420ac2c 606 BUF_strlcat(tofree,CONFIG_FILE,len);
54a656ef 607 configfile=tofree;
d02b48c6
RE
608 }
609
610 BIO_printf(bio_err,"Using configuration from %s\n",configfile);
b7a26e6d
DSH
611 conf = NCONF_new(NULL);
612 if (NCONF_load(conf,configfile,&errorline) <= 0)
d02b48c6
RE
613 {
614 if (errorline <= 0)
615 BIO_printf(bio_err,"error loading the config file '%s'\n",
616 configfile);
617 else
618 BIO_printf(bio_err,"error on line %ld of config file '%s'\n"
619 ,errorline,configfile);
620 goto err;
621 }
54a656ef 622 if(tofree)
5b7249f3 623 {
54a656ef 624 OPENSSL_free(tofree);
5b7249f3
DSH
625 tofree = NULL;
626 }
d02b48c6 627
3647bee2
DSH
628 if (!load_config(bio_err, conf))
629 goto err;
630
b5a93e22
DSH
631#ifndef OPENSSL_NO_ENGINE
632 e = setup_engine(bio_err, engine, 0);
633#endif
634
d02b48c6
RE
635 /* Lets get the config section we are using */
636 if (section == NULL)
637 {
b7a26e6d 638 section=NCONF_get_string(conf,BASE_SECTION,ENV_DEFAULT_CA);
d02b48c6
RE
639 if (section == NULL)
640 {
641 lookup_fail(BASE_SECTION,ENV_DEFAULT_CA);
642 goto err;
643 }
644 }
645
dfeab068
RE
646 if (conf != NULL)
647 {
b7a26e6d 648 p=NCONF_get_string(conf,NULL,"oid_file");
2c0d1012
BM
649 if (p == NULL)
650 ERR_clear_error();
dfeab068
RE
651 if (p != NULL)
652 {
653 BIO *oid_bio;
654
655 oid_bio=BIO_new_file(p,"r");
656 if (oid_bio == NULL)
657 {
3a83462d 658 /*-
dfeab068
RE
659 BIO_printf(bio_err,"problems opening %s for extra oid's\n",p);
660 ERR_print_errors(bio_err);
661 */
c106c613 662 ERR_clear_error();
dfeab068
RE
663 }
664 else
665 {
666 OBJ_create_objects(oid_bio);
667 BIO_free(oid_bio);
668 }
669 }
c67cdb50 670 if (!add_oid_section(bio_err,conf))
a31011e8 671 {
a43aa73e
DSH
672 ERR_print_errors(bio_err);
673 goto err;
a31011e8 674 }
a43aa73e 675 }
dfeab068 676
b7a26e6d 677 randfile = NCONF_get_string(conf, BASE_SECTION, "RANDFILE");
2c0d1012
BM
678 if (randfile == NULL)
679 ERR_clear_error();
a31011e8 680 app_RAND_load_file(randfile, bio_err, 0);
f85b68cd 681
cbdac46d
DSH
682 f = NCONF_get_string(conf, section, STRING_MASK);
683 if (!f)
684 ERR_clear_error();
685
686 if(f && !ASN1_STRING_set_default_mask_asc(f)) {
687 BIO_printf(bio_err, "Invalid global string mask setting %s\n", f);
688 goto err;
689 }
690
691 if (chtype != MBSTRING_UTF8){
692 f = NCONF_get_string(conf, section, UTF8_IN);
693 if (!f)
694 ERR_clear_error();
695 else if (!strcmp(f, "yes"))
696 chtype = MBSTRING_UTF8;
697 }
698
f85b68cd 699 db_attr.unique_subject = 1;
03ddbdd9 700 p = NCONF_get_string(conf, section, ENV_UNIQUE_SUBJECT);
f85b68cd
RL
701 if (p)
702 {
63b6fe2b 703#ifdef RL_DEBUG
f85b68cd 704 BIO_printf(bio_err, "DEBUG: unique_subject = \"%s\"\n", p);
63b6fe2b 705#endif
03ddbdd9 706 db_attr.unique_subject = parse_yesno(p,1);
f85b68cd
RL
707 }
708 else
ae44fc1e
DSH
709 ERR_clear_error();
710#ifdef RL_DEBUG
711 if (!p)
57dc72e0 712 BIO_printf(bio_err, "DEBUG: unique_subject undefined\n");
63b6fe2b
RL
713#endif
714#ifdef RL_DEBUG
f85b68cd
RL
715 BIO_printf(bio_err, "DEBUG: configured unique_subject is %d\n",
716 db_attr.unique_subject);
63b6fe2b 717#endif
a31011e8 718
d02b48c6
RE
719 in=BIO_new(BIO_s_file());
720 out=BIO_new(BIO_s_file());
721 Sout=BIO_new(BIO_s_file());
722 Cout=BIO_new(BIO_s_file());
723 if ((in == NULL) || (out == NULL) || (Sout == NULL) || (Cout == NULL))
724 {
725 ERR_print_errors(bio_err);
726 goto err;
727 }
728
729 /*****************************************************************/
c67cdb50
BM
730 /* report status of cert with serial number given on command line */
731 if (ser_status)
732 {
b7a26e6d 733 if ((dbfile=NCONF_get_string(conf,section,ENV_DATABASE)) == NULL)
c67cdb50
BM
734 {
735 lookup_fail(section,ENV_DATABASE);
736 goto err;
737 }
f85b68cd 738 db = load_index(dbfile,&db_attr);
c67cdb50
BM
739 if (db == NULL) goto err;
740
f85b68cd 741 if (!index_index(db)) goto err;
c67cdb50
BM
742
743 if (get_certificate_status(ser_status,db) != 1)
744 BIO_printf(bio_err,"Error verifying serial %s!\n",
745 ser_status);
746 goto err;
747 }
748
749 /*****************************************************************/
16b1b035 750 /* we definitely need a private key, so let's get it */
d02b48c6 751
b7a26e6d 752 if ((keyfile == NULL) && ((keyfile=NCONF_get_string(conf,
d02b48c6
RE
753 section,ENV_PRIVATE_KEY)) == NULL))
754 {
755 lookup_fail(section,ENV_PRIVATE_KEY);
756 goto err;
757 }
b65f8513 758 if (!key)
bd08a2bd 759 {
b65f8513
DSH
760 free_key = 1;
761 if (!app_passwd(bio_err, passargin, NULL, &key, NULL))
762 {
763 BIO_printf(bio_err,"Error getting password\n");
764 goto err;
765 }
bd08a2bd 766 }
da9b9724 767 pkey = load_key(bio_err, keyfile, keyform, 0, key, e,
30b4c272 768 "CA private key");
4579924b 769 if (key) OPENSSL_cleanse(key,strlen(key));
d02b48c6
RE
770 if (pkey == NULL)
771 {
30b4c272 772 /* load_key() has already printed an appropriate message */
d02b48c6
RE
773 goto err;
774 }
775
776 /*****************************************************************/
777 /* we need a certificate */
16b1b035 778 if (!selfsign || spkac_file || ss_cert_file || gencrl)
d02b48c6 779 {
16b1b035
RL
780 if ((certfile == NULL)
781 && ((certfile=NCONF_get_string(conf,
782 section,ENV_CERTIFICATE)) == NULL))
783 {
784 lookup_fail(section,ENV_CERTIFICATE);
785 goto err;
786 }
787 x509=load_cert(bio_err, certfile, FORMAT_PEM, NULL, e,
788 "CA certificate");
789 if (x509 == NULL)
790 goto err;
d02b48c6 791
16b1b035
RL
792 if (!X509_check_private_key(x509,pkey))
793 {
794 BIO_printf(bio_err,"CA certificate and CA private key do not match\n");
795 goto err;
796 }
dfeab068 797 }
16b1b035 798 if (!selfsign) x509p = x509;
dfeab068 799
b7a26e6d 800 f=NCONF_get_string(conf,BASE_SECTION,ENV_PRESERVE);
2c0d1012
BM
801 if (f == NULL)
802 ERR_clear_error();
d02b48c6
RE
803 if ((f != NULL) && ((*f == 'y') || (*f == 'Y')))
804 preserve=1;
b7a26e6d 805 f=NCONF_get_string(conf,BASE_SECTION,ENV_MSIE_HACK);
2c0d1012
BM
806 if (f == NULL)
807 ERR_clear_error();
d02b48c6
RE
808 if ((f != NULL) && ((*f == 'y') || (*f == 'Y')))
809 msie_hack=1;
810
b7a26e6d 811 f=NCONF_get_string(conf,section,ENV_NAMEOPT);
535d79da
DSH
812
813 if (f)
814 {
815 if (!set_name_ex(&nameopt, f))
816 {
817 BIO_printf(bio_err, "Invalid name options: \"%s\"\n", f);
818 goto err;
819 }
820 default_op = 0;
821 }
822 else
823 ERR_clear_error();
824
b7a26e6d 825 f=NCONF_get_string(conf,section,ENV_CERTOPT);
535d79da
DSH
826
827 if (f)
828 {
829 if (!set_cert_ex(&certopt, f))
830 {
831 BIO_printf(bio_err, "Invalid certificate options: \"%s\"\n", f);
832 goto err;
833 }
834 default_op = 0;
835 }
836 else
837 ERR_clear_error();
838
b7a26e6d 839 f=NCONF_get_string(conf,section,ENV_EXTCOPY);
791bd0cd
DSH
840
841 if (f)
842 {
843 if (!set_ext_copy(&ext_copy, f))
844 {
845 BIO_printf(bio_err, "Invalid extension copy option: \"%s\"\n", f);
846 goto err;
847 }
848 }
849 else
850 ERR_clear_error();
535d79da 851
d02b48c6
RE
852 /*****************************************************************/
853 /* lookup where to write new certificates */
854 if ((outdir == NULL) && (req))
855 {
d02b48c6 856
b7a26e6d 857 if ((outdir=NCONF_get_string(conf,section,ENV_NEW_CERTS_DIR))
d02b48c6
RE
858 == NULL)
859 {
860 BIO_printf(bio_err,"there needs to be defined a directory for new certificate to be placed in\n");
861 goto err;
862 }
bc36ee62
RL
863#ifndef OPENSSL_SYS_VMS
864 /* outdir is a directory spec, but access() for VMS demands a
207c7df7
RL
865 filename. In any case, stat(), below, will catch the problem
866 if outdir is not a directory spec, and the fopen() or open()
867 will catch an error if there is no write access.
868
869 Presumably, this problem could also be solved by using the DEC
870 C routines to convert the directory syntax to Unixly, and give
871 that to access(). However, time's too short to do that just
872 now.
bad40585 873 */
2140659b 874#ifndef _WIN32
d02b48c6 875 if (access(outdir,R_OK|W_OK|X_OK) != 0)
2140659b
AP
876#else
877 if (_access(outdir,R_OK|W_OK|X_OK) != 0)
878#endif
d02b48c6 879 {
657e60fa 880 BIO_printf(bio_err,"I am unable to access the %s directory\n",outdir);
d02b48c6
RE
881 perror(outdir);
882 goto err;
883 }
884
ffa10187 885 if (app_isdir(outdir)<=0)
d02b48c6
RE
886 {
887 BIO_printf(bio_err,"%s need to be a directory\n",outdir);
888 perror(outdir);
889 goto err;
890 }
79875776 891#endif
d02b48c6
RE
892 }
893
894 /*****************************************************************/
895 /* we need to load the database file */
b7a26e6d 896 if ((dbfile=NCONF_get_string(conf,section,ENV_DATABASE)) == NULL)
d02b48c6
RE
897 {
898 lookup_fail(section,ENV_DATABASE);
899 goto err;
900 }
f85b68cd 901 db = load_index(dbfile, &db_attr);
d02b48c6
RE
902 if (db == NULL) goto err;
903
904 /* Lets check some fields */
c869da88 905 for (i=0; i<sk_OPENSSL_PSTRING_num(db->db->data); i++)
d02b48c6 906 {
c869da88 907 pp=sk_OPENSSL_PSTRING_value(db->db->data,i);
d02b48c6
RE
908 if ((pp[DB_type][0] != DB_TYPE_REV) &&
909 (pp[DB_rev_date][0] != '\0'))
910 {
7c7c8851 911 BIO_printf(bio_err,"entry %d: not revoked yet, but has a revocation date\n",i+1);
d02b48c6
RE
912 goto err;
913 }
914 if ((pp[DB_type][0] == DB_TYPE_REV) &&
a6b7ffdd 915 !make_revoked(NULL, pp[DB_rev_date]))
d02b48c6 916 {
a6b7ffdd 917 BIO_printf(bio_err," in entry %d\n", i+1);
d02b48c6
RE
918 goto err;
919 }
ff990440 920 if (!check_time_format((char *)pp[DB_exp_date]))
d02b48c6
RE
921 {
922 BIO_printf(bio_err,"entry %d: invalid expiry date\n",i+1);
923 goto err;
924 }
925 p=pp[DB_serial];
926 j=strlen(p);
acba75c5
DSH
927 if (*p == '-')
928 {
929 p++;
930 j--;
931 }
d02b48c6
RE
932 if ((j&1) || (j < 2))
933 {
934 BIO_printf(bio_err,"entry %d: bad serial number length (%d)\n",i+1,j);
935 goto err;
936 }
937 while (*p)
938 {
939 if (!( ((*p >= '0') && (*p <= '9')) ||
940 ((*p >= 'A') && (*p <= 'F')) ||
941 ((*p >= 'a') && (*p <= 'f'))) )
942 {
943 BIO_printf(bio_err,"entry %d: bad serial number characters, char pos %ld, char is '%c'\n",i+1,(long)(p-pp[DB_serial]),*p);
944 goto err;
945 }
946 p++;
947 }
948 }
949 if (verbose)
950 {
58964a49 951 BIO_set_fp(out,stdout,BIO_NOCLOSE|BIO_FP_TEXT); /* cannot fail */
bc36ee62 952#ifdef OPENSSL_SYS_VMS
645749ef
RL
953 {
954 BIO *tmpbio = BIO_new(BIO_f_linebuffer());
955 out = BIO_push(tmpbio, out);
956 }
957#endif
f85b68cd 958 TXT_DB_write(out,db->db);
d02b48c6 959 BIO_printf(bio_err,"%d entries loaded from the database\n",
c869da88 960 sk_OPENSSL_PSTRING_num(db->db->data));
657e60fa 961 BIO_printf(bio_err,"generating index\n");
d02b48c6
RE
962 }
963
f85b68cd 964 if (!index_index(db)) goto err;
d02b48c6 965
c67cdb50
BM
966 /*****************************************************************/
967 /* Update the db file for expired certificates */
968 if (doupdatedb)
969 {
970 if (verbose)
971 BIO_printf(bio_err, "Updating %s ...\n",
972 dbfile);
973
974 i = do_updatedb(db);
975 if (i == -1)
976 {
977 BIO_printf(bio_err,"Malloc failure\n");
978 goto err;
bad40585 979 }
c67cdb50 980 else if (i == 0)
bad40585 981 {
c67cdb50
BM
982 if (verbose) BIO_printf(bio_err,
983 "No entries found to mark expired\n");
984 }
985 else
986 {
f85b68cd
RL
987 if (!save_index(dbfile,"new",db)) goto err;
988
989 if (!rotate_index(dbfile,"new","old")) goto err;
c67cdb50
BM
990
991 if (verbose) BIO_printf(bio_err,
992 "Done. %d entries marked as expired\n",i);
993 }
c67cdb50
BM
994 }
995
dfebac32 996 /*****************************************************************/
478b50cf 997 /* Read extensions config file */
dfebac32
BM
998 if (extfile)
999 {
b7a26e6d
DSH
1000 extconf = NCONF_new(NULL);
1001 if (NCONF_load(extconf,extfile,&errorline) <= 0)
dfebac32
BM
1002 {
1003 if (errorline <= 0)
1004 BIO_printf(bio_err, "ERROR: loading the config file '%s'\n",
1005 extfile);
1006 else
1007 BIO_printf(bio_err, "ERROR: on line %ld of config file '%s'\n",
1008 errorline,extfile);
1009 ret = 1;
1010 goto err;
1011 }
1012
1013 if (verbose)
e2350001 1014 BIO_printf(bio_err, "Successfully loaded extensions file %s\n", extfile);
dfebac32
BM
1015
1016 /* We can have sections in the ext file */
b7a26e6d 1017 if (!extensions && !(extensions = NCONF_get_string(extconf, "default", "extensions")))
dfebac32 1018 extensions = "default";
bad40585 1019 }
dfebac32 1020
d02b48c6
RE
1021 /*****************************************************************/
1022 if (req || gencrl)
1023 {
1024 if (outfile != NULL)
1025 {
d02b48c6
RE
1026 if (BIO_write_filename(Sout,outfile) <= 0)
1027 {
1028 perror(outfile);
1029 goto err;
1030 }
1031 }
1032 else
645749ef 1033 {
58964a49 1034 BIO_set_fp(Sout,stdout,BIO_NOCLOSE|BIO_FP_TEXT);
bc36ee62 1035#ifdef OPENSSL_SYS_VMS
645749ef
RL
1036 {
1037 BIO *tmpbio = BIO_new(BIO_f_linebuffer());
1038 Sout = BIO_push(tmpbio, Sout);
1039 }
1040#endif
1041 }
d02b48c6
RE
1042 }
1043
10c85057
DSH
1044 if ((md == NULL) && ((md=NCONF_get_string(conf,
1045 section,ENV_DEFAULT_MD)) == NULL))
1046 {
1047 lookup_fail(section,ENV_DEFAULT_MD);
1048 goto err;
1049 }
1050
03919683
DSH
1051 if (!strcmp(md, "default"))
1052 {
1053 int def_nid;
1054 if (EVP_PKEY_get_default_digest_nid(pkey, &def_nid) <= 0)
1055 {
1056 BIO_puts(bio_err,"no default digest\n");
1057 goto err;
1058 }
1059 md = (char *)OBJ_nid2sn(def_nid);
1060 }
1061
10c85057
DSH
1062 if ((dgst=EVP_get_digestbyname(md)) == NULL)
1063 {
1064 BIO_printf(bio_err,"%s is an unsupported message digest type\n",md);
1065 goto err;
1066 }
1067
d02b48c6
RE
1068 if (req)
1069 {
89da653f
BM
1070 if ((email_dn == 1) && ((tmp_email_dn=NCONF_get_string(conf,
1071 section,ENV_DEFAULT_EMAIL_DN)) != NULL ))
1072 {
1073 if(strcmp(tmp_email_dn,"no") == 0)
1074 email_dn=0;
1075 }
d02b48c6
RE
1076 if (verbose)
1077 BIO_printf(bio_err,"message digest is %s\n",
1078 OBJ_nid2ln(dgst->type));
b7a26e6d 1079 if ((policy == NULL) && ((policy=NCONF_get_string(conf,
d02b48c6
RE
1080 section,ENV_POLICY)) == NULL))
1081 {
1082 lookup_fail(section,ENV_POLICY);
1083 goto err;
1084 }
1085 if (verbose)
1086 BIO_printf(bio_err,"policy is %s\n",policy);
1087
b7a26e6d 1088 if ((serialfile=NCONF_get_string(conf,section,ENV_SERIAL))
d02b48c6
RE
1089 == NULL)
1090 {
1091 lookup_fail(section,ENV_SERIAL);
1092 goto err;
1093 }
dfebac32
BM
1094
1095 if (!extconf)
2c0d1012 1096 {
dfebac32
BM
1097 /* no '-extfile' option, so we look for extensions
1098 * in the main configuration file */
2c0d1012 1099 if (!extensions)
2c0d1012 1100 {
b7a26e6d 1101 extensions=NCONF_get_string(conf,section,
dfebac32
BM
1102 ENV_EXTENSIONS);
1103 if (!extensions)
1104 ERR_clear_error();
1105 }
1106 if (extensions)
1107 {
1108 /* Check syntax of file */
1109 X509V3_CTX ctx;
1110 X509V3_set_ctx_test(&ctx);
b7a26e6d
DSH
1111 X509V3_set_nconf(&ctx, conf);
1112 if (!X509V3_EXT_add_nconf(conf, &ctx, extensions,
dfebac32
BM
1113 NULL))
1114 {
1115 BIO_printf(bio_err,
1116 "Error Loading extension section %s\n",
b2347661 1117 extensions);
dfebac32
BM
1118 ret = 1;
1119 goto err;
1120 }
2c0d1012 1121 }
d02b48c6
RE
1122 }
1123
58964a49
RE
1124 if (startdate == NULL)
1125 {
b7a26e6d 1126 startdate=NCONF_get_string(conf,section,
58964a49 1127 ENV_DEFAULT_STARTDATE);
2c0d1012
BM
1128 if (startdate == NULL)
1129 ERR_clear_error();
ed7f60fb 1130 }
33ab2e31 1131 if (startdate && !ASN1_TIME_set_string(NULL, startdate))
ed7f60fb 1132 {
33ab2e31 1133 BIO_printf(bio_err,"start date is invalid, it should be YYMMDDHHMMSSZ or YYYYMMDDHHMMSSZ\n");
ed7f60fb
DSH
1134 goto err;
1135 }
1136 if (startdate == NULL) startdate="today";
1137
1138 if (enddate == NULL)
1139 {
b7a26e6d 1140 enddate=NCONF_get_string(conf,section,
ed7f60fb 1141 ENV_DEFAULT_ENDDATE);
2c0d1012
BM
1142 if (enddate == NULL)
1143 ERR_clear_error();
ed7f60fb 1144 }
33ab2e31 1145 if (enddate && !ASN1_TIME_set_string(NULL, enddate))
ed7f60fb 1146 {
33ab2e31 1147 BIO_printf(bio_err,"end date is invalid, it should be YYMMDDHHMMSSZ or YYYYMMDDHHMMSSZ\n");
ed7f60fb 1148 goto err;
58964a49
RE
1149 }
1150
d02b48c6
RE
1151 if (days == 0)
1152 {
b7a26e6d
DSH
1153 if(!NCONF_get_number(conf,section, ENV_DEFAULT_DAYS, &days))
1154 days = 0;
d02b48c6 1155 }
ed7f60fb 1156 if (!enddate && (days == 0))
d02b48c6
RE
1157 {
1158 BIO_printf(bio_err,"cannot lookup how many days to certify for\n");
1159 goto err;
1160 }
1161
64674bcc 1162 if ((serial=load_serial(serialfile, create_ser, NULL)) == NULL)
d02b48c6
RE
1163 {
1164 BIO_printf(bio_err,"error while loading serial number\n");
1165 goto err;
1166 }
1167 if (verbose)
1168 {
2245cd87
RL
1169 if (BN_is_zero(serial))
1170 BIO_printf(bio_err,"next serial number is 00\n");
1171 else
1172 {
1173 if ((f=BN_bn2hex(serial)) == NULL) goto err;
1174 BIO_printf(bio_err,"next serial number is %s\n",f);
1175 OPENSSL_free(f);
1176 }
d02b48c6
RE
1177 }
1178
b7a26e6d 1179 if ((attribs=NCONF_get_section(conf,policy)) == NULL)
d02b48c6
RE
1180 {
1181 BIO_printf(bio_err,"unable to find 'section' for %s\n",policy);
1182 goto err;
1183 }
1184
b4604683 1185 if ((cert_sk=sk_X509_new_null()) == NULL)
d02b48c6 1186 {
26a3a48d 1187 BIO_printf(bio_err,"Memory allocation failure\n");
d02b48c6
RE
1188 goto err;
1189 }
1190 if (spkac_file != NULL)
1191 {
1192 total++;
4c623cdd
DSH
1193 j=certify_spkac(&x,spkac_file,pkey,x509,dgst,sigopts,
1194 attribs,db, serial,subj,chtype,multirdn,
1195 email_dn,startdate,enddate,days,extensions,
89da653f 1196 conf,verbose,certopt,nameopt,default_op,ext_copy);
d02b48c6
RE
1197 if (j < 0) goto err;
1198 if (j > 0)
1199 {
1200 total_done++;
1201 BIO_printf(bio_err,"\n");
1202 if (!BN_add_word(serial,1)) goto err;
b4604683 1203 if (!sk_X509_push(cert_sk,x))
d02b48c6 1204 {
26a3a48d 1205 BIO_printf(bio_err,"Memory allocation failure\n");
d02b48c6
RE
1206 goto err;
1207 }
1208 if (outfile)
1209 {
1210 output_der = 1;
1211 batch = 1;
1212 }
1213 }
1214 }
58964a49
RE
1215 if (ss_cert_file != NULL)
1216 {
1217 total++;
4c623cdd
DSH
1218 j=certify_cert(&x,ss_cert_file,pkey,x509,dgst,sigopts,
1219 attribs,
cbdac46d 1220 db,serial,subj,chtype,multirdn,email_dn,startdate,enddate,days,batch,
535d79da 1221 extensions,conf,verbose, certopt, nameopt,
ce16450a 1222 default_op, ext_copy, e);
58964a49
RE
1223 if (j < 0) goto err;
1224 if (j > 0)
1225 {
1226 total_done++;
1227 BIO_printf(bio_err,"\n");
1228 if (!BN_add_word(serial,1)) goto err;
b4604683 1229 if (!sk_X509_push(cert_sk,x))
58964a49 1230 {
26a3a48d 1231 BIO_printf(bio_err,"Memory allocation failure\n");
58964a49
RE
1232 goto err;
1233 }
1234 }
1235 }
d02b48c6
RE
1236 if (infile != NULL)
1237 {
1238 total++;
4c623cdd 1239 j=certify(&x,infile,pkey,x509p,dgst,sigopts, attribs,db,
cbdac46d 1240 serial,subj,chtype,multirdn,email_dn,startdate,enddate,days,batch,
535d79da 1241 extensions,conf,verbose, certopt, nameopt,
16b1b035 1242 default_op, ext_copy, selfsign);
d02b48c6
RE
1243 if (j < 0) goto err;
1244 if (j > 0)
1245 {
1246 total_done++;
1247 BIO_printf(bio_err,"\n");
1248 if (!BN_add_word(serial,1)) goto err;
b4604683 1249 if (!sk_X509_push(cert_sk,x))
d02b48c6 1250 {
26a3a48d 1251 BIO_printf(bio_err,"Memory allocation failure\n");
d02b48c6
RE
1252 goto err;
1253 }
1254 }
1255 }
1256 for (i=0; i<argc; i++)
1257 {
1258 total++;
4c623cdd 1259 j=certify(&x,argv[i],pkey,x509p,dgst,sigopts,attribs,db,
cbdac46d 1260 serial,subj,chtype,multirdn,email_dn,startdate,enddate,days,batch,
535d79da 1261 extensions,conf,verbose, certopt, nameopt,
16b1b035 1262 default_op, ext_copy, selfsign);
d02b48c6
RE
1263 if (j < 0) goto err;
1264 if (j > 0)
1265 {
1266 total_done++;
1267 BIO_printf(bio_err,"\n");
1268 if (!BN_add_word(serial,1)) goto err;
b4604683 1269 if (!sk_X509_push(cert_sk,x))
d02b48c6 1270 {
26a3a48d 1271 BIO_printf(bio_err,"Memory allocation failure\n");
d02b48c6
RE
1272 goto err;
1273 }
1274 }
1275 }
1276 /* we have a stack of newly certified certificates
1277 * and a data base and serial number that need
1278 * updating */
1279
b4604683 1280 if (sk_X509_num(cert_sk) > 0)
d02b48c6
RE
1281 {
1282 if (!batch)
1283 {
1284 BIO_printf(bio_err,"\n%d out of %d certificate requests certified, commit? [y/n]",total_done,total);
d58d092b 1285 (void)BIO_flush(bio_err);
d02b48c6 1286 buf[0][0]='\0';
0e039aa7
DSH
1287 if (!fgets(buf[0],10,stdin))
1288 {
1289 BIO_printf(bio_err,"CERTIFICATION CANCELED: I/O error\n");
1290 ret=0;
1291 goto err;
1292 }
d02b48c6
RE
1293 if ((buf[0][0] != 'y') && (buf[0][0] != 'Y'))
1294 {
1295 BIO_printf(bio_err,"CERTIFICATION CANCELED\n");
1296 ret=0;
1297 goto err;
1298 }
1299 }
1300
b4604683 1301 BIO_printf(bio_err,"Write out database with %d new entries\n",sk_X509_num(cert_sk));
d02b48c6 1302
4c771796 1303 if (!save_serial(serialfile,"new",serial,NULL)) goto err;
7d7d2cbc 1304
f85b68cd 1305 if (!save_index(dbfile, "new", db)) goto err;
d02b48c6
RE
1306 }
1307
1308 if (verbose)
1309 BIO_printf(bio_err,"writing new certificates\n");
b4604683 1310 for (i=0; i<sk_X509_num(cert_sk); i++)
d02b48c6
RE
1311 {
1312 int k;
d420ac2c 1313 char *n;
d02b48c6 1314
b4604683 1315 x=sk_X509_value(cert_sk,i);
d02b48c6
RE
1316
1317 j=x->cert_info->serialNumber->length;
ff990440 1318 p=(const char *)x->cert_info->serialNumber->data;
d02b48c6 1319
c8632017 1320 if(strlen(outdir) >= (size_t)(j ? BSIZE-j*2-6 : BSIZE-8))
54a656ef
BL
1321 {
1322 BIO_printf(bio_err,"certificate file name too long\n");
1323 goto err;
1324 }
1325
1326 strcpy(buf[2],outdir);
7d7d2cbc 1327
bc36ee62 1328#ifndef OPENSSL_SYS_VMS
d420ac2c 1329 BUF_strlcat(buf[2],"/",sizeof(buf[2]));
7d7d2cbc
UM
1330#endif
1331
d420ac2c 1332 n=(char *)&(buf[2][strlen(buf[2])]);
d02b48c6
RE
1333 if (j > 0)
1334 {
1335 for (k=0; k<j; k++)
1336 {
d420ac2c
RL
1337 if (n >= &(buf[2][sizeof(buf[2])]))
1338 break;
1339 BIO_snprintf(n,
1340 &buf[2][0] + sizeof(buf[2]) - n,
1341 "%02X",(unsigned char)*(p++));
d02b48c6
RE
1342 n+=2;
1343 }
1344 }
1345 else
1346 {
1347 *(n++)='0';
1348 *(n++)='0';
1349 }
1350 *(n++)='.'; *(n++)='p'; *(n++)='e'; *(n++)='m';
1351 *n='\0';
1352 if (verbose)
1353 BIO_printf(bio_err,"writing %s\n",buf[2]);
1354
1355 if (BIO_write_filename(Cout,buf[2]) <= 0)
1356 {
1357 perror(buf[2]);
1358 goto err;
1359 }
82fc1d9c
DSH
1360 write_new_certificate(Cout,x, 0, notext);
1361 write_new_certificate(Sout,x, output_der, notext);
d02b48c6
RE
1362 }
1363
b4604683 1364 if (sk_X509_num(cert_sk))
d02b48c6
RE
1365 {
1366 /* Rename the database and the serial file */
4c771796 1367 if (!rotate_serial(serialfile,"new","old")) goto err;
d02b48c6 1368
f85b68cd 1369 if (!rotate_index(dbfile,"new","old")) goto err;
7d7d2cbc 1370
d02b48c6
RE
1371 BIO_printf(bio_err,"Data Base Updated\n");
1372 }
1373 }
1374
1375 /*****************************************************************/
1376 if (gencrl)
1377 {
a6b7ffdd 1378 int crl_v2 = 0;
2c0d1012
BM
1379 if (!crl_ext)
1380 {
b7a26e6d 1381 crl_ext=NCONF_get_string(conf,section,ENV_CRLEXT);
2c0d1012
BM
1382 if (!crl_ext)
1383 ERR_clear_error();
1384 }
1385 if (crl_ext)
1386 {
1756d405 1387 /* Check syntax of file */
41b731f2
DSH
1388 X509V3_CTX ctx;
1389 X509V3_set_ctx_test(&ctx);
b7a26e6d
DSH
1390 X509V3_set_nconf(&ctx, conf);
1391 if (!X509V3_EXT_add_nconf(conf, &ctx, crl_ext, NULL))
2c0d1012 1392 {
1756d405
DSH
1393 BIO_printf(bio_err,
1394 "Error Loading CRL extension section %s\n",
1395 crl_ext);
1396 ret = 1;
1397 goto err;
2c0d1012 1398 }
1756d405 1399 }
d02b48c6 1400
fd4ef699
RL
1401 if ((crlnumberfile=NCONF_get_string(conf,section,ENV_CRLNUMBER))
1402 != NULL)
1403 if ((crlnumber=load_serial(crlnumberfile,0,NULL)) == NULL)
1404 {
1405 BIO_printf(bio_err,"error while loading CRL number\n");
1406 goto err;
1407 }
1408
f6e7d014 1409 if (!crldays && !crlhours && !crlsec)
d02b48c6 1410 {
b7a26e6d
DSH
1411 if (!NCONF_get_number(conf,section,
1412 ENV_DEFAULT_CRL_DAYS, &crldays))
1413 crldays = 0;
1414 if (!NCONF_get_number(conf,section,
1415 ENV_DEFAULT_CRL_HOURS, &crlhours))
1416 crlhours = 0;
510777f2 1417 ERR_clear_error();
d02b48c6 1418 }
f6e7d014 1419 if ((crldays == 0) && (crlhours == 0) && (crlsec == 0))
d02b48c6 1420 {
7e661761 1421 BIO_printf(bio_err,"cannot lookup how long until the next CRL is issued\n");
d02b48c6
RE
1422 goto err;
1423 }
1424
1425 if (verbose) BIO_printf(bio_err,"making CRL\n");
1426 if ((crl=X509_CRL_new()) == NULL) goto err;
7e661761 1427 if (!X509_CRL_set_issuer_name(crl, X509_get_subject_name(x509))) goto err;
d02b48c6 1428
35bf3541
DSH
1429 tmptm = ASN1_TIME_new();
1430 if (!tmptm) goto err;
1431 X509_gmtime_adj(tmptm,0);
1432 X509_CRL_set_lastUpdate(crl, tmptm);
17b5326b
DSH
1433 if (!X509_time_adj_ex(tmptm, crldays, crlhours*60*60 + crlsec,
1434 NULL))
1435 {
1436 BIO_puts(bio_err, "error setting CRL nextUpdate\n");
1437 goto err;
1438 }
35bf3541
DSH
1439 X509_CRL_set_nextUpdate(crl, tmptm);
1440
1441 ASN1_TIME_free(tmptm);
d02b48c6 1442
c869da88 1443 for (i=0; i<sk_OPENSSL_PSTRING_num(db->db->data); i++)
d02b48c6 1444 {
c869da88 1445 pp=sk_OPENSSL_PSTRING_value(db->db->data,i);
d02b48c6
RE
1446 if (pp[DB_type][0] == DB_TYPE_REV)
1447 {
1448 if ((r=X509_REVOKED_new()) == NULL) goto err;
a6b7ffdd
DSH
1449 j = make_revoked(r, pp[DB_rev_date]);
1450 if (!j) goto err;
1451 if (j == 2) crl_v2 = 1;
acba75c5
DSH
1452 if (!BN_hex2bn(&serial, pp[DB_serial]))
1453 goto err;
35bf3541 1454 tmpser = BN_to_ASN1_INTEGER(serial, NULL);
acba75c5
DSH
1455 BN_free(serial);
1456 serial = NULL;
35bf3541 1457 if (!tmpser)
d02b48c6 1458 goto err;
35bf3541
DSH
1459 X509_REVOKED_set_serialNumber(r, tmpser);
1460 ASN1_INTEGER_free(tmpser);
9d6b1ce6 1461 X509_CRL_add0_revoked(crl,r);
d02b48c6
RE
1462 }
1463 }
35bf3541 1464
d02b48c6
RE
1465 /* sort the data so it will be written in serial
1466 * number order */
35bf3541 1467 X509_CRL_sort(crl);
d02b48c6 1468
13e91dd3 1469 /* we now have a CRL */
d02b48c6 1470 if (verbose) BIO_printf(bio_err,"signing CRL\n");
512d2228 1471
1756d405
DSH
1472 /* Add any extensions asked for */
1473
fd4ef699 1474 if (crl_ext || crlnumberfile != NULL)
c67cdb50
BM
1475 {
1476 X509V3_CTX crlctx;
c67cdb50 1477 X509V3_set_ctx(&crlctx, x509, NULL, NULL, crl, 0);
b7a26e6d 1478 X509V3_set_nconf(&crlctx, conf);
1756d405 1479
fd4ef699
RL
1480 if (crl_ext)
1481 if (!X509V3_EXT_CRL_add_nconf(conf, &crlctx,
1482 crl_ext, crl)) goto err;
1483 if (crlnumberfile != NULL)
1484 {
1485 tmpser = BN_to_ASN1_INTEGER(crlnumber, NULL);
1486 if (!tmpser) goto err;
1487 X509_CRL_add1_ext_i2d(crl,NID_crl_number,tmpser,0,0);
1488 ASN1_INTEGER_free(tmpser);
1489 crl_v2 = 1;
1490 if (!BN_add_word(crlnumber,1)) goto err;
1491 }
c67cdb50 1492 }
a6b7ffdd
DSH
1493 if (crl_ext || crl_v2)
1494 {
35bf3541
DSH
1495 if (!X509_CRL_set_version(crl, 1))
1496 goto err; /* version 2 CRL */
a6b7ffdd 1497 }
1756d405 1498
fd4ef699 1499
68d39f3c
MC
1500 /* we have a CRL number that need updating */
1501 if (crlnumberfile != NULL)
fd4ef699
RL
1502 if (!save_serial(crlnumberfile,"new",crlnumber,NULL)) goto err;
1503
f6e7d014
DSH
1504 if (crlnumber)
1505 {
1506 BN_free(crlnumber);
1507 crlnumber = NULL;
1508 }
1509
4c623cdd 1510 if (!do_X509_CRL_sign(bio_err,crl,pkey,dgst,sigopts)) goto err;
d02b48c6
RE
1511
1512 PEM_write_bio_X509_CRL(Sout,crl);
fd4ef699
RL
1513
1514 if (crlnumberfile != NULL) /* Rename the crlnumber file */
1515 if (!rotate_serial(crlnumberfile,"new","old")) goto err;
1516
d02b48c6
RE
1517 }
1518 /*****************************************************************/
a36a1a51 1519 if (dorevoke)
f9a25931 1520 {
b1c4fe36
BM
1521 if (infile == NULL)
1522 {
1523 BIO_printf(bio_err,"no input files\n");
1524 goto err;
1525 }
f9a25931
RE
1526 else
1527 {
a0ad17bb 1528 X509 *revcert;
ce16450a
RL
1529 revcert=load_cert(bio_err, infile, FORMAT_PEM,
1530 NULL, e, infile);
a0ad17bb 1531 if (revcert == NULL)
f9a25931 1532 goto err;
648f551a
DSH
1533 if (dorevoke == 2)
1534 rev_type = -1;
a6b7ffdd 1535 j=do_revoke(revcert,db, rev_type, rev_arg);
a0ad17bb
DSH
1536 if (j <= 0) goto err;
1537 X509_free(revcert);
f9a25931 1538
f85b68cd
RL
1539 if (!save_index(dbfile, "new", db)) goto err;
1540
1541 if (!rotate_index(dbfile, "new", "old")) goto err;
54a656ef 1542
b1c4fe36
BM
1543 BIO_printf(bio_err,"Data Base Updated\n");
1544 }
f9a25931
RE
1545 }
1546 /*****************************************************************/
d02b48c6
RE
1547 ret=0;
1548err:
54a656ef
BL
1549 if(tofree)
1550 OPENSSL_free(tofree);
645749ef
RL
1551 BIO_free_all(Cout);
1552 BIO_free_all(Sout);
1553 BIO_free_all(out);
ce16450a 1554 BIO_free_all(in);
d02b48c6 1555
4e78074b
RL
1556 if (cert_sk)
1557 sk_X509_pop_free(cert_sk,X509_free);
d02b48c6
RE
1558
1559 if (ret) ERR_print_errors(bio_err);
a31011e8 1560 app_RAND_write_file(randfile, bio_err);
09ad2458 1561 if (free_key && key)
b65f8513 1562 OPENSSL_free(key);
a43aa73e 1563 BN_free(serial);
f6e7d014 1564 BN_free(crlnumber);
f85b68cd 1565 free_index(db);
624fbfca
DSH
1566 if (sigopts)
1567 sk_OPENSSL_STRING_free(sigopts);
a43aa73e 1568 EVP_PKEY_free(pkey);
16b1b035 1569 if (x509) X509_free(x509);
a43aa73e 1570 X509_CRL_free(crl);
b7a26e6d 1571 NCONF_free(conf);
96ea4ae9 1572 NCONF_free(extconf);
a43aa73e 1573 OBJ_cleanup();
ce16450a 1574 apps_shutdown();
1c3e4a36 1575 OPENSSL_EXIT(ret);
d02b48c6
RE
1576 }
1577
7d727231 1578static void lookup_fail(const char *name, const char *tag)
d02b48c6
RE
1579 {
1580 BIO_printf(bio_err,"variable lookup failed for %s::%s\n",name,tag);
1581 }
1582
6b691a5c 1583static int certify(X509 **xret, char *infile, EVP_PKEY *pkey, X509 *x509,
4c623cdd
DSH
1584 const EVP_MD *dgst, STACK_OF(OPENSSL_STRING) *sigopts,
1585 STACK_OF(CONF_VALUE) *policy, CA_DB *db,
1586 BIGNUM *serial, char *subj,unsigned long chtype, int multirdn,
1587 int email_dn, char *startdate, char *enddate,
89da653f 1588 long days, int batch, char *ext_sect, CONF *lconf, int verbose,
535d79da 1589 unsigned long certopt, unsigned long nameopt, int default_op,
16b1b035 1590 int ext_copy, int selfsign)
d02b48c6
RE
1591 {
1592 X509_REQ *req=NULL;
1593 BIO *in=NULL;
1594 EVP_PKEY *pktmp=NULL;
1595 int ok= -1,i;
1596
1597 in=BIO_new(BIO_s_file());
1598
1599 if (BIO_read_filename(in,infile) <= 0)
1600 {
1601 perror(infile);
1602 goto err;
1603 }
74678cc2 1604 if ((req=PEM_read_bio_X509_REQ(in,NULL,NULL,NULL)) == NULL)
d02b48c6
RE
1605 {
1606 BIO_printf(bio_err,"Error reading certificate request in %s\n",
1607 infile);
1608 goto err;
1609 }
1610 if (verbose)
1611 X509_REQ_print(bio_err,req);
1612
1613 BIO_printf(bio_err,"Check that the request matches the signature\n");
1614
16b1b035
RL
1615 if (selfsign && !X509_REQ_check_private_key(req,pkey))
1616 {
1617 BIO_printf(bio_err,"Certificate request and CA private key do not match\n");
1618 ok=0;
1619 goto err;
1620 }
d02b48c6
RE
1621 if ((pktmp=X509_REQ_get_pubkey(req)) == NULL)
1622 {
1623 BIO_printf(bio_err,"error unpacking public key\n");
1624 goto err;
1625 }
1626 i=X509_REQ_verify(req,pktmp);
10061c7c 1627 EVP_PKEY_free(pktmp);
d02b48c6
RE
1628 if (i < 0)
1629 {
1630 ok=0;
1631 BIO_printf(bio_err,"Signature verification problems....\n");
a30bdb55 1632 ERR_print_errors(bio_err);
d02b48c6
RE
1633 goto err;
1634 }
1635 if (i == 0)
1636 {
1637 ok=0;
1638 BIO_printf(bio_err,"Signature did not match the certificate request\n");
a30bdb55 1639 ERR_print_errors(bio_err);
d02b48c6
RE
1640 goto err;
1641 }
1642 else
1643 BIO_printf(bio_err,"Signature ok\n");
1644
4c623cdd
DSH
1645 ok=do_body(xret,pkey,x509,dgst,sigopts, policy,db,serial,subj,chtype,
1646 multirdn, email_dn,
89da653f 1647 startdate,enddate,days,batch,verbose,req,ext_sect,lconf,
16b1b035 1648 certopt, nameopt, default_op, ext_copy, selfsign);
d02b48c6
RE
1649
1650err:
1651 if (req != NULL) X509_REQ_free(req);
1652 if (in != NULL) BIO_free(in);
1653 return(ok);
1654 }
1655
6b691a5c 1656static int certify_cert(X509 **xret, char *infile, EVP_PKEY *pkey, X509 *x509,
4c623cdd
DSH
1657 const EVP_MD *dgst, STACK_OF(OPENSSL_STRING) *sigopts,
1658 STACK_OF(CONF_VALUE) *policy, CA_DB *db,
cbdac46d 1659 BIGNUM *serial, char *subj, unsigned long chtype, int multirdn, int email_dn, char *startdate, char *enddate,
89da653f 1660 long days, int batch, char *ext_sect, CONF *lconf, int verbose,
535d79da 1661 unsigned long certopt, unsigned long nameopt, int default_op,
ce16450a 1662 int ext_copy, ENGINE *e)
58964a49
RE
1663 {
1664 X509 *req=NULL;
1665 X509_REQ *rreq=NULL;
58964a49
RE
1666 EVP_PKEY *pktmp=NULL;
1667 int ok= -1,i;
1668
ce16450a 1669 if ((req=load_cert(bio_err, infile, FORMAT_PEM, NULL, e, infile)) == NULL)
58964a49 1670 goto err;
58964a49
RE
1671 if (verbose)
1672 X509_print(bio_err,req);
1673
1674 BIO_printf(bio_err,"Check that the request matches the signature\n");
1675
1676 if ((pktmp=X509_get_pubkey(req)) == NULL)
1677 {
1678 BIO_printf(bio_err,"error unpacking public key\n");
1679 goto err;
1680 }
1681 i=X509_verify(req,pktmp);
10061c7c 1682 EVP_PKEY_free(pktmp);
58964a49
RE
1683 if (i < 0)
1684 {
1685 ok=0;
1686 BIO_printf(bio_err,"Signature verification problems....\n");
1687 goto err;
1688 }
1689 if (i == 0)
1690 {
1691 ok=0;
dfeab068 1692 BIO_printf(bio_err,"Signature did not match the certificate\n");
58964a49
RE
1693 goto err;
1694 }
1695 else
1696 BIO_printf(bio_err,"Signature ok\n");
1697
1698 if ((rreq=X509_to_X509_REQ(req,NULL,EVP_md5())) == NULL)
1699 goto err;
1700
4c623cdd 1701 ok=do_body(xret,pkey,x509,dgst,sigopts,policy,db,serial,subj,chtype,multirdn,email_dn,startdate,enddate,
89da653f 1702 days,batch,verbose,rreq,ext_sect,lconf, certopt, nameopt, default_op,
16b1b035 1703 ext_copy, 0);
58964a49
RE
1704
1705err:
1706 if (rreq != NULL) X509_REQ_free(rreq);
1707 if (req != NULL) X509_free(req);
58964a49
RE
1708 return(ok);
1709 }
1710
6b691a5c 1711static int do_body(X509 **xret, EVP_PKEY *pkey, X509 *x509, const EVP_MD *dgst,
4c623cdd
DSH
1712 STACK_OF(OPENSSL_STRING) *sigopts, STACK_OF(CONF_VALUE) *policy,
1713 CA_DB *db, BIGNUM *serial, char *subj,
cbdac46d 1714 unsigned long chtype, int multirdn,
89da653f
BM
1715 int email_dn, char *startdate, char *enddate, long days, int batch,
1716 int verbose, X509_REQ *req, char *ext_sect, CONF *lconf,
535d79da 1717 unsigned long certopt, unsigned long nameopt, int default_op,
16b1b035 1718 int ext_copy, int selfsign)
d02b48c6 1719 {
89da653f 1720 X509_NAME *name=NULL,*CAname=NULL,*subject=NULL, *dn_subject=NULL;
58964a49 1721 ASN1_UTCTIME *tm,*tmptm;
d02b48c6
RE
1722 ASN1_STRING *str,*str2;
1723 ASN1_OBJECT *obj;
1724 X509 *ret=NULL;
1725 X509_CINF *ci;
1726 X509_NAME_ENTRY *ne;
1727 X509_NAME_ENTRY *tne,*push;
d02b48c6
RE
1728 EVP_PKEY *pktmp;
1729 int ok= -1,i,j,last,nid;
7d727231 1730 const char *p;
d02b48c6 1731 CONF_VALUE *cv;
c869da88
DSH
1732 OPENSSL_STRING row[DB_NUMBER];
1733 OPENSSL_STRING *irow=NULL;
1734 OPENSSL_STRING *rrow=NULL;
535d79da 1735 char buf[25];
d02b48c6 1736
58964a49
RE
1737 tmptm=ASN1_UTCTIME_new();
1738 if (tmptm == NULL)
1739 {
1740 BIO_printf(bio_err,"malloc error\n");
1741 return(0);
1742 }
1743
d02b48c6
RE
1744 for (i=0; i<DB_NUMBER; i++)
1745 row[i]=NULL;
1746
bad40585
BM
1747 if (subj)
1748 {
cbdac46d 1749 X509_NAME *n = parse_name(subj, chtype, multirdn);
bad40585
BM
1750
1751 if (!n)
1752 {
1753 ERR_print_errors(bio_err);
1754 goto err;
1755 }
1756 X509_REQ_set_subject_name(req,n);
1757 req->req_info->enc.modified = 1;
1758 X509_NAME_free(n);
1759 }
1760
535d79da
DSH
1761 if (default_op)
1762 BIO_printf(bio_err,"The Subject's Distinguished Name is as follows\n");
89da653f 1763
d02b48c6
RE
1764 name=X509_REQ_get_subject_name(req);
1765 for (i=0; i<X509_NAME_entry_count(name); i++)
1766 {
535d79da 1767 ne= X509_NAME_get_entry(name,i);
d02b48c6 1768 str=X509_NAME_ENTRY_get_data(ne);
535d79da 1769 obj=X509_NAME_ENTRY_get_object(ne);
d02b48c6
RE
1770
1771 if (msie_hack)
1772 {
1773 /* assume all type should be strings */
1774 nid=OBJ_obj2nid(ne->object);
1775
1776 if (str->type == V_ASN1_UNIVERSALSTRING)
1777 ASN1_UNIVERSALSTRING_to_string(str);
1778
1779 if ((str->type == V_ASN1_IA5STRING) &&
1780 (nid != NID_pkcs9_emailAddress))
1781 str->type=V_ASN1_T61STRING;
1782
1783 if ((nid == NID_pkcs9_emailAddress) &&
1784 (str->type == V_ASN1_PRINTABLESTRING))
1785 str->type=V_ASN1_IA5STRING;
1786 }
1787
89da653f
BM
1788 /* If no EMAIL is wanted in the subject */
1789 if ((OBJ_obj2nid(obj) == NID_pkcs9_emailAddress) && (!email_dn))
1790 continue;
1791
d02b48c6
RE
1792 /* check some things */
1793 if ((OBJ_obj2nid(obj) == NID_pkcs9_emailAddress) &&
1794 (str->type != V_ASN1_IA5STRING))
1795 {
1796 BIO_printf(bio_err,"\nemailAddress type needs to be of type IA5STRING\n");
1797 goto err;
1798 }
e7156ff2 1799 if ((str->type != V_ASN1_BMPSTRING) && (str->type != V_ASN1_UTF8STRING))
d02b48c6 1800 {
e7156ff2
DSH
1801 j=ASN1_PRINTABLE_type(str->data,str->length);
1802 if ( ((j == V_ASN1_T61STRING) &&
1803 (str->type != V_ASN1_T61STRING)) ||
1804 ((j == V_ASN1_IA5STRING) &&
1805 (str->type == V_ASN1_PRINTABLESTRING)))
1806 {
1807 BIO_printf(bio_err,"\nThe string contains characters that are illegal for the ASN.1 type\n");
1808 goto err;
1809 }
d02b48c6 1810 }
535d79da
DSH
1811
1812 if (default_op)
1813 old_entry_print(bio_err, obj, str);
d02b48c6
RE
1814 }
1815
1816 /* Ok, now we check the 'policy' stuff. */
1817 if ((subject=X509_NAME_new()) == NULL)
1818 {
26a3a48d 1819 BIO_printf(bio_err,"Memory allocation failure\n");
d02b48c6
RE
1820 goto err;
1821 }
1822
1823 /* take a copy of the issuer name before we mess with it. */
16b1b035
RL
1824 if (selfsign)
1825 CAname=X509_NAME_dup(name);
1826 else
1827 CAname=X509_NAME_dup(x509->cert_info->subject);
d02b48c6
RE
1828 if (CAname == NULL) goto err;
1829 str=str2=NULL;
1830
ba404b5e 1831 for (i=0; i<sk_CONF_VALUE_num(policy); i++)
d02b48c6 1832 {
ba404b5e 1833 cv=sk_CONF_VALUE_value(policy,i); /* get the object id */
d02b48c6
RE
1834 if ((j=OBJ_txt2nid(cv->name)) == NID_undef)
1835 {
1836 BIO_printf(bio_err,"%s:unknown object type in 'policy' configuration\n",cv->name);
1837 goto err;
1838 }
1839 obj=OBJ_nid2obj(j);
1840
1841 last= -1;
1842 for (;;)
1843 {
1844 /* lookup the object in the supplied name list */
1845 j=X509_NAME_get_index_by_OBJ(name,obj,last);
1846 if (j < 0)
1847 {
1848 if (last != -1) break;
1849 tne=NULL;
1850 }
1851 else
1852 {
1853 tne=X509_NAME_get_entry(name,j);
1854 }
1855 last=j;
1856
1857 /* depending on the 'policy', decide what to do. */
1858 push=NULL;
1859 if (strcmp(cv->value,"optional") == 0)
1860 {
1861 if (tne != NULL)
1862 push=tne;
1863 }
1864 else if (strcmp(cv->value,"supplied") == 0)
1865 {
1866 if (tne == NULL)
1867 {
1868 BIO_printf(bio_err,"The %s field needed to be supplied and was missing\n",cv->name);
1869 goto err;
1870 }
1871 else
1872 push=tne;
1873 }
1874 else if (strcmp(cv->value,"match") == 0)
1875 {
1876 int last2;
1877
1878 if (tne == NULL)
1879 {
1880 BIO_printf(bio_err,"The mandatory %s field was missing\n",cv->name);
1881 goto err;
1882 }
1883
1884 last2= -1;
1885
1886again2:
1887 j=X509_NAME_get_index_by_OBJ(CAname,obj,last2);
1888 if ((j < 0) && (last2 == -1))
1889 {
1890 BIO_printf(bio_err,"The %s field does not exist in the CA certificate,\nthe 'policy' is misconfigured\n",cv->name);
1891 goto err;
1892 }
1893 if (j >= 0)
1894 {
1895 push=X509_NAME_get_entry(CAname,j);
1896 str=X509_NAME_ENTRY_get_data(tne);
1897 str2=X509_NAME_ENTRY_get_data(push);
1898 last2=j;
1899 if (ASN1_STRING_cmp(str,str2) != 0)
1900 goto again2;
1901 }
1902 if (j < 0)
1903 {
c6125200 1904 BIO_printf(bio_err,"The %s field needed to be the same in the\nCA certificate (%s) and the request (%s)\n",cv->name,((str2 == NULL)?"NULL":(char *)str2->data),((str == NULL)?"NULL":(char *)str->data));
d02b48c6
RE
1905 goto err;
1906 }
1907 }
1908 else
1909 {
1910 BIO_printf(bio_err,"%s:invalid type in 'policy' configuration\n",cv->value);
1911 goto err;
1912 }
1913
1914 if (push != NULL)
1915 {
74400f73 1916 if (!X509_NAME_add_entry(subject,push, -1, 0))
d02b48c6
RE
1917 {
1918 if (push != NULL)
1919 X509_NAME_ENTRY_free(push);
26a3a48d 1920 BIO_printf(bio_err,"Memory allocation failure\n");
d02b48c6
RE
1921 goto err;
1922 }
1923 }
1924 if (j < 0) break;
1925 }
1926 }
1927
1928 if (preserve)
1929 {
1930 X509_NAME_free(subject);
89da653f
BM
1931 /* subject=X509_NAME_dup(X509_REQ_get_subject_name(req)); */
1932 subject=X509_NAME_dup(name);
d02b48c6
RE
1933 if (subject == NULL) goto err;
1934 }
1935
1936 if (verbose)
657e60fa 1937 BIO_printf(bio_err,"The subject name appears to be ok, checking data base for clashes\n");
d02b48c6 1938
89da653f
BM
1939 /* Build the correct Subject if no e-mail is wanted in the subject */
1940 /* and add it later on because of the method extensions are added (altName) */
1941
437db75b
DSH
1942 if (email_dn)
1943 dn_subject = subject;
1944 else
89da653f 1945 {
437db75b
DSH
1946 X509_NAME_ENTRY *tmpne;
1947 /* Its best to dup the subject DN and then delete any email
1948 * addresses because this retains its structure.
1949 */
1950 if (!(dn_subject = X509_NAME_dup(subject)))
89da653f
BM
1951 {
1952 BIO_printf(bio_err,"Memory allocation failure\n");
1953 goto err;
1954 }
437db75b 1955 while((i = X509_NAME_get_index_by_NID(dn_subject,
6229a560 1956 NID_pkcs9_emailAddress, -1)) >= 0)
89da653f 1957 {
437db75b
DSH
1958 tmpne = X509_NAME_get_entry(dn_subject, i);
1959 X509_NAME_delete_entry(dn_subject, i);
1960 X509_NAME_ENTRY_free(tmpne);
89da653f
BM
1961 }
1962 }
1963
2245cd87
RL
1964 if (BN_is_zero(serial))
1965 row[DB_serial]=BUF_strdup("00");
1966 else
1967 row[DB_serial]=BN_bn2hex(serial);
87e8feca 1968 if (row[DB_serial] == NULL)
d02b48c6 1969 {
26a3a48d 1970 BIO_printf(bio_err,"Memory allocation failure\n");
d02b48c6
RE
1971 goto err;
1972 }
1973
f85b68cd 1974 if (db->attributes.unique_subject)
d02b48c6 1975 {
c869da88 1976 OPENSSL_STRING *crow=row;
3c1d6bbc
BL
1977
1978 rrow=TXT_DB_get_by_index(db->db,DB_name,crow);
f85b68cd
RL
1979 if (rrow != NULL)
1980 {
1981 BIO_printf(bio_err,
1982 "ERROR:There is already a certificate for %s\n",
1983 row[DB_name]);
1984 }
d02b48c6 1985 }
f85b68cd 1986 if (rrow == NULL)
d02b48c6 1987 {
f85b68cd 1988 rrow=TXT_DB_get_by_index(db->db,DB_serial,row);
d02b48c6
RE
1989 if (rrow != NULL)
1990 {
1991 BIO_printf(bio_err,"ERROR:Serial number %s has already been issued,\n",
1992 row[DB_serial]);
1993 BIO_printf(bio_err," check the database/serial_file for corruption\n");
1994 }
1995 }
1996
1997 if (rrow != NULL)
1998 {
1999 BIO_printf(bio_err,
2000 "The matching entry has the following details\n");
2001 if (rrow[DB_type][0] == 'E')
2002 p="Expired";
2003 else if (rrow[DB_type][0] == 'R')
2004 p="Revoked";
2005 else if (rrow[DB_type][0] == 'V')
2006 p="Valid";
2007 else
2008 p="\ninvalid type, Data base error\n";
b1c4fe36 2009 BIO_printf(bio_err,"Type :%s\n",p);;
d02b48c6
RE
2010 if (rrow[DB_type][0] == 'R')
2011 {
2012 p=rrow[DB_exp_date]; if (p == NULL) p="undef";
2013 BIO_printf(bio_err,"Was revoked on:%s\n",p);
2014 }
2015 p=rrow[DB_exp_date]; if (p == NULL) p="undef";
2016 BIO_printf(bio_err,"Expires on :%s\n",p);
2017 p=rrow[DB_serial]; if (p == NULL) p="undef";
2018 BIO_printf(bio_err,"Serial Number :%s\n",p);
2019 p=rrow[DB_file]; if (p == NULL) p="undef";
2020 BIO_printf(bio_err,"File name :%s\n",p);
2021 p=rrow[DB_name]; if (p == NULL) p="undef";
2022 BIO_printf(bio_err,"Subject Name :%s\n",p);
2023 ok= -1; /* This is now a 'bad' error. */
2024 goto err;
2025 }
2026
657e60fa 2027 /* We are now totally happy, lets make and sign the certificate */
d02b48c6
RE
2028 if (verbose)
2029 BIO_printf(bio_err,"Everything appears to be ok, creating and signing the certificate\n");
2030
2031 if ((ret=X509_new()) == NULL) goto err;
2032 ci=ret->cert_info;
2033
2034#ifdef X509_V3
2035 /* Make it an X509 v3 certificate. */
c4448f60 2036 if (!X509_set_version(ret,2)) goto err;
d02b48c6
RE
2037#endif
2038
2039 if (BN_to_ASN1_INTEGER(serial,ci->serialNumber) == NULL)
2040 goto err;
16b1b035
RL
2041 if (selfsign)
2042 {
2043 if (!X509_set_issuer_name(ret,subject))
2044 goto err;
2045 }
2046 else
2047 {
2048 if (!X509_set_issuer_name(ret,X509_get_subject_name(x509)))
2049 goto err;
2050 }
d02b48c6 2051
58964a49 2052 if (strcmp(startdate,"today") == 0)
58964a49 2053 X509_gmtime_adj(X509_get_notBefore(ret),0);
33ab2e31 2054 else ASN1_TIME_set_string(X509_get_notBefore(ret),startdate);
ed7f60fb
DSH
2055
2056 if (enddate == NULL)
87d3a0cd 2057 X509_time_adj_ex(X509_get_notAfter(ret),days, 0, NULL);
f7ac0ec8
DSH
2058 else
2059 {
2060 int tdays;
2061 ASN1_TIME_set_string(X509_get_notAfter(ret),enddate);
2062 ASN1_TIME_diff(&tdays, NULL, NULL, X509_get_notAfter(ret));
2063 days = tdays;
2064 }
ed7f60fb 2065
d02b48c6
RE
2066 if (!X509_set_subject_name(ret,subject)) goto err;
2067
2068 pktmp=X509_REQ_get_pubkey(req);
10061c7c
DSH
2069 i = X509_set_pubkey(ret,pktmp);
2070 EVP_PKEY_free(pktmp);
2071 if (!i) goto err;
d02b48c6
RE
2072
2073 /* Lets add the extensions, if there are any */
b2347661 2074 if (ext_sect)
d02b48c6 2075 {
175b0942 2076 X509V3_CTX ctx;
d02b48c6
RE
2077 if (ci->version == NULL)
2078 if ((ci->version=ASN1_INTEGER_new()) == NULL)
2079 goto err;
2080 ASN1_INTEGER_set(ci->version,2); /* version 3 certificate */
2081
2082 /* Free the current entries if any, there should not
657e60fa 2083 * be any I believe */
d02b48c6 2084 if (ci->extensions != NULL)
0b3f827c
BL
2085 sk_X509_EXTENSION_pop_free(ci->extensions,
2086 X509_EXTENSION_free);
d02b48c6 2087
b2347661
DSH
2088 ci->extensions = NULL;
2089
dfebac32 2090 /* Initialize the context structure */
16b1b035
RL
2091 if (selfsign)
2092 X509V3_set_ctx(&ctx, ret, ret, req, NULL, 0);
2093 else
2094 X509V3_set_ctx(&ctx, x509, ret, req, NULL, 0);
175b0942 2095
dfebac32
BM
2096 if (extconf)
2097 {
2098 if (verbose)
2099 BIO_printf(bio_err, "Extra configuration file found\n");
2100
2101 /* Use the extconf configuration db LHASH */
b7a26e6d 2102 X509V3_set_nconf(&ctx, extconf);
dfebac32
BM
2103
2104 /* Test the structure (needed?) */
2105 /* X509V3_set_ctx_test(&ctx); */
2106
2107 /* Adds exts contained in the configuration file */
b7a26e6d 2108 if (!X509V3_EXT_add_nconf(extconf, &ctx, ext_sect,ret))
dfebac32
BM
2109 {
2110 BIO_printf(bio_err,
2111 "ERROR: adding extensions in section %s\n",
2112 ext_sect);
2113 ERR_print_errors(bio_err);
2114 goto err;
2115 }
2116 if (verbose)
2117 BIO_printf(bio_err, "Successfully added extensions from file.\n");
2118 }
2119 else if (ext_sect)
2120 {
2121 /* We found extensions to be set from config file */
b7a26e6d 2122 X509V3_set_nconf(&ctx, lconf);
d02b48c6 2123
b7a26e6d 2124 if(!X509V3_EXT_add_nconf(lconf, &ctx, ext_sect, ret))
dfebac32
BM
2125 {
2126 BIO_printf(bio_err, "ERROR: adding extensions in section %s\n", ext_sect);
2127 ERR_print_errors(bio_err);
2128 goto err;
2129 }
2130
2131 if (verbose)
2132 BIO_printf(bio_err, "Successfully added extensions from config\n");
2133 }
d02b48c6
RE
2134 }
2135
791bd0cd
DSH
2136 /* Copy extensions from request (if any) */
2137
2138 if (!copy_extensions(ret, req, ext_copy))
2139 {
2140 BIO_printf(bio_err, "ERROR: adding extensions from request\n");
2141 ERR_print_errors(bio_err);
2142 goto err;
2143 }
2144
89da653f
BM
2145 /* Set the right value for the noemailDN option */
2146 if( email_dn == 0 )
2147 {
2148 if (!X509_set_subject_name(ret,dn_subject)) goto err;
2149 }
791bd0cd
DSH
2150
2151 if (!default_op)
2152 {
2153 BIO_printf(bio_err, "Certificate Details:\n");
2154 /* Never print signature details because signature not present */
2155 certopt |= X509_FLAG_NO_SIGDUMP | X509_FLAG_NO_SIGNAME;
2156 X509_print_ex(bio_err, ret, nameopt, certopt);
2157 }
2158
2159 BIO_printf(bio_err,"Certificate is to be certified until ");
33ab2e31 2160 ASN1_TIME_print(bio_err,X509_get_notAfter(ret));
3ae70939 2161 if (days) BIO_printf(bio_err," (%ld days)",days);
791bd0cd 2162 BIO_printf(bio_err, "\n");
d02b48c6
RE
2163
2164 if (!batch)
2165 {
791bd0cd 2166
d02b48c6 2167 BIO_printf(bio_err,"Sign the certificate? [y/n]:");
d58d092b 2168 (void)BIO_flush(bio_err);
d02b48c6 2169 buf[0]='\0';
0e039aa7
DSH
2170 if (!fgets(buf,sizeof(buf)-1,stdin))
2171 {
2172 BIO_printf(bio_err,"CERTIFICATE WILL NOT BE CERTIFIED: I/O error\n");
2173 ok=0;
2174 goto err;
2175 }
d02b48c6
RE
2176 if (!((buf[0] == 'y') || (buf[0] == 'Y')))
2177 {
2178 BIO_printf(bio_err,"CERTIFICATE WILL NOT BE CERTIFIED\n");
2179 ok=0;
2180 goto err;
2181 }
2182 }
2183
b1c4fe36
BM
2184 pktmp=X509_get_pubkey(ret);
2185 if (EVP_PKEY_missing_parameters(pktmp) &&
d02b48c6
RE
2186 !EVP_PKEY_missing_parameters(pkey))
2187 EVP_PKEY_copy_parameters(pktmp,pkey);
10061c7c 2188 EVP_PKEY_free(pktmp);
d02b48c6 2189
4c623cdd 2190 if (!do_X509_sign(bio_err, ret,pkey,dgst, sigopts))
d02b48c6
RE
2191 goto err;
2192
2193 /* We now just add it to the database */
26a3a48d 2194 row[DB_type]=(char *)OPENSSL_malloc(2);
d02b48c6
RE
2195
2196 tm=X509_get_notAfter(ret);
26a3a48d 2197 row[DB_exp_date]=(char *)OPENSSL_malloc(tm->length+1);
d02b48c6
RE
2198 memcpy(row[DB_exp_date],tm->data,tm->length);
2199 row[DB_exp_date][tm->length]='\0';
2200
2201 row[DB_rev_date]=NULL;
2202
2203 /* row[DB_serial] done already */
26a3a48d 2204 row[DB_file]=(char *)OPENSSL_malloc(8);
87e8feca 2205 row[DB_name]=X509_NAME_oneline(X509_get_subject_name(ret),NULL,0);
d02b48c6
RE
2206
2207 if ((row[DB_type] == NULL) || (row[DB_exp_date] == NULL) ||
87e8feca 2208 (row[DB_file] == NULL) || (row[DB_name] == NULL))
d02b48c6 2209 {
26a3a48d 2210 BIO_printf(bio_err,"Memory allocation failure\n");
d02b48c6
RE
2211 goto err;
2212 }
d420ac2c 2213 BUF_strlcpy(row[DB_file],"unknown",8);
d02b48c6
RE
2214 row[DB_type][0]='V';
2215 row[DB_type][1]='\0';
2216
26a3a48d 2217 if ((irow=(char **)OPENSSL_malloc(sizeof(char *)*(DB_NUMBER+1))) == NULL)
d02b48c6 2218 {
26a3a48d 2219 BIO_printf(bio_err,"Memory allocation failure\n");
d02b48c6
RE
2220 goto err;
2221 }
2222
2223 for (i=0; i<DB_NUMBER; i++)
2224 {
2225 irow[i]=row[i];
2226 row[i]=NULL;
2227 }
2228 irow[DB_NUMBER]=NULL;
2229
f85b68cd 2230 if (!TXT_DB_insert(db->db,irow))
d02b48c6
RE
2231 {
2232 BIO_printf(bio_err,"failed to update database\n");
f85b68cd 2233 BIO_printf(bio_err,"TXT_DB error number %ld\n",db->db->error);
d02b48c6
RE
2234 goto err;
2235 }
2236 ok=1;
2237err:
2238 for (i=0; i<DB_NUMBER; i++)
26a3a48d 2239 if (row[i] != NULL) OPENSSL_free(row[i]);
d02b48c6
RE
2240
2241 if (CAname != NULL)
2242 X509_NAME_free(CAname);
2243 if (subject != NULL)
2244 X509_NAME_free(subject);
437db75b
DSH
2245 if ((dn_subject != NULL) && !email_dn)
2246 X509_NAME_free(dn_subject);
79875776
BM
2247 if (tmptm != NULL)
2248 ASN1_UTCTIME_free(tmptm);
d02b48c6
RE
2249 if (ok <= 0)
2250 {
2251 if (ret != NULL) X509_free(ret);
2252 ret=NULL;
2253 }
2254 else
2255 *xret=ret;
2256 return(ok);
2257 }
2258
82fc1d9c 2259static void write_new_certificate(BIO *bp, X509 *x, int output_der, int notext)
d02b48c6 2260 {
d02b48c6
RE
2261
2262 if (output_der)
2263 {
2264 (void)i2d_X509_bio(bp,x);
2265 return;
2266 }
82fc1d9c
DSH
2267#if 0
2268 /* ??? Not needed since X509_print prints all this stuff anyway */
d02b48c6
RE
2269 f=X509_NAME_oneline(X509_get_issuer_name(x),buf,256);
2270 BIO_printf(bp,"issuer :%s\n",f);
2271
2272 f=X509_NAME_oneline(X509_get_subject_name(x),buf,256);
2273 BIO_printf(bp,"subject:%s\n",f);
2274
2275 BIO_puts(bp,"serial :");
2276 i2a_ASN1_INTEGER(bp,x->cert_info->serialNumber);
2277 BIO_puts(bp,"\n\n");
82fc1d9c 2278#endif
c67cdb50 2279 if (!notext)X509_print(bp,x);
d02b48c6 2280 PEM_write_bio_X509(bp,x);
d02b48c6
RE
2281 }
2282
6b691a5c 2283static int certify_spkac(X509 **xret, char *infile, EVP_PKEY *pkey, X509 *x509,
4c623cdd
DSH
2284 const EVP_MD *dgst, STACK_OF(OPENSSL_STRING) *sigopts,
2285 STACK_OF(CONF_VALUE) *policy, CA_DB *db,
cbdac46d 2286 BIGNUM *serial, char *subj,unsigned long chtype, int multirdn, int email_dn, char *startdate, char *enddate,
89da653f 2287 long days, char *ext_sect, CONF *lconf, int verbose, unsigned long certopt,
535d79da 2288 unsigned long nameopt, int default_op, int ext_copy)
d02b48c6 2289 {
ba404b5e 2290 STACK_OF(CONF_VALUE) *sk=NULL;
3c1d6bbc 2291 LHASH_OF(CONF_VALUE) *parms=NULL;
d02b48c6
RE
2292 X509_REQ *req=NULL;
2293 CONF_VALUE *cv=NULL;
2294 NETSCAPE_SPKI *spki = NULL;
d02b48c6
RE
2295 X509_REQ_INFO *ri;
2296 char *type,*buf;
2297 EVP_PKEY *pktmp=NULL;
2298 X509_NAME *n=NULL;
2299 X509_NAME_ENTRY *ne=NULL;
2300 int ok= -1,i,j;
2301 long errline;
2302 int nid;
2303
2304 /*
2305 * Load input file into a hash table. (This is just an easy
2306 * way to read and parse the file, then put it into a convenient
2307 * STACK format).
2308 */
2309 parms=CONF_load(NULL,infile,&errline);
2310 if (parms == NULL)
2311 {
2312 BIO_printf(bio_err,"error on line %ld of %s\n",errline,infile);
2313 ERR_print_errors(bio_err);
2314 goto err;
2315 }
2316
2317 sk=CONF_get_section(parms, "default");
ba404b5e 2318 if (sk_CONF_VALUE_num(sk) == 0)
d02b48c6
RE
2319 {
2320 BIO_printf(bio_err, "no name/value pairs found in %s\n", infile);
2321 CONF_free(parms);
2322 goto err;
2323 }
2324
2325 /*
2326 * Now create a dummy X509 request structure. We don't actually
2327 * have an X509 request, but we have many of the components
2328 * (a public key, various DN components). The idea is that we
2329 * put these components into the right X509 request structure
2330 * and we can use the same code as if you had a real X509 request.
2331 */
2332 req=X509_REQ_new();
2333 if (req == NULL)
2334 {
2335 ERR_print_errors(bio_err);
2336 goto err;
2337 }
2338
2339 /*
2340 * Build up the subject name set.
2341 */
2342 ri=req->req_info;
2343 n = ri->subject;
2344
2345 for (i = 0; ; i++)
2346 {
ba404b5e 2347 if (sk_CONF_VALUE_num(sk) <= i) break;
d02b48c6 2348
ba404b5e 2349 cv=sk_CONF_VALUE_value(sk,i);
d02b48c6 2350 type=cv->name;
f9150e54
DSH
2351 /* Skip past any leading X. X: X, etc to allow for
2352 * multiple instances
2353 */
c67cdb50
BM
2354 for (buf = cv->name; *buf ; buf++)
2355 if ((*buf == ':') || (*buf == ',') || (*buf == '.'))
2356 {
2357 buf++;
2358 if (*buf) type = buf;
2359 break;
2360 }
d02b48c6 2361
f9150e54 2362 buf=cv->value;
d02b48c6
RE
2363 if ((nid=OBJ_txt2nid(type)) == NID_undef)
2364 {
2365 if (strcmp(type, "SPKAC") == 0)
2366 {
8ce97163 2367 spki = NETSCAPE_SPKI_b64_decode(cv->value, -1);
d02b48c6
RE
2368 if (spki == NULL)
2369 {
2370 BIO_printf(bio_err,"unable to load Netscape SPKAC structure\n");
2371 ERR_print_errors(bio_err);
2372 goto err;
2373 }
2374 }
2375 continue;
2376 }
2377
3533ab1f
DSH
2378 if (!X509_NAME_add_entry_by_NID(n, nid, chtype,
2379 (unsigned char *)buf, -1, -1, 0))
d02b48c6 2380 goto err;
d02b48c6
RE
2381 }
2382 if (spki == NULL)
2383 {
2384 BIO_printf(bio_err,"Netscape SPKAC structure not found in %s\n",
2385 infile);
2386 goto err;
2387 }
2388
2389 /*
2390 * Now extract the key from the SPKI structure.
2391 */
2392
2393 BIO_printf(bio_err,"Check that the SPKAC request matches the signature\n");
2394
8ce97163 2395 if ((pktmp=NETSCAPE_SPKI_get_pubkey(spki)) == NULL)
d02b48c6
RE
2396 {
2397 BIO_printf(bio_err,"error unpacking SPKAC public key\n");
2398 goto err;
2399 }
2400
2401 j = NETSCAPE_SPKI_verify(spki, pktmp);
2402 if (j <= 0)
2403 {
2404 BIO_printf(bio_err,"signature verification failed on SPKAC public key\n");
2405 goto err;
2406 }
2407 BIO_printf(bio_err,"Signature ok\n");
2408
2409 X509_REQ_set_pubkey(req,pktmp);
10061c7c 2410 EVP_PKEY_free(pktmp);
4c623cdd
DSH
2411 ok=do_body(xret,pkey,x509,dgst,sigopts,policy,db,serial,subj,chtype,
2412 multirdn,email_dn,startdate,enddate, days,1,verbose,req,
2413 ext_sect,lconf, certopt, nameopt, default_op, ext_copy, 0);
d02b48c6
RE
2414err:
2415 if (req != NULL) X509_REQ_free(req);
2416 if (parms != NULL) CONF_free(parms);
d02b48c6
RE
2417 if (spki != NULL) NETSCAPE_SPKI_free(spki);
2418 if (ne != NULL) X509_NAME_ENTRY_free(ne);
2419
2420 return(ok);
2421 }
2422
7c337e00 2423static int check_time_format(const char *str)
d02b48c6 2424 {
33ab2e31 2425 return ASN1_TIME_set_string(NULL, str);
d02b48c6
RE
2426 }
2427
f85b68cd 2428static int do_revoke(X509 *x509, CA_DB *db, int type, char *value)
c67cdb50 2429 {
a6b7ffdd 2430 ASN1_UTCTIME *tm=NULL;
b1c4fe36 2431 char *row[DB_NUMBER],**rrow,**irow;
a6b7ffdd 2432 char *rev_str = NULL;
a0ad17bb 2433 BIGNUM *bn = NULL;
b1c4fe36
BM
2434 int ok=-1,i;
2435
2436 for (i=0; i<DB_NUMBER; i++)
2437 row[i]=NULL;
a0ad17bb
DSH
2438 row[DB_name]=X509_NAME_oneline(X509_get_subject_name(x509),NULL,0);
2439 bn = ASN1_INTEGER_to_BN(X509_get_serialNumber(x509),NULL);
309fa55b
BL
2440 if (!bn)
2441 goto err;
2245cd87
RL
2442 if (BN_is_zero(bn))
2443 row[DB_serial]=BUF_strdup("00");
2444 else
2445 row[DB_serial]=BN_bn2hex(bn);
a0ad17bb 2446 BN_free(bn);
b1c4fe36
BM
2447 if ((row[DB_name] == NULL) || (row[DB_serial] == NULL))
2448 {
26a3a48d 2449 BIO_printf(bio_err,"Memory allocation failure\n");
b1c4fe36
BM
2450 goto err;
2451 }
a0ad17bb
DSH
2452 /* We have to lookup by serial number because name lookup
2453 * skips revoked certs
2454 */
f85b68cd 2455 rrow=TXT_DB_get_by_index(db->db,DB_serial,row);
b1c4fe36
BM
2456 if (rrow == NULL)
2457 {
f85b68cd 2458 BIO_printf(bio_err,"Adding Entry with serial number %s to DB for %s\n", row[DB_serial], row[DB_name]);
b1c4fe36
BM
2459
2460 /* We now just add it to the database */
26a3a48d 2461 row[DB_type]=(char *)OPENSSL_malloc(2);
b1c4fe36
BM
2462
2463 tm=X509_get_notAfter(x509);
26a3a48d 2464 row[DB_exp_date]=(char *)OPENSSL_malloc(tm->length+1);
b1c4fe36
BM
2465 memcpy(row[DB_exp_date],tm->data,tm->length);
2466 row[DB_exp_date][tm->length]='\0';
2467
2468 row[DB_rev_date]=NULL;
2469
2470 /* row[DB_serial] done already */
26a3a48d 2471 row[DB_file]=(char *)OPENSSL_malloc(8);
b1c4fe36
BM
2472
2473 /* row[DB_name] done already */
2474
2475 if ((row[DB_type] == NULL) || (row[DB_exp_date] == NULL) ||
2476 (row[DB_file] == NULL))
2477 {
26a3a48d 2478 BIO_printf(bio_err,"Memory allocation failure\n");
b1c4fe36
BM
2479 goto err;
2480 }
d420ac2c 2481 BUF_strlcpy(row[DB_file],"unknown",8);
b1c4fe36
BM
2482 row[DB_type][0]='V';
2483 row[DB_type][1]='\0';
2484
26a3a48d 2485 if ((irow=(char **)OPENSSL_malloc(sizeof(char *)*(DB_NUMBER+1))) == NULL)
b1c4fe36 2486 {
26a3a48d 2487 BIO_printf(bio_err,"Memory allocation failure\n");
b1c4fe36
BM
2488 goto err;
2489 }
2490
2491 for (i=0; i<DB_NUMBER; i++)
2492 {
2493 irow[i]=row[i];
2494 row[i]=NULL;
2495 }
2496 irow[DB_NUMBER]=NULL;
2497
f85b68cd 2498 if (!TXT_DB_insert(db->db,irow))
b1c4fe36
BM
2499 {
2500 BIO_printf(bio_err,"failed to update database\n");
f85b68cd 2501 BIO_printf(bio_err,"TXT_DB error number %ld\n",db->db->error);
b1c4fe36
BM
2502 goto err;
2503 }
2504
2505 /* Revoke Certificate */
648f551a
DSH
2506 if (type == -1)
2507 ok = 1;
2508 else
2509 ok = do_revoke(x509,db, type, value);
b1c4fe36 2510
b1c4fe36
BM
2511 goto err;
2512
2513 }
c451bd82 2514 else if (index_name_cmp_noconst(row, rrow))
b1c4fe36 2515 {
a0ad17bb
DSH
2516 BIO_printf(bio_err,"ERROR:name does not match %s\n",
2517 row[DB_name]);
b1c4fe36
BM
2518 goto err;
2519 }
648f551a
DSH
2520 else if (type == -1)
2521 {
2522 BIO_printf(bio_err,"ERROR:Already present, serial number %s\n",
2523 row[DB_serial]);
2524 goto err;
2525 }
b1c4fe36
BM
2526 else if (rrow[DB_type][0]=='R')
2527 {
2528 BIO_printf(bio_err,"ERROR:Already revoked, serial number %s\n",
2529 row[DB_serial]);
2530 goto err;
2531 }
2532 else
2533 {
2534 BIO_printf(bio_err,"Revoking Certificate %s.\n", rrow[DB_serial]);
a6b7ffdd
DSH
2535 rev_str = make_revocation_str(type, value);
2536 if (!rev_str)
2537 {
2538 BIO_printf(bio_err, "Error in revocation arguments\n");
2539 goto err;
2540 }
b1c4fe36
BM
2541 rrow[DB_type][0]='R';
2542 rrow[DB_type][1]='\0';
a6b7ffdd 2543 rrow[DB_rev_date] = rev_str;
b1c4fe36
BM
2544 }
2545 ok=1;
f9a25931 2546err:
b1c4fe36
BM
2547 for (i=0; i<DB_NUMBER; i++)
2548 {
2549 if (row[i] != NULL)
26a3a48d 2550 OPENSSL_free(row[i]);
b1c4fe36 2551 }
b1c4fe36 2552 return(ok);
c67cdb50
BM
2553 }
2554
f85b68cd 2555static int get_certificate_status(const char *serial, CA_DB *db)
c67cdb50 2556 {
8e5b6314 2557 char *row[DB_NUMBER],**rrow;
c67cdb50
BM
2558 int ok=-1,i;
2559
2560 /* Free Resources */
2561 for (i=0; i<DB_NUMBER; i++)
2562 row[i]=NULL;
2563
2564 /* Malloc needed char spaces */
2565 row[DB_serial] = OPENSSL_malloc(strlen(serial) + 2);
2566 if (row[DB_serial] == NULL)
2567 {
2568 BIO_printf(bio_err,"Malloc failure\n");
2569 goto err;
2570 }
2571
2572 if (strlen(serial) % 2)
2573 {
2574 /* Set the first char to 0 */;
2575 row[DB_serial][0]='0';
2576
2577 /* Copy String from serial to row[DB_serial] */
2578 memcpy(row[DB_serial]+1, serial, strlen(serial));
2579 row[DB_serial][strlen(serial)+1]='\0';
2580 }
2581 else
2582 {
2583 /* Copy String from serial to row[DB_serial] */
2584 memcpy(row[DB_serial], serial, strlen(serial));
2585 row[DB_serial][strlen(serial)]='\0';
2586 }
2587
2588 /* Make it Upper Case */
2589 for (i=0; row[DB_serial][i] != '\0'; i++)
a50bce82 2590 row[DB_serial][i] = toupper((unsigned char)row[DB_serial][i]);
dfebac32 2591
c67cdb50
BM
2592
2593 ok=1;
2594
2595 /* Search for the certificate */
f85b68cd 2596 rrow=TXT_DB_get_by_index(db->db,DB_serial,row);
c67cdb50
BM
2597 if (rrow == NULL)
2598 {
2599 BIO_printf(bio_err,"Serial %s not present in db.\n",
2600 row[DB_serial]);
2601 ok=-1;
2602 goto err;
2603 }
2604 else if (rrow[DB_type][0]=='V')
2605 {
2606 BIO_printf(bio_err,"%s=Valid (%c)\n",
2607 row[DB_serial], rrow[DB_type][0]);
2608 goto err;
2609 }
2610 else if (rrow[DB_type][0]=='R')
2611 {
2612 BIO_printf(bio_err,"%s=Revoked (%c)\n",
2613 row[DB_serial], rrow[DB_type][0]);
2614 goto err;
2615 }
2616 else if (rrow[DB_type][0]=='E')
2617 {
2618 BIO_printf(bio_err,"%s=Expired (%c)\n",
2619 row[DB_serial], rrow[DB_type][0]);
2620 goto err;
2621 }
2622 else if (rrow[DB_type][0]=='S')
2623 {
2624 BIO_printf(bio_err,"%s=Suspended (%c)\n",
2625 row[DB_serial], rrow[DB_type][0]);
2626 goto err;
2627 }
2628 else
2629 {
2630 BIO_printf(bio_err,"%s=Unknown (%c).\n",
2631 row[DB_serial], rrow[DB_type][0]);
2632 ok=-1;
2633 }
2634err:
2635 for (i=0; i<DB_NUMBER; i++)
2636 {
2637 if (row[i] != NULL)
2638 OPENSSL_free(row[i]);
2639 }
2640 return(ok);
2641 }
2642
f85b68cd 2643static int do_updatedb (CA_DB *db)
c67cdb50
BM
2644 {
2645 ASN1_UTCTIME *a_tm = NULL;
2646 int i, cnt = 0;
2647 int db_y2k, a_y2k; /* flags = 1 if y >= 2000 */
2648 char **rrow, *a_tm_s;
2649
2650 a_tm = ASN1_UTCTIME_new();
2651
2652 /* get actual time and make a string */
2653 a_tm = X509_gmtime_adj(a_tm, 0);
2654 a_tm_s = (char *) OPENSSL_malloc(a_tm->length+1);
2655 if (a_tm_s == NULL)
2656 {
2657 cnt = -1;
2658 goto err;
2659 }
2660
2661 memcpy(a_tm_s, a_tm->data, a_tm->length);
2662 a_tm_s[a_tm->length] = '\0';
2663
2664 if (strncmp(a_tm_s, "49", 2) <= 0)
2665 a_y2k = 1;
2666 else
2667 a_y2k = 0;
f9a25931 2668
c869da88 2669 for (i = 0; i < sk_OPENSSL_PSTRING_num(db->db->data); i++)
c67cdb50 2670 {
c869da88 2671 rrow = sk_OPENSSL_PSTRING_value(db->db->data, i);
c67cdb50
BM
2672
2673 if (rrow[DB_type][0] == 'V')
2674 {
2675 /* ignore entries that are not valid */
2676 if (strncmp(rrow[DB_exp_date], "49", 2) <= 0)
2677 db_y2k = 1;
2678 else
2679 db_y2k = 0;
2680
2681 if (db_y2k == a_y2k)
2682 {
2683 /* all on the same y2k side */
2684 if (strcmp(rrow[DB_exp_date], a_tm_s) <= 0)
2685 {
2686 rrow[DB_type][0] = 'E';
2687 rrow[DB_type][1] = '\0';
2688 cnt++;
2689
2690 BIO_printf(bio_err, "%s=Expired\n",
2691 rrow[DB_serial]);
2692 }
2693 }
2694 else if (db_y2k < a_y2k)
2695 {
2696 rrow[DB_type][0] = 'E';
2697 rrow[DB_type][1] = '\0';
2698 cnt++;
2699
2700 BIO_printf(bio_err, "%s=Expired\n",
2701 rrow[DB_serial]);
2702 }
2703
2704 }
2705 }
2706
2707err:
2708
2709 ASN1_UTCTIME_free(a_tm);
2710 OPENSSL_free(a_tm_s);
2711
2712 return (cnt);
2713 }
a6b7ffdd 2714
7d727231 2715static const char *crl_reasons[] = {
a6b7ffdd
DSH
2716 /* CRL reason strings */
2717 "unspecified",
2718 "keyCompromise",
2719 "CACompromise",
2720 "affiliationChanged",
2721 "superseded",
2722 "cessationOfOperation",
2723 "certificateHold",
2724 "removeFromCRL",
2725 /* Additional pseudo reasons */
2726 "holdInstruction",
2727 "keyTime",
2728 "CAkeyTime"
2729};
2730
2731#define NUM_REASONS (sizeof(crl_reasons) / sizeof(char *))
2732
2733/* Given revocation information convert to a DB string.
2734 * The format of the string is:
2735 * revtime[,reason,extra]. Where 'revtime' is the
2736 * revocation time (the current time). 'reason' is the
2737 * optional CRL reason and 'extra' is any additional
2738 * argument
2739 */
2740
2741char *make_revocation_str(int rev_type, char *rev_arg)
2742 {
7d727231
NL
2743 char *other = NULL, *str;
2744 const char *reason = NULL;
a6b7ffdd
DSH
2745 ASN1_OBJECT *otmp;
2746 ASN1_UTCTIME *revtm = NULL;
2747 int i;
2748 switch (rev_type)
2749 {
2750 case REV_NONE:
2751 break;
2752
2753 case REV_CRL_REASON:
2754 for (i = 0; i < 8; i++)
2755 {
2756 if (!strcasecmp(rev_arg, crl_reasons[i]))
2757 {
2758 reason = crl_reasons[i];
2759 break;
2760 }
2761 }
2762 if (reason == NULL)
2763 {
2764 BIO_printf(bio_err, "Unknown CRL reason %s\n", rev_arg);
2765 return NULL;
2766 }
2767 break;
2768
2769 case REV_HOLD:
2770 /* Argument is an OID */
2771
2772 otmp = OBJ_txt2obj(rev_arg, 0);
2773 ASN1_OBJECT_free(otmp);
2774
2775 if (otmp == NULL)
2776 {
2777 BIO_printf(bio_err, "Invalid object identifier %s\n", rev_arg);
2778 return NULL;
2779 }
2780
2781 reason = "holdInstruction";
2782 other = rev_arg;
2783 break;
2784
2785 case REV_KEY_COMPROMISE:
2786 case REV_CA_COMPROMISE:
2787
2788 /* Argument is the key compromise time */
2789 if (!ASN1_GENERALIZEDTIME_set_string(NULL, rev_arg))
2790 {
2791 BIO_printf(bio_err, "Invalid time format %s. Need YYYYMMDDHHMMSSZ\n", rev_arg);
2792 return NULL;
2793 }
2794 other = rev_arg;
2795 if (rev_type == REV_KEY_COMPROMISE)
2796 reason = "keyTime";
2797 else
2798 reason = "CAkeyTime";
2799
2800 break;
2801
2802 }
2803
2804 revtm = X509_gmtime_adj(NULL, 0);
2805
d2aea038
DSH
2806 if (!revtm)
2807 return NULL;
2808
a6b7ffdd
DSH
2809 i = revtm->length + 1;
2810
2811 if (reason) i += strlen(reason) + 1;
2812 if (other) i += strlen(other) + 1;
2813
2814 str = OPENSSL_malloc(i);
2815
2816 if (!str) return NULL;
2817
d420ac2c 2818 BUF_strlcpy(str, (char *)revtm->data, i);
a6b7ffdd
DSH
2819 if (reason)
2820 {
d420ac2c
RL
2821 BUF_strlcat(str, ",", i);
2822 BUF_strlcat(str, reason, i);
a6b7ffdd
DSH
2823 }
2824 if (other)
2825 {
d420ac2c
RL
2826 BUF_strlcat(str, ",", i);
2827 BUF_strlcat(str, other, i);
a6b7ffdd
DSH
2828 }
2829 ASN1_UTCTIME_free(revtm);
2830 return str;
2831 }
2832
1d97c843
TH
2833/*-
2834 * Convert revocation field to X509_REVOKED entry
a6b7ffdd
DSH
2835 * return code:
2836 * 0 error
2837 * 1 OK
2838 * 2 OK and some extensions added (i.e. V2 CRL)
2839 */
2840
ee306a13 2841
7d727231 2842int make_revoked(X509_REVOKED *rev, const char *str)
a6b7ffdd
DSH
2843 {
2844 char *tmp = NULL;
a6b7ffdd
DSH
2845 int reason_code = -1;
2846 int i, ret = 0;
2847 ASN1_OBJECT *hold = NULL;
2848 ASN1_GENERALIZEDTIME *comp_time = NULL;
2849 ASN1_ENUMERATED *rtmp = NULL;
a6b7ffdd 2850
35bf3541 2851 ASN1_TIME *revDate = NULL;
a6b7ffdd 2852
35bf3541 2853 i = unpack_revinfo(&revDate, &reason_code, &hold, &comp_time, str);
a6b7ffdd 2854
ee306a13 2855 if (i == 0)
a6b7ffdd 2856 goto err;
a6b7ffdd 2857
35bf3541
DSH
2858 if (rev && !X509_REVOKED_set_revocationDate(rev, revDate))
2859 goto err;
2860
a6b7ffdd
DSH
2861 if (rev && (reason_code != OCSP_REVOKED_STATUS_NOSTATUS))
2862 {
2863 rtmp = ASN1_ENUMERATED_new();
2864 if (!rtmp || !ASN1_ENUMERATED_set(rtmp, reason_code))
2865 goto err;
2866 if (!X509_REVOKED_add1_ext_i2d(rev, NID_crl_reason, rtmp, 0, 0))
2867 goto err;
2868 }
2869
2870 if (rev && comp_time)
2871 {
2872 if (!X509_REVOKED_add1_ext_i2d(rev, NID_invalidity_date, comp_time, 0, 0))
2873 goto err;
2874 }
2875 if (rev && hold)
2876 {
2877 if (!X509_REVOKED_add1_ext_i2d(rev, NID_hold_instruction_code, hold, 0, 0))
2878 goto err;
2879 }
2880
2881 if (reason_code != OCSP_REVOKED_STATUS_NOSTATUS)
2882 ret = 2;
2883 else ret = 1;
2884
2885 err:
2886
2887 if (tmp) OPENSSL_free(tmp);
2888 ASN1_OBJECT_free(hold);
2889 ASN1_GENERALIZEDTIME_free(comp_time);
2890 ASN1_ENUMERATED_free(rtmp);
35bf3541 2891 ASN1_TIME_free(revDate);
a6b7ffdd
DSH
2892
2893 return ret;
2894 }
bad40585 2895
535d79da
DSH
2896int old_entry_print(BIO *bp, ASN1_OBJECT *obj, ASN1_STRING *str)
2897 {
2898 char buf[25],*pbuf, *p;
2899 int j;
2900 j=i2a_ASN1_OBJECT(bp,obj);
2901 pbuf=buf;
2902 for (j=22-j; j>0; j--)
2903 *(pbuf++)=' ';
2904 *(pbuf++)=':';
2905 *(pbuf++)='\0';
2906 BIO_puts(bp,buf);
2907
2908 if (str->type == V_ASN1_PRINTABLESTRING)
2909 BIO_printf(bp,"PRINTABLE:'");
2910 else if (str->type == V_ASN1_T61STRING)
2911 BIO_printf(bp,"T61STRING:'");
2912 else if (str->type == V_ASN1_IA5STRING)
2913 BIO_printf(bp,"IA5STRING:'");
2914 else if (str->type == V_ASN1_UNIVERSALSTRING)
2915 BIO_printf(bp,"UNIVERSALSTRING:'");
2916 else
2917 BIO_printf(bp,"ASN.1 %2d:'",str->type);
2918
2919 p=(char *)str->data;
2920 for (j=str->length; j>0; j--)
2921 {
2922 if ((*p >= ' ') && (*p <= '~'))
2923 BIO_printf(bp,"%c",*p);
2924 else if (*p & 0x80)
2925 BIO_printf(bp,"\\0x%02X",*p);
2926 else if ((unsigned char)*p == 0xf7)
2927 BIO_printf(bp,"^?");
2928 else BIO_printf(bp,"^%c",*p+'@');
2929 p++;
2930 }
2931 BIO_printf(bp,"'\n");
2932 return 1;
2933 }
ee306a13 2934
7d727231 2935int unpack_revinfo(ASN1_TIME **prevtm, int *preason, ASN1_OBJECT **phold, ASN1_GENERALIZEDTIME **pinvtm, const char *str)
ee306a13
DSH
2936 {
2937 char *tmp = NULL;
2938 char *rtime_str, *reason_str = NULL, *arg_str = NULL, *p;
2939 int reason_code = -1;
27545970
GT
2940 int ret = 0;
2941 unsigned int i;
ee306a13
DSH
2942 ASN1_OBJECT *hold = NULL;
2943 ASN1_GENERALIZEDTIME *comp_time = NULL;
2944 tmp = BUF_strdup(str);
2945
2946 p = strchr(tmp, ',');
2947
2948 rtime_str = tmp;
2949
2950 if (p)
2951 {
2952 *p = '\0';
2953 p++;
2954 reason_str = p;
2955 p = strchr(p, ',');
2956 if (p)
2957 {
2958 *p = '\0';
2959 arg_str = p + 1;
2960 }
2961 }
2962
2963 if (prevtm)
2964 {
2965 *prevtm = ASN1_UTCTIME_new();
2966 if (!ASN1_UTCTIME_set_string(*prevtm, rtime_str))
2967 {
2968 BIO_printf(bio_err, "invalid revocation date %s\n", rtime_str);
2969 goto err;
2970 }
2971 }
2972 if (reason_str)
2973 {
2974 for (i = 0; i < NUM_REASONS; i++)
2975 {
2976 if(!strcasecmp(reason_str, crl_reasons[i]))
2977 {
2978 reason_code = i;
2979 break;
2980 }
2981 }
2982 if (reason_code == OCSP_REVOKED_STATUS_NOSTATUS)
2983 {
2984 BIO_printf(bio_err, "invalid reason code %s\n", reason_str);
2985 goto err;
2986 }
2987
2988 if (reason_code == 7)
2989 reason_code = OCSP_REVOKED_STATUS_REMOVEFROMCRL;
2990 else if (reason_code == 8) /* Hold instruction */
2991 {
2992 if (!arg_str)
2993 {
2994 BIO_printf(bio_err, "missing hold instruction\n");
2995 goto err;
2996 }
2997 reason_code = OCSP_REVOKED_STATUS_CERTIFICATEHOLD;
2998 hold = OBJ_txt2obj(arg_str, 0);
2999
3000 if (!hold)
3001 {
3002 BIO_printf(bio_err, "invalid object identifier %s\n", arg_str);
3003 goto err;
3004 }
3005 if (phold) *phold = hold;
3006 }
3007 else if ((reason_code == 9) || (reason_code == 10))
3008 {
3009 if (!arg_str)
3010 {
3011 BIO_printf(bio_err, "missing compromised time\n");
3012 goto err;
3013 }
3014 comp_time = ASN1_GENERALIZEDTIME_new();
3015 if (!ASN1_GENERALIZEDTIME_set_string(comp_time, arg_str))
3016 {
3017 BIO_printf(bio_err, "invalid compromised time %s\n", arg_str);
3018 goto err;
3019 }
3020 if (reason_code == 9)
3021 reason_code = OCSP_REVOKED_STATUS_KEYCOMPROMISE;
3022 else
3023 reason_code = OCSP_REVOKED_STATUS_CACOMPROMISE;
3024 }
3025 }
3026
3027 if (preason) *preason = reason_code;
3028 if (pinvtm) *pinvtm = comp_time;
3029 else ASN1_GENERALIZEDTIME_free(comp_time);
3030
35bf3541
DSH
3031 ret = 1;
3032
ee306a13
DSH
3033 err:
3034
3035 if (tmp) OPENSSL_free(tmp);
3036 if (!phold) ASN1_OBJECT_free(hold);
3037 if (!pinvtm) ASN1_GENERALIZEDTIME_free(comp_time);
3038
3039 return ret;
3040 }