]> git.ipfire.org Git - thirdparty/openssl.git/blame - apps/crl2p7.c
Use p==NULL not !p (in if statements, mainly)
[thirdparty/openssl.git] / apps / crl2p7.c
CommitLineData
58964a49 1/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
d02b48c6
RE
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.
0f113f3e 7 *
d02b48c6
RE
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).
0f113f3e 14 *
d02b48c6
RE
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.
0f113f3e 21 *
d02b48c6
RE
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 :-).
0f113f3e 36 * 4. If you include any Windows specific code (or a derivative thereof) from
d02b48c6
RE
37 * the apps directory (application code) you must include an acknowledgement:
38 * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
0f113f3e 39 *
d02b48c6
RE
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.
0f113f3e 51 *
d02b48c6
RE
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
0f113f3e
MC
58/*
59 * This was written by Gordon Chaffee <chaffee@plateau.cs.berkeley.edu> and
60 * donated 'to the cause' along with lots and lots of other fixes to the
61 * library.
62 */
d02b48c6
RE
63
64#include <stdio.h>
65#include <string.h>
66#include <sys/types.h>
d02b48c6 67#include "apps.h"
ec577822
BM
68#include <openssl/err.h>
69#include <openssl/evp.h>
70#include <openssl/x509.h>
71#include <openssl/pkcs7.h>
72#include <openssl/pem.h>
73#include <openssl/objects.h>
d02b48c6 74
f73e07cf 75static int add_certs_from_file(STACK_OF(X509) *stack, char *certfile);
d02b48c6 76
7e1b7485
RS
77typedef enum OPTION_choice {
78 OPT_ERR = -1, OPT_EOF = 0, OPT_HELP,
79 OPT_INFORM, OPT_OUTFORM, OPT_IN, OPT_OUT, OPT_NOCRL, OPT_CERTFILE
80} OPTION_CHOICE;
d02b48c6 81
7e1b7485
RS
82OPTIONS crl2pkcs7_options[] = {
83 {"help", OPT_HELP, '-', "Display this summary"},
84 {"inform", OPT_INFORM, 'F', "Input format - DER or PEM"},
85 {"outform", OPT_OUTFORM, 'F', "Output format - DER or PEM"},
86 {"in", OPT_IN, '<', "Input file"},
87 {"out", OPT_OUT, '>', "Output file"},
88 {"nocrl", OPT_NOCRL, '-', "No crl to load, just certs from '-certfile'"},
89 {"certfile", OPT_CERTFILE, '<',
90 "File of chain of certs to a trusted CA; can be repeated"},
91 {NULL}
92};
667ac4ec 93
7e1b7485 94int crl2pkcs7_main(int argc, char **argv)
0f113f3e 95{
0f113f3e 96 BIO *in = NULL, *out = NULL;
0f113f3e
MC
97 PKCS7 *p7 = NULL;
98 PKCS7_SIGNED *p7s = NULL;
0f113f3e 99 STACK_OF(OPENSSL_STRING) *certflst = NULL;
0f113f3e 100 STACK_OF(X509) *cert_stack = NULL;
7e1b7485
RS
101 STACK_OF(X509_CRL) *crl_stack = NULL;
102 X509_CRL *crl = NULL;
103 char *infile = NULL, *outfile = NULL, *prog, *certfile;
104 int i = 0, informat = FORMAT_PEM, outformat = FORMAT_PEM, ret = 1, nocrl =
105 0;
106 OPTION_CHOICE o;
d02b48c6 107
7e1b7485
RS
108 prog = opt_init(argc, argv, crl2pkcs7_options);
109 while ((o = opt_next()) != OPT_EOF) {
110 switch (o) {
111 case OPT_EOF:
112 case OPT_ERR:
113 opthelp:
114 BIO_printf(bio_err, "%s: Use -help for summary.\n", prog);
115 goto end;
116 case OPT_HELP:
117 opt_help(crl2pkcs7_options);
118 ret = 0;
119 goto end;
120 case OPT_INFORM:
121 if (!opt_format(opt_arg(), OPT_FMT_PEMDER, &informat))
122 goto opthelp;
123 break;
124 case OPT_OUTFORM:
125 if (!opt_format(opt_arg(), OPT_FMT_PEMDER, &outformat))
126 goto opthelp;
127 break;
128 case OPT_IN:
129 infile = opt_arg();
130 break;
131 case OPT_OUT:
132 outfile = opt_arg();
133 break;
134 case OPT_NOCRL:
0f113f3e 135 nocrl = 1;
7e1b7485
RS
136 break;
137 case OPT_CERTFILE:
75ebbd9a
RS
138 if ((certflst == NULL)
139 && (certflst = sk_OPENSSL_STRING_new_null()) == NULL)
0f113f3e
MC
140 goto end;
141 if (!sk_OPENSSL_STRING_push(certflst, *(++argv))) {
142 sk_OPENSSL_STRING_free(certflst);
143 goto end;
144 }
0f113f3e
MC
145 break;
146 }
0f113f3e 147 }
7e1b7485
RS
148 argc = opt_num_rest();
149 argv = opt_rest();
d02b48c6 150
0f113f3e 151 if (!nocrl) {
7e1b7485
RS
152 in = bio_open_default(infile, RB(informat));
153 if (in == NULL)
154 goto end;
d02b48c6 155
0f113f3e
MC
156 if (informat == FORMAT_ASN1)
157 crl = d2i_X509_CRL_bio(in, NULL);
158 else if (informat == FORMAT_PEM)
159 crl = PEM_read_bio_X509_CRL(in, NULL, NULL, NULL);
0f113f3e
MC
160 if (crl == NULL) {
161 BIO_printf(bio_err, "unable to load CRL\n");
162 ERR_print_errors(bio_err);
163 goto end;
164 }
165 }
d02b48c6 166
0f113f3e
MC
167 if ((p7 = PKCS7_new()) == NULL)
168 goto end;
169 if ((p7s = PKCS7_SIGNED_new()) == NULL)
170 goto end;
171 p7->type = OBJ_nid2obj(NID_pkcs7_signed);
172 p7->d.sign = p7s;
173 p7s->contents->type = OBJ_nid2obj(NID_pkcs7_data);
d02b48c6 174
0f113f3e
MC
175 if (!ASN1_INTEGER_set(p7s->version, 1))
176 goto end;
177 if ((crl_stack = sk_X509_CRL_new_null()) == NULL)
178 goto end;
179 p7s->crl = crl_stack;
180 if (crl != NULL) {
181 sk_X509_CRL_push(crl_stack, crl);
182 crl = NULL; /* now part of p7 for OPENSSL_freeing */
183 }
d02b48c6 184
0f113f3e
MC
185 if ((cert_stack = sk_X509_new_null()) == NULL)
186 goto end;
187 p7s->cert = cert_stack;
9fe84296 188
0f113f3e
MC
189 if (certflst)
190 for (i = 0; i < sk_OPENSSL_STRING_num(certflst); i++) {
191 certfile = sk_OPENSSL_STRING_value(certflst, i);
192 if (add_certs_from_file(cert_stack, certfile) < 0) {
193 BIO_printf(bio_err, "error loading certificates\n");
194 ERR_print_errors(bio_err);
195 goto end;
196 }
197 }
d02b48c6 198
0f113f3e
MC
199 sk_OPENSSL_STRING_free(certflst);
200
7e1b7485
RS
201 out = bio_open_default(outfile, WB(outformat));
202 if (out == NULL)
203 goto end;
d02b48c6 204
0f113f3e
MC
205 if (outformat == FORMAT_ASN1)
206 i = i2d_PKCS7_bio(out, p7);
207 else if (outformat == FORMAT_PEM)
208 i = PEM_write_bio_PKCS7(out, p7);
0f113f3e
MC
209 if (!i) {
210 BIO_printf(bio_err, "unable to write pkcs7 object\n");
211 ERR_print_errors(bio_err);
212 goto end;
213 }
214 ret = 0;
215 end:
ca3a82c3
RS
216 BIO_free(in);
217 BIO_free_all(out);
e0e920b1 218 PKCS7_free(p7);
222561fe 219 X509_CRL_free(crl);
d02b48c6 220
7e1b7485 221 return (ret);
0f113f3e 222}
d02b48c6 223
c80fd6b2 224/*-
d02b48c6
RE
225 *----------------------------------------------------------------------
226 * int add_certs_from_file
227 *
0f113f3e 228 * Read a list of certificates to be checked from a file.
d02b48c6
RE
229 *
230 * Results:
0f113f3e 231 * number of certs added if successful, -1 if not.
d02b48c6
RE
232 *----------------------------------------------------------------------
233 */
6b691a5c 234static int add_certs_from_file(STACK_OF(X509) *stack, char *certfile)
0f113f3e
MC
235{
236 BIO *in = NULL;
237 int count = 0;
238 int ret = -1;
239 STACK_OF(X509_INFO) *sk = NULL;
240 X509_INFO *xi;
d02b48c6 241
7e1b7485
RS
242 in = BIO_new_file(certfile, "r");
243 if (in == NULL) {
0f113f3e
MC
244 BIO_printf(bio_err, "error opening the file, %s\n", certfile);
245 goto end;
246 }
d02b48c6 247
0f113f3e
MC
248 /* This loads from a file, a stack of x509/crl/pkey sets */
249 sk = PEM_X509_INFO_read_bio(in, NULL, NULL, NULL);
250 if (sk == NULL) {
251 BIO_printf(bio_err, "error reading the file, %s\n", certfile);
252 goto end;
253 }
d02b48c6 254
0f113f3e
MC
255 /* scan over it and pull out the CRL's */
256 while (sk_X509_INFO_num(sk)) {
257 xi = sk_X509_INFO_shift(sk);
258 if (xi->x509 != NULL) {
259 sk_X509_push(stack, xi->x509);
260 xi->x509 = NULL;
261 count++;
262 }
263 X509_INFO_free(xi);
264 }
d02b48c6 265
0f113f3e
MC
266 ret = count;
267 end:
268 /* never need to OPENSSL_free x */
ca3a82c3 269 BIO_free(in);
222561fe 270 sk_X509_INFO_free(sk);
0f113f3e
MC
271 return (ret);
272}