2 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
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.
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).
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.
23 * Redistribution and use in source and binary forms, with or without
24 * modification, are permitted provided that the following conditions
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)"
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
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.]
59 /* The PPKI stuff has been donated by Jeff Barber <jeffb@issl.atl.hp.com> */
65 #include <sys/types.h>
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>
75 #include <openssl/ocsp.h>
76 #include <openssl/pem.h>
79 # ifdef OPENSSL_SYS_VMS
85 # elif !defined(OPENSSL_SYS_VXWORKS) && !defined(OPENSSL_SYS_WINDOWS) && !defined(OPENSSL_SYS_NETWARE)
86 # include <sys/file.h>
102 #define BASE_SECTION "ca"
103 #define CONFIG_FILE "openssl.cnf"
105 #define ENV_DEFAULT_CA "default_ca"
107 #define STRING_MASK "string_mask"
108 #define UTF8_IN "utf8"
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"
117 #define ENV_CRLNUMBER "crlnumber"
118 #define ENV_CRL "crl"
119 #define ENV_PRIVATE_KEY "private_key"
120 #define ENV_RANDFILE "RANDFILE"
121 #define ENV_DEFAULT_DAYS "default_days"
122 #define ENV_DEFAULT_STARTDATE "default_startdate"
123 #define ENV_DEFAULT_ENDDATE "default_enddate"
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"
127 #define ENV_DEFAULT_EMAIL_DN "email_in_dn"
128 #define ENV_PRESERVE "preserve"
129 #define ENV_POLICY "policy"
130 #define ENV_EXTENSIONS "x509_extensions"
131 #define ENV_CRLEXT "crl_extensions"
132 #define ENV_MSIE_HACK "msie_hack"
133 #define ENV_NAMEOPT "name_opt"
134 #define ENV_CERTOPT "cert_opt"
135 #define ENV_EXTCOPY "copy_extensions"
136 #define ENV_UNIQUE_SUBJECT "unique_subject"
138 #define ENV_DATABASE "database"
140 /* Additional revocation information types */
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 */
148 static const char *ca_usage
[]={
151 " -verbose - Talk alot while doing things\n",
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",
157 " -startdate YYMMDDHHMMSSZ - certificate validity notBefore\n",
158 " -enddate YYMMDDHHMMSSZ - certificate validity notAfter (overrides -days)\n",
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",
162 " -keyfile arg - private key file\n",
163 " -keyform arg - private key file format (PEM or ENGINE)\n",
164 " -key arg - key to decode the private key if it is encrypted\n",
165 " -cert file - The CA certificate\n",
166 " -selfsign - sign a certificate with the key associated with it\n",
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",
172 " -ss_cert file - File contains a self signed cert to sign\n",
173 " -preserveDN - Don't re-order the DN\n",
174 " -noemailDN - Don't add the EMAIL field into certificate' subject\n",
175 " -batch - Don't ask questions\n",
176 " -msie_hack - msie modifications to handle all those universal strings\n",
177 " -revoke file - Revoke a certificate (given in file)\n",
178 " -subj arg - Use arg instead of request's subject\n",
179 " -utf8 - input characters are UTF8 (default ASCII)\n",
180 " -multivalue-rdn - enable support for multivalued RDNs\n",
181 " -extensions .. - Extension section (override value in config file)\n",
182 " -extfile file - Configuration file with X509v3 extentions to add\n",
183 " -crlexts .. - CRL extension section (override value in config file)\n",
184 #ifndef OPENSSL_NO_ENGINE
185 " -engine e - use engine e, possibly a hardware device.\n",
187 " -status serial - Shows certificate status given the serial number\n",
188 " -updatedb - Updates db for expired certificates\n",
193 extern int EF_PROTECT_FREE
;
194 extern int EF_PROTECT_BELOW
;
195 extern int EF_ALIGNMENT
;
198 static void lookup_fail(const char *name
, const char *tag
);
199 static int certify(X509
**xret
, char *infile
,EVP_PKEY
*pkey
,X509
*x509
,
200 const EVP_MD
*dgst
,STACK_OF(CONF_VALUE
) *policy
,CA_DB
*db
,
201 BIGNUM
*serial
, char *subj
,unsigned long chtype
, int multirdn
, int email_dn
, char *startdate
,
202 char *enddate
, long days
, int batch
, char *ext_sect
, CONF
*conf
,
203 int verbose
, unsigned long certopt
, unsigned long nameopt
,
204 int default_op
, int ext_copy
, int selfsign
);
205 static int certify_cert(X509
**xret
, char *infile
,EVP_PKEY
*pkey
,X509
*x509
,
206 const EVP_MD
*dgst
,STACK_OF(CONF_VALUE
) *policy
,
207 CA_DB
*db
, BIGNUM
*serial
, char *subj
,unsigned long chtype
, int multirdn
, int email_dn
,
208 char *startdate
, char *enddate
, long days
, int batch
,
209 char *ext_sect
, CONF
*conf
,int verbose
, unsigned long certopt
,
210 unsigned long nameopt
, int default_op
, int ext_copy
,
212 static int certify_spkac(X509
**xret
, char *infile
,EVP_PKEY
*pkey
,X509
*x509
,
213 const EVP_MD
*dgst
,STACK_OF(CONF_VALUE
) *policy
,
214 CA_DB
*db
, BIGNUM
*serial
,char *subj
,unsigned long chtype
, int multirdn
, int email_dn
,
215 char *startdate
, char *enddate
, long days
, char *ext_sect
,
216 CONF
*conf
, int verbose
, unsigned long certopt
,
217 unsigned long nameopt
, int default_op
, int ext_copy
);
218 static void write_new_certificate(BIO
*bp
, X509
*x
, int output_der
, int notext
);
219 static int do_body(X509
**xret
, EVP_PKEY
*pkey
, X509
*x509
, const EVP_MD
*dgst
,
220 STACK_OF(CONF_VALUE
) *policy
, CA_DB
*db
, BIGNUM
*serial
,char *subj
,unsigned long chtype
, int multirdn
,
221 int email_dn
, char *startdate
, char *enddate
, long days
, int batch
,
222 int verbose
, X509_REQ
*req
, char *ext_sect
, CONF
*conf
,
223 unsigned long certopt
, unsigned long nameopt
, int default_op
,
224 int ext_copy
, int selfsign
);
225 static int do_revoke(X509
*x509
, CA_DB
*db
, int ext
, char *extval
);
226 static int get_certificate_status(const char *ser_status
, CA_DB
*db
);
227 static int do_updatedb(CA_DB
*db
);
228 static int check_time_format(const char *str
);
229 char *make_revocation_str(int rev_type
, char *rev_arg
);
230 int make_revoked(X509_REVOKED
*rev
, const char *str
);
231 int old_entry_print(BIO
*bp
, ASN1_OBJECT
*obj
, ASN1_STRING
*str
);
232 static CONF
*conf
=NULL
;
233 static CONF
*extconf
=NULL
;
234 static char *section
=NULL
;
236 static int preserve
=0;
237 static int msie_hack
=0;
240 int MAIN(int, char **);
242 int MAIN(int argc
, char **argv
)
245 char *key
=NULL
,*passargin
=NULL
;
262 char *configfile
=NULL
;
267 int keyform
=FORMAT_PEM
;
269 char *spkac_file
=NULL
;
270 char *ss_cert_file
=NULL
;
271 char *ser_status
=NULL
;
276 char *serialfile
=NULL
;
277 char *crlnumberfile
=NULL
;
278 char *extensions
=NULL
;
281 unsigned long chtype
= MBSTRING_ASC
;
283 char *tmp_email_dn
=NULL
;
285 int rev_type
= REV_NONE
;
286 char *rev_arg
= NULL
;
288 BIGNUM
*crlnumber
=NULL
;
289 char *startdate
=NULL
;
294 unsigned long nameopt
= 0, certopt
= 0;
296 int ext_copy
= EXT_COPY_NONE
;
298 X509
*x509
=NULL
, *x509p
= NULL
;
300 BIO
*in
=NULL
,*out
=NULL
,*Sout
=NULL
,*Cout
=NULL
;
304 X509_REVOKED
*r
=NULL
;
306 ASN1_INTEGER
*tmpser
;
311 const EVP_MD
*dgst
=NULL
;
312 STACK_OF(CONF_VALUE
) *attribs
=NULL
;
313 STACK_OF(X509
) *cert_sk
=NULL
;
316 MS_STATIC
char buf
[3][BSIZE
];
318 #ifndef OPENSSL_NO_ENGINE
339 if ((bio_err
=BIO_new(BIO_s_file())) != NULL
)
340 BIO_set_fp(bio_err
,stderr
,BIO_NOCLOSE
|BIO_FP_TEXT
);
346 if (strcmp(*argv
,"-verbose") == 0)
348 else if (strcmp(*argv
,"-config") == 0)
350 if (--argc
< 1) goto bad
;
351 configfile
= *(++argv
);
353 else if (strcmp(*argv
,"-name") == 0)
355 if (--argc
< 1) goto bad
;
358 else if (strcmp(*argv
,"-subj") == 0)
360 if (--argc
< 1) goto bad
;
364 else if (strcmp(*argv
,"-utf8") == 0)
365 chtype
= MBSTRING_UTF8
;
366 else if (strcmp(*argv
,"-create_serial") == 0)
368 else if (strcmp(*argv
,"-multivalue-rdn") == 0)
370 else if (strcmp(*argv
,"-startdate") == 0)
372 if (--argc
< 1) goto bad
;
373 startdate
= *(++argv
);
375 else if (strcmp(*argv
,"-enddate") == 0)
377 if (--argc
< 1) goto bad
;
380 else if (strcmp(*argv
,"-days") == 0)
382 if (--argc
< 1) goto bad
;
383 days
=atoi(*(++argv
));
385 else if (strcmp(*argv
,"-md") == 0)
387 if (--argc
< 1) goto bad
;
390 else if (strcmp(*argv
,"-policy") == 0)
392 if (--argc
< 1) goto bad
;
395 else if (strcmp(*argv
,"-keyfile") == 0)
397 if (--argc
< 1) goto bad
;
400 else if (strcmp(*argv
,"-keyform") == 0)
402 if (--argc
< 1) goto bad
;
403 keyform
=str2fmt(*(++argv
));
405 else if (strcmp(*argv
,"-passin") == 0)
407 if (--argc
< 1) goto bad
;
408 passargin
= *(++argv
);
410 else if (strcmp(*argv
,"-key") == 0)
412 if (--argc
< 1) goto bad
;
415 else if (strcmp(*argv
,"-cert") == 0)
417 if (--argc
< 1) goto bad
;
420 else if (strcmp(*argv
,"-selfsign") == 0)
422 else if (strcmp(*argv
,"-in") == 0)
424 if (--argc
< 1) goto bad
;
428 else if (strcmp(*argv
,"-out") == 0)
430 if (--argc
< 1) goto bad
;
433 else if (strcmp(*argv
,"-outdir") == 0)
435 if (--argc
< 1) goto bad
;
438 else if (strcmp(*argv
,"-notext") == 0)
440 else if (strcmp(*argv
,"-batch") == 0)
442 else if (strcmp(*argv
,"-preserveDN") == 0)
444 else if (strcmp(*argv
,"-noemailDN") == 0)
446 else if (strcmp(*argv
,"-gencrl") == 0)
448 else if (strcmp(*argv
,"-msie_hack") == 0)
450 else if (strcmp(*argv
,"-crldays") == 0)
452 if (--argc
< 1) goto bad
;
453 crldays
= atol(*(++argv
));
455 else if (strcmp(*argv
,"-crlhours") == 0)
457 if (--argc
< 1) goto bad
;
458 crlhours
= atol(*(++argv
));
460 else if (strcmp(*argv
,"-crlsec") == 0)
462 if (--argc
< 1) goto bad
;
463 crlsec
= atol(*(++argv
));
465 else if (strcmp(*argv
,"-infiles") == 0)
472 else if (strcmp(*argv
, "-ss_cert") == 0)
474 if (--argc
< 1) goto bad
;
475 ss_cert_file
= *(++argv
);
478 else if (strcmp(*argv
, "-spkac") == 0)
480 if (--argc
< 1) goto bad
;
481 spkac_file
= *(++argv
);
484 else if (strcmp(*argv
,"-revoke") == 0)
486 if (--argc
< 1) goto bad
;
490 else if (strcmp(*argv
,"-extensions") == 0)
492 if (--argc
< 1) goto bad
;
493 extensions
= *(++argv
);
495 else if (strcmp(*argv
,"-extfile") == 0)
497 if (--argc
< 1) goto bad
;
500 else if (strcmp(*argv
,"-status") == 0)
502 if (--argc
< 1) goto bad
;
503 ser_status
= *(++argv
);
505 else if (strcmp(*argv
,"-updatedb") == 0)
509 else if (strcmp(*argv
,"-crlexts") == 0)
511 if (--argc
< 1) goto bad
;
514 else if (strcmp(*argv
,"-crl_reason") == 0)
516 if (--argc
< 1) goto bad
;
518 rev_type
= REV_CRL_REASON
;
520 else if (strcmp(*argv
,"-crl_hold") == 0)
522 if (--argc
< 1) goto bad
;
526 else if (strcmp(*argv
,"-crl_compromise") == 0)
528 if (--argc
< 1) goto bad
;
530 rev_type
= REV_KEY_COMPROMISE
;
532 else if (strcmp(*argv
,"-crl_CA_compromise") == 0)
534 if (--argc
< 1) goto bad
;
536 rev_type
= REV_CA_COMPROMISE
;
538 #ifndef OPENSSL_NO_ENGINE
539 else if (strcmp(*argv
,"-engine") == 0)
541 if (--argc
< 1) goto bad
;
548 BIO_printf(bio_err
,"unknown option %s\n",*argv
);
560 for (pp2
=ca_usage
; (*pp2
!= NULL
); pp2
++)
561 BIO_printf(bio_err
,"%s",*pp2
);
565 ERR_load_crypto_strings();
567 /*****************************************************************/
569 if (configfile
== NULL
) configfile
= getenv("OPENSSL_CONF");
570 if (configfile
== NULL
) configfile
= getenv("SSLEAY_CONF");
571 if (configfile
== NULL
)
573 const char *s
=X509_get_default_cert_area();
576 #ifdef OPENSSL_SYS_VMS
577 len
= strlen(s
)+sizeof(CONFIG_FILE
);
578 tofree
=OPENSSL_malloc(len
);
581 len
= strlen(s
)+sizeof(CONFIG_FILE
)+1;
582 tofree
=OPENSSL_malloc(len
);
583 BUF_strlcpy(tofree
,s
,len
);
584 BUF_strlcat(tofree
,"/",len
);
586 BUF_strlcat(tofree
,CONFIG_FILE
,len
);
590 BIO_printf(bio_err
,"Using configuration from %s\n",configfile
);
591 conf
= NCONF_new(NULL
);
592 if (NCONF_load(conf
,configfile
,&errorline
) <= 0)
595 BIO_printf(bio_err
,"error loading the config file '%s'\n",
598 BIO_printf(bio_err
,"error on line %ld of config file '%s'\n"
599 ,errorline
,configfile
);
604 OPENSSL_free(tofree
);
608 if (!load_config(bio_err
, conf
))
611 #ifndef OPENSSL_NO_ENGINE
612 e
= setup_engine(bio_err
, engine
, 0);
615 /* Lets get the config section we are using */
618 section
=NCONF_get_string(conf
,BASE_SECTION
,ENV_DEFAULT_CA
);
621 lookup_fail(BASE_SECTION
,ENV_DEFAULT_CA
);
628 p
=NCONF_get_string(conf
,NULL
,"oid_file");
635 oid_bio
=BIO_new_file(p
,"r");
639 BIO_printf(bio_err,"problems opening %s for extra oid's\n",p);
640 ERR_print_errors(bio_err);
646 OBJ_create_objects(oid_bio
);
650 if (!add_oid_section(bio_err
,conf
))
652 ERR_print_errors(bio_err
);
657 randfile
= NCONF_get_string(conf
, BASE_SECTION
, "RANDFILE");
658 if (randfile
== NULL
)
660 app_RAND_load_file(randfile
, bio_err
, 0);
662 f
= NCONF_get_string(conf
, section
, STRING_MASK
);
666 if(f
&& !ASN1_STRING_set_default_mask_asc(f
)) {
667 BIO_printf(bio_err
, "Invalid global string mask setting %s\n", f
);
671 if (chtype
!= MBSTRING_UTF8
){
672 f
= NCONF_get_string(conf
, section
, UTF8_IN
);
675 else if (!strcmp(f
, "yes"))
676 chtype
= MBSTRING_UTF8
;
679 db_attr
.unique_subject
= 1;
680 p
= NCONF_get_string(conf
, section
, ENV_UNIQUE_SUBJECT
);
684 BIO_printf(bio_err
, "DEBUG: unique_subject = \"%s\"\n", p
);
686 db_attr
.unique_subject
= parse_yesno(p
,1);
692 BIO_printf(bio_err
, "DEBUG: unique_subject undefined\n", p
);
695 BIO_printf(bio_err
, "DEBUG: configured unique_subject is %d\n",
696 db_attr
.unique_subject
);
699 in
=BIO_new(BIO_s_file());
700 out
=BIO_new(BIO_s_file());
701 Sout
=BIO_new(BIO_s_file());
702 Cout
=BIO_new(BIO_s_file());
703 if ((in
== NULL
) || (out
== NULL
) || (Sout
== NULL
) || (Cout
== NULL
))
705 ERR_print_errors(bio_err
);
709 /*****************************************************************/
710 /* report status of cert with serial number given on command line */
713 if ((dbfile
=NCONF_get_string(conf
,section
,ENV_DATABASE
)) == NULL
)
715 lookup_fail(section
,ENV_DATABASE
);
718 db
= load_index(dbfile
,&db_attr
);
719 if (db
== NULL
) goto err
;
721 if (!index_index(db
)) goto err
;
723 if (get_certificate_status(ser_status
,db
) != 1)
724 BIO_printf(bio_err
,"Error verifying serial %s!\n",
729 /*****************************************************************/
730 /* we definitely need a private key, so let's get it */
732 if ((keyfile
== NULL
) && ((keyfile
=NCONF_get_string(conf
,
733 section
,ENV_PRIVATE_KEY
)) == NULL
))
735 lookup_fail(section
,ENV_PRIVATE_KEY
);
741 if (!app_passwd(bio_err
, passargin
, NULL
, &key
, NULL
))
743 BIO_printf(bio_err
,"Error getting password\n");
747 pkey
= load_key(bio_err
, keyfile
, keyform
, 0, key
, e
,
749 if (key
) OPENSSL_cleanse(key
,strlen(key
));
752 /* load_key() has already printed an appropriate message */
756 /*****************************************************************/
757 /* we need a certificate */
758 if (!selfsign
|| spkac_file
|| ss_cert_file
|| gencrl
)
760 if ((certfile
== NULL
)
761 && ((certfile
=NCONF_get_string(conf
,
762 section
,ENV_CERTIFICATE
)) == NULL
))
764 lookup_fail(section
,ENV_CERTIFICATE
);
767 x509
=load_cert(bio_err
, certfile
, FORMAT_PEM
, NULL
, e
,
772 if (!X509_check_private_key(x509
,pkey
))
774 BIO_printf(bio_err
,"CA certificate and CA private key do not match\n");
778 if (!selfsign
) x509p
= x509
;
780 f
=NCONF_get_string(conf
,BASE_SECTION
,ENV_PRESERVE
);
783 if ((f
!= NULL
) && ((*f
== 'y') || (*f
== 'Y')))
785 f
=NCONF_get_string(conf
,BASE_SECTION
,ENV_MSIE_HACK
);
788 if ((f
!= NULL
) && ((*f
== 'y') || (*f
== 'Y')))
791 f
=NCONF_get_string(conf
,section
,ENV_NAMEOPT
);
795 if (!set_name_ex(&nameopt
, f
))
797 BIO_printf(bio_err
, "Invalid name options: \"%s\"\n", f
);
805 f
=NCONF_get_string(conf
,section
,ENV_CERTOPT
);
809 if (!set_cert_ex(&certopt
, f
))
811 BIO_printf(bio_err
, "Invalid certificate options: \"%s\"\n", f
);
819 f
=NCONF_get_string(conf
,section
,ENV_EXTCOPY
);
823 if (!set_ext_copy(&ext_copy
, f
))
825 BIO_printf(bio_err
, "Invalid extension copy option: \"%s\"\n", f
);
832 /*****************************************************************/
833 /* lookup where to write new certificates */
834 if ((outdir
== NULL
) && (req
))
837 if ((outdir
=NCONF_get_string(conf
,section
,ENV_NEW_CERTS_DIR
))
840 BIO_printf(bio_err
,"there needs to be defined a directory for new certificate to be placed in\n");
843 #ifndef OPENSSL_SYS_VMS
844 /* outdir is a directory spec, but access() for VMS demands a
845 filename. In any case, stat(), below, will catch the problem
846 if outdir is not a directory spec, and the fopen() or open()
847 will catch an error if there is no write access.
849 Presumably, this problem could also be solved by using the DEC
850 C routines to convert the directory syntax to Unixly, and give
851 that to access(). However, time's too short to do that just
855 if (access(outdir
,R_OK
|W_OK
|X_OK
) != 0)
857 if (_access(outdir
,R_OK
|W_OK
|X_OK
) != 0)
860 BIO_printf(bio_err
,"I am unable to access the %s directory\n",outdir
);
865 if (app_isdir(outdir
)<=0)
867 BIO_printf(bio_err
,"%s need to be a directory\n",outdir
);
874 /*****************************************************************/
875 /* we need to load the database file */
876 if ((dbfile
=NCONF_get_string(conf
,section
,ENV_DATABASE
)) == NULL
)
878 lookup_fail(section
,ENV_DATABASE
);
881 db
= load_index(dbfile
, &db_attr
);
882 if (db
== NULL
) goto err
;
884 /* Lets check some fields */
885 for (i
=0; i
<sk_OPENSSL_PSTRING_num(db
->db
->data
); i
++)
887 pp
=sk_OPENSSL_PSTRING_value(db
->db
->data
,i
);
888 if ((pp
[DB_type
][0] != DB_TYPE_REV
) &&
889 (pp
[DB_rev_date
][0] != '\0'))
891 BIO_printf(bio_err
,"entry %d: not revoked yet, but has a revocation date\n",i
+1);
894 if ((pp
[DB_type
][0] == DB_TYPE_REV
) &&
895 !make_revoked(NULL
, pp
[DB_rev_date
]))
897 BIO_printf(bio_err
," in entry %d\n", i
+1);
900 if (!check_time_format((char *)pp
[DB_exp_date
]))
902 BIO_printf(bio_err
,"entry %d: invalid expiry date\n",i
+1);
912 if ((j
&1) || (j
< 2))
914 BIO_printf(bio_err
,"entry %d: bad serial number length (%d)\n",i
+1,j
);
919 if (!( ((*p
>= '0') && (*p
<= '9')) ||
920 ((*p
>= 'A') && (*p
<= 'F')) ||
921 ((*p
>= 'a') && (*p
<= 'f'))) )
923 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
);
931 BIO_set_fp(out
,stdout
,BIO_NOCLOSE
|BIO_FP_TEXT
); /* cannot fail */
932 #ifdef OPENSSL_SYS_VMS
934 BIO
*tmpbio
= BIO_new(BIO_f_linebuffer());
935 out
= BIO_push(tmpbio
, out
);
938 TXT_DB_write(out
,db
->db
);
939 BIO_printf(bio_err
,"%d entries loaded from the database\n",
940 sk_OPENSSL_PSTRING_num(db
->db
->data
));
941 BIO_printf(bio_err
,"generating index\n");
944 if (!index_index(db
)) goto err
;
946 /*****************************************************************/
947 /* Update the db file for expired certificates */
951 BIO_printf(bio_err
, "Updating %s ...\n",
957 BIO_printf(bio_err
,"Malloc failure\n");
962 if (verbose
) BIO_printf(bio_err
,
963 "No entries found to mark expired\n");
967 if (!save_index(dbfile
,"new",db
)) goto err
;
969 if (!rotate_index(dbfile
,"new","old")) goto err
;
971 if (verbose
) BIO_printf(bio_err
,
972 "Done. %d entries marked as expired\n",i
);
976 /*****************************************************************/
977 /* Read extentions config file */
980 extconf
= NCONF_new(NULL
);
981 if (NCONF_load(extconf
,extfile
,&errorline
) <= 0)
984 BIO_printf(bio_err
, "ERROR: loading the config file '%s'\n",
987 BIO_printf(bio_err
, "ERROR: on line %ld of config file '%s'\n",
994 BIO_printf(bio_err
, "Successfully loaded extensions file %s\n", extfile
);
996 /* We can have sections in the ext file */
997 if (!extensions
&& !(extensions
= NCONF_get_string(extconf
, "default", "extensions")))
998 extensions
= "default";
1001 /*****************************************************************/
1004 if (outfile
!= NULL
)
1006 if (BIO_write_filename(Sout
,outfile
) <= 0)
1014 BIO_set_fp(Sout
,stdout
,BIO_NOCLOSE
|BIO_FP_TEXT
);
1015 #ifdef OPENSSL_SYS_VMS
1017 BIO
*tmpbio
= BIO_new(BIO_f_linebuffer());
1018 Sout
= BIO_push(tmpbio
, Sout
);
1024 if ((md
== NULL
) && ((md
=NCONF_get_string(conf
,
1025 section
,ENV_DEFAULT_MD
)) == NULL
))
1027 lookup_fail(section
,ENV_DEFAULT_MD
);
1031 if (!strcmp(md
, "default"))
1034 if (EVP_PKEY_get_default_digest_nid(pkey
, &def_nid
) <= 0)
1036 BIO_puts(bio_err
,"no default digest\n");
1039 md
= (char *)OBJ_nid2sn(def_nid
);
1042 if ((dgst
=EVP_get_digestbyname(md
)) == NULL
)
1044 BIO_printf(bio_err
,"%s is an unsupported message digest type\n",md
);
1050 if ((email_dn
== 1) && ((tmp_email_dn
=NCONF_get_string(conf
,
1051 section
,ENV_DEFAULT_EMAIL_DN
)) != NULL
))
1053 if(strcmp(tmp_email_dn
,"no") == 0)
1057 BIO_printf(bio_err
,"message digest is %s\n",
1058 OBJ_nid2ln(dgst
->type
));
1059 if ((policy
== NULL
) && ((policy
=NCONF_get_string(conf
,
1060 section
,ENV_POLICY
)) == NULL
))
1062 lookup_fail(section
,ENV_POLICY
);
1066 BIO_printf(bio_err
,"policy is %s\n",policy
);
1068 if ((serialfile
=NCONF_get_string(conf
,section
,ENV_SERIAL
))
1071 lookup_fail(section
,ENV_SERIAL
);
1077 /* no '-extfile' option, so we look for extensions
1078 * in the main configuration file */
1081 extensions
=NCONF_get_string(conf
,section
,
1088 /* Check syntax of file */
1090 X509V3_set_ctx_test(&ctx
);
1091 X509V3_set_nconf(&ctx
, conf
);
1092 if (!X509V3_EXT_add_nconf(conf
, &ctx
, extensions
,
1096 "Error Loading extension section %s\n",
1104 if (startdate
== NULL
)
1106 startdate
=NCONF_get_string(conf
,section
,
1107 ENV_DEFAULT_STARTDATE
);
1108 if (startdate
== NULL
)
1111 if (startdate
&& !ASN1_TIME_set_string(NULL
, startdate
))
1113 BIO_printf(bio_err
,"start date is invalid, it should be YYMMDDHHMMSSZ or YYYYMMDDHHMMSSZ\n");
1116 if (startdate
== NULL
) startdate
="today";
1118 if (enddate
== NULL
)
1120 enddate
=NCONF_get_string(conf
,section
,
1121 ENV_DEFAULT_ENDDATE
);
1122 if (enddate
== NULL
)
1125 if (enddate
&& !ASN1_TIME_set_string(NULL
, enddate
))
1127 BIO_printf(bio_err
,"end date is invalid, it should be YYMMDDHHMMSSZ or YYYYMMDDHHMMSSZ\n");
1133 if(!NCONF_get_number(conf
,section
, ENV_DEFAULT_DAYS
, &days
))
1136 if (!enddate
&& (days
== 0))
1138 BIO_printf(bio_err
,"cannot lookup how many days to certify for\n");
1142 if ((serial
=load_serial(serialfile
, create_ser
, NULL
)) == NULL
)
1144 BIO_printf(bio_err
,"error while loading serial number\n");
1149 if (BN_is_zero(serial
))
1150 BIO_printf(bio_err
,"next serial number is 00\n");
1153 if ((f
=BN_bn2hex(serial
)) == NULL
) goto err
;
1154 BIO_printf(bio_err
,"next serial number is %s\n",f
);
1159 if ((attribs
=NCONF_get_section(conf
,policy
)) == NULL
)
1161 BIO_printf(bio_err
,"unable to find 'section' for %s\n",policy
);
1165 if ((cert_sk
=sk_X509_new_null()) == NULL
)
1167 BIO_printf(bio_err
,"Memory allocation failure\n");
1170 if (spkac_file
!= NULL
)
1173 j
=certify_spkac(&x
,spkac_file
,pkey
,x509
,dgst
,attribs
,db
,
1174 serial
,subj
,chtype
,multirdn
,email_dn
,startdate
,enddate
,days
,extensions
,
1175 conf
,verbose
,certopt
,nameopt
,default_op
,ext_copy
);
1176 if (j
< 0) goto err
;
1180 BIO_printf(bio_err
,"\n");
1181 if (!BN_add_word(serial
,1)) goto err
;
1182 if (!sk_X509_push(cert_sk
,x
))
1184 BIO_printf(bio_err
,"Memory allocation failure\n");
1194 if (ss_cert_file
!= NULL
)
1197 j
=certify_cert(&x
,ss_cert_file
,pkey
,x509
,dgst
,attribs
,
1198 db
,serial
,subj
,chtype
,multirdn
,email_dn
,startdate
,enddate
,days
,batch
,
1199 extensions
,conf
,verbose
, certopt
, nameopt
,
1200 default_op
, ext_copy
, e
);
1201 if (j
< 0) goto err
;
1205 BIO_printf(bio_err
,"\n");
1206 if (!BN_add_word(serial
,1)) goto err
;
1207 if (!sk_X509_push(cert_sk
,x
))
1209 BIO_printf(bio_err
,"Memory allocation failure\n");
1217 j
=certify(&x
,infile
,pkey
,x509p
,dgst
,attribs
,db
,
1218 serial
,subj
,chtype
,multirdn
,email_dn
,startdate
,enddate
,days
,batch
,
1219 extensions
,conf
,verbose
, certopt
, nameopt
,
1220 default_op
, ext_copy
, selfsign
);
1221 if (j
< 0) goto err
;
1225 BIO_printf(bio_err
,"\n");
1226 if (!BN_add_word(serial
,1)) goto err
;
1227 if (!sk_X509_push(cert_sk
,x
))
1229 BIO_printf(bio_err
,"Memory allocation failure\n");
1234 for (i
=0; i
<argc
; i
++)
1237 j
=certify(&x
,argv
[i
],pkey
,x509p
,dgst
,attribs
,db
,
1238 serial
,subj
,chtype
,multirdn
,email_dn
,startdate
,enddate
,days
,batch
,
1239 extensions
,conf
,verbose
, certopt
, nameopt
,
1240 default_op
, ext_copy
, selfsign
);
1241 if (j
< 0) goto err
;
1245 BIO_printf(bio_err
,"\n");
1246 if (!BN_add_word(serial
,1)) goto err
;
1247 if (!sk_X509_push(cert_sk
,x
))
1249 BIO_printf(bio_err
,"Memory allocation failure\n");
1254 /* we have a stack of newly certified certificates
1255 * and a data base and serial number that need
1258 if (sk_X509_num(cert_sk
) > 0)
1262 BIO_printf(bio_err
,"\n%d out of %d certificate requests certified, commit? [y/n]",total_done
,total
);
1263 (void)BIO_flush(bio_err
);
1265 if (!fgets(buf
[0],10,stdin
))
1267 BIO_printf(bio_err
,"CERTIFICATION CANCELED: I/O error\n");
1271 if ((buf
[0][0] != 'y') && (buf
[0][0] != 'Y'))
1273 BIO_printf(bio_err
,"CERTIFICATION CANCELED\n");
1279 BIO_printf(bio_err
,"Write out database with %d new entries\n",sk_X509_num(cert_sk
));
1281 if (!save_serial(serialfile
,"new",serial
,NULL
)) goto err
;
1283 if (!save_index(dbfile
, "new", db
)) goto err
;
1287 BIO_printf(bio_err
,"writing new certificates\n");
1288 for (i
=0; i
<sk_X509_num(cert_sk
); i
++)
1293 x
=sk_X509_value(cert_sk
,i
);
1295 j
=x
->cert_info
->serialNumber
->length
;
1296 p
=(const char *)x
->cert_info
->serialNumber
->data
;
1298 if(strlen(outdir
) >= (size_t)(j
? BSIZE
-j
*2-6 : BSIZE
-8))
1300 BIO_printf(bio_err
,"certificate file name too long\n");
1304 strlcpy(buf
[2],outdir
, sizeof(buf
[2]));
1306 #ifndef OPENSSL_SYS_VMS
1307 BUF_strlcat(buf
[2],"/",sizeof(buf
[2]));
1310 n
=(char *)&(buf
[2][strlen(buf
[2])]);
1315 if (n
>= &(buf
[2][sizeof(buf
[2])]))
1318 &buf
[2][0] + sizeof(buf
[2]) - n
,
1319 "%02X",(unsigned char)*(p
++));
1328 *(n
++)='.'; *(n
++)='p'; *(n
++)='e'; *(n
++)='m';
1331 BIO_printf(bio_err
,"writing %s\n",buf
[2]);
1333 if (BIO_write_filename(Cout
,buf
[2]) <= 0)
1338 write_new_certificate(Cout
,x
, 0, notext
);
1339 write_new_certificate(Sout
,x
, output_der
, notext
);
1342 if (sk_X509_num(cert_sk
))
1344 /* Rename the database and the serial file */
1345 if (!rotate_serial(serialfile
,"new","old")) goto err
;
1347 if (!rotate_index(dbfile
,"new","old")) goto err
;
1349 BIO_printf(bio_err
,"Data Base Updated\n");
1353 /*****************************************************************/
1359 crl_ext
=NCONF_get_string(conf
,section
,ENV_CRLEXT
);
1365 /* Check syntax of file */
1367 X509V3_set_ctx_test(&ctx
);
1368 X509V3_set_nconf(&ctx
, conf
);
1369 if (!X509V3_EXT_add_nconf(conf
, &ctx
, crl_ext
, NULL
))
1372 "Error Loading CRL extension section %s\n",
1379 if ((crlnumberfile
=NCONF_get_string(conf
,section
,ENV_CRLNUMBER
))
1381 if ((crlnumber
=load_serial(crlnumberfile
,0,NULL
)) == NULL
)
1383 BIO_printf(bio_err
,"error while loading CRL number\n");
1387 if (!crldays
&& !crlhours
&& !crlsec
)
1389 if (!NCONF_get_number(conf
,section
,
1390 ENV_DEFAULT_CRL_DAYS
, &crldays
))
1392 if (!NCONF_get_number(conf
,section
,
1393 ENV_DEFAULT_CRL_HOURS
, &crlhours
))
1396 if ((crldays
== 0) && (crlhours
== 0) && (crlsec
== 0))
1398 BIO_printf(bio_err
,"cannot lookup how long until the next CRL is issued\n");
1402 if (verbose
) BIO_printf(bio_err
,"making CRL\n");
1403 if ((crl
=X509_CRL_new()) == NULL
) goto err
;
1404 if (!X509_CRL_set_issuer_name(crl
, X509_get_subject_name(x509
))) goto err
;
1406 tmptm
= ASN1_TIME_new();
1407 if (!tmptm
) goto err
;
1408 X509_gmtime_adj(tmptm
,0);
1409 X509_CRL_set_lastUpdate(crl
, tmptm
);
1410 if (!X509_time_adj_ex(tmptm
, crldays
, crlhours
*60*60 + crlsec
,
1413 BIO_puts(bio_err
, "error setting CRL nextUpdate\n");
1416 X509_CRL_set_nextUpdate(crl
, tmptm
);
1418 ASN1_TIME_free(tmptm
);
1420 for (i
=0; i
<sk_OPENSSL_PSTRING_num(db
->db
->data
); i
++)
1422 pp
=sk_OPENSSL_PSTRING_value(db
->db
->data
,i
);
1423 if (pp
[DB_type
][0] == DB_TYPE_REV
)
1425 if ((r
=X509_REVOKED_new()) == NULL
) goto err
;
1426 j
= make_revoked(r
, pp
[DB_rev_date
]);
1428 if (j
== 2) crl_v2
= 1;
1429 if (!BN_hex2bn(&serial
, pp
[DB_serial
]))
1431 tmpser
= BN_to_ASN1_INTEGER(serial
, NULL
);
1436 X509_REVOKED_set_serialNumber(r
, tmpser
);
1437 ASN1_INTEGER_free(tmpser
);
1438 X509_CRL_add0_revoked(crl
,r
);
1442 /* sort the data so it will be written in serial
1446 /* we now have a CRL */
1447 if (verbose
) BIO_printf(bio_err
,"signing CRL\n");
1449 /* Add any extensions asked for */
1451 if (crl_ext
|| crlnumberfile
!= NULL
)
1454 X509V3_set_ctx(&crlctx
, x509
, NULL
, NULL
, crl
, 0);
1455 X509V3_set_nconf(&crlctx
, conf
);
1458 if (!X509V3_EXT_CRL_add_nconf(conf
, &crlctx
,
1459 crl_ext
, crl
)) goto err
;
1460 if (crlnumberfile
!= NULL
)
1462 tmpser
= BN_to_ASN1_INTEGER(crlnumber
, NULL
);
1463 if (!tmpser
) goto err
;
1464 X509_CRL_add1_ext_i2d(crl
,NID_crl_number
,tmpser
,0,0);
1465 ASN1_INTEGER_free(tmpser
);
1467 if (!BN_add_word(crlnumber
,1)) goto err
;
1470 if (crl_ext
|| crl_v2
)
1472 if (!X509_CRL_set_version(crl
, 1))
1473 goto err
; /* version 2 CRL */
1477 if (crlnumberfile
!= NULL
) /* we have a CRL number that need updating */
1478 if (!save_serial(crlnumberfile
,"new",crlnumber
,NULL
)) goto err
;
1486 if (!X509_CRL_sign(crl
,pkey
,dgst
)) goto err
;
1488 PEM_write_bio_X509_CRL(Sout
,crl
);
1490 if (crlnumberfile
!= NULL
) /* Rename the crlnumber file */
1491 if (!rotate_serial(crlnumberfile
,"new","old")) goto err
;
1494 /*****************************************************************/
1499 BIO_printf(bio_err
,"no input files\n");
1505 revcert
=load_cert(bio_err
, infile
, FORMAT_PEM
,
1507 if (revcert
== NULL
)
1509 j
=do_revoke(revcert
,db
, rev_type
, rev_arg
);
1510 if (j
<= 0) goto err
;
1513 if (!save_index(dbfile
, "new", db
)) goto err
;
1515 if (!rotate_index(dbfile
, "new", "old")) goto err
;
1517 BIO_printf(bio_err
,"Data Base Updated\n");
1520 /*****************************************************************/
1524 OPENSSL_free(tofree
);
1531 sk_X509_pop_free(cert_sk
,X509_free
);
1533 if (ret
) ERR_print_errors(bio_err
);
1534 app_RAND_write_file(randfile
, bio_err
);
1535 if (free_key
&& key
)
1540 EVP_PKEY_free(pkey
);
1541 if (x509
) X509_free(x509
);
1544 NCONF_free(extconf
);
1550 static void lookup_fail(const char *name
, const char *tag
)
1552 BIO_printf(bio_err
,"variable lookup failed for %s::%s\n",name
,tag
);
1555 static int certify(X509
**xret
, char *infile
, EVP_PKEY
*pkey
, X509
*x509
,
1556 const EVP_MD
*dgst
, STACK_OF(CONF_VALUE
) *policy
, CA_DB
*db
,
1557 BIGNUM
*serial
, char *subj
,unsigned long chtype
, int multirdn
, int email_dn
, char *startdate
, char *enddate
,
1558 long days
, int batch
, char *ext_sect
, CONF
*lconf
, int verbose
,
1559 unsigned long certopt
, unsigned long nameopt
, int default_op
,
1560 int ext_copy
, int selfsign
)
1564 EVP_PKEY
*pktmp
=NULL
;
1567 in
=BIO_new(BIO_s_file());
1569 if (BIO_read_filename(in
,infile
) <= 0)
1574 if ((req
=PEM_read_bio_X509_REQ(in
,NULL
,NULL
,NULL
)) == NULL
)
1576 BIO_printf(bio_err
,"Error reading certificate request in %s\n",
1581 X509_REQ_print(bio_err
,req
);
1583 BIO_printf(bio_err
,"Check that the request matches the signature\n");
1585 if (selfsign
&& !X509_REQ_check_private_key(req
,pkey
))
1587 BIO_printf(bio_err
,"Certificate request and CA private key do not match\n");
1591 if ((pktmp
=X509_REQ_get_pubkey(req
)) == NULL
)
1593 BIO_printf(bio_err
,"error unpacking public key\n");
1596 i
=X509_REQ_verify(req
,pktmp
);
1597 EVP_PKEY_free(pktmp
);
1601 BIO_printf(bio_err
,"Signature verification problems....\n");
1607 BIO_printf(bio_err
,"Signature did not match the certificate request\n");
1611 BIO_printf(bio_err
,"Signature ok\n");
1613 ok
=do_body(xret
,pkey
,x509
,dgst
,policy
,db
,serial
,subj
,chtype
,multirdn
, email_dn
,
1614 startdate
,enddate
,days
,batch
,verbose
,req
,ext_sect
,lconf
,
1615 certopt
, nameopt
, default_op
, ext_copy
, selfsign
);
1618 if (req
!= NULL
) X509_REQ_free(req
);
1619 if (in
!= NULL
) BIO_free(in
);
1623 static int certify_cert(X509
**xret
, char *infile
, EVP_PKEY
*pkey
, X509
*x509
,
1624 const EVP_MD
*dgst
, STACK_OF(CONF_VALUE
) *policy
, CA_DB
*db
,
1625 BIGNUM
*serial
, char *subj
, unsigned long chtype
, int multirdn
, int email_dn
, char *startdate
, char *enddate
,
1626 long days
, int batch
, char *ext_sect
, CONF
*lconf
, int verbose
,
1627 unsigned long certopt
, unsigned long nameopt
, int default_op
,
1628 int ext_copy
, ENGINE
*e
)
1631 X509_REQ
*rreq
=NULL
;
1632 EVP_PKEY
*pktmp
=NULL
;
1635 if ((req
=load_cert(bio_err
, infile
, FORMAT_PEM
, NULL
, e
, infile
)) == NULL
)
1638 X509_print(bio_err
,req
);
1640 BIO_printf(bio_err
,"Check that the request matches the signature\n");
1642 if ((pktmp
=X509_get_pubkey(req
)) == NULL
)
1644 BIO_printf(bio_err
,"error unpacking public key\n");
1647 i
=X509_verify(req
,pktmp
);
1648 EVP_PKEY_free(pktmp
);
1652 BIO_printf(bio_err
,"Signature verification problems....\n");
1658 BIO_printf(bio_err
,"Signature did not match the certificate\n");
1662 BIO_printf(bio_err
,"Signature ok\n");
1664 if ((rreq
=X509_to_X509_REQ(req
,NULL
,EVP_md5())) == NULL
)
1667 ok
=do_body(xret
,pkey
,x509
,dgst
,policy
,db
,serial
,subj
,chtype
,multirdn
,email_dn
,startdate
,enddate
,
1668 days
,batch
,verbose
,rreq
,ext_sect
,lconf
, certopt
, nameopt
, default_op
,
1672 if (rreq
!= NULL
) X509_REQ_free(rreq
);
1673 if (req
!= NULL
) X509_free(req
);
1677 static int do_body(X509
**xret
, EVP_PKEY
*pkey
, X509
*x509
, const EVP_MD
*dgst
,
1678 STACK_OF(CONF_VALUE
) *policy
, CA_DB
*db
, BIGNUM
*serial
, char *subj
,
1679 unsigned long chtype
, int multirdn
,
1680 int email_dn
, char *startdate
, char *enddate
, long days
, int batch
,
1681 int verbose
, X509_REQ
*req
, char *ext_sect
, CONF
*lconf
,
1682 unsigned long certopt
, unsigned long nameopt
, int default_op
,
1683 int ext_copy
, int selfsign
)
1685 X509_NAME
*name
=NULL
,*CAname
=NULL
,*subject
=NULL
, *dn_subject
=NULL
;
1686 ASN1_UTCTIME
*tm
,*tmptm
;
1687 ASN1_STRING
*str
,*str2
;
1691 X509_NAME_ENTRY
*ne
;
1692 X509_NAME_ENTRY
*tne
,*push
;
1694 int ok
= -1,i
,j
,last
,nid
;
1697 OPENSSL_STRING row
[DB_NUMBER
];
1698 OPENSSL_STRING
*irow
=NULL
;
1699 OPENSSL_STRING
*rrow
=NULL
;
1702 tmptm
=ASN1_UTCTIME_new();
1705 BIO_printf(bio_err
,"malloc error\n");
1709 for (i
=0; i
<DB_NUMBER
; i
++)
1714 X509_NAME
*n
= parse_name(subj
, chtype
, multirdn
);
1718 ERR_print_errors(bio_err
);
1721 X509_REQ_set_subject_name(req
,n
);
1722 req
->req_info
->enc
.modified
= 1;
1727 BIO_printf(bio_err
,"The Subject's Distinguished Name is as follows\n");
1729 name
=X509_REQ_get_subject_name(req
);
1730 for (i
=0; i
<X509_NAME_entry_count(name
); i
++)
1732 ne
= X509_NAME_get_entry(name
,i
);
1733 str
=X509_NAME_ENTRY_get_data(ne
);
1734 obj
=X509_NAME_ENTRY_get_object(ne
);
1738 /* assume all type should be strings */
1739 nid
=OBJ_obj2nid(ne
->object
);
1741 if (str
->type
== V_ASN1_UNIVERSALSTRING
)
1742 ASN1_UNIVERSALSTRING_to_string(str
);
1744 if ((str
->type
== V_ASN1_IA5STRING
) &&
1745 (nid
!= NID_pkcs9_emailAddress
))
1746 str
->type
=V_ASN1_T61STRING
;
1748 if ((nid
== NID_pkcs9_emailAddress
) &&
1749 (str
->type
== V_ASN1_PRINTABLESTRING
))
1750 str
->type
=V_ASN1_IA5STRING
;
1753 /* If no EMAIL is wanted in the subject */
1754 if ((OBJ_obj2nid(obj
) == NID_pkcs9_emailAddress
) && (!email_dn
))
1757 /* check some things */
1758 if ((OBJ_obj2nid(obj
) == NID_pkcs9_emailAddress
) &&
1759 (str
->type
!= V_ASN1_IA5STRING
))
1761 BIO_printf(bio_err
,"\nemailAddress type needs to be of type IA5STRING\n");
1764 if ((str
->type
!= V_ASN1_BMPSTRING
) && (str
->type
!= V_ASN1_UTF8STRING
))
1766 j
=ASN1_PRINTABLE_type(str
->data
,str
->length
);
1767 if ( ((j
== V_ASN1_T61STRING
) &&
1768 (str
->type
!= V_ASN1_T61STRING
)) ||
1769 ((j
== V_ASN1_IA5STRING
) &&
1770 (str
->type
== V_ASN1_PRINTABLESTRING
)))
1772 BIO_printf(bio_err
,"\nThe string contains characters that are illegal for the ASN.1 type\n");
1778 old_entry_print(bio_err
, obj
, str
);
1781 /* Ok, now we check the 'policy' stuff. */
1782 if ((subject
=X509_NAME_new()) == NULL
)
1784 BIO_printf(bio_err
,"Memory allocation failure\n");
1788 /* take a copy of the issuer name before we mess with it. */
1790 CAname
=X509_NAME_dup(name
);
1792 CAname
=X509_NAME_dup(x509
->cert_info
->subject
);
1793 if (CAname
== NULL
) goto err
;
1796 for (i
=0; i
<sk_CONF_VALUE_num(policy
); i
++)
1798 cv
=sk_CONF_VALUE_value(policy
,i
); /* get the object id */
1799 if ((j
=OBJ_txt2nid(cv
->name
)) == NID_undef
)
1801 BIO_printf(bio_err
,"%s:unknown object type in 'policy' configuration\n",cv
->name
);
1809 /* lookup the object in the supplied name list */
1810 j
=X509_NAME_get_index_by_OBJ(name
,obj
,last
);
1813 if (last
!= -1) break;
1818 tne
=X509_NAME_get_entry(name
,j
);
1822 /* depending on the 'policy', decide what to do. */
1824 if (strcmp(cv
->value
,"optional") == 0)
1829 else if (strcmp(cv
->value
,"supplied") == 0)
1833 BIO_printf(bio_err
,"The %s field needed to be supplied and was missing\n",cv
->name
);
1839 else if (strcmp(cv
->value
,"match") == 0)
1845 BIO_printf(bio_err
,"The mandatory %s field was missing\n",cv
->name
);
1852 j
=X509_NAME_get_index_by_OBJ(CAname
,obj
,last2
);
1853 if ((j
< 0) && (last2
== -1))
1855 BIO_printf(bio_err
,"The %s field does not exist in the CA certificate,\nthe 'policy' is misconfigured\n",cv
->name
);
1860 push
=X509_NAME_get_entry(CAname
,j
);
1861 str
=X509_NAME_ENTRY_get_data(tne
);
1862 str2
=X509_NAME_ENTRY_get_data(push
);
1864 if (ASN1_STRING_cmp(str
,str2
) != 0)
1869 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
));
1875 BIO_printf(bio_err
,"%s:invalid type in 'policy' configuration\n",cv
->value
);
1881 if (!X509_NAME_add_entry(subject
,push
, -1, 0))
1884 X509_NAME_ENTRY_free(push
);
1885 BIO_printf(bio_err
,"Memory allocation failure\n");
1895 X509_NAME_free(subject
);
1896 /* subject=X509_NAME_dup(X509_REQ_get_subject_name(req)); */
1897 subject
=X509_NAME_dup(name
);
1898 if (subject
== NULL
) goto err
;
1902 BIO_printf(bio_err
,"The subject name appears to be ok, checking data base for clashes\n");
1904 /* Build the correct Subject if no e-mail is wanted in the subject */
1905 /* and add it later on because of the method extensions are added (altName) */
1908 dn_subject
= subject
;
1911 X509_NAME_ENTRY
*tmpne
;
1912 /* Its best to dup the subject DN and then delete any email
1913 * addresses because this retains its structure.
1915 if (!(dn_subject
= X509_NAME_dup(subject
)))
1917 BIO_printf(bio_err
,"Memory allocation failure\n");
1920 while((i
= X509_NAME_get_index_by_NID(dn_subject
,
1921 NID_pkcs9_emailAddress
, -1)) >= 0)
1923 tmpne
= X509_NAME_get_entry(dn_subject
, i
);
1924 X509_NAME_delete_entry(dn_subject
, i
);
1925 X509_NAME_ENTRY_free(tmpne
);
1929 if (BN_is_zero(serial
))
1930 row
[DB_serial
]=BUF_strdup("00");
1932 row
[DB_serial
]=BN_bn2hex(serial
);
1933 if (row
[DB_serial
] == NULL
)
1935 BIO_printf(bio_err
,"Memory allocation failure\n");
1939 if (db
->attributes
.unique_subject
)
1941 OPENSSL_STRING
*crow
=row
;
1943 rrow
=TXT_DB_get_by_index(db
->db
,DB_name
,crow
);
1947 "ERROR:There is already a certificate for %s\n",
1953 rrow
=TXT_DB_get_by_index(db
->db
,DB_serial
,row
);
1956 BIO_printf(bio_err
,"ERROR:Serial number %s has already been issued,\n",
1958 BIO_printf(bio_err
," check the database/serial_file for corruption\n");
1965 "The matching entry has the following details\n");
1966 if (rrow
[DB_type
][0] == 'E')
1968 else if (rrow
[DB_type
][0] == 'R')
1970 else if (rrow
[DB_type
][0] == 'V')
1973 p
="\ninvalid type, Data base error\n";
1974 BIO_printf(bio_err
,"Type :%s\n",p
);;
1975 if (rrow
[DB_type
][0] == 'R')
1977 p
=rrow
[DB_exp_date
]; if (p
== NULL
) p
="undef";
1978 BIO_printf(bio_err
,"Was revoked on:%s\n",p
);
1980 p
=rrow
[DB_exp_date
]; if (p
== NULL
) p
="undef";
1981 BIO_printf(bio_err
,"Expires on :%s\n",p
);
1982 p
=rrow
[DB_serial
]; if (p
== NULL
) p
="undef";
1983 BIO_printf(bio_err
,"Serial Number :%s\n",p
);
1984 p
=rrow
[DB_file
]; if (p
== NULL
) p
="undef";
1985 BIO_printf(bio_err
,"File name :%s\n",p
);
1986 p
=rrow
[DB_name
]; if (p
== NULL
) p
="undef";
1987 BIO_printf(bio_err
,"Subject Name :%s\n",p
);
1988 ok
= -1; /* This is now a 'bad' error. */
1992 /* We are now totally happy, lets make and sign the certificate */
1994 BIO_printf(bio_err
,"Everything appears to be ok, creating and signing the certificate\n");
1996 if ((ret
=X509_new()) == NULL
) goto err
;
2000 /* Make it an X509 v3 certificate. */
2001 if (!X509_set_version(ret
,2)) goto err
;
2004 if (BN_to_ASN1_INTEGER(serial
,ci
->serialNumber
) == NULL
)
2008 if (!X509_set_issuer_name(ret
,subject
))
2013 if (!X509_set_issuer_name(ret
,X509_get_subject_name(x509
)))
2017 if (strcmp(startdate
,"today") == 0)
2018 X509_gmtime_adj(X509_get_notBefore(ret
),0);
2019 else ASN1_TIME_set_string(X509_get_notBefore(ret
),startdate
);
2021 if (enddate
== NULL
)
2022 X509_time_adj_ex(X509_get_notAfter(ret
),days
, 0, NULL
);
2023 else ASN1_TIME_set_string(X509_get_notAfter(ret
),enddate
);
2025 if (!X509_set_subject_name(ret
,subject
)) goto err
;
2027 pktmp
=X509_REQ_get_pubkey(req
);
2028 i
= X509_set_pubkey(ret
,pktmp
);
2029 EVP_PKEY_free(pktmp
);
2032 /* Lets add the extensions, if there are any */
2036 if (ci
->version
== NULL
)
2037 if ((ci
->version
=ASN1_INTEGER_new()) == NULL
)
2039 ASN1_INTEGER_set(ci
->version
,2); /* version 3 certificate */
2041 /* Free the current entries if any, there should not
2042 * be any I believe */
2043 if (ci
->extensions
!= NULL
)
2044 sk_X509_EXTENSION_pop_free(ci
->extensions
,
2045 X509_EXTENSION_free
);
2047 ci
->extensions
= NULL
;
2049 /* Initialize the context structure */
2051 X509V3_set_ctx(&ctx
, ret
, ret
, req
, NULL
, 0);
2053 X509V3_set_ctx(&ctx
, x509
, ret
, req
, NULL
, 0);
2058 BIO_printf(bio_err
, "Extra configuration file found\n");
2060 /* Use the extconf configuration db LHASH */
2061 X509V3_set_nconf(&ctx
, extconf
);
2063 /* Test the structure (needed?) */
2064 /* X509V3_set_ctx_test(&ctx); */
2066 /* Adds exts contained in the configuration file */
2067 if (!X509V3_EXT_add_nconf(extconf
, &ctx
, ext_sect
,ret
))
2070 "ERROR: adding extensions in section %s\n",
2072 ERR_print_errors(bio_err
);
2076 BIO_printf(bio_err
, "Successfully added extensions from file.\n");
2080 /* We found extensions to be set from config file */
2081 X509V3_set_nconf(&ctx
, lconf
);
2083 if(!X509V3_EXT_add_nconf(lconf
, &ctx
, ext_sect
, ret
))
2085 BIO_printf(bio_err
, "ERROR: adding extensions in section %s\n", ext_sect
);
2086 ERR_print_errors(bio_err
);
2091 BIO_printf(bio_err
, "Successfully added extensions from config\n");
2095 /* Copy extensions from request (if any) */
2097 if (!copy_extensions(ret
, req
, ext_copy
))
2099 BIO_printf(bio_err
, "ERROR: adding extensions from request\n");
2100 ERR_print_errors(bio_err
);
2104 /* Set the right value for the noemailDN option */
2107 if (!X509_set_subject_name(ret
,dn_subject
)) goto err
;
2112 BIO_printf(bio_err
, "Certificate Details:\n");
2113 /* Never print signature details because signature not present */
2114 certopt
|= X509_FLAG_NO_SIGDUMP
| X509_FLAG_NO_SIGNAME
;
2115 X509_print_ex(bio_err
, ret
, nameopt
, certopt
);
2118 BIO_printf(bio_err
,"Certificate is to be certified until ");
2119 ASN1_TIME_print(bio_err
,X509_get_notAfter(ret
));
2120 if (days
) BIO_printf(bio_err
," (%ld days)",days
);
2121 BIO_printf(bio_err
, "\n");
2126 BIO_printf(bio_err
,"Sign the certificate? [y/n]:");
2127 (void)BIO_flush(bio_err
);
2129 if (!fgets(buf
,sizeof(buf
)-1,stdin
))
2131 BIO_printf(bio_err
,"CERTIFICATE WILL NOT BE CERTIFIED: I/O error\n");
2135 if (!((buf
[0] == 'y') || (buf
[0] == 'Y')))
2137 BIO_printf(bio_err
,"CERTIFICATE WILL NOT BE CERTIFIED\n");
2143 pktmp
=X509_get_pubkey(ret
);
2144 if (EVP_PKEY_missing_parameters(pktmp
) &&
2145 !EVP_PKEY_missing_parameters(pkey
))
2146 EVP_PKEY_copy_parameters(pktmp
,pkey
);
2147 EVP_PKEY_free(pktmp
);
2149 if (!X509_sign(ret
,pkey
,dgst
))
2152 /* We now just add it to the database */
2153 row
[DB_type
]=(char *)OPENSSL_malloc(2);
2155 tm
=X509_get_notAfter(ret
);
2156 row
[DB_exp_date
]=(char *)OPENSSL_malloc(tm
->length
+1);
2157 memcpy(row
[DB_exp_date
],tm
->data
,tm
->length
);
2158 row
[DB_exp_date
][tm
->length
]='\0';
2160 row
[DB_rev_date
]=NULL
;
2162 /* row[DB_serial] done already */
2163 row
[DB_file
]=(char *)OPENSSL_malloc(8);
2164 row
[DB_name
]=X509_NAME_oneline(X509_get_subject_name(ret
),NULL
,0);
2166 if ((row
[DB_type
] == NULL
) || (row
[DB_exp_date
] == NULL
) ||
2167 (row
[DB_file
] == NULL
) || (row
[DB_name
] == NULL
))
2169 BIO_printf(bio_err
,"Memory allocation failure\n");
2172 BUF_strlcpy(row
[DB_file
],"unknown",8);
2173 row
[DB_type
][0]='V';
2174 row
[DB_type
][1]='\0';
2176 if ((irow
=(char **)OPENSSL_malloc(sizeof(char *)*(DB_NUMBER
+1))) == NULL
)
2178 BIO_printf(bio_err
,"Memory allocation failure\n");
2182 for (i
=0; i
<DB_NUMBER
; i
++)
2187 irow
[DB_NUMBER
]=NULL
;
2189 if (!TXT_DB_insert(db
->db
,irow
))
2191 BIO_printf(bio_err
,"failed to update database\n");
2192 BIO_printf(bio_err
,"TXT_DB error number %ld\n",db
->db
->error
);
2197 for (i
=0; i
<DB_NUMBER
; i
++)
2198 if (row
[i
] != NULL
) OPENSSL_free(row
[i
]);
2201 X509_NAME_free(CAname
);
2202 if (subject
!= NULL
)
2203 X509_NAME_free(subject
);
2204 if ((dn_subject
!= NULL
) && !email_dn
)
2205 X509_NAME_free(dn_subject
);
2207 ASN1_UTCTIME_free(tmptm
);
2210 if (ret
!= NULL
) X509_free(ret
);
2218 static void write_new_certificate(BIO
*bp
, X509
*x
, int output_der
, int notext
)
2223 (void)i2d_X509_bio(bp
,x
);
2227 /* ??? Not needed since X509_print prints all this stuff anyway */
2228 f
=X509_NAME_oneline(X509_get_issuer_name(x
),buf
,256);
2229 BIO_printf(bp
,"issuer :%s\n",f
);
2231 f
=X509_NAME_oneline(X509_get_subject_name(x
),buf
,256);
2232 BIO_printf(bp
,"subject:%s\n",f
);
2234 BIO_puts(bp
,"serial :");
2235 i2a_ASN1_INTEGER(bp
,x
->cert_info
->serialNumber
);
2236 BIO_puts(bp
,"\n\n");
2238 if (!notext
)X509_print(bp
,x
);
2239 PEM_write_bio_X509(bp
,x
);
2242 static int certify_spkac(X509
**xret
, char *infile
, EVP_PKEY
*pkey
, X509
*x509
,
2243 const EVP_MD
*dgst
, STACK_OF(CONF_VALUE
) *policy
, CA_DB
*db
,
2244 BIGNUM
*serial
, char *subj
,unsigned long chtype
, int multirdn
, int email_dn
, char *startdate
, char *enddate
,
2245 long days
, char *ext_sect
, CONF
*lconf
, int verbose
, unsigned long certopt
,
2246 unsigned long nameopt
, int default_op
, int ext_copy
)
2248 STACK_OF(CONF_VALUE
) *sk
=NULL
;
2249 LHASH_OF(CONF_VALUE
) *parms
=NULL
;
2251 CONF_VALUE
*cv
=NULL
;
2252 NETSCAPE_SPKI
*spki
= NULL
;
2255 EVP_PKEY
*pktmp
=NULL
;
2257 X509_NAME_ENTRY
*ne
=NULL
;
2263 * Load input file into a hash table. (This is just an easy
2264 * way to read and parse the file, then put it into a convenient
2267 parms
=CONF_load(NULL
,infile
,&errline
);
2270 BIO_printf(bio_err
,"error on line %ld of %s\n",errline
,infile
);
2271 ERR_print_errors(bio_err
);
2275 sk
=CONF_get_section(parms
, "default");
2276 if (sk_CONF_VALUE_num(sk
) == 0)
2278 BIO_printf(bio_err
, "no name/value pairs found in %s\n", infile
);
2284 * Now create a dummy X509 request structure. We don't actually
2285 * have an X509 request, but we have many of the components
2286 * (a public key, various DN components). The idea is that we
2287 * put these components into the right X509 request structure
2288 * and we can use the same code as if you had a real X509 request.
2293 ERR_print_errors(bio_err
);
2298 * Build up the subject name set.
2305 if (sk_CONF_VALUE_num(sk
) <= i
) break;
2307 cv
=sk_CONF_VALUE_value(sk
,i
);
2309 /* Skip past any leading X. X: X, etc to allow for
2310 * multiple instances
2312 for (buf
= cv
->name
; *buf
; buf
++)
2313 if ((*buf
== ':') || (*buf
== ',') || (*buf
== '.'))
2316 if (*buf
) type
= buf
;
2321 if ((nid
=OBJ_txt2nid(type
)) == NID_undef
)
2323 if (strcmp(type
, "SPKAC") == 0)
2325 spki
= NETSCAPE_SPKI_b64_decode(cv
->value
, -1);
2328 BIO_printf(bio_err
,"unable to load Netscape SPKAC structure\n");
2329 ERR_print_errors(bio_err
);
2336 if (!X509_NAME_add_entry_by_NID(n
, nid
, chtype
,
2337 (unsigned char *)buf
, -1, -1, 0))
2342 BIO_printf(bio_err
,"Netscape SPKAC structure not found in %s\n",
2348 * Now extract the key from the SPKI structure.
2351 BIO_printf(bio_err
,"Check that the SPKAC request matches the signature\n");
2353 if ((pktmp
=NETSCAPE_SPKI_get_pubkey(spki
)) == NULL
)
2355 BIO_printf(bio_err
,"error unpacking SPKAC public key\n");
2359 j
= NETSCAPE_SPKI_verify(spki
, pktmp
);
2362 BIO_printf(bio_err
,"signature verification failed on SPKAC public key\n");
2365 BIO_printf(bio_err
,"Signature ok\n");
2367 X509_REQ_set_pubkey(req
,pktmp
);
2368 EVP_PKEY_free(pktmp
);
2369 ok
=do_body(xret
,pkey
,x509
,dgst
,policy
,db
,serial
,subj
,chtype
,multirdn
,email_dn
,startdate
,enddate
,
2370 days
,1,verbose
,req
,ext_sect
,lconf
, certopt
, nameopt
, default_op
,
2373 if (req
!= NULL
) X509_REQ_free(req
);
2374 if (parms
!= NULL
) CONF_free(parms
);
2375 if (spki
!= NULL
) NETSCAPE_SPKI_free(spki
);
2376 if (ne
!= NULL
) X509_NAME_ENTRY_free(ne
);
2381 static int check_time_format(const char *str
)
2383 return ASN1_TIME_set_string(NULL
, str
);
2386 static int do_revoke(X509
*x509
, CA_DB
*db
, int type
, char *value
)
2388 ASN1_UTCTIME
*tm
=NULL
;
2389 char *row
[DB_NUMBER
],**rrow
,**irow
;
2390 char *rev_str
= NULL
;
2394 for (i
=0; i
<DB_NUMBER
; i
++)
2396 row
[DB_name
]=X509_NAME_oneline(X509_get_subject_name(x509
),NULL
,0);
2397 bn
= ASN1_INTEGER_to_BN(X509_get_serialNumber(x509
),NULL
);
2401 row
[DB_serial
]=BUF_strdup("00");
2403 row
[DB_serial
]=BN_bn2hex(bn
);
2405 if ((row
[DB_name
] == NULL
) || (row
[DB_serial
] == NULL
))
2407 BIO_printf(bio_err
,"Memory allocation failure\n");
2410 /* We have to lookup by serial number because name lookup
2411 * skips revoked certs
2413 rrow
=TXT_DB_get_by_index(db
->db
,DB_serial
,row
);
2416 BIO_printf(bio_err
,"Adding Entry with serial number %s to DB for %s\n", row
[DB_serial
], row
[DB_name
]);
2418 /* We now just add it to the database */
2419 row
[DB_type
]=(char *)OPENSSL_malloc(2);
2421 tm
=X509_get_notAfter(x509
);
2422 row
[DB_exp_date
]=(char *)OPENSSL_malloc(tm
->length
+1);
2423 memcpy(row
[DB_exp_date
],tm
->data
,tm
->length
);
2424 row
[DB_exp_date
][tm
->length
]='\0';
2426 row
[DB_rev_date
]=NULL
;
2428 /* row[DB_serial] done already */
2429 row
[DB_file
]=(char *)OPENSSL_malloc(8);
2431 /* row[DB_name] done already */
2433 if ((row
[DB_type
] == NULL
) || (row
[DB_exp_date
] == NULL
) ||
2434 (row
[DB_file
] == NULL
))
2436 BIO_printf(bio_err
,"Memory allocation failure\n");
2439 BUF_strlcpy(row
[DB_file
],"unknown",8);
2440 row
[DB_type
][0]='V';
2441 row
[DB_type
][1]='\0';
2443 if ((irow
=(char **)OPENSSL_malloc(sizeof(char *)*(DB_NUMBER
+1))) == NULL
)
2445 BIO_printf(bio_err
,"Memory allocation failure\n");
2449 for (i
=0; i
<DB_NUMBER
; i
++)
2454 irow
[DB_NUMBER
]=NULL
;
2456 if (!TXT_DB_insert(db
->db
,irow
))
2458 BIO_printf(bio_err
,"failed to update database\n");
2459 BIO_printf(bio_err
,"TXT_DB error number %ld\n",db
->db
->error
);
2463 /* Revoke Certificate */
2464 ok
= do_revoke(x509
,db
, type
, value
);
2469 else if (index_name_cmp_noconst(row
, rrow
))
2471 BIO_printf(bio_err
,"ERROR:name does not match %s\n",
2475 else if (rrow
[DB_type
][0]=='R')
2477 BIO_printf(bio_err
,"ERROR:Already revoked, serial number %s\n",
2483 BIO_printf(bio_err
,"Revoking Certificate %s.\n", rrow
[DB_serial
]);
2484 rev_str
= make_revocation_str(type
, value
);
2487 BIO_printf(bio_err
, "Error in revocation arguments\n");
2490 rrow
[DB_type
][0]='R';
2491 rrow
[DB_type
][1]='\0';
2492 rrow
[DB_rev_date
] = rev_str
;
2496 for (i
=0; i
<DB_NUMBER
; i
++)
2499 OPENSSL_free(row
[i
]);
2504 static int get_certificate_status(const char *serial
, CA_DB
*db
)
2506 char *row
[DB_NUMBER
],**rrow
;
2509 /* Free Resources */
2510 for (i
=0; i
<DB_NUMBER
; i
++)
2513 /* Malloc needed char spaces */
2514 row
[DB_serial
] = OPENSSL_malloc(strlen(serial
) + 2);
2515 if (row
[DB_serial
] == NULL
)
2517 BIO_printf(bio_err
,"Malloc failure\n");
2521 if (strlen(serial
) % 2)
2523 /* Set the first char to 0 */;
2524 row
[DB_serial
][0]='0';
2526 /* Copy String from serial to row[DB_serial] */
2527 memcpy(row
[DB_serial
]+1, serial
, strlen(serial
));
2528 row
[DB_serial
][strlen(serial
)+1]='\0';
2532 /* Copy String from serial to row[DB_serial] */
2533 memcpy(row
[DB_serial
], serial
, strlen(serial
));
2534 row
[DB_serial
][strlen(serial
)]='\0';
2537 /* Make it Upper Case */
2538 for (i
=0; row
[DB_serial
][i
] != '\0'; i
++)
2539 row
[DB_serial
][i
] = toupper((unsigned char)row
[DB_serial
][i
]);
2544 /* Search for the certificate */
2545 rrow
=TXT_DB_get_by_index(db
->db
,DB_serial
,row
);
2548 BIO_printf(bio_err
,"Serial %s not present in db.\n",
2553 else if (rrow
[DB_type
][0]=='V')
2555 BIO_printf(bio_err
,"%s=Valid (%c)\n",
2556 row
[DB_serial
], rrow
[DB_type
][0]);
2559 else if (rrow
[DB_type
][0]=='R')
2561 BIO_printf(bio_err
,"%s=Revoked (%c)\n",
2562 row
[DB_serial
], rrow
[DB_type
][0]);
2565 else if (rrow
[DB_type
][0]=='E')
2567 BIO_printf(bio_err
,"%s=Expired (%c)\n",
2568 row
[DB_serial
], rrow
[DB_type
][0]);
2571 else if (rrow
[DB_type
][0]=='S')
2573 BIO_printf(bio_err
,"%s=Suspended (%c)\n",
2574 row
[DB_serial
], rrow
[DB_type
][0]);
2579 BIO_printf(bio_err
,"%s=Unknown (%c).\n",
2580 row
[DB_serial
], rrow
[DB_type
][0]);
2584 for (i
=0; i
<DB_NUMBER
; i
++)
2587 OPENSSL_free(row
[i
]);
2592 static int do_updatedb (CA_DB
*db
)
2594 ASN1_UTCTIME
*a_tm
= NULL
;
2596 int db_y2k
, a_y2k
; /* flags = 1 if y >= 2000 */
2597 char **rrow
, *a_tm_s
;
2599 a_tm
= ASN1_UTCTIME_new();
2601 /* get actual time and make a string */
2602 a_tm
= X509_gmtime_adj(a_tm
, 0);
2603 a_tm_s
= (char *) OPENSSL_malloc(a_tm
->length
+1);
2610 memcpy(a_tm_s
, a_tm
->data
, a_tm
->length
);
2611 a_tm_s
[a_tm
->length
] = '\0';
2613 if (strncmp(a_tm_s
, "49", 2) <= 0)
2618 for (i
= 0; i
< sk_OPENSSL_PSTRING_num(db
->db
->data
); i
++)
2620 rrow
= sk_OPENSSL_PSTRING_value(db
->db
->data
, i
);
2622 if (rrow
[DB_type
][0] == 'V')
2624 /* ignore entries that are not valid */
2625 if (strncmp(rrow
[DB_exp_date
], "49", 2) <= 0)
2630 if (db_y2k
== a_y2k
)
2632 /* all on the same y2k side */
2633 if (strcmp(rrow
[DB_exp_date
], a_tm_s
) <= 0)
2635 rrow
[DB_type
][0] = 'E';
2636 rrow
[DB_type
][1] = '\0';
2639 BIO_printf(bio_err
, "%s=Expired\n",
2643 else if (db_y2k
< a_y2k
)
2645 rrow
[DB_type
][0] = 'E';
2646 rrow
[DB_type
][1] = '\0';
2649 BIO_printf(bio_err
, "%s=Expired\n",
2658 ASN1_UTCTIME_free(a_tm
);
2659 OPENSSL_free(a_tm_s
);
2664 static const char *crl_reasons
[] = {
2665 /* CRL reason strings */
2669 "affiliationChanged",
2671 "cessationOfOperation",
2674 /* Additional pseudo reasons */
2680 #define NUM_REASONS (sizeof(crl_reasons) / sizeof(char *))
2682 /* Given revocation information convert to a DB string.
2683 * The format of the string is:
2684 * revtime[,reason,extra]. Where 'revtime' is the
2685 * revocation time (the current time). 'reason' is the
2686 * optional CRL reason and 'extra' is any additional
2690 char *make_revocation_str(int rev_type
, char *rev_arg
)
2692 char *other
= NULL
, *str
;
2693 const char *reason
= NULL
;
2695 ASN1_UTCTIME
*revtm
= NULL
;
2702 case REV_CRL_REASON
:
2703 for (i
= 0; i
< 8; i
++)
2705 if (!strcasecmp(rev_arg
, crl_reasons
[i
]))
2707 reason
= crl_reasons
[i
];
2713 BIO_printf(bio_err
, "Unknown CRL reason %s\n", rev_arg
);
2719 /* Argument is an OID */
2721 otmp
= OBJ_txt2obj(rev_arg
, 0);
2722 ASN1_OBJECT_free(otmp
);
2726 BIO_printf(bio_err
, "Invalid object identifier %s\n", rev_arg
);
2730 reason
= "holdInstruction";
2734 case REV_KEY_COMPROMISE
:
2735 case REV_CA_COMPROMISE
:
2737 /* Argument is the key compromise time */
2738 if (!ASN1_GENERALIZEDTIME_set_string(NULL
, rev_arg
))
2740 BIO_printf(bio_err
, "Invalid time format %s. Need YYYYMMDDHHMMSSZ\n", rev_arg
);
2744 if (rev_type
== REV_KEY_COMPROMISE
)
2747 reason
= "CAkeyTime";
2753 revtm
= X509_gmtime_adj(NULL
, 0);
2755 i
= revtm
->length
+ 1;
2757 if (reason
) i
+= strlen(reason
) + 1;
2758 if (other
) i
+= strlen(other
) + 1;
2760 str
= OPENSSL_malloc(i
);
2762 if (!str
) return NULL
;
2764 BUF_strlcpy(str
, (char *)revtm
->data
, i
);
2767 BUF_strlcat(str
, ",", i
);
2768 BUF_strlcat(str
, reason
, i
);
2772 BUF_strlcat(str
, ",", i
);
2773 BUF_strlcat(str
, other
, i
);
2775 ASN1_UTCTIME_free(revtm
);
2779 /* Convert revocation field to X509_REVOKED entry
2783 * 2 OK and some extensions added (i.e. V2 CRL)
2787 int make_revoked(X509_REVOKED
*rev
, const char *str
)
2790 int reason_code
= -1;
2792 ASN1_OBJECT
*hold
= NULL
;
2793 ASN1_GENERALIZEDTIME
*comp_time
= NULL
;
2794 ASN1_ENUMERATED
*rtmp
= NULL
;
2796 ASN1_TIME
*revDate
= NULL
;
2798 i
= unpack_revinfo(&revDate
, &reason_code
, &hold
, &comp_time
, str
);
2803 if (rev
&& !X509_REVOKED_set_revocationDate(rev
, revDate
))
2806 if (rev
&& (reason_code
!= OCSP_REVOKED_STATUS_NOSTATUS
))
2808 rtmp
= ASN1_ENUMERATED_new();
2809 if (!rtmp
|| !ASN1_ENUMERATED_set(rtmp
, reason_code
))
2811 if (!X509_REVOKED_add1_ext_i2d(rev
, NID_crl_reason
, rtmp
, 0, 0))
2815 if (rev
&& comp_time
)
2817 if (!X509_REVOKED_add1_ext_i2d(rev
, NID_invalidity_date
, comp_time
, 0, 0))
2822 if (!X509_REVOKED_add1_ext_i2d(rev
, NID_hold_instruction_code
, hold
, 0, 0))
2826 if (reason_code
!= OCSP_REVOKED_STATUS_NOSTATUS
)
2832 if (tmp
) OPENSSL_free(tmp
);
2833 ASN1_OBJECT_free(hold
);
2834 ASN1_GENERALIZEDTIME_free(comp_time
);
2835 ASN1_ENUMERATED_free(rtmp
);
2836 ASN1_TIME_free(revDate
);
2841 int old_entry_print(BIO
*bp
, ASN1_OBJECT
*obj
, ASN1_STRING
*str
)
2843 char buf
[25],*pbuf
, *p
;
2845 j
=i2a_ASN1_OBJECT(bp
,obj
);
2847 for (j
=22-j
; j
>0; j
--)
2853 if (str
->type
== V_ASN1_PRINTABLESTRING
)
2854 BIO_printf(bp
,"PRINTABLE:'");
2855 else if (str
->type
== V_ASN1_T61STRING
)
2856 BIO_printf(bp
,"T61STRING:'");
2857 else if (str
->type
== V_ASN1_IA5STRING
)
2858 BIO_printf(bp
,"IA5STRING:'");
2859 else if (str
->type
== V_ASN1_UNIVERSALSTRING
)
2860 BIO_printf(bp
,"UNIVERSALSTRING:'");
2862 BIO_printf(bp
,"ASN.1 %2d:'",str
->type
);
2864 p
=(char *)str
->data
;
2865 for (j
=str
->length
; j
>0; j
--)
2867 if ((*p
>= ' ') && (*p
<= '~'))
2868 BIO_printf(bp
,"%c",*p
);
2870 BIO_printf(bp
,"\\0x%02X",*p
);
2871 else if ((unsigned char)*p
== 0xf7)
2872 BIO_printf(bp
,"^?");
2873 else BIO_printf(bp
,"^%c",*p
+'@');
2876 BIO_printf(bp
,"'\n");
2880 int unpack_revinfo(ASN1_TIME
**prevtm
, int *preason
, ASN1_OBJECT
**phold
, ASN1_GENERALIZEDTIME
**pinvtm
, const char *str
)
2883 char *rtime_str
, *reason_str
= NULL
, *arg_str
= NULL
, *p
;
2884 int reason_code
= -1;
2887 ASN1_OBJECT
*hold
= NULL
;
2888 ASN1_GENERALIZEDTIME
*comp_time
= NULL
;
2889 tmp
= BUF_strdup(str
);
2891 p
= strchr(tmp
, ',');
2910 *prevtm
= ASN1_UTCTIME_new();
2911 if (!ASN1_UTCTIME_set_string(*prevtm
, rtime_str
))
2913 BIO_printf(bio_err
, "invalid revocation date %s\n", rtime_str
);
2919 for (i
= 0; i
< NUM_REASONS
; i
++)
2921 if(!strcasecmp(reason_str
, crl_reasons
[i
]))
2927 if (reason_code
== OCSP_REVOKED_STATUS_NOSTATUS
)
2929 BIO_printf(bio_err
, "invalid reason code %s\n", reason_str
);
2933 if (reason_code
== 7)
2934 reason_code
= OCSP_REVOKED_STATUS_REMOVEFROMCRL
;
2935 else if (reason_code
== 8) /* Hold instruction */
2939 BIO_printf(bio_err
, "missing hold instruction\n");
2942 reason_code
= OCSP_REVOKED_STATUS_CERTIFICATEHOLD
;
2943 hold
= OBJ_txt2obj(arg_str
, 0);
2947 BIO_printf(bio_err
, "invalid object identifier %s\n", arg_str
);
2950 if (phold
) *phold
= hold
;
2952 else if ((reason_code
== 9) || (reason_code
== 10))
2956 BIO_printf(bio_err
, "missing compromised time\n");
2959 comp_time
= ASN1_GENERALIZEDTIME_new();
2960 if (!ASN1_GENERALIZEDTIME_set_string(comp_time
, arg_str
))
2962 BIO_printf(bio_err
, "invalid compromised time %s\n", arg_str
);
2965 if (reason_code
== 9)
2966 reason_code
= OCSP_REVOKED_STATUS_KEYCOMPROMISE
;
2968 reason_code
= OCSP_REVOKED_STATUS_CACOMPROMISE
;
2972 if (preason
) *preason
= reason_code
;
2973 if (pinvtm
) *pinvtm
= comp_time
;
2974 else ASN1_GENERALIZEDTIME_free(comp_time
);
2980 if (tmp
) OPENSSL_free(tmp
);
2981 if (!phold
) ASN1_OBJECT_free(hold
);
2982 if (!pinvtm
) ASN1_GENERALIZEDTIME_free(comp_time
);