verify.c 10.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363
  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. #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. #undef PROG
  68. #define PROG verify_main
  69. static int MS_CALLBACK cb(int ok, X509_STORE_CTX *ctx);
  70. static int check(X509_STORE *ctx, char *file,
  71. STACK_OF(X509) *uchain, STACK_OF(X509) *tchain,
  72. STACK_OF(X509_CRL) *crls, ENGINE *e);
  73. static int v_verbose=0, vflags = 0;
  74. int MAIN(int, char **);
  75. int MAIN(int argc, char **argv)
  76. {
  77. ENGINE *e = NULL;
  78. int i,ret=1, badarg = 0;
  79. char *CApath=NULL,*CAfile=NULL;
  80. char *untfile = NULL, *trustfile = NULL, *crlfile = NULL;
  81. STACK_OF(X509) *untrusted = NULL, *trusted = NULL;
  82. STACK_OF(X509_CRL) *crls = NULL;
  83. X509_STORE *cert_ctx=NULL;
  84. X509_LOOKUP *lookup=NULL;
  85. X509_VERIFY_PARAM *vpm = NULL;
  86. #ifndef OPENSSL_NO_ENGINE
  87. char *engine=NULL;
  88. #endif
  89. cert_ctx=X509_STORE_new();
  90. if (cert_ctx == NULL) goto end;
  91. X509_STORE_set_verify_cb(cert_ctx,cb);
  92. ERR_load_crypto_strings();
  93. apps_startup();
  94. if (bio_err == NULL)
  95. if ((bio_err=BIO_new(BIO_s_file())) != NULL)
  96. BIO_set_fp(bio_err,stderr,BIO_NOCLOSE|BIO_FP_TEXT);
  97. if (!load_config(bio_err, NULL))
  98. goto end;
  99. argc--;
  100. argv++;
  101. for (;;)
  102. {
  103. if (argc >= 1)
  104. {
  105. if (strcmp(*argv,"-CApath") == 0)
  106. {
  107. if (argc-- < 1) goto end;
  108. CApath= *(++argv);
  109. }
  110. else if (strcmp(*argv,"-CAfile") == 0)
  111. {
  112. if (argc-- < 1) goto end;
  113. CAfile= *(++argv);
  114. }
  115. else if (args_verify(&argv, &argc, &badarg, bio_err,
  116. &vpm))
  117. {
  118. if (badarg)
  119. goto end;
  120. continue;
  121. }
  122. else if (strcmp(*argv,"-untrusted") == 0)
  123. {
  124. if (argc-- < 1) goto end;
  125. untfile= *(++argv);
  126. }
  127. else if (strcmp(*argv,"-trusted") == 0)
  128. {
  129. if (argc-- < 1) goto end;
  130. trustfile= *(++argv);
  131. }
  132. else if (strcmp(*argv,"-CRLfile") == 0)
  133. {
  134. if (argc-- < 1) goto end;
  135. crlfile= *(++argv);
  136. }
  137. #ifndef OPENSSL_NO_ENGINE
  138. else if (strcmp(*argv,"-engine") == 0)
  139. {
  140. if (--argc < 1) goto end;
  141. engine= *(++argv);
  142. }
  143. #endif
  144. else if (strcmp(*argv,"-help") == 0)
  145. goto end;
  146. else if (strcmp(*argv,"-verbose") == 0)
  147. v_verbose=1;
  148. else if (argv[0][0] == '-')
  149. goto end;
  150. else
  151. break;
  152. argc--;
  153. argv++;
  154. }
  155. else
  156. break;
  157. }
  158. #ifndef OPENSSL_NO_ENGINE
  159. e = setup_engine(bio_err, engine, 0);
  160. #endif
  161. if (vpm)
  162. X509_STORE_set1_param(cert_ctx, vpm);
  163. lookup=X509_STORE_add_lookup(cert_ctx,X509_LOOKUP_file());
  164. if (lookup == NULL) abort();
  165. if (CAfile) {
  166. i=X509_LOOKUP_load_file(lookup,CAfile,X509_FILETYPE_PEM);
  167. if(!i) {
  168. BIO_printf(bio_err, "Error loading file %s\n", CAfile);
  169. ERR_print_errors(bio_err);
  170. goto end;
  171. }
  172. } else X509_LOOKUP_load_file(lookup,NULL,X509_FILETYPE_DEFAULT);
  173. lookup=X509_STORE_add_lookup(cert_ctx,X509_LOOKUP_hash_dir());
  174. if (lookup == NULL) abort();
  175. if (CApath) {
  176. i=X509_LOOKUP_add_dir(lookup,CApath,X509_FILETYPE_PEM);
  177. if(!i) {
  178. BIO_printf(bio_err, "Error loading directory %s\n", CApath);
  179. ERR_print_errors(bio_err);
  180. goto end;
  181. }
  182. } else X509_LOOKUP_add_dir(lookup,NULL,X509_FILETYPE_DEFAULT);
  183. ERR_clear_error();
  184. if(untfile)
  185. {
  186. untrusted = load_certs(bio_err, untfile, FORMAT_PEM,
  187. NULL, e, "untrusted certificates");
  188. if(!untrusted)
  189. goto end;
  190. }
  191. if(trustfile)
  192. {
  193. trusted = load_certs(bio_err, trustfile, FORMAT_PEM,
  194. NULL, e, "trusted certificates");
  195. if(!trusted)
  196. goto end;
  197. }
  198. if(crlfile)
  199. {
  200. crls = load_crls(bio_err, crlfile, FORMAT_PEM,
  201. NULL, e, "other CRLs");
  202. if(!crls)
  203. goto end;
  204. }
  205. if (argc < 1) check(cert_ctx, NULL, untrusted, trusted, crls, e);
  206. else
  207. for (i=0; i<argc; i++)
  208. check(cert_ctx,argv[i], untrusted, trusted, crls, e);
  209. ret=0;
  210. end:
  211. if (ret == 1) {
  212. BIO_printf(bio_err,"usage: verify [-verbose] [-CApath path] [-CAfile file] [-purpose purpose] [-crl_check]");
  213. #ifndef OPENSSL_NO_ENGINE
  214. BIO_printf(bio_err," [-engine e]");
  215. #endif
  216. BIO_printf(bio_err," cert1 cert2 ...\n");
  217. BIO_printf(bio_err,"recognized usages:\n");
  218. for(i = 0; i < X509_PURPOSE_get_count(); i++)
  219. {
  220. X509_PURPOSE *ptmp;
  221. ptmp = X509_PURPOSE_get0(i);
  222. BIO_printf(bio_err, "\t%-10s\t%s\n",
  223. X509_PURPOSE_get0_sname(ptmp),
  224. X509_PURPOSE_get0_name(ptmp));
  225. }
  226. BIO_printf(bio_err,"recognized verify names:\n");
  227. for(i = 0; i < X509_VERIFY_PARAM_get_count(); i++)
  228. {
  229. const X509_VERIFY_PARAM *vptmp;
  230. vptmp = X509_VERIFY_PARAM_get0(i);
  231. BIO_printf(bio_err, "\t%-10s\n",
  232. X509_VERIFY_PARAM_get0_name(vptmp));
  233. }
  234. }
  235. if (vpm) X509_VERIFY_PARAM_free(vpm);
  236. if (cert_ctx != NULL) X509_STORE_free(cert_ctx);
  237. sk_X509_pop_free(untrusted, X509_free);
  238. sk_X509_pop_free(trusted, X509_free);
  239. sk_X509_CRL_pop_free(crls, X509_CRL_free);
  240. apps_shutdown();
  241. OPENSSL_EXIT(ret);
  242. }
  243. static int check(X509_STORE *ctx, char *file,
  244. STACK_OF(X509) *uchain, STACK_OF(X509) *tchain,
  245. STACK_OF(X509_CRL) *crls, ENGINE *e)
  246. {
  247. X509 *x=NULL;
  248. int i=0,ret=0;
  249. X509_STORE_CTX *csc;
  250. x = load_cert(bio_err, file, FORMAT_PEM, NULL, e, "certificate file");
  251. if (x == NULL)
  252. goto end;
  253. fprintf(stdout,"%s: ",(file == NULL)?"stdin":file);
  254. csc = X509_STORE_CTX_new();
  255. if (csc == NULL)
  256. {
  257. ERR_print_errors(bio_err);
  258. goto end;
  259. }
  260. X509_STORE_set_flags(ctx, vflags);
  261. if(!X509_STORE_CTX_init(csc,ctx,x,uchain))
  262. {
  263. ERR_print_errors(bio_err);
  264. goto end;
  265. }
  266. if(tchain) X509_STORE_CTX_trusted_stack(csc, tchain);
  267. if (crls)
  268. X509_STORE_CTX_set0_crls(csc, crls);
  269. i=X509_verify_cert(csc);
  270. X509_STORE_CTX_free(csc);
  271. ret=0;
  272. end:
  273. if (i > 0)
  274. {
  275. fprintf(stdout,"OK\n");
  276. ret=1;
  277. }
  278. else
  279. ERR_print_errors(bio_err);
  280. if (x != NULL) X509_free(x);
  281. return(ret);
  282. }
  283. static int MS_CALLBACK cb(int ok, X509_STORE_CTX *ctx)
  284. {
  285. int cert_error = X509_STORE_CTX_get_error(ctx);
  286. X509 *current_cert = X509_STORE_CTX_get_current_cert(ctx);
  287. if (!ok)
  288. {
  289. if (current_cert)
  290. {
  291. X509_NAME_print_ex_fp(stdout,
  292. X509_get_subject_name(current_cert),
  293. 0, XN_FLAG_ONELINE);
  294. printf("\n");
  295. }
  296. printf("%serror %d at %d depth lookup:%s\n",
  297. X509_STORE_CTX_get0_parent_ctx(ctx) ? "[CRL path]" : "",
  298. cert_error,
  299. X509_STORE_CTX_get_error_depth(ctx),
  300. X509_verify_cert_error_string(cert_error));
  301. switch(cert_error)
  302. {
  303. case X509_V_ERR_NO_EXPLICIT_POLICY:
  304. policies_print(NULL, ctx);
  305. case X509_V_ERR_CERT_HAS_EXPIRED:
  306. /* since we are just checking the certificates, it is
  307. * ok if they are self signed. But we should still warn
  308. * the user.
  309. */
  310. case X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT:
  311. /* Continue after extension errors too */
  312. case X509_V_ERR_INVALID_CA:
  313. case X509_V_ERR_INVALID_NON_CA:
  314. case X509_V_ERR_PATH_LENGTH_EXCEEDED:
  315. case X509_V_ERR_INVALID_PURPOSE:
  316. case X509_V_ERR_CRL_HAS_EXPIRED:
  317. case X509_V_ERR_CRL_NOT_YET_VALID:
  318. case X509_V_ERR_UNHANDLED_CRITICAL_EXTENSION:
  319. ok = 1;
  320. }
  321. return ok;
  322. }
  323. if (cert_error == X509_V_OK && ok == 2)
  324. policies_print(NULL, ctx);
  325. if (!v_verbose)
  326. ERR_clear_error();
  327. return(ok);
  328. }