Fix s_server -WWW with -async
[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 (!nocrl) {
152         in = bio_open_default(infile, 'r', informat);
153         if (in == NULL)
154             goto end;
155
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);
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     }
166
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);
174
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     }
184
185     if ((cert_stack = sk_X509_new_null()) == NULL)
186         goto end;
187     p7s->cert = cert_stack;
188
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         }
198
199     sk_OPENSSL_STRING_free(certflst);
200
201     out = bio_open_default(outfile, 'w', outformat);
202     if (out == NULL)
203         goto end;
204
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);
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:
216     BIO_free(in);
217     BIO_free_all(out);
218     PKCS7_free(p7);
219     X509_CRL_free(crl);
220
221     return (ret);
222 }
223
224 /*-
225  *----------------------------------------------------------------------
226  * int add_certs_from_file
227  *
228  *      Read a list of certificates to be checked from a file.
229  *
230  * Results:
231  *      number of certs added if successful, -1 if not.
232  *----------------------------------------------------------------------
233  */
234 static int add_certs_from_file(STACK_OF(X509) *stack, char *certfile)
235 {
236     BIO *in = NULL;
237     int count = 0;
238     int ret = -1;
239     STACK_OF(X509_INFO) *sk = NULL;
240     X509_INFO *xi;
241
242     in = BIO_new_file(certfile, "r");
243     if (in == NULL) {
244         BIO_printf(bio_err, "error opening the file, %s\n", certfile);
245         goto end;
246     }
247
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     }
254
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     }
265
266     ret = count;
267  end:
268     /* never need to OPENSSL_free x */
269     BIO_free(in);
270     sk_X509_INFO_free(sk);
271     return (ret);
272 }