| 
									
										
										
										
											2016-10-12 23:13:31 +08:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2020-05-15 21:09:49 +08:00
										 |  |  |  * Copyright 2016-2020 The OpenSSL Project Authors. All Rights Reserved. | 
					
						
							| 
									
										
										
										
											2016-10-12 23:13:31 +08:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2018-12-06 20:05:25 +08:00
										 |  |  |  * Licensed under the Apache License 2.0 (the "License").  You may not use | 
					
						
							| 
									
										
										
										
											2016-10-12 23:13:31 +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
 | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <stdio.h>
 | 
					
						
							|  |  |  | #include <string.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <openssl/dtls1.h>
 | 
					
						
							|  |  |  | #include <openssl/ssl.h>
 | 
					
						
							|  |  |  | #include <openssl/err.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "ssltestlib.h"
 | 
					
						
							| 
									
										
										
										
											2017-04-27 00:20:44 +08:00
										 |  |  | #include "testutil.h"
 | 
					
						
							| 
									
										
										
										
											2016-10-12 23:13:31 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-03 22:06:20 +08:00
										 |  |  | /* for SSL_READ_ETM() */ | 
					
						
							| 
									
										
										
										
											2019-09-28 06:45:40 +08:00
										 |  |  | #include "../ssl/ssl_local.h"
 | 
					
						
							| 
									
										
										
										
											2016-10-12 23:13:31 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-12-20 06:30:24 +08:00
										 |  |  | DEFINE_STACK_OF(SSL_CIPHER) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-12 23:13:31 +08:00
										 |  |  | static int debug = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static unsigned int clnt_psk_callback(SSL *ssl, const char *hint, | 
					
						
							|  |  |  |                                       char *ident, unsigned int max_ident_len, | 
					
						
							|  |  |  |                                       unsigned char *psk, | 
					
						
							|  |  |  |                                       unsigned int max_psk_len) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2016-11-03 22:42:11 +08:00
										 |  |  |     BIO_snprintf(ident, max_ident_len, "psk"); | 
					
						
							| 
									
										
										
										
											2016-10-12 23:13:31 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (max_psk_len > 20) | 
					
						
							|  |  |  |         max_psk_len = 20; | 
					
						
							|  |  |  |     memset(psk, 0x5a, max_psk_len); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return max_psk_len; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static unsigned int srvr_psk_callback(SSL *ssl, const char *identity, | 
					
						
							|  |  |  |                                       unsigned char *psk, | 
					
						
							|  |  |  |                                       unsigned int max_psk_len) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (max_psk_len > 20) | 
					
						
							|  |  |  |         max_psk_len = 20; | 
					
						
							|  |  |  |     memset(psk, 0x5a, max_psk_len); | 
					
						
							|  |  |  |     return max_psk_len; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int mtu_test(SSL_CTX *ctx, const char *cs, int no_etm) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     SSL *srvr_ssl = NULL, *clnt_ssl = NULL; | 
					
						
							|  |  |  |     BIO *sc_bio = NULL; | 
					
						
							|  |  |  |     int i; | 
					
						
							|  |  |  |     size_t s; | 
					
						
							|  |  |  |     size_t mtus[30]; | 
					
						
							|  |  |  |     unsigned char buf[600]; | 
					
						
							|  |  |  |     int rv = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     memset(buf, 0x5a, sizeof(buf)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-27 00:20:44 +08:00
										 |  |  |     if (!TEST_true(create_ssl_objects(ctx, ctx, &srvr_ssl, &clnt_ssl, | 
					
						
							|  |  |  |                                       NULL, NULL))) | 
					
						
							|  |  |  |         goto end; | 
					
						
							| 
									
										
										
										
											2016-10-12 23:13:31 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (no_etm) | 
					
						
							|  |  |  |         SSL_set_options(srvr_ssl, SSL_OP_NO_ENCRYPT_THEN_MAC); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-27 00:20:44 +08:00
										 |  |  |     if (!TEST_true(SSL_set_cipher_list(srvr_ssl, cs)) | 
					
						
							|  |  |  |             || !TEST_true(SSL_set_cipher_list(clnt_ssl, cs)) | 
					
						
							|  |  |  |             || !TEST_ptr(sc_bio = SSL_get_rbio(srvr_ssl)) | 
					
						
							|  |  |  |             || !TEST_true(create_ssl_connection(clnt_ssl, srvr_ssl, | 
					
						
							|  |  |  |                                                 SSL_ERROR_NONE))) | 
					
						
							|  |  |  |         goto end; | 
					
						
							| 
									
										
										
										
											2016-10-12 23:13:31 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (debug) | 
					
						
							| 
									
										
										
										
											2017-06-21 06:39:54 +08:00
										 |  |  |         TEST_info("Channel established"); | 
					
						
							| 
									
										
										
										
											2016-10-12 23:13:31 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* For record MTU values between 500 and 539, call DTLS_get_data_mtu()
 | 
					
						
							|  |  |  |      * to query the payload MTU which will fit. */ | 
					
						
							|  |  |  |     for (i = 0; i < 30; i++) { | 
					
						
							|  |  |  |         SSL_set_mtu(clnt_ssl, 500 + i); | 
					
						
							|  |  |  |         mtus[i] = DTLS_get_data_mtu(clnt_ssl); | 
					
						
							|  |  |  |         if (debug) | 
					
						
							| 
									
										
										
										
											2017-04-27 00:20:44 +08:00
										 |  |  |             TEST_info("%s%s MTU for record mtu %d = %lu", | 
					
						
							|  |  |  |                       cs, no_etm ? "-noEtM" : "", | 
					
						
							|  |  |  |                       500 + i, (unsigned long)mtus[i]); | 
					
						
							|  |  |  |         if (!TEST_size_t_ne(mtus[i], 0)) { | 
					
						
							|  |  |  |             TEST_info("Cipher %s MTU %d", cs, 500 + i); | 
					
						
							|  |  |  |             goto end; | 
					
						
							| 
									
										
										
										
											2016-10-12 23:13:31 +08:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Now get out of the way */ | 
					
						
							|  |  |  |     SSL_set_mtu(clnt_ssl, 1000); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-27 00:20:44 +08:00
										 |  |  |     /*
 | 
					
						
							|  |  |  |      * Now for all values in the range of payload MTUs, send a payload of | 
					
						
							|  |  |  |      * that size and see what actual record size we end up with. | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2016-10-12 23:13:31 +08:00
										 |  |  |     for (s = mtus[0]; s <= mtus[29]; s++) { | 
					
						
							|  |  |  |         size_t reclen; | 
					
						
							| 
									
										
										
										
											2017-04-27 00:20:44 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |         if (!TEST_int_eq(SSL_write(clnt_ssl, buf, s), (int)s)) | 
					
						
							|  |  |  |             goto end; | 
					
						
							| 
									
										
										
										
											2016-10-12 23:13:31 +08:00
										 |  |  |         reclen = BIO_read(sc_bio, buf, sizeof(buf)); | 
					
						
							|  |  |  |         if (debug) | 
					
						
							| 
									
										
										
										
											2017-06-21 06:39:54 +08:00
										 |  |  |             TEST_info("record %zu for payload %zu", reclen, s); | 
					
						
							| 
									
										
										
										
											2016-10-12 23:13:31 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |         for (i = 0; i < 30; i++) { | 
					
						
							|  |  |  |             /* DTLS_get_data_mtu() with record MTU 500+i returned mtus[i] ... */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-27 00:20:44 +08:00
										 |  |  |             if (!TEST_false(s <= mtus[i] && reclen > (size_t)(500 + i))) { | 
					
						
							|  |  |  |                 /*
 | 
					
						
							|  |  |  |                  * We sent a packet smaller than or equal to mtus[j] and | 
					
						
							|  |  |  |                  * that made a record *larger* than the record MTU 500+j! | 
					
						
							|  |  |  |                  */ | 
					
						
							|  |  |  |                 TEST_error("%s: s=%lu, mtus[i]=%lu, reclen=%lu, i=%d", | 
					
						
							|  |  |  |                            cs, (unsigned long)s, (unsigned long)mtus[i], | 
					
						
							|  |  |  |                            (unsigned long)reclen, 500 + i); | 
					
						
							|  |  |  |                 goto end; | 
					
						
							| 
									
										
										
										
											2016-10-12 23:13:31 +08:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2017-04-27 00:20:44 +08:00
										 |  |  |             if (!TEST_false(s > mtus[i] && reclen <= (size_t)(500 + i))) { | 
					
						
							|  |  |  |                 /*
 | 
					
						
							|  |  |  |                  * We sent a *larger* packet than mtus[i] and that *still* | 
					
						
							| 
									
										
										
										
											2016-10-12 23:13:31 +08:00
										 |  |  |                  * fits within the record MTU 500+i, so DTLS_get_data_mtu() | 
					
						
							| 
									
										
										
										
											2017-04-27 00:20:44 +08:00
										 |  |  |                  * was overly pessimistic. | 
					
						
							|  |  |  |                  */ | 
					
						
							|  |  |  |                 TEST_error("%s: s=%lu, mtus[i]=%lu, reclen=%lu, i=%d", | 
					
						
							|  |  |  |                            cs, (unsigned long)s, (unsigned long)mtus[i], | 
					
						
							|  |  |  |                            (unsigned long)reclen, 500 + i); | 
					
						
							|  |  |  |                 goto end; | 
					
						
							| 
									
										
										
										
											2016-10-12 23:13:31 +08:00
										 |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     rv = 1; | 
					
						
							| 
									
										
										
										
											2017-02-03 22:06:20 +08:00
										 |  |  |     if (SSL_READ_ETM(clnt_ssl)) | 
					
						
							| 
									
										
										
										
											2016-10-12 23:13:31 +08:00
										 |  |  |         rv = 2; | 
					
						
							| 
									
										
										
										
											2017-04-27 00:20:44 +08:00
										 |  |  |  end: | 
					
						
							| 
									
										
										
										
											2016-10-12 23:13:31 +08:00
										 |  |  |     SSL_free(clnt_ssl); | 
					
						
							|  |  |  |     SSL_free(srvr_ssl); | 
					
						
							|  |  |  |     return rv; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-27 00:20:44 +08:00
										 |  |  | static int run_mtu_tests(void) | 
					
						
							| 
									
										
										
										
											2016-10-12 23:13:31 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2017-04-27 00:20:44 +08:00
										 |  |  |     SSL_CTX *ctx = NULL; | 
					
						
							| 
									
										
										
										
											2016-10-12 23:13:31 +08:00
										 |  |  |     STACK_OF(SSL_CIPHER) *ciphers; | 
					
						
							| 
									
										
										
										
											2017-04-27 00:20:44 +08:00
										 |  |  |     int i, ret = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!TEST_ptr(ctx = SSL_CTX_new(DTLS_method()))) | 
					
						
							|  |  |  |         goto end; | 
					
						
							| 
									
										
										
										
											2016-10-12 23:13:31 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     SSL_CTX_set_psk_server_callback(ctx, srvr_psk_callback); | 
					
						
							|  |  |  |     SSL_CTX_set_psk_client_callback(ctx, clnt_psk_callback); | 
					
						
							|  |  |  |     SSL_CTX_set_security_level(ctx, 0); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-27 00:20:44 +08:00
										 |  |  |     /*
 | 
					
						
							|  |  |  |      * We only care about iterating over each enc/mac; we don't want to | 
					
						
							|  |  |  |      * repeat the test for each auth/kx variant. So keep life simple and | 
					
						
							|  |  |  |      * only do (non-DH) PSK. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     if (!TEST_true(SSL_CTX_set_cipher_list(ctx, "PSK"))) | 
					
						
							|  |  |  |         goto end; | 
					
						
							| 
									
										
										
										
											2016-10-12 23:13:31 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     ciphers = SSL_CTX_get_ciphers(ctx); | 
					
						
							|  |  |  |     for (i = 0; i < sk_SSL_CIPHER_num(ciphers); i++) { | 
					
						
							|  |  |  |         const SSL_CIPHER *cipher = sk_SSL_CIPHER_value(ciphers, i); | 
					
						
							|  |  |  |         const char *cipher_name = SSL_CIPHER_get_name(cipher); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         /* As noted above, only one test for each enc/mac variant. */ | 
					
						
							| 
									
										
										
										
											2017-04-27 00:20:44 +08:00
										 |  |  |         if (strncmp(cipher_name, "PSK-", 4) != 0) | 
					
						
							| 
									
										
										
										
											2016-10-12 23:13:31 +08:00
										 |  |  |             continue; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-27 00:20:44 +08:00
										 |  |  |         if (!TEST_int_gt(ret = mtu_test(ctx, cipher_name, 0), 0)) | 
					
						
							| 
									
										
										
										
											2016-10-12 23:13:31 +08:00
										 |  |  |             break; | 
					
						
							| 
									
										
										
										
											2017-04-27 00:20:44 +08:00
										 |  |  |         TEST_info("%s OK", cipher_name); | 
					
						
							|  |  |  |         if (ret == 1) | 
					
						
							| 
									
										
										
										
											2016-10-12 23:13:31 +08:00
										 |  |  |             continue; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         /* mtu_test() returns 2 if it used Encrypt-then-MAC */ | 
					
						
							| 
									
										
										
										
											2017-04-27 00:20:44 +08:00
										 |  |  |         if (!TEST_int_gt(ret = mtu_test(ctx, cipher_name, 1), 0)) | 
					
						
							| 
									
										
										
										
											2016-10-12 23:13:31 +08:00
										 |  |  |             break; | 
					
						
							| 
									
										
										
										
											2017-04-27 00:20:44 +08:00
										 |  |  |         TEST_info("%s without EtM OK", cipher_name); | 
					
						
							| 
									
										
										
										
											2016-10-12 23:13:31 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2017-04-27 00:20:44 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |  end: | 
					
						
							| 
									
										
										
										
											2016-10-12 23:13:31 +08:00
										 |  |  |     SSL_CTX_free(ctx); | 
					
						
							| 
									
										
										
										
											2017-04-27 00:20:44 +08:00
										 |  |  |     bio_s_mempacket_test_free(); | 
					
						
							|  |  |  |     return ret; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2016-10-12 23:13:31 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-09 23:09:50 +08:00
										 |  |  | int setup_tests(void) | 
					
						
							| 
									
										
										
										
											2017-04-27 00:20:44 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     ADD_TEST(run_mtu_tests); | 
					
						
							| 
									
										
										
										
											2017-07-18 09:48:27 +08:00
										 |  |  |     return 1; | 
					
						
							| 
									
										
										
										
											2016-10-12 23:13:31 +08:00
										 |  |  | } |