test_tls_crypt.c 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272
  1. /*
  2. * OpenVPN -- An application to securely tunnel IP networks
  3. * over a single UDP port, with support for SSL/TLS-based
  4. * session authentication and key exchange,
  5. * packet encryption, packet authentication, and
  6. * packet compression.
  7. *
  8. * Copyright (C) 2016-2018 Fox Crypto B.V. <openvpn@fox-it.com>
  9. *
  10. * This program is free software; you can redistribute it and/or modify
  11. * it under the terms of the GNU General Public License version 2
  12. * as published by the Free Software Foundation.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU General Public License along
  20. * with this program; if not, write to the Free Software Foundation, Inc.,
  21. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  22. */
  23. #ifdef HAVE_CONFIG_H
  24. #include "config.h"
  25. #elif defined(_MSC_VER)
  26. #include "config-msvc.h"
  27. #endif
  28. #ifdef ENABLE_CRYPTO
  29. #include "syshead.h"
  30. #include <stdio.h>
  31. #include <unistd.h>
  32. #include <stdlib.h>
  33. #include <stdarg.h>
  34. #include <string.h>
  35. #include <setjmp.h>
  36. #include <cmocka.h>
  37. #include "tls_crypt.c"
  38. #include "mock_msg.h"
  39. #define TESTBUF_SIZE 128
  40. const char plaintext_short[1];
  41. struct test_context {
  42. struct crypto_options co;
  43. struct key_type kt;
  44. struct buffer source;
  45. struct buffer ciphertext;
  46. struct buffer unwrapped;
  47. };
  48. static int
  49. setup(void **state) {
  50. struct test_context *ctx = calloc(1, sizeof(*ctx));
  51. *state = ctx;
  52. struct key key = { 0 };
  53. ctx->kt = tls_crypt_kt();
  54. if (!ctx->kt.cipher || !ctx->kt.digest)
  55. {
  56. return 0;
  57. }
  58. init_key_ctx(&ctx->co.key_ctx_bi.encrypt, &key, &ctx->kt, true, "TEST");
  59. init_key_ctx(&ctx->co.key_ctx_bi.decrypt, &key, &ctx->kt, false, "TEST");
  60. packet_id_init(&ctx->co.packet_id, 0, 0, "test", 0);
  61. ctx->source = alloc_buf(TESTBUF_SIZE);
  62. ctx->ciphertext = alloc_buf(TESTBUF_SIZE);
  63. ctx->unwrapped = alloc_buf(TESTBUF_SIZE);
  64. /* Write test plaintext */
  65. buf_write(&ctx->source, plaintext_short, sizeof(plaintext_short));
  66. /* Write dummy opcode and session id */
  67. buf_write(&ctx->ciphertext, "012345678", 1 + 8);
  68. return 0;
  69. }
  70. static int
  71. teardown(void **state) {
  72. struct test_context *ctx = (struct test_context *) *state;
  73. free_buf(&ctx->source);
  74. free_buf(&ctx->ciphertext);
  75. free_buf(&ctx->unwrapped);
  76. free_key_ctx_bi(&ctx->co.key_ctx_bi);
  77. free(ctx);
  78. return 0;
  79. }
  80. static void skip_if_tls_crypt_not_supported(struct test_context *ctx)
  81. {
  82. if (!ctx->kt.cipher || !ctx->kt.digest)
  83. {
  84. skip();
  85. }
  86. }
  87. /**
  88. * Check that short messages are successfully wrapped-and-unwrapped.
  89. */
  90. static void
  91. tls_crypt_loopback(void **state) {
  92. struct test_context *ctx = (struct test_context *) *state;
  93. skip_if_tls_crypt_not_supported(ctx);
  94. assert_true(tls_crypt_wrap(&ctx->source, &ctx->ciphertext, &ctx->co));
  95. assert_true(BLEN(&ctx->source) < BLEN(&ctx->ciphertext));
  96. assert_true(tls_crypt_unwrap(&ctx->ciphertext, &ctx->unwrapped, &ctx->co));
  97. assert_int_equal(BLEN(&ctx->source), BLEN(&ctx->unwrapped));
  98. assert_memory_equal(BPTR(&ctx->source), BPTR(&ctx->unwrapped),
  99. BLEN(&ctx->source));
  100. }
  101. /**
  102. * Check that zero-byte messages are successfully wrapped-and-unwrapped.
  103. */
  104. static void
  105. tls_crypt_loopback_zero_len(void **state) {
  106. struct test_context *ctx = (struct test_context *) *state;
  107. skip_if_tls_crypt_not_supported(ctx);
  108. buf_clear(&ctx->source);
  109. assert_true(tls_crypt_wrap(&ctx->source, &ctx->ciphertext, &ctx->co));
  110. assert_true(BLEN(&ctx->source) < BLEN(&ctx->ciphertext));
  111. assert_true(tls_crypt_unwrap(&ctx->ciphertext, &ctx->unwrapped, &ctx->co));
  112. assert_int_equal(BLEN(&ctx->source), BLEN(&ctx->unwrapped));
  113. assert_memory_equal(BPTR(&ctx->source), BPTR(&ctx->unwrapped),
  114. BLEN(&ctx->source));
  115. }
  116. /**
  117. * Check that max-length messages are successfully wrapped-and-unwrapped.
  118. */
  119. static void
  120. tls_crypt_loopback_max_len(void **state) {
  121. struct test_context *ctx = (struct test_context *) *state;
  122. skip_if_tls_crypt_not_supported(ctx);
  123. buf_clear(&ctx->source);
  124. assert_non_null(buf_write_alloc(&ctx->source,
  125. TESTBUF_SIZE - BLEN(&ctx->ciphertext) - tls_crypt_buf_overhead()));
  126. assert_true(tls_crypt_wrap(&ctx->source, &ctx->ciphertext, &ctx->co));
  127. assert_true(BLEN(&ctx->source) < BLEN(&ctx->ciphertext));
  128. assert_true(tls_crypt_unwrap(&ctx->ciphertext, &ctx->unwrapped, &ctx->co));
  129. assert_int_equal(BLEN(&ctx->source), BLEN(&ctx->unwrapped));
  130. assert_memory_equal(BPTR(&ctx->source), BPTR(&ctx->unwrapped),
  131. BLEN(&ctx->source));
  132. }
  133. /**
  134. * Check that too-long messages are gracefully rejected.
  135. */
  136. static void
  137. tls_crypt_fail_msg_too_long(void **state) {
  138. struct test_context *ctx = (struct test_context *) *state;
  139. skip_if_tls_crypt_not_supported(ctx);
  140. buf_clear(&ctx->source);
  141. assert_non_null(buf_write_alloc(&ctx->source,
  142. TESTBUF_SIZE - BLEN(&ctx->ciphertext) - tls_crypt_buf_overhead() + 1));
  143. assert_false(tls_crypt_wrap(&ctx->source, &ctx->ciphertext, &ctx->co));
  144. }
  145. /**
  146. * Check that packets that were wrapped (or unwrapped) with a different key
  147. * are not accepted.
  148. */
  149. static void
  150. tls_crypt_fail_invalid_key(void **state) {
  151. struct test_context *ctx = (struct test_context *) *state;
  152. skip_if_tls_crypt_not_supported(ctx);
  153. /* Change decrypt key */
  154. struct key key = { { 1 } };
  155. free_key_ctx(&ctx->co.key_ctx_bi.decrypt);
  156. init_key_ctx(&ctx->co.key_ctx_bi.decrypt, &key, &ctx->kt, false, "TEST");
  157. assert_true(tls_crypt_wrap(&ctx->source, &ctx->ciphertext, &ctx->co));
  158. assert_true(BLEN(&ctx->source) < BLEN(&ctx->ciphertext));
  159. assert_false(tls_crypt_unwrap(&ctx->ciphertext, &ctx->unwrapped, &ctx->co));
  160. }
  161. /**
  162. * Check that replayed packets are not accepted.
  163. */
  164. static void
  165. tls_crypt_fail_replay(void **state) {
  166. struct test_context *ctx = (struct test_context *) *state;
  167. skip_if_tls_crypt_not_supported(ctx);
  168. assert_true(tls_crypt_wrap(&ctx->source, &ctx->ciphertext, &ctx->co));
  169. assert_true(BLEN(&ctx->source) < BLEN(&ctx->ciphertext));
  170. struct buffer tmp = ctx->ciphertext;
  171. assert_true(tls_crypt_unwrap(&tmp, &ctx->unwrapped, &ctx->co));
  172. buf_clear(&ctx->unwrapped);
  173. assert_false(tls_crypt_unwrap(&ctx->ciphertext, &ctx->unwrapped, &ctx->co));
  174. }
  175. /**
  176. * Check that packet replays are accepted when CO_IGNORE_PACKET_ID is set. This
  177. * is used for the first control channel packet that arrives, because we don't
  178. * know the packet ID yet.
  179. */
  180. static void
  181. tls_crypt_ignore_replay(void **state) {
  182. struct test_context *ctx = (struct test_context *) *state;
  183. skip_if_tls_crypt_not_supported(ctx);
  184. ctx->co.flags |= CO_IGNORE_PACKET_ID;
  185. assert_true(tls_crypt_wrap(&ctx->source, &ctx->ciphertext, &ctx->co));
  186. assert_true(BLEN(&ctx->source) < BLEN(&ctx->ciphertext));
  187. struct buffer tmp = ctx->ciphertext;
  188. assert_true(tls_crypt_unwrap(&tmp, &ctx->unwrapped, &ctx->co));
  189. buf_clear(&ctx->unwrapped);
  190. assert_true(tls_crypt_unwrap(&ctx->ciphertext, &ctx->unwrapped, &ctx->co));
  191. }
  192. int
  193. main(void) {
  194. const struct CMUnitTest tests[] = {
  195. cmocka_unit_test_setup_teardown(tls_crypt_loopback, setup, teardown),
  196. cmocka_unit_test_setup_teardown(tls_crypt_loopback_zero_len,
  197. setup, teardown),
  198. cmocka_unit_test_setup_teardown(tls_crypt_loopback_max_len,
  199. setup, teardown),
  200. cmocka_unit_test_setup_teardown(tls_crypt_fail_msg_too_long,
  201. setup, teardown),
  202. cmocka_unit_test_setup_teardown(tls_crypt_fail_invalid_key,
  203. setup, teardown),
  204. cmocka_unit_test_setup_teardown(tls_crypt_fail_replay,
  205. setup, teardown),
  206. cmocka_unit_test_setup_teardown(tls_crypt_ignore_replay,
  207. setup, teardown),
  208. };
  209. #if defined(ENABLE_CRYPTO_OPENSSL)
  210. OpenSSL_add_all_algorithms();
  211. #endif
  212. int ret = cmocka_run_group_tests_name("tls-crypt tests", tests, NULL, NULL);
  213. #if defined(ENABLE_CRYPTO_OPENSSL)
  214. EVP_cleanup();
  215. #endif
  216. return ret;
  217. }
  218. #endif /* ENABLE_CRYPTO */