Restore previous behaviour of only running one algorithm when -evp alg is used.
[openssl.git] / apps / crl2p7.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 /*
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  */
63
64 #include <stdio.h>
65 #include <string.h>
66 #include <sys/types.h>
67 #include "apps.h"
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>
74
75 static int add_certs_from_file(STACK_OF(X509) *stack, char *certfile);
76
77 typedef 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;
81
82 OPTIONS 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 };
93
94 int crl2pkcs7_main(int argc, char **argv)
95 {
96     BIO *in = NULL, *out = NULL;
97     PKCS7 *p7 = NULL;
98     PKCS7_SIGNED *p7s = NULL;
99     STACK_OF(OPENSSL_STRING) *certflst = NULL;
100     STACK_OF(X509) *cert_stack = NULL;
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;
107
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:
135             nocrl = 1;
136             break;
137         case OPT_CERTFILE:
138             if ((certflst == NULL)
139                 && (certflst = sk_OPENSSL_STRING_new_null()) == NULL)
140                 goto end;
141             if (!sk_OPENSSL_STRING_push(certflst, *(++argv))) {
142                 sk_OPENSSL_STRING_free(certflst);
143                 goto end;
144             }
145             break;
146         }
147     }
148     argc = opt_num_rest();
149     argv = opt_rest();
150
151     if (!app_load_modules(NULL))
152         goto end;
153
154     if (!nocrl) {
155         in = bio_open_default(infile, RB(informat));
156         if (in == NULL)
157             goto end;
158
159         if (informat == FORMAT_ASN1)
160             crl = d2i_X509_CRL_bio(in, NULL);
161         else if (informat == FORMAT_PEM)
162             crl = PEM_read_bio_X509_CRL(in, NULL, NULL, NULL);
163         if (crl == NULL) {
164             BIO_printf(bio_err, "unable to load CRL\n");
165             ERR_print_errors(bio_err);
166             goto end;
167         }
168     }
169
170     if ((p7 = PKCS7_new()) == NULL)
171         goto end;
172     if ((p7s = PKCS7_SIGNED_new()) == NULL)
173         goto end;
174     p7->type = OBJ_nid2obj(NID_pkcs7_signed);
175     p7->d.sign = p7s;
176     p7s->contents->type = OBJ_nid2obj(NID_pkcs7_data);
177
178     if (!ASN1_INTEGER_set(p7s->version, 1))
179         goto end;
180     if ((crl_stack = sk_X509_CRL_new_null()) == NULL)
181         goto end;
182     p7s->crl = crl_stack;
183     if (crl != NULL) {
184         sk_X509_CRL_push(crl_stack, crl);
185         crl = NULL;             /* now part of p7 for OPENSSL_freeing */
186     }
187
188     if ((cert_stack = sk_X509_new_null()) == NULL)
189         goto end;
190     p7s->cert = cert_stack;
191
192     if (certflst)
193         for (i = 0; i < sk_OPENSSL_STRING_num(certflst); i++) {
194             certfile = sk_OPENSSL_STRING_value(certflst, i);
195             if (add_certs_from_file(cert_stack, certfile) < 0) {
196                 BIO_printf(bio_err, "error loading certificates\n");
197                 ERR_print_errors(bio_err);
198                 goto end;
199             }
200         }
201
202     sk_OPENSSL_STRING_free(certflst);
203
204     out = bio_open_default(outfile, WB(outformat));
205     if (out == NULL)
206         goto end;
207
208     if (outformat == FORMAT_ASN1)
209         i = i2d_PKCS7_bio(out, p7);
210     else if (outformat == FORMAT_PEM)
211         i = PEM_write_bio_PKCS7(out, p7);
212     if (!i) {
213         BIO_printf(bio_err, "unable to write pkcs7 object\n");
214         ERR_print_errors(bio_err);
215         goto end;
216     }
217     ret = 0;
218  end:
219     BIO_free(in);
220     BIO_free_all(out);
221     PKCS7_free(p7);
222     X509_CRL_free(crl);
223
224     return (ret);
225 }
226
227 /*-
228  *----------------------------------------------------------------------
229  * int add_certs_from_file
230  *
231  *      Read a list of certificates to be checked from a file.
232  *
233  * Results:
234  *      number of certs added if successful, -1 if not.
235  *----------------------------------------------------------------------
236  */
237 static int add_certs_from_file(STACK_OF(X509) *stack, char *certfile)
238 {
239     BIO *in = NULL;
240     int count = 0;
241     int ret = -1;
242     STACK_OF(X509_INFO) *sk = NULL;
243     X509_INFO *xi;
244
245     in = BIO_new_file(certfile, "r");
246     if (in == NULL) {
247         BIO_printf(bio_err, "error opening the file, %s\n", certfile);
248         goto end;
249     }
250
251     /* This loads from a file, a stack of x509/crl/pkey sets */
252     sk = PEM_X509_INFO_read_bio(in, NULL, NULL, NULL);
253     if (sk == NULL) {
254         BIO_printf(bio_err, "error reading the file, %s\n", certfile);
255         goto end;
256     }
257
258     /* scan over it and pull out the CRL's */
259     while (sk_X509_INFO_num(sk)) {
260         xi = sk_X509_INFO_shift(sk);
261         if (xi->x509 != NULL) {
262             sk_X509_push(stack, xi->x509);
263             xi->x509 = NULL;
264             count++;
265         }
266         X509_INFO_free(xi);
267     }
268
269     ret = count;
270  end:
271     /* never need to OPENSSL_free x */
272     BIO_free(in);
273     sk_X509_INFO_free(sk);
274     return (ret);
275 }