verify.c 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376
  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, STACK_OF(X509) *uchain,
  71. STACK_OF(X509) *tchain, int purpose, ENGINE *e);
  72. static STACK_OF(X509) *load_untrusted(char *file);
  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. int purpose = -1;
  80. char *CApath = NULL, *CAfile = NULL;
  81. char *untfile = NULL, *trustfile = NULL;
  82. STACK_OF(X509) *untrusted = NULL, *trusted = 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)
  91. goto end;
  92. X509_STORE_set_verify_cb_func(cert_ctx, cb);
  93. ERR_load_crypto_strings();
  94. apps_startup();
  95. if (bio_err == NULL)
  96. if ((bio_err = BIO_new(BIO_s_file())) != NULL)
  97. BIO_set_fp(bio_err, stderr, BIO_NOCLOSE | BIO_FP_TEXT);
  98. if (!load_config(bio_err, NULL))
  99. goto end;
  100. argc--;
  101. argv++;
  102. for (;;) {
  103. if (argc >= 1) {
  104. if (strcmp(*argv, "-CApath") == 0) {
  105. if (argc-- < 1)
  106. goto end;
  107. CApath = *(++argv);
  108. } else if (strcmp(*argv, "-CAfile") == 0) {
  109. if (argc-- < 1)
  110. goto end;
  111. CAfile = *(++argv);
  112. } else if (args_verify(&argv, &argc, &badarg, bio_err, &vpm)) {
  113. if (badarg)
  114. goto end;
  115. continue;
  116. } else if (strcmp(*argv, "-untrusted") == 0) {
  117. if (argc-- < 1)
  118. goto end;
  119. untfile = *(++argv);
  120. } else if (strcmp(*argv, "-trusted") == 0) {
  121. if (argc-- < 1)
  122. goto end;
  123. trustfile = *(++argv);
  124. }
  125. #ifndef OPENSSL_NO_ENGINE
  126. else if (strcmp(*argv, "-engine") == 0) {
  127. if (--argc < 1)
  128. goto end;
  129. engine = *(++argv);
  130. }
  131. #endif
  132. else if (strcmp(*argv, "-help") == 0)
  133. goto end;
  134. else if (strcmp(*argv, "-verbose") == 0)
  135. v_verbose = 1;
  136. else if (argv[0][0] == '-')
  137. goto end;
  138. else
  139. break;
  140. argc--;
  141. argv++;
  142. } else
  143. break;
  144. }
  145. #ifndef OPENSSL_NO_ENGINE
  146. e = setup_engine(bio_err, engine, 0);
  147. #endif
  148. if (vpm)
  149. X509_STORE_set1_param(cert_ctx, vpm);
  150. lookup = X509_STORE_add_lookup(cert_ctx, X509_LOOKUP_file());
  151. if (lookup == NULL)
  152. 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
  161. X509_LOOKUP_load_file(lookup, NULL, X509_FILETYPE_DEFAULT);
  162. lookup = X509_STORE_add_lookup(cert_ctx, X509_LOOKUP_hash_dir());
  163. if (lookup == NULL)
  164. abort();
  165. if (CApath) {
  166. i = X509_LOOKUP_add_dir(lookup, CApath, X509_FILETYPE_PEM);
  167. if (!i) {
  168. BIO_printf(bio_err, "Error loading directory %s\n", CApath);
  169. ERR_print_errors(bio_err);
  170. goto end;
  171. }
  172. } else
  173. X509_LOOKUP_add_dir(lookup, NULL, X509_FILETYPE_DEFAULT);
  174. ERR_clear_error();
  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. if (trustfile) {
  183. if (!(trusted = load_untrusted(trustfile))) {
  184. BIO_printf(bio_err, "Error loading untrusted file %s\n",
  185. trustfile);
  186. ERR_print_errors(bio_err);
  187. goto end;
  188. }
  189. }
  190. if (argc < 1)
  191. check(cert_ctx, NULL, untrusted, trusted, purpose, e);
  192. else
  193. for (i = 0; i < argc; i++)
  194. check(cert_ctx, argv[i], untrusted, trusted, purpose, e);
  195. ret = 0;
  196. end:
  197. if (ret == 1) {
  198. BIO_printf(bio_err,
  199. "usage: verify [-verbose] [-CApath path] [-CAfile file] [-purpose purpose] [-crl_check]");
  200. #ifndef OPENSSL_NO_ENGINE
  201. BIO_printf(bio_err, " [-engine e]");
  202. #endif
  203. BIO_printf(bio_err, " cert1 cert2 ...\n");
  204. BIO_printf(bio_err, "recognized usages:\n");
  205. for (i = 0; i < X509_PURPOSE_get_count(); i++) {
  206. X509_PURPOSE *ptmp;
  207. ptmp = X509_PURPOSE_get0(i);
  208. BIO_printf(bio_err, "\t%-10s\t%s\n",
  209. X509_PURPOSE_get0_sname(ptmp),
  210. X509_PURPOSE_get0_name(ptmp));
  211. }
  212. }
  213. if (vpm)
  214. X509_VERIFY_PARAM_free(vpm);
  215. if (cert_ctx != NULL)
  216. X509_STORE_free(cert_ctx);
  217. sk_X509_pop_free(untrusted, X509_free);
  218. sk_X509_pop_free(trusted, X509_free);
  219. apps_shutdown();
  220. OPENSSL_EXIT(ret);
  221. }
  222. static int check(X509_STORE *ctx, char *file, STACK_OF(X509) *uchain,
  223. STACK_OF(X509) *tchain, int purpose, ENGINE *e)
  224. {
  225. X509 *x = NULL;
  226. int i = 0, ret = 0;
  227. X509_STORE_CTX *csc;
  228. x = load_cert(bio_err, file, FORMAT_PEM, NULL, e, "certificate file");
  229. if (x == NULL)
  230. goto end;
  231. fprintf(stdout, "%s: ", (file == NULL) ? "stdin" : file);
  232. csc = X509_STORE_CTX_new();
  233. if (csc == NULL) {
  234. ERR_print_errors(bio_err);
  235. goto end;
  236. }
  237. X509_STORE_set_flags(ctx, vflags);
  238. if (!X509_STORE_CTX_init(csc, ctx, x, uchain)) {
  239. ERR_print_errors(bio_err);
  240. goto end;
  241. }
  242. if (tchain)
  243. X509_STORE_CTX_trusted_stack(csc, tchain);
  244. if (purpose >= 0)
  245. X509_STORE_CTX_set_purpose(csc, purpose);
  246. i = X509_verify_cert(csc);
  247. X509_STORE_CTX_free(csc);
  248. ret = 0;
  249. end:
  250. if (i > 0) {
  251. fprintf(stdout, "OK\n");
  252. ret = 1;
  253. } else
  254. ERR_print_errors(bio_err);
  255. if (x != NULL)
  256. X509_free(x);
  257. return (ret);
  258. }
  259. static STACK_OF(X509) *load_untrusted(char *certfile)
  260. {
  261. STACK_OF(X509_INFO) *sk = NULL;
  262. STACK_OF(X509) *stack = NULL, *ret = NULL;
  263. BIO *in = NULL;
  264. X509_INFO *xi;
  265. if (!(stack = sk_X509_new_null())) {
  266. BIO_printf(bio_err, "memory allocation failure\n");
  267. goto end;
  268. }
  269. if (!(in = BIO_new_file(certfile, "r"))) {
  270. BIO_printf(bio_err, "error opening the file, %s\n", certfile);
  271. goto end;
  272. }
  273. /* This loads from a file, a stack of x509/crl/pkey sets */
  274. if (!(sk = PEM_X509_INFO_read_bio(in, NULL, NULL, NULL))) {
  275. BIO_printf(bio_err, "error reading the file, %s\n", certfile);
  276. goto end;
  277. }
  278. /* scan over it and pull out the certs */
  279. while (sk_X509_INFO_num(sk)) {
  280. xi = sk_X509_INFO_shift(sk);
  281. if (xi->x509 != NULL) {
  282. sk_X509_push(stack, xi->x509);
  283. xi->x509 = NULL;
  284. }
  285. X509_INFO_free(xi);
  286. }
  287. if (!sk_X509_num(stack)) {
  288. BIO_printf(bio_err, "no certificates in file, %s\n", certfile);
  289. sk_X509_free(stack);
  290. goto end;
  291. }
  292. ret = stack;
  293. end:
  294. BIO_free(in);
  295. sk_X509_INFO_free(sk);
  296. return (ret);
  297. }
  298. static int MS_CALLBACK cb(int ok, X509_STORE_CTX *ctx)
  299. {
  300. char buf[256];
  301. if (!ok) {
  302. if (ctx->current_cert) {
  303. X509_NAME_oneline(X509_get_subject_name(ctx->current_cert), buf,
  304. sizeof buf);
  305. printf("%s\n", buf);
  306. }
  307. printf("error %d at %d depth lookup:%s\n", ctx->error,
  308. ctx->error_depth, X509_verify_cert_error_string(ctx->error));
  309. if (ctx->error == X509_V_ERR_CERT_HAS_EXPIRED)
  310. ok = 1;
  311. /*
  312. * since we are just checking the certificates, it is ok if they are
  313. * self signed. But we should still warn the user.
  314. */
  315. if (ctx->error == X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT)
  316. ok = 1;
  317. /* Continue after extension errors too */
  318. if (ctx->error == X509_V_ERR_INVALID_CA)
  319. ok = 1;
  320. if (ctx->error == X509_V_ERR_INVALID_NON_CA)
  321. ok = 1;
  322. if (ctx->error == X509_V_ERR_PATH_LENGTH_EXCEEDED)
  323. ok = 1;
  324. if (ctx->error == X509_V_ERR_INVALID_PURPOSE)
  325. ok = 1;
  326. if (ctx->error == X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT)
  327. ok = 1;
  328. if (ctx->error == X509_V_ERR_CRL_HAS_EXPIRED)
  329. ok = 1;
  330. if (ctx->error == X509_V_ERR_CRL_NOT_YET_VALID)
  331. ok = 1;
  332. if (ctx->error == X509_V_ERR_UNHANDLED_CRITICAL_EXTENSION)
  333. ok = 1;
  334. if (ctx->error == X509_V_ERR_NO_EXPLICIT_POLICY)
  335. policies_print(NULL, ctx);
  336. return ok;
  337. }
  338. if ((ctx->error == X509_V_OK) && (ok == 2))
  339. policies_print(NULL, ctx);
  340. if (!v_verbose)
  341. ERR_clear_error();
  342. return (ok);
  343. }