clienthellotest.c 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257
  1. /*
  2. * Copyright 2015-2021 The OpenSSL Project Authors. All Rights Reserved.
  3. *
  4. * Licensed under the OpenSSL license (the "License"). You may not use
  5. * this file except in compliance with the License. You can obtain a copy
  6. * in the file LICENSE in the source distribution or at
  7. * https://www.openssl.org/source/license.html
  8. */
  9. #include <string.h>
  10. #include <openssl/opensslconf.h>
  11. #include <openssl/bio.h>
  12. #include <openssl/crypto.h>
  13. #include <openssl/evp.h>
  14. #include <openssl/ssl.h>
  15. #include <openssl/err.h>
  16. #include <time.h>
  17. #include "../ssl/packet_local.h"
  18. #include "testutil.h"
  19. #define CLIENT_VERSION_LEN 2
  20. #define TOTAL_NUM_TESTS 4
  21. /*
  22. * Test that explicitly setting ticket data results in it appearing in the
  23. * ClientHello for a negotiated SSL/TLS version
  24. */
  25. #define TEST_SET_SESSION_TICK_DATA_VER_NEG 0
  26. /* Enable padding and make sure ClientHello is long enough to require it */
  27. #define TEST_ADD_PADDING 1
  28. /* Enable padding and make sure ClientHello is short enough to not need it */
  29. #define TEST_PADDING_NOT_NEEDED 2
  30. /*
  31. * Enable padding and add a PSK to the ClientHello (this will also ensure the
  32. * ClientHello is long enough to need padding)
  33. */
  34. #define TEST_ADD_PADDING_AND_PSK 3
  35. #define F5_WORKAROUND_MIN_MSG_LEN 0x7f
  36. #define F5_WORKAROUND_MAX_MSG_LEN 0x200
  37. static const char *sessionfile = NULL;
  38. /* Dummy ALPN protocols used to pad out the size of the ClientHello */
  39. /* ASCII 'O' = 79 = 0x4F = EBCDIC '|'*/
  40. #ifdef CHARSET_EBCDIC
  41. static const char alpn_prots[] =
  42. "|1234567890123456789012345678901234567890123456789012345678901234567890123456789"
  43. "|1234567890123456789012345678901234567890123456789012345678901234567890123456789";
  44. #else
  45. static const char alpn_prots[] =
  46. "O1234567890123456789012345678901234567890123456789012345678901234567890123456789"
  47. "O1234567890123456789012345678901234567890123456789012345678901234567890123456789";
  48. #endif
  49. static int test_client_hello(int currtest)
  50. {
  51. SSL_CTX *ctx;
  52. SSL *con = NULL;
  53. BIO *rbio;
  54. BIO *wbio;
  55. long len;
  56. unsigned char *data;
  57. PACKET pkt = {0}, pkt2 = {0}, pkt3 = {0};
  58. char *dummytick = "Hello World!";
  59. unsigned int type = 0;
  60. int testresult = 0;
  61. size_t msglen;
  62. BIO *sessbio = NULL;
  63. SSL_SESSION *sess = NULL;
  64. #ifdef OPENSSL_NO_TLS1_3
  65. if (currtest == TEST_ADD_PADDING_AND_PSK)
  66. return 1;
  67. #endif
  68. /*
  69. * For each test set up an SSL_CTX and SSL and see what ClientHello gets
  70. * produced when we try to connect
  71. */
  72. ctx = SSL_CTX_new(TLS_method());
  73. if (!TEST_ptr(ctx))
  74. goto end;
  75. if (!TEST_true(SSL_CTX_set_max_proto_version(ctx, TLS_MAX_VERSION)))
  76. goto end;
  77. switch(currtest) {
  78. case TEST_SET_SESSION_TICK_DATA_VER_NEG:
  79. #if !defined(OPENSSL_NO_TLS1_3) && defined(OPENSSL_NO_TLS1_2)
  80. /* TLSv1.3 is enabled and TLSv1.2 is disabled so can't do this test */
  81. return 1;
  82. #else
  83. /* Testing for session tickets <= TLS1.2; not relevant for 1.3 */
  84. if (!TEST_true(SSL_CTX_set_max_proto_version(ctx, TLS1_2_VERSION)))
  85. goto end;
  86. #endif
  87. break;
  88. case TEST_ADD_PADDING_AND_PSK:
  89. /*
  90. * In this case we're doing TLSv1.3 and we're sending a PSK so the
  91. * ClientHello is already going to be quite long. To avoid getting one
  92. * that is too long for this test we use a restricted ciphersuite list
  93. */
  94. if (!TEST_false(SSL_CTX_set_cipher_list(ctx, "")))
  95. goto end;
  96. ERR_clear_error();
  97. /* Fall through */
  98. case TEST_ADD_PADDING:
  99. case TEST_PADDING_NOT_NEEDED:
  100. SSL_CTX_set_options(ctx, SSL_OP_TLSEXT_PADDING);
  101. /* Make sure we get a consistent size across TLS versions */
  102. SSL_CTX_clear_options(ctx, SSL_OP_ENABLE_MIDDLEBOX_COMPAT);
  103. /*
  104. * Add some dummy ALPN protocols so that the ClientHello is at least
  105. * F5_WORKAROUND_MIN_MSG_LEN bytes long - meaning padding will be
  106. * needed.
  107. */
  108. if (currtest == TEST_ADD_PADDING) {
  109. if (!TEST_false(SSL_CTX_set_alpn_protos(ctx,
  110. (unsigned char *)alpn_prots,
  111. sizeof(alpn_prots) - 1)))
  112. goto end;
  113. /*
  114. * Otherwise we need to make sure we have a small enough message to
  115. * not need padding.
  116. */
  117. } else if (!TEST_true(SSL_CTX_set_cipher_list(ctx,
  118. "AES128-SHA"))
  119. || !TEST_true(SSL_CTX_set_ciphersuites(ctx,
  120. "TLS_AES_128_GCM_SHA256"))) {
  121. goto end;
  122. }
  123. break;
  124. default:
  125. goto end;
  126. }
  127. con = SSL_new(ctx);
  128. if (!TEST_ptr(con))
  129. goto end;
  130. if (currtest == TEST_ADD_PADDING_AND_PSK) {
  131. sessbio = BIO_new_file(sessionfile, "r");
  132. if (!TEST_ptr(sessbio)) {
  133. TEST_info("Unable to open session.pem");
  134. goto end;
  135. }
  136. sess = PEM_read_bio_SSL_SESSION(sessbio, NULL, NULL, NULL);
  137. if (!TEST_ptr(sess)) {
  138. TEST_info("Unable to load SSL_SESSION");
  139. goto end;
  140. }
  141. /*
  142. * We reset the creation time so that we don't discard the session as
  143. * too old.
  144. */
  145. if (!TEST_true(SSL_SESSION_set_time(sess, (long)time(NULL)))
  146. || !TEST_true(SSL_set_session(con, sess)))
  147. goto end;
  148. }
  149. rbio = BIO_new(BIO_s_mem());
  150. wbio = BIO_new(BIO_s_mem());
  151. if (!TEST_ptr(rbio)|| !TEST_ptr(wbio)) {
  152. BIO_free(rbio);
  153. BIO_free(wbio);
  154. goto end;
  155. }
  156. SSL_set_bio(con, rbio, wbio);
  157. SSL_set_connect_state(con);
  158. if (currtest == TEST_SET_SESSION_TICK_DATA_VER_NEG) {
  159. if (!TEST_true(SSL_set_session_ticket_ext(con, dummytick,
  160. strlen(dummytick))))
  161. goto end;
  162. }
  163. if (!TEST_int_le(SSL_connect(con), 0)) {
  164. /* This shouldn't succeed because we don't have a server! */
  165. goto end;
  166. }
  167. len = BIO_get_mem_data(wbio, (char **)&data);
  168. if (!TEST_true(PACKET_buf_init(&pkt, data, len))
  169. /* Skip the record header */
  170. || !PACKET_forward(&pkt, SSL3_RT_HEADER_LENGTH))
  171. goto end;
  172. msglen = PACKET_remaining(&pkt);
  173. /* Skip the handshake message header */
  174. if (!TEST_true(PACKET_forward(&pkt, SSL3_HM_HEADER_LENGTH))
  175. /* Skip client version and random */
  176. || !TEST_true(PACKET_forward(&pkt, CLIENT_VERSION_LEN
  177. + SSL3_RANDOM_SIZE))
  178. /* Skip session id */
  179. || !TEST_true(PACKET_get_length_prefixed_1(&pkt, &pkt2))
  180. /* Skip ciphers */
  181. || !TEST_true(PACKET_get_length_prefixed_2(&pkt, &pkt2))
  182. /* Skip compression */
  183. || !TEST_true(PACKET_get_length_prefixed_1(&pkt, &pkt2))
  184. /* Extensions len */
  185. || !TEST_true(PACKET_as_length_prefixed_2(&pkt, &pkt2)))
  186. goto end;
  187. /* Loop through all extensions */
  188. while (PACKET_remaining(&pkt2)) {
  189. if (!TEST_true(PACKET_get_net_2(&pkt2, &type))
  190. || !TEST_true(PACKET_get_length_prefixed_2(&pkt2, &pkt3)))
  191. goto end;
  192. if (type == TLSEXT_TYPE_session_ticket) {
  193. if (currtest == TEST_SET_SESSION_TICK_DATA_VER_NEG) {
  194. if (TEST_true(PACKET_equal(&pkt3, dummytick,
  195. strlen(dummytick)))) {
  196. /* Ticket data is as we expected */
  197. testresult = 1;
  198. }
  199. goto end;
  200. }
  201. }
  202. if (type == TLSEXT_TYPE_padding) {
  203. if (!TEST_false(currtest == TEST_PADDING_NOT_NEEDED))
  204. goto end;
  205. else if (TEST_true(currtest == TEST_ADD_PADDING
  206. || currtest == TEST_ADD_PADDING_AND_PSK))
  207. testresult = TEST_true(msglen == F5_WORKAROUND_MAX_MSG_LEN);
  208. }
  209. }
  210. if (currtest == TEST_PADDING_NOT_NEEDED)
  211. testresult = 1;
  212. end:
  213. SSL_free(con);
  214. SSL_CTX_free(ctx);
  215. SSL_SESSION_free(sess);
  216. BIO_free(sessbio);
  217. return testresult;
  218. }
  219. int setup_tests(void)
  220. {
  221. if (!TEST_ptr(sessionfile = test_get_argument(0)))
  222. return 0;
  223. ADD_ALL_TESTS(test_client_hello, TOTAL_NUM_TESTS);
  224. return 1;
  225. }