Use bio_err not stderr in apps.
[openssl.git] / apps / verify.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 static int cb(int ok, X509_STORE_CTX *ctx);
69 static int check(X509_STORE *ctx, char *file,
70                  STACK_OF(X509) *uchain, STACK_OF(X509) *tchain,
71                  STACK_OF(X509_CRL) *crls, ENGINE *e, int show_chain);
72 static int v_verbose = 0, vflags = 0;
73
74 typedef enum OPTION_choice {
75     OPT_ERR = -1, OPT_EOF = 0, OPT_HELP,
76     OPT_ENGINE, OPT_CAPATH, OPT_CAFILE, OPT_UNTRUSTED, OPT_TRUSTED,
77     OPT_CRLFILE, OPT_CRL_DOWNLOAD, OPT_SHOW_CHAIN,
78     OPT_V_ENUM,
79     OPT_VERBOSE
80 } OPTION_CHOICE;
81
82 OPTIONS verify_options[] = {
83     {OPT_HELP_STR, 1, '-', "Usage: %s [options] cert.pem...\n"},
84     {OPT_HELP_STR, 1, '-', "Valid options are:\n"},
85     {"help", OPT_HELP, '-', "Display this summary"},
86     {"verbose", OPT_VERBOSE, '-'},
87     {"CApath", OPT_CAPATH, '/'},
88     {"CAfile", OPT_CAFILE, '<'},
89     {"untrusted", OPT_UNTRUSTED, '<'},
90     {"trusted", OPT_TRUSTED, '<'},
91     {"CRLfile", OPT_CRLFILE, '<'},
92     {"crl_download", OPT_CRL_DOWNLOAD, '-'},
93     {"show_chain", OPT_SHOW_CHAIN, '-'},
94     OPT_V_OPTIONS,
95 #ifndef OPENSSL_NO_ENGINE
96     {"engine", OPT_ENGINE, 's', "Use engine, possibly a hardware device"},
97 #endif
98     {NULL}
99 };
100
101 int verify_main(int argc, char **argv)
102 {
103     ENGINE *e = NULL;
104     STACK_OF(X509) *untrusted = NULL, *trusted = NULL;
105     STACK_OF(X509_CRL) *crls = NULL;
106     X509_STORE *store = NULL;
107     X509_VERIFY_PARAM *vpm = NULL;
108     char *prog, *CApath = NULL, *CAfile = NULL;
109     char *untfile = NULL, *trustfile = NULL, *crlfile = NULL;
110     int vpmtouched = 0, crl_download = 0, show_chain = 0, i = 0, ret = 1;
111     OPTION_CHOICE o;
112
113     if ((vpm = X509_VERIFY_PARAM_new()) == NULL)
114         goto end;
115
116     prog = opt_init(argc, argv, verify_options);
117     while ((o = opt_next()) != OPT_EOF) {
118         switch (o) {
119         case OPT_EOF:
120         case OPT_ERR:
121             BIO_printf(bio_err, "%s: Use -help for summary.\n", prog);
122             goto end;
123         case OPT_HELP:
124             opt_help(verify_options);
125             BIO_printf(bio_err, "Recognized usages:\n");
126             for (i = 0; i < X509_PURPOSE_get_count(); i++) {
127                 X509_PURPOSE *ptmp;
128                 ptmp = X509_PURPOSE_get0(i);
129                 BIO_printf(bio_err, "\t%-10s\t%s\n",
130                         X509_PURPOSE_get0_sname(ptmp),
131                         X509_PURPOSE_get0_name(ptmp));
132             }
133
134             BIO_printf(bio_err, "Recognized verify names:\n");
135             for (i = 0; i < X509_VERIFY_PARAM_get_count(); i++) {
136                 const X509_VERIFY_PARAM *vptmp;
137                 vptmp = X509_VERIFY_PARAM_get0(i);
138                 BIO_printf(bio_err, "\t%-10s\n",
139                         X509_VERIFY_PARAM_get0_name(vptmp));
140             }
141             ret = 0;
142             goto end;
143         case OPT_V_CASES:
144             if (!opt_verify(o, vpm))
145                 goto end;
146             vpmtouched++;
147             break;
148         case OPT_CAPATH:
149             CApath = opt_arg();
150             break;
151         case OPT_CAFILE:
152             CAfile = opt_arg();
153             break;
154         case OPT_UNTRUSTED:
155             untfile = opt_arg();
156             break;
157         case OPT_TRUSTED:
158             trustfile = opt_arg();
159             break;
160         case OPT_CRLFILE:
161             crlfile = opt_arg();
162             break;
163         case OPT_CRL_DOWNLOAD:
164             crl_download = 1;
165             break;
166         case OPT_SHOW_CHAIN:
167             show_chain = 1;
168             break;
169         case OPT_ENGINE:
170             e = setup_engine(opt_arg(), 0);
171             break;
172         case OPT_VERBOSE:
173             v_verbose = 1;
174             break;
175         }
176     }
177     argc = opt_num_rest();
178     argv = opt_rest();
179
180     if (!app_load_modules(NULL))
181         goto end;
182
183     if ((store = setup_verify(CAfile, CApath)) == NULL)
184         goto end;
185     X509_STORE_set_verify_cb(store, cb);
186
187     if (vpmtouched)
188         X509_STORE_set1_param(store, vpm);
189
190     ERR_clear_error();
191
192     if (untfile) {
193         untrusted = load_certs(untfile, FORMAT_PEM,
194                                NULL, e, "untrusted certificates");
195         if (!untrusted)
196             goto end;
197     }
198
199     if (trustfile) {
200         trusted = load_certs(trustfile, FORMAT_PEM,
201                              NULL, e, "trusted certificates");
202         if (!trusted)
203             goto end;
204     }
205
206     if (crlfile) {
207         crls = load_crls(crlfile, FORMAT_PEM, NULL, e, "other CRLs");
208         if (!crls)
209             goto end;
210     }
211
212     if (crl_download)
213         store_setup_crl_download(store);
214
215     ret = 0;
216     if (argc < 1) {
217         if (check(store, NULL, untrusted, trusted, crls, e, show_chain) != 1)
218             ret = -1;
219     } else {
220         for (i = 0; i < argc; i++)
221             if (check(store, argv[i], untrusted, trusted, crls, e,
222                       show_chain) != 1)
223                 ret = -1;
224     }
225
226  end:
227     X509_VERIFY_PARAM_free(vpm);
228     X509_STORE_free(store);
229     sk_X509_pop_free(untrusted, X509_free);
230     sk_X509_pop_free(trusted, X509_free);
231     sk_X509_CRL_pop_free(crls, X509_CRL_free);
232     return (ret < 0 ? 2 : ret);
233 }
234
235 static int check(X509_STORE *ctx, char *file,
236                  STACK_OF(X509) *uchain, STACK_OF(X509) *tchain,
237                  STACK_OF(X509_CRL) *crls, ENGINE *e, int show_chain)
238 {
239     X509 *x = NULL;
240     int i = 0, ret = 0;
241     X509_STORE_CTX *csc;
242     STACK_OF(X509) *chain = NULL;
243
244     x = load_cert(file, FORMAT_PEM, NULL, e, "certificate file");
245     if (x == NULL)
246         goto end;
247     printf("%s: ", (file == NULL) ? "stdin" : file);
248
249     csc = X509_STORE_CTX_new();
250     if (csc == NULL) {
251         ERR_print_errors(bio_err);
252         goto end;
253     }
254     X509_STORE_set_flags(ctx, vflags);
255     if (!X509_STORE_CTX_init(csc, ctx, x, uchain)) {
256         ERR_print_errors(bio_err);
257         goto end;
258     }
259     if (tchain)
260         X509_STORE_CTX_trusted_stack(csc, tchain);
261     if (crls)
262         X509_STORE_CTX_set0_crls(csc, crls);
263     i = X509_verify_cert(csc);
264     if (i > 0 && show_chain)
265         chain = X509_STORE_CTX_get1_chain(csc);
266     X509_STORE_CTX_free(csc);
267
268     ret = 0;
269  end:
270     if (i > 0) {
271         printf("OK\n");
272         ret = 1;
273     } else
274         ERR_print_errors(bio_err);
275     if (chain) {
276         printf("Chain:\n");
277         for (i = 0; i < sk_X509_num(chain); i++) {
278             X509 *cert = sk_X509_value(chain, i);
279             printf("depth=%d: ", i);
280             X509_NAME_print_ex_fp(stdout,
281                                   X509_get_subject_name(cert),
282                                   0, XN_FLAG_ONELINE);
283             printf("\n");
284         }
285         sk_X509_pop_free(chain, X509_free);
286     }
287     X509_free(x);
288
289     return (ret);
290 }
291
292 static int cb(int ok, X509_STORE_CTX *ctx)
293 {
294     int cert_error = X509_STORE_CTX_get_error(ctx);
295     X509 *current_cert = X509_STORE_CTX_get_current_cert(ctx);
296
297     if (!ok) {
298         if (current_cert) {
299             X509_NAME_print_ex(bio_err,
300                             X509_get_subject_name(current_cert),
301                             0, XN_FLAG_ONELINE);
302             BIO_printf(bio_err, "\n");
303         }
304         BIO_printf(bio_err, "%serror %d at %d depth lookup:%s\n",
305                X509_STORE_CTX_get0_parent_ctx(ctx) ? "[CRL path]" : "",
306                cert_error,
307                X509_STORE_CTX_get_error_depth(ctx),
308                X509_verify_cert_error_string(cert_error));
309         switch (cert_error) {
310         case X509_V_ERR_NO_EXPLICIT_POLICY:
311             policies_print(ctx);
312         case X509_V_ERR_CERT_HAS_EXPIRED:
313
314             /*
315              * since we are just checking the certificates, it is ok if they
316              * are self signed. But we should still warn the user.
317              */
318         case X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT:
319             /* Continue after extension errors too */
320         case X509_V_ERR_INVALID_CA:
321         case X509_V_ERR_INVALID_NON_CA:
322         case X509_V_ERR_PATH_LENGTH_EXCEEDED:
323         case X509_V_ERR_INVALID_PURPOSE:
324         case X509_V_ERR_CRL_HAS_EXPIRED:
325         case X509_V_ERR_CRL_NOT_YET_VALID:
326         case X509_V_ERR_UNHANDLED_CRITICAL_EXTENSION:
327             ok = 1;
328         }
329
330         return ok;
331
332     }
333     if (cert_error == X509_V_OK && ok == 2)
334         policies_print(ctx);
335     if (!v_verbose)
336         ERR_clear_error();
337     return (ok);
338 }