blob: 7e6b0521638b52c71a4f29a6e78285d55e7494a9 [file] [log] [blame]
Paul Bakker5121ce52009-01-03 21:22:43 +00001/*
2 * SSL client with certificate authentication
3 *
Bence Szépkúti1e148272020-08-07 13:07:28 +02004 * Copyright The Mbed TLS Contributors
Dave Rodgman7ff79652023-11-03 12:04:52 +00005 * SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
Paul Bakker5121ce52009-01-03 21:22:43 +00006 */
7
Gilles Peskineab7ce962021-01-05 21:27:53 +01008#include "ssl_test_lib.h"
Paul Bakker5121ce52009-01-03 21:22:43 +00009
Przemyslaw Stekiel7c7fb872021-10-26 14:32:10 +020010#if defined(MBEDTLS_USE_PSA_CRYPTO)
Przemyslaw Stekiel7c7fb872021-10-26 14:32:10 +020011#include "test/psa_crypto_helpers.h"
12#endif
13
Gilles Peskineab7ce962021-01-05 21:27:53 +010014#if defined(MBEDTLS_SSL_TEST_IMPOSSIBLE)
Gilles Peskine1b6c09a2023-01-11 14:52:35 +010015int main(void)
Manuel Pégourié-Gonnarde3c41ad2015-05-13 10:04:32 +020016{
Gilles Peskine1b6c09a2023-01-11 14:52:35 +010017 mbedtls_printf(MBEDTLS_SSL_TEST_IMPOSSIBLE);
18 mbedtls_exit(0);
Gilles Peskineab7ce962021-01-05 21:27:53 +010019}
20#elif !defined(MBEDTLS_SSL_CLI_C)
Gilles Peskine1b6c09a2023-01-11 14:52:35 +010021int main(void)
Gilles Peskineab7ce962021-01-05 21:27:53 +010022{
Gilles Peskine1b6c09a2023-01-11 14:52:35 +010023 mbedtls_printf("MBEDTLS_SSL_CLI_C not defined.\n");
24 mbedtls_exit(0);
Manuel Pégourié-Gonnarde3c41ad2015-05-13 10:04:32 +020025}
Gilles Peskineb4df7542021-01-08 21:20:09 +010026#else /* !MBEDTLS_SSL_TEST_IMPOSSIBLE && MBEDTLS_SSL_CLI_C */
Manuel Pégourié-Gonnarde3c41ad2015-05-13 10:04:32 +020027
Piotr Nowicki7d01ef62019-11-20 15:00:17 +010028/* Size of memory to be allocated for the heap, when using the library's memory
29 * management and MBEDTLS_MEMORY_BUFFER_ALLOC_C is enabled. */
30#define MEMORY_HEAP_SIZE 120000
31
Hanno Beckere4ad3e82017-09-18 15:05:46 +010032#define MAX_REQUEST_SIZE 20000
33#define MAX_REQUEST_SIZE_STR "20000"
34
Paul Bakker9caf2d22010-02-18 19:37:19 +000035#define DFL_SERVER_NAME "localhost"
Manuel Pégourié-Gonnard0d8780b2014-02-25 11:11:26 +010036#define DFL_SERVER_ADDR NULL
Manuel Pégourié-Gonnardc0d74942015-06-23 12:30:57 +020037#define DFL_SERVER_PORT "4433"
Paul Bakker9caf2d22010-02-18 19:37:19 +000038#define DFL_REQUEST_PAGE "/"
Manuel Pégourié-Gonnarddea29c52014-06-18 13:07:56 +020039#define DFL_REQUEST_SIZE -1
Paul Bakker9caf2d22010-02-18 19:37:19 +000040#define DFL_DEBUG_LEVEL 0
Hanno Beckerbb425db2019-04-03 12:59:58 +010041#define DFL_CONTEXT_CRT_CB 0
Manuel Pégourié-Gonnard55753162014-02-26 13:47:08 +010042#define DFL_NBIO 0
Hanno Becker16970d22017-10-10 15:56:37 +010043#define DFL_EVENT 0
Manuel Pégourié-Gonnard6b651412014-10-01 18:29:03 +020044#define DFL_READ_TIMEOUT 0
Manuel Pégourié-Gonnardf1e0df32014-10-02 14:02:32 +020045#define DFL_MAX_RESEND 0
Paul Bakker5690efc2011-05-26 13:16:06 +000046#define DFL_CA_FILE ""
Paul Bakker8d914582012-06-04 12:46:42 +000047#define DFL_CA_PATH ""
Paul Bakker67968392010-07-18 08:28:20 +000048#define DFL_CRT_FILE ""
49#define DFL_KEY_FILE ""
Manuel Pégourié-Gonnardef68be42018-11-07 09:42:35 +010050#define DFL_KEY_OPAQUE 0
Hanno Beckerca04fdc2018-11-07 16:22:14 +000051#define DFL_KEY_PWD ""
Paul Bakkerd4a56ec2013-04-16 18:05:29 +020052#define DFL_PSK ""
Hanno Becker1d911cd2018-11-15 13:06:09 +000053#define DFL_PSK_OPAQUE 0
Paul Bakkerd4a56ec2013-04-16 18:05:29 +020054#define DFL_PSK_IDENTITY "Client_identity"
Manuel Pégourié-Gonnard70905a72015-09-16 11:08:34 +020055#define DFL_ECJPAKE_PW NULL
Manuel Pégourié-Gonnardb3c83072017-05-16 08:50:24 +020056#define DFL_EC_MAX_OPS -1
Paul Bakker51936882011-02-20 16:05:58 +000057#define DFL_FORCE_CIPHER 0
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020058#define DFL_RENEGOTIATION MBEDTLS_SSL_RENEGOTIATION_DISABLED
Manuel Pégourié-Gonnard85d915b2014-11-03 20:10:36 +010059#define DFL_ALLOW_LEGACY -2
Manuel Pégourié-Gonnard780d6712014-02-20 17:19:59 +010060#define DFL_RENEGOTIATE 0
Manuel Pégourié-Gonnarda8c0a0d2014-08-15 12:07:38 +020061#define DFL_EXCHANGES 1
Manuel Pégourié-Gonnard8c8be1e2015-03-31 14:21:11 +020062#define DFL_MIN_VERSION -1
Paul Bakker1d29fb52012-09-28 13:28:45 +000063#define DFL_MAX_VERSION -1
Manuel Pégourié-Gonnardd42b7c82015-03-20 19:44:04 +000064#define DFL_ARC4 -1
Gilles Peskinebc70a182017-05-09 15:59:24 +020065#define DFL_SHA1 -1
Manuel Pégourié-Gonnardfa44f202015-03-27 17:52:25 +010066#define DFL_AUTH_MODE -1
Gilles Peskine724a7bb2025-02-12 21:50:53 +010067#define DFL_SET_HOSTNAME 1
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020068#define DFL_MFL_CODE MBEDTLS_SSL_MAX_FRAG_LEN_NONE
Manuel Pégourié-Gonnard265fe992015-01-09 12:43:35 +010069#define DFL_TRUNC_HMAC -1
Manuel Pégourié-Gonnardc82ee352015-01-07 16:35:25 +010070#define DFL_RECSPLIT -1
Manuel Pégourié-Gonnard90966822015-06-11 17:02:29 +020071#define DFL_DHMLEN -1
Manuel Pégourié-Gonnardaaa1eab2013-07-30 13:43:43 +020072#define DFL_RECONNECT 0
Manuel Pégourié-Gonnardc55a5b72014-02-20 22:50:56 +010073#define DFL_RECO_DELAY 0
Manuel Pégourié-Gonnarda7c37652019-05-20 12:46:26 +020074#define DFL_RECO_MODE 1
Hanno Becker90cb3592019-04-09 17:24:19 +010075#define DFL_CID_ENABLED 0
76#define DFL_CID_VALUE ""
Hanno Beckerb42ec0d2019-05-03 17:30:59 +010077#define DFL_CID_ENABLED_RENEGO -1
78#define DFL_CID_VALUE_RENEGO NULL
Manuel Pégourié-Gonnarddbd23072015-09-04 10:20:17 +020079#define DFL_RECONNECT_HARD 0
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020080#define DFL_TICKETS MBEDTLS_SSL_SESSION_TICKETS_ENABLED
Manuel Pégourié-Gonnard1bd22812014-04-05 14:34:07 +020081#define DFL_ALPN_STRING NULL
Hanno Beckere6706e62017-05-15 16:05:15 +010082#define DFL_CURVES NULL
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020083#define DFL_TRANSPORT MBEDTLS_SSL_TRANSPORT_STREAM
Manuel Pégourié-Gonnardd823bd02014-10-01 14:40:56 +020084#define DFL_HS_TO_MIN 0
85#define DFL_HS_TO_MAX 0
Manuel Pégourié-Gonnardb747c6c2018-08-12 13:28:53 +020086#define DFL_DTLS_MTU -1
Hanno Becker4d615912018-08-14 13:33:30 +010087#define DFL_DGRAM_PACKING 1
Manuel Pégourié-Gonnard1cbd39d2014-10-20 13:34:59 +020088#define DFL_FALLBACK -1
Manuel Pégourié-Gonnard367381f2014-10-20 18:40:56 +020089#define DFL_EXTENDED_MS -1
Manuel Pégourié-Gonnard699cafa2014-10-27 13:57:03 +010090#define DFL_ETM -1
Jarno Lamsa9831c8a2019-05-29 13:33:32 +030091#define DFL_SERIALIZE 0
Piotr Nowicki3de298f2020-04-16 14:35:19 +020092#define DFL_CONTEXT_FILE ""
Jarno Lamsa9831c8a2019-05-29 13:33:32 +030093#define DFL_EXTENDED_MS_ENFORCE -1
Jarno Lamsa1b4a2ba2019-03-27 17:55:27 +020094#define DFL_CA_CALLBACK 0
Ron Eldorb7fd64c2019-05-12 11:03:32 +030095#define DFL_EAP_TLS 0
Philippe Antoineaa4d1522019-06-06 21:24:31 +020096#define DFL_REPRODUCIBLE 0
Hanno Becker48f3a3d2019-08-29 06:31:22 +010097#define DFL_NSS_KEYLOG 0
98#define DFL_NSS_KEYLOG_FILE NULL
Manuel Pégourié-Gonnard56941fe2020-02-17 11:04:33 +010099#define DFL_SKIP_CLOSE_NOTIFY 0
gabor-mezei-arma9eecf12020-07-07 11:11:02 +0200100#define DFL_QUERY_CONFIG_MODE 0
Ron Eldor6ea64512018-07-02 10:08:07 +0300101#define DFL_USE_SRTP 0
Ron Eldor311b95a2018-07-08 08:50:31 +0300102#define DFL_SRTP_FORCE_PROFILE 0
Ron Eldor6ea64512018-07-02 10:08:07 +0300103#define DFL_SRTP_MKI ""
Paul Bakker0e6975b2009-02-10 22:19:10 +0000104
Paul Bakker93c32b22014-04-25 13:40:05 +0200105#define GET_REQUEST "GET %s HTTP/1.0\r\nExtra-header: "
106#define GET_REQUEST_END "\r\n\r\n"
Paul Bakker5121ce52009-01-03 21:22:43 +0000107
Andrzej Kurek7829d8f2022-10-18 09:19:07 -0400108#if defined(MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED)
Janos Follathae13beb2019-04-05 14:06:58 +0100109#define USAGE_CONTEXT_CRT_CB \
Hanno Beckerbb425db2019-04-03 12:59:58 +0100110 " context_crt_cb=%%d This determines whether the CRT verification callback is bound\n" \
111 " to the SSL configuration of the SSL context.\n" \
Gilles Peskine1b6c09a2023-01-11 14:52:35 +0100112 " Possible values:\n" \
Hanno Beckerbb425db2019-04-03 12:59:58 +0100113 " - 0 (default): Use CRT callback bound to configuration\n" \
114 " - 1: Use CRT callback bound to SSL context\n"
115#else
Janos Follathae13beb2019-04-05 14:06:58 +0100116#define USAGE_CONTEXT_CRT_CB ""
Andrzej Kurek7829d8f2022-10-18 09:19:07 -0400117#endif /* MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED */
118#if defined(MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED)
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200119#if defined(MBEDTLS_FS_IO)
Paul Bakker5690efc2011-05-26 13:16:06 +0000120#define USAGE_IO \
Paul Bakker1f9d02d2012-11-20 10:30:55 +0100121 " ca_file=%%s The single file containing the top-level CA(s) you fully trust\n" \
122 " default: \"\" (pre-loaded)\n" \
Hanno Becker422d1992019-05-01 11:16:28 +0100123 " use \"none\" to skip loading any top-level CAs.\n" \
Paul Bakker1f9d02d2012-11-20 10:30:55 +0100124 " ca_path=%%s The path containing the top-level CA(s) you fully trust\n" \
125 " default: \"\" (pre-loaded) (overrides ca_file)\n" \
Hanno Becker422d1992019-05-01 11:16:28 +0100126 " use \"none\" to skip loading any top-level CAs.\n" \
Paul Bakker1f9d02d2012-11-20 10:30:55 +0100127 " crt_file=%%s Your own cert and chain (in bottom to top order, top may be omitted)\n" \
128 " default: \"\" (pre-loaded)\n" \
Gilles Peskine1b6c09a2023-01-11 14:52:35 +0100129 " key_file=%%s default: \"\" (pre-loaded)\n" \
130 " key_pwd=%%s Password for key specified by key_file argument\n" \
Hanno Beckerbffa54f2020-08-17 09:42:19 +0100131 " default: none\n"
Paul Bakker5690efc2011-05-26 13:16:06 +0000132#else
133#define USAGE_IO \
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200134 " No file operations available (MBEDTLS_FS_IO not defined)\n"
135#endif /* MBEDTLS_FS_IO */
Andrzej Kurek7829d8f2022-10-18 09:19:07 -0400136#else /* MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED */
Paul Bakkered27a042013-04-18 22:46:23 +0200137#define USAGE_IO ""
Andrzej Kurek7829d8f2022-10-18 09:19:07 -0400138#endif /* MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED */
139#if defined(MBEDTLS_USE_PSA_CRYPTO) && defined(MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED)
Manuel Pégourié-Gonnardef68be42018-11-07 09:42:35 +0100140#define USAGE_KEY_OPAQUE \
141 " key_opaque=%%d Handle your private key as if it were opaque\n" \
142 " default: 0 (disabled)\n"
143#else
144#define USAGE_KEY_OPAQUE ""
145#endif
Paul Bakkered27a042013-04-18 22:46:23 +0200146
Hanno Beckera0e20d02019-05-15 14:03:01 +0100147#if defined(MBEDTLS_SSL_DTLS_CONNECTION_ID)
Hanno Becker90cb3592019-04-09 17:24:19 +0100148#define USAGE_CID \
149 " cid=%%d Disable (0) or enable (1) the use of the DTLS Connection ID extension.\n" \
150 " default: 0 (disabled)\n" \
Hanno Beckerb42ec0d2019-05-03 17:30:59 +0100151 " cid_renego=%%d Disable (0) or enable (1) the use of the DTLS Connection ID extension during renegotiation.\n" \
Hanno Becker32798222019-05-23 17:01:06 +0100152 " default: same as 'cid' parameter\n" \
Hanno Becker90cb3592019-04-09 17:24:19 +0100153 " cid_val=%%s The CID to use for incoming messages (in hex, without 0x).\n" \
Hanno Beckerb42ec0d2019-05-03 17:30:59 +0100154 " default: \"\"\n" \
155 " cid_val_renego=%%s The CID to use for incoming messages (in hex, without 0x) after renegotiation.\n" \
Hanno Becker32798222019-05-23 17:01:06 +0100156 " default: same as 'cid_val' parameter\n"
Hanno Beckera0e20d02019-05-15 14:03:01 +0100157#else /* MBEDTLS_SSL_DTLS_CONNECTION_ID */
Hanno Becker90cb3592019-04-09 17:24:19 +0100158#define USAGE_CID ""
Hanno Beckera0e20d02019-05-15 14:03:01 +0100159#endif /* MBEDTLS_SSL_DTLS_CONNECTION_ID */
Hanno Becker90cb3592019-04-09 17:24:19 +0100160
Gilles Peskineeccd8882020-03-10 12:19:08 +0100161#if defined(MBEDTLS_KEY_EXCHANGE_SOME_PSK_ENABLED)
Hanno Beckere86964c2018-10-23 11:37:50 +0100162#define USAGE_PSK_RAW \
Piotr Nowicki9926eaf2019-11-20 14:54:36 +0100163 " psk=%%s default: \"\" (disabled)\n" \
164 " The PSK values are in hex, without 0x.\n" \
Paul Bakkered27a042013-04-18 22:46:23 +0200165 " psk_identity=%%s default: \"Client_identity\"\n"
Hanno Beckere86964c2018-10-23 11:37:50 +0100166#if defined(MBEDTLS_USE_PSA_CRYPTO)
167#define USAGE_PSK_SLOT \
Hanno Becker1d911cd2018-11-15 13:06:09 +0000168 " psk_opaque=%%d default: 0 (don't use opaque static PSK)\n" \
169 " Enable this to store the PSK configured through command line\n" \
170 " parameter `psk` in a PSA-based key slot.\n" \
Hanno Beckere86964c2018-10-23 11:37:50 +0100171 " Note: Currently only supported in conjunction with\n" \
172 " the use of min_version to force TLS 1.2 and force_ciphersuite \n" \
173 " to force a particular PSK-only ciphersuite.\n" \
174 " Note: This is to test integration of PSA-based opaque PSKs with\n" \
175 " Mbed TLS only. Production systems are likely to configure Mbed TLS\n" \
176 " with prepopulated key slots instead of importing raw key material.\n"
177#else
178#define USAGE_PSK_SLOT ""
179#endif /* MBEDTLS_USE_PSA_CRYPTO */
Hanno Becker1bac87c2019-03-29 12:02:26 +0000180#define USAGE_PSK USAGE_PSK_RAW USAGE_PSK_SLOT
181#else
182#define USAGE_PSK ""
Gilles Peskineeccd8882020-03-10 12:19:08 +0100183#endif /* MBEDTLS_KEY_EXCHANGE_SOME_PSK_ENABLED */
Hanno Becker1bac87c2019-03-29 12:02:26 +0000184
Jarno Lamsa1b4a2ba2019-03-27 17:55:27 +0200185#if defined(MBEDTLS_X509_TRUSTED_CERTIFICATE_CALLBACK)
186#define USAGE_CA_CALLBACK \
187 " ca_callback=%%d default: 0 (disabled)\n" \
188 " Enable this to use the trusted certificate callback function\n"
189#else
190#define USAGE_CA_CALLBACK ""
191#endif /* MBEDTLS_X509_TRUSTED_CERTIFICATE_CALLBACK */
Paul Bakker5690efc2011-05-26 13:16:06 +0000192
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200193#if defined(MBEDTLS_SSL_SESSION_TICKETS)
Paul Bakkera503a632013-08-14 13:48:06 +0200194#define USAGE_TICKETS \
195 " tickets=%%d default: 1 (enabled)\n"
196#else
197#define USAGE_TICKETS ""
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200198#endif /* MBEDTLS_SSL_SESSION_TICKETS */
Paul Bakkera503a632013-08-14 13:48:06 +0200199
Ron Eldorb7fd64c2019-05-12 11:03:32 +0300200#if defined(MBEDTLS_SSL_EXPORT_KEYS)
201#define USAGE_EAP_TLS \
202 " eap_tls=%%d default: 0 (disabled)\n"
Hanno Becker48f3a3d2019-08-29 06:31:22 +0100203#define USAGE_NSS_KEYLOG \
Hanno Beckerbc5308c2019-09-09 11:38:51 +0100204 " nss_keylog=%%d default: 0 (disabled)\n" \
205 " This cannot be used with eap_tls=1\n"
Hanno Becker48f3a3d2019-08-29 06:31:22 +0100206#define USAGE_NSS_KEYLOG_FILE \
207 " nss_keylog_file=%%s\n"
Ron Eldor65b56ef2019-09-26 16:40:48 +0300208#if defined(MBEDTLS_SSL_DTLS_SRTP)
209#define USAGE_SRTP \
210 " use_srtp=%%d default: 0 (disabled)\n" \
Gilles Peskine1b6c09a2023-01-11 14:52:35 +0100211 " This cannot be used with eap_tls=1 or " \
Ron Eldor65b56ef2019-09-26 16:40:48 +0300212 " nss_keylog=1\n" \
Johan Pascal9bc97ca2020-09-21 23:44:45 +0200213 " srtp_force_profile=%%d default: 0 (all enabled)\n" \
Ron Eldor65b56ef2019-09-26 16:40:48 +0300214 " available profiles:\n" \
215 " 1 - SRTP_AES128_CM_HMAC_SHA1_80\n" \
216 " 2 - SRTP_AES128_CM_HMAC_SHA1_32\n" \
217 " 3 - SRTP_NULL_HMAC_SHA1_80\n" \
218 " 4 - SRTP_NULL_HMAC_SHA1_32\n" \
219 " mki=%%s default: \"\" (in hex, without 0x)\n"
220#else /* MBEDTLS_SSL_DTLS_SRTP */
221#define USAGE_SRTP ""
222#endif
223#else /* MBEDTLS_SSL_EXPORT_KEYS */
Ron Eldorb7fd64c2019-05-12 11:03:32 +0300224#define USAGE_EAP_TLS ""
Hanno Becker48f3a3d2019-08-29 06:31:22 +0100225#define USAGE_NSS_KEYLOG ""
226#define USAGE_NSS_KEYLOG_FILE ""
Ron Eldor65b56ef2019-09-26 16:40:48 +0300227#define USAGE_SRTP ""
Ron Eldorb7fd64c2019-05-12 11:03:32 +0300228#endif /* MBEDTLS_SSL_EXPORT_KEYS */
229
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200230#if defined(MBEDTLS_SSL_TRUNCATED_HMAC)
Paul Bakker1f2bc622013-08-15 13:45:55 +0200231#define USAGE_TRUNC_HMAC \
Manuel Pégourié-Gonnard265fe992015-01-09 12:43:35 +0100232 " trunc_hmac=%%d default: library default\n"
Paul Bakker1f2bc622013-08-15 13:45:55 +0200233#else
234#define USAGE_TRUNC_HMAC ""
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200235#endif /* MBEDTLS_SSL_TRUNCATED_HMAC */
Paul Bakker1f2bc622013-08-15 13:45:55 +0200236
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200237#if defined(MBEDTLS_SSL_MAX_FRAGMENT_LENGTH)
Paul Bakker05decb22013-08-15 13:33:48 +0200238#define USAGE_MAX_FRAG_LEN \
239 " max_frag_len=%%d default: 16384 (tls default)\n" \
240 " options: 512, 1024, 2048, 4096\n"
241#else
242#define USAGE_MAX_FRAG_LEN ""
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200243#endif /* MBEDTLS_SSL_MAX_FRAGMENT_LENGTH */
Paul Bakker05decb22013-08-15 13:33:48 +0200244
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200245#if defined(MBEDTLS_SSL_CBC_RECORD_SPLITTING)
Manuel Pégourié-Gonnardc82ee352015-01-07 16:35:25 +0100246#define USAGE_RECSPLIT \
Manuel Pégourié-Gonnardbf27eaa2015-06-11 17:02:10 +0200247 " recsplit=0/1 default: (library default: on)\n"
Manuel Pégourié-Gonnardc82ee352015-01-07 16:35:25 +0100248#else
249#define USAGE_RECSPLIT
250#endif
251
Manuel Pégourié-Gonnard90966822015-06-11 17:02:29 +0200252#if defined(MBEDTLS_DHM_C)
253#define USAGE_DHMLEN \
254 " dhmlen=%%d default: (library default: 1024 bits)\n"
255#else
256#define USAGE_DHMLEN
257#endif
258
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200259#if defined(MBEDTLS_SSL_ALPN)
Manuel Pégourié-Gonnard1bd22812014-04-05 14:34:07 +0200260#define USAGE_ALPN \
261 " alpn=%%s default: \"\" (disabled)\n" \
262 " example: spdy/1,http/1.1\n"
263#else
264#define USAGE_ALPN ""
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200265#endif /* MBEDTLS_SSL_ALPN */
Manuel Pégourié-Gonnard1bd22812014-04-05 14:34:07 +0200266
Hanno Beckere6706e62017-05-15 16:05:15 +0100267#if defined(MBEDTLS_ECP_C)
268#define USAGE_CURVES \
269 " curves=a,b,c,d default: \"default\" (library default)\n" \
270 " example: \"secp521r1,brainpoolP512r1\"\n" \
271 " - use \"none\" for empty list\n" \
272 " - see mbedtls_ecp_curve_list()\n" \
273 " for acceptable curve names\n"
274#else
275#define USAGE_CURVES ""
276#endif
277
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200278#if defined(MBEDTLS_SSL_PROTO_DTLS)
Manuel Pégourié-Gonnardd823bd02014-10-01 14:40:56 +0200279#define USAGE_DTLS \
280 " dtls=%%d default: 0 (TLS)\n" \
281 " hs_timeout=%%d-%%d default: (library default: 1000-60000)\n" \
Manuel Pégourié-Gonnardb747c6c2018-08-12 13:28:53 +0200282 " range of DTLS handshake timeouts in millisecs\n" \
Hanno Becker4d615912018-08-14 13:33:30 +0100283 " mtu=%%d default: (library default: unlimited)\n" \
284 " dgram_packing=%%d default: 1 (allowed)\n" \
285 " allow or forbid packing of multiple\n" \
286 " records within a single datgram.\n"
Manuel Pégourié-Gonnardd823bd02014-10-01 14:40:56 +0200287#else
288#define USAGE_DTLS ""
289#endif
290
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200291#if defined(MBEDTLS_SSL_FALLBACK_SCSV)
Manuel Pégourié-Gonnard1cbd39d2014-10-20 13:34:59 +0200292#define USAGE_FALLBACK \
293 " fallback=0/1 default: (library default: off)\n"
294#else
295#define USAGE_FALLBACK ""
296#endif
297
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200298#if defined(MBEDTLS_SSL_EXTENDED_MASTER_SECRET)
Manuel Pégourié-Gonnard367381f2014-10-20 18:40:56 +0200299#define USAGE_EMS \
300 " extended_ms=0/1 default: (library default: on)\n"
301#else
302#define USAGE_EMS ""
303#endif
304
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200305#if defined(MBEDTLS_SSL_ENCRYPT_THEN_MAC)
Manuel Pégourié-Gonnard699cafa2014-10-27 13:57:03 +0100306#define USAGE_ETM \
307 " etm=0/1 default: (library default: on)\n"
308#else
309#define USAGE_ETM ""
310#endif
311
Philippe Antoine738153a2019-06-18 20:16:43 +0200312#define USAGE_REPRODUCIBLE \
313 " reproducible=0/1 default: 0 (disabled)\n"
314
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200315#if defined(MBEDTLS_SSL_RENEGOTIATION)
Manuel Pégourié-Gonnard615e6772014-11-03 08:23:14 +0100316#define USAGE_RENEGO \
317 " renegotiation=%%d default: 0 (disabled)\n" \
318 " renegotiate=%%d default: 0 (disabled)\n"
319#else
320#define USAGE_RENEGO ""
321#endif
322
Manuel Pégourié-Gonnard70905a72015-09-16 11:08:34 +0200323#if defined(MBEDTLS_KEY_EXCHANGE_ECJPAKE_ENABLED)
324#define USAGE_ECJPAKE \
325 " ecjpake_pw=%%s default: none (disabled)\n"
326#else
327#define USAGE_ECJPAKE ""
328#endif
329
Manuel Pégourié-Gonnardb3c83072017-05-16 08:50:24 +0200330#if defined(MBEDTLS_ECP_RESTARTABLE)
331#define USAGE_ECRESTART \
332 " ec_max_ops=%%s default: library default (restart disabled)\n"
333#else
334#define USAGE_ECRESTART ""
335#endif
336
Jarno Lamsabbc7b412019-06-04 11:06:31 +0300337#if defined(MBEDTLS_SSL_CONTEXT_SERIALIZATION)
338#define USAGE_SERIALIZATION \
Piotr Nowicki3de298f2020-04-16 14:35:19 +0200339 " serialize=%%d default: 0 (do not serialize/deserialize)\n" \
340 " options: 1 (serialize)\n" \
341 " 2 (serialize with re-initialization)\n" \
Gilles Peskine1b6c09a2023-01-11 14:52:35 +0100342 " context_file=%%s The file path to write a serialized connection\n" \
Piotr Nowicki3de298f2020-04-16 14:35:19 +0200343 " in the form of base64 code (serialize option\n" \
344 " must be set)\n" \
345 " default: \"\" (do nothing)\n" \
346 " option: a file path\n"
Jarno Lamsabbc7b412019-06-04 11:06:31 +0300347#else
348#define USAGE_SERIALIZATION ""
349#endif
350
Gilles Peskineb2971ff2020-04-14 19:41:01 +0200351/* USAGE is arbitrarily split to stay under the portable string literal
352 * length limit: 4095 bytes in C99. */
353#define USAGE1 \
Paul Bakker67968392010-07-18 08:28:20 +0000354 "\n usage: ssl_client2 param=<>...\n" \
355 "\n acceptable parameters:\n" \
356 " server_name=%%s default: localhost\n" \
Manuel Pégourié-Gonnard0d8780b2014-02-25 11:11:26 +0100357 " server_addr=%%s default: given by name\n" \
Paul Bakker67968392010-07-18 08:28:20 +0000358 " server_port=%%d default: 4433\n" \
Paul Bakker67968392010-07-18 08:28:20 +0000359 " request_page=%%s default: \".\"\n" \
Andres Amaya Garciace6fbac2018-07-04 09:29:34 +0100360 " request_size=%%d default: about 34 (basic request)\n" \
361 " (minimum: 0, max: " MAX_REQUEST_SIZE_STR ")\n" \
Gilles Peskine1b6c09a2023-01-11 14:52:35 +0100362 " If 0, in the first exchange only an empty\n" \
363 " application data message is sent followed by\n" \
364 " a second non-empty message before attempting\n" \
365 " to read a response from the server\n" \
366 " debug_level=%%d default: 0 (disabled)\n" \
367 " build_version=%%d default: none (disabled)\n" \
368 " option: 1 (print build version only and stop)\n" \
369 " nbio=%%d default: 0 (blocking I/O)\n" \
370 " options: 1 (non-blocking), 2 (added delays)\n" \
371 " event=%%d default: 0 (loop)\n" \
372 " options: 1 (level-triggered, implies nbio=1),\n" \
373 " read_timeout=%%d default: 0 ms (no timeout)\n" \
374 " max_resend=%%d default: 0 (no resend on timeout)\n" \
375 " skip_close_notify=%%d default: 0 (send close_notify)\n" \
376 "\n" \
Manuel Pégourié-Gonnardd823bd02014-10-01 14:40:56 +0200377 USAGE_DTLS \
Hanno Becker90cb3592019-04-09 17:24:19 +0100378 USAGE_CID \
Ron Eldor6ea64512018-07-02 10:08:07 +0300379 USAGE_SRTP \
Gilles Peskineb2971ff2020-04-14 19:41:01 +0200380 "\n"
381#define USAGE2 \
Hanno Becker16970d22017-10-10 15:56:37 +0100382 " auth_mode=%%s default: (library default: none)\n" \
Manuel Pégourié-Gonnard2fc243d2014-02-19 18:22:59 +0100383 " options: none, optional, required\n" \
Gilles Peskine724a7bb2025-02-12 21:50:53 +0100384 " set_hostname=%%s call mbedtls_ssl_set_hostname()?" \
385 " options: no, server_name, NULL\n" \
386 " default: server_name (but ignored if certs disabled)\n" \
Manuel Pégourié-Gonnard2fc243d2014-02-19 18:22:59 +0100387 USAGE_IO \
Manuel Pégourié-Gonnardef68be42018-11-07 09:42:35 +0100388 USAGE_KEY_OPAQUE \
Jarno Lamsa1b4a2ba2019-03-27 17:55:27 +0200389 USAGE_CA_CALLBACK \
Manuel Pégourié-Gonnard2fc243d2014-02-19 18:22:59 +0100390 "\n" \
391 USAGE_PSK \
Manuel Pégourié-Gonnard70905a72015-09-16 11:08:34 +0200392 USAGE_ECJPAKE \
Manuel Pégourié-Gonnardb3c83072017-05-16 08:50:24 +0200393 USAGE_ECRESTART \
Gilles Peskineb2971ff2020-04-14 19:41:01 +0200394 "\n"
395#define USAGE3 \
Hanno Becker16970d22017-10-10 15:56:37 +0100396 " allow_legacy=%%d default: (library default: no)\n" \
Manuel Pégourié-Gonnard615e6772014-11-03 08:23:14 +0100397 USAGE_RENEGO \
Manuel Pégourié-Gonnarda8c0a0d2014-08-15 12:07:38 +0200398 " exchanges=%%d default: 1\n" \
Manuel Pégourié-Gonnarda7c37652019-05-20 12:46:26 +0200399 " reconnect=%%d number of reconnections using session resumption\n" \
400 " default: 0 (disabled)\n" \
Manuel Pégourié-Gonnarde3c41ad2015-05-13 10:04:32 +0200401 " reco_delay=%%d default: 0 seconds\n" \
Manuel Pégourié-Gonnard686adb42019-06-03 09:55:16 +0200402 " reco_mode=%%d 0: copy session, 1: serialize session\n" \
Manuel Pégourié-Gonnarda7c37652019-05-20 12:46:26 +0200403 " default: 1\n" \
Manuel Pégourié-Gonnarddbd23072015-09-04 10:20:17 +0200404 " reconnect_hard=%%d default: 0 (disabled)\n" \
Paul Bakkera503a632013-08-14 13:48:06 +0200405 USAGE_TICKETS \
Ron Eldorb7fd64c2019-05-12 11:03:32 +0300406 USAGE_EAP_TLS \
Manuel Pégourié-Gonnard2fc243d2014-02-19 18:22:59 +0100407 USAGE_MAX_FRAG_LEN \
408 USAGE_TRUNC_HMAC \
Janos Follathae13beb2019-04-05 14:06:58 +0100409 USAGE_CONTEXT_CRT_CB \
Manuel Pégourié-Gonnard1bd22812014-04-05 14:34:07 +0200410 USAGE_ALPN \
Manuel Pégourié-Gonnard1cbd39d2014-10-20 13:34:59 +0200411 USAGE_FALLBACK \
Manuel Pégourié-Gonnard367381f2014-10-20 18:40:56 +0200412 USAGE_EMS \
Manuel Pégourié-Gonnard699cafa2014-10-27 13:57:03 +0100413 USAGE_ETM \
Philippe Antoine738153a2019-06-18 20:16:43 +0200414 USAGE_REPRODUCIBLE \
Hanno Beckere6706e62017-05-15 16:05:15 +0100415 USAGE_CURVES \
Manuel Pégourié-Gonnardc82ee352015-01-07 16:35:25 +0100416 USAGE_RECSPLIT \
Manuel Pégourié-Gonnard90966822015-06-11 17:02:29 +0200417 USAGE_DHMLEN \
Gilles Peskineb2971ff2020-04-14 19:41:01 +0200418 "\n"
419#define USAGE4 \
Manuel Pégourié-Gonnardfa44f202015-03-27 17:52:25 +0100420 " arc4=%%d default: (library default: 0)\n" \
Gilles Peskinebc70a182017-05-09 15:59:24 +0200421 " allow_sha1=%%d default: 0\n" \
Manuel Pégourié-Gonnard8c8be1e2015-03-31 14:21:11 +0200422 " min_version=%%s default: (library default: tls1)\n" \
Xiaofei Baif40545d2021-12-02 08:43:35 +0000423 " max_version=%%s default: (library default: tls12)\n" \
Paul Bakker1d29fb52012-09-28 13:28:45 +0000424 " force_version=%%s default: \"\" (none)\n" \
Xiaofei Baif40545d2021-12-02 08:43:35 +0000425 " options: ssl3, tls1, tls1_1, tls12, dtls1, dtls12\n" \
Paul Bakker1d29fb52012-09-28 13:28:45 +0000426 "\n" \
Gilles Peskine1b6c09a2023-01-11 14:52:35 +0100427 " force_ciphersuite=<name> default: all enabled\n" \
Andres Amaya Garciabc818842018-10-16 21:08:38 +0100428 " query_config=<name> return 0 if the specified\n" \
429 " configuration macro is defined and 1\n" \
430 " otherwise. The expansion of the macro\n" \
431 " is printed if it is defined\n" \
Jarno Lamsabbc7b412019-06-04 11:06:31 +0300432 USAGE_SERIALIZATION \
Manuel Pégourié-Gonnardfc8ad272023-06-27 09:28:24 +0200433 "\n"
Paul Bakker9caf2d22010-02-18 19:37:19 +0000434
Hanno Becker8651a432017-06-09 16:13:22 +0100435#define ALPN_LIST_SIZE 10
436#define CURVE_LIST_SIZE 20
437
Andrzej Kurekc470b6b2019-01-31 08:20:20 -0500438
Rich Evans85b05ec2015-02-12 11:37:29 +0000439/*
440 * global options
441 */
Gilles Peskine1b6c09a2023-01-11 14:52:35 +0100442struct options {
Rich Evans85b05ec2015-02-12 11:37:29 +0000443 const char *server_name; /* hostname of the server (client only) */
444 const char *server_addr; /* address of the server (client only) */
Manuel Pégourié-Gonnardc0d74942015-06-23 12:30:57 +0200445 const char *server_port; /* port on which the ssl service runs */
Rich Evans85b05ec2015-02-12 11:37:29 +0000446 int debug_level; /* level of debugging */
447 int nbio; /* should I/O be blocking? */
Hanno Becker16970d22017-10-10 15:56:37 +0100448 int event; /* loop or event-driven IO? level or edge triggered? */
449 uint32_t read_timeout; /* timeout on mbedtls_ssl_read() in milliseconds */
Manuel Pégourié-Gonnardd901d172015-02-16 18:37:53 +0000450 int max_resend; /* DTLS times to resend on read timeout */
Rich Evans85b05ec2015-02-12 11:37:29 +0000451 const char *request_page; /* page on server to request */
452 int request_size; /* pad request with header to requested size */
453 const char *ca_file; /* the file with the CA certificate(s) */
454 const char *ca_path; /* the path with the CA certificate(s) reside */
455 const char *crt_file; /* the file with the client certificate */
456 const char *key_file; /* the file with the client key */
Manuel Pégourié-Gonnardef68be42018-11-07 09:42:35 +0100457 int key_opaque; /* handle private key as if it were opaque */
Hanno Beckere86964c2018-10-23 11:37:50 +0100458#if defined(MBEDTLS_USE_PSA_CRYPTO)
Hanno Becker1d911cd2018-11-15 13:06:09 +0000459 int psk_opaque;
Hanno Beckere86964c2018-10-23 11:37:50 +0100460#endif
Jarno Lamsa1b4a2ba2019-03-27 17:55:27 +0200461#if defined(MBEDTLS_X509_TRUSTED_CERTIFICATE_CALLBACK)
Hanno Beckercbb59032019-03-28 14:14:22 +0000462 int ca_callback; /* Use callback for trusted certificate list */
Jarno Lamsa1b4a2ba2019-03-27 17:55:27 +0200463#endif
Hanno Beckerca04fdc2018-11-07 16:22:14 +0000464 const char *key_pwd; /* the password for the client key */
Rich Evans85b05ec2015-02-12 11:37:29 +0000465 const char *psk; /* the pre-shared key */
466 const char *psk_identity; /* the pre-shared key identity */
Manuel Pégourié-Gonnard70905a72015-09-16 11:08:34 +0200467 const char *ecjpake_pw; /* the EC J-PAKE password */
Manuel Pégourié-Gonnardb3c83072017-05-16 08:50:24 +0200468 int ec_max_ops; /* EC consecutive operations limit */
Rich Evans85b05ec2015-02-12 11:37:29 +0000469 int force_ciphersuite[2]; /* protocol/ciphersuite to use, or all */
470 int renegotiation; /* enable / disable renegotiation */
471 int allow_legacy; /* allow legacy renegotiation */
472 int renegotiate; /* attempt renegotiation? */
473 int renego_delay; /* delay before enforcing renegotiation */
474 int exchanges; /* number of data exchanges */
475 int min_version; /* minimum protocol version accepted */
476 int max_version; /* maximum protocol version accepted */
477 int arc4; /* flag for arc4 suites support */
Gilles Peskinebc70a182017-05-09 15:59:24 +0200478 int allow_sha1; /* flag for SHA-1 support */
Rich Evans85b05ec2015-02-12 11:37:29 +0000479 int auth_mode; /* verify mode for connection */
Gilles Peskine724a7bb2025-02-12 21:50:53 +0100480 int set_hostname; /* call mbedtls_ssl_set_hostname()? */
481 /* 0=no, 1=yes, -1=NULL */
Rich Evans85b05ec2015-02-12 11:37:29 +0000482 unsigned char mfl_code; /* code for maximum fragment length */
483 int trunc_hmac; /* negotiate truncated hmac or not */
484 int recsplit; /* enable record splitting? */
Manuel Pégourié-Gonnard90966822015-06-11 17:02:29 +0200485 int dhmlen; /* minimum DHM params len in bits */
Rich Evans85b05ec2015-02-12 11:37:29 +0000486 int reconnect; /* attempt to resume session */
487 int reco_delay; /* delay in seconds before resuming session */
Manuel Pégourié-Gonnarda7c37652019-05-20 12:46:26 +0200488 int reco_mode; /* how to keep the session around */
Manuel Pégourié-Gonnarddbd23072015-09-04 10:20:17 +0200489 int reconnect_hard; /* unexpectedly reconnect from the same port */
Rich Evans85b05ec2015-02-12 11:37:29 +0000490 int tickets; /* enable / disable session tickets */
Hanno Beckere6706e62017-05-15 16:05:15 +0100491 const char *curves; /* list of supported elliptic curves */
Rich Evans85b05ec2015-02-12 11:37:29 +0000492 const char *alpn_string; /* ALPN supported protocols */
Manuel Pégourié-Gonnardd901d172015-02-16 18:37:53 +0000493 int transport; /* TLS or DTLS? */
494 uint32_t hs_to_min; /* Initial value of DTLS handshake timer */
495 uint32_t hs_to_max; /* Max value of DTLS handshake timer */
Shaun Case0e7791f2021-12-20 21:14:10 -0800496 int dtls_mtu; /* UDP Maximum transport unit for DTLS */
Rich Evans85b05ec2015-02-12 11:37:29 +0000497 int fallback; /* is this a fallback connection? */
Hanno Becker4d615912018-08-14 13:33:30 +0100498 int dgram_packing; /* allow/forbid datagram packing */
Rich Evans85b05ec2015-02-12 11:37:29 +0000499 int extended_ms; /* negotiate extended master secret? */
500 int etm; /* negotiate encrypt then mac? */
Hanno Beckerbb425db2019-04-03 12:59:58 +0100501 int context_crt_cb; /* use context-specific CRT verify callback */
Ron Eldorb7fd64c2019-05-12 11:03:32 +0300502 int eap_tls; /* derive EAP-TLS keying material? */
Hanno Becker48f3a3d2019-08-29 06:31:22 +0100503 int nss_keylog; /* export NSS key log material */
504 const char *nss_keylog_file; /* NSS key log file */
Hanno Becker90cb3592019-04-09 17:24:19 +0100505 int cid_enabled; /* whether to use the CID extension or not */
Hanno Beckerb42ec0d2019-05-03 17:30:59 +0100506 int cid_enabled_renego; /* whether to use the CID extension or not
507 * during renegotiation */
Hanno Becker90cb3592019-04-09 17:24:19 +0100508 const char *cid_val; /* the CID to use for incoming messages */
Jarno Lamsa9831c8a2019-05-29 13:33:32 +0300509 int serialize; /* serialize/deserialize connection */
Piotr Nowicki3de298f2020-04-16 14:35:19 +0200510 const char *context_file; /* the file to write a serialized connection
511 * in the form of base64 code (serialize
512 * option must be set) */
Hanno Beckerb42ec0d2019-05-03 17:30:59 +0100513 const char *cid_val_renego; /* the CID to use for incoming messages
514 * after renegotiation */
Philippe Antoine154feb22019-06-11 17:50:23 +0200515 int reproducible; /* make communication reproducible */
Manuel Pégourié-Gonnard56941fe2020-02-17 11:04:33 +0100516 int skip_close_notify; /* skip sending the close_notify alert */
gabor-mezei-arma9eecf12020-07-07 11:11:02 +0200517 int query_config_mode; /* whether to read config */
Ron Eldor6ea64512018-07-02 10:08:07 +0300518 int use_srtp; /* Support SRTP */
519 int force_srtp_profile; /* SRTP protection profile to use or all */
Ron Eldoref72faf2018-07-12 11:54:20 +0300520 const char *mki; /* The dtls mki value to use */
Rich Evans85b05ec2015-02-12 11:37:29 +0000521} opt;
522
Gilles Peskine0d980b82021-01-05 23:34:27 +0100523#include "ssl_test_common_source.c"
Hanno Becker8b1af2f2019-07-03 17:02:43 +0100524
Andrzej Kurek4ed670f2022-10-18 08:30:50 -0400525#if defined(MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED)
Hanno Beckera1051b42019-02-26 11:38:29 +0000526static unsigned char peer_crt_info[1024];
Hanno Beckera9766c2c2019-02-25 17:43:18 +0000527
Rich Evans85b05ec2015-02-12 11:37:29 +0000528/*
529 * Enabled if debug_level > 1 in code below
530 */
Gilles Peskine1b6c09a2023-01-11 14:52:35 +0100531static int my_verify(void *data, mbedtls_x509_crt *crt,
532 int depth, uint32_t *flags)
Rich Evans85b05ec2015-02-12 11:37:29 +0000533{
534 char buf[1024];
535 ((void) data);
536
Gilles Peskine1b6c09a2023-01-11 14:52:35 +0100537 mbedtls_x509_crt_info(buf, sizeof(buf) - 1, "", crt);
538 if (depth == 0) {
539 memcpy(peer_crt_info, buf, sizeof(buf));
Manuel Pégourié-Gonnard89addc42015-04-20 10:56:18 +0100540 }
Rich Evans85b05ec2015-02-12 11:37:29 +0000541
Gilles Peskine1b6c09a2023-01-11 14:52:35 +0100542 if (opt.debug_level == 0) {
543 return 0;
544 }
545
546 mbedtls_printf("\nVerify requested for (Depth %d):\n", depth);
547 mbedtls_printf("%s", buf);
548
549 if ((*flags) == 0) {
550 mbedtls_printf(" This certificate has no flags\n");
551 } else {
552 mbedtls_x509_crt_verify_info(buf, sizeof(buf), " ! ", *flags);
553 mbedtls_printf("%s\n", buf);
554 }
555
556 return 0;
Rich Evans85b05ec2015-02-12 11:37:29 +0000557}
Andrzej Kurek4ed670f2022-10-18 08:30:50 -0400558#endif /* MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED */
Gilles Peskinecd3c8452017-05-09 14:57:45 +0200559
Hanno Beckera0e20d02019-05-15 14:03:01 +0100560#if defined(MBEDTLS_SSL_DTLS_CONNECTION_ID)
Gilles Peskine1b6c09a2023-01-11 14:52:35 +0100561int report_cid_usage(mbedtls_ssl_context *ssl,
562 const char *additional_description)
Hanno Beckerb42ec0d2019-05-03 17:30:59 +0100563{
564 int ret;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +0100565 unsigned char peer_cid[MBEDTLS_SSL_CID_OUT_LEN_MAX];
Hanno Beckerb42ec0d2019-05-03 17:30:59 +0100566 size_t peer_cid_len;
567 int cid_negotiated;
568
Gilles Peskine1b6c09a2023-01-11 14:52:35 +0100569 if (opt.transport != MBEDTLS_SSL_TRANSPORT_DATAGRAM) {
570 return 0;
571 }
Hanno Beckerb42ec0d2019-05-03 17:30:59 +0100572
Hanno Becker6ae14c02019-05-22 16:59:25 +0100573 /* Check if the use of a CID has been negotiated,
574 * but don't ask for the CID value and length.
575 *
576 * Note: Here and below, we're demonstrating the various ways
577 * in which mbedtls_ssl_get_peer_cid() can be called,
578 * depending on whether or not the length/value of the
579 * peer's CID is needed.
580 *
581 * An actual application, however, should use
582 * just one call to mbedtls_ssl_get_peer_cid(). */
Gilles Peskine1b6c09a2023-01-11 14:52:35 +0100583 ret = mbedtls_ssl_get_peer_cid(ssl, &cid_negotiated,
584 NULL, NULL);
585 if (ret != 0) {
586 mbedtls_printf(" failed\n ! mbedtls_ssl_get_peer_cid returned -0x%x\n\n",
587 (unsigned int) -ret);
588 return ret;
Hanno Beckerb42ec0d2019-05-03 17:30:59 +0100589 }
590
Gilles Peskine1b6c09a2023-01-11 14:52:35 +0100591 if (cid_negotiated == MBEDTLS_SSL_CID_DISABLED) {
592 if (opt.cid_enabled == MBEDTLS_SSL_CID_ENABLED) {
593 mbedtls_printf("(%s) Use of Connection ID was rejected by the server.\n",
594 additional_description);
Hanno Beckerb42ec0d2019-05-03 17:30:59 +0100595 }
Gilles Peskine1b6c09a2023-01-11 14:52:35 +0100596 } else {
597 size_t idx = 0;
598 mbedtls_printf("(%s) Use of Connection ID has been negotiated.\n",
599 additional_description);
Hanno Becker6ae14c02019-05-22 16:59:25 +0100600
601 /* Ask for just the length of the peer's CID. */
Gilles Peskine1b6c09a2023-01-11 14:52:35 +0100602 ret = mbedtls_ssl_get_peer_cid(ssl, &cid_negotiated,
603 NULL, &peer_cid_len);
604 if (ret != 0) {
605 mbedtls_printf(" failed\n ! mbedtls_ssl_get_peer_cid returned -0x%x\n\n",
606 (unsigned int) -ret);
607 return ret;
Hanno Becker6ae14c02019-05-22 16:59:25 +0100608 }
609
610 /* Ask for just length + value of the peer's CID. */
Gilles Peskine1b6c09a2023-01-11 14:52:35 +0100611 ret = mbedtls_ssl_get_peer_cid(ssl, &cid_negotiated,
612 peer_cid, &peer_cid_len);
613 if (ret != 0) {
614 mbedtls_printf(" failed\n ! mbedtls_ssl_get_peer_cid returned -0x%x\n\n",
615 (unsigned int) -ret);
616 return ret;
Hanno Becker6ae14c02019-05-22 16:59:25 +0100617 }
Gilles Peskine1b6c09a2023-01-11 14:52:35 +0100618 mbedtls_printf("(%s) Peer CID (length %u Bytes): ",
619 additional_description,
620 (unsigned) peer_cid_len);
621 while (idx < peer_cid_len) {
622 mbedtls_printf("%02x ", peer_cid[idx]);
Hanno Beckerb42ec0d2019-05-03 17:30:59 +0100623 idx++;
624 }
Gilles Peskine1b6c09a2023-01-11 14:52:35 +0100625 mbedtls_printf("\n");
Hanno Beckerb42ec0d2019-05-03 17:30:59 +0100626 }
627
Gilles Peskine1b6c09a2023-01-11 14:52:35 +0100628 return 0;
Hanno Beckerb42ec0d2019-05-03 17:30:59 +0100629}
Hanno Beckera0e20d02019-05-15 14:03:01 +0100630#endif /* MBEDTLS_SSL_DTLS_CONNECTION_ID */
Hanno Beckerb42ec0d2019-05-03 17:30:59 +0100631
Gilles Peskine1b6c09a2023-01-11 14:52:35 +0100632int main(int argc, char *argv[])
Paul Bakker5121ce52009-01-03 21:22:43 +0000633{
Manuel Pégourié-Gonnard5db64322015-06-30 15:40:39 +0200634 int ret = 0, len, tail_len, i, written, frags, retry_left;
gabor-mezei-arma9eecf12020-07-07 11:11:02 +0200635 int query_config_ret = 0;
Manuel Pégourié-Gonnard5db64322015-06-30 15:40:39 +0200636 mbedtls_net_context server_fd;
Hanno Becker8b1af2f2019-07-03 17:02:43 +0100637 io_ctx_t io_ctx;
Hanno Beckere4ad3e82017-09-18 15:05:46 +0100638
639 unsigned char buf[MAX_REQUEST_SIZE + 1];
640
Gilles Peskineeccd8882020-03-10 12:19:08 +0100641#if defined(MBEDTLS_KEY_EXCHANGE_SOME_PSK_ENABLED)
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200642 unsigned char psk[MBEDTLS_PSK_MAX_LEN];
Paul Bakkerd4a56ec2013-04-16 18:05:29 +0200643 size_t psk_len = 0;
Paul Bakkered27a042013-04-18 22:46:23 +0200644#endif
Hanno Becker90cb3592019-04-09 17:24:19 +0100645
Hanno Beckera0e20d02019-05-15 14:03:01 +0100646#if defined(MBEDTLS_SSL_DTLS_CONNECTION_ID)
Hanno Becker90cb3592019-04-09 17:24:19 +0100647 unsigned char cid[MBEDTLS_SSL_CID_IN_LEN_MAX];
Hanno Beckerb42ec0d2019-05-03 17:30:59 +0100648 unsigned char cid_renego[MBEDTLS_SSL_CID_IN_LEN_MAX];
Hanno Becker90cb3592019-04-09 17:24:19 +0100649 size_t cid_len = 0;
Hanno Beckerb42ec0d2019-05-03 17:30:59 +0100650 size_t cid_renego_len = 0;
Hanno Becker90cb3592019-04-09 17:24:19 +0100651#endif
652
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200653#if defined(MBEDTLS_SSL_ALPN)
Hanno Becker8651a432017-06-09 16:13:22 +0100654 const char *alpn_list[ALPN_LIST_SIZE];
Manuel Pégourié-Gonnard1bd22812014-04-05 14:34:07 +0200655#endif
Piotr Nowicki7d01ef62019-11-20 15:00:17 +0100656
657#if defined(MBEDTLS_MEMORY_BUFFER_ALLOC_C)
658 unsigned char alloc_buf[MEMORY_HEAP_SIZE];
659#endif
660
Hanno Beckere6706e62017-05-15 16:05:15 +0100661#if defined(MBEDTLS_ECP_C)
Hanno Becker8651a432017-06-09 16:13:22 +0100662 mbedtls_ecp_group_id curve_list[CURVE_LIST_SIZE];
Hanno Beckere6706e62017-05-15 16:05:15 +0100663 const mbedtls_ecp_curve_info *curve_cur;
664#endif
Ron Eldor6ea64512018-07-02 10:08:07 +0300665#if defined(MBEDTLS_SSL_DTLS_SRTP)
Johan Pascal85269572020-08-25 10:01:54 +0200666 unsigned char mki[MBEDTLS_TLS_SRTP_MAX_MKI_LENGTH];
Gilles Peskine1b6c09a2023-01-11 14:52:35 +0100667 size_t mki_len = 0;
Ron Eldor6ea64512018-07-02 10:08:07 +0300668#endif
Hanno Beckere6706e62017-05-15 16:05:15 +0100669
Paul Bakkeref3f8c72013-06-24 13:01:08 +0200670 const char *pers = "ssl_client2";
Paul Bakker508ad5a2011-12-04 17:09:26 +0000671
Hanno Beckere86964c2018-10-23 11:37:50 +0100672#if defined(MBEDTLS_USE_PSA_CRYPTO)
Andrzej Kureke2462ba2022-01-17 15:29:08 +0100673#if defined(MBEDTLS_KEY_EXCHANGE_SOME_PSK_ENABLED)
Ronald Cronadc2ff22020-09-16 16:49:27 +0200674 psa_key_id_t slot = 0;
Hanno Beckere86964c2018-10-23 11:37:50 +0100675 psa_algorithm_t alg = 0;
Janos Follathbe4efc22019-08-08 11:38:18 +0100676 psa_key_attributes_t key_attributes;
Andrzej Kureke2462ba2022-01-17 15:29:08 +0100677#endif
Hanno Beckere86964c2018-10-23 11:37:50 +0100678 psa_status_t status;
679#endif
680
Gilles Peskinef1cb75f2021-01-13 18:46:01 +0100681 rng_context_t rng;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200682 mbedtls_ssl_context ssl;
Manuel Pégourié-Gonnarddef0bbe2015-05-04 14:56:36 +0200683 mbedtls_ssl_config conf;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200684 mbedtls_ssl_session saved_session;
Manuel Pégourié-Gonnard26f982f2019-05-21 11:01:32 +0200685 unsigned char *session_data = NULL;
686 size_t session_data_len = 0;
Manuel Pégourié-Gonnardd2377e72015-05-13 13:58:56 +0200687#if defined(MBEDTLS_TIMING_C)
Manuel Pégourié-Gonnarde3c41ad2015-05-13 10:04:32 +0200688 mbedtls_timing_delay_context timer;
Manuel Pégourié-Gonnardd2377e72015-05-13 13:58:56 +0200689#endif
Andrzej Kurek4ed670f2022-10-18 08:30:50 -0400690#if defined(MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED)
Manuel Pégourié-Gonnarddb1cc762015-05-12 11:27:25 +0200691 uint32_t flags;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200692 mbedtls_x509_crt cacert;
693 mbedtls_x509_crt clicert;
694 mbedtls_pk_context pkey;
Andrzej Kurek7829d8f2022-10-18 09:19:07 -0400695 mbedtls_x509_crt_profile crt_profile_for_test = mbedtls_x509_crt_profile_default;
Manuel Pégourié-Gonnardcfdf8f42018-11-08 09:52:25 +0100696#if defined(MBEDTLS_USE_PSA_CRYPTO)
Ronald Cronadc2ff22020-09-16 16:49:27 +0200697 psa_key_id_t key_slot = 0; /* invalid key slot */
Manuel Pégourié-Gonnardcfdf8f42018-11-08 09:52:25 +0100698#endif
Andrzej Kurek7829d8f2022-10-18 09:19:07 -0400699#endif /* MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED */
Paul Bakker9caf2d22010-02-18 19:37:19 +0000700 char *p, *q;
Paul Bakker51936882011-02-20 16:05:58 +0000701 const int *list;
Manuel Pégourié-Gonnard3309a672019-07-15 10:31:11 +0200702#if defined(MBEDTLS_SSL_CONTEXT_SERIALIZATION)
703 unsigned char *context_buf = NULL;
704 size_t context_buf_len;
705#endif
Ron Eldorb7fd64c2019-05-12 11:03:32 +0300706#if defined(MBEDTLS_SSL_EXPORT_KEYS)
707 unsigned char eap_tls_keymaterial[16];
708 unsigned char eap_tls_iv[8];
Gilles Peskine1b6c09a2023-01-11 14:52:35 +0100709 const char *eap_tls_label = "client EAP encryption";
Ron Eldorb7fd64c2019-05-12 11:03:32 +0300710 eap_tls_keys eap_tls_keying;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +0100711#if defined(MBEDTLS_SSL_DTLS_SRTP)
Ron Eldor65b56ef2019-09-26 16:40:48 +0300712 /*! master keys and master salt for SRTP generated during handshake */
Johan Pascal9bc97ca2020-09-21 23:44:45 +0200713 unsigned char dtls_srtp_key_material[MBEDTLS_TLS_SRTP_MAX_KEY_MATERIAL_LENGTH];
Gilles Peskine1b6c09a2023-01-11 14:52:35 +0100714 const char *dtls_srtp_label = "EXTRACTOR-dtls_srtp";
Johan Pascal9bc97ca2020-09-21 23:44:45 +0200715 dtls_srtp_keys dtls_srtp_keying;
716 const mbedtls_ssl_srtp_profile default_profiles[] = {
Johan Pascal43f94902020-09-22 12:25:52 +0200717 MBEDTLS_TLS_SRTP_AES128_CM_HMAC_SHA1_80,
718 MBEDTLS_TLS_SRTP_AES128_CM_HMAC_SHA1_32,
719 MBEDTLS_TLS_SRTP_NULL_HMAC_SHA1_80,
Johan Pascal253d0262020-09-22 13:04:45 +0200720 MBEDTLS_TLS_SRTP_NULL_HMAC_SHA1_32,
721 MBEDTLS_TLS_SRTP_UNSET
Johan Pascal9bc97ca2020-09-21 23:44:45 +0200722 };
Ron Eldor65b56ef2019-09-26 16:40:48 +0300723#endif /* MBEDTLS_SSL_DTLS_SRTP */
724#endif /* MBEDTLS_SSL_EXPORT_KEYS */
Paul Bakker9caf2d22010-02-18 19:37:19 +0000725
Piotr Nowicki7d01ef62019-11-20 15:00:17 +0100726#if defined(MBEDTLS_MEMORY_BUFFER_ALLOC_C)
Gilles Peskine1b6c09a2023-01-11 14:52:35 +0100727 mbedtls_memory_buffer_alloc_init(alloc_buf, sizeof(alloc_buf));
Piotr Nowicki7d01ef62019-11-20 15:00:17 +0100728#endif
729
Gilles Peskine60fe6602021-02-16 18:56:42 +0100730#if defined(MBEDTLS_TEST_HOOKS)
Gilles Peskine1b6c09a2023-01-11 14:52:35 +0100731 test_hooks_init();
Gilles Peskine60fe6602021-02-16 18:56:42 +0100732#endif /* MBEDTLS_TEST_HOOKS */
Gilles Peskine53dea742021-02-02 22:55:06 +0100733
Paul Bakker1a207ec2011-02-06 13:22:40 +0000734 /*
735 * Make sure memory references are valid.
736 */
Gilles Peskine1b6c09a2023-01-11 14:52:35 +0100737 mbedtls_net_init(&server_fd);
738 mbedtls_ssl_init(&ssl);
739 mbedtls_ssl_config_init(&conf);
Benson Liou6805ff72023-12-27 22:03:24 +0800740 mbedtls_ssl_session_init(&saved_session);
Gilles Peskine1b6c09a2023-01-11 14:52:35 +0100741 rng_init(&rng);
Andrzej Kurek7829d8f2022-10-18 09:19:07 -0400742#if defined(MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED)
Gilles Peskine1b6c09a2023-01-11 14:52:35 +0100743 mbedtls_x509_crt_init(&cacert);
744 mbedtls_x509_crt_init(&clicert);
745 mbedtls_pk_init(&pkey);
Paul Bakkered27a042013-04-18 22:46:23 +0200746#endif
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200747#if defined(MBEDTLS_SSL_ALPN)
Gilles Peskine1b6c09a2023-01-11 14:52:35 +0100748 memset((void *) alpn_list, 0, sizeof(alpn_list));
Manuel Pégourié-Gonnard1bd22812014-04-05 14:34:07 +0200749#endif
Paul Bakker1a207ec2011-02-06 13:22:40 +0000750
Hanno Beckerb2b468b2018-11-12 17:46:59 +0000751#if defined(MBEDTLS_USE_PSA_CRYPTO)
752 status = psa_crypto_init();
Gilles Peskine1b6c09a2023-01-11 14:52:35 +0100753 if (status != PSA_SUCCESS) {
754 mbedtls_fprintf(stderr, "Failed to initialize PSA Crypto implementation: %d\n",
755 (int) status);
Hanno Beckerb2b468b2018-11-12 17:46:59 +0000756 ret = MBEDTLS_ERR_SSL_HW_ACCEL_FAILED;
757 goto exit;
758 }
Gilles Peskine48113eb2021-02-09 10:25:20 +0100759#endif /* MBEDTLS_USE_PSA_CRYPTO */
Gilles Peskine21462112021-01-13 23:53:09 +0100760#if defined(MBEDTLS_PSA_CRYPTO_EXTERNAL_RNG)
Gilles Peskine1b6c09a2023-01-11 14:52:35 +0100761 mbedtls_test_enable_insecure_external_rng();
Gilles Peskine94ad8312021-01-25 13:42:28 +0100762#endif /* MBEDTLS_PSA_CRYPTO_EXTERNAL_RNG */
Hanno Beckerb2b468b2018-11-12 17:46:59 +0000763
Paul Bakker9caf2d22010-02-18 19:37:19 +0000764 opt.server_name = DFL_SERVER_NAME;
Manuel Pégourié-Gonnard0d8780b2014-02-25 11:11:26 +0100765 opt.server_addr = DFL_SERVER_ADDR;
Paul Bakker9caf2d22010-02-18 19:37:19 +0000766 opt.server_port = DFL_SERVER_PORT;
767 opt.debug_level = DFL_DEBUG_LEVEL;
Hanno Becker90cb3592019-04-09 17:24:19 +0100768 opt.cid_enabled = DFL_CID_ENABLED;
769 opt.cid_val = DFL_CID_VALUE;
Hanno Beckerb42ec0d2019-05-03 17:30:59 +0100770 opt.cid_enabled_renego = DFL_CID_ENABLED_RENEGO;
771 opt.cid_val_renego = DFL_CID_VALUE_RENEGO;
Manuel Pégourié-Gonnard55753162014-02-26 13:47:08 +0100772 opt.nbio = DFL_NBIO;
Hanno Becker16970d22017-10-10 15:56:37 +0100773 opt.event = DFL_EVENT;
Hanno Beckerbb425db2019-04-03 12:59:58 +0100774 opt.context_crt_cb = DFL_CONTEXT_CRT_CB;
Manuel Pégourié-Gonnard6b651412014-10-01 18:29:03 +0200775 opt.read_timeout = DFL_READ_TIMEOUT;
Manuel Pégourié-Gonnardf1e0df32014-10-02 14:02:32 +0200776 opt.max_resend = DFL_MAX_RESEND;
Paul Bakker9caf2d22010-02-18 19:37:19 +0000777 opt.request_page = DFL_REQUEST_PAGE;
Paul Bakker93c32b22014-04-25 13:40:05 +0200778 opt.request_size = DFL_REQUEST_SIZE;
Paul Bakker5690efc2011-05-26 13:16:06 +0000779 opt.ca_file = DFL_CA_FILE;
Paul Bakker8d914582012-06-04 12:46:42 +0000780 opt.ca_path = DFL_CA_PATH;
Paul Bakker67968392010-07-18 08:28:20 +0000781 opt.crt_file = DFL_CRT_FILE;
782 opt.key_file = DFL_KEY_FILE;
Manuel Pégourié-Gonnardef68be42018-11-07 09:42:35 +0100783 opt.key_opaque = DFL_KEY_OPAQUE;
Hanno Beckerca04fdc2018-11-07 16:22:14 +0000784 opt.key_pwd = DFL_KEY_PWD;
Paul Bakkerd4a56ec2013-04-16 18:05:29 +0200785 opt.psk = DFL_PSK;
Hanno Beckere86964c2018-10-23 11:37:50 +0100786#if defined(MBEDTLS_USE_PSA_CRYPTO)
Hanno Becker1d911cd2018-11-15 13:06:09 +0000787 opt.psk_opaque = DFL_PSK_OPAQUE;
Hanno Beckere86964c2018-10-23 11:37:50 +0100788#endif
Jarno Lamsa1b4a2ba2019-03-27 17:55:27 +0200789#if defined(MBEDTLS_X509_TRUSTED_CERTIFICATE_CALLBACK)
790 opt.ca_callback = DFL_CA_CALLBACK;
791#endif
Paul Bakkerd4a56ec2013-04-16 18:05:29 +0200792 opt.psk_identity = DFL_PSK_IDENTITY;
Manuel Pégourié-Gonnard70905a72015-09-16 11:08:34 +0200793 opt.ecjpake_pw = DFL_ECJPAKE_PW;
Manuel Pégourié-Gonnardb3c83072017-05-16 08:50:24 +0200794 opt.ec_max_ops = DFL_EC_MAX_OPS;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +0100795 opt.force_ciphersuite[0] = DFL_FORCE_CIPHER;
Paul Bakker48916f92012-09-16 19:57:18 +0000796 opt.renegotiation = DFL_RENEGOTIATION;
797 opt.allow_legacy = DFL_ALLOW_LEGACY;
Manuel Pégourié-Gonnard780d6712014-02-20 17:19:59 +0100798 opt.renegotiate = DFL_RENEGOTIATE;
Manuel Pégourié-Gonnarda8c0a0d2014-08-15 12:07:38 +0200799 opt.exchanges = DFL_EXCHANGES;
Paul Bakker1d29fb52012-09-28 13:28:45 +0000800 opt.min_version = DFL_MIN_VERSION;
801 opt.max_version = DFL_MAX_VERSION;
Manuel Pégourié-Gonnardbd47a582015-01-12 13:43:29 +0100802 opt.arc4 = DFL_ARC4;
Gilles Peskinebc70a182017-05-09 15:59:24 +0200803 opt.allow_sha1 = DFL_SHA1;
Paul Bakker91ebfb52012-11-23 14:04:08 +0100804 opt.auth_mode = DFL_AUTH_MODE;
Gilles Peskine724a7bb2025-02-12 21:50:53 +0100805 opt.set_hostname = DFL_SET_HOSTNAME;
Manuel Pégourié-Gonnard0df6b1f2013-07-16 13:39:57 +0200806 opt.mfl_code = DFL_MFL_CODE;
Manuel Pégourié-Gonnarde980a992013-07-19 11:08:52 +0200807 opt.trunc_hmac = DFL_TRUNC_HMAC;
Manuel Pégourié-Gonnardc82ee352015-01-07 16:35:25 +0100808 opt.recsplit = DFL_RECSPLIT;
Manuel Pégourié-Gonnard90966822015-06-11 17:02:29 +0200809 opt.dhmlen = DFL_DHMLEN;
Manuel Pégourié-Gonnardaaa1eab2013-07-30 13:43:43 +0200810 opt.reconnect = DFL_RECONNECT;
Manuel Pégourié-Gonnardc55a5b72014-02-20 22:50:56 +0100811 opt.reco_delay = DFL_RECO_DELAY;
Manuel Pégourié-Gonnarda7c37652019-05-20 12:46:26 +0200812 opt.reco_mode = DFL_RECO_MODE;
Manuel Pégourié-Gonnarddbd23072015-09-04 10:20:17 +0200813 opt.reconnect_hard = DFL_RECONNECT_HARD;
Manuel Pégourié-Gonnardaa0d4d12013-08-03 13:02:31 +0200814 opt.tickets = DFL_TICKETS;
Manuel Pégourié-Gonnard1bd22812014-04-05 14:34:07 +0200815 opt.alpn_string = DFL_ALPN_STRING;
Hanno Beckere6706e62017-05-15 16:05:15 +0100816 opt.curves = DFL_CURVES;
Manuel Pégourié-Gonnardd823bd02014-10-01 14:40:56 +0200817 opt.transport = DFL_TRANSPORT;
818 opt.hs_to_min = DFL_HS_TO_MIN;
819 opt.hs_to_max = DFL_HS_TO_MAX;
Manuel Pégourié-Gonnardb747c6c2018-08-12 13:28:53 +0200820 opt.dtls_mtu = DFL_DTLS_MTU;
Manuel Pégourié-Gonnard1cbd39d2014-10-20 13:34:59 +0200821 opt.fallback = DFL_FALLBACK;
Manuel Pégourié-Gonnard367381f2014-10-20 18:40:56 +0200822 opt.extended_ms = DFL_EXTENDED_MS;
Manuel Pégourié-Gonnard699cafa2014-10-27 13:57:03 +0100823 opt.etm = DFL_ETM;
Hanno Becker4d615912018-08-14 13:33:30 +0100824 opt.dgram_packing = DFL_DGRAM_PACKING;
Jarno Lamsa9831c8a2019-05-29 13:33:32 +0300825 opt.serialize = DFL_SERIALIZE;
Piotr Nowicki3de298f2020-04-16 14:35:19 +0200826 opt.context_file = DFL_CONTEXT_FILE;
Ron Eldorb7fd64c2019-05-12 11:03:32 +0300827 opt.eap_tls = DFL_EAP_TLS;
Philippe Antoineaa4d1522019-06-06 21:24:31 +0200828 opt.reproducible = DFL_REPRODUCIBLE;
Hanno Becker48f3a3d2019-08-29 06:31:22 +0100829 opt.nss_keylog = DFL_NSS_KEYLOG;
830 opt.nss_keylog_file = DFL_NSS_KEYLOG_FILE;
Manuel Pégourié-Gonnard56941fe2020-02-17 11:04:33 +0100831 opt.skip_close_notify = DFL_SKIP_CLOSE_NOTIFY;
gabor-mezei-arma9eecf12020-07-07 11:11:02 +0200832 opt.query_config_mode = DFL_QUERY_CONFIG_MODE;
Ron Eldor6ea64512018-07-02 10:08:07 +0300833 opt.use_srtp = DFL_USE_SRTP;
834 opt.force_srtp_profile = DFL_SRTP_FORCE_PROFILE;
835 opt.mki = DFL_SRTP_MKI;
Paul Bakker9caf2d22010-02-18 19:37:19 +0000836
Manuel Pégourié-Gonnardfc8ad272023-06-27 09:28:24 +0200837 p = q = NULL;
Manuel Pégourié-Gonnard797cfd82023-06-26 11:29:35 +0200838 if (argc < 1) {
Manuel Pégourié-Gonnard779cceb2023-06-26 11:28:00 +0200839usage:
Manuel Pégourié-Gonnardfc8ad272023-06-27 09:28:24 +0200840 if (p != NULL && q != NULL) {
841 printf("unrecognized value for '%s': '%s'\n", p, q);
842 } else if (p != NULL && q == NULL) {
843 printf("unrecognized param: '%s'\n", p);
844 }
845
846 mbedtls_printf("usage: ssl_client2 [param=value] [...]\n");
847 mbedtls_printf(" ssl_client2 help[_theme]\n");
848 mbedtls_printf("'help' lists acceptable 'param' and 'value'\n");
849 mbedtls_printf("'help_ciphersuites' lists available ciphersuites\n");
850 mbedtls_printf("\n");
851
Manuel Pégourié-Gonnard779cceb2023-06-26 11:28:00 +0200852 if (ret == 0) {
853 ret = 1;
854 }
Manuel Pégourié-Gonnard779cceb2023-06-26 11:28:00 +0200855 goto exit;
856 }
857
Gilles Peskine1b6c09a2023-01-11 14:52:35 +0100858 for (i = 1; i < argc; i++) {
Paul Bakker9caf2d22010-02-18 19:37:19 +0000859 p = argv[i];
Manuel Pégourié-Gonnardfc8ad272023-06-27 09:28:24 +0200860
861 if (strcmp(p, "help") == 0) {
862 mbedtls_printf(USAGE1);
863 mbedtls_printf(USAGE2);
864 mbedtls_printf(USAGE3);
865 mbedtls_printf(USAGE4);
866
867 ret = 0;
868 goto exit;
869 }
870 if (strcmp(p, "help_ciphersuites") == 0) {
871 mbedtls_printf(" acceptable ciphersuite names:\n");
872 for (list = mbedtls_ssl_list_ciphersuites();
873 *list != 0;
874 list++) {
875 mbedtls_printf(" %s\n", mbedtls_ssl_get_ciphersuite_name(*list));
876 }
877
878 ret = 0;
879 goto exit;
880 }
881
Gilles Peskine1b6c09a2023-01-11 14:52:35 +0100882 if ((q = strchr(p, '=')) == NULL) {
Manuel Pégourié-Gonnardfc8ad272023-06-27 09:28:24 +0200883 mbedtls_printf("param requires a value: '%s'\n", p);
884 p = NULL; // avoid "unrecnognized param" message
Paul Bakker9caf2d22010-02-18 19:37:19 +0000885 goto usage;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +0100886 }
Paul Bakker9caf2d22010-02-18 19:37:19 +0000887 *q++ = '\0';
888
Gilles Peskine1b6c09a2023-01-11 14:52:35 +0100889 if (strcmp(p, "server_name") == 0) {
Paul Bakker9caf2d22010-02-18 19:37:19 +0000890 opt.server_name = q;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +0100891 } else if (strcmp(p, "server_addr") == 0) {
Manuel Pégourié-Gonnard0d8780b2014-02-25 11:11:26 +0100892 opt.server_addr = q;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +0100893 } else if (strcmp(p, "server_port") == 0) {
Manuel Pégourié-Gonnardc0d74942015-06-23 12:30:57 +0200894 opt.server_port = q;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +0100895 } else if (strcmp(p, "dtls") == 0) {
896 int t = atoi(q);
897 if (t == 0) {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200898 opt.transport = MBEDTLS_SSL_TRANSPORT_STREAM;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +0100899 } else if (t == 1) {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200900 opt.transport = MBEDTLS_SSL_TRANSPORT_DATAGRAM;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +0100901 } else {
Manuel Pégourié-Gonnarde29fd4b2014-02-06 14:02:55 +0100902 goto usage;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +0100903 }
904 } else if (strcmp(p, "debug_level") == 0) {
905 opt.debug_level = atoi(q);
906 if (opt.debug_level < 0 || opt.debug_level > 65535) {
Paul Bakker9caf2d22010-02-18 19:37:19 +0000907 goto usage;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +0100908 }
909 } else if (strcmp(p, "build_version") == 0) {
910 if (strcmp(q, "1") == 0) {
911 mbedtls_printf("build version: %s (build %d)\n",
912 MBEDTLS_VERSION_STRING_FULL,
913 MBEDTLS_VERSION_NUMBER);
Yanray Wang4d4b0772022-11-10 14:37:20 +0800914 goto exit;
915 }
Gilles Peskine1b6c09a2023-01-11 14:52:35 +0100916 } else if (strcmp(p, "context_crt_cb") == 0) {
917 opt.context_crt_cb = atoi(q);
918 if (opt.context_crt_cb != 0 && opt.context_crt_cb != 1) {
Hanno Beckerbb425db2019-04-03 12:59:58 +0100919 goto usage;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +0100920 }
921 } else if (strcmp(p, "nbio") == 0) {
922 opt.nbio = atoi(q);
923 if (opt.nbio < 0 || opt.nbio > 2) {
Manuel Pégourié-Gonnard55753162014-02-26 13:47:08 +0100924 goto usage;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +0100925 }
926 } else if (strcmp(p, "event") == 0) {
927 opt.event = atoi(q);
928 if (opt.event < 0 || opt.event > 2) {
Hanno Becker16970d22017-10-10 15:56:37 +0100929 goto usage;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +0100930 }
931 } else if (strcmp(p, "read_timeout") == 0) {
932 opt.read_timeout = atoi(q);
933 } else if (strcmp(p, "max_resend") == 0) {
934 opt.max_resend = atoi(q);
935 if (opt.max_resend < 0) {
Manuel Pégourié-Gonnardf1e0df32014-10-02 14:02:32 +0200936 goto usage;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +0100937 }
938 } else if (strcmp(p, "request_page") == 0) {
Paul Bakker9caf2d22010-02-18 19:37:19 +0000939 opt.request_page = q;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +0100940 } else if (strcmp(p, "request_size") == 0) {
941 opt.request_size = atoi(q);
942 if (opt.request_size < 0 ||
943 opt.request_size > MAX_REQUEST_SIZE) {
Paul Bakker93c32b22014-04-25 13:40:05 +0200944 goto usage;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +0100945 }
946 } else if (strcmp(p, "ca_file") == 0) {
Paul Bakker5690efc2011-05-26 13:16:06 +0000947 opt.ca_file = q;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +0100948 } else if (strcmp(p, "ca_path") == 0) {
Paul Bakker8d914582012-06-04 12:46:42 +0000949 opt.ca_path = q;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +0100950 } else if (strcmp(p, "crt_file") == 0) {
Paul Bakker67968392010-07-18 08:28:20 +0000951 opt.crt_file = q;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +0100952 } else if (strcmp(p, "key_file") == 0) {
Paul Bakker67968392010-07-18 08:28:20 +0000953 opt.key_file = q;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +0100954 } else if (strcmp(p, "key_pwd") == 0) {
Hanno Becker2d3ac682020-08-17 09:42:37 +0100955 opt.key_pwd = q;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +0100956 }
Andrzej Kurek7829d8f2022-10-18 09:19:07 -0400957#if defined(MBEDTLS_USE_PSA_CRYPTO) && defined(MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED)
Gilles Peskine1b6c09a2023-01-11 14:52:35 +0100958 else if (strcmp(p, "key_opaque") == 0) {
959 opt.key_opaque = atoi(q);
960 }
Manuel Pégourié-Gonnardef68be42018-11-07 09:42:35 +0100961#endif
Hanno Beckera0e20d02019-05-15 14:03:01 +0100962#if defined(MBEDTLS_SSL_DTLS_CONNECTION_ID)
Gilles Peskine1b6c09a2023-01-11 14:52:35 +0100963 else if (strcmp(p, "cid") == 0) {
964 opt.cid_enabled = atoi(q);
965 if (opt.cid_enabled != 0 && opt.cid_enabled != 1) {
Hanno Becker90cb3592019-04-09 17:24:19 +0100966 goto usage;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +0100967 }
968 } else if (strcmp(p, "cid_renego") == 0) {
969 opt.cid_enabled_renego = atoi(q);
970 if (opt.cid_enabled_renego != 0 && opt.cid_enabled_renego != 1) {
Hanno Beckerb42ec0d2019-05-03 17:30:59 +0100971 goto usage;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +0100972 }
973 } else if (strcmp(p, "cid_val") == 0) {
Hanno Becker90cb3592019-04-09 17:24:19 +0100974 opt.cid_val = q;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +0100975 } else if (strcmp(p, "cid_val_renego") == 0) {
Hanno Beckerb42ec0d2019-05-03 17:30:59 +0100976 opt.cid_val_renego = q;
977 }
Hanno Beckera0e20d02019-05-15 14:03:01 +0100978#endif /* MBEDTLS_SSL_DTLS_CONNECTION_ID */
Gilles Peskine1b6c09a2023-01-11 14:52:35 +0100979 else if (strcmp(p, "psk") == 0) {
Paul Bakkerd4a56ec2013-04-16 18:05:29 +0200980 opt.psk = q;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +0100981 }
Hanno Beckere86964c2018-10-23 11:37:50 +0100982#if defined(MBEDTLS_USE_PSA_CRYPTO)
Gilles Peskine1b6c09a2023-01-11 14:52:35 +0100983 else if (strcmp(p, "psk_opaque") == 0) {
984 opt.psk_opaque = atoi(q);
985 }
Hanno Beckere86964c2018-10-23 11:37:50 +0100986#endif
Jarno Lamsa1b4a2ba2019-03-27 17:55:27 +0200987#if defined(MBEDTLS_X509_TRUSTED_CERTIFICATE_CALLBACK)
Gilles Peskine1b6c09a2023-01-11 14:52:35 +0100988 else if (strcmp(p, "ca_callback") == 0) {
989 opt.ca_callback = atoi(q);
990 }
Jarno Lamsa1b4a2ba2019-03-27 17:55:27 +0200991#endif
Gilles Peskine1b6c09a2023-01-11 14:52:35 +0100992 else if (strcmp(p, "psk_identity") == 0) {
Paul Bakkerd4a56ec2013-04-16 18:05:29 +0200993 opt.psk_identity = q;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +0100994 } else if (strcmp(p, "ecjpake_pw") == 0) {
Manuel Pégourié-Gonnard70905a72015-09-16 11:08:34 +0200995 opt.ecjpake_pw = q;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +0100996 } else if (strcmp(p, "ec_max_ops") == 0) {
997 opt.ec_max_ops = atoi(q);
998 } else if (strcmp(p, "force_ciphersuite") == 0) {
999 opt.force_ciphersuite[0] = mbedtls_ssl_get_ciphersuite_id(q);
Paul Bakker51936882011-02-20 16:05:58 +00001000
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001001 if (opt.force_ciphersuite[0] == 0) {
Paul Bakkerfab5c822012-02-06 16:45:10 +00001002 ret = 2;
Paul Bakker51936882011-02-20 16:05:58 +00001003 goto usage;
Paul Bakkerfab5c822012-02-06 16:45:10 +00001004 }
Paul Bakker51936882011-02-20 16:05:58 +00001005 opt.force_ciphersuite[1] = 0;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001006 } else if (strcmp(p, "renegotiation") == 0) {
1007 opt.renegotiation = (atoi(q)) ?
1008 MBEDTLS_SSL_RENEGOTIATION_ENABLED :
1009 MBEDTLS_SSL_RENEGOTIATION_DISABLED;
1010 } else if (strcmp(p, "allow_legacy") == 0) {
1011 switch (atoi(q)) {
Hanno Becker4cb1f4d2017-10-10 15:59:57 +01001012 case -1:
1013 opt.allow_legacy = MBEDTLS_SSL_LEGACY_BREAK_HANDSHAKE;
1014 break;
1015 case 0:
1016 opt.allow_legacy = MBEDTLS_SSL_LEGACY_NO_RENEGOTIATION;
1017 break;
1018 case 1:
1019 opt.allow_legacy = MBEDTLS_SSL_LEGACY_ALLOW_RENEGOTIATION;
1020 break;
Manuel Pégourié-Gonnard85d915b2014-11-03 20:10:36 +01001021 default: goto usage;
1022 }
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001023 } else if (strcmp(p, "renegotiate") == 0) {
1024 opt.renegotiate = atoi(q);
1025 if (opt.renegotiate < 0 || opt.renegotiate > 1) {
Manuel Pégourié-Gonnard780d6712014-02-20 17:19:59 +01001026 goto usage;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001027 }
1028 } else if (strcmp(p, "exchanges") == 0) {
1029 opt.exchanges = atoi(q);
1030 if (opt.exchanges < 1) {
Manuel Pégourié-Gonnarda8c0a0d2014-08-15 12:07:38 +02001031 goto usage;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001032 }
1033 } else if (strcmp(p, "reconnect") == 0) {
1034 opt.reconnect = atoi(q);
1035 if (opt.reconnect < 0 || opt.reconnect > 2) {
Manuel Pégourié-Gonnardaaa1eab2013-07-30 13:43:43 +02001036 goto usage;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001037 }
1038 } else if (strcmp(p, "reco_delay") == 0) {
1039 opt.reco_delay = atoi(q);
1040 if (opt.reco_delay < 0) {
Manuel Pégourié-Gonnardc55a5b72014-02-20 22:50:56 +01001041 goto usage;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001042 }
1043 } else if (strcmp(p, "reco_mode") == 0) {
1044 opt.reco_mode = atoi(q);
1045 if (opt.reco_mode < 0) {
Manuel Pégourié-Gonnarda7c37652019-05-20 12:46:26 +02001046 goto usage;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001047 }
1048 } else if (strcmp(p, "reconnect_hard") == 0) {
1049 opt.reconnect_hard = atoi(q);
1050 if (opt.reconnect_hard < 0 || opt.reconnect_hard > 1) {
Manuel Pégourié-Gonnarddbd23072015-09-04 10:20:17 +02001051 goto usage;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001052 }
1053 } else if (strcmp(p, "tickets") == 0) {
1054 opt.tickets = atoi(q);
1055 if (opt.tickets < 0 || opt.tickets > 2) {
Manuel Pégourié-Gonnardaa0d4d12013-08-03 13:02:31 +02001056 goto usage;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001057 }
1058 } else if (strcmp(p, "alpn") == 0) {
Manuel Pégourié-Gonnard1bd22812014-04-05 14:34:07 +02001059 opt.alpn_string = q;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001060 } else if (strcmp(p, "fallback") == 0) {
1061 switch (atoi(q)) {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001062 case 0: opt.fallback = MBEDTLS_SSL_IS_NOT_FALLBACK; break;
1063 case 1: opt.fallback = MBEDTLS_SSL_IS_FALLBACK; break;
Manuel Pégourié-Gonnard1cbd39d2014-10-20 13:34:59 +02001064 default: goto usage;
1065 }
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001066 } else if (strcmp(p, "extended_ms") == 0) {
1067 switch (atoi(q)) {
Hanno Becker4cb1f4d2017-10-10 15:59:57 +01001068 case 0:
1069 opt.extended_ms = MBEDTLS_SSL_EXTENDED_MS_DISABLED;
1070 break;
1071 case 1:
1072 opt.extended_ms = MBEDTLS_SSL_EXTENDED_MS_ENABLED;
1073 break;
Manuel Pégourié-Gonnard367381f2014-10-20 18:40:56 +02001074 default: goto usage;
1075 }
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001076 } else if (strcmp(p, "curves") == 0) {
Hanno Beckere6706e62017-05-15 16:05:15 +01001077 opt.curves = q;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001078 } else if (strcmp(p, "etm") == 0) {
1079 switch (atoi(q)) {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001080 case 0: opt.etm = MBEDTLS_SSL_ETM_DISABLED; break;
1081 case 1: opt.etm = MBEDTLS_SSL_ETM_ENABLED; break;
Manuel Pégourié-Gonnard699cafa2014-10-27 13:57:03 +01001082 default: goto usage;
1083 }
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001084 } else if (strcmp(p, "min_version") == 0) {
1085 if (strcmp(q, "ssl3") == 0) {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001086 opt.min_version = MBEDTLS_SSL_MINOR_VERSION_0;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001087 } else if (strcmp(q, "tls1") == 0) {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001088 opt.min_version = MBEDTLS_SSL_MINOR_VERSION_1;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001089 } else if (strcmp(q, "tls1_1") == 0 ||
1090 strcmp(q, "dtls1") == 0) {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001091 opt.min_version = MBEDTLS_SSL_MINOR_VERSION_2;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001092 } else if (strcmp(q, "tls12") == 0 ||
1093 strcmp(q, "dtls12") == 0) {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001094 opt.min_version = MBEDTLS_SSL_MINOR_VERSION_3;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001095 } else {
Paul Bakker1d29fb52012-09-28 13:28:45 +00001096 goto usage;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001097 }
1098 } else if (strcmp(p, "max_version") == 0) {
1099 if (strcmp(q, "ssl3") == 0) {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001100 opt.max_version = MBEDTLS_SSL_MINOR_VERSION_0;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001101 } else if (strcmp(q, "tls1") == 0) {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001102 opt.max_version = MBEDTLS_SSL_MINOR_VERSION_1;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001103 } else if (strcmp(q, "tls1_1") == 0 ||
1104 strcmp(q, "dtls1") == 0) {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001105 opt.max_version = MBEDTLS_SSL_MINOR_VERSION_2;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001106 } else if (strcmp(q, "tls12") == 0 ||
1107 strcmp(q, "dtls12") == 0) {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001108 opt.max_version = MBEDTLS_SSL_MINOR_VERSION_3;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001109 } else {
Paul Bakker1d29fb52012-09-28 13:28:45 +00001110 goto usage;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001111 }
1112 } else if (strcmp(p, "arc4") == 0) {
1113 switch (atoi(q)) {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001114 case 0: opt.arc4 = MBEDTLS_SSL_ARC4_DISABLED; break;
1115 case 1: opt.arc4 = MBEDTLS_SSL_ARC4_ENABLED; break;
Manuel Pégourié-Gonnardbd47a582015-01-12 13:43:29 +01001116 default: goto usage;
1117 }
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001118 } else if (strcmp(p, "allow_sha1") == 0) {
1119 switch (atoi(q)) {
Gilles Peskinebc70a182017-05-09 15:59:24 +02001120 case 0: opt.allow_sha1 = 0; break;
1121 case 1: opt.allow_sha1 = 1; break;
1122 default: goto usage;
1123 }
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001124 } else if (strcmp(p, "force_version") == 0) {
1125 if (strcmp(q, "ssl3") == 0) {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001126 opt.min_version = MBEDTLS_SSL_MINOR_VERSION_0;
1127 opt.max_version = MBEDTLS_SSL_MINOR_VERSION_0;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001128 } else if (strcmp(q, "tls1") == 0) {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001129 opt.min_version = MBEDTLS_SSL_MINOR_VERSION_1;
1130 opt.max_version = MBEDTLS_SSL_MINOR_VERSION_1;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001131 } else if (strcmp(q, "tls1_1") == 0) {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001132 opt.min_version = MBEDTLS_SSL_MINOR_VERSION_2;
1133 opt.max_version = MBEDTLS_SSL_MINOR_VERSION_2;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001134 } else if (strcmp(q, "tls12") == 0) {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001135 opt.min_version = MBEDTLS_SSL_MINOR_VERSION_3;
1136 opt.max_version = MBEDTLS_SSL_MINOR_VERSION_3;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001137 } else if (strcmp(q, "dtls1") == 0) {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001138 opt.min_version = MBEDTLS_SSL_MINOR_VERSION_2;
1139 opt.max_version = MBEDTLS_SSL_MINOR_VERSION_2;
1140 opt.transport = MBEDTLS_SSL_TRANSPORT_DATAGRAM;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001141 } else if (strcmp(q, "dtls12") == 0) {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001142 opt.min_version = MBEDTLS_SSL_MINOR_VERSION_3;
1143 opt.max_version = MBEDTLS_SSL_MINOR_VERSION_3;
1144 opt.transport = MBEDTLS_SSL_TRANSPORT_DATAGRAM;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001145 } else {
Paul Bakker1d29fb52012-09-28 13:28:45 +00001146 goto usage;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001147 }
1148 } else if (strcmp(p, "auth_mode") == 0) {
1149 if (strcmp(q, "none") == 0) {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001150 opt.auth_mode = MBEDTLS_SSL_VERIFY_NONE;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001151 } else if (strcmp(q, "optional") == 0) {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001152 opt.auth_mode = MBEDTLS_SSL_VERIFY_OPTIONAL;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001153 } else if (strcmp(q, "required") == 0) {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001154 opt.auth_mode = MBEDTLS_SSL_VERIFY_REQUIRED;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001155 } else {
Paul Bakker91ebfb52012-11-23 14:04:08 +01001156 goto usage;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001157 }
Gilles Peskine724a7bb2025-02-12 21:50:53 +01001158 } else if (strcmp(p, "set_hostname") == 0) {
1159 if (strcmp(q, "no") == 0) {
1160 opt.set_hostname = 0;
1161 } else if (strcmp(q, "server_name") == 0) {
1162 opt.set_hostname = 1;
1163 } else if (strcmp(q, "NULL") == 0) {
1164 opt.set_hostname = -1;
1165 } else {
1166 goto usage;
1167 }
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001168 } else if (strcmp(p, "max_frag_len") == 0) {
1169 if (strcmp(q, "512") == 0) {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001170 opt.mfl_code = MBEDTLS_SSL_MAX_FRAG_LEN_512;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001171 } else if (strcmp(q, "1024") == 0) {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001172 opt.mfl_code = MBEDTLS_SSL_MAX_FRAG_LEN_1024;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001173 } else if (strcmp(q, "2048") == 0) {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001174 opt.mfl_code = MBEDTLS_SSL_MAX_FRAG_LEN_2048;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001175 } else if (strcmp(q, "4096") == 0) {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001176 opt.mfl_code = MBEDTLS_SSL_MAX_FRAG_LEN_4096;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001177 } else {
Manuel Pégourié-Gonnard0df6b1f2013-07-16 13:39:57 +02001178 goto usage;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001179 }
1180 } else if (strcmp(p, "trunc_hmac") == 0) {
1181 switch (atoi(q)) {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001182 case 0: opt.trunc_hmac = MBEDTLS_SSL_TRUNC_HMAC_DISABLED; break;
1183 case 1: opt.trunc_hmac = MBEDTLS_SSL_TRUNC_HMAC_ENABLED; break;
Manuel Pégourié-Gonnard265fe992015-01-09 12:43:35 +01001184 default: goto usage;
1185 }
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001186 } else if (strcmp(p, "hs_timeout") == 0) {
1187 if ((p = strchr(q, '-')) == NULL) {
Hanno Becker4d615912018-08-14 13:33:30 +01001188 goto usage;
1189 }
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001190 *p++ = '\0';
1191 opt.hs_to_min = atoi(q);
1192 opt.hs_to_max = atoi(p);
1193 if (opt.hs_to_min == 0 || opt.hs_to_max < opt.hs_to_min) {
Manuel Pégourié-Gonnardc82ee352015-01-07 16:35:25 +01001194 goto usage;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001195 }
1196 } else if (strcmp(p, "mtu") == 0) {
1197 opt.dtls_mtu = atoi(q);
1198 if (opt.dtls_mtu < 0) {
Manuel Pégourié-Gonnard90966822015-06-11 17:02:29 +02001199 goto usage;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001200 }
1201 } else if (strcmp(p, "dgram_packing") == 0) {
1202 opt.dgram_packing = atoi(q);
1203 if (opt.dgram_packing != 0 &&
1204 opt.dgram_packing != 1) {
1205 goto usage;
1206 }
1207 } else if (strcmp(p, "recsplit") == 0) {
1208 opt.recsplit = atoi(q);
1209 if (opt.recsplit < 0 || opt.recsplit > 1) {
1210 goto usage;
1211 }
1212 } else if (strcmp(p, "dhmlen") == 0) {
1213 opt.dhmlen = atoi(q);
1214 if (opt.dhmlen < 0) {
1215 goto usage;
1216 }
1217 } else if (strcmp(p, "query_config") == 0) {
gabor-mezei-arma9eecf12020-07-07 11:11:02 +02001218 opt.query_config_mode = 1;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001219 query_config_ret = query_config(q);
gabor-mezei-arm78595852020-04-28 10:40:30 +02001220 goto exit;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001221 } else if (strcmp(p, "serialize") == 0) {
1222 opt.serialize = atoi(q);
1223 if (opt.serialize < 0 || opt.serialize > 2) {
Jarno Lamsa9831c8a2019-05-29 13:33:32 +03001224 goto usage;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001225 }
1226 } else if (strcmp(p, "context_file") == 0) {
Piotr Nowicki3de298f2020-04-16 14:35:19 +02001227 opt.context_file = q;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001228 } else if (strcmp(p, "eap_tls") == 0) {
1229 opt.eap_tls = atoi(q);
1230 if (opt.eap_tls < 0 || opt.eap_tls > 1) {
Ron Eldorb7fd64c2019-05-12 11:03:32 +03001231 goto usage;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001232 }
1233 } else if (strcmp(p, "reproducible") == 0) {
Philippe Antoineaa4d1522019-06-06 21:24:31 +02001234 opt.reproducible = 1;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001235 } else if (strcmp(p, "nss_keylog") == 0) {
1236 opt.nss_keylog = atoi(q);
1237 if (opt.nss_keylog < 0 || opt.nss_keylog > 1) {
Hanno Becker48f3a3d2019-08-29 06:31:22 +01001238 goto usage;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001239 }
1240 } else if (strcmp(p, "nss_keylog_file") == 0) {
Hanno Becker48f3a3d2019-08-29 06:31:22 +01001241 opt.nss_keylog_file = q;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001242 } else if (strcmp(p, "skip_close_notify") == 0) {
1243 opt.skip_close_notify = atoi(q);
1244 if (opt.skip_close_notify < 0 || opt.skip_close_notify > 1) {
Manuel Pégourié-Gonnard56941fe2020-02-17 11:04:33 +01001245 goto usage;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001246 }
1247 } else if (strcmp(p, "use_srtp") == 0) {
1248 opt.use_srtp = atoi(q);
1249 } else if (strcmp(p, "srtp_force_profile") == 0) {
1250 opt.force_srtp_profile = atoi(q);
1251 } else if (strcmp(p, "mki") == 0) {
Ron Eldor6ea64512018-07-02 10:08:07 +03001252 opt.mki = q;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001253 } else {
Manuel Pégourié-Gonnardfc8ad272023-06-27 09:28:24 +02001254 /* This signals that the problem is with p not q */
1255 q = NULL;
Paul Bakker9caf2d22010-02-18 19:37:19 +00001256 goto usage;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001257 }
Paul Bakker9caf2d22010-02-18 19:37:19 +00001258 }
Manuel Pégourié-Gonnardfc8ad272023-06-27 09:28:24 +02001259 /* This signals that any further errors are not with a single option */
1260 p = q = NULL;
Paul Bakker5121ce52009-01-03 21:22:43 +00001261
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001262 if (opt.nss_keylog != 0 && opt.eap_tls != 0) {
1263 mbedtls_printf("Error: eap_tls and nss_keylog options cannot be used together.\n");
Hanno Beckerbc5308c2019-09-09 11:38:51 +01001264 goto usage;
1265 }
1266
Hanno Becker16970d22017-10-10 15:56:37 +01001267 /* Event-driven IO is incompatible with the above custom
1268 * receive and send functions, as the polling builds on
1269 * refers to the underlying net_context. */
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001270 if (opt.event == 1 && opt.nbio != 1) {
1271 mbedtls_printf("Warning: event-driven IO mandates nbio=1 - overwrite\n");
Hanno Becker16970d22017-10-10 15:56:37 +01001272 opt.nbio = 1;
1273 }
1274
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001275#if defined(MBEDTLS_DEBUG_C)
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001276 mbedtls_debug_set_threshold(opt.debug_level);
Paul Bakkerc73079a2014-04-25 16:34:30 +02001277#endif
1278
Gilles Peskineeccd8882020-03-10 12:19:08 +01001279#if defined(MBEDTLS_KEY_EXCHANGE_SOME_PSK_ENABLED)
Paul Bakker5121ce52009-01-03 21:22:43 +00001280 /*
Paul Bakkerd4a56ec2013-04-16 18:05:29 +02001281 * Unhexify the pre-shared key if any is given
1282 */
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001283 if (strlen(opt.psk)) {
1284 if (mbedtls_test_unhexify(psk, sizeof(psk),
1285 opt.psk, &psk_len) != 0) {
1286 mbedtls_printf("pre-shared key not valid\n");
Hanno Becker1f583ee2019-04-09 17:12:56 +01001287 goto exit;
Paul Bakkerd4a56ec2013-04-16 18:05:29 +02001288 }
1289 }
Gilles Peskineeccd8882020-03-10 12:19:08 +01001290#endif /* MBEDTLS_KEY_EXCHANGE_SOME_PSK_ENABLED */
Paul Bakkerd4a56ec2013-04-16 18:05:29 +02001291
Hanno Beckere86964c2018-10-23 11:37:50 +01001292#if defined(MBEDTLS_USE_PSA_CRYPTO)
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001293 if (opt.psk_opaque != 0) {
1294 if (opt.psk == NULL) {
1295 mbedtls_printf("psk_opaque set but no psk to be imported specified.\n");
Hanno Beckere86964c2018-10-23 11:37:50 +01001296 ret = 2;
1297 goto usage;
1298 }
1299
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001300 if (opt.force_ciphersuite[0] <= 0) {
1301 mbedtls_printf(
1302 "opaque PSKs are only supported in conjunction with forcing TLS 1.2 and a PSK-only ciphersuite through the 'force_ciphersuite' option.\n");
Hanno Beckere86964c2018-10-23 11:37:50 +01001303 ret = 2;
1304 goto usage;
1305 }
1306 }
1307#endif /* MBEDTLS_USE_PSA_CRYPTO */
1308
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001309 if (opt.force_ciphersuite[0] > 0) {
Hanno Beckere86964c2018-10-23 11:37:50 +01001310 const mbedtls_ssl_ciphersuite_t *ciphersuite_info;
1311 ciphersuite_info =
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001312 mbedtls_ssl_ciphersuite_from_id(opt.force_ciphersuite[0]);
Hanno Beckere86964c2018-10-23 11:37:50 +01001313
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001314 if (opt.max_version != -1 &&
1315 ciphersuite_info->min_minor_ver > opt.max_version) {
1316 mbedtls_printf("forced ciphersuite not allowed with this protocol version\n");
Hanno Beckere86964c2018-10-23 11:37:50 +01001317 ret = 2;
1318 goto usage;
1319 }
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001320 if (opt.min_version != -1 &&
1321 ciphersuite_info->max_minor_ver < opt.min_version) {
1322 mbedtls_printf("forced ciphersuite not allowed with this protocol version\n");
Hanno Beckere86964c2018-10-23 11:37:50 +01001323 ret = 2;
1324 goto usage;
1325 }
1326
1327 /* If the server selects a version that's not supported by
1328 * this suite, then there will be no common ciphersuite... */
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001329 if (opt.max_version == -1 ||
1330 opt.max_version > ciphersuite_info->max_minor_ver) {
Hanno Beckere86964c2018-10-23 11:37:50 +01001331 opt.max_version = ciphersuite_info->max_minor_ver;
1332 }
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001333 if (opt.min_version < ciphersuite_info->min_minor_ver) {
Hanno Beckere86964c2018-10-23 11:37:50 +01001334 opt.min_version = ciphersuite_info->min_minor_ver;
1335 /* DTLS starts with TLS 1.1 */
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001336 if (opt.transport == MBEDTLS_SSL_TRANSPORT_DATAGRAM &&
1337 opt.min_version < MBEDTLS_SSL_MINOR_VERSION_2) {
Hanno Beckere86964c2018-10-23 11:37:50 +01001338 opt.min_version = MBEDTLS_SSL_MINOR_VERSION_2;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001339 }
Hanno Beckere86964c2018-10-23 11:37:50 +01001340 }
1341
1342 /* Enable RC4 if needed and not explicitly disabled */
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001343 if (ciphersuite_info->cipher == MBEDTLS_CIPHER_ARC4_128) {
1344 if (opt.arc4 == MBEDTLS_SSL_ARC4_DISABLED) {
1345 mbedtls_printf("forced RC4 ciphersuite with RC4 disabled\n");
Hanno Beckere86964c2018-10-23 11:37:50 +01001346 ret = 2;
1347 goto usage;
1348 }
1349
1350 opt.arc4 = MBEDTLS_SSL_ARC4_ENABLED;
1351 }
1352
1353#if defined(MBEDTLS_USE_PSA_CRYPTO)
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001354#if defined(MBEDTLS_KEY_EXCHANGE_SOME_PSK_ENABLED)
1355 if (opt.psk_opaque != 0) {
Hanno Beckere86964c2018-10-23 11:37:50 +01001356 /* Determine KDF algorithm the opaque PSK will be used in. */
1357#if defined(MBEDTLS_SHA512_C)
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001358 if (ciphersuite_info->mac == MBEDTLS_MD_SHA384) {
Hanno Beckere86964c2018-10-23 11:37:50 +01001359 alg = PSA_ALG_TLS12_PSK_TO_MS(PSA_ALG_SHA_384);
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001360 } else
Hanno Beckere86964c2018-10-23 11:37:50 +01001361#endif /* MBEDTLS_SHA512_C */
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001362 alg = PSA_ALG_TLS12_PSK_TO_MS(PSA_ALG_SHA_256);
Hanno Beckere86964c2018-10-23 11:37:50 +01001363 }
Andrzej Kureke2462ba2022-01-17 15:29:08 +01001364#endif /* MBEDTLS_KEY_EXCHANGE_SOME_PSK_ENABLED */
Hanno Beckere86964c2018-10-23 11:37:50 +01001365#endif /* MBEDTLS_USE_PSA_CRYPTO */
1366 }
1367
Hanno Beckera0e20d02019-05-15 14:03:01 +01001368#if defined(MBEDTLS_SSL_DTLS_CONNECTION_ID)
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001369 if (mbedtls_test_unhexify(cid, sizeof(cid),
1370 opt.cid_val, &cid_len) != 0) {
1371 mbedtls_printf("CID not valid\n");
Hanno Beckerb42ec0d2019-05-03 17:30:59 +01001372 goto exit;
1373 }
1374
1375 /* Keep CID settings for renegotiation unless
1376 * specified otherwise. */
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001377 if (opt.cid_enabled_renego == DFL_CID_ENABLED_RENEGO) {
Hanno Beckerb42ec0d2019-05-03 17:30:59 +01001378 opt.cid_enabled_renego = opt.cid_enabled;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001379 }
1380 if (opt.cid_val_renego == DFL_CID_VALUE_RENEGO) {
Hanno Beckerb42ec0d2019-05-03 17:30:59 +01001381 opt.cid_val_renego = opt.cid_val;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001382 }
Hanno Beckerb42ec0d2019-05-03 17:30:59 +01001383
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001384 if (mbedtls_test_unhexify(cid_renego, sizeof(cid_renego),
1385 opt.cid_val_renego, &cid_renego_len) != 0) {
1386 mbedtls_printf("CID not valid\n");
Hanno Beckerb42ec0d2019-05-03 17:30:59 +01001387 goto exit;
1388 }
Hanno Beckera0e20d02019-05-15 14:03:01 +01001389#endif /* MBEDTLS_SSL_DTLS_CONNECTION_ID */
Hanno Becker90cb3592019-04-09 17:24:19 +01001390
Hanno Beckere6706e62017-05-15 16:05:15 +01001391#if defined(MBEDTLS_ECP_C)
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001392 if (opt.curves != NULL) {
Hanno Beckere6706e62017-05-15 16:05:15 +01001393 p = (char *) opt.curves;
1394 i = 0;
1395
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001396 if (strcmp(p, "none") == 0) {
Hanno Beckere6706e62017-05-15 16:05:15 +01001397 curve_list[0] = MBEDTLS_ECP_DP_NONE;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001398 } else if (strcmp(p, "default") != 0) {
Hanno Beckere6706e62017-05-15 16:05:15 +01001399 /* Leave room for a final NULL in curve list */
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001400 while (i < CURVE_LIST_SIZE - 1 && *p != '\0') {
Hanno Beckere6706e62017-05-15 16:05:15 +01001401 q = p;
1402
1403 /* Terminate the current string */
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001404 while (*p != ',' && *p != '\0') {
Hanno Beckere6706e62017-05-15 16:05:15 +01001405 p++;
Hanno Beckere6706e62017-05-15 16:05:15 +01001406 }
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001407 if (*p == ',') {
1408 *p++ = '\0';
1409 }
1410
1411 if ((curve_cur = mbedtls_ecp_curve_info_from_name(q)) != NULL) {
1412 curve_list[i++] = curve_cur->grp_id;
1413 } else {
1414 mbedtls_printf("unknown curve %s\n", q);
1415 mbedtls_printf("supported curves: ");
1416 for (curve_cur = mbedtls_ecp_curve_list();
Hanno Beckere6706e62017-05-15 16:05:15 +01001417 curve_cur->grp_id != MBEDTLS_ECP_DP_NONE;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001418 curve_cur++) {
1419 mbedtls_printf("%s ", curve_cur->name);
Hanno Beckere6706e62017-05-15 16:05:15 +01001420 }
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001421 mbedtls_printf("\n");
Hanno Beckere6706e62017-05-15 16:05:15 +01001422 goto exit;
1423 }
1424 }
1425
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001426 mbedtls_printf("Number of curves: %d\n", i);
Hanno Beckere6706e62017-05-15 16:05:15 +01001427
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001428 if (i == CURVE_LIST_SIZE - 1 && *p != '\0') {
1429 mbedtls_printf("curves list too long, maximum %d",
1430 CURVE_LIST_SIZE - 1);
Hanno Beckere6706e62017-05-15 16:05:15 +01001431 goto exit;
1432 }
1433
1434 curve_list[i] = MBEDTLS_ECP_DP_NONE;
1435 }
1436 }
1437#endif /* MBEDTLS_ECP_C */
1438
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001439#if defined(MBEDTLS_SSL_ALPN)
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001440 if (opt.alpn_string != NULL) {
Manuel Pégourié-Gonnard1bd22812014-04-05 14:34:07 +02001441 p = (char *) opt.alpn_string;
1442 i = 0;
1443
1444 /* Leave room for a final NULL in alpn_list */
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001445 while (i < ALPN_LIST_SIZE - 1 && *p != '\0') {
Manuel Pégourié-Gonnard1bd22812014-04-05 14:34:07 +02001446 alpn_list[i++] = p;
1447
1448 /* Terminate the current string and move on to next one */
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001449 while (*p != ',' && *p != '\0') {
Manuel Pégourié-Gonnard1bd22812014-04-05 14:34:07 +02001450 p++;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001451 }
1452 if (*p == ',') {
Manuel Pégourié-Gonnard1bd22812014-04-05 14:34:07 +02001453 *p++ = '\0';
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001454 }
Manuel Pégourié-Gonnard1bd22812014-04-05 14:34:07 +02001455 }
1456 }
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001457#endif /* MBEDTLS_SSL_ALPN */
Manuel Pégourié-Gonnard1bd22812014-04-05 14:34:07 +02001458
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001459 mbedtls_printf("build version: %s (build %d)\n",
1460 MBEDTLS_VERSION_STRING_FULL, MBEDTLS_VERSION_NUMBER);
Yanray Wang4d4b0772022-11-10 14:37:20 +08001461
Paul Bakkerd4a56ec2013-04-16 18:05:29 +02001462 /*
Paul Bakker5121ce52009-01-03 21:22:43 +00001463 * 0. Initialize the RNG and the session data
1464 */
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001465 mbedtls_printf("\n . Seeding the random number generator...");
1466 fflush(stdout);
Paul Bakker508ad5a2011-12-04 17:09:26 +00001467
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001468 ret = rng_seed(&rng, opt.reproducible, pers);
1469 if (ret != 0) {
Gilles Peskinedaa94c42021-01-13 18:38:27 +01001470 goto exit;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001471 }
1472 mbedtls_printf(" ok\n");
Paul Bakker5121ce52009-01-03 21:22:43 +00001473
Andrzej Kurek7829d8f2022-10-18 09:19:07 -04001474#if defined(MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED)
Paul Bakker5121ce52009-01-03 21:22:43 +00001475 /*
1476 * 1.1. Load the trusted CA
1477 */
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001478 mbedtls_printf(" . Loading the CA root certificate ...");
1479 fflush(stdout);
Paul Bakker5121ce52009-01-03 21:22:43 +00001480
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001481 if (strcmp(opt.ca_path, "none") == 0 ||
1482 strcmp(opt.ca_file, "none") == 0) {
Hanno Becker623e7b42019-03-05 16:02:15 +00001483 ret = 0;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001484 } else
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001485#if defined(MBEDTLS_FS_IO)
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001486 if (strlen(opt.ca_path)) {
1487 ret = mbedtls_x509_crt_parse_path(&cacert, opt.ca_path);
1488 } else if (strlen(opt.ca_file)) {
1489 ret = mbedtls_x509_crt_parse_file(&cacert, opt.ca_file);
1490 } else
Paul Bakker5690efc2011-05-26 13:16:06 +00001491#endif
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001492#if defined(MBEDTLS_CERTS_C)
Hanno Becker2900b142019-02-01 08:15:06 +00001493 {
1494#if defined(MBEDTLS_PEM_PARSE_C)
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001495 for (i = 0; mbedtls_test_cas[i] != NULL; i++) {
1496 ret = mbedtls_x509_crt_parse(&cacert,
1497 (const unsigned char *) mbedtls_test_cas[i],
1498 mbedtls_test_cas_len[i]);
1499 if (ret != 0) {
Manuel Pégourié-Gonnard2f165062015-03-27 10:20:26 +01001500 break;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001501 }
Manuel Pégourié-Gonnard2f165062015-03-27 10:20:26 +01001502 }
Hanno Becker2900b142019-02-01 08:15:06 +00001503#endif /* MBEDTLS_PEM_PARSE_C */
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001504 if (ret == 0) {
1505 for (i = 0; mbedtls_test_cas_der[i] != NULL; i++) {
1506 ret = mbedtls_x509_crt_parse_der(&cacert,
1507 (const unsigned char *) mbedtls_test_cas_der[i],
1508 mbedtls_test_cas_der_len[i]);
1509 if (ret != 0) {
David Horstmann9e722ad2022-10-24 13:11:38 +01001510 break;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001511 }
David Horstmann9e722ad2022-10-24 13:11:38 +01001512 }
Hanno Becker2900b142019-02-01 08:15:06 +00001513 }
1514 }
Paul Bakker5690efc2011-05-26 13:16:06 +00001515#else
1516 {
1517 ret = 1;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001518 mbedtls_printf("MBEDTLS_CERTS_C not defined.");
Paul Bakker5690efc2011-05-26 13:16:06 +00001519 }
Hanno Becker2900b142019-02-01 08:15:06 +00001520#endif /* MBEDTLS_CERTS_C */
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001521 if (ret < 0) {
1522 mbedtls_printf(" failed\n ! mbedtls_x509_crt_parse returned -0x%x\n\n",
1523 (unsigned int) -ret);
Paul Bakker5121ce52009-01-03 21:22:43 +00001524 goto exit;
1525 }
1526
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001527 mbedtls_printf(" ok (%d skipped)\n", ret);
Paul Bakker5121ce52009-01-03 21:22:43 +00001528
1529 /*
1530 * 1.2. Load own certificate and private key
1531 *
1532 * (can be skipped if client authentication is not required)
1533 */
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001534 mbedtls_printf(" . Loading the client cert. and key...");
1535 fflush(stdout);
Paul Bakker5121ce52009-01-03 21:22:43 +00001536
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001537 if (strcmp(opt.crt_file, "none") == 0) {
Hanno Becker623e7b42019-03-05 16:02:15 +00001538 ret = 0;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001539 } else
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001540#if defined(MBEDTLS_FS_IO)
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001541 if (strlen(opt.crt_file)) {
1542 ret = mbedtls_x509_crt_parse_file(&clicert, opt.crt_file);
1543 } else
Paul Bakker5690efc2011-05-26 13:16:06 +00001544#endif
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001545#if defined(MBEDTLS_CERTS_C)
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001546 { ret = mbedtls_x509_crt_parse(&clicert,
1547 (const unsigned char *) mbedtls_test_cli_crt,
1548 mbedtls_test_cli_crt_len); }
Paul Bakker5690efc2011-05-26 13:16:06 +00001549#else
1550 {
1551 ret = 1;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001552 mbedtls_printf("MBEDTLS_CERTS_C not defined.");
Paul Bakker5690efc2011-05-26 13:16:06 +00001553 }
1554#endif
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001555 if (ret != 0) {
1556 mbedtls_printf(" failed\n ! mbedtls_x509_crt_parse returned -0x%x\n\n",
1557 (unsigned int) -ret);
Paul Bakker5121ce52009-01-03 21:22:43 +00001558 goto exit;
1559 }
1560
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001561 if (strcmp(opt.key_file, "none") == 0) {
Hanno Becker623e7b42019-03-05 16:02:15 +00001562 ret = 0;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001563 } else
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001564#if defined(MBEDTLS_FS_IO)
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001565 if (strlen(opt.key_file)) {
1566 ret = mbedtls_pk_parse_keyfile(&pkey, opt.key_file, opt.key_pwd);
1567 } else
Paul Bakker5690efc2011-05-26 13:16:06 +00001568#endif
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001569#if defined(MBEDTLS_CERTS_C)
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001570 { ret = mbedtls_pk_parse_key(&pkey,
1571 (const unsigned char *) mbedtls_test_cli_key,
1572 mbedtls_test_cli_key_len, NULL, 0); }
Paul Bakker5690efc2011-05-26 13:16:06 +00001573#else
1574 {
1575 ret = 1;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001576 mbedtls_printf("MBEDTLS_CERTS_C not defined.");
Paul Bakker5690efc2011-05-26 13:16:06 +00001577 }
1578#endif
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001579 if (ret != 0) {
1580 mbedtls_printf(" failed\n ! mbedtls_pk_parse_key returned -0x%x\n\n",
1581 (unsigned int) -ret);
Paul Bakker5121ce52009-01-03 21:22:43 +00001582 goto exit;
1583 }
1584
Manuel Pégourié-Gonnardef68be42018-11-07 09:42:35 +01001585#if defined(MBEDTLS_USE_PSA_CRYPTO)
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001586 if (opt.key_opaque != 0) {
1587 if ((ret = mbedtls_pk_wrap_as_opaque(&pkey, &key_slot,
1588 PSA_ALG_ANY_HASH)) != 0) {
1589 mbedtls_printf(" failed\n ! "
1590 "mbedtls_pk_wrap_as_opaque returned -0x%x\n\n", (unsigned int) -ret);
Manuel Pégourié-Gonnardcfdf8f42018-11-08 09:52:25 +01001591 goto exit;
1592 }
Manuel Pégourié-Gonnardef68be42018-11-07 09:42:35 +01001593 }
1594#endif /* MBEDTLS_USE_PSA_CRYPTO */
1595
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001596 mbedtls_printf(" ok (key type: %s)\n", mbedtls_pk_get_name(&pkey));
Andrzej Kurek7829d8f2022-10-18 09:19:07 -04001597#endif /* MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED */
Paul Bakker5121ce52009-01-03 21:22:43 +00001598
1599 /*
1600 * 2. Start the connection
1601 */
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001602 if (opt.server_addr == NULL) {
Manuel Pégourié-Gonnard0d8780b2014-02-25 11:11:26 +01001603 opt.server_addr = opt.server_name;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001604 }
Manuel Pégourié-Gonnard0d8780b2014-02-25 11:11:26 +01001605
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001606 mbedtls_printf(" . Connecting to %s/%s/%s...",
1607 opt.transport == MBEDTLS_SSL_TRANSPORT_STREAM ? "tcp" : "udp",
1608 opt.server_addr, opt.server_port);
1609 fflush(stdout);
Paul Bakker5121ce52009-01-03 21:22:43 +00001610
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001611 if ((ret = mbedtls_net_connect(&server_fd,
1612 opt.server_addr, opt.server_port,
1613 opt.transport == MBEDTLS_SSL_TRANSPORT_STREAM ?
1614 MBEDTLS_NET_PROTO_TCP : MBEDTLS_NET_PROTO_UDP)) != 0) {
1615 mbedtls_printf(" failed\n ! mbedtls_net_connect returned -0x%x\n\n",
1616 (unsigned int) -ret);
Paul Bakker5121ce52009-01-03 21:22:43 +00001617 goto exit;
1618 }
1619
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001620 if (opt.nbio > 0) {
1621 ret = mbedtls_net_set_nonblock(&server_fd);
1622 } else {
1623 ret = mbedtls_net_set_block(&server_fd);
1624 }
1625 if (ret != 0) {
1626 mbedtls_printf(" failed\n ! net_set_(non)block() returned -0x%x\n\n",
1627 (unsigned int) -ret);
Manuel Pégourié-Gonnard55753162014-02-26 13:47:08 +01001628 goto exit;
1629 }
1630
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001631 mbedtls_printf(" ok\n");
Paul Bakker5121ce52009-01-03 21:22:43 +00001632
1633 /*
1634 * 3. Setup stuff
1635 */
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001636 mbedtls_printf(" . Setting up the SSL/TLS structure...");
1637 fflush(stdout);
Paul Bakker5121ce52009-01-03 21:22:43 +00001638
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001639 if ((ret = mbedtls_ssl_config_defaults(&conf,
1640 MBEDTLS_SSL_IS_CLIENT,
1641 opt.transport,
1642 MBEDTLS_SSL_PRESET_DEFAULT)) != 0) {
1643 mbedtls_printf(" failed\n ! mbedtls_ssl_config_defaults returned -0x%x\n\n",
1644 (unsigned int) -ret);
Manuel Pégourié-Gonnarddef0bbe2015-05-04 14:56:36 +02001645 goto exit;
1646 }
1647
Andrzej Kurek7829d8f2022-10-18 09:19:07 -04001648#if defined(MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED)
Gilles Peskineef86ab22017-05-05 18:59:02 +02001649 /* The default algorithms profile disables SHA-1, but our tests still
1650 rely on it heavily. */
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001651 if (opt.allow_sha1 > 0) {
1652 crt_profile_for_test.allowed_mds |= MBEDTLS_X509_ID_FLAG(MBEDTLS_MD_SHA1);
1653 mbedtls_ssl_conf_cert_profile(&conf, &crt_profile_for_test);
1654 mbedtls_ssl_conf_sig_hashes(&conf, ssl_sig_hashes_for_test);
Gilles Peskinebc70a182017-05-09 15:59:24 +02001655 }
Gilles Peskineef86ab22017-05-05 18:59:02 +02001656
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001657 if (opt.context_crt_cb == 0) {
1658 mbedtls_ssl_conf_verify(&conf, my_verify, NULL);
1659 }
Hanno Beckerbb425db2019-04-03 12:59:58 +01001660
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001661 memset(peer_crt_info, 0, sizeof(peer_crt_info));
Andrzej Kurek7829d8f2022-10-18 09:19:07 -04001662#endif /* MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED */
Paul Bakker915275b2012-09-28 07:10:55 +00001663
Hanno Beckera0e20d02019-05-15 14:03:01 +01001664#if defined(MBEDTLS_SSL_DTLS_CONNECTION_ID)
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001665 if (opt.cid_enabled == 1 || opt.cid_enabled_renego == 1) {
1666 if (opt.cid_enabled == 1 &&
Hanno Beckerb42ec0d2019-05-03 17:30:59 +01001667 opt.cid_enabled_renego == 1 &&
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001668 cid_len != cid_renego_len) {
1669 mbedtls_printf("CID length must not change during renegotiation\n");
Hanno Beckerb42ec0d2019-05-03 17:30:59 +01001670 goto usage;
1671 }
1672
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001673 if (opt.cid_enabled == 1) {
1674 ret = mbedtls_ssl_conf_cid(&conf, cid_len,
1675 MBEDTLS_SSL_UNEXPECTED_CID_IGNORE);
1676 } else {
1677 ret = mbedtls_ssl_conf_cid(&conf, cid_renego_len,
1678 MBEDTLS_SSL_UNEXPECTED_CID_IGNORE);
1679 }
Hanno Beckerb42ec0d2019-05-03 17:30:59 +01001680
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001681 if (ret != 0) {
1682 mbedtls_printf(" failed\n ! mbedtls_ssl_conf_cid_len returned -%#04x\n\n",
1683 (unsigned int) -ret);
Hanno Beckerad4a1372019-05-03 13:06:44 +01001684 goto exit;
1685 }
1686 }
Hanno Beckera0e20d02019-05-15 14:03:01 +01001687#endif /* MBEDTLS_SSL_DTLS_CONNECTION_ID */
Hanno Beckerad4a1372019-05-03 13:06:44 +01001688
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001689 if (opt.auth_mode != DFL_AUTH_MODE) {
1690 mbedtls_ssl_conf_authmode(&conf, opt.auth_mode);
1691 }
Paul Bakker5121ce52009-01-03 21:22:43 +00001692
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001693#if defined(MBEDTLS_SSL_PROTO_DTLS)
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001694 if (opt.hs_to_min != DFL_HS_TO_MIN || opt.hs_to_max != DFL_HS_TO_MAX) {
1695 mbedtls_ssl_conf_handshake_timeout(&conf, opt.hs_to_min,
1696 opt.hs_to_max);
1697 }
Manuel Pégourié-Gonnardb747c6c2018-08-12 13:28:53 +02001698
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001699 if (opt.dgram_packing != DFL_DGRAM_PACKING) {
1700 mbedtls_ssl_set_datagram_packing(&ssl, opt.dgram_packing);
1701 }
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001702#endif /* MBEDTLS_SSL_PROTO_DTLS */
Manuel Pégourié-Gonnardd823bd02014-10-01 14:40:56 +02001703
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001704#if defined(MBEDTLS_SSL_MAX_FRAGMENT_LENGTH)
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001705 if ((ret = mbedtls_ssl_conf_max_frag_len(&conf, opt.mfl_code)) != 0) {
1706 mbedtls_printf(" failed\n ! mbedtls_ssl_conf_max_frag_len returned %d\n\n",
1707 ret);
Manuel Pégourié-Gonnardc5fd3912014-07-08 14:05:52 +02001708 goto exit;
1709 }
Paul Bakker05decb22013-08-15 13:33:48 +02001710#endif
Manuel Pégourié-Gonnard0df6b1f2013-07-16 13:39:57 +02001711
Ron Eldor6ea64512018-07-02 10:08:07 +03001712#if defined(MBEDTLS_SSL_DTLS_SRTP)
Bence Szépkúti880334c2020-12-14 14:42:13 +01001713 const mbedtls_ssl_srtp_profile forced_profile[] =
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001714 { opt.force_srtp_profile, MBEDTLS_TLS_SRTP_UNSET };
1715 if (opt.use_srtp == 1) {
1716 if (opt.force_srtp_profile != 0) {
1717 ret = mbedtls_ssl_conf_dtls_srtp_protection_profiles(&conf, forced_profile);
1718 } else {
1719 ret = mbedtls_ssl_conf_dtls_srtp_protection_profiles(&conf, default_profiles);
Ron Eldor6ea64512018-07-02 10:08:07 +03001720 }
1721
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001722 if (ret != 0) {
1723 mbedtls_printf(" failed\n ! "
1724 "mbedtls_ssl_conf_dtls_srtp_protection_profiles returned %d\n\n",
1725 ret);
Ron Eldor6ea64512018-07-02 10:08:07 +03001726 goto exit;
1727 }
1728
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001729 } else if (opt.force_srtp_profile != 0) {
1730 mbedtls_printf(" failed\n ! must enable use_srtp to force srtp profile\n\n");
Ron Eldor6ea64512018-07-02 10:08:07 +03001731 goto exit;
1732 }
1733#endif /* MBEDTLS_SSL_DTLS_SRTP */
1734
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001735#if defined(MBEDTLS_SSL_TRUNCATED_HMAC)
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001736 if (opt.trunc_hmac != DFL_TRUNC_HMAC) {
1737 mbedtls_ssl_conf_truncated_hmac(&conf, opt.trunc_hmac);
1738 }
Paul Bakker1f2bc622013-08-15 13:45:55 +02001739#endif
Manuel Pégourié-Gonnarde980a992013-07-19 11:08:52 +02001740
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001741#if defined(MBEDTLS_SSL_EXTENDED_MASTER_SECRET)
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001742 if (opt.extended_ms != DFL_EXTENDED_MS) {
1743 mbedtls_ssl_conf_extended_master_secret(&conf, opt.extended_ms);
1744 }
Manuel Pégourié-Gonnard367381f2014-10-20 18:40:56 +02001745#endif
1746
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001747#if defined(MBEDTLS_SSL_ENCRYPT_THEN_MAC)
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001748 if (opt.etm != DFL_ETM) {
1749 mbedtls_ssl_conf_encrypt_then_mac(&conf, opt.etm);
1750 }
Manuel Pégourié-Gonnard699cafa2014-10-27 13:57:03 +01001751#endif
1752
Ron Eldorb7fd64c2019-05-12 11:03:32 +03001753#if defined(MBEDTLS_SSL_EXPORT_KEYS)
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001754 if (opt.eap_tls != 0) {
1755 mbedtls_ssl_conf_export_keys_ext_cb(&conf, eap_tls_key_derivation,
1756 &eap_tls_keying);
1757 } else if (opt.nss_keylog != 0) {
1758 mbedtls_ssl_conf_export_keys_ext_cb(&conf,
1759 nss_keylog_export,
1760 NULL);
Hanno Becker48f3a3d2019-08-29 06:31:22 +01001761 }
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001762#if defined(MBEDTLS_SSL_DTLS_SRTP)
1763 else if (opt.use_srtp != 0) {
1764 mbedtls_ssl_conf_export_keys_ext_cb(&conf, dtls_srtp_key_derivation,
1765 &dtls_srtp_keying);
Ron Eldor65b56ef2019-09-26 16:40:48 +03001766 }
1767#endif /* MBEDTLS_SSL_DTLS_SRTP */
1768#endif /* MBEDTLS_SSL_EXPORT_KEYS */
Ron Eldorb7fd64c2019-05-12 11:03:32 +03001769
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001770#if defined(MBEDTLS_SSL_CBC_RECORD_SPLITTING)
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001771 if (opt.recsplit != DFL_RECSPLIT) {
1772 mbedtls_ssl_conf_cbc_record_splitting(&conf, opt.recsplit
Hanno Becker16970d22017-10-10 15:56:37 +01001773 ? MBEDTLS_SSL_CBC_RECORD_SPLITTING_ENABLED
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001774 : MBEDTLS_SSL_CBC_RECORD_SPLITTING_DISABLED);
1775 }
Manuel Pégourié-Gonnardc82ee352015-01-07 16:35:25 +01001776#endif
1777
Manuel Pégourié-Gonnard90966822015-06-11 17:02:29 +02001778#if defined(MBEDTLS_DHM_C)
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001779 if (opt.dhmlen != DFL_DHMLEN) {
1780 mbedtls_ssl_conf_dhm_min_bitlen(&conf, opt.dhmlen);
1781 }
Manuel Pégourié-Gonnard90966822015-06-11 17:02:29 +02001782#endif
1783
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001784#if defined(MBEDTLS_SSL_ALPN)
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001785 if (opt.alpn_string != NULL) {
1786 if ((ret = mbedtls_ssl_conf_alpn_protocols(&conf, alpn_list)) != 0) {
1787 mbedtls_printf(" failed\n ! mbedtls_ssl_conf_alpn_protocols returned %d\n\n",
1788 ret);
Manuel Pégourié-Gonnardc5fd3912014-07-08 14:05:52 +02001789 goto exit;
1790 }
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001791 }
Manuel Pégourié-Gonnard1bd22812014-04-05 14:34:07 +02001792#endif
1793
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001794 if (opt.reproducible) {
Philippe Antoinef91b3722019-06-11 16:02:43 +02001795#if defined(MBEDTLS_HAVE_TIME)
Philippe Antoineaa4d1522019-06-06 21:24:31 +02001796#if defined(MBEDTLS_PLATFORM_TIME_ALT)
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001797 mbedtls_platform_set_time(dummy_constant_time);
Philippe Antoineaa4d1522019-06-06 21:24:31 +02001798#else
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001799 fprintf(stderr, "Warning: reproducible option used without constant time\n");
Philippe Antoineaa4d1522019-06-06 21:24:31 +02001800#endif
Gilles Peskine34babfc2021-02-16 15:44:37 +01001801#endif /* MBEDTLS_HAVE_TIME */
Philippe Antoine986b6f22019-06-07 15:04:32 +02001802 }
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001803 mbedtls_ssl_conf_rng(&conf, rng_get, &rng);
1804 mbedtls_ssl_conf_dbg(&conf, my_debug, stdout);
Manuel Pégourié-Gonnard55753162014-02-26 13:47:08 +01001805
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001806 mbedtls_ssl_conf_read_timeout(&conf, opt.read_timeout);
Paul Bakker5121ce52009-01-03 21:22:43 +00001807
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001808#if defined(MBEDTLS_SSL_SESSION_TICKETS)
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001809 mbedtls_ssl_conf_session_tickets(&conf, opt.tickets);
Paul Bakkera503a632013-08-14 13:48:06 +02001810#endif
Manuel Pégourié-Gonnardaa0d4d12013-08-03 13:02:31 +02001811
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001812 if (opt.force_ciphersuite[0] != DFL_FORCE_CIPHER) {
1813 mbedtls_ssl_conf_ciphersuites(&conf, opt.force_ciphersuite);
1814 }
Manuel Pégourié-Gonnardd42b7c82015-03-20 19:44:04 +00001815
Manuel Pégourié-Gonnard66dc5552015-05-14 12:28:21 +02001816#if defined(MBEDTLS_ARC4_C)
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001817 if (opt.arc4 != DFL_ARC4) {
1818 mbedtls_ssl_conf_arc4_support(&conf, opt.arc4);
1819 }
Manuel Pégourié-Gonnard66dc5552015-05-14 12:28:21 +02001820#endif
Paul Bakker51936882011-02-20 16:05:58 +00001821
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001822 if (opt.allow_legacy != DFL_ALLOW_LEGACY) {
1823 mbedtls_ssl_conf_legacy_renegotiation(&conf, opt.allow_legacy);
1824 }
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001825#if defined(MBEDTLS_SSL_RENEGOTIATION)
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001826 mbedtls_ssl_conf_renegotiation(&conf, opt.renegotiation);
Manuel Pégourié-Gonnard615e6772014-11-03 08:23:14 +01001827#endif
Paul Bakker48916f92012-09-16 19:57:18 +00001828
Andrzej Kurek7829d8f2022-10-18 09:19:07 -04001829#if defined(MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED)
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001830 if (strcmp(opt.ca_path, "none") != 0 &&
1831 strcmp(opt.ca_file, "none") != 0) {
Jarno Lamsa1b4a2ba2019-03-27 17:55:27 +02001832#if defined(MBEDTLS_X509_TRUSTED_CERTIFICATE_CALLBACK)
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001833 if (opt.ca_callback != 0) {
1834 mbedtls_ssl_conf_ca_cb(&conf, ca_callback, &cacert);
1835 } else
Jarno Lamsa1b4a2ba2019-03-27 17:55:27 +02001836#endif
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001837 mbedtls_ssl_conf_ca_chain(&conf, &cacert, NULL);
Manuel Pégourié-Gonnard3e1b1782014-02-27 13:35:00 +01001838 }
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001839 if (strcmp(opt.crt_file, "none") != 0 &&
1840 strcmp(opt.key_file, "none") != 0) {
1841 if ((ret = mbedtls_ssl_conf_own_cert(&conf, &clicert, &pkey)) != 0) {
1842 mbedtls_printf(" failed\n ! mbedtls_ssl_conf_own_cert returned %d\n\n",
1843 ret);
Manuel Pégourié-Gonnardc5fd3912014-07-08 14:05:52 +02001844 goto exit;
1845 }
Manuel Pégourié-Gonnard3e1b1782014-02-27 13:35:00 +01001846 }
Andrzej Kurek7829d8f2022-10-18 09:19:07 -04001847#endif /* MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED */
Paul Bakkered27a042013-04-18 22:46:23 +02001848
Hanno Beckere6706e62017-05-15 16:05:15 +01001849#if defined(MBEDTLS_ECP_C)
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001850 if (opt.curves != NULL &&
1851 strcmp(opt.curves, "default") != 0) {
1852 mbedtls_ssl_conf_curves(&conf, curve_list);
Hanno Beckere6706e62017-05-15 16:05:15 +01001853 }
1854#endif
1855
Gilles Peskineeccd8882020-03-10 12:19:08 +01001856#if defined(MBEDTLS_KEY_EXCHANGE_SOME_PSK_ENABLED)
Hanno Beckere86964c2018-10-23 11:37:50 +01001857#if defined(MBEDTLS_USE_PSA_CRYPTO)
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001858 if (opt.psk_opaque != 0) {
Janos Follathbe4efc22019-08-08 11:38:18 +01001859 key_attributes = psa_key_attributes_init();
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001860 psa_set_key_usage_flags(&key_attributes, PSA_KEY_USAGE_DERIVE);
1861 psa_set_key_algorithm(&key_attributes, alg);
1862 psa_set_key_type(&key_attributes, PSA_KEY_TYPE_DERIVE);
Hanno Beckere86964c2018-10-23 11:37:50 +01001863
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001864 status = psa_import_key(&key_attributes, psk, psk_len, &slot);
1865 if (status != PSA_SUCCESS) {
Hanno Beckere86964c2018-10-23 11:37:50 +01001866 ret = MBEDTLS_ERR_SSL_HW_ACCEL_FAILED;
1867 goto exit;
1868 }
1869
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001870 if ((ret = mbedtls_ssl_conf_psk_opaque(&conf, slot,
1871 (const unsigned char *) opt.psk_identity,
1872 strlen(opt.psk_identity))) != 0) {
1873 mbedtls_printf(" failed\n ! mbedtls_ssl_conf_psk_opaque returned %d\n\n",
1874 ret);
Hanno Beckere86964c2018-10-23 11:37:50 +01001875 goto exit;
1876 }
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001877 } else
Hanno Beckere86964c2018-10-23 11:37:50 +01001878#endif /* MBEDTLS_USE_PSA_CRYPTO */
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001879 if (psk_len > 0) {
1880 ret = mbedtls_ssl_conf_psk(&conf, psk, psk_len,
1881 (const unsigned char *) opt.psk_identity,
1882 strlen(opt.psk_identity));
1883 if (ret != 0) {
1884 mbedtls_printf(" failed\n ! mbedtls_ssl_conf_psk returned %d\n\n", ret);
Piotr Nowicki9926eaf2019-11-20 14:54:36 +01001885 goto exit;
1886 }
Manuel Pégourié-Gonnardc5fd3912014-07-08 14:05:52 +02001887 }
Gilles Peskineeccd8882020-03-10 12:19:08 +01001888#endif /* MBEDTLS_KEY_EXCHANGE_SOME_PSK_ENABLED */
Paul Bakkered27a042013-04-18 22:46:23 +02001889
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001890 if (opt.min_version != DFL_MIN_VERSION) {
1891 mbedtls_ssl_conf_min_version(&conf, MBEDTLS_SSL_MAJOR_VERSION_3,
1892 opt.min_version);
1893 }
Manuel Pégourié-Gonnard864a81f2014-02-10 14:25:10 +01001894
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001895 if (opt.max_version != DFL_MAX_VERSION) {
1896 mbedtls_ssl_conf_max_version(&conf, MBEDTLS_SSL_MAJOR_VERSION_3,
1897 opt.max_version);
1898 }
Paul Bakker1d29fb52012-09-28 13:28:45 +00001899
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001900#if defined(MBEDTLS_SSL_FALLBACK_SCSV)
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001901 if (opt.fallback != DFL_FALLBACK) {
1902 mbedtls_ssl_conf_fallback(&conf, opt.fallback);
1903 }
Manuel Pégourié-Gonnard1cbd39d2014-10-20 13:34:59 +02001904#endif
Paul Bakker5121ce52009-01-03 21:22:43 +00001905
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001906 if ((ret = mbedtls_ssl_setup(&ssl, &conf)) != 0) {
1907 mbedtls_printf(" failed\n ! mbedtls_ssl_setup returned -0x%x\n\n",
1908 (unsigned int) -ret);
Manuel Pégourié-Gonnard06939ce2015-05-11 11:25:46 +02001909 goto exit;
1910 }
1911
Andrzej Kurek7829d8f2022-10-18 09:19:07 -04001912#if defined(MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED)
Gilles Peskine724a7bb2025-02-12 21:50:53 +01001913 switch (opt.set_hostname) {
1914 case -1:
1915 if ((ret = mbedtls_ssl_set_hostname(&ssl, NULL)) != 0) {
1916 mbedtls_printf(" failed\n ! mbedtls_ssl_set_hostname returned %d\n\n",
1917 ret);
1918 goto exit;
1919 }
1920 break;
1921 case 0:
1922 /* Skip the call */
1923 break;
1924 default:
1925 if ((ret = mbedtls_ssl_set_hostname(&ssl, opt.server_name)) != 0) {
1926 mbedtls_printf(" failed\n ! mbedtls_ssl_set_hostname returned %d\n\n",
1927 ret);
1928 goto exit;
1929 }
1930 break;
Manuel Pégourié-Gonnard06939ce2015-05-11 11:25:46 +02001931 }
1932#endif
1933
Manuel Pégourié-Gonnard70905a72015-09-16 11:08:34 +02001934#if defined(MBEDTLS_KEY_EXCHANGE_ECJPAKE_ENABLED)
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001935 if (opt.ecjpake_pw != DFL_ECJPAKE_PW) {
1936 if ((ret = mbedtls_ssl_set_hs_ecjpake_password(&ssl,
1937 (const unsigned char *) opt.ecjpake_pw,
1938 strlen(opt.ecjpake_pw))) != 0) {
1939 mbedtls_printf(" failed\n ! mbedtls_ssl_set_hs_ecjpake_password returned %d\n\n",
1940 ret);
Manuel Pégourié-Gonnard70905a72015-09-16 11:08:34 +02001941 goto exit;
1942 }
1943 }
1944#endif
1945
Andrzej Kurek7829d8f2022-10-18 09:19:07 -04001946#if defined(MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED)
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001947 if (opt.context_crt_cb == 1) {
1948 mbedtls_ssl_set_verify(&ssl, my_verify, NULL);
1949 }
Andrzej Kurek7829d8f2022-10-18 09:19:07 -04001950#endif /* MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED */
Hanno Beckerbb425db2019-04-03 12:59:58 +01001951
Hanno Becker8b1af2f2019-07-03 17:02:43 +01001952 io_ctx.ssl = &ssl;
1953 io_ctx.net = &server_fd;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001954 mbedtls_ssl_set_bio(&ssl, &io_ctx, send_cb, recv_cb,
1955 opt.nbio == 0 ? recv_timeout_cb : NULL);
Manuel Pégourié-Gonnard06939ce2015-05-11 11:25:46 +02001956
Hanno Beckera0e20d02019-05-15 14:03:01 +01001957#if defined(MBEDTLS_SSL_DTLS_CONNECTION_ID)
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001958 if (opt.transport == MBEDTLS_SSL_TRANSPORT_DATAGRAM) {
1959 if ((ret = mbedtls_ssl_set_cid(&ssl, opt.cid_enabled,
1960 cid, cid_len)) != 0) {
1961 mbedtls_printf(" failed\n ! mbedtls_ssl_set_cid returned %d\n\n",
1962 ret);
Hanno Becker90cb3592019-04-09 17:24:19 +01001963 goto exit;
1964 }
1965 }
Hanno Beckera0e20d02019-05-15 14:03:01 +01001966#endif /* MBEDTLS_SSL_DTLS_CONNECTION_ID */
Hanno Becker90cb3592019-04-09 17:24:19 +01001967
Manuel Pégourié-Gonnard6e7aaca2018-08-20 10:37:23 +02001968#if defined(MBEDTLS_SSL_PROTO_DTLS)
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001969 if (opt.dtls_mtu != DFL_DTLS_MTU) {
1970 mbedtls_ssl_set_mtu(&ssl, opt.dtls_mtu);
1971 }
Manuel Pégourié-Gonnard6e7aaca2018-08-20 10:37:23 +02001972#endif
1973
Manuel Pégourié-Gonnardd2377e72015-05-13 13:58:56 +02001974#if defined(MBEDTLS_TIMING_C)
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001975 mbedtls_ssl_set_timer_cb(&ssl, &timer, mbedtls_timing_set_delay,
1976 mbedtls_timing_get_delay);
Manuel Pégourié-Gonnardd2377e72015-05-13 13:58:56 +02001977#endif
Manuel Pégourié-Gonnarde3c41ad2015-05-13 10:04:32 +02001978
Manuel Pégourié-Gonnardb3c83072017-05-16 08:50:24 +02001979#if defined(MBEDTLS_ECP_RESTARTABLE)
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001980 if (opt.ec_max_ops != DFL_EC_MAX_OPS) {
1981 mbedtls_ecp_set_max_ops(opt.ec_max_ops);
1982 }
Manuel Pégourié-Gonnardb3c83072017-05-16 08:50:24 +02001983#endif
1984
Ron Eldor65b56ef2019-09-26 16:40:48 +03001985#if defined(MBEDTLS_SSL_DTLS_SRTP)
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001986 if (opt.use_srtp != 0 && strlen(opt.mki) != 0) {
1987 if (mbedtls_test_unhexify(mki, sizeof(mki),
1988 opt.mki, &mki_len) != 0) {
1989 mbedtls_printf("mki value not valid hex\n");
Johan Pascal9bc97ca2020-09-21 23:44:45 +02001990 goto exit;
Ron Eldor6ea64512018-07-02 10:08:07 +03001991 }
1992
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01001993 mbedtls_ssl_conf_srtp_mki_value_supported(&conf, MBEDTLS_SSL_DTLS_SRTP_MKI_SUPPORTED);
1994 if ((ret = mbedtls_ssl_dtls_srtp_set_mki_value(&ssl, mki,
1995 (uint16_t) strlen(opt.mki) / 2)) != 0) {
1996 mbedtls_printf(" failed\n ! mbedtls_ssl_dtls_srtp_set_mki_value returned %d\n\n", ret);
Ron Eldor6ea64512018-07-02 10:08:07 +03001997 goto exit;
1998 }
1999 }
2000#endif
2001
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002002 mbedtls_printf(" ok\n");
Manuel Pégourié-Gonnard798f15a2014-03-26 18:12:04 +01002003
Paul Bakker5121ce52009-01-03 21:22:43 +00002004 /*
2005 * 4. Handshake
2006 */
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002007 mbedtls_printf(" . Performing the SSL/TLS handshake...");
2008 fflush(stdout);
Paul Bakker5121ce52009-01-03 21:22:43 +00002009
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002010 while ((ret = mbedtls_ssl_handshake(&ssl)) != 0) {
2011 if (ret != MBEDTLS_ERR_SSL_WANT_READ &&
Manuel Pégourié-Gonnardb3c83072017-05-16 08:50:24 +02002012 ret != MBEDTLS_ERR_SSL_WANT_WRITE &&
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002013 ret != MBEDTLS_ERR_SSL_CRYPTO_IN_PROGRESS) {
2014 mbedtls_printf(" failed\n ! mbedtls_ssl_handshake returned -0x%x\n",
2015 (unsigned int) -ret);
2016 if (ret == MBEDTLS_ERR_X509_CERT_VERIFY_FAILED) {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002017 mbedtls_printf(
Manuel Pégourié-Gonnardfcf2fc22014-03-11 11:10:27 +01002018 " Unable to verify the server's certificate. "
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002019 "Either it is invalid,\n"
Manuel Pégourié-Gonnardfcf2fc22014-03-11 11:10:27 +01002020 " or you didn't set ca_file or ca_path "
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002021 "to an appropriate value.\n"
Manuel Pégourié-Gonnardfcf2fc22014-03-11 11:10:27 +01002022 " Alternatively, you may want to use "
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002023 "auth_mode=optional for testing purposes.\n");
2024 }
2025 mbedtls_printf("\n");
Paul Bakker5121ce52009-01-03 21:22:43 +00002026 goto exit;
Paul Bakker40e46942009-01-03 21:51:57 +00002027 }
Hanno Becker16970d22017-10-10 15:56:37 +01002028
Manuel Pégourié-Gonnardda19f4c2018-06-12 12:40:54 +02002029#if defined(MBEDTLS_ECP_RESTARTABLE)
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002030 if (ret == MBEDTLS_ERR_SSL_CRYPTO_IN_PROGRESS) {
Manuel Pégourié-Gonnard25781f92018-10-15 15:28:16 +02002031 continue;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002032 }
Manuel Pégourié-Gonnardda19f4c2018-06-12 12:40:54 +02002033#endif
2034
Hanno Becker16970d22017-10-10 15:56:37 +01002035 /* For event-driven IO, wait for socket to become available */
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002036 if (opt.event == 1 /* level triggered IO */) {
Hanno Becker16970d22017-10-10 15:56:37 +01002037#if defined(MBEDTLS_TIMING_C)
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002038 ret = idle(&server_fd, &timer, ret);
Hanno Becker16970d22017-10-10 15:56:37 +01002039#else
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002040 ret = idle(&server_fd, ret);
Hanno Becker16970d22017-10-10 15:56:37 +01002041#endif
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002042 if (ret != 0) {
Hanno Beckeradfa64f2018-03-15 11:35:07 +00002043 goto exit;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002044 }
Hanno Becker16970d22017-10-10 15:56:37 +01002045 }
Paul Bakker5121ce52009-01-03 21:22:43 +00002046 }
2047
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002048 mbedtls_printf(" ok\n [ Protocol is %s ]\n [ Ciphersuite is %s ]\n",
2049 mbedtls_ssl_get_version(&ssl),
2050 mbedtls_ssl_get_ciphersuite(&ssl));
Paul Bakker5121ce52009-01-03 21:22:43 +00002051
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002052 if ((ret = mbedtls_ssl_get_record_expansion(&ssl)) >= 0) {
2053 mbedtls_printf(" [ Record expansion is %d ]\n", ret);
2054 } else {
2055 mbedtls_printf(" [ Record expansion is unknown (compression) ]\n");
2056 }
Manuel Pégourié-Gonnard9b35f182014-10-14 17:47:31 +02002057
Manuel Pégourié-Gonnarda2cda6b2015-08-31 18:30:52 +02002058#if defined(MBEDTLS_SSL_MAX_FRAGMENT_LENGTH)
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002059 mbedtls_printf(" [ Maximum input fragment length is %u ]\n",
2060 (unsigned int) mbedtls_ssl_get_input_max_frag_len(&ssl));
2061 mbedtls_printf(" [ Maximum output fragment length is %u ]\n",
2062 (unsigned int) mbedtls_ssl_get_output_max_frag_len(&ssl));
Manuel Pégourié-Gonnarda2cda6b2015-08-31 18:30:52 +02002063#endif
2064
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002065#if defined(MBEDTLS_SSL_ALPN)
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002066 if (opt.alpn_string != NULL) {
2067 const char *alp = mbedtls_ssl_get_alpn_protocol(&ssl);
2068 mbedtls_printf(" [ Application Layer Protocol is %s ]\n",
2069 alp ? alp : "(none)");
Manuel Pégourié-Gonnard1bd22812014-04-05 14:34:07 +02002070 }
2071#endif
2072
Ron Eldorb7fd64c2019-05-12 11:03:32 +03002073#if defined(MBEDTLS_SSL_EXPORT_KEYS)
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002074 if (opt.eap_tls != 0) {
Ron Eldorb7fd64c2019-05-12 11:03:32 +03002075 size_t j = 0;
Ron Eldor51d3ab52019-05-12 14:54:30 +03002076
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002077 if ((ret = mbedtls_ssl_tls_prf(eap_tls_keying.tls_prf_type,
2078 eap_tls_keying.master_secret,
2079 sizeof(eap_tls_keying.master_secret),
2080 eap_tls_label,
2081 eap_tls_keying.randbytes,
2082 sizeof(eap_tls_keying.randbytes),
2083 eap_tls_keymaterial,
2084 sizeof(eap_tls_keymaterial)))
2085 != 0) {
2086 mbedtls_printf(" failed\n ! mbedtls_ssl_tls_prf returned -0x%x\n\n",
2087 (unsigned int) -ret);
Ron Eldor51d3ab52019-05-12 14:54:30 +03002088 goto exit;
2089 }
2090
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002091 mbedtls_printf(" EAP-TLS key material is:");
2092 for (j = 0; j < sizeof(eap_tls_keymaterial); j++) {
2093 if (j % 8 == 0) {
Ron Eldorb7fd64c2019-05-12 11:03:32 +03002094 mbedtls_printf("\n ");
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002095 }
2096 mbedtls_printf("%02x ", eap_tls_keymaterial[j]);
Ron Eldorb7fd64c2019-05-12 11:03:32 +03002097 }
2098 mbedtls_printf("\n");
2099
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002100 if ((ret = mbedtls_ssl_tls_prf(eap_tls_keying.tls_prf_type, NULL, 0,
2101 eap_tls_label,
2102 eap_tls_keying.randbytes,
2103 sizeof(eap_tls_keying.randbytes),
2104 eap_tls_iv,
2105 sizeof(eap_tls_iv))) != 0) {
2106 mbedtls_printf(" failed\n ! mbedtls_ssl_tls_prf returned -0x%x\n\n",
2107 (unsigned int) -ret);
2108 goto exit;
2109 }
Ron Eldor51d3ab52019-05-12 14:54:30 +03002110
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002111 mbedtls_printf(" EAP-TLS IV is:");
2112 for (j = 0; j < sizeof(eap_tls_iv); j++) {
2113 if (j % 8 == 0) {
Ron Eldorb7fd64c2019-05-12 11:03:32 +03002114 mbedtls_printf("\n ");
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002115 }
2116 mbedtls_printf("%02x ", eap_tls_iv[j]);
Ron Eldorb7fd64c2019-05-12 11:03:32 +03002117 }
2118 mbedtls_printf("\n");
2119 }
Ron Eldor65b56ef2019-09-26 16:40:48 +03002120
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002121#if defined(MBEDTLS_SSL_DTLS_SRTP)
2122 else if (opt.use_srtp != 0) {
Ron Eldor65b56ef2019-09-26 16:40:48 +03002123 size_t j = 0;
Johan Pascal2258a4f2020-10-28 13:53:09 +01002124 mbedtls_dtls_srtp_info dtls_srtp_negotiation_result;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002125 mbedtls_ssl_get_dtls_srtp_negotiation_result(&ssl, &dtls_srtp_negotiation_result);
Ron Eldor65b56ef2019-09-26 16:40:48 +03002126
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002127 if (dtls_srtp_negotiation_result.chosen_dtls_srtp_profile
2128 == MBEDTLS_TLS_SRTP_UNSET) {
2129 mbedtls_printf(" Unable to negotiate "
2130 "the use of DTLS-SRTP\n");
2131 } else {
2132 if ((ret = mbedtls_ssl_tls_prf(dtls_srtp_keying.tls_prf_type,
2133 dtls_srtp_keying.master_secret,
2134 sizeof(dtls_srtp_keying.master_secret),
2135 dtls_srtp_label,
2136 dtls_srtp_keying.randbytes,
2137 sizeof(dtls_srtp_keying.randbytes),
2138 dtls_srtp_key_material,
2139 sizeof(dtls_srtp_key_material)))
2140 != 0) {
2141 mbedtls_printf(" failed\n ! mbedtls_ssl_tls_prf returned -0x%x\n\n",
2142 (unsigned int) -ret);
Johan Pascal9bc97ca2020-09-21 23:44:45 +02002143 goto exit;
2144 }
Ron Eldor65b56ef2019-09-26 16:40:48 +03002145
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002146 mbedtls_printf(" DTLS-SRTP key material is:");
2147 for (j = 0; j < sizeof(dtls_srtp_key_material); j++) {
2148 if (j % 8 == 0) {
2149 mbedtls_printf("\n ");
2150 }
2151 mbedtls_printf("%02x ", dtls_srtp_key_material[j]);
Johan Pascal9bc97ca2020-09-21 23:44:45 +02002152 }
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002153 mbedtls_printf("\n");
Johan Pascal9bc97ca2020-09-21 23:44:45 +02002154
Johan Pascal9bc50b02020-09-24 12:01:13 +02002155 /* produce a less readable output used to perform automatic checks
2156 * - compare client and server output
2157 * - interop test with openssl which client produces this kind of output
2158 */
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002159 mbedtls_printf(" Keying material: ");
2160 for (j = 0; j < sizeof(dtls_srtp_key_material); j++) {
2161 mbedtls_printf("%02X", dtls_srtp_key_material[j]);
Johan Pascal9bc50b02020-09-24 12:01:13 +02002162 }
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002163 mbedtls_printf("\n");
Johan Pascal20c7db32020-10-26 22:45:58 +01002164
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002165 if (dtls_srtp_negotiation_result.mki_len > 0) {
2166 mbedtls_printf(" DTLS-SRTP mki value: ");
2167 for (j = 0; j < dtls_srtp_negotiation_result.mki_len; j++) {
2168 mbedtls_printf("%02X", dtls_srtp_negotiation_result.mki_value[j]);
Johan Pascal20c7db32020-10-26 22:45:58 +01002169 }
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002170 } else {
2171 mbedtls_printf(" DTLS-SRTP no mki value negotiated");
Johan Pascal20c7db32020-10-26 22:45:58 +01002172 }
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002173 mbedtls_printf("\n");
Johan Pascal9bc97ca2020-09-21 23:44:45 +02002174 }
Ron Eldor65b56ef2019-09-26 16:40:48 +03002175 }
2176#endif /* MBEDTLS_SSL_DTLS_SRTP */
2177#endif /* MBEDTLS_SSL_EXPORT_KEYS */
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002178 if (opt.reconnect != 0) {
2179 mbedtls_printf(" . Saving session for reuse...");
2180 fflush(stdout);
Manuel Pégourié-Gonnardaaa1eab2013-07-30 13:43:43 +02002181
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002182 if (opt.reco_mode == 1) {
Manuel Pégourié-Gonnard26f982f2019-05-21 11:01:32 +02002183 /* free any previously saved data */
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002184 if (session_data != NULL) {
2185 mbedtls_platform_zeroize(session_data, session_data_len);
2186 mbedtls_free(session_data);
Manuel Pégourié-Gonnard4d591d62019-05-24 10:26:41 +02002187 session_data = NULL;
2188 }
Manuel Pégourié-Gonnard26f982f2019-05-21 11:01:32 +02002189
2190 /* get size of the buffer needed */
Gilles Peskine5fdd0bd2023-10-17 16:04:27 +02002191 (void) mbedtls_ssl_session_save(mbedtls_ssl_get_session_pointer(&ssl),
2192 NULL, 0, &session_data_len);
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002193 session_data = mbedtls_calloc(1, session_data_len);
2194 if (session_data == NULL) {
2195 mbedtls_printf(" failed\n ! alloc %u bytes for session data\n",
2196 (unsigned) session_data_len);
Manuel Pégourié-Gonnard26f982f2019-05-21 11:01:32 +02002197 ret = MBEDTLS_ERR_SSL_ALLOC_FAILED;
2198 goto exit;
2199 }
2200
2201 /* actually save session data */
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002202 if ((ret = mbedtls_ssl_session_save(mbedtls_ssl_get_session_pointer(&ssl),
2203 session_data, session_data_len,
2204 &session_data_len)) != 0) {
2205 mbedtls_printf(" failed\n ! mbedtls_ssl_session_saved returned -0x%04x\n\n",
2206 (unsigned int) -ret);
Manuel Pégourié-Gonnarda7c37652019-05-20 12:46:26 +02002207 goto exit;
2208 }
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002209 } else {
2210 if ((ret = mbedtls_ssl_get_session(&ssl, &saved_session)) != 0) {
2211 mbedtls_printf(" failed\n ! mbedtls_ssl_get_session returned -0x%x\n\n",
2212 (unsigned int) -ret);
Manuel Pégourié-Gonnarda7c37652019-05-20 12:46:26 +02002213 goto exit;
2214 }
Manuel Pégourié-Gonnard21548632019-05-16 11:39:42 +02002215 }
2216
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002217 mbedtls_printf(" ok\n");
Manuel Pégourié-Gonnard26f982f2019-05-21 11:01:32 +02002218
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002219 if (opt.reco_mode == 1) {
2220 mbedtls_printf(" [ Saved %u bytes of session data]\n",
2221 (unsigned) session_data_len);
Manuel Pégourié-Gonnard26f982f2019-05-21 11:01:32 +02002222 }
Manuel Pégourié-Gonnardaaa1eab2013-07-30 13:43:43 +02002223 }
2224
Andrzej Kurek7829d8f2022-10-18 09:19:07 -04002225#if defined(MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED)
Paul Bakker5121ce52009-01-03 21:22:43 +00002226 /*
2227 * 5. Verify the server certificate
2228 */
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002229 mbedtls_printf(" . Verifying peer X.509 certificate...");
Paul Bakker5121ce52009-01-03 21:22:43 +00002230
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002231 if ((flags = mbedtls_ssl_get_verify_result(&ssl)) != 0) {
Manuel Pégourié-Gonnard89addc42015-04-20 10:56:18 +01002232 char vrfy_buf[512];
2233
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002234 mbedtls_printf(" failed\n");
Paul Bakker5121ce52009-01-03 21:22:43 +00002235
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002236 mbedtls_x509_crt_verify_info(vrfy_buf, sizeof(vrfy_buf),
2237 " ! ", flags);
Paul Bakker5121ce52009-01-03 21:22:43 +00002238
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002239 mbedtls_printf("%s\n", vrfy_buf);
2240 } else {
2241 mbedtls_printf(" ok\n");
Paul Bakker5121ce52009-01-03 21:22:43 +00002242 }
Paul Bakker5121ce52009-01-03 21:22:43 +00002243
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002244 mbedtls_printf(" . Peer certificate information ...\n");
2245 mbedtls_printf("%s\n", peer_crt_info);
Andrzej Kurek7829d8f2022-10-18 09:19:07 -04002246#endif /* MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED */
Paul Bakker5121ce52009-01-03 21:22:43 +00002247
Hanno Beckera0e20d02019-05-15 14:03:01 +01002248#if defined(MBEDTLS_SSL_DTLS_CONNECTION_ID)
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002249 ret = report_cid_usage(&ssl, "initial handshake");
2250 if (ret != 0) {
Hanno Beckerb42ec0d2019-05-03 17:30:59 +01002251 goto exit;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002252 }
Hanno Beckerb42ec0d2019-05-03 17:30:59 +01002253
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002254 if (opt.transport == MBEDTLS_SSL_TRANSPORT_DATAGRAM) {
2255 if ((ret = mbedtls_ssl_set_cid(&ssl, opt.cid_enabled_renego,
2256 cid_renego,
2257 cid_renego_len)) != 0) {
2258 mbedtls_printf(" failed\n ! mbedtls_ssl_set_cid returned %d\n\n",
2259 ret);
gabor-mezei-arm78595852020-04-28 10:40:30 +02002260 goto exit;
Hanno Becker90cb3592019-04-09 17:24:19 +01002261 }
2262 }
Hanno Beckera0e20d02019-05-15 14:03:01 +01002263#endif /* MBEDTLS_SSL_DTLS_CONNECTION_ID */
Hanno Becker90cb3592019-04-09 17:24:19 +01002264
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002265#if defined(MBEDTLS_SSL_RENEGOTIATION)
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002266 if (opt.renegotiate) {
Manuel Pégourié-Gonnard780d6712014-02-20 17:19:59 +01002267 /*
2268 * Perform renegotiation (this must be done when the server is waiting
2269 * for input from our side).
2270 */
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002271 mbedtls_printf(" . Performing renegotiation...");
2272 fflush(stdout);
2273 while ((ret = mbedtls_ssl_renegotiate(&ssl)) != 0) {
2274 if (ret != MBEDTLS_ERR_SSL_WANT_READ &&
Manuel Pégourié-Gonnardb3c83072017-05-16 08:50:24 +02002275 ret != MBEDTLS_ERR_SSL_WANT_WRITE &&
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002276 ret != MBEDTLS_ERR_SSL_CRYPTO_IN_PROGRESS) {
2277 mbedtls_printf(" failed\n ! mbedtls_ssl_renegotiate returned %d\n\n",
2278 ret);
Manuel Pégourié-Gonnard780d6712014-02-20 17:19:59 +01002279 goto exit;
2280 }
Hanno Becker16970d22017-10-10 15:56:37 +01002281
Manuel Pégourié-Gonnard25781f92018-10-15 15:28:16 +02002282#if defined(MBEDTLS_ECP_RESTARTABLE)
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002283 if (ret == MBEDTLS_ERR_SSL_CRYPTO_IN_PROGRESS) {
Manuel Pégourié-Gonnard25781f92018-10-15 15:28:16 +02002284 continue;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002285 }
Manuel Pégourié-Gonnard25781f92018-10-15 15:28:16 +02002286#endif
2287
Hanno Becker16970d22017-10-10 15:56:37 +01002288 /* For event-driven IO, wait for socket to become available */
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002289 if (opt.event == 1 /* level triggered IO */) {
Hanno Becker16970d22017-10-10 15:56:37 +01002290#if defined(MBEDTLS_TIMING_C)
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002291 idle(&server_fd, &timer, ret);
Hanno Becker16970d22017-10-10 15:56:37 +01002292#else
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002293 idle(&server_fd, ret);
Hanno Becker16970d22017-10-10 15:56:37 +01002294#endif
2295 }
2296
Manuel Pégourié-Gonnard53b3e062013-10-29 18:16:38 +01002297 }
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002298 mbedtls_printf(" ok\n");
Manuel Pégourié-Gonnard53b3e062013-10-29 18:16:38 +01002299 }
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002300#endif /* MBEDTLS_SSL_RENEGOTIATION */
Manuel Pégourié-Gonnard53b3e062013-10-29 18:16:38 +01002301
Hanno Beckera0e20d02019-05-15 14:03:01 +01002302#if defined(MBEDTLS_SSL_DTLS_CONNECTION_ID)
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002303 ret = report_cid_usage(&ssl, "after renegotiation");
2304 if (ret != 0) {
Hanno Beckerb42ec0d2019-05-03 17:30:59 +01002305 goto exit;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002306 }
Hanno Beckera0e20d02019-05-15 14:03:01 +01002307#endif /* MBEDTLS_SSL_DTLS_CONNECTION_ID */
Hanno Beckerb42ec0d2019-05-03 17:30:59 +01002308
Paul Bakker5121ce52009-01-03 21:22:43 +00002309 /*
2310 * 6. Write the GET request
2311 */
Manuel Pégourié-Gonnarde63582a2014-10-14 11:47:21 +02002312 retry_left = opt.max_resend;
Manuel Pégourié-Gonnardaaa1eab2013-07-30 13:43:43 +02002313send_request:
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002314 mbedtls_printf(" > Write to server:");
2315 fflush(stdout);
Paul Bakker5121ce52009-01-03 21:22:43 +00002316
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002317 len = mbedtls_snprintf((char *) buf, sizeof(buf) - 1, GET_REQUEST,
2318 opt.request_page);
2319 tail_len = (int) strlen(GET_REQUEST_END);
Manuel Pégourié-Gonnarddcab2932014-08-14 17:47:17 +02002320
2321 /* Add padding to GET request to reach opt.request_size in length */
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002322 if (opt.request_size != DFL_REQUEST_SIZE &&
2323 len + tail_len < opt.request_size) {
2324 memset(buf + len, 'A', opt.request_size - len - tail_len);
Manuel Pégourié-Gonnarddcab2932014-08-14 17:47:17 +02002325 len += opt.request_size - len - tail_len;
Paul Bakker93c32b22014-04-25 13:40:05 +02002326 }
Paul Bakker5121ce52009-01-03 21:22:43 +00002327
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002328 strncpy((char *) buf + len, GET_REQUEST_END, sizeof(buf) - len - 1);
Manuel Pégourié-Gonnarddcab2932014-08-14 17:47:17 +02002329 len += tail_len;
2330
Manuel Pégourié-Gonnarddea29c52014-06-18 13:07:56 +02002331 /* Truncate if request size is smaller than the "natural" size */
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002332 if (opt.request_size != DFL_REQUEST_SIZE &&
2333 len > opt.request_size) {
Manuel Pégourié-Gonnarddea29c52014-06-18 13:07:56 +02002334 len = opt.request_size;
2335
2336 /* Still end with \r\n unless that's really not possible */
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002337 if (len >= 2) {
2338 buf[len - 2] = '\r';
2339 }
2340 if (len >= 1) {
2341 buf[len - 1] = '\n';
2342 }
Manuel Pégourié-Gonnarddea29c52014-06-18 13:07:56 +02002343 }
2344
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002345 if (opt.transport == MBEDTLS_SSL_TRANSPORT_STREAM) {
Andres Amaya Garciace6fbac2018-07-04 09:29:34 +01002346 written = 0;
2347 frags = 0;
2348
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002349 do {
2350 while ((ret = mbedtls_ssl_write(&ssl, buf + written,
2351 len - written)) < 0) {
2352 if (ret != MBEDTLS_ERR_SSL_WANT_READ &&
Manuel Pégourié-Gonnardb3c83072017-05-16 08:50:24 +02002353 ret != MBEDTLS_ERR_SSL_WANT_WRITE &&
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002354 ret != MBEDTLS_ERR_SSL_CRYPTO_IN_PROGRESS) {
2355 mbedtls_printf(" failed\n ! mbedtls_ssl_write returned -0x%x\n\n",
2356 (unsigned int) -ret);
Manuel Pégourié-Gonnard2d87e412014-10-13 18:38:36 +02002357 goto exit;
2358 }
Hanno Becker16970d22017-10-10 15:56:37 +01002359
2360 /* For event-driven IO, wait for socket to become available */
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002361 if (opt.event == 1 /* level triggered IO */) {
Hanno Becker16970d22017-10-10 15:56:37 +01002362#if defined(MBEDTLS_TIMING_C)
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002363 idle(&server_fd, &timer, ret);
Hanno Becker16970d22017-10-10 15:56:37 +01002364#else
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002365 idle(&server_fd, ret);
Hanno Becker16970d22017-10-10 15:56:37 +01002366#endif
2367 }
Manuel Pégourié-Gonnard787b6582013-07-16 15:43:17 +02002368 }
Andres Amaya Garciace6fbac2018-07-04 09:29:34 +01002369
2370 frags++;
2371 written += ret;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002372 } while (written < len);
2373 } else { /* Not stream, so datagram */
2374 while (1) {
2375 ret = mbedtls_ssl_write(&ssl, buf, len);
Hanno Becker16970d22017-10-10 15:56:37 +01002376
Manuel Pégourié-Gonnardda19f4c2018-06-12 12:40:54 +02002377#if defined(MBEDTLS_ECP_RESTARTABLE)
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002378 if (ret == MBEDTLS_ERR_SSL_CRYPTO_IN_PROGRESS) {
Manuel Pégourié-Gonnardda19f4c2018-06-12 12:40:54 +02002379 continue;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002380 }
Manuel Pégourié-Gonnardda19f4c2018-06-12 12:40:54 +02002381#endif
2382
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002383 if (ret != MBEDTLS_ERR_SSL_WANT_READ &&
2384 ret != MBEDTLS_ERR_SSL_WANT_WRITE) {
Hanno Becker16970d22017-10-10 15:56:37 +01002385 break;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002386 }
Hanno Becker16970d22017-10-10 15:56:37 +01002387
2388 /* For event-driven IO, wait for socket to become available */
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002389 if (opt.event == 1 /* level triggered IO */) {
Hanno Becker16970d22017-10-10 15:56:37 +01002390#if defined(MBEDTLS_TIMING_C)
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002391 idle(&server_fd, &timer, ret);
Hanno Becker16970d22017-10-10 15:56:37 +01002392#else
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002393 idle(&server_fd, ret);
Hanno Becker16970d22017-10-10 15:56:37 +01002394#endif
2395 }
2396 }
Manuel Pégourié-Gonnard2d87e412014-10-13 18:38:36 +02002397
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002398 if (ret < 0) {
2399 mbedtls_printf(" failed\n ! mbedtls_ssl_write returned %d\n\n",
2400 ret);
Manuel Pégourié-Gonnard2d87e412014-10-13 18:38:36 +02002401 goto exit;
2402 }
2403
2404 frags = 1;
2405 written = ret;
Hanno Beckere4ad3e82017-09-18 15:05:46 +01002406
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002407 if (written < len) {
2408 mbedtls_printf(" warning\n ! request didn't fit into single datagram and "
2409 "was truncated to size %u", (unsigned) written);
Hanno Beckere4ad3e82017-09-18 15:05:46 +01002410 }
Manuel Pégourié-Gonnard2d87e412014-10-13 18:38:36 +02002411 }
Paul Bakker5121ce52009-01-03 21:22:43 +00002412
Manuel Pégourié-Gonnard787b6582013-07-16 15:43:17 +02002413 buf[written] = '\0';
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002414 mbedtls_printf(" %d bytes written in %d fragments\n\n%s\n",
2415 written, frags, (char *) buf);
Paul Bakker5121ce52009-01-03 21:22:43 +00002416
Andres Amaya Garciace6fbac2018-07-04 09:29:34 +01002417 /* Send a non-empty request if request_size == 0 */
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002418 if (len == 0) {
Andres Amaya Garciace6fbac2018-07-04 09:29:34 +01002419 opt.request_size = DFL_REQUEST_SIZE;
2420 goto send_request;
2421 }
2422
Paul Bakker5121ce52009-01-03 21:22:43 +00002423 /*
2424 * 7. Read the HTTP response
2425 */
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002426 mbedtls_printf(" < Read from server:");
2427 fflush(stdout);
Paul Bakker5121ce52009-01-03 21:22:43 +00002428
Manuel Pégourié-Gonnardae5050c2014-07-11 14:14:15 +02002429 /*
2430 * TLS and DTLS need different reading styles (stream vs datagram)
2431 */
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002432 if (opt.transport == MBEDTLS_SSL_TRANSPORT_STREAM) {
2433 do {
2434 len = sizeof(buf) - 1;
2435 memset(buf, 0, sizeof(buf));
2436 ret = mbedtls_ssl_read(&ssl, buf, len);
Manuel Pégourié-Gonnardae5050c2014-07-11 14:14:15 +02002437
Manuel Pégourié-Gonnardda19f4c2018-06-12 12:40:54 +02002438#if defined(MBEDTLS_ECP_RESTARTABLE)
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002439 if (ret == MBEDTLS_ERR_SSL_CRYPTO_IN_PROGRESS) {
Manuel Pégourié-Gonnardae5050c2014-07-11 14:14:15 +02002440 continue;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002441 }
Manuel Pégourié-Gonnardda19f4c2018-06-12 12:40:54 +02002442#endif
2443
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002444 if (ret == MBEDTLS_ERR_SSL_WANT_READ ||
2445 ret == MBEDTLS_ERR_SSL_WANT_WRITE) {
Hanno Becker16970d22017-10-10 15:56:37 +01002446 /* For event-driven IO, wait for socket to become available */
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002447 if (opt.event == 1 /* level triggered IO */) {
Hanno Becker16970d22017-10-10 15:56:37 +01002448#if defined(MBEDTLS_TIMING_C)
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002449 idle(&server_fd, &timer, ret);
Hanno Becker16970d22017-10-10 15:56:37 +01002450#else
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002451 idle(&server_fd, ret);
Hanno Becker16970d22017-10-10 15:56:37 +01002452#endif
2453 }
Manuel Pégourié-Gonnardae5050c2014-07-11 14:14:15 +02002454 continue;
Hanno Becker16970d22017-10-10 15:56:37 +01002455 }
Manuel Pégourié-Gonnardae5050c2014-07-11 14:14:15 +02002456
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002457 if (ret <= 0) {
2458 switch (ret) {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002459 case MBEDTLS_ERR_SSL_PEER_CLOSE_NOTIFY:
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002460 mbedtls_printf(" connection was closed gracefully\n");
Manuel Pégourié-Gonnardae5050c2014-07-11 14:14:15 +02002461 ret = 0;
2462 goto close_notify;
2463
2464 case 0:
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002465 case MBEDTLS_ERR_NET_CONN_RESET:
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002466 mbedtls_printf(" connection was reset by peer\n");
Manuel Pégourié-Gonnardae5050c2014-07-11 14:14:15 +02002467 ret = 0;
2468 goto reconnect;
2469
2470 default:
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002471 mbedtls_printf(" mbedtls_ssl_read returned -0x%x\n",
2472 (unsigned int) -ret);
Manuel Pégourié-Gonnardae5050c2014-07-11 14:14:15 +02002473 goto exit;
2474 }
2475 }
2476
2477 len = ret;
2478 buf[len] = '\0';
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002479 mbedtls_printf(" %d bytes read\n\n%s", len, (char *) buf);
Manuel Pégourié-Gonnardae5050c2014-07-11 14:14:15 +02002480
2481 /* End of message should be detected according to the syntax of the
2482 * application protocol (eg HTTP), just use a dummy test here. */
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002483 if (ret > 0 && buf[len-1] == '\n') {
Manuel Pégourié-Gonnardae5050c2014-07-11 14:14:15 +02002484 ret = 0;
2485 break;
2486 }
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002487 } while (1);
2488 } else { /* Not stream, so datagram */
2489 len = sizeof(buf) - 1;
2490 memset(buf, 0, sizeof(buf));
Paul Bakker5121ce52009-01-03 21:22:43 +00002491
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002492 while (1) {
2493 ret = mbedtls_ssl_read(&ssl, buf, len);
Hanno Becker16970d22017-10-10 15:56:37 +01002494
Manuel Pégourié-Gonnardda19f4c2018-06-12 12:40:54 +02002495#if defined(MBEDTLS_ECP_RESTARTABLE)
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002496 if (ret == MBEDTLS_ERR_SSL_CRYPTO_IN_PROGRESS) {
Manuel Pégourié-Gonnardda19f4c2018-06-12 12:40:54 +02002497 continue;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002498 }
Manuel Pégourié-Gonnardda19f4c2018-06-12 12:40:54 +02002499#endif
2500
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002501 if (ret != MBEDTLS_ERR_SSL_WANT_READ &&
2502 ret != MBEDTLS_ERR_SSL_WANT_WRITE) {
Hanno Becker16970d22017-10-10 15:56:37 +01002503 break;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002504 }
Hanno Becker16970d22017-10-10 15:56:37 +01002505
2506 /* For event-driven IO, wait for socket to become available */
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002507 if (opt.event == 1 /* level triggered IO */) {
Hanno Becker16970d22017-10-10 15:56:37 +01002508#if defined(MBEDTLS_TIMING_C)
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002509 idle(&server_fd, &timer, ret);
Hanno Becker16970d22017-10-10 15:56:37 +01002510#else
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002511 idle(&server_fd, ret);
Hanno Becker16970d22017-10-10 15:56:37 +01002512#endif
2513 }
2514 }
Paul Bakker5121ce52009-01-03 21:22:43 +00002515
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002516 if (ret <= 0) {
2517 switch (ret) {
Manuel Pégourié-Gonnard88369942015-05-06 16:19:31 +01002518 case MBEDTLS_ERR_SSL_TIMEOUT:
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002519 mbedtls_printf(" timeout\n");
2520 if (retry_left-- > 0) {
Manuel Pégourié-Gonnardf1e0df32014-10-02 14:02:32 +02002521 goto send_request;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002522 }
Manuel Pégourié-Gonnardf1e0df32014-10-02 14:02:32 +02002523 goto exit;
2524
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002525 case MBEDTLS_ERR_SSL_PEER_CLOSE_NOTIFY:
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002526 mbedtls_printf(" connection was closed gracefully\n");
Manuel Pégourié-Gonnarde08660e2014-08-16 11:28:40 +02002527 ret = 0;
Manuel Pégourié-Gonnardf1388742014-08-19 16:14:36 +02002528 goto close_notify;
Paul Bakker5121ce52009-01-03 21:22:43 +00002529
Manuel Pégourié-Gonnarde08660e2014-08-16 11:28:40 +02002530 default:
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002531 mbedtls_printf(" mbedtls_ssl_read returned -0x%x\n", (unsigned int) -ret);
Manuel Pégourié-Gonnarde08660e2014-08-16 11:28:40 +02002532 goto exit;
2533 }
Paul Bakker5690efc2011-05-26 13:16:06 +00002534 }
2535
Paul Bakker5121ce52009-01-03 21:22:43 +00002536 len = ret;
Paul Bakker93c32b22014-04-25 13:40:05 +02002537 buf[len] = '\0';
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002538 mbedtls_printf(" %d bytes read\n\n%s", len, (char *) buf);
Manuel Pégourié-Gonnardae5050c2014-07-11 14:14:15 +02002539 ret = 0;
Paul Bakker5121ce52009-01-03 21:22:43 +00002540 }
Paul Bakker5121ce52009-01-03 21:22:43 +00002541
Manuel Pégourié-Gonnarde08660e2014-08-16 11:28:40 +02002542 /*
Manuel Pégourié-Gonnarddbd23072015-09-04 10:20:17 +02002543 * 7b. Simulate hard reset and reconnect from same port?
2544 */
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002545 if (opt.reconnect_hard != 0) {
Manuel Pégourié-Gonnarddbd23072015-09-04 10:20:17 +02002546 opt.reconnect_hard = 0;
2547
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002548 mbedtls_printf(" . Restarting connection from same port...");
2549 fflush(stdout);
Manuel Pégourié-Gonnarddbd23072015-09-04 10:20:17 +02002550
Andrzej Kurek7829d8f2022-10-18 09:19:07 -04002551#if defined(MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED)
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002552 memset(peer_crt_info, 0, sizeof(peer_crt_info));
Andrzej Kurek7829d8f2022-10-18 09:19:07 -04002553#endif /* MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED */
Hanno Becker23699ef2019-02-26 12:36:53 +00002554
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002555 if ((ret = mbedtls_ssl_session_reset(&ssl)) != 0) {
2556 mbedtls_printf(" failed\n ! mbedtls_ssl_session_reset returned -0x%x\n\n",
2557 (unsigned int) -ret);
Manuel Pégourié-Gonnarddbd23072015-09-04 10:20:17 +02002558 goto exit;
2559 }
2560
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002561 while ((ret = mbedtls_ssl_handshake(&ssl)) != 0) {
2562 if (ret != MBEDTLS_ERR_SSL_WANT_READ &&
Manuel Pégourié-Gonnardb3c83072017-05-16 08:50:24 +02002563 ret != MBEDTLS_ERR_SSL_WANT_WRITE &&
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002564 ret != MBEDTLS_ERR_SSL_CRYPTO_IN_PROGRESS) {
2565 mbedtls_printf(" failed\n ! mbedtls_ssl_handshake returned -0x%x\n\n",
2566 (unsigned int) -ret);
Manuel Pégourié-Gonnarddbd23072015-09-04 10:20:17 +02002567 goto exit;
2568 }
Hanno Becker16970d22017-10-10 15:56:37 +01002569
2570 /* For event-driven IO, wait for socket to become available */
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002571 if (opt.event == 1 /* level triggered IO */) {
Hanno Becker16970d22017-10-10 15:56:37 +01002572#if defined(MBEDTLS_TIMING_C)
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002573 idle(&server_fd, &timer, ret);
Hanno Becker16970d22017-10-10 15:56:37 +01002574#else
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002575 idle(&server_fd, ret);
Hanno Becker16970d22017-10-10 15:56:37 +01002576#endif
2577 }
Manuel Pégourié-Gonnarddbd23072015-09-04 10:20:17 +02002578 }
2579
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002580 mbedtls_printf(" ok\n");
Manuel Pégourié-Gonnarddbd23072015-09-04 10:20:17 +02002581
2582 goto send_request;
2583 }
2584
2585 /*
Jarno Lamsa77e66652019-05-29 15:15:08 +03002586 * 7c. Simulate serialize/deserialize and go back to data exchange
2587 */
Jarno Lamsabbc7b412019-06-04 11:06:31 +03002588#if defined(MBEDTLS_SSL_CONTEXT_SERIALIZATION)
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002589 if (opt.serialize != 0) {
Jarno Lamsa15b3a7a2019-06-06 15:10:07 +03002590 size_t buf_len;
Jarno Lamsa77e66652019-05-29 15:15:08 +03002591
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002592 mbedtls_printf(" . Serializing live connection...");
Jarno Lamsa77e66652019-05-29 15:15:08 +03002593
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002594 ret = mbedtls_ssl_context_save(&ssl, NULL, 0, &buf_len);
2595 if (ret != MBEDTLS_ERR_SSL_BUFFER_TOO_SMALL) {
2596 mbedtls_printf(" failed\n ! mbedtls_ssl_context_save returned "
2597 "-0x%x\n\n", (unsigned int) -ret);
Jarno Lamsa77e66652019-05-29 15:15:08 +03002598
2599 goto exit;
2600 }
2601
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002602 if ((context_buf = mbedtls_calloc(1, buf_len)) == NULL) {
2603 mbedtls_printf(" failed\n ! Couldn't allocate buffer for "
2604 "serialized context");
Jarno Lamsa77e66652019-05-29 15:15:08 +03002605
2606 goto exit;
2607 }
Manuel Pégourié-Gonnard3309a672019-07-15 10:31:11 +02002608 context_buf_len = buf_len;
Jarno Lamsa77e66652019-05-29 15:15:08 +03002609
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002610 if ((ret = mbedtls_ssl_context_save(&ssl, context_buf,
2611 buf_len, &buf_len)) != 0) {
2612 mbedtls_printf(" failed\n ! mbedtls_ssl_context_save returned "
2613 "-0x%x\n\n", (unsigned int) -ret);
Jarno Lamsa77e66652019-05-29 15:15:08 +03002614
2615 goto exit;
2616 }
2617
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002618 mbedtls_printf(" ok\n");
Manuel Pégourié-Gonnarda88399c2019-07-12 10:41:55 +02002619
Piotr Nowicki3de298f2020-04-16 14:35:19 +02002620 /* Save serialized context to the 'opt.context_file' as a base64 code */
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002621 if (0 < strlen(opt.context_file)) {
Piotr Nowicki3de298f2020-04-16 14:35:19 +02002622 FILE *b64_file;
2623 uint8_t *b64_buf;
2624 size_t b64_len;
2625
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002626 mbedtls_printf(" . Save serialized context to a file... ");
Piotr Nowicki3de298f2020-04-16 14:35:19 +02002627
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002628 mbedtls_base64_encode(NULL, 0, &b64_len, context_buf, buf_len);
Piotr Nowicki3de298f2020-04-16 14:35:19 +02002629
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002630 if ((b64_buf = mbedtls_calloc(1, b64_len)) == NULL) {
2631 mbedtls_printf("failed\n ! Couldn't allocate buffer for "
2632 "the base64 code\n");
Piotr Nowicki3de298f2020-04-16 14:35:19 +02002633 goto exit;
2634 }
2635
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002636 if ((ret = mbedtls_base64_encode(b64_buf, b64_len, &b64_len,
2637 context_buf, buf_len)) != 0) {
2638 mbedtls_printf("failed\n ! mbedtls_base64_encode returned "
2639 "-0x%x\n", (unsigned int) -ret);
2640 mbedtls_free(b64_buf);
Piotr Nowicki3de298f2020-04-16 14:35:19 +02002641 goto exit;
2642 }
2643
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002644 if ((b64_file = fopen(opt.context_file, "w")) == NULL) {
2645 mbedtls_printf("failed\n ! Cannot open '%s' for writing.\n",
2646 opt.context_file);
2647 mbedtls_free(b64_buf);
Piotr Nowicki3de298f2020-04-16 14:35:19 +02002648 goto exit;
2649 }
2650
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002651 if (b64_len != fwrite(b64_buf, 1, b64_len, b64_file)) {
2652 mbedtls_printf("failed\n ! fwrite(%ld bytes) failed\n",
2653 (long) b64_len);
2654 mbedtls_free(b64_buf);
2655 fclose(b64_file);
Piotr Nowicki3de298f2020-04-16 14:35:19 +02002656 goto exit;
2657 }
2658
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002659 mbedtls_free(b64_buf);
2660 fclose(b64_file);
Piotr Nowicki3de298f2020-04-16 14:35:19 +02002661
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002662 mbedtls_printf("ok\n");
Piotr Nowicki3de298f2020-04-16 14:35:19 +02002663 }
2664
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002665 if (opt.serialize == 1) {
Manuel Pégourié-Gonnard9df5a822019-07-23 14:51:09 +02002666 /* nothing to do here, done by context_save() already */
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002667 mbedtls_printf(" . Context has been reset... ok\n");
Manuel Pégourié-Gonnarda88399c2019-07-12 10:41:55 +02002668 }
2669
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002670 if (opt.serialize == 2) {
2671 mbedtls_printf(" . Freeing and reinitializing context...");
Manuel Pégourié-Gonnarda88399c2019-07-12 10:41:55 +02002672
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002673 mbedtls_ssl_free(&ssl);
Jarno Lamsa304d61c2019-06-06 10:40:52 +03002674
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002675 mbedtls_ssl_init(&ssl);
Jarno Lamsa304d61c2019-06-06 10:40:52 +03002676
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002677 if ((ret = mbedtls_ssl_setup(&ssl, &conf)) != 0) {
2678 mbedtls_printf(" failed\n ! mbedtls_ssl_setup returned "
2679 "-0x%x\n\n", (unsigned int) -ret);
Jarno Lamsa304d61c2019-06-06 10:40:52 +03002680 goto exit;
2681 }
2682
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002683 if (opt.nbio == 2) {
2684 mbedtls_ssl_set_bio(&ssl, &server_fd, delayed_send,
2685 delayed_recv, NULL);
2686 } else {
2687 mbedtls_ssl_set_bio(&ssl, &server_fd, mbedtls_net_send,
2688 mbedtls_net_recv,
2689 opt.nbio == 0 ? mbedtls_net_recv_timeout : NULL);
2690 }
Jarno Lamsa304d61c2019-06-06 10:40:52 +03002691
Jarno Lamsa8e253212019-06-13 11:45:06 +03002692#if defined(MBEDTLS_TIMING_C)
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002693 mbedtls_ssl_set_timer_cb(&ssl, &timer,
2694 mbedtls_timing_set_delay,
2695 mbedtls_timing_get_delay);
Jarno Lamsa8e253212019-06-13 11:45:06 +03002696#endif /* MBEDTLS_TIMING_C */
Manuel Pégourié-Gonnarda88399c2019-07-12 10:41:55 +02002697
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002698 mbedtls_printf(" ok\n");
Jarno Lamsa304d61c2019-06-06 10:40:52 +03002699 }
2700
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002701 mbedtls_printf(" . Deserializing connection...");
Jarno Lamsa77e66652019-05-29 15:15:08 +03002702
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002703 if ((ret = mbedtls_ssl_context_load(&ssl, context_buf,
2704 buf_len)) != 0) {
2705 mbedtls_printf("failed\n ! mbedtls_ssl_context_load returned "
2706 "-0x%x\n\n", (unsigned int) -ret);
Jarno Lamsa77e66652019-05-29 15:15:08 +03002707
2708 goto exit;
2709 }
Manuel Pégourié-Gonnarda88399c2019-07-12 10:41:55 +02002710
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002711 mbedtls_free(context_buf);
Manuel Pégourié-Gonnard3309a672019-07-15 10:31:11 +02002712 context_buf = NULL;
2713 context_buf_len = 0;
2714
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002715 mbedtls_printf(" ok\n");
Jarno Lamsa77e66652019-05-29 15:15:08 +03002716 }
Jarno Lamsa93c6ff22019-06-04 15:36:18 +03002717#endif /* MBEDTLS_SSL_CONTEXT_SERIALIZATION */
Jarno Lamsa77e66652019-05-29 15:15:08 +03002718
2719 /*
2720 * 7d. Continue doing data exchanges?
Manuel Pégourié-Gonnarda8c0a0d2014-08-15 12:07:38 +02002721 */
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002722 if (--opt.exchanges > 0) {
Manuel Pégourié-Gonnarda8c0a0d2014-08-15 12:07:38 +02002723 goto send_request;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002724 }
Manuel Pégourié-Gonnarda8c0a0d2014-08-15 12:07:38 +02002725
2726 /*
Manuel Pégourié-Gonnardf1388742014-08-19 16:14:36 +02002727 * 8. Done, cleanly close the connection
2728 */
2729close_notify:
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002730 mbedtls_printf(" . Closing the connection...");
2731 fflush(stdout);
Manuel Pégourié-Gonnardf1388742014-08-19 16:14:36 +02002732
Manuel Pégourié-Gonnard56941fe2020-02-17 11:04:33 +01002733 /*
2734 * Most of the time sending a close_notify before closing is the right
2735 * thing to do. However, when the server already knows how many messages
2736 * are expected and closes the connection by itself, this alert becomes
2737 * redundant. Sometimes with DTLS this redundancy becomes a problem by
2738 * leading to a race condition where the server might close the connection
2739 * before seeing the alert, and since UDP is connection-less when the
2740 * alert arrives it will be seen as a new connection, which will fail as
2741 * the alert is clearly not a valid ClientHello. This may cause spurious
2742 * failures in tests that use DTLS and resumption with ssl_server2 in
2743 * ssl-opt.sh, avoided by enabling skip_close_notify client-side.
2744 */
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002745 if (opt.skip_close_notify == 0) {
Manuel Pégourié-Gonnard56941fe2020-02-17 11:04:33 +01002746 /* No error checking, the connection might be closed already */
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002747 do {
2748 ret = mbedtls_ssl_close_notify(&ssl);
2749 } while (ret == MBEDTLS_ERR_SSL_WANT_WRITE);
Manuel Pégourié-Gonnard56941fe2020-02-17 11:04:33 +01002750 ret = 0;
2751 }
Manuel Pégourié-Gonnardf1388742014-08-19 16:14:36 +02002752
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002753 mbedtls_printf(" done\n");
Manuel Pégourié-Gonnardf1388742014-08-19 16:14:36 +02002754
2755 /*
2756 * 9. Reconnect?
Manuel Pégourié-Gonnarde08660e2014-08-16 11:28:40 +02002757 */
2758reconnect:
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002759 if (opt.reconnect != 0) {
Manuel Pégourié-Gonnardcf2e97e2013-08-02 15:04:36 +02002760 --opt.reconnect;
Manuel Pégourié-Gonnardaaa1eab2013-07-30 13:43:43 +02002761
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002762 mbedtls_net_free(&server_fd);
Manuel Pégourié-Gonnard6b0d2682014-03-25 11:24:43 +01002763
Manuel Pégourié-Gonnardd2377e72015-05-13 13:58:56 +02002764#if defined(MBEDTLS_TIMING_C)
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002765 if (opt.reco_delay > 0) {
2766 mbedtls_net_usleep(1000000 * opt.reco_delay);
2767 }
Manuel Pégourié-Gonnardd2377e72015-05-13 13:58:56 +02002768#endif
Manuel Pégourié-Gonnard38d1eba2013-08-23 10:44:29 +02002769
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002770 mbedtls_printf(" . Reconnecting with saved session...");
Manuel Pégourié-Gonnardaaa1eab2013-07-30 13:43:43 +02002771
Andrzej Kurek7829d8f2022-10-18 09:19:07 -04002772#if defined(MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED)
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002773 memset(peer_crt_info, 0, sizeof(peer_crt_info));
Andrzej Kurek7829d8f2022-10-18 09:19:07 -04002774#endif /* MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED */
Hanno Beckera1051b42019-02-26 11:38:29 +00002775
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002776 if ((ret = mbedtls_ssl_session_reset(&ssl)) != 0) {
2777 mbedtls_printf(" failed\n ! mbedtls_ssl_session_reset returned -0x%x\n\n",
2778 (unsigned int) -ret);
Manuel Pégourié-Gonnardaaa1eab2013-07-30 13:43:43 +02002779 goto exit;
2780 }
2781
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002782 if (opt.reco_mode == 1) {
2783 if ((ret = mbedtls_ssl_session_load(&saved_session,
2784 session_data,
2785 session_data_len)) != 0) {
2786 mbedtls_printf(" failed\n ! mbedtls_ssl_session_load returned -0x%x\n\n",
2787 (unsigned int) -ret);
Manuel Pégourié-Gonnarda7c37652019-05-20 12:46:26 +02002788 goto exit;
2789 }
Manuel Pégourié-Gonnard21548632019-05-16 11:39:42 +02002790 }
2791
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002792 if ((ret = mbedtls_ssl_set_session(&ssl, &saved_session)) != 0) {
2793 mbedtls_printf(" failed\n ! mbedtls_ssl_set_session returned -0x%x\n\n",
2794 (unsigned int) -ret);
Manuel Pégourié-Gonnardc5fd3912014-07-08 14:05:52 +02002795 goto exit;
2796 }
Manuel Pégourié-Gonnardaaa1eab2013-07-30 13:43:43 +02002797
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002798 if ((ret = mbedtls_net_connect(&server_fd,
2799 opt.server_addr, opt.server_port,
2800 opt.transport == MBEDTLS_SSL_TRANSPORT_STREAM ?
2801 MBEDTLS_NET_PROTO_TCP : MBEDTLS_NET_PROTO_UDP)) != 0) {
2802 mbedtls_printf(" failed\n ! mbedtls_net_connect returned -0x%x\n\n",
2803 (unsigned int) -ret);
Manuel Pégourié-Gonnardaaa1eab2013-07-30 13:43:43 +02002804 goto exit;
2805 }
2806
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002807 if (opt.nbio > 0) {
2808 ret = mbedtls_net_set_nonblock(&server_fd);
2809 } else {
2810 ret = mbedtls_net_set_block(&server_fd);
2811 }
2812 if (ret != 0) {
2813 mbedtls_printf(" failed\n ! net_set_(non)block() returned -0x%x\n\n",
2814 (unsigned int) -ret);
Manuel Pégourié-Gonnard85beb302014-10-02 17:59:19 +02002815 goto exit;
2816 }
2817
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002818 while ((ret = mbedtls_ssl_handshake(&ssl)) != 0) {
2819 if (ret != MBEDTLS_ERR_SSL_WANT_READ &&
Manuel Pégourié-Gonnardb3c83072017-05-16 08:50:24 +02002820 ret != MBEDTLS_ERR_SSL_WANT_WRITE &&
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002821 ret != MBEDTLS_ERR_SSL_CRYPTO_IN_PROGRESS) {
2822 mbedtls_printf(" failed\n ! mbedtls_ssl_handshake returned -0x%x\n\n",
2823 (unsigned int) -ret);
Manuel Pégourié-Gonnardaaa1eab2013-07-30 13:43:43 +02002824 goto exit;
2825 }
2826 }
2827
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002828 mbedtls_printf(" ok\n");
Manuel Pégourié-Gonnardaaa1eab2013-07-30 13:43:43 +02002829
2830 goto send_request;
2831 }
2832
Manuel Pégourié-Gonnarde08660e2014-08-16 11:28:40 +02002833 /*
2834 * Cleanup and exit
2835 */
Paul Bakker5121ce52009-01-03 21:22:43 +00002836exit:
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002837#ifdef MBEDTLS_ERROR_C
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002838 if (ret != 0) {
Paul Bakkera3d195c2011-11-27 21:07:34 +00002839 char error_buf[100];
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002840 mbedtls_strerror(ret, error_buf, 100);
2841 mbedtls_printf("Last error was: -0x%X - %s\n\n", (unsigned int) -ret, error_buf);
Paul Bakkera3d195c2011-11-27 21:07:34 +00002842 }
2843#endif
2844
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002845 mbedtls_net_free(&server_fd);
Manuel Pégourié-Gonnarde08660e2014-08-16 11:28:40 +02002846
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002847 mbedtls_ssl_free(&ssl);
2848 mbedtls_ssl_config_free(&conf);
2849 mbedtls_ssl_session_free(&saved_session);
Przemyslaw Stekiela226ac92021-11-10 10:46:11 +01002850
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002851 if (session_data != NULL) {
2852 mbedtls_platform_zeroize(session_data, session_data_len);
2853 }
2854 mbedtls_free(session_data);
Przemyslaw Stekiela226ac92021-11-10 10:46:11 +01002855#if defined(MBEDTLS_SSL_CONTEXT_SERIALIZATION)
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002856 if (context_buf != NULL) {
2857 mbedtls_platform_zeroize(context_buf, context_buf_len);
2858 }
2859 mbedtls_free(context_buf);
Przemyslaw Stekiela226ac92021-11-10 10:46:11 +01002860#endif
2861
Andrzej Kurek7829d8f2022-10-18 09:19:07 -04002862#if defined(MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED)
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002863 mbedtls_x509_crt_free(&clicert);
2864 mbedtls_x509_crt_free(&cacert);
2865 mbedtls_pk_free(&pkey);
Manuel Pégourié-Gonnardcfdf8f42018-11-08 09:52:25 +01002866#if defined(MBEDTLS_USE_PSA_CRYPTO)
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002867 psa_destroy_key(key_slot);
Manuel Pégourié-Gonnardcfdf8f42018-11-08 09:52:25 +01002868#endif
Andrzej Kurek7829d8f2022-10-18 09:19:07 -04002869#endif /* MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED */
Gilles Peskine34babfc2021-02-16 15:44:37 +01002870
Gilles Peskineeccd8882020-03-10 12:19:08 +01002871#if defined(MBEDTLS_KEY_EXCHANGE_SOME_PSK_ENABLED) && \
Hanno Becker3f24ea92018-11-05 13:25:17 +00002872 defined(MBEDTLS_USE_PSA_CRYPTO)
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002873 if (opt.psk_opaque != 0) {
Hanno Becker3f24ea92018-11-05 13:25:17 +00002874 /* This is ok even if the slot hasn't been
2875 * initialized (we might have jumed here
2876 * immediately because of bad cmd line params,
2877 * for example). */
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002878 status = psa_destroy_key(slot);
2879 if ((status != PSA_SUCCESS) &&
2880 (opt.query_config_mode == DFL_QUERY_CONFIG_MODE)) {
2881 mbedtls_printf("Failed to destroy key slot %u - error was %d",
2882 (unsigned) slot, (int) status);
2883 if (ret == 0) {
Hanno Becker3f24ea92018-11-05 13:25:17 +00002884 ret = MBEDTLS_ERR_SSL_HW_ACCEL_FAILED;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002885 }
Hanno Becker3f24ea92018-11-05 13:25:17 +00002886 }
2887 }
Gilles Peskineeccd8882020-03-10 12:19:08 +01002888#endif /* MBEDTLS_KEY_EXCHANGE_SOME_PSK_ENABLED &&
Hanno Becker3f24ea92018-11-05 13:25:17 +00002889 MBEDTLS_USE_PSA_CRYPTO */
2890
Przemyslaw Stekield6e0a582021-11-03 09:06:09 +01002891#if defined(MBEDTLS_USE_PSA_CRYPTO)
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002892 const char *message = mbedtls_test_helper_is_psa_leaking();
2893 if (message) {
2894 if (ret == 0) {
Przemyslaw Stekield6e0a582021-11-03 09:06:09 +01002895 ret = 1;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002896 }
2897 mbedtls_printf("PSA memory leak detected: %s\n", message);
Przemyslaw Stekield6e0a582021-11-03 09:06:09 +01002898 }
2899#endif /* MBEDTLS_USE_PSA_CRYPTO */
2900
2901 /* For builds with MBEDTLS_TEST_USE_PSA_CRYPTO_RNG psa crypto
2902 * resources are freed by rng_free(). */
2903#if defined(MBEDTLS_USE_PSA_CRYPTO) && \
2904 !defined(MBEDTLS_TEST_USE_PSA_CRYPTO_RNG)
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002905 mbedtls_psa_crypto_free();
Przemyslaw Stekield6e0a582021-11-03 09:06:09 +01002906#endif
2907
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002908 rng_free(&rng);
Gilles Peskineb8c48402021-02-08 20:28:22 +01002909
Gilles Peskine60fe6602021-02-16 18:56:42 +01002910#if defined(MBEDTLS_TEST_HOOKS)
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002911 if (test_hooks_failure_detected()) {
2912 if (ret == 0) {
Gilles Peskine53dea742021-02-02 22:55:06 +01002913 ret = 1;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002914 }
2915 mbedtls_printf("Test hooks detected errors.\n");
Gilles Peskine53dea742021-02-02 22:55:06 +01002916 }
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002917 test_hooks_free();
Gilles Peskine60fe6602021-02-16 18:56:42 +01002918#endif /* MBEDTLS_TEST_HOOKS */
Gilles Peskine53dea742021-02-02 22:55:06 +01002919
Piotr Nowicki7d01ef62019-11-20 15:00:17 +01002920#if defined(MBEDTLS_MEMORY_BUFFER_ALLOC_C)
2921#if defined(MBEDTLS_MEMORY_DEBUG)
2922 mbedtls_memory_buffer_alloc_status();
2923#endif
2924 mbedtls_memory_buffer_alloc_free();
Gilles Peskine34babfc2021-02-16 15:44:37 +01002925#endif /* MBEDTLS_MEMORY_BUFFER_ALLOC_C */
Piotr Nowicki7d01ef62019-11-20 15:00:17 +01002926
gabor-mezei-armde472172020-09-04 14:44:25 +02002927#if defined(_WIN32)
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002928 if (opt.query_config_mode == DFL_QUERY_CONFIG_MODE) {
2929 mbedtls_printf(" + Press Enter to exit this program.\n");
2930 fflush(stdout); getchar();
gabor-mezei-arma9eecf12020-07-07 11:11:02 +02002931 }
gabor-mezei-armde472172020-09-04 14:44:25 +02002932#endif
Paul Bakker5121ce52009-01-03 21:22:43 +00002933
Paul Bakkerdbd79ca2013-07-24 16:28:35 +02002934 // Shell can not handle large exit numbers -> 1 for errors
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002935 if (ret < 0) {
Paul Bakkerdbd79ca2013-07-24 16:28:35 +02002936 ret = 1;
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002937 }
Paul Bakkerdbd79ca2013-07-24 16:28:35 +02002938
Gilles Peskine1b6c09a2023-01-11 14:52:35 +01002939 if (opt.query_config_mode == DFL_QUERY_CONFIG_MODE) {
2940 mbedtls_exit(ret);
2941 } else {
2942 mbedtls_exit(query_config_ret);
2943 }
Paul Bakker5121ce52009-01-03 21:22:43 +00002944}
Gilles Peskineb4df7542021-01-08 21:20:09 +01002945#endif /* !MBEDTLS_SSL_TEST_IMPOSSIBLE && MBEDTLS_SSL_CLI_C */