| 
									
										
										
										
											2016-05-18 02:20:24 +08:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2021-04-08 20:04:41 +08:00
										 |  |  |  * Copyright 2015-2021 The OpenSSL Project Authors. All Rights Reserved. | 
					
						
							| 
									
										
										
										
											2015-07-27 19:04:47 +08:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2018-12-06 20:05:25 +08:00
										 |  |  |  * Licensed under the Apache License 2.0 (the "License").  You may not use | 
					
						
							| 
									
										
										
										
											2016-05-18 02:20:24 +08:00
										 |  |  |  * this file except in compliance with the License.  You can obtain a copy | 
					
						
							|  |  |  |  * in the file LICENSE in the source distribution or at | 
					
						
							|  |  |  |  * https://www.openssl.org/source/license.html
 | 
					
						
							| 
									
										
										
										
											2015-07-27 19:04:47 +08:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <string.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-04 07:25:49 +08:00
										 |  |  | #include <openssl/opensslconf.h>
 | 
					
						
							| 
									
										
										
										
											2015-07-27 19:04:47 +08:00
										 |  |  | #include <openssl/bio.h>
 | 
					
						
							|  |  |  | #include <openssl/crypto.h>
 | 
					
						
							|  |  |  | #include <openssl/evp.h>
 | 
					
						
							|  |  |  | #include <openssl/ssl.h>
 | 
					
						
							|  |  |  | #include <openssl/err.h>
 | 
					
						
							| 
									
										
										
										
											2017-03-16 20:11:23 +08:00
										 |  |  | #include <time.h>
 | 
					
						
							| 
									
										
										
										
											2015-07-27 19:04:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-07 23:32:49 +08:00
										 |  |  | #include "internal/packet.h"
 | 
					
						
							| 
									
										
										
										
											2015-07-27 19:04:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-16 20:11:23 +08:00
										 |  |  | #include "testutil.h"
 | 
					
						
							| 
									
										
										
										
											2015-07-27 19:04:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-16 20:11:23 +08:00
										 |  |  | #define CLIENT_VERSION_LEN      2
 | 
					
						
							| 
									
										
										
										
											2015-07-27 19:04:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-16 20:11:23 +08:00
										 |  |  | #define TOTAL_NUM_TESTS                         4
 | 
					
						
							| 
									
										
										
										
											2015-07-27 19:04:47 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Test that explicitly setting ticket data results in it appearing in the | 
					
						
							|  |  |  |  * ClientHello for a negotiated SSL/TLS version | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2016-03-03 05:38:08 +08:00
										 |  |  | #define TEST_SET_SESSION_TICK_DATA_VER_NEG      0
 | 
					
						
							| 
									
										
										
										
											2017-03-16 20:11:23 +08:00
										 |  |  | /* Enable padding and make sure ClientHello is long enough to require it */ | 
					
						
							|  |  |  | #define TEST_ADD_PADDING                        1
 | 
					
						
							|  |  |  | /* Enable padding and make sure ClientHello is short enough to not need it */ | 
					
						
							|  |  |  | #define TEST_PADDING_NOT_NEEDED                 2
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Enable padding and add a PSK to the ClientHello (this will also ensure the | 
					
						
							|  |  |  |  * ClientHello is long enough to need padding) | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | #define TEST_ADD_PADDING_AND_PSK                3
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-08 02:21:56 +08:00
										 |  |  | #define F5_WORKAROUND_MIN_MSG_LEN   0x7f
 | 
					
						
							| 
									
										
										
										
											2017-03-16 20:11:23 +08:00
										 |  |  | #define F5_WORKAROUND_MAX_MSG_LEN   0x200
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-16 23:09:59 +08:00
										 |  |  | static const char *sessionfile = NULL; | 
					
						
							|  |  |  | /* Dummy ALPN protocols used to pad out the size of the ClientHello */ | 
					
						
							| 
									
										
										
										
											2021-03-23 00:56:36 +08:00
										 |  |  | /* ASCII 'O' = 79 = 0x4F = EBCDIC '|'*/ | 
					
						
							|  |  |  | #ifdef CHARSET_EBCDIC
 | 
					
						
							| 
									
										
										
										
											2017-03-16 23:09:59 +08:00
										 |  |  | static const char alpn_prots[] = | 
					
						
							| 
									
										
										
										
											2021-03-23 00:56:36 +08:00
										 |  |  |     "|1234567890123456789012345678901234567890123456789012345678901234567890123456789" | 
					
						
							|  |  |  |     "|1234567890123456789012345678901234567890123456789012345678901234567890123456789"; | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | static const char alpn_prots[] = | 
					
						
							|  |  |  |     "O1234567890123456789012345678901234567890123456789012345678901234567890123456789" | 
					
						
							|  |  |  |     "O1234567890123456789012345678901234567890123456789012345678901234567890123456789"; | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2015-07-27 19:04:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-16 20:11:23 +08:00
										 |  |  | static int test_client_hello(int currtest) | 
					
						
							| 
									
										
										
										
											2015-07-27 19:04:47 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     SSL_CTX *ctx; | 
					
						
							| 
									
										
										
										
											2016-11-24 17:19:04 +08:00
										 |  |  |     SSL *con = NULL; | 
					
						
							| 
									
										
										
										
											2015-07-27 19:04:47 +08:00
										 |  |  |     BIO *rbio; | 
					
						
							|  |  |  |     BIO *wbio; | 
					
						
							|  |  |  |     long len; | 
					
						
							|  |  |  |     unsigned char *data; | 
					
						
							| 
									
										
										
										
											2019-03-29 16:42:37 +08:00
										 |  |  |     PACKET pkt, pkt2, pkt3; | 
					
						
							| 
									
										
										
										
											2015-07-27 19:04:47 +08:00
										 |  |  |     char *dummytick = "Hello World!"; | 
					
						
							| 
									
										
										
										
											2017-04-12 00:36:01 +08:00
										 |  |  |     unsigned int type = 0; | 
					
						
							| 
									
										
										
										
											2015-07-27 19:04:47 +08:00
										 |  |  |     int testresult = 0; | 
					
						
							| 
									
										
										
										
											2017-03-16 20:11:23 +08:00
										 |  |  |     size_t msglen; | 
					
						
							|  |  |  |     BIO *sessbio = NULL; | 
					
						
							|  |  |  |     SSL_SESSION *sess = NULL; | 
					
						
							| 
									
										
										
										
											2015-07-27 19:04:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-16 23:09:59 +08:00
										 |  |  | #ifdef OPENSSL_NO_TLS1_3
 | 
					
						
							|  |  |  |     if (currtest == TEST_ADD_PADDING_AND_PSK) | 
					
						
							|  |  |  |         return 1; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-29 16:42:37 +08:00
										 |  |  |     memset(&pkt, 0, sizeof(pkt)); | 
					
						
							|  |  |  |     memset(&pkt2, 0, sizeof(pkt2)); | 
					
						
							|  |  |  |     memset(&pkt3, 0, sizeof(pkt3)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-27 19:04:47 +08:00
										 |  |  |     /*
 | 
					
						
							|  |  |  |      * For each test set up an SSL_CTX and SSL and see what ClientHello gets | 
					
						
							|  |  |  |      * produced when we try to connect | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2017-03-16 20:11:23 +08:00
										 |  |  |     ctx = SSL_CTX_new(TLS_method()); | 
					
						
							| 
									
										
										
										
											2017-04-12 00:36:01 +08:00
										 |  |  |     if (!TEST_ptr(ctx)) | 
					
						
							| 
									
										
										
										
											2017-03-16 20:11:23 +08:00
										 |  |  |         goto end; | 
					
						
							| 
									
										
										
										
											2018-12-10 03:53:05 +08:00
										 |  |  |     if (!TEST_true(SSL_CTX_set_max_proto_version(ctx, 0))) | 
					
						
							| 
									
										
										
										
											2018-03-19 16:08:06 +08:00
										 |  |  |         goto end; | 
					
						
							| 
									
										
										
										
											2016-11-09 00:10:21 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-16 20:11:23 +08:00
										 |  |  |     switch(currtest) { | 
					
						
							|  |  |  |     case TEST_SET_SESSION_TICK_DATA_VER_NEG: | 
					
						
							| 
									
										
										
										
											2018-02-09 18:19:14 +08:00
										 |  |  | #if !defined(OPENSSL_NO_TLS1_3) && defined(OPENSSL_NO_TLS1_2)
 | 
					
						
							|  |  |  |         /* TLSv1.3 is enabled and TLSv1.2 is disabled so can't do this test */ | 
					
						
							| 
									
										
										
										
											2019-05-31 11:20:54 +08:00
										 |  |  |         SSL_CTX_free(ctx); | 
					
						
							| 
									
										
										
										
											2018-02-09 18:19:14 +08:00
										 |  |  |         return 1; | 
					
						
							|  |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2016-11-23 23:38:32 +08:00
										 |  |  |         /* Testing for session tickets <= TLS1.2; not relevant for 1.3 */ | 
					
						
							| 
									
										
										
										
											2017-04-12 00:36:01 +08:00
										 |  |  |         if (!TEST_true(SSL_CTX_set_max_proto_version(ctx, TLS1_2_VERSION))) | 
					
						
							| 
									
										
										
										
											2016-11-09 00:10:21 +08:00
										 |  |  |             goto end; | 
					
						
							| 
									
										
										
										
											2018-02-09 18:19:14 +08:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2017-03-16 20:11:23 +08:00
										 |  |  |         break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     case TEST_ADD_PADDING_AND_PSK: | 
					
						
							| 
									
										
										
										
											2018-02-07 18:55:02 +08:00
										 |  |  |         /*
 | 
					
						
							|  |  |  |          * In this case we're doing TLSv1.3 and we're sending a PSK so the | 
					
						
							|  |  |  |          * ClientHello is already going to be quite long. To avoid getting one | 
					
						
							|  |  |  |          * that is too long for this test we use a restricted ciphersuite list | 
					
						
							|  |  |  |          */ | 
					
						
							| 
									
										
										
										
											2018-11-27 05:58:52 +08:00
										 |  |  |         if (!TEST_false(SSL_CTX_set_cipher_list(ctx, ""))) | 
					
						
							| 
									
										
										
										
											2018-02-07 18:55:02 +08:00
										 |  |  |             goto end; | 
					
						
							| 
									
										
										
										
											2018-11-27 05:58:52 +08:00
										 |  |  |         ERR_clear_error(); | 
					
						
							| 
									
										
										
										
											2018-02-07 18:55:02 +08:00
										 |  |  |          /* Fall through */ | 
					
						
							| 
									
										
										
										
											2017-03-16 20:11:23 +08:00
										 |  |  |     case TEST_ADD_PADDING: | 
					
						
							|  |  |  |     case TEST_PADDING_NOT_NEEDED: | 
					
						
							|  |  |  |         SSL_CTX_set_options(ctx, SSL_OP_TLSEXT_PADDING); | 
					
						
							| 
									
										
										
										
											2017-11-07 18:45:43 +08:00
										 |  |  |         /* Make sure we get a consistent size across TLS versions */ | 
					
						
							|  |  |  |         SSL_CTX_clear_options(ctx, SSL_OP_ENABLE_MIDDLEBOX_COMPAT); | 
					
						
							| 
									
										
										
										
											2017-03-16 20:11:23 +08:00
										 |  |  |         /*
 | 
					
						
							| 
									
										
										
										
											2017-09-04 15:45:12 +08:00
										 |  |  |          * Add some dummy ALPN protocols so that the ClientHello is at least | 
					
						
							| 
									
										
										
										
											2017-03-16 20:11:23 +08:00
										 |  |  |          * F5_WORKAROUND_MIN_MSG_LEN bytes long - meaning padding will be | 
					
						
							| 
									
										
										
										
											2017-09-04 15:45:12 +08:00
										 |  |  |          * needed. | 
					
						
							| 
									
										
										
										
											2017-03-16 20:11:23 +08:00
										 |  |  |          */ | 
					
						
							| 
									
										
										
										
											2018-02-27 21:02:00 +08:00
										 |  |  |         if (currtest == TEST_ADD_PADDING) { | 
					
						
							|  |  |  |              if (!TEST_false(SSL_CTX_set_alpn_protos(ctx, | 
					
						
							| 
									
										
										
										
											2017-09-04 15:45:12 +08:00
										 |  |  |                                     (unsigned char *)alpn_prots, | 
					
						
							| 
									
										
										
										
											2018-02-27 21:02:00 +08:00
										 |  |  |                                     sizeof(alpn_prots) - 1))) | 
					
						
							|  |  |  |                 goto end; | 
					
						
							|  |  |  |         /*
 | 
					
						
							|  |  |  |          * Otherwise we need to make sure we have a small enough message to | 
					
						
							|  |  |  |          * not need padding. | 
					
						
							|  |  |  |          */ | 
					
						
							|  |  |  |         } else if (!TEST_true(SSL_CTX_set_cipher_list(ctx, | 
					
						
							| 
									
										
										
										
											2018-03-12 18:48:32 +08:00
										 |  |  |                               "AES128-SHA")) | 
					
						
							|  |  |  |                    || !TEST_true(SSL_CTX_set_ciphersuites(ctx, | 
					
						
							|  |  |  |                                  "TLS_AES_128_GCM_SHA256"))) { | 
					
						
							| 
									
										
										
										
											2016-11-09 00:10:21 +08:00
										 |  |  |             goto end; | 
					
						
							| 
									
										
										
										
											2018-02-27 21:02:00 +08:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2017-03-16 20:11:23 +08:00
										 |  |  |         break; | 
					
						
							| 
									
										
										
										
											2015-07-27 19:04:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-16 20:11:23 +08:00
										 |  |  |     default: | 
					
						
							|  |  |  |         goto end; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2016-11-09 00:10:21 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-16 20:11:23 +08:00
										 |  |  |     con = SSL_new(ctx); | 
					
						
							| 
									
										
										
										
											2017-04-12 00:36:01 +08:00
										 |  |  |     if (!TEST_ptr(con)) | 
					
						
							| 
									
										
										
										
											2017-03-16 20:11:23 +08:00
										 |  |  |         goto end; | 
					
						
							| 
									
										
										
										
											2015-07-27 19:04:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-16 20:11:23 +08:00
										 |  |  |     if (currtest == TEST_ADD_PADDING_AND_PSK) { | 
					
						
							|  |  |  |         sessbio = BIO_new_file(sessionfile, "r"); | 
					
						
							| 
									
										
										
										
											2017-04-12 00:36:01 +08:00
										 |  |  |         if (!TEST_ptr(sessbio)) { | 
					
						
							|  |  |  |             TEST_info("Unable to open session.pem"); | 
					
						
							| 
									
										
										
										
											2017-03-16 20:11:23 +08:00
										 |  |  |             goto end; | 
					
						
							| 
									
										
										
										
											2015-07-27 19:04:47 +08:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2017-03-16 20:11:23 +08:00
										 |  |  |         sess = PEM_read_bio_SSL_SESSION(sessbio, NULL, NULL, NULL); | 
					
						
							| 
									
										
										
										
											2017-04-12 00:36:01 +08:00
										 |  |  |         if (!TEST_ptr(sess)) { | 
					
						
							|  |  |  |             TEST_info("Unable to load SSL_SESSION"); | 
					
						
							| 
									
										
										
										
											2015-07-27 19:04:47 +08:00
										 |  |  |             goto end; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2017-03-16 20:11:23 +08:00
										 |  |  |         /*
 | 
					
						
							|  |  |  |          * We reset the creation time so that we don't discard the session as | 
					
						
							|  |  |  |          * too old. | 
					
						
							|  |  |  |          */ | 
					
						
							| 
									
										
										
										
											2017-11-12 05:23:12 +08:00
										 |  |  |         if (!TEST_true(SSL_SESSION_set_time(sess, (long)time(NULL))) | 
					
						
							| 
									
										
										
										
											2017-04-12 00:36:01 +08:00
										 |  |  |                 || !TEST_true(SSL_set_session(con, sess))) | 
					
						
							| 
									
										
										
										
											2016-08-05 21:58:32 +08:00
										 |  |  |             goto end; | 
					
						
							| 
									
										
										
										
											2017-03-16 20:11:23 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2016-08-05 21:58:32 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-16 20:11:23 +08:00
										 |  |  |     rbio = BIO_new(BIO_s_mem()); | 
					
						
							|  |  |  |     wbio = BIO_new(BIO_s_mem()); | 
					
						
							| 
									
										
										
										
											2017-04-12 00:36:01 +08:00
										 |  |  |     if (!TEST_ptr(rbio)|| !TEST_ptr(wbio)) { | 
					
						
							| 
									
										
										
										
											2017-03-16 20:11:23 +08:00
										 |  |  |         BIO_free(rbio); | 
					
						
							|  |  |  |         BIO_free(wbio); | 
					
						
							|  |  |  |         goto end; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2016-08-05 21:58:32 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-16 20:11:23 +08:00
										 |  |  |     SSL_set_bio(con, rbio, wbio); | 
					
						
							|  |  |  |     SSL_set_connect_state(con); | 
					
						
							| 
									
										
										
										
											2016-08-05 21:58:32 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-16 20:11:23 +08:00
										 |  |  |     if (currtest == TEST_SET_SESSION_TICK_DATA_VER_NEG) { | 
					
						
							| 
									
										
										
										
											2017-04-12 00:36:01 +08:00
										 |  |  |         if (!TEST_true(SSL_set_session_ticket_ext(con, dummytick, | 
					
						
							|  |  |  |                                                   strlen(dummytick)))) | 
					
						
							| 
									
										
										
										
											2015-07-27 19:04:47 +08:00
										 |  |  |             goto end; | 
					
						
							| 
									
										
										
										
											2017-03-16 20:11:23 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2016-08-05 21:58:32 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-12 00:36:01 +08:00
										 |  |  |     if (!TEST_int_le(SSL_connect(con), 0)) { | 
					
						
							| 
									
										
										
										
											2017-03-16 20:11:23 +08:00
										 |  |  |         /* This shouldn't succeed because we don't have a server! */ | 
					
						
							|  |  |  |         goto end; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2016-08-05 21:58:32 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-22 10:33:32 +08:00
										 |  |  |     if (!TEST_long_ge(len = BIO_get_mem_data(wbio, (char **)&data), 0) | 
					
						
							|  |  |  |             || !TEST_true(PACKET_buf_init(&pkt, data, len)) | 
					
						
							| 
									
										
										
										
											2017-04-12 00:36:01 +08:00
										 |  |  |                /* Skip the record header */ | 
					
						
							|  |  |  |             || !PACKET_forward(&pkt, SSL3_RT_HEADER_LENGTH)) | 
					
						
							| 
									
										
										
										
											2017-03-16 20:11:23 +08:00
										 |  |  |         goto end; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     msglen = PACKET_remaining(&pkt); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Skip the handshake message header */ | 
					
						
							| 
									
										
										
										
											2017-04-12 00:36:01 +08:00
										 |  |  |     if (!TEST_true(PACKET_forward(&pkt, SSL3_HM_HEADER_LENGTH)) | 
					
						
							|  |  |  |                /* Skip client version and random */ | 
					
						
							|  |  |  |             || !TEST_true(PACKET_forward(&pkt, CLIENT_VERSION_LEN | 
					
						
							|  |  |  |                                                + SSL3_RANDOM_SIZE)) | 
					
						
							|  |  |  |                /* Skip session id */ | 
					
						
							|  |  |  |             || !TEST_true(PACKET_get_length_prefixed_1(&pkt, &pkt2)) | 
					
						
							|  |  |  |                /* Skip ciphers */ | 
					
						
							|  |  |  |             || !TEST_true(PACKET_get_length_prefixed_2(&pkt, &pkt2)) | 
					
						
							|  |  |  |                /* Skip compression */ | 
					
						
							|  |  |  |             || !TEST_true(PACKET_get_length_prefixed_1(&pkt, &pkt2)) | 
					
						
							|  |  |  |                /* Extensions len */ | 
					
						
							|  |  |  |             || !TEST_true(PACKET_as_length_prefixed_2(&pkt, &pkt2))) | 
					
						
							| 
									
										
										
										
											2017-03-16 20:11:23 +08:00
										 |  |  |         goto end; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Loop through all extensions */ | 
					
						
							|  |  |  |     while (PACKET_remaining(&pkt2)) { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-12 00:36:01 +08:00
										 |  |  |         if (!TEST_true(PACKET_get_net_2(&pkt2, &type)) | 
					
						
							|  |  |  |                 || !TEST_true(PACKET_get_length_prefixed_2(&pkt2, &pkt3))) | 
					
						
							| 
									
										
										
										
											2015-07-27 19:04:47 +08:00
										 |  |  |             goto end; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-16 20:11:23 +08:00
										 |  |  |         if (type == TLSEXT_TYPE_session_ticket) { | 
					
						
							|  |  |  |             if (currtest == TEST_SET_SESSION_TICK_DATA_VER_NEG) { | 
					
						
							| 
									
										
										
										
											2017-04-12 00:36:01 +08:00
										 |  |  |                 if (TEST_true(PACKET_equal(&pkt3, dummytick, | 
					
						
							|  |  |  |                                            strlen(dummytick)))) { | 
					
						
							| 
									
										
										
										
											2017-03-16 20:11:23 +08:00
										 |  |  |                     /* Ticket data is as we expected */ | 
					
						
							|  |  |  |                     testresult = 1; | 
					
						
							| 
									
										
										
										
											2015-07-27 19:04:47 +08:00
										 |  |  |                 } | 
					
						
							| 
									
										
										
										
											2017-04-12 00:36:01 +08:00
										 |  |  |                 goto end; | 
					
						
							| 
									
										
										
										
											2015-07-27 19:04:47 +08:00
										 |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2017-03-16 20:11:23 +08:00
										 |  |  |         if (type == TLSEXT_TYPE_padding) { | 
					
						
							| 
									
										
										
										
											2017-04-12 00:36:01 +08:00
										 |  |  |             if (!TEST_false(currtest == TEST_PADDING_NOT_NEEDED)) | 
					
						
							|  |  |  |                 goto end; | 
					
						
							|  |  |  |             else if (TEST_true(currtest == TEST_ADD_PADDING | 
					
						
							|  |  |  |                     || currtest == TEST_ADD_PADDING_AND_PSK)) | 
					
						
							|  |  |  |                 testresult = TEST_true(msglen == F5_WORKAROUND_MAX_MSG_LEN); | 
					
						
							| 
									
										
										
										
											2015-07-27 19:04:47 +08:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-12 00:36:01 +08:00
										 |  |  |     if (currtest == TEST_PADDING_NOT_NEEDED) | 
					
						
							|  |  |  |         testresult = 1; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-16 20:11:23 +08:00
										 |  |  | end: | 
					
						
							|  |  |  |     SSL_free(con); | 
					
						
							|  |  |  |     SSL_CTX_free(ctx); | 
					
						
							|  |  |  |     SSL_SESSION_free(sess); | 
					
						
							|  |  |  |     BIO_free(sessbio); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return testresult; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-16 10:36:01 +08:00
										 |  |  | OPT_TEST_DECLARE_USAGE("sessionfile\n") | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-18 09:48:27 +08:00
										 |  |  | int setup_tests(void) | 
					
						
							| 
									
										
										
										
											2017-03-16 20:11:23 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2020-01-30 23:30:17 +08:00
										 |  |  |     if (!test_skip_common_options()) { | 
					
						
							|  |  |  |         TEST_error("Error parsing test options\n"); | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-18 09:48:27 +08:00
										 |  |  |     if (!TEST_ptr(sessionfile = test_get_argument(0))) | 
					
						
							|  |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2017-03-16 20:11:23 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     ADD_ALL_TESTS(test_client_hello, TOTAL_NUM_TESTS); | 
					
						
							| 
									
										
										
										
											2017-07-18 09:48:27 +08:00
										 |  |  |     return 1; | 
					
						
							| 
									
										
										
										
											2015-07-27 19:04:47 +08:00
										 |  |  | } |