123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183 |
- /*
- * Copyright 2016-2018 The OpenSSL Project Authors. All Rights Reserved.
- *
- * Licensed under the OpenSSL licenses, (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- * https://www.openssl.org/source/license.html
- * or in the file LICENSE in the source distribution.
- */
- #include <string.h>
- #include <openssl/ssl.h>
- #include <openssl/bio.h>
- #include <openssl/err.h>
- #include "../ssl/packet_locl.h"
- #include "ssltestlib.h"
- #include "testutil.h"
- struct async_ctrs {
- unsigned int rctr;
- unsigned int wctr;
- };
- static SSL_CTX *serverctx = NULL;
- static SSL_CTX *clientctx = NULL;
- #define MAX_ATTEMPTS 100
- /*
- * There are 9 passes in the tests
- * 0 = control test
- * tests during writes
- * 1 = free buffers
- * 2 = + allocate buffers after free
- * 3 = + allocate buffers again
- * 4 = + free buffers after allocation
- * tests during reads
- * 5 = + free buffers
- * 6 = + free buffers again
- * 7 = + allocate buffers after free
- * 8 = + free buffers after allocation
- */
- static int test_func(int test)
- {
- int result = 0;
- SSL *serverssl = NULL, *clientssl = NULL;
- int ret;
- size_t i, j;
- const char testdata[] = "Test data";
- char buf[sizeof(testdata)];
- if (!TEST_true(create_ssl_objects(serverctx, clientctx, &serverssl, &clientssl,
- NULL, NULL))) {
- TEST_error("Test %d failed: Create SSL objects failed\n", test);
- goto end;
- }
- if (!TEST_true(create_ssl_connection(serverssl, clientssl, SSL_ERROR_NONE))) {
- TEST_error("Test %d failed: Create SSL connection failed\n", test);
- goto end;
- }
- /*
- * Send and receive some test data. Do the whole thing twice to ensure
- * we hit at least one async event in both reading and writing
- */
- for (j = 0; j < 2; j++) {
- int len;
- /*
- * Write some test data. It should never take more than 2 attempts
- * (the first one might be a retryable fail).
- */
- for (ret = -1, i = 0, len = 0; len != sizeof(testdata) && i < 2;
- i++) {
- /* test == 0 mean to free/allocate = control */
- if (test >= 1 && !TEST_true(SSL_free_buffers(clientssl)))
- goto end;
- if (test >= 2 && !TEST_true(SSL_alloc_buffers(clientssl)))
- goto end;
- /* allocate a second time */
- if (test >= 3 && !TEST_true(SSL_alloc_buffers(clientssl)))
- goto end;
- if (test >= 4 && !TEST_true(SSL_free_buffers(clientssl)))
- goto end;
- ret = SSL_write(clientssl, testdata + len,
- sizeof(testdata) - len);
- if (ret > 0) {
- len += ret;
- } else {
- int ssl_error = SSL_get_error(clientssl, ret);
- if (ssl_error == SSL_ERROR_SYSCALL ||
- ssl_error == SSL_ERROR_SSL) {
- TEST_error("Test %d failed: Failed to write app data\n", test);
- goto end;
- }
- }
- }
- if (!TEST_size_t_eq(len, sizeof(testdata)))
- goto end;
- /*
- * Now read the test data. It may take more attempts here because
- * it could fail once for each byte read, including all overhead
- * bytes from the record header/padding etc.
- */
- for (ret = -1, i = 0, len = 0; len != sizeof(testdata) &&
- i < MAX_ATTEMPTS; i++)
- {
- if (test >= 5 && !TEST_true(SSL_free_buffers(serverssl)))
- goto end;
- /* free a second time */
- if (test >= 6 && !TEST_true(SSL_free_buffers(serverssl)))
- goto end;
- if (test >= 7 && !TEST_true(SSL_alloc_buffers(serverssl)))
- goto end;
- if (test >= 8 && !TEST_true(SSL_free_buffers(serverssl)))
- goto end;
- ret = SSL_read(serverssl, buf + len, sizeof(buf) - len);
- if (ret > 0) {
- len += ret;
- } else {
- int ssl_error = SSL_get_error(serverssl, ret);
- if (ssl_error == SSL_ERROR_SYSCALL ||
- ssl_error == SSL_ERROR_SSL) {
- TEST_error("Test %d failed: Failed to read app data\n", test);
- goto end;
- }
- }
- }
- if (!TEST_mem_eq(buf, len, testdata, sizeof(testdata)))
- goto end;
- }
- result = 1;
- end:
- if (!result)
- ERR_print_errors_fp(stderr);
- SSL_free(clientssl);
- SSL_free(serverssl);
- return result;
- }
- int global_init(void)
- {
- CRYPTO_set_mem_debug(1);
- CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_ON);
- return 1;
- }
- int setup_tests(void)
- {
- char *cert, *pkey;
- if (!TEST_ptr(cert = test_get_argument(0))
- || !TEST_ptr(pkey = test_get_argument(1)))
- return 0;
- if (!create_ssl_ctx_pair(TLS_server_method(), TLS_client_method(),
- TLS1_VERSION, TLS_MAX_VERSION,
- &serverctx, &clientctx, cert, pkey)) {
- TEST_error("Failed to create SSL_CTX pair\n");
- return 0;
- }
- ADD_ALL_TESTS(test_func, 9);
- return 1;
- }
- void cleanup_tests(void)
- {
- SSL_CTX_free(clientctx);
- SSL_CTX_free(serverctx);
- }
|