]> git.ipfire.org Git - thirdparty/openssl.git/blob - apps/crl.c
Restore module loading
[thirdparty/openssl.git] / apps / crl.c
1 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
2 * All rights reserved.
3 *
4 * This package is an SSL implementation written
5 * by Eric Young (eay@cryptsoft.com).
6 * The implementation was written so as to conform with Netscapes SSL.
7 *
8 * This library is free for commercial and non-commercial use as long as
9 * the following conditions are aheared to. The following conditions
10 * apply to all code found in this distribution, be it the RC4, RSA,
11 * lhash, DES, etc., code; not just the SSL code. The SSL documentation
12 * included with this distribution is covered by the same copyright terms
13 * except that the holder is Tim Hudson (tjh@cryptsoft.com).
14 *
15 * Copyright remains Eric Young's, and as such any Copyright notices in
16 * the code are not to be removed.
17 * If this package is used in a product, Eric Young should be given attribution
18 * as the author of the parts of the library used.
19 * This can be in the form of a textual message at program startup or
20 * in documentation (online or textual) provided with the package.
21 *
22 * Redistribution and use in source and binary forms, with or without
23 * modification, are permitted provided that the following conditions
24 * are met:
25 * 1. Redistributions of source code must retain the copyright
26 * notice, this list of conditions and the following disclaimer.
27 * 2. Redistributions in binary form must reproduce the above copyright
28 * notice, this list of conditions and the following disclaimer in the
29 * documentation and/or other materials provided with the distribution.
30 * 3. All advertising materials mentioning features or use of this software
31 * must display the following acknowledgement:
32 * "This product includes cryptographic software written by
33 * Eric Young (eay@cryptsoft.com)"
34 * The word 'cryptographic' can be left out if the rouines from the library
35 * being used are not cryptographic related :-).
36 * 4. If you include any Windows specific code (or a derivative thereof) from
37 * the apps directory (application code) you must include an acknowledgement:
38 * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
39 *
40 * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
41 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
42 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
43 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
44 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
45 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
46 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
47 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
48 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
49 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
50 * SUCH DAMAGE.
51 *
52 * The licence and distribution terms for any publically available version or
53 * derivative of this code cannot be changed. i.e. this code cannot simply be
54 * copied and put under another distribution licence
55 * [including the GNU Public Licence.]
56 */
57
58 #include <stdio.h>
59 #include <stdlib.h>
60 #include <string.h>
61 #include "apps.h"
62 #include <openssl/bio.h>
63 #include <openssl/err.h>
64 #include <openssl/x509.h>
65 #include <openssl/x509v3.h>
66 #include <openssl/pem.h>
67
68 typedef enum OPTION_choice {
69 OPT_ERR = -1, OPT_EOF = 0, OPT_HELP,
70 OPT_INFORM, OPT_IN, OPT_OUTFORM, OPT_OUT, OPT_KEYFORM, OPT_KEY,
71 OPT_ISSUER, OPT_LASTUPDATE, OPT_NEXTUPDATE, OPT_FINGERPRINT,
72 OPT_CRLNUMBER, OPT_BADSIG, OPT_GENDELTA, OPT_CAPATH, OPT_CAFILE,
73 OPT_VERIFY, OPT_TEXT, OPT_HASH, OPT_HASH_OLD, OPT_NOOUT,
74 OPT_NAMEOPT, OPT_MD
75 } OPTION_CHOICE;
76
77 OPTIONS crl_options[] = {
78 {"help", OPT_HELP, '-', "Display this summary"},
79 {"inform", OPT_INFORM, 'F', "Input format; default PEM"},
80 {"in", OPT_IN, '<', "Input file - default stdin"},
81 {"outform", OPT_OUTFORM, 'F', "Output format - default PEM"},
82 {"out", OPT_OUT, '>', "output file - default stdout"},
83 {"keyform", OPT_KEYFORM, 'F'},
84 {"key", OPT_KEY, '<'},
85 {"issuer", OPT_ISSUER, '-', "Print issuer DN"},
86 {"lastupdate", OPT_LASTUPDATE, '-', "Set lastUpdate field"},
87 {"nextupdate", OPT_NEXTUPDATE, '-', "Set nextUpdate field"},
88 {"noout", OPT_NOOUT, '-', "No CRL output"},
89 {"fingerprint", OPT_FINGERPRINT, '-', "Print the crl fingerprint"},
90 {"crlnumber", OPT_CRLNUMBER, '-', "Print CRL number"},
91 {"badsig", OPT_BADSIG, '-'},
92 {"gendelta", OPT_GENDELTA, '<'},
93 {"CApath", OPT_CAPATH, '/', "Verify CRL using certificates in dir"},
94 {"CAfile", OPT_CAFILE, '<', "Verify CRL using certificates in file name"},
95 {"verify", OPT_VERIFY, '-'},
96 {"text", OPT_TEXT, '-', "Print out a text format version"},
97 {"hash", OPT_HASH, '-', "Print hash value"},
98 #ifndef OPENSSL_NO_MD5
99 {"hash_old", OPT_HASH_OLD, '-', "Print old-style (MD5) hash value"},
100 #endif
101 {"nameopt", OPT_NAMEOPT, 's', "Various certificate name options"},
102 {"", OPT_MD, '-', "Any supported digest"},
103 {NULL}
104 };
105
106 int crl_main(int argc, char **argv)
107 {
108 X509_CRL *x = NULL;
109 BIO *out = NULL;
110 X509_STORE *store = NULL;
111 X509_STORE_CTX ctx;
112 X509_LOOKUP *lookup = NULL;
113 X509_OBJECT xobj;
114 EVP_PKEY *pkey;
115 const EVP_MD *digest = EVP_sha1();
116 unsigned long nmflag = 0;
117 char *infile = NULL, *outfile = NULL, *crldiff = NULL, *keyfile = NULL;
118 char *CAfile = NULL, *CApath = NULL, *prog;
119 OPTION_CHOICE o;
120 int hash = 0, issuer = 0, lastupdate = 0, nextupdate = 0, noout =
121 0, text = 0;
122 int informat = FORMAT_PEM, outformat = FORMAT_PEM, keyformat = FORMAT_PEM;
123 int ret = 1, num = 0, badsig = 0, fingerprint = 0, crlnumber =
124 0, i, do_ver = 0;
125 #ifndef OPENSSL_NO_MD5
126 int hash_old = 0;
127 #endif
128
129 prog = opt_init(argc, argv, crl_options);
130 while ((o = opt_next()) != OPT_EOF) {
131 switch (o) {
132 case OPT_EOF:
133 case OPT_ERR:
134 opthelp:
135 BIO_printf(bio_err, "%s: Use -help for summary.\n", prog);
136 goto end;
137 case OPT_HELP:
138 opt_help(crl_options);
139 ret = 0;
140 goto end;
141 case OPT_INFORM:
142 if (!opt_format(opt_arg(), OPT_FMT_PEMDER, &informat))
143 goto opthelp;
144 break;
145 case OPT_IN:
146 infile = opt_arg();
147 break;
148 case OPT_OUTFORM:
149 if (!opt_format(opt_arg(), OPT_FMT_PEMDER, &outformat))
150 goto opthelp;
151 break;
152 case OPT_OUT:
153 outfile = opt_arg();
154 break;
155 case OPT_KEYFORM:
156 if (!opt_format(opt_arg(), OPT_FMT_PEMDER, &keyformat))
157 goto opthelp;
158 break;
159 case OPT_KEY:
160 keyfile = opt_arg();
161 break;
162 case OPT_GENDELTA:
163 crldiff = opt_arg();
164 break;
165 case OPT_CAPATH:
166 CApath = opt_arg();
167 do_ver = 1;
168 break;
169 case OPT_CAFILE:
170 CAfile = opt_arg();
171 do_ver = 1;
172 break;
173 #ifndef OPENSSL_NO_MD5
174 case OPT_HASH_OLD:
175 hash_old = ++num;
176 break;
177 #endif
178 case OPT_VERIFY:
179 do_ver = 1;
180 break;
181 case OPT_TEXT:
182 text = 1;
183 break;
184 case OPT_HASH:
185 hash = ++num;
186 break;
187 case OPT_ISSUER:
188 issuer = ++num;
189 break;
190 case OPT_LASTUPDATE:
191 lastupdate = ++num;
192 break;
193 case OPT_NEXTUPDATE:
194 nextupdate = ++num;
195 break;
196 case OPT_NOOUT:
197 noout = ++num;
198 break;
199 case OPT_FINGERPRINT:
200 fingerprint = ++num;
201 break;
202 case OPT_CRLNUMBER:
203 crlnumber = ++num;
204 break;
205 case OPT_BADSIG:
206 badsig = 1;
207 break;
208 case OPT_NAMEOPT:
209 if (!set_name_ex(&nmflag, opt_arg()))
210 goto opthelp;
211 break;
212 case OPT_MD:
213 if (!opt_md(opt_unknown(), &digest))
214 goto opthelp;
215 }
216 }
217 argc = opt_num_rest();
218 argv = opt_rest();
219
220 if (!app_load_modules(NULL))
221 goto end;
222
223 x = load_crl(infile, informat);
224 if (x == NULL)
225 goto end;
226
227 if (do_ver) {
228 if ((store = setup_verify(CAfile, CApath)) == NULL)
229 goto end;
230 lookup = X509_STORE_add_lookup(store, X509_LOOKUP_file());
231 if (lookup == NULL)
232 goto end;
233 if (!X509_STORE_CTX_init(&ctx, store, NULL, NULL)) {
234 BIO_printf(bio_err, "Error initialising X509 store\n");
235 goto end;
236 }
237
238 i = X509_STORE_get_by_subject(&ctx, X509_LU_X509,
239 X509_CRL_get_issuer(x), &xobj);
240 if (i <= 0) {
241 BIO_printf(bio_err, "Error getting CRL issuer certificate\n");
242 goto end;
243 }
244 pkey = X509_get_pubkey(xobj.data.x509);
245 X509_OBJECT_free_contents(&xobj);
246 if (!pkey) {
247 BIO_printf(bio_err, "Error getting CRL issuer public key\n");
248 goto end;
249 }
250 i = X509_CRL_verify(x, pkey);
251 EVP_PKEY_free(pkey);
252 if (i < 0)
253 goto end;
254 if (i == 0)
255 BIO_printf(bio_err, "verify failure\n");
256 else
257 BIO_printf(bio_err, "verify OK\n");
258 }
259
260 if (crldiff) {
261 X509_CRL *newcrl, *delta;
262 if (!keyfile) {
263 BIO_puts(bio_err, "Missing CRL signing key\n");
264 goto end;
265 }
266 newcrl = load_crl(crldiff, informat);
267 if (!newcrl)
268 goto end;
269 pkey = load_key(keyfile, keyformat, 0, NULL, NULL, "CRL signing key");
270 if (!pkey) {
271 X509_CRL_free(newcrl);
272 goto end;
273 }
274 delta = X509_CRL_diff(x, newcrl, pkey, digest, 0);
275 X509_CRL_free(newcrl);
276 EVP_PKEY_free(pkey);
277 if (delta) {
278 X509_CRL_free(x);
279 x = delta;
280 } else {
281 BIO_puts(bio_err, "Error creating delta CRL\n");
282 goto end;
283 }
284 }
285
286 if (num) {
287 for (i = 1; i <= num; i++) {
288 if (issuer == i) {
289 print_name(bio_out, "issuer=", X509_CRL_get_issuer(x),
290 nmflag);
291 }
292 if (crlnumber == i) {
293 ASN1_INTEGER *crlnum;
294 crlnum = X509_CRL_get_ext_d2i(x, NID_crl_number, NULL, NULL);
295 BIO_printf(bio_out, "crlNumber=");
296 if (crlnum) {
297 i2a_ASN1_INTEGER(bio_out, crlnum);
298 ASN1_INTEGER_free(crlnum);
299 } else
300 BIO_puts(bio_out, "<NONE>");
301 BIO_printf(bio_out, "\n");
302 }
303 if (hash == i) {
304 BIO_printf(bio_out, "%08lx\n",
305 X509_NAME_hash(X509_CRL_get_issuer(x)));
306 }
307 #ifndef OPENSSL_NO_MD5
308 if (hash_old == i) {
309 BIO_printf(bio_out, "%08lx\n",
310 X509_NAME_hash_old(X509_CRL_get_issuer(x)));
311 }
312 #endif
313 if (lastupdate == i) {
314 BIO_printf(bio_out, "lastUpdate=");
315 ASN1_TIME_print(bio_out, X509_CRL_get_lastUpdate(x));
316 BIO_printf(bio_out, "\n");
317 }
318 if (nextupdate == i) {
319 BIO_printf(bio_out, "nextUpdate=");
320 if (X509_CRL_get_nextUpdate(x))
321 ASN1_TIME_print(bio_out, X509_CRL_get_nextUpdate(x));
322 else
323 BIO_printf(bio_out, "NONE");
324 BIO_printf(bio_out, "\n");
325 }
326 if (fingerprint == i) {
327 int j;
328 unsigned int n;
329 unsigned char md[EVP_MAX_MD_SIZE];
330
331 if (!X509_CRL_digest(x, digest, md, &n)) {
332 BIO_printf(bio_err, "out of memory\n");
333 goto end;
334 }
335 BIO_printf(bio_out, "%s Fingerprint=",
336 OBJ_nid2sn(EVP_MD_type(digest)));
337 for (j = 0; j < (int)n; j++) {
338 BIO_printf(bio_out, "%02X%c", md[j], (j + 1 == (int)n)
339 ? '\n' : ':');
340 }
341 }
342 }
343 }
344 out = bio_open_default(outfile, "w");
345 if (out == NULL)
346 goto end;
347
348 if (text)
349 X509_CRL_print(out, x);
350
351 if (noout) {
352 ret = 0;
353 goto end;
354 }
355
356 if (badsig)
357 x->signature->data[x->signature->length - 1] ^= 0x1;
358
359 if (outformat == FORMAT_ASN1)
360 i = (int)i2d_X509_CRL_bio(out, x);
361 else
362 i = PEM_write_bio_X509_CRL(out, x);
363 if (!i) {
364 BIO_printf(bio_err, "unable to write CRL\n");
365 goto end;
366 }
367 ret = 0;
368
369 end:
370 if (ret != 0)
371 ERR_print_errors(bio_err);
372 BIO_free_all(out);
373 X509_CRL_free(x);
374 if (store) {
375 X509_STORE_CTX_cleanup(&ctx);
376 X509_STORE_free(store);
377 }
378 return (ret);
379 }