Add trust setting support to the verify code. It now checks the
[openssl.git] / apps / verify.c
1 /* apps/verify.c */
2 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3  * All rights reserved.
4  *
5  * This package is an SSL implementation written
6  * by Eric Young (eay@cryptsoft.com).
7  * The implementation was written so as to conform with Netscapes SSL.
8  * 
9  * This library is free for commercial and non-commercial use as long as
10  * the following conditions are aheared to.  The following conditions
11  * apply to all code found in this distribution, be it the RC4, RSA,
12  * lhash, DES, etc., code; not just the SSL code.  The SSL documentation
13  * included with this distribution is covered by the same copyright terms
14  * except that the holder is Tim Hudson (tjh@cryptsoft.com).
15  * 
16  * Copyright remains Eric Young's, and as such any Copyright notices in
17  * the code are not to be removed.
18  * If this package is used in a product, Eric Young should be given attribution
19  * as the author of the parts of the library used.
20  * This can be in the form of a textual message at program startup or
21  * in documentation (online or textual) provided with the package.
22  * 
23  * Redistribution and use in source and binary forms, with or without
24  * modification, are permitted provided that the following conditions
25  * are met:
26  * 1. Redistributions of source code must retain the copyright
27  *    notice, this list of conditions and the following disclaimer.
28  * 2. Redistributions in binary form must reproduce the above copyright
29  *    notice, this list of conditions and the following disclaimer in the
30  *    documentation and/or other materials provided with the distribution.
31  * 3. All advertising materials mentioning features or use of this software
32  *    must display the following acknowledgement:
33  *    "This product includes cryptographic software written by
34  *     Eric Young (eay@cryptsoft.com)"
35  *    The word 'cryptographic' can be left out if the rouines from the library
36  *    being used are not cryptographic related :-).
37  * 4. If you include any Windows specific code (or a derivative thereof) from 
38  *    the apps directory (application code) you must include an acknowledgement:
39  *    "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
40  * 
41  * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
42  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
43  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
44  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
45  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
46  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
47  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
48  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
49  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
50  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
51  * SUCH DAMAGE.
52  * 
53  * The licence and distribution terms for any publically available version or
54  * derivative of this code cannot be changed.  i.e. this code cannot simply be
55  * copied and put under another distribution licence
56  * [including the GNU Public Licence.]
57  */
58
59 #include <stdio.h>
60 #include <stdlib.h>
61 #include <string.h>
62 #include "apps.h"
63 #include <openssl/bio.h>
64 #include <openssl/err.h>
65 #include <openssl/x509.h>
66 #include <openssl/x509v3.h>
67 #include <openssl/pem.h>
68
69 #undef PROG
70 #define PROG    verify_main
71
72 static int MS_CALLBACK cb(int ok, X509_STORE_CTX *ctx);
73 static int check(X509_STORE *ctx,char *file, STACK_OF(X509)*other, int purpose);
74 static STACK_OF(X509) *load_untrusted(char *file);
75 static int v_verbose=0;
76
77 int MAIN(int argc, char **argv)
78         {
79         int i,ret=1;
80         int purpose = -1;
81         char *CApath=NULL,*CAfile=NULL;
82         char *untfile = NULL;
83         STACK_OF(X509) *untrusted = NULL;
84         X509_STORE *cert_ctx=NULL;
85         X509_LOOKUP *lookup=NULL;
86
87         X509_PURPOSE_add_standard();
88         X509_TRUST_add_standard();
89         X509V3_add_standard_extensions();
90         cert_ctx=X509_STORE_new();
91         if (cert_ctx == NULL) goto end;
92         X509_STORE_set_verify_cb_func(cert_ctx,cb);
93
94         ERR_load_crypto_strings();
95
96         apps_startup();
97
98         if (bio_err == NULL)
99                 if ((bio_err=BIO_new(BIO_s_file())) != NULL)
100                         BIO_set_fp(bio_err,stderr,BIO_NOCLOSE|BIO_FP_TEXT);
101
102         argc--;
103         argv++;
104         for (;;)
105                 {
106                 if (argc >= 1)
107                         {
108                         if (strcmp(*argv,"-CApath") == 0)
109                                 {
110                                 if (argc-- < 1) goto end;
111                                 CApath= *(++argv);
112                                 }
113                         else if (strcmp(*argv,"-CAfile") == 0)
114                                 {
115                                 if (argc-- < 1) goto end;
116                                 CAfile= *(++argv);
117                                 }
118                         else if (strcmp(*argv,"-purpose") == 0)
119                                 {
120                                 X509_PURPOSE *xptmp;
121                                 if (argc-- < 1) goto end;
122                                 i = X509_PURPOSE_get_by_sname(*(++argv));
123                                 if(i < 0)
124                                         {
125                                         BIO_printf(bio_err, "unrecognised purpose\n");
126                                         goto end;
127                                         }
128                                 xptmp = X509_PURPOSE_iget(i);
129                                 purpose = X509_PURPOSE_get_id(xptmp);
130                                 }
131                         else if (strcmp(*argv,"-untrusted") == 0)
132                                 {
133                                 if (argc-- < 1) goto end;
134                                 untfile= *(++argv);
135                                 }
136                         else if (strcmp(*argv,"-help") == 0)
137                                 goto end;
138                         else if (strcmp(*argv,"-verbose") == 0)
139                                 v_verbose=1;
140                         else if (argv[0][0] == '-')
141                                 goto end;
142                         else
143                                 break;
144                         argc--;
145                         argv++;
146                         }
147                 else
148                         break;
149                 }
150
151         lookup=X509_STORE_add_lookup(cert_ctx,X509_LOOKUP_file());
152         if (lookup == NULL) abort();
153         if (CAfile) {
154                 i=X509_LOOKUP_load_file(lookup,CAfile,X509_FILETYPE_PEM);
155                 if(!i) {
156                         BIO_printf(bio_err, "Error loading file %s\n", CAfile);
157                         ERR_print_errors(bio_err);
158                         goto end;
159                 }
160         } else X509_LOOKUP_load_file(lookup,NULL,X509_FILETYPE_DEFAULT);
161                 
162         lookup=X509_STORE_add_lookup(cert_ctx,X509_LOOKUP_hash_dir());
163         if (lookup == NULL) abort();
164         if (CApath) {
165                 i=X509_LOOKUP_add_dir(lookup,CApath,X509_FILETYPE_PEM);
166                 if(!i) {
167                         BIO_printf(bio_err, "Error loading directory %s\n", CApath);
168                         ERR_print_errors(bio_err);
169                         goto end;
170                 }
171         } else X509_LOOKUP_add_dir(lookup,NULL,X509_FILETYPE_DEFAULT);
172
173         ERR_clear_error();
174
175         if(untfile) {
176                 if(!(untrusted = load_untrusted(untfile))) {
177                         BIO_printf(bio_err, "Error loading untrusted file %s\n", untfile);
178                         ERR_print_errors(bio_err);
179                         goto end;
180                 }
181         }
182
183         if (argc < 1) check(cert_ctx, NULL, untrusted, purpose);
184         else
185                 for (i=0; i<argc; i++)
186                         check(cert_ctx,argv[i], untrusted, purpose);
187         ret=0;
188 end:
189         if (ret == 1) {
190                 BIO_printf(bio_err,"usage: verify [-verbose] [-CApath path] [-CAfile file] cert1 cert2 ...\n");
191                 BIO_printf(bio_err,"recognised usages:\n");
192                 for(i = 0; i < X509_PURPOSE_get_count(); i++) {
193                         X509_PURPOSE *ptmp;
194                         ptmp = X509_PURPOSE_iget(i);
195                         BIO_printf(bio_err, "\t%-10s\t%s\n", X509_PURPOSE_iget_sname(ptmp),
196                                                                 X509_PURPOSE_iget_name(ptmp));
197                 }
198         }
199         if (cert_ctx != NULL) X509_STORE_free(cert_ctx);
200         sk_X509_pop_free(untrusted, X509_free);
201         X509V3_EXT_cleanup();
202         X509_PURPOSE_cleanup();
203         X509_TRUST_cleanup();
204         EXIT(ret);
205         }
206
207 static int check(X509_STORE *ctx, char *file, STACK_OF(X509) *uchain, int purpose)
208         {
209         X509 *x=NULL;
210         BIO *in=NULL;
211         int i=0,ret=0;
212         X509_STORE_CTX *csc;
213
214         in=BIO_new(BIO_s_file());
215         if (in == NULL)
216                 {
217                 ERR_print_errors(bio_err);
218                 goto end;
219                 }
220
221         if (file == NULL)
222                 BIO_set_fp(in,stdin,BIO_NOCLOSE);
223         else
224                 {
225                 if (BIO_read_filename(in,file) <= 0)
226                         {
227                         perror(file);
228                         goto end;
229                         }
230                 }
231
232         x=PEM_read_bio_X509(in,NULL,NULL,NULL);
233         if (x == NULL)
234                 {
235                 fprintf(stdout,"%s: unable to load certificate file\n",
236                         (file == NULL)?"stdin":file);
237                 ERR_print_errors(bio_err);
238                 goto end;
239                 }
240         fprintf(stdout,"%s: ",(file == NULL)?"stdin":file);
241
242         csc = X509_STORE_CTX_new();
243         if (csc == NULL)
244                 {
245                 ERR_print_errors(bio_err);
246                 goto end;
247                 }
248         X509_STORE_CTX_init(csc,ctx,x,uchain);
249         if(purpose >= 0) X509_STORE_CTX_chain_purpose(csc, purpose);
250         i=X509_verify_cert(csc);
251         X509_STORE_CTX_free(csc);
252
253         ret=0;
254 end:
255         if (i)
256                 {
257                 fprintf(stdout,"OK\n");
258                 ret=1;
259                 }
260         else
261                 ERR_print_errors(bio_err);
262         if (x != NULL) X509_free(x);
263         if (in != NULL) BIO_free(in);
264
265         return(ret);
266         }
267
268 static STACK_OF(X509) *load_untrusted(char *certfile)
269 {
270         STACK_OF(X509_INFO) *sk=NULL;
271         STACK_OF(X509) *stack=NULL, *ret=NULL;
272         BIO *in=NULL;
273         X509_INFO *xi;
274
275         if(!(stack = sk_X509_new_null())) {
276                 BIO_printf(bio_err,"memory allocation failure\n");
277                 goto end;
278         }
279
280         if(!(in=BIO_new_file(certfile, "r"))) {
281                 BIO_printf(bio_err,"error opening the file, %s\n",certfile);
282                 goto end;
283         }
284
285         /* This loads from a file, a stack of x509/crl/pkey sets */
286         if(!(sk=PEM_X509_INFO_read_bio(in,NULL,NULL,NULL))) {
287                 BIO_printf(bio_err,"error reading the file, %s\n",certfile);
288                 goto end;
289         }
290
291         /* scan over it and pull out the certs */
292         while (sk_X509_INFO_num(sk))
293                 {
294                 xi=sk_X509_INFO_shift(sk);
295                 if (xi->x509 != NULL)
296                         {
297                         sk_X509_push(stack,xi->x509);
298                         xi->x509=NULL;
299                         }
300                 X509_INFO_free(xi);
301                 }
302         if(!sk_X509_num(stack)) {
303                 BIO_printf(bio_err,"no certificates in file, %s\n",certfile);
304                 sk_X509_free(stack);
305                 goto end;
306         }
307         ret=stack;
308 end:
309         BIO_free(in);
310         sk_X509_INFO_free(sk);
311         return(ret);
312         }
313
314 static int MS_CALLBACK cb(int ok, X509_STORE_CTX *ctx)
315         {
316         char buf[256];
317
318         if (!ok)
319                 {
320                 X509_NAME_oneline(
321                                 X509_get_subject_name(ctx->current_cert),buf,256);
322                 printf("%s\n",buf);
323                 printf("error %d at %d depth lookup:%s\n",ctx->error,
324                         ctx->error_depth,
325                         X509_verify_cert_error_string(ctx->error));
326                 if (ctx->error == X509_V_ERR_CERT_HAS_EXPIRED) ok=1;
327                 /* since we are just checking the certificates, it is
328                  * ok if they are self signed. But we should still warn
329                  * the user.
330                  */
331                 if (ctx->error == X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT) ok=1;
332                 /* Continue after extension errors too */
333                 if (ctx->error == X509_V_ERR_INVALID_CA) ok=1;
334                 if (ctx->error == X509_V_ERR_PATH_LENGTH_EXCEEDED) ok=1;
335                 if (ctx->error == X509_V_ERR_INVALID_PURPOSE) ok=1;
336                 if (ctx->error == X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT) ok=1;
337                 }
338         if (!v_verbose)
339                 ERR_clear_error();
340         return(ok);
341         }
342