Transparent support for PKCS#8 private keys in RSA/DSA.
[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/pem.h>
67
68 #undef PROG
69 #define PROG    verify_main
70
71 static int MS_CALLBACK cb(int ok, X509_STORE_CTX *ctx);
72 static int check(X509_STORE *ctx,char *file);
73 static int v_verbose=0;
74
75 int MAIN(int argc, char **argv)
76         {
77         int i,ret=1;
78         char *CApath=NULL,*CAfile=NULL;
79         X509_STORE *cert_ctx=NULL;
80         X509_LOOKUP *lookup=NULL;
81
82         cert_ctx=X509_STORE_new();
83         if (cert_ctx == NULL) goto end;
84         X509_STORE_set_verify_cb_func(cert_ctx,cb);
85
86         ERR_load_crypto_strings();
87
88         apps_startup();
89
90         if (bio_err == NULL)
91                 if ((bio_err=BIO_new(BIO_s_file())) != NULL)
92                         BIO_set_fp(bio_err,stderr,BIO_NOCLOSE|BIO_FP_TEXT);
93
94         argc--;
95         argv++;
96         for (;;)
97                 {
98                 if (argc >= 1)
99                         {
100                         if (strcmp(*argv,"-CApath") == 0)
101                                 {
102                                 if (argc-- < 1) goto end;
103                                 CApath= *(++argv);
104                                 }
105                         else if (strcmp(*argv,"-CAfile") == 0)
106                                 {
107                                 if (argc-- < 1) goto end;
108                                 CAfile= *(++argv);
109                                 }
110                         else if (strcmp(*argv,"-help") == 0)
111                                 goto end;
112                         else if (strcmp(*argv,"-verbose") == 0)
113                                 v_verbose=1;
114                         else if (argv[0][0] == '-')
115                                 goto end;
116                         else
117                                 break;
118                         argc--;
119                         argv++;
120                         }
121                 else
122                         break;
123                 }
124
125         lookup=X509_STORE_add_lookup(cert_ctx,X509_LOOKUP_file());
126         if (lookup == NULL) abort();
127         if (CAfile) {
128                 i=X509_LOOKUP_load_file(lookup,CAfile,X509_FILETYPE_PEM);
129                 if(!i) {
130                         BIO_printf(bio_err, "Error loading file %s\n", CAfile);
131                         ERR_print_errors(bio_err);
132                         goto end;
133                 }
134         } else X509_LOOKUP_load_file(lookup,NULL,X509_FILETYPE_DEFAULT);
135                 
136         lookup=X509_STORE_add_lookup(cert_ctx,X509_LOOKUP_hash_dir());
137         if (lookup == NULL) abort();
138         if (CApath) {
139                 i=X509_LOOKUP_add_dir(lookup,CApath,X509_FILETYPE_PEM);
140                 if(!i) {
141                         BIO_printf(bio_err, "Error loading directory %s\n", CApath);
142                         ERR_print_errors(bio_err);
143                         goto end;
144                 }
145         } else X509_LOOKUP_add_dir(lookup,NULL,X509_FILETYPE_DEFAULT);
146
147
148         ERR_clear_error();
149         if (argc < 1) check(cert_ctx,NULL);
150         else
151                 for (i=0; i<argc; i++)
152                         check(cert_ctx,argv[i]);
153         ret=0;
154 end:
155         if (ret == 1)
156                 BIO_printf(bio_err,"usage: verify [-verbose] [-CApath path] [-CAfile file] cert1 cert2 ...\n");
157         if (cert_ctx != NULL) X509_STORE_free(cert_ctx);
158         EXIT(ret);
159         }
160
161 static int check(X509_STORE *ctx, char *file)
162         {
163         X509 *x=NULL;
164         BIO *in=NULL;
165         int i=0,ret=0;
166         X509_STORE_CTX csc;
167
168         in=BIO_new(BIO_s_file());
169         if (in == NULL)
170                 {
171                 ERR_print_errors(bio_err);
172                 goto end;
173                 }
174
175         if (file == NULL)
176                 BIO_set_fp(in,stdin,BIO_NOCLOSE);
177         else
178                 {
179                 if (BIO_read_filename(in,file) <= 0)
180                         {
181                         perror(file);
182                         goto end;
183                         }
184                 }
185
186         x=PEM_read_bio_X509(in,NULL,NULL,NULL);
187         if (x == NULL)
188                 {
189                 fprintf(stdout,"%s: unable to load certificate file\n",
190                         (file == NULL)?"stdin":file);
191                 ERR_print_errors(bio_err);
192                 goto end;
193                 }
194         fprintf(stdout,"%s: ",(file == NULL)?"stdin":file);
195
196         X509_STORE_CTX_init(&csc,ctx,x,NULL);
197         i=X509_verify_cert(&csc);
198         X509_STORE_CTX_cleanup(&csc);
199
200         ret=0;
201 end:
202         if (i)
203                 {
204                 fprintf(stdout,"OK\n");
205                 ret=1;
206                 }
207         else
208                 ERR_print_errors(bio_err);
209         if (x != NULL) X509_free(x);
210         if (in != NULL) BIO_free(in);
211
212         return(ret);
213         }
214
215 static int MS_CALLBACK cb(int ok, X509_STORE_CTX *ctx)
216         {
217         char buf[256];
218
219         if (!ok)
220                 {
221                 X509_NAME_oneline(
222                                 X509_get_subject_name(ctx->current_cert),buf,256);
223                 printf("%s\n",buf);
224                 printf("error %d at %d depth lookup:%s\n",ctx->error,
225                         ctx->error_depth,
226                         X509_verify_cert_error_string(ctx->error));
227                 if (ctx->error == X509_V_ERR_CERT_HAS_EXPIRED) ok=1;
228                 /* since we are just checking the certificates, it is
229                  * ok if they are self signed. But we should still warn
230                  * the user.
231                  */
232                 if (ctx->error == X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT) ok=1;
233                 }
234         if (!v_verbose)
235                 ERR_clear_error();
236         return(ok);
237         }
238