2011-07-26 13:27:22 -07:00
|
|
|
|
/* client.c
|
|
|
|
|
*
|
2017-10-22 15:58:35 -07:00
|
|
|
|
* Copyright (C) 2006-2017 wolfSSL Inc.
|
2011-07-26 13:27:22 -07:00
|
|
|
|
*
|
2016-03-17 16:02:13 -06:00
|
|
|
|
* This file is part of wolfSSL.
|
2011-07-26 13:27:22 -07:00
|
|
|
|
*
|
2015-01-05 14:48:43 -07:00
|
|
|
|
* wolfSSL is free software; you can redistribute it and/or modify
|
2011-07-26 13:27:22 -07:00
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
|
* (at your option) any later version.
|
|
|
|
|
*
|
2015-01-05 14:48:43 -07:00
|
|
|
|
* wolfSSL is distributed in the hope that it will be useful,
|
2011-07-26 13:27:22 -07:00
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
|
* along with this program; if not, write to the Free Software
|
2016-03-17 16:02:13 -06:00
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1335, USA
|
2011-07-26 13:27:22 -07:00
|
|
|
|
*/
|
|
|
|
|
|
2016-03-17 16:02:13 -06:00
|
|
|
|
|
2011-08-24 16:37:16 -07:00
|
|
|
|
#ifdef HAVE_CONFIG_H
|
2014-04-11 16:20:12 +09:00
|
|
|
|
#include <config.h>
|
2011-08-24 16:37:16 -07:00
|
|
|
|
#endif
|
2014-04-11 16:20:12 +09:00
|
|
|
|
|
2017-12-28 07:20:03 +09:00
|
|
|
|
#include <wolfssl/wolfcrypt/settings.h>
|
|
|
|
|
|
2015-01-08 10:02:07 -07:00
|
|
|
|
#include <wolfssl/ssl.h>
|
2014-12-19 15:30:07 -07:00
|
|
|
|
|
2015-11-27 11:31:12 +09:00
|
|
|
|
#if defined(WOLFSSL_MDK_ARM) || defined(WOLFSSL_KEIL_TCP_NET)
|
2014-04-11 16:20:12 +09:00
|
|
|
|
#include <stdio.h>
|
2013-05-19 10:02:13 +09:00
|
|
|
|
#include <string.h>
|
2017-12-28 07:20:03 +09:00
|
|
|
|
#include "rl_fs.h"
|
|
|
|
|
#include "rl_net.h"
|
2013-05-19 10:02:13 +09:00
|
|
|
|
#endif
|
2011-08-04 16:42:55 -06:00
|
|
|
|
|
2015-01-05 14:48:43 -07:00
|
|
|
|
#include <wolfssl/test.h>
|
2011-02-05 11:14:47 -08:00
|
|
|
|
|
2017-09-25 18:47:36 -07:00
|
|
|
|
#include <examples/client/client.h>
|
2018-03-16 12:02:36 -07:00
|
|
|
|
#include <wolfssl/error-ssl.h>
|
2012-09-19 23:38:41 -07:00
|
|
|
|
|
2017-06-26 23:05:32 -07:00
|
|
|
|
#ifndef NO_WOLFSSL_CLIENT
|
|
|
|
|
|
2018-08-17 11:06:40 -06:00
|
|
|
|
#ifdef USE_FAST_MATH
|
|
|
|
|
/* included to inspect the size of FP_MAX_BITS */
|
|
|
|
|
#include <wolfssl/wolfcrypt/tfm.h>
|
|
|
|
|
#endif
|
2019-03-01 16:12:08 -08:00
|
|
|
|
#ifdef HAVE_ECC
|
|
|
|
|
#include <wolfssl/wolfcrypt/ecc.h>
|
|
|
|
|
#endif
|
2018-08-17 11:06:40 -06:00
|
|
|
|
|
2017-04-10 14:19:20 -07:00
|
|
|
|
#ifdef WOLFSSL_ASYNC_CRYPT
|
2016-08-15 13:59:41 -06:00
|
|
|
|
static int devId = INVALID_DEVID;
|
|
|
|
|
#endif
|
|
|
|
|
|
2017-03-06 09:49:05 -08:00
|
|
|
|
#define DEFAULT_TIMEOUT_SEC 2
|
2019-01-11 08:45:34 -08:00
|
|
|
|
#ifndef MAX_NON_BLOCK_SEC
|
|
|
|
|
#define MAX_NON_BLOCK_SEC 10
|
|
|
|
|
#endif
|
2017-03-06 09:49:05 -08:00
|
|
|
|
|
2018-08-02 16:25:38 -07:00
|
|
|
|
#define OCSP_STAPLING 1
|
|
|
|
|
#define OCSP_STAPLINGV2 2
|
|
|
|
|
#define OCSP_STAPLINGV2_MULTI 3
|
|
|
|
|
#define OCSP_STAPLING_OPT_MAX OCSP_STAPLINGV2_MULTI
|
|
|
|
|
|
2015-12-24 15:42:52 -08:00
|
|
|
|
/* Note on using port 0: the client standalone example doesn't utilize the
|
|
|
|
|
* port 0 port sharing; that is used by (1) the server in external control
|
|
|
|
|
* test mode and (2) the testsuite which uses this code and sets up the correct
|
|
|
|
|
* port numbers when the internal thread using the server code using port 0. */
|
2011-02-05 11:14:47 -08:00
|
|
|
|
|
2018-10-20 13:40:01 +09:00
|
|
|
|
static int lng_index = 0;
|
2015-01-05 14:48:43 -07:00
|
|
|
|
#ifdef WOLFSSL_CALLBACKS
|
2011-02-05 11:14:47 -08:00
|
|
|
|
Timeval timeout;
|
2017-06-26 23:05:32 -07:00
|
|
|
|
static int handShakeCB(HandShakeInfo* info)
|
|
|
|
|
{
|
|
|
|
|
(void)info;
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int timeoutCB(TimeoutInfo* info)
|
|
|
|
|
{
|
|
|
|
|
(void)info;
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2011-02-05 11:14:47 -08:00
|
|
|
|
#endif
|
|
|
|
|
|
2014-10-20 09:25:14 -07:00
|
|
|
|
#ifdef HAVE_SESSION_TICKET
|
2017-06-26 23:05:32 -07:00
|
|
|
|
static int sessionTicketCB(WOLFSSL* ssl,
|
|
|
|
|
const unsigned char* ticket, int ticketSz,
|
|
|
|
|
void* ctx)
|
|
|
|
|
{
|
|
|
|
|
(void)ssl;
|
|
|
|
|
(void)ticket;
|
|
|
|
|
printf("Session Ticket CB: ticketSz = %d, ctx = %s\n",
|
|
|
|
|
ticketSz, (char*)ctx);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
2014-10-20 09:25:14 -07:00
|
|
|
|
#endif
|
|
|
|
|
|
Intel QuickAssist (QAT) support and async enhancements/fixes:
* Adds ./configure "--with-intelqa=../QAT1.6”, port files, memory management and README.md (see wolfcrypt/src/port/intel/).
* Added Intel QAT support for RSA public/private (CRT/non-CRT), AES CBC/GCM, ECDH/ECDSA, DH, DES3, SHA, SHA224, SHA256, SHA384, SHA512, MD5 and HMAC.
* wolfSSL async enabled all client and server: PKI, Encrypt/Decrypt, Hashing/HMAC and Certificate Sign/Verify.
* wolfSSL async support in functions: Encrypt, Decrypt, VerifyMAC, BuildMessage, ConfirmSignature, DoCertificate, ParseCertRelative, and MakeSignature.
* wolfCrypt test and benchmark async support added for all HW acceleration.
* wolfCrypt benchmark multi-threading support.
* Added QuickAssist memory overrides for XMALLOC, XFREE and XREALLOC. XREALLOC determines if existing pointer needs reallocated for NUMA.
* Refactor to make sure “heap” is available for async dev init.
* Added async support for all examples for connect, accept, read and write.
* Added new WC_BIGINT (in wolfmath.c) for async hardware support.
* Added async simulator tests for DES3 CBC, AES CBC/GCM.
* Added QAT standalone build for unit testing.
* Added int return code to SHA and MD5 functions.
* Refactor of the async stack variable handling, so async operations have generic args buffer area and cleanup function pointer.
* Combined duplicate code for async push/pop handling.
* Refactor internal.c to add AllocKey / FreeKey.
* Refactor of hash init/free in TLS to use InitHashes and FreeHashes.
* Refactor of the async event->context to use WOLF_EVENT_TYPE_ASYNC_WOLFSSL for WOLFSSL* and WOLF_EVENT_TYPE_ASYNC_WOLFCRYPT for WC_ASYNC_DEV*.
* Suppress error message for WC_PENDING_E.
* Implemented "wolfSSL_EVP_MD_CTX_init" to do memset.
* Cleanup of the openssl compat CTX sizes when async is enabled.
* Cleanup of AES, DES3, DH, SHA, MD5, DES3, DH, HMAC, MD5 for consistency and readability.
* Cleanup of the OPAQUE_LEN.
* Cleanup to use ENCRYPT_LEN instead of sizeof(ssl->arrays.preMasterSecret).
* Changed ssl->arrays.preMasterSecret to use XMALLOC (accelerates HW operations)
* Reduce verbosity with debug enabled for "GetMyVersion", "wolfSSL Using RSA OAEP padding" and "wolfSSL Using RSA PKCSV15 padding".
* Updated RSA un-padding error message so its different than one above it for better debugging.
* Added QAT async enables for each algorithm.
* Refactor of the async init to use _ex.
* Added WC_ASYNC_THRESH_NONE to allow bypass of the async thresholds for testing.
* Reformatted the benchmark results:
PKI: "RSA 2048 private HW 18522 ops took 1.003 sec, avg 0.054 ms, 18467.763 ops/sec"
Crypto/Hashing: SHA-256 SW 350 megs took 1.009 seconds, 346.946 MB/s Cycles per byte = 9.87
* Added min execution time for all benchmarks.
* Moved wc_*GetHash and wc_*RestorePos to appropriate files so use of isCopy flag is local.
* Fix for ECC sign status sometimes being invalid due to uninitialized ECC digest in benchmark.
* Added new DECLARE_VAR/FREE_VAR and DECLARE_ARRAY/FREE_ARRAY macros for helping setup test/benchmark variables to accelerate async.
* Added NO_SW_BENCH option to only run HW bench.
* Added support for PRNG to use hardware SHA256 if _wc devId provided.
* Fix to prevent curve tests from running against wrong curve sizes. Changed wc_ecc_set_curve to match on exact size.
* Added the wc_*GetHash calls to the wolfCrypt tests.
* Added async hardware start/stop to wolfSSL init/cleanup.
* Refactor to add wc_*Copy for hashing context (for async), which replaces wc_*RestorePos.
* Fixes for building with TI hashing (including: SHA224, missing new API’s and building with dummy build for non hw testing). Note: We need to add build test for this `./configure CFLAGS="-DWOLFSSL_TI_HASH -DTI_DUMMY_BUILD”`.
* Added arg checks on wc_*GetHash and wc_*Copy.
* Cleanup of the BuildMD5, BuildSHA, BuildMD5_CertVerify and BuildSHA_CertVerify functions.
* Added new ./configure --enable-asyncthreads, to allow enable/disable of the async threading support. If --enable-asynccrypt set this will be enabled by default if pthread is supported. Allows multi-threaded benchmarks with async simulator.
* Added checks for all hashing to verify valid ->buffLen.
* Fix for SHA512 scan-build warning about un-initialized “W_X”.
* Fix for valgrind un-initialized use of buffer in AllocDer (der->buffer) and BuildTlsFinished handshake_hash.
* Refactor of the benchmarking to use common function for start, check and finish of the stats.
* Fixed issue with ECC cache loading in multi-threading.
* Fix bug with AESNI not aligned code that assumes XMALLOC is 16-byte aligned.
* Added new WC_ASYNC_NO_… options to allow disabling of individual async algorithms. New defines are: WC_ASYNC_NO_CRYPT, WC_ASYNC_NO_PKI and WC_ASYNC_NO_HASH. Additionally each algorithm has a WC_ASYNC_NO_[ALGO] define.
* Added “wolfSSL_GetAllocators” API and fixed the wolfCrypt memcb_test so it restores callback pointers after test is complete (fixes issue with using custom allocators and test breaking it).
2017-04-07 15:46:32 -07:00
|
|
|
|
static int NonBlockingSSL_Connect(WOLFSSL* ssl)
|
2012-10-17 13:13:58 -07:00
|
|
|
|
{
|
2017-06-08 10:32:51 +10:00
|
|
|
|
int ret;
|
|
|
|
|
int error;
|
|
|
|
|
SOCKET_T sockfd;
|
|
|
|
|
int select_ret = 0;
|
2019-01-10 17:12:37 -08:00
|
|
|
|
int elapsedSec = 0;
|
2017-06-08 10:32:51 +10:00
|
|
|
|
|
2015-01-05 14:48:43 -07:00
|
|
|
|
#ifndef WOLFSSL_CALLBACKS
|
2017-06-08 10:32:51 +10:00
|
|
|
|
ret = wolfSSL_connect(ssl);
|
2011-02-05 11:14:47 -08:00
|
|
|
|
#else
|
2017-06-08 10:32:51 +10:00
|
|
|
|
ret = wolfSSL_connect_ex(ssl, handShakeCB, timeoutCB, timeout);
|
2011-02-05 11:14:47 -08:00
|
|
|
|
#endif
|
2017-06-08 10:32:51 +10:00
|
|
|
|
error = wolfSSL_get_error(ssl, 0);
|
|
|
|
|
sockfd = (SOCKET_T)wolfSSL_get_fd(ssl);
|
2012-10-17 13:13:58 -07:00
|
|
|
|
|
2018-03-16 12:02:36 -07:00
|
|
|
|
while (ret != WOLFSSL_SUCCESS &&
|
|
|
|
|
(error == WOLFSSL_ERROR_WANT_READ || error == WOLFSSL_ERROR_WANT_WRITE
|
|
|
|
|
#ifdef WOLFSSL_ASYNC_CRYPT
|
|
|
|
|
|| error == WC_PENDING_E
|
|
|
|
|
#endif
|
|
|
|
|
#ifdef WOLFSSL_NONBLOCK_OCSP
|
|
|
|
|
|| error == OCSP_WANT_READ
|
|
|
|
|
#endif
|
|
|
|
|
)) {
|
2013-05-08 12:49:55 -07:00
|
|
|
|
int currTimeout = 1;
|
2018-03-16 12:02:36 -07:00
|
|
|
|
|
2017-10-11 09:09:52 -07:00
|
|
|
|
if (error == WOLFSSL_ERROR_WANT_READ)
|
2012-10-17 13:13:58 -07:00
|
|
|
|
printf("... client would read block\n");
|
2017-10-11 09:09:52 -07:00
|
|
|
|
else if (error == WOLFSSL_ERROR_WANT_WRITE)
|
2012-10-17 13:13:58 -07:00
|
|
|
|
printf("... client would write block\n");
|
2018-03-16 12:02:36 -07:00
|
|
|
|
|
2016-03-04 10:05:22 -08:00
|
|
|
|
#ifdef WOLFSSL_ASYNC_CRYPT
|
2018-03-16 12:02:36 -07:00
|
|
|
|
if (error == WC_PENDING_E) {
|
2016-08-15 13:59:41 -06:00
|
|
|
|
ret = wolfSSL_AsyncPoll(ssl, WOLF_POLL_FLAG_CHECK_HW);
|
Intel QuickAssist (QAT) support and async enhancements/fixes:
* Adds ./configure "--with-intelqa=../QAT1.6”, port files, memory management and README.md (see wolfcrypt/src/port/intel/).
* Added Intel QAT support for RSA public/private (CRT/non-CRT), AES CBC/GCM, ECDH/ECDSA, DH, DES3, SHA, SHA224, SHA256, SHA384, SHA512, MD5 and HMAC.
* wolfSSL async enabled all client and server: PKI, Encrypt/Decrypt, Hashing/HMAC and Certificate Sign/Verify.
* wolfSSL async support in functions: Encrypt, Decrypt, VerifyMAC, BuildMessage, ConfirmSignature, DoCertificate, ParseCertRelative, and MakeSignature.
* wolfCrypt test and benchmark async support added for all HW acceleration.
* wolfCrypt benchmark multi-threading support.
* Added QuickAssist memory overrides for XMALLOC, XFREE and XREALLOC. XREALLOC determines if existing pointer needs reallocated for NUMA.
* Refactor to make sure “heap” is available for async dev init.
* Added async support for all examples for connect, accept, read and write.
* Added new WC_BIGINT (in wolfmath.c) for async hardware support.
* Added async simulator tests for DES3 CBC, AES CBC/GCM.
* Added QAT standalone build for unit testing.
* Added int return code to SHA and MD5 functions.
* Refactor of the async stack variable handling, so async operations have generic args buffer area and cleanup function pointer.
* Combined duplicate code for async push/pop handling.
* Refactor internal.c to add AllocKey / FreeKey.
* Refactor of hash init/free in TLS to use InitHashes and FreeHashes.
* Refactor of the async event->context to use WOLF_EVENT_TYPE_ASYNC_WOLFSSL for WOLFSSL* and WOLF_EVENT_TYPE_ASYNC_WOLFCRYPT for WC_ASYNC_DEV*.
* Suppress error message for WC_PENDING_E.
* Implemented "wolfSSL_EVP_MD_CTX_init" to do memset.
* Cleanup of the openssl compat CTX sizes when async is enabled.
* Cleanup of AES, DES3, DH, SHA, MD5, DES3, DH, HMAC, MD5 for consistency and readability.
* Cleanup of the OPAQUE_LEN.
* Cleanup to use ENCRYPT_LEN instead of sizeof(ssl->arrays.preMasterSecret).
* Changed ssl->arrays.preMasterSecret to use XMALLOC (accelerates HW operations)
* Reduce verbosity with debug enabled for "GetMyVersion", "wolfSSL Using RSA OAEP padding" and "wolfSSL Using RSA PKCSV15 padding".
* Updated RSA un-padding error message so its different than one above it for better debugging.
* Added QAT async enables for each algorithm.
* Refactor of the async init to use _ex.
* Added WC_ASYNC_THRESH_NONE to allow bypass of the async thresholds for testing.
* Reformatted the benchmark results:
PKI: "RSA 2048 private HW 18522 ops took 1.003 sec, avg 0.054 ms, 18467.763 ops/sec"
Crypto/Hashing: SHA-256 SW 350 megs took 1.009 seconds, 346.946 MB/s Cycles per byte = 9.87
* Added min execution time for all benchmarks.
* Moved wc_*GetHash and wc_*RestorePos to appropriate files so use of isCopy flag is local.
* Fix for ECC sign status sometimes being invalid due to uninitialized ECC digest in benchmark.
* Added new DECLARE_VAR/FREE_VAR and DECLARE_ARRAY/FREE_ARRAY macros for helping setup test/benchmark variables to accelerate async.
* Added NO_SW_BENCH option to only run HW bench.
* Added support for PRNG to use hardware SHA256 if _wc devId provided.
* Fix to prevent curve tests from running against wrong curve sizes. Changed wc_ecc_set_curve to match on exact size.
* Added the wc_*GetHash calls to the wolfCrypt tests.
* Added async hardware start/stop to wolfSSL init/cleanup.
* Refactor to add wc_*Copy for hashing context (for async), which replaces wc_*RestorePos.
* Fixes for building with TI hashing (including: SHA224, missing new API’s and building with dummy build for non hw testing). Note: We need to add build test for this `./configure CFLAGS="-DWOLFSSL_TI_HASH -DTI_DUMMY_BUILD”`.
* Added arg checks on wc_*GetHash and wc_*Copy.
* Cleanup of the BuildMD5, BuildSHA, BuildMD5_CertVerify and BuildSHA_CertVerify functions.
* Added new ./configure --enable-asyncthreads, to allow enable/disable of the async threading support. If --enable-asynccrypt set this will be enabled by default if pthread is supported. Allows multi-threaded benchmarks with async simulator.
* Added checks for all hashing to verify valid ->buffLen.
* Fix for SHA512 scan-build warning about un-initialized “W_X”.
* Fix for valgrind un-initialized use of buffer in AllocDer (der->buffer) and BuildTlsFinished handshake_hash.
* Refactor of the benchmarking to use common function for start, check and finish of the stats.
* Fixed issue with ECC cache loading in multi-threading.
* Fix bug with AESNI not aligned code that assumes XMALLOC is 16-byte aligned.
* Added new WC_ASYNC_NO_… options to allow disabling of individual async algorithms. New defines are: WC_ASYNC_NO_CRYPT, WC_ASYNC_NO_PKI and WC_ASYNC_NO_HASH. Additionally each algorithm has a WC_ASYNC_NO_[ALGO] define.
* Added “wolfSSL_GetAllocators” API and fixed the wolfCrypt memcb_test so it restores callback pointers after test is complete (fixes issue with using custom allocators and test breaking it).
2017-04-07 15:46:32 -07:00
|
|
|
|
if (ret < 0) break;
|
2016-03-04 10:05:22 -08:00
|
|
|
|
}
|
2018-03-16 12:02:36 -07:00
|
|
|
|
else
|
2016-03-04 10:05:22 -08:00
|
|
|
|
#endif
|
2018-03-16 12:02:36 -07:00
|
|
|
|
{
|
2018-12-14 11:30:03 -08:00
|
|
|
|
if (error != WOLFSSL_ERROR_WANT_WRITE) {
|
|
|
|
|
#ifdef WOLFSSL_DTLS
|
|
|
|
|
currTimeout = wolfSSL_dtls_get_current_timeout(ssl);
|
|
|
|
|
#endif
|
|
|
|
|
select_ret = tcp_select(sockfd, currTimeout);
|
|
|
|
|
}
|
2016-08-15 13:59:41 -06:00
|
|
|
|
}
|
2012-10-17 13:13:58 -07:00
|
|
|
|
|
2018-12-14 11:30:03 -08:00
|
|
|
|
if ((select_ret == TEST_RECV_READY) || (select_ret == TEST_SEND_READY)
|
|
|
|
|
|| (select_ret == TEST_ERROR_READY)
|
2018-03-16 12:02:36 -07:00
|
|
|
|
#ifdef WOLFSSL_ASYNC_CRYPT
|
|
|
|
|
|| error == WC_PENDING_E
|
|
|
|
|
#endif
|
|
|
|
|
) {
|
2016-03-04 10:05:22 -08:00
|
|
|
|
#ifndef WOLFSSL_CALLBACKS
|
|
|
|
|
ret = wolfSSL_connect(ssl);
|
|
|
|
|
#else
|
Intel QuickAssist (QAT) support and async enhancements/fixes:
* Adds ./configure "--with-intelqa=../QAT1.6”, port files, memory management and README.md (see wolfcrypt/src/port/intel/).
* Added Intel QAT support for RSA public/private (CRT/non-CRT), AES CBC/GCM, ECDH/ECDSA, DH, DES3, SHA, SHA224, SHA256, SHA384, SHA512, MD5 and HMAC.
* wolfSSL async enabled all client and server: PKI, Encrypt/Decrypt, Hashing/HMAC and Certificate Sign/Verify.
* wolfSSL async support in functions: Encrypt, Decrypt, VerifyMAC, BuildMessage, ConfirmSignature, DoCertificate, ParseCertRelative, and MakeSignature.
* wolfCrypt test and benchmark async support added for all HW acceleration.
* wolfCrypt benchmark multi-threading support.
* Added QuickAssist memory overrides for XMALLOC, XFREE and XREALLOC. XREALLOC determines if existing pointer needs reallocated for NUMA.
* Refactor to make sure “heap” is available for async dev init.
* Added async support for all examples for connect, accept, read and write.
* Added new WC_BIGINT (in wolfmath.c) for async hardware support.
* Added async simulator tests for DES3 CBC, AES CBC/GCM.
* Added QAT standalone build for unit testing.
* Added int return code to SHA and MD5 functions.
* Refactor of the async stack variable handling, so async operations have generic args buffer area and cleanup function pointer.
* Combined duplicate code for async push/pop handling.
* Refactor internal.c to add AllocKey / FreeKey.
* Refactor of hash init/free in TLS to use InitHashes and FreeHashes.
* Refactor of the async event->context to use WOLF_EVENT_TYPE_ASYNC_WOLFSSL for WOLFSSL* and WOLF_EVENT_TYPE_ASYNC_WOLFCRYPT for WC_ASYNC_DEV*.
* Suppress error message for WC_PENDING_E.
* Implemented "wolfSSL_EVP_MD_CTX_init" to do memset.
* Cleanup of the openssl compat CTX sizes when async is enabled.
* Cleanup of AES, DES3, DH, SHA, MD5, DES3, DH, HMAC, MD5 for consistency and readability.
* Cleanup of the OPAQUE_LEN.
* Cleanup to use ENCRYPT_LEN instead of sizeof(ssl->arrays.preMasterSecret).
* Changed ssl->arrays.preMasterSecret to use XMALLOC (accelerates HW operations)
* Reduce verbosity with debug enabled for "GetMyVersion", "wolfSSL Using RSA OAEP padding" and "wolfSSL Using RSA PKCSV15 padding".
* Updated RSA un-padding error message so its different than one above it for better debugging.
* Added QAT async enables for each algorithm.
* Refactor of the async init to use _ex.
* Added WC_ASYNC_THRESH_NONE to allow bypass of the async thresholds for testing.
* Reformatted the benchmark results:
PKI: "RSA 2048 private HW 18522 ops took 1.003 sec, avg 0.054 ms, 18467.763 ops/sec"
Crypto/Hashing: SHA-256 SW 350 megs took 1.009 seconds, 346.946 MB/s Cycles per byte = 9.87
* Added min execution time for all benchmarks.
* Moved wc_*GetHash and wc_*RestorePos to appropriate files so use of isCopy flag is local.
* Fix for ECC sign status sometimes being invalid due to uninitialized ECC digest in benchmark.
* Added new DECLARE_VAR/FREE_VAR and DECLARE_ARRAY/FREE_ARRAY macros for helping setup test/benchmark variables to accelerate async.
* Added NO_SW_BENCH option to only run HW bench.
* Added support for PRNG to use hardware SHA256 if _wc devId provided.
* Fix to prevent curve tests from running against wrong curve sizes. Changed wc_ecc_set_curve to match on exact size.
* Added the wc_*GetHash calls to the wolfCrypt tests.
* Added async hardware start/stop to wolfSSL init/cleanup.
* Refactor to add wc_*Copy for hashing context (for async), which replaces wc_*RestorePos.
* Fixes for building with TI hashing (including: SHA224, missing new API’s and building with dummy build for non hw testing). Note: We need to add build test for this `./configure CFLAGS="-DWOLFSSL_TI_HASH -DTI_DUMMY_BUILD”`.
* Added arg checks on wc_*GetHash and wc_*Copy.
* Cleanup of the BuildMD5, BuildSHA, BuildMD5_CertVerify and BuildSHA_CertVerify functions.
* Added new ./configure --enable-asyncthreads, to allow enable/disable of the async threading support. If --enable-asynccrypt set this will be enabled by default if pthread is supported. Allows multi-threaded benchmarks with async simulator.
* Added checks for all hashing to verify valid ->buffLen.
* Fix for SHA512 scan-build warning about un-initialized “W_X”.
* Fix for valgrind un-initialized use of buffer in AllocDer (der->buffer) and BuildTlsFinished handshake_hash.
* Refactor of the benchmarking to use common function for start, check and finish of the stats.
* Fixed issue with ECC cache loading in multi-threading.
* Fix bug with AESNI not aligned code that assumes XMALLOC is 16-byte aligned.
* Added new WC_ASYNC_NO_… options to allow disabling of individual async algorithms. New defines are: WC_ASYNC_NO_CRYPT, WC_ASYNC_NO_PKI and WC_ASYNC_NO_HASH. Additionally each algorithm has a WC_ASYNC_NO_[ALGO] define.
* Added “wolfSSL_GetAllocators” API and fixed the wolfCrypt memcb_test so it restores callback pointers after test is complete (fixes issue with using custom allocators and test breaking it).
2017-04-07 15:46:32 -07:00
|
|
|
|
ret = wolfSSL_connect_ex(ssl, handShakeCB, timeoutCB, timeout);
|
2016-03-04 10:05:22 -08:00
|
|
|
|
#endif
|
2015-01-05 14:48:43 -07:00
|
|
|
|
error = wolfSSL_get_error(ssl, 0);
|
2019-01-10 17:12:37 -08:00
|
|
|
|
elapsedSec = 0; /* reset elapsed */
|
2018-12-14 11:30:03 -08:00
|
|
|
|
if (error == WOLFSSL_ERROR_WANT_WRITE) {
|
|
|
|
|
/* Do a send select here. */
|
|
|
|
|
select_ret = tcp_select_tx(sockfd, 1);
|
|
|
|
|
if (select_ret == TEST_TIMEOUT) {
|
|
|
|
|
error = WOLFSSL_FATAL_ERROR;
|
|
|
|
|
}
|
|
|
|
|
}
|
2012-10-17 13:13:58 -07:00
|
|
|
|
}
|
2015-01-05 14:48:43 -07:00
|
|
|
|
else if (select_ret == TEST_TIMEOUT && !wolfSSL_dtls(ssl)) {
|
2017-10-11 09:09:52 -07:00
|
|
|
|
error = WOLFSSL_ERROR_WANT_READ;
|
2019-01-10 17:12:37 -08:00
|
|
|
|
|
|
|
|
|
elapsedSec += currTimeout;
|
2019-01-11 08:45:34 -08:00
|
|
|
|
if (elapsedSec > MAX_NON_BLOCK_SEC) {
|
|
|
|
|
printf("Nonblocking connect timeout\n");
|
2019-01-10 17:12:37 -08:00
|
|
|
|
error = WOLFSSL_FATAL_ERROR;
|
|
|
|
|
}
|
2012-10-17 13:13:58 -07:00
|
|
|
|
}
|
2015-01-05 14:48:43 -07:00
|
|
|
|
#ifdef WOLFSSL_DTLS
|
|
|
|
|
else if (select_ret == TEST_TIMEOUT && wolfSSL_dtls(ssl) &&
|
2016-03-04 10:05:22 -08:00
|
|
|
|
wolfSSL_dtls_got_timeout(ssl) >= 0) {
|
2017-10-11 09:09:52 -07:00
|
|
|
|
error = WOLFSSL_ERROR_WANT_READ;
|
2013-05-08 12:49:55 -07:00
|
|
|
|
}
|
|
|
|
|
#endif
|
2012-10-17 13:13:58 -07:00
|
|
|
|
else {
|
2017-10-11 09:09:52 -07:00
|
|
|
|
error = WOLFSSL_FATAL_ERROR;
|
2011-02-05 11:14:47 -08:00
|
|
|
|
}
|
|
|
|
|
}
|
Intel QuickAssist (QAT) support and async enhancements/fixes:
* Adds ./configure "--with-intelqa=../QAT1.6”, port files, memory management and README.md (see wolfcrypt/src/port/intel/).
* Added Intel QAT support for RSA public/private (CRT/non-CRT), AES CBC/GCM, ECDH/ECDSA, DH, DES3, SHA, SHA224, SHA256, SHA384, SHA512, MD5 and HMAC.
* wolfSSL async enabled all client and server: PKI, Encrypt/Decrypt, Hashing/HMAC and Certificate Sign/Verify.
* wolfSSL async support in functions: Encrypt, Decrypt, VerifyMAC, BuildMessage, ConfirmSignature, DoCertificate, ParseCertRelative, and MakeSignature.
* wolfCrypt test and benchmark async support added for all HW acceleration.
* wolfCrypt benchmark multi-threading support.
* Added QuickAssist memory overrides for XMALLOC, XFREE and XREALLOC. XREALLOC determines if existing pointer needs reallocated for NUMA.
* Refactor to make sure “heap” is available for async dev init.
* Added async support for all examples for connect, accept, read and write.
* Added new WC_BIGINT (in wolfmath.c) for async hardware support.
* Added async simulator tests for DES3 CBC, AES CBC/GCM.
* Added QAT standalone build for unit testing.
* Added int return code to SHA and MD5 functions.
* Refactor of the async stack variable handling, so async operations have generic args buffer area and cleanup function pointer.
* Combined duplicate code for async push/pop handling.
* Refactor internal.c to add AllocKey / FreeKey.
* Refactor of hash init/free in TLS to use InitHashes and FreeHashes.
* Refactor of the async event->context to use WOLF_EVENT_TYPE_ASYNC_WOLFSSL for WOLFSSL* and WOLF_EVENT_TYPE_ASYNC_WOLFCRYPT for WC_ASYNC_DEV*.
* Suppress error message for WC_PENDING_E.
* Implemented "wolfSSL_EVP_MD_CTX_init" to do memset.
* Cleanup of the openssl compat CTX sizes when async is enabled.
* Cleanup of AES, DES3, DH, SHA, MD5, DES3, DH, HMAC, MD5 for consistency and readability.
* Cleanup of the OPAQUE_LEN.
* Cleanup to use ENCRYPT_LEN instead of sizeof(ssl->arrays.preMasterSecret).
* Changed ssl->arrays.preMasterSecret to use XMALLOC (accelerates HW operations)
* Reduce verbosity with debug enabled for "GetMyVersion", "wolfSSL Using RSA OAEP padding" and "wolfSSL Using RSA PKCSV15 padding".
* Updated RSA un-padding error message so its different than one above it for better debugging.
* Added QAT async enables for each algorithm.
* Refactor of the async init to use _ex.
* Added WC_ASYNC_THRESH_NONE to allow bypass of the async thresholds for testing.
* Reformatted the benchmark results:
PKI: "RSA 2048 private HW 18522 ops took 1.003 sec, avg 0.054 ms, 18467.763 ops/sec"
Crypto/Hashing: SHA-256 SW 350 megs took 1.009 seconds, 346.946 MB/s Cycles per byte = 9.87
* Added min execution time for all benchmarks.
* Moved wc_*GetHash and wc_*RestorePos to appropriate files so use of isCopy flag is local.
* Fix for ECC sign status sometimes being invalid due to uninitialized ECC digest in benchmark.
* Added new DECLARE_VAR/FREE_VAR and DECLARE_ARRAY/FREE_ARRAY macros for helping setup test/benchmark variables to accelerate async.
* Added NO_SW_BENCH option to only run HW bench.
* Added support for PRNG to use hardware SHA256 if _wc devId provided.
* Fix to prevent curve tests from running against wrong curve sizes. Changed wc_ecc_set_curve to match on exact size.
* Added the wc_*GetHash calls to the wolfCrypt tests.
* Added async hardware start/stop to wolfSSL init/cleanup.
* Refactor to add wc_*Copy for hashing context (for async), which replaces wc_*RestorePos.
* Fixes for building with TI hashing (including: SHA224, missing new API’s and building with dummy build for non hw testing). Note: We need to add build test for this `./configure CFLAGS="-DWOLFSSL_TI_HASH -DTI_DUMMY_BUILD”`.
* Added arg checks on wc_*GetHash and wc_*Copy.
* Cleanup of the BuildMD5, BuildSHA, BuildMD5_CertVerify and BuildSHA_CertVerify functions.
* Added new ./configure --enable-asyncthreads, to allow enable/disable of the async threading support. If --enable-asynccrypt set this will be enabled by default if pthread is supported. Allows multi-threaded benchmarks with async simulator.
* Added checks for all hashing to verify valid ->buffLen.
* Fix for SHA512 scan-build warning about un-initialized “W_X”.
* Fix for valgrind un-initialized use of buffer in AllocDer (der->buffer) and BuildTlsFinished handshake_hash.
* Refactor of the benchmarking to use common function for start, check and finish of the stats.
* Fixed issue with ECC cache loading in multi-threading.
* Fix bug with AESNI not aligned code that assumes XMALLOC is 16-byte aligned.
* Added new WC_ASYNC_NO_… options to allow disabling of individual async algorithms. New defines are: WC_ASYNC_NO_CRYPT, WC_ASYNC_NO_PKI and WC_ASYNC_NO_HASH. Additionally each algorithm has a WC_ASYNC_NO_[ALGO] define.
* Added “wolfSSL_GetAllocators” API and fixed the wolfCrypt memcb_test so it restores callback pointers after test is complete (fixes issue with using custom allocators and test breaking it).
2017-04-07 15:46:32 -07:00
|
|
|
|
|
|
|
|
|
return ret;
|
2012-10-17 13:13:58 -07:00
|
|
|
|
}
|
2011-02-05 11:14:47 -08:00
|
|
|
|
|
|
|
|
|
|
2015-10-02 16:25:17 -07:00
|
|
|
|
static void ShowCiphers(void)
|
|
|
|
|
{
|
2018-07-17 09:04:00 +10:00
|
|
|
|
static char ciphers[4096];
|
2015-10-02 16:25:17 -07:00
|
|
|
|
|
|
|
|
|
int ret = wolfSSL_get_ciphers(ciphers, (int)sizeof(ciphers));
|
|
|
|
|
|
2017-10-11 09:09:52 -07:00
|
|
|
|
if (ret == WOLFSSL_SUCCESS)
|
2015-10-02 16:25:17 -07:00
|
|
|
|
printf("%s\n", ciphers);
|
|
|
|
|
}
|
|
|
|
|
|
2015-11-02 13:26:46 -08:00
|
|
|
|
/* Shows which versions are valid */
|
|
|
|
|
static void ShowVersions(void)
|
|
|
|
|
{
|
2015-12-23 12:12:41 -08:00
|
|
|
|
#ifndef NO_OLD_TLS
|
2017-11-14 13:55:48 -08:00
|
|
|
|
#ifdef WOLFSSL_ALLOW_SSLV3
|
|
|
|
|
printf("0:");
|
|
|
|
|
#endif
|
|
|
|
|
#ifdef WOLFSSL_ALLOW_TLSV10
|
|
|
|
|
printf("1:");
|
|
|
|
|
#endif
|
|
|
|
|
printf("2:");
|
2015-12-23 12:12:41 -08:00
|
|
|
|
#endif /* NO_OLD_TLS */
|
2018-05-17 09:08:03 +10:00
|
|
|
|
#ifndef WOLFSSL_NO_TLS12
|
2017-11-14 13:55:48 -08:00
|
|
|
|
printf("3:");
|
2018-05-17 09:08:03 +10:00
|
|
|
|
#endif
|
2017-11-14 13:55:48 -08:00
|
|
|
|
#ifdef WOLFSSL_TLS13
|
|
|
|
|
printf("4:");
|
2018-10-04 14:48:53 -07:00
|
|
|
|
#endif
|
|
|
|
|
printf("d(downgrade):");
|
|
|
|
|
#if defined(OPENSSL_EXTRA) || defined(WOLFSSL_EITHER_SIDE)
|
|
|
|
|
printf("e(either):");
|
2017-11-14 13:55:48 -08:00
|
|
|
|
#endif
|
|
|
|
|
printf("\n");
|
2015-11-02 13:26:46 -08:00
|
|
|
|
}
|
|
|
|
|
|
2018-04-13 11:53:42 +10:00
|
|
|
|
#ifdef WOLFSSL_TLS13
|
|
|
|
|
static void SetKeyShare(WOLFSSL* ssl, int onlyKeyShare, int useX25519)
|
|
|
|
|
{
|
2018-05-01 14:27:38 +10:00
|
|
|
|
int groups[3];
|
|
|
|
|
int count = 0;
|
|
|
|
|
|
2018-04-13 11:53:42 +10:00
|
|
|
|
(void)useX25519;
|
|
|
|
|
|
|
|
|
|
WOLFSSL_START(WC_FUNC_CLIENT_KEY_EXCHANGE_SEND);
|
|
|
|
|
if (onlyKeyShare == 0 || onlyKeyShare == 2) {
|
|
|
|
|
#ifdef HAVE_CURVE25519
|
|
|
|
|
if (useX25519) {
|
2018-05-01 14:27:38 +10:00
|
|
|
|
groups[count++] = WOLFSSL_ECC_X25519;
|
2018-04-13 11:53:42 +10:00
|
|
|
|
if (wolfSSL_UseKeyShare(ssl, WOLFSSL_ECC_X25519) != WOLFSSL_SUCCESS)
|
|
|
|
|
err_sys("unable to use curve x25519");
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
#endif
|
|
|
|
|
{
|
|
|
|
|
#ifdef HAVE_ECC
|
|
|
|
|
#if defined(HAVE_ECC256) || defined(HAVE_ALL_CURVES)
|
2018-05-01 14:27:38 +10:00
|
|
|
|
groups[count++] = WOLFSSL_ECC_SECP256R1;
|
2018-04-13 11:53:42 +10:00
|
|
|
|
if (wolfSSL_UseKeyShare(ssl, WOLFSSL_ECC_SECP256R1)
|
|
|
|
|
!= WOLFSSL_SUCCESS) {
|
|
|
|
|
err_sys("unable to use curve secp256r1");
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (onlyKeyShare == 0 || onlyKeyShare == 1) {
|
|
|
|
|
#ifdef HAVE_FFDHE_2048
|
2018-05-01 14:27:38 +10:00
|
|
|
|
groups[count++] = WOLFSSL_FFDHE_2048;
|
2018-04-13 11:53:42 +10:00
|
|
|
|
if (wolfSSL_UseKeyShare(ssl, WOLFSSL_FFDHE_2048) != WOLFSSL_SUCCESS)
|
|
|
|
|
err_sys("unable to use DH 2048-bit parameters");
|
|
|
|
|
#endif
|
|
|
|
|
}
|
2018-05-01 14:27:38 +10:00
|
|
|
|
|
|
|
|
|
if (wolfSSL_set_groups(ssl, groups, count) != WOLFSSL_SUCCESS)
|
|
|
|
|
err_sys("unable to set groups");
|
2018-04-13 11:53:42 +10:00
|
|
|
|
WOLFSSL_END(WC_FUNC_CLIENT_KEY_EXCHANGE_SEND);
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
2019-01-24 14:30:06 +10:00
|
|
|
|
#ifdef WOLFSSL_EARLY_DATA
|
|
|
|
|
static void EarlyData(WOLFSSL_CTX* ctx, WOLFSSL* ssl, const char* msg,
|
|
|
|
|
int msgSz, char* buffer)
|
|
|
|
|
{
|
|
|
|
|
int err;
|
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
|
|
do {
|
|
|
|
|
err = 0; /* reset error */
|
|
|
|
|
ret = wolfSSL_write_early_data(ssl, msg, msgSz, &msgSz);
|
|
|
|
|
if (ret <= 0) {
|
|
|
|
|
err = wolfSSL_get_error(ssl, 0);
|
|
|
|
|
#ifdef WOLFSSL_ASYNC_CRYPT
|
|
|
|
|
if (err == WC_PENDING_E) {
|
|
|
|
|
ret = wolfSSL_AsyncPoll(ssl, WOLF_POLL_FLAG_CHECK_HW);
|
|
|
|
|
if (ret < 0) break;
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
} while (err == WC_PENDING_E);
|
|
|
|
|
if (ret != msgSz) {
|
|
|
|
|
printf("SSL_write_early_data msg error %d, %s\n", err,
|
|
|
|
|
wolfSSL_ERR_error_string(err, buffer));
|
|
|
|
|
wolfSSL_free(ssl); ssl = NULL;
|
|
|
|
|
wolfSSL_CTX_free(ctx); ctx = NULL;
|
|
|
|
|
err_sys("SSL_write_early_data failed");
|
|
|
|
|
}
|
|
|
|
|
do {
|
|
|
|
|
err = 0; /* reset error */
|
|
|
|
|
ret = wolfSSL_write_early_data(ssl, msg, msgSz, &msgSz);
|
|
|
|
|
if (ret <= 0) {
|
|
|
|
|
err = wolfSSL_get_error(ssl, 0);
|
|
|
|
|
#ifdef WOLFSSL_ASYNC_CRYPT
|
|
|
|
|
if (err == WC_PENDING_E) {
|
|
|
|
|
ret = wolfSSL_AsyncPoll(ssl, WOLF_POLL_FLAG_CHECK_HW);
|
|
|
|
|
if (ret < 0) break;
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
} while (err == WC_PENDING_E);
|
|
|
|
|
if (ret != msgSz) {
|
|
|
|
|
printf("SSL_write_early_data msg error %d, %s\n", err,
|
|
|
|
|
wolfSSL_ERR_error_string(err, buffer));
|
|
|
|
|
wolfSSL_free(ssl); ssl = NULL;
|
|
|
|
|
wolfSSL_CTX_free(ctx); ctx = NULL;
|
|
|
|
|
err_sys("SSL_write_early_data failed");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
2016-08-25 22:20:35 -07:00
|
|
|
|
/* Measures average time to create, connect and disconnect a connection (TPS).
|
|
|
|
|
Benchmark = number of connections. */
|
2018-10-20 13:40:01 +09:00
|
|
|
|
static const char* client_bench_conmsg[][5] = {
|
|
|
|
|
/* English */
|
|
|
|
|
{
|
|
|
|
|
"wolfSSL_resume avg took:", "milliseconds\n",
|
|
|
|
|
"wolfSSL_connect avg took:", "milliseconds\n",
|
|
|
|
|
NULL
|
|
|
|
|
},
|
2018-11-29 07:04:01 +09:00
|
|
|
|
#ifndef NO_MULTIBYTE_PRINT
|
2018-10-20 13:40:01 +09:00
|
|
|
|
/* Japanese */
|
|
|
|
|
{
|
|
|
|
|
"wolfSSL_resume 平均時間:", "ミリ秒\n",
|
|
|
|
|
"wolfSSL_connect 平均時間:", "ミリ秒\n",
|
|
|
|
|
}
|
2018-11-26 08:11:31 +09:00
|
|
|
|
#endif
|
2018-10-20 13:40:01 +09:00
|
|
|
|
};
|
|
|
|
|
|
2016-08-25 22:20:35 -07:00
|
|
|
|
static int ClientBenchmarkConnections(WOLFSSL_CTX* ctx, char* host, word16 port,
|
2017-06-29 09:00:44 +10:00
|
|
|
|
int dtlsUDP, int dtlsSCTP, int benchmark, int resumeSession, int useX25519,
|
2019-01-24 14:30:06 +10:00
|
|
|
|
int helloRetry, int onlyKeyShare, int version, int earlyData)
|
2015-10-14 19:13:45 -07:00
|
|
|
|
{
|
|
|
|
|
/* time passed in number of connects give average */
|
2018-04-09 13:53:05 +10:00
|
|
|
|
int times = benchmark, skip = times * 0.1;
|
2015-10-14 19:13:45 -07:00
|
|
|
|
int loops = resumeSession ? 2 : 1;
|
Intel QuickAssist (QAT) support and async enhancements/fixes:
* Adds ./configure "--with-intelqa=../QAT1.6”, port files, memory management and README.md (see wolfcrypt/src/port/intel/).
* Added Intel QAT support for RSA public/private (CRT/non-CRT), AES CBC/GCM, ECDH/ECDSA, DH, DES3, SHA, SHA224, SHA256, SHA384, SHA512, MD5 and HMAC.
* wolfSSL async enabled all client and server: PKI, Encrypt/Decrypt, Hashing/HMAC and Certificate Sign/Verify.
* wolfSSL async support in functions: Encrypt, Decrypt, VerifyMAC, BuildMessage, ConfirmSignature, DoCertificate, ParseCertRelative, and MakeSignature.
* wolfCrypt test and benchmark async support added for all HW acceleration.
* wolfCrypt benchmark multi-threading support.
* Added QuickAssist memory overrides for XMALLOC, XFREE and XREALLOC. XREALLOC determines if existing pointer needs reallocated for NUMA.
* Refactor to make sure “heap” is available for async dev init.
* Added async support for all examples for connect, accept, read and write.
* Added new WC_BIGINT (in wolfmath.c) for async hardware support.
* Added async simulator tests for DES3 CBC, AES CBC/GCM.
* Added QAT standalone build for unit testing.
* Added int return code to SHA and MD5 functions.
* Refactor of the async stack variable handling, so async operations have generic args buffer area and cleanup function pointer.
* Combined duplicate code for async push/pop handling.
* Refactor internal.c to add AllocKey / FreeKey.
* Refactor of hash init/free in TLS to use InitHashes and FreeHashes.
* Refactor of the async event->context to use WOLF_EVENT_TYPE_ASYNC_WOLFSSL for WOLFSSL* and WOLF_EVENT_TYPE_ASYNC_WOLFCRYPT for WC_ASYNC_DEV*.
* Suppress error message for WC_PENDING_E.
* Implemented "wolfSSL_EVP_MD_CTX_init" to do memset.
* Cleanup of the openssl compat CTX sizes when async is enabled.
* Cleanup of AES, DES3, DH, SHA, MD5, DES3, DH, HMAC, MD5 for consistency and readability.
* Cleanup of the OPAQUE_LEN.
* Cleanup to use ENCRYPT_LEN instead of sizeof(ssl->arrays.preMasterSecret).
* Changed ssl->arrays.preMasterSecret to use XMALLOC (accelerates HW operations)
* Reduce verbosity with debug enabled for "GetMyVersion", "wolfSSL Using RSA OAEP padding" and "wolfSSL Using RSA PKCSV15 padding".
* Updated RSA un-padding error message so its different than one above it for better debugging.
* Added QAT async enables for each algorithm.
* Refactor of the async init to use _ex.
* Added WC_ASYNC_THRESH_NONE to allow bypass of the async thresholds for testing.
* Reformatted the benchmark results:
PKI: "RSA 2048 private HW 18522 ops took 1.003 sec, avg 0.054 ms, 18467.763 ops/sec"
Crypto/Hashing: SHA-256 SW 350 megs took 1.009 seconds, 346.946 MB/s Cycles per byte = 9.87
* Added min execution time for all benchmarks.
* Moved wc_*GetHash and wc_*RestorePos to appropriate files so use of isCopy flag is local.
* Fix for ECC sign status sometimes being invalid due to uninitialized ECC digest in benchmark.
* Added new DECLARE_VAR/FREE_VAR and DECLARE_ARRAY/FREE_ARRAY macros for helping setup test/benchmark variables to accelerate async.
* Added NO_SW_BENCH option to only run HW bench.
* Added support for PRNG to use hardware SHA256 if _wc devId provided.
* Fix to prevent curve tests from running against wrong curve sizes. Changed wc_ecc_set_curve to match on exact size.
* Added the wc_*GetHash calls to the wolfCrypt tests.
* Added async hardware start/stop to wolfSSL init/cleanup.
* Refactor to add wc_*Copy for hashing context (for async), which replaces wc_*RestorePos.
* Fixes for building with TI hashing (including: SHA224, missing new API’s and building with dummy build for non hw testing). Note: We need to add build test for this `./configure CFLAGS="-DWOLFSSL_TI_HASH -DTI_DUMMY_BUILD”`.
* Added arg checks on wc_*GetHash and wc_*Copy.
* Cleanup of the BuildMD5, BuildSHA, BuildMD5_CertVerify and BuildSHA_CertVerify functions.
* Added new ./configure --enable-asyncthreads, to allow enable/disable of the async threading support. If --enable-asynccrypt set this will be enabled by default if pthread is supported. Allows multi-threaded benchmarks with async simulator.
* Added checks for all hashing to verify valid ->buffLen.
* Fix for SHA512 scan-build warning about un-initialized “W_X”.
* Fix for valgrind un-initialized use of buffer in AllocDer (der->buffer) and BuildTlsFinished handshake_hash.
* Refactor of the benchmarking to use common function for start, check and finish of the stats.
* Fixed issue with ECC cache loading in multi-threading.
* Fix bug with AESNI not aligned code that assumes XMALLOC is 16-byte aligned.
* Added new WC_ASYNC_NO_… options to allow disabling of individual async algorithms. New defines are: WC_ASYNC_NO_CRYPT, WC_ASYNC_NO_PKI and WC_ASYNC_NO_HASH. Additionally each algorithm has a WC_ASYNC_NO_[ALGO] define.
* Added “wolfSSL_GetAllocators” API and fixed the wolfCrypt memcb_test so it restores callback pointers after test is complete (fixes issue with using custom allocators and test breaking it).
2017-04-07 15:46:32 -07:00
|
|
|
|
int i = 0, err, ret;
|
2016-02-22 10:11:41 +01:00
|
|
|
|
#ifndef NO_SESSION_CACHE
|
2015-10-14 19:13:45 -07:00
|
|
|
|
WOLFSSL_SESSION* benchSession = NULL;
|
2016-02-22 10:11:41 +01:00
|
|
|
|
#endif
|
2016-11-24 01:31:07 +10:00
|
|
|
|
#ifdef WOLFSSL_TLS13
|
|
|
|
|
byte* reply[80];
|
2018-04-09 13:53:05 +10:00
|
|
|
|
static const char msg[] = "GET /index.html HTTP/1.0\r\n\r\n";
|
2019-01-24 14:30:06 +10:00
|
|
|
|
#ifdef WOLFSSL_EARLY_DATA
|
|
|
|
|
static const char earlyMsg[] = "A drop of info";
|
|
|
|
|
#endif
|
2016-11-24 01:31:07 +10:00
|
|
|
|
#endif
|
2018-10-20 13:40:01 +09:00
|
|
|
|
const char** words = client_bench_conmsg[lng_index];
|
2016-11-24 01:31:07 +10:00
|
|
|
|
|
2016-02-22 10:11:41 +01:00
|
|
|
|
(void)resumeSession;
|
2017-05-31 11:44:43 +10:00
|
|
|
|
(void)useX25519;
|
2017-06-29 09:00:44 +10:00
|
|
|
|
(void)helloRetry;
|
2018-04-09 13:53:05 +10:00
|
|
|
|
(void)onlyKeyShare;
|
|
|
|
|
(void)version;
|
2019-01-24 14:30:06 +10:00
|
|
|
|
(void)earlyData;
|
2015-10-14 19:13:45 -07:00
|
|
|
|
|
|
|
|
|
while (loops--) {
|
2016-02-22 10:11:41 +01:00
|
|
|
|
#ifndef NO_SESSION_CACHE
|
2015-10-14 19:13:45 -07:00
|
|
|
|
int benchResume = resumeSession && loops == 0;
|
2016-02-22 10:11:41 +01:00
|
|
|
|
#endif
|
2016-04-14 16:26:51 +09:00
|
|
|
|
double start = current_time(1), avg;
|
2015-10-14 19:13:45 -07:00
|
|
|
|
|
|
|
|
|
for (i = 0; i < times; i++) {
|
|
|
|
|
SOCKET_T sockfd;
|
2018-04-09 13:53:05 +10:00
|
|
|
|
WOLFSSL* ssl;
|
|
|
|
|
|
|
|
|
|
if (i == skip)
|
|
|
|
|
start = current_time(1);
|
|
|
|
|
|
|
|
|
|
ssl = wolfSSL_new(ctx);
|
2015-10-16 14:12:38 -07:00
|
|
|
|
if (ssl == NULL)
|
|
|
|
|
err_sys("unable to get SSL object");
|
2015-10-14 19:13:45 -07:00
|
|
|
|
|
2018-04-13 11:53:42 +10:00
|
|
|
|
#ifndef NO_SESSION_CACHE
|
|
|
|
|
if (benchResume)
|
|
|
|
|
wolfSSL_set_session(ssl, benchSession);
|
|
|
|
|
#endif
|
2018-04-09 13:53:05 +10:00
|
|
|
|
#ifdef WOLFSSL_TLS13
|
2018-04-13 11:53:42 +10:00
|
|
|
|
else if (version >= 4) {
|
|
|
|
|
if (!helloRetry)
|
|
|
|
|
SetKeyShare(ssl, onlyKeyShare, useX25519);
|
|
|
|
|
else
|
2018-04-09 13:53:05 +10:00
|
|
|
|
wolfSSL_NoKeyShares(ssl);
|
|
|
|
|
}
|
|
|
|
|
#endif
|
2016-11-24 01:31:07 +10:00
|
|
|
|
|
2016-08-25 22:20:35 -07:00
|
|
|
|
tcp_connect(&sockfd, host, port, dtlsUDP, dtlsSCTP, ssl);
|
2015-10-14 19:13:45 -07:00
|
|
|
|
|
2017-10-11 09:09:52 -07:00
|
|
|
|
if (wolfSSL_set_fd(ssl, sockfd) != WOLFSSL_SUCCESS) {
|
2016-03-25 13:59:04 -06:00
|
|
|
|
err_sys("error in setting fd");
|
|
|
|
|
}
|
Intel QuickAssist (QAT) support and async enhancements/fixes:
* Adds ./configure "--with-intelqa=../QAT1.6”, port files, memory management and README.md (see wolfcrypt/src/port/intel/).
* Added Intel QAT support for RSA public/private (CRT/non-CRT), AES CBC/GCM, ECDH/ECDSA, DH, DES3, SHA, SHA224, SHA256, SHA384, SHA512, MD5 and HMAC.
* wolfSSL async enabled all client and server: PKI, Encrypt/Decrypt, Hashing/HMAC and Certificate Sign/Verify.
* wolfSSL async support in functions: Encrypt, Decrypt, VerifyMAC, BuildMessage, ConfirmSignature, DoCertificate, ParseCertRelative, and MakeSignature.
* wolfCrypt test and benchmark async support added for all HW acceleration.
* wolfCrypt benchmark multi-threading support.
* Added QuickAssist memory overrides for XMALLOC, XFREE and XREALLOC. XREALLOC determines if existing pointer needs reallocated for NUMA.
* Refactor to make sure “heap” is available for async dev init.
* Added async support for all examples for connect, accept, read and write.
* Added new WC_BIGINT (in wolfmath.c) for async hardware support.
* Added async simulator tests for DES3 CBC, AES CBC/GCM.
* Added QAT standalone build for unit testing.
* Added int return code to SHA and MD5 functions.
* Refactor of the async stack variable handling, so async operations have generic args buffer area and cleanup function pointer.
* Combined duplicate code for async push/pop handling.
* Refactor internal.c to add AllocKey / FreeKey.
* Refactor of hash init/free in TLS to use InitHashes and FreeHashes.
* Refactor of the async event->context to use WOLF_EVENT_TYPE_ASYNC_WOLFSSL for WOLFSSL* and WOLF_EVENT_TYPE_ASYNC_WOLFCRYPT for WC_ASYNC_DEV*.
* Suppress error message for WC_PENDING_E.
* Implemented "wolfSSL_EVP_MD_CTX_init" to do memset.
* Cleanup of the openssl compat CTX sizes when async is enabled.
* Cleanup of AES, DES3, DH, SHA, MD5, DES3, DH, HMAC, MD5 for consistency and readability.
* Cleanup of the OPAQUE_LEN.
* Cleanup to use ENCRYPT_LEN instead of sizeof(ssl->arrays.preMasterSecret).
* Changed ssl->arrays.preMasterSecret to use XMALLOC (accelerates HW operations)
* Reduce verbosity with debug enabled for "GetMyVersion", "wolfSSL Using RSA OAEP padding" and "wolfSSL Using RSA PKCSV15 padding".
* Updated RSA un-padding error message so its different than one above it for better debugging.
* Added QAT async enables for each algorithm.
* Refactor of the async init to use _ex.
* Added WC_ASYNC_THRESH_NONE to allow bypass of the async thresholds for testing.
* Reformatted the benchmark results:
PKI: "RSA 2048 private HW 18522 ops took 1.003 sec, avg 0.054 ms, 18467.763 ops/sec"
Crypto/Hashing: SHA-256 SW 350 megs took 1.009 seconds, 346.946 MB/s Cycles per byte = 9.87
* Added min execution time for all benchmarks.
* Moved wc_*GetHash and wc_*RestorePos to appropriate files so use of isCopy flag is local.
* Fix for ECC sign status sometimes being invalid due to uninitialized ECC digest in benchmark.
* Added new DECLARE_VAR/FREE_VAR and DECLARE_ARRAY/FREE_ARRAY macros for helping setup test/benchmark variables to accelerate async.
* Added NO_SW_BENCH option to only run HW bench.
* Added support for PRNG to use hardware SHA256 if _wc devId provided.
* Fix to prevent curve tests from running against wrong curve sizes. Changed wc_ecc_set_curve to match on exact size.
* Added the wc_*GetHash calls to the wolfCrypt tests.
* Added async hardware start/stop to wolfSSL init/cleanup.
* Refactor to add wc_*Copy for hashing context (for async), which replaces wc_*RestorePos.
* Fixes for building with TI hashing (including: SHA224, missing new API’s and building with dummy build for non hw testing). Note: We need to add build test for this `./configure CFLAGS="-DWOLFSSL_TI_HASH -DTI_DUMMY_BUILD”`.
* Added arg checks on wc_*GetHash and wc_*Copy.
* Cleanup of the BuildMD5, BuildSHA, BuildMD5_CertVerify and BuildSHA_CertVerify functions.
* Added new ./configure --enable-asyncthreads, to allow enable/disable of the async threading support. If --enable-asynccrypt set this will be enabled by default if pthread is supported. Allows multi-threaded benchmarks with async simulator.
* Added checks for all hashing to verify valid ->buffLen.
* Fix for SHA512 scan-build warning about un-initialized “W_X”.
* Fix for valgrind un-initialized use of buffer in AllocDer (der->buffer) and BuildTlsFinished handshake_hash.
* Refactor of the benchmarking to use common function for start, check and finish of the stats.
* Fixed issue with ECC cache loading in multi-threading.
* Fix bug with AESNI not aligned code that assumes XMALLOC is 16-byte aligned.
* Added new WC_ASYNC_NO_… options to allow disabling of individual async algorithms. New defines are: WC_ASYNC_NO_CRYPT, WC_ASYNC_NO_PKI and WC_ASYNC_NO_HASH. Additionally each algorithm has a WC_ASYNC_NO_[ALGO] define.
* Added “wolfSSL_GetAllocators” API and fixed the wolfCrypt memcb_test so it restores callback pointers after test is complete (fixes issue with using custom allocators and test breaking it).
2017-04-07 15:46:32 -07:00
|
|
|
|
|
2019-01-24 14:30:06 +10:00
|
|
|
|
#if defined(WOLFSSL_TLS13) && !defined(NO_SESSION_CACHE) && \
|
|
|
|
|
defined(WOLFSSL_EARLY_DATA)
|
|
|
|
|
if (version >= 4 && benchResume && earlyData) {
|
|
|
|
|
char buffer[WOLFSSL_MAX_ERROR_SZ];
|
|
|
|
|
EarlyData(ctx, ssl, earlyMsg, sizeof(earlyMsg)-1, buffer);
|
|
|
|
|
}
|
|
|
|
|
#endif
|
Intel QuickAssist (QAT) support and async enhancements/fixes:
* Adds ./configure "--with-intelqa=../QAT1.6”, port files, memory management and README.md (see wolfcrypt/src/port/intel/).
* Added Intel QAT support for RSA public/private (CRT/non-CRT), AES CBC/GCM, ECDH/ECDSA, DH, DES3, SHA, SHA224, SHA256, SHA384, SHA512, MD5 and HMAC.
* wolfSSL async enabled all client and server: PKI, Encrypt/Decrypt, Hashing/HMAC and Certificate Sign/Verify.
* wolfSSL async support in functions: Encrypt, Decrypt, VerifyMAC, BuildMessage, ConfirmSignature, DoCertificate, ParseCertRelative, and MakeSignature.
* wolfCrypt test and benchmark async support added for all HW acceleration.
* wolfCrypt benchmark multi-threading support.
* Added QuickAssist memory overrides for XMALLOC, XFREE and XREALLOC. XREALLOC determines if existing pointer needs reallocated for NUMA.
* Refactor to make sure “heap” is available for async dev init.
* Added async support for all examples for connect, accept, read and write.
* Added new WC_BIGINT (in wolfmath.c) for async hardware support.
* Added async simulator tests for DES3 CBC, AES CBC/GCM.
* Added QAT standalone build for unit testing.
* Added int return code to SHA and MD5 functions.
* Refactor of the async stack variable handling, so async operations have generic args buffer area and cleanup function pointer.
* Combined duplicate code for async push/pop handling.
* Refactor internal.c to add AllocKey / FreeKey.
* Refactor of hash init/free in TLS to use InitHashes and FreeHashes.
* Refactor of the async event->context to use WOLF_EVENT_TYPE_ASYNC_WOLFSSL for WOLFSSL* and WOLF_EVENT_TYPE_ASYNC_WOLFCRYPT for WC_ASYNC_DEV*.
* Suppress error message for WC_PENDING_E.
* Implemented "wolfSSL_EVP_MD_CTX_init" to do memset.
* Cleanup of the openssl compat CTX sizes when async is enabled.
* Cleanup of AES, DES3, DH, SHA, MD5, DES3, DH, HMAC, MD5 for consistency and readability.
* Cleanup of the OPAQUE_LEN.
* Cleanup to use ENCRYPT_LEN instead of sizeof(ssl->arrays.preMasterSecret).
* Changed ssl->arrays.preMasterSecret to use XMALLOC (accelerates HW operations)
* Reduce verbosity with debug enabled for "GetMyVersion", "wolfSSL Using RSA OAEP padding" and "wolfSSL Using RSA PKCSV15 padding".
* Updated RSA un-padding error message so its different than one above it for better debugging.
* Added QAT async enables for each algorithm.
* Refactor of the async init to use _ex.
* Added WC_ASYNC_THRESH_NONE to allow bypass of the async thresholds for testing.
* Reformatted the benchmark results:
PKI: "RSA 2048 private HW 18522 ops took 1.003 sec, avg 0.054 ms, 18467.763 ops/sec"
Crypto/Hashing: SHA-256 SW 350 megs took 1.009 seconds, 346.946 MB/s Cycles per byte = 9.87
* Added min execution time for all benchmarks.
* Moved wc_*GetHash and wc_*RestorePos to appropriate files so use of isCopy flag is local.
* Fix for ECC sign status sometimes being invalid due to uninitialized ECC digest in benchmark.
* Added new DECLARE_VAR/FREE_VAR and DECLARE_ARRAY/FREE_ARRAY macros for helping setup test/benchmark variables to accelerate async.
* Added NO_SW_BENCH option to only run HW bench.
* Added support for PRNG to use hardware SHA256 if _wc devId provided.
* Fix to prevent curve tests from running against wrong curve sizes. Changed wc_ecc_set_curve to match on exact size.
* Added the wc_*GetHash calls to the wolfCrypt tests.
* Added async hardware start/stop to wolfSSL init/cleanup.
* Refactor to add wc_*Copy for hashing context (for async), which replaces wc_*RestorePos.
* Fixes for building with TI hashing (including: SHA224, missing new API’s and building with dummy build for non hw testing). Note: We need to add build test for this `./configure CFLAGS="-DWOLFSSL_TI_HASH -DTI_DUMMY_BUILD”`.
* Added arg checks on wc_*GetHash and wc_*Copy.
* Cleanup of the BuildMD5, BuildSHA, BuildMD5_CertVerify and BuildSHA_CertVerify functions.
* Added new ./configure --enable-asyncthreads, to allow enable/disable of the async threading support. If --enable-asynccrypt set this will be enabled by default if pthread is supported. Allows multi-threaded benchmarks with async simulator.
* Added checks for all hashing to verify valid ->buffLen.
* Fix for SHA512 scan-build warning about un-initialized “W_X”.
* Fix for valgrind un-initialized use of buffer in AllocDer (der->buffer) and BuildTlsFinished handshake_hash.
* Refactor of the benchmarking to use common function for start, check and finish of the stats.
* Fixed issue with ECC cache loading in multi-threading.
* Fix bug with AESNI not aligned code that assumes XMALLOC is 16-byte aligned.
* Added new WC_ASYNC_NO_… options to allow disabling of individual async algorithms. New defines are: WC_ASYNC_NO_CRYPT, WC_ASYNC_NO_PKI and WC_ASYNC_NO_HASH. Additionally each algorithm has a WC_ASYNC_NO_[ALGO] define.
* Added “wolfSSL_GetAllocators” API and fixed the wolfCrypt memcb_test so it restores callback pointers after test is complete (fixes issue with using custom allocators and test breaking it).
2017-04-07 15:46:32 -07:00
|
|
|
|
do {
|
|
|
|
|
err = 0; /* reset error */
|
|
|
|
|
ret = wolfSSL_connect(ssl);
|
2017-10-11 09:09:52 -07:00
|
|
|
|
if (ret != WOLFSSL_SUCCESS) {
|
Intel QuickAssist (QAT) support and async enhancements/fixes:
* Adds ./configure "--with-intelqa=../QAT1.6”, port files, memory management and README.md (see wolfcrypt/src/port/intel/).
* Added Intel QAT support for RSA public/private (CRT/non-CRT), AES CBC/GCM, ECDH/ECDSA, DH, DES3, SHA, SHA224, SHA256, SHA384, SHA512, MD5 and HMAC.
* wolfSSL async enabled all client and server: PKI, Encrypt/Decrypt, Hashing/HMAC and Certificate Sign/Verify.
* wolfSSL async support in functions: Encrypt, Decrypt, VerifyMAC, BuildMessage, ConfirmSignature, DoCertificate, ParseCertRelative, and MakeSignature.
* wolfCrypt test and benchmark async support added for all HW acceleration.
* wolfCrypt benchmark multi-threading support.
* Added QuickAssist memory overrides for XMALLOC, XFREE and XREALLOC. XREALLOC determines if existing pointer needs reallocated for NUMA.
* Refactor to make sure “heap” is available for async dev init.
* Added async support for all examples for connect, accept, read and write.
* Added new WC_BIGINT (in wolfmath.c) for async hardware support.
* Added async simulator tests for DES3 CBC, AES CBC/GCM.
* Added QAT standalone build for unit testing.
* Added int return code to SHA and MD5 functions.
* Refactor of the async stack variable handling, so async operations have generic args buffer area and cleanup function pointer.
* Combined duplicate code for async push/pop handling.
* Refactor internal.c to add AllocKey / FreeKey.
* Refactor of hash init/free in TLS to use InitHashes and FreeHashes.
* Refactor of the async event->context to use WOLF_EVENT_TYPE_ASYNC_WOLFSSL for WOLFSSL* and WOLF_EVENT_TYPE_ASYNC_WOLFCRYPT for WC_ASYNC_DEV*.
* Suppress error message for WC_PENDING_E.
* Implemented "wolfSSL_EVP_MD_CTX_init" to do memset.
* Cleanup of the openssl compat CTX sizes when async is enabled.
* Cleanup of AES, DES3, DH, SHA, MD5, DES3, DH, HMAC, MD5 for consistency and readability.
* Cleanup of the OPAQUE_LEN.
* Cleanup to use ENCRYPT_LEN instead of sizeof(ssl->arrays.preMasterSecret).
* Changed ssl->arrays.preMasterSecret to use XMALLOC (accelerates HW operations)
* Reduce verbosity with debug enabled for "GetMyVersion", "wolfSSL Using RSA OAEP padding" and "wolfSSL Using RSA PKCSV15 padding".
* Updated RSA un-padding error message so its different than one above it for better debugging.
* Added QAT async enables for each algorithm.
* Refactor of the async init to use _ex.
* Added WC_ASYNC_THRESH_NONE to allow bypass of the async thresholds for testing.
* Reformatted the benchmark results:
PKI: "RSA 2048 private HW 18522 ops took 1.003 sec, avg 0.054 ms, 18467.763 ops/sec"
Crypto/Hashing: SHA-256 SW 350 megs took 1.009 seconds, 346.946 MB/s Cycles per byte = 9.87
* Added min execution time for all benchmarks.
* Moved wc_*GetHash and wc_*RestorePos to appropriate files so use of isCopy flag is local.
* Fix for ECC sign status sometimes being invalid due to uninitialized ECC digest in benchmark.
* Added new DECLARE_VAR/FREE_VAR and DECLARE_ARRAY/FREE_ARRAY macros for helping setup test/benchmark variables to accelerate async.
* Added NO_SW_BENCH option to only run HW bench.
* Added support for PRNG to use hardware SHA256 if _wc devId provided.
* Fix to prevent curve tests from running against wrong curve sizes. Changed wc_ecc_set_curve to match on exact size.
* Added the wc_*GetHash calls to the wolfCrypt tests.
* Added async hardware start/stop to wolfSSL init/cleanup.
* Refactor to add wc_*Copy for hashing context (for async), which replaces wc_*RestorePos.
* Fixes for building with TI hashing (including: SHA224, missing new API’s and building with dummy build for non hw testing). Note: We need to add build test for this `./configure CFLAGS="-DWOLFSSL_TI_HASH -DTI_DUMMY_BUILD”`.
* Added arg checks on wc_*GetHash and wc_*Copy.
* Cleanup of the BuildMD5, BuildSHA, BuildMD5_CertVerify and BuildSHA_CertVerify functions.
* Added new ./configure --enable-asyncthreads, to allow enable/disable of the async threading support. If --enable-asynccrypt set this will be enabled by default if pthread is supported. Allows multi-threaded benchmarks with async simulator.
* Added checks for all hashing to verify valid ->buffLen.
* Fix for SHA512 scan-build warning about un-initialized “W_X”.
* Fix for valgrind un-initialized use of buffer in AllocDer (der->buffer) and BuildTlsFinished handshake_hash.
* Refactor of the benchmarking to use common function for start, check and finish of the stats.
* Fixed issue with ECC cache loading in multi-threading.
* Fix bug with AESNI not aligned code that assumes XMALLOC is 16-byte aligned.
* Added new WC_ASYNC_NO_… options to allow disabling of individual async algorithms. New defines are: WC_ASYNC_NO_CRYPT, WC_ASYNC_NO_PKI and WC_ASYNC_NO_HASH. Additionally each algorithm has a WC_ASYNC_NO_[ALGO] define.
* Added “wolfSSL_GetAllocators” API and fixed the wolfCrypt memcb_test so it restores callback pointers after test is complete (fixes issue with using custom allocators and test breaking it).
2017-04-07 15:46:32 -07:00
|
|
|
|
err = wolfSSL_get_error(ssl, 0);
|
|
|
|
|
#ifdef WOLFSSL_ASYNC_CRYPT
|
|
|
|
|
if (err == WC_PENDING_E) {
|
|
|
|
|
ret = wolfSSL_AsyncPoll(ssl, WOLF_POLL_FLAG_CHECK_HW);
|
|
|
|
|
if (ret < 0) break;
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
} while (err == WC_PENDING_E);
|
2017-10-11 09:09:52 -07:00
|
|
|
|
if (ret != WOLFSSL_SUCCESS) {
|
2015-10-14 19:13:45 -07:00
|
|
|
|
err_sys("SSL_connect failed");
|
Intel QuickAssist (QAT) support and async enhancements/fixes:
* Adds ./configure "--with-intelqa=../QAT1.6”, port files, memory management and README.md (see wolfcrypt/src/port/intel/).
* Added Intel QAT support for RSA public/private (CRT/non-CRT), AES CBC/GCM, ECDH/ECDSA, DH, DES3, SHA, SHA224, SHA256, SHA384, SHA512, MD5 and HMAC.
* wolfSSL async enabled all client and server: PKI, Encrypt/Decrypt, Hashing/HMAC and Certificate Sign/Verify.
* wolfSSL async support in functions: Encrypt, Decrypt, VerifyMAC, BuildMessage, ConfirmSignature, DoCertificate, ParseCertRelative, and MakeSignature.
* wolfCrypt test and benchmark async support added for all HW acceleration.
* wolfCrypt benchmark multi-threading support.
* Added QuickAssist memory overrides for XMALLOC, XFREE and XREALLOC. XREALLOC determines if existing pointer needs reallocated for NUMA.
* Refactor to make sure “heap” is available for async dev init.
* Added async support for all examples for connect, accept, read and write.
* Added new WC_BIGINT (in wolfmath.c) for async hardware support.
* Added async simulator tests for DES3 CBC, AES CBC/GCM.
* Added QAT standalone build for unit testing.
* Added int return code to SHA and MD5 functions.
* Refactor of the async stack variable handling, so async operations have generic args buffer area and cleanup function pointer.
* Combined duplicate code for async push/pop handling.
* Refactor internal.c to add AllocKey / FreeKey.
* Refactor of hash init/free in TLS to use InitHashes and FreeHashes.
* Refactor of the async event->context to use WOLF_EVENT_TYPE_ASYNC_WOLFSSL for WOLFSSL* and WOLF_EVENT_TYPE_ASYNC_WOLFCRYPT for WC_ASYNC_DEV*.
* Suppress error message for WC_PENDING_E.
* Implemented "wolfSSL_EVP_MD_CTX_init" to do memset.
* Cleanup of the openssl compat CTX sizes when async is enabled.
* Cleanup of AES, DES3, DH, SHA, MD5, DES3, DH, HMAC, MD5 for consistency and readability.
* Cleanup of the OPAQUE_LEN.
* Cleanup to use ENCRYPT_LEN instead of sizeof(ssl->arrays.preMasterSecret).
* Changed ssl->arrays.preMasterSecret to use XMALLOC (accelerates HW operations)
* Reduce verbosity with debug enabled for "GetMyVersion", "wolfSSL Using RSA OAEP padding" and "wolfSSL Using RSA PKCSV15 padding".
* Updated RSA un-padding error message so its different than one above it for better debugging.
* Added QAT async enables for each algorithm.
* Refactor of the async init to use _ex.
* Added WC_ASYNC_THRESH_NONE to allow bypass of the async thresholds for testing.
* Reformatted the benchmark results:
PKI: "RSA 2048 private HW 18522 ops took 1.003 sec, avg 0.054 ms, 18467.763 ops/sec"
Crypto/Hashing: SHA-256 SW 350 megs took 1.009 seconds, 346.946 MB/s Cycles per byte = 9.87
* Added min execution time for all benchmarks.
* Moved wc_*GetHash and wc_*RestorePos to appropriate files so use of isCopy flag is local.
* Fix for ECC sign status sometimes being invalid due to uninitialized ECC digest in benchmark.
* Added new DECLARE_VAR/FREE_VAR and DECLARE_ARRAY/FREE_ARRAY macros for helping setup test/benchmark variables to accelerate async.
* Added NO_SW_BENCH option to only run HW bench.
* Added support for PRNG to use hardware SHA256 if _wc devId provided.
* Fix to prevent curve tests from running against wrong curve sizes. Changed wc_ecc_set_curve to match on exact size.
* Added the wc_*GetHash calls to the wolfCrypt tests.
* Added async hardware start/stop to wolfSSL init/cleanup.
* Refactor to add wc_*Copy for hashing context (for async), which replaces wc_*RestorePos.
* Fixes for building with TI hashing (including: SHA224, missing new API’s and building with dummy build for non hw testing). Note: We need to add build test for this `./configure CFLAGS="-DWOLFSSL_TI_HASH -DTI_DUMMY_BUILD”`.
* Added arg checks on wc_*GetHash and wc_*Copy.
* Cleanup of the BuildMD5, BuildSHA, BuildMD5_CertVerify and BuildSHA_CertVerify functions.
* Added new ./configure --enable-asyncthreads, to allow enable/disable of the async threading support. If --enable-asynccrypt set this will be enabled by default if pthread is supported. Allows multi-threaded benchmarks with async simulator.
* Added checks for all hashing to verify valid ->buffLen.
* Fix for SHA512 scan-build warning about un-initialized “W_X”.
* Fix for valgrind un-initialized use of buffer in AllocDer (der->buffer) and BuildTlsFinished handshake_hash.
* Refactor of the benchmarking to use common function for start, check and finish of the stats.
* Fixed issue with ECC cache loading in multi-threading.
* Fix bug with AESNI not aligned code that assumes XMALLOC is 16-byte aligned.
* Added new WC_ASYNC_NO_… options to allow disabling of individual async algorithms. New defines are: WC_ASYNC_NO_CRYPT, WC_ASYNC_NO_PKI and WC_ASYNC_NO_HASH. Additionally each algorithm has a WC_ASYNC_NO_[ALGO] define.
* Added “wolfSSL_GetAllocators” API and fixed the wolfCrypt memcb_test so it restores callback pointers after test is complete (fixes issue with using custom allocators and test breaking it).
2017-04-07 15:46:32 -07:00
|
|
|
|
}
|
2015-10-14 19:13:45 -07:00
|
|
|
|
|
2016-11-24 01:31:07 +10:00
|
|
|
|
#ifdef WOLFSSL_TLS13
|
2018-07-17 09:04:00 +10:00
|
|
|
|
#ifndef NO_SESSION_CACHE
|
|
|
|
|
if (version >= 4 && resumeSession && !benchResume)
|
|
|
|
|
#else
|
|
|
|
|
if (version >= 4 && resumeSession)
|
|
|
|
|
#endif
|
|
|
|
|
{
|
2016-11-24 01:31:07 +10:00
|
|
|
|
if (wolfSSL_write(ssl, msg, sizeof(msg)-1) <= 0)
|
|
|
|
|
err_sys("SSL_write failed");
|
|
|
|
|
|
|
|
|
|
if (wolfSSL_read(ssl, reply, sizeof(reply)-1) <= 0)
|
|
|
|
|
err_sys("SSL_read failed");
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
2018-04-09 13:53:05 +10:00
|
|
|
|
|
2015-10-14 19:13:45 -07:00
|
|
|
|
wolfSSL_shutdown(ssl);
|
2016-02-22 10:11:41 +01:00
|
|
|
|
#ifndef NO_SESSION_CACHE
|
2015-10-14 19:13:45 -07:00
|
|
|
|
if (i == (times-1) && resumeSession) {
|
|
|
|
|
benchSession = wolfSSL_get_session(ssl);
|
|
|
|
|
}
|
2016-02-22 10:11:41 +01:00
|
|
|
|
#endif
|
2018-07-27 10:19:04 -07:00
|
|
|
|
wolfSSL_free(ssl); ssl = NULL;
|
2015-10-14 19:13:45 -07:00
|
|
|
|
CloseSocket(sockfd);
|
|
|
|
|
}
|
2016-04-14 16:26:51 +09:00
|
|
|
|
avg = current_time(0) - start;
|
2018-04-09 13:53:05 +10:00
|
|
|
|
avg /= (times - skip);
|
2015-10-14 19:13:45 -07:00
|
|
|
|
avg *= 1000; /* milliseconds */
|
2016-02-22 10:11:41 +01:00
|
|
|
|
#ifndef NO_SESSION_CACHE
|
2015-10-14 19:13:45 -07:00
|
|
|
|
if (benchResume)
|
2018-10-20 13:40:01 +09:00
|
|
|
|
printf("%s %8.3f %s\n", words[0],avg, words[1]);
|
2015-10-14 19:13:45 -07:00
|
|
|
|
else
|
2016-02-22 10:11:41 +01:00
|
|
|
|
#endif
|
2018-10-20 13:40:01 +09:00
|
|
|
|
printf("%s %8.3f %s\n", words[2],avg, words[3]);
|
2018-04-09 13:53:05 +10:00
|
|
|
|
|
|
|
|
|
WOLFSSL_TIME(times);
|
2015-10-14 19:13:45 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return EXIT_SUCCESS;
|
|
|
|
|
}
|
|
|
|
|
|
2016-08-25 22:20:35 -07:00
|
|
|
|
/* Measures throughput in kbps. Throughput = number of bytes */
|
|
|
|
|
static int ClientBenchmarkThroughput(WOLFSSL_CTX* ctx, char* host, word16 port,
|
2018-04-09 13:53:05 +10:00
|
|
|
|
int dtlsUDP, int dtlsSCTP, int block, int throughput, int useX25519)
|
2015-10-14 19:13:45 -07:00
|
|
|
|
{
|
|
|
|
|
double start, conn_time = 0, tx_time = 0, rx_time = 0;
|
|
|
|
|
SOCKET_T sockfd;
|
|
|
|
|
WOLFSSL* ssl;
|
Intel QuickAssist (QAT) support and async enhancements/fixes:
* Adds ./configure "--with-intelqa=../QAT1.6”, port files, memory management and README.md (see wolfcrypt/src/port/intel/).
* Added Intel QAT support for RSA public/private (CRT/non-CRT), AES CBC/GCM, ECDH/ECDSA, DH, DES3, SHA, SHA224, SHA256, SHA384, SHA512, MD5 and HMAC.
* wolfSSL async enabled all client and server: PKI, Encrypt/Decrypt, Hashing/HMAC and Certificate Sign/Verify.
* wolfSSL async support in functions: Encrypt, Decrypt, VerifyMAC, BuildMessage, ConfirmSignature, DoCertificate, ParseCertRelative, and MakeSignature.
* wolfCrypt test and benchmark async support added for all HW acceleration.
* wolfCrypt benchmark multi-threading support.
* Added QuickAssist memory overrides for XMALLOC, XFREE and XREALLOC. XREALLOC determines if existing pointer needs reallocated for NUMA.
* Refactor to make sure “heap” is available for async dev init.
* Added async support for all examples for connect, accept, read and write.
* Added new WC_BIGINT (in wolfmath.c) for async hardware support.
* Added async simulator tests for DES3 CBC, AES CBC/GCM.
* Added QAT standalone build for unit testing.
* Added int return code to SHA and MD5 functions.
* Refactor of the async stack variable handling, so async operations have generic args buffer area and cleanup function pointer.
* Combined duplicate code for async push/pop handling.
* Refactor internal.c to add AllocKey / FreeKey.
* Refactor of hash init/free in TLS to use InitHashes and FreeHashes.
* Refactor of the async event->context to use WOLF_EVENT_TYPE_ASYNC_WOLFSSL for WOLFSSL* and WOLF_EVENT_TYPE_ASYNC_WOLFCRYPT for WC_ASYNC_DEV*.
* Suppress error message for WC_PENDING_E.
* Implemented "wolfSSL_EVP_MD_CTX_init" to do memset.
* Cleanup of the openssl compat CTX sizes when async is enabled.
* Cleanup of AES, DES3, DH, SHA, MD5, DES3, DH, HMAC, MD5 for consistency and readability.
* Cleanup of the OPAQUE_LEN.
* Cleanup to use ENCRYPT_LEN instead of sizeof(ssl->arrays.preMasterSecret).
* Changed ssl->arrays.preMasterSecret to use XMALLOC (accelerates HW operations)
* Reduce verbosity with debug enabled for "GetMyVersion", "wolfSSL Using RSA OAEP padding" and "wolfSSL Using RSA PKCSV15 padding".
* Updated RSA un-padding error message so its different than one above it for better debugging.
* Added QAT async enables for each algorithm.
* Refactor of the async init to use _ex.
* Added WC_ASYNC_THRESH_NONE to allow bypass of the async thresholds for testing.
* Reformatted the benchmark results:
PKI: "RSA 2048 private HW 18522 ops took 1.003 sec, avg 0.054 ms, 18467.763 ops/sec"
Crypto/Hashing: SHA-256 SW 350 megs took 1.009 seconds, 346.946 MB/s Cycles per byte = 9.87
* Added min execution time for all benchmarks.
* Moved wc_*GetHash and wc_*RestorePos to appropriate files so use of isCopy flag is local.
* Fix for ECC sign status sometimes being invalid due to uninitialized ECC digest in benchmark.
* Added new DECLARE_VAR/FREE_VAR and DECLARE_ARRAY/FREE_ARRAY macros for helping setup test/benchmark variables to accelerate async.
* Added NO_SW_BENCH option to only run HW bench.
* Added support for PRNG to use hardware SHA256 if _wc devId provided.
* Fix to prevent curve tests from running against wrong curve sizes. Changed wc_ecc_set_curve to match on exact size.
* Added the wc_*GetHash calls to the wolfCrypt tests.
* Added async hardware start/stop to wolfSSL init/cleanup.
* Refactor to add wc_*Copy for hashing context (for async), which replaces wc_*RestorePos.
* Fixes for building with TI hashing (including: SHA224, missing new API’s and building with dummy build for non hw testing). Note: We need to add build test for this `./configure CFLAGS="-DWOLFSSL_TI_HASH -DTI_DUMMY_BUILD”`.
* Added arg checks on wc_*GetHash and wc_*Copy.
* Cleanup of the BuildMD5, BuildSHA, BuildMD5_CertVerify and BuildSHA_CertVerify functions.
* Added new ./configure --enable-asyncthreads, to allow enable/disable of the async threading support. If --enable-asynccrypt set this will be enabled by default if pthread is supported. Allows multi-threaded benchmarks with async simulator.
* Added checks for all hashing to verify valid ->buffLen.
* Fix for SHA512 scan-build warning about un-initialized “W_X”.
* Fix for valgrind un-initialized use of buffer in AllocDer (der->buffer) and BuildTlsFinished handshake_hash.
* Refactor of the benchmarking to use common function for start, check and finish of the stats.
* Fixed issue with ECC cache loading in multi-threading.
* Fix bug with AESNI not aligned code that assumes XMALLOC is 16-byte aligned.
* Added new WC_ASYNC_NO_… options to allow disabling of individual async algorithms. New defines are: WC_ASYNC_NO_CRYPT, WC_ASYNC_NO_PKI and WC_ASYNC_NO_HASH. Additionally each algorithm has a WC_ASYNC_NO_[ALGO] define.
* Added “wolfSSL_GetAllocators” API and fixed the wolfCrypt memcb_test so it restores callback pointers after test is complete (fixes issue with using custom allocators and test breaking it).
2017-04-07 15:46:32 -07:00
|
|
|
|
int ret = 0, err = 0;
|
2015-10-14 19:13:45 -07:00
|
|
|
|
|
2016-04-14 16:26:51 +09:00
|
|
|
|
start = current_time(1);
|
2015-10-14 19:13:45 -07:00
|
|
|
|
ssl = wolfSSL_new(ctx);
|
2015-10-16 14:12:38 -07:00
|
|
|
|
if (ssl == NULL)
|
|
|
|
|
err_sys("unable to get SSL object");
|
2016-11-24 01:31:07 +10:00
|
|
|
|
|
2016-08-25 22:20:35 -07:00
|
|
|
|
tcp_connect(&sockfd, host, port, dtlsUDP, dtlsSCTP, ssl);
|
2017-10-11 09:09:52 -07:00
|
|
|
|
if (wolfSSL_set_fd(ssl, sockfd) != WOLFSSL_SUCCESS) {
|
2016-03-25 13:59:04 -06:00
|
|
|
|
err_sys("error in setting fd");
|
|
|
|
|
}
|
Intel QuickAssist (QAT) support and async enhancements/fixes:
* Adds ./configure "--with-intelqa=../QAT1.6”, port files, memory management and README.md (see wolfcrypt/src/port/intel/).
* Added Intel QAT support for RSA public/private (CRT/non-CRT), AES CBC/GCM, ECDH/ECDSA, DH, DES3, SHA, SHA224, SHA256, SHA384, SHA512, MD5 and HMAC.
* wolfSSL async enabled all client and server: PKI, Encrypt/Decrypt, Hashing/HMAC and Certificate Sign/Verify.
* wolfSSL async support in functions: Encrypt, Decrypt, VerifyMAC, BuildMessage, ConfirmSignature, DoCertificate, ParseCertRelative, and MakeSignature.
* wolfCrypt test and benchmark async support added for all HW acceleration.
* wolfCrypt benchmark multi-threading support.
* Added QuickAssist memory overrides for XMALLOC, XFREE and XREALLOC. XREALLOC determines if existing pointer needs reallocated for NUMA.
* Refactor to make sure “heap” is available for async dev init.
* Added async support for all examples for connect, accept, read and write.
* Added new WC_BIGINT (in wolfmath.c) for async hardware support.
* Added async simulator tests for DES3 CBC, AES CBC/GCM.
* Added QAT standalone build for unit testing.
* Added int return code to SHA and MD5 functions.
* Refactor of the async stack variable handling, so async operations have generic args buffer area and cleanup function pointer.
* Combined duplicate code for async push/pop handling.
* Refactor internal.c to add AllocKey / FreeKey.
* Refactor of hash init/free in TLS to use InitHashes and FreeHashes.
* Refactor of the async event->context to use WOLF_EVENT_TYPE_ASYNC_WOLFSSL for WOLFSSL* and WOLF_EVENT_TYPE_ASYNC_WOLFCRYPT for WC_ASYNC_DEV*.
* Suppress error message for WC_PENDING_E.
* Implemented "wolfSSL_EVP_MD_CTX_init" to do memset.
* Cleanup of the openssl compat CTX sizes when async is enabled.
* Cleanup of AES, DES3, DH, SHA, MD5, DES3, DH, HMAC, MD5 for consistency and readability.
* Cleanup of the OPAQUE_LEN.
* Cleanup to use ENCRYPT_LEN instead of sizeof(ssl->arrays.preMasterSecret).
* Changed ssl->arrays.preMasterSecret to use XMALLOC (accelerates HW operations)
* Reduce verbosity with debug enabled for "GetMyVersion", "wolfSSL Using RSA OAEP padding" and "wolfSSL Using RSA PKCSV15 padding".
* Updated RSA un-padding error message so its different than one above it for better debugging.
* Added QAT async enables for each algorithm.
* Refactor of the async init to use _ex.
* Added WC_ASYNC_THRESH_NONE to allow bypass of the async thresholds for testing.
* Reformatted the benchmark results:
PKI: "RSA 2048 private HW 18522 ops took 1.003 sec, avg 0.054 ms, 18467.763 ops/sec"
Crypto/Hashing: SHA-256 SW 350 megs took 1.009 seconds, 346.946 MB/s Cycles per byte = 9.87
* Added min execution time for all benchmarks.
* Moved wc_*GetHash and wc_*RestorePos to appropriate files so use of isCopy flag is local.
* Fix for ECC sign status sometimes being invalid due to uninitialized ECC digest in benchmark.
* Added new DECLARE_VAR/FREE_VAR and DECLARE_ARRAY/FREE_ARRAY macros for helping setup test/benchmark variables to accelerate async.
* Added NO_SW_BENCH option to only run HW bench.
* Added support for PRNG to use hardware SHA256 if _wc devId provided.
* Fix to prevent curve tests from running against wrong curve sizes. Changed wc_ecc_set_curve to match on exact size.
* Added the wc_*GetHash calls to the wolfCrypt tests.
* Added async hardware start/stop to wolfSSL init/cleanup.
* Refactor to add wc_*Copy for hashing context (for async), which replaces wc_*RestorePos.
* Fixes for building with TI hashing (including: SHA224, missing new API’s and building with dummy build for non hw testing). Note: We need to add build test for this `./configure CFLAGS="-DWOLFSSL_TI_HASH -DTI_DUMMY_BUILD”`.
* Added arg checks on wc_*GetHash and wc_*Copy.
* Cleanup of the BuildMD5, BuildSHA, BuildMD5_CertVerify and BuildSHA_CertVerify functions.
* Added new ./configure --enable-asyncthreads, to allow enable/disable of the async threading support. If --enable-asynccrypt set this will be enabled by default if pthread is supported. Allows multi-threaded benchmarks with async simulator.
* Added checks for all hashing to verify valid ->buffLen.
* Fix for SHA512 scan-build warning about un-initialized “W_X”.
* Fix for valgrind un-initialized use of buffer in AllocDer (der->buffer) and BuildTlsFinished handshake_hash.
* Refactor of the benchmarking to use common function for start, check and finish of the stats.
* Fixed issue with ECC cache loading in multi-threading.
* Fix bug with AESNI not aligned code that assumes XMALLOC is 16-byte aligned.
* Added new WC_ASYNC_NO_… options to allow disabling of individual async algorithms. New defines are: WC_ASYNC_NO_CRYPT, WC_ASYNC_NO_PKI and WC_ASYNC_NO_HASH. Additionally each algorithm has a WC_ASYNC_NO_[ALGO] define.
* Added “wolfSSL_GetAllocators” API and fixed the wolfCrypt memcb_test so it restores callback pointers after test is complete (fixes issue with using custom allocators and test breaking it).
2017-04-07 15:46:32 -07:00
|
|
|
|
|
2017-05-31 11:44:43 +10:00
|
|
|
|
(void)useX25519;
|
|
|
|
|
#ifdef WOLFSSL_TLS13
|
|
|
|
|
#ifdef HAVE_CURVE25519
|
|
|
|
|
if (useX25519) {
|
|
|
|
|
if (wolfSSL_UseKeyShare(ssl, WOLFSSL_ECC_X25519)
|
2017-10-11 09:09:52 -07:00
|
|
|
|
!= WOLFSSL_SUCCESS) {
|
2017-06-13 09:44:14 -07:00
|
|
|
|
err_sys("unable to use curve x25519");
|
2017-05-31 11:44:43 +10:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
#endif
|
|
|
|
|
|
Intel QuickAssist (QAT) support and async enhancements/fixes:
* Adds ./configure "--with-intelqa=../QAT1.6”, port files, memory management and README.md (see wolfcrypt/src/port/intel/).
* Added Intel QAT support for RSA public/private (CRT/non-CRT), AES CBC/GCM, ECDH/ECDSA, DH, DES3, SHA, SHA224, SHA256, SHA384, SHA512, MD5 and HMAC.
* wolfSSL async enabled all client and server: PKI, Encrypt/Decrypt, Hashing/HMAC and Certificate Sign/Verify.
* wolfSSL async support in functions: Encrypt, Decrypt, VerifyMAC, BuildMessage, ConfirmSignature, DoCertificate, ParseCertRelative, and MakeSignature.
* wolfCrypt test and benchmark async support added for all HW acceleration.
* wolfCrypt benchmark multi-threading support.
* Added QuickAssist memory overrides for XMALLOC, XFREE and XREALLOC. XREALLOC determines if existing pointer needs reallocated for NUMA.
* Refactor to make sure “heap” is available for async dev init.
* Added async support for all examples for connect, accept, read and write.
* Added new WC_BIGINT (in wolfmath.c) for async hardware support.
* Added async simulator tests for DES3 CBC, AES CBC/GCM.
* Added QAT standalone build for unit testing.
* Added int return code to SHA and MD5 functions.
* Refactor of the async stack variable handling, so async operations have generic args buffer area and cleanup function pointer.
* Combined duplicate code for async push/pop handling.
* Refactor internal.c to add AllocKey / FreeKey.
* Refactor of hash init/free in TLS to use InitHashes and FreeHashes.
* Refactor of the async event->context to use WOLF_EVENT_TYPE_ASYNC_WOLFSSL for WOLFSSL* and WOLF_EVENT_TYPE_ASYNC_WOLFCRYPT for WC_ASYNC_DEV*.
* Suppress error message for WC_PENDING_E.
* Implemented "wolfSSL_EVP_MD_CTX_init" to do memset.
* Cleanup of the openssl compat CTX sizes when async is enabled.
* Cleanup of AES, DES3, DH, SHA, MD5, DES3, DH, HMAC, MD5 for consistency and readability.
* Cleanup of the OPAQUE_LEN.
* Cleanup to use ENCRYPT_LEN instead of sizeof(ssl->arrays.preMasterSecret).
* Changed ssl->arrays.preMasterSecret to use XMALLOC (accelerates HW operations)
* Reduce verbosity with debug enabled for "GetMyVersion", "wolfSSL Using RSA OAEP padding" and "wolfSSL Using RSA PKCSV15 padding".
* Updated RSA un-padding error message so its different than one above it for better debugging.
* Added QAT async enables for each algorithm.
* Refactor of the async init to use _ex.
* Added WC_ASYNC_THRESH_NONE to allow bypass of the async thresholds for testing.
* Reformatted the benchmark results:
PKI: "RSA 2048 private HW 18522 ops took 1.003 sec, avg 0.054 ms, 18467.763 ops/sec"
Crypto/Hashing: SHA-256 SW 350 megs took 1.009 seconds, 346.946 MB/s Cycles per byte = 9.87
* Added min execution time for all benchmarks.
* Moved wc_*GetHash and wc_*RestorePos to appropriate files so use of isCopy flag is local.
* Fix for ECC sign status sometimes being invalid due to uninitialized ECC digest in benchmark.
* Added new DECLARE_VAR/FREE_VAR and DECLARE_ARRAY/FREE_ARRAY macros for helping setup test/benchmark variables to accelerate async.
* Added NO_SW_BENCH option to only run HW bench.
* Added support for PRNG to use hardware SHA256 if _wc devId provided.
* Fix to prevent curve tests from running against wrong curve sizes. Changed wc_ecc_set_curve to match on exact size.
* Added the wc_*GetHash calls to the wolfCrypt tests.
* Added async hardware start/stop to wolfSSL init/cleanup.
* Refactor to add wc_*Copy for hashing context (for async), which replaces wc_*RestorePos.
* Fixes for building with TI hashing (including: SHA224, missing new API’s and building with dummy build for non hw testing). Note: We need to add build test for this `./configure CFLAGS="-DWOLFSSL_TI_HASH -DTI_DUMMY_BUILD”`.
* Added arg checks on wc_*GetHash and wc_*Copy.
* Cleanup of the BuildMD5, BuildSHA, BuildMD5_CertVerify and BuildSHA_CertVerify functions.
* Added new ./configure --enable-asyncthreads, to allow enable/disable of the async threading support. If --enable-asynccrypt set this will be enabled by default if pthread is supported. Allows multi-threaded benchmarks with async simulator.
* Added checks for all hashing to verify valid ->buffLen.
* Fix for SHA512 scan-build warning about un-initialized “W_X”.
* Fix for valgrind un-initialized use of buffer in AllocDer (der->buffer) and BuildTlsFinished handshake_hash.
* Refactor of the benchmarking to use common function for start, check and finish of the stats.
* Fixed issue with ECC cache loading in multi-threading.
* Fix bug with AESNI not aligned code that assumes XMALLOC is 16-byte aligned.
* Added new WC_ASYNC_NO_… options to allow disabling of individual async algorithms. New defines are: WC_ASYNC_NO_CRYPT, WC_ASYNC_NO_PKI and WC_ASYNC_NO_HASH. Additionally each algorithm has a WC_ASYNC_NO_[ALGO] define.
* Added “wolfSSL_GetAllocators” API and fixed the wolfCrypt memcb_test so it restores callback pointers after test is complete (fixes issue with using custom allocators and test breaking it).
2017-04-07 15:46:32 -07:00
|
|
|
|
do {
|
|
|
|
|
err = 0; /* reset error */
|
|
|
|
|
ret = wolfSSL_connect(ssl);
|
2017-10-11 09:09:52 -07:00
|
|
|
|
if (ret != WOLFSSL_SUCCESS) {
|
Intel QuickAssist (QAT) support and async enhancements/fixes:
* Adds ./configure "--with-intelqa=../QAT1.6”, port files, memory management and README.md (see wolfcrypt/src/port/intel/).
* Added Intel QAT support for RSA public/private (CRT/non-CRT), AES CBC/GCM, ECDH/ECDSA, DH, DES3, SHA, SHA224, SHA256, SHA384, SHA512, MD5 and HMAC.
* wolfSSL async enabled all client and server: PKI, Encrypt/Decrypt, Hashing/HMAC and Certificate Sign/Verify.
* wolfSSL async support in functions: Encrypt, Decrypt, VerifyMAC, BuildMessage, ConfirmSignature, DoCertificate, ParseCertRelative, and MakeSignature.
* wolfCrypt test and benchmark async support added for all HW acceleration.
* wolfCrypt benchmark multi-threading support.
* Added QuickAssist memory overrides for XMALLOC, XFREE and XREALLOC. XREALLOC determines if existing pointer needs reallocated for NUMA.
* Refactor to make sure “heap” is available for async dev init.
* Added async support for all examples for connect, accept, read and write.
* Added new WC_BIGINT (in wolfmath.c) for async hardware support.
* Added async simulator tests for DES3 CBC, AES CBC/GCM.
* Added QAT standalone build for unit testing.
* Added int return code to SHA and MD5 functions.
* Refactor of the async stack variable handling, so async operations have generic args buffer area and cleanup function pointer.
* Combined duplicate code for async push/pop handling.
* Refactor internal.c to add AllocKey / FreeKey.
* Refactor of hash init/free in TLS to use InitHashes and FreeHashes.
* Refactor of the async event->context to use WOLF_EVENT_TYPE_ASYNC_WOLFSSL for WOLFSSL* and WOLF_EVENT_TYPE_ASYNC_WOLFCRYPT for WC_ASYNC_DEV*.
* Suppress error message for WC_PENDING_E.
* Implemented "wolfSSL_EVP_MD_CTX_init" to do memset.
* Cleanup of the openssl compat CTX sizes when async is enabled.
* Cleanup of AES, DES3, DH, SHA, MD5, DES3, DH, HMAC, MD5 for consistency and readability.
* Cleanup of the OPAQUE_LEN.
* Cleanup to use ENCRYPT_LEN instead of sizeof(ssl->arrays.preMasterSecret).
* Changed ssl->arrays.preMasterSecret to use XMALLOC (accelerates HW operations)
* Reduce verbosity with debug enabled for "GetMyVersion", "wolfSSL Using RSA OAEP padding" and "wolfSSL Using RSA PKCSV15 padding".
* Updated RSA un-padding error message so its different than one above it for better debugging.
* Added QAT async enables for each algorithm.
* Refactor of the async init to use _ex.
* Added WC_ASYNC_THRESH_NONE to allow bypass of the async thresholds for testing.
* Reformatted the benchmark results:
PKI: "RSA 2048 private HW 18522 ops took 1.003 sec, avg 0.054 ms, 18467.763 ops/sec"
Crypto/Hashing: SHA-256 SW 350 megs took 1.009 seconds, 346.946 MB/s Cycles per byte = 9.87
* Added min execution time for all benchmarks.
* Moved wc_*GetHash and wc_*RestorePos to appropriate files so use of isCopy flag is local.
* Fix for ECC sign status sometimes being invalid due to uninitialized ECC digest in benchmark.
* Added new DECLARE_VAR/FREE_VAR and DECLARE_ARRAY/FREE_ARRAY macros for helping setup test/benchmark variables to accelerate async.
* Added NO_SW_BENCH option to only run HW bench.
* Added support for PRNG to use hardware SHA256 if _wc devId provided.
* Fix to prevent curve tests from running against wrong curve sizes. Changed wc_ecc_set_curve to match on exact size.
* Added the wc_*GetHash calls to the wolfCrypt tests.
* Added async hardware start/stop to wolfSSL init/cleanup.
* Refactor to add wc_*Copy for hashing context (for async), which replaces wc_*RestorePos.
* Fixes for building with TI hashing (including: SHA224, missing new API’s and building with dummy build for non hw testing). Note: We need to add build test for this `./configure CFLAGS="-DWOLFSSL_TI_HASH -DTI_DUMMY_BUILD”`.
* Added arg checks on wc_*GetHash and wc_*Copy.
* Cleanup of the BuildMD5, BuildSHA, BuildMD5_CertVerify and BuildSHA_CertVerify functions.
* Added new ./configure --enable-asyncthreads, to allow enable/disable of the async threading support. If --enable-asynccrypt set this will be enabled by default if pthread is supported. Allows multi-threaded benchmarks with async simulator.
* Added checks for all hashing to verify valid ->buffLen.
* Fix for SHA512 scan-build warning about un-initialized “W_X”.
* Fix for valgrind un-initialized use of buffer in AllocDer (der->buffer) and BuildTlsFinished handshake_hash.
* Refactor of the benchmarking to use common function for start, check and finish of the stats.
* Fixed issue with ECC cache loading in multi-threading.
* Fix bug with AESNI not aligned code that assumes XMALLOC is 16-byte aligned.
* Added new WC_ASYNC_NO_… options to allow disabling of individual async algorithms. New defines are: WC_ASYNC_NO_CRYPT, WC_ASYNC_NO_PKI and WC_ASYNC_NO_HASH. Additionally each algorithm has a WC_ASYNC_NO_[ALGO] define.
* Added “wolfSSL_GetAllocators” API and fixed the wolfCrypt memcb_test so it restores callback pointers after test is complete (fixes issue with using custom allocators and test breaking it).
2017-04-07 15:46:32 -07:00
|
|
|
|
err = wolfSSL_get_error(ssl, 0);
|
|
|
|
|
#ifdef WOLFSSL_ASYNC_CRYPT
|
|
|
|
|
if (err == WC_PENDING_E) {
|
|
|
|
|
ret = wolfSSL_AsyncPoll(ssl, WOLF_POLL_FLAG_CHECK_HW);
|
|
|
|
|
if (ret < 0) break;
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
} while (err == WC_PENDING_E);
|
2017-10-11 09:09:52 -07:00
|
|
|
|
if (ret == WOLFSSL_SUCCESS) {
|
2015-10-14 19:13:45 -07:00
|
|
|
|
/* Perform throughput test */
|
|
|
|
|
char *tx_buffer, *rx_buffer;
|
|
|
|
|
|
|
|
|
|
/* Record connection time */
|
2016-04-14 16:26:51 +09:00
|
|
|
|
conn_time = current_time(0) - start;
|
2015-10-14 19:13:45 -07:00
|
|
|
|
|
|
|
|
|
/* Allocate TX/RX buffers */
|
2018-04-09 13:53:05 +10:00
|
|
|
|
tx_buffer = (char*)XMALLOC(block, NULL, DYNAMIC_TYPE_TMP_BUFFER);
|
|
|
|
|
rx_buffer = (char*)XMALLOC(block, NULL, DYNAMIC_TYPE_TMP_BUFFER);
|
Intel QuickAssist (QAT) support and async enhancements/fixes:
* Adds ./configure "--with-intelqa=../QAT1.6”, port files, memory management and README.md (see wolfcrypt/src/port/intel/).
* Added Intel QAT support for RSA public/private (CRT/non-CRT), AES CBC/GCM, ECDH/ECDSA, DH, DES3, SHA, SHA224, SHA256, SHA384, SHA512, MD5 and HMAC.
* wolfSSL async enabled all client and server: PKI, Encrypt/Decrypt, Hashing/HMAC and Certificate Sign/Verify.
* wolfSSL async support in functions: Encrypt, Decrypt, VerifyMAC, BuildMessage, ConfirmSignature, DoCertificate, ParseCertRelative, and MakeSignature.
* wolfCrypt test and benchmark async support added for all HW acceleration.
* wolfCrypt benchmark multi-threading support.
* Added QuickAssist memory overrides for XMALLOC, XFREE and XREALLOC. XREALLOC determines if existing pointer needs reallocated for NUMA.
* Refactor to make sure “heap” is available for async dev init.
* Added async support for all examples for connect, accept, read and write.
* Added new WC_BIGINT (in wolfmath.c) for async hardware support.
* Added async simulator tests for DES3 CBC, AES CBC/GCM.
* Added QAT standalone build for unit testing.
* Added int return code to SHA and MD5 functions.
* Refactor of the async stack variable handling, so async operations have generic args buffer area and cleanup function pointer.
* Combined duplicate code for async push/pop handling.
* Refactor internal.c to add AllocKey / FreeKey.
* Refactor of hash init/free in TLS to use InitHashes and FreeHashes.
* Refactor of the async event->context to use WOLF_EVENT_TYPE_ASYNC_WOLFSSL for WOLFSSL* and WOLF_EVENT_TYPE_ASYNC_WOLFCRYPT for WC_ASYNC_DEV*.
* Suppress error message for WC_PENDING_E.
* Implemented "wolfSSL_EVP_MD_CTX_init" to do memset.
* Cleanup of the openssl compat CTX sizes when async is enabled.
* Cleanup of AES, DES3, DH, SHA, MD5, DES3, DH, HMAC, MD5 for consistency and readability.
* Cleanup of the OPAQUE_LEN.
* Cleanup to use ENCRYPT_LEN instead of sizeof(ssl->arrays.preMasterSecret).
* Changed ssl->arrays.preMasterSecret to use XMALLOC (accelerates HW operations)
* Reduce verbosity with debug enabled for "GetMyVersion", "wolfSSL Using RSA OAEP padding" and "wolfSSL Using RSA PKCSV15 padding".
* Updated RSA un-padding error message so its different than one above it for better debugging.
* Added QAT async enables for each algorithm.
* Refactor of the async init to use _ex.
* Added WC_ASYNC_THRESH_NONE to allow bypass of the async thresholds for testing.
* Reformatted the benchmark results:
PKI: "RSA 2048 private HW 18522 ops took 1.003 sec, avg 0.054 ms, 18467.763 ops/sec"
Crypto/Hashing: SHA-256 SW 350 megs took 1.009 seconds, 346.946 MB/s Cycles per byte = 9.87
* Added min execution time for all benchmarks.
* Moved wc_*GetHash and wc_*RestorePos to appropriate files so use of isCopy flag is local.
* Fix for ECC sign status sometimes being invalid due to uninitialized ECC digest in benchmark.
* Added new DECLARE_VAR/FREE_VAR and DECLARE_ARRAY/FREE_ARRAY macros for helping setup test/benchmark variables to accelerate async.
* Added NO_SW_BENCH option to only run HW bench.
* Added support for PRNG to use hardware SHA256 if _wc devId provided.
* Fix to prevent curve tests from running against wrong curve sizes. Changed wc_ecc_set_curve to match on exact size.
* Added the wc_*GetHash calls to the wolfCrypt tests.
* Added async hardware start/stop to wolfSSL init/cleanup.
* Refactor to add wc_*Copy for hashing context (for async), which replaces wc_*RestorePos.
* Fixes for building with TI hashing (including: SHA224, missing new API’s and building with dummy build for non hw testing). Note: We need to add build test for this `./configure CFLAGS="-DWOLFSSL_TI_HASH -DTI_DUMMY_BUILD”`.
* Added arg checks on wc_*GetHash and wc_*Copy.
* Cleanup of the BuildMD5, BuildSHA, BuildMD5_CertVerify and BuildSHA_CertVerify functions.
* Added new ./configure --enable-asyncthreads, to allow enable/disable of the async threading support. If --enable-asynccrypt set this will be enabled by default if pthread is supported. Allows multi-threaded benchmarks with async simulator.
* Added checks for all hashing to verify valid ->buffLen.
* Fix for SHA512 scan-build warning about un-initialized “W_X”.
* Fix for valgrind un-initialized use of buffer in AllocDer (der->buffer) and BuildTlsFinished handshake_hash.
* Refactor of the benchmarking to use common function for start, check and finish of the stats.
* Fixed issue with ECC cache loading in multi-threading.
* Fix bug with AESNI not aligned code that assumes XMALLOC is 16-byte aligned.
* Added new WC_ASYNC_NO_… options to allow disabling of individual async algorithms. New defines are: WC_ASYNC_NO_CRYPT, WC_ASYNC_NO_PKI and WC_ASYNC_NO_HASH. Additionally each algorithm has a WC_ASYNC_NO_[ALGO] define.
* Added “wolfSSL_GetAllocators” API and fixed the wolfCrypt memcb_test so it restores callback pointers after test is complete (fixes issue with using custom allocators and test breaking it).
2017-04-07 15:46:32 -07:00
|
|
|
|
if (tx_buffer && rx_buffer) {
|
2015-10-14 19:13:45 -07:00
|
|
|
|
WC_RNG rng;
|
|
|
|
|
|
|
|
|
|
/* Startup the RNG */
|
2017-04-10 14:19:20 -07:00
|
|
|
|
#if !defined(HAVE_FIPS) && defined(WOLFSSL_ASYNC_CRYPT)
|
Intel QuickAssist (QAT) support and async enhancements/fixes:
* Adds ./configure "--with-intelqa=../QAT1.6”, port files, memory management and README.md (see wolfcrypt/src/port/intel/).
* Added Intel QAT support for RSA public/private (CRT/non-CRT), AES CBC/GCM, ECDH/ECDSA, DH, DES3, SHA, SHA224, SHA256, SHA384, SHA512, MD5 and HMAC.
* wolfSSL async enabled all client and server: PKI, Encrypt/Decrypt, Hashing/HMAC and Certificate Sign/Verify.
* wolfSSL async support in functions: Encrypt, Decrypt, VerifyMAC, BuildMessage, ConfirmSignature, DoCertificate, ParseCertRelative, and MakeSignature.
* wolfCrypt test and benchmark async support added for all HW acceleration.
* wolfCrypt benchmark multi-threading support.
* Added QuickAssist memory overrides for XMALLOC, XFREE and XREALLOC. XREALLOC determines if existing pointer needs reallocated for NUMA.
* Refactor to make sure “heap” is available for async dev init.
* Added async support for all examples for connect, accept, read and write.
* Added new WC_BIGINT (in wolfmath.c) for async hardware support.
* Added async simulator tests for DES3 CBC, AES CBC/GCM.
* Added QAT standalone build for unit testing.
* Added int return code to SHA and MD5 functions.
* Refactor of the async stack variable handling, so async operations have generic args buffer area and cleanup function pointer.
* Combined duplicate code for async push/pop handling.
* Refactor internal.c to add AllocKey / FreeKey.
* Refactor of hash init/free in TLS to use InitHashes and FreeHashes.
* Refactor of the async event->context to use WOLF_EVENT_TYPE_ASYNC_WOLFSSL for WOLFSSL* and WOLF_EVENT_TYPE_ASYNC_WOLFCRYPT for WC_ASYNC_DEV*.
* Suppress error message for WC_PENDING_E.
* Implemented "wolfSSL_EVP_MD_CTX_init" to do memset.
* Cleanup of the openssl compat CTX sizes when async is enabled.
* Cleanup of AES, DES3, DH, SHA, MD5, DES3, DH, HMAC, MD5 for consistency and readability.
* Cleanup of the OPAQUE_LEN.
* Cleanup to use ENCRYPT_LEN instead of sizeof(ssl->arrays.preMasterSecret).
* Changed ssl->arrays.preMasterSecret to use XMALLOC (accelerates HW operations)
* Reduce verbosity with debug enabled for "GetMyVersion", "wolfSSL Using RSA OAEP padding" and "wolfSSL Using RSA PKCSV15 padding".
* Updated RSA un-padding error message so its different than one above it for better debugging.
* Added QAT async enables for each algorithm.
* Refactor of the async init to use _ex.
* Added WC_ASYNC_THRESH_NONE to allow bypass of the async thresholds for testing.
* Reformatted the benchmark results:
PKI: "RSA 2048 private HW 18522 ops took 1.003 sec, avg 0.054 ms, 18467.763 ops/sec"
Crypto/Hashing: SHA-256 SW 350 megs took 1.009 seconds, 346.946 MB/s Cycles per byte = 9.87
* Added min execution time for all benchmarks.
* Moved wc_*GetHash and wc_*RestorePos to appropriate files so use of isCopy flag is local.
* Fix for ECC sign status sometimes being invalid due to uninitialized ECC digest in benchmark.
* Added new DECLARE_VAR/FREE_VAR and DECLARE_ARRAY/FREE_ARRAY macros for helping setup test/benchmark variables to accelerate async.
* Added NO_SW_BENCH option to only run HW bench.
* Added support for PRNG to use hardware SHA256 if _wc devId provided.
* Fix to prevent curve tests from running against wrong curve sizes. Changed wc_ecc_set_curve to match on exact size.
* Added the wc_*GetHash calls to the wolfCrypt tests.
* Added async hardware start/stop to wolfSSL init/cleanup.
* Refactor to add wc_*Copy for hashing context (for async), which replaces wc_*RestorePos.
* Fixes for building with TI hashing (including: SHA224, missing new API’s and building with dummy build for non hw testing). Note: We need to add build test for this `./configure CFLAGS="-DWOLFSSL_TI_HASH -DTI_DUMMY_BUILD”`.
* Added arg checks on wc_*GetHash and wc_*Copy.
* Cleanup of the BuildMD5, BuildSHA, BuildMD5_CertVerify and BuildSHA_CertVerify functions.
* Added new ./configure --enable-asyncthreads, to allow enable/disable of the async threading support. If --enable-asynccrypt set this will be enabled by default if pthread is supported. Allows multi-threaded benchmarks with async simulator.
* Added checks for all hashing to verify valid ->buffLen.
* Fix for SHA512 scan-build warning about un-initialized “W_X”.
* Fix for valgrind un-initialized use of buffer in AllocDer (der->buffer) and BuildTlsFinished handshake_hash.
* Refactor of the benchmarking to use common function for start, check and finish of the stats.
* Fixed issue with ECC cache loading in multi-threading.
* Fix bug with AESNI not aligned code that assumes XMALLOC is 16-byte aligned.
* Added new WC_ASYNC_NO_… options to allow disabling of individual async algorithms. New defines are: WC_ASYNC_NO_CRYPT, WC_ASYNC_NO_PKI and WC_ASYNC_NO_HASH. Additionally each algorithm has a WC_ASYNC_NO_[ALGO] define.
* Added “wolfSSL_GetAllocators” API and fixed the wolfCrypt memcb_test so it restores callback pointers after test is complete (fixes issue with using custom allocators and test breaking it).
2017-04-07 15:46:32 -07:00
|
|
|
|
ret = wc_InitRng_ex(&rng, NULL, devId);
|
|
|
|
|
#else
|
2015-10-14 19:13:45 -07:00
|
|
|
|
ret = wc_InitRng(&rng);
|
Intel QuickAssist (QAT) support and async enhancements/fixes:
* Adds ./configure "--with-intelqa=../QAT1.6”, port files, memory management and README.md (see wolfcrypt/src/port/intel/).
* Added Intel QAT support for RSA public/private (CRT/non-CRT), AES CBC/GCM, ECDH/ECDSA, DH, DES3, SHA, SHA224, SHA256, SHA384, SHA512, MD5 and HMAC.
* wolfSSL async enabled all client and server: PKI, Encrypt/Decrypt, Hashing/HMAC and Certificate Sign/Verify.
* wolfSSL async support in functions: Encrypt, Decrypt, VerifyMAC, BuildMessage, ConfirmSignature, DoCertificate, ParseCertRelative, and MakeSignature.
* wolfCrypt test and benchmark async support added for all HW acceleration.
* wolfCrypt benchmark multi-threading support.
* Added QuickAssist memory overrides for XMALLOC, XFREE and XREALLOC. XREALLOC determines if existing pointer needs reallocated for NUMA.
* Refactor to make sure “heap” is available for async dev init.
* Added async support for all examples for connect, accept, read and write.
* Added new WC_BIGINT (in wolfmath.c) for async hardware support.
* Added async simulator tests for DES3 CBC, AES CBC/GCM.
* Added QAT standalone build for unit testing.
* Added int return code to SHA and MD5 functions.
* Refactor of the async stack variable handling, so async operations have generic args buffer area and cleanup function pointer.
* Combined duplicate code for async push/pop handling.
* Refactor internal.c to add AllocKey / FreeKey.
* Refactor of hash init/free in TLS to use InitHashes and FreeHashes.
* Refactor of the async event->context to use WOLF_EVENT_TYPE_ASYNC_WOLFSSL for WOLFSSL* and WOLF_EVENT_TYPE_ASYNC_WOLFCRYPT for WC_ASYNC_DEV*.
* Suppress error message for WC_PENDING_E.
* Implemented "wolfSSL_EVP_MD_CTX_init" to do memset.
* Cleanup of the openssl compat CTX sizes when async is enabled.
* Cleanup of AES, DES3, DH, SHA, MD5, DES3, DH, HMAC, MD5 for consistency and readability.
* Cleanup of the OPAQUE_LEN.
* Cleanup to use ENCRYPT_LEN instead of sizeof(ssl->arrays.preMasterSecret).
* Changed ssl->arrays.preMasterSecret to use XMALLOC (accelerates HW operations)
* Reduce verbosity with debug enabled for "GetMyVersion", "wolfSSL Using RSA OAEP padding" and "wolfSSL Using RSA PKCSV15 padding".
* Updated RSA un-padding error message so its different than one above it for better debugging.
* Added QAT async enables for each algorithm.
* Refactor of the async init to use _ex.
* Added WC_ASYNC_THRESH_NONE to allow bypass of the async thresholds for testing.
* Reformatted the benchmark results:
PKI: "RSA 2048 private HW 18522 ops took 1.003 sec, avg 0.054 ms, 18467.763 ops/sec"
Crypto/Hashing: SHA-256 SW 350 megs took 1.009 seconds, 346.946 MB/s Cycles per byte = 9.87
* Added min execution time for all benchmarks.
* Moved wc_*GetHash and wc_*RestorePos to appropriate files so use of isCopy flag is local.
* Fix for ECC sign status sometimes being invalid due to uninitialized ECC digest in benchmark.
* Added new DECLARE_VAR/FREE_VAR and DECLARE_ARRAY/FREE_ARRAY macros for helping setup test/benchmark variables to accelerate async.
* Added NO_SW_BENCH option to only run HW bench.
* Added support for PRNG to use hardware SHA256 if _wc devId provided.
* Fix to prevent curve tests from running against wrong curve sizes. Changed wc_ecc_set_curve to match on exact size.
* Added the wc_*GetHash calls to the wolfCrypt tests.
* Added async hardware start/stop to wolfSSL init/cleanup.
* Refactor to add wc_*Copy for hashing context (for async), which replaces wc_*RestorePos.
* Fixes for building with TI hashing (including: SHA224, missing new API’s and building with dummy build for non hw testing). Note: We need to add build test for this `./configure CFLAGS="-DWOLFSSL_TI_HASH -DTI_DUMMY_BUILD”`.
* Added arg checks on wc_*GetHash and wc_*Copy.
* Cleanup of the BuildMD5, BuildSHA, BuildMD5_CertVerify and BuildSHA_CertVerify functions.
* Added new ./configure --enable-asyncthreads, to allow enable/disable of the async threading support. If --enable-asynccrypt set this will be enabled by default if pthread is supported. Allows multi-threaded benchmarks with async simulator.
* Added checks for all hashing to verify valid ->buffLen.
* Fix for SHA512 scan-build warning about un-initialized “W_X”.
* Fix for valgrind un-initialized use of buffer in AllocDer (der->buffer) and BuildTlsFinished handshake_hash.
* Refactor of the benchmarking to use common function for start, check and finish of the stats.
* Fixed issue with ECC cache loading in multi-threading.
* Fix bug with AESNI not aligned code that assumes XMALLOC is 16-byte aligned.
* Added new WC_ASYNC_NO_… options to allow disabling of individual async algorithms. New defines are: WC_ASYNC_NO_CRYPT, WC_ASYNC_NO_PKI and WC_ASYNC_NO_HASH. Additionally each algorithm has a WC_ASYNC_NO_[ALGO] define.
* Added “wolfSSL_GetAllocators” API and fixed the wolfCrypt memcb_test so it restores callback pointers after test is complete (fixes issue with using custom allocators and test breaking it).
2017-04-07 15:46:32 -07:00
|
|
|
|
#endif
|
|
|
|
|
if (ret == 0) {
|
2015-10-14 19:13:45 -07:00
|
|
|
|
int xfer_bytes;
|
|
|
|
|
|
|
|
|
|
/* Generate random data to send */
|
2018-04-09 13:53:05 +10:00
|
|
|
|
ret = wc_RNG_GenerateBlock(&rng, (byte*)tx_buffer, block);
|
2015-10-14 19:13:45 -07:00
|
|
|
|
wc_FreeRng(&rng);
|
|
|
|
|
if(ret != 0) {
|
|
|
|
|
err_sys("wc_RNG_GenerateBlock failed");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Perform TX and RX of bytes */
|
|
|
|
|
xfer_bytes = 0;
|
Intel QuickAssist (QAT) support and async enhancements/fixes:
* Adds ./configure "--with-intelqa=../QAT1.6”, port files, memory management and README.md (see wolfcrypt/src/port/intel/).
* Added Intel QAT support for RSA public/private (CRT/non-CRT), AES CBC/GCM, ECDH/ECDSA, DH, DES3, SHA, SHA224, SHA256, SHA384, SHA512, MD5 and HMAC.
* wolfSSL async enabled all client and server: PKI, Encrypt/Decrypt, Hashing/HMAC and Certificate Sign/Verify.
* wolfSSL async support in functions: Encrypt, Decrypt, VerifyMAC, BuildMessage, ConfirmSignature, DoCertificate, ParseCertRelative, and MakeSignature.
* wolfCrypt test and benchmark async support added for all HW acceleration.
* wolfCrypt benchmark multi-threading support.
* Added QuickAssist memory overrides for XMALLOC, XFREE and XREALLOC. XREALLOC determines if existing pointer needs reallocated for NUMA.
* Refactor to make sure “heap” is available for async dev init.
* Added async support for all examples for connect, accept, read and write.
* Added new WC_BIGINT (in wolfmath.c) for async hardware support.
* Added async simulator tests for DES3 CBC, AES CBC/GCM.
* Added QAT standalone build for unit testing.
* Added int return code to SHA and MD5 functions.
* Refactor of the async stack variable handling, so async operations have generic args buffer area and cleanup function pointer.
* Combined duplicate code for async push/pop handling.
* Refactor internal.c to add AllocKey / FreeKey.
* Refactor of hash init/free in TLS to use InitHashes and FreeHashes.
* Refactor of the async event->context to use WOLF_EVENT_TYPE_ASYNC_WOLFSSL for WOLFSSL* and WOLF_EVENT_TYPE_ASYNC_WOLFCRYPT for WC_ASYNC_DEV*.
* Suppress error message for WC_PENDING_E.
* Implemented "wolfSSL_EVP_MD_CTX_init" to do memset.
* Cleanup of the openssl compat CTX sizes when async is enabled.
* Cleanup of AES, DES3, DH, SHA, MD5, DES3, DH, HMAC, MD5 for consistency and readability.
* Cleanup of the OPAQUE_LEN.
* Cleanup to use ENCRYPT_LEN instead of sizeof(ssl->arrays.preMasterSecret).
* Changed ssl->arrays.preMasterSecret to use XMALLOC (accelerates HW operations)
* Reduce verbosity with debug enabled for "GetMyVersion", "wolfSSL Using RSA OAEP padding" and "wolfSSL Using RSA PKCSV15 padding".
* Updated RSA un-padding error message so its different than one above it for better debugging.
* Added QAT async enables for each algorithm.
* Refactor of the async init to use _ex.
* Added WC_ASYNC_THRESH_NONE to allow bypass of the async thresholds for testing.
* Reformatted the benchmark results:
PKI: "RSA 2048 private HW 18522 ops took 1.003 sec, avg 0.054 ms, 18467.763 ops/sec"
Crypto/Hashing: SHA-256 SW 350 megs took 1.009 seconds, 346.946 MB/s Cycles per byte = 9.87
* Added min execution time for all benchmarks.
* Moved wc_*GetHash and wc_*RestorePos to appropriate files so use of isCopy flag is local.
* Fix for ECC sign status sometimes being invalid due to uninitialized ECC digest in benchmark.
* Added new DECLARE_VAR/FREE_VAR and DECLARE_ARRAY/FREE_ARRAY macros for helping setup test/benchmark variables to accelerate async.
* Added NO_SW_BENCH option to only run HW bench.
* Added support for PRNG to use hardware SHA256 if _wc devId provided.
* Fix to prevent curve tests from running against wrong curve sizes. Changed wc_ecc_set_curve to match on exact size.
* Added the wc_*GetHash calls to the wolfCrypt tests.
* Added async hardware start/stop to wolfSSL init/cleanup.
* Refactor to add wc_*Copy for hashing context (for async), which replaces wc_*RestorePos.
* Fixes for building with TI hashing (including: SHA224, missing new API’s and building with dummy build for non hw testing). Note: We need to add build test for this `./configure CFLAGS="-DWOLFSSL_TI_HASH -DTI_DUMMY_BUILD”`.
* Added arg checks on wc_*GetHash and wc_*Copy.
* Cleanup of the BuildMD5, BuildSHA, BuildMD5_CertVerify and BuildSHA_CertVerify functions.
* Added new ./configure --enable-asyncthreads, to allow enable/disable of the async threading support. If --enable-asynccrypt set this will be enabled by default if pthread is supported. Allows multi-threaded benchmarks with async simulator.
* Added checks for all hashing to verify valid ->buffLen.
* Fix for SHA512 scan-build warning about un-initialized “W_X”.
* Fix for valgrind un-initialized use of buffer in AllocDer (der->buffer) and BuildTlsFinished handshake_hash.
* Refactor of the benchmarking to use common function for start, check and finish of the stats.
* Fixed issue with ECC cache loading in multi-threading.
* Fix bug with AESNI not aligned code that assumes XMALLOC is 16-byte aligned.
* Added new WC_ASYNC_NO_… options to allow disabling of individual async algorithms. New defines are: WC_ASYNC_NO_CRYPT, WC_ASYNC_NO_PKI and WC_ASYNC_NO_HASH. Additionally each algorithm has a WC_ASYNC_NO_[ALGO] define.
* Added “wolfSSL_GetAllocators” API and fixed the wolfCrypt memcb_test so it restores callback pointers after test is complete (fixes issue with using custom allocators and test breaking it).
2017-04-07 15:46:32 -07:00
|
|
|
|
while (throughput > xfer_bytes) {
|
2015-10-15 13:42:41 -07:00
|
|
|
|
int len, rx_pos, select_ret;
|
2015-10-14 19:13:45 -07:00
|
|
|
|
|
|
|
|
|
/* Determine packet size */
|
2018-04-09 13:53:05 +10:00
|
|
|
|
len = min(block, throughput - xfer_bytes);
|
2015-10-14 19:13:45 -07:00
|
|
|
|
|
|
|
|
|
/* Perform TX */
|
2016-04-14 16:26:51 +09:00
|
|
|
|
start = current_time(1);
|
Intel QuickAssist (QAT) support and async enhancements/fixes:
* Adds ./configure "--with-intelqa=../QAT1.6”, port files, memory management and README.md (see wolfcrypt/src/port/intel/).
* Added Intel QAT support for RSA public/private (CRT/non-CRT), AES CBC/GCM, ECDH/ECDSA, DH, DES3, SHA, SHA224, SHA256, SHA384, SHA512, MD5 and HMAC.
* wolfSSL async enabled all client and server: PKI, Encrypt/Decrypt, Hashing/HMAC and Certificate Sign/Verify.
* wolfSSL async support in functions: Encrypt, Decrypt, VerifyMAC, BuildMessage, ConfirmSignature, DoCertificate, ParseCertRelative, and MakeSignature.
* wolfCrypt test and benchmark async support added for all HW acceleration.
* wolfCrypt benchmark multi-threading support.
* Added QuickAssist memory overrides for XMALLOC, XFREE and XREALLOC. XREALLOC determines if existing pointer needs reallocated for NUMA.
* Refactor to make sure “heap” is available for async dev init.
* Added async support for all examples for connect, accept, read and write.
* Added new WC_BIGINT (in wolfmath.c) for async hardware support.
* Added async simulator tests for DES3 CBC, AES CBC/GCM.
* Added QAT standalone build for unit testing.
* Added int return code to SHA and MD5 functions.
* Refactor of the async stack variable handling, so async operations have generic args buffer area and cleanup function pointer.
* Combined duplicate code for async push/pop handling.
* Refactor internal.c to add AllocKey / FreeKey.
* Refactor of hash init/free in TLS to use InitHashes and FreeHashes.
* Refactor of the async event->context to use WOLF_EVENT_TYPE_ASYNC_WOLFSSL for WOLFSSL* and WOLF_EVENT_TYPE_ASYNC_WOLFCRYPT for WC_ASYNC_DEV*.
* Suppress error message for WC_PENDING_E.
* Implemented "wolfSSL_EVP_MD_CTX_init" to do memset.
* Cleanup of the openssl compat CTX sizes when async is enabled.
* Cleanup of AES, DES3, DH, SHA, MD5, DES3, DH, HMAC, MD5 for consistency and readability.
* Cleanup of the OPAQUE_LEN.
* Cleanup to use ENCRYPT_LEN instead of sizeof(ssl->arrays.preMasterSecret).
* Changed ssl->arrays.preMasterSecret to use XMALLOC (accelerates HW operations)
* Reduce verbosity with debug enabled for "GetMyVersion", "wolfSSL Using RSA OAEP padding" and "wolfSSL Using RSA PKCSV15 padding".
* Updated RSA un-padding error message so its different than one above it for better debugging.
* Added QAT async enables for each algorithm.
* Refactor of the async init to use _ex.
* Added WC_ASYNC_THRESH_NONE to allow bypass of the async thresholds for testing.
* Reformatted the benchmark results:
PKI: "RSA 2048 private HW 18522 ops took 1.003 sec, avg 0.054 ms, 18467.763 ops/sec"
Crypto/Hashing: SHA-256 SW 350 megs took 1.009 seconds, 346.946 MB/s Cycles per byte = 9.87
* Added min execution time for all benchmarks.
* Moved wc_*GetHash and wc_*RestorePos to appropriate files so use of isCopy flag is local.
* Fix for ECC sign status sometimes being invalid due to uninitialized ECC digest in benchmark.
* Added new DECLARE_VAR/FREE_VAR and DECLARE_ARRAY/FREE_ARRAY macros for helping setup test/benchmark variables to accelerate async.
* Added NO_SW_BENCH option to only run HW bench.
* Added support for PRNG to use hardware SHA256 if _wc devId provided.
* Fix to prevent curve tests from running against wrong curve sizes. Changed wc_ecc_set_curve to match on exact size.
* Added the wc_*GetHash calls to the wolfCrypt tests.
* Added async hardware start/stop to wolfSSL init/cleanup.
* Refactor to add wc_*Copy for hashing context (for async), which replaces wc_*RestorePos.
* Fixes for building with TI hashing (including: SHA224, missing new API’s and building with dummy build for non hw testing). Note: We need to add build test for this `./configure CFLAGS="-DWOLFSSL_TI_HASH -DTI_DUMMY_BUILD”`.
* Added arg checks on wc_*GetHash and wc_*Copy.
* Cleanup of the BuildMD5, BuildSHA, BuildMD5_CertVerify and BuildSHA_CertVerify functions.
* Added new ./configure --enable-asyncthreads, to allow enable/disable of the async threading support. If --enable-asynccrypt set this will be enabled by default if pthread is supported. Allows multi-threaded benchmarks with async simulator.
* Added checks for all hashing to verify valid ->buffLen.
* Fix for SHA512 scan-build warning about un-initialized “W_X”.
* Fix for valgrind un-initialized use of buffer in AllocDer (der->buffer) and BuildTlsFinished handshake_hash.
* Refactor of the benchmarking to use common function for start, check and finish of the stats.
* Fixed issue with ECC cache loading in multi-threading.
* Fix bug with AESNI not aligned code that assumes XMALLOC is 16-byte aligned.
* Added new WC_ASYNC_NO_… options to allow disabling of individual async algorithms. New defines are: WC_ASYNC_NO_CRYPT, WC_ASYNC_NO_PKI and WC_ASYNC_NO_HASH. Additionally each algorithm has a WC_ASYNC_NO_[ALGO] define.
* Added “wolfSSL_GetAllocators” API and fixed the wolfCrypt memcb_test so it restores callback pointers after test is complete (fixes issue with using custom allocators and test breaking it).
2017-04-07 15:46:32 -07:00
|
|
|
|
do {
|
|
|
|
|
err = 0; /* reset error */
|
|
|
|
|
ret = wolfSSL_write(ssl, tx_buffer, len);
|
|
|
|
|
if (ret <= 0) {
|
|
|
|
|
err = wolfSSL_get_error(ssl, 0);
|
|
|
|
|
#ifdef WOLFSSL_ASYNC_CRYPT
|
|
|
|
|
if (err == WC_PENDING_E) {
|
|
|
|
|
ret = wolfSSL_AsyncPoll(ssl, WOLF_POLL_FLAG_CHECK_HW);
|
|
|
|
|
if (ret < 0) break;
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
} while (err == WC_PENDING_E);
|
|
|
|
|
if (ret != len) {
|
|
|
|
|
printf("SSL_write bench error %d!\n", err);
|
|
|
|
|
err_sys("SSL_write failed");
|
2015-10-14 19:13:45 -07:00
|
|
|
|
}
|
2016-04-14 16:26:51 +09:00
|
|
|
|
tx_time += current_time(0) - start;
|
2015-10-14 19:13:45 -07:00
|
|
|
|
|
|
|
|
|
/* Perform RX */
|
2017-03-06 09:49:05 -08:00
|
|
|
|
select_ret = tcp_select(sockfd, DEFAULT_TIMEOUT_SEC);
|
2015-10-14 19:13:45 -07:00
|
|
|
|
if (select_ret == TEST_RECV_READY) {
|
2016-04-14 16:26:51 +09:00
|
|
|
|
start = current_time(1);
|
2015-10-14 19:13:45 -07:00
|
|
|
|
rx_pos = 0;
|
Intel QuickAssist (QAT) support and async enhancements/fixes:
* Adds ./configure "--with-intelqa=../QAT1.6”, port files, memory management and README.md (see wolfcrypt/src/port/intel/).
* Added Intel QAT support for RSA public/private (CRT/non-CRT), AES CBC/GCM, ECDH/ECDSA, DH, DES3, SHA, SHA224, SHA256, SHA384, SHA512, MD5 and HMAC.
* wolfSSL async enabled all client and server: PKI, Encrypt/Decrypt, Hashing/HMAC and Certificate Sign/Verify.
* wolfSSL async support in functions: Encrypt, Decrypt, VerifyMAC, BuildMessage, ConfirmSignature, DoCertificate, ParseCertRelative, and MakeSignature.
* wolfCrypt test and benchmark async support added for all HW acceleration.
* wolfCrypt benchmark multi-threading support.
* Added QuickAssist memory overrides for XMALLOC, XFREE and XREALLOC. XREALLOC determines if existing pointer needs reallocated for NUMA.
* Refactor to make sure “heap” is available for async dev init.
* Added async support for all examples for connect, accept, read and write.
* Added new WC_BIGINT (in wolfmath.c) for async hardware support.
* Added async simulator tests for DES3 CBC, AES CBC/GCM.
* Added QAT standalone build for unit testing.
* Added int return code to SHA and MD5 functions.
* Refactor of the async stack variable handling, so async operations have generic args buffer area and cleanup function pointer.
* Combined duplicate code for async push/pop handling.
* Refactor internal.c to add AllocKey / FreeKey.
* Refactor of hash init/free in TLS to use InitHashes and FreeHashes.
* Refactor of the async event->context to use WOLF_EVENT_TYPE_ASYNC_WOLFSSL for WOLFSSL* and WOLF_EVENT_TYPE_ASYNC_WOLFCRYPT for WC_ASYNC_DEV*.
* Suppress error message for WC_PENDING_E.
* Implemented "wolfSSL_EVP_MD_CTX_init" to do memset.
* Cleanup of the openssl compat CTX sizes when async is enabled.
* Cleanup of AES, DES3, DH, SHA, MD5, DES3, DH, HMAC, MD5 for consistency and readability.
* Cleanup of the OPAQUE_LEN.
* Cleanup to use ENCRYPT_LEN instead of sizeof(ssl->arrays.preMasterSecret).
* Changed ssl->arrays.preMasterSecret to use XMALLOC (accelerates HW operations)
* Reduce verbosity with debug enabled for "GetMyVersion", "wolfSSL Using RSA OAEP padding" and "wolfSSL Using RSA PKCSV15 padding".
* Updated RSA un-padding error message so its different than one above it for better debugging.
* Added QAT async enables for each algorithm.
* Refactor of the async init to use _ex.
* Added WC_ASYNC_THRESH_NONE to allow bypass of the async thresholds for testing.
* Reformatted the benchmark results:
PKI: "RSA 2048 private HW 18522 ops took 1.003 sec, avg 0.054 ms, 18467.763 ops/sec"
Crypto/Hashing: SHA-256 SW 350 megs took 1.009 seconds, 346.946 MB/s Cycles per byte = 9.87
* Added min execution time for all benchmarks.
* Moved wc_*GetHash and wc_*RestorePos to appropriate files so use of isCopy flag is local.
* Fix for ECC sign status sometimes being invalid due to uninitialized ECC digest in benchmark.
* Added new DECLARE_VAR/FREE_VAR and DECLARE_ARRAY/FREE_ARRAY macros for helping setup test/benchmark variables to accelerate async.
* Added NO_SW_BENCH option to only run HW bench.
* Added support for PRNG to use hardware SHA256 if _wc devId provided.
* Fix to prevent curve tests from running against wrong curve sizes. Changed wc_ecc_set_curve to match on exact size.
* Added the wc_*GetHash calls to the wolfCrypt tests.
* Added async hardware start/stop to wolfSSL init/cleanup.
* Refactor to add wc_*Copy for hashing context (for async), which replaces wc_*RestorePos.
* Fixes for building with TI hashing (including: SHA224, missing new API’s and building with dummy build for non hw testing). Note: We need to add build test for this `./configure CFLAGS="-DWOLFSSL_TI_HASH -DTI_DUMMY_BUILD”`.
* Added arg checks on wc_*GetHash and wc_*Copy.
* Cleanup of the BuildMD5, BuildSHA, BuildMD5_CertVerify and BuildSHA_CertVerify functions.
* Added new ./configure --enable-asyncthreads, to allow enable/disable of the async threading support. If --enable-asynccrypt set this will be enabled by default if pthread is supported. Allows multi-threaded benchmarks with async simulator.
* Added checks for all hashing to verify valid ->buffLen.
* Fix for SHA512 scan-build warning about un-initialized “W_X”.
* Fix for valgrind un-initialized use of buffer in AllocDer (der->buffer) and BuildTlsFinished handshake_hash.
* Refactor of the benchmarking to use common function for start, check and finish of the stats.
* Fixed issue with ECC cache loading in multi-threading.
* Fix bug with AESNI not aligned code that assumes XMALLOC is 16-byte aligned.
* Added new WC_ASYNC_NO_… options to allow disabling of individual async algorithms. New defines are: WC_ASYNC_NO_CRYPT, WC_ASYNC_NO_PKI and WC_ASYNC_NO_HASH. Additionally each algorithm has a WC_ASYNC_NO_[ALGO] define.
* Added “wolfSSL_GetAllocators” API and fixed the wolfCrypt memcb_test so it restores callback pointers after test is complete (fixes issue with using custom allocators and test breaking it).
2017-04-07 15:46:32 -07:00
|
|
|
|
while (rx_pos < len) {
|
|
|
|
|
ret = wolfSSL_read(ssl, &rx_buffer[rx_pos],
|
|
|
|
|
len - rx_pos);
|
|
|
|
|
if (ret <= 0) {
|
|
|
|
|
err = wolfSSL_get_error(ssl, 0);
|
|
|
|
|
#ifdef WOLFSSL_ASYNC_CRYPT
|
|
|
|
|
if (err == WC_PENDING_E) {
|
|
|
|
|
ret = wolfSSL_AsyncPoll(ssl, WOLF_POLL_FLAG_CHECK_HW);
|
|
|
|
|
if (ret < 0) break;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
#endif
|
2017-10-11 09:09:52 -07:00
|
|
|
|
if (err != WOLFSSL_ERROR_WANT_READ) {
|
Intel QuickAssist (QAT) support and async enhancements/fixes:
* Adds ./configure "--with-intelqa=../QAT1.6”, port files, memory management and README.md (see wolfcrypt/src/port/intel/).
* Added Intel QAT support for RSA public/private (CRT/non-CRT), AES CBC/GCM, ECDH/ECDSA, DH, DES3, SHA, SHA224, SHA256, SHA384, SHA512, MD5 and HMAC.
* wolfSSL async enabled all client and server: PKI, Encrypt/Decrypt, Hashing/HMAC and Certificate Sign/Verify.
* wolfSSL async support in functions: Encrypt, Decrypt, VerifyMAC, BuildMessage, ConfirmSignature, DoCertificate, ParseCertRelative, and MakeSignature.
* wolfCrypt test and benchmark async support added for all HW acceleration.
* wolfCrypt benchmark multi-threading support.
* Added QuickAssist memory overrides for XMALLOC, XFREE and XREALLOC. XREALLOC determines if existing pointer needs reallocated for NUMA.
* Refactor to make sure “heap” is available for async dev init.
* Added async support for all examples for connect, accept, read and write.
* Added new WC_BIGINT (in wolfmath.c) for async hardware support.
* Added async simulator tests for DES3 CBC, AES CBC/GCM.
* Added QAT standalone build for unit testing.
* Added int return code to SHA and MD5 functions.
* Refactor of the async stack variable handling, so async operations have generic args buffer area and cleanup function pointer.
* Combined duplicate code for async push/pop handling.
* Refactor internal.c to add AllocKey / FreeKey.
* Refactor of hash init/free in TLS to use InitHashes and FreeHashes.
* Refactor of the async event->context to use WOLF_EVENT_TYPE_ASYNC_WOLFSSL for WOLFSSL* and WOLF_EVENT_TYPE_ASYNC_WOLFCRYPT for WC_ASYNC_DEV*.
* Suppress error message for WC_PENDING_E.
* Implemented "wolfSSL_EVP_MD_CTX_init" to do memset.
* Cleanup of the openssl compat CTX sizes when async is enabled.
* Cleanup of AES, DES3, DH, SHA, MD5, DES3, DH, HMAC, MD5 for consistency and readability.
* Cleanup of the OPAQUE_LEN.
* Cleanup to use ENCRYPT_LEN instead of sizeof(ssl->arrays.preMasterSecret).
* Changed ssl->arrays.preMasterSecret to use XMALLOC (accelerates HW operations)
* Reduce verbosity with debug enabled for "GetMyVersion", "wolfSSL Using RSA OAEP padding" and "wolfSSL Using RSA PKCSV15 padding".
* Updated RSA un-padding error message so its different than one above it for better debugging.
* Added QAT async enables for each algorithm.
* Refactor of the async init to use _ex.
* Added WC_ASYNC_THRESH_NONE to allow bypass of the async thresholds for testing.
* Reformatted the benchmark results:
PKI: "RSA 2048 private HW 18522 ops took 1.003 sec, avg 0.054 ms, 18467.763 ops/sec"
Crypto/Hashing: SHA-256 SW 350 megs took 1.009 seconds, 346.946 MB/s Cycles per byte = 9.87
* Added min execution time for all benchmarks.
* Moved wc_*GetHash and wc_*RestorePos to appropriate files so use of isCopy flag is local.
* Fix for ECC sign status sometimes being invalid due to uninitialized ECC digest in benchmark.
* Added new DECLARE_VAR/FREE_VAR and DECLARE_ARRAY/FREE_ARRAY macros for helping setup test/benchmark variables to accelerate async.
* Added NO_SW_BENCH option to only run HW bench.
* Added support for PRNG to use hardware SHA256 if _wc devId provided.
* Fix to prevent curve tests from running against wrong curve sizes. Changed wc_ecc_set_curve to match on exact size.
* Added the wc_*GetHash calls to the wolfCrypt tests.
* Added async hardware start/stop to wolfSSL init/cleanup.
* Refactor to add wc_*Copy for hashing context (for async), which replaces wc_*RestorePos.
* Fixes for building with TI hashing (including: SHA224, missing new API’s and building with dummy build for non hw testing). Note: We need to add build test for this `./configure CFLAGS="-DWOLFSSL_TI_HASH -DTI_DUMMY_BUILD”`.
* Added arg checks on wc_*GetHash and wc_*Copy.
* Cleanup of the BuildMD5, BuildSHA, BuildMD5_CertVerify and BuildSHA_CertVerify functions.
* Added new ./configure --enable-asyncthreads, to allow enable/disable of the async threading support. If --enable-asynccrypt set this will be enabled by default if pthread is supported. Allows multi-threaded benchmarks with async simulator.
* Added checks for all hashing to verify valid ->buffLen.
* Fix for SHA512 scan-build warning about un-initialized “W_X”.
* Fix for valgrind un-initialized use of buffer in AllocDer (der->buffer) and BuildTlsFinished handshake_hash.
* Refactor of the benchmarking to use common function for start, check and finish of the stats.
* Fixed issue with ECC cache loading in multi-threading.
* Fix bug with AESNI not aligned code that assumes XMALLOC is 16-byte aligned.
* Added new WC_ASYNC_NO_… options to allow disabling of individual async algorithms. New defines are: WC_ASYNC_NO_CRYPT, WC_ASYNC_NO_PKI and WC_ASYNC_NO_HASH. Additionally each algorithm has a WC_ASYNC_NO_[ALGO] define.
* Added “wolfSSL_GetAllocators” API and fixed the wolfCrypt memcb_test so it restores callback pointers after test is complete (fixes issue with using custom allocators and test breaking it).
2017-04-07 15:46:32 -07:00
|
|
|
|
printf("SSL_read bench error %d\n", err);
|
|
|
|
|
err_sys("SSL_read failed");
|
2015-10-14 19:13:45 -07:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
rx_pos += ret;
|
|
|
|
|
}
|
|
|
|
|
}
|
2016-04-14 16:26:51 +09:00
|
|
|
|
rx_time += current_time(0) - start;
|
2015-10-14 19:13:45 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Compare TX and RX buffers */
|
2019-01-11 08:45:34 -08:00
|
|
|
|
if (XMEMCMP(tx_buffer, rx_buffer, len) != 0) {
|
2017-03-15 09:38:53 +10:00
|
|
|
|
free(tx_buffer);
|
|
|
|
|
tx_buffer = NULL;
|
|
|
|
|
free(rx_buffer);
|
|
|
|
|
rx_buffer = NULL;
|
2015-10-14 19:13:45 -07:00
|
|
|
|
err_sys("Compare TX and RX buffers failed");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Update overall position */
|
|
|
|
|
xfer_bytes += len;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
err_sys("wc_InitRng failed");
|
|
|
|
|
}
|
2018-09-13 13:23:55 -07:00
|
|
|
|
(void)rng; /* for WC_NO_RNG case */
|
2015-10-14 19:13:45 -07:00
|
|
|
|
}
|
|
|
|
|
else {
|
2015-10-15 13:42:41 -07:00
|
|
|
|
err_sys("Client buffer malloc failed");
|
2015-10-14 19:13:45 -07:00
|
|
|
|
}
|
Intel QuickAssist (QAT) support and async enhancements/fixes:
* Adds ./configure "--with-intelqa=../QAT1.6”, port files, memory management and README.md (see wolfcrypt/src/port/intel/).
* Added Intel QAT support for RSA public/private (CRT/non-CRT), AES CBC/GCM, ECDH/ECDSA, DH, DES3, SHA, SHA224, SHA256, SHA384, SHA512, MD5 and HMAC.
* wolfSSL async enabled all client and server: PKI, Encrypt/Decrypt, Hashing/HMAC and Certificate Sign/Verify.
* wolfSSL async support in functions: Encrypt, Decrypt, VerifyMAC, BuildMessage, ConfirmSignature, DoCertificate, ParseCertRelative, and MakeSignature.
* wolfCrypt test and benchmark async support added for all HW acceleration.
* wolfCrypt benchmark multi-threading support.
* Added QuickAssist memory overrides for XMALLOC, XFREE and XREALLOC. XREALLOC determines if existing pointer needs reallocated for NUMA.
* Refactor to make sure “heap” is available for async dev init.
* Added async support for all examples for connect, accept, read and write.
* Added new WC_BIGINT (in wolfmath.c) for async hardware support.
* Added async simulator tests for DES3 CBC, AES CBC/GCM.
* Added QAT standalone build for unit testing.
* Added int return code to SHA and MD5 functions.
* Refactor of the async stack variable handling, so async operations have generic args buffer area and cleanup function pointer.
* Combined duplicate code for async push/pop handling.
* Refactor internal.c to add AllocKey / FreeKey.
* Refactor of hash init/free in TLS to use InitHashes and FreeHashes.
* Refactor of the async event->context to use WOLF_EVENT_TYPE_ASYNC_WOLFSSL for WOLFSSL* and WOLF_EVENT_TYPE_ASYNC_WOLFCRYPT for WC_ASYNC_DEV*.
* Suppress error message for WC_PENDING_E.
* Implemented "wolfSSL_EVP_MD_CTX_init" to do memset.
* Cleanup of the openssl compat CTX sizes when async is enabled.
* Cleanup of AES, DES3, DH, SHA, MD5, DES3, DH, HMAC, MD5 for consistency and readability.
* Cleanup of the OPAQUE_LEN.
* Cleanup to use ENCRYPT_LEN instead of sizeof(ssl->arrays.preMasterSecret).
* Changed ssl->arrays.preMasterSecret to use XMALLOC (accelerates HW operations)
* Reduce verbosity with debug enabled for "GetMyVersion", "wolfSSL Using RSA OAEP padding" and "wolfSSL Using RSA PKCSV15 padding".
* Updated RSA un-padding error message so its different than one above it for better debugging.
* Added QAT async enables for each algorithm.
* Refactor of the async init to use _ex.
* Added WC_ASYNC_THRESH_NONE to allow bypass of the async thresholds for testing.
* Reformatted the benchmark results:
PKI: "RSA 2048 private HW 18522 ops took 1.003 sec, avg 0.054 ms, 18467.763 ops/sec"
Crypto/Hashing: SHA-256 SW 350 megs took 1.009 seconds, 346.946 MB/s Cycles per byte = 9.87
* Added min execution time for all benchmarks.
* Moved wc_*GetHash and wc_*RestorePos to appropriate files so use of isCopy flag is local.
* Fix for ECC sign status sometimes being invalid due to uninitialized ECC digest in benchmark.
* Added new DECLARE_VAR/FREE_VAR and DECLARE_ARRAY/FREE_ARRAY macros for helping setup test/benchmark variables to accelerate async.
* Added NO_SW_BENCH option to only run HW bench.
* Added support for PRNG to use hardware SHA256 if _wc devId provided.
* Fix to prevent curve tests from running against wrong curve sizes. Changed wc_ecc_set_curve to match on exact size.
* Added the wc_*GetHash calls to the wolfCrypt tests.
* Added async hardware start/stop to wolfSSL init/cleanup.
* Refactor to add wc_*Copy for hashing context (for async), which replaces wc_*RestorePos.
* Fixes for building with TI hashing (including: SHA224, missing new API’s and building with dummy build for non hw testing). Note: We need to add build test for this `./configure CFLAGS="-DWOLFSSL_TI_HASH -DTI_DUMMY_BUILD”`.
* Added arg checks on wc_*GetHash and wc_*Copy.
* Cleanup of the BuildMD5, BuildSHA, BuildMD5_CertVerify and BuildSHA_CertVerify functions.
* Added new ./configure --enable-asyncthreads, to allow enable/disable of the async threading support. If --enable-asynccrypt set this will be enabled by default if pthread is supported. Allows multi-threaded benchmarks with async simulator.
* Added checks for all hashing to verify valid ->buffLen.
* Fix for SHA512 scan-build warning about un-initialized “W_X”.
* Fix for valgrind un-initialized use of buffer in AllocDer (der->buffer) and BuildTlsFinished handshake_hash.
* Refactor of the benchmarking to use common function for start, check and finish of the stats.
* Fixed issue with ECC cache loading in multi-threading.
* Fix bug with AESNI not aligned code that assumes XMALLOC is 16-byte aligned.
* Added new WC_ASYNC_NO_… options to allow disabling of individual async algorithms. New defines are: WC_ASYNC_NO_CRYPT, WC_ASYNC_NO_PKI and WC_ASYNC_NO_HASH. Additionally each algorithm has a WC_ASYNC_NO_[ALGO] define.
* Added “wolfSSL_GetAllocators” API and fixed the wolfCrypt memcb_test so it restores callback pointers after test is complete (fixes issue with using custom allocators and test breaking it).
2017-04-07 15:46:32 -07:00
|
|
|
|
if(tx_buffer) XFREE(tx_buffer, NULL, DYNAMIC_TYPE_TMP_BUFFER);
|
|
|
|
|
if(rx_buffer) XFREE(rx_buffer, NULL, DYNAMIC_TYPE_TMP_BUFFER);
|
2015-10-14 19:13:45 -07:00
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
err_sys("wolfSSL_connect failed");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
wolfSSL_shutdown(ssl);
|
2018-07-27 10:19:04 -07:00
|
|
|
|
wolfSSL_free(ssl); ssl = NULL;
|
2015-10-14 19:13:45 -07:00
|
|
|
|
CloseSocket(sockfd);
|
|
|
|
|
|
|
|
|
|
printf("wolfSSL Client Benchmark %d bytes\n"
|
|
|
|
|
"\tConnect %8.3f ms\n"
|
|
|
|
|
"\tTX %8.3f ms (%8.3f MBps)\n"
|
|
|
|
|
"\tRX %8.3f ms (%8.3f MBps)\n",
|
|
|
|
|
throughput,
|
|
|
|
|
conn_time * 1000,
|
|
|
|
|
tx_time * 1000, throughput / tx_time / 1024 / 1024,
|
|
|
|
|
rx_time * 1000, throughput / rx_time / 1024 / 1024
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
return EXIT_SUCCESS;
|
|
|
|
|
}
|
|
|
|
|
|
2016-04-28 14:21:33 -06:00
|
|
|
|
const char* starttlsCmd[6] = {
|
|
|
|
|
"220",
|
|
|
|
|
"EHLO mail.example.com\r\n",
|
|
|
|
|
"250",
|
|
|
|
|
"STARTTLS\r\n",
|
|
|
|
|
"220",
|
|
|
|
|
"QUIT\r\n",
|
|
|
|
|
};
|
|
|
|
|
|
2016-08-25 22:20:35 -07:00
|
|
|
|
/* Initiates the STARTTLS command sequence over TCP */
|
|
|
|
|
static int StartTLS_Init(SOCKET_T* sockfd)
|
2016-04-28 14:21:33 -06:00
|
|
|
|
{
|
|
|
|
|
char tmpBuf[256];
|
|
|
|
|
|
|
|
|
|
if (sockfd == NULL)
|
|
|
|
|
return BAD_FUNC_ARG;
|
|
|
|
|
|
|
|
|
|
/* S: 220 <host> SMTP service ready */
|
2017-04-28 14:59:45 -07:00
|
|
|
|
XMEMSET(tmpBuf, 0, sizeof(tmpBuf));
|
|
|
|
|
if (recv(*sockfd, tmpBuf, sizeof(tmpBuf)-1, 0) < 0)
|
2016-04-28 14:21:33 -06:00
|
|
|
|
err_sys("failed to read STARTTLS command\n");
|
|
|
|
|
|
|
|
|
|
if (!XSTRNCMP(tmpBuf, starttlsCmd[0], XSTRLEN(starttlsCmd[0]))) {
|
|
|
|
|
printf("%s\n", tmpBuf);
|
|
|
|
|
} else {
|
|
|
|
|
err_sys("incorrect STARTTLS command received");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* C: EHLO mail.example.com */
|
2016-05-02 10:10:25 -06:00
|
|
|
|
if (send(*sockfd, starttlsCmd[1], (int)XSTRLEN(starttlsCmd[1]), 0) !=
|
2016-05-03 13:52:04 -06:00
|
|
|
|
(int)XSTRLEN(starttlsCmd[1]))
|
2016-04-28 14:21:33 -06:00
|
|
|
|
err_sys("failed to send STARTTLS EHLO command\n");
|
|
|
|
|
|
|
|
|
|
/* S: 250 <host> offers a warm hug of welcome */
|
2017-04-28 14:59:45 -07:00
|
|
|
|
XMEMSET(tmpBuf, 0, sizeof(tmpBuf));
|
|
|
|
|
if (recv(*sockfd, tmpBuf, sizeof(tmpBuf)-1, 0) < 0)
|
2016-04-28 14:21:33 -06:00
|
|
|
|
err_sys("failed to read STARTTLS command\n");
|
|
|
|
|
|
|
|
|
|
if (!XSTRNCMP(tmpBuf, starttlsCmd[2], XSTRLEN(starttlsCmd[2]))) {
|
|
|
|
|
printf("%s\n", tmpBuf);
|
|
|
|
|
} else {
|
|
|
|
|
err_sys("incorrect STARTTLS command received");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* C: STARTTLS */
|
2016-05-02 10:10:25 -06:00
|
|
|
|
if (send(*sockfd, starttlsCmd[3], (int)XSTRLEN(starttlsCmd[3]), 0) !=
|
2016-05-03 13:52:04 -06:00
|
|
|
|
(int)XSTRLEN(starttlsCmd[3])) {
|
2016-04-28 14:21:33 -06:00
|
|
|
|
err_sys("failed to send STARTTLS command\n");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* S: 220 Go ahead */
|
2017-04-28 14:59:45 -07:00
|
|
|
|
XMEMSET(tmpBuf, 0, sizeof(tmpBuf));
|
|
|
|
|
if (recv(*sockfd, tmpBuf, sizeof(tmpBuf)-1, 0) < 0)
|
2016-04-28 14:21:33 -06:00
|
|
|
|
err_sys("failed to read STARTTLS command\n");
|
|
|
|
|
|
|
|
|
|
if (!XSTRNCMP(tmpBuf, starttlsCmd[4], XSTRLEN(starttlsCmd[4]))) {
|
|
|
|
|
printf("%s\n", tmpBuf);
|
|
|
|
|
} else {
|
|
|
|
|
err_sys("incorrect STARTTLS command received, expected 220");
|
|
|
|
|
}
|
|
|
|
|
|
2017-10-11 09:09:52 -07:00
|
|
|
|
return WOLFSSL_SUCCESS;
|
2016-04-28 14:21:33 -06:00
|
|
|
|
}
|
|
|
|
|
|
2016-08-25 22:20:35 -07:00
|
|
|
|
/* Closes down the SMTP connection */
|
|
|
|
|
static int SMTP_Shutdown(WOLFSSL* ssl, int wc_shutdown)
|
2016-04-28 14:21:33 -06:00
|
|
|
|
{
|
Intel QuickAssist (QAT) support and async enhancements/fixes:
* Adds ./configure "--with-intelqa=../QAT1.6”, port files, memory management and README.md (see wolfcrypt/src/port/intel/).
* Added Intel QAT support for RSA public/private (CRT/non-CRT), AES CBC/GCM, ECDH/ECDSA, DH, DES3, SHA, SHA224, SHA256, SHA384, SHA512, MD5 and HMAC.
* wolfSSL async enabled all client and server: PKI, Encrypt/Decrypt, Hashing/HMAC and Certificate Sign/Verify.
* wolfSSL async support in functions: Encrypt, Decrypt, VerifyMAC, BuildMessage, ConfirmSignature, DoCertificate, ParseCertRelative, and MakeSignature.
* wolfCrypt test and benchmark async support added for all HW acceleration.
* wolfCrypt benchmark multi-threading support.
* Added QuickAssist memory overrides for XMALLOC, XFREE and XREALLOC. XREALLOC determines if existing pointer needs reallocated for NUMA.
* Refactor to make sure “heap” is available for async dev init.
* Added async support for all examples for connect, accept, read and write.
* Added new WC_BIGINT (in wolfmath.c) for async hardware support.
* Added async simulator tests for DES3 CBC, AES CBC/GCM.
* Added QAT standalone build for unit testing.
* Added int return code to SHA and MD5 functions.
* Refactor of the async stack variable handling, so async operations have generic args buffer area and cleanup function pointer.
* Combined duplicate code for async push/pop handling.
* Refactor internal.c to add AllocKey / FreeKey.
* Refactor of hash init/free in TLS to use InitHashes and FreeHashes.
* Refactor of the async event->context to use WOLF_EVENT_TYPE_ASYNC_WOLFSSL for WOLFSSL* and WOLF_EVENT_TYPE_ASYNC_WOLFCRYPT for WC_ASYNC_DEV*.
* Suppress error message for WC_PENDING_E.
* Implemented "wolfSSL_EVP_MD_CTX_init" to do memset.
* Cleanup of the openssl compat CTX sizes when async is enabled.
* Cleanup of AES, DES3, DH, SHA, MD5, DES3, DH, HMAC, MD5 for consistency and readability.
* Cleanup of the OPAQUE_LEN.
* Cleanup to use ENCRYPT_LEN instead of sizeof(ssl->arrays.preMasterSecret).
* Changed ssl->arrays.preMasterSecret to use XMALLOC (accelerates HW operations)
* Reduce verbosity with debug enabled for "GetMyVersion", "wolfSSL Using RSA OAEP padding" and "wolfSSL Using RSA PKCSV15 padding".
* Updated RSA un-padding error message so its different than one above it for better debugging.
* Added QAT async enables for each algorithm.
* Refactor of the async init to use _ex.
* Added WC_ASYNC_THRESH_NONE to allow bypass of the async thresholds for testing.
* Reformatted the benchmark results:
PKI: "RSA 2048 private HW 18522 ops took 1.003 sec, avg 0.054 ms, 18467.763 ops/sec"
Crypto/Hashing: SHA-256 SW 350 megs took 1.009 seconds, 346.946 MB/s Cycles per byte = 9.87
* Added min execution time for all benchmarks.
* Moved wc_*GetHash and wc_*RestorePos to appropriate files so use of isCopy flag is local.
* Fix for ECC sign status sometimes being invalid due to uninitialized ECC digest in benchmark.
* Added new DECLARE_VAR/FREE_VAR and DECLARE_ARRAY/FREE_ARRAY macros for helping setup test/benchmark variables to accelerate async.
* Added NO_SW_BENCH option to only run HW bench.
* Added support for PRNG to use hardware SHA256 if _wc devId provided.
* Fix to prevent curve tests from running against wrong curve sizes. Changed wc_ecc_set_curve to match on exact size.
* Added the wc_*GetHash calls to the wolfCrypt tests.
* Added async hardware start/stop to wolfSSL init/cleanup.
* Refactor to add wc_*Copy for hashing context (for async), which replaces wc_*RestorePos.
* Fixes for building with TI hashing (including: SHA224, missing new API’s and building with dummy build for non hw testing). Note: We need to add build test for this `./configure CFLAGS="-DWOLFSSL_TI_HASH -DTI_DUMMY_BUILD”`.
* Added arg checks on wc_*GetHash and wc_*Copy.
* Cleanup of the BuildMD5, BuildSHA, BuildMD5_CertVerify and BuildSHA_CertVerify functions.
* Added new ./configure --enable-asyncthreads, to allow enable/disable of the async threading support. If --enable-asynccrypt set this will be enabled by default if pthread is supported. Allows multi-threaded benchmarks with async simulator.
* Added checks for all hashing to verify valid ->buffLen.
* Fix for SHA512 scan-build warning about un-initialized “W_X”.
* Fix for valgrind un-initialized use of buffer in AllocDer (der->buffer) and BuildTlsFinished handshake_hash.
* Refactor of the benchmarking to use common function for start, check and finish of the stats.
* Fixed issue with ECC cache loading in multi-threading.
* Fix bug with AESNI not aligned code that assumes XMALLOC is 16-byte aligned.
* Added new WC_ASYNC_NO_… options to allow disabling of individual async algorithms. New defines are: WC_ASYNC_NO_CRYPT, WC_ASYNC_NO_PKI and WC_ASYNC_NO_HASH. Additionally each algorithm has a WC_ASYNC_NO_[ALGO] define.
* Added “wolfSSL_GetAllocators” API and fixed the wolfCrypt memcb_test so it restores callback pointers after test is complete (fixes issue with using custom allocators and test breaking it).
2017-04-07 15:46:32 -07:00
|
|
|
|
int ret, err = 0;
|
2016-04-28 14:21:33 -06:00
|
|
|
|
char tmpBuf[256];
|
|
|
|
|
|
|
|
|
|
if (ssl == NULL)
|
|
|
|
|
return BAD_FUNC_ARG;
|
|
|
|
|
|
|
|
|
|
printf("\nwolfSSL client shutting down SMTP connection\n");
|
|
|
|
|
|
|
|
|
|
XMEMSET(tmpBuf, 0, sizeof(tmpBuf));
|
|
|
|
|
|
|
|
|
|
/* C: QUIT */
|
Intel QuickAssist (QAT) support and async enhancements/fixes:
* Adds ./configure "--with-intelqa=../QAT1.6”, port files, memory management and README.md (see wolfcrypt/src/port/intel/).
* Added Intel QAT support for RSA public/private (CRT/non-CRT), AES CBC/GCM, ECDH/ECDSA, DH, DES3, SHA, SHA224, SHA256, SHA384, SHA512, MD5 and HMAC.
* wolfSSL async enabled all client and server: PKI, Encrypt/Decrypt, Hashing/HMAC and Certificate Sign/Verify.
* wolfSSL async support in functions: Encrypt, Decrypt, VerifyMAC, BuildMessage, ConfirmSignature, DoCertificate, ParseCertRelative, and MakeSignature.
* wolfCrypt test and benchmark async support added for all HW acceleration.
* wolfCrypt benchmark multi-threading support.
* Added QuickAssist memory overrides for XMALLOC, XFREE and XREALLOC. XREALLOC determines if existing pointer needs reallocated for NUMA.
* Refactor to make sure “heap” is available for async dev init.
* Added async support for all examples for connect, accept, read and write.
* Added new WC_BIGINT (in wolfmath.c) for async hardware support.
* Added async simulator tests for DES3 CBC, AES CBC/GCM.
* Added QAT standalone build for unit testing.
* Added int return code to SHA and MD5 functions.
* Refactor of the async stack variable handling, so async operations have generic args buffer area and cleanup function pointer.
* Combined duplicate code for async push/pop handling.
* Refactor internal.c to add AllocKey / FreeKey.
* Refactor of hash init/free in TLS to use InitHashes and FreeHashes.
* Refactor of the async event->context to use WOLF_EVENT_TYPE_ASYNC_WOLFSSL for WOLFSSL* and WOLF_EVENT_TYPE_ASYNC_WOLFCRYPT for WC_ASYNC_DEV*.
* Suppress error message for WC_PENDING_E.
* Implemented "wolfSSL_EVP_MD_CTX_init" to do memset.
* Cleanup of the openssl compat CTX sizes when async is enabled.
* Cleanup of AES, DES3, DH, SHA, MD5, DES3, DH, HMAC, MD5 for consistency and readability.
* Cleanup of the OPAQUE_LEN.
* Cleanup to use ENCRYPT_LEN instead of sizeof(ssl->arrays.preMasterSecret).
* Changed ssl->arrays.preMasterSecret to use XMALLOC (accelerates HW operations)
* Reduce verbosity with debug enabled for "GetMyVersion", "wolfSSL Using RSA OAEP padding" and "wolfSSL Using RSA PKCSV15 padding".
* Updated RSA un-padding error message so its different than one above it for better debugging.
* Added QAT async enables for each algorithm.
* Refactor of the async init to use _ex.
* Added WC_ASYNC_THRESH_NONE to allow bypass of the async thresholds for testing.
* Reformatted the benchmark results:
PKI: "RSA 2048 private HW 18522 ops took 1.003 sec, avg 0.054 ms, 18467.763 ops/sec"
Crypto/Hashing: SHA-256 SW 350 megs took 1.009 seconds, 346.946 MB/s Cycles per byte = 9.87
* Added min execution time for all benchmarks.
* Moved wc_*GetHash and wc_*RestorePos to appropriate files so use of isCopy flag is local.
* Fix for ECC sign status sometimes being invalid due to uninitialized ECC digest in benchmark.
* Added new DECLARE_VAR/FREE_VAR and DECLARE_ARRAY/FREE_ARRAY macros for helping setup test/benchmark variables to accelerate async.
* Added NO_SW_BENCH option to only run HW bench.
* Added support for PRNG to use hardware SHA256 if _wc devId provided.
* Fix to prevent curve tests from running against wrong curve sizes. Changed wc_ecc_set_curve to match on exact size.
* Added the wc_*GetHash calls to the wolfCrypt tests.
* Added async hardware start/stop to wolfSSL init/cleanup.
* Refactor to add wc_*Copy for hashing context (for async), which replaces wc_*RestorePos.
* Fixes for building with TI hashing (including: SHA224, missing new API’s and building with dummy build for non hw testing). Note: We need to add build test for this `./configure CFLAGS="-DWOLFSSL_TI_HASH -DTI_DUMMY_BUILD”`.
* Added arg checks on wc_*GetHash and wc_*Copy.
* Cleanup of the BuildMD5, BuildSHA, BuildMD5_CertVerify and BuildSHA_CertVerify functions.
* Added new ./configure --enable-asyncthreads, to allow enable/disable of the async threading support. If --enable-asynccrypt set this will be enabled by default if pthread is supported. Allows multi-threaded benchmarks with async simulator.
* Added checks for all hashing to verify valid ->buffLen.
* Fix for SHA512 scan-build warning about un-initialized “W_X”.
* Fix for valgrind un-initialized use of buffer in AllocDer (der->buffer) and BuildTlsFinished handshake_hash.
* Refactor of the benchmarking to use common function for start, check and finish of the stats.
* Fixed issue with ECC cache loading in multi-threading.
* Fix bug with AESNI not aligned code that assumes XMALLOC is 16-byte aligned.
* Added new WC_ASYNC_NO_… options to allow disabling of individual async algorithms. New defines are: WC_ASYNC_NO_CRYPT, WC_ASYNC_NO_PKI and WC_ASYNC_NO_HASH. Additionally each algorithm has a WC_ASYNC_NO_[ALGO] define.
* Added “wolfSSL_GetAllocators” API and fixed the wolfCrypt memcb_test so it restores callback pointers after test is complete (fixes issue with using custom allocators and test breaking it).
2017-04-07 15:46:32 -07:00
|
|
|
|
do {
|
|
|
|
|
ret = wolfSSL_write(ssl, starttlsCmd[5], (int)XSTRLEN(starttlsCmd[5]));
|
|
|
|
|
if (ret < 0) {
|
|
|
|
|
err = wolfSSL_get_error(ssl, 0);
|
|
|
|
|
#ifdef WOLFSSL_ASYNC_CRYPT
|
|
|
|
|
if (err == WC_PENDING_E) {
|
|
|
|
|
ret = wolfSSL_AsyncPoll(ssl, WOLF_POLL_FLAG_CHECK_HW);
|
|
|
|
|
if (ret < 0) break;
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
} while (err == WC_PENDING_E);
|
|
|
|
|
if (ret != (int)XSTRLEN(starttlsCmd[5])) {
|
2016-04-28 14:21:33 -06:00
|
|
|
|
err_sys("failed to send SMTP QUIT command\n");
|
Intel QuickAssist (QAT) support and async enhancements/fixes:
* Adds ./configure "--with-intelqa=../QAT1.6”, port files, memory management and README.md (see wolfcrypt/src/port/intel/).
* Added Intel QAT support for RSA public/private (CRT/non-CRT), AES CBC/GCM, ECDH/ECDSA, DH, DES3, SHA, SHA224, SHA256, SHA384, SHA512, MD5 and HMAC.
* wolfSSL async enabled all client and server: PKI, Encrypt/Decrypt, Hashing/HMAC and Certificate Sign/Verify.
* wolfSSL async support in functions: Encrypt, Decrypt, VerifyMAC, BuildMessage, ConfirmSignature, DoCertificate, ParseCertRelative, and MakeSignature.
* wolfCrypt test and benchmark async support added for all HW acceleration.
* wolfCrypt benchmark multi-threading support.
* Added QuickAssist memory overrides for XMALLOC, XFREE and XREALLOC. XREALLOC determines if existing pointer needs reallocated for NUMA.
* Refactor to make sure “heap” is available for async dev init.
* Added async support for all examples for connect, accept, read and write.
* Added new WC_BIGINT (in wolfmath.c) for async hardware support.
* Added async simulator tests for DES3 CBC, AES CBC/GCM.
* Added QAT standalone build for unit testing.
* Added int return code to SHA and MD5 functions.
* Refactor of the async stack variable handling, so async operations have generic args buffer area and cleanup function pointer.
* Combined duplicate code for async push/pop handling.
* Refactor internal.c to add AllocKey / FreeKey.
* Refactor of hash init/free in TLS to use InitHashes and FreeHashes.
* Refactor of the async event->context to use WOLF_EVENT_TYPE_ASYNC_WOLFSSL for WOLFSSL* and WOLF_EVENT_TYPE_ASYNC_WOLFCRYPT for WC_ASYNC_DEV*.
* Suppress error message for WC_PENDING_E.
* Implemented "wolfSSL_EVP_MD_CTX_init" to do memset.
* Cleanup of the openssl compat CTX sizes when async is enabled.
* Cleanup of AES, DES3, DH, SHA, MD5, DES3, DH, HMAC, MD5 for consistency and readability.
* Cleanup of the OPAQUE_LEN.
* Cleanup to use ENCRYPT_LEN instead of sizeof(ssl->arrays.preMasterSecret).
* Changed ssl->arrays.preMasterSecret to use XMALLOC (accelerates HW operations)
* Reduce verbosity with debug enabled for "GetMyVersion", "wolfSSL Using RSA OAEP padding" and "wolfSSL Using RSA PKCSV15 padding".
* Updated RSA un-padding error message so its different than one above it for better debugging.
* Added QAT async enables for each algorithm.
* Refactor of the async init to use _ex.
* Added WC_ASYNC_THRESH_NONE to allow bypass of the async thresholds for testing.
* Reformatted the benchmark results:
PKI: "RSA 2048 private HW 18522 ops took 1.003 sec, avg 0.054 ms, 18467.763 ops/sec"
Crypto/Hashing: SHA-256 SW 350 megs took 1.009 seconds, 346.946 MB/s Cycles per byte = 9.87
* Added min execution time for all benchmarks.
* Moved wc_*GetHash and wc_*RestorePos to appropriate files so use of isCopy flag is local.
* Fix for ECC sign status sometimes being invalid due to uninitialized ECC digest in benchmark.
* Added new DECLARE_VAR/FREE_VAR and DECLARE_ARRAY/FREE_ARRAY macros for helping setup test/benchmark variables to accelerate async.
* Added NO_SW_BENCH option to only run HW bench.
* Added support for PRNG to use hardware SHA256 if _wc devId provided.
* Fix to prevent curve tests from running against wrong curve sizes. Changed wc_ecc_set_curve to match on exact size.
* Added the wc_*GetHash calls to the wolfCrypt tests.
* Added async hardware start/stop to wolfSSL init/cleanup.
* Refactor to add wc_*Copy for hashing context (for async), which replaces wc_*RestorePos.
* Fixes for building with TI hashing (including: SHA224, missing new API’s and building with dummy build for non hw testing). Note: We need to add build test for this `./configure CFLAGS="-DWOLFSSL_TI_HASH -DTI_DUMMY_BUILD”`.
* Added arg checks on wc_*GetHash and wc_*Copy.
* Cleanup of the BuildMD5, BuildSHA, BuildMD5_CertVerify and BuildSHA_CertVerify functions.
* Added new ./configure --enable-asyncthreads, to allow enable/disable of the async threading support. If --enable-asynccrypt set this will be enabled by default if pthread is supported. Allows multi-threaded benchmarks with async simulator.
* Added checks for all hashing to verify valid ->buffLen.
* Fix for SHA512 scan-build warning about un-initialized “W_X”.
* Fix for valgrind un-initialized use of buffer in AllocDer (der->buffer) and BuildTlsFinished handshake_hash.
* Refactor of the benchmarking to use common function for start, check and finish of the stats.
* Fixed issue with ECC cache loading in multi-threading.
* Fix bug with AESNI not aligned code that assumes XMALLOC is 16-byte aligned.
* Added new WC_ASYNC_NO_… options to allow disabling of individual async algorithms. New defines are: WC_ASYNC_NO_CRYPT, WC_ASYNC_NO_PKI and WC_ASYNC_NO_HASH. Additionally each algorithm has a WC_ASYNC_NO_[ALGO] define.
* Added “wolfSSL_GetAllocators” API and fixed the wolfCrypt memcb_test so it restores callback pointers after test is complete (fixes issue with using custom allocators and test breaking it).
2017-04-07 15:46:32 -07:00
|
|
|
|
}
|
2016-04-28 14:21:33 -06:00
|
|
|
|
|
|
|
|
|
/* S: 221 2.0.0 Service closing transmission channel */
|
Intel QuickAssist (QAT) support and async enhancements/fixes:
* Adds ./configure "--with-intelqa=../QAT1.6”, port files, memory management and README.md (see wolfcrypt/src/port/intel/).
* Added Intel QAT support for RSA public/private (CRT/non-CRT), AES CBC/GCM, ECDH/ECDSA, DH, DES3, SHA, SHA224, SHA256, SHA384, SHA512, MD5 and HMAC.
* wolfSSL async enabled all client and server: PKI, Encrypt/Decrypt, Hashing/HMAC and Certificate Sign/Verify.
* wolfSSL async support in functions: Encrypt, Decrypt, VerifyMAC, BuildMessage, ConfirmSignature, DoCertificate, ParseCertRelative, and MakeSignature.
* wolfCrypt test and benchmark async support added for all HW acceleration.
* wolfCrypt benchmark multi-threading support.
* Added QuickAssist memory overrides for XMALLOC, XFREE and XREALLOC. XREALLOC determines if existing pointer needs reallocated for NUMA.
* Refactor to make sure “heap” is available for async dev init.
* Added async support for all examples for connect, accept, read and write.
* Added new WC_BIGINT (in wolfmath.c) for async hardware support.
* Added async simulator tests for DES3 CBC, AES CBC/GCM.
* Added QAT standalone build for unit testing.
* Added int return code to SHA and MD5 functions.
* Refactor of the async stack variable handling, so async operations have generic args buffer area and cleanup function pointer.
* Combined duplicate code for async push/pop handling.
* Refactor internal.c to add AllocKey / FreeKey.
* Refactor of hash init/free in TLS to use InitHashes and FreeHashes.
* Refactor of the async event->context to use WOLF_EVENT_TYPE_ASYNC_WOLFSSL for WOLFSSL* and WOLF_EVENT_TYPE_ASYNC_WOLFCRYPT for WC_ASYNC_DEV*.
* Suppress error message for WC_PENDING_E.
* Implemented "wolfSSL_EVP_MD_CTX_init" to do memset.
* Cleanup of the openssl compat CTX sizes when async is enabled.
* Cleanup of AES, DES3, DH, SHA, MD5, DES3, DH, HMAC, MD5 for consistency and readability.
* Cleanup of the OPAQUE_LEN.
* Cleanup to use ENCRYPT_LEN instead of sizeof(ssl->arrays.preMasterSecret).
* Changed ssl->arrays.preMasterSecret to use XMALLOC (accelerates HW operations)
* Reduce verbosity with debug enabled for "GetMyVersion", "wolfSSL Using RSA OAEP padding" and "wolfSSL Using RSA PKCSV15 padding".
* Updated RSA un-padding error message so its different than one above it for better debugging.
* Added QAT async enables for each algorithm.
* Refactor of the async init to use _ex.
* Added WC_ASYNC_THRESH_NONE to allow bypass of the async thresholds for testing.
* Reformatted the benchmark results:
PKI: "RSA 2048 private HW 18522 ops took 1.003 sec, avg 0.054 ms, 18467.763 ops/sec"
Crypto/Hashing: SHA-256 SW 350 megs took 1.009 seconds, 346.946 MB/s Cycles per byte = 9.87
* Added min execution time for all benchmarks.
* Moved wc_*GetHash and wc_*RestorePos to appropriate files so use of isCopy flag is local.
* Fix for ECC sign status sometimes being invalid due to uninitialized ECC digest in benchmark.
* Added new DECLARE_VAR/FREE_VAR and DECLARE_ARRAY/FREE_ARRAY macros for helping setup test/benchmark variables to accelerate async.
* Added NO_SW_BENCH option to only run HW bench.
* Added support for PRNG to use hardware SHA256 if _wc devId provided.
* Fix to prevent curve tests from running against wrong curve sizes. Changed wc_ecc_set_curve to match on exact size.
* Added the wc_*GetHash calls to the wolfCrypt tests.
* Added async hardware start/stop to wolfSSL init/cleanup.
* Refactor to add wc_*Copy for hashing context (for async), which replaces wc_*RestorePos.
* Fixes for building with TI hashing (including: SHA224, missing new API’s and building with dummy build for non hw testing). Note: We need to add build test for this `./configure CFLAGS="-DWOLFSSL_TI_HASH -DTI_DUMMY_BUILD”`.
* Added arg checks on wc_*GetHash and wc_*Copy.
* Cleanup of the BuildMD5, BuildSHA, BuildMD5_CertVerify and BuildSHA_CertVerify functions.
* Added new ./configure --enable-asyncthreads, to allow enable/disable of the async threading support. If --enable-asynccrypt set this will be enabled by default if pthread is supported. Allows multi-threaded benchmarks with async simulator.
* Added checks for all hashing to verify valid ->buffLen.
* Fix for SHA512 scan-build warning about un-initialized “W_X”.
* Fix for valgrind un-initialized use of buffer in AllocDer (der->buffer) and BuildTlsFinished handshake_hash.
* Refactor of the benchmarking to use common function for start, check and finish of the stats.
* Fixed issue with ECC cache loading in multi-threading.
* Fix bug with AESNI not aligned code that assumes XMALLOC is 16-byte aligned.
* Added new WC_ASYNC_NO_… options to allow disabling of individual async algorithms. New defines are: WC_ASYNC_NO_CRYPT, WC_ASYNC_NO_PKI and WC_ASYNC_NO_HASH. Additionally each algorithm has a WC_ASYNC_NO_[ALGO] define.
* Added “wolfSSL_GetAllocators” API and fixed the wolfCrypt memcb_test so it restores callback pointers after test is complete (fixes issue with using custom allocators and test breaking it).
2017-04-07 15:46:32 -07:00
|
|
|
|
do {
|
|
|
|
|
ret = wolfSSL_read(ssl, tmpBuf, sizeof(tmpBuf));
|
|
|
|
|
if (ret < 0) {
|
|
|
|
|
err = wolfSSL_get_error(ssl, 0);
|
|
|
|
|
#ifdef WOLFSSL_ASYNC_CRYPT
|
|
|
|
|
if (err == WC_PENDING_E) {
|
|
|
|
|
ret = wolfSSL_AsyncPoll(ssl, WOLF_POLL_FLAG_CHECK_HW);
|
|
|
|
|
if (ret < 0) break;
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
} while (err == WC_PENDING_E);
|
|
|
|
|
if (ret < 0) {
|
2016-04-28 14:21:33 -06:00
|
|
|
|
err_sys("failed to read SMTP closing down response\n");
|
Intel QuickAssist (QAT) support and async enhancements/fixes:
* Adds ./configure "--with-intelqa=../QAT1.6”, port files, memory management and README.md (see wolfcrypt/src/port/intel/).
* Added Intel QAT support for RSA public/private (CRT/non-CRT), AES CBC/GCM, ECDH/ECDSA, DH, DES3, SHA, SHA224, SHA256, SHA384, SHA512, MD5 and HMAC.
* wolfSSL async enabled all client and server: PKI, Encrypt/Decrypt, Hashing/HMAC and Certificate Sign/Verify.
* wolfSSL async support in functions: Encrypt, Decrypt, VerifyMAC, BuildMessage, ConfirmSignature, DoCertificate, ParseCertRelative, and MakeSignature.
* wolfCrypt test and benchmark async support added for all HW acceleration.
* wolfCrypt benchmark multi-threading support.
* Added QuickAssist memory overrides for XMALLOC, XFREE and XREALLOC. XREALLOC determines if existing pointer needs reallocated for NUMA.
* Refactor to make sure “heap” is available for async dev init.
* Added async support for all examples for connect, accept, read and write.
* Added new WC_BIGINT (in wolfmath.c) for async hardware support.
* Added async simulator tests for DES3 CBC, AES CBC/GCM.
* Added QAT standalone build for unit testing.
* Added int return code to SHA and MD5 functions.
* Refactor of the async stack variable handling, so async operations have generic args buffer area and cleanup function pointer.
* Combined duplicate code for async push/pop handling.
* Refactor internal.c to add AllocKey / FreeKey.
* Refactor of hash init/free in TLS to use InitHashes and FreeHashes.
* Refactor of the async event->context to use WOLF_EVENT_TYPE_ASYNC_WOLFSSL for WOLFSSL* and WOLF_EVENT_TYPE_ASYNC_WOLFCRYPT for WC_ASYNC_DEV*.
* Suppress error message for WC_PENDING_E.
* Implemented "wolfSSL_EVP_MD_CTX_init" to do memset.
* Cleanup of the openssl compat CTX sizes when async is enabled.
* Cleanup of AES, DES3, DH, SHA, MD5, DES3, DH, HMAC, MD5 for consistency and readability.
* Cleanup of the OPAQUE_LEN.
* Cleanup to use ENCRYPT_LEN instead of sizeof(ssl->arrays.preMasterSecret).
* Changed ssl->arrays.preMasterSecret to use XMALLOC (accelerates HW operations)
* Reduce verbosity with debug enabled for "GetMyVersion", "wolfSSL Using RSA OAEP padding" and "wolfSSL Using RSA PKCSV15 padding".
* Updated RSA un-padding error message so its different than one above it for better debugging.
* Added QAT async enables for each algorithm.
* Refactor of the async init to use _ex.
* Added WC_ASYNC_THRESH_NONE to allow bypass of the async thresholds for testing.
* Reformatted the benchmark results:
PKI: "RSA 2048 private HW 18522 ops took 1.003 sec, avg 0.054 ms, 18467.763 ops/sec"
Crypto/Hashing: SHA-256 SW 350 megs took 1.009 seconds, 346.946 MB/s Cycles per byte = 9.87
* Added min execution time for all benchmarks.
* Moved wc_*GetHash and wc_*RestorePos to appropriate files so use of isCopy flag is local.
* Fix for ECC sign status sometimes being invalid due to uninitialized ECC digest in benchmark.
* Added new DECLARE_VAR/FREE_VAR and DECLARE_ARRAY/FREE_ARRAY macros for helping setup test/benchmark variables to accelerate async.
* Added NO_SW_BENCH option to only run HW bench.
* Added support for PRNG to use hardware SHA256 if _wc devId provided.
* Fix to prevent curve tests from running against wrong curve sizes. Changed wc_ecc_set_curve to match on exact size.
* Added the wc_*GetHash calls to the wolfCrypt tests.
* Added async hardware start/stop to wolfSSL init/cleanup.
* Refactor to add wc_*Copy for hashing context (for async), which replaces wc_*RestorePos.
* Fixes for building with TI hashing (including: SHA224, missing new API’s and building with dummy build for non hw testing). Note: We need to add build test for this `./configure CFLAGS="-DWOLFSSL_TI_HASH -DTI_DUMMY_BUILD”`.
* Added arg checks on wc_*GetHash and wc_*Copy.
* Cleanup of the BuildMD5, BuildSHA, BuildMD5_CertVerify and BuildSHA_CertVerify functions.
* Added new ./configure --enable-asyncthreads, to allow enable/disable of the async threading support. If --enable-asynccrypt set this will be enabled by default if pthread is supported. Allows multi-threaded benchmarks with async simulator.
* Added checks for all hashing to verify valid ->buffLen.
* Fix for SHA512 scan-build warning about un-initialized “W_X”.
* Fix for valgrind un-initialized use of buffer in AllocDer (der->buffer) and BuildTlsFinished handshake_hash.
* Refactor of the benchmarking to use common function for start, check and finish of the stats.
* Fixed issue with ECC cache loading in multi-threading.
* Fix bug with AESNI not aligned code that assumes XMALLOC is 16-byte aligned.
* Added new WC_ASYNC_NO_… options to allow disabling of individual async algorithms. New defines are: WC_ASYNC_NO_CRYPT, WC_ASYNC_NO_PKI and WC_ASYNC_NO_HASH. Additionally each algorithm has a WC_ASYNC_NO_[ALGO] define.
* Added “wolfSSL_GetAllocators” API and fixed the wolfCrypt memcb_test so it restores callback pointers after test is complete (fixes issue with using custom allocators and test breaking it).
2017-04-07 15:46:32 -07:00
|
|
|
|
}
|
2016-04-28 14:21:33 -06:00
|
|
|
|
|
|
|
|
|
printf("%s\n", tmpBuf);
|
|
|
|
|
|
|
|
|
|
ret = wolfSSL_shutdown(ssl);
|
2017-10-11 09:09:52 -07:00
|
|
|
|
if (wc_shutdown && ret == WOLFSSL_SHUTDOWN_NOT_DONE)
|
2016-04-28 14:21:33 -06:00
|
|
|
|
wolfSSL_shutdown(ssl); /* bidirectional shutdown */
|
|
|
|
|
|
2017-10-11 09:09:52 -07:00
|
|
|
|
return WOLFSSL_SUCCESS;
|
2016-04-28 14:21:33 -06:00
|
|
|
|
}
|
|
|
|
|
|
2017-06-08 10:32:51 +10:00
|
|
|
|
static void ClientWrite(WOLFSSL* ssl, char* msg, int msgSz)
|
|
|
|
|
{
|
|
|
|
|
int ret, err;
|
|
|
|
|
char buffer[WOLFSSL_MAX_ERROR_SZ];
|
|
|
|
|
|
|
|
|
|
do {
|
|
|
|
|
err = 0; /* reset error */
|
|
|
|
|
ret = wolfSSL_write(ssl, msg, msgSz);
|
|
|
|
|
if (ret <= 0) {
|
|
|
|
|
err = wolfSSL_get_error(ssl, 0);
|
|
|
|
|
#ifdef WOLFSSL_ASYNC_CRYPT
|
|
|
|
|
if (err == WC_PENDING_E) {
|
|
|
|
|
ret = wolfSSL_AsyncPoll(ssl, WOLF_POLL_FLAG_CHECK_HW);
|
|
|
|
|
if (ret < 0) break;
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
}
|
2018-06-08 17:34:03 +10:00
|
|
|
|
} while (err == WOLFSSL_ERROR_WANT_WRITE
|
|
|
|
|
#ifdef WOLFSSL_ASYNC_CRYPT
|
|
|
|
|
|| err == WC_PENDING_E
|
|
|
|
|
#endif
|
|
|
|
|
);
|
2017-06-08 10:32:51 +10:00
|
|
|
|
if (ret != msgSz) {
|
|
|
|
|
printf("SSL_write msg error %d, %s\n", err,
|
|
|
|
|
wolfSSL_ERR_error_string(err, buffer));
|
|
|
|
|
err_sys("SSL_write failed");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void ClientRead(WOLFSSL* ssl, char* reply, int replyLen, int mustRead)
|
|
|
|
|
{
|
|
|
|
|
int ret, err;
|
|
|
|
|
char buffer[WOLFSSL_MAX_ERROR_SZ];
|
2019-01-11 08:45:34 -08:00
|
|
|
|
double start = current_time(1), elapsed;
|
2017-06-08 10:32:51 +10:00
|
|
|
|
|
|
|
|
|
do {
|
|
|
|
|
err = 0; /* reset error */
|
|
|
|
|
ret = wolfSSL_read(ssl, reply, replyLen);
|
|
|
|
|
if (ret <= 0) {
|
|
|
|
|
err = wolfSSL_get_error(ssl, 0);
|
|
|
|
|
#ifdef WOLFSSL_ASYNC_CRYPT
|
|
|
|
|
if (err == WC_PENDING_E) {
|
|
|
|
|
ret = wolfSSL_AsyncPoll(ssl, WOLF_POLL_FLAG_CHECK_HW);
|
|
|
|
|
if (ret < 0) break;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
#endif
|
2017-10-11 09:09:52 -07:00
|
|
|
|
if (err != WOLFSSL_ERROR_WANT_READ) {
|
2017-06-08 10:32:51 +10:00
|
|
|
|
printf("SSL_read reply error %d, %s\n", err,
|
|
|
|
|
wolfSSL_ERR_error_string(err, buffer));
|
|
|
|
|
err_sys("SSL_read failed");
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-01-11 08:45:34 -08:00
|
|
|
|
|
|
|
|
|
if (mustRead && err == WOLFSSL_ERROR_WANT_READ) {
|
|
|
|
|
elapsed = current_time(0) - start;
|
|
|
|
|
if (elapsed > MAX_NON_BLOCK_SEC) {
|
|
|
|
|
printf("Nonblocking read timeout\n");
|
2019-01-11 09:42:41 -08:00
|
|
|
|
ret = WOLFSSL_FATAL_ERROR;
|
2019-01-11 08:45:34 -08:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
2018-03-16 12:02:36 -07:00
|
|
|
|
} while ((mustRead && err == WOLFSSL_ERROR_WANT_READ)
|
|
|
|
|
#ifdef WOLFSSL_ASYNC_CRYPT
|
|
|
|
|
|| err == WC_PENDING_E
|
|
|
|
|
#endif
|
|
|
|
|
);
|
2017-06-08 10:32:51 +10:00
|
|
|
|
if (ret > 0) {
|
|
|
|
|
reply[ret] = 0;
|
|
|
|
|
printf("%s\n", reply);
|
|
|
|
|
}
|
|
|
|
|
}
|
2015-10-02 16:25:17 -07:00
|
|
|
|
|
2018-08-28 15:37:15 +10:00
|
|
|
|
|
2018-10-20 13:40:01 +09:00
|
|
|
|
/* when adding new option, please follow the steps below: */
|
|
|
|
|
/* 1. add new option message in English section */
|
|
|
|
|
/* 2. increase the number of the second dimention */
|
|
|
|
|
/* 3. add the same message into Japanese section */
|
|
|
|
|
/* (will be translated later) */
|
|
|
|
|
/* 4. add printf() into suitable position of Usage() */
|
|
|
|
|
static const char* client_usage_msg[][59] = {
|
|
|
|
|
/* English */
|
|
|
|
|
{
|
|
|
|
|
" NOTE: All files relative to wolfSSL home dir\n", /* 0 */
|
|
|
|
|
"Max RSA key size in bits for build is set at : ", /* 1 */
|
|
|
|
|
#ifdef NO_RSA
|
|
|
|
|
"RSA not supported\n", /* 2 */
|
|
|
|
|
#elif defined(WOLFSSL_SP_MATH) /* case of SP math only */
|
|
|
|
|
#ifndef WOLFSSL_SP_NO_3072
|
|
|
|
|
"3072\n", /* 2 */
|
|
|
|
|
#elif !defined(WOLFSSL_SP_NO_2048)
|
|
|
|
|
"2048\n", /* 2 */
|
|
|
|
|
#else
|
|
|
|
|
"0\n", /* 2 */
|
|
|
|
|
#endif
|
|
|
|
|
#elif defined(USE_FAST_MATH)
|
|
|
|
|
#else
|
|
|
|
|
"INFINITE\n", /* 2 */
|
|
|
|
|
#endif
|
2018-10-20 17:15:17 +09:00
|
|
|
|
"-? <num> Help, print this usage\n"
|
2018-11-29 06:52:43 +09:00
|
|
|
|
" 0: English, 1: Japanese\n", /* 3 */
|
|
|
|
|
"-h <host> Host to connect to, default", /* 4 */
|
|
|
|
|
"-p <num> Port to connect on, not 0, default", /* 5 */
|
2018-10-20 13:40:01 +09:00
|
|
|
|
|
|
|
|
|
#ifndef WOLFSSL_TLS13
|
2018-10-20 17:15:17 +09:00
|
|
|
|
"-v <num> SSL version [0-3], SSLv3(0) - TLS1.2(3)), default", /* 6 */
|
|
|
|
|
"-V Prints valid ssl version numbers"
|
2018-11-29 06:52:43 +09:00
|
|
|
|
", SSLv3(0) - TLS1.2(3)\n", /* 7 */
|
2018-10-20 13:40:01 +09:00
|
|
|
|
#else
|
2018-10-20 17:15:17 +09:00
|
|
|
|
"-v <num> SSL version [0-4], SSLv3(0) - TLS1.3(4)), default", /* 6 */
|
|
|
|
|
"-V Prints valid ssl version numbers,"
|
|
|
|
|
" SSLv3(0) - TLS1.3(4)\n", /* 7 */
|
|
|
|
|
#endif
|
2018-11-29 06:52:43 +09:00
|
|
|
|
"-l <str> Cipher suite list (: delimited)\n", /* 8 */
|
|
|
|
|
"-c <file> Certificate file, default", /* 9 */
|
|
|
|
|
"-k <file> Key file, default", /* 10 */
|
|
|
|
|
"-A <file> Certificate Authority file, default", /* 11 */
|
2018-10-20 13:40:01 +09:00
|
|
|
|
#ifndef NO_DH
|
2018-11-29 06:52:43 +09:00
|
|
|
|
"-Z <num> Minimum DH key bits, default", /* 12 */
|
2018-10-20 13:40:01 +09:00
|
|
|
|
#endif
|
2018-11-29 06:52:43 +09:00
|
|
|
|
"-b <num> Benchmark <num> connections and print stats\n", /* 13 */
|
2018-10-20 13:40:01 +09:00
|
|
|
|
#ifdef HAVE_ALPN
|
2018-10-20 17:15:17 +09:00
|
|
|
|
"-L <str> Application-Layer Protocol"
|
2018-11-29 06:52:43 +09:00
|
|
|
|
" Negotiation ({C,F}:<list>)\n", /* 14 */
|
2018-10-20 17:15:17 +09:00
|
|
|
|
#endif
|
|
|
|
|
"-B <num> Benchmark throughput"
|
2018-11-29 06:52:43 +09:00
|
|
|
|
" using <num> bytes and print stats\n", /* 15 */
|
|
|
|
|
"-s Use pre Shared keys\n", /* 16 */
|
|
|
|
|
"-d Disable peer checks\n", /* 17 */
|
|
|
|
|
"-D Override Date Errors example\n", /* 18 */
|
|
|
|
|
"-e List Every cipher suite available, \n", /* 19 */
|
|
|
|
|
"-g Send server HTTP GET\n", /* 20 */
|
2018-10-20 17:15:17 +09:00
|
|
|
|
"-u Use UDP DTLS,"
|
2018-11-29 06:52:43 +09:00
|
|
|
|
" add -v 2 for DTLSv1, -v 3 for DTLSv1.2 (default)\n", /* 21 */
|
2018-10-20 13:40:01 +09:00
|
|
|
|
#ifdef WOLFSSL_SCTP
|
2018-10-20 17:15:17 +09:00
|
|
|
|
"-G Use SCTP DTLS,"
|
2018-11-29 06:52:43 +09:00
|
|
|
|
" add -v 2 for DTLSv1, -v 3 for DTLSv1.2 (default)\n", /* 22 */
|
2018-10-20 13:40:01 +09:00
|
|
|
|
#endif
|
2018-11-29 06:52:43 +09:00
|
|
|
|
"-m Match domain name in cert\n", /* 23 */
|
|
|
|
|
"-N Use Non-blocking sockets\n", /* 24 */
|
2018-10-20 13:40:01 +09:00
|
|
|
|
#ifndef NO_SESSION_CACHE
|
2018-11-29 06:52:43 +09:00
|
|
|
|
"-r Resume session\n", /* 25 */
|
2019-01-10 17:12:37 -08:00
|
|
|
|
#endif
|
2018-11-29 06:52:43 +09:00
|
|
|
|
"-w Wait for bidirectional shutdown\n", /* 26 */
|
|
|
|
|
"-M <prot> Use STARTTLS, using <prot> protocol (smtp)\n", /* 27 */
|
2018-10-20 13:40:01 +09:00
|
|
|
|
#ifdef HAVE_SECURE_RENEGOTIATION
|
2018-11-29 06:52:43 +09:00
|
|
|
|
"-R Allow Secure Renegotiation\n", /* 28 */
|
|
|
|
|
"-i Force client Initiated Secure Renegotiation\n", /* 29 */
|
2018-10-20 13:40:01 +09:00
|
|
|
|
#endif
|
2018-11-29 06:52:43 +09:00
|
|
|
|
"-f Fewer packets/group messages\n", /* 30 */
|
|
|
|
|
"-x Disable client cert/key loading\n", /* 31 */
|
|
|
|
|
"-X Driven by eXternal test case\n", /* 32 */
|
|
|
|
|
"-j Use verify callback override\n", /* 33 */
|
2018-10-20 13:40:01 +09:00
|
|
|
|
#ifdef SHOW_SIZES
|
2018-11-29 06:52:43 +09:00
|
|
|
|
"-z Print structure sizes\n", /* 34 */
|
2018-10-20 13:40:01 +09:00
|
|
|
|
#endif
|
|
|
|
|
#ifdef HAVE_SNI
|
2018-11-29 06:52:43 +09:00
|
|
|
|
"-S <str> Use Host Name Indication\n", /* 35 */
|
2018-10-20 13:40:01 +09:00
|
|
|
|
#endif
|
|
|
|
|
#ifdef HAVE_MAX_FRAGMENT
|
2018-11-29 06:52:43 +09:00
|
|
|
|
"-F <num> Use Maximum Fragment Length [1-6]\n", /* 36 */
|
2018-10-20 13:40:01 +09:00
|
|
|
|
#endif
|
|
|
|
|
#ifdef HAVE_TRUNCATED_HMAC
|
2018-11-29 06:52:43 +09:00
|
|
|
|
"-T Use Truncated HMAC\n", /* 37 */
|
2018-10-20 13:40:01 +09:00
|
|
|
|
#endif
|
|
|
|
|
#ifdef HAVE_EXTENDED_MASTER
|
2018-11-29 06:52:43 +09:00
|
|
|
|
"-n Disable Extended Master Secret\n", /* 38 */
|
2018-10-20 13:40:01 +09:00
|
|
|
|
#endif
|
|
|
|
|
#ifdef HAVE_OCSP
|
2018-11-29 06:52:43 +09:00
|
|
|
|
"-o Perform OCSP lookup on peer certificate\n", /* 39 */
|
|
|
|
|
"-O <url> Perform OCSP lookup using <url> as responder\n", /* 40 */
|
2018-10-20 13:40:01 +09:00
|
|
|
|
#endif
|
|
|
|
|
#if defined(HAVE_CERTIFICATE_STATUS_REQUEST) \
|
|
|
|
|
|| defined(HAVE_CERTIFICATE_STATUS_REQUEST_V2)
|
2018-11-29 06:52:43 +09:00
|
|
|
|
"-W <num> Use OCSP Stapling (1 v1, 2 v2, 3 v2 multi)\n", /* 41 */
|
2018-10-20 13:40:01 +09:00
|
|
|
|
#endif
|
|
|
|
|
#ifdef ATOMIC_USER
|
2018-11-29 06:52:43 +09:00
|
|
|
|
"-U Atomic User Record Layer Callbacks\n", /* 42 */
|
2018-10-20 13:40:01 +09:00
|
|
|
|
#endif
|
|
|
|
|
#ifdef HAVE_PK_CALLBACKS
|
2018-11-29 06:52:43 +09:00
|
|
|
|
"-P Public Key Callbacks\n", /* 43 */
|
2018-10-20 13:40:01 +09:00
|
|
|
|
#endif
|
|
|
|
|
#ifdef HAVE_ANON
|
2018-11-29 06:52:43 +09:00
|
|
|
|
"-a Anonymous client\n", /* 44 */
|
2018-10-20 13:40:01 +09:00
|
|
|
|
#endif
|
|
|
|
|
#ifdef HAVE_CRL
|
2018-11-29 06:52:43 +09:00
|
|
|
|
"-C Disable CRL\n", /* 45 */
|
2018-10-20 13:40:01 +09:00
|
|
|
|
#endif
|
|
|
|
|
#ifdef WOLFSSL_TRUST_PEER_CERT
|
2018-11-29 06:52:43 +09:00
|
|
|
|
"-E <file> Path to load trusted peer cert\n", /* 46 */
|
2018-10-20 13:40:01 +09:00
|
|
|
|
#endif
|
|
|
|
|
#ifdef HAVE_WNR
|
2019-01-10 17:12:37 -08:00
|
|
|
|
"-q <file> Whitewood config file, defaults\n", /* 47 */
|
2018-10-20 13:40:01 +09:00
|
|
|
|
#endif
|
2018-10-20 17:15:17 +09:00
|
|
|
|
"-H <arg> Internal tests"
|
2018-11-29 06:52:43 +09:00
|
|
|
|
" [defCipherList, exitWithRet, verifyFail]\n", /* 48 */
|
2018-10-20 13:40:01 +09:00
|
|
|
|
#ifdef WOLFSSL_TLS13
|
2018-11-29 06:52:43 +09:00
|
|
|
|
"-J Use HelloRetryRequest to choose group for KE\n", /* 49 */
|
|
|
|
|
"-K Key Exchange for PSK not using (EC)DHE\n", /* 50 */
|
|
|
|
|
"-I Update keys and IVs before sending data\n", /* 51 */
|
2018-10-20 13:40:01 +09:00
|
|
|
|
#ifndef NO_DH
|
2018-11-29 06:52:43 +09:00
|
|
|
|
"-y Key Share with FFDHE named groups only\n", /* 52 */
|
2018-10-20 13:40:01 +09:00
|
|
|
|
#endif
|
|
|
|
|
#ifdef HAVE_ECC
|
2018-11-29 06:52:43 +09:00
|
|
|
|
"-Y Key Share with ECC named groups only\n", /* 53 */
|
2018-10-20 13:40:01 +09:00
|
|
|
|
#endif
|
|
|
|
|
#endif /* WOLFSSL_TLS13 */
|
|
|
|
|
#ifdef HAVE_CURVE25519
|
2018-11-29 06:52:43 +09:00
|
|
|
|
"-t Use X25519 for key exchange\n", /* 54 */
|
2018-10-20 13:40:01 +09:00
|
|
|
|
#endif
|
|
|
|
|
#if defined(WOLFSSL_TLS13) && defined(WOLFSSL_POST_HANDSHAKE_AUTH)
|
2018-11-29 06:52:43 +09:00
|
|
|
|
"-Q Support requesting certificate post-handshake\n", /* 55 */
|
2018-10-20 13:40:01 +09:00
|
|
|
|
#endif
|
|
|
|
|
#ifdef WOLFSSL_EARLY_DATA
|
2018-11-29 06:52:43 +09:00
|
|
|
|
"-0 Early data sent to server (0-RTT handshake)\n", /* 56 */
|
2018-10-20 13:40:01 +09:00
|
|
|
|
#endif
|
|
|
|
|
#ifdef WOLFSSL_MULTICAST
|
2018-11-29 06:52:43 +09:00
|
|
|
|
"-3 <grpid> Multicast, grpid < 256\n", /* 57 */
|
2018-10-20 13:40:01 +09:00
|
|
|
|
#endif
|
2018-10-20 17:15:17 +09:00
|
|
|
|
"-1 <num> Display a result by specified language.\n"
|
2018-11-29 06:52:43 +09:00
|
|
|
|
" 0: English, 1: Japanese\n", /* 58 */
|
2019-02-20 11:23:00 -08:00
|
|
|
|
#if !defined(NO_DH) && !defined(HAVE_FIPS) && \
|
|
|
|
|
!defined(HAVE_SELFTEST) && !defined(WOLFSSL_OLD_PRIME_CHECK)
|
|
|
|
|
"-2 Disable DH Prime check\n", /* 59 */
|
|
|
|
|
#endif
|
2019-02-21 10:28:23 -08:00
|
|
|
|
#ifdef HAVE_SECURE_RENEGOTIATION
|
2019-02-20 11:23:00 -08:00
|
|
|
|
"-4 Use resumption for renegotiation\n", /* 60 */
|
2019-02-21 10:28:23 -08:00
|
|
|
|
#endif
|
|
|
|
|
#ifdef HAVE_TRUSTED_CA
|
|
|
|
|
"-5 Use Trusted CA Key Indication\n", /* 61 */
|
|
|
|
|
#endif
|
2018-10-20 13:40:01 +09:00
|
|
|
|
NULL,
|
|
|
|
|
},
|
2018-11-29 07:04:01 +09:00
|
|
|
|
#ifndef NO_MULTIBYTE_PRINT
|
2018-10-20 13:40:01 +09:00
|
|
|
|
/* Japanese */
|
2018-11-29 06:52:43 +09:00
|
|
|
|
{
|
2018-10-20 17:15:17 +09:00
|
|
|
|
" 注意 : 全てのファイルは wolfSSL ホーム・ディレクトリからの相対です。"
|
2018-11-29 06:52:43 +09:00
|
|
|
|
"\n", /* 0 */
|
|
|
|
|
"RSAの最大ビットは次のように設定されています: ", /* 1 */
|
2018-10-20 13:40:01 +09:00
|
|
|
|
#ifdef NO_RSA
|
2018-11-29 06:52:43 +09:00
|
|
|
|
"RSAはサポートされていません。\n", /* 2 */
|
2018-10-20 13:40:01 +09:00
|
|
|
|
#elif defined(WOLFSSL_SP_MATH) /* case of SP math only */
|
|
|
|
|
#ifndef WOLFSSL_SP_NO_3072
|
2018-11-29 06:52:43 +09:00
|
|
|
|
"3072\n", /* 2 */
|
2018-10-20 13:40:01 +09:00
|
|
|
|
#elif !defined(WOLFSSL_SP_NO_2048)
|
2018-11-29 06:52:43 +09:00
|
|
|
|
"2048\n", /* 2 */
|
2018-10-20 13:40:01 +09:00
|
|
|
|
#else
|
2018-11-29 06:52:43 +09:00
|
|
|
|
"0\n", /* 2 */
|
2018-10-20 13:40:01 +09:00
|
|
|
|
#endif
|
|
|
|
|
#elif defined(USE_FAST_MATH)
|
|
|
|
|
#else
|
2018-11-29 06:52:43 +09:00
|
|
|
|
"無限\n", /* 2 */
|
2018-10-20 13:40:01 +09:00
|
|
|
|
#endif
|
2018-10-20 17:15:17 +09:00
|
|
|
|
"-? <num> ヘルプ, 使い方を表示\n"
|
2018-11-29 06:52:43 +09:00
|
|
|
|
" 0: 英語、 1: 日本語\n", /* 3 */
|
|
|
|
|
"-h <host> 接続先ホスト, 既定値", /* 4 */
|
|
|
|
|
"-p <num> 接続先ポート, 0は無効, 既定値", /* 5 */
|
2018-10-20 13:40:01 +09:00
|
|
|
|
|
|
|
|
|
#ifndef WOLFSSL_TLS13
|
2018-10-20 17:15:17 +09:00
|
|
|
|
"-v <num> SSL バージョン [0-3], SSLv3(0) - TLS1.2(3)),"
|
2018-11-29 06:52:43 +09:00
|
|
|
|
" 既定値", /* 6 */
|
2018-10-20 17:15:17 +09:00
|
|
|
|
"-V 有効な ssl バージョン番号を出力, SSLv3(0) -"
|
2018-11-29 06:52:43 +09:00
|
|
|
|
" TLS1.2(3)\n", /* 7 */
|
2018-10-20 13:40:01 +09:00
|
|
|
|
#else
|
2018-10-20 17:15:17 +09:00
|
|
|
|
"-v <num> SSL バージョン [0-4], SSLv3(0) - TLS1.3(4)),"
|
2018-11-29 06:52:43 +09:00
|
|
|
|
" 既定値", /* 6 */
|
2018-10-20 17:15:17 +09:00
|
|
|
|
"-V 有効な ssl バージョン番号を出力, SSLv3(0) -"
|
2018-11-29 06:52:43 +09:00
|
|
|
|
" TLS1.3(4)\n", /* 7 */
|
2018-10-20 17:15:17 +09:00
|
|
|
|
#endif
|
2018-11-29 06:52:43 +09:00
|
|
|
|
"-l <str> 暗号スイートリスト (区切り文字 :)\n", /* 8 */
|
|
|
|
|
"-c <file> 証明書ファイル, 既定値", /* 9 */
|
|
|
|
|
"-k <file> 鍵ファイル, 既定値", /* 10 */
|
|
|
|
|
"-A <file> 認証局ファイル, 既定値", /* 11 */
|
2018-10-20 13:40:01 +09:00
|
|
|
|
#ifndef NO_DH
|
2018-11-29 06:52:43 +09:00
|
|
|
|
"-Z <num> 最小 DH 鍵 ビット, 既定値", /* 12 */
|
2018-10-20 13:40:01 +09:00
|
|
|
|
#endif
|
2018-11-29 06:52:43 +09:00
|
|
|
|
"-b <num> ベンチマーク <num> 接続及び結果出力する\n", /* 13 */
|
2018-10-20 13:40:01 +09:00
|
|
|
|
#ifdef HAVE_ALPN
|
2018-10-20 17:15:17 +09:00
|
|
|
|
"-L <str> アプリケーション層プロトコルネゴシエーションを行う"
|
2018-11-29 06:52:43 +09:00
|
|
|
|
" ({C,F}:<list>)\n", /* 14 */
|
2018-10-20 17:15:17 +09:00
|
|
|
|
#endif
|
|
|
|
|
"-B <num> <num> バイトを用いてのベンチマーク・スループット測定"
|
2018-11-29 06:52:43 +09:00
|
|
|
|
"と結果を出力する\n", /* 15 */
|
|
|
|
|
"-s 事前共有鍵を使用する\n", /* 16 */
|
|
|
|
|
"-d ピア確認を無効とする\n", /* 17 */
|
|
|
|
|
"-D 日付エラー用コールバック例の上書きを行う\n", /* 18 */
|
|
|
|
|
"-e 利用可能な全ての暗号スイートをリスト, \n", /* 19 */
|
|
|
|
|
"-g サーバーへ HTTP GET を送信\n", /* 20 */
|
2018-10-20 17:15:17 +09:00
|
|
|
|
"-u UDP DTLSを使用する。-v 2 を追加指定すると"
|
2018-11-29 06:52:43 +09:00
|
|
|
|
" DTLSv1, -v 3 を追加指定すると DTLSv1.2 (既定値)\n", /* 21 */
|
2018-10-20 13:40:01 +09:00
|
|
|
|
#ifdef WOLFSSL_SCTP
|
2018-10-20 17:15:17 +09:00
|
|
|
|
"-G SCTP DTLSを使用する。-v 2 を追加指定すると"
|
2018-11-29 06:52:43 +09:00
|
|
|
|
" DTLSv1, -v 3 を追加指定すると DTLSv1.2 (既定値)\n", /* 22 */
|
2018-10-20 13:40:01 +09:00
|
|
|
|
#endif
|
2018-11-29 06:52:43 +09:00
|
|
|
|
"-m 証明書内のドメイン名一致を確認する\n", /* 23 */
|
|
|
|
|
"-N ノンブロッキング・ソケットを使用する\n", /* 24 */
|
2018-10-20 13:40:01 +09:00
|
|
|
|
#ifndef NO_SESSION_CACHE
|
2018-11-29 06:52:43 +09:00
|
|
|
|
"-r セッションを継続する\n", /* 25 */
|
2019-01-10 17:12:37 -08:00
|
|
|
|
#endif
|
2018-11-29 06:52:43 +09:00
|
|
|
|
"-w 双方向シャットダウンを待つ\n", /* 26 */
|
2018-10-20 17:15:17 +09:00
|
|
|
|
"-M <prot> STARTTLSを使用する, <prot>プロトコル(smtp)を"
|
2018-11-29 06:52:43 +09:00
|
|
|
|
"使用する\n", /* 27 */
|
2018-10-20 13:40:01 +09:00
|
|
|
|
#ifdef HAVE_SECURE_RENEGOTIATION
|
2018-11-29 06:52:43 +09:00
|
|
|
|
"-R セキュアな再ネゴシエーションを許可する\n", /* 28 */
|
|
|
|
|
"-i クライアント主導のネゴシエーションを強制する\n", /* 29 */
|
2018-10-20 13:40:01 +09:00
|
|
|
|
#endif
|
2018-11-29 06:52:43 +09:00
|
|
|
|
"-f より少ないパケット/グループメッセージを使用する\n",/* 30 */
|
|
|
|
|
"-x クライアントの証明書/鍵のロードを無効する\n", /* 31 */
|
|
|
|
|
"-X 外部テスト・ケースにより動作する\n", /* 32 */
|
|
|
|
|
"-j コールバック・オーバーライドの検証を使用する\n", /* 33 */
|
2018-10-20 13:40:01 +09:00
|
|
|
|
#ifdef SHOW_SIZES
|
2018-11-29 06:52:43 +09:00
|
|
|
|
"-z 構造体のサイズを表示する\n", /* 34 */
|
2018-10-20 13:40:01 +09:00
|
|
|
|
#endif
|
|
|
|
|
#ifdef HAVE_SNI
|
2018-11-29 06:52:43 +09:00
|
|
|
|
"-S <str> ホスト名表示を使用する\n", /* 35 */
|
2018-10-20 13:40:01 +09:00
|
|
|
|
#endif
|
|
|
|
|
#ifdef HAVE_MAX_FRAGMENT
|
2018-11-29 06:52:43 +09:00
|
|
|
|
"-F <num> 最大フラグメント長[1-6]を設定する\n", /* 36 */
|
2018-10-20 13:40:01 +09:00
|
|
|
|
#endif
|
|
|
|
|
#ifdef HAVE_TRUNCATED_HMAC
|
2018-11-29 06:52:43 +09:00
|
|
|
|
"-T Truncated HMACを使用する\n", /* 37 */
|
2018-10-20 13:40:01 +09:00
|
|
|
|
#endif
|
|
|
|
|
#ifdef HAVE_EXTENDED_MASTER
|
2018-11-29 06:52:43 +09:00
|
|
|
|
"-n マスターシークレット拡張を無効にする\n", /* 38 */
|
2018-10-20 13:40:01 +09:00
|
|
|
|
#endif
|
|
|
|
|
#ifdef HAVE_OCSP
|
2018-11-29 06:52:43 +09:00
|
|
|
|
"-o OCSPルックアップをピア証明書で実施する\n", /* 39 */
|
2018-10-20 17:15:17 +09:00
|
|
|
|
"-O <url> OCSPルックアップを、<url>を使用し"
|
2018-11-29 06:52:43 +09:00
|
|
|
|
"応答者として実施する\n", /* 40 */
|
2018-10-20 13:40:01 +09:00
|
|
|
|
#endif
|
|
|
|
|
#if defined(HAVE_CERTIFICATE_STATUS_REQUEST) \
|
|
|
|
|
|| defined(HAVE_CERTIFICATE_STATUS_REQUEST_V2)
|
2018-10-20 17:15:17 +09:00
|
|
|
|
"-W <num> OCSP Staplingを使用する"
|
2018-11-29 06:52:43 +09:00
|
|
|
|
" (1 v1, 2 v2, 3 v2 multi)\n", /* 41 */
|
2018-10-20 13:40:01 +09:00
|
|
|
|
#endif
|
|
|
|
|
#ifdef ATOMIC_USER
|
2018-10-20 17:15:17 +09:00
|
|
|
|
"-U アトミック・ユーザー記録の"
|
2018-11-29 06:52:43 +09:00
|
|
|
|
"コールバックを利用する\n", /* 42 */
|
2018-10-20 13:40:01 +09:00
|
|
|
|
#endif
|
|
|
|
|
#ifdef HAVE_PK_CALLBACKS
|
2018-11-29 06:52:43 +09:00
|
|
|
|
"-P 公開鍵コールバック\n", /* 43 */
|
2018-10-20 13:40:01 +09:00
|
|
|
|
#endif
|
|
|
|
|
#ifdef HAVE_ANON
|
2018-11-29 06:52:43 +09:00
|
|
|
|
"-a 匿名クライアント\n", /* 44 */
|
2018-10-20 13:40:01 +09:00
|
|
|
|
#endif
|
|
|
|
|
#ifdef HAVE_CRL
|
2018-11-29 06:52:43 +09:00
|
|
|
|
"-C CRLを無効\n", /* 45 */
|
2018-10-20 13:40:01 +09:00
|
|
|
|
#endif
|
|
|
|
|
#ifdef WOLFSSL_TRUST_PEER_CERT
|
2018-11-29 06:52:43 +09:00
|
|
|
|
"-E <file> 信頼出来るピアの証明書ロードの為のパス\n", /* 46 */
|
2018-10-20 13:40:01 +09:00
|
|
|
|
#endif
|
|
|
|
|
#ifdef HAVE_WNR
|
2019-01-10 17:12:37 -08:00
|
|
|
|
"-q <file> Whitewood コンフィグファイル, 既定値\n", /* 47 */
|
2018-10-20 13:40:01 +09:00
|
|
|
|
#endif
|
2018-10-20 17:15:17 +09:00
|
|
|
|
"-H <arg> 内部テスト"
|
2018-11-29 06:52:43 +09:00
|
|
|
|
" [defCipherList, exitWithRet, verifyFail]\n", /* 48 */
|
2018-10-20 13:40:01 +09:00
|
|
|
|
#ifdef WOLFSSL_TLS13
|
2018-11-29 06:52:43 +09:00
|
|
|
|
"-J HelloRetryRequestをKEのグループ選択に使用する\n", /* 49 */
|
|
|
|
|
"-K 鍵交換にPSKを使用、(EC)DHEは使用しない\n", /* 50 */
|
|
|
|
|
"-I データ送信前に、鍵とIVを更新する\n", /* 51 */
|
2018-10-20 13:40:01 +09:00
|
|
|
|
#ifndef NO_DH
|
2018-11-29 06:52:43 +09:00
|
|
|
|
"-y FFDHE名前付きグループとの鍵共有のみ\n", /* 52 */
|
2018-10-20 13:40:01 +09:00
|
|
|
|
#endif
|
|
|
|
|
#ifdef HAVE_ECC
|
2018-11-29 06:52:43 +09:00
|
|
|
|
"-Y ECC名前付きグループとの鍵共有のみ\n", /* 53 */
|
2018-10-20 13:40:01 +09:00
|
|
|
|
#endif
|
|
|
|
|
#endif /* WOLFSSL_TLS13 */
|
|
|
|
|
#ifdef HAVE_CURVE25519
|
2018-11-29 06:52:43 +09:00
|
|
|
|
"-t X25519を鍵交換に使用する\n", /* 54 */
|
2018-10-20 13:40:01 +09:00
|
|
|
|
#endif
|
|
|
|
|
#if defined(WOLFSSL_TLS13) && defined(WOLFSSL_POST_HANDSHAKE_AUTH)
|
2018-11-29 06:52:43 +09:00
|
|
|
|
"-Q ポストハンドシェークの証明要求をサポートする\n", /* 55 */
|
2018-10-20 13:40:01 +09:00
|
|
|
|
#endif
|
|
|
|
|
#ifdef WOLFSSL_EARLY_DATA
|
2018-10-20 17:15:17 +09:00
|
|
|
|
"-0 Early data をサーバーへ送信する"
|
2018-11-29 06:52:43 +09:00
|
|
|
|
"(0-RTTハンドシェイク)\n", /* 56 */
|
2018-10-20 13:40:01 +09:00
|
|
|
|
#endif
|
|
|
|
|
#ifdef WOLFSSL_MULTICAST
|
2018-11-29 06:52:43 +09:00
|
|
|
|
"-3 <grpid> マルチキャスト, grpid < 256\n", /* 57 */
|
2018-10-20 13:40:01 +09:00
|
|
|
|
#endif
|
2018-10-20 17:15:17 +09:00
|
|
|
|
"-1 <num> 指定された言語で結果を表示します。\n"
|
2018-11-29 06:52:43 +09:00
|
|
|
|
" 0: 英語、 1: 日本語\n", /* 58 */
|
2019-02-20 11:23:00 -08:00
|
|
|
|
#if !defined(NO_DH) && !defined(HAVE_FIPS) && \
|
|
|
|
|
!defined(HAVE_SELFTEST) && !defined(WOLFSSL_OLD_PRIME_CHECK)
|
|
|
|
|
"-2 DHプライム番号チェックを無効にする\n", /* 59 */
|
|
|
|
|
#endif
|
|
|
|
|
#ifdef HAVE_SECURE_RENEGOTIATION
|
|
|
|
|
"-4 再交渉に再開を使用\n", /* 60 */
|
2019-02-21 10:28:23 -08:00
|
|
|
|
#endif
|
|
|
|
|
#ifdef HAVE_TRUSTED_CA
|
|
|
|
|
"-5 信頼できる認証局の鍵表示を使用する\n", /* 61 */
|
2019-02-20 11:23:00 -08:00
|
|
|
|
#endif
|
2018-10-20 13:40:01 +09:00
|
|
|
|
NULL,
|
|
|
|
|
},
|
2018-11-26 08:11:31 +09:00
|
|
|
|
#endif
|
2018-11-29 06:52:43 +09:00
|
|
|
|
|
2018-10-20 13:40:01 +09:00
|
|
|
|
};
|
|
|
|
|
|
2012-08-01 12:55:13 -07:00
|
|
|
|
static void Usage(void)
|
|
|
|
|
{
|
2018-10-20 13:40:01 +09:00
|
|
|
|
int msgid = 0;
|
|
|
|
|
const char** msg = client_usage_msg[lng_index];
|
|
|
|
|
|
|
|
|
|
printf("%s%s%s", "wolfSSL client ", LIBWOLFSSL_VERSION_STRING,
|
|
|
|
|
msg[msgid]);
|
2018-08-08 15:16:32 -06:00
|
|
|
|
|
|
|
|
|
/* print out so that scripts can know what the max supported key size is */
|
2018-10-20 13:40:01 +09:00
|
|
|
|
printf("%s", msg[++msgid]);
|
2018-08-15 09:50:50 -06:00
|
|
|
|
#ifdef NO_RSA
|
2018-10-20 13:40:01 +09:00
|
|
|
|
printf("%s", msg[++msgid]);
|
2018-08-15 09:50:50 -06:00
|
|
|
|
#elif defined(WOLFSSL_SP_MATH) /* case of SP math only */
|
|
|
|
|
#ifndef WOLFSSL_SP_NO_3072
|
2018-10-20 13:40:01 +09:00
|
|
|
|
printf("%s", msg[++msgid]);
|
2018-08-15 09:50:50 -06:00
|
|
|
|
#elif !defined(WOLFSSL_SP_NO_2048)
|
2018-10-20 13:40:01 +09:00
|
|
|
|
printf("%s", msg[++msgid]);
|
2018-08-15 09:50:50 -06:00
|
|
|
|
#else
|
2018-10-20 13:40:01 +09:00
|
|
|
|
printf("%s", msg[++msgid]);
|
2018-08-15 09:50:50 -06:00
|
|
|
|
#endif
|
|
|
|
|
#elif defined(USE_FAST_MATH)
|
2018-08-08 15:16:32 -06:00
|
|
|
|
printf("%d\n", FP_MAX_BITS/2);
|
|
|
|
|
#else
|
|
|
|
|
/* normal math has unlimited max size */
|
2018-10-20 13:40:01 +09:00
|
|
|
|
printf("%s", msg[++msgid]);
|
2018-08-08 15:16:32 -06:00
|
|
|
|
#endif
|
|
|
|
|
|
2018-10-20 13:40:01 +09:00
|
|
|
|
printf("%s", msg[++msgid]); /* ? */
|
|
|
|
|
printf("%s %s\n", msg[++msgid], wolfSSLIP); /* -h */
|
|
|
|
|
printf("%s %d\n", msg[++msgid], wolfSSLPort); /* -p */
|
2017-07-03 18:29:15 +10:00
|
|
|
|
#ifndef WOLFSSL_TLS13
|
2018-10-20 13:40:01 +09:00
|
|
|
|
printf("%s %d\n", msg[++msgid], CLIENT_DEFAULT_VERSION); /* -v */
|
|
|
|
|
printf("%s", msg[++msgid]); /* -V */
|
2017-07-03 18:29:15 +10:00
|
|
|
|
#else
|
2018-10-20 13:40:01 +09:00
|
|
|
|
printf("%s %d\n", msg[++msgid], CLIENT_DEFAULT_VERSION); /* -v */
|
|
|
|
|
printf("%s", msg[++msgid]); /* -V */
|
|
|
|
|
#endif
|
|
|
|
|
printf("%s", msg[++msgid]); /* -l */
|
|
|
|
|
printf("%s %s\n", msg[++msgid], cliCertFile); /* -c */
|
|
|
|
|
printf("%s %s\n", msg[++msgid], cliKeyFile); /* -k */
|
|
|
|
|
printf("%s %s\n", msg[++msgid], caCertFile); /* -A */
|
2015-05-21 10:11:21 -07:00
|
|
|
|
#ifndef NO_DH
|
2018-10-20 13:40:01 +09:00
|
|
|
|
printf("%s %d\n", msg[++msgid], DEFAULT_MIN_DHKEY_BITS);
|
2015-05-21 10:11:21 -07:00
|
|
|
|
#endif
|
2018-10-20 13:40:01 +09:00
|
|
|
|
printf("%s", msg[++msgid]); /* -b */
|
2015-10-13 15:00:53 -07:00
|
|
|
|
#ifdef HAVE_ALPN
|
2018-10-20 13:40:01 +09:00
|
|
|
|
printf("%s", msg[++msgid]); /* -L <str> */
|
|
|
|
|
#endif
|
|
|
|
|
printf("%s", msg[++msgid]); /* -B <num> */
|
|
|
|
|
printf("%s", msg[++msgid]); /* -s */
|
|
|
|
|
printf("%s", msg[++msgid]); /* -d */
|
|
|
|
|
printf("%s", msg[++msgid]); /* -D */
|
|
|
|
|
printf("%s", msg[++msgid]); /* -e */
|
|
|
|
|
printf("%s", msg[++msgid]); /* -g */
|
|
|
|
|
printf("%s", msg[++msgid]); /* -u */
|
2016-08-25 22:20:35 -07:00
|
|
|
|
#ifdef WOLFSSL_SCTP
|
2018-10-20 13:40:01 +09:00
|
|
|
|
printf("%s", msg[++msgid]); /* -G */
|
2016-08-25 22:20:35 -07:00
|
|
|
|
#endif
|
2018-10-20 13:40:01 +09:00
|
|
|
|
printf("%s", msg[++msgid]); /* -m */
|
|
|
|
|
printf("%s", msg[++msgid]); /* -N */
|
2017-11-09 11:05:28 -08:00
|
|
|
|
#ifndef NO_SESSION_CACHE
|
2018-10-20 13:40:01 +09:00
|
|
|
|
printf("%s", msg[++msgid]); /* -r */
|
2017-11-09 11:05:28 -08:00
|
|
|
|
#endif
|
2018-10-20 13:40:01 +09:00
|
|
|
|
printf("%s", msg[++msgid]); /* -w */
|
|
|
|
|
printf("%s", msg[++msgid]); /* -M */
|
2014-09-24 18:48:23 -07:00
|
|
|
|
#ifdef HAVE_SECURE_RENEGOTIATION
|
2018-10-20 13:40:01 +09:00
|
|
|
|
printf("%s", msg[++msgid]); /* -R */
|
|
|
|
|
printf("%s", msg[++msgid]); /* -i */
|
2014-09-24 18:48:23 -07:00
|
|
|
|
#endif
|
2018-10-20 13:40:01 +09:00
|
|
|
|
printf("%s", msg[++msgid]); /* -f */
|
|
|
|
|
printf("%s", msg[++msgid]); /* -x */
|
|
|
|
|
printf("%s", msg[++msgid]); /* -X */
|
|
|
|
|
printf("%s", msg[++msgid]); /* -j */
|
2013-04-08 16:01:52 -07:00
|
|
|
|
#ifdef SHOW_SIZES
|
2018-10-20 13:40:01 +09:00
|
|
|
|
printf("%s", msg[++msgid]); /* -z */
|
2013-04-08 16:01:52 -07:00
|
|
|
|
#endif
|
2013-07-23 15:42:43 -03:00
|
|
|
|
#ifdef HAVE_SNI
|
2018-10-20 13:40:01 +09:00
|
|
|
|
printf("%s", msg[++msgid]); /* -S */
|
2013-07-23 15:42:43 -03:00
|
|
|
|
#endif
|
2014-02-16 10:19:40 -03:00
|
|
|
|
#ifdef HAVE_MAX_FRAGMENT
|
2018-10-20 13:40:01 +09:00
|
|
|
|
printf("%s", msg[++msgid]); /* -F */
|
2013-07-23 15:42:43 -03:00
|
|
|
|
#endif
|
|
|
|
|
#ifdef HAVE_TRUNCATED_HMAC
|
2018-10-20 13:40:01 +09:00
|
|
|
|
printf("%s", msg[++msgid]); /* -T */
|
2013-07-23 15:42:43 -03:00
|
|
|
|
#endif
|
2016-09-01 15:17:46 -06:00
|
|
|
|
#ifdef HAVE_EXTENDED_MASTER
|
2018-10-20 13:40:01 +09:00
|
|
|
|
printf("%s", msg[++msgid]); /* -n */
|
2016-09-01 15:17:46 -06:00
|
|
|
|
#endif
|
2013-06-20 11:07:54 -07:00
|
|
|
|
#ifdef HAVE_OCSP
|
2018-10-20 13:40:01 +09:00
|
|
|
|
printf("%s", msg[++msgid]); /* -o */
|
|
|
|
|
printf("%s", msg[++msgid]); /* -O */
|
2013-06-20 11:07:54 -07:00
|
|
|
|
#endif
|
2015-12-28 19:38:04 -03:00
|
|
|
|
#if defined(HAVE_CERTIFICATE_STATUS_REQUEST) \
|
|
|
|
|
|| defined(HAVE_CERTIFICATE_STATUS_REQUEST_V2)
|
2018-10-20 13:40:01 +09:00
|
|
|
|
printf("%s", msg[++msgid]); /* -W */
|
2015-11-02 15:51:01 -03:00
|
|
|
|
#endif
|
2013-08-09 17:27:15 -07:00
|
|
|
|
#ifdef ATOMIC_USER
|
2018-10-20 13:40:01 +09:00
|
|
|
|
printf("%s", msg[++msgid]); /* -U */
|
2013-08-09 17:27:15 -07:00
|
|
|
|
#endif
|
2015-10-14 19:13:45 -07:00
|
|
|
|
#ifdef HAVE_PK_CALLBACKS
|
2018-10-20 13:40:01 +09:00
|
|
|
|
printf("%s", msg[++msgid]); /* -P */
|
2013-08-22 18:19:39 -07:00
|
|
|
|
#endif
|
2014-12-01 11:44:32 -08:00
|
|
|
|
#ifdef HAVE_ANON
|
2018-10-20 13:40:01 +09:00
|
|
|
|
printf("%s", msg[++msgid]); /* -a */
|
2014-12-01 11:44:32 -08:00
|
|
|
|
#endif
|
2015-05-07 10:02:43 -07:00
|
|
|
|
#ifdef HAVE_CRL
|
2018-10-20 13:40:01 +09:00
|
|
|
|
printf("%s", msg[++msgid]); /* -C */
|
2015-05-07 10:02:43 -07:00
|
|
|
|
#endif
|
2016-03-01 16:35:32 -07:00
|
|
|
|
#ifdef WOLFSSL_TRUST_PEER_CERT
|
2018-10-20 13:40:01 +09:00
|
|
|
|
printf("%s", msg[++msgid]); /* -E */
|
2016-03-01 16:35:32 -07:00
|
|
|
|
#endif
|
2016-05-05 15:31:25 -06:00
|
|
|
|
#ifdef HAVE_WNR
|
2018-10-20 13:40:01 +09:00
|
|
|
|
printf("%s %s\n", msg[++msgid], wnrConfig); /* -q */
|
2016-11-24 01:31:07 +10:00
|
|
|
|
#endif
|
2018-10-20 13:40:01 +09:00
|
|
|
|
printf("%s", msg[++msgid]); /* -H */
|
2016-11-24 01:31:07 +10:00
|
|
|
|
#ifdef WOLFSSL_TLS13
|
2018-10-20 13:40:01 +09:00
|
|
|
|
printf("%s", msg[++msgid]); /* -J */
|
|
|
|
|
printf("%s", msg[++msgid]); /* -K */
|
|
|
|
|
printf("%s", msg[++msgid]); /* -I */
|
2016-11-24 01:31:07 +10:00
|
|
|
|
#ifndef NO_DH
|
2018-10-20 13:40:01 +09:00
|
|
|
|
printf("%s", msg[++msgid]); /* -y */
|
2016-11-24 01:31:07 +10:00
|
|
|
|
#endif
|
|
|
|
|
#ifdef HAVE_ECC
|
2018-10-20 13:40:01 +09:00
|
|
|
|
printf("%s", msg[++msgid]); /* -Y */
|
2016-11-24 01:31:07 +10:00
|
|
|
|
#endif
|
2017-05-22 09:09:31 +10:00
|
|
|
|
#endif /* WOLFSSL_TLS13 */
|
2017-05-19 10:58:43 +10:00
|
|
|
|
#ifdef HAVE_CURVE25519
|
2018-10-20 13:40:01 +09:00
|
|
|
|
printf("%s", msg[++msgid]); /* -t */
|
2017-05-19 10:58:43 +10:00
|
|
|
|
#endif
|
2017-06-08 10:32:51 +10:00
|
|
|
|
#if defined(WOLFSSL_TLS13) && defined(WOLFSSL_POST_HANDSHAKE_AUTH)
|
2018-10-20 13:40:01 +09:00
|
|
|
|
printf("%s", msg[++msgid]); /* -Q */
|
2017-06-08 10:32:51 +10:00
|
|
|
|
#endif
|
2017-06-19 11:37:10 +10:00
|
|
|
|
#ifdef WOLFSSL_EARLY_DATA
|
2018-10-20 13:40:01 +09:00
|
|
|
|
printf("%s", msg[++msgid]); /* -0 */
|
2017-06-19 11:37:10 +10:00
|
|
|
|
#endif
|
2016-12-15 11:43:15 -08:00
|
|
|
|
#ifdef WOLFSSL_MULTICAST
|
2018-10-20 13:40:01 +09:00
|
|
|
|
printf("%s", msg[++msgid]); /* -3 */
|
2016-12-15 11:43:15 -08:00
|
|
|
|
#endif
|
2018-10-20 13:40:01 +09:00
|
|
|
|
printf("%s", msg[++msgid]); /* -1 */
|
2019-02-20 11:23:00 -08:00
|
|
|
|
#if !defined(NO_DH) && !defined(HAVE_FIPS) && \
|
|
|
|
|
!defined(HAVE_SELFTEST) && !defined(WOLFSSL_OLD_PRIME_CHECK)
|
|
|
|
|
printf("%s", msg[++msgid]); /* -2 */
|
|
|
|
|
#endif
|
|
|
|
|
#ifdef HAVE_SECURE_RENEGOTIATION
|
|
|
|
|
printf("%s", msg[++msgid]); /* -4 */
|
|
|
|
|
#endif
|
2019-02-21 10:28:23 -08:00
|
|
|
|
#ifdef HAVE_TRUSTED_CA
|
|
|
|
|
printf("%s", msg[++msgid]); /* -5 */
|
|
|
|
|
#endif
|
2012-08-01 12:55:13 -07:00
|
|
|
|
}
|
|
|
|
|
|
2015-01-05 14:48:43 -07:00
|
|
|
|
THREAD_RETURN WOLFSSL_THREAD client_test(void* args)
|
2011-02-05 11:14:47 -08:00
|
|
|
|
{
|
2015-10-14 19:13:45 -07:00
|
|
|
|
SOCKET_T sockfd = WOLFSSL_SOCKET_INVALID;
|
2011-02-05 11:14:47 -08:00
|
|
|
|
|
2017-10-20 14:56:29 -07:00
|
|
|
|
wolfSSL_method_func method = NULL;
|
2015-01-05 14:48:43 -07:00
|
|
|
|
WOLFSSL_CTX* ctx = 0;
|
|
|
|
|
WOLFSSL* ssl = 0;
|
2015-10-14 19:13:45 -07:00
|
|
|
|
|
2015-01-05 14:48:43 -07:00
|
|
|
|
WOLFSSL* sslResume = 0;
|
|
|
|
|
WOLFSSL_SESSION* session = 0;
|
2011-02-05 11:14:47 -08:00
|
|
|
|
|
2016-06-13 14:39:41 -07:00
|
|
|
|
#ifndef WOLFSSL_ALT_TEST_STRINGS
|
2015-01-05 14:48:43 -07:00
|
|
|
|
char msg[32] = "hello wolfssl!"; /* GET may make bigger */
|
2016-06-13 14:39:41 -07:00
|
|
|
|
char resumeMsg[32] = "resuming wolfssl!";
|
|
|
|
|
#else
|
|
|
|
|
char msg[32] = "hello wolfssl!\n";
|
|
|
|
|
char resumeMsg[32] = "resuming wolfssl!\n";
|
|
|
|
|
#endif
|
|
|
|
|
|
2019-02-22 17:14:19 +10:00
|
|
|
|
char reply[128];
|
2016-06-29 11:11:25 -07:00
|
|
|
|
int msgSz = (int)XSTRLEN(msg);
|
|
|
|
|
int resumeSz = (int)XSTRLEN(resumeMsg);
|
2011-02-05 11:14:47 -08:00
|
|
|
|
|
2015-02-25 13:34:29 -08:00
|
|
|
|
word16 port = wolfSSLPort;
|
|
|
|
|
char* host = (char*)wolfSSLIP;
|
2015-09-24 12:13:01 -07:00
|
|
|
|
const char* domain = "localhost"; /* can't default to www.wolfssl.com
|
|
|
|
|
because can't tell if we're really
|
|
|
|
|
going there to detect old chacha-poly
|
|
|
|
|
*/
|
2012-08-01 12:55:13 -07:00
|
|
|
|
int ch;
|
2013-03-07 22:52:51 -08:00
|
|
|
|
int version = CLIENT_INVALID_VERSION;
|
2012-08-01 12:55:13 -07:00
|
|
|
|
int usePsk = 0;
|
2014-12-01 11:44:32 -08:00
|
|
|
|
int useAnon = 0;
|
2012-08-01 12:55:13 -07:00
|
|
|
|
int sendGET = 0;
|
|
|
|
|
int benchmark = 0;
|
2018-04-09 13:53:05 +10:00
|
|
|
|
int block = TEST_BUFFER_SIZE;
|
2015-10-14 19:13:45 -07:00
|
|
|
|
int throughput = 0;
|
2012-08-02 11:54:49 -07:00
|
|
|
|
int doDTLS = 0;
|
2016-08-25 22:20:35 -07:00
|
|
|
|
int dtlsUDP = 0;
|
|
|
|
|
int dtlsSCTP = 0;
|
2016-12-15 11:43:15 -08:00
|
|
|
|
int doMcast = 0;
|
2012-08-10 10:15:37 -07:00
|
|
|
|
int matchName = 0;
|
2012-08-01 12:55:13 -07:00
|
|
|
|
int doPeerCheck = 1;
|
2012-10-17 13:13:58 -07:00
|
|
|
|
int nonBlocking = 0;
|
|
|
|
|
int resumeSession = 0;
|
2015-05-07 10:02:43 -07:00
|
|
|
|
int wc_shutdown = 0;
|
|
|
|
|
int disableCRL = 0;
|
2015-05-07 12:50:27 -07:00
|
|
|
|
int externalTest = 0;
|
2015-02-16 14:23:33 -08:00
|
|
|
|
int ret;
|
2016-03-04 10:05:22 -08:00
|
|
|
|
int err = 0;
|
2014-09-29 15:32:41 -07:00
|
|
|
|
int scr = 0; /* allow secure renegotiation */
|
|
|
|
|
int forceScr = 0; /* force client initiaed scr */
|
2019-02-19 15:04:22 -08:00
|
|
|
|
int resumeScr = 0; /* use resumption for renegotiation */
|
2018-04-27 14:43:04 +10:00
|
|
|
|
#ifndef WOLFSSL_NO_CLIENT_AUTH
|
2013-04-19 13:10:19 -07:00
|
|
|
|
int useClientCert = 1;
|
2018-04-27 14:43:04 +10:00
|
|
|
|
#else
|
|
|
|
|
int useClientCert = 0;
|
|
|
|
|
#endif
|
2013-04-19 13:10:19 -07:00
|
|
|
|
int fewerPackets = 0;
|
2013-08-09 17:27:15 -07:00
|
|
|
|
int atomicUser = 0;
|
2018-03-21 11:27:08 -07:00
|
|
|
|
#ifdef HAVE_PK_CALLBACKS
|
2013-08-22 18:19:39 -07:00
|
|
|
|
int pkCallbacks = 0;
|
2018-03-21 11:27:08 -07:00
|
|
|
|
PkCbInfo pkCbInfo;
|
|
|
|
|
#endif
|
2014-07-02 12:07:25 -07:00
|
|
|
|
int overrideDateErrors = 0;
|
2015-05-21 10:11:21 -07:00
|
|
|
|
int minDhKeyBits = DEFAULT_MIN_DHKEY_BITS;
|
2015-10-13 15:00:53 -07:00
|
|
|
|
char* alpnList = NULL;
|
|
|
|
|
unsigned char alpn_opt = 0;
|
2012-08-01 12:55:13 -07:00
|
|
|
|
char* cipherList = NULL;
|
2017-04-05 11:21:11 -07:00
|
|
|
|
int useDefCipherList = 0;
|
2017-04-06 15:54:59 -07:00
|
|
|
|
const char* verifyCert = caCertFile;
|
|
|
|
|
const char* ourCert = cliCertFile;
|
|
|
|
|
const char* ourKey = cliKeyFile;
|
2012-08-01 12:55:13 -07:00
|
|
|
|
|
2016-04-22 13:46:54 -06:00
|
|
|
|
int doSTARTTLS = 0;
|
|
|
|
|
char* starttlsProt = NULL;
|
2017-05-11 12:23:17 -07:00
|
|
|
|
int useVerifyCb = 0;
|
2018-09-21 09:27:48 -07:00
|
|
|
|
int useSupCurve = 0;
|
2016-04-22 13:46:54 -06:00
|
|
|
|
|
2016-03-01 16:35:32 -07:00
|
|
|
|
#ifdef WOLFSSL_TRUST_PEER_CERT
|
|
|
|
|
const char* trustCert = NULL;
|
|
|
|
|
#endif
|
|
|
|
|
|
2013-05-21 14:37:50 -07:00
|
|
|
|
#ifdef HAVE_SNI
|
|
|
|
|
char* sniHostName = NULL;
|
|
|
|
|
#endif
|
2018-09-28 09:05:59 -07:00
|
|
|
|
#ifdef HAVE_TRUSTED_CA
|
|
|
|
|
int trustedCaKeyId = 0;
|
|
|
|
|
#endif
|
2013-07-23 15:42:43 -03:00
|
|
|
|
#ifdef HAVE_MAX_FRAGMENT
|
|
|
|
|
byte maxFragment = 0;
|
|
|
|
|
#endif
|
|
|
|
|
#ifdef HAVE_TRUNCATED_HMAC
|
2015-11-02 15:51:01 -03:00
|
|
|
|
byte truncatedHMAC = 0;
|
|
|
|
|
#endif
|
2015-12-28 19:38:04 -03:00
|
|
|
|
#if defined(HAVE_CERTIFICATE_STATUS_REQUEST) \
|
|
|
|
|
|| defined(HAVE_CERTIFICATE_STATUS_REQUEST_V2)
|
2015-11-02 15:51:01 -03:00
|
|
|
|
byte statusRequest = 0;
|
2013-07-23 15:42:43 -03:00
|
|
|
|
#endif
|
2016-09-01 15:17:46 -06:00
|
|
|
|
#ifdef HAVE_EXTENDED_MASTER
|
2016-09-09 23:16:52 -07:00
|
|
|
|
byte disableExtMasterSecret = 0;
|
2016-09-01 15:17:46 -06:00
|
|
|
|
#endif
|
2016-11-24 01:31:07 +10:00
|
|
|
|
int helloRetry = 0;
|
|
|
|
|
int onlyKeyShare = 0;
|
2018-04-09 13:53:05 +10:00
|
|
|
|
#ifdef WOLFSSL_TLS13
|
2016-11-24 01:31:07 +10:00
|
|
|
|
int noPskDheKe = 0;
|
2017-06-08 10:32:51 +10:00
|
|
|
|
int postHandAuth = 0;
|
2016-11-24 01:31:07 +10:00
|
|
|
|
#endif
|
|
|
|
|
int updateKeysIVs = 0;
|
2017-06-19 11:37:10 +10:00
|
|
|
|
int earlyData = 0;
|
2017-01-25 14:05:22 -08:00
|
|
|
|
#ifdef WOLFSSL_MULTICAST
|
2016-12-15 11:43:15 -08:00
|
|
|
|
byte mcastID = 0;
|
2017-01-25 14:05:22 -08:00
|
|
|
|
#endif
|
2018-12-03 13:53:44 -08:00
|
|
|
|
#if !defined(NO_DH) && !defined(HAVE_FIPS) && \
|
|
|
|
|
!defined(HAVE_SELFTEST) && !defined(WOLFSSL_OLD_PRIME_CHECK)
|
|
|
|
|
int doDhKeyCheck = 1;
|
|
|
|
|
#endif
|
2013-07-23 15:42:43 -03:00
|
|
|
|
|
2013-06-20 11:07:54 -07:00
|
|
|
|
#ifdef HAVE_OCSP
|
|
|
|
|
int useOcsp = 0;
|
|
|
|
|
char* ocspUrl = NULL;
|
|
|
|
|
#endif
|
2017-05-19 10:58:43 +10:00
|
|
|
|
int useX25519 = 0;
|
2018-05-03 10:02:59 -07:00
|
|
|
|
int exitWithRet = 0;
|
2018-10-09 12:54:41 -07:00
|
|
|
|
int loadCertKeyIntoSSLObj = 0;
|
2013-06-20 11:07:54 -07:00
|
|
|
|
|
2016-05-05 15:31:25 -06:00
|
|
|
|
#ifdef HAVE_WNR
|
|
|
|
|
const char* wnrConfigFile = wnrConfig;
|
|
|
|
|
#endif
|
Intel QuickAssist (QAT) support and async enhancements/fixes:
* Adds ./configure "--with-intelqa=../QAT1.6”, port files, memory management and README.md (see wolfcrypt/src/port/intel/).
* Added Intel QAT support for RSA public/private (CRT/non-CRT), AES CBC/GCM, ECDH/ECDSA, DH, DES3, SHA, SHA224, SHA256, SHA384, SHA512, MD5 and HMAC.
* wolfSSL async enabled all client and server: PKI, Encrypt/Decrypt, Hashing/HMAC and Certificate Sign/Verify.
* wolfSSL async support in functions: Encrypt, Decrypt, VerifyMAC, BuildMessage, ConfirmSignature, DoCertificate, ParseCertRelative, and MakeSignature.
* wolfCrypt test and benchmark async support added for all HW acceleration.
* wolfCrypt benchmark multi-threading support.
* Added QuickAssist memory overrides for XMALLOC, XFREE and XREALLOC. XREALLOC determines if existing pointer needs reallocated for NUMA.
* Refactor to make sure “heap” is available for async dev init.
* Added async support for all examples for connect, accept, read and write.
* Added new WC_BIGINT (in wolfmath.c) for async hardware support.
* Added async simulator tests for DES3 CBC, AES CBC/GCM.
* Added QAT standalone build for unit testing.
* Added int return code to SHA and MD5 functions.
* Refactor of the async stack variable handling, so async operations have generic args buffer area and cleanup function pointer.
* Combined duplicate code for async push/pop handling.
* Refactor internal.c to add AllocKey / FreeKey.
* Refactor of hash init/free in TLS to use InitHashes and FreeHashes.
* Refactor of the async event->context to use WOLF_EVENT_TYPE_ASYNC_WOLFSSL for WOLFSSL* and WOLF_EVENT_TYPE_ASYNC_WOLFCRYPT for WC_ASYNC_DEV*.
* Suppress error message for WC_PENDING_E.
* Implemented "wolfSSL_EVP_MD_CTX_init" to do memset.
* Cleanup of the openssl compat CTX sizes when async is enabled.
* Cleanup of AES, DES3, DH, SHA, MD5, DES3, DH, HMAC, MD5 for consistency and readability.
* Cleanup of the OPAQUE_LEN.
* Cleanup to use ENCRYPT_LEN instead of sizeof(ssl->arrays.preMasterSecret).
* Changed ssl->arrays.preMasterSecret to use XMALLOC (accelerates HW operations)
* Reduce verbosity with debug enabled for "GetMyVersion", "wolfSSL Using RSA OAEP padding" and "wolfSSL Using RSA PKCSV15 padding".
* Updated RSA un-padding error message so its different than one above it for better debugging.
* Added QAT async enables for each algorithm.
* Refactor of the async init to use _ex.
* Added WC_ASYNC_THRESH_NONE to allow bypass of the async thresholds for testing.
* Reformatted the benchmark results:
PKI: "RSA 2048 private HW 18522 ops took 1.003 sec, avg 0.054 ms, 18467.763 ops/sec"
Crypto/Hashing: SHA-256 SW 350 megs took 1.009 seconds, 346.946 MB/s Cycles per byte = 9.87
* Added min execution time for all benchmarks.
* Moved wc_*GetHash and wc_*RestorePos to appropriate files so use of isCopy flag is local.
* Fix for ECC sign status sometimes being invalid due to uninitialized ECC digest in benchmark.
* Added new DECLARE_VAR/FREE_VAR and DECLARE_ARRAY/FREE_ARRAY macros for helping setup test/benchmark variables to accelerate async.
* Added NO_SW_BENCH option to only run HW bench.
* Added support for PRNG to use hardware SHA256 if _wc devId provided.
* Fix to prevent curve tests from running against wrong curve sizes. Changed wc_ecc_set_curve to match on exact size.
* Added the wc_*GetHash calls to the wolfCrypt tests.
* Added async hardware start/stop to wolfSSL init/cleanup.
* Refactor to add wc_*Copy for hashing context (for async), which replaces wc_*RestorePos.
* Fixes for building with TI hashing (including: SHA224, missing new API’s and building with dummy build for non hw testing). Note: We need to add build test for this `./configure CFLAGS="-DWOLFSSL_TI_HASH -DTI_DUMMY_BUILD”`.
* Added arg checks on wc_*GetHash and wc_*Copy.
* Cleanup of the BuildMD5, BuildSHA, BuildMD5_CertVerify and BuildSHA_CertVerify functions.
* Added new ./configure --enable-asyncthreads, to allow enable/disable of the async threading support. If --enable-asynccrypt set this will be enabled by default if pthread is supported. Allows multi-threaded benchmarks with async simulator.
* Added checks for all hashing to verify valid ->buffLen.
* Fix for SHA512 scan-build warning about un-initialized “W_X”.
* Fix for valgrind un-initialized use of buffer in AllocDer (der->buffer) and BuildTlsFinished handshake_hash.
* Refactor of the benchmarking to use common function for start, check and finish of the stats.
* Fixed issue with ECC cache loading in multi-threading.
* Fix bug with AESNI not aligned code that assumes XMALLOC is 16-byte aligned.
* Added new WC_ASYNC_NO_… options to allow disabling of individual async algorithms. New defines are: WC_ASYNC_NO_CRYPT, WC_ASYNC_NO_PKI and WC_ASYNC_NO_HASH. Additionally each algorithm has a WC_ASYNC_NO_[ALGO] define.
* Added “wolfSSL_GetAllocators” API and fixed the wolfCrypt memcb_test so it restores callback pointers after test is complete (fixes issue with using custom allocators and test breaking it).
2017-04-07 15:46:32 -07:00
|
|
|
|
char buffer[WOLFSSL_MAX_ERROR_SZ];
|
2016-05-05 15:31:25 -06:00
|
|
|
|
|
2011-02-05 11:14:47 -08:00
|
|
|
|
int argc = ((func_args*)args)->argc;
|
|
|
|
|
char** argv = ((func_args*)args)->argv;
|
|
|
|
|
|
2017-10-23 10:50:19 -07:00
|
|
|
|
|
|
|
|
|
#ifdef WOLFSSL_STATIC_MEMORY
|
|
|
|
|
#if (defined(HAVE_ECC) && !defined(ALT_ECC_SIZE)) \
|
|
|
|
|
|| defined(SESSION_CERTS)
|
|
|
|
|
/* big enough to handle most cases including session certs */
|
2017-10-26 08:06:08 -07:00
|
|
|
|
byte memory[320000];
|
2017-10-23 10:50:19 -07:00
|
|
|
|
#else
|
|
|
|
|
byte memory[80000];
|
|
|
|
|
#endif
|
|
|
|
|
byte memoryIO[34500]; /* max for IO buffer (TLS packet can be 16k) */
|
|
|
|
|
WOLFSSL_MEM_CONN_STATS ssl_stats;
|
|
|
|
|
#ifdef DEBUG_WOLFSSL
|
|
|
|
|
WOLFSSL_MEM_STATS mem_stats;
|
|
|
|
|
#endif
|
|
|
|
|
#endif
|
|
|
|
|
|
2011-02-05 11:14:47 -08:00
|
|
|
|
((func_args*)args)->return_code = -1; /* error state */
|
|
|
|
|
|
2013-03-07 18:20:29 -08:00
|
|
|
|
#ifdef NO_RSA
|
2018-07-23 10:20:18 +10:00
|
|
|
|
#ifdef HAVE_ECC
|
|
|
|
|
verifyCert = (char*)caEccCertFile;
|
|
|
|
|
ourCert = (char*)cliEccCertFile;
|
|
|
|
|
ourKey = (char*)cliEccKeyFile;
|
|
|
|
|
#elif defined(HAVE_ED25519)
|
|
|
|
|
verifyCert = (char*)caEdCertFile;
|
|
|
|
|
ourCert = (char*)cliEdCertFile;
|
|
|
|
|
ourKey = (char*)cliEdKeyFile;
|
|
|
|
|
#endif
|
2013-03-07 18:20:29 -08:00
|
|
|
|
#endif
|
2013-03-11 16:07:46 -07:00
|
|
|
|
(void)resumeSz;
|
|
|
|
|
(void)session;
|
|
|
|
|
(void)sslResume;
|
2013-08-09 17:27:15 -07:00
|
|
|
|
(void)atomicUser;
|
2014-09-24 18:48:23 -07:00
|
|
|
|
(void)scr;
|
2014-09-29 15:32:41 -07:00
|
|
|
|
(void)forceScr;
|
2019-02-19 15:04:22 -08:00
|
|
|
|
(void)resumeScr;
|
2015-03-27 19:20:31 -07:00
|
|
|
|
(void)ourKey;
|
|
|
|
|
(void)ourCert;
|
|
|
|
|
(void)verifyCert;
|
|
|
|
|
(void)useClientCert;
|
|
|
|
|
(void)overrideDateErrors;
|
2015-05-07 10:02:43 -07:00
|
|
|
|
(void)disableCRL;
|
2015-05-21 10:11:21 -07:00
|
|
|
|
(void)minDhKeyBits;
|
2015-10-13 15:00:53 -07:00
|
|
|
|
(void)alpnList;
|
|
|
|
|
(void)alpn_opt;
|
2016-11-24 01:31:07 +10:00
|
|
|
|
(void)updateKeysIVs;
|
2019-01-24 14:30:06 +10:00
|
|
|
|
(void)earlyData;
|
2017-05-31 11:44:43 +10:00
|
|
|
|
(void)useX25519;
|
2017-06-29 09:00:44 +10:00
|
|
|
|
(void)helloRetry;
|
2018-04-09 13:53:05 +10:00
|
|
|
|
(void)onlyKeyShare;
|
2018-09-21 09:27:48 -07:00
|
|
|
|
(void)useSupCurve;
|
2018-10-09 12:54:41 -07:00
|
|
|
|
(void)loadCertKeyIntoSSLObj;
|
2013-03-07 18:20:29 -08:00
|
|
|
|
|
2013-06-03 14:56:37 -07:00
|
|
|
|
StackTrap();
|
|
|
|
|
|
2015-10-29 13:39:02 -06:00
|
|
|
|
#ifndef WOLFSSL_VXWORKS
|
2017-06-08 10:32:51 +10:00
|
|
|
|
/* Not used: All used */
|
2018-10-20 13:40:01 +09:00
|
|
|
|
while ((ch = mygetopt(argc, argv, "?:"
|
2017-05-19 10:58:43 +10:00
|
|
|
|
"ab:c:defgh:ijk:l:mnop:q:rstuv:wxyz"
|
2017-10-19 16:17:51 -07:00
|
|
|
|
"A:B:CDE:F:GH:IJKL:M:NO:PQRS:TUVW:XYZ:"
|
2019-03-13 22:59:50 -07:00
|
|
|
|
"01:23:45")) != -1) {
|
2012-08-01 12:55:13 -07:00
|
|
|
|
switch (ch) {
|
|
|
|
|
case '?' :
|
2018-10-20 13:40:01 +09:00
|
|
|
|
if(myoptarg!=NULL) {
|
|
|
|
|
lng_index = atoi(myoptarg);
|
|
|
|
|
if(lng_index<0||lng_index>1){
|
|
|
|
|
lng_index = 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
2012-08-01 12:55:13 -07:00
|
|
|
|
Usage();
|
2018-07-27 10:16:14 -07:00
|
|
|
|
XEXIT_T(EXIT_SUCCESS);
|
2012-08-01 12:55:13 -07:00
|
|
|
|
|
|
|
|
|
case 'g' :
|
|
|
|
|
sendGET = 1;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 'd' :
|
|
|
|
|
doPeerCheck = 0;
|
|
|
|
|
break;
|
|
|
|
|
|
2015-10-02 16:25:17 -07:00
|
|
|
|
case 'e' :
|
|
|
|
|
ShowCiphers();
|
2018-07-27 10:16:14 -07:00
|
|
|
|
XEXIT_T(EXIT_SUCCESS);
|
2015-10-02 16:25:17 -07:00
|
|
|
|
|
2014-07-02 12:07:25 -07:00
|
|
|
|
case 'D' :
|
|
|
|
|
overrideDateErrors = 1;
|
|
|
|
|
break;
|
|
|
|
|
|
2015-05-07 10:02:43 -07:00
|
|
|
|
case 'C' :
|
2015-06-10 15:24:24 -07:00
|
|
|
|
#ifdef HAVE_CRL
|
|
|
|
|
disableCRL = 1;
|
|
|
|
|
#endif
|
2015-05-07 10:02:43 -07:00
|
|
|
|
break;
|
|
|
|
|
|
2012-08-02 11:54:49 -07:00
|
|
|
|
case 'u' :
|
2016-08-25 22:20:35 -07:00
|
|
|
|
doDTLS = 1;
|
|
|
|
|
dtlsUDP = 1;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 'G' :
|
|
|
|
|
#ifdef WOLFSSL_SCTP
|
|
|
|
|
doDTLS = 1;
|
|
|
|
|
dtlsSCTP = 1;
|
|
|
|
|
#endif
|
2012-08-02 11:54:49 -07:00
|
|
|
|
break;
|
|
|
|
|
|
2012-08-01 12:55:13 -07:00
|
|
|
|
case 's' :
|
|
|
|
|
usePsk = 1;
|
|
|
|
|
break;
|
|
|
|
|
|
2016-03-01 16:35:32 -07:00
|
|
|
|
#ifdef WOLFSSL_TRUST_PEER_CERT
|
|
|
|
|
case 'E' :
|
|
|
|
|
trustCert = myoptarg;
|
|
|
|
|
break;
|
|
|
|
|
#endif
|
|
|
|
|
|
2012-08-10 10:15:37 -07:00
|
|
|
|
case 'm' :
|
|
|
|
|
matchName = 1;
|
|
|
|
|
break;
|
|
|
|
|
|
2013-04-19 13:10:19 -07:00
|
|
|
|
case 'x' :
|
|
|
|
|
useClientCert = 0;
|
|
|
|
|
break;
|
|
|
|
|
|
2015-05-07 12:50:27 -07:00
|
|
|
|
case 'X' :
|
|
|
|
|
externalTest = 1;
|
|
|
|
|
break;
|
|
|
|
|
|
2013-04-19 13:10:19 -07:00
|
|
|
|
case 'f' :
|
|
|
|
|
fewerPackets = 1;
|
|
|
|
|
break;
|
|
|
|
|
|
2013-08-09 17:27:15 -07:00
|
|
|
|
case 'U' :
|
|
|
|
|
#ifdef ATOMIC_USER
|
|
|
|
|
atomicUser = 1;
|
|
|
|
|
#endif
|
|
|
|
|
break;
|
|
|
|
|
|
2013-08-22 18:19:39 -07:00
|
|
|
|
case 'P' :
|
2015-10-14 19:13:45 -07:00
|
|
|
|
#ifdef HAVE_PK_CALLBACKS
|
2013-08-22 18:19:39 -07:00
|
|
|
|
pkCallbacks = 1;
|
|
|
|
|
#endif
|
|
|
|
|
break;
|
|
|
|
|
|
2012-08-01 12:55:13 -07:00
|
|
|
|
case 'h' :
|
2012-08-01 17:33:49 -07:00
|
|
|
|
host = myoptarg;
|
|
|
|
|
domain = myoptarg;
|
2012-08-01 12:55:13 -07:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 'p' :
|
2014-03-03 16:46:48 -08:00
|
|
|
|
port = (word16)atoi(myoptarg);
|
2013-03-26 22:00:39 -07:00
|
|
|
|
#if !defined(NO_MAIN_DRIVER) || defined(USE_WINDOWS_API)
|
|
|
|
|
if (port == 0)
|
|
|
|
|
err_sys("port number cannot be 0");
|
|
|
|
|
#endif
|
2012-08-01 12:55:13 -07:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 'v' :
|
2018-02-22 11:05:58 +10:00
|
|
|
|
if (myoptarg[0] == 'd') {
|
|
|
|
|
version = CLIENT_DOWNGRADE_VERSION;
|
|
|
|
|
break;
|
|
|
|
|
}
|
2018-10-04 14:48:53 -07:00
|
|
|
|
#if defined(OPENSSL_EXTRA) || defined(WOLFSSL_EITHER_SIDE)
|
|
|
|
|
else if (myoptarg[0] == 'e') {
|
|
|
|
|
version = EITHER_DOWNGRADE_VERSION;
|
2018-12-27 11:08:30 -08:00
|
|
|
|
#ifndef NO_CERTS
|
2018-10-09 12:54:41 -07:00
|
|
|
|
loadCertKeyIntoSSLObj = 1;
|
2018-12-27 11:08:30 -08:00
|
|
|
|
#endif
|
2018-10-04 14:48:53 -07:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
#endif
|
2012-08-01 17:33:49 -07:00
|
|
|
|
version = atoi(myoptarg);
|
2016-11-24 01:31:07 +10:00
|
|
|
|
if (version < 0 || version > 4) {
|
2012-08-01 12:55:13 -07:00
|
|
|
|
Usage();
|
2018-07-27 10:16:14 -07:00
|
|
|
|
XEXIT_T(MY_EX_USAGE);
|
2012-08-01 12:55:13 -07:00
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
2015-11-02 13:26:46 -08:00
|
|
|
|
case 'V' :
|
|
|
|
|
ShowVersions();
|
2018-07-27 10:16:14 -07:00
|
|
|
|
XEXIT_T(EXIT_SUCCESS);
|
2015-11-02 13:26:46 -08:00
|
|
|
|
|
2012-08-01 12:55:13 -07:00
|
|
|
|
case 'l' :
|
2012-08-01 17:33:49 -07:00
|
|
|
|
cipherList = myoptarg;
|
2012-08-01 12:55:13 -07:00
|
|
|
|
break;
|
|
|
|
|
|
2017-04-05 11:21:11 -07:00
|
|
|
|
case 'H' :
|
2017-10-19 16:17:51 -07:00
|
|
|
|
if (XSTRNCMP(myoptarg, "defCipherList", 13) == 0) {
|
|
|
|
|
printf("Using default cipher list for testing\n");
|
|
|
|
|
useDefCipherList = 1;
|
|
|
|
|
}
|
2018-08-29 10:55:12 -07:00
|
|
|
|
else if (XSTRNCMP(myoptarg, "exitWithRet", 11) == 0) {
|
2018-05-03 09:40:51 -07:00
|
|
|
|
printf("Skip exit() for testing\n");
|
2018-05-03 10:02:59 -07:00
|
|
|
|
exitWithRet = 1;
|
2017-10-19 16:17:51 -07:00
|
|
|
|
}
|
2018-08-29 10:55:12 -07:00
|
|
|
|
else if (XSTRNCMP(myoptarg, "verifyFail", 10) == 0) {
|
|
|
|
|
printf("Verify should fail\n");
|
|
|
|
|
myVerifyFail = 1;
|
|
|
|
|
}
|
2018-09-21 09:27:48 -07:00
|
|
|
|
else if (XSTRNCMP(myoptarg, "useSupCurve", 11) == 0) {
|
2019-03-11 09:57:04 -06:00
|
|
|
|
printf("Attempting to test use supported curve\n");
|
2019-03-01 16:12:08 -08:00
|
|
|
|
#if defined(HAVE_ECC) && defined(HAVE_SUPPORTED_CURVES)
|
2018-09-21 09:27:48 -07:00
|
|
|
|
useSupCurve = 1;
|
2019-03-11 09:57:04 -06:00
|
|
|
|
#else
|
|
|
|
|
printf("Supported curves not compiled in!\n");
|
2019-03-01 16:12:08 -08:00
|
|
|
|
#endif
|
2018-09-21 09:27:48 -07:00
|
|
|
|
}
|
2018-10-09 12:54:41 -07:00
|
|
|
|
else if (XSTRNCMP(myoptarg, "loadSSL", 7) == 0) {
|
|
|
|
|
printf("Load cert/key into wolfSSL object\n");
|
2018-12-27 11:08:30 -08:00
|
|
|
|
#ifndef NO_CERTS
|
2018-10-09 12:54:41 -07:00
|
|
|
|
loadCertKeyIntoSSLObj = 1;
|
2019-03-11 09:57:04 -06:00
|
|
|
|
#else
|
|
|
|
|
printf("Certs turned off with NO_CERTS!\n");
|
2018-12-27 11:08:30 -08:00
|
|
|
|
#endif
|
2018-10-09 12:54:41 -07:00
|
|
|
|
}
|
2017-10-19 16:17:51 -07:00
|
|
|
|
else {
|
|
|
|
|
Usage();
|
2018-07-27 10:16:14 -07:00
|
|
|
|
XEXIT_T(MY_EX_USAGE);
|
2017-10-19 16:17:51 -07:00
|
|
|
|
}
|
2017-04-05 11:21:11 -07:00
|
|
|
|
break;
|
|
|
|
|
|
2012-08-01 12:55:13 -07:00
|
|
|
|
case 'A' :
|
2012-08-01 17:33:49 -07:00
|
|
|
|
verifyCert = myoptarg;
|
2012-08-01 12:55:13 -07:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 'c' :
|
2012-08-01 17:33:49 -07:00
|
|
|
|
ourCert = myoptarg;
|
2012-08-01 12:55:13 -07:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 'k' :
|
2012-08-01 17:33:49 -07:00
|
|
|
|
ourKey = myoptarg;
|
2012-08-01 12:55:13 -07:00
|
|
|
|
break;
|
|
|
|
|
|
2015-05-21 10:11:21 -07:00
|
|
|
|
case 'Z' :
|
|
|
|
|
#ifndef NO_DH
|
|
|
|
|
minDhKeyBits = atoi(myoptarg);
|
|
|
|
|
if (minDhKeyBits <= 0 || minDhKeyBits > 16000) {
|
|
|
|
|
Usage();
|
2018-07-27 10:16:14 -07:00
|
|
|
|
XEXIT_T(MY_EX_USAGE);
|
2015-05-21 10:11:21 -07:00
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
break;
|
|
|
|
|
|
2012-08-01 12:55:13 -07:00
|
|
|
|
case 'b' :
|
2012-08-01 17:33:49 -07:00
|
|
|
|
benchmark = atoi(myoptarg);
|
2012-08-01 12:55:13 -07:00
|
|
|
|
if (benchmark < 0 || benchmark > 1000000) {
|
|
|
|
|
Usage();
|
2018-07-27 10:16:14 -07:00
|
|
|
|
XEXIT_T(MY_EX_USAGE);
|
2012-08-01 12:55:13 -07:00
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
2015-10-14 19:13:45 -07:00
|
|
|
|
case 'B' :
|
|
|
|
|
throughput = atoi(myoptarg);
|
2018-04-09 13:53:05 +10:00
|
|
|
|
for (; *myoptarg != '\0'; myoptarg++) {
|
|
|
|
|
if (*myoptarg == ',') {
|
|
|
|
|
block = atoi(myoptarg + 1);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (throughput <= 0 || block <= 0) {
|
2015-10-14 19:13:45 -07:00
|
|
|
|
Usage();
|
2018-07-27 10:16:14 -07:00
|
|
|
|
XEXIT_T(MY_EX_USAGE);
|
2015-10-14 19:13:45 -07:00
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
2012-10-17 13:13:58 -07:00
|
|
|
|
case 'N' :
|
|
|
|
|
nonBlocking = 1;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 'r' :
|
|
|
|
|
resumeSession = 1;
|
|
|
|
|
break;
|
|
|
|
|
|
2015-01-30 08:41:34 -07:00
|
|
|
|
case 'w' :
|
2015-02-18 08:00:25 -07:00
|
|
|
|
wc_shutdown = 1;
|
2015-01-30 08:41:34 -07:00
|
|
|
|
break;
|
|
|
|
|
|
2014-09-24 18:48:23 -07:00
|
|
|
|
case 'R' :
|
|
|
|
|
#ifdef HAVE_SECURE_RENEGOTIATION
|
|
|
|
|
scr = 1;
|
|
|
|
|
#endif
|
|
|
|
|
break;
|
|
|
|
|
|
2014-09-29 15:32:41 -07:00
|
|
|
|
case 'i' :
|
|
|
|
|
#ifdef HAVE_SECURE_RENEGOTIATION
|
|
|
|
|
scr = 1;
|
|
|
|
|
forceScr = 1;
|
|
|
|
|
#endif
|
|
|
|
|
break;
|
|
|
|
|
|
2013-04-08 16:01:52 -07:00
|
|
|
|
case 'z' :
|
2015-01-05 14:48:43 -07:00
|
|
|
|
#ifndef WOLFSSL_LEANPSK
|
|
|
|
|
wolfSSL_GetObjectSize();
|
2013-04-08 16:01:52 -07:00
|
|
|
|
#endif
|
|
|
|
|
break;
|
|
|
|
|
|
2013-05-21 14:37:50 -07:00
|
|
|
|
case 'S' :
|
2018-08-30 14:44:49 -06:00
|
|
|
|
if (XSTRNCMP(myoptarg, "check", 5) == 0) {
|
|
|
|
|
#ifdef HAVE_SNI
|
|
|
|
|
printf("SNI is: ON\n");
|
|
|
|
|
#else
|
|
|
|
|
printf("SNI is: OFF\n");
|
|
|
|
|
#endif
|
|
|
|
|
XEXIT_T(EXIT_SUCCESS);
|
|
|
|
|
}
|
2013-05-21 14:37:50 -07:00
|
|
|
|
#ifdef HAVE_SNI
|
|
|
|
|
sniHostName = myoptarg;
|
|
|
|
|
#endif
|
|
|
|
|
break;
|
|
|
|
|
|
2015-10-13 14:13:12 -07:00
|
|
|
|
case 'F' :
|
2013-07-23 15:42:43 -03:00
|
|
|
|
#ifdef HAVE_MAX_FRAGMENT
|
|
|
|
|
maxFragment = atoi(myoptarg);
|
2018-10-15 17:06:21 -07:00
|
|
|
|
if (maxFragment < WOLFSSL_MFL_MIN ||
|
|
|
|
|
maxFragment > WOLFSSL_MFL_MAX) {
|
2013-07-23 15:42:43 -03:00
|
|
|
|
Usage();
|
2018-07-27 10:16:14 -07:00
|
|
|
|
XEXIT_T(MY_EX_USAGE);
|
2013-07-23 15:42:43 -03:00
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 'T' :
|
|
|
|
|
#ifdef HAVE_TRUNCATED_HMAC
|
|
|
|
|
truncatedHMAC = 1;
|
|
|
|
|
#endif
|
|
|
|
|
break;
|
|
|
|
|
|
2016-09-01 15:17:46 -06:00
|
|
|
|
case 'n' :
|
|
|
|
|
#ifdef HAVE_EXTENDED_MASTER
|
2016-09-09 23:16:52 -07:00
|
|
|
|
disableExtMasterSecret = 1;
|
2016-09-01 15:17:46 -06:00
|
|
|
|
#endif
|
|
|
|
|
break;
|
|
|
|
|
|
2015-11-02 15:51:01 -03:00
|
|
|
|
case 'W' :
|
2015-12-28 19:38:04 -03:00
|
|
|
|
#if defined(HAVE_CERTIFICATE_STATUS_REQUEST) \
|
|
|
|
|
|| defined(HAVE_CERTIFICATE_STATUS_REQUEST_V2)
|
|
|
|
|
statusRequest = atoi(myoptarg);
|
2018-08-02 16:25:38 -07:00
|
|
|
|
if (statusRequest > OCSP_STAPLING_OPT_MAX) {
|
|
|
|
|
Usage();
|
|
|
|
|
XEXIT_T(MY_EX_USAGE);
|
|
|
|
|
}
|
2015-11-02 15:51:01 -03:00
|
|
|
|
#endif
|
|
|
|
|
break;
|
|
|
|
|
|
2013-06-20 11:07:54 -07:00
|
|
|
|
case 'o' :
|
|
|
|
|
#ifdef HAVE_OCSP
|
|
|
|
|
useOcsp = 1;
|
|
|
|
|
#endif
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 'O' :
|
|
|
|
|
#ifdef HAVE_OCSP
|
|
|
|
|
useOcsp = 1;
|
|
|
|
|
ocspUrl = myoptarg;
|
|
|
|
|
#endif
|
|
|
|
|
break;
|
|
|
|
|
|
2014-12-01 11:44:32 -08:00
|
|
|
|
case 'a' :
|
|
|
|
|
#ifdef HAVE_ANON
|
|
|
|
|
useAnon = 1;
|
|
|
|
|
#endif
|
|
|
|
|
break;
|
|
|
|
|
|
2015-10-15 09:48:07 -07:00
|
|
|
|
case 'L' :
|
2015-10-13 15:00:53 -07:00
|
|
|
|
#ifdef HAVE_ALPN
|
|
|
|
|
alpnList = myoptarg;
|
|
|
|
|
|
|
|
|
|
if (alpnList[0] == 'C' && alpnList[1] == ':')
|
|
|
|
|
alpn_opt = WOLFSSL_ALPN_CONTINUE_ON_MISMATCH;
|
|
|
|
|
else if (alpnList[0] == 'F' && alpnList[1] == ':')
|
|
|
|
|
alpn_opt = WOLFSSL_ALPN_FAILED_ON_MISMATCH;
|
|
|
|
|
else {
|
|
|
|
|
Usage();
|
2018-07-27 10:16:14 -07:00
|
|
|
|
XEXIT_T(MY_EX_USAGE);
|
2015-10-13 15:00:53 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
alpnList += 2;
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
break;
|
|
|
|
|
|
2016-04-22 13:46:54 -06:00
|
|
|
|
case 'M' :
|
|
|
|
|
doSTARTTLS = 1;
|
|
|
|
|
starttlsProt = myoptarg;
|
|
|
|
|
|
|
|
|
|
if (XSTRNCMP(starttlsProt, "smtp", 4) != 0) {
|
|
|
|
|
Usage();
|
2018-07-27 10:16:14 -07:00
|
|
|
|
XEXIT_T(MY_EX_USAGE);
|
2016-04-22 13:46:54 -06:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
2016-05-05 15:31:25 -06:00
|
|
|
|
case 'q' :
|
|
|
|
|
#ifdef HAVE_WNR
|
|
|
|
|
wnrConfigFile = myoptarg;
|
|
|
|
|
#endif
|
|
|
|
|
break;
|
|
|
|
|
|
2017-04-14 16:39:21 -07:00
|
|
|
|
case 'J' :
|
2016-11-24 01:31:07 +10:00
|
|
|
|
#ifdef WOLFSSL_TLS13
|
|
|
|
|
helloRetry = 1;
|
|
|
|
|
#endif
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 'K' :
|
|
|
|
|
#ifdef WOLFSSL_TLS13
|
|
|
|
|
noPskDheKe = 1;
|
|
|
|
|
#endif
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 'I' :
|
|
|
|
|
#ifdef WOLFSSL_TLS13
|
|
|
|
|
updateKeysIVs = 1;
|
|
|
|
|
#endif
|
2017-05-08 12:49:38 -07:00
|
|
|
|
break;
|
2016-11-24 01:31:07 +10:00
|
|
|
|
|
|
|
|
|
case 'y' :
|
|
|
|
|
#if defined(WOLFSSL_TLS13) && !defined(NO_DH)
|
|
|
|
|
onlyKeyShare = 1;
|
|
|
|
|
#endif
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 'Y' :
|
|
|
|
|
#if defined(WOLFSSL_TLS13) && defined(HAVE_ECC)
|
|
|
|
|
onlyKeyShare = 2;
|
|
|
|
|
#endif
|
|
|
|
|
break;
|
|
|
|
|
|
2017-05-11 12:23:17 -07:00
|
|
|
|
case 'j' :
|
|
|
|
|
useVerifyCb = 1;
|
|
|
|
|
break;
|
|
|
|
|
|
2017-05-19 10:58:43 +10:00
|
|
|
|
case 't' :
|
|
|
|
|
#ifdef HAVE_CURVE25519
|
|
|
|
|
useX25519 = 1;
|
2018-11-08 15:43:18 -08:00
|
|
|
|
#ifdef HAVE_ECC
|
2018-09-21 09:27:48 -07:00
|
|
|
|
useSupCurve = 1;
|
2018-11-08 15:43:18 -08:00
|
|
|
|
#ifdef WOLFSSL_TLS13
|
2017-06-08 10:32:51 +10:00
|
|
|
|
onlyKeyShare = 2;
|
2018-11-08 15:43:18 -08:00
|
|
|
|
#endif
|
2017-06-08 10:32:51 +10:00
|
|
|
|
#endif
|
|
|
|
|
#endif
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 'Q' :
|
|
|
|
|
#if defined(WOLFSSL_TLS13) && \
|
|
|
|
|
defined(WOLFSSL_POST_HANDSHAKE_AUTH)
|
|
|
|
|
postHandAuth = 1;
|
2017-05-19 10:58:43 +10:00
|
|
|
|
#endif
|
|
|
|
|
break;
|
|
|
|
|
|
2017-06-19 11:37:10 +10:00
|
|
|
|
case '0' :
|
|
|
|
|
#ifdef WOLFSSL_EARLY_DATA
|
|
|
|
|
earlyData = 1;
|
|
|
|
|
#endif
|
|
|
|
|
break;
|
2018-12-03 13:53:44 -08:00
|
|
|
|
|
2018-10-20 13:40:01 +09:00
|
|
|
|
case '1' :
|
|
|
|
|
lng_index = atoi(myoptarg);
|
|
|
|
|
if(lng_index<0||lng_index>1){
|
|
|
|
|
lng_index = 0;
|
|
|
|
|
}
|
|
|
|
|
break;
|
2018-12-03 13:53:44 -08:00
|
|
|
|
|
|
|
|
|
case '2' :
|
|
|
|
|
#if !defined(NO_DH) && !defined(HAVE_FIPS) && \
|
|
|
|
|
!defined(HAVE_SELFTEST) && !defined(WOLFSSL_OLD_PRIME_CHECK)
|
|
|
|
|
doDhKeyCheck = 0;
|
|
|
|
|
#endif
|
|
|
|
|
break;
|
|
|
|
|
|
2016-12-15 11:43:15 -08:00
|
|
|
|
case '3' :
|
|
|
|
|
#ifdef WOLFSSL_MULTICAST
|
|
|
|
|
doMcast = 1;
|
|
|
|
|
mcastID = (byte)(atoi(myoptarg) & 0xFF);
|
|
|
|
|
#endif
|
|
|
|
|
break;
|
|
|
|
|
|
2019-02-19 15:04:22 -08:00
|
|
|
|
case '4' :
|
|
|
|
|
#ifdef HAVE_SECURE_RENEGOTIATION
|
|
|
|
|
scr = 1;
|
|
|
|
|
forceScr = 1;
|
|
|
|
|
resumeScr = 1;
|
|
|
|
|
#endif
|
2019-03-13 22:59:50 -07:00
|
|
|
|
break;
|
2018-09-28 09:05:59 -07:00
|
|
|
|
|
|
|
|
|
case '5' :
|
|
|
|
|
#ifdef HAVE_TRUSTED_CA
|
|
|
|
|
trustedCaKeyId = 1;
|
|
|
|
|
#endif /* HAVE_TRUSTED_CA */
|
2019-02-19 15:04:22 -08:00
|
|
|
|
break;
|
|
|
|
|
|
2012-08-01 12:55:13 -07:00
|
|
|
|
default:
|
|
|
|
|
Usage();
|
2018-07-27 10:16:14 -07:00
|
|
|
|
XEXIT_T(MY_EX_USAGE);
|
2012-08-01 12:55:13 -07:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2012-08-01 17:33:49 -07:00
|
|
|
|
myoptind = 0; /* reset for test cases */
|
2015-10-29 13:39:02 -06:00
|
|
|
|
#endif /* !WOLFSSL_VXWORKS */
|
2012-08-01 12:55:13 -07:00
|
|
|
|
|
2015-05-07 12:50:27 -07:00
|
|
|
|
if (externalTest) {
|
|
|
|
|
/* detect build cases that wouldn't allow test against wolfssl.com */
|
|
|
|
|
int done = 0;
|
|
|
|
|
|
|
|
|
|
#ifdef NO_RSA
|
2018-12-21 08:21:59 -08:00
|
|
|
|
done += 1; /* require RSA for external tests */
|
2015-05-07 12:50:27 -07:00
|
|
|
|
#endif
|
|
|
|
|
|
2018-12-21 08:21:59 -08:00
|
|
|
|
if (!XSTRNCMP(domain, "www.globalsign.com", 14)) {
|
2015-12-29 17:05:51 -07:00
|
|
|
|
/* www.globalsign.com does not respond to ipv6 ocsp requests */
|
|
|
|
|
#if defined(TEST_IPV6) && defined(HAVE_OCSP)
|
2016-02-08 19:54:22 -08:00
|
|
|
|
done += 1;
|
2015-12-29 17:05:51 -07:00
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
/* www.globalsign.com has limited supported cipher suites */
|
|
|
|
|
#if defined(NO_AES) && defined(HAVE_OCSP)
|
2016-02-08 19:54:22 -08:00
|
|
|
|
done += 1;
|
2015-12-29 17:05:51 -07:00
|
|
|
|
#endif
|
|
|
|
|
|
2015-12-31 12:05:45 -07:00
|
|
|
|
/* www.globalsign.com only supports static RSA or ECDHE with AES */
|
|
|
|
|
/* We cannot expect users to have on static RSA so test for ECC only
|
|
|
|
|
* as some users will most likely be on 32-bit systems where ECC
|
|
|
|
|
* is not enabled by default */
|
|
|
|
|
#if defined(HAVE_OCSP) && !defined(HAVE_ECC)
|
2016-02-08 19:54:22 -08:00
|
|
|
|
done += 1;
|
2015-12-31 12:05:45 -07:00
|
|
|
|
#endif
|
2018-12-21 08:21:59 -08:00
|
|
|
|
}
|
2015-12-31 12:05:45 -07:00
|
|
|
|
|
2015-05-07 12:50:27 -07:00
|
|
|
|
#ifndef NO_PSK
|
2018-12-21 08:21:59 -08:00
|
|
|
|
if (usePsk) {
|
|
|
|
|
done += 1; /* don't perform exernal tests if PSK is enabled */
|
|
|
|
|
}
|
2015-05-07 12:50:27 -07:00
|
|
|
|
#endif
|
|
|
|
|
|
2015-06-18 11:12:35 -07:00
|
|
|
|
#ifdef NO_SHA
|
2016-02-08 19:54:22 -08:00
|
|
|
|
done += 1; /* external cert chain most likely has SHA */
|
2015-06-18 11:12:35 -07:00
|
|
|
|
#endif
|
|
|
|
|
|
2016-02-09 17:06:06 -07:00
|
|
|
|
#if !defined(HAVE_ECC) && !defined(WOLFSSL_STATIC_RSA) \
|
2016-02-10 13:28:31 -07:00
|
|
|
|
|| ( defined(HAVE_ECC) && !defined(HAVE_SUPPORTED_CURVES) \
|
|
|
|
|
&& !defined(WOLFSSL_STATIC_RSA) )
|
2016-02-15 13:30:11 -07:00
|
|
|
|
/* google needs ECDHE+Supported Curves or static RSA */
|
|
|
|
|
if (!XSTRNCMP(domain, "www.google.com", 14))
|
|
|
|
|
done += 1;
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#if !defined(HAVE_ECC) && !defined(WOLFSSL_STATIC_RSA)
|
|
|
|
|
/* wolfssl needs ECDHE or static RSA */
|
|
|
|
|
if (!XSTRNCMP(domain, "www.wolfssl.com", 15))
|
2016-02-08 19:54:22 -08:00
|
|
|
|
done += 1;
|
2015-08-14 12:58:00 -07:00
|
|
|
|
#endif
|
|
|
|
|
|
2016-01-14 20:25:50 -08:00
|
|
|
|
#if !defined(WOLFSSL_SHA384)
|
|
|
|
|
if (!XSTRNCMP(domain, "www.wolfssl.com", 15)) {
|
2016-02-07 08:27:01 -07:00
|
|
|
|
/* wolfssl need sha384 for cert chain verify */
|
2016-02-08 19:54:22 -08:00
|
|
|
|
done += 1;
|
2016-01-14 20:25:50 -08:00
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
2015-09-28 09:47:59 -07:00
|
|
|
|
#if !defined(HAVE_AESGCM) && defined(NO_AES) && \
|
|
|
|
|
!(defined(HAVE_CHACHA) && defined(HAVE_POLY1305))
|
2018-12-21 08:21:59 -08:00
|
|
|
|
/* need at least one of these for external tests */
|
2016-02-08 19:54:22 -08:00
|
|
|
|
done += 1;
|
2015-09-28 09:47:59 -07:00
|
|
|
|
#endif
|
|
|
|
|
|
2017-08-17 11:27:47 -06:00
|
|
|
|
#if defined(HAVE_QSH)
|
|
|
|
|
/*currently google server rejects client hello with QSH extension.*/
|
|
|
|
|
done += 1;
|
|
|
|
|
#endif
|
|
|
|
|
|
2018-03-01 15:22:38 -08:00
|
|
|
|
/* For the external test, if we disable AES, GoDaddy will reject the
|
|
|
|
|
* connection. They only currently support AES suites, RC4 and 3DES
|
|
|
|
|
* suites. With AES disabled we only offer PolyChacha suites. */
|
|
|
|
|
#if defined(NO_AES) && !defined(HAVE_AESGCM)
|
|
|
|
|
if (!XSTRNCMP(domain, "www.wolfssl.com", 15)) {
|
|
|
|
|
done += 1;
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
2015-05-07 12:50:27 -07:00
|
|
|
|
if (done) {
|
2018-08-02 11:32:36 -07:00
|
|
|
|
printf("external test can't be run in this mode\n");
|
2015-05-07 12:50:27 -07:00
|
|
|
|
|
|
|
|
|
((func_args*)args)->return_code = 0;
|
2018-07-27 10:16:14 -07:00
|
|
|
|
XEXIT_T(EXIT_SUCCESS);
|
2015-05-07 12:50:27 -07:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-03-07 22:52:51 -08:00
|
|
|
|
/* sort out DTLS versus TLS versions */
|
|
|
|
|
if (version == CLIENT_INVALID_VERSION) {
|
|
|
|
|
if (doDTLS)
|
|
|
|
|
version = CLIENT_DTLS_DEFAULT_VERSION;
|
|
|
|
|
else
|
|
|
|
|
version = CLIENT_DEFAULT_VERSION;
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
if (doDTLS) {
|
|
|
|
|
if (version == 3)
|
|
|
|
|
version = -2;
|
2018-10-09 12:54:41 -07:00
|
|
|
|
#if defined(OPENSSL_EXTRA) || defined(WOLFSSL_EITHER_SIDE)
|
|
|
|
|
else if (version == EITHER_DOWNGRADE_VERSION)
|
|
|
|
|
version = -3;
|
|
|
|
|
#endif
|
2013-03-07 22:52:51 -08:00
|
|
|
|
else
|
|
|
|
|
version = -1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-05-05 15:31:25 -06:00
|
|
|
|
#ifdef HAVE_WNR
|
|
|
|
|
if (wc_InitNetRandom(wnrConfigFile, NULL, 5000) != 0)
|
|
|
|
|
err_sys("can't load whitewood net random config file");
|
|
|
|
|
#endif
|
|
|
|
|
|
2012-08-01 12:55:13 -07:00
|
|
|
|
switch (version) {
|
2012-11-26 18:40:43 -08:00
|
|
|
|
#ifndef NO_OLD_TLS
|
2015-08-12 16:39:13 -07:00
|
|
|
|
#ifdef WOLFSSL_ALLOW_SSLV3
|
2012-08-01 12:55:13 -07:00
|
|
|
|
case 0:
|
2017-10-20 14:56:29 -07:00
|
|
|
|
method = wolfSSLv3_client_method_ex;
|
2012-08-01 12:55:13 -07:00
|
|
|
|
break;
|
2015-08-12 16:39:13 -07:00
|
|
|
|
#endif
|
|
|
|
|
|
2013-05-19 10:02:13 +09:00
|
|
|
|
#ifndef NO_TLS
|
2017-11-14 13:55:48 -08:00
|
|
|
|
#ifdef WOLFSSL_ALLOW_TLSV10
|
2012-08-01 12:55:13 -07:00
|
|
|
|
case 1:
|
2017-10-20 14:56:29 -07:00
|
|
|
|
method = wolfTLSv1_client_method_ex;
|
2012-08-01 12:55:13 -07:00
|
|
|
|
break;
|
2017-11-14 13:55:48 -08:00
|
|
|
|
#endif
|
2012-08-01 12:55:13 -07:00
|
|
|
|
|
|
|
|
|
case 2:
|
2017-10-20 14:56:29 -07:00
|
|
|
|
method = wolfTLSv1_1_client_method_ex;
|
2012-08-01 12:55:13 -07:00
|
|
|
|
break;
|
2017-11-14 13:55:48 -08:00
|
|
|
|
#endif /* !NO_TLS */
|
|
|
|
|
#endif /* !NO_OLD_TLS */
|
2015-08-12 16:39:13 -07:00
|
|
|
|
|
2013-05-19 10:02:13 +09:00
|
|
|
|
#ifndef NO_TLS
|
2018-05-17 09:08:03 +10:00
|
|
|
|
#ifndef WOLFSSL_NO_TLS12
|
2012-08-01 12:55:13 -07:00
|
|
|
|
case 3:
|
2017-10-20 14:56:29 -07:00
|
|
|
|
method = wolfTLSv1_2_client_method_ex;
|
2012-08-01 12:55:13 -07:00
|
|
|
|
break;
|
2018-05-17 09:08:03 +10:00
|
|
|
|
#endif
|
2017-11-14 13:55:48 -08:00
|
|
|
|
|
2016-11-24 01:31:07 +10:00
|
|
|
|
#ifdef WOLFSSL_TLS13
|
|
|
|
|
case 4:
|
2017-10-20 14:56:29 -07:00
|
|
|
|
method = wolfTLSv1_3_client_method_ex;
|
2016-11-24 01:31:07 +10:00
|
|
|
|
break;
|
|
|
|
|
#endif
|
2018-02-22 11:05:58 +10:00
|
|
|
|
|
|
|
|
|
case CLIENT_DOWNGRADE_VERSION:
|
|
|
|
|
method = wolfSSLv23_client_method_ex;
|
|
|
|
|
break;
|
2018-10-04 14:48:53 -07:00
|
|
|
|
#if defined(OPENSSL_EXTRA) || defined(WOLFSSL_EITHER_SIDE)
|
|
|
|
|
case EITHER_DOWNGRADE_VERSION:
|
|
|
|
|
method = wolfSSLv23_method_ex;
|
|
|
|
|
break;
|
|
|
|
|
#endif
|
2017-11-14 13:55:48 -08:00
|
|
|
|
#endif /* NO_TLS */
|
2012-08-01 12:55:13 -07:00
|
|
|
|
|
2015-01-05 14:48:43 -07:00
|
|
|
|
#ifdef WOLFSSL_DTLS
|
2015-04-08 13:29:25 -07:00
|
|
|
|
#ifndef NO_OLD_TLS
|
2012-08-02 11:54:49 -07:00
|
|
|
|
case -1:
|
2017-10-20 14:56:29 -07:00
|
|
|
|
method = wolfDTLSv1_client_method_ex;
|
2012-08-02 11:54:49 -07:00
|
|
|
|
break;
|
2015-04-08 13:29:25 -07:00
|
|
|
|
#endif
|
2013-03-07 22:52:51 -08:00
|
|
|
|
|
2018-05-17 09:08:03 +10:00
|
|
|
|
#ifndef WOLFSSL_NO_TLS12
|
2013-03-07 22:52:51 -08:00
|
|
|
|
case -2:
|
2017-10-20 14:56:29 -07:00
|
|
|
|
method = wolfDTLSv1_2_client_method_ex;
|
2013-03-07 22:52:51 -08:00
|
|
|
|
break;
|
2018-05-17 09:08:03 +10:00
|
|
|
|
#endif
|
2018-10-09 12:54:41 -07:00
|
|
|
|
#if defined(OPENSSL_EXTRA) || defined(WOLFSSL_EITHER_SIDE)
|
|
|
|
|
case -3:
|
|
|
|
|
method = wolfDTLSv1_2_method_ex;
|
|
|
|
|
break;
|
|
|
|
|
#endif
|
2012-08-02 11:54:49 -07:00
|
|
|
|
#endif
|
|
|
|
|
|
2012-08-01 12:55:13 -07:00
|
|
|
|
default:
|
|
|
|
|
err_sys("Bad SSL version");
|
2013-05-21 14:37:50 -07:00
|
|
|
|
break;
|
2012-08-01 12:55:13 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (method == NULL)
|
|
|
|
|
err_sys("unable to get method");
|
|
|
|
|
|
2017-10-20 14:56:29 -07:00
|
|
|
|
|
|
|
|
|
#ifdef WOLFSSL_STATIC_MEMORY
|
|
|
|
|
#ifdef DEBUG_WOLFSSL
|
|
|
|
|
/* print off helper buffer sizes for use with static memory
|
|
|
|
|
* printing to stderr incase of debug mode turned on */
|
|
|
|
|
fprintf(stderr, "static memory management size = %d\n",
|
|
|
|
|
wolfSSL_MemoryPaddingSz());
|
|
|
|
|
fprintf(stderr, "calculated optimum general buffer size = %d\n",
|
|
|
|
|
wolfSSL_StaticBufferSz(memory, sizeof(memory), 0));
|
|
|
|
|
fprintf(stderr, "calculated optimum IO buffer size = %d\n",
|
|
|
|
|
wolfSSL_StaticBufferSz(memoryIO, sizeof(memoryIO),
|
|
|
|
|
WOLFMEM_IO_POOL_FIXED));
|
|
|
|
|
#endif /* DEBUG_WOLFSSL */
|
|
|
|
|
|
|
|
|
|
if (wolfSSL_CTX_load_static_memory(&ctx, method, memory, sizeof(memory),
|
|
|
|
|
0, 1) != WOLFSSL_SUCCESS) {
|
|
|
|
|
err_sys("unable to load static memory");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (wolfSSL_CTX_load_static_memory(&ctx, NULL, memoryIO, sizeof(memoryIO),
|
|
|
|
|
WOLFMEM_IO_POOL_FIXED | WOLFMEM_TRACK_STATS, 1) != WOLFSSL_SUCCESS) {
|
|
|
|
|
err_sys("unable to load static memory");
|
|
|
|
|
}
|
|
|
|
|
#else
|
|
|
|
|
ctx = wolfSSL_CTX_new(method(NULL));
|
|
|
|
|
#endif
|
2012-08-01 12:55:13 -07:00
|
|
|
|
if (ctx == NULL)
|
|
|
|
|
err_sys("unable to get ctx");
|
|
|
|
|
|
2016-09-16 13:35:29 -07:00
|
|
|
|
#ifdef SINGLE_THREADED
|
2017-10-11 09:09:52 -07:00
|
|
|
|
if (wolfSSL_CTX_new_rng(ctx) != WOLFSSL_SUCCESS) {
|
2018-07-27 10:19:04 -07:00
|
|
|
|
wolfSSL_CTX_free(ctx); ctx = NULL;
|
2016-09-16 13:35:29 -07:00
|
|
|
|
err_sys("Single Threaded new rng at CTX failed");
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
2017-04-05 11:21:11 -07:00
|
|
|
|
if (cipherList && !useDefCipherList) {
|
2017-10-11 09:09:52 -07:00
|
|
|
|
if (wolfSSL_CTX_set_cipher_list(ctx, cipherList) != WOLFSSL_SUCCESS) {
|
2018-07-27 10:19:04 -07:00
|
|
|
|
wolfSSL_CTX_free(ctx); ctx = NULL;
|
2013-01-21 10:53:42 -08:00
|
|
|
|
err_sys("client can't set cipher list 1");
|
2017-01-10 09:26:47 +10:00
|
|
|
|
}
|
2015-10-14 19:13:45 -07:00
|
|
|
|
}
|
2011-02-05 11:14:47 -08:00
|
|
|
|
|
2015-01-05 14:48:43 -07:00
|
|
|
|
#ifdef WOLFSSL_LEANPSK
|
2016-04-11 11:13:26 -06:00
|
|
|
|
if (!usePsk) {
|
|
|
|
|
usePsk = 1;
|
|
|
|
|
}
|
2012-10-30 12:51:14 -07:00
|
|
|
|
#endif
|
|
|
|
|
|
2018-07-23 10:20:18 +10:00
|
|
|
|
#if defined(NO_RSA) && !defined(HAVE_ECC) && !defined(HAVE_ED25519)
|
2016-04-11 11:13:26 -06:00
|
|
|
|
if (!usePsk) {
|
|
|
|
|
usePsk = 1;
|
|
|
|
|
}
|
2013-03-11 13:19:43 -07:00
|
|
|
|
#endif
|
|
|
|
|
|
2013-04-19 13:10:19 -07:00
|
|
|
|
if (fewerPackets)
|
2015-01-05 14:48:43 -07:00
|
|
|
|
wolfSSL_CTX_set_group_messages(ctx);
|
2013-04-19 13:10:19 -07:00
|
|
|
|
|
2015-05-21 10:11:21 -07:00
|
|
|
|
#ifndef NO_DH
|
2019-01-17 09:52:00 -08:00
|
|
|
|
if (wolfSSL_CTX_SetMinDhKey_Sz(ctx, (word16)minDhKeyBits)
|
|
|
|
|
!= WOLFSSL_SUCCESS) {
|
|
|
|
|
err_sys("Error setting minimum DH key size");
|
|
|
|
|
}
|
2015-05-21 10:11:21 -07:00
|
|
|
|
#endif
|
|
|
|
|
|
2012-10-30 12:51:14 -07:00
|
|
|
|
if (usePsk) {
|
2011-02-05 11:14:47 -08:00
|
|
|
|
#ifndef NO_PSK
|
2015-01-05 14:48:43 -07:00
|
|
|
|
wolfSSL_CTX_set_psk_client_callback(ctx, my_psk_client_cb);
|
2018-08-14 08:55:57 +10:00
|
|
|
|
#ifdef WOLFSSL_TLS13
|
|
|
|
|
wolfSSL_CTX_set_psk_client_tls13_callback(ctx, my_psk_client_tls13_cb);
|
|
|
|
|
#endif
|
2012-10-30 12:51:14 -07:00
|
|
|
|
if (cipherList == NULL) {
|
|
|
|
|
const char *defaultCipherList;
|
2017-06-07 08:29:08 +10:00
|
|
|
|
#if defined(HAVE_AESGCM) && !defined(NO_DH)
|
|
|
|
|
#ifdef WOLFSSL_TLS13
|
|
|
|
|
defaultCipherList = "DHE-PSK-AES128-GCM-SHA256:"
|
|
|
|
|
"TLS13-AES128-GCM-SHA256";
|
|
|
|
|
#else
|
2015-03-27 14:28:05 -07:00
|
|
|
|
defaultCipherList = "DHE-PSK-AES128-GCM-SHA256";
|
2017-06-07 08:29:08 +10:00
|
|
|
|
#endif
|
|
|
|
|
#elif defined(HAVE_NULL_CIPHER)
|
2013-03-07 17:44:40 -08:00
|
|
|
|
defaultCipherList = "PSK-NULL-SHA256";
|
2017-06-07 08:29:08 +10:00
|
|
|
|
#else
|
2013-03-11 13:19:43 -07:00
|
|
|
|
defaultCipherList = "PSK-AES128-CBC-SHA256";
|
2017-06-07 08:29:08 +10:00
|
|
|
|
#endif
|
2015-03-27 14:28:05 -07:00
|
|
|
|
if (wolfSSL_CTX_set_cipher_list(ctx,defaultCipherList)
|
2017-10-19 16:17:51 -07:00
|
|
|
|
!=WOLFSSL_SUCCESS) {
|
2018-07-27 10:19:04 -07:00
|
|
|
|
wolfSSL_CTX_free(ctx); ctx = NULL;
|
2013-01-21 10:53:42 -08:00
|
|
|
|
err_sys("client can't set cipher list 2");
|
2017-01-10 09:26:47 +10:00
|
|
|
|
}
|
2012-10-30 12:51:14 -07:00
|
|
|
|
}
|
2011-02-05 11:14:47 -08:00
|
|
|
|
#endif
|
2016-04-11 11:13:26 -06:00
|
|
|
|
if (useClientCert) {
|
|
|
|
|
useClientCert = 0;
|
|
|
|
|
}
|
2012-10-30 12:51:14 -07:00
|
|
|
|
}
|
2011-02-05 11:14:47 -08:00
|
|
|
|
|
2014-12-01 11:44:32 -08:00
|
|
|
|
if (useAnon) {
|
|
|
|
|
#ifdef HAVE_ANON
|
2017-04-05 14:35:33 -07:00
|
|
|
|
if (cipherList == NULL || (cipherList && useDefCipherList)) {
|
2018-04-20 10:35:37 -07:00
|
|
|
|
const char* defaultCipherList;
|
2015-01-05 14:48:43 -07:00
|
|
|
|
wolfSSL_CTX_allow_anon_cipher(ctx);
|
2018-04-20 10:35:37 -07:00
|
|
|
|
defaultCipherList = "ADH-AES256-GCM-SHA384:"
|
|
|
|
|
"ADH-AES128-SHA";
|
|
|
|
|
if (wolfSSL_CTX_set_cipher_list(ctx,defaultCipherList)
|
2017-10-19 16:17:51 -07:00
|
|
|
|
!= WOLFSSL_SUCCESS) {
|
2018-07-27 10:19:04 -07:00
|
|
|
|
wolfSSL_CTX_free(ctx); ctx = NULL;
|
2014-12-01 11:44:32 -08:00
|
|
|
|
err_sys("client can't set cipher list 4");
|
2017-01-10 09:26:47 +10:00
|
|
|
|
}
|
2014-12-01 11:44:32 -08:00
|
|
|
|
}
|
|
|
|
|
#endif
|
2016-04-11 11:13:26 -06:00
|
|
|
|
if (useClientCert) {
|
|
|
|
|
useClientCert = 0;
|
|
|
|
|
}
|
2014-12-01 11:44:32 -08:00
|
|
|
|
}
|
|
|
|
|
|
2016-08-26 10:47:01 -07:00
|
|
|
|
#ifdef WOLFSSL_SCTP
|
|
|
|
|
if (dtlsSCTP)
|
|
|
|
|
wolfSSL_CTX_dtls_set_sctp(ctx);
|
|
|
|
|
#endif
|
|
|
|
|
|
2018-03-30 15:48:15 -07:00
|
|
|
|
#ifdef WOLFSSL_ENCRYPTED_KEYS
|
2015-01-05 14:48:43 -07:00
|
|
|
|
wolfSSL_CTX_set_default_passwd_cb(ctx, PasswordCallBack);
|
2011-02-05 11:14:47 -08:00
|
|
|
|
#endif
|
|
|
|
|
|
2015-04-01 12:14:48 -07:00
|
|
|
|
#if defined(WOLFSSL_SNIFFER)
|
2012-08-31 13:28:07 -07:00
|
|
|
|
if (cipherList == NULL) {
|
2012-10-30 12:51:14 -07:00
|
|
|
|
/* don't use EDH, can't sniff tmp keys */
|
2017-10-11 09:09:52 -07:00
|
|
|
|
if (wolfSSL_CTX_set_cipher_list(ctx, "AES128-SHA") != WOLFSSL_SUCCESS) {
|
2018-07-27 10:19:04 -07:00
|
|
|
|
wolfSSL_CTX_free(ctx); ctx = NULL;
|
2013-01-21 10:53:42 -08:00
|
|
|
|
err_sys("client can't set cipher list 3");
|
2012-10-30 12:51:14 -07:00
|
|
|
|
}
|
2012-08-31 13:28:07 -07:00
|
|
|
|
}
|
2011-04-29 10:41:21 -07:00
|
|
|
|
#endif
|
|
|
|
|
|
2013-06-20 11:07:54 -07:00
|
|
|
|
#ifdef HAVE_OCSP
|
|
|
|
|
if (useOcsp) {
|
2017-03-06 09:49:05 -08:00
|
|
|
|
#ifdef HAVE_IO_TIMEOUT
|
|
|
|
|
wolfIO_SetTimeout(DEFAULT_TIMEOUT_SEC);
|
|
|
|
|
#endif
|
|
|
|
|
|
2013-12-17 18:26:29 -08:00
|
|
|
|
if (ocspUrl != NULL) {
|
2015-01-05 14:48:43 -07:00
|
|
|
|
wolfSSL_CTX_SetOCSP_OverrideURL(ctx, ocspUrl);
|
|
|
|
|
wolfSSL_CTX_EnableOCSP(ctx, WOLFSSL_OCSP_NO_NONCE
|
|
|
|
|
| WOLFSSL_OCSP_URL_OVERRIDE);
|
2013-12-17 18:26:29 -08:00
|
|
|
|
}
|
2017-12-08 03:12:33 +01:00
|
|
|
|
else {
|
2017-12-19 16:52:47 -08:00
|
|
|
|
wolfSSL_CTX_EnableOCSP(ctx, WOLFSSL_OCSP_CHECKALL);
|
2017-12-08 03:12:33 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#ifdef WOLFSSL_NONBLOCK_OCSP
|
|
|
|
|
wolfSSL_CTX_SetOCSP_Cb(ctx, OCSPIOCb, OCSPRespFreeCb, NULL);
|
|
|
|
|
#endif
|
2013-06-20 11:07:54 -07:00
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
2012-01-26 12:52:54 -08:00
|
|
|
|
#ifdef USER_CA_CB
|
2015-01-05 14:48:43 -07:00
|
|
|
|
wolfSSL_CTX_SetCACb(ctx, CaCb);
|
2012-01-26 12:52:54 -08:00
|
|
|
|
#endif
|
|
|
|
|
|
2018-04-05 07:10:04 -07:00
|
|
|
|
#ifdef HAVE_EXT_CACHE
|
|
|
|
|
wolfSSL_CTX_sess_set_get_cb(ctx, mySessGetCb);
|
|
|
|
|
wolfSSL_CTX_sess_set_new_cb(ctx, mySessNewCb);
|
|
|
|
|
wolfSSL_CTX_sess_set_remove_cb(ctx, mySessRemCb);
|
|
|
|
|
#endif
|
|
|
|
|
|
2018-03-21 11:27:08 -07:00
|
|
|
|
#ifndef NO_CERTS
|
2018-10-09 12:54:41 -07:00
|
|
|
|
if (useClientCert && !loadCertKeyIntoSSLObj){
|
|
|
|
|
#ifndef TEST_LOAD_BUFFER
|
2017-01-10 09:26:47 +10:00
|
|
|
|
if (wolfSSL_CTX_use_certificate_chain_file(ctx, ourCert)
|
2017-10-19 16:17:51 -07:00
|
|
|
|
!= WOLFSSL_SUCCESS) {
|
2018-07-27 10:19:04 -07:00
|
|
|
|
wolfSSL_CTX_free(ctx); ctx = NULL;
|
2012-10-29 15:39:42 -07:00
|
|
|
|
err_sys("can't load client cert file, check file and run from"
|
2015-01-05 14:48:43 -07:00
|
|
|
|
" wolfSSL home dir");
|
2017-01-10 09:26:47 +10:00
|
|
|
|
}
|
2018-03-21 11:27:08 -07:00
|
|
|
|
#else
|
|
|
|
|
load_buffer(ctx, ourCert, WOLFSSL_CERT_CHAIN);
|
|
|
|
|
#endif
|
2018-10-09 12:54:41 -07:00
|
|
|
|
}
|
2011-02-05 11:14:47 -08:00
|
|
|
|
|
2018-03-21 11:27:08 -07:00
|
|
|
|
#ifdef HAVE_PK_CALLBACKS
|
|
|
|
|
pkCbInfo.ourKey = ourKey;
|
|
|
|
|
#endif
|
2018-10-19 14:52:18 +10:00
|
|
|
|
if (useClientCert && !loadCertKeyIntoSSLObj
|
2018-10-09 12:54:41 -07:00
|
|
|
|
#if defined(HAVE_PK_CALLBACKS) && defined(TEST_PK_PRIVKEY)
|
|
|
|
|
&& !pkCallbacks
|
|
|
|
|
#endif
|
|
|
|
|
) {
|
|
|
|
|
#ifndef TEST_LOAD_BUFFER
|
2017-10-11 09:09:52 -07:00
|
|
|
|
if (wolfSSL_CTX_use_PrivateKey_file(ctx, ourKey, WOLFSSL_FILETYPE_PEM)
|
|
|
|
|
!= WOLFSSL_SUCCESS) {
|
2018-07-27 10:19:04 -07:00
|
|
|
|
wolfSSL_CTX_free(ctx); ctx = NULL;
|
2013-03-11 16:07:46 -07:00
|
|
|
|
err_sys("can't load client private key file, check file and run "
|
2015-01-05 14:48:43 -07:00
|
|
|
|
"from wolfSSL home dir");
|
2017-01-10 09:26:47 +10:00
|
|
|
|
}
|
2018-03-21 11:27:08 -07:00
|
|
|
|
#else
|
2016-11-23 17:19:54 -08:00
|
|
|
|
load_buffer(ctx, ourKey, WOLFSSL_KEY);
|
2018-03-21 11:27:08 -07:00
|
|
|
|
#endif
|
2013-04-19 13:10:19 -07:00
|
|
|
|
}
|
2012-08-01 12:55:13 -07:00
|
|
|
|
|
2018-10-18 11:58:00 -07:00
|
|
|
|
if (!usePsk && !useAnon && !useVerifyCb && !myVerifyFail) {
|
2018-10-09 12:54:41 -07:00
|
|
|
|
#ifndef TEST_LOAD_BUFFER
|
2018-08-29 10:55:12 -07:00
|
|
|
|
if (wolfSSL_CTX_load_verify_locations(ctx, verifyCert, 0)
|
2017-10-19 16:17:51 -07:00
|
|
|
|
!= WOLFSSL_SUCCESS) {
|
2018-07-27 10:19:04 -07:00
|
|
|
|
wolfSSL_CTX_free(ctx); ctx = NULL;
|
2015-04-01 12:03:27 -07:00
|
|
|
|
err_sys("can't load ca file, Please run from wolfSSL home dir");
|
2017-01-10 09:26:47 +10:00
|
|
|
|
}
|
2018-03-21 11:27:08 -07:00
|
|
|
|
#else
|
2016-11-23 17:19:54 -08:00
|
|
|
|
load_buffer(ctx, verifyCert, WOLFSSL_CA);
|
2018-03-21 11:27:08 -07:00
|
|
|
|
#endif /* !NO_FILESYSTEM */
|
2018-10-09 12:54:41 -07:00
|
|
|
|
|
2018-03-21 11:27:08 -07:00
|
|
|
|
#ifdef HAVE_ECC
|
2015-04-01 12:03:27 -07:00
|
|
|
|
/* load ecc verify too, echoserver uses it by default w/ ecc */
|
2018-10-09 12:54:41 -07:00
|
|
|
|
#ifndef TEST_LOAD_BUFFER
|
2017-10-19 16:17:51 -07:00
|
|
|
|
if (wolfSSL_CTX_load_verify_locations(ctx, eccCertFile, 0)
|
|
|
|
|
!= WOLFSSL_SUCCESS) {
|
2018-07-27 10:19:04 -07:00
|
|
|
|
wolfSSL_CTX_free(ctx); ctx = NULL;
|
2015-04-01 12:03:27 -07:00
|
|
|
|
err_sys("can't load ecc ca file, Please run from wolfSSL home dir");
|
2017-01-10 09:26:47 +10:00
|
|
|
|
}
|
2018-03-21 11:27:08 -07:00
|
|
|
|
#else
|
2017-04-06 15:54:59 -07:00
|
|
|
|
load_buffer(ctx, eccCertFile, WOLFSSL_CA);
|
2018-10-09 12:54:41 -07:00
|
|
|
|
#endif /* !TEST_LOAD_BUFFER */
|
2018-03-21 11:27:08 -07:00
|
|
|
|
#endif /* HAVE_ECC */
|
|
|
|
|
#if defined(WOLFSSL_TRUST_PEER_CERT) && !defined(NO_FILESYSTEM)
|
2016-03-01 16:35:32 -07:00
|
|
|
|
if (trustCert) {
|
|
|
|
|
if ((ret = wolfSSL_CTX_trust_peer_cert(ctx, trustCert,
|
2017-10-19 16:17:51 -07:00
|
|
|
|
WOLFSSL_FILETYPE_PEM)) != WOLFSSL_SUCCESS) {
|
2018-07-27 10:19:04 -07:00
|
|
|
|
wolfSSL_CTX_free(ctx); ctx = NULL;
|
2016-03-01 16:35:32 -07:00
|
|
|
|
err_sys("can't load trusted peer cert file");
|
|
|
|
|
}
|
2016-02-29 11:02:18 -07:00
|
|
|
|
}
|
2018-03-21 11:27:08 -07:00
|
|
|
|
#endif /* WOLFSSL_TRUST_PEER_CERT && !NO_FILESYSTEM */
|
2012-10-29 15:39:42 -07:00
|
|
|
|
}
|
2018-10-18 11:58:00 -07:00
|
|
|
|
if (useVerifyCb || myVerifyFail)
|
2017-10-11 09:09:52 -07:00
|
|
|
|
wolfSSL_CTX_set_verify(ctx, WOLFSSL_VERIFY_PEER, myVerify);
|
2017-05-11 12:23:17 -07:00
|
|
|
|
else if (!usePsk && !useAnon && doPeerCheck == 0)
|
2017-10-11 09:09:52 -07:00
|
|
|
|
wolfSSL_CTX_set_verify(ctx, WOLFSSL_VERIFY_NONE, 0);
|
2017-05-11 12:23:17 -07:00
|
|
|
|
else if (!usePsk && !useAnon && overrideDateErrors == 1)
|
2017-10-11 09:09:52 -07:00
|
|
|
|
wolfSSL_CTX_set_verify(ctx, WOLFSSL_VERIFY_PEER, myDateCb);
|
2018-03-21 11:27:08 -07:00
|
|
|
|
#endif /* !NO_CERTS */
|
2012-08-01 12:55:13 -07:00
|
|
|
|
|
2016-08-15 13:59:41 -06:00
|
|
|
|
#ifdef WOLFSSL_ASYNC_CRYPT
|
|
|
|
|
ret = wolfAsync_DevOpen(&devId);
|
Intel QuickAssist (QAT) support and async enhancements/fixes:
* Adds ./configure "--with-intelqa=../QAT1.6”, port files, memory management and README.md (see wolfcrypt/src/port/intel/).
* Added Intel QAT support for RSA public/private (CRT/non-CRT), AES CBC/GCM, ECDH/ECDSA, DH, DES3, SHA, SHA224, SHA256, SHA384, SHA512, MD5 and HMAC.
* wolfSSL async enabled all client and server: PKI, Encrypt/Decrypt, Hashing/HMAC and Certificate Sign/Verify.
* wolfSSL async support in functions: Encrypt, Decrypt, VerifyMAC, BuildMessage, ConfirmSignature, DoCertificate, ParseCertRelative, and MakeSignature.
* wolfCrypt test and benchmark async support added for all HW acceleration.
* wolfCrypt benchmark multi-threading support.
* Added QuickAssist memory overrides for XMALLOC, XFREE and XREALLOC. XREALLOC determines if existing pointer needs reallocated for NUMA.
* Refactor to make sure “heap” is available for async dev init.
* Added async support for all examples for connect, accept, read and write.
* Added new WC_BIGINT (in wolfmath.c) for async hardware support.
* Added async simulator tests for DES3 CBC, AES CBC/GCM.
* Added QAT standalone build for unit testing.
* Added int return code to SHA and MD5 functions.
* Refactor of the async stack variable handling, so async operations have generic args buffer area and cleanup function pointer.
* Combined duplicate code for async push/pop handling.
* Refactor internal.c to add AllocKey / FreeKey.
* Refactor of hash init/free in TLS to use InitHashes and FreeHashes.
* Refactor of the async event->context to use WOLF_EVENT_TYPE_ASYNC_WOLFSSL for WOLFSSL* and WOLF_EVENT_TYPE_ASYNC_WOLFCRYPT for WC_ASYNC_DEV*.
* Suppress error message for WC_PENDING_E.
* Implemented "wolfSSL_EVP_MD_CTX_init" to do memset.
* Cleanup of the openssl compat CTX sizes when async is enabled.
* Cleanup of AES, DES3, DH, SHA, MD5, DES3, DH, HMAC, MD5 for consistency and readability.
* Cleanup of the OPAQUE_LEN.
* Cleanup to use ENCRYPT_LEN instead of sizeof(ssl->arrays.preMasterSecret).
* Changed ssl->arrays.preMasterSecret to use XMALLOC (accelerates HW operations)
* Reduce verbosity with debug enabled for "GetMyVersion", "wolfSSL Using RSA OAEP padding" and "wolfSSL Using RSA PKCSV15 padding".
* Updated RSA un-padding error message so its different than one above it for better debugging.
* Added QAT async enables for each algorithm.
* Refactor of the async init to use _ex.
* Added WC_ASYNC_THRESH_NONE to allow bypass of the async thresholds for testing.
* Reformatted the benchmark results:
PKI: "RSA 2048 private HW 18522 ops took 1.003 sec, avg 0.054 ms, 18467.763 ops/sec"
Crypto/Hashing: SHA-256 SW 350 megs took 1.009 seconds, 346.946 MB/s Cycles per byte = 9.87
* Added min execution time for all benchmarks.
* Moved wc_*GetHash and wc_*RestorePos to appropriate files so use of isCopy flag is local.
* Fix for ECC sign status sometimes being invalid due to uninitialized ECC digest in benchmark.
* Added new DECLARE_VAR/FREE_VAR and DECLARE_ARRAY/FREE_ARRAY macros for helping setup test/benchmark variables to accelerate async.
* Added NO_SW_BENCH option to only run HW bench.
* Added support for PRNG to use hardware SHA256 if _wc devId provided.
* Fix to prevent curve tests from running against wrong curve sizes. Changed wc_ecc_set_curve to match on exact size.
* Added the wc_*GetHash calls to the wolfCrypt tests.
* Added async hardware start/stop to wolfSSL init/cleanup.
* Refactor to add wc_*Copy for hashing context (for async), which replaces wc_*RestorePos.
* Fixes for building with TI hashing (including: SHA224, missing new API’s and building with dummy build for non hw testing). Note: We need to add build test for this `./configure CFLAGS="-DWOLFSSL_TI_HASH -DTI_DUMMY_BUILD”`.
* Added arg checks on wc_*GetHash and wc_*Copy.
* Cleanup of the BuildMD5, BuildSHA, BuildMD5_CertVerify and BuildSHA_CertVerify functions.
* Added new ./configure --enable-asyncthreads, to allow enable/disable of the async threading support. If --enable-asynccrypt set this will be enabled by default if pthread is supported. Allows multi-threaded benchmarks with async simulator.
* Added checks for all hashing to verify valid ->buffLen.
* Fix for SHA512 scan-build warning about un-initialized “W_X”.
* Fix for valgrind un-initialized use of buffer in AllocDer (der->buffer) and BuildTlsFinished handshake_hash.
* Refactor of the benchmarking to use common function for start, check and finish of the stats.
* Fixed issue with ECC cache loading in multi-threading.
* Fix bug with AESNI not aligned code that assumes XMALLOC is 16-byte aligned.
* Added new WC_ASYNC_NO_… options to allow disabling of individual async algorithms. New defines are: WC_ASYNC_NO_CRYPT, WC_ASYNC_NO_PKI and WC_ASYNC_NO_HASH. Additionally each algorithm has a WC_ASYNC_NO_[ALGO] define.
* Added “wolfSSL_GetAllocators” API and fixed the wolfCrypt memcb_test so it restores callback pointers after test is complete (fixes issue with using custom allocators and test breaking it).
2017-04-07 15:46:32 -07:00
|
|
|
|
if (ret < 0) {
|
|
|
|
|
printf("Async device open failed\nRunning without async\n");
|
2016-08-15 13:59:41 -06:00
|
|
|
|
}
|
|
|
|
|
wolfSSL_CTX_UseAsync(ctx, devId);
|
|
|
|
|
#endif /* WOLFSSL_ASYNC_CRYPT */
|
2013-02-01 12:21:38 -08:00
|
|
|
|
|
2013-05-21 14:37:50 -07:00
|
|
|
|
#ifdef HAVE_SNI
|
2018-09-28 09:05:59 -07:00
|
|
|
|
if (sniHostName) {
|
2017-11-14 15:05:32 -07:00
|
|
|
|
if (wolfSSL_CTX_UseSNI(ctx, 0, sniHostName,
|
|
|
|
|
(word16) XSTRLEN(sniHostName)) != WOLFSSL_SUCCESS) {
|
2018-07-27 10:19:04 -07:00
|
|
|
|
wolfSSL_CTX_free(ctx); ctx = NULL;
|
2013-05-21 14:37:50 -07:00
|
|
|
|
err_sys("UseSNI failed");
|
2018-09-28 09:05:59 -07:00
|
|
|
|
}
|
2017-01-10 09:26:47 +10:00
|
|
|
|
}
|
2013-05-21 14:37:50 -07:00
|
|
|
|
#endif
|
2013-07-23 15:42:43 -03:00
|
|
|
|
#ifdef HAVE_MAX_FRAGMENT
|
|
|
|
|
if (maxFragment)
|
2017-10-11 09:09:52 -07:00
|
|
|
|
if (wolfSSL_CTX_UseMaxFragment(ctx, maxFragment) != WOLFSSL_SUCCESS) {
|
2018-07-27 10:19:04 -07:00
|
|
|
|
wolfSSL_CTX_free(ctx); ctx = NULL;
|
2013-07-23 15:42:43 -03:00
|
|
|
|
err_sys("UseMaxFragment failed");
|
2017-01-10 09:26:47 +10:00
|
|
|
|
}
|
2013-07-23 15:42:43 -03:00
|
|
|
|
#endif
|
|
|
|
|
#ifdef HAVE_TRUNCATED_HMAC
|
|
|
|
|
if (truncatedHMAC)
|
2017-10-11 09:09:52 -07:00
|
|
|
|
if (wolfSSL_CTX_UseTruncatedHMAC(ctx) != WOLFSSL_SUCCESS) {
|
2018-07-27 10:19:04 -07:00
|
|
|
|
wolfSSL_CTX_free(ctx); ctx = NULL;
|
2013-07-23 15:42:43 -03:00
|
|
|
|
err_sys("UseTruncatedHMAC failed");
|
2017-01-10 09:26:47 +10:00
|
|
|
|
}
|
2013-07-23 15:42:43 -03:00
|
|
|
|
#endif
|
2014-09-30 09:24:42 -03:00
|
|
|
|
#ifdef HAVE_SESSION_TICKET
|
2017-10-11 09:09:52 -07:00
|
|
|
|
if (wolfSSL_CTX_UseSessionTicket(ctx) != WOLFSSL_SUCCESS) {
|
2018-07-27 10:19:04 -07:00
|
|
|
|
wolfSSL_CTX_free(ctx); ctx = NULL;
|
2014-09-30 09:24:42 -03:00
|
|
|
|
err_sys("UseSessionTicket failed");
|
2017-01-10 09:26:47 +10:00
|
|
|
|
}
|
2014-09-30 09:24:42 -03:00
|
|
|
|
#endif
|
2016-09-01 15:17:46 -06:00
|
|
|
|
#ifdef HAVE_EXTENDED_MASTER
|
2016-09-09 23:16:52 -07:00
|
|
|
|
if (disableExtMasterSecret)
|
2017-10-11 09:09:52 -07:00
|
|
|
|
if (wolfSSL_CTX_DisableExtendedMasterSecret(ctx) != WOLFSSL_SUCCESS) {
|
2018-07-27 10:19:04 -07:00
|
|
|
|
wolfSSL_CTX_free(ctx); ctx = NULL;
|
2016-09-09 23:16:52 -07:00
|
|
|
|
err_sys("DisableExtendedMasterSecret failed");
|
2017-01-10 09:26:47 +10:00
|
|
|
|
}
|
2016-09-01 15:17:46 -06:00
|
|
|
|
#endif
|
2018-09-21 09:27:48 -07:00
|
|
|
|
#if defined(HAVE_SUPPORTED_CURVES)
|
|
|
|
|
#if defined(HAVE_CURVE25519)
|
2017-05-22 09:09:31 +10:00
|
|
|
|
if (useX25519) {
|
|
|
|
|
if (wolfSSL_CTX_UseSupportedCurve(ctx, WOLFSSL_ECC_X25519)
|
2017-10-19 16:17:51 -07:00
|
|
|
|
!= WOLFSSL_SUCCESS) {
|
2017-05-22 09:09:31 +10:00
|
|
|
|
err_sys("unable to support X25519");
|
|
|
|
|
}
|
2018-09-21 09:27:48 -07:00
|
|
|
|
}
|
|
|
|
|
#endif /* HAVE_CURVE25519 */
|
|
|
|
|
#ifdef HAVE_ECC
|
|
|
|
|
if (useSupCurve) {
|
|
|
|
|
#if !defined(NO_ECC_SECP) && \
|
|
|
|
|
(defined(HAVE_ECC384) || defined(HAVE_ALL_CURVES))
|
2018-04-13 11:53:42 +10:00
|
|
|
|
if (wolfSSL_CTX_UseSupportedCurve(ctx, WOLFSSL_ECC_SECP384R1)
|
|
|
|
|
!= WOLFSSL_SUCCESS) {
|
|
|
|
|
err_sys("unable to support secp384r1");
|
|
|
|
|
}
|
2018-09-21 09:27:48 -07:00
|
|
|
|
#endif
|
|
|
|
|
#if !defined(NO_ECC_SECP) && \
|
|
|
|
|
(!defined(NO_ECC256) || defined(HAVE_ALL_CURVES))
|
|
|
|
|
if (wolfSSL_CTX_UseSupportedCurve(ctx, WOLFSSL_ECC_SECP256R1)
|
|
|
|
|
!= WOLFSSL_SUCCESS) {
|
|
|
|
|
err_sys("unable to support secp256r1");
|
|
|
|
|
}
|
|
|
|
|
#endif
|
2017-05-22 09:09:31 +10:00
|
|
|
|
}
|
2018-09-21 09:27:48 -07:00
|
|
|
|
#endif /* HAVE_ECC */
|
2019-02-18 10:57:12 +10:00
|
|
|
|
#ifdef HAVE_FFDHE_2048
|
|
|
|
|
if (useSupCurve) {
|
|
|
|
|
if (wolfSSL_CTX_UseSupportedCurve(ctx, WOLFSSL_FFDHE_2048)
|
|
|
|
|
!= WOLFSSL_SUCCESS) {
|
|
|
|
|
err_sys("unable to support FFDHE 2048");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
#endif
|
2018-09-21 09:27:48 -07:00
|
|
|
|
#endif /* HAVE_SUPPORTED_CURVES */
|
2013-05-21 14:37:50 -07:00
|
|
|
|
|
2018-04-09 13:53:05 +10:00
|
|
|
|
#ifdef WOLFSSL_TLS13
|
|
|
|
|
if (noPskDheKe)
|
|
|
|
|
wolfSSL_CTX_no_dhe_psk(ctx);
|
|
|
|
|
#endif
|
|
|
|
|
#if defined(WOLFSSL_TLS13) && defined(WOLFSSL_POST_HANDSHAKE_AUTH)
|
|
|
|
|
if (postHandAuth)
|
|
|
|
|
wolfSSL_CTX_allow_post_handshake_auth(ctx);
|
|
|
|
|
#endif
|
|
|
|
|
|
2012-08-01 12:55:13 -07:00
|
|
|
|
if (benchmark) {
|
2015-10-14 19:13:45 -07:00
|
|
|
|
((func_args*)args)->return_code =
|
2016-08-25 22:20:35 -07:00
|
|
|
|
ClientBenchmarkConnections(ctx, host, port, dtlsUDP, dtlsSCTP,
|
2017-06-29 09:00:44 +10:00
|
|
|
|
benchmark, resumeSession, useX25519,
|
2019-01-24 14:30:06 +10:00
|
|
|
|
helloRetry, onlyKeyShare, version,
|
|
|
|
|
earlyData);
|
2018-07-27 10:19:04 -07:00
|
|
|
|
wolfSSL_CTX_free(ctx); ctx = NULL;
|
2018-07-27 10:16:14 -07:00
|
|
|
|
XEXIT_T(EXIT_SUCCESS);
|
2015-10-14 19:13:45 -07:00
|
|
|
|
}
|
2012-08-01 12:55:13 -07:00
|
|
|
|
|
2015-10-14 19:13:45 -07:00
|
|
|
|
if(throughput) {
|
|
|
|
|
((func_args*)args)->return_code =
|
2016-08-25 22:20:35 -07:00
|
|
|
|
ClientBenchmarkThroughput(ctx, host, port, dtlsUDP, dtlsSCTP,
|
2018-04-09 13:53:05 +10:00
|
|
|
|
block, throughput, useX25519);
|
2018-07-27 10:19:04 -07:00
|
|
|
|
wolfSSL_CTX_free(ctx); ctx = NULL;
|
2018-07-27 10:16:14 -07:00
|
|
|
|
XEXIT_T(EXIT_SUCCESS);
|
2011-02-05 11:14:47 -08:00
|
|
|
|
}
|
2015-10-14 19:13:45 -07:00
|
|
|
|
|
2015-01-05 14:48:43 -07:00
|
|
|
|
#if defined(WOLFSSL_MDK_ARM)
|
2017-10-11 09:09:52 -07:00
|
|
|
|
wolfSSL_CTX_set_verify(ctx, WOLFSSL_VERIFY_NONE, 0);
|
2013-05-19 10:02:13 +09:00
|
|
|
|
#endif
|
2015-10-14 19:13:45 -07:00
|
|
|
|
|
2016-12-08 19:05:35 -07:00
|
|
|
|
#if defined(OPENSSL_EXTRA)
|
|
|
|
|
if (wolfSSL_CTX_get_read_ahead(ctx) != 0) {
|
2018-07-27 10:19:04 -07:00
|
|
|
|
wolfSSL_CTX_free(ctx); ctx = NULL;
|
2016-12-08 19:05:35 -07:00
|
|
|
|
err_sys("bad read ahead default value");
|
|
|
|
|
}
|
2017-10-11 09:09:52 -07:00
|
|
|
|
if (wolfSSL_CTX_set_read_ahead(ctx, 1) != WOLFSSL_SUCCESS) {
|
2018-07-27 10:19:04 -07:00
|
|
|
|
wolfSSL_CTX_free(ctx); ctx = NULL;
|
2016-12-09 13:16:17 -07:00
|
|
|
|
err_sys("error setting read ahead value");
|
|
|
|
|
}
|
2016-12-08 19:05:35 -07:00
|
|
|
|
#endif
|
|
|
|
|
|
2017-10-20 14:56:29 -07:00
|
|
|
|
#if defined(WOLFSSL_STATIC_MEMORY) && defined(DEBUG_WOLFSSL)
|
|
|
|
|
fprintf(stderr, "Before creating SSL\n");
|
|
|
|
|
if (wolfSSL_CTX_is_static_memory(ctx, &mem_stats) != 1)
|
|
|
|
|
err_sys("ctx not using static memory");
|
|
|
|
|
if (wolfSSL_PrintStats(&mem_stats) != 1) /* function in test.h */
|
|
|
|
|
err_sys("error printing out memory stats");
|
|
|
|
|
#endif
|
|
|
|
|
|
2016-12-15 11:43:15 -08:00
|
|
|
|
if (doMcast) {
|
|
|
|
|
#ifdef WOLFSSL_MULTICAST
|
|
|
|
|
wolfSSL_CTX_mcast_set_member_id(ctx, mcastID);
|
2017-10-19 16:17:51 -07:00
|
|
|
|
if (wolfSSL_CTX_set_cipher_list(ctx, "WDM-NULL-SHA256")
|
|
|
|
|
!= WOLFSSL_SUCCESS) {
|
2018-07-27 10:19:04 -07:00
|
|
|
|
wolfSSL_CTX_free(ctx); ctx = NULL;
|
2016-12-15 11:43:15 -08:00
|
|
|
|
err_sys("Couldn't set multicast cipher list.");
|
2017-01-25 14:05:22 -08:00
|
|
|
|
}
|
2016-12-15 11:43:15 -08:00
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
|
2018-03-21 11:27:08 -07:00
|
|
|
|
#ifdef HAVE_PK_CALLBACKS
|
|
|
|
|
if (pkCallbacks)
|
|
|
|
|
SetupPkCallbacks(ctx);
|
|
|
|
|
#endif
|
|
|
|
|
|
2015-01-05 14:48:43 -07:00
|
|
|
|
ssl = wolfSSL_new(ctx);
|
2017-01-10 09:26:47 +10:00
|
|
|
|
if (ssl == NULL) {
|
2018-07-27 10:19:04 -07:00
|
|
|
|
wolfSSL_CTX_free(ctx); ctx = NULL;
|
2012-08-01 12:55:13 -07:00
|
|
|
|
err_sys("unable to get SSL object");
|
2017-01-10 09:26:47 +10:00
|
|
|
|
}
|
2016-01-29 09:38:13 -07:00
|
|
|
|
|
2018-10-09 12:54:41 -07:00
|
|
|
|
|
|
|
|
|
#ifndef NO_CERTS
|
|
|
|
|
if (useClientCert && loadCertKeyIntoSSLObj){
|
|
|
|
|
#ifndef TEST_LOAD_BUFFER
|
|
|
|
|
if (wolfSSL_use_certificate_chain_file(ssl, ourCert)
|
|
|
|
|
!= WOLFSSL_SUCCESS) {
|
|
|
|
|
wolfSSL_CTX_free(ctx); ctx = NULL;
|
|
|
|
|
err_sys("can't load client cert file, check file and run from"
|
|
|
|
|
" wolfSSL home dir");
|
|
|
|
|
}
|
|
|
|
|
#else
|
|
|
|
|
load_ssl_buffer(ssl, ourCert, WOLFSSL_CERT_CHAIN);
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (loadCertKeyIntoSSLObj
|
|
|
|
|
#if defined(HAVE_PK_CALLBACKS) && defined(TEST_PK_PRIVKEY)
|
|
|
|
|
&& !pkCallbacks
|
|
|
|
|
#endif
|
|
|
|
|
) {
|
|
|
|
|
#ifndef TEST_LOAD_BUFFER
|
|
|
|
|
if (wolfSSL_use_PrivateKey_file(ssl, ourKey, WOLFSSL_FILETYPE_PEM)
|
|
|
|
|
!= WOLFSSL_SUCCESS) {
|
|
|
|
|
wolfSSL_CTX_free(ctx); ctx = NULL;
|
|
|
|
|
err_sys("can't load client private key file, check file and run "
|
|
|
|
|
"from wolfSSL home dir");
|
|
|
|
|
}
|
|
|
|
|
#else
|
|
|
|
|
load_ssl_buffer(ssl, ourKey, WOLFSSL_KEY);
|
2016-11-07 10:15:04 -07:00
|
|
|
|
#endif
|
2018-10-09 12:54:41 -07:00
|
|
|
|
}
|
|
|
|
|
#endif /* !NO_CERTS */
|
|
|
|
|
|
|
|
|
|
#ifdef OPENSSL_EXTRA
|
|
|
|
|
wolfSSL_KeepArrays(ssl);
|
|
|
|
|
#endif
|
2016-11-07 10:15:04 -07:00
|
|
|
|
|
2017-10-20 14:56:29 -07:00
|
|
|
|
#if defined(WOLFSSL_STATIC_MEMORY) && defined(DEBUG_WOLFSSL)
|
2018-10-09 12:54:41 -07:00
|
|
|
|
fprintf(stderr, "After creating SSL\n");
|
|
|
|
|
if (wolfSSL_CTX_is_static_memory(ctx, &mem_stats) != 1)
|
|
|
|
|
err_sys("ctx not using static memory");
|
|
|
|
|
if (wolfSSL_PrintStats(&mem_stats) != 1) /* function in test.h */
|
2017-10-20 14:56:29 -07:00
|
|
|
|
err_sys("error printing out memory stats");
|
|
|
|
|
#endif
|
|
|
|
|
|
2018-10-09 12:54:41 -07:00
|
|
|
|
#ifdef WOLFSSL_TLS13
|
2016-11-24 01:31:07 +10:00
|
|
|
|
if (!helloRetry) {
|
|
|
|
|
if (onlyKeyShare == 0 || onlyKeyShare == 2) {
|
2017-05-23 15:56:52 +10:00
|
|
|
|
#ifdef HAVE_CURVE25519
|
2017-05-19 10:58:43 +10:00
|
|
|
|
if (useX25519) {
|
|
|
|
|
if (wolfSSL_UseKeyShare(ssl, WOLFSSL_ECC_X25519)
|
2018-04-13 11:53:42 +10:00
|
|
|
|
!= WOLFSSL_SUCCESS) {
|
2017-06-13 09:44:14 -07:00
|
|
|
|
err_sys("unable to use curve x25519");
|
2017-05-19 10:58:43 +10:00
|
|
|
|
}
|
|
|
|
|
}
|
2017-05-23 15:56:52 +10:00
|
|
|
|
#endif
|
2017-06-13 09:44:14 -07:00
|
|
|
|
#ifdef HAVE_ECC
|
2017-07-26 10:43:36 +10:00
|
|
|
|
#if defined(HAVE_ECC256) || defined(HAVE_ALL_CURVES)
|
2016-11-24 01:31:07 +10:00
|
|
|
|
if (wolfSSL_UseKeyShare(ssl, WOLFSSL_ECC_SECP256R1)
|
2018-04-13 11:53:42 +10:00
|
|
|
|
!= WOLFSSL_SUCCESS) {
|
2016-11-24 01:31:07 +10:00
|
|
|
|
err_sys("unable to use curve secp256r1");
|
|
|
|
|
}
|
2017-07-26 10:43:36 +10:00
|
|
|
|
#endif
|
2017-06-13 09:44:14 -07:00
|
|
|
|
#endif
|
2016-01-29 09:38:13 -07:00
|
|
|
|
}
|
2017-05-19 10:58:43 +10:00
|
|
|
|
if (onlyKeyShare == 0 || onlyKeyShare == 1) {
|
|
|
|
|
#ifdef HAVE_FFDHE_2048
|
2017-10-19 16:17:51 -07:00
|
|
|
|
if (wolfSSL_UseKeyShare(ssl, WOLFSSL_FFDHE_2048)
|
|
|
|
|
!= WOLFSSL_SUCCESS) {
|
2017-05-19 10:58:43 +10:00
|
|
|
|
err_sys("unable to use DH 2048-bit parameters");
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
}
|
2016-11-24 01:31:07 +10:00
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
wolfSSL_NoKeyShares(ssl);
|
|
|
|
|
}
|
2018-10-09 12:54:41 -07:00
|
|
|
|
#endif
|
2016-01-29 09:38:13 -07:00
|
|
|
|
|
2016-12-15 11:43:15 -08:00
|
|
|
|
if (doMcast) {
|
|
|
|
|
#ifdef WOLFSSL_MULTICAST
|
2017-01-25 14:05:22 -08:00
|
|
|
|
byte pms[512]; /* pre master secret */
|
|
|
|
|
byte cr[32]; /* client random */
|
|
|
|
|
byte sr[32]; /* server random */
|
2016-12-15 11:43:15 -08:00
|
|
|
|
const byte suite[2] = {0, 0xfe}; /* WDM_WITH_NULL_SHA256 */
|
|
|
|
|
|
|
|
|
|
XMEMSET(pms, 0x23, sizeof(pms));
|
|
|
|
|
XMEMSET(cr, 0xA5, sizeof(cr));
|
|
|
|
|
XMEMSET(sr, 0x5A, sizeof(sr));
|
|
|
|
|
|
|
|
|
|
if (wolfSSL_set_secret(ssl, 1, pms, sizeof(pms), cr, sr, suite)
|
2017-10-19 16:17:51 -07:00
|
|
|
|
!= WOLFSSL_SUCCESS) {
|
2018-07-27 10:19:04 -07:00
|
|
|
|
wolfSSL_CTX_free(ctx); ctx = NULL;
|
2016-12-15 11:43:15 -08:00
|
|
|
|
err_sys("unable to set mcast secret");
|
2017-01-25 14:05:22 -08:00
|
|
|
|
}
|
2016-12-15 11:43:15 -08:00
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
|
2014-10-20 09:25:14 -07:00
|
|
|
|
#ifdef HAVE_SESSION_TICKET
|
2015-01-05 14:48:43 -07:00
|
|
|
|
wolfSSL_set_SessionTicket_cb(ssl, sessionTicketCB, (void*)"initial session");
|
2014-10-20 09:25:14 -07:00
|
|
|
|
#endif
|
2015-10-13 15:00:53 -07:00
|
|
|
|
|
2018-09-28 09:05:59 -07:00
|
|
|
|
#ifdef HAVE_TRUSTED_CA
|
|
|
|
|
if (trustedCaKeyId) {
|
|
|
|
|
if (wolfSSL_UseTrustedCA(ssl, WOLFSSL_TRUSTED_CA_PRE_AGREED,
|
|
|
|
|
NULL, 0) != WOLFSSL_SUCCESS) {
|
|
|
|
|
err_sys("UseTrustedCA failed");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
#endif
|
2015-10-13 15:00:53 -07:00
|
|
|
|
#ifdef HAVE_ALPN
|
|
|
|
|
if (alpnList != NULL) {
|
|
|
|
|
printf("ALPN accepted protocols list : %s\n", alpnList);
|
|
|
|
|
wolfSSL_UseALPN(ssl, alpnList, (word32)XSTRLEN(alpnList), alpn_opt);
|
|
|
|
|
}
|
|
|
|
|
#endif
|
2018-08-02 16:25:38 -07:00
|
|
|
|
|
|
|
|
|
#if defined(HAVE_CERTIFICATE_STATUS_REQUEST) || \
|
|
|
|
|
defined(HAVE_CERTIFICATE_STATUS_REQUEST_V2)
|
2015-11-02 15:51:01 -03:00
|
|
|
|
if (statusRequest) {
|
2018-08-02 16:25:38 -07:00
|
|
|
|
if (version == 4 &&
|
|
|
|
|
(statusRequest == OCSP_STAPLINGV2 || \
|
|
|
|
|
statusRequest == OCSP_STAPLINGV2_MULTI)) {
|
|
|
|
|
err_sys("Cannot use OCSP Stapling V2 with TLSv1.3");
|
|
|
|
|
}
|
|
|
|
|
|
2017-12-26 22:30:22 -03:00
|
|
|
|
if (wolfSSL_CTX_EnableOCSPStapling(ctx) != WOLFSSL_SUCCESS)
|
|
|
|
|
err_sys("can't enable OCSP Stapling Certificate Manager");
|
|
|
|
|
|
2015-12-28 19:38:04 -03:00
|
|
|
|
switch (statusRequest) {
|
2018-08-02 16:25:38 -07:00
|
|
|
|
#ifdef HAVE_CERTIFICATE_STATUS_REQUEST
|
|
|
|
|
case OCSP_STAPLING:
|
2015-12-28 19:38:04 -03:00
|
|
|
|
if (wolfSSL_UseOCSPStapling(ssl, WOLFSSL_CSR_OCSP,
|
2017-10-19 16:17:51 -07:00
|
|
|
|
WOLFSSL_CSR_OCSP_USE_NONCE) != WOLFSSL_SUCCESS) {
|
2018-07-27 10:19:04 -07:00
|
|
|
|
wolfSSL_free(ssl); ssl = NULL;
|
|
|
|
|
wolfSSL_CTX_free(ctx); ctx = NULL;
|
2015-12-28 19:38:04 -03:00
|
|
|
|
err_sys("UseCertificateStatusRequest failed");
|
2017-01-10 09:26:47 +10:00
|
|
|
|
}
|
2015-12-28 19:38:04 -03:00
|
|
|
|
break;
|
2018-08-02 16:25:38 -07:00
|
|
|
|
#endif
|
|
|
|
|
#ifdef HAVE_CERTIFICATE_STATUS_REQUEST_V2
|
|
|
|
|
case OCSP_STAPLINGV2:
|
2015-12-28 19:38:04 -03:00
|
|
|
|
if (wolfSSL_UseOCSPStaplingV2(ssl,
|
|
|
|
|
WOLFSSL_CSR2_OCSP, WOLFSSL_CSR2_OCSP_USE_NONCE)
|
2017-10-19 16:17:51 -07:00
|
|
|
|
!= WOLFSSL_SUCCESS) {
|
2018-07-27 10:19:04 -07:00
|
|
|
|
wolfSSL_free(ssl); ssl = NULL;
|
|
|
|
|
wolfSSL_CTX_free(ctx); ctx = NULL;
|
2015-12-28 19:38:04 -03:00
|
|
|
|
err_sys("UseCertificateStatusRequest failed");
|
2017-01-10 09:26:47 +10:00
|
|
|
|
}
|
2015-12-28 19:38:04 -03:00
|
|
|
|
break;
|
2018-08-02 16:25:38 -07:00
|
|
|
|
case OCSP_STAPLINGV2_MULTI:
|
2015-12-28 19:38:04 -03:00
|
|
|
|
if (wolfSSL_UseOCSPStaplingV2(ssl,
|
|
|
|
|
WOLFSSL_CSR2_OCSP_MULTI, 0)
|
2017-10-19 16:17:51 -07:00
|
|
|
|
!= WOLFSSL_SUCCESS) {
|
2018-07-27 10:19:04 -07:00
|
|
|
|
wolfSSL_free(ssl); ssl = NULL;
|
|
|
|
|
wolfSSL_CTX_free(ctx); ctx = NULL;
|
2015-12-28 19:38:04 -03:00
|
|
|
|
err_sys("UseCertificateStatusRequest failed");
|
2017-01-10 09:26:47 +10:00
|
|
|
|
}
|
2015-12-28 19:38:04 -03:00
|
|
|
|
break;
|
2018-08-02 16:25:38 -07:00
|
|
|
|
#endif
|
|
|
|
|
default:
|
|
|
|
|
err_sys("Invalid OCSP Stapling option");
|
2015-12-28 19:38:04 -03:00
|
|
|
|
}
|
2015-11-02 15:51:01 -03:00
|
|
|
|
|
2015-11-05 11:36:11 -03:00
|
|
|
|
wolfSSL_CTX_EnableOCSP(ctx, 0);
|
2015-11-02 15:51:01 -03:00
|
|
|
|
}
|
|
|
|
|
#endif
|
2015-10-13 15:00:53 -07:00
|
|
|
|
|
2018-12-03 13:53:44 -08:00
|
|
|
|
#if !defined(NO_DH) && !defined(WOLFSSL_OLD_PRIME_CHECK) && \
|
|
|
|
|
!defined(HAVE_FIPS) && !defined(HAVE_SELFTEST)
|
|
|
|
|
if (!doDhKeyCheck)
|
|
|
|
|
wolfSSL_SetEnableDhKeyTest(ssl, 0);
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
2016-08-25 22:20:35 -07:00
|
|
|
|
tcp_connect(&sockfd, host, port, dtlsUDP, dtlsSCTP, ssl);
|
2017-10-11 09:09:52 -07:00
|
|
|
|
if (wolfSSL_set_fd(ssl, sockfd) != WOLFSSL_SUCCESS) {
|
2018-07-27 10:19:04 -07:00
|
|
|
|
wolfSSL_free(ssl); ssl = NULL;
|
|
|
|
|
wolfSSL_CTX_free(ctx); ctx = NULL;
|
2016-03-25 13:59:04 -06:00
|
|
|
|
err_sys("error in setting fd");
|
|
|
|
|
}
|
2016-04-22 13:46:54 -06:00
|
|
|
|
|
|
|
|
|
/* STARTTLS */
|
|
|
|
|
if (doSTARTTLS) {
|
2017-10-11 09:09:52 -07:00
|
|
|
|
if (StartTLS_Init(&sockfd) != WOLFSSL_SUCCESS) {
|
2018-07-27 10:19:04 -07:00
|
|
|
|
wolfSSL_free(ssl); ssl = NULL;
|
|
|
|
|
wolfSSL_CTX_free(ctx); ctx = NULL;
|
2016-04-28 14:21:33 -06:00
|
|
|
|
err_sys("error during STARTTLS protocol");
|
2016-04-22 13:46:54 -06:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2012-05-16 17:04:56 -07:00
|
|
|
|
#ifdef HAVE_CRL
|
2017-06-16 16:02:36 -07:00
|
|
|
|
if (disableCRL == 0 && !useVerifyCb) {
|
2017-03-06 09:49:05 -08:00
|
|
|
|
#ifdef HAVE_IO_TIMEOUT
|
|
|
|
|
wolfIO_SetTimeout(DEFAULT_TIMEOUT_SEC);
|
|
|
|
|
#endif
|
|
|
|
|
|
2017-10-11 09:09:52 -07:00
|
|
|
|
if (wolfSSL_EnableCRL(ssl, WOLFSSL_CRL_CHECKALL) != WOLFSSL_SUCCESS) {
|
2018-07-27 10:19:04 -07:00
|
|
|
|
wolfSSL_free(ssl); ssl = NULL;
|
|
|
|
|
wolfSSL_CTX_free(ctx); ctx = NULL;
|
2015-05-07 10:02:43 -07:00
|
|
|
|
err_sys("can't enable crl check");
|
2017-01-10 09:26:47 +10:00
|
|
|
|
}
|
2017-10-11 09:09:52 -07:00
|
|
|
|
if (wolfSSL_LoadCRL(ssl, crlPemDir, WOLFSSL_FILETYPE_PEM, 0)
|
2017-10-19 16:17:51 -07:00
|
|
|
|
!= WOLFSSL_SUCCESS) {
|
2018-07-27 10:19:04 -07:00
|
|
|
|
wolfSSL_free(ssl); ssl = NULL;
|
|
|
|
|
wolfSSL_CTX_free(ctx); ctx = NULL;
|
2015-05-07 10:02:43 -07:00
|
|
|
|
err_sys("can't load crl, check crlfile and date validity");
|
2017-01-10 09:26:47 +10:00
|
|
|
|
}
|
2017-10-11 09:09:52 -07:00
|
|
|
|
if (wolfSSL_SetCRL_Cb(ssl, CRL_CallBack) != WOLFSSL_SUCCESS) {
|
2018-07-27 10:19:04 -07:00
|
|
|
|
wolfSSL_free(ssl); ssl = NULL;
|
|
|
|
|
wolfSSL_CTX_free(ctx); ctx = NULL;
|
2015-05-07 10:02:43 -07:00
|
|
|
|
err_sys("can't set crl callback");
|
2017-01-10 09:26:47 +10:00
|
|
|
|
}
|
2015-05-07 10:02:43 -07:00
|
|
|
|
}
|
2013-08-09 17:27:15 -07:00
|
|
|
|
#endif
|
2014-09-24 18:48:23 -07:00
|
|
|
|
#ifdef HAVE_SECURE_RENEGOTIATION
|
|
|
|
|
if (scr) {
|
2017-10-11 09:09:52 -07:00
|
|
|
|
if (wolfSSL_UseSecureRenegotiation(ssl) != WOLFSSL_SUCCESS) {
|
2018-07-27 10:19:04 -07:00
|
|
|
|
wolfSSL_free(ssl); ssl = NULL;
|
|
|
|
|
wolfSSL_CTX_free(ctx); ctx = NULL;
|
2014-09-24 18:48:23 -07:00
|
|
|
|
err_sys("can't enable secure renegotiation");
|
2017-01-10 09:26:47 +10:00
|
|
|
|
}
|
2014-09-24 18:48:23 -07:00
|
|
|
|
}
|
|
|
|
|
#endif
|
2013-08-09 17:27:15 -07:00
|
|
|
|
#ifdef ATOMIC_USER
|
|
|
|
|
if (atomicUser)
|
|
|
|
|
SetupAtomicUser(ctx, ssl);
|
2013-08-22 18:19:39 -07:00
|
|
|
|
#endif
|
|
|
|
|
#ifdef HAVE_PK_CALLBACKS
|
|
|
|
|
if (pkCallbacks)
|
2018-03-21 11:27:08 -07:00
|
|
|
|
SetupPkCallbackContexts(ssl, &pkCbInfo);
|
2012-05-16 17:04:56 -07:00
|
|
|
|
#endif
|
2012-08-10 10:15:37 -07:00
|
|
|
|
if (matchName && doPeerCheck)
|
2015-01-05 14:48:43 -07:00
|
|
|
|
wolfSSL_check_domain_name(ssl, domain);
|
|
|
|
|
#ifndef WOLFSSL_CALLBACKS
|
2012-10-17 13:13:58 -07:00
|
|
|
|
if (nonBlocking) {
|
2018-05-23 16:07:45 -07:00
|
|
|
|
#ifdef WOLFSSL_DTLS
|
|
|
|
|
if (doDTLS) {
|
|
|
|
|
wolfSSL_dtls_set_using_nonblock(ssl, 1);
|
|
|
|
|
}
|
|
|
|
|
#endif
|
2012-10-17 13:13:58 -07:00
|
|
|
|
tcp_set_nonblocking(&sockfd);
|
Intel QuickAssist (QAT) support and async enhancements/fixes:
* Adds ./configure "--with-intelqa=../QAT1.6”, port files, memory management and README.md (see wolfcrypt/src/port/intel/).
* Added Intel QAT support for RSA public/private (CRT/non-CRT), AES CBC/GCM, ECDH/ECDSA, DH, DES3, SHA, SHA224, SHA256, SHA384, SHA512, MD5 and HMAC.
* wolfSSL async enabled all client and server: PKI, Encrypt/Decrypt, Hashing/HMAC and Certificate Sign/Verify.
* wolfSSL async support in functions: Encrypt, Decrypt, VerifyMAC, BuildMessage, ConfirmSignature, DoCertificate, ParseCertRelative, and MakeSignature.
* wolfCrypt test and benchmark async support added for all HW acceleration.
* wolfCrypt benchmark multi-threading support.
* Added QuickAssist memory overrides for XMALLOC, XFREE and XREALLOC. XREALLOC determines if existing pointer needs reallocated for NUMA.
* Refactor to make sure “heap” is available for async dev init.
* Added async support for all examples for connect, accept, read and write.
* Added new WC_BIGINT (in wolfmath.c) for async hardware support.
* Added async simulator tests for DES3 CBC, AES CBC/GCM.
* Added QAT standalone build for unit testing.
* Added int return code to SHA and MD5 functions.
* Refactor of the async stack variable handling, so async operations have generic args buffer area and cleanup function pointer.
* Combined duplicate code for async push/pop handling.
* Refactor internal.c to add AllocKey / FreeKey.
* Refactor of hash init/free in TLS to use InitHashes and FreeHashes.
* Refactor of the async event->context to use WOLF_EVENT_TYPE_ASYNC_WOLFSSL for WOLFSSL* and WOLF_EVENT_TYPE_ASYNC_WOLFCRYPT for WC_ASYNC_DEV*.
* Suppress error message for WC_PENDING_E.
* Implemented "wolfSSL_EVP_MD_CTX_init" to do memset.
* Cleanup of the openssl compat CTX sizes when async is enabled.
* Cleanup of AES, DES3, DH, SHA, MD5, DES3, DH, HMAC, MD5 for consistency and readability.
* Cleanup of the OPAQUE_LEN.
* Cleanup to use ENCRYPT_LEN instead of sizeof(ssl->arrays.preMasterSecret).
* Changed ssl->arrays.preMasterSecret to use XMALLOC (accelerates HW operations)
* Reduce verbosity with debug enabled for "GetMyVersion", "wolfSSL Using RSA OAEP padding" and "wolfSSL Using RSA PKCSV15 padding".
* Updated RSA un-padding error message so its different than one above it for better debugging.
* Added QAT async enables for each algorithm.
* Refactor of the async init to use _ex.
* Added WC_ASYNC_THRESH_NONE to allow bypass of the async thresholds for testing.
* Reformatted the benchmark results:
PKI: "RSA 2048 private HW 18522 ops took 1.003 sec, avg 0.054 ms, 18467.763 ops/sec"
Crypto/Hashing: SHA-256 SW 350 megs took 1.009 seconds, 346.946 MB/s Cycles per byte = 9.87
* Added min execution time for all benchmarks.
* Moved wc_*GetHash and wc_*RestorePos to appropriate files so use of isCopy flag is local.
* Fix for ECC sign status sometimes being invalid due to uninitialized ECC digest in benchmark.
* Added new DECLARE_VAR/FREE_VAR and DECLARE_ARRAY/FREE_ARRAY macros for helping setup test/benchmark variables to accelerate async.
* Added NO_SW_BENCH option to only run HW bench.
* Added support for PRNG to use hardware SHA256 if _wc devId provided.
* Fix to prevent curve tests from running against wrong curve sizes. Changed wc_ecc_set_curve to match on exact size.
* Added the wc_*GetHash calls to the wolfCrypt tests.
* Added async hardware start/stop to wolfSSL init/cleanup.
* Refactor to add wc_*Copy for hashing context (for async), which replaces wc_*RestorePos.
* Fixes for building with TI hashing (including: SHA224, missing new API’s and building with dummy build for non hw testing). Note: We need to add build test for this `./configure CFLAGS="-DWOLFSSL_TI_HASH -DTI_DUMMY_BUILD”`.
* Added arg checks on wc_*GetHash and wc_*Copy.
* Cleanup of the BuildMD5, BuildSHA, BuildMD5_CertVerify and BuildSHA_CertVerify functions.
* Added new ./configure --enable-asyncthreads, to allow enable/disable of the async threading support. If --enable-asynccrypt set this will be enabled by default if pthread is supported. Allows multi-threaded benchmarks with async simulator.
* Added checks for all hashing to verify valid ->buffLen.
* Fix for SHA512 scan-build warning about un-initialized “W_X”.
* Fix for valgrind un-initialized use of buffer in AllocDer (der->buffer) and BuildTlsFinished handshake_hash.
* Refactor of the benchmarking to use common function for start, check and finish of the stats.
* Fixed issue with ECC cache loading in multi-threading.
* Fix bug with AESNI not aligned code that assumes XMALLOC is 16-byte aligned.
* Added new WC_ASYNC_NO_… options to allow disabling of individual async algorithms. New defines are: WC_ASYNC_NO_CRYPT, WC_ASYNC_NO_PKI and WC_ASYNC_NO_HASH. Additionally each algorithm has a WC_ASYNC_NO_[ALGO] define.
* Added “wolfSSL_GetAllocators” API and fixed the wolfCrypt memcb_test so it restores callback pointers after test is complete (fixes issue with using custom allocators and test breaking it).
2017-04-07 15:46:32 -07:00
|
|
|
|
ret = NonBlockingSSL_Connect(ssl);
|
2012-10-17 13:13:58 -07:00
|
|
|
|
}
|
2016-03-04 10:05:22 -08:00
|
|
|
|
else {
|
2018-08-28 15:37:15 +10:00
|
|
|
|
#ifdef WOLFSSL_EARLY_DATA
|
2018-10-24 09:47:30 +10:00
|
|
|
|
if (usePsk && earlyData)
|
2018-08-28 15:37:15 +10:00
|
|
|
|
EarlyData(ctx, ssl, msg, msgSz, buffer);
|
|
|
|
|
#endif
|
2016-03-04 10:05:22 -08:00
|
|
|
|
do {
|
Intel QuickAssist (QAT) support and async enhancements/fixes:
* Adds ./configure "--with-intelqa=../QAT1.6”, port files, memory management and README.md (see wolfcrypt/src/port/intel/).
* Added Intel QAT support for RSA public/private (CRT/non-CRT), AES CBC/GCM, ECDH/ECDSA, DH, DES3, SHA, SHA224, SHA256, SHA384, SHA512, MD5 and HMAC.
* wolfSSL async enabled all client and server: PKI, Encrypt/Decrypt, Hashing/HMAC and Certificate Sign/Verify.
* wolfSSL async support in functions: Encrypt, Decrypt, VerifyMAC, BuildMessage, ConfirmSignature, DoCertificate, ParseCertRelative, and MakeSignature.
* wolfCrypt test and benchmark async support added for all HW acceleration.
* wolfCrypt benchmark multi-threading support.
* Added QuickAssist memory overrides for XMALLOC, XFREE and XREALLOC. XREALLOC determines if existing pointer needs reallocated for NUMA.
* Refactor to make sure “heap” is available for async dev init.
* Added async support for all examples for connect, accept, read and write.
* Added new WC_BIGINT (in wolfmath.c) for async hardware support.
* Added async simulator tests for DES3 CBC, AES CBC/GCM.
* Added QAT standalone build for unit testing.
* Added int return code to SHA and MD5 functions.
* Refactor of the async stack variable handling, so async operations have generic args buffer area and cleanup function pointer.
* Combined duplicate code for async push/pop handling.
* Refactor internal.c to add AllocKey / FreeKey.
* Refactor of hash init/free in TLS to use InitHashes and FreeHashes.
* Refactor of the async event->context to use WOLF_EVENT_TYPE_ASYNC_WOLFSSL for WOLFSSL* and WOLF_EVENT_TYPE_ASYNC_WOLFCRYPT for WC_ASYNC_DEV*.
* Suppress error message for WC_PENDING_E.
* Implemented "wolfSSL_EVP_MD_CTX_init" to do memset.
* Cleanup of the openssl compat CTX sizes when async is enabled.
* Cleanup of AES, DES3, DH, SHA, MD5, DES3, DH, HMAC, MD5 for consistency and readability.
* Cleanup of the OPAQUE_LEN.
* Cleanup to use ENCRYPT_LEN instead of sizeof(ssl->arrays.preMasterSecret).
* Changed ssl->arrays.preMasterSecret to use XMALLOC (accelerates HW operations)
* Reduce verbosity with debug enabled for "GetMyVersion", "wolfSSL Using RSA OAEP padding" and "wolfSSL Using RSA PKCSV15 padding".
* Updated RSA un-padding error message so its different than one above it for better debugging.
* Added QAT async enables for each algorithm.
* Refactor of the async init to use _ex.
* Added WC_ASYNC_THRESH_NONE to allow bypass of the async thresholds for testing.
* Reformatted the benchmark results:
PKI: "RSA 2048 private HW 18522 ops took 1.003 sec, avg 0.054 ms, 18467.763 ops/sec"
Crypto/Hashing: SHA-256 SW 350 megs took 1.009 seconds, 346.946 MB/s Cycles per byte = 9.87
* Added min execution time for all benchmarks.
* Moved wc_*GetHash and wc_*RestorePos to appropriate files so use of isCopy flag is local.
* Fix for ECC sign status sometimes being invalid due to uninitialized ECC digest in benchmark.
* Added new DECLARE_VAR/FREE_VAR and DECLARE_ARRAY/FREE_ARRAY macros for helping setup test/benchmark variables to accelerate async.
* Added NO_SW_BENCH option to only run HW bench.
* Added support for PRNG to use hardware SHA256 if _wc devId provided.
* Fix to prevent curve tests from running against wrong curve sizes. Changed wc_ecc_set_curve to match on exact size.
* Added the wc_*GetHash calls to the wolfCrypt tests.
* Added async hardware start/stop to wolfSSL init/cleanup.
* Refactor to add wc_*Copy for hashing context (for async), which replaces wc_*RestorePos.
* Fixes for building with TI hashing (including: SHA224, missing new API’s and building with dummy build for non hw testing). Note: We need to add build test for this `./configure CFLAGS="-DWOLFSSL_TI_HASH -DTI_DUMMY_BUILD”`.
* Added arg checks on wc_*GetHash and wc_*Copy.
* Cleanup of the BuildMD5, BuildSHA, BuildMD5_CertVerify and BuildSHA_CertVerify functions.
* Added new ./configure --enable-asyncthreads, to allow enable/disable of the async threading support. If --enable-asynccrypt set this will be enabled by default if pthread is supported. Allows multi-threaded benchmarks with async simulator.
* Added checks for all hashing to verify valid ->buffLen.
* Fix for SHA512 scan-build warning about un-initialized “W_X”.
* Fix for valgrind un-initialized use of buffer in AllocDer (der->buffer) and BuildTlsFinished handshake_hash.
* Refactor of the benchmarking to use common function for start, check and finish of the stats.
* Fixed issue with ECC cache loading in multi-threading.
* Fix bug with AESNI not aligned code that assumes XMALLOC is 16-byte aligned.
* Added new WC_ASYNC_NO_… options to allow disabling of individual async algorithms. New defines are: WC_ASYNC_NO_CRYPT, WC_ASYNC_NO_PKI and WC_ASYNC_NO_HASH. Additionally each algorithm has a WC_ASYNC_NO_[ALGO] define.
* Added “wolfSSL_GetAllocators” API and fixed the wolfCrypt memcb_test so it restores callback pointers after test is complete (fixes issue with using custom allocators and test breaking it).
2017-04-07 15:46:32 -07:00
|
|
|
|
err = 0; /* reset error */
|
2016-03-04 10:05:22 -08:00
|
|
|
|
ret = wolfSSL_connect(ssl);
|
2017-10-11 09:09:52 -07:00
|
|
|
|
if (ret != WOLFSSL_SUCCESS) {
|
2016-03-04 10:05:22 -08:00
|
|
|
|
err = wolfSSL_get_error(ssl, 0);
|
Intel QuickAssist (QAT) support and async enhancements/fixes:
* Adds ./configure "--with-intelqa=../QAT1.6”, port files, memory management and README.md (see wolfcrypt/src/port/intel/).
* Added Intel QAT support for RSA public/private (CRT/non-CRT), AES CBC/GCM, ECDH/ECDSA, DH, DES3, SHA, SHA224, SHA256, SHA384, SHA512, MD5 and HMAC.
* wolfSSL async enabled all client and server: PKI, Encrypt/Decrypt, Hashing/HMAC and Certificate Sign/Verify.
* wolfSSL async support in functions: Encrypt, Decrypt, VerifyMAC, BuildMessage, ConfirmSignature, DoCertificate, ParseCertRelative, and MakeSignature.
* wolfCrypt test and benchmark async support added for all HW acceleration.
* wolfCrypt benchmark multi-threading support.
* Added QuickAssist memory overrides for XMALLOC, XFREE and XREALLOC. XREALLOC determines if existing pointer needs reallocated for NUMA.
* Refactor to make sure “heap” is available for async dev init.
* Added async support for all examples for connect, accept, read and write.
* Added new WC_BIGINT (in wolfmath.c) for async hardware support.
* Added async simulator tests for DES3 CBC, AES CBC/GCM.
* Added QAT standalone build for unit testing.
* Added int return code to SHA and MD5 functions.
* Refactor of the async stack variable handling, so async operations have generic args buffer area and cleanup function pointer.
* Combined duplicate code for async push/pop handling.
* Refactor internal.c to add AllocKey / FreeKey.
* Refactor of hash init/free in TLS to use InitHashes and FreeHashes.
* Refactor of the async event->context to use WOLF_EVENT_TYPE_ASYNC_WOLFSSL for WOLFSSL* and WOLF_EVENT_TYPE_ASYNC_WOLFCRYPT for WC_ASYNC_DEV*.
* Suppress error message for WC_PENDING_E.
* Implemented "wolfSSL_EVP_MD_CTX_init" to do memset.
* Cleanup of the openssl compat CTX sizes when async is enabled.
* Cleanup of AES, DES3, DH, SHA, MD5, DES3, DH, HMAC, MD5 for consistency and readability.
* Cleanup of the OPAQUE_LEN.
* Cleanup to use ENCRYPT_LEN instead of sizeof(ssl->arrays.preMasterSecret).
* Changed ssl->arrays.preMasterSecret to use XMALLOC (accelerates HW operations)
* Reduce verbosity with debug enabled for "GetMyVersion", "wolfSSL Using RSA OAEP padding" and "wolfSSL Using RSA PKCSV15 padding".
* Updated RSA un-padding error message so its different than one above it for better debugging.
* Added QAT async enables for each algorithm.
* Refactor of the async init to use _ex.
* Added WC_ASYNC_THRESH_NONE to allow bypass of the async thresholds for testing.
* Reformatted the benchmark results:
PKI: "RSA 2048 private HW 18522 ops took 1.003 sec, avg 0.054 ms, 18467.763 ops/sec"
Crypto/Hashing: SHA-256 SW 350 megs took 1.009 seconds, 346.946 MB/s Cycles per byte = 9.87
* Added min execution time for all benchmarks.
* Moved wc_*GetHash and wc_*RestorePos to appropriate files so use of isCopy flag is local.
* Fix for ECC sign status sometimes being invalid due to uninitialized ECC digest in benchmark.
* Added new DECLARE_VAR/FREE_VAR and DECLARE_ARRAY/FREE_ARRAY macros for helping setup test/benchmark variables to accelerate async.
* Added NO_SW_BENCH option to only run HW bench.
* Added support for PRNG to use hardware SHA256 if _wc devId provided.
* Fix to prevent curve tests from running against wrong curve sizes. Changed wc_ecc_set_curve to match on exact size.
* Added the wc_*GetHash calls to the wolfCrypt tests.
* Added async hardware start/stop to wolfSSL init/cleanup.
* Refactor to add wc_*Copy for hashing context (for async), which replaces wc_*RestorePos.
* Fixes for building with TI hashing (including: SHA224, missing new API’s and building with dummy build for non hw testing). Note: We need to add build test for this `./configure CFLAGS="-DWOLFSSL_TI_HASH -DTI_DUMMY_BUILD”`.
* Added arg checks on wc_*GetHash and wc_*Copy.
* Cleanup of the BuildMD5, BuildSHA, BuildMD5_CertVerify and BuildSHA_CertVerify functions.
* Added new ./configure --enable-asyncthreads, to allow enable/disable of the async threading support. If --enable-asynccrypt set this will be enabled by default if pthread is supported. Allows multi-threaded benchmarks with async simulator.
* Added checks for all hashing to verify valid ->buffLen.
* Fix for SHA512 scan-build warning about un-initialized “W_X”.
* Fix for valgrind un-initialized use of buffer in AllocDer (der->buffer) and BuildTlsFinished handshake_hash.
* Refactor of the benchmarking to use common function for start, check and finish of the stats.
* Fixed issue with ECC cache loading in multi-threading.
* Fix bug with AESNI not aligned code that assumes XMALLOC is 16-byte aligned.
* Added new WC_ASYNC_NO_… options to allow disabling of individual async algorithms. New defines are: WC_ASYNC_NO_CRYPT, WC_ASYNC_NO_PKI and WC_ASYNC_NO_HASH. Additionally each algorithm has a WC_ASYNC_NO_[ALGO] define.
* Added “wolfSSL_GetAllocators” API and fixed the wolfCrypt memcb_test so it restores callback pointers after test is complete (fixes issue with using custom allocators and test breaking it).
2017-04-07 15:46:32 -07:00
|
|
|
|
#ifdef WOLFSSL_ASYNC_CRYPT
|
|
|
|
|
if (err == WC_PENDING_E) {
|
|
|
|
|
ret = wolfSSL_AsyncPoll(ssl, WOLF_POLL_FLAG_CHECK_HW);
|
|
|
|
|
if (ret < 0) break;
|
|
|
|
|
}
|
|
|
|
|
#endif
|
2016-03-04 10:05:22 -08:00
|
|
|
|
}
|
Intel QuickAssist (QAT) support and async enhancements/fixes:
* Adds ./configure "--with-intelqa=../QAT1.6”, port files, memory management and README.md (see wolfcrypt/src/port/intel/).
* Added Intel QAT support for RSA public/private (CRT/non-CRT), AES CBC/GCM, ECDH/ECDSA, DH, DES3, SHA, SHA224, SHA256, SHA384, SHA512, MD5 and HMAC.
* wolfSSL async enabled all client and server: PKI, Encrypt/Decrypt, Hashing/HMAC and Certificate Sign/Verify.
* wolfSSL async support in functions: Encrypt, Decrypt, VerifyMAC, BuildMessage, ConfirmSignature, DoCertificate, ParseCertRelative, and MakeSignature.
* wolfCrypt test and benchmark async support added for all HW acceleration.
* wolfCrypt benchmark multi-threading support.
* Added QuickAssist memory overrides for XMALLOC, XFREE and XREALLOC. XREALLOC determines if existing pointer needs reallocated for NUMA.
* Refactor to make sure “heap” is available for async dev init.
* Added async support for all examples for connect, accept, read and write.
* Added new WC_BIGINT (in wolfmath.c) for async hardware support.
* Added async simulator tests for DES3 CBC, AES CBC/GCM.
* Added QAT standalone build for unit testing.
* Added int return code to SHA and MD5 functions.
* Refactor of the async stack variable handling, so async operations have generic args buffer area and cleanup function pointer.
* Combined duplicate code for async push/pop handling.
* Refactor internal.c to add AllocKey / FreeKey.
* Refactor of hash init/free in TLS to use InitHashes and FreeHashes.
* Refactor of the async event->context to use WOLF_EVENT_TYPE_ASYNC_WOLFSSL for WOLFSSL* and WOLF_EVENT_TYPE_ASYNC_WOLFCRYPT for WC_ASYNC_DEV*.
* Suppress error message for WC_PENDING_E.
* Implemented "wolfSSL_EVP_MD_CTX_init" to do memset.
* Cleanup of the openssl compat CTX sizes when async is enabled.
* Cleanup of AES, DES3, DH, SHA, MD5, DES3, DH, HMAC, MD5 for consistency and readability.
* Cleanup of the OPAQUE_LEN.
* Cleanup to use ENCRYPT_LEN instead of sizeof(ssl->arrays.preMasterSecret).
* Changed ssl->arrays.preMasterSecret to use XMALLOC (accelerates HW operations)
* Reduce verbosity with debug enabled for "GetMyVersion", "wolfSSL Using RSA OAEP padding" and "wolfSSL Using RSA PKCSV15 padding".
* Updated RSA un-padding error message so its different than one above it for better debugging.
* Added QAT async enables for each algorithm.
* Refactor of the async init to use _ex.
* Added WC_ASYNC_THRESH_NONE to allow bypass of the async thresholds for testing.
* Reformatted the benchmark results:
PKI: "RSA 2048 private HW 18522 ops took 1.003 sec, avg 0.054 ms, 18467.763 ops/sec"
Crypto/Hashing: SHA-256 SW 350 megs took 1.009 seconds, 346.946 MB/s Cycles per byte = 9.87
* Added min execution time for all benchmarks.
* Moved wc_*GetHash and wc_*RestorePos to appropriate files so use of isCopy flag is local.
* Fix for ECC sign status sometimes being invalid due to uninitialized ECC digest in benchmark.
* Added new DECLARE_VAR/FREE_VAR and DECLARE_ARRAY/FREE_ARRAY macros for helping setup test/benchmark variables to accelerate async.
* Added NO_SW_BENCH option to only run HW bench.
* Added support for PRNG to use hardware SHA256 if _wc devId provided.
* Fix to prevent curve tests from running against wrong curve sizes. Changed wc_ecc_set_curve to match on exact size.
* Added the wc_*GetHash calls to the wolfCrypt tests.
* Added async hardware start/stop to wolfSSL init/cleanup.
* Refactor to add wc_*Copy for hashing context (for async), which replaces wc_*RestorePos.
* Fixes for building with TI hashing (including: SHA224, missing new API’s and building with dummy build for non hw testing). Note: We need to add build test for this `./configure CFLAGS="-DWOLFSSL_TI_HASH -DTI_DUMMY_BUILD”`.
* Added arg checks on wc_*GetHash and wc_*Copy.
* Cleanup of the BuildMD5, BuildSHA, BuildMD5_CertVerify and BuildSHA_CertVerify functions.
* Added new ./configure --enable-asyncthreads, to allow enable/disable of the async threading support. If --enable-asynccrypt set this will be enabled by default if pthread is supported. Allows multi-threaded benchmarks with async simulator.
* Added checks for all hashing to verify valid ->buffLen.
* Fix for SHA512 scan-build warning about un-initialized “W_X”.
* Fix for valgrind un-initialized use of buffer in AllocDer (der->buffer) and BuildTlsFinished handshake_hash.
* Refactor of the benchmarking to use common function for start, check and finish of the stats.
* Fixed issue with ECC cache loading in multi-threading.
* Fix bug with AESNI not aligned code that assumes XMALLOC is 16-byte aligned.
* Added new WC_ASYNC_NO_… options to allow disabling of individual async algorithms. New defines are: WC_ASYNC_NO_CRYPT, WC_ASYNC_NO_PKI and WC_ASYNC_NO_HASH. Additionally each algorithm has a WC_ASYNC_NO_[ALGO] define.
* Added “wolfSSL_GetAllocators” API and fixed the wolfCrypt memcb_test so it restores callback pointers after test is complete (fixes issue with using custom allocators and test breaking it).
2017-04-07 15:46:32 -07:00
|
|
|
|
} while (err == WC_PENDING_E);
|
2012-10-17 13:13:58 -07:00
|
|
|
|
}
|
2011-02-05 11:14:47 -08:00
|
|
|
|
#else
|
2017-03-06 09:49:05 -08:00
|
|
|
|
timeout.tv_sec = DEFAULT_TIMEOUT_SEC;
|
2012-10-17 13:13:58 -07:00
|
|
|
|
timeout.tv_usec = 0;
|
Intel QuickAssist (QAT) support and async enhancements/fixes:
* Adds ./configure "--with-intelqa=../QAT1.6”, port files, memory management and README.md (see wolfcrypt/src/port/intel/).
* Added Intel QAT support for RSA public/private (CRT/non-CRT), AES CBC/GCM, ECDH/ECDSA, DH, DES3, SHA, SHA224, SHA256, SHA384, SHA512, MD5 and HMAC.
* wolfSSL async enabled all client and server: PKI, Encrypt/Decrypt, Hashing/HMAC and Certificate Sign/Verify.
* wolfSSL async support in functions: Encrypt, Decrypt, VerifyMAC, BuildMessage, ConfirmSignature, DoCertificate, ParseCertRelative, and MakeSignature.
* wolfCrypt test and benchmark async support added for all HW acceleration.
* wolfCrypt benchmark multi-threading support.
* Added QuickAssist memory overrides for XMALLOC, XFREE and XREALLOC. XREALLOC determines if existing pointer needs reallocated for NUMA.
* Refactor to make sure “heap” is available for async dev init.
* Added async support for all examples for connect, accept, read and write.
* Added new WC_BIGINT (in wolfmath.c) for async hardware support.
* Added async simulator tests for DES3 CBC, AES CBC/GCM.
* Added QAT standalone build for unit testing.
* Added int return code to SHA and MD5 functions.
* Refactor of the async stack variable handling, so async operations have generic args buffer area and cleanup function pointer.
* Combined duplicate code for async push/pop handling.
* Refactor internal.c to add AllocKey / FreeKey.
* Refactor of hash init/free in TLS to use InitHashes and FreeHashes.
* Refactor of the async event->context to use WOLF_EVENT_TYPE_ASYNC_WOLFSSL for WOLFSSL* and WOLF_EVENT_TYPE_ASYNC_WOLFCRYPT for WC_ASYNC_DEV*.
* Suppress error message for WC_PENDING_E.
* Implemented "wolfSSL_EVP_MD_CTX_init" to do memset.
* Cleanup of the openssl compat CTX sizes when async is enabled.
* Cleanup of AES, DES3, DH, SHA, MD5, DES3, DH, HMAC, MD5 for consistency and readability.
* Cleanup of the OPAQUE_LEN.
* Cleanup to use ENCRYPT_LEN instead of sizeof(ssl->arrays.preMasterSecret).
* Changed ssl->arrays.preMasterSecret to use XMALLOC (accelerates HW operations)
* Reduce verbosity with debug enabled for "GetMyVersion", "wolfSSL Using RSA OAEP padding" and "wolfSSL Using RSA PKCSV15 padding".
* Updated RSA un-padding error message so its different than one above it for better debugging.
* Added QAT async enables for each algorithm.
* Refactor of the async init to use _ex.
* Added WC_ASYNC_THRESH_NONE to allow bypass of the async thresholds for testing.
* Reformatted the benchmark results:
PKI: "RSA 2048 private HW 18522 ops took 1.003 sec, avg 0.054 ms, 18467.763 ops/sec"
Crypto/Hashing: SHA-256 SW 350 megs took 1.009 seconds, 346.946 MB/s Cycles per byte = 9.87
* Added min execution time for all benchmarks.
* Moved wc_*GetHash and wc_*RestorePos to appropriate files so use of isCopy flag is local.
* Fix for ECC sign status sometimes being invalid due to uninitialized ECC digest in benchmark.
* Added new DECLARE_VAR/FREE_VAR and DECLARE_ARRAY/FREE_ARRAY macros for helping setup test/benchmark variables to accelerate async.
* Added NO_SW_BENCH option to only run HW bench.
* Added support for PRNG to use hardware SHA256 if _wc devId provided.
* Fix to prevent curve tests from running against wrong curve sizes. Changed wc_ecc_set_curve to match on exact size.
* Added the wc_*GetHash calls to the wolfCrypt tests.
* Added async hardware start/stop to wolfSSL init/cleanup.
* Refactor to add wc_*Copy for hashing context (for async), which replaces wc_*RestorePos.
* Fixes for building with TI hashing (including: SHA224, missing new API’s and building with dummy build for non hw testing). Note: We need to add build test for this `./configure CFLAGS="-DWOLFSSL_TI_HASH -DTI_DUMMY_BUILD”`.
* Added arg checks on wc_*GetHash and wc_*Copy.
* Cleanup of the BuildMD5, BuildSHA, BuildMD5_CertVerify and BuildSHA_CertVerify functions.
* Added new ./configure --enable-asyncthreads, to allow enable/disable of the async threading support. If --enable-asynccrypt set this will be enabled by default if pthread is supported. Allows multi-threaded benchmarks with async simulator.
* Added checks for all hashing to verify valid ->buffLen.
* Fix for SHA512 scan-build warning about un-initialized “W_X”.
* Fix for valgrind un-initialized use of buffer in AllocDer (der->buffer) and BuildTlsFinished handshake_hash.
* Refactor of the benchmarking to use common function for start, check and finish of the stats.
* Fixed issue with ECC cache loading in multi-threading.
* Fix bug with AESNI not aligned code that assumes XMALLOC is 16-byte aligned.
* Added new WC_ASYNC_NO_… options to allow disabling of individual async algorithms. New defines are: WC_ASYNC_NO_CRYPT, WC_ASYNC_NO_PKI and WC_ASYNC_NO_HASH. Additionally each algorithm has a WC_ASYNC_NO_[ALGO] define.
* Added “wolfSSL_GetAllocators” API and fixed the wolfCrypt memcb_test so it restores callback pointers after test is complete (fixes issue with using custom allocators and test breaking it).
2017-04-07 15:46:32 -07:00
|
|
|
|
ret = NonBlockingSSL_Connect(ssl); /* will keep retrying on timeout */
|
2011-02-05 11:14:47 -08:00
|
|
|
|
#endif
|
2017-10-11 09:09:52 -07:00
|
|
|
|
if (ret != WOLFSSL_SUCCESS) {
|
2018-05-03 10:02:59 -07:00
|
|
|
|
err = wolfSSL_get_error(ssl, 0);
|
Intel QuickAssist (QAT) support and async enhancements/fixes:
* Adds ./configure "--with-intelqa=../QAT1.6”, port files, memory management and README.md (see wolfcrypt/src/port/intel/).
* Added Intel QAT support for RSA public/private (CRT/non-CRT), AES CBC/GCM, ECDH/ECDSA, DH, DES3, SHA, SHA224, SHA256, SHA384, SHA512, MD5 and HMAC.
* wolfSSL async enabled all client and server: PKI, Encrypt/Decrypt, Hashing/HMAC and Certificate Sign/Verify.
* wolfSSL async support in functions: Encrypt, Decrypt, VerifyMAC, BuildMessage, ConfirmSignature, DoCertificate, ParseCertRelative, and MakeSignature.
* wolfCrypt test and benchmark async support added for all HW acceleration.
* wolfCrypt benchmark multi-threading support.
* Added QuickAssist memory overrides for XMALLOC, XFREE and XREALLOC. XREALLOC determines if existing pointer needs reallocated for NUMA.
* Refactor to make sure “heap” is available for async dev init.
* Added async support for all examples for connect, accept, read and write.
* Added new WC_BIGINT (in wolfmath.c) for async hardware support.
* Added async simulator tests for DES3 CBC, AES CBC/GCM.
* Added QAT standalone build for unit testing.
* Added int return code to SHA and MD5 functions.
* Refactor of the async stack variable handling, so async operations have generic args buffer area and cleanup function pointer.
* Combined duplicate code for async push/pop handling.
* Refactor internal.c to add AllocKey / FreeKey.
* Refactor of hash init/free in TLS to use InitHashes and FreeHashes.
* Refactor of the async event->context to use WOLF_EVENT_TYPE_ASYNC_WOLFSSL for WOLFSSL* and WOLF_EVENT_TYPE_ASYNC_WOLFCRYPT for WC_ASYNC_DEV*.
* Suppress error message for WC_PENDING_E.
* Implemented "wolfSSL_EVP_MD_CTX_init" to do memset.
* Cleanup of the openssl compat CTX sizes when async is enabled.
* Cleanup of AES, DES3, DH, SHA, MD5, DES3, DH, HMAC, MD5 for consistency and readability.
* Cleanup of the OPAQUE_LEN.
* Cleanup to use ENCRYPT_LEN instead of sizeof(ssl->arrays.preMasterSecret).
* Changed ssl->arrays.preMasterSecret to use XMALLOC (accelerates HW operations)
* Reduce verbosity with debug enabled for "GetMyVersion", "wolfSSL Using RSA OAEP padding" and "wolfSSL Using RSA PKCSV15 padding".
* Updated RSA un-padding error message so its different than one above it for better debugging.
* Added QAT async enables for each algorithm.
* Refactor of the async init to use _ex.
* Added WC_ASYNC_THRESH_NONE to allow bypass of the async thresholds for testing.
* Reformatted the benchmark results:
PKI: "RSA 2048 private HW 18522 ops took 1.003 sec, avg 0.054 ms, 18467.763 ops/sec"
Crypto/Hashing: SHA-256 SW 350 megs took 1.009 seconds, 346.946 MB/s Cycles per byte = 9.87
* Added min execution time for all benchmarks.
* Moved wc_*GetHash and wc_*RestorePos to appropriate files so use of isCopy flag is local.
* Fix for ECC sign status sometimes being invalid due to uninitialized ECC digest in benchmark.
* Added new DECLARE_VAR/FREE_VAR and DECLARE_ARRAY/FREE_ARRAY macros for helping setup test/benchmark variables to accelerate async.
* Added NO_SW_BENCH option to only run HW bench.
* Added support for PRNG to use hardware SHA256 if _wc devId provided.
* Fix to prevent curve tests from running against wrong curve sizes. Changed wc_ecc_set_curve to match on exact size.
* Added the wc_*GetHash calls to the wolfCrypt tests.
* Added async hardware start/stop to wolfSSL init/cleanup.
* Refactor to add wc_*Copy for hashing context (for async), which replaces wc_*RestorePos.
* Fixes for building with TI hashing (including: SHA224, missing new API’s and building with dummy build for non hw testing). Note: We need to add build test for this `./configure CFLAGS="-DWOLFSSL_TI_HASH -DTI_DUMMY_BUILD”`.
* Added arg checks on wc_*GetHash and wc_*Copy.
* Cleanup of the BuildMD5, BuildSHA, BuildMD5_CertVerify and BuildSHA_CertVerify functions.
* Added new ./configure --enable-asyncthreads, to allow enable/disable of the async threading support. If --enable-asynccrypt set this will be enabled by default if pthread is supported. Allows multi-threaded benchmarks with async simulator.
* Added checks for all hashing to verify valid ->buffLen.
* Fix for SHA512 scan-build warning about un-initialized “W_X”.
* Fix for valgrind un-initialized use of buffer in AllocDer (der->buffer) and BuildTlsFinished handshake_hash.
* Refactor of the benchmarking to use common function for start, check and finish of the stats.
* Fixed issue with ECC cache loading in multi-threading.
* Fix bug with AESNI not aligned code that assumes XMALLOC is 16-byte aligned.
* Added new WC_ASYNC_NO_… options to allow disabling of individual async algorithms. New defines are: WC_ASYNC_NO_CRYPT, WC_ASYNC_NO_PKI and WC_ASYNC_NO_HASH. Additionally each algorithm has a WC_ASYNC_NO_[ALGO] define.
* Added “wolfSSL_GetAllocators” API and fixed the wolfCrypt memcb_test so it restores callback pointers after test is complete (fixes issue with using custom allocators and test breaking it).
2017-04-07 15:46:32 -07:00
|
|
|
|
printf("wolfSSL_connect error %d, %s\n", err,
|
|
|
|
|
wolfSSL_ERR_error_string(err, buffer));
|
2018-05-03 10:02:59 -07:00
|
|
|
|
|
|
|
|
|
/* cleanup */
|
2018-07-27 10:19:04 -07:00
|
|
|
|
wolfSSL_free(ssl); ssl = NULL;
|
|
|
|
|
wolfSSL_CTX_free(ctx); ctx = NULL;
|
2018-05-03 09:40:51 -07:00
|
|
|
|
CloseSocket(sockfd);
|
|
|
|
|
|
2018-05-03 10:02:59 -07:00
|
|
|
|
if (!exitWithRet)
|
2018-05-03 09:40:51 -07:00
|
|
|
|
err_sys("wolfSSL_connect failed");
|
Intel QuickAssist (QAT) support and async enhancements/fixes:
* Adds ./configure "--with-intelqa=../QAT1.6”, port files, memory management and README.md (see wolfcrypt/src/port/intel/).
* Added Intel QAT support for RSA public/private (CRT/non-CRT), AES CBC/GCM, ECDH/ECDSA, DH, DES3, SHA, SHA224, SHA256, SHA384, SHA512, MD5 and HMAC.
* wolfSSL async enabled all client and server: PKI, Encrypt/Decrypt, Hashing/HMAC and Certificate Sign/Verify.
* wolfSSL async support in functions: Encrypt, Decrypt, VerifyMAC, BuildMessage, ConfirmSignature, DoCertificate, ParseCertRelative, and MakeSignature.
* wolfCrypt test and benchmark async support added for all HW acceleration.
* wolfCrypt benchmark multi-threading support.
* Added QuickAssist memory overrides for XMALLOC, XFREE and XREALLOC. XREALLOC determines if existing pointer needs reallocated for NUMA.
* Refactor to make sure “heap” is available for async dev init.
* Added async support for all examples for connect, accept, read and write.
* Added new WC_BIGINT (in wolfmath.c) for async hardware support.
* Added async simulator tests for DES3 CBC, AES CBC/GCM.
* Added QAT standalone build for unit testing.
* Added int return code to SHA and MD5 functions.
* Refactor of the async stack variable handling, so async operations have generic args buffer area and cleanup function pointer.
* Combined duplicate code for async push/pop handling.
* Refactor internal.c to add AllocKey / FreeKey.
* Refactor of hash init/free in TLS to use InitHashes and FreeHashes.
* Refactor of the async event->context to use WOLF_EVENT_TYPE_ASYNC_WOLFSSL for WOLFSSL* and WOLF_EVENT_TYPE_ASYNC_WOLFCRYPT for WC_ASYNC_DEV*.
* Suppress error message for WC_PENDING_E.
* Implemented "wolfSSL_EVP_MD_CTX_init" to do memset.
* Cleanup of the openssl compat CTX sizes when async is enabled.
* Cleanup of AES, DES3, DH, SHA, MD5, DES3, DH, HMAC, MD5 for consistency and readability.
* Cleanup of the OPAQUE_LEN.
* Cleanup to use ENCRYPT_LEN instead of sizeof(ssl->arrays.preMasterSecret).
* Changed ssl->arrays.preMasterSecret to use XMALLOC (accelerates HW operations)
* Reduce verbosity with debug enabled for "GetMyVersion", "wolfSSL Using RSA OAEP padding" and "wolfSSL Using RSA PKCSV15 padding".
* Updated RSA un-padding error message so its different than one above it for better debugging.
* Added QAT async enables for each algorithm.
* Refactor of the async init to use _ex.
* Added WC_ASYNC_THRESH_NONE to allow bypass of the async thresholds for testing.
* Reformatted the benchmark results:
PKI: "RSA 2048 private HW 18522 ops took 1.003 sec, avg 0.054 ms, 18467.763 ops/sec"
Crypto/Hashing: SHA-256 SW 350 megs took 1.009 seconds, 346.946 MB/s Cycles per byte = 9.87
* Added min execution time for all benchmarks.
* Moved wc_*GetHash and wc_*RestorePos to appropriate files so use of isCopy flag is local.
* Fix for ECC sign status sometimes being invalid due to uninitialized ECC digest in benchmark.
* Added new DECLARE_VAR/FREE_VAR and DECLARE_ARRAY/FREE_ARRAY macros for helping setup test/benchmark variables to accelerate async.
* Added NO_SW_BENCH option to only run HW bench.
* Added support for PRNG to use hardware SHA256 if _wc devId provided.
* Fix to prevent curve tests from running against wrong curve sizes. Changed wc_ecc_set_curve to match on exact size.
* Added the wc_*GetHash calls to the wolfCrypt tests.
* Added async hardware start/stop to wolfSSL init/cleanup.
* Refactor to add wc_*Copy for hashing context (for async), which replaces wc_*RestorePos.
* Fixes for building with TI hashing (including: SHA224, missing new API’s and building with dummy build for non hw testing). Note: We need to add build test for this `./configure CFLAGS="-DWOLFSSL_TI_HASH -DTI_DUMMY_BUILD”`.
* Added arg checks on wc_*GetHash and wc_*Copy.
* Cleanup of the BuildMD5, BuildSHA, BuildMD5_CertVerify and BuildSHA_CertVerify functions.
* Added new ./configure --enable-asyncthreads, to allow enable/disable of the async threading support. If --enable-asynccrypt set this will be enabled by default if pthread is supported. Allows multi-threaded benchmarks with async simulator.
* Added checks for all hashing to verify valid ->buffLen.
* Fix for SHA512 scan-build warning about un-initialized “W_X”.
* Fix for valgrind un-initialized use of buffer in AllocDer (der->buffer) and BuildTlsFinished handshake_hash.
* Refactor of the benchmarking to use common function for start, check and finish of the stats.
* Fixed issue with ECC cache loading in multi-threading.
* Fix bug with AESNI not aligned code that assumes XMALLOC is 16-byte aligned.
* Added new WC_ASYNC_NO_… options to allow disabling of individual async algorithms. New defines are: WC_ASYNC_NO_CRYPT, WC_ASYNC_NO_PKI and WC_ASYNC_NO_HASH. Additionally each algorithm has a WC_ASYNC_NO_[ALGO] define.
* Added “wolfSSL_GetAllocators” API and fixed the wolfCrypt memcb_test so it restores callback pointers after test is complete (fixes issue with using custom allocators and test breaking it).
2017-04-07 15:46:32 -07:00
|
|
|
|
/* see note at top of README */
|
|
|
|
|
/* if you're getting an error here */
|
2018-05-03 09:40:51 -07:00
|
|
|
|
|
|
|
|
|
((func_args*)args)->return_code = err;
|
2018-05-03 13:39:37 -07:00
|
|
|
|
goto exit;
|
Intel QuickAssist (QAT) support and async enhancements/fixes:
* Adds ./configure "--with-intelqa=../QAT1.6”, port files, memory management and README.md (see wolfcrypt/src/port/intel/).
* Added Intel QAT support for RSA public/private (CRT/non-CRT), AES CBC/GCM, ECDH/ECDSA, DH, DES3, SHA, SHA224, SHA256, SHA384, SHA512, MD5 and HMAC.
* wolfSSL async enabled all client and server: PKI, Encrypt/Decrypt, Hashing/HMAC and Certificate Sign/Verify.
* wolfSSL async support in functions: Encrypt, Decrypt, VerifyMAC, BuildMessage, ConfirmSignature, DoCertificate, ParseCertRelative, and MakeSignature.
* wolfCrypt test and benchmark async support added for all HW acceleration.
* wolfCrypt benchmark multi-threading support.
* Added QuickAssist memory overrides for XMALLOC, XFREE and XREALLOC. XREALLOC determines if existing pointer needs reallocated for NUMA.
* Refactor to make sure “heap” is available for async dev init.
* Added async support for all examples for connect, accept, read and write.
* Added new WC_BIGINT (in wolfmath.c) for async hardware support.
* Added async simulator tests for DES3 CBC, AES CBC/GCM.
* Added QAT standalone build for unit testing.
* Added int return code to SHA and MD5 functions.
* Refactor of the async stack variable handling, so async operations have generic args buffer area and cleanup function pointer.
* Combined duplicate code for async push/pop handling.
* Refactor internal.c to add AllocKey / FreeKey.
* Refactor of hash init/free in TLS to use InitHashes and FreeHashes.
* Refactor of the async event->context to use WOLF_EVENT_TYPE_ASYNC_WOLFSSL for WOLFSSL* and WOLF_EVENT_TYPE_ASYNC_WOLFCRYPT for WC_ASYNC_DEV*.
* Suppress error message for WC_PENDING_E.
* Implemented "wolfSSL_EVP_MD_CTX_init" to do memset.
* Cleanup of the openssl compat CTX sizes when async is enabled.
* Cleanup of AES, DES3, DH, SHA, MD5, DES3, DH, HMAC, MD5 for consistency and readability.
* Cleanup of the OPAQUE_LEN.
* Cleanup to use ENCRYPT_LEN instead of sizeof(ssl->arrays.preMasterSecret).
* Changed ssl->arrays.preMasterSecret to use XMALLOC (accelerates HW operations)
* Reduce verbosity with debug enabled for "GetMyVersion", "wolfSSL Using RSA OAEP padding" and "wolfSSL Using RSA PKCSV15 padding".
* Updated RSA un-padding error message so its different than one above it for better debugging.
* Added QAT async enables for each algorithm.
* Refactor of the async init to use _ex.
* Added WC_ASYNC_THRESH_NONE to allow bypass of the async thresholds for testing.
* Reformatted the benchmark results:
PKI: "RSA 2048 private HW 18522 ops took 1.003 sec, avg 0.054 ms, 18467.763 ops/sec"
Crypto/Hashing: SHA-256 SW 350 megs took 1.009 seconds, 346.946 MB/s Cycles per byte = 9.87
* Added min execution time for all benchmarks.
* Moved wc_*GetHash and wc_*RestorePos to appropriate files so use of isCopy flag is local.
* Fix for ECC sign status sometimes being invalid due to uninitialized ECC digest in benchmark.
* Added new DECLARE_VAR/FREE_VAR and DECLARE_ARRAY/FREE_ARRAY macros for helping setup test/benchmark variables to accelerate async.
* Added NO_SW_BENCH option to only run HW bench.
* Added support for PRNG to use hardware SHA256 if _wc devId provided.
* Fix to prevent curve tests from running against wrong curve sizes. Changed wc_ecc_set_curve to match on exact size.
* Added the wc_*GetHash calls to the wolfCrypt tests.
* Added async hardware start/stop to wolfSSL init/cleanup.
* Refactor to add wc_*Copy for hashing context (for async), which replaces wc_*RestorePos.
* Fixes for building with TI hashing (including: SHA224, missing new API’s and building with dummy build for non hw testing). Note: We need to add build test for this `./configure CFLAGS="-DWOLFSSL_TI_HASH -DTI_DUMMY_BUILD”`.
* Added arg checks on wc_*GetHash and wc_*Copy.
* Cleanup of the BuildMD5, BuildSHA, BuildMD5_CertVerify and BuildSHA_CertVerify functions.
* Added new ./configure --enable-asyncthreads, to allow enable/disable of the async threading support. If --enable-asynccrypt set this will be enabled by default if pthread is supported. Allows multi-threaded benchmarks with async simulator.
* Added checks for all hashing to verify valid ->buffLen.
* Fix for SHA512 scan-build warning about un-initialized “W_X”.
* Fix for valgrind un-initialized use of buffer in AllocDer (der->buffer) and BuildTlsFinished handshake_hash.
* Refactor of the benchmarking to use common function for start, check and finish of the stats.
* Fixed issue with ECC cache loading in multi-threading.
* Fix bug with AESNI not aligned code that assumes XMALLOC is 16-byte aligned.
* Added new WC_ASYNC_NO_… options to allow disabling of individual async algorithms. New defines are: WC_ASYNC_NO_CRYPT, WC_ASYNC_NO_PKI and WC_ASYNC_NO_HASH. Additionally each algorithm has a WC_ASYNC_NO_[ALGO] define.
* Added “wolfSSL_GetAllocators” API and fixed the wolfCrypt memcb_test so it restores callback pointers after test is complete (fixes issue with using custom allocators and test breaking it).
2017-04-07 15:46:32 -07:00
|
|
|
|
}
|
|
|
|
|
|
2018-10-20 13:40:01 +09:00
|
|
|
|
showPeerEx(ssl, lng_index);
|
2012-08-20 17:02:25 -07:00
|
|
|
|
|
2016-11-07 10:15:04 -07:00
|
|
|
|
#ifdef OPENSSL_EXTRA
|
|
|
|
|
{
|
2016-11-11 13:39:36 -07:00
|
|
|
|
byte* rnd;
|
|
|
|
|
byte* pt;
|
|
|
|
|
size_t size;
|
2016-11-07 10:15:04 -07:00
|
|
|
|
|
|
|
|
|
/* get size of buffer then print */
|
|
|
|
|
size = wolfSSL_get_client_random(NULL, NULL, 0);
|
2016-11-11 13:39:36 -07:00
|
|
|
|
if (size == 0) {
|
2018-07-27 10:19:04 -07:00
|
|
|
|
wolfSSL_free(ssl); ssl = NULL;
|
|
|
|
|
wolfSSL_CTX_free(ctx); ctx = NULL;
|
2016-11-07 10:15:04 -07:00
|
|
|
|
err_sys("error getting client random buffer size");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
rnd = (byte*)XMALLOC(size, NULL, DYNAMIC_TYPE_TMP_BUFFER);
|
|
|
|
|
if (rnd == NULL) {
|
2018-07-27 10:19:04 -07:00
|
|
|
|
wolfSSL_free(ssl); ssl = NULL;
|
|
|
|
|
wolfSSL_CTX_free(ctx); ctx = NULL;
|
2016-11-07 10:15:04 -07:00
|
|
|
|
err_sys("error creating client random buffer");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
size = wolfSSL_get_client_random(ssl, rnd, size);
|
2016-11-11 13:39:36 -07:00
|
|
|
|
if (size == 0) {
|
2016-11-07 10:15:04 -07:00
|
|
|
|
XFREE(rnd, NULL, DYNAMIC_TYPE_TMP_BUFFER);
|
2018-07-27 10:19:04 -07:00
|
|
|
|
wolfSSL_free(ssl); ssl = NULL;
|
|
|
|
|
wolfSSL_CTX_free(ctx); ctx = NULL;
|
2016-11-07 10:15:04 -07:00
|
|
|
|
err_sys("error getting client random buffer");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
printf("Client Random : ");
|
|
|
|
|
for (pt = rnd; pt < rnd + size; pt++) printf("%02X", *pt);
|
|
|
|
|
printf("\n");
|
|
|
|
|
XFREE(rnd, NULL, DYNAMIC_TYPE_TMP_BUFFER);
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
2016-04-22 13:46:54 -06:00
|
|
|
|
if (doSTARTTLS) {
|
2016-04-28 14:21:33 -06:00
|
|
|
|
if (XSTRNCMP(starttlsProt, "smtp", 4) == 0) {
|
2017-10-11 09:09:52 -07:00
|
|
|
|
if (SMTP_Shutdown(ssl, wc_shutdown) != WOLFSSL_SUCCESS) {
|
2018-07-27 10:19:04 -07:00
|
|
|
|
wolfSSL_free(ssl); ssl = NULL;
|
|
|
|
|
wolfSSL_CTX_free(ctx); ctx = NULL;
|
2016-04-28 14:21:33 -06:00
|
|
|
|
err_sys("error closing STARTTLS connection");
|
|
|
|
|
}
|
|
|
|
|
}
|
2016-04-22 13:46:54 -06:00
|
|
|
|
|
2018-07-27 10:19:04 -07:00
|
|
|
|
wolfSSL_free(ssl); ssl = NULL;
|
2016-04-22 13:46:54 -06:00
|
|
|
|
CloseSocket(sockfd);
|
|
|
|
|
|
2018-07-27 10:19:04 -07:00
|
|
|
|
wolfSSL_CTX_free(ctx); ctx = NULL;
|
2016-04-22 13:46:54 -06:00
|
|
|
|
|
|
|
|
|
((func_args*)args)->return_code = 0;
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2015-10-13 15:00:53 -07:00
|
|
|
|
#ifdef HAVE_ALPN
|
|
|
|
|
if (alpnList != NULL) {
|
|
|
|
|
char *protocol_name = NULL;
|
|
|
|
|
word16 protocol_nameSz = 0;
|
|
|
|
|
|
|
|
|
|
err = wolfSSL_ALPN_GetProtocol(ssl, &protocol_name, &protocol_nameSz);
|
2017-10-11 09:09:52 -07:00
|
|
|
|
if (err == WOLFSSL_SUCCESS)
|
2015-10-13 15:00:53 -07:00
|
|
|
|
printf("Received ALPN protocol : %s (%d)\n",
|
|
|
|
|
protocol_name, protocol_nameSz);
|
2017-10-18 10:38:27 -07:00
|
|
|
|
else if (err == WOLFSSL_ALPN_NOT_FOUND)
|
2015-10-13 15:00:53 -07:00
|
|
|
|
printf("No ALPN response received (no match with server)\n");
|
|
|
|
|
else
|
|
|
|
|
printf("Getting ALPN protocol name failed\n");
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
2014-09-24 18:48:23 -07:00
|
|
|
|
#ifdef HAVE_SECURE_RENEGOTIATION
|
2014-09-29 15:32:41 -07:00
|
|
|
|
if (scr && forceScr) {
|
2014-09-24 18:48:23 -07:00
|
|
|
|
if (nonBlocking) {
|
|
|
|
|
printf("not doing secure renegotiation on example with"
|
2019-02-21 10:06:55 -08:00
|
|
|
|
" nonblocking yet\n");
|
2014-09-26 10:47:57 -07:00
|
|
|
|
} else {
|
2019-02-19 15:04:22 -08:00
|
|
|
|
if (!resumeScr) {
|
|
|
|
|
printf("Beginning secure rengotiation.\n");
|
|
|
|
|
if (wolfSSL_Rehandshake(ssl) != WOLFSSL_SUCCESS) {
|
|
|
|
|
err = wolfSSL_get_error(ssl, 0);
|
|
|
|
|
printf("err = %d, %s\n", err,
|
|
|
|
|
wolfSSL_ERR_error_string(err, buffer));
|
|
|
|
|
wolfSSL_free(ssl); ssl = NULL;
|
|
|
|
|
wolfSSL_CTX_free(ctx); ctx = NULL;
|
|
|
|
|
err_sys("wolfSSL_Rehandshake failed");
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
printf("RENEGOTIATION SUCCESSFUL\n");
|
|
|
|
|
}
|
2014-09-26 10:47:57 -07:00
|
|
|
|
}
|
2018-11-30 14:14:27 -08:00
|
|
|
|
else {
|
2019-02-19 15:04:22 -08:00
|
|
|
|
printf("Beginning secure resumption.\n");
|
|
|
|
|
if (wolfSSL_SecureResume(ssl) != WOLFSSL_SUCCESS) {
|
|
|
|
|
err = wolfSSL_get_error(ssl, 0);
|
|
|
|
|
printf("err = %d, %s\n", err,
|
|
|
|
|
wolfSSL_ERR_error_string(err, buffer));
|
|
|
|
|
wolfSSL_free(ssl); ssl = NULL;
|
|
|
|
|
wolfSSL_CTX_free(ctx); ctx = NULL;
|
|
|
|
|
err_sys("wolfSSL_SecureResume failed");
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
printf("SECURE RESUMPTION SUCCESSFUL\n");
|
|
|
|
|
}
|
2018-11-30 14:14:27 -08:00
|
|
|
|
}
|
2014-09-24 18:48:23 -07:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
#endif /* HAVE_SECURE_RENEGOTIATION */
|
|
|
|
|
|
2012-08-01 12:55:13 -07:00
|
|
|
|
if (sendGET) {
|
2011-02-05 11:14:47 -08:00
|
|
|
|
printf("SSL connect ok, sending GET...\n");
|
2011-03-22 08:18:27 -07:00
|
|
|
|
msgSz = 28;
|
|
|
|
|
strncpy(msg, "GET /index.html HTTP/1.0\r\n\r\n", msgSz);
|
2013-02-14 14:09:41 -08:00
|
|
|
|
msg[msgSz] = '\0';
|
2015-11-02 13:26:46 -08:00
|
|
|
|
|
|
|
|
|
resumeSz = msgSz;
|
|
|
|
|
strncpy(resumeMsg, "GET /index.html HTTP/1.0\r\n\r\n", resumeSz);
|
|
|
|
|
resumeMsg[resumeSz] = '\0';
|
2011-02-05 11:14:47 -08:00
|
|
|
|
}
|
2016-05-10 13:27:45 -06:00
|
|
|
|
|
|
|
|
|
/* allow some time for exporting the session */
|
|
|
|
|
#ifdef WOLFSSL_SESSION_EXPORT_DEBUG
|
Intel QuickAssist (QAT) support and async enhancements/fixes:
* Adds ./configure "--with-intelqa=../QAT1.6”, port files, memory management and README.md (see wolfcrypt/src/port/intel/).
* Added Intel QAT support for RSA public/private (CRT/non-CRT), AES CBC/GCM, ECDH/ECDSA, DH, DES3, SHA, SHA224, SHA256, SHA384, SHA512, MD5 and HMAC.
* wolfSSL async enabled all client and server: PKI, Encrypt/Decrypt, Hashing/HMAC and Certificate Sign/Verify.
* wolfSSL async support in functions: Encrypt, Decrypt, VerifyMAC, BuildMessage, ConfirmSignature, DoCertificate, ParseCertRelative, and MakeSignature.
* wolfCrypt test and benchmark async support added for all HW acceleration.
* wolfCrypt benchmark multi-threading support.
* Added QuickAssist memory overrides for XMALLOC, XFREE and XREALLOC. XREALLOC determines if existing pointer needs reallocated for NUMA.
* Refactor to make sure “heap” is available for async dev init.
* Added async support for all examples for connect, accept, read and write.
* Added new WC_BIGINT (in wolfmath.c) for async hardware support.
* Added async simulator tests for DES3 CBC, AES CBC/GCM.
* Added QAT standalone build for unit testing.
* Added int return code to SHA and MD5 functions.
* Refactor of the async stack variable handling, so async operations have generic args buffer area and cleanup function pointer.
* Combined duplicate code for async push/pop handling.
* Refactor internal.c to add AllocKey / FreeKey.
* Refactor of hash init/free in TLS to use InitHashes and FreeHashes.
* Refactor of the async event->context to use WOLF_EVENT_TYPE_ASYNC_WOLFSSL for WOLFSSL* and WOLF_EVENT_TYPE_ASYNC_WOLFCRYPT for WC_ASYNC_DEV*.
* Suppress error message for WC_PENDING_E.
* Implemented "wolfSSL_EVP_MD_CTX_init" to do memset.
* Cleanup of the openssl compat CTX sizes when async is enabled.
* Cleanup of AES, DES3, DH, SHA, MD5, DES3, DH, HMAC, MD5 for consistency and readability.
* Cleanup of the OPAQUE_LEN.
* Cleanup to use ENCRYPT_LEN instead of sizeof(ssl->arrays.preMasterSecret).
* Changed ssl->arrays.preMasterSecret to use XMALLOC (accelerates HW operations)
* Reduce verbosity with debug enabled for "GetMyVersion", "wolfSSL Using RSA OAEP padding" and "wolfSSL Using RSA PKCSV15 padding".
* Updated RSA un-padding error message so its different than one above it for better debugging.
* Added QAT async enables for each algorithm.
* Refactor of the async init to use _ex.
* Added WC_ASYNC_THRESH_NONE to allow bypass of the async thresholds for testing.
* Reformatted the benchmark results:
PKI: "RSA 2048 private HW 18522 ops took 1.003 sec, avg 0.054 ms, 18467.763 ops/sec"
Crypto/Hashing: SHA-256 SW 350 megs took 1.009 seconds, 346.946 MB/s Cycles per byte = 9.87
* Added min execution time for all benchmarks.
* Moved wc_*GetHash and wc_*RestorePos to appropriate files so use of isCopy flag is local.
* Fix for ECC sign status sometimes being invalid due to uninitialized ECC digest in benchmark.
* Added new DECLARE_VAR/FREE_VAR and DECLARE_ARRAY/FREE_ARRAY macros for helping setup test/benchmark variables to accelerate async.
* Added NO_SW_BENCH option to only run HW bench.
* Added support for PRNG to use hardware SHA256 if _wc devId provided.
* Fix to prevent curve tests from running against wrong curve sizes. Changed wc_ecc_set_curve to match on exact size.
* Added the wc_*GetHash calls to the wolfCrypt tests.
* Added async hardware start/stop to wolfSSL init/cleanup.
* Refactor to add wc_*Copy for hashing context (for async), which replaces wc_*RestorePos.
* Fixes for building with TI hashing (including: SHA224, missing new API’s and building with dummy build for non hw testing). Note: We need to add build test for this `./configure CFLAGS="-DWOLFSSL_TI_HASH -DTI_DUMMY_BUILD”`.
* Added arg checks on wc_*GetHash and wc_*Copy.
* Cleanup of the BuildMD5, BuildSHA, BuildMD5_CertVerify and BuildSHA_CertVerify functions.
* Added new ./configure --enable-asyncthreads, to allow enable/disable of the async threading support. If --enable-asynccrypt set this will be enabled by default if pthread is supported. Allows multi-threaded benchmarks with async simulator.
* Added checks for all hashing to verify valid ->buffLen.
* Fix for SHA512 scan-build warning about un-initialized “W_X”.
* Fix for valgrind un-initialized use of buffer in AllocDer (der->buffer) and BuildTlsFinished handshake_hash.
* Refactor of the benchmarking to use common function for start, check and finish of the stats.
* Fixed issue with ECC cache loading in multi-threading.
* Fix bug with AESNI not aligned code that assumes XMALLOC is 16-byte aligned.
* Added new WC_ASYNC_NO_… options to allow disabling of individual async algorithms. New defines are: WC_ASYNC_NO_CRYPT, WC_ASYNC_NO_PKI and WC_ASYNC_NO_HASH. Additionally each algorithm has a WC_ASYNC_NO_[ALGO] define.
* Added “wolfSSL_GetAllocators” API and fixed the wolfCrypt memcb_test so it restores callback pointers after test is complete (fixes issue with using custom allocators and test breaking it).
2017-04-07 15:46:32 -07:00
|
|
|
|
#ifdef USE_WINDOWS_API
|
|
|
|
|
Sleep(500);
|
|
|
|
|
#elif defined(WOLFSSL_TIRTOS)
|
|
|
|
|
Task_sleep(1);
|
|
|
|
|
#else
|
|
|
|
|
sleep(1);
|
|
|
|
|
#endif
|
2016-05-10 13:27:45 -06:00
|
|
|
|
#endif /* WOLFSSL_SESSION_EXPORT_DEBUG */
|
Intel QuickAssist (QAT) support and async enhancements/fixes:
* Adds ./configure "--with-intelqa=../QAT1.6”, port files, memory management and README.md (see wolfcrypt/src/port/intel/).
* Added Intel QAT support for RSA public/private (CRT/non-CRT), AES CBC/GCM, ECDH/ECDSA, DH, DES3, SHA, SHA224, SHA256, SHA384, SHA512, MD5 and HMAC.
* wolfSSL async enabled all client and server: PKI, Encrypt/Decrypt, Hashing/HMAC and Certificate Sign/Verify.
* wolfSSL async support in functions: Encrypt, Decrypt, VerifyMAC, BuildMessage, ConfirmSignature, DoCertificate, ParseCertRelative, and MakeSignature.
* wolfCrypt test and benchmark async support added for all HW acceleration.
* wolfCrypt benchmark multi-threading support.
* Added QuickAssist memory overrides for XMALLOC, XFREE and XREALLOC. XREALLOC determines if existing pointer needs reallocated for NUMA.
* Refactor to make sure “heap” is available for async dev init.
* Added async support for all examples for connect, accept, read and write.
* Added new WC_BIGINT (in wolfmath.c) for async hardware support.
* Added async simulator tests for DES3 CBC, AES CBC/GCM.
* Added QAT standalone build for unit testing.
* Added int return code to SHA and MD5 functions.
* Refactor of the async stack variable handling, so async operations have generic args buffer area and cleanup function pointer.
* Combined duplicate code for async push/pop handling.
* Refactor internal.c to add AllocKey / FreeKey.
* Refactor of hash init/free in TLS to use InitHashes and FreeHashes.
* Refactor of the async event->context to use WOLF_EVENT_TYPE_ASYNC_WOLFSSL for WOLFSSL* and WOLF_EVENT_TYPE_ASYNC_WOLFCRYPT for WC_ASYNC_DEV*.
* Suppress error message for WC_PENDING_E.
* Implemented "wolfSSL_EVP_MD_CTX_init" to do memset.
* Cleanup of the openssl compat CTX sizes when async is enabled.
* Cleanup of AES, DES3, DH, SHA, MD5, DES3, DH, HMAC, MD5 for consistency and readability.
* Cleanup of the OPAQUE_LEN.
* Cleanup to use ENCRYPT_LEN instead of sizeof(ssl->arrays.preMasterSecret).
* Changed ssl->arrays.preMasterSecret to use XMALLOC (accelerates HW operations)
* Reduce verbosity with debug enabled for "GetMyVersion", "wolfSSL Using RSA OAEP padding" and "wolfSSL Using RSA PKCSV15 padding".
* Updated RSA un-padding error message so its different than one above it for better debugging.
* Added QAT async enables for each algorithm.
* Refactor of the async init to use _ex.
* Added WC_ASYNC_THRESH_NONE to allow bypass of the async thresholds for testing.
* Reformatted the benchmark results:
PKI: "RSA 2048 private HW 18522 ops took 1.003 sec, avg 0.054 ms, 18467.763 ops/sec"
Crypto/Hashing: SHA-256 SW 350 megs took 1.009 seconds, 346.946 MB/s Cycles per byte = 9.87
* Added min execution time for all benchmarks.
* Moved wc_*GetHash and wc_*RestorePos to appropriate files so use of isCopy flag is local.
* Fix for ECC sign status sometimes being invalid due to uninitialized ECC digest in benchmark.
* Added new DECLARE_VAR/FREE_VAR and DECLARE_ARRAY/FREE_ARRAY macros for helping setup test/benchmark variables to accelerate async.
* Added NO_SW_BENCH option to only run HW bench.
* Added support for PRNG to use hardware SHA256 if _wc devId provided.
* Fix to prevent curve tests from running against wrong curve sizes. Changed wc_ecc_set_curve to match on exact size.
* Added the wc_*GetHash calls to the wolfCrypt tests.
* Added async hardware start/stop to wolfSSL init/cleanup.
* Refactor to add wc_*Copy for hashing context (for async), which replaces wc_*RestorePos.
* Fixes for building with TI hashing (including: SHA224, missing new API’s and building with dummy build for non hw testing). Note: We need to add build test for this `./configure CFLAGS="-DWOLFSSL_TI_HASH -DTI_DUMMY_BUILD”`.
* Added arg checks on wc_*GetHash and wc_*Copy.
* Cleanup of the BuildMD5, BuildSHA, BuildMD5_CertVerify and BuildSHA_CertVerify functions.
* Added new ./configure --enable-asyncthreads, to allow enable/disable of the async threading support. If --enable-asynccrypt set this will be enabled by default if pthread is supported. Allows multi-threaded benchmarks with async simulator.
* Added checks for all hashing to verify valid ->buffLen.
* Fix for SHA512 scan-build warning about un-initialized “W_X”.
* Fix for valgrind un-initialized use of buffer in AllocDer (der->buffer) and BuildTlsFinished handshake_hash.
* Refactor of the benchmarking to use common function for start, check and finish of the stats.
* Fixed issue with ECC cache loading in multi-threading.
* Fix bug with AESNI not aligned code that assumes XMALLOC is 16-byte aligned.
* Added new WC_ASYNC_NO_… options to allow disabling of individual async algorithms. New defines are: WC_ASYNC_NO_CRYPT, WC_ASYNC_NO_PKI and WC_ASYNC_NO_HASH. Additionally each algorithm has a WC_ASYNC_NO_[ALGO] define.
* Added “wolfSSL_GetAllocators” API and fixed the wolfCrypt memcb_test so it restores callback pointers after test is complete (fixes issue with using custom allocators and test breaking it).
2017-04-07 15:46:32 -07:00
|
|
|
|
|
2016-11-24 01:31:07 +10:00
|
|
|
|
#ifdef WOLFSSL_TLS13
|
|
|
|
|
if (updateKeysIVs)
|
|
|
|
|
wolfSSL_update_keys(ssl);
|
|
|
|
|
#endif
|
|
|
|
|
|
2017-06-08 10:32:51 +10:00
|
|
|
|
ClientWrite(ssl, msg, msgSz);
|
2011-02-05 11:14:47 -08:00
|
|
|
|
|
2017-06-08 10:32:51 +10:00
|
|
|
|
ClientRead(ssl, reply, sizeof(reply)-1, 1);
|
|
|
|
|
|
2018-06-08 17:34:03 +10:00
|
|
|
|
#if defined(WOLFSSL_TLS13)
|
|
|
|
|
if (updateKeysIVs || postHandAuth)
|
2017-06-21 16:56:51 +10:00
|
|
|
|
ClientWrite(ssl, msg, msgSz);
|
|
|
|
|
#endif
|
2017-06-08 10:32:51 +10:00
|
|
|
|
if (sendGET) { /* get html */
|
|
|
|
|
ClientRead(ssl, reply, sizeof(reply)-1, 0);
|
2012-12-28 17:54:19 -08:00
|
|
|
|
}
|
2012-10-17 13:13:58 -07:00
|
|
|
|
|
2013-03-11 16:07:46 -07:00
|
|
|
|
#ifndef NO_SESSION_CACHE
|
2012-10-17 13:13:58 -07:00
|
|
|
|
if (resumeSession) {
|
2015-01-05 14:48:43 -07:00
|
|
|
|
session = wolfSSL_get_session(ssl);
|
2012-08-02 11:54:49 -07:00
|
|
|
|
}
|
2013-03-11 16:07:46 -07:00
|
|
|
|
#endif
|
2011-02-05 11:14:47 -08:00
|
|
|
|
|
2016-08-25 22:20:35 -07:00
|
|
|
|
if (dtlsUDP == 0) { /* don't send alert after "break" command */
|
2015-02-16 14:23:33 -08:00
|
|
|
|
ret = wolfSSL_shutdown(ssl);
|
2017-10-11 09:09:52 -07:00
|
|
|
|
if (wc_shutdown && ret == WOLFSSL_SHUTDOWN_NOT_DONE)
|
2015-02-16 14:23:33 -08:00
|
|
|
|
wolfSSL_shutdown(ssl); /* bidirectional shutdown */
|
2015-01-30 08:41:34 -07:00
|
|
|
|
}
|
2013-08-09 17:27:15 -07:00
|
|
|
|
#ifdef ATOMIC_USER
|
|
|
|
|
if (atomicUser)
|
|
|
|
|
FreeAtomicUser(ssl);
|
|
|
|
|
#endif
|
2017-10-20 14:56:29 -07:00
|
|
|
|
|
|
|
|
|
/* display collected statistics */
|
|
|
|
|
#ifdef WOLFSSL_STATIC_MEMORY
|
|
|
|
|
if (wolfSSL_is_static_memory(ssl, &ssl_stats) != 1)
|
|
|
|
|
err_sys("static memory was not used with ssl");
|
|
|
|
|
|
|
|
|
|
fprintf(stderr, "\nprint off SSL memory stats\n");
|
|
|
|
|
fprintf(stderr, "*** This is memory state before wolfSSL_free is called\n");
|
|
|
|
|
fprintf(stderr, "peak connection memory = %d\n", ssl_stats.peakMem);
|
|
|
|
|
fprintf(stderr, "current memory in use = %d\n", ssl_stats.curMem);
|
|
|
|
|
fprintf(stderr, "peak connection allocs = %d\n", ssl_stats.peakAlloc);
|
|
|
|
|
fprintf(stderr, "current connection allocs = %d\n", ssl_stats.curAlloc);
|
|
|
|
|
fprintf(stderr, "total connection allocs = %d\n", ssl_stats.totalAlloc);
|
|
|
|
|
fprintf(stderr, "total connection frees = %d\n\n", ssl_stats.totalFr);
|
|
|
|
|
#endif
|
|
|
|
|
|
2018-07-27 10:19:04 -07:00
|
|
|
|
wolfSSL_free(ssl); ssl = NULL;
|
2011-02-05 11:14:47 -08:00
|
|
|
|
CloseSocket(sockfd);
|
|
|
|
|
|
2013-03-11 16:07:46 -07:00
|
|
|
|
#ifndef NO_SESSION_CACHE
|
2012-10-17 13:13:58 -07:00
|
|
|
|
if (resumeSession) {
|
2017-10-23 10:50:19 -07:00
|
|
|
|
sslResume = wolfSSL_new(ctx);
|
|
|
|
|
if (sslResume == NULL) {
|
2018-07-27 10:19:04 -07:00
|
|
|
|
wolfSSL_CTX_free(ctx); ctx = NULL;
|
2017-10-23 10:50:19 -07:00
|
|
|
|
err_sys("unable to get SSL object");
|
|
|
|
|
}
|
|
|
|
|
|
2018-12-03 13:53:44 -08:00
|
|
|
|
#if !defined(NO_DH) && !defined(WOLFSSL_OLD_PRIME_CHECK) && \
|
|
|
|
|
!defined(HAVE_FIPS) && !defined(HAVE_SELFTEST)
|
|
|
|
|
if (!doDhKeyCheck)
|
|
|
|
|
wolfSSL_SetEnableDhKeyTest(sslResume, 0);
|
|
|
|
|
#endif
|
|
|
|
|
|
2016-08-25 22:20:35 -07:00
|
|
|
|
if (dtlsUDP) {
|
2015-10-14 19:13:45 -07:00
|
|
|
|
#ifdef USE_WINDOWS_API
|
|
|
|
|
Sleep(500);
|
|
|
|
|
#elif defined(WOLFSSL_TIRTOS)
|
|
|
|
|
Task_sleep(1);
|
|
|
|
|
#else
|
|
|
|
|
sleep(1);
|
|
|
|
|
#endif
|
2012-10-17 13:13:58 -07:00
|
|
|
|
}
|
2016-08-25 22:20:35 -07:00
|
|
|
|
tcp_connect(&sockfd, host, port, dtlsUDP, dtlsSCTP, sslResume);
|
2017-10-11 09:09:52 -07:00
|
|
|
|
if (wolfSSL_set_fd(sslResume, sockfd) != WOLFSSL_SUCCESS) {
|
2018-07-27 10:19:04 -07:00
|
|
|
|
wolfSSL_free(sslResume); sslResume = NULL;
|
|
|
|
|
wolfSSL_CTX_free(ctx); ctx = NULL;
|
2016-03-25 13:59:04 -06:00
|
|
|
|
err_sys("error in setting fd");
|
|
|
|
|
}
|
2015-10-13 15:00:53 -07:00
|
|
|
|
#ifdef HAVE_ALPN
|
|
|
|
|
if (alpnList != NULL) {
|
|
|
|
|
printf("ALPN accepted protocols list : %s\n", alpnList);
|
|
|
|
|
wolfSSL_UseALPN(sslResume, alpnList, (word32)XSTRLEN(alpnList),
|
|
|
|
|
alpn_opt);
|
|
|
|
|
}
|
|
|
|
|
#endif
|
2015-04-29 17:06:57 -07:00
|
|
|
|
#ifdef HAVE_SECURE_RENEGOTIATION
|
|
|
|
|
if (scr) {
|
2017-10-11 09:09:52 -07:00
|
|
|
|
if (wolfSSL_UseSecureRenegotiation(sslResume) != WOLFSSL_SUCCESS) {
|
2018-07-27 10:19:04 -07:00
|
|
|
|
wolfSSL_free(sslResume); sslResume = NULL;
|
|
|
|
|
wolfSSL_CTX_free(ctx); ctx = NULL;
|
2015-04-29 17:06:57 -07:00
|
|
|
|
err_sys("can't enable secure renegotiation");
|
2017-01-10 09:26:47 +10:00
|
|
|
|
}
|
2015-04-29 17:06:57 -07:00
|
|
|
|
}
|
|
|
|
|
#endif
|
2015-01-05 14:48:43 -07:00
|
|
|
|
wolfSSL_set_session(sslResume, session);
|
2014-10-20 09:25:14 -07:00
|
|
|
|
#ifdef HAVE_SESSION_TICKET
|
2015-01-05 14:48:43 -07:00
|
|
|
|
wolfSSL_set_SessionTicket_cb(sslResume, sessionTicketCB,
|
2014-10-20 09:25:14 -07:00
|
|
|
|
(void*)"resumed session");
|
|
|
|
|
#endif
|
2016-11-24 01:31:07 +10:00
|
|
|
|
|
2015-01-05 14:48:43 -07:00
|
|
|
|
#ifndef WOLFSSL_CALLBACKS
|
2012-10-17 13:13:58 -07:00
|
|
|
|
if (nonBlocking) {
|
2018-05-23 16:07:45 -07:00
|
|
|
|
#ifdef WOLFSSL_DTLS
|
|
|
|
|
if (doDTLS) {
|
|
|
|
|
wolfSSL_dtls_set_using_nonblock(ssl, 1);
|
|
|
|
|
}
|
|
|
|
|
#endif
|
2012-10-17 13:13:58 -07:00
|
|
|
|
tcp_set_nonblocking(&sockfd);
|
Intel QuickAssist (QAT) support and async enhancements/fixes:
* Adds ./configure "--with-intelqa=../QAT1.6”, port files, memory management and README.md (see wolfcrypt/src/port/intel/).
* Added Intel QAT support for RSA public/private (CRT/non-CRT), AES CBC/GCM, ECDH/ECDSA, DH, DES3, SHA, SHA224, SHA256, SHA384, SHA512, MD5 and HMAC.
* wolfSSL async enabled all client and server: PKI, Encrypt/Decrypt, Hashing/HMAC and Certificate Sign/Verify.
* wolfSSL async support in functions: Encrypt, Decrypt, VerifyMAC, BuildMessage, ConfirmSignature, DoCertificate, ParseCertRelative, and MakeSignature.
* wolfCrypt test and benchmark async support added for all HW acceleration.
* wolfCrypt benchmark multi-threading support.
* Added QuickAssist memory overrides for XMALLOC, XFREE and XREALLOC. XREALLOC determines if existing pointer needs reallocated for NUMA.
* Refactor to make sure “heap” is available for async dev init.
* Added async support for all examples for connect, accept, read and write.
* Added new WC_BIGINT (in wolfmath.c) for async hardware support.
* Added async simulator tests for DES3 CBC, AES CBC/GCM.
* Added QAT standalone build for unit testing.
* Added int return code to SHA and MD5 functions.
* Refactor of the async stack variable handling, so async operations have generic args buffer area and cleanup function pointer.
* Combined duplicate code for async push/pop handling.
* Refactor internal.c to add AllocKey / FreeKey.
* Refactor of hash init/free in TLS to use InitHashes and FreeHashes.
* Refactor of the async event->context to use WOLF_EVENT_TYPE_ASYNC_WOLFSSL for WOLFSSL* and WOLF_EVENT_TYPE_ASYNC_WOLFCRYPT for WC_ASYNC_DEV*.
* Suppress error message for WC_PENDING_E.
* Implemented "wolfSSL_EVP_MD_CTX_init" to do memset.
* Cleanup of the openssl compat CTX sizes when async is enabled.
* Cleanup of AES, DES3, DH, SHA, MD5, DES3, DH, HMAC, MD5 for consistency and readability.
* Cleanup of the OPAQUE_LEN.
* Cleanup to use ENCRYPT_LEN instead of sizeof(ssl->arrays.preMasterSecret).
* Changed ssl->arrays.preMasterSecret to use XMALLOC (accelerates HW operations)
* Reduce verbosity with debug enabled for "GetMyVersion", "wolfSSL Using RSA OAEP padding" and "wolfSSL Using RSA PKCSV15 padding".
* Updated RSA un-padding error message so its different than one above it for better debugging.
* Added QAT async enables for each algorithm.
* Refactor of the async init to use _ex.
* Added WC_ASYNC_THRESH_NONE to allow bypass of the async thresholds for testing.
* Reformatted the benchmark results:
PKI: "RSA 2048 private HW 18522 ops took 1.003 sec, avg 0.054 ms, 18467.763 ops/sec"
Crypto/Hashing: SHA-256 SW 350 megs took 1.009 seconds, 346.946 MB/s Cycles per byte = 9.87
* Added min execution time for all benchmarks.
* Moved wc_*GetHash and wc_*RestorePos to appropriate files so use of isCopy flag is local.
* Fix for ECC sign status sometimes being invalid due to uninitialized ECC digest in benchmark.
* Added new DECLARE_VAR/FREE_VAR and DECLARE_ARRAY/FREE_ARRAY macros for helping setup test/benchmark variables to accelerate async.
* Added NO_SW_BENCH option to only run HW bench.
* Added support for PRNG to use hardware SHA256 if _wc devId provided.
* Fix to prevent curve tests from running against wrong curve sizes. Changed wc_ecc_set_curve to match on exact size.
* Added the wc_*GetHash calls to the wolfCrypt tests.
* Added async hardware start/stop to wolfSSL init/cleanup.
* Refactor to add wc_*Copy for hashing context (for async), which replaces wc_*RestorePos.
* Fixes for building with TI hashing (including: SHA224, missing new API’s and building with dummy build for non hw testing). Note: We need to add build test for this `./configure CFLAGS="-DWOLFSSL_TI_HASH -DTI_DUMMY_BUILD”`.
* Added arg checks on wc_*GetHash and wc_*Copy.
* Cleanup of the BuildMD5, BuildSHA, BuildMD5_CertVerify and BuildSHA_CertVerify functions.
* Added new ./configure --enable-asyncthreads, to allow enable/disable of the async threading support. If --enable-asynccrypt set this will be enabled by default if pthread is supported. Allows multi-threaded benchmarks with async simulator.
* Added checks for all hashing to verify valid ->buffLen.
* Fix for SHA512 scan-build warning about un-initialized “W_X”.
* Fix for valgrind un-initialized use of buffer in AllocDer (der->buffer) and BuildTlsFinished handshake_hash.
* Refactor of the benchmarking to use common function for start, check and finish of the stats.
* Fixed issue with ECC cache loading in multi-threading.
* Fix bug with AESNI not aligned code that assumes XMALLOC is 16-byte aligned.
* Added new WC_ASYNC_NO_… options to allow disabling of individual async algorithms. New defines are: WC_ASYNC_NO_CRYPT, WC_ASYNC_NO_PKI and WC_ASYNC_NO_HASH. Additionally each algorithm has a WC_ASYNC_NO_[ALGO] define.
* Added “wolfSSL_GetAllocators” API and fixed the wolfCrypt memcb_test so it restores callback pointers after test is complete (fixes issue with using custom allocators and test breaking it).
2017-04-07 15:46:32 -07:00
|
|
|
|
ret = NonBlockingSSL_Connect(sslResume);
|
2012-10-17 13:13:58 -07:00
|
|
|
|
}
|
Intel QuickAssist (QAT) support and async enhancements/fixes:
* Adds ./configure "--with-intelqa=../QAT1.6”, port files, memory management and README.md (see wolfcrypt/src/port/intel/).
* Added Intel QAT support for RSA public/private (CRT/non-CRT), AES CBC/GCM, ECDH/ECDSA, DH, DES3, SHA, SHA224, SHA256, SHA384, SHA512, MD5 and HMAC.
* wolfSSL async enabled all client and server: PKI, Encrypt/Decrypt, Hashing/HMAC and Certificate Sign/Verify.
* wolfSSL async support in functions: Encrypt, Decrypt, VerifyMAC, BuildMessage, ConfirmSignature, DoCertificate, ParseCertRelative, and MakeSignature.
* wolfCrypt test and benchmark async support added for all HW acceleration.
* wolfCrypt benchmark multi-threading support.
* Added QuickAssist memory overrides for XMALLOC, XFREE and XREALLOC. XREALLOC determines if existing pointer needs reallocated for NUMA.
* Refactor to make sure “heap” is available for async dev init.
* Added async support for all examples for connect, accept, read and write.
* Added new WC_BIGINT (in wolfmath.c) for async hardware support.
* Added async simulator tests for DES3 CBC, AES CBC/GCM.
* Added QAT standalone build for unit testing.
* Added int return code to SHA and MD5 functions.
* Refactor of the async stack variable handling, so async operations have generic args buffer area and cleanup function pointer.
* Combined duplicate code for async push/pop handling.
* Refactor internal.c to add AllocKey / FreeKey.
* Refactor of hash init/free in TLS to use InitHashes and FreeHashes.
* Refactor of the async event->context to use WOLF_EVENT_TYPE_ASYNC_WOLFSSL for WOLFSSL* and WOLF_EVENT_TYPE_ASYNC_WOLFCRYPT for WC_ASYNC_DEV*.
* Suppress error message for WC_PENDING_E.
* Implemented "wolfSSL_EVP_MD_CTX_init" to do memset.
* Cleanup of the openssl compat CTX sizes when async is enabled.
* Cleanup of AES, DES3, DH, SHA, MD5, DES3, DH, HMAC, MD5 for consistency and readability.
* Cleanup of the OPAQUE_LEN.
* Cleanup to use ENCRYPT_LEN instead of sizeof(ssl->arrays.preMasterSecret).
* Changed ssl->arrays.preMasterSecret to use XMALLOC (accelerates HW operations)
* Reduce verbosity with debug enabled for "GetMyVersion", "wolfSSL Using RSA OAEP padding" and "wolfSSL Using RSA PKCSV15 padding".
* Updated RSA un-padding error message so its different than one above it for better debugging.
* Added QAT async enables for each algorithm.
* Refactor of the async init to use _ex.
* Added WC_ASYNC_THRESH_NONE to allow bypass of the async thresholds for testing.
* Reformatted the benchmark results:
PKI: "RSA 2048 private HW 18522 ops took 1.003 sec, avg 0.054 ms, 18467.763 ops/sec"
Crypto/Hashing: SHA-256 SW 350 megs took 1.009 seconds, 346.946 MB/s Cycles per byte = 9.87
* Added min execution time for all benchmarks.
* Moved wc_*GetHash and wc_*RestorePos to appropriate files so use of isCopy flag is local.
* Fix for ECC sign status sometimes being invalid due to uninitialized ECC digest in benchmark.
* Added new DECLARE_VAR/FREE_VAR and DECLARE_ARRAY/FREE_ARRAY macros for helping setup test/benchmark variables to accelerate async.
* Added NO_SW_BENCH option to only run HW bench.
* Added support for PRNG to use hardware SHA256 if _wc devId provided.
* Fix to prevent curve tests from running against wrong curve sizes. Changed wc_ecc_set_curve to match on exact size.
* Added the wc_*GetHash calls to the wolfCrypt tests.
* Added async hardware start/stop to wolfSSL init/cleanup.
* Refactor to add wc_*Copy for hashing context (for async), which replaces wc_*RestorePos.
* Fixes for building with TI hashing (including: SHA224, missing new API’s and building with dummy build for non hw testing). Note: We need to add build test for this `./configure CFLAGS="-DWOLFSSL_TI_HASH -DTI_DUMMY_BUILD”`.
* Added arg checks on wc_*GetHash and wc_*Copy.
* Cleanup of the BuildMD5, BuildSHA, BuildMD5_CertVerify and BuildSHA_CertVerify functions.
* Added new ./configure --enable-asyncthreads, to allow enable/disable of the async threading support. If --enable-asynccrypt set this will be enabled by default if pthread is supported. Allows multi-threaded benchmarks with async simulator.
* Added checks for all hashing to verify valid ->buffLen.
* Fix for SHA512 scan-build warning about un-initialized “W_X”.
* Fix for valgrind un-initialized use of buffer in AllocDer (der->buffer) and BuildTlsFinished handshake_hash.
* Refactor of the benchmarking to use common function for start, check and finish of the stats.
* Fixed issue with ECC cache loading in multi-threading.
* Fix bug with AESNI not aligned code that assumes XMALLOC is 16-byte aligned.
* Added new WC_ASYNC_NO_… options to allow disabling of individual async algorithms. New defines are: WC_ASYNC_NO_CRYPT, WC_ASYNC_NO_PKI and WC_ASYNC_NO_HASH. Additionally each algorithm has a WC_ASYNC_NO_[ALGO] define.
* Added “wolfSSL_GetAllocators” API and fixed the wolfCrypt memcb_test so it restores callback pointers after test is complete (fixes issue with using custom allocators and test breaking it).
2017-04-07 15:46:32 -07:00
|
|
|
|
else {
|
2017-06-19 11:37:10 +10:00
|
|
|
|
#ifdef WOLFSSL_EARLY_DATA
|
|
|
|
|
#ifndef HAVE_SESSION_TICKET
|
|
|
|
|
if (!usePsk) {
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
#endif
|
|
|
|
|
if (earlyData) {
|
2018-08-28 15:37:15 +10:00
|
|
|
|
EarlyData(ctx, sslResume, msg, msgSz, buffer);
|
2017-06-19 11:37:10 +10:00
|
|
|
|
}
|
|
|
|
|
#endif
|
Intel QuickAssist (QAT) support and async enhancements/fixes:
* Adds ./configure "--with-intelqa=../QAT1.6”, port files, memory management and README.md (see wolfcrypt/src/port/intel/).
* Added Intel QAT support for RSA public/private (CRT/non-CRT), AES CBC/GCM, ECDH/ECDSA, DH, DES3, SHA, SHA224, SHA256, SHA384, SHA512, MD5 and HMAC.
* wolfSSL async enabled all client and server: PKI, Encrypt/Decrypt, Hashing/HMAC and Certificate Sign/Verify.
* wolfSSL async support in functions: Encrypt, Decrypt, VerifyMAC, BuildMessage, ConfirmSignature, DoCertificate, ParseCertRelative, and MakeSignature.
* wolfCrypt test and benchmark async support added for all HW acceleration.
* wolfCrypt benchmark multi-threading support.
* Added QuickAssist memory overrides for XMALLOC, XFREE and XREALLOC. XREALLOC determines if existing pointer needs reallocated for NUMA.
* Refactor to make sure “heap” is available for async dev init.
* Added async support for all examples for connect, accept, read and write.
* Added new WC_BIGINT (in wolfmath.c) for async hardware support.
* Added async simulator tests for DES3 CBC, AES CBC/GCM.
* Added QAT standalone build for unit testing.
* Added int return code to SHA and MD5 functions.
* Refactor of the async stack variable handling, so async operations have generic args buffer area and cleanup function pointer.
* Combined duplicate code for async push/pop handling.
* Refactor internal.c to add AllocKey / FreeKey.
* Refactor of hash init/free in TLS to use InitHashes and FreeHashes.
* Refactor of the async event->context to use WOLF_EVENT_TYPE_ASYNC_WOLFSSL for WOLFSSL* and WOLF_EVENT_TYPE_ASYNC_WOLFCRYPT for WC_ASYNC_DEV*.
* Suppress error message for WC_PENDING_E.
* Implemented "wolfSSL_EVP_MD_CTX_init" to do memset.
* Cleanup of the openssl compat CTX sizes when async is enabled.
* Cleanup of AES, DES3, DH, SHA, MD5, DES3, DH, HMAC, MD5 for consistency and readability.
* Cleanup of the OPAQUE_LEN.
* Cleanup to use ENCRYPT_LEN instead of sizeof(ssl->arrays.preMasterSecret).
* Changed ssl->arrays.preMasterSecret to use XMALLOC (accelerates HW operations)
* Reduce verbosity with debug enabled for "GetMyVersion", "wolfSSL Using RSA OAEP padding" and "wolfSSL Using RSA PKCSV15 padding".
* Updated RSA un-padding error message so its different than one above it for better debugging.
* Added QAT async enables for each algorithm.
* Refactor of the async init to use _ex.
* Added WC_ASYNC_THRESH_NONE to allow bypass of the async thresholds for testing.
* Reformatted the benchmark results:
PKI: "RSA 2048 private HW 18522 ops took 1.003 sec, avg 0.054 ms, 18467.763 ops/sec"
Crypto/Hashing: SHA-256 SW 350 megs took 1.009 seconds, 346.946 MB/s Cycles per byte = 9.87
* Added min execution time for all benchmarks.
* Moved wc_*GetHash and wc_*RestorePos to appropriate files so use of isCopy flag is local.
* Fix for ECC sign status sometimes being invalid due to uninitialized ECC digest in benchmark.
* Added new DECLARE_VAR/FREE_VAR and DECLARE_ARRAY/FREE_ARRAY macros for helping setup test/benchmark variables to accelerate async.
* Added NO_SW_BENCH option to only run HW bench.
* Added support for PRNG to use hardware SHA256 if _wc devId provided.
* Fix to prevent curve tests from running against wrong curve sizes. Changed wc_ecc_set_curve to match on exact size.
* Added the wc_*GetHash calls to the wolfCrypt tests.
* Added async hardware start/stop to wolfSSL init/cleanup.
* Refactor to add wc_*Copy for hashing context (for async), which replaces wc_*RestorePos.
* Fixes for building with TI hashing (including: SHA224, missing new API’s and building with dummy build for non hw testing). Note: We need to add build test for this `./configure CFLAGS="-DWOLFSSL_TI_HASH -DTI_DUMMY_BUILD”`.
* Added arg checks on wc_*GetHash and wc_*Copy.
* Cleanup of the BuildMD5, BuildSHA, BuildMD5_CertVerify and BuildSHA_CertVerify functions.
* Added new ./configure --enable-asyncthreads, to allow enable/disable of the async threading support. If --enable-asynccrypt set this will be enabled by default if pthread is supported. Allows multi-threaded benchmarks with async simulator.
* Added checks for all hashing to verify valid ->buffLen.
* Fix for SHA512 scan-build warning about un-initialized “W_X”.
* Fix for valgrind un-initialized use of buffer in AllocDer (der->buffer) and BuildTlsFinished handshake_hash.
* Refactor of the benchmarking to use common function for start, check and finish of the stats.
* Fixed issue with ECC cache loading in multi-threading.
* Fix bug with AESNI not aligned code that assumes XMALLOC is 16-byte aligned.
* Added new WC_ASYNC_NO_… options to allow disabling of individual async algorithms. New defines are: WC_ASYNC_NO_CRYPT, WC_ASYNC_NO_PKI and WC_ASYNC_NO_HASH. Additionally each algorithm has a WC_ASYNC_NO_[ALGO] define.
* Added “wolfSSL_GetAllocators” API and fixed the wolfCrypt memcb_test so it restores callback pointers after test is complete (fixes issue with using custom allocators and test breaking it).
2017-04-07 15:46:32 -07:00
|
|
|
|
do {
|
|
|
|
|
err = 0; /* reset error */
|
|
|
|
|
ret = wolfSSL_connect(sslResume);
|
2017-10-11 09:09:52 -07:00
|
|
|
|
if (ret != WOLFSSL_SUCCESS) {
|
Intel QuickAssist (QAT) support and async enhancements/fixes:
* Adds ./configure "--with-intelqa=../QAT1.6”, port files, memory management and README.md (see wolfcrypt/src/port/intel/).
* Added Intel QAT support for RSA public/private (CRT/non-CRT), AES CBC/GCM, ECDH/ECDSA, DH, DES3, SHA, SHA224, SHA256, SHA384, SHA512, MD5 and HMAC.
* wolfSSL async enabled all client and server: PKI, Encrypt/Decrypt, Hashing/HMAC and Certificate Sign/Verify.
* wolfSSL async support in functions: Encrypt, Decrypt, VerifyMAC, BuildMessage, ConfirmSignature, DoCertificate, ParseCertRelative, and MakeSignature.
* wolfCrypt test and benchmark async support added for all HW acceleration.
* wolfCrypt benchmark multi-threading support.
* Added QuickAssist memory overrides for XMALLOC, XFREE and XREALLOC. XREALLOC determines if existing pointer needs reallocated for NUMA.
* Refactor to make sure “heap” is available for async dev init.
* Added async support for all examples for connect, accept, read and write.
* Added new WC_BIGINT (in wolfmath.c) for async hardware support.
* Added async simulator tests for DES3 CBC, AES CBC/GCM.
* Added QAT standalone build for unit testing.
* Added int return code to SHA and MD5 functions.
* Refactor of the async stack variable handling, so async operations have generic args buffer area and cleanup function pointer.
* Combined duplicate code for async push/pop handling.
* Refactor internal.c to add AllocKey / FreeKey.
* Refactor of hash init/free in TLS to use InitHashes and FreeHashes.
* Refactor of the async event->context to use WOLF_EVENT_TYPE_ASYNC_WOLFSSL for WOLFSSL* and WOLF_EVENT_TYPE_ASYNC_WOLFCRYPT for WC_ASYNC_DEV*.
* Suppress error message for WC_PENDING_E.
* Implemented "wolfSSL_EVP_MD_CTX_init" to do memset.
* Cleanup of the openssl compat CTX sizes when async is enabled.
* Cleanup of AES, DES3, DH, SHA, MD5, DES3, DH, HMAC, MD5 for consistency and readability.
* Cleanup of the OPAQUE_LEN.
* Cleanup to use ENCRYPT_LEN instead of sizeof(ssl->arrays.preMasterSecret).
* Changed ssl->arrays.preMasterSecret to use XMALLOC (accelerates HW operations)
* Reduce verbosity with debug enabled for "GetMyVersion", "wolfSSL Using RSA OAEP padding" and "wolfSSL Using RSA PKCSV15 padding".
* Updated RSA un-padding error message so its different than one above it for better debugging.
* Added QAT async enables for each algorithm.
* Refactor of the async init to use _ex.
* Added WC_ASYNC_THRESH_NONE to allow bypass of the async thresholds for testing.
* Reformatted the benchmark results:
PKI: "RSA 2048 private HW 18522 ops took 1.003 sec, avg 0.054 ms, 18467.763 ops/sec"
Crypto/Hashing: SHA-256 SW 350 megs took 1.009 seconds, 346.946 MB/s Cycles per byte = 9.87
* Added min execution time for all benchmarks.
* Moved wc_*GetHash and wc_*RestorePos to appropriate files so use of isCopy flag is local.
* Fix for ECC sign status sometimes being invalid due to uninitialized ECC digest in benchmark.
* Added new DECLARE_VAR/FREE_VAR and DECLARE_ARRAY/FREE_ARRAY macros for helping setup test/benchmark variables to accelerate async.
* Added NO_SW_BENCH option to only run HW bench.
* Added support for PRNG to use hardware SHA256 if _wc devId provided.
* Fix to prevent curve tests from running against wrong curve sizes. Changed wc_ecc_set_curve to match on exact size.
* Added the wc_*GetHash calls to the wolfCrypt tests.
* Added async hardware start/stop to wolfSSL init/cleanup.
* Refactor to add wc_*Copy for hashing context (for async), which replaces wc_*RestorePos.
* Fixes for building with TI hashing (including: SHA224, missing new API’s and building with dummy build for non hw testing). Note: We need to add build test for this `./configure CFLAGS="-DWOLFSSL_TI_HASH -DTI_DUMMY_BUILD”`.
* Added arg checks on wc_*GetHash and wc_*Copy.
* Cleanup of the BuildMD5, BuildSHA, BuildMD5_CertVerify and BuildSHA_CertVerify functions.
* Added new ./configure --enable-asyncthreads, to allow enable/disable of the async threading support. If --enable-asynccrypt set this will be enabled by default if pthread is supported. Allows multi-threaded benchmarks with async simulator.
* Added checks for all hashing to verify valid ->buffLen.
* Fix for SHA512 scan-build warning about un-initialized “W_X”.
* Fix for valgrind un-initialized use of buffer in AllocDer (der->buffer) and BuildTlsFinished handshake_hash.
* Refactor of the benchmarking to use common function for start, check and finish of the stats.
* Fixed issue with ECC cache loading in multi-threading.
* Fix bug with AESNI not aligned code that assumes XMALLOC is 16-byte aligned.
* Added new WC_ASYNC_NO_… options to allow disabling of individual async algorithms. New defines are: WC_ASYNC_NO_CRYPT, WC_ASYNC_NO_PKI and WC_ASYNC_NO_HASH. Additionally each algorithm has a WC_ASYNC_NO_[ALGO] define.
* Added “wolfSSL_GetAllocators” API and fixed the wolfCrypt memcb_test so it restores callback pointers after test is complete (fixes issue with using custom allocators and test breaking it).
2017-04-07 15:46:32 -07:00
|
|
|
|
err = wolfSSL_get_error(sslResume, 0);
|
|
|
|
|
#ifdef WOLFSSL_ASYNC_CRYPT
|
|
|
|
|
if (err == WC_PENDING_E) {
|
|
|
|
|
ret = wolfSSL_AsyncPoll(sslResume,
|
|
|
|
|
WOLF_POLL_FLAG_CHECK_HW);
|
|
|
|
|
if (ret < 0) break;
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
} while (err == WC_PENDING_E);
|
2017-01-10 09:26:47 +10:00
|
|
|
|
}
|
2012-10-17 13:13:58 -07:00
|
|
|
|
#else
|
2017-03-06 09:49:05 -08:00
|
|
|
|
timeout.tv_sec = DEFAULT_TIMEOUT_SEC;
|
2012-08-20 17:02:25 -07:00
|
|
|
|
timeout.tv_usec = 0;
|
2018-04-13 11:53:42 +10:00
|
|
|
|
ret = NonBlockingSSL_Connect(sslResume); /* will keep retrying on timeout */
|
2012-08-20 17:02:25 -07:00
|
|
|
|
#endif
|
2017-10-11 09:09:52 -07:00
|
|
|
|
if (ret != WOLFSSL_SUCCESS) {
|
Intel QuickAssist (QAT) support and async enhancements/fixes:
* Adds ./configure "--with-intelqa=../QAT1.6”, port files, memory management and README.md (see wolfcrypt/src/port/intel/).
* Added Intel QAT support for RSA public/private (CRT/non-CRT), AES CBC/GCM, ECDH/ECDSA, DH, DES3, SHA, SHA224, SHA256, SHA384, SHA512, MD5 and HMAC.
* wolfSSL async enabled all client and server: PKI, Encrypt/Decrypt, Hashing/HMAC and Certificate Sign/Verify.
* wolfSSL async support in functions: Encrypt, Decrypt, VerifyMAC, BuildMessage, ConfirmSignature, DoCertificate, ParseCertRelative, and MakeSignature.
* wolfCrypt test and benchmark async support added for all HW acceleration.
* wolfCrypt benchmark multi-threading support.
* Added QuickAssist memory overrides for XMALLOC, XFREE and XREALLOC. XREALLOC determines if existing pointer needs reallocated for NUMA.
* Refactor to make sure “heap” is available for async dev init.
* Added async support for all examples for connect, accept, read and write.
* Added new WC_BIGINT (in wolfmath.c) for async hardware support.
* Added async simulator tests for DES3 CBC, AES CBC/GCM.
* Added QAT standalone build for unit testing.
* Added int return code to SHA and MD5 functions.
* Refactor of the async stack variable handling, so async operations have generic args buffer area and cleanup function pointer.
* Combined duplicate code for async push/pop handling.
* Refactor internal.c to add AllocKey / FreeKey.
* Refactor of hash init/free in TLS to use InitHashes and FreeHashes.
* Refactor of the async event->context to use WOLF_EVENT_TYPE_ASYNC_WOLFSSL for WOLFSSL* and WOLF_EVENT_TYPE_ASYNC_WOLFCRYPT for WC_ASYNC_DEV*.
* Suppress error message for WC_PENDING_E.
* Implemented "wolfSSL_EVP_MD_CTX_init" to do memset.
* Cleanup of the openssl compat CTX sizes when async is enabled.
* Cleanup of AES, DES3, DH, SHA, MD5, DES3, DH, HMAC, MD5 for consistency and readability.
* Cleanup of the OPAQUE_LEN.
* Cleanup to use ENCRYPT_LEN instead of sizeof(ssl->arrays.preMasterSecret).
* Changed ssl->arrays.preMasterSecret to use XMALLOC (accelerates HW operations)
* Reduce verbosity with debug enabled for "GetMyVersion", "wolfSSL Using RSA OAEP padding" and "wolfSSL Using RSA PKCSV15 padding".
* Updated RSA un-padding error message so its different than one above it for better debugging.
* Added QAT async enables for each algorithm.
* Refactor of the async init to use _ex.
* Added WC_ASYNC_THRESH_NONE to allow bypass of the async thresholds for testing.
* Reformatted the benchmark results:
PKI: "RSA 2048 private HW 18522 ops took 1.003 sec, avg 0.054 ms, 18467.763 ops/sec"
Crypto/Hashing: SHA-256 SW 350 megs took 1.009 seconds, 346.946 MB/s Cycles per byte = 9.87
* Added min execution time for all benchmarks.
* Moved wc_*GetHash and wc_*RestorePos to appropriate files so use of isCopy flag is local.
* Fix for ECC sign status sometimes being invalid due to uninitialized ECC digest in benchmark.
* Added new DECLARE_VAR/FREE_VAR and DECLARE_ARRAY/FREE_ARRAY macros for helping setup test/benchmark variables to accelerate async.
* Added NO_SW_BENCH option to only run HW bench.
* Added support for PRNG to use hardware SHA256 if _wc devId provided.
* Fix to prevent curve tests from running against wrong curve sizes. Changed wc_ecc_set_curve to match on exact size.
* Added the wc_*GetHash calls to the wolfCrypt tests.
* Added async hardware start/stop to wolfSSL init/cleanup.
* Refactor to add wc_*Copy for hashing context (for async), which replaces wc_*RestorePos.
* Fixes for building with TI hashing (including: SHA224, missing new API’s and building with dummy build for non hw testing). Note: We need to add build test for this `./configure CFLAGS="-DWOLFSSL_TI_HASH -DTI_DUMMY_BUILD”`.
* Added arg checks on wc_*GetHash and wc_*Copy.
* Cleanup of the BuildMD5, BuildSHA, BuildMD5_CertVerify and BuildSHA_CertVerify functions.
* Added new ./configure --enable-asyncthreads, to allow enable/disable of the async threading support. If --enable-asynccrypt set this will be enabled by default if pthread is supported. Allows multi-threaded benchmarks with async simulator.
* Added checks for all hashing to verify valid ->buffLen.
* Fix for SHA512 scan-build warning about un-initialized “W_X”.
* Fix for valgrind un-initialized use of buffer in AllocDer (der->buffer) and BuildTlsFinished handshake_hash.
* Refactor of the benchmarking to use common function for start, check and finish of the stats.
* Fixed issue with ECC cache loading in multi-threading.
* Fix bug with AESNI not aligned code that assumes XMALLOC is 16-byte aligned.
* Added new WC_ASYNC_NO_… options to allow disabling of individual async algorithms. New defines are: WC_ASYNC_NO_CRYPT, WC_ASYNC_NO_PKI and WC_ASYNC_NO_HASH. Additionally each algorithm has a WC_ASYNC_NO_[ALGO] define.
* Added “wolfSSL_GetAllocators” API and fixed the wolfCrypt memcb_test so it restores callback pointers after test is complete (fixes issue with using custom allocators and test breaking it).
2017-04-07 15:46:32 -07:00
|
|
|
|
printf("wolfSSL_connect resume error %d, %s\n", err,
|
|
|
|
|
wolfSSL_ERR_error_string(err, buffer));
|
2018-07-27 10:19:04 -07:00
|
|
|
|
wolfSSL_free(sslResume); sslResume = NULL;
|
|
|
|
|
wolfSSL_CTX_free(ctx); ctx = NULL;
|
Intel QuickAssist (QAT) support and async enhancements/fixes:
* Adds ./configure "--with-intelqa=../QAT1.6”, port files, memory management and README.md (see wolfcrypt/src/port/intel/).
* Added Intel QAT support for RSA public/private (CRT/non-CRT), AES CBC/GCM, ECDH/ECDSA, DH, DES3, SHA, SHA224, SHA256, SHA384, SHA512, MD5 and HMAC.
* wolfSSL async enabled all client and server: PKI, Encrypt/Decrypt, Hashing/HMAC and Certificate Sign/Verify.
* wolfSSL async support in functions: Encrypt, Decrypt, VerifyMAC, BuildMessage, ConfirmSignature, DoCertificate, ParseCertRelative, and MakeSignature.
* wolfCrypt test and benchmark async support added for all HW acceleration.
* wolfCrypt benchmark multi-threading support.
* Added QuickAssist memory overrides for XMALLOC, XFREE and XREALLOC. XREALLOC determines if existing pointer needs reallocated for NUMA.
* Refactor to make sure “heap” is available for async dev init.
* Added async support for all examples for connect, accept, read and write.
* Added new WC_BIGINT (in wolfmath.c) for async hardware support.
* Added async simulator tests for DES3 CBC, AES CBC/GCM.
* Added QAT standalone build for unit testing.
* Added int return code to SHA and MD5 functions.
* Refactor of the async stack variable handling, so async operations have generic args buffer area and cleanup function pointer.
* Combined duplicate code for async push/pop handling.
* Refactor internal.c to add AllocKey / FreeKey.
* Refactor of hash init/free in TLS to use InitHashes and FreeHashes.
* Refactor of the async event->context to use WOLF_EVENT_TYPE_ASYNC_WOLFSSL for WOLFSSL* and WOLF_EVENT_TYPE_ASYNC_WOLFCRYPT for WC_ASYNC_DEV*.
* Suppress error message for WC_PENDING_E.
* Implemented "wolfSSL_EVP_MD_CTX_init" to do memset.
* Cleanup of the openssl compat CTX sizes when async is enabled.
* Cleanup of AES, DES3, DH, SHA, MD5, DES3, DH, HMAC, MD5 for consistency and readability.
* Cleanup of the OPAQUE_LEN.
* Cleanup to use ENCRYPT_LEN instead of sizeof(ssl->arrays.preMasterSecret).
* Changed ssl->arrays.preMasterSecret to use XMALLOC (accelerates HW operations)
* Reduce verbosity with debug enabled for "GetMyVersion", "wolfSSL Using RSA OAEP padding" and "wolfSSL Using RSA PKCSV15 padding".
* Updated RSA un-padding error message so its different than one above it for better debugging.
* Added QAT async enables for each algorithm.
* Refactor of the async init to use _ex.
* Added WC_ASYNC_THRESH_NONE to allow bypass of the async thresholds for testing.
* Reformatted the benchmark results:
PKI: "RSA 2048 private HW 18522 ops took 1.003 sec, avg 0.054 ms, 18467.763 ops/sec"
Crypto/Hashing: SHA-256 SW 350 megs took 1.009 seconds, 346.946 MB/s Cycles per byte = 9.87
* Added min execution time for all benchmarks.
* Moved wc_*GetHash and wc_*RestorePos to appropriate files so use of isCopy flag is local.
* Fix for ECC sign status sometimes being invalid due to uninitialized ECC digest in benchmark.
* Added new DECLARE_VAR/FREE_VAR and DECLARE_ARRAY/FREE_ARRAY macros for helping setup test/benchmark variables to accelerate async.
* Added NO_SW_BENCH option to only run HW bench.
* Added support for PRNG to use hardware SHA256 if _wc devId provided.
* Fix to prevent curve tests from running against wrong curve sizes. Changed wc_ecc_set_curve to match on exact size.
* Added the wc_*GetHash calls to the wolfCrypt tests.
* Added async hardware start/stop to wolfSSL init/cleanup.
* Refactor to add wc_*Copy for hashing context (for async), which replaces wc_*RestorePos.
* Fixes for building with TI hashing (including: SHA224, missing new API’s and building with dummy build for non hw testing). Note: We need to add build test for this `./configure CFLAGS="-DWOLFSSL_TI_HASH -DTI_DUMMY_BUILD”`.
* Added arg checks on wc_*GetHash and wc_*Copy.
* Cleanup of the BuildMD5, BuildSHA, BuildMD5_CertVerify and BuildSHA_CertVerify functions.
* Added new ./configure --enable-asyncthreads, to allow enable/disable of the async threading support. If --enable-asynccrypt set this will be enabled by default if pthread is supported. Allows multi-threaded benchmarks with async simulator.
* Added checks for all hashing to verify valid ->buffLen.
* Fix for SHA512 scan-build warning about un-initialized “W_X”.
* Fix for valgrind un-initialized use of buffer in AllocDer (der->buffer) and BuildTlsFinished handshake_hash.
* Refactor of the benchmarking to use common function for start, check and finish of the stats.
* Fixed issue with ECC cache loading in multi-threading.
* Fix bug with AESNI not aligned code that assumes XMALLOC is 16-byte aligned.
* Added new WC_ASYNC_NO_… options to allow disabling of individual async algorithms. New defines are: WC_ASYNC_NO_CRYPT, WC_ASYNC_NO_PKI and WC_ASYNC_NO_HASH. Additionally each algorithm has a WC_ASYNC_NO_[ALGO] define.
* Added “wolfSSL_GetAllocators” API and fixed the wolfCrypt memcb_test so it restores callback pointers after test is complete (fixes issue with using custom allocators and test breaking it).
2017-04-07 15:46:32 -07:00
|
|
|
|
err_sys("wolfSSL_connect resume failed");
|
|
|
|
|
}
|
|
|
|
|
|
2018-10-20 13:40:01 +09:00
|
|
|
|
showPeerEx(sslResume, lng_index);
|
2011-02-05 11:14:47 -08:00
|
|
|
|
|
2015-01-05 14:48:43 -07:00
|
|
|
|
if (wolfSSL_session_reused(sslResume))
|
2012-10-17 13:13:58 -07:00
|
|
|
|
printf("reused session id\n");
|
|
|
|
|
else
|
|
|
|
|
printf("didn't reuse session id!!!\n");
|
2013-03-07 17:44:40 -08:00
|
|
|
|
|
2015-10-13 15:00:53 -07:00
|
|
|
|
#ifdef HAVE_ALPN
|
|
|
|
|
if (alpnList != NULL) {
|
|
|
|
|
char *protocol_name = NULL;
|
|
|
|
|
word16 protocol_nameSz = 0;
|
|
|
|
|
|
|
|
|
|
printf("Sending ALPN accepted list : %s\n", alpnList);
|
|
|
|
|
err = wolfSSL_ALPN_GetProtocol(sslResume, &protocol_name,
|
|
|
|
|
&protocol_nameSz);
|
2017-10-11 09:09:52 -07:00
|
|
|
|
if (err == WOLFSSL_SUCCESS)
|
2015-10-13 15:00:53 -07:00
|
|
|
|
printf("Received ALPN protocol : %s (%d)\n",
|
|
|
|
|
protocol_name, protocol_nameSz);
|
2017-10-18 10:38:27 -07:00
|
|
|
|
else if (err == WOLFSSL_ALPN_NOT_FOUND)
|
2015-10-13 15:00:53 -07:00
|
|
|
|
printf("Not received ALPN response (no match with server)\n");
|
|
|
|
|
else
|
|
|
|
|
printf("Getting ALPN protocol name failed\n");
|
|
|
|
|
}
|
|
|
|
|
#endif
|
2016-05-10 13:27:45 -06:00
|
|
|
|
|
|
|
|
|
/* allow some time for exporting the session */
|
|
|
|
|
#ifdef WOLFSSL_SESSION_EXPORT_DEBUG
|
|
|
|
|
#ifdef USE_WINDOWS_API
|
|
|
|
|
Sleep(500);
|
|
|
|
|
#elif defined(WOLFSSL_TIRTOS)
|
|
|
|
|
Task_sleep(1);
|
|
|
|
|
#else
|
|
|
|
|
sleep(1);
|
|
|
|
|
#endif
|
|
|
|
|
#endif /* WOLFSSL_SESSION_EXPORT_DEBUG */
|
|
|
|
|
|
Intel QuickAssist (QAT) support and async enhancements/fixes:
* Adds ./configure "--with-intelqa=../QAT1.6”, port files, memory management and README.md (see wolfcrypt/src/port/intel/).
* Added Intel QAT support for RSA public/private (CRT/non-CRT), AES CBC/GCM, ECDH/ECDSA, DH, DES3, SHA, SHA224, SHA256, SHA384, SHA512, MD5 and HMAC.
* wolfSSL async enabled all client and server: PKI, Encrypt/Decrypt, Hashing/HMAC and Certificate Sign/Verify.
* wolfSSL async support in functions: Encrypt, Decrypt, VerifyMAC, BuildMessage, ConfirmSignature, DoCertificate, ParseCertRelative, and MakeSignature.
* wolfCrypt test and benchmark async support added for all HW acceleration.
* wolfCrypt benchmark multi-threading support.
* Added QuickAssist memory overrides for XMALLOC, XFREE and XREALLOC. XREALLOC determines if existing pointer needs reallocated for NUMA.
* Refactor to make sure “heap” is available for async dev init.
* Added async support for all examples for connect, accept, read and write.
* Added new WC_BIGINT (in wolfmath.c) for async hardware support.
* Added async simulator tests for DES3 CBC, AES CBC/GCM.
* Added QAT standalone build for unit testing.
* Added int return code to SHA and MD5 functions.
* Refactor of the async stack variable handling, so async operations have generic args buffer area and cleanup function pointer.
* Combined duplicate code for async push/pop handling.
* Refactor internal.c to add AllocKey / FreeKey.
* Refactor of hash init/free in TLS to use InitHashes and FreeHashes.
* Refactor of the async event->context to use WOLF_EVENT_TYPE_ASYNC_WOLFSSL for WOLFSSL* and WOLF_EVENT_TYPE_ASYNC_WOLFCRYPT for WC_ASYNC_DEV*.
* Suppress error message for WC_PENDING_E.
* Implemented "wolfSSL_EVP_MD_CTX_init" to do memset.
* Cleanup of the openssl compat CTX sizes when async is enabled.
* Cleanup of AES, DES3, DH, SHA, MD5, DES3, DH, HMAC, MD5 for consistency and readability.
* Cleanup of the OPAQUE_LEN.
* Cleanup to use ENCRYPT_LEN instead of sizeof(ssl->arrays.preMasterSecret).
* Changed ssl->arrays.preMasterSecret to use XMALLOC (accelerates HW operations)
* Reduce verbosity with debug enabled for "GetMyVersion", "wolfSSL Using RSA OAEP padding" and "wolfSSL Using RSA PKCSV15 padding".
* Updated RSA un-padding error message so its different than one above it for better debugging.
* Added QAT async enables for each algorithm.
* Refactor of the async init to use _ex.
* Added WC_ASYNC_THRESH_NONE to allow bypass of the async thresholds for testing.
* Reformatted the benchmark results:
PKI: "RSA 2048 private HW 18522 ops took 1.003 sec, avg 0.054 ms, 18467.763 ops/sec"
Crypto/Hashing: SHA-256 SW 350 megs took 1.009 seconds, 346.946 MB/s Cycles per byte = 9.87
* Added min execution time for all benchmarks.
* Moved wc_*GetHash and wc_*RestorePos to appropriate files so use of isCopy flag is local.
* Fix for ECC sign status sometimes being invalid due to uninitialized ECC digest in benchmark.
* Added new DECLARE_VAR/FREE_VAR and DECLARE_ARRAY/FREE_ARRAY macros for helping setup test/benchmark variables to accelerate async.
* Added NO_SW_BENCH option to only run HW bench.
* Added support for PRNG to use hardware SHA256 if _wc devId provided.
* Fix to prevent curve tests from running against wrong curve sizes. Changed wc_ecc_set_curve to match on exact size.
* Added the wc_*GetHash calls to the wolfCrypt tests.
* Added async hardware start/stop to wolfSSL init/cleanup.
* Refactor to add wc_*Copy for hashing context (for async), which replaces wc_*RestorePos.
* Fixes for building with TI hashing (including: SHA224, missing new API’s and building with dummy build for non hw testing). Note: We need to add build test for this `./configure CFLAGS="-DWOLFSSL_TI_HASH -DTI_DUMMY_BUILD”`.
* Added arg checks on wc_*GetHash and wc_*Copy.
* Cleanup of the BuildMD5, BuildSHA, BuildMD5_CertVerify and BuildSHA_CertVerify functions.
* Added new ./configure --enable-asyncthreads, to allow enable/disable of the async threading support. If --enable-asynccrypt set this will be enabled by default if pthread is supported. Allows multi-threaded benchmarks with async simulator.
* Added checks for all hashing to verify valid ->buffLen.
* Fix for SHA512 scan-build warning about un-initialized “W_X”.
* Fix for valgrind un-initialized use of buffer in AllocDer (der->buffer) and BuildTlsFinished handshake_hash.
* Refactor of the benchmarking to use common function for start, check and finish of the stats.
* Fixed issue with ECC cache loading in multi-threading.
* Fix bug with AESNI not aligned code that assumes XMALLOC is 16-byte aligned.
* Added new WC_ASYNC_NO_… options to allow disabling of individual async algorithms. New defines are: WC_ASYNC_NO_CRYPT, WC_ASYNC_NO_PKI and WC_ASYNC_NO_HASH. Additionally each algorithm has a WC_ASYNC_NO_[ALGO] define.
* Added “wolfSSL_GetAllocators” API and fixed the wolfCrypt memcb_test so it restores callback pointers after test is complete (fixes issue with using custom allocators and test breaking it).
2017-04-07 15:46:32 -07:00
|
|
|
|
do {
|
|
|
|
|
err = 0; /* reset error */
|
|
|
|
|
ret = wolfSSL_write(sslResume, resumeMsg, resumeSz);
|
|
|
|
|
if (ret <= 0) {
|
|
|
|
|
err = wolfSSL_get_error(sslResume, 0);
|
|
|
|
|
#ifdef WOLFSSL_ASYNC_CRYPT
|
|
|
|
|
if (err == WC_PENDING_E) {
|
|
|
|
|
ret = wolfSSL_AsyncPoll(sslResume, WOLF_POLL_FLAG_CHECK_HW);
|
|
|
|
|
if (ret < 0) break;
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
} while (err == WC_PENDING_E);
|
|
|
|
|
if (ret != resumeSz) {
|
|
|
|
|
printf("SSL_write resume error %d, %s\n", err,
|
|
|
|
|
wolfSSL_ERR_error_string(err, buffer));
|
2018-07-27 10:19:04 -07:00
|
|
|
|
wolfSSL_free(sslResume); sslResume = NULL;
|
|
|
|
|
wolfSSL_CTX_free(ctx); ctx = NULL;
|
2012-10-17 13:13:58 -07:00
|
|
|
|
err_sys("SSL_write failed");
|
2017-01-10 09:26:47 +10:00
|
|
|
|
}
|
2012-10-17 13:13:58 -07:00
|
|
|
|
|
|
|
|
|
if (nonBlocking) {
|
2012-10-23 16:32:47 -07:00
|
|
|
|
/* give server a chance to bounce a message back to client */
|
Intel QuickAssist (QAT) support and async enhancements/fixes:
* Adds ./configure "--with-intelqa=../QAT1.6”, port files, memory management and README.md (see wolfcrypt/src/port/intel/).
* Added Intel QAT support for RSA public/private (CRT/non-CRT), AES CBC/GCM, ECDH/ECDSA, DH, DES3, SHA, SHA224, SHA256, SHA384, SHA512, MD5 and HMAC.
* wolfSSL async enabled all client and server: PKI, Encrypt/Decrypt, Hashing/HMAC and Certificate Sign/Verify.
* wolfSSL async support in functions: Encrypt, Decrypt, VerifyMAC, BuildMessage, ConfirmSignature, DoCertificate, ParseCertRelative, and MakeSignature.
* wolfCrypt test and benchmark async support added for all HW acceleration.
* wolfCrypt benchmark multi-threading support.
* Added QuickAssist memory overrides for XMALLOC, XFREE and XREALLOC. XREALLOC determines if existing pointer needs reallocated for NUMA.
* Refactor to make sure “heap” is available for async dev init.
* Added async support for all examples for connect, accept, read and write.
* Added new WC_BIGINT (in wolfmath.c) for async hardware support.
* Added async simulator tests for DES3 CBC, AES CBC/GCM.
* Added QAT standalone build for unit testing.
* Added int return code to SHA and MD5 functions.
* Refactor of the async stack variable handling, so async operations have generic args buffer area and cleanup function pointer.
* Combined duplicate code for async push/pop handling.
* Refactor internal.c to add AllocKey / FreeKey.
* Refactor of hash init/free in TLS to use InitHashes and FreeHashes.
* Refactor of the async event->context to use WOLF_EVENT_TYPE_ASYNC_WOLFSSL for WOLFSSL* and WOLF_EVENT_TYPE_ASYNC_WOLFCRYPT for WC_ASYNC_DEV*.
* Suppress error message for WC_PENDING_E.
* Implemented "wolfSSL_EVP_MD_CTX_init" to do memset.
* Cleanup of the openssl compat CTX sizes when async is enabled.
* Cleanup of AES, DES3, DH, SHA, MD5, DES3, DH, HMAC, MD5 for consistency and readability.
* Cleanup of the OPAQUE_LEN.
* Cleanup to use ENCRYPT_LEN instead of sizeof(ssl->arrays.preMasterSecret).
* Changed ssl->arrays.preMasterSecret to use XMALLOC (accelerates HW operations)
* Reduce verbosity with debug enabled for "GetMyVersion", "wolfSSL Using RSA OAEP padding" and "wolfSSL Using RSA PKCSV15 padding".
* Updated RSA un-padding error message so its different than one above it for better debugging.
* Added QAT async enables for each algorithm.
* Refactor of the async init to use _ex.
* Added WC_ASYNC_THRESH_NONE to allow bypass of the async thresholds for testing.
* Reformatted the benchmark results:
PKI: "RSA 2048 private HW 18522 ops took 1.003 sec, avg 0.054 ms, 18467.763 ops/sec"
Crypto/Hashing: SHA-256 SW 350 megs took 1.009 seconds, 346.946 MB/s Cycles per byte = 9.87
* Added min execution time for all benchmarks.
* Moved wc_*GetHash and wc_*RestorePos to appropriate files so use of isCopy flag is local.
* Fix for ECC sign status sometimes being invalid due to uninitialized ECC digest in benchmark.
* Added new DECLARE_VAR/FREE_VAR and DECLARE_ARRAY/FREE_ARRAY macros for helping setup test/benchmark variables to accelerate async.
* Added NO_SW_BENCH option to only run HW bench.
* Added support for PRNG to use hardware SHA256 if _wc devId provided.
* Fix to prevent curve tests from running against wrong curve sizes. Changed wc_ecc_set_curve to match on exact size.
* Added the wc_*GetHash calls to the wolfCrypt tests.
* Added async hardware start/stop to wolfSSL init/cleanup.
* Refactor to add wc_*Copy for hashing context (for async), which replaces wc_*RestorePos.
* Fixes for building with TI hashing (including: SHA224, missing new API’s and building with dummy build for non hw testing). Note: We need to add build test for this `./configure CFLAGS="-DWOLFSSL_TI_HASH -DTI_DUMMY_BUILD”`.
* Added arg checks on wc_*GetHash and wc_*Copy.
* Cleanup of the BuildMD5, BuildSHA, BuildMD5_CertVerify and BuildSHA_CertVerify functions.
* Added new ./configure --enable-asyncthreads, to allow enable/disable of the async threading support. If --enable-asynccrypt set this will be enabled by default if pthread is supported. Allows multi-threaded benchmarks with async simulator.
* Added checks for all hashing to verify valid ->buffLen.
* Fix for SHA512 scan-build warning about un-initialized “W_X”.
* Fix for valgrind un-initialized use of buffer in AllocDer (der->buffer) and BuildTlsFinished handshake_hash.
* Refactor of the benchmarking to use common function for start, check and finish of the stats.
* Fixed issue with ECC cache loading in multi-threading.
* Fix bug with AESNI not aligned code that assumes XMALLOC is 16-byte aligned.
* Added new WC_ASYNC_NO_… options to allow disabling of individual async algorithms. New defines are: WC_ASYNC_NO_CRYPT, WC_ASYNC_NO_PKI and WC_ASYNC_NO_HASH. Additionally each algorithm has a WC_ASYNC_NO_[ALGO] define.
* Added “wolfSSL_GetAllocators” API and fixed the wolfCrypt memcb_test so it restores callback pointers after test is complete (fixes issue with using custom allocators and test breaking it).
2017-04-07 15:46:32 -07:00
|
|
|
|
#ifdef USE_WINDOWS_API
|
|
|
|
|
Sleep(500);
|
|
|
|
|
#elif defined(WOLFSSL_TIRTOS)
|
|
|
|
|
Task_sleep(1);
|
|
|
|
|
#else
|
|
|
|
|
sleep(1);
|
|
|
|
|
#endif
|
2012-10-17 13:13:58 -07:00
|
|
|
|
}
|
2012-08-20 17:02:25 -07:00
|
|
|
|
|
Intel QuickAssist (QAT) support and async enhancements/fixes:
* Adds ./configure "--with-intelqa=../QAT1.6”, port files, memory management and README.md (see wolfcrypt/src/port/intel/).
* Added Intel QAT support for RSA public/private (CRT/non-CRT), AES CBC/GCM, ECDH/ECDSA, DH, DES3, SHA, SHA224, SHA256, SHA384, SHA512, MD5 and HMAC.
* wolfSSL async enabled all client and server: PKI, Encrypt/Decrypt, Hashing/HMAC and Certificate Sign/Verify.
* wolfSSL async support in functions: Encrypt, Decrypt, VerifyMAC, BuildMessage, ConfirmSignature, DoCertificate, ParseCertRelative, and MakeSignature.
* wolfCrypt test and benchmark async support added for all HW acceleration.
* wolfCrypt benchmark multi-threading support.
* Added QuickAssist memory overrides for XMALLOC, XFREE and XREALLOC. XREALLOC determines if existing pointer needs reallocated for NUMA.
* Refactor to make sure “heap” is available for async dev init.
* Added async support for all examples for connect, accept, read and write.
* Added new WC_BIGINT (in wolfmath.c) for async hardware support.
* Added async simulator tests for DES3 CBC, AES CBC/GCM.
* Added QAT standalone build for unit testing.
* Added int return code to SHA and MD5 functions.
* Refactor of the async stack variable handling, so async operations have generic args buffer area and cleanup function pointer.
* Combined duplicate code for async push/pop handling.
* Refactor internal.c to add AllocKey / FreeKey.
* Refactor of hash init/free in TLS to use InitHashes and FreeHashes.
* Refactor of the async event->context to use WOLF_EVENT_TYPE_ASYNC_WOLFSSL for WOLFSSL* and WOLF_EVENT_TYPE_ASYNC_WOLFCRYPT for WC_ASYNC_DEV*.
* Suppress error message for WC_PENDING_E.
* Implemented "wolfSSL_EVP_MD_CTX_init" to do memset.
* Cleanup of the openssl compat CTX sizes when async is enabled.
* Cleanup of AES, DES3, DH, SHA, MD5, DES3, DH, HMAC, MD5 for consistency and readability.
* Cleanup of the OPAQUE_LEN.
* Cleanup to use ENCRYPT_LEN instead of sizeof(ssl->arrays.preMasterSecret).
* Changed ssl->arrays.preMasterSecret to use XMALLOC (accelerates HW operations)
* Reduce verbosity with debug enabled for "GetMyVersion", "wolfSSL Using RSA OAEP padding" and "wolfSSL Using RSA PKCSV15 padding".
* Updated RSA un-padding error message so its different than one above it for better debugging.
* Added QAT async enables for each algorithm.
* Refactor of the async init to use _ex.
* Added WC_ASYNC_THRESH_NONE to allow bypass of the async thresholds for testing.
* Reformatted the benchmark results:
PKI: "RSA 2048 private HW 18522 ops took 1.003 sec, avg 0.054 ms, 18467.763 ops/sec"
Crypto/Hashing: SHA-256 SW 350 megs took 1.009 seconds, 346.946 MB/s Cycles per byte = 9.87
* Added min execution time for all benchmarks.
* Moved wc_*GetHash and wc_*RestorePos to appropriate files so use of isCopy flag is local.
* Fix for ECC sign status sometimes being invalid due to uninitialized ECC digest in benchmark.
* Added new DECLARE_VAR/FREE_VAR and DECLARE_ARRAY/FREE_ARRAY macros for helping setup test/benchmark variables to accelerate async.
* Added NO_SW_BENCH option to only run HW bench.
* Added support for PRNG to use hardware SHA256 if _wc devId provided.
* Fix to prevent curve tests from running against wrong curve sizes. Changed wc_ecc_set_curve to match on exact size.
* Added the wc_*GetHash calls to the wolfCrypt tests.
* Added async hardware start/stop to wolfSSL init/cleanup.
* Refactor to add wc_*Copy for hashing context (for async), which replaces wc_*RestorePos.
* Fixes for building with TI hashing (including: SHA224, missing new API’s and building with dummy build for non hw testing). Note: We need to add build test for this `./configure CFLAGS="-DWOLFSSL_TI_HASH -DTI_DUMMY_BUILD”`.
* Added arg checks on wc_*GetHash and wc_*Copy.
* Cleanup of the BuildMD5, BuildSHA, BuildMD5_CertVerify and BuildSHA_CertVerify functions.
* Added new ./configure --enable-asyncthreads, to allow enable/disable of the async threading support. If --enable-asynccrypt set this will be enabled by default if pthread is supported. Allows multi-threaded benchmarks with async simulator.
* Added checks for all hashing to verify valid ->buffLen.
* Fix for SHA512 scan-build warning about un-initialized “W_X”.
* Fix for valgrind un-initialized use of buffer in AllocDer (der->buffer) and BuildTlsFinished handshake_hash.
* Refactor of the benchmarking to use common function for start, check and finish of the stats.
* Fixed issue with ECC cache loading in multi-threading.
* Fix bug with AESNI not aligned code that assumes XMALLOC is 16-byte aligned.
* Added new WC_ASYNC_NO_… options to allow disabling of individual async algorithms. New defines are: WC_ASYNC_NO_CRYPT, WC_ASYNC_NO_PKI and WC_ASYNC_NO_HASH. Additionally each algorithm has a WC_ASYNC_NO_[ALGO] define.
* Added “wolfSSL_GetAllocators” API and fixed the wolfCrypt memcb_test so it restores callback pointers after test is complete (fixes issue with using custom allocators and test breaking it).
2017-04-07 15:46:32 -07:00
|
|
|
|
do {
|
|
|
|
|
err = 0; /* reset error */
|
|
|
|
|
ret = wolfSSL_read(sslResume, reply, sizeof(reply)-1);
|
|
|
|
|
if (ret <= 0) {
|
|
|
|
|
err = wolfSSL_get_error(sslResume, 0);
|
|
|
|
|
#ifdef WOLFSSL_ASYNC_CRYPT
|
|
|
|
|
if (err == WC_PENDING_E) {
|
|
|
|
|
ret = wolfSSL_AsyncPoll(sslResume, WOLF_POLL_FLAG_CHECK_HW);
|
|
|
|
|
if (ret < 0) break;
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
} while (err == WC_PENDING_E);
|
|
|
|
|
if (ret > 0) {
|
|
|
|
|
reply[ret] = 0;
|
2017-03-06 09:49:05 -08:00
|
|
|
|
printf("Server resume response: %s\n", reply);
|
2015-11-02 13:26:46 -08:00
|
|
|
|
|
2017-03-06 09:49:05 -08:00
|
|
|
|
if (sendGET) { /* get html */
|
|
|
|
|
while (1) {
|
Intel QuickAssist (QAT) support and async enhancements/fixes:
* Adds ./configure "--with-intelqa=../QAT1.6”, port files, memory management and README.md (see wolfcrypt/src/port/intel/).
* Added Intel QAT support for RSA public/private (CRT/non-CRT), AES CBC/GCM, ECDH/ECDSA, DH, DES3, SHA, SHA224, SHA256, SHA384, SHA512, MD5 and HMAC.
* wolfSSL async enabled all client and server: PKI, Encrypt/Decrypt, Hashing/HMAC and Certificate Sign/Verify.
* wolfSSL async support in functions: Encrypt, Decrypt, VerifyMAC, BuildMessage, ConfirmSignature, DoCertificate, ParseCertRelative, and MakeSignature.
* wolfCrypt test and benchmark async support added for all HW acceleration.
* wolfCrypt benchmark multi-threading support.
* Added QuickAssist memory overrides for XMALLOC, XFREE and XREALLOC. XREALLOC determines if existing pointer needs reallocated for NUMA.
* Refactor to make sure “heap” is available for async dev init.
* Added async support for all examples for connect, accept, read and write.
* Added new WC_BIGINT (in wolfmath.c) for async hardware support.
* Added async simulator tests for DES3 CBC, AES CBC/GCM.
* Added QAT standalone build for unit testing.
* Added int return code to SHA and MD5 functions.
* Refactor of the async stack variable handling, so async operations have generic args buffer area and cleanup function pointer.
* Combined duplicate code for async push/pop handling.
* Refactor internal.c to add AllocKey / FreeKey.
* Refactor of hash init/free in TLS to use InitHashes and FreeHashes.
* Refactor of the async event->context to use WOLF_EVENT_TYPE_ASYNC_WOLFSSL for WOLFSSL* and WOLF_EVENT_TYPE_ASYNC_WOLFCRYPT for WC_ASYNC_DEV*.
* Suppress error message for WC_PENDING_E.
* Implemented "wolfSSL_EVP_MD_CTX_init" to do memset.
* Cleanup of the openssl compat CTX sizes when async is enabled.
* Cleanup of AES, DES3, DH, SHA, MD5, DES3, DH, HMAC, MD5 for consistency and readability.
* Cleanup of the OPAQUE_LEN.
* Cleanup to use ENCRYPT_LEN instead of sizeof(ssl->arrays.preMasterSecret).
* Changed ssl->arrays.preMasterSecret to use XMALLOC (accelerates HW operations)
* Reduce verbosity with debug enabled for "GetMyVersion", "wolfSSL Using RSA OAEP padding" and "wolfSSL Using RSA PKCSV15 padding".
* Updated RSA un-padding error message so its different than one above it for better debugging.
* Added QAT async enables for each algorithm.
* Refactor of the async init to use _ex.
* Added WC_ASYNC_THRESH_NONE to allow bypass of the async thresholds for testing.
* Reformatted the benchmark results:
PKI: "RSA 2048 private HW 18522 ops took 1.003 sec, avg 0.054 ms, 18467.763 ops/sec"
Crypto/Hashing: SHA-256 SW 350 megs took 1.009 seconds, 346.946 MB/s Cycles per byte = 9.87
* Added min execution time for all benchmarks.
* Moved wc_*GetHash and wc_*RestorePos to appropriate files so use of isCopy flag is local.
* Fix for ECC sign status sometimes being invalid due to uninitialized ECC digest in benchmark.
* Added new DECLARE_VAR/FREE_VAR and DECLARE_ARRAY/FREE_ARRAY macros for helping setup test/benchmark variables to accelerate async.
* Added NO_SW_BENCH option to only run HW bench.
* Added support for PRNG to use hardware SHA256 if _wc devId provided.
* Fix to prevent curve tests from running against wrong curve sizes. Changed wc_ecc_set_curve to match on exact size.
* Added the wc_*GetHash calls to the wolfCrypt tests.
* Added async hardware start/stop to wolfSSL init/cleanup.
* Refactor to add wc_*Copy for hashing context (for async), which replaces wc_*RestorePos.
* Fixes for building with TI hashing (including: SHA224, missing new API’s and building with dummy build for non hw testing). Note: We need to add build test for this `./configure CFLAGS="-DWOLFSSL_TI_HASH -DTI_DUMMY_BUILD”`.
* Added arg checks on wc_*GetHash and wc_*Copy.
* Cleanup of the BuildMD5, BuildSHA, BuildMD5_CertVerify and BuildSHA_CertVerify functions.
* Added new ./configure --enable-asyncthreads, to allow enable/disable of the async threading support. If --enable-asynccrypt set this will be enabled by default if pthread is supported. Allows multi-threaded benchmarks with async simulator.
* Added checks for all hashing to verify valid ->buffLen.
* Fix for SHA512 scan-build warning about un-initialized “W_X”.
* Fix for valgrind un-initialized use of buffer in AllocDer (der->buffer) and BuildTlsFinished handshake_hash.
* Refactor of the benchmarking to use common function for start, check and finish of the stats.
* Fixed issue with ECC cache loading in multi-threading.
* Fix bug with AESNI not aligned code that assumes XMALLOC is 16-byte aligned.
* Added new WC_ASYNC_NO_… options to allow disabling of individual async algorithms. New defines are: WC_ASYNC_NO_CRYPT, WC_ASYNC_NO_PKI and WC_ASYNC_NO_HASH. Additionally each algorithm has a WC_ASYNC_NO_[ALGO] define.
* Added “wolfSSL_GetAllocators” API and fixed the wolfCrypt memcb_test so it restores callback pointers after test is complete (fixes issue with using custom allocators and test breaking it).
2017-04-07 15:46:32 -07:00
|
|
|
|
do {
|
|
|
|
|
err = 0; /* reset error */
|
|
|
|
|
ret = wolfSSL_read(sslResume, reply, sizeof(reply)-1);
|
|
|
|
|
if (ret <= 0) {
|
|
|
|
|
err = wolfSSL_get_error(sslResume, 0);
|
|
|
|
|
#ifdef WOLFSSL_ASYNC_CRYPT
|
|
|
|
|
if (err == WC_PENDING_E) {
|
|
|
|
|
ret = wolfSSL_AsyncPoll(sslResume,
|
|
|
|
|
WOLF_POLL_FLAG_CHECK_HW);
|
|
|
|
|
if (ret < 0) break;
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
} while (err == WC_PENDING_E);
|
|
|
|
|
if (ret > 0) {
|
|
|
|
|
reply[ret] = 0;
|
2017-03-06 09:49:05 -08:00
|
|
|
|
printf("%s\n", reply);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
break;
|
2015-11-02 13:26:46 -08:00
|
|
|
|
}
|
|
|
|
|
}
|
2012-10-17 13:13:58 -07:00
|
|
|
|
}
|
Intel QuickAssist (QAT) support and async enhancements/fixes:
* Adds ./configure "--with-intelqa=../QAT1.6”, port files, memory management and README.md (see wolfcrypt/src/port/intel/).
* Added Intel QAT support for RSA public/private (CRT/non-CRT), AES CBC/GCM, ECDH/ECDSA, DH, DES3, SHA, SHA224, SHA256, SHA384, SHA512, MD5 and HMAC.
* wolfSSL async enabled all client and server: PKI, Encrypt/Decrypt, Hashing/HMAC and Certificate Sign/Verify.
* wolfSSL async support in functions: Encrypt, Decrypt, VerifyMAC, BuildMessage, ConfirmSignature, DoCertificate, ParseCertRelative, and MakeSignature.
* wolfCrypt test and benchmark async support added for all HW acceleration.
* wolfCrypt benchmark multi-threading support.
* Added QuickAssist memory overrides for XMALLOC, XFREE and XREALLOC. XREALLOC determines if existing pointer needs reallocated for NUMA.
* Refactor to make sure “heap” is available for async dev init.
* Added async support for all examples for connect, accept, read and write.
* Added new WC_BIGINT (in wolfmath.c) for async hardware support.
* Added async simulator tests for DES3 CBC, AES CBC/GCM.
* Added QAT standalone build for unit testing.
* Added int return code to SHA and MD5 functions.
* Refactor of the async stack variable handling, so async operations have generic args buffer area and cleanup function pointer.
* Combined duplicate code for async push/pop handling.
* Refactor internal.c to add AllocKey / FreeKey.
* Refactor of hash init/free in TLS to use InitHashes and FreeHashes.
* Refactor of the async event->context to use WOLF_EVENT_TYPE_ASYNC_WOLFSSL for WOLFSSL* and WOLF_EVENT_TYPE_ASYNC_WOLFCRYPT for WC_ASYNC_DEV*.
* Suppress error message for WC_PENDING_E.
* Implemented "wolfSSL_EVP_MD_CTX_init" to do memset.
* Cleanup of the openssl compat CTX sizes when async is enabled.
* Cleanup of AES, DES3, DH, SHA, MD5, DES3, DH, HMAC, MD5 for consistency and readability.
* Cleanup of the OPAQUE_LEN.
* Cleanup to use ENCRYPT_LEN instead of sizeof(ssl->arrays.preMasterSecret).
* Changed ssl->arrays.preMasterSecret to use XMALLOC (accelerates HW operations)
* Reduce verbosity with debug enabled for "GetMyVersion", "wolfSSL Using RSA OAEP padding" and "wolfSSL Using RSA PKCSV15 padding".
* Updated RSA un-padding error message so its different than one above it for better debugging.
* Added QAT async enables for each algorithm.
* Refactor of the async init to use _ex.
* Added WC_ASYNC_THRESH_NONE to allow bypass of the async thresholds for testing.
* Reformatted the benchmark results:
PKI: "RSA 2048 private HW 18522 ops took 1.003 sec, avg 0.054 ms, 18467.763 ops/sec"
Crypto/Hashing: SHA-256 SW 350 megs took 1.009 seconds, 346.946 MB/s Cycles per byte = 9.87
* Added min execution time for all benchmarks.
* Moved wc_*GetHash and wc_*RestorePos to appropriate files so use of isCopy flag is local.
* Fix for ECC sign status sometimes being invalid due to uninitialized ECC digest in benchmark.
* Added new DECLARE_VAR/FREE_VAR and DECLARE_ARRAY/FREE_ARRAY macros for helping setup test/benchmark variables to accelerate async.
* Added NO_SW_BENCH option to only run HW bench.
* Added support for PRNG to use hardware SHA256 if _wc devId provided.
* Fix to prevent curve tests from running against wrong curve sizes. Changed wc_ecc_set_curve to match on exact size.
* Added the wc_*GetHash calls to the wolfCrypt tests.
* Added async hardware start/stop to wolfSSL init/cleanup.
* Refactor to add wc_*Copy for hashing context (for async), which replaces wc_*RestorePos.
* Fixes for building with TI hashing (including: SHA224, missing new API’s and building with dummy build for non hw testing). Note: We need to add build test for this `./configure CFLAGS="-DWOLFSSL_TI_HASH -DTI_DUMMY_BUILD”`.
* Added arg checks on wc_*GetHash and wc_*Copy.
* Cleanup of the BuildMD5, BuildSHA, BuildMD5_CertVerify and BuildSHA_CertVerify functions.
* Added new ./configure --enable-asyncthreads, to allow enable/disable of the async threading support. If --enable-asynccrypt set this will be enabled by default if pthread is supported. Allows multi-threaded benchmarks with async simulator.
* Added checks for all hashing to verify valid ->buffLen.
* Fix for SHA512 scan-build warning about un-initialized “W_X”.
* Fix for valgrind un-initialized use of buffer in AllocDer (der->buffer) and BuildTlsFinished handshake_hash.
* Refactor of the benchmarking to use common function for start, check and finish of the stats.
* Fixed issue with ECC cache loading in multi-threading.
* Fix bug with AESNI not aligned code that assumes XMALLOC is 16-byte aligned.
* Added new WC_ASYNC_NO_… options to allow disabling of individual async algorithms. New defines are: WC_ASYNC_NO_CRYPT, WC_ASYNC_NO_PKI and WC_ASYNC_NO_HASH. Additionally each algorithm has a WC_ASYNC_NO_[ALGO] define.
* Added “wolfSSL_GetAllocators” API and fixed the wolfCrypt memcb_test so it restores callback pointers after test is complete (fixes issue with using custom allocators and test breaking it).
2017-04-07 15:46:32 -07:00
|
|
|
|
if (ret < 0) {
|
2017-10-11 09:09:52 -07:00
|
|
|
|
if (err != WOLFSSL_ERROR_WANT_READ) {
|
Intel QuickAssist (QAT) support and async enhancements/fixes:
* Adds ./configure "--with-intelqa=../QAT1.6”, port files, memory management and README.md (see wolfcrypt/src/port/intel/).
* Added Intel QAT support for RSA public/private (CRT/non-CRT), AES CBC/GCM, ECDH/ECDSA, DH, DES3, SHA, SHA224, SHA256, SHA384, SHA512, MD5 and HMAC.
* wolfSSL async enabled all client and server: PKI, Encrypt/Decrypt, Hashing/HMAC and Certificate Sign/Verify.
* wolfSSL async support in functions: Encrypt, Decrypt, VerifyMAC, BuildMessage, ConfirmSignature, DoCertificate, ParseCertRelative, and MakeSignature.
* wolfCrypt test and benchmark async support added for all HW acceleration.
* wolfCrypt benchmark multi-threading support.
* Added QuickAssist memory overrides for XMALLOC, XFREE and XREALLOC. XREALLOC determines if existing pointer needs reallocated for NUMA.
* Refactor to make sure “heap” is available for async dev init.
* Added async support for all examples for connect, accept, read and write.
* Added new WC_BIGINT (in wolfmath.c) for async hardware support.
* Added async simulator tests for DES3 CBC, AES CBC/GCM.
* Added QAT standalone build for unit testing.
* Added int return code to SHA and MD5 functions.
* Refactor of the async stack variable handling, so async operations have generic args buffer area and cleanup function pointer.
* Combined duplicate code for async push/pop handling.
* Refactor internal.c to add AllocKey / FreeKey.
* Refactor of hash init/free in TLS to use InitHashes and FreeHashes.
* Refactor of the async event->context to use WOLF_EVENT_TYPE_ASYNC_WOLFSSL for WOLFSSL* and WOLF_EVENT_TYPE_ASYNC_WOLFCRYPT for WC_ASYNC_DEV*.
* Suppress error message for WC_PENDING_E.
* Implemented "wolfSSL_EVP_MD_CTX_init" to do memset.
* Cleanup of the openssl compat CTX sizes when async is enabled.
* Cleanup of AES, DES3, DH, SHA, MD5, DES3, DH, HMAC, MD5 for consistency and readability.
* Cleanup of the OPAQUE_LEN.
* Cleanup to use ENCRYPT_LEN instead of sizeof(ssl->arrays.preMasterSecret).
* Changed ssl->arrays.preMasterSecret to use XMALLOC (accelerates HW operations)
* Reduce verbosity with debug enabled for "GetMyVersion", "wolfSSL Using RSA OAEP padding" and "wolfSSL Using RSA PKCSV15 padding".
* Updated RSA un-padding error message so its different than one above it for better debugging.
* Added QAT async enables for each algorithm.
* Refactor of the async init to use _ex.
* Added WC_ASYNC_THRESH_NONE to allow bypass of the async thresholds for testing.
* Reformatted the benchmark results:
PKI: "RSA 2048 private HW 18522 ops took 1.003 sec, avg 0.054 ms, 18467.763 ops/sec"
Crypto/Hashing: SHA-256 SW 350 megs took 1.009 seconds, 346.946 MB/s Cycles per byte = 9.87
* Added min execution time for all benchmarks.
* Moved wc_*GetHash and wc_*RestorePos to appropriate files so use of isCopy flag is local.
* Fix for ECC sign status sometimes being invalid due to uninitialized ECC digest in benchmark.
* Added new DECLARE_VAR/FREE_VAR and DECLARE_ARRAY/FREE_ARRAY macros for helping setup test/benchmark variables to accelerate async.
* Added NO_SW_BENCH option to only run HW bench.
* Added support for PRNG to use hardware SHA256 if _wc devId provided.
* Fix to prevent curve tests from running against wrong curve sizes. Changed wc_ecc_set_curve to match on exact size.
* Added the wc_*GetHash calls to the wolfCrypt tests.
* Added async hardware start/stop to wolfSSL init/cleanup.
* Refactor to add wc_*Copy for hashing context (for async), which replaces wc_*RestorePos.
* Fixes for building with TI hashing (including: SHA224, missing new API’s and building with dummy build for non hw testing). Note: We need to add build test for this `./configure CFLAGS="-DWOLFSSL_TI_HASH -DTI_DUMMY_BUILD”`.
* Added arg checks on wc_*GetHash and wc_*Copy.
* Cleanup of the BuildMD5, BuildSHA, BuildMD5_CertVerify and BuildSHA_CertVerify functions.
* Added new ./configure --enable-asyncthreads, to allow enable/disable of the async threading support. If --enable-asynccrypt set this will be enabled by default if pthread is supported. Allows multi-threaded benchmarks with async simulator.
* Added checks for all hashing to verify valid ->buffLen.
* Fix for SHA512 scan-build warning about un-initialized “W_X”.
* Fix for valgrind un-initialized use of buffer in AllocDer (der->buffer) and BuildTlsFinished handshake_hash.
* Refactor of the benchmarking to use common function for start, check and finish of the stats.
* Fixed issue with ECC cache loading in multi-threading.
* Fix bug with AESNI not aligned code that assumes XMALLOC is 16-byte aligned.
* Added new WC_ASYNC_NO_… options to allow disabling of individual async algorithms. New defines are: WC_ASYNC_NO_CRYPT, WC_ASYNC_NO_PKI and WC_ASYNC_NO_HASH. Additionally each algorithm has a WC_ASYNC_NO_[ALGO] define.
* Added “wolfSSL_GetAllocators” API and fixed the wolfCrypt memcb_test so it restores callback pointers after test is complete (fixes issue with using custom allocators and test breaking it).
2017-04-07 15:46:32 -07:00
|
|
|
|
printf("SSL_read resume error %d, %s\n", err,
|
|
|
|
|
wolfSSL_ERR_error_string(err, buffer));
|
2018-07-27 10:19:04 -07:00
|
|
|
|
wolfSSL_free(sslResume); sslResume = NULL;
|
|
|
|
|
wolfSSL_CTX_free(ctx); ctx = NULL;
|
Intel QuickAssist (QAT) support and async enhancements/fixes:
* Adds ./configure "--with-intelqa=../QAT1.6”, port files, memory management and README.md (see wolfcrypt/src/port/intel/).
* Added Intel QAT support for RSA public/private (CRT/non-CRT), AES CBC/GCM, ECDH/ECDSA, DH, DES3, SHA, SHA224, SHA256, SHA384, SHA512, MD5 and HMAC.
* wolfSSL async enabled all client and server: PKI, Encrypt/Decrypt, Hashing/HMAC and Certificate Sign/Verify.
* wolfSSL async support in functions: Encrypt, Decrypt, VerifyMAC, BuildMessage, ConfirmSignature, DoCertificate, ParseCertRelative, and MakeSignature.
* wolfCrypt test and benchmark async support added for all HW acceleration.
* wolfCrypt benchmark multi-threading support.
* Added QuickAssist memory overrides for XMALLOC, XFREE and XREALLOC. XREALLOC determines if existing pointer needs reallocated for NUMA.
* Refactor to make sure “heap” is available for async dev init.
* Added async support for all examples for connect, accept, read and write.
* Added new WC_BIGINT (in wolfmath.c) for async hardware support.
* Added async simulator tests for DES3 CBC, AES CBC/GCM.
* Added QAT standalone build for unit testing.
* Added int return code to SHA and MD5 functions.
* Refactor of the async stack variable handling, so async operations have generic args buffer area and cleanup function pointer.
* Combined duplicate code for async push/pop handling.
* Refactor internal.c to add AllocKey / FreeKey.
* Refactor of hash init/free in TLS to use InitHashes and FreeHashes.
* Refactor of the async event->context to use WOLF_EVENT_TYPE_ASYNC_WOLFSSL for WOLFSSL* and WOLF_EVENT_TYPE_ASYNC_WOLFCRYPT for WC_ASYNC_DEV*.
* Suppress error message for WC_PENDING_E.
* Implemented "wolfSSL_EVP_MD_CTX_init" to do memset.
* Cleanup of the openssl compat CTX sizes when async is enabled.
* Cleanup of AES, DES3, DH, SHA, MD5, DES3, DH, HMAC, MD5 for consistency and readability.
* Cleanup of the OPAQUE_LEN.
* Cleanup to use ENCRYPT_LEN instead of sizeof(ssl->arrays.preMasterSecret).
* Changed ssl->arrays.preMasterSecret to use XMALLOC (accelerates HW operations)
* Reduce verbosity with debug enabled for "GetMyVersion", "wolfSSL Using RSA OAEP padding" and "wolfSSL Using RSA PKCSV15 padding".
* Updated RSA un-padding error message so its different than one above it for better debugging.
* Added QAT async enables for each algorithm.
* Refactor of the async init to use _ex.
* Added WC_ASYNC_THRESH_NONE to allow bypass of the async thresholds for testing.
* Reformatted the benchmark results:
PKI: "RSA 2048 private HW 18522 ops took 1.003 sec, avg 0.054 ms, 18467.763 ops/sec"
Crypto/Hashing: SHA-256 SW 350 megs took 1.009 seconds, 346.946 MB/s Cycles per byte = 9.87
* Added min execution time for all benchmarks.
* Moved wc_*GetHash and wc_*RestorePos to appropriate files so use of isCopy flag is local.
* Fix for ECC sign status sometimes being invalid due to uninitialized ECC digest in benchmark.
* Added new DECLARE_VAR/FREE_VAR and DECLARE_ARRAY/FREE_ARRAY macros for helping setup test/benchmark variables to accelerate async.
* Added NO_SW_BENCH option to only run HW bench.
* Added support for PRNG to use hardware SHA256 if _wc devId provided.
* Fix to prevent curve tests from running against wrong curve sizes. Changed wc_ecc_set_curve to match on exact size.
* Added the wc_*GetHash calls to the wolfCrypt tests.
* Added async hardware start/stop to wolfSSL init/cleanup.
* Refactor to add wc_*Copy for hashing context (for async), which replaces wc_*RestorePos.
* Fixes for building with TI hashing (including: SHA224, missing new API’s and building with dummy build for non hw testing). Note: We need to add build test for this `./configure CFLAGS="-DWOLFSSL_TI_HASH -DTI_DUMMY_BUILD”`.
* Added arg checks on wc_*GetHash and wc_*Copy.
* Cleanup of the BuildMD5, BuildSHA, BuildMD5_CertVerify and BuildSHA_CertVerify functions.
* Added new ./configure --enable-asyncthreads, to allow enable/disable of the async threading support. If --enable-asynccrypt set this will be enabled by default if pthread is supported. Allows multi-threaded benchmarks with async simulator.
* Added checks for all hashing to verify valid ->buffLen.
* Fix for SHA512 scan-build warning about un-initialized “W_X”.
* Fix for valgrind un-initialized use of buffer in AllocDer (der->buffer) and BuildTlsFinished handshake_hash.
* Refactor of the benchmarking to use common function for start, check and finish of the stats.
* Fixed issue with ECC cache loading in multi-threading.
* Fix bug with AESNI not aligned code that assumes XMALLOC is 16-byte aligned.
* Added new WC_ASYNC_NO_… options to allow disabling of individual async algorithms. New defines are: WC_ASYNC_NO_CRYPT, WC_ASYNC_NO_PKI and WC_ASYNC_NO_HASH. Additionally each algorithm has a WC_ASYNC_NO_[ALGO] define.
* Added “wolfSSL_GetAllocators” API and fixed the wolfCrypt memcb_test so it restores callback pointers after test is complete (fixes issue with using custom allocators and test breaking it).
2017-04-07 15:46:32 -07:00
|
|
|
|
err_sys("SSL_read failed");
|
2017-03-06 09:49:05 -08:00
|
|
|
|
}
|
2016-11-03 14:45:24 -07:00
|
|
|
|
}
|
2011-02-05 11:14:47 -08:00
|
|
|
|
|
2012-10-17 13:13:58 -07:00
|
|
|
|
/* try to send session break */
|
Intel QuickAssist (QAT) support and async enhancements/fixes:
* Adds ./configure "--with-intelqa=../QAT1.6”, port files, memory management and README.md (see wolfcrypt/src/port/intel/).
* Added Intel QAT support for RSA public/private (CRT/non-CRT), AES CBC/GCM, ECDH/ECDSA, DH, DES3, SHA, SHA224, SHA256, SHA384, SHA512, MD5 and HMAC.
* wolfSSL async enabled all client and server: PKI, Encrypt/Decrypt, Hashing/HMAC and Certificate Sign/Verify.
* wolfSSL async support in functions: Encrypt, Decrypt, VerifyMAC, BuildMessage, ConfirmSignature, DoCertificate, ParseCertRelative, and MakeSignature.
* wolfCrypt test and benchmark async support added for all HW acceleration.
* wolfCrypt benchmark multi-threading support.
* Added QuickAssist memory overrides for XMALLOC, XFREE and XREALLOC. XREALLOC determines if existing pointer needs reallocated for NUMA.
* Refactor to make sure “heap” is available for async dev init.
* Added async support for all examples for connect, accept, read and write.
* Added new WC_BIGINT (in wolfmath.c) for async hardware support.
* Added async simulator tests for DES3 CBC, AES CBC/GCM.
* Added QAT standalone build for unit testing.
* Added int return code to SHA and MD5 functions.
* Refactor of the async stack variable handling, so async operations have generic args buffer area and cleanup function pointer.
* Combined duplicate code for async push/pop handling.
* Refactor internal.c to add AllocKey / FreeKey.
* Refactor of hash init/free in TLS to use InitHashes and FreeHashes.
* Refactor of the async event->context to use WOLF_EVENT_TYPE_ASYNC_WOLFSSL for WOLFSSL* and WOLF_EVENT_TYPE_ASYNC_WOLFCRYPT for WC_ASYNC_DEV*.
* Suppress error message for WC_PENDING_E.
* Implemented "wolfSSL_EVP_MD_CTX_init" to do memset.
* Cleanup of the openssl compat CTX sizes when async is enabled.
* Cleanup of AES, DES3, DH, SHA, MD5, DES3, DH, HMAC, MD5 for consistency and readability.
* Cleanup of the OPAQUE_LEN.
* Cleanup to use ENCRYPT_LEN instead of sizeof(ssl->arrays.preMasterSecret).
* Changed ssl->arrays.preMasterSecret to use XMALLOC (accelerates HW operations)
* Reduce verbosity with debug enabled for "GetMyVersion", "wolfSSL Using RSA OAEP padding" and "wolfSSL Using RSA PKCSV15 padding".
* Updated RSA un-padding error message so its different than one above it for better debugging.
* Added QAT async enables for each algorithm.
* Refactor of the async init to use _ex.
* Added WC_ASYNC_THRESH_NONE to allow bypass of the async thresholds for testing.
* Reformatted the benchmark results:
PKI: "RSA 2048 private HW 18522 ops took 1.003 sec, avg 0.054 ms, 18467.763 ops/sec"
Crypto/Hashing: SHA-256 SW 350 megs took 1.009 seconds, 346.946 MB/s Cycles per byte = 9.87
* Added min execution time for all benchmarks.
* Moved wc_*GetHash and wc_*RestorePos to appropriate files so use of isCopy flag is local.
* Fix for ECC sign status sometimes being invalid due to uninitialized ECC digest in benchmark.
* Added new DECLARE_VAR/FREE_VAR and DECLARE_ARRAY/FREE_ARRAY macros for helping setup test/benchmark variables to accelerate async.
* Added NO_SW_BENCH option to only run HW bench.
* Added support for PRNG to use hardware SHA256 if _wc devId provided.
* Fix to prevent curve tests from running against wrong curve sizes. Changed wc_ecc_set_curve to match on exact size.
* Added the wc_*GetHash calls to the wolfCrypt tests.
* Added async hardware start/stop to wolfSSL init/cleanup.
* Refactor to add wc_*Copy for hashing context (for async), which replaces wc_*RestorePos.
* Fixes for building with TI hashing (including: SHA224, missing new API’s and building with dummy build for non hw testing). Note: We need to add build test for this `./configure CFLAGS="-DWOLFSSL_TI_HASH -DTI_DUMMY_BUILD”`.
* Added arg checks on wc_*GetHash and wc_*Copy.
* Cleanup of the BuildMD5, BuildSHA, BuildMD5_CertVerify and BuildSHA_CertVerify functions.
* Added new ./configure --enable-asyncthreads, to allow enable/disable of the async threading support. If --enable-asynccrypt set this will be enabled by default if pthread is supported. Allows multi-threaded benchmarks with async simulator.
* Added checks for all hashing to verify valid ->buffLen.
* Fix for SHA512 scan-build warning about un-initialized “W_X”.
* Fix for valgrind un-initialized use of buffer in AllocDer (der->buffer) and BuildTlsFinished handshake_hash.
* Refactor of the benchmarking to use common function for start, check and finish of the stats.
* Fixed issue with ECC cache loading in multi-threading.
* Fix bug with AESNI not aligned code that assumes XMALLOC is 16-byte aligned.
* Added new WC_ASYNC_NO_… options to allow disabling of individual async algorithms. New defines are: WC_ASYNC_NO_CRYPT, WC_ASYNC_NO_PKI and WC_ASYNC_NO_HASH. Additionally each algorithm has a WC_ASYNC_NO_[ALGO] define.
* Added “wolfSSL_GetAllocators” API and fixed the wolfCrypt memcb_test so it restores callback pointers after test is complete (fixes issue with using custom allocators and test breaking it).
2017-04-07 15:46:32 -07:00
|
|
|
|
do {
|
|
|
|
|
err = 0; /* reset error */
|
|
|
|
|
ret = wolfSSL_write(sslResume, msg, msgSz);
|
|
|
|
|
if (ret <= 0) {
|
|
|
|
|
err = wolfSSL_get_error(sslResume, 0);
|
|
|
|
|
#ifdef WOLFSSL_ASYNC_CRYPT
|
|
|
|
|
if (err == WC_PENDING_E) {
|
|
|
|
|
ret = wolfSSL_AsyncPoll(sslResume, WOLF_POLL_FLAG_CHECK_HW);
|
|
|
|
|
if (ret < 0) break;
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
} while (err == WC_PENDING_E);
|
2011-02-05 11:14:47 -08:00
|
|
|
|
|
2015-02-16 14:23:33 -08:00
|
|
|
|
ret = wolfSSL_shutdown(sslResume);
|
2017-10-11 09:09:52 -07:00
|
|
|
|
if (wc_shutdown && ret == WOLFSSL_SHUTDOWN_NOT_DONE)
|
2015-02-16 14:23:33 -08:00
|
|
|
|
wolfSSL_shutdown(sslResume); /* bidirectional shutdown */
|
|
|
|
|
|
2017-10-23 10:50:19 -07:00
|
|
|
|
/* display collected statistics */
|
|
|
|
|
#ifdef WOLFSSL_STATIC_MEMORY
|
|
|
|
|
if (wolfSSL_is_static_memory(sslResume, &ssl_stats) != 1)
|
|
|
|
|
err_sys("static memory was not used with ssl");
|
|
|
|
|
|
|
|
|
|
fprintf(stderr, "\nprint off SSLresume memory stats\n");
|
|
|
|
|
fprintf(stderr, "*** This is memory state before wolfSSL_free is called\n");
|
|
|
|
|
fprintf(stderr, "peak connection memory = %d\n", ssl_stats.peakMem);
|
|
|
|
|
fprintf(stderr, "current memory in use = %d\n", ssl_stats.curMem);
|
|
|
|
|
fprintf(stderr, "peak connection allocs = %d\n", ssl_stats.peakAlloc);
|
|
|
|
|
fprintf(stderr, "current connection allocs = %d\n", ssl_stats.curAlloc);
|
|
|
|
|
fprintf(stderr, "total connection allocs = %d\n", ssl_stats.totalAlloc);
|
|
|
|
|
fprintf(stderr, "total connection frees = %d\n\n", ssl_stats.totalFr);
|
|
|
|
|
#endif
|
|
|
|
|
|
2018-07-27 10:19:04 -07:00
|
|
|
|
wolfSSL_free(sslResume); sslResume = NULL;
|
2013-02-14 14:09:41 -08:00
|
|
|
|
CloseSocket(sockfd);
|
2012-10-17 13:13:58 -07:00
|
|
|
|
}
|
2013-03-11 16:07:46 -07:00
|
|
|
|
#endif /* NO_SESSION_CACHE */
|
2011-02-05 11:14:47 -08:00
|
|
|
|
|
2018-07-27 10:19:04 -07:00
|
|
|
|
wolfSSL_CTX_free(ctx); ctx = NULL;
|
2011-02-05 11:14:47 -08:00
|
|
|
|
|
|
|
|
|
((func_args*)args)->return_code = 0;
|
2013-03-15 13:17:05 -07:00
|
|
|
|
|
2018-05-03 13:39:37 -07:00
|
|
|
|
exit:
|
|
|
|
|
|
2016-08-15 13:59:41 -06:00
|
|
|
|
#ifdef WOLFSSL_ASYNC_CRYPT
|
|
|
|
|
wolfAsync_DevClose(&devId);
|
|
|
|
|
#endif
|
|
|
|
|
|
2019-02-22 17:14:19 +10:00
|
|
|
|
#if defined(HAVE_ECC) && defined(FP_ECC) && defined(HAVE_THREAD_LS) \
|
|
|
|
|
&& defined(HAVE_STACK_SIZE)
|
|
|
|
|
wc_ecc_fp_free(); /* free per thread cache */
|
|
|
|
|
#endif
|
|
|
|
|
|
2016-04-11 13:39:44 -06:00
|
|
|
|
/* There are use cases when these assignments are not read. To avoid
|
|
|
|
|
* potential confusion those warnings have been handled here.
|
|
|
|
|
*/
|
|
|
|
|
(void) overrideDateErrors;
|
|
|
|
|
(void) useClientCert;
|
|
|
|
|
(void) verifyCert;
|
|
|
|
|
(void) ourCert;
|
|
|
|
|
(void) ourKey;
|
2017-05-11 12:57:12 -07:00
|
|
|
|
(void) useVerifyCb;
|
2016-04-11 13:39:44 -06:00
|
|
|
|
|
2015-01-05 14:48:43 -07:00
|
|
|
|
#if !defined(WOLFSSL_TIRTOS)
|
2013-03-28 11:28:38 -07:00
|
|
|
|
return 0;
|
2014-05-08 15:52:20 -07:00
|
|
|
|
#endif
|
2011-02-05 11:14:47 -08:00
|
|
|
|
}
|
|
|
|
|
|
2017-06-26 23:05:32 -07:00
|
|
|
|
#endif /* !NO_WOLFSSL_CLIENT */
|
|
|
|
|
|
2011-02-05 11:14:47 -08:00
|
|
|
|
|
|
|
|
|
/* so overall tests can pull in test function */
|
|
|
|
|
#ifndef NO_MAIN_DRIVER
|
|
|
|
|
|
|
|
|
|
int main(int argc, char** argv)
|
|
|
|
|
{
|
|
|
|
|
func_args args;
|
|
|
|
|
|
2013-02-01 12:21:38 -08:00
|
|
|
|
|
2011-02-05 11:14:47 -08:00
|
|
|
|
StartTCP();
|
|
|
|
|
|
|
|
|
|
args.argc = argc;
|
|
|
|
|
args.argv = argv;
|
2018-06-13 11:42:16 +10:00
|
|
|
|
args.return_code = 0;
|
2011-02-05 11:14:47 -08:00
|
|
|
|
|
2015-01-05 14:48:43 -07:00
|
|
|
|
#if defined(DEBUG_WOLFSSL) && !defined(WOLFSSL_MDK_SHELL) && !defined(STACK_TRAP)
|
|
|
|
|
wolfSSL_Debugging_ON();
|
2011-02-05 11:14:47 -08:00
|
|
|
|
#endif
|
2016-03-23 10:21:26 -06:00
|
|
|
|
wolfSSL_Init();
|
2015-10-28 23:54:08 -07:00
|
|
|
|
ChangeToWolfRoot();
|
2015-10-14 19:13:45 -07:00
|
|
|
|
|
2017-06-26 23:05:32 -07:00
|
|
|
|
#ifndef NO_WOLFSSL_CLIENT
|
2013-03-28 11:28:38 -07:00
|
|
|
|
#ifdef HAVE_STACK_SIZE
|
|
|
|
|
StackSizeCheck(&args, client_test);
|
2015-10-14 19:13:45 -07:00
|
|
|
|
#else
|
2011-02-05 11:14:47 -08:00
|
|
|
|
client_test(&args);
|
2017-06-26 23:05:32 -07:00
|
|
|
|
#endif
|
2018-06-13 11:42:16 +10:00
|
|
|
|
#else
|
|
|
|
|
printf("Client not compiled in!\n");
|
2013-03-28 11:28:38 -07:00
|
|
|
|
#endif
|
2015-01-05 14:48:43 -07:00
|
|
|
|
wolfSSL_Cleanup();
|
2011-02-05 11:14:47 -08:00
|
|
|
|
|
2016-05-05 15:31:25 -06:00
|
|
|
|
#ifdef HAVE_WNR
|
|
|
|
|
if (wc_FreeNetRandom() < 0)
|
|
|
|
|
err_sys("Failed to free netRandom context");
|
|
|
|
|
#endif /* HAVE_WNR */
|
|
|
|
|
|
2011-02-05 11:14:47 -08:00
|
|
|
|
return args.return_code;
|
|
|
|
|
}
|
|
|
|
|
|
2012-08-01 17:33:49 -07:00
|
|
|
|
int myoptind = 0;
|
|
|
|
|
char* myoptarg = NULL;
|
|
|
|
|
|
2011-02-05 11:14:47 -08:00
|
|
|
|
#endif /* NO_MAIN_DRIVER */
|