Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 1 | /* apps/ca.c */ |
Ralf S. Engelschall | 58964a4 | 1998-12-21 10:56:39 +0000 | [diff] [blame] | 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 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> |
| 64 | #include <sys/types.h> |
| 65 | #include <sys/stat.h> |
| 66 | #include "apps.h" |
Bodo Möller | ec57782 | 1999-04-23 22:13:45 +0000 | [diff] [blame] | 67 | #include <openssl/conf.h> |
| 68 | #include <openssl/bio.h> |
| 69 | #include <openssl/err.h> |
| 70 | #include <openssl/bn.h> |
| 71 | #include <openssl/txt_db.h> |
| 72 | #include <openssl/evp.h> |
| 73 | #include <openssl/x509.h> |
| 74 | #include <openssl/x509v3.h> |
| 75 | #include <openssl/objects.h> |
| 76 | #include <openssl/pem.h> |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 77 | |
| 78 | #ifndef W_OK |
Ulf Möller | 7d7d2cb | 1999-05-13 11:37:32 +0000 | [diff] [blame] | 79 | # ifdef VMS |
| 80 | # if defined(__DECC) |
| 81 | # include <unistd.h> |
| 82 | # else |
| 83 | # include <unixlib.h> |
| 84 | # endif |
| 85 | # else |
| 86 | # include <sys/file.h> |
| 87 | # endif |
| 88 | #endif |
| 89 | |
| 90 | #ifndef W_OK |
| 91 | # define F_OK 0 |
| 92 | # define X_OK 1 |
| 93 | # define W_OK 2 |
| 94 | # define R_OK 4 |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 95 | #endif |
| 96 | |
| 97 | #undef PROG |
| 98 | #define PROG ca_main |
| 99 | |
| 100 | #define BASE_SECTION "ca" |
Ulf Möller | d5a2ea4 | 1999-05-10 23:59:28 +0000 | [diff] [blame] | 101 | #define CONFIG_FILE "openssl.cnf" |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 102 | |
| 103 | #define ENV_DEFAULT_CA "default_ca" |
| 104 | |
| 105 | #define ENV_DIR "dir" |
| 106 | #define ENV_CERTS "certs" |
| 107 | #define ENV_CRL_DIR "crl_dir" |
| 108 | #define ENV_CA_DB "CA_DB" |
| 109 | #define ENV_NEW_CERTS_DIR "new_certs_dir" |
| 110 | #define ENV_CERTIFICATE "certificate" |
| 111 | #define ENV_SERIAL "serial" |
| 112 | #define ENV_CRL "crl" |
| 113 | #define ENV_PRIVATE_KEY "private_key" |
| 114 | #define ENV_RANDFILE "RANDFILE" |
| 115 | #define ENV_DEFAULT_DAYS "default_days" |
Ralf S. Engelschall | 58964a4 | 1998-12-21 10:56:39 +0000 | [diff] [blame] | 116 | #define ENV_DEFAULT_STARTDATE "default_startdate" |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 117 | #define ENV_DEFAULT_CRL_DAYS "default_crl_days" |
| 118 | #define ENV_DEFAULT_CRL_HOURS "default_crl_hours" |
| 119 | #define ENV_DEFAULT_MD "default_md" |
| 120 | #define ENV_PRESERVE "preserve" |
| 121 | #define ENV_POLICY "policy" |
| 122 | #define ENV_EXTENSIONS "x509_extensions" |
Dr. Stephen Henson | 1756d40 | 1999-03-06 19:33:29 +0000 | [diff] [blame] | 123 | #define ENV_CRLEXT "crl_extensions" |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 124 | #define ENV_MSIE_HACK "msie_hack" |
| 125 | |
| 126 | #define ENV_DATABASE "database" |
| 127 | |
| 128 | #define DB_type 0 |
| 129 | #define DB_exp_date 1 |
| 130 | #define DB_rev_date 2 |
| 131 | #define DB_serial 3 /* index - unique */ |
| 132 | #define DB_file 4 |
| 133 | #define DB_name 5 /* index - unique for active */ |
| 134 | #define DB_NUMBER 6 |
| 135 | |
| 136 | #define DB_TYPE_REV 'R' |
| 137 | #define DB_TYPE_EXP 'E' |
| 138 | #define DB_TYPE_VAL 'V' |
| 139 | |
| 140 | static char *ca_usage[]={ |
| 141 | "usage: ca args\n", |
| 142 | "\n", |
| 143 | " -verbose - Talk alot while doing things\n", |
| 144 | " -config file - A config file\n", |
| 145 | " -name arg - The particular CA definition to use\n", |
| 146 | " -gencrl - Generate a new CRL\n", |
| 147 | " -crldays days - Days is when the next CRL is due\n", |
| 148 | " -crlhours hours - Hours is when the next CRL is due\n", |
| 149 | " -days arg - number of days to certify the certificate for\n", |
| 150 | " -md arg - md to use, one of md2, md5, sha or sha1\n", |
| 151 | " -policy arg - The CA 'policy' to support\n", |
| 152 | " -keyfile arg - PEM private key file\n", |
| 153 | " -key arg - key to decode the private key if it is encrypted\n", |
Ben Laurie | 29d2824 | 1999-02-06 15:19:16 +0000 | [diff] [blame] | 154 | " -cert file - The CA certificate\n", |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 155 | " -in file - The input PEM encoded certificate request(s)\n", |
| 156 | " -out file - Where to put the output file(s)\n", |
| 157 | " -outdir dir - Where to put output certificates\n", |
| 158 | " -infiles .... - The last argument, requests to process\n", |
| 159 | " -spkac file - File contains DN and signed public key and challenge\n", |
Ralf S. Engelschall | 58964a4 | 1998-12-21 10:56:39 +0000 | [diff] [blame] | 160 | " -ss_cert file - File contains a self signed cert to sign\n", |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 161 | " -preserveDN - Don't re-order the DN\n", |
Ralf S. Engelschall | 7c7c885 | 1999-04-10 13:15:38 +0000 | [diff] [blame] | 162 | " -batch - Don't ask questions\n", |
| 163 | " -msie_hack - msie modifications to handle all those universal strings\n", |
Ralf S. Engelschall | f9a2593 | 1999-04-12 11:45:14 +0000 | [diff] [blame] | 164 | " -revoke file - Revoke a certificate (given in file)\n", |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 165 | NULL |
| 166 | }; |
| 167 | |
| 168 | #ifdef EFENCE |
| 169 | extern int EF_PROTECT_FREE; |
| 170 | extern int EF_PROTECT_BELOW; |
| 171 | extern int EF_ALIGNMENT; |
| 172 | #endif |
| 173 | |
Dr. Stephen Henson | a43aa73 | 1999-02-23 00:07:46 +0000 | [diff] [blame] | 174 | static int add_oid_section(LHASH *conf); |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 175 | static void lookup_fail(char *name,char *tag); |
| 176 | static int MS_CALLBACK key_callback(char *buf,int len,int verify); |
| 177 | static unsigned long index_serial_hash(char **a); |
| 178 | static int index_serial_cmp(char **a, char **b); |
| 179 | static unsigned long index_name_hash(char **a); |
| 180 | static int index_name_qual(char **a); |
| 181 | static int index_name_cmp(char **a,char **b); |
| 182 | static BIGNUM *load_serial(char *serialfile); |
| 183 | static int save_serial(char *serialfile, BIGNUM *serial); |
| 184 | static int certify(X509 **xret, char *infile,EVP_PKEY *pkey,X509 *x509, |
Ben Laurie | e778802 | 1999-04-17 21:25:43 +0000 | [diff] [blame] | 185 | const EVP_MD *dgst,STACK *policy,TXT_DB *db,BIGNUM *serial, |
| 186 | char *startdate,int days,int batch,char *ext_sect, |
| 187 | LHASH *conf,int verbose); |
Ralf S. Engelschall | 58964a4 | 1998-12-21 10:56:39 +0000 | [diff] [blame] | 188 | static int certify_cert(X509 **xret, char *infile,EVP_PKEY *pkey,X509 *x509, |
Ben Laurie | e778802 | 1999-04-17 21:25:43 +0000 | [diff] [blame] | 189 | const EVP_MD *dgst,STACK *policy,TXT_DB *db, |
| 190 | BIGNUM *serial,char *startdate,int days,int batch, |
| 191 | char *ext_sect, LHASH *conf,int verbose); |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 192 | static int certify_spkac(X509 **xret, char *infile,EVP_PKEY *pkey,X509 *x509, |
Ben Laurie | e778802 | 1999-04-17 21:25:43 +0000 | [diff] [blame] | 193 | const EVP_MD *dgst,STACK *policy,TXT_DB *db, |
| 194 | BIGNUM *serial,char *startdate,int days, |
| 195 | char *ext_sect,LHASH *conf,int verbose); |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 196 | static int fix_data(int nid, int *type); |
| 197 | static void write_new_certificate(BIO *bp, X509 *x, int output_der); |
Ben Laurie | e778802 | 1999-04-17 21:25:43 +0000 | [diff] [blame] | 198 | static int do_body(X509 **xret, EVP_PKEY *pkey, X509 *x509, const EVP_MD *dgst, |
Ralf S. Engelschall | 58964a4 | 1998-12-21 10:56:39 +0000 | [diff] [blame] | 199 | STACK *policy, TXT_DB *db, BIGNUM *serial, char *startdate, |
Dr. Stephen Henson | b234766 | 1999-01-26 01:19:27 +0000 | [diff] [blame] | 200 | int days, int batch, int verbose, X509_REQ *req, char *ext_sect, |
| 201 | LHASH *conf); |
Ralf S. Engelschall | f9a2593 | 1999-04-12 11:45:14 +0000 | [diff] [blame] | 202 | static int do_revoke(X509 *x509, TXT_DB *db); |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 203 | static int check_time_format(char *str); |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 204 | static LHASH *conf; |
| 205 | static char *key=NULL; |
| 206 | static char *section=NULL; |
| 207 | |
| 208 | static int preserve=0; |
| 209 | static int msie_hack=0; |
| 210 | |
Ulf Möller | 6b691a5 | 1999-04-19 21:31:43 +0000 | [diff] [blame] | 211 | int MAIN(int argc, char **argv) |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 212 | { |
| 213 | int total=0; |
| 214 | int total_done=0; |
| 215 | int badops=0; |
| 216 | int ret=1; |
| 217 | int req=0; |
| 218 | int verbose=0; |
| 219 | int gencrl=0; |
Ben Laurie | a36a1a5 | 1999-04-12 17:17:39 +0000 | [diff] [blame] | 220 | int dorevoke=0; |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 221 | long crldays=0; |
| 222 | long crlhours=0; |
| 223 | long errorline= -1; |
| 224 | char *configfile=NULL; |
| 225 | char *md=NULL; |
| 226 | char *policy=NULL; |
| 227 | char *keyfile=NULL; |
| 228 | char *certfile=NULL; |
| 229 | char *infile=NULL; |
| 230 | char *spkac_file=NULL; |
Ralf S. Engelschall | 58964a4 | 1998-12-21 10:56:39 +0000 | [diff] [blame] | 231 | char *ss_cert_file=NULL; |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 232 | EVP_PKEY *pkey=NULL; |
| 233 | int output_der = 0; |
| 234 | char *outfile=NULL; |
| 235 | char *outdir=NULL; |
| 236 | char *serialfile=NULL; |
| 237 | char *extensions=NULL; |
Dr. Stephen Henson | 1756d40 | 1999-03-06 19:33:29 +0000 | [diff] [blame] | 238 | char *crl_ext=NULL; |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 239 | BIGNUM *serial=NULL; |
Ralf S. Engelschall | 58964a4 | 1998-12-21 10:56:39 +0000 | [diff] [blame] | 240 | char *startdate=NULL; |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 241 | int days=0; |
| 242 | int batch=0; |
| 243 | X509 *x509=NULL; |
| 244 | X509 *x=NULL; |
| 245 | BIO *in=NULL,*out=NULL,*Sout=NULL,*Cout=NULL; |
| 246 | char *dbfile=NULL; |
| 247 | TXT_DB *db=NULL; |
| 248 | X509_CRL *crl=NULL; |
| 249 | X509_CRL_INFO *ci=NULL; |
| 250 | X509_REVOKED *r=NULL; |
| 251 | char **pp,*p,*f; |
| 252 | int i,j; |
| 253 | long l; |
Ben Laurie | e778802 | 1999-04-17 21:25:43 +0000 | [diff] [blame] | 254 | const EVP_MD *dgst=NULL; |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 255 | STACK *attribs=NULL; |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 256 | STACK *cert_sk=NULL; |
| 257 | BIO *hex=NULL; |
| 258 | #undef BSIZE |
| 259 | #define BSIZE 256 |
| 260 | MS_STATIC char buf[3][BSIZE]; |
| 261 | |
| 262 | #ifdef EFENCE |
| 263 | EF_PROTECT_FREE=1; |
| 264 | EF_PROTECT_BELOW=1; |
| 265 | EF_ALIGNMENT=0; |
| 266 | #endif |
| 267 | |
| 268 | apps_startup(); |
| 269 | |
Dr. Stephen Henson | b234766 | 1999-01-26 01:19:27 +0000 | [diff] [blame] | 270 | X509V3_add_standard_extensions(); |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 271 | |
| 272 | preserve=0; |
| 273 | if (bio_err == NULL) |
| 274 | if ((bio_err=BIO_new(BIO_s_file())) != NULL) |
Ralf S. Engelschall | 58964a4 | 1998-12-21 10:56:39 +0000 | [diff] [blame] | 275 | BIO_set_fp(bio_err,stderr,BIO_NOCLOSE|BIO_FP_TEXT); |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 276 | |
| 277 | argc--; |
| 278 | argv++; |
| 279 | while (argc >= 1) |
| 280 | { |
| 281 | if (strcmp(*argv,"-verbose") == 0) |
| 282 | verbose=1; |
| 283 | else if (strcmp(*argv,"-config") == 0) |
| 284 | { |
| 285 | if (--argc < 1) goto bad; |
| 286 | configfile= *(++argv); |
| 287 | } |
| 288 | else if (strcmp(*argv,"-name") == 0) |
| 289 | { |
| 290 | if (--argc < 1) goto bad; |
| 291 | section= *(++argv); |
| 292 | } |
Ralf S. Engelschall | 58964a4 | 1998-12-21 10:56:39 +0000 | [diff] [blame] | 293 | else if (strcmp(*argv,"-startdate") == 0) |
| 294 | { |
| 295 | if (--argc < 1) goto bad; |
| 296 | startdate= *(++argv); |
| 297 | } |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 298 | else if (strcmp(*argv,"-days") == 0) |
| 299 | { |
| 300 | if (--argc < 1) goto bad; |
| 301 | days=atoi(*(++argv)); |
| 302 | } |
| 303 | else if (strcmp(*argv,"-md") == 0) |
| 304 | { |
| 305 | if (--argc < 1) goto bad; |
| 306 | md= *(++argv); |
| 307 | } |
| 308 | else if (strcmp(*argv,"-policy") == 0) |
| 309 | { |
| 310 | if (--argc < 1) goto bad; |
| 311 | policy= *(++argv); |
| 312 | } |
| 313 | else if (strcmp(*argv,"-keyfile") == 0) |
| 314 | { |
| 315 | if (--argc < 1) goto bad; |
| 316 | keyfile= *(++argv); |
| 317 | } |
| 318 | else if (strcmp(*argv,"-key") == 0) |
| 319 | { |
| 320 | if (--argc < 1) goto bad; |
| 321 | key= *(++argv); |
| 322 | } |
| 323 | else if (strcmp(*argv,"-cert") == 0) |
| 324 | { |
| 325 | if (--argc < 1) goto bad; |
| 326 | certfile= *(++argv); |
| 327 | } |
| 328 | else if (strcmp(*argv,"-in") == 0) |
| 329 | { |
| 330 | if (--argc < 1) goto bad; |
| 331 | infile= *(++argv); |
| 332 | req=1; |
| 333 | } |
| 334 | else if (strcmp(*argv,"-out") == 0) |
| 335 | { |
| 336 | if (--argc < 1) goto bad; |
| 337 | outfile= *(++argv); |
| 338 | } |
| 339 | else if (strcmp(*argv,"-outdir") == 0) |
| 340 | { |
| 341 | if (--argc < 1) goto bad; |
| 342 | outdir= *(++argv); |
| 343 | } |
| 344 | else if (strcmp(*argv,"-batch") == 0) |
| 345 | batch=1; |
| 346 | else if (strcmp(*argv,"-preserveDN") == 0) |
| 347 | preserve=1; |
| 348 | else if (strcmp(*argv,"-gencrl") == 0) |
| 349 | gencrl=1; |
| 350 | else if (strcmp(*argv,"-msie_hack") == 0) |
| 351 | msie_hack=1; |
| 352 | else if (strcmp(*argv,"-crldays") == 0) |
| 353 | { |
| 354 | if (--argc < 1) goto bad; |
| 355 | crldays= atol(*(++argv)); |
| 356 | } |
| 357 | else if (strcmp(*argv,"-crlhours") == 0) |
| 358 | { |
| 359 | if (--argc < 1) goto bad; |
| 360 | crlhours= atol(*(++argv)); |
| 361 | } |
| 362 | else if (strcmp(*argv,"-infiles") == 0) |
| 363 | { |
| 364 | argc--; |
| 365 | argv++; |
| 366 | req=1; |
| 367 | break; |
| 368 | } |
Ralf S. Engelschall | 58964a4 | 1998-12-21 10:56:39 +0000 | [diff] [blame] | 369 | else if (strcmp(*argv, "-ss_cert") == 0) |
| 370 | { |
| 371 | if (--argc < 1) goto bad; |
| 372 | ss_cert_file = *(++argv); |
| 373 | req=1; |
| 374 | } |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 375 | else if (strcmp(*argv, "-spkac") == 0) |
| 376 | { |
| 377 | if (--argc < 1) goto bad; |
| 378 | spkac_file = *(++argv); |
| 379 | req=1; |
| 380 | } |
Ralf S. Engelschall | f9a2593 | 1999-04-12 11:45:14 +0000 | [diff] [blame] | 381 | else if (strcmp(*argv,"-revoke") == 0) |
| 382 | { |
| 383 | if (--argc < 1) goto bad; |
| 384 | infile= *(++argv); |
Ben Laurie | a36a1a5 | 1999-04-12 17:17:39 +0000 | [diff] [blame] | 385 | dorevoke=1; |
Ralf S. Engelschall | f9a2593 | 1999-04-12 11:45:14 +0000 | [diff] [blame] | 386 | } |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 387 | else |
| 388 | { |
| 389 | bad: |
| 390 | BIO_printf(bio_err,"unknown option %s\n",*argv); |
| 391 | badops=1; |
| 392 | break; |
| 393 | } |
| 394 | argc--; |
| 395 | argv++; |
| 396 | } |
| 397 | |
| 398 | if (badops) |
| 399 | { |
| 400 | for (pp=ca_usage; (*pp != NULL); pp++) |
| 401 | BIO_printf(bio_err,*pp); |
| 402 | goto err; |
| 403 | } |
| 404 | |
| 405 | ERR_load_crypto_strings(); |
| 406 | |
| 407 | /*****************************************************************/ |
Dr. Stephen Henson | e40b7ab | 1999-05-08 12:59:50 +0000 | [diff] [blame] | 408 | if (configfile == NULL) configfile = getenv("OPENSSL_CONF"); |
| 409 | if (configfile == NULL) configfile = getenv("SSLEAY_CONF"); |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 410 | if (configfile == NULL) |
| 411 | { |
| 412 | /* We will just use 'buf[0]' as a temporary buffer. */ |
Ulf Möller | 7d7d2cb | 1999-05-13 11:37:32 +0000 | [diff] [blame] | 413 | #ifdef VMS |
| 414 | strncpy(buf[0],X509_get_default_cert_area(), |
| 415 | sizeof(buf[0])-1-sizeof(CONFIG_FILE)); |
| 416 | #else |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 417 | strncpy(buf[0],X509_get_default_cert_area(), |
| 418 | sizeof(buf[0])-2-sizeof(CONFIG_FILE)); |
| 419 | strcat(buf[0],"/"); |
Ulf Möller | 7d7d2cb | 1999-05-13 11:37:32 +0000 | [diff] [blame] | 420 | #endif |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 421 | strcat(buf[0],CONFIG_FILE); |
| 422 | configfile=buf[0]; |
| 423 | } |
| 424 | |
| 425 | BIO_printf(bio_err,"Using configuration from %s\n",configfile); |
| 426 | if ((conf=CONF_load(NULL,configfile,&errorline)) == NULL) |
| 427 | { |
| 428 | if (errorline <= 0) |
| 429 | BIO_printf(bio_err,"error loading the config file '%s'\n", |
| 430 | configfile); |
| 431 | else |
| 432 | BIO_printf(bio_err,"error on line %ld of config file '%s'\n" |
| 433 | ,errorline,configfile); |
| 434 | goto err; |
| 435 | } |
| 436 | |
| 437 | /* Lets get the config section we are using */ |
| 438 | if (section == NULL) |
| 439 | { |
| 440 | section=CONF_get_string(conf,BASE_SECTION,ENV_DEFAULT_CA); |
| 441 | if (section == NULL) |
| 442 | { |
| 443 | lookup_fail(BASE_SECTION,ENV_DEFAULT_CA); |
| 444 | goto err; |
| 445 | } |
| 446 | } |
| 447 | |
Ralf S. Engelschall | dfeab06 | 1998-12-21 11:00:56 +0000 | [diff] [blame] | 448 | if (conf != NULL) |
| 449 | { |
| 450 | p=CONF_get_string(conf,NULL,"oid_file"); |
| 451 | if (p != NULL) |
| 452 | { |
| 453 | BIO *oid_bio; |
| 454 | |
| 455 | oid_bio=BIO_new_file(p,"r"); |
| 456 | if (oid_bio == NULL) |
| 457 | { |
| 458 | /* |
| 459 | BIO_printf(bio_err,"problems opening %s for extra oid's\n",p); |
| 460 | ERR_print_errors(bio_err); |
| 461 | */ |
Ben Laurie | c106c61 | 1999-02-06 13:30:37 +0000 | [diff] [blame] | 462 | ERR_clear_error(); |
Ralf S. Engelschall | dfeab06 | 1998-12-21 11:00:56 +0000 | [diff] [blame] | 463 | } |
| 464 | else |
| 465 | { |
| 466 | OBJ_create_objects(oid_bio); |
| 467 | BIO_free(oid_bio); |
| 468 | } |
| 469 | } |
| 470 | } |
Dr. Stephen Henson | a43aa73 | 1999-02-23 00:07:46 +0000 | [diff] [blame] | 471 | if(!add_oid_section(conf)) { |
| 472 | ERR_print_errors(bio_err); |
| 473 | goto err; |
| 474 | } |
Ralf S. Engelschall | dfeab06 | 1998-12-21 11:00:56 +0000 | [diff] [blame] | 475 | |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 476 | in=BIO_new(BIO_s_file()); |
| 477 | out=BIO_new(BIO_s_file()); |
| 478 | Sout=BIO_new(BIO_s_file()); |
| 479 | Cout=BIO_new(BIO_s_file()); |
| 480 | if ((in == NULL) || (out == NULL) || (Sout == NULL) || (Cout == NULL)) |
| 481 | { |
| 482 | ERR_print_errors(bio_err); |
| 483 | goto err; |
| 484 | } |
| 485 | |
| 486 | /*****************************************************************/ |
| 487 | /* we definitly need an public key, so lets get it */ |
| 488 | |
| 489 | if ((keyfile == NULL) && ((keyfile=CONF_get_string(conf, |
| 490 | section,ENV_PRIVATE_KEY)) == NULL)) |
| 491 | { |
| 492 | lookup_fail(section,ENV_PRIVATE_KEY); |
| 493 | goto err; |
| 494 | } |
| 495 | if (BIO_read_filename(in,keyfile) <= 0) |
| 496 | { |
| 497 | perror(keyfile); |
| 498 | BIO_printf(bio_err,"trying to load CA private key\n"); |
| 499 | goto err; |
| 500 | } |
| 501 | if (key == NULL) |
| 502 | pkey=PEM_read_bio_PrivateKey(in,NULL,NULL); |
| 503 | else |
| 504 | { |
| 505 | pkey=PEM_read_bio_PrivateKey(in,NULL,key_callback); |
| 506 | memset(key,0,strlen(key)); |
| 507 | } |
| 508 | if (pkey == NULL) |
| 509 | { |
| 510 | BIO_printf(bio_err,"unable to load CA private key\n"); |
| 511 | goto err; |
| 512 | } |
| 513 | |
| 514 | /*****************************************************************/ |
| 515 | /* we need a certificate */ |
| 516 | if ((certfile == NULL) && ((certfile=CONF_get_string(conf, |
| 517 | section,ENV_CERTIFICATE)) == NULL)) |
| 518 | { |
| 519 | lookup_fail(section,ENV_CERTIFICATE); |
| 520 | goto err; |
| 521 | } |
| 522 | if (BIO_read_filename(in,certfile) <= 0) |
| 523 | { |
| 524 | perror(certfile); |
| 525 | BIO_printf(bio_err,"trying to load CA certificate\n"); |
| 526 | goto err; |
| 527 | } |
| 528 | x509=PEM_read_bio_X509(in,NULL,NULL); |
| 529 | if (x509 == NULL) |
| 530 | { |
| 531 | BIO_printf(bio_err,"unable to load CA certificate\n"); |
| 532 | goto err; |
| 533 | } |
| 534 | |
Ralf S. Engelschall | dfeab06 | 1998-12-21 11:00:56 +0000 | [diff] [blame] | 535 | if (!X509_check_private_key(x509,pkey)) |
| 536 | { |
| 537 | BIO_printf(bio_err,"CA certificate and CA private key do not match\n"); |
| 538 | goto err; |
| 539 | } |
| 540 | |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 541 | f=CONF_get_string(conf,BASE_SECTION,ENV_PRESERVE); |
| 542 | if ((f != NULL) && ((*f == 'y') || (*f == 'Y'))) |
| 543 | preserve=1; |
| 544 | f=CONF_get_string(conf,BASE_SECTION,ENV_MSIE_HACK); |
| 545 | if ((f != NULL) && ((*f == 'y') || (*f == 'Y'))) |
| 546 | msie_hack=1; |
| 547 | |
| 548 | /*****************************************************************/ |
| 549 | /* lookup where to write new certificates */ |
| 550 | if ((outdir == NULL) && (req)) |
| 551 | { |
| 552 | struct stat sb; |
| 553 | |
| 554 | if ((outdir=CONF_get_string(conf,section,ENV_NEW_CERTS_DIR)) |
| 555 | == NULL) |
| 556 | { |
| 557 | BIO_printf(bio_err,"there needs to be defined a directory for new certificate to be placed in\n"); |
| 558 | goto err; |
| 559 | } |
Ulf Möller | 7d7d2cb | 1999-05-13 11:37:32 +0000 | [diff] [blame] | 560 | #ifdef VMS |
| 561 | /* For technical reasons, VMS misbehaves with X_OK */ |
| 562 | if (access(outdir,R_OK|W_OK) != 0) |
| 563 | #else |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 564 | if (access(outdir,R_OK|W_OK|X_OK) != 0) |
Ulf Möller | 7d7d2cb | 1999-05-13 11:37:32 +0000 | [diff] [blame] | 565 | #endif |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 566 | { |
| 567 | BIO_printf(bio_err,"I am unable to acces the %s directory\n",outdir); |
| 568 | perror(outdir); |
| 569 | goto err; |
| 570 | } |
| 571 | |
| 572 | if (stat(outdir,&sb) != 0) |
| 573 | { |
| 574 | BIO_printf(bio_err,"unable to stat(%s)\n",outdir); |
| 575 | perror(outdir); |
| 576 | goto err; |
| 577 | } |
| 578 | if (!(sb.st_mode & S_IFDIR)) |
| 579 | { |
| 580 | BIO_printf(bio_err,"%s need to be a directory\n",outdir); |
| 581 | perror(outdir); |
| 582 | goto err; |
| 583 | } |
| 584 | } |
| 585 | |
| 586 | /*****************************************************************/ |
| 587 | /* we need to load the database file */ |
| 588 | if ((dbfile=CONF_get_string(conf,section,ENV_DATABASE)) == NULL) |
| 589 | { |
| 590 | lookup_fail(section,ENV_DATABASE); |
| 591 | goto err; |
| 592 | } |
| 593 | if (BIO_read_filename(in,dbfile) <= 0) |
| 594 | { |
| 595 | perror(dbfile); |
| 596 | BIO_printf(bio_err,"unable to open '%s'\n",dbfile); |
| 597 | goto err; |
| 598 | } |
| 599 | db=TXT_DB_read(in,DB_NUMBER); |
| 600 | if (db == NULL) goto err; |
| 601 | |
| 602 | /* Lets check some fields */ |
| 603 | for (i=0; i<sk_num(db->data); i++) |
| 604 | { |
| 605 | pp=(char **)sk_value(db->data,i); |
| 606 | if ((pp[DB_type][0] != DB_TYPE_REV) && |
| 607 | (pp[DB_rev_date][0] != '\0')) |
| 608 | { |
Ralf S. Engelschall | 7c7c885 | 1999-04-10 13:15:38 +0000 | [diff] [blame] | 609 | BIO_printf(bio_err,"entry %d: not revoked yet, but has a revocation date\n",i+1); |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 610 | goto err; |
| 611 | } |
| 612 | if ((pp[DB_type][0] == DB_TYPE_REV) && |
| 613 | !check_time_format(pp[DB_rev_date])) |
| 614 | { |
Ralf S. Engelschall | 7c7c885 | 1999-04-10 13:15:38 +0000 | [diff] [blame] | 615 | BIO_printf(bio_err,"entry %d: invalid revocation date\n", |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 616 | i+1); |
| 617 | goto err; |
| 618 | } |
| 619 | if (!check_time_format(pp[DB_exp_date])) |
| 620 | { |
| 621 | BIO_printf(bio_err,"entry %d: invalid expiry date\n",i+1); |
| 622 | goto err; |
| 623 | } |
| 624 | p=pp[DB_serial]; |
| 625 | j=strlen(p); |
| 626 | if ((j&1) || (j < 2)) |
| 627 | { |
| 628 | BIO_printf(bio_err,"entry %d: bad serial number length (%d)\n",i+1,j); |
| 629 | goto err; |
| 630 | } |
| 631 | while (*p) |
| 632 | { |
| 633 | if (!( ((*p >= '0') && (*p <= '9')) || |
| 634 | ((*p >= 'A') && (*p <= 'F')) || |
| 635 | ((*p >= 'a') && (*p <= 'f'))) ) |
| 636 | { |
| 637 | 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); |
| 638 | goto err; |
| 639 | } |
| 640 | p++; |
| 641 | } |
| 642 | } |
| 643 | if (verbose) |
| 644 | { |
Ralf S. Engelschall | 58964a4 | 1998-12-21 10:56:39 +0000 | [diff] [blame] | 645 | BIO_set_fp(out,stdout,BIO_NOCLOSE|BIO_FP_TEXT); /* cannot fail */ |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 646 | TXT_DB_write(out,db); |
| 647 | BIO_printf(bio_err,"%d entries loaded from the database\n", |
| 648 | db->data->num); |
| 649 | BIO_printf(bio_err,"generating indexs\n"); |
| 650 | } |
| 651 | |
| 652 | if (!TXT_DB_create_index(db,DB_serial,NULL,index_serial_hash, |
| 653 | index_serial_cmp)) |
| 654 | { |
| 655 | BIO_printf(bio_err,"error creating serial number index:(%ld,%ld,%ld)\n",db->error,db->arg1,db->arg2); |
| 656 | goto err; |
| 657 | } |
| 658 | |
| 659 | if (!TXT_DB_create_index(db,DB_name,index_name_qual,index_name_hash, |
| 660 | index_name_cmp)) |
| 661 | { |
| 662 | BIO_printf(bio_err,"error creating name index:(%ld,%ld,%ld)\n", |
| 663 | db->error,db->arg1,db->arg2); |
| 664 | goto err; |
| 665 | } |
| 666 | |
| 667 | /*****************************************************************/ |
| 668 | if (req || gencrl) |
| 669 | { |
| 670 | if (outfile != NULL) |
| 671 | { |
| 672 | |
| 673 | if (BIO_write_filename(Sout,outfile) <= 0) |
| 674 | { |
| 675 | perror(outfile); |
| 676 | goto err; |
| 677 | } |
| 678 | } |
| 679 | else |
Ralf S. Engelschall | 58964a4 | 1998-12-21 10:56:39 +0000 | [diff] [blame] | 680 | BIO_set_fp(Sout,stdout,BIO_NOCLOSE|BIO_FP_TEXT); |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 681 | } |
| 682 | |
| 683 | if (req) |
| 684 | { |
| 685 | if ((md == NULL) && ((md=CONF_get_string(conf, |
| 686 | section,ENV_DEFAULT_MD)) == NULL)) |
| 687 | { |
| 688 | lookup_fail(section,ENV_DEFAULT_MD); |
| 689 | goto err; |
| 690 | } |
| 691 | if ((dgst=EVP_get_digestbyname(md)) == NULL) |
| 692 | { |
| 693 | BIO_printf(bio_err,"%s is an unsupported message digest type\n",md); |
| 694 | goto err; |
| 695 | } |
| 696 | if (verbose) |
| 697 | BIO_printf(bio_err,"message digest is %s\n", |
| 698 | OBJ_nid2ln(dgst->type)); |
| 699 | if ((policy == NULL) && ((policy=CONF_get_string(conf, |
| 700 | section,ENV_POLICY)) == NULL)) |
| 701 | { |
| 702 | lookup_fail(section,ENV_POLICY); |
| 703 | goto err; |
| 704 | } |
| 705 | if (verbose) |
| 706 | BIO_printf(bio_err,"policy is %s\n",policy); |
| 707 | |
| 708 | if ((serialfile=CONF_get_string(conf,section,ENV_SERIAL)) |
| 709 | == NULL) |
| 710 | { |
| 711 | lookup_fail(section,ENV_SERIAL); |
| 712 | goto err; |
| 713 | } |
| 714 | |
Dr. Stephen Henson | b234766 | 1999-01-26 01:19:27 +0000 | [diff] [blame] | 715 | extensions=CONF_get_string(conf,section,ENV_EXTENSIONS); |
Ben Laurie | 7ec218eb | 1999-02-06 17:46:23 +0000 | [diff] [blame] | 716 | if(extensions) { |
Dr. Stephen Henson | b234766 | 1999-01-26 01:19:27 +0000 | [diff] [blame] | 717 | /* Check syntax of file */ |
Dr. Stephen Henson | 41b731f | 1999-04-18 23:21:03 +0000 | [diff] [blame] | 718 | X509V3_CTX ctx; |
| 719 | X509V3_set_ctx_test(&ctx); |
| 720 | X509V3_set_conf_lhash(&ctx, conf); |
| 721 | if(!X509V3_EXT_add_conf(conf, &ctx, extensions, NULL)) { |
Dr. Stephen Henson | b234766 | 1999-01-26 01:19:27 +0000 | [diff] [blame] | 722 | BIO_printf(bio_err, |
| 723 | "Error Loading extension section %s\n", |
| 724 | extensions); |
Dr. Stephen Henson | aa066b9 | 1999-02-21 01:46:45 +0000 | [diff] [blame] | 725 | ret = 1; |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 726 | goto err; |
| 727 | } |
Dr. Stephen Henson | b234766 | 1999-01-26 01:19:27 +0000 | [diff] [blame] | 728 | } |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 729 | |
Ralf S. Engelschall | 58964a4 | 1998-12-21 10:56:39 +0000 | [diff] [blame] | 730 | if (startdate == NULL) |
| 731 | { |
| 732 | startdate=(char *)CONF_get_string(conf,section, |
| 733 | ENV_DEFAULT_STARTDATE); |
| 734 | if (startdate == NULL) |
| 735 | startdate="today"; |
| 736 | else |
| 737 | { |
| 738 | if (!ASN1_UTCTIME_set_string(NULL,startdate)) |
| 739 | { |
| 740 | BIO_printf(bio_err,"start date is invalid, it should be YYMMDDHHMMSS\n"); |
| 741 | goto err; |
| 742 | } |
| 743 | } |
| 744 | } |
| 745 | |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 746 | if (days == 0) |
| 747 | { |
| 748 | days=(int)CONF_get_number(conf,section, |
| 749 | ENV_DEFAULT_DAYS); |
| 750 | } |
| 751 | if (days == 0) |
| 752 | { |
| 753 | BIO_printf(bio_err,"cannot lookup how many days to certify for\n"); |
| 754 | goto err; |
| 755 | } |
| 756 | |
| 757 | if ((serial=load_serial(serialfile)) == NULL) |
| 758 | { |
| 759 | BIO_printf(bio_err,"error while loading serial number\n"); |
| 760 | goto err; |
| 761 | } |
| 762 | if (verbose) |
| 763 | { |
Ralf S. Engelschall | dfeab06 | 1998-12-21 11:00:56 +0000 | [diff] [blame] | 764 | if ((f=BN_bn2hex(serial)) == NULL) goto err; |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 765 | BIO_printf(bio_err,"next serial number is %s\n",f); |
| 766 | Free(f); |
| 767 | } |
| 768 | |
| 769 | if ((attribs=CONF_get_section(conf,policy)) == NULL) |
| 770 | { |
| 771 | BIO_printf(bio_err,"unable to find 'section' for %s\n",policy); |
| 772 | goto err; |
| 773 | } |
| 774 | |
| 775 | if ((cert_sk=sk_new_null()) == NULL) |
| 776 | { |
| 777 | BIO_printf(bio_err,"Malloc failure\n"); |
| 778 | goto err; |
| 779 | } |
| 780 | if (spkac_file != NULL) |
| 781 | { |
| 782 | total++; |
| 783 | j=certify_spkac(&x,spkac_file,pkey,x509,dgst,attribs,db, |
Dr. Stephen Henson | b234766 | 1999-01-26 01:19:27 +0000 | [diff] [blame] | 784 | serial,startdate,days,extensions,conf,verbose); |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 785 | if (j < 0) goto err; |
| 786 | if (j > 0) |
| 787 | { |
| 788 | total_done++; |
| 789 | BIO_printf(bio_err,"\n"); |
| 790 | if (!BN_add_word(serial,1)) goto err; |
| 791 | if (!sk_push(cert_sk,(char *)x)) |
| 792 | { |
| 793 | BIO_printf(bio_err,"Malloc failure\n"); |
| 794 | goto err; |
| 795 | } |
| 796 | if (outfile) |
| 797 | { |
| 798 | output_der = 1; |
| 799 | batch = 1; |
| 800 | } |
| 801 | } |
| 802 | } |
Ralf S. Engelschall | 58964a4 | 1998-12-21 10:56:39 +0000 | [diff] [blame] | 803 | if (ss_cert_file != NULL) |
| 804 | { |
| 805 | total++; |
| 806 | j=certify_cert(&x,ss_cert_file,pkey,x509,dgst,attribs, |
| 807 | db,serial,startdate,days,batch, |
Dr. Stephen Henson | b234766 | 1999-01-26 01:19:27 +0000 | [diff] [blame] | 808 | extensions,conf,verbose); |
Ralf S. Engelschall | 58964a4 | 1998-12-21 10:56:39 +0000 | [diff] [blame] | 809 | if (j < 0) goto err; |
| 810 | if (j > 0) |
| 811 | { |
| 812 | total_done++; |
| 813 | BIO_printf(bio_err,"\n"); |
| 814 | if (!BN_add_word(serial,1)) goto err; |
| 815 | if (!sk_push(cert_sk,(char *)x)) |
| 816 | { |
| 817 | BIO_printf(bio_err,"Malloc failure\n"); |
| 818 | goto err; |
| 819 | } |
| 820 | } |
| 821 | } |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 822 | if (infile != NULL) |
| 823 | { |
| 824 | total++; |
| 825 | j=certify(&x,infile,pkey,x509,dgst,attribs,db, |
Ralf S. Engelschall | 58964a4 | 1998-12-21 10:56:39 +0000 | [diff] [blame] | 826 | serial,startdate,days,batch, |
Dr. Stephen Henson | b234766 | 1999-01-26 01:19:27 +0000 | [diff] [blame] | 827 | extensions,conf,verbose); |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 828 | if (j < 0) goto err; |
| 829 | if (j > 0) |
| 830 | { |
| 831 | total_done++; |
| 832 | BIO_printf(bio_err,"\n"); |
| 833 | if (!BN_add_word(serial,1)) goto err; |
| 834 | if (!sk_push(cert_sk,(char *)x)) |
| 835 | { |
| 836 | BIO_printf(bio_err,"Malloc failure\n"); |
| 837 | goto err; |
| 838 | } |
| 839 | } |
| 840 | } |
| 841 | for (i=0; i<argc; i++) |
| 842 | { |
| 843 | total++; |
| 844 | j=certify(&x,argv[i],pkey,x509,dgst,attribs,db, |
Ralf S. Engelschall | 58964a4 | 1998-12-21 10:56:39 +0000 | [diff] [blame] | 845 | serial,startdate,days,batch, |
Dr. Stephen Henson | b234766 | 1999-01-26 01:19:27 +0000 | [diff] [blame] | 846 | extensions,conf,verbose); |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 847 | if (j < 0) goto err; |
| 848 | if (j > 0) |
| 849 | { |
| 850 | total_done++; |
| 851 | BIO_printf(bio_err,"\n"); |
| 852 | if (!BN_add_word(serial,1)) goto err; |
| 853 | if (!sk_push(cert_sk,(char *)x)) |
| 854 | { |
| 855 | BIO_printf(bio_err,"Malloc failure\n"); |
| 856 | goto err; |
| 857 | } |
| 858 | } |
| 859 | } |
| 860 | /* we have a stack of newly certified certificates |
| 861 | * and a data base and serial number that need |
| 862 | * updating */ |
| 863 | |
| 864 | if (sk_num(cert_sk) > 0) |
| 865 | { |
| 866 | if (!batch) |
| 867 | { |
| 868 | BIO_printf(bio_err,"\n%d out of %d certificate requests certified, commit? [y/n]",total_done,total); |
| 869 | BIO_flush(bio_err); |
| 870 | buf[0][0]='\0'; |
| 871 | fgets(buf[0],10,stdin); |
| 872 | if ((buf[0][0] != 'y') && (buf[0][0] != 'Y')) |
| 873 | { |
| 874 | BIO_printf(bio_err,"CERTIFICATION CANCELED\n"); |
| 875 | ret=0; |
| 876 | goto err; |
| 877 | } |
| 878 | } |
| 879 | |
| 880 | BIO_printf(bio_err,"Write out database with %d new entries\n",sk_num(cert_sk)); |
| 881 | |
| 882 | strncpy(buf[0],serialfile,BSIZE-4); |
Ulf Möller | 7d7d2cb | 1999-05-13 11:37:32 +0000 | [diff] [blame] | 883 | |
| 884 | #ifdef VMS |
| 885 | strcat(buf[0],"-new"); |
| 886 | #else |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 887 | strcat(buf[0],".new"); |
Ulf Möller | 7d7d2cb | 1999-05-13 11:37:32 +0000 | [diff] [blame] | 888 | #endif |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 889 | |
| 890 | if (!save_serial(buf[0],serial)) goto err; |
| 891 | |
| 892 | strncpy(buf[1],dbfile,BSIZE-4); |
Ulf Möller | 7d7d2cb | 1999-05-13 11:37:32 +0000 | [diff] [blame] | 893 | |
| 894 | #ifdef VMS |
| 895 | strcat(buf[1],"-new"); |
| 896 | #else |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 897 | strcat(buf[1],".new"); |
Ulf Möller | 7d7d2cb | 1999-05-13 11:37:32 +0000 | [diff] [blame] | 898 | #endif |
| 899 | |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 900 | if (BIO_write_filename(out,buf[1]) <= 0) |
| 901 | { |
| 902 | perror(dbfile); |
| 903 | BIO_printf(bio_err,"unable to open '%s'\n",dbfile); |
| 904 | goto err; |
| 905 | } |
| 906 | l=TXT_DB_write(out,db); |
| 907 | if (l <= 0) goto err; |
| 908 | } |
| 909 | |
| 910 | if (verbose) |
| 911 | BIO_printf(bio_err,"writing new certificates\n"); |
| 912 | for (i=0; i<sk_num(cert_sk); i++) |
| 913 | { |
| 914 | int k; |
| 915 | unsigned char *n; |
| 916 | |
| 917 | x=(X509 *)sk_value(cert_sk,i); |
| 918 | |
| 919 | j=x->cert_info->serialNumber->length; |
| 920 | p=(char *)x->cert_info->serialNumber->data; |
| 921 | |
| 922 | strncpy(buf[2],outdir,BSIZE-(j*2)-6); |
Ulf Möller | 7d7d2cb | 1999-05-13 11:37:32 +0000 | [diff] [blame] | 923 | |
| 924 | #ifndef VMS |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 925 | strcat(buf[2],"/"); |
Ulf Möller | 7d7d2cb | 1999-05-13 11:37:32 +0000 | [diff] [blame] | 926 | #endif |
| 927 | |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 928 | n=(unsigned char *)&(buf[2][strlen(buf[2])]); |
| 929 | if (j > 0) |
| 930 | { |
| 931 | for (k=0; k<j; k++) |
| 932 | { |
Ralf S. Engelschall | 58964a4 | 1998-12-21 10:56:39 +0000 | [diff] [blame] | 933 | sprintf((char *)n,"%02X",(unsigned char)*(p++)); |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 934 | n+=2; |
| 935 | } |
| 936 | } |
| 937 | else |
| 938 | { |
| 939 | *(n++)='0'; |
| 940 | *(n++)='0'; |
| 941 | } |
| 942 | *(n++)='.'; *(n++)='p'; *(n++)='e'; *(n++)='m'; |
| 943 | *n='\0'; |
| 944 | if (verbose) |
| 945 | BIO_printf(bio_err,"writing %s\n",buf[2]); |
| 946 | |
| 947 | if (BIO_write_filename(Cout,buf[2]) <= 0) |
| 948 | { |
| 949 | perror(buf[2]); |
| 950 | goto err; |
| 951 | } |
| 952 | write_new_certificate(Cout,x, 0); |
| 953 | write_new_certificate(Sout,x, output_der); |
| 954 | } |
| 955 | |
| 956 | if (sk_num(cert_sk)) |
| 957 | { |
| 958 | /* Rename the database and the serial file */ |
| 959 | strncpy(buf[2],serialfile,BSIZE-4); |
Ulf Möller | 7d7d2cb | 1999-05-13 11:37:32 +0000 | [diff] [blame] | 960 | |
| 961 | #ifdef VMS |
| 962 | strcat(buf[2],"-old"); |
| 963 | #else |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 964 | strcat(buf[2],".old"); |
Ulf Möller | 7d7d2cb | 1999-05-13 11:37:32 +0000 | [diff] [blame] | 965 | #endif |
| 966 | |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 967 | BIO_free(in); |
| 968 | BIO_free(out); |
| 969 | in=NULL; |
| 970 | out=NULL; |
| 971 | if (rename(serialfile,buf[2]) < 0) |
| 972 | { |
| 973 | BIO_printf(bio_err,"unabel to rename %s to %s\n", |
| 974 | serialfile,buf[2]); |
| 975 | perror("reason"); |
| 976 | goto err; |
| 977 | } |
| 978 | if (rename(buf[0],serialfile) < 0) |
| 979 | { |
| 980 | BIO_printf(bio_err,"unabel to rename %s to %s\n", |
| 981 | buf[0],serialfile); |
| 982 | perror("reason"); |
| 983 | rename(buf[2],serialfile); |
| 984 | goto err; |
| 985 | } |
| 986 | |
| 987 | strncpy(buf[2],dbfile,BSIZE-4); |
Ulf Möller | 7d7d2cb | 1999-05-13 11:37:32 +0000 | [diff] [blame] | 988 | |
| 989 | #ifdef VMS |
| 990 | strcat(buf[2],"-old"); |
| 991 | #else |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 992 | strcat(buf[2],".old"); |
Ulf Möller | 7d7d2cb | 1999-05-13 11:37:32 +0000 | [diff] [blame] | 993 | #endif |
| 994 | |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 995 | if (rename(dbfile,buf[2]) < 0) |
| 996 | { |
| 997 | BIO_printf(bio_err,"unabel to rename %s to %s\n", |
| 998 | dbfile,buf[2]); |
| 999 | perror("reason"); |
| 1000 | goto err; |
| 1001 | } |
| 1002 | if (rename(buf[1],dbfile) < 0) |
| 1003 | { |
| 1004 | BIO_printf(bio_err,"unabel to rename %s to %s\n", |
| 1005 | buf[1],dbfile); |
| 1006 | perror("reason"); |
| 1007 | rename(buf[2],dbfile); |
| 1008 | goto err; |
| 1009 | } |
| 1010 | BIO_printf(bio_err,"Data Base Updated\n"); |
| 1011 | } |
| 1012 | } |
| 1013 | |
| 1014 | /*****************************************************************/ |
| 1015 | if (gencrl) |
| 1016 | { |
Dr. Stephen Henson | 1756d40 | 1999-03-06 19:33:29 +0000 | [diff] [blame] | 1017 | crl_ext=CONF_get_string(conf,section,ENV_CRLEXT); |
| 1018 | if(crl_ext) { |
| 1019 | /* Check syntax of file */ |
Dr. Stephen Henson | 41b731f | 1999-04-18 23:21:03 +0000 | [diff] [blame] | 1020 | X509V3_CTX ctx; |
| 1021 | X509V3_set_ctx_test(&ctx); |
| 1022 | X509V3_set_conf_lhash(&ctx, conf); |
| 1023 | if(!X509V3_EXT_add_conf(conf, &ctx, crl_ext, NULL)) { |
Dr. Stephen Henson | 1756d40 | 1999-03-06 19:33:29 +0000 | [diff] [blame] | 1024 | BIO_printf(bio_err, |
| 1025 | "Error Loading CRL extension section %s\n", |
| 1026 | crl_ext); |
| 1027 | ret = 1; |
| 1028 | goto err; |
| 1029 | } |
| 1030 | } |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 1031 | if ((hex=BIO_new(BIO_s_mem())) == NULL) goto err; |
| 1032 | |
| 1033 | if (!crldays && !crlhours) |
| 1034 | { |
| 1035 | crldays=CONF_get_number(conf,section, |
| 1036 | ENV_DEFAULT_CRL_DAYS); |
| 1037 | crlhours=CONF_get_number(conf,section, |
| 1038 | ENV_DEFAULT_CRL_HOURS); |
| 1039 | } |
| 1040 | if ((crldays == 0) && (crlhours == 0)) |
| 1041 | { |
| 1042 | BIO_printf(bio_err,"cannot lookup how long until the next CRL is issuer\n"); |
| 1043 | goto err; |
| 1044 | } |
| 1045 | |
| 1046 | if (verbose) BIO_printf(bio_err,"making CRL\n"); |
| 1047 | if ((crl=X509_CRL_new()) == NULL) goto err; |
| 1048 | ci=crl->crl; |
| 1049 | X509_NAME_free(ci->issuer); |
| 1050 | ci->issuer=X509_NAME_dup(x509->cert_info->subject); |
| 1051 | if (ci->issuer == NULL) goto err; |
| 1052 | |
| 1053 | X509_gmtime_adj(ci->lastUpdate,0); |
Ralf S. Engelschall | 58964a4 | 1998-12-21 10:56:39 +0000 | [diff] [blame] | 1054 | if (ci->nextUpdate == NULL) |
| 1055 | ci->nextUpdate=ASN1_UTCTIME_new(); |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 1056 | X509_gmtime_adj(ci->nextUpdate,(crldays*24+crlhours)*60*60); |
| 1057 | |
| 1058 | for (i=0; i<sk_num(db->data); i++) |
| 1059 | { |
| 1060 | pp=(char **)sk_value(db->data,i); |
| 1061 | if (pp[DB_type][0] == DB_TYPE_REV) |
| 1062 | { |
| 1063 | if ((r=X509_REVOKED_new()) == NULL) goto err; |
| 1064 | ASN1_STRING_set((ASN1_STRING *) |
| 1065 | r->revocationDate, |
| 1066 | (unsigned char *)pp[DB_rev_date], |
| 1067 | strlen(pp[DB_rev_date])); |
| 1068 | /* strcpy(r->revocationDate,pp[DB_rev_date]);*/ |
| 1069 | |
| 1070 | BIO_reset(hex); |
| 1071 | if (!BIO_puts(hex,pp[DB_serial])) |
| 1072 | goto err; |
| 1073 | if (!a2i_ASN1_INTEGER(hex,r->serialNumber, |
| 1074 | buf[0],BSIZE)) goto err; |
| 1075 | |
Ben Laurie | ee8ba0b | 1999-05-30 15:25:47 +0000 | [diff] [blame^] | 1076 | sk_X509_REVOKED_push(ci->revoked,r); |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 1077 | } |
| 1078 | } |
| 1079 | /* sort the data so it will be written in serial |
| 1080 | * number order */ |
Ben Laurie | ee8ba0b | 1999-05-30 15:25:47 +0000 | [diff] [blame^] | 1081 | sk_X509_REVOKED_sort(ci->revoked); |
| 1082 | for (i=0; i<sk_X509_REVOKED_num(ci->revoked); i++) |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 1083 | { |
Ben Laurie | ee8ba0b | 1999-05-30 15:25:47 +0000 | [diff] [blame^] | 1084 | r=sk_X509_REVOKED_value(ci->revoked,i); |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 1085 | r->sequence=i; |
| 1086 | } |
| 1087 | |
Ralf S. Engelschall | 13e91dd | 1998-12-22 15:59:57 +0000 | [diff] [blame] | 1088 | /* we now have a CRL */ |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 1089 | if (verbose) BIO_printf(bio_err,"signing CRL\n"); |
| 1090 | if (md != NULL) |
| 1091 | { |
| 1092 | if ((dgst=EVP_get_digestbyname(md)) == NULL) |
| 1093 | { |
| 1094 | BIO_printf(bio_err,"%s is an unsupported message digest type\n",md); |
| 1095 | goto err; |
| 1096 | } |
| 1097 | } |
| 1098 | else |
Ben Laurie | 512d222 | 1999-01-17 14:14:41 +0000 | [diff] [blame] | 1099 | { |
Ralf S. Engelschall | 13e91dd | 1998-12-22 15:59:57 +0000 | [diff] [blame] | 1100 | #ifndef NO_DSA |
Ben Laurie | 512d222 | 1999-01-17 14:14:41 +0000 | [diff] [blame] | 1101 | if (pkey->type == EVP_PKEY_DSA) |
| 1102 | dgst=EVP_dss1(); |
| 1103 | else |
Ralf S. Engelschall | 13e91dd | 1998-12-22 15:59:57 +0000 | [diff] [blame] | 1104 | #endif |
Ben Laurie | 512d222 | 1999-01-17 14:14:41 +0000 | [diff] [blame] | 1105 | dgst=EVP_md5(); |
| 1106 | } |
| 1107 | |
Dr. Stephen Henson | 1756d40 | 1999-03-06 19:33:29 +0000 | [diff] [blame] | 1108 | /* Add any extensions asked for */ |
| 1109 | |
| 1110 | if(crl_ext) { |
| 1111 | X509V3_CTX crlctx; |
| 1112 | if (ci->version == NULL) |
| 1113 | if ((ci->version=ASN1_INTEGER_new()) == NULL) goto err; |
| 1114 | ASN1_INTEGER_set(ci->version,1); /* version 2 CRL */ |
Dr. Stephen Henson | 1d48dd0 | 1999-04-16 23:57:04 +0000 | [diff] [blame] | 1115 | X509V3_set_ctx(&crlctx, x509, NULL, NULL, crl, 0); |
| 1116 | X509V3_set_conf_lhash(&crlctx, conf); |
Dr. Stephen Henson | 1756d40 | 1999-03-06 19:33:29 +0000 | [diff] [blame] | 1117 | |
| 1118 | if(!X509V3_EXT_CRL_add_conf(conf, &crlctx, |
| 1119 | crl_ext, crl)) goto err; |
| 1120 | } |
| 1121 | |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 1122 | if (!X509_CRL_sign(crl,pkey,dgst)) goto err; |
| 1123 | |
| 1124 | PEM_write_bio_X509_CRL(Sout,crl); |
| 1125 | } |
| 1126 | /*****************************************************************/ |
Ben Laurie | a36a1a5 | 1999-04-12 17:17:39 +0000 | [diff] [blame] | 1127 | if (dorevoke) |
Ralf S. Engelschall | f9a2593 | 1999-04-12 11:45:14 +0000 | [diff] [blame] | 1128 | { |
| 1129 | in=BIO_new(BIO_s_file()); |
| 1130 | out=BIO_new(BIO_s_file()); |
| 1131 | if ((in == NULL) || (out == NULL)) |
| 1132 | { |
| 1133 | ERR_print_errors(bio_err); |
| 1134 | goto err; |
| 1135 | } |
| 1136 | if (infile == NULL) |
| 1137 | { |
| 1138 | BIO_printf(bio_err,"no input files\n"); |
| 1139 | goto err; |
| 1140 | } |
| 1141 | else |
| 1142 | { |
| 1143 | if (BIO_read_filename(in,infile) <= 0) |
| 1144 | { |
| 1145 | perror(infile); |
| 1146 | BIO_printf(bio_err,"error trying to load '%s' certificate\n",infile); |
| 1147 | goto err; |
| 1148 | } |
| 1149 | x509=PEM_read_bio_X509(in,NULL,NULL); |
| 1150 | if (x509 == NULL) |
| 1151 | { |
| 1152 | BIO_printf(bio_err,"unable to load '%s' certificate\n",infile); |
| 1153 | goto err; |
| 1154 | } |
| 1155 | j=do_revoke(x509,db); |
| 1156 | |
| 1157 | strncpy(buf[0],dbfile,BSIZE-4); |
| 1158 | strcat(buf[0],".new"); |
| 1159 | if (BIO_write_filename(out,buf[0]) <= 0) |
| 1160 | { |
| 1161 | perror(dbfile); |
| 1162 | BIO_printf(bio_err,"unable to open '%s'\n",dbfile); |
| 1163 | goto err; |
| 1164 | } |
| 1165 | j=TXT_DB_write(out,db); |
| 1166 | if (j <= 0) goto err; |
| 1167 | BIO_free(in); |
| 1168 | BIO_free(out); |
| 1169 | in=NULL; |
| 1170 | out=NULL; |
| 1171 | strncpy(buf[1],dbfile,BSIZE-4); |
| 1172 | strcat(buf[1],".old"); |
| 1173 | if (rename(dbfile,buf[1]) < 0) |
| 1174 | { |
| 1175 | BIO_printf(bio_err,"unable to rename %s to %s\n", dbfile, buf[1]); |
| 1176 | perror("reason"); |
| 1177 | goto err; |
| 1178 | } |
| 1179 | if (rename(buf[0],dbfile) < 0) |
| 1180 | { |
| 1181 | BIO_printf(bio_err,"unable to rename %s to %s\n", buf[0],dbfile); |
| 1182 | perror("reason"); |
| 1183 | rename(buf[1],dbfile); |
| 1184 | goto err; |
| 1185 | } |
| 1186 | BIO_printf(bio_err,"Data Base Updated\n"); |
| 1187 | } |
| 1188 | } |
| 1189 | /*****************************************************************/ |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 1190 | ret=0; |
| 1191 | err: |
Dr. Stephen Henson | a43aa73 | 1999-02-23 00:07:46 +0000 | [diff] [blame] | 1192 | BIO_free(hex); |
| 1193 | BIO_free(Cout); |
| 1194 | BIO_free(Sout); |
| 1195 | BIO_free(out); |
| 1196 | BIO_free(in); |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 1197 | |
Dr. Stephen Henson | a43aa73 | 1999-02-23 00:07:46 +0000 | [diff] [blame] | 1198 | sk_pop_free(cert_sk,X509_free); |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 1199 | |
| 1200 | if (ret) ERR_print_errors(bio_err); |
Dr. Stephen Henson | a43aa73 | 1999-02-23 00:07:46 +0000 | [diff] [blame] | 1201 | BN_free(serial); |
| 1202 | TXT_DB_free(db); |
| 1203 | EVP_PKEY_free(pkey); |
| 1204 | X509_free(x509); |
| 1205 | X509_CRL_free(crl); |
| 1206 | CONF_free(conf); |
Dr. Stephen Henson | b234766 | 1999-01-26 01:19:27 +0000 | [diff] [blame] | 1207 | X509V3_EXT_cleanup(); |
Dr. Stephen Henson | a43aa73 | 1999-02-23 00:07:46 +0000 | [diff] [blame] | 1208 | OBJ_cleanup(); |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 1209 | EXIT(ret); |
| 1210 | } |
| 1211 | |
Ulf Möller | 6b691a5 | 1999-04-19 21:31:43 +0000 | [diff] [blame] | 1212 | static void lookup_fail(char *name, char *tag) |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 1213 | { |
| 1214 | BIO_printf(bio_err,"variable lookup failed for %s::%s\n",name,tag); |
| 1215 | } |
| 1216 | |
Ulf Möller | 6b691a5 | 1999-04-19 21:31:43 +0000 | [diff] [blame] | 1217 | static int MS_CALLBACK key_callback(char *buf, int len, int verify) |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 1218 | { |
| 1219 | int i; |
| 1220 | |
| 1221 | if (key == NULL) return(0); |
| 1222 | i=strlen(key); |
| 1223 | i=(i > len)?len:i; |
| 1224 | memcpy(buf,key,i); |
| 1225 | return(i); |
| 1226 | } |
| 1227 | |
Ulf Möller | 6b691a5 | 1999-04-19 21:31:43 +0000 | [diff] [blame] | 1228 | static unsigned long index_serial_hash(char **a) |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 1229 | { |
| 1230 | char *n; |
| 1231 | |
| 1232 | n=a[DB_serial]; |
| 1233 | while (*n == '0') n++; |
| 1234 | return(lh_strhash(n)); |
| 1235 | } |
| 1236 | |
Ulf Möller | 6b691a5 | 1999-04-19 21:31:43 +0000 | [diff] [blame] | 1237 | static int index_serial_cmp(char **a, char **b) |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 1238 | { |
| 1239 | char *aa,*bb; |
| 1240 | |
| 1241 | for (aa=a[DB_serial]; *aa == '0'; aa++); |
| 1242 | for (bb=b[DB_serial]; *bb == '0'; bb++); |
| 1243 | return(strcmp(aa,bb)); |
| 1244 | } |
| 1245 | |
Ulf Möller | 6b691a5 | 1999-04-19 21:31:43 +0000 | [diff] [blame] | 1246 | static unsigned long index_name_hash(char **a) |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 1247 | { return(lh_strhash(a[DB_name])); } |
| 1248 | |
Ulf Möller | 6b691a5 | 1999-04-19 21:31:43 +0000 | [diff] [blame] | 1249 | static int index_name_qual(char **a) |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 1250 | { return(a[0][0] == 'V'); } |
| 1251 | |
Ulf Möller | 6b691a5 | 1999-04-19 21:31:43 +0000 | [diff] [blame] | 1252 | static int index_name_cmp(char **a, char **b) |
| 1253 | { return(strcmp(a[DB_name], |
| 1254 | b[DB_name])); } |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 1255 | |
Ulf Möller | 6b691a5 | 1999-04-19 21:31:43 +0000 | [diff] [blame] | 1256 | static BIGNUM *load_serial(char *serialfile) |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 1257 | { |
| 1258 | BIO *in=NULL; |
| 1259 | BIGNUM *ret=NULL; |
| 1260 | MS_STATIC char buf[1024]; |
| 1261 | ASN1_INTEGER *ai=NULL; |
| 1262 | |
| 1263 | if ((in=BIO_new(BIO_s_file())) == NULL) |
| 1264 | { |
| 1265 | ERR_print_errors(bio_err); |
| 1266 | goto err; |
| 1267 | } |
| 1268 | |
| 1269 | if (BIO_read_filename(in,serialfile) <= 0) |
| 1270 | { |
| 1271 | perror(serialfile); |
| 1272 | goto err; |
| 1273 | } |
| 1274 | ai=ASN1_INTEGER_new(); |
| 1275 | if (ai == NULL) goto err; |
| 1276 | if (!a2i_ASN1_INTEGER(in,ai,buf,1024)) |
| 1277 | { |
| 1278 | BIO_printf(bio_err,"unable to load number from %s\n", |
| 1279 | serialfile); |
| 1280 | goto err; |
| 1281 | } |
| 1282 | ret=ASN1_INTEGER_to_BN(ai,NULL); |
| 1283 | if (ret == NULL) |
| 1284 | { |
| 1285 | BIO_printf(bio_err,"error converting number from bin to BIGNUM"); |
| 1286 | goto err; |
| 1287 | } |
| 1288 | err: |
| 1289 | if (in != NULL) BIO_free(in); |
| 1290 | if (ai != NULL) ASN1_INTEGER_free(ai); |
| 1291 | return(ret); |
| 1292 | } |
| 1293 | |
Ulf Möller | 6b691a5 | 1999-04-19 21:31:43 +0000 | [diff] [blame] | 1294 | static int save_serial(char *serialfile, BIGNUM *serial) |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 1295 | { |
| 1296 | BIO *out; |
| 1297 | int ret=0; |
| 1298 | ASN1_INTEGER *ai=NULL; |
| 1299 | |
| 1300 | out=BIO_new(BIO_s_file()); |
| 1301 | if (out == NULL) |
| 1302 | { |
| 1303 | ERR_print_errors(bio_err); |
| 1304 | goto err; |
| 1305 | } |
| 1306 | if (BIO_write_filename(out,serialfile) <= 0) |
| 1307 | { |
| 1308 | perror(serialfile); |
| 1309 | goto err; |
| 1310 | } |
| 1311 | |
| 1312 | if ((ai=BN_to_ASN1_INTEGER(serial,NULL)) == NULL) |
| 1313 | { |
| 1314 | BIO_printf(bio_err,"error converting serial to ASN.1 format\n"); |
| 1315 | goto err; |
| 1316 | } |
| 1317 | i2a_ASN1_INTEGER(out,ai); |
| 1318 | BIO_puts(out,"\n"); |
| 1319 | ret=1; |
| 1320 | err: |
| 1321 | if (out != NULL) BIO_free(out); |
| 1322 | if (ai != NULL) ASN1_INTEGER_free(ai); |
| 1323 | return(ret); |
| 1324 | } |
| 1325 | |
Ulf Möller | 6b691a5 | 1999-04-19 21:31:43 +0000 | [diff] [blame] | 1326 | static int certify(X509 **xret, char *infile, EVP_PKEY *pkey, X509 *x509, |
| 1327 | const EVP_MD *dgst, STACK *policy, TXT_DB *db, BIGNUM *serial, |
| 1328 | char *startdate, int days, int batch, char *ext_sect, LHASH *lconf, |
| 1329 | int verbose) |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 1330 | { |
| 1331 | X509_REQ *req=NULL; |
| 1332 | BIO *in=NULL; |
| 1333 | EVP_PKEY *pktmp=NULL; |
| 1334 | int ok= -1,i; |
| 1335 | |
| 1336 | in=BIO_new(BIO_s_file()); |
| 1337 | |
| 1338 | if (BIO_read_filename(in,infile) <= 0) |
| 1339 | { |
| 1340 | perror(infile); |
| 1341 | goto err; |
| 1342 | } |
| 1343 | if ((req=PEM_read_bio_X509_REQ(in,NULL,NULL)) == NULL) |
| 1344 | { |
| 1345 | BIO_printf(bio_err,"Error reading certificate request in %s\n", |
| 1346 | infile); |
| 1347 | goto err; |
| 1348 | } |
| 1349 | if (verbose) |
| 1350 | X509_REQ_print(bio_err,req); |
| 1351 | |
| 1352 | BIO_printf(bio_err,"Check that the request matches the signature\n"); |
| 1353 | |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 1354 | if ((pktmp=X509_REQ_get_pubkey(req)) == NULL) |
| 1355 | { |
| 1356 | BIO_printf(bio_err,"error unpacking public key\n"); |
| 1357 | goto err; |
| 1358 | } |
| 1359 | i=X509_REQ_verify(req,pktmp); |
Dr. Stephen Henson | 10061c7 | 1999-01-03 23:00:45 +0000 | [diff] [blame] | 1360 | EVP_PKEY_free(pktmp); |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 1361 | if (i < 0) |
| 1362 | { |
| 1363 | ok=0; |
| 1364 | BIO_printf(bio_err,"Signature verification problems....\n"); |
| 1365 | goto err; |
| 1366 | } |
| 1367 | if (i == 0) |
| 1368 | { |
| 1369 | ok=0; |
| 1370 | BIO_printf(bio_err,"Signature did not match the certificate request\n"); |
| 1371 | goto err; |
| 1372 | } |
| 1373 | else |
| 1374 | BIO_printf(bio_err,"Signature ok\n"); |
| 1375 | |
Ralf S. Engelschall | 58964a4 | 1998-12-21 10:56:39 +0000 | [diff] [blame] | 1376 | ok=do_body(xret,pkey,x509,dgst,policy,db,serial,startdate, |
Ben Laurie | 08853ba | 1999-02-13 21:49:34 +0000 | [diff] [blame] | 1377 | days,batch,verbose,req,ext_sect,lconf); |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 1378 | |
| 1379 | err: |
| 1380 | if (req != NULL) X509_REQ_free(req); |
| 1381 | if (in != NULL) BIO_free(in); |
| 1382 | return(ok); |
| 1383 | } |
| 1384 | |
Ulf Möller | 6b691a5 | 1999-04-19 21:31:43 +0000 | [diff] [blame] | 1385 | static int certify_cert(X509 **xret, char *infile, EVP_PKEY *pkey, X509 *x509, |
| 1386 | const EVP_MD *dgst, STACK *policy, TXT_DB *db, BIGNUM *serial, |
| 1387 | char *startdate, int days, int batch, char *ext_sect, LHASH *lconf, |
| 1388 | int verbose) |
| 1389 | |
Ralf S. Engelschall | 58964a4 | 1998-12-21 10:56:39 +0000 | [diff] [blame] | 1390 | { |
| 1391 | X509 *req=NULL; |
| 1392 | X509_REQ *rreq=NULL; |
| 1393 | BIO *in=NULL; |
| 1394 | EVP_PKEY *pktmp=NULL; |
| 1395 | int ok= -1,i; |
| 1396 | |
| 1397 | in=BIO_new(BIO_s_file()); |
| 1398 | |
| 1399 | if (BIO_read_filename(in,infile) <= 0) |
| 1400 | { |
| 1401 | perror(infile); |
| 1402 | goto err; |
| 1403 | } |
| 1404 | if ((req=PEM_read_bio_X509(in,NULL,NULL)) == NULL) |
| 1405 | { |
| 1406 | BIO_printf(bio_err,"Error reading self signed certificate in %s\n",infile); |
| 1407 | goto err; |
| 1408 | } |
| 1409 | if (verbose) |
| 1410 | X509_print(bio_err,req); |
| 1411 | |
| 1412 | BIO_printf(bio_err,"Check that the request matches the signature\n"); |
| 1413 | |
| 1414 | if ((pktmp=X509_get_pubkey(req)) == NULL) |
| 1415 | { |
| 1416 | BIO_printf(bio_err,"error unpacking public key\n"); |
| 1417 | goto err; |
| 1418 | } |
| 1419 | i=X509_verify(req,pktmp); |
Dr. Stephen Henson | 10061c7 | 1999-01-03 23:00:45 +0000 | [diff] [blame] | 1420 | EVP_PKEY_free(pktmp); |
Ralf S. Engelschall | 58964a4 | 1998-12-21 10:56:39 +0000 | [diff] [blame] | 1421 | if (i < 0) |
| 1422 | { |
| 1423 | ok=0; |
| 1424 | BIO_printf(bio_err,"Signature verification problems....\n"); |
| 1425 | goto err; |
| 1426 | } |
| 1427 | if (i == 0) |
| 1428 | { |
| 1429 | ok=0; |
Ralf S. Engelschall | dfeab06 | 1998-12-21 11:00:56 +0000 | [diff] [blame] | 1430 | BIO_printf(bio_err,"Signature did not match the certificate\n"); |
Ralf S. Engelschall | 58964a4 | 1998-12-21 10:56:39 +0000 | [diff] [blame] | 1431 | goto err; |
| 1432 | } |
| 1433 | else |
| 1434 | BIO_printf(bio_err,"Signature ok\n"); |
| 1435 | |
| 1436 | if ((rreq=X509_to_X509_REQ(req,NULL,EVP_md5())) == NULL) |
| 1437 | goto err; |
| 1438 | |
| 1439 | ok=do_body(xret,pkey,x509,dgst,policy,db,serial,startdate,days, |
Ben Laurie | 08853ba | 1999-02-13 21:49:34 +0000 | [diff] [blame] | 1440 | batch,verbose,rreq,ext_sect,lconf); |
Ralf S. Engelschall | 58964a4 | 1998-12-21 10:56:39 +0000 | [diff] [blame] | 1441 | |
| 1442 | err: |
| 1443 | if (rreq != NULL) X509_REQ_free(rreq); |
| 1444 | if (req != NULL) X509_free(req); |
| 1445 | if (in != NULL) BIO_free(in); |
| 1446 | return(ok); |
| 1447 | } |
| 1448 | |
Ulf Möller | 6b691a5 | 1999-04-19 21:31:43 +0000 | [diff] [blame] | 1449 | static int do_body(X509 **xret, EVP_PKEY *pkey, X509 *x509, const EVP_MD *dgst, |
| 1450 | STACK *policy, TXT_DB *db, BIGNUM *serial, char *startdate, int days, |
| 1451 | int batch, int verbose, X509_REQ *req, char *ext_sect, LHASH *lconf) |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 1452 | { |
| 1453 | X509_NAME *name=NULL,*CAname=NULL,*subject=NULL; |
Ralf S. Engelschall | 58964a4 | 1998-12-21 10:56:39 +0000 | [diff] [blame] | 1454 | ASN1_UTCTIME *tm,*tmptm; |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 1455 | ASN1_STRING *str,*str2; |
| 1456 | ASN1_OBJECT *obj; |
| 1457 | X509 *ret=NULL; |
| 1458 | X509_CINF *ci; |
| 1459 | X509_NAME_ENTRY *ne; |
| 1460 | X509_NAME_ENTRY *tne,*push; |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 1461 | EVP_PKEY *pktmp; |
| 1462 | int ok= -1,i,j,last,nid; |
| 1463 | char *p; |
| 1464 | CONF_VALUE *cv; |
| 1465 | char *row[DB_NUMBER],**rrow,**irow=NULL; |
| 1466 | char buf[25],*pbuf; |
| 1467 | |
Ralf S. Engelschall | 58964a4 | 1998-12-21 10:56:39 +0000 | [diff] [blame] | 1468 | tmptm=ASN1_UTCTIME_new(); |
| 1469 | if (tmptm == NULL) |
| 1470 | { |
| 1471 | BIO_printf(bio_err,"malloc error\n"); |
| 1472 | return(0); |
| 1473 | } |
| 1474 | |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 1475 | for (i=0; i<DB_NUMBER; i++) |
| 1476 | row[i]=NULL; |
| 1477 | |
| 1478 | BIO_printf(bio_err,"The Subjects Distinguished Name is as follows\n"); |
| 1479 | name=X509_REQ_get_subject_name(req); |
| 1480 | for (i=0; i<X509_NAME_entry_count(name); i++) |
| 1481 | { |
| 1482 | ne=(X509_NAME_ENTRY *)X509_NAME_get_entry(name,i); |
| 1483 | obj=X509_NAME_ENTRY_get_object(ne); |
| 1484 | j=i2a_ASN1_OBJECT(bio_err,obj); |
| 1485 | str=X509_NAME_ENTRY_get_data(ne); |
| 1486 | pbuf=buf; |
| 1487 | for (j=22-j; j>0; j--) |
| 1488 | *(pbuf++)=' '; |
| 1489 | *(pbuf++)=':'; |
| 1490 | *(pbuf++)='\0'; |
| 1491 | BIO_puts(bio_err,buf); |
| 1492 | |
| 1493 | if (msie_hack) |
| 1494 | { |
| 1495 | /* assume all type should be strings */ |
| 1496 | nid=OBJ_obj2nid(ne->object); |
| 1497 | |
| 1498 | if (str->type == V_ASN1_UNIVERSALSTRING) |
| 1499 | ASN1_UNIVERSALSTRING_to_string(str); |
| 1500 | |
| 1501 | if ((str->type == V_ASN1_IA5STRING) && |
| 1502 | (nid != NID_pkcs9_emailAddress)) |
| 1503 | str->type=V_ASN1_T61STRING; |
| 1504 | |
| 1505 | if ((nid == NID_pkcs9_emailAddress) && |
| 1506 | (str->type == V_ASN1_PRINTABLESTRING)) |
| 1507 | str->type=V_ASN1_IA5STRING; |
| 1508 | } |
| 1509 | |
| 1510 | if (str->type == V_ASN1_PRINTABLESTRING) |
| 1511 | BIO_printf(bio_err,"PRINTABLE:'"); |
| 1512 | else if (str->type == V_ASN1_T61STRING) |
| 1513 | BIO_printf(bio_err,"T61STRING:'"); |
| 1514 | else if (str->type == V_ASN1_IA5STRING) |
| 1515 | BIO_printf(bio_err,"IA5STRING:'"); |
| 1516 | else if (str->type == V_ASN1_UNIVERSALSTRING) |
| 1517 | BIO_printf(bio_err,"UNIVERSALSTRING:'"); |
| 1518 | else |
| 1519 | BIO_printf(bio_err,"ASN.1 %2d:'",str->type); |
| 1520 | |
| 1521 | /* check some things */ |
| 1522 | if ((OBJ_obj2nid(obj) == NID_pkcs9_emailAddress) && |
| 1523 | (str->type != V_ASN1_IA5STRING)) |
| 1524 | { |
| 1525 | BIO_printf(bio_err,"\nemailAddress type needs to be of type IA5STRING\n"); |
| 1526 | goto err; |
| 1527 | } |
| 1528 | j=ASN1_PRINTABLE_type(str->data,str->length); |
| 1529 | if ( ((j == V_ASN1_T61STRING) && |
| 1530 | (str->type != V_ASN1_T61STRING)) || |
| 1531 | ((j == V_ASN1_IA5STRING) && |
| 1532 | (str->type == V_ASN1_PRINTABLESTRING))) |
| 1533 | { |
| 1534 | BIO_printf(bio_err,"\nThe string contains characters that are illegal for the ASN.1 type\n"); |
| 1535 | goto err; |
| 1536 | } |
| 1537 | |
| 1538 | p=(char *)str->data; |
| 1539 | for (j=str->length; j>0; j--) |
| 1540 | { |
| 1541 | if ((*p >= ' ') && (*p <= '~')) |
| 1542 | BIO_printf(bio_err,"%c",*p); |
| 1543 | else if (*p & 0x80) |
| 1544 | BIO_printf(bio_err,"\\0x%02X",*p); |
| 1545 | else if ((unsigned char)*p == 0xf7) |
| 1546 | BIO_printf(bio_err,"^?"); |
| 1547 | else BIO_printf(bio_err,"^%c",*p+'@'); |
| 1548 | p++; |
| 1549 | } |
| 1550 | BIO_printf(bio_err,"'\n"); |
| 1551 | } |
| 1552 | |
| 1553 | /* Ok, now we check the 'policy' stuff. */ |
| 1554 | if ((subject=X509_NAME_new()) == NULL) |
| 1555 | { |
| 1556 | BIO_printf(bio_err,"Malloc failure\n"); |
| 1557 | goto err; |
| 1558 | } |
| 1559 | |
| 1560 | /* take a copy of the issuer name before we mess with it. */ |
| 1561 | CAname=X509_NAME_dup(x509->cert_info->subject); |
| 1562 | if (CAname == NULL) goto err; |
| 1563 | str=str2=NULL; |
| 1564 | |
| 1565 | for (i=0; i<sk_num(policy); i++) |
| 1566 | { |
| 1567 | cv=(CONF_VALUE *)sk_value(policy,i); /* get the object id */ |
| 1568 | if ((j=OBJ_txt2nid(cv->name)) == NID_undef) |
| 1569 | { |
| 1570 | BIO_printf(bio_err,"%s:unknown object type in 'policy' configuration\n",cv->name); |
| 1571 | goto err; |
| 1572 | } |
| 1573 | obj=OBJ_nid2obj(j); |
| 1574 | |
| 1575 | last= -1; |
| 1576 | for (;;) |
| 1577 | { |
| 1578 | /* lookup the object in the supplied name list */ |
| 1579 | j=X509_NAME_get_index_by_OBJ(name,obj,last); |
| 1580 | if (j < 0) |
| 1581 | { |
| 1582 | if (last != -1) break; |
| 1583 | tne=NULL; |
| 1584 | } |
| 1585 | else |
| 1586 | { |
| 1587 | tne=X509_NAME_get_entry(name,j); |
| 1588 | } |
| 1589 | last=j; |
| 1590 | |
| 1591 | /* depending on the 'policy', decide what to do. */ |
| 1592 | push=NULL; |
| 1593 | if (strcmp(cv->value,"optional") == 0) |
| 1594 | { |
| 1595 | if (tne != NULL) |
| 1596 | push=tne; |
| 1597 | } |
| 1598 | else if (strcmp(cv->value,"supplied") == 0) |
| 1599 | { |
| 1600 | if (tne == NULL) |
| 1601 | { |
| 1602 | BIO_printf(bio_err,"The %s field needed to be supplied and was missing\n",cv->name); |
| 1603 | goto err; |
| 1604 | } |
| 1605 | else |
| 1606 | push=tne; |
| 1607 | } |
| 1608 | else if (strcmp(cv->value,"match") == 0) |
| 1609 | { |
| 1610 | int last2; |
| 1611 | |
| 1612 | if (tne == NULL) |
| 1613 | { |
| 1614 | BIO_printf(bio_err,"The mandatory %s field was missing\n",cv->name); |
| 1615 | goto err; |
| 1616 | } |
| 1617 | |
| 1618 | last2= -1; |
| 1619 | |
| 1620 | again2: |
| 1621 | j=X509_NAME_get_index_by_OBJ(CAname,obj,last2); |
| 1622 | if ((j < 0) && (last2 == -1)) |
| 1623 | { |
| 1624 | BIO_printf(bio_err,"The %s field does not exist in the CA certificate,\nthe 'policy' is misconfigured\n",cv->name); |
| 1625 | goto err; |
| 1626 | } |
| 1627 | if (j >= 0) |
| 1628 | { |
| 1629 | push=X509_NAME_get_entry(CAname,j); |
| 1630 | str=X509_NAME_ENTRY_get_data(tne); |
| 1631 | str2=X509_NAME_ENTRY_get_data(push); |
| 1632 | last2=j; |
| 1633 | if (ASN1_STRING_cmp(str,str2) != 0) |
| 1634 | goto again2; |
| 1635 | } |
| 1636 | if (j < 0) |
| 1637 | { |
| 1638 | BIO_printf(bio_err,"The %s field needed to be the same in the\nCA certificate (%s) and the request (%s)\n",cv->name,((str == NULL)?"NULL":(char *)str->data),((str2 == NULL)?"NULL":(char *)str2->data)); |
| 1639 | goto err; |
| 1640 | } |
| 1641 | } |
| 1642 | else |
| 1643 | { |
| 1644 | BIO_printf(bio_err,"%s:invalid type in 'policy' configuration\n",cv->value); |
| 1645 | goto err; |
| 1646 | } |
| 1647 | |
| 1648 | if (push != NULL) |
| 1649 | { |
| 1650 | if (!X509_NAME_add_entry(subject,push, |
| 1651 | X509_NAME_entry_count(subject),0)) |
| 1652 | { |
| 1653 | if (push != NULL) |
| 1654 | X509_NAME_ENTRY_free(push); |
| 1655 | BIO_printf(bio_err,"Malloc failure\n"); |
| 1656 | goto err; |
| 1657 | } |
| 1658 | } |
| 1659 | if (j < 0) break; |
| 1660 | } |
| 1661 | } |
| 1662 | |
| 1663 | if (preserve) |
| 1664 | { |
| 1665 | X509_NAME_free(subject); |
| 1666 | subject=X509_NAME_dup(X509_REQ_get_subject_name(req)); |
| 1667 | if (subject == NULL) goto err; |
| 1668 | } |
| 1669 | |
| 1670 | if (verbose) |
| 1671 | BIO_printf(bio_err,"The subject name apears to be ok, checking data base for clashes\n"); |
| 1672 | |
| 1673 | row[DB_name]=X509_NAME_oneline(subject,NULL,0); |
Ralf S. Engelschall | dfeab06 | 1998-12-21 11:00:56 +0000 | [diff] [blame] | 1674 | row[DB_serial]=BN_bn2hex(serial); |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 1675 | if ((row[DB_name] == NULL) || (row[DB_serial] == NULL)) |
| 1676 | { |
| 1677 | BIO_printf(bio_err,"Malloc failure\n"); |
| 1678 | goto err; |
| 1679 | } |
| 1680 | |
| 1681 | rrow=TXT_DB_get_by_index(db,DB_name,row); |
| 1682 | if (rrow != NULL) |
| 1683 | { |
| 1684 | BIO_printf(bio_err,"ERROR:There is already a certificate for %s\n", |
| 1685 | row[DB_name]); |
| 1686 | } |
| 1687 | else |
| 1688 | { |
| 1689 | rrow=TXT_DB_get_by_index(db,DB_serial,row); |
| 1690 | if (rrow != NULL) |
| 1691 | { |
| 1692 | BIO_printf(bio_err,"ERROR:Serial number %s has already been issued,\n", |
| 1693 | row[DB_serial]); |
| 1694 | BIO_printf(bio_err," check the database/serial_file for corruption\n"); |
| 1695 | } |
| 1696 | } |
| 1697 | |
| 1698 | if (rrow != NULL) |
| 1699 | { |
| 1700 | BIO_printf(bio_err, |
| 1701 | "The matching entry has the following details\n"); |
| 1702 | if (rrow[DB_type][0] == 'E') |
| 1703 | p="Expired"; |
| 1704 | else if (rrow[DB_type][0] == 'R') |
| 1705 | p="Revoked"; |
| 1706 | else if (rrow[DB_type][0] == 'V') |
| 1707 | p="Valid"; |
| 1708 | else |
| 1709 | p="\ninvalid type, Data base error\n"; |
| 1710 | BIO_printf(bio_err,"Type :%s\n",p);; |
| 1711 | if (rrow[DB_type][0] == 'R') |
| 1712 | { |
| 1713 | p=rrow[DB_exp_date]; if (p == NULL) p="undef"; |
| 1714 | BIO_printf(bio_err,"Was revoked on:%s\n",p); |
| 1715 | } |
| 1716 | p=rrow[DB_exp_date]; if (p == NULL) p="undef"; |
| 1717 | BIO_printf(bio_err,"Expires on :%s\n",p); |
| 1718 | p=rrow[DB_serial]; if (p == NULL) p="undef"; |
| 1719 | BIO_printf(bio_err,"Serial Number :%s\n",p); |
| 1720 | p=rrow[DB_file]; if (p == NULL) p="undef"; |
| 1721 | BIO_printf(bio_err,"File name :%s\n",p); |
| 1722 | p=rrow[DB_name]; if (p == NULL) p="undef"; |
| 1723 | BIO_printf(bio_err,"Subject Name :%s\n",p); |
| 1724 | ok= -1; /* This is now a 'bad' error. */ |
| 1725 | goto err; |
| 1726 | } |
| 1727 | |
| 1728 | /* We are now totaly happy, lets make and sign the certificate */ |
| 1729 | if (verbose) |
| 1730 | BIO_printf(bio_err,"Everything appears to be ok, creating and signing the certificate\n"); |
| 1731 | |
| 1732 | if ((ret=X509_new()) == NULL) goto err; |
| 1733 | ci=ret->cert_info; |
| 1734 | |
| 1735 | #ifdef X509_V3 |
| 1736 | /* Make it an X509 v3 certificate. */ |
| 1737 | if (!X509_set_version(x509,2)) goto err; |
| 1738 | #endif |
| 1739 | |
| 1740 | if (BN_to_ASN1_INTEGER(serial,ci->serialNumber) == NULL) |
| 1741 | goto err; |
| 1742 | if (!X509_set_issuer_name(ret,X509_get_subject_name(x509))) |
| 1743 | goto err; |
| 1744 | |
| 1745 | BIO_printf(bio_err,"Certificate is to be certified until "); |
Ralf S. Engelschall | 58964a4 | 1998-12-21 10:56:39 +0000 | [diff] [blame] | 1746 | if (strcmp(startdate,"today") == 0) |
| 1747 | { |
| 1748 | X509_gmtime_adj(X509_get_notBefore(ret),0); |
| 1749 | X509_gmtime_adj(X509_get_notAfter(ret),(long)60*60*24*days); |
| 1750 | } |
| 1751 | else |
| 1752 | { |
| 1753 | /*XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX*/ |
| 1754 | ASN1_UTCTIME_set_string(X509_get_notBefore(ret),startdate); |
| 1755 | } |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 1756 | ASN1_UTCTIME_print(bio_err,X509_get_notAfter(ret)); |
| 1757 | BIO_printf(bio_err," (%d days)\n",days); |
| 1758 | |
| 1759 | if (!X509_set_subject_name(ret,subject)) goto err; |
| 1760 | |
| 1761 | pktmp=X509_REQ_get_pubkey(req); |
Dr. Stephen Henson | 10061c7 | 1999-01-03 23:00:45 +0000 | [diff] [blame] | 1762 | i = X509_set_pubkey(ret,pktmp); |
| 1763 | EVP_PKEY_free(pktmp); |
| 1764 | if (!i) goto err; |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 1765 | |
| 1766 | /* Lets add the extensions, if there are any */ |
Dr. Stephen Henson | b234766 | 1999-01-26 01:19:27 +0000 | [diff] [blame] | 1767 | if (ext_sect) |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 1768 | { |
Dr. Stephen Henson | 175b094 | 1999-02-10 01:12:59 +0000 | [diff] [blame] | 1769 | X509V3_CTX ctx; |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 1770 | if (ci->version == NULL) |
| 1771 | if ((ci->version=ASN1_INTEGER_new()) == NULL) |
| 1772 | goto err; |
| 1773 | ASN1_INTEGER_set(ci->version,2); /* version 3 certificate */ |
| 1774 | |
| 1775 | /* Free the current entries if any, there should not |
| 1776 | * be any I belive */ |
| 1777 | if (ci->extensions != NULL) |
Ben Laurie | 0b3f827 | 1999-05-02 21:36:58 +0000 | [diff] [blame] | 1778 | sk_X509_EXTENSION_pop_free(ci->extensions, |
| 1779 | X509_EXTENSION_free); |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 1780 | |
Dr. Stephen Henson | b234766 | 1999-01-26 01:19:27 +0000 | [diff] [blame] | 1781 | ci->extensions = NULL; |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 1782 | |
Dr. Stephen Henson | 1d48dd0 | 1999-04-16 23:57:04 +0000 | [diff] [blame] | 1783 | X509V3_set_ctx(&ctx, x509, ret, req, NULL, 0); |
| 1784 | X509V3_set_conf_lhash(&ctx, lconf); |
Dr. Stephen Henson | 175b094 | 1999-02-10 01:12:59 +0000 | [diff] [blame] | 1785 | |
Ben Laurie | 08853ba | 1999-02-13 21:49:34 +0000 | [diff] [blame] | 1786 | if(!X509V3_EXT_add_conf(lconf, &ctx, ext_sect, ret)) goto err; |
Dr. Stephen Henson | b234766 | 1999-01-26 01:19:27 +0000 | [diff] [blame] | 1787 | |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 1788 | } |
| 1789 | |
| 1790 | |
| 1791 | if (!batch) |
| 1792 | { |
| 1793 | BIO_printf(bio_err,"Sign the certificate? [y/n]:"); |
| 1794 | BIO_flush(bio_err); |
| 1795 | buf[0]='\0'; |
| 1796 | fgets(buf,sizeof(buf)-1,stdin); |
| 1797 | if (!((buf[0] == 'y') || (buf[0] == 'Y'))) |
| 1798 | { |
| 1799 | BIO_printf(bio_err,"CERTIFICATE WILL NOT BE CERTIFIED\n"); |
| 1800 | ok=0; |
| 1801 | goto err; |
| 1802 | } |
| 1803 | } |
| 1804 | |
Ralf S. Engelschall | dfeab06 | 1998-12-21 11:00:56 +0000 | [diff] [blame] | 1805 | |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 1806 | #ifndef NO_DSA |
Dr. Stephen Henson | c35f549 | 1999-01-02 01:53:06 +0000 | [diff] [blame] | 1807 | if (pkey->type == EVP_PKEY_DSA) dgst=EVP_dss1(); |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 1808 | pktmp=X509_get_pubkey(ret); |
| 1809 | if (EVP_PKEY_missing_parameters(pktmp) && |
| 1810 | !EVP_PKEY_missing_parameters(pkey)) |
| 1811 | EVP_PKEY_copy_parameters(pktmp,pkey); |
Dr. Stephen Henson | 10061c7 | 1999-01-03 23:00:45 +0000 | [diff] [blame] | 1812 | EVP_PKEY_free(pktmp); |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 1813 | #endif |
| 1814 | |
| 1815 | if (!X509_sign(ret,pkey,dgst)) |
| 1816 | goto err; |
| 1817 | |
| 1818 | /* We now just add it to the database */ |
| 1819 | row[DB_type]=(char *)Malloc(2); |
| 1820 | |
| 1821 | tm=X509_get_notAfter(ret); |
| 1822 | row[DB_exp_date]=(char *)Malloc(tm->length+1); |
| 1823 | memcpy(row[DB_exp_date],tm->data,tm->length); |
| 1824 | row[DB_exp_date][tm->length]='\0'; |
| 1825 | |
| 1826 | row[DB_rev_date]=NULL; |
| 1827 | |
| 1828 | /* row[DB_serial] done already */ |
| 1829 | row[DB_file]=(char *)Malloc(8); |
| 1830 | /* row[DB_name] done already */ |
| 1831 | |
| 1832 | if ((row[DB_type] == NULL) || (row[DB_exp_date] == NULL) || |
| 1833 | (row[DB_file] == NULL)) |
| 1834 | { |
| 1835 | BIO_printf(bio_err,"Malloc failure\n"); |
| 1836 | goto err; |
| 1837 | } |
| 1838 | strcpy(row[DB_file],"unknown"); |
| 1839 | row[DB_type][0]='V'; |
| 1840 | row[DB_type][1]='\0'; |
| 1841 | |
| 1842 | if ((irow=(char **)Malloc(sizeof(char *)*(DB_NUMBER+1))) == NULL) |
| 1843 | { |
| 1844 | BIO_printf(bio_err,"Malloc failure\n"); |
| 1845 | goto err; |
| 1846 | } |
| 1847 | |
| 1848 | for (i=0; i<DB_NUMBER; i++) |
| 1849 | { |
| 1850 | irow[i]=row[i]; |
| 1851 | row[i]=NULL; |
| 1852 | } |
| 1853 | irow[DB_NUMBER]=NULL; |
| 1854 | |
| 1855 | if (!TXT_DB_insert(db,irow)) |
| 1856 | { |
| 1857 | BIO_printf(bio_err,"failed to update database\n"); |
| 1858 | BIO_printf(bio_err,"TXT_DB error number %ld\n",db->error); |
| 1859 | goto err; |
| 1860 | } |
| 1861 | ok=1; |
| 1862 | err: |
| 1863 | for (i=0; i<DB_NUMBER; i++) |
| 1864 | if (row[i] != NULL) Free(row[i]); |
| 1865 | |
| 1866 | if (CAname != NULL) |
| 1867 | X509_NAME_free(CAname); |
| 1868 | if (subject != NULL) |
| 1869 | X509_NAME_free(subject); |
| 1870 | if (ok <= 0) |
| 1871 | { |
| 1872 | if (ret != NULL) X509_free(ret); |
| 1873 | ret=NULL; |
| 1874 | } |
| 1875 | else |
| 1876 | *xret=ret; |
| 1877 | return(ok); |
| 1878 | } |
| 1879 | |
Ulf Möller | 6b691a5 | 1999-04-19 21:31:43 +0000 | [diff] [blame] | 1880 | static void write_new_certificate(BIO *bp, X509 *x, int output_der) |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 1881 | { |
| 1882 | char *f; |
| 1883 | char buf[256]; |
| 1884 | |
| 1885 | if (output_der) |
| 1886 | { |
| 1887 | (void)i2d_X509_bio(bp,x); |
| 1888 | return; |
| 1889 | } |
| 1890 | |
| 1891 | f=X509_NAME_oneline(X509_get_issuer_name(x),buf,256); |
| 1892 | BIO_printf(bp,"issuer :%s\n",f); |
| 1893 | |
| 1894 | f=X509_NAME_oneline(X509_get_subject_name(x),buf,256); |
| 1895 | BIO_printf(bp,"subject:%s\n",f); |
| 1896 | |
| 1897 | BIO_puts(bp,"serial :"); |
| 1898 | i2a_ASN1_INTEGER(bp,x->cert_info->serialNumber); |
| 1899 | BIO_puts(bp,"\n\n"); |
| 1900 | X509_print(bp,x); |
| 1901 | BIO_puts(bp,"\n"); |
| 1902 | PEM_write_bio_X509(bp,x); |
| 1903 | BIO_puts(bp,"\n"); |
| 1904 | } |
| 1905 | |
Ulf Möller | 6b691a5 | 1999-04-19 21:31:43 +0000 | [diff] [blame] | 1906 | static int certify_spkac(X509 **xret, char *infile, EVP_PKEY *pkey, X509 *x509, |
| 1907 | const EVP_MD *dgst, STACK *policy, TXT_DB *db, BIGNUM *serial, |
| 1908 | char *startdate, int days, char *ext_sect, LHASH *lconf, int verbose) |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 1909 | { |
| 1910 | STACK *sk=NULL; |
| 1911 | LHASH *parms=NULL; |
| 1912 | X509_REQ *req=NULL; |
| 1913 | CONF_VALUE *cv=NULL; |
| 1914 | NETSCAPE_SPKI *spki = NULL; |
| 1915 | unsigned char *spki_der = NULL,*p; |
| 1916 | X509_REQ_INFO *ri; |
| 1917 | char *type,*buf; |
| 1918 | EVP_PKEY *pktmp=NULL; |
| 1919 | X509_NAME *n=NULL; |
| 1920 | X509_NAME_ENTRY *ne=NULL; |
| 1921 | int ok= -1,i,j; |
| 1922 | long errline; |
| 1923 | int nid; |
| 1924 | |
| 1925 | /* |
| 1926 | * Load input file into a hash table. (This is just an easy |
| 1927 | * way to read and parse the file, then put it into a convenient |
| 1928 | * STACK format). |
| 1929 | */ |
| 1930 | parms=CONF_load(NULL,infile,&errline); |
| 1931 | if (parms == NULL) |
| 1932 | { |
| 1933 | BIO_printf(bio_err,"error on line %ld of %s\n",errline,infile); |
| 1934 | ERR_print_errors(bio_err); |
| 1935 | goto err; |
| 1936 | } |
| 1937 | |
| 1938 | sk=CONF_get_section(parms, "default"); |
| 1939 | if (sk_num(sk) == 0) |
| 1940 | { |
| 1941 | BIO_printf(bio_err, "no name/value pairs found in %s\n", infile); |
| 1942 | CONF_free(parms); |
| 1943 | goto err; |
| 1944 | } |
| 1945 | |
| 1946 | /* |
| 1947 | * Now create a dummy X509 request structure. We don't actually |
| 1948 | * have an X509 request, but we have many of the components |
| 1949 | * (a public key, various DN components). The idea is that we |
| 1950 | * put these components into the right X509 request structure |
| 1951 | * and we can use the same code as if you had a real X509 request. |
| 1952 | */ |
| 1953 | req=X509_REQ_new(); |
| 1954 | if (req == NULL) |
| 1955 | { |
| 1956 | ERR_print_errors(bio_err); |
| 1957 | goto err; |
| 1958 | } |
| 1959 | |
| 1960 | /* |
| 1961 | * Build up the subject name set. |
| 1962 | */ |
| 1963 | ri=req->req_info; |
| 1964 | n = ri->subject; |
| 1965 | |
| 1966 | for (i = 0; ; i++) |
| 1967 | { |
| 1968 | if ((int)sk_num(sk) <= i) break; |
| 1969 | |
| 1970 | cv=(CONF_VALUE *)sk_value(sk,i); |
| 1971 | type=cv->name; |
| 1972 | buf=cv->value; |
| 1973 | |
| 1974 | if ((nid=OBJ_txt2nid(type)) == NID_undef) |
| 1975 | { |
| 1976 | if (strcmp(type, "SPKAC") == 0) |
| 1977 | { |
| 1978 | spki_der=(unsigned char *)Malloc( |
| 1979 | strlen(cv->value)+1); |
| 1980 | if (spki_der == NULL) |
| 1981 | { |
| 1982 | BIO_printf(bio_err,"Malloc failure\n"); |
| 1983 | goto err; |
| 1984 | } |
| 1985 | j = EVP_DecodeBlock(spki_der, (unsigned char *)cv->value, |
| 1986 | strlen(cv->value)); |
| 1987 | if (j <= 0) |
| 1988 | { |
| 1989 | BIO_printf(bio_err, "Can't b64 decode SPKAC structure\n"); |
| 1990 | goto err; |
| 1991 | } |
| 1992 | |
| 1993 | p=spki_der; |
| 1994 | spki = d2i_NETSCAPE_SPKI(&spki, &p, j); |
| 1995 | Free(spki_der); |
| 1996 | spki_der = NULL; |
| 1997 | if (spki == NULL) |
| 1998 | { |
| 1999 | BIO_printf(bio_err,"unable to load Netscape SPKAC structure\n"); |
| 2000 | ERR_print_errors(bio_err); |
| 2001 | goto err; |
| 2002 | } |
| 2003 | } |
| 2004 | continue; |
| 2005 | } |
| 2006 | |
| 2007 | j=ASN1_PRINTABLE_type((unsigned char *)buf,-1); |
| 2008 | if (fix_data(nid, &j) == 0) |
| 2009 | { |
| 2010 | BIO_printf(bio_err, |
| 2011 | "invalid characters in string %s\n",buf); |
| 2012 | goto err; |
| 2013 | } |
| 2014 | |
| 2015 | if ((ne=X509_NAME_ENTRY_create_by_NID(&ne,nid,j, |
| 2016 | (unsigned char *)buf, |
| 2017 | strlen(buf))) == NULL) |
| 2018 | goto err; |
| 2019 | |
| 2020 | if (!X509_NAME_add_entry(n,ne,X509_NAME_entry_count(n),0)) |
| 2021 | goto err; |
| 2022 | } |
| 2023 | if (spki == NULL) |
| 2024 | { |
| 2025 | BIO_printf(bio_err,"Netscape SPKAC structure not found in %s\n", |
| 2026 | infile); |
| 2027 | goto err; |
| 2028 | } |
| 2029 | |
| 2030 | /* |
| 2031 | * Now extract the key from the SPKI structure. |
| 2032 | */ |
| 2033 | |
| 2034 | BIO_printf(bio_err,"Check that the SPKAC request matches the signature\n"); |
| 2035 | |
| 2036 | if ((pktmp=X509_PUBKEY_get(spki->spkac->pubkey)) == NULL) |
| 2037 | { |
| 2038 | BIO_printf(bio_err,"error unpacking SPKAC public key\n"); |
| 2039 | goto err; |
| 2040 | } |
| 2041 | |
| 2042 | j = NETSCAPE_SPKI_verify(spki, pktmp); |
| 2043 | if (j <= 0) |
| 2044 | { |
| 2045 | BIO_printf(bio_err,"signature verification failed on SPKAC public key\n"); |
| 2046 | goto err; |
| 2047 | } |
| 2048 | BIO_printf(bio_err,"Signature ok\n"); |
| 2049 | |
| 2050 | X509_REQ_set_pubkey(req,pktmp); |
Dr. Stephen Henson | 10061c7 | 1999-01-03 23:00:45 +0000 | [diff] [blame] | 2051 | EVP_PKEY_free(pktmp); |
Ralf S. Engelschall | 58964a4 | 1998-12-21 10:56:39 +0000 | [diff] [blame] | 2052 | ok=do_body(xret,pkey,x509,dgst,policy,db,serial,startdate, |
Ben Laurie | 08853ba | 1999-02-13 21:49:34 +0000 | [diff] [blame] | 2053 | days,1,verbose,req,ext_sect,lconf); |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 2054 | err: |
| 2055 | if (req != NULL) X509_REQ_free(req); |
| 2056 | if (parms != NULL) CONF_free(parms); |
| 2057 | if (spki_der != NULL) Free(spki_der); |
| 2058 | if (spki != NULL) NETSCAPE_SPKI_free(spki); |
| 2059 | if (ne != NULL) X509_NAME_ENTRY_free(ne); |
| 2060 | |
| 2061 | return(ok); |
| 2062 | } |
| 2063 | |
Ulf Möller | 6b691a5 | 1999-04-19 21:31:43 +0000 | [diff] [blame] | 2064 | static int fix_data(int nid, int *type) |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 2065 | { |
| 2066 | if (nid == NID_pkcs9_emailAddress) |
| 2067 | *type=V_ASN1_IA5STRING; |
| 2068 | if ((nid == NID_commonName) && (*type == V_ASN1_IA5STRING)) |
| 2069 | *type=V_ASN1_T61STRING; |
| 2070 | if ((nid == NID_pkcs9_challengePassword) && (*type == V_ASN1_IA5STRING)) |
| 2071 | *type=V_ASN1_T61STRING; |
| 2072 | if ((nid == NID_pkcs9_unstructuredName) && (*type == V_ASN1_T61STRING)) |
| 2073 | return(0); |
| 2074 | if (nid == NID_pkcs9_unstructuredName) |
| 2075 | *type=V_ASN1_IA5STRING; |
| 2076 | return(1); |
| 2077 | } |
| 2078 | |
Ulf Möller | 6b691a5 | 1999-04-19 21:31:43 +0000 | [diff] [blame] | 2079 | static int check_time_format(char *str) |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 2080 | { |
| 2081 | ASN1_UTCTIME tm; |
| 2082 | |
| 2083 | tm.data=(unsigned char *)str; |
| 2084 | tm.length=strlen(str); |
| 2085 | tm.type=V_ASN1_UTCTIME; |
| 2086 | return(ASN1_UTCTIME_check(&tm)); |
| 2087 | } |
| 2088 | |
Ulf Möller | 6b691a5 | 1999-04-19 21:31:43 +0000 | [diff] [blame] | 2089 | static int add_oid_section(LHASH *hconf) |
Dr. Stephen Henson | a43aa73 | 1999-02-23 00:07:46 +0000 | [diff] [blame] | 2090 | { |
| 2091 | char *p; |
| 2092 | STACK *sktmp; |
| 2093 | CONF_VALUE *cnf; |
| 2094 | int i; |
Ben Laurie | 1579940 | 1999-02-23 12:53:49 +0000 | [diff] [blame] | 2095 | if(!(p=CONF_get_string(hconf,NULL,"oid_section"))) return 1; |
| 2096 | if(!(sktmp = CONF_get_section(hconf, p))) { |
Dr. Stephen Henson | a43aa73 | 1999-02-23 00:07:46 +0000 | [diff] [blame] | 2097 | BIO_printf(bio_err, "problem loading oid section %s\n", p); |
| 2098 | return 0; |
| 2099 | } |
| 2100 | for(i = 0; i < sk_num(sktmp); i++) { |
| 2101 | cnf = (CONF_VALUE *)sk_value(sktmp, i); |
| 2102 | if(OBJ_create(cnf->value, cnf->name, cnf->name) == NID_undef) { |
| 2103 | BIO_printf(bio_err, "problem creating object %s=%s\n", |
| 2104 | cnf->name, cnf->value); |
| 2105 | return 0; |
| 2106 | } |
| 2107 | } |
| 2108 | return 1; |
| 2109 | } |
Ralf S. Engelschall | f9a2593 | 1999-04-12 11:45:14 +0000 | [diff] [blame] | 2110 | |
Ulf Möller | 6b691a5 | 1999-04-19 21:31:43 +0000 | [diff] [blame] | 2111 | static int do_revoke(X509 *x509, TXT_DB *db) |
Ralf S. Engelschall | f9a2593 | 1999-04-12 11:45:14 +0000 | [diff] [blame] | 2112 | { |
| 2113 | ASN1_UTCTIME *tm=NULL; |
| 2114 | char *row[DB_NUMBER],**rrow,**irow; |
| 2115 | int ok=-1,i; |
| 2116 | |
| 2117 | for (i=0; i<DB_NUMBER; i++) |
| 2118 | row[i]=NULL; |
| 2119 | row[DB_name]=X509_NAME_oneline(x509->cert_info->subject,NULL,0); |
| 2120 | row[DB_serial]=BN_bn2hex(ASN1_INTEGER_to_BN(x509->cert_info->serialNumber,NULL)); |
| 2121 | if ((row[DB_name] == NULL) || (row[DB_serial] == NULL)) |
| 2122 | { |
| 2123 | BIO_printf(bio_err,"Malloc failure\n"); |
| 2124 | goto err; |
| 2125 | } |
| 2126 | rrow=TXT_DB_get_by_index(db,DB_name,row); |
| 2127 | if (rrow == NULL) |
| 2128 | { |
| 2129 | BIO_printf(bio_err,"Adding Entry to DB for %s\n", row[DB_name]); |
| 2130 | |
| 2131 | /* We now just add it to the database */ |
| 2132 | row[DB_type]=(char *)Malloc(2); |
| 2133 | |
| 2134 | tm=X509_get_notAfter(x509); |
| 2135 | row[DB_exp_date]=(char *)Malloc(tm->length+1); |
| 2136 | memcpy(row[DB_exp_date],tm->data,tm->length); |
| 2137 | row[DB_exp_date][tm->length]='\0'; |
| 2138 | |
| 2139 | row[DB_rev_date]=NULL; |
| 2140 | |
| 2141 | /* row[DB_serial] done already */ |
| 2142 | row[DB_file]=(char *)Malloc(8); |
| 2143 | |
| 2144 | /* row[DB_name] done already */ |
| 2145 | |
| 2146 | if ((row[DB_type] == NULL) || (row[DB_exp_date] == NULL) || |
| 2147 | (row[DB_file] == NULL)) |
| 2148 | { |
| 2149 | BIO_printf(bio_err,"Malloc failure\n"); |
| 2150 | goto err; |
| 2151 | } |
| 2152 | strcpy(row[DB_file],"unknown"); |
| 2153 | row[DB_type][0]='V'; |
| 2154 | row[DB_type][1]='\0'; |
| 2155 | |
| 2156 | if ((irow=(char **)Malloc(sizeof(char *)*(DB_NUMBER+1))) == NULL) |
| 2157 | { |
| 2158 | BIO_printf(bio_err,"Malloc failure\n"); |
| 2159 | goto err; |
| 2160 | } |
| 2161 | |
| 2162 | for (i=0; i<DB_NUMBER; i++) |
| 2163 | { |
| 2164 | irow[i]=row[i]; |
| 2165 | row[i]=NULL; |
| 2166 | } |
| 2167 | irow[DB_NUMBER]=NULL; |
| 2168 | |
| 2169 | if (!TXT_DB_insert(db,irow)) |
| 2170 | { |
| 2171 | BIO_printf(bio_err,"failed to update database\n"); |
| 2172 | BIO_printf(bio_err,"TXT_DB error number %ld\n",db->error); |
| 2173 | goto err; |
| 2174 | } |
| 2175 | |
| 2176 | /* Revoke Certificate */ |
| 2177 | do_revoke(x509,db); |
| 2178 | |
| 2179 | ok=1; |
| 2180 | goto err; |
| 2181 | |
| 2182 | } |
| 2183 | else if (index_serial_cmp(row,rrow)) |
| 2184 | { |
| 2185 | BIO_printf(bio_err,"ERROR:no same serial number %s\n", |
| 2186 | row[DB_serial]); |
| 2187 | goto err; |
| 2188 | } |
| 2189 | else if (rrow[DB_type][0]=='R') |
| 2190 | { |
| 2191 | BIO_printf(bio_err,"ERROR:Already revoked, serial number %s\n", |
| 2192 | row[DB_serial]); |
| 2193 | goto err; |
| 2194 | } |
| 2195 | else |
| 2196 | { |
| 2197 | BIO_printf(bio_err,"Revoking Certificate %s.\n", rrow[DB_serial]); |
| 2198 | tm=X509_gmtime_adj(tm,0); |
| 2199 | rrow[DB_type][0]='R'; |
| 2200 | rrow[DB_type][1]='\0'; |
| 2201 | rrow[DB_rev_date]=(char *)Malloc(tm->length+1); |
| 2202 | memcpy(rrow[DB_rev_date],tm->data,tm->length); |
| 2203 | rrow[DB_rev_date][tm->length]='\0'; |
| 2204 | } |
| 2205 | ok=1; |
| 2206 | err: |
| 2207 | for (i=0; i<DB_NUMBER; i++) |
| 2208 | { |
| 2209 | if (row[i] != NULL) |
| 2210 | Free(row[i]); |
| 2211 | } |
| 2212 | ASN1_UTCTIME_free(tm); |
| 2213 | return(ok); |
| 2214 | } |
| 2215 | |