Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 1 | /* |
| 2 | * SSL client with certificate authentication |
| 3 | * |
Bence Szépkúti | 1e14827 | 2020-08-07 13:07:28 +0200 | [diff] [blame] | 4 | * Copyright The Mbed TLS Contributors |
Dave Rodgman | 7ff7965 | 2023-11-03 12:04:52 +0000 | [diff] [blame] | 5 | * SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 6 | */ |
| 7 | |
Gilles Peskine | ab7ce96 | 2021-01-05 21:27:53 +0100 | [diff] [blame] | 8 | #include "ssl_test_lib.h" |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 9 | |
Przemyslaw Stekiel | 7c7fb87 | 2021-10-26 14:32:10 +0200 | [diff] [blame] | 10 | #if defined(MBEDTLS_USE_PSA_CRYPTO) |
Przemyslaw Stekiel | 7c7fb87 | 2021-10-26 14:32:10 +0200 | [diff] [blame] | 11 | #include "test/psa_crypto_helpers.h" |
| 12 | #endif |
| 13 | |
Gilles Peskine | ab7ce96 | 2021-01-05 21:27:53 +0100 | [diff] [blame] | 14 | #if defined(MBEDTLS_SSL_TEST_IMPOSSIBLE) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 15 | int main(void) |
Manuel Pégourié-Gonnard | e3c41ad | 2015-05-13 10:04:32 +0200 | [diff] [blame] | 16 | { |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 17 | mbedtls_printf(MBEDTLS_SSL_TEST_IMPOSSIBLE); |
| 18 | mbedtls_exit(0); |
Gilles Peskine | ab7ce96 | 2021-01-05 21:27:53 +0100 | [diff] [blame] | 19 | } |
| 20 | #elif !defined(MBEDTLS_SSL_CLI_C) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 21 | int main(void) |
Gilles Peskine | ab7ce96 | 2021-01-05 21:27:53 +0100 | [diff] [blame] | 22 | { |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 23 | mbedtls_printf("MBEDTLS_SSL_CLI_C not defined.\n"); |
| 24 | mbedtls_exit(0); |
Manuel Pégourié-Gonnard | e3c41ad | 2015-05-13 10:04:32 +0200 | [diff] [blame] | 25 | } |
Gilles Peskine | b4df754 | 2021-01-08 21:20:09 +0100 | [diff] [blame] | 26 | #else /* !MBEDTLS_SSL_TEST_IMPOSSIBLE && MBEDTLS_SSL_CLI_C */ |
Manuel Pégourié-Gonnard | e3c41ad | 2015-05-13 10:04:32 +0200 | [diff] [blame] | 27 | |
Piotr Nowicki | 7d01ef6 | 2019-11-20 15:00:17 +0100 | [diff] [blame] | 28 | /* 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 Becker | e4ad3e8 | 2017-09-18 15:05:46 +0100 | [diff] [blame] | 32 | #define MAX_REQUEST_SIZE 20000 |
| 33 | #define MAX_REQUEST_SIZE_STR "20000" |
| 34 | |
Paul Bakker | 9caf2d2 | 2010-02-18 19:37:19 +0000 | [diff] [blame] | 35 | #define DFL_SERVER_NAME "localhost" |
Manuel Pégourié-Gonnard | 0d8780b | 2014-02-25 11:11:26 +0100 | [diff] [blame] | 36 | #define DFL_SERVER_ADDR NULL |
Manuel Pégourié-Gonnard | c0d7494 | 2015-06-23 12:30:57 +0200 | [diff] [blame] | 37 | #define DFL_SERVER_PORT "4433" |
Paul Bakker | 9caf2d2 | 2010-02-18 19:37:19 +0000 | [diff] [blame] | 38 | #define DFL_REQUEST_PAGE "/" |
Manuel Pégourié-Gonnard | dea29c5 | 2014-06-18 13:07:56 +0200 | [diff] [blame] | 39 | #define DFL_REQUEST_SIZE -1 |
Paul Bakker | 9caf2d2 | 2010-02-18 19:37:19 +0000 | [diff] [blame] | 40 | #define DFL_DEBUG_LEVEL 0 |
Hanno Becker | bb425db | 2019-04-03 12:59:58 +0100 | [diff] [blame] | 41 | #define DFL_CONTEXT_CRT_CB 0 |
Manuel Pégourié-Gonnard | 5575316 | 2014-02-26 13:47:08 +0100 | [diff] [blame] | 42 | #define DFL_NBIO 0 |
Hanno Becker | 16970d2 | 2017-10-10 15:56:37 +0100 | [diff] [blame] | 43 | #define DFL_EVENT 0 |
Manuel Pégourié-Gonnard | 6b65141 | 2014-10-01 18:29:03 +0200 | [diff] [blame] | 44 | #define DFL_READ_TIMEOUT 0 |
Manuel Pégourié-Gonnard | f1e0df3 | 2014-10-02 14:02:32 +0200 | [diff] [blame] | 45 | #define DFL_MAX_RESEND 0 |
Paul Bakker | 5690efc | 2011-05-26 13:16:06 +0000 | [diff] [blame] | 46 | #define DFL_CA_FILE "" |
Paul Bakker | 8d91458 | 2012-06-04 12:46:42 +0000 | [diff] [blame] | 47 | #define DFL_CA_PATH "" |
Paul Bakker | 6796839 | 2010-07-18 08:28:20 +0000 | [diff] [blame] | 48 | #define DFL_CRT_FILE "" |
| 49 | #define DFL_KEY_FILE "" |
Manuel Pégourié-Gonnard | ef68be4 | 2018-11-07 09:42:35 +0100 | [diff] [blame] | 50 | #define DFL_KEY_OPAQUE 0 |
Hanno Becker | ca04fdc | 2018-11-07 16:22:14 +0000 | [diff] [blame] | 51 | #define DFL_KEY_PWD "" |
Paul Bakker | d4a56ec | 2013-04-16 18:05:29 +0200 | [diff] [blame] | 52 | #define DFL_PSK "" |
Hanno Becker | 1d911cd | 2018-11-15 13:06:09 +0000 | [diff] [blame] | 53 | #define DFL_PSK_OPAQUE 0 |
Paul Bakker | d4a56ec | 2013-04-16 18:05:29 +0200 | [diff] [blame] | 54 | #define DFL_PSK_IDENTITY "Client_identity" |
Manuel Pégourié-Gonnard | 70905a7 | 2015-09-16 11:08:34 +0200 | [diff] [blame] | 55 | #define DFL_ECJPAKE_PW NULL |
Manuel Pégourié-Gonnard | b3c8307 | 2017-05-16 08:50:24 +0200 | [diff] [blame] | 56 | #define DFL_EC_MAX_OPS -1 |
Paul Bakker | 5193688 | 2011-02-20 16:05:58 +0000 | [diff] [blame] | 57 | #define DFL_FORCE_CIPHER 0 |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 58 | #define DFL_RENEGOTIATION MBEDTLS_SSL_RENEGOTIATION_DISABLED |
Manuel Pégourié-Gonnard | 85d915b | 2014-11-03 20:10:36 +0100 | [diff] [blame] | 59 | #define DFL_ALLOW_LEGACY -2 |
Manuel Pégourié-Gonnard | 780d671 | 2014-02-20 17:19:59 +0100 | [diff] [blame] | 60 | #define DFL_RENEGOTIATE 0 |
Manuel Pégourié-Gonnard | a8c0a0d | 2014-08-15 12:07:38 +0200 | [diff] [blame] | 61 | #define DFL_EXCHANGES 1 |
Manuel Pégourié-Gonnard | 8c8be1e | 2015-03-31 14:21:11 +0200 | [diff] [blame] | 62 | #define DFL_MIN_VERSION -1 |
Paul Bakker | 1d29fb5 | 2012-09-28 13:28:45 +0000 | [diff] [blame] | 63 | #define DFL_MAX_VERSION -1 |
Manuel Pégourié-Gonnard | d42b7c8 | 2015-03-20 19:44:04 +0000 | [diff] [blame] | 64 | #define DFL_ARC4 -1 |
Gilles Peskine | bc70a18 | 2017-05-09 15:59:24 +0200 | [diff] [blame] | 65 | #define DFL_SHA1 -1 |
Manuel Pégourié-Gonnard | fa44f20 | 2015-03-27 17:52:25 +0100 | [diff] [blame] | 66 | #define DFL_AUTH_MODE -1 |
Gilles Peskine | 724a7bb | 2025-02-12 21:50:53 +0100 | [diff] [blame] | 67 | #define DFL_SET_HOSTNAME 1 |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 68 | #define DFL_MFL_CODE MBEDTLS_SSL_MAX_FRAG_LEN_NONE |
Manuel Pégourié-Gonnard | 265fe99 | 2015-01-09 12:43:35 +0100 | [diff] [blame] | 69 | #define DFL_TRUNC_HMAC -1 |
Manuel Pégourié-Gonnard | c82ee35 | 2015-01-07 16:35:25 +0100 | [diff] [blame] | 70 | #define DFL_RECSPLIT -1 |
Manuel Pégourié-Gonnard | 9096682 | 2015-06-11 17:02:29 +0200 | [diff] [blame] | 71 | #define DFL_DHMLEN -1 |
Manuel Pégourié-Gonnard | aaa1eab | 2013-07-30 13:43:43 +0200 | [diff] [blame] | 72 | #define DFL_RECONNECT 0 |
Manuel Pégourié-Gonnard | c55a5b7 | 2014-02-20 22:50:56 +0100 | [diff] [blame] | 73 | #define DFL_RECO_DELAY 0 |
Manuel Pégourié-Gonnard | a7c3765 | 2019-05-20 12:46:26 +0200 | [diff] [blame] | 74 | #define DFL_RECO_MODE 1 |
Hanno Becker | 90cb359 | 2019-04-09 17:24:19 +0100 | [diff] [blame] | 75 | #define DFL_CID_ENABLED 0 |
| 76 | #define DFL_CID_VALUE "" |
Hanno Becker | b42ec0d | 2019-05-03 17:30:59 +0100 | [diff] [blame] | 77 | #define DFL_CID_ENABLED_RENEGO -1 |
| 78 | #define DFL_CID_VALUE_RENEGO NULL |
Manuel Pégourié-Gonnard | dbd2307 | 2015-09-04 10:20:17 +0200 | [diff] [blame] | 79 | #define DFL_RECONNECT_HARD 0 |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 80 | #define DFL_TICKETS MBEDTLS_SSL_SESSION_TICKETS_ENABLED |
Manuel Pégourié-Gonnard | 1bd2281 | 2014-04-05 14:34:07 +0200 | [diff] [blame] | 81 | #define DFL_ALPN_STRING NULL |
Hanno Becker | e6706e6 | 2017-05-15 16:05:15 +0100 | [diff] [blame] | 82 | #define DFL_CURVES NULL |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 83 | #define DFL_TRANSPORT MBEDTLS_SSL_TRANSPORT_STREAM |
Manuel Pégourié-Gonnard | d823bd0 | 2014-10-01 14:40:56 +0200 | [diff] [blame] | 84 | #define DFL_HS_TO_MIN 0 |
| 85 | #define DFL_HS_TO_MAX 0 |
Manuel Pégourié-Gonnard | b747c6c | 2018-08-12 13:28:53 +0200 | [diff] [blame] | 86 | #define DFL_DTLS_MTU -1 |
Hanno Becker | 4d61591 | 2018-08-14 13:33:30 +0100 | [diff] [blame] | 87 | #define DFL_DGRAM_PACKING 1 |
Manuel Pégourié-Gonnard | 1cbd39d | 2014-10-20 13:34:59 +0200 | [diff] [blame] | 88 | #define DFL_FALLBACK -1 |
Manuel Pégourié-Gonnard | 367381f | 2014-10-20 18:40:56 +0200 | [diff] [blame] | 89 | #define DFL_EXTENDED_MS -1 |
Manuel Pégourié-Gonnard | 699cafa | 2014-10-27 13:57:03 +0100 | [diff] [blame] | 90 | #define DFL_ETM -1 |
Jarno Lamsa | 9831c8a | 2019-05-29 13:33:32 +0300 | [diff] [blame] | 91 | #define DFL_SERIALIZE 0 |
Piotr Nowicki | 3de298f | 2020-04-16 14:35:19 +0200 | [diff] [blame] | 92 | #define DFL_CONTEXT_FILE "" |
Jarno Lamsa | 9831c8a | 2019-05-29 13:33:32 +0300 | [diff] [blame] | 93 | #define DFL_EXTENDED_MS_ENFORCE -1 |
Jarno Lamsa | 1b4a2ba | 2019-03-27 17:55:27 +0200 | [diff] [blame] | 94 | #define DFL_CA_CALLBACK 0 |
Ron Eldor | b7fd64c | 2019-05-12 11:03:32 +0300 | [diff] [blame] | 95 | #define DFL_EAP_TLS 0 |
Philippe Antoine | aa4d152 | 2019-06-06 21:24:31 +0200 | [diff] [blame] | 96 | #define DFL_REPRODUCIBLE 0 |
Hanno Becker | 48f3a3d | 2019-08-29 06:31:22 +0100 | [diff] [blame] | 97 | #define DFL_NSS_KEYLOG 0 |
| 98 | #define DFL_NSS_KEYLOG_FILE NULL |
Manuel Pégourié-Gonnard | 56941fe | 2020-02-17 11:04:33 +0100 | [diff] [blame] | 99 | #define DFL_SKIP_CLOSE_NOTIFY 0 |
gabor-mezei-arm | a9eecf1 | 2020-07-07 11:11:02 +0200 | [diff] [blame] | 100 | #define DFL_QUERY_CONFIG_MODE 0 |
Ron Eldor | 6ea6451 | 2018-07-02 10:08:07 +0300 | [diff] [blame] | 101 | #define DFL_USE_SRTP 0 |
Ron Eldor | 311b95a | 2018-07-08 08:50:31 +0300 | [diff] [blame] | 102 | #define DFL_SRTP_FORCE_PROFILE 0 |
Ron Eldor | 6ea6451 | 2018-07-02 10:08:07 +0300 | [diff] [blame] | 103 | #define DFL_SRTP_MKI "" |
Paul Bakker | 0e6975b | 2009-02-10 22:19:10 +0000 | [diff] [blame] | 104 | |
Paul Bakker | 93c32b2 | 2014-04-25 13:40:05 +0200 | [diff] [blame] | 105 | #define GET_REQUEST "GET %s HTTP/1.0\r\nExtra-header: " |
| 106 | #define GET_REQUEST_END "\r\n\r\n" |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 107 | |
Andrzej Kurek | 7829d8f | 2022-10-18 09:19:07 -0400 | [diff] [blame] | 108 | #if defined(MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED) |
Janos Follath | ae13beb | 2019-04-05 14:06:58 +0100 | [diff] [blame] | 109 | #define USAGE_CONTEXT_CRT_CB \ |
Hanno Becker | bb425db | 2019-04-03 12:59:58 +0100 | [diff] [blame] | 110 | " 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 Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 112 | " Possible values:\n" \ |
Hanno Becker | bb425db | 2019-04-03 12:59:58 +0100 | [diff] [blame] | 113 | " - 0 (default): Use CRT callback bound to configuration\n" \ |
| 114 | " - 1: Use CRT callback bound to SSL context\n" |
| 115 | #else |
Janos Follath | ae13beb | 2019-04-05 14:06:58 +0100 | [diff] [blame] | 116 | #define USAGE_CONTEXT_CRT_CB "" |
Andrzej Kurek | 7829d8f | 2022-10-18 09:19:07 -0400 | [diff] [blame] | 117 | #endif /* MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED */ |
| 118 | #if defined(MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED) |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 119 | #if defined(MBEDTLS_FS_IO) |
Paul Bakker | 5690efc | 2011-05-26 13:16:06 +0000 | [diff] [blame] | 120 | #define USAGE_IO \ |
Paul Bakker | 1f9d02d | 2012-11-20 10:30:55 +0100 | [diff] [blame] | 121 | " ca_file=%%s The single file containing the top-level CA(s) you fully trust\n" \ |
| 122 | " default: \"\" (pre-loaded)\n" \ |
Hanno Becker | 422d199 | 2019-05-01 11:16:28 +0100 | [diff] [blame] | 123 | " use \"none\" to skip loading any top-level CAs.\n" \ |
Paul Bakker | 1f9d02d | 2012-11-20 10:30:55 +0100 | [diff] [blame] | 124 | " ca_path=%%s The path containing the top-level CA(s) you fully trust\n" \ |
| 125 | " default: \"\" (pre-loaded) (overrides ca_file)\n" \ |
Hanno Becker | 422d199 | 2019-05-01 11:16:28 +0100 | [diff] [blame] | 126 | " use \"none\" to skip loading any top-level CAs.\n" \ |
Paul Bakker | 1f9d02d | 2012-11-20 10:30:55 +0100 | [diff] [blame] | 127 | " crt_file=%%s Your own cert and chain (in bottom to top order, top may be omitted)\n" \ |
| 128 | " default: \"\" (pre-loaded)\n" \ |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 129 | " key_file=%%s default: \"\" (pre-loaded)\n" \ |
| 130 | " key_pwd=%%s Password for key specified by key_file argument\n" \ |
Hanno Becker | bffa54f | 2020-08-17 09:42:19 +0100 | [diff] [blame] | 131 | " default: none\n" |
Paul Bakker | 5690efc | 2011-05-26 13:16:06 +0000 | [diff] [blame] | 132 | #else |
| 133 | #define USAGE_IO \ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 134 | " No file operations available (MBEDTLS_FS_IO not defined)\n" |
| 135 | #endif /* MBEDTLS_FS_IO */ |
Andrzej Kurek | 7829d8f | 2022-10-18 09:19:07 -0400 | [diff] [blame] | 136 | #else /* MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED */ |
Paul Bakker | ed27a04 | 2013-04-18 22:46:23 +0200 | [diff] [blame] | 137 | #define USAGE_IO "" |
Andrzej Kurek | 7829d8f | 2022-10-18 09:19:07 -0400 | [diff] [blame] | 138 | #endif /* MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED */ |
| 139 | #if defined(MBEDTLS_USE_PSA_CRYPTO) && defined(MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED) |
Manuel Pégourié-Gonnard | ef68be4 | 2018-11-07 09:42:35 +0100 | [diff] [blame] | 140 | #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 Bakker | ed27a04 | 2013-04-18 22:46:23 +0200 | [diff] [blame] | 146 | |
Hanno Becker | a0e20d0 | 2019-05-15 14:03:01 +0100 | [diff] [blame] | 147 | #if defined(MBEDTLS_SSL_DTLS_CONNECTION_ID) |
Hanno Becker | 90cb359 | 2019-04-09 17:24:19 +0100 | [diff] [blame] | 148 | #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 Becker | b42ec0d | 2019-05-03 17:30:59 +0100 | [diff] [blame] | 151 | " cid_renego=%%d Disable (0) or enable (1) the use of the DTLS Connection ID extension during renegotiation.\n" \ |
Hanno Becker | 3279822 | 2019-05-23 17:01:06 +0100 | [diff] [blame] | 152 | " default: same as 'cid' parameter\n" \ |
Hanno Becker | 90cb359 | 2019-04-09 17:24:19 +0100 | [diff] [blame] | 153 | " cid_val=%%s The CID to use for incoming messages (in hex, without 0x).\n" \ |
Hanno Becker | b42ec0d | 2019-05-03 17:30:59 +0100 | [diff] [blame] | 154 | " default: \"\"\n" \ |
| 155 | " cid_val_renego=%%s The CID to use for incoming messages (in hex, without 0x) after renegotiation.\n" \ |
Hanno Becker | 3279822 | 2019-05-23 17:01:06 +0100 | [diff] [blame] | 156 | " default: same as 'cid_val' parameter\n" |
Hanno Becker | a0e20d0 | 2019-05-15 14:03:01 +0100 | [diff] [blame] | 157 | #else /* MBEDTLS_SSL_DTLS_CONNECTION_ID */ |
Hanno Becker | 90cb359 | 2019-04-09 17:24:19 +0100 | [diff] [blame] | 158 | #define USAGE_CID "" |
Hanno Becker | a0e20d0 | 2019-05-15 14:03:01 +0100 | [diff] [blame] | 159 | #endif /* MBEDTLS_SSL_DTLS_CONNECTION_ID */ |
Hanno Becker | 90cb359 | 2019-04-09 17:24:19 +0100 | [diff] [blame] | 160 | |
Gilles Peskine | eccd888 | 2020-03-10 12:19:08 +0100 | [diff] [blame] | 161 | #if defined(MBEDTLS_KEY_EXCHANGE_SOME_PSK_ENABLED) |
Hanno Becker | e86964c | 2018-10-23 11:37:50 +0100 | [diff] [blame] | 162 | #define USAGE_PSK_RAW \ |
Piotr Nowicki | 9926eaf | 2019-11-20 14:54:36 +0100 | [diff] [blame] | 163 | " psk=%%s default: \"\" (disabled)\n" \ |
| 164 | " The PSK values are in hex, without 0x.\n" \ |
Paul Bakker | ed27a04 | 2013-04-18 22:46:23 +0200 | [diff] [blame] | 165 | " psk_identity=%%s default: \"Client_identity\"\n" |
Hanno Becker | e86964c | 2018-10-23 11:37:50 +0100 | [diff] [blame] | 166 | #if defined(MBEDTLS_USE_PSA_CRYPTO) |
| 167 | #define USAGE_PSK_SLOT \ |
Hanno Becker | 1d911cd | 2018-11-15 13:06:09 +0000 | [diff] [blame] | 168 | " 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 Becker | e86964c | 2018-10-23 11:37:50 +0100 | [diff] [blame] | 171 | " 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 Becker | 1bac87c | 2019-03-29 12:02:26 +0000 | [diff] [blame] | 180 | #define USAGE_PSK USAGE_PSK_RAW USAGE_PSK_SLOT |
| 181 | #else |
| 182 | #define USAGE_PSK "" |
Gilles Peskine | eccd888 | 2020-03-10 12:19:08 +0100 | [diff] [blame] | 183 | #endif /* MBEDTLS_KEY_EXCHANGE_SOME_PSK_ENABLED */ |
Hanno Becker | 1bac87c | 2019-03-29 12:02:26 +0000 | [diff] [blame] | 184 | |
Jarno Lamsa | 1b4a2ba | 2019-03-27 17:55:27 +0200 | [diff] [blame] | 185 | #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 Bakker | 5690efc | 2011-05-26 13:16:06 +0000 | [diff] [blame] | 192 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 193 | #if defined(MBEDTLS_SSL_SESSION_TICKETS) |
Paul Bakker | a503a63 | 2013-08-14 13:48:06 +0200 | [diff] [blame] | 194 | #define USAGE_TICKETS \ |
| 195 | " tickets=%%d default: 1 (enabled)\n" |
| 196 | #else |
| 197 | #define USAGE_TICKETS "" |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 198 | #endif /* MBEDTLS_SSL_SESSION_TICKETS */ |
Paul Bakker | a503a63 | 2013-08-14 13:48:06 +0200 | [diff] [blame] | 199 | |
Ron Eldor | b7fd64c | 2019-05-12 11:03:32 +0300 | [diff] [blame] | 200 | #if defined(MBEDTLS_SSL_EXPORT_KEYS) |
| 201 | #define USAGE_EAP_TLS \ |
| 202 | " eap_tls=%%d default: 0 (disabled)\n" |
Hanno Becker | 48f3a3d | 2019-08-29 06:31:22 +0100 | [diff] [blame] | 203 | #define USAGE_NSS_KEYLOG \ |
Hanno Becker | bc5308c | 2019-09-09 11:38:51 +0100 | [diff] [blame] | 204 | " nss_keylog=%%d default: 0 (disabled)\n" \ |
| 205 | " This cannot be used with eap_tls=1\n" |
Hanno Becker | 48f3a3d | 2019-08-29 06:31:22 +0100 | [diff] [blame] | 206 | #define USAGE_NSS_KEYLOG_FILE \ |
| 207 | " nss_keylog_file=%%s\n" |
Ron Eldor | 65b56ef | 2019-09-26 16:40:48 +0300 | [diff] [blame] | 208 | #if defined(MBEDTLS_SSL_DTLS_SRTP) |
| 209 | #define USAGE_SRTP \ |
| 210 | " use_srtp=%%d default: 0 (disabled)\n" \ |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 211 | " This cannot be used with eap_tls=1 or " \ |
Ron Eldor | 65b56ef | 2019-09-26 16:40:48 +0300 | [diff] [blame] | 212 | " nss_keylog=1\n" \ |
Johan Pascal | 9bc97ca | 2020-09-21 23:44:45 +0200 | [diff] [blame] | 213 | " srtp_force_profile=%%d default: 0 (all enabled)\n" \ |
Ron Eldor | 65b56ef | 2019-09-26 16:40:48 +0300 | [diff] [blame] | 214 | " 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 Eldor | b7fd64c | 2019-05-12 11:03:32 +0300 | [diff] [blame] | 224 | #define USAGE_EAP_TLS "" |
Hanno Becker | 48f3a3d | 2019-08-29 06:31:22 +0100 | [diff] [blame] | 225 | #define USAGE_NSS_KEYLOG "" |
| 226 | #define USAGE_NSS_KEYLOG_FILE "" |
Ron Eldor | 65b56ef | 2019-09-26 16:40:48 +0300 | [diff] [blame] | 227 | #define USAGE_SRTP "" |
Ron Eldor | b7fd64c | 2019-05-12 11:03:32 +0300 | [diff] [blame] | 228 | #endif /* MBEDTLS_SSL_EXPORT_KEYS */ |
| 229 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 230 | #if defined(MBEDTLS_SSL_TRUNCATED_HMAC) |
Paul Bakker | 1f2bc62 | 2013-08-15 13:45:55 +0200 | [diff] [blame] | 231 | #define USAGE_TRUNC_HMAC \ |
Manuel Pégourié-Gonnard | 265fe99 | 2015-01-09 12:43:35 +0100 | [diff] [blame] | 232 | " trunc_hmac=%%d default: library default\n" |
Paul Bakker | 1f2bc62 | 2013-08-15 13:45:55 +0200 | [diff] [blame] | 233 | #else |
| 234 | #define USAGE_TRUNC_HMAC "" |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 235 | #endif /* MBEDTLS_SSL_TRUNCATED_HMAC */ |
Paul Bakker | 1f2bc62 | 2013-08-15 13:45:55 +0200 | [diff] [blame] | 236 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 237 | #if defined(MBEDTLS_SSL_MAX_FRAGMENT_LENGTH) |
Paul Bakker | 05decb2 | 2013-08-15 13:33:48 +0200 | [diff] [blame] | 238 | #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é-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 243 | #endif /* MBEDTLS_SSL_MAX_FRAGMENT_LENGTH */ |
Paul Bakker | 05decb2 | 2013-08-15 13:33:48 +0200 | [diff] [blame] | 244 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 245 | #if defined(MBEDTLS_SSL_CBC_RECORD_SPLITTING) |
Manuel Pégourié-Gonnard | c82ee35 | 2015-01-07 16:35:25 +0100 | [diff] [blame] | 246 | #define USAGE_RECSPLIT \ |
Manuel Pégourié-Gonnard | bf27eaa | 2015-06-11 17:02:10 +0200 | [diff] [blame] | 247 | " recsplit=0/1 default: (library default: on)\n" |
Manuel Pégourié-Gonnard | c82ee35 | 2015-01-07 16:35:25 +0100 | [diff] [blame] | 248 | #else |
| 249 | #define USAGE_RECSPLIT |
| 250 | #endif |
| 251 | |
Manuel Pégourié-Gonnard | 9096682 | 2015-06-11 17:02:29 +0200 | [diff] [blame] | 252 | #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é-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 259 | #if defined(MBEDTLS_SSL_ALPN) |
Manuel Pégourié-Gonnard | 1bd2281 | 2014-04-05 14:34:07 +0200 | [diff] [blame] | 260 | #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é-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 265 | #endif /* MBEDTLS_SSL_ALPN */ |
Manuel Pégourié-Gonnard | 1bd2281 | 2014-04-05 14:34:07 +0200 | [diff] [blame] | 266 | |
Hanno Becker | e6706e6 | 2017-05-15 16:05:15 +0100 | [diff] [blame] | 267 | #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é-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 278 | #if defined(MBEDTLS_SSL_PROTO_DTLS) |
Manuel Pégourié-Gonnard | d823bd0 | 2014-10-01 14:40:56 +0200 | [diff] [blame] | 279 | #define USAGE_DTLS \ |
| 280 | " dtls=%%d default: 0 (TLS)\n" \ |
| 281 | " hs_timeout=%%d-%%d default: (library default: 1000-60000)\n" \ |
Manuel Pégourié-Gonnard | b747c6c | 2018-08-12 13:28:53 +0200 | [diff] [blame] | 282 | " range of DTLS handshake timeouts in millisecs\n" \ |
Hanno Becker | 4d61591 | 2018-08-14 13:33:30 +0100 | [diff] [blame] | 283 | " 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é-Gonnard | d823bd0 | 2014-10-01 14:40:56 +0200 | [diff] [blame] | 287 | #else |
| 288 | #define USAGE_DTLS "" |
| 289 | #endif |
| 290 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 291 | #if defined(MBEDTLS_SSL_FALLBACK_SCSV) |
Manuel Pégourié-Gonnard | 1cbd39d | 2014-10-20 13:34:59 +0200 | [diff] [blame] | 292 | #define USAGE_FALLBACK \ |
| 293 | " fallback=0/1 default: (library default: off)\n" |
| 294 | #else |
| 295 | #define USAGE_FALLBACK "" |
| 296 | #endif |
| 297 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 298 | #if defined(MBEDTLS_SSL_EXTENDED_MASTER_SECRET) |
Manuel Pégourié-Gonnard | 367381f | 2014-10-20 18:40:56 +0200 | [diff] [blame] | 299 | #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é-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 305 | #if defined(MBEDTLS_SSL_ENCRYPT_THEN_MAC) |
Manuel Pégourié-Gonnard | 699cafa | 2014-10-27 13:57:03 +0100 | [diff] [blame] | 306 | #define USAGE_ETM \ |
| 307 | " etm=0/1 default: (library default: on)\n" |
| 308 | #else |
| 309 | #define USAGE_ETM "" |
| 310 | #endif |
| 311 | |
Philippe Antoine | 738153a | 2019-06-18 20:16:43 +0200 | [diff] [blame] | 312 | #define USAGE_REPRODUCIBLE \ |
| 313 | " reproducible=0/1 default: 0 (disabled)\n" |
| 314 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 315 | #if defined(MBEDTLS_SSL_RENEGOTIATION) |
Manuel Pégourié-Gonnard | 615e677 | 2014-11-03 08:23:14 +0100 | [diff] [blame] | 316 | #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é-Gonnard | 70905a7 | 2015-09-16 11:08:34 +0200 | [diff] [blame] | 323 | #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é-Gonnard | b3c8307 | 2017-05-16 08:50:24 +0200 | [diff] [blame] | 330 | #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 Lamsa | bbc7b41 | 2019-06-04 11:06:31 +0300 | [diff] [blame] | 337 | #if defined(MBEDTLS_SSL_CONTEXT_SERIALIZATION) |
| 338 | #define USAGE_SERIALIZATION \ |
Piotr Nowicki | 3de298f | 2020-04-16 14:35:19 +0200 | [diff] [blame] | 339 | " serialize=%%d default: 0 (do not serialize/deserialize)\n" \ |
| 340 | " options: 1 (serialize)\n" \ |
| 341 | " 2 (serialize with re-initialization)\n" \ |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 342 | " context_file=%%s The file path to write a serialized connection\n" \ |
Piotr Nowicki | 3de298f | 2020-04-16 14:35:19 +0200 | [diff] [blame] | 343 | " 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 Lamsa | bbc7b41 | 2019-06-04 11:06:31 +0300 | [diff] [blame] | 347 | #else |
| 348 | #define USAGE_SERIALIZATION "" |
| 349 | #endif |
| 350 | |
Gilles Peskine | b2971ff | 2020-04-14 19:41:01 +0200 | [diff] [blame] | 351 | /* USAGE is arbitrarily split to stay under the portable string literal |
| 352 | * length limit: 4095 bytes in C99. */ |
| 353 | #define USAGE1 \ |
Paul Bakker | 6796839 | 2010-07-18 08:28:20 +0000 | [diff] [blame] | 354 | "\n usage: ssl_client2 param=<>...\n" \ |
| 355 | "\n acceptable parameters:\n" \ |
| 356 | " server_name=%%s default: localhost\n" \ |
Manuel Pégourié-Gonnard | 0d8780b | 2014-02-25 11:11:26 +0100 | [diff] [blame] | 357 | " server_addr=%%s default: given by name\n" \ |
Paul Bakker | 6796839 | 2010-07-18 08:28:20 +0000 | [diff] [blame] | 358 | " server_port=%%d default: 4433\n" \ |
Paul Bakker | 6796839 | 2010-07-18 08:28:20 +0000 | [diff] [blame] | 359 | " request_page=%%s default: \".\"\n" \ |
Andres Amaya Garcia | ce6fbac | 2018-07-04 09:29:34 +0100 | [diff] [blame] | 360 | " request_size=%%d default: about 34 (basic request)\n" \ |
| 361 | " (minimum: 0, max: " MAX_REQUEST_SIZE_STR ")\n" \ |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 362 | " 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é-Gonnard | d823bd0 | 2014-10-01 14:40:56 +0200 | [diff] [blame] | 377 | USAGE_DTLS \ |
Hanno Becker | 90cb359 | 2019-04-09 17:24:19 +0100 | [diff] [blame] | 378 | USAGE_CID \ |
Ron Eldor | 6ea6451 | 2018-07-02 10:08:07 +0300 | [diff] [blame] | 379 | USAGE_SRTP \ |
Gilles Peskine | b2971ff | 2020-04-14 19:41:01 +0200 | [diff] [blame] | 380 | "\n" |
| 381 | #define USAGE2 \ |
Hanno Becker | 16970d2 | 2017-10-10 15:56:37 +0100 | [diff] [blame] | 382 | " auth_mode=%%s default: (library default: none)\n" \ |
Manuel Pégourié-Gonnard | 2fc243d | 2014-02-19 18:22:59 +0100 | [diff] [blame] | 383 | " options: none, optional, required\n" \ |
Gilles Peskine | 724a7bb | 2025-02-12 21:50:53 +0100 | [diff] [blame] | 384 | " 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é-Gonnard | 2fc243d | 2014-02-19 18:22:59 +0100 | [diff] [blame] | 387 | USAGE_IO \ |
Manuel Pégourié-Gonnard | ef68be4 | 2018-11-07 09:42:35 +0100 | [diff] [blame] | 388 | USAGE_KEY_OPAQUE \ |
Jarno Lamsa | 1b4a2ba | 2019-03-27 17:55:27 +0200 | [diff] [blame] | 389 | USAGE_CA_CALLBACK \ |
Manuel Pégourié-Gonnard | 2fc243d | 2014-02-19 18:22:59 +0100 | [diff] [blame] | 390 | "\n" \ |
| 391 | USAGE_PSK \ |
Manuel Pégourié-Gonnard | 70905a7 | 2015-09-16 11:08:34 +0200 | [diff] [blame] | 392 | USAGE_ECJPAKE \ |
Manuel Pégourié-Gonnard | b3c8307 | 2017-05-16 08:50:24 +0200 | [diff] [blame] | 393 | USAGE_ECRESTART \ |
Gilles Peskine | b2971ff | 2020-04-14 19:41:01 +0200 | [diff] [blame] | 394 | "\n" |
| 395 | #define USAGE3 \ |
Hanno Becker | 16970d2 | 2017-10-10 15:56:37 +0100 | [diff] [blame] | 396 | " allow_legacy=%%d default: (library default: no)\n" \ |
Manuel Pégourié-Gonnard | 615e677 | 2014-11-03 08:23:14 +0100 | [diff] [blame] | 397 | USAGE_RENEGO \ |
Manuel Pégourié-Gonnard | a8c0a0d | 2014-08-15 12:07:38 +0200 | [diff] [blame] | 398 | " exchanges=%%d default: 1\n" \ |
Manuel Pégourié-Gonnard | a7c3765 | 2019-05-20 12:46:26 +0200 | [diff] [blame] | 399 | " reconnect=%%d number of reconnections using session resumption\n" \ |
| 400 | " default: 0 (disabled)\n" \ |
Manuel Pégourié-Gonnard | e3c41ad | 2015-05-13 10:04:32 +0200 | [diff] [blame] | 401 | " reco_delay=%%d default: 0 seconds\n" \ |
Manuel Pégourié-Gonnard | 686adb4 | 2019-06-03 09:55:16 +0200 | [diff] [blame] | 402 | " reco_mode=%%d 0: copy session, 1: serialize session\n" \ |
Manuel Pégourié-Gonnard | a7c3765 | 2019-05-20 12:46:26 +0200 | [diff] [blame] | 403 | " default: 1\n" \ |
Manuel Pégourié-Gonnard | dbd2307 | 2015-09-04 10:20:17 +0200 | [diff] [blame] | 404 | " reconnect_hard=%%d default: 0 (disabled)\n" \ |
Paul Bakker | a503a63 | 2013-08-14 13:48:06 +0200 | [diff] [blame] | 405 | USAGE_TICKETS \ |
Ron Eldor | b7fd64c | 2019-05-12 11:03:32 +0300 | [diff] [blame] | 406 | USAGE_EAP_TLS \ |
Manuel Pégourié-Gonnard | 2fc243d | 2014-02-19 18:22:59 +0100 | [diff] [blame] | 407 | USAGE_MAX_FRAG_LEN \ |
| 408 | USAGE_TRUNC_HMAC \ |
Janos Follath | ae13beb | 2019-04-05 14:06:58 +0100 | [diff] [blame] | 409 | USAGE_CONTEXT_CRT_CB \ |
Manuel Pégourié-Gonnard | 1bd2281 | 2014-04-05 14:34:07 +0200 | [diff] [blame] | 410 | USAGE_ALPN \ |
Manuel Pégourié-Gonnard | 1cbd39d | 2014-10-20 13:34:59 +0200 | [diff] [blame] | 411 | USAGE_FALLBACK \ |
Manuel Pégourié-Gonnard | 367381f | 2014-10-20 18:40:56 +0200 | [diff] [blame] | 412 | USAGE_EMS \ |
Manuel Pégourié-Gonnard | 699cafa | 2014-10-27 13:57:03 +0100 | [diff] [blame] | 413 | USAGE_ETM \ |
Philippe Antoine | 738153a | 2019-06-18 20:16:43 +0200 | [diff] [blame] | 414 | USAGE_REPRODUCIBLE \ |
Hanno Becker | e6706e6 | 2017-05-15 16:05:15 +0100 | [diff] [blame] | 415 | USAGE_CURVES \ |
Manuel Pégourié-Gonnard | c82ee35 | 2015-01-07 16:35:25 +0100 | [diff] [blame] | 416 | USAGE_RECSPLIT \ |
Manuel Pégourié-Gonnard | 9096682 | 2015-06-11 17:02:29 +0200 | [diff] [blame] | 417 | USAGE_DHMLEN \ |
Gilles Peskine | b2971ff | 2020-04-14 19:41:01 +0200 | [diff] [blame] | 418 | "\n" |
| 419 | #define USAGE4 \ |
Manuel Pégourié-Gonnard | fa44f20 | 2015-03-27 17:52:25 +0100 | [diff] [blame] | 420 | " arc4=%%d default: (library default: 0)\n" \ |
Gilles Peskine | bc70a18 | 2017-05-09 15:59:24 +0200 | [diff] [blame] | 421 | " allow_sha1=%%d default: 0\n" \ |
Manuel Pégourié-Gonnard | 8c8be1e | 2015-03-31 14:21:11 +0200 | [diff] [blame] | 422 | " min_version=%%s default: (library default: tls1)\n" \ |
Xiaofei Bai | f40545d | 2021-12-02 08:43:35 +0000 | [diff] [blame] | 423 | " max_version=%%s default: (library default: tls12)\n" \ |
Paul Bakker | 1d29fb5 | 2012-09-28 13:28:45 +0000 | [diff] [blame] | 424 | " force_version=%%s default: \"\" (none)\n" \ |
Xiaofei Bai | f40545d | 2021-12-02 08:43:35 +0000 | [diff] [blame] | 425 | " options: ssl3, tls1, tls1_1, tls12, dtls1, dtls12\n" \ |
Paul Bakker | 1d29fb5 | 2012-09-28 13:28:45 +0000 | [diff] [blame] | 426 | "\n" \ |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 427 | " force_ciphersuite=<name> default: all enabled\n" \ |
Andres Amaya Garcia | bc81884 | 2018-10-16 21:08:38 +0100 | [diff] [blame] | 428 | " 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 Lamsa | bbc7b41 | 2019-06-04 11:06:31 +0300 | [diff] [blame] | 432 | USAGE_SERIALIZATION \ |
Manuel Pégourié-Gonnard | fc8ad27 | 2023-06-27 09:28:24 +0200 | [diff] [blame] | 433 | "\n" |
Paul Bakker | 9caf2d2 | 2010-02-18 19:37:19 +0000 | [diff] [blame] | 434 | |
Hanno Becker | 8651a43 | 2017-06-09 16:13:22 +0100 | [diff] [blame] | 435 | #define ALPN_LIST_SIZE 10 |
| 436 | #define CURVE_LIST_SIZE 20 |
| 437 | |
Andrzej Kurek | c470b6b | 2019-01-31 08:20:20 -0500 | [diff] [blame] | 438 | |
Rich Evans | 85b05ec | 2015-02-12 11:37:29 +0000 | [diff] [blame] | 439 | /* |
| 440 | * global options |
| 441 | */ |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 442 | struct options { |
Rich Evans | 85b05ec | 2015-02-12 11:37:29 +0000 | [diff] [blame] | 443 | const char *server_name; /* hostname of the server (client only) */ |
| 444 | const char *server_addr; /* address of the server (client only) */ |
Manuel Pégourié-Gonnard | c0d7494 | 2015-06-23 12:30:57 +0200 | [diff] [blame] | 445 | const char *server_port; /* port on which the ssl service runs */ |
Rich Evans | 85b05ec | 2015-02-12 11:37:29 +0000 | [diff] [blame] | 446 | int debug_level; /* level of debugging */ |
| 447 | int nbio; /* should I/O be blocking? */ |
Hanno Becker | 16970d2 | 2017-10-10 15:56:37 +0100 | [diff] [blame] | 448 | 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é-Gonnard | d901d17 | 2015-02-16 18:37:53 +0000 | [diff] [blame] | 450 | int max_resend; /* DTLS times to resend on read timeout */ |
Rich Evans | 85b05ec | 2015-02-12 11:37:29 +0000 | [diff] [blame] | 451 | 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é-Gonnard | ef68be4 | 2018-11-07 09:42:35 +0100 | [diff] [blame] | 457 | int key_opaque; /* handle private key as if it were opaque */ |
Hanno Becker | e86964c | 2018-10-23 11:37:50 +0100 | [diff] [blame] | 458 | #if defined(MBEDTLS_USE_PSA_CRYPTO) |
Hanno Becker | 1d911cd | 2018-11-15 13:06:09 +0000 | [diff] [blame] | 459 | int psk_opaque; |
Hanno Becker | e86964c | 2018-10-23 11:37:50 +0100 | [diff] [blame] | 460 | #endif |
Jarno Lamsa | 1b4a2ba | 2019-03-27 17:55:27 +0200 | [diff] [blame] | 461 | #if defined(MBEDTLS_X509_TRUSTED_CERTIFICATE_CALLBACK) |
Hanno Becker | cbb5903 | 2019-03-28 14:14:22 +0000 | [diff] [blame] | 462 | int ca_callback; /* Use callback for trusted certificate list */ |
Jarno Lamsa | 1b4a2ba | 2019-03-27 17:55:27 +0200 | [diff] [blame] | 463 | #endif |
Hanno Becker | ca04fdc | 2018-11-07 16:22:14 +0000 | [diff] [blame] | 464 | const char *key_pwd; /* the password for the client key */ |
Rich Evans | 85b05ec | 2015-02-12 11:37:29 +0000 | [diff] [blame] | 465 | const char *psk; /* the pre-shared key */ |
| 466 | const char *psk_identity; /* the pre-shared key identity */ |
Manuel Pégourié-Gonnard | 70905a7 | 2015-09-16 11:08:34 +0200 | [diff] [blame] | 467 | const char *ecjpake_pw; /* the EC J-PAKE password */ |
Manuel Pégourié-Gonnard | b3c8307 | 2017-05-16 08:50:24 +0200 | [diff] [blame] | 468 | int ec_max_ops; /* EC consecutive operations limit */ |
Rich Evans | 85b05ec | 2015-02-12 11:37:29 +0000 | [diff] [blame] | 469 | 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 Peskine | bc70a18 | 2017-05-09 15:59:24 +0200 | [diff] [blame] | 478 | int allow_sha1; /* flag for SHA-1 support */ |
Rich Evans | 85b05ec | 2015-02-12 11:37:29 +0000 | [diff] [blame] | 479 | int auth_mode; /* verify mode for connection */ |
Gilles Peskine | 724a7bb | 2025-02-12 21:50:53 +0100 | [diff] [blame] | 480 | int set_hostname; /* call mbedtls_ssl_set_hostname()? */ |
| 481 | /* 0=no, 1=yes, -1=NULL */ |
Rich Evans | 85b05ec | 2015-02-12 11:37:29 +0000 | [diff] [blame] | 482 | 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é-Gonnard | 9096682 | 2015-06-11 17:02:29 +0200 | [diff] [blame] | 485 | int dhmlen; /* minimum DHM params len in bits */ |
Rich Evans | 85b05ec | 2015-02-12 11:37:29 +0000 | [diff] [blame] | 486 | int reconnect; /* attempt to resume session */ |
| 487 | int reco_delay; /* delay in seconds before resuming session */ |
Manuel Pégourié-Gonnard | a7c3765 | 2019-05-20 12:46:26 +0200 | [diff] [blame] | 488 | int reco_mode; /* how to keep the session around */ |
Manuel Pégourié-Gonnard | dbd2307 | 2015-09-04 10:20:17 +0200 | [diff] [blame] | 489 | int reconnect_hard; /* unexpectedly reconnect from the same port */ |
Rich Evans | 85b05ec | 2015-02-12 11:37:29 +0000 | [diff] [blame] | 490 | int tickets; /* enable / disable session tickets */ |
Hanno Becker | e6706e6 | 2017-05-15 16:05:15 +0100 | [diff] [blame] | 491 | const char *curves; /* list of supported elliptic curves */ |
Rich Evans | 85b05ec | 2015-02-12 11:37:29 +0000 | [diff] [blame] | 492 | const char *alpn_string; /* ALPN supported protocols */ |
Manuel Pégourié-Gonnard | d901d17 | 2015-02-16 18:37:53 +0000 | [diff] [blame] | 493 | 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 Case | 0e7791f | 2021-12-20 21:14:10 -0800 | [diff] [blame] | 496 | int dtls_mtu; /* UDP Maximum transport unit for DTLS */ |
Rich Evans | 85b05ec | 2015-02-12 11:37:29 +0000 | [diff] [blame] | 497 | int fallback; /* is this a fallback connection? */ |
Hanno Becker | 4d61591 | 2018-08-14 13:33:30 +0100 | [diff] [blame] | 498 | int dgram_packing; /* allow/forbid datagram packing */ |
Rich Evans | 85b05ec | 2015-02-12 11:37:29 +0000 | [diff] [blame] | 499 | int extended_ms; /* negotiate extended master secret? */ |
| 500 | int etm; /* negotiate encrypt then mac? */ |
Hanno Becker | bb425db | 2019-04-03 12:59:58 +0100 | [diff] [blame] | 501 | int context_crt_cb; /* use context-specific CRT verify callback */ |
Ron Eldor | b7fd64c | 2019-05-12 11:03:32 +0300 | [diff] [blame] | 502 | int eap_tls; /* derive EAP-TLS keying material? */ |
Hanno Becker | 48f3a3d | 2019-08-29 06:31:22 +0100 | [diff] [blame] | 503 | int nss_keylog; /* export NSS key log material */ |
| 504 | const char *nss_keylog_file; /* NSS key log file */ |
Hanno Becker | 90cb359 | 2019-04-09 17:24:19 +0100 | [diff] [blame] | 505 | int cid_enabled; /* whether to use the CID extension or not */ |
Hanno Becker | b42ec0d | 2019-05-03 17:30:59 +0100 | [diff] [blame] | 506 | int cid_enabled_renego; /* whether to use the CID extension or not |
| 507 | * during renegotiation */ |
Hanno Becker | 90cb359 | 2019-04-09 17:24:19 +0100 | [diff] [blame] | 508 | const char *cid_val; /* the CID to use for incoming messages */ |
Jarno Lamsa | 9831c8a | 2019-05-29 13:33:32 +0300 | [diff] [blame] | 509 | int serialize; /* serialize/deserialize connection */ |
Piotr Nowicki | 3de298f | 2020-04-16 14:35:19 +0200 | [diff] [blame] | 510 | 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 Becker | b42ec0d | 2019-05-03 17:30:59 +0100 | [diff] [blame] | 513 | const char *cid_val_renego; /* the CID to use for incoming messages |
| 514 | * after renegotiation */ |
Philippe Antoine | 154feb2 | 2019-06-11 17:50:23 +0200 | [diff] [blame] | 515 | int reproducible; /* make communication reproducible */ |
Manuel Pégourié-Gonnard | 56941fe | 2020-02-17 11:04:33 +0100 | [diff] [blame] | 516 | int skip_close_notify; /* skip sending the close_notify alert */ |
gabor-mezei-arm | a9eecf1 | 2020-07-07 11:11:02 +0200 | [diff] [blame] | 517 | int query_config_mode; /* whether to read config */ |
Ron Eldor | 6ea6451 | 2018-07-02 10:08:07 +0300 | [diff] [blame] | 518 | int use_srtp; /* Support SRTP */ |
| 519 | int force_srtp_profile; /* SRTP protection profile to use or all */ |
Ron Eldor | ef72faf | 2018-07-12 11:54:20 +0300 | [diff] [blame] | 520 | const char *mki; /* The dtls mki value to use */ |
Rich Evans | 85b05ec | 2015-02-12 11:37:29 +0000 | [diff] [blame] | 521 | } opt; |
| 522 | |
Gilles Peskine | 0d980b8 | 2021-01-05 23:34:27 +0100 | [diff] [blame] | 523 | #include "ssl_test_common_source.c" |
Hanno Becker | 8b1af2f | 2019-07-03 17:02:43 +0100 | [diff] [blame] | 524 | |
Andrzej Kurek | 4ed670f | 2022-10-18 08:30:50 -0400 | [diff] [blame] | 525 | #if defined(MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED) |
Hanno Becker | a1051b4 | 2019-02-26 11:38:29 +0000 | [diff] [blame] | 526 | static unsigned char peer_crt_info[1024]; |
Hanno Becker | a9766c2c | 2019-02-25 17:43:18 +0000 | [diff] [blame] | 527 | |
Rich Evans | 85b05ec | 2015-02-12 11:37:29 +0000 | [diff] [blame] | 528 | /* |
| 529 | * Enabled if debug_level > 1 in code below |
| 530 | */ |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 531 | static int my_verify(void *data, mbedtls_x509_crt *crt, |
| 532 | int depth, uint32_t *flags) |
Rich Evans | 85b05ec | 2015-02-12 11:37:29 +0000 | [diff] [blame] | 533 | { |
| 534 | char buf[1024]; |
| 535 | ((void) data); |
| 536 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 537 | mbedtls_x509_crt_info(buf, sizeof(buf) - 1, "", crt); |
| 538 | if (depth == 0) { |
| 539 | memcpy(peer_crt_info, buf, sizeof(buf)); |
Manuel Pégourié-Gonnard | 89addc4 | 2015-04-20 10:56:18 +0100 | [diff] [blame] | 540 | } |
Rich Evans | 85b05ec | 2015-02-12 11:37:29 +0000 | [diff] [blame] | 541 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 542 | 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 Evans | 85b05ec | 2015-02-12 11:37:29 +0000 | [diff] [blame] | 557 | } |
Andrzej Kurek | 4ed670f | 2022-10-18 08:30:50 -0400 | [diff] [blame] | 558 | #endif /* MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED */ |
Gilles Peskine | cd3c845 | 2017-05-09 14:57:45 +0200 | [diff] [blame] | 559 | |
Hanno Becker | a0e20d0 | 2019-05-15 14:03:01 +0100 | [diff] [blame] | 560 | #if defined(MBEDTLS_SSL_DTLS_CONNECTION_ID) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 561 | int report_cid_usage(mbedtls_ssl_context *ssl, |
| 562 | const char *additional_description) |
Hanno Becker | b42ec0d | 2019-05-03 17:30:59 +0100 | [diff] [blame] | 563 | { |
| 564 | int ret; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 565 | unsigned char peer_cid[MBEDTLS_SSL_CID_OUT_LEN_MAX]; |
Hanno Becker | b42ec0d | 2019-05-03 17:30:59 +0100 | [diff] [blame] | 566 | size_t peer_cid_len; |
| 567 | int cid_negotiated; |
| 568 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 569 | if (opt.transport != MBEDTLS_SSL_TRANSPORT_DATAGRAM) { |
| 570 | return 0; |
| 571 | } |
Hanno Becker | b42ec0d | 2019-05-03 17:30:59 +0100 | [diff] [blame] | 572 | |
Hanno Becker | 6ae14c0 | 2019-05-22 16:59:25 +0100 | [diff] [blame] | 573 | /* 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 Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 583 | 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 Becker | b42ec0d | 2019-05-03 17:30:59 +0100 | [diff] [blame] | 589 | } |
| 590 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 591 | 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 Becker | b42ec0d | 2019-05-03 17:30:59 +0100 | [diff] [blame] | 595 | } |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 596 | } else { |
| 597 | size_t idx = 0; |
| 598 | mbedtls_printf("(%s) Use of Connection ID has been negotiated.\n", |
| 599 | additional_description); |
Hanno Becker | 6ae14c0 | 2019-05-22 16:59:25 +0100 | [diff] [blame] | 600 | |
| 601 | /* Ask for just the length of the peer's CID. */ |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 602 | 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 Becker | 6ae14c0 | 2019-05-22 16:59:25 +0100 | [diff] [blame] | 608 | } |
| 609 | |
| 610 | /* Ask for just length + value of the peer's CID. */ |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 611 | 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 Becker | 6ae14c0 | 2019-05-22 16:59:25 +0100 | [diff] [blame] | 617 | } |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 618 | 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 Becker | b42ec0d | 2019-05-03 17:30:59 +0100 | [diff] [blame] | 623 | idx++; |
| 624 | } |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 625 | mbedtls_printf("\n"); |
Hanno Becker | b42ec0d | 2019-05-03 17:30:59 +0100 | [diff] [blame] | 626 | } |
| 627 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 628 | return 0; |
Hanno Becker | b42ec0d | 2019-05-03 17:30:59 +0100 | [diff] [blame] | 629 | } |
Hanno Becker | a0e20d0 | 2019-05-15 14:03:01 +0100 | [diff] [blame] | 630 | #endif /* MBEDTLS_SSL_DTLS_CONNECTION_ID */ |
Hanno Becker | b42ec0d | 2019-05-03 17:30:59 +0100 | [diff] [blame] | 631 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 632 | int main(int argc, char *argv[]) |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 633 | { |
Manuel Pégourié-Gonnard | 5db6432 | 2015-06-30 15:40:39 +0200 | [diff] [blame] | 634 | int ret = 0, len, tail_len, i, written, frags, retry_left; |
gabor-mezei-arm | a9eecf1 | 2020-07-07 11:11:02 +0200 | [diff] [blame] | 635 | int query_config_ret = 0; |
Manuel Pégourié-Gonnard | 5db6432 | 2015-06-30 15:40:39 +0200 | [diff] [blame] | 636 | mbedtls_net_context server_fd; |
Hanno Becker | 8b1af2f | 2019-07-03 17:02:43 +0100 | [diff] [blame] | 637 | io_ctx_t io_ctx; |
Hanno Becker | e4ad3e8 | 2017-09-18 15:05:46 +0100 | [diff] [blame] | 638 | |
| 639 | unsigned char buf[MAX_REQUEST_SIZE + 1]; |
| 640 | |
Gilles Peskine | eccd888 | 2020-03-10 12:19:08 +0100 | [diff] [blame] | 641 | #if defined(MBEDTLS_KEY_EXCHANGE_SOME_PSK_ENABLED) |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 642 | unsigned char psk[MBEDTLS_PSK_MAX_LEN]; |
Paul Bakker | d4a56ec | 2013-04-16 18:05:29 +0200 | [diff] [blame] | 643 | size_t psk_len = 0; |
Paul Bakker | ed27a04 | 2013-04-18 22:46:23 +0200 | [diff] [blame] | 644 | #endif |
Hanno Becker | 90cb359 | 2019-04-09 17:24:19 +0100 | [diff] [blame] | 645 | |
Hanno Becker | a0e20d0 | 2019-05-15 14:03:01 +0100 | [diff] [blame] | 646 | #if defined(MBEDTLS_SSL_DTLS_CONNECTION_ID) |
Hanno Becker | 90cb359 | 2019-04-09 17:24:19 +0100 | [diff] [blame] | 647 | unsigned char cid[MBEDTLS_SSL_CID_IN_LEN_MAX]; |
Hanno Becker | b42ec0d | 2019-05-03 17:30:59 +0100 | [diff] [blame] | 648 | unsigned char cid_renego[MBEDTLS_SSL_CID_IN_LEN_MAX]; |
Hanno Becker | 90cb359 | 2019-04-09 17:24:19 +0100 | [diff] [blame] | 649 | size_t cid_len = 0; |
Hanno Becker | b42ec0d | 2019-05-03 17:30:59 +0100 | [diff] [blame] | 650 | size_t cid_renego_len = 0; |
Hanno Becker | 90cb359 | 2019-04-09 17:24:19 +0100 | [diff] [blame] | 651 | #endif |
| 652 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 653 | #if defined(MBEDTLS_SSL_ALPN) |
Hanno Becker | 8651a43 | 2017-06-09 16:13:22 +0100 | [diff] [blame] | 654 | const char *alpn_list[ALPN_LIST_SIZE]; |
Manuel Pégourié-Gonnard | 1bd2281 | 2014-04-05 14:34:07 +0200 | [diff] [blame] | 655 | #endif |
Piotr Nowicki | 7d01ef6 | 2019-11-20 15:00:17 +0100 | [diff] [blame] | 656 | |
| 657 | #if defined(MBEDTLS_MEMORY_BUFFER_ALLOC_C) |
| 658 | unsigned char alloc_buf[MEMORY_HEAP_SIZE]; |
| 659 | #endif |
| 660 | |
Hanno Becker | e6706e6 | 2017-05-15 16:05:15 +0100 | [diff] [blame] | 661 | #if defined(MBEDTLS_ECP_C) |
Hanno Becker | 8651a43 | 2017-06-09 16:13:22 +0100 | [diff] [blame] | 662 | mbedtls_ecp_group_id curve_list[CURVE_LIST_SIZE]; |
Hanno Becker | e6706e6 | 2017-05-15 16:05:15 +0100 | [diff] [blame] | 663 | const mbedtls_ecp_curve_info *curve_cur; |
| 664 | #endif |
Ron Eldor | 6ea6451 | 2018-07-02 10:08:07 +0300 | [diff] [blame] | 665 | #if defined(MBEDTLS_SSL_DTLS_SRTP) |
Johan Pascal | 8526957 | 2020-08-25 10:01:54 +0200 | [diff] [blame] | 666 | unsigned char mki[MBEDTLS_TLS_SRTP_MAX_MKI_LENGTH]; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 667 | size_t mki_len = 0; |
Ron Eldor | 6ea6451 | 2018-07-02 10:08:07 +0300 | [diff] [blame] | 668 | #endif |
Hanno Becker | e6706e6 | 2017-05-15 16:05:15 +0100 | [diff] [blame] | 669 | |
Paul Bakker | ef3f8c7 | 2013-06-24 13:01:08 +0200 | [diff] [blame] | 670 | const char *pers = "ssl_client2"; |
Paul Bakker | 508ad5a | 2011-12-04 17:09:26 +0000 | [diff] [blame] | 671 | |
Hanno Becker | e86964c | 2018-10-23 11:37:50 +0100 | [diff] [blame] | 672 | #if defined(MBEDTLS_USE_PSA_CRYPTO) |
Andrzej Kurek | e2462ba | 2022-01-17 15:29:08 +0100 | [diff] [blame] | 673 | #if defined(MBEDTLS_KEY_EXCHANGE_SOME_PSK_ENABLED) |
Ronald Cron | adc2ff2 | 2020-09-16 16:49:27 +0200 | [diff] [blame] | 674 | psa_key_id_t slot = 0; |
Hanno Becker | e86964c | 2018-10-23 11:37:50 +0100 | [diff] [blame] | 675 | psa_algorithm_t alg = 0; |
Janos Follath | be4efc2 | 2019-08-08 11:38:18 +0100 | [diff] [blame] | 676 | psa_key_attributes_t key_attributes; |
Andrzej Kurek | e2462ba | 2022-01-17 15:29:08 +0100 | [diff] [blame] | 677 | #endif |
Hanno Becker | e86964c | 2018-10-23 11:37:50 +0100 | [diff] [blame] | 678 | psa_status_t status; |
| 679 | #endif |
| 680 | |
Gilles Peskine | f1cb75f | 2021-01-13 18:46:01 +0100 | [diff] [blame] | 681 | rng_context_t rng; |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 682 | mbedtls_ssl_context ssl; |
Manuel Pégourié-Gonnard | def0bbe | 2015-05-04 14:56:36 +0200 | [diff] [blame] | 683 | mbedtls_ssl_config conf; |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 684 | mbedtls_ssl_session saved_session; |
Manuel Pégourié-Gonnard | 26f982f | 2019-05-21 11:01:32 +0200 | [diff] [blame] | 685 | unsigned char *session_data = NULL; |
| 686 | size_t session_data_len = 0; |
Manuel Pégourié-Gonnard | d2377e7 | 2015-05-13 13:58:56 +0200 | [diff] [blame] | 687 | #if defined(MBEDTLS_TIMING_C) |
Manuel Pégourié-Gonnard | e3c41ad | 2015-05-13 10:04:32 +0200 | [diff] [blame] | 688 | mbedtls_timing_delay_context timer; |
Manuel Pégourié-Gonnard | d2377e7 | 2015-05-13 13:58:56 +0200 | [diff] [blame] | 689 | #endif |
Andrzej Kurek | 4ed670f | 2022-10-18 08:30:50 -0400 | [diff] [blame] | 690 | #if defined(MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED) |
Manuel Pégourié-Gonnard | db1cc76 | 2015-05-12 11:27:25 +0200 | [diff] [blame] | 691 | uint32_t flags; |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 692 | mbedtls_x509_crt cacert; |
| 693 | mbedtls_x509_crt clicert; |
| 694 | mbedtls_pk_context pkey; |
Andrzej Kurek | 7829d8f | 2022-10-18 09:19:07 -0400 | [diff] [blame] | 695 | mbedtls_x509_crt_profile crt_profile_for_test = mbedtls_x509_crt_profile_default; |
Manuel Pégourié-Gonnard | cfdf8f4 | 2018-11-08 09:52:25 +0100 | [diff] [blame] | 696 | #if defined(MBEDTLS_USE_PSA_CRYPTO) |
Ronald Cron | adc2ff2 | 2020-09-16 16:49:27 +0200 | [diff] [blame] | 697 | psa_key_id_t key_slot = 0; /* invalid key slot */ |
Manuel Pégourié-Gonnard | cfdf8f4 | 2018-11-08 09:52:25 +0100 | [diff] [blame] | 698 | #endif |
Andrzej Kurek | 7829d8f | 2022-10-18 09:19:07 -0400 | [diff] [blame] | 699 | #endif /* MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED */ |
Paul Bakker | 9caf2d2 | 2010-02-18 19:37:19 +0000 | [diff] [blame] | 700 | char *p, *q; |
Paul Bakker | 5193688 | 2011-02-20 16:05:58 +0000 | [diff] [blame] | 701 | const int *list; |
Manuel Pégourié-Gonnard | 3309a67 | 2019-07-15 10:31:11 +0200 | [diff] [blame] | 702 | #if defined(MBEDTLS_SSL_CONTEXT_SERIALIZATION) |
| 703 | unsigned char *context_buf = NULL; |
| 704 | size_t context_buf_len; |
| 705 | #endif |
Ron Eldor | b7fd64c | 2019-05-12 11:03:32 +0300 | [diff] [blame] | 706 | #if defined(MBEDTLS_SSL_EXPORT_KEYS) |
| 707 | unsigned char eap_tls_keymaterial[16]; |
| 708 | unsigned char eap_tls_iv[8]; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 709 | const char *eap_tls_label = "client EAP encryption"; |
Ron Eldor | b7fd64c | 2019-05-12 11:03:32 +0300 | [diff] [blame] | 710 | eap_tls_keys eap_tls_keying; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 711 | #if defined(MBEDTLS_SSL_DTLS_SRTP) |
Ron Eldor | 65b56ef | 2019-09-26 16:40:48 +0300 | [diff] [blame] | 712 | /*! master keys and master salt for SRTP generated during handshake */ |
Johan Pascal | 9bc97ca | 2020-09-21 23:44:45 +0200 | [diff] [blame] | 713 | unsigned char dtls_srtp_key_material[MBEDTLS_TLS_SRTP_MAX_KEY_MATERIAL_LENGTH]; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 714 | const char *dtls_srtp_label = "EXTRACTOR-dtls_srtp"; |
Johan Pascal | 9bc97ca | 2020-09-21 23:44:45 +0200 | [diff] [blame] | 715 | dtls_srtp_keys dtls_srtp_keying; |
| 716 | const mbedtls_ssl_srtp_profile default_profiles[] = { |
Johan Pascal | 43f9490 | 2020-09-22 12:25:52 +0200 | [diff] [blame] | 717 | 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 Pascal | 253d026 | 2020-09-22 13:04:45 +0200 | [diff] [blame] | 720 | MBEDTLS_TLS_SRTP_NULL_HMAC_SHA1_32, |
| 721 | MBEDTLS_TLS_SRTP_UNSET |
Johan Pascal | 9bc97ca | 2020-09-21 23:44:45 +0200 | [diff] [blame] | 722 | }; |
Ron Eldor | 65b56ef | 2019-09-26 16:40:48 +0300 | [diff] [blame] | 723 | #endif /* MBEDTLS_SSL_DTLS_SRTP */ |
| 724 | #endif /* MBEDTLS_SSL_EXPORT_KEYS */ |
Paul Bakker | 9caf2d2 | 2010-02-18 19:37:19 +0000 | [diff] [blame] | 725 | |
Piotr Nowicki | 7d01ef6 | 2019-11-20 15:00:17 +0100 | [diff] [blame] | 726 | #if defined(MBEDTLS_MEMORY_BUFFER_ALLOC_C) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 727 | mbedtls_memory_buffer_alloc_init(alloc_buf, sizeof(alloc_buf)); |
Piotr Nowicki | 7d01ef6 | 2019-11-20 15:00:17 +0100 | [diff] [blame] | 728 | #endif |
| 729 | |
Gilles Peskine | 60fe660 | 2021-02-16 18:56:42 +0100 | [diff] [blame] | 730 | #if defined(MBEDTLS_TEST_HOOKS) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 731 | test_hooks_init(); |
Gilles Peskine | 60fe660 | 2021-02-16 18:56:42 +0100 | [diff] [blame] | 732 | #endif /* MBEDTLS_TEST_HOOKS */ |
Gilles Peskine | 53dea74 | 2021-02-02 22:55:06 +0100 | [diff] [blame] | 733 | |
Paul Bakker | 1a207ec | 2011-02-06 13:22:40 +0000 | [diff] [blame] | 734 | /* |
| 735 | * Make sure memory references are valid. |
| 736 | */ |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 737 | mbedtls_net_init(&server_fd); |
| 738 | mbedtls_ssl_init(&ssl); |
| 739 | mbedtls_ssl_config_init(&conf); |
Benson Liou | 6805ff7 | 2023-12-27 22:03:24 +0800 | [diff] [blame] | 740 | mbedtls_ssl_session_init(&saved_session); |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 741 | rng_init(&rng); |
Andrzej Kurek | 7829d8f | 2022-10-18 09:19:07 -0400 | [diff] [blame] | 742 | #if defined(MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 743 | mbedtls_x509_crt_init(&cacert); |
| 744 | mbedtls_x509_crt_init(&clicert); |
| 745 | mbedtls_pk_init(&pkey); |
Paul Bakker | ed27a04 | 2013-04-18 22:46:23 +0200 | [diff] [blame] | 746 | #endif |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 747 | #if defined(MBEDTLS_SSL_ALPN) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 748 | memset((void *) alpn_list, 0, sizeof(alpn_list)); |
Manuel Pégourié-Gonnard | 1bd2281 | 2014-04-05 14:34:07 +0200 | [diff] [blame] | 749 | #endif |
Paul Bakker | 1a207ec | 2011-02-06 13:22:40 +0000 | [diff] [blame] | 750 | |
Hanno Becker | b2b468b | 2018-11-12 17:46:59 +0000 | [diff] [blame] | 751 | #if defined(MBEDTLS_USE_PSA_CRYPTO) |
| 752 | status = psa_crypto_init(); |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 753 | if (status != PSA_SUCCESS) { |
| 754 | mbedtls_fprintf(stderr, "Failed to initialize PSA Crypto implementation: %d\n", |
| 755 | (int) status); |
Hanno Becker | b2b468b | 2018-11-12 17:46:59 +0000 | [diff] [blame] | 756 | ret = MBEDTLS_ERR_SSL_HW_ACCEL_FAILED; |
| 757 | goto exit; |
| 758 | } |
Gilles Peskine | 48113eb | 2021-02-09 10:25:20 +0100 | [diff] [blame] | 759 | #endif /* MBEDTLS_USE_PSA_CRYPTO */ |
Gilles Peskine | 2146211 | 2021-01-13 23:53:09 +0100 | [diff] [blame] | 760 | #if defined(MBEDTLS_PSA_CRYPTO_EXTERNAL_RNG) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 761 | mbedtls_test_enable_insecure_external_rng(); |
Gilles Peskine | 94ad831 | 2021-01-25 13:42:28 +0100 | [diff] [blame] | 762 | #endif /* MBEDTLS_PSA_CRYPTO_EXTERNAL_RNG */ |
Hanno Becker | b2b468b | 2018-11-12 17:46:59 +0000 | [diff] [blame] | 763 | |
Paul Bakker | 9caf2d2 | 2010-02-18 19:37:19 +0000 | [diff] [blame] | 764 | opt.server_name = DFL_SERVER_NAME; |
Manuel Pégourié-Gonnard | 0d8780b | 2014-02-25 11:11:26 +0100 | [diff] [blame] | 765 | opt.server_addr = DFL_SERVER_ADDR; |
Paul Bakker | 9caf2d2 | 2010-02-18 19:37:19 +0000 | [diff] [blame] | 766 | opt.server_port = DFL_SERVER_PORT; |
| 767 | opt.debug_level = DFL_DEBUG_LEVEL; |
Hanno Becker | 90cb359 | 2019-04-09 17:24:19 +0100 | [diff] [blame] | 768 | opt.cid_enabled = DFL_CID_ENABLED; |
| 769 | opt.cid_val = DFL_CID_VALUE; |
Hanno Becker | b42ec0d | 2019-05-03 17:30:59 +0100 | [diff] [blame] | 770 | opt.cid_enabled_renego = DFL_CID_ENABLED_RENEGO; |
| 771 | opt.cid_val_renego = DFL_CID_VALUE_RENEGO; |
Manuel Pégourié-Gonnard | 5575316 | 2014-02-26 13:47:08 +0100 | [diff] [blame] | 772 | opt.nbio = DFL_NBIO; |
Hanno Becker | 16970d2 | 2017-10-10 15:56:37 +0100 | [diff] [blame] | 773 | opt.event = DFL_EVENT; |
Hanno Becker | bb425db | 2019-04-03 12:59:58 +0100 | [diff] [blame] | 774 | opt.context_crt_cb = DFL_CONTEXT_CRT_CB; |
Manuel Pégourié-Gonnard | 6b65141 | 2014-10-01 18:29:03 +0200 | [diff] [blame] | 775 | opt.read_timeout = DFL_READ_TIMEOUT; |
Manuel Pégourié-Gonnard | f1e0df3 | 2014-10-02 14:02:32 +0200 | [diff] [blame] | 776 | opt.max_resend = DFL_MAX_RESEND; |
Paul Bakker | 9caf2d2 | 2010-02-18 19:37:19 +0000 | [diff] [blame] | 777 | opt.request_page = DFL_REQUEST_PAGE; |
Paul Bakker | 93c32b2 | 2014-04-25 13:40:05 +0200 | [diff] [blame] | 778 | opt.request_size = DFL_REQUEST_SIZE; |
Paul Bakker | 5690efc | 2011-05-26 13:16:06 +0000 | [diff] [blame] | 779 | opt.ca_file = DFL_CA_FILE; |
Paul Bakker | 8d91458 | 2012-06-04 12:46:42 +0000 | [diff] [blame] | 780 | opt.ca_path = DFL_CA_PATH; |
Paul Bakker | 6796839 | 2010-07-18 08:28:20 +0000 | [diff] [blame] | 781 | opt.crt_file = DFL_CRT_FILE; |
| 782 | opt.key_file = DFL_KEY_FILE; |
Manuel Pégourié-Gonnard | ef68be4 | 2018-11-07 09:42:35 +0100 | [diff] [blame] | 783 | opt.key_opaque = DFL_KEY_OPAQUE; |
Hanno Becker | ca04fdc | 2018-11-07 16:22:14 +0000 | [diff] [blame] | 784 | opt.key_pwd = DFL_KEY_PWD; |
Paul Bakker | d4a56ec | 2013-04-16 18:05:29 +0200 | [diff] [blame] | 785 | opt.psk = DFL_PSK; |
Hanno Becker | e86964c | 2018-10-23 11:37:50 +0100 | [diff] [blame] | 786 | #if defined(MBEDTLS_USE_PSA_CRYPTO) |
Hanno Becker | 1d911cd | 2018-11-15 13:06:09 +0000 | [diff] [blame] | 787 | opt.psk_opaque = DFL_PSK_OPAQUE; |
Hanno Becker | e86964c | 2018-10-23 11:37:50 +0100 | [diff] [blame] | 788 | #endif |
Jarno Lamsa | 1b4a2ba | 2019-03-27 17:55:27 +0200 | [diff] [blame] | 789 | #if defined(MBEDTLS_X509_TRUSTED_CERTIFICATE_CALLBACK) |
| 790 | opt.ca_callback = DFL_CA_CALLBACK; |
| 791 | #endif |
Paul Bakker | d4a56ec | 2013-04-16 18:05:29 +0200 | [diff] [blame] | 792 | opt.psk_identity = DFL_PSK_IDENTITY; |
Manuel Pégourié-Gonnard | 70905a7 | 2015-09-16 11:08:34 +0200 | [diff] [blame] | 793 | opt.ecjpake_pw = DFL_ECJPAKE_PW; |
Manuel Pégourié-Gonnard | b3c8307 | 2017-05-16 08:50:24 +0200 | [diff] [blame] | 794 | opt.ec_max_ops = DFL_EC_MAX_OPS; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 795 | opt.force_ciphersuite[0] = DFL_FORCE_CIPHER; |
Paul Bakker | 48916f9 | 2012-09-16 19:57:18 +0000 | [diff] [blame] | 796 | opt.renegotiation = DFL_RENEGOTIATION; |
| 797 | opt.allow_legacy = DFL_ALLOW_LEGACY; |
Manuel Pégourié-Gonnard | 780d671 | 2014-02-20 17:19:59 +0100 | [diff] [blame] | 798 | opt.renegotiate = DFL_RENEGOTIATE; |
Manuel Pégourié-Gonnard | a8c0a0d | 2014-08-15 12:07:38 +0200 | [diff] [blame] | 799 | opt.exchanges = DFL_EXCHANGES; |
Paul Bakker | 1d29fb5 | 2012-09-28 13:28:45 +0000 | [diff] [blame] | 800 | opt.min_version = DFL_MIN_VERSION; |
| 801 | opt.max_version = DFL_MAX_VERSION; |
Manuel Pégourié-Gonnard | bd47a58 | 2015-01-12 13:43:29 +0100 | [diff] [blame] | 802 | opt.arc4 = DFL_ARC4; |
Gilles Peskine | bc70a18 | 2017-05-09 15:59:24 +0200 | [diff] [blame] | 803 | opt.allow_sha1 = DFL_SHA1; |
Paul Bakker | 91ebfb5 | 2012-11-23 14:04:08 +0100 | [diff] [blame] | 804 | opt.auth_mode = DFL_AUTH_MODE; |
Gilles Peskine | 724a7bb | 2025-02-12 21:50:53 +0100 | [diff] [blame] | 805 | opt.set_hostname = DFL_SET_HOSTNAME; |
Manuel Pégourié-Gonnard | 0df6b1f | 2013-07-16 13:39:57 +0200 | [diff] [blame] | 806 | opt.mfl_code = DFL_MFL_CODE; |
Manuel Pégourié-Gonnard | e980a99 | 2013-07-19 11:08:52 +0200 | [diff] [blame] | 807 | opt.trunc_hmac = DFL_TRUNC_HMAC; |
Manuel Pégourié-Gonnard | c82ee35 | 2015-01-07 16:35:25 +0100 | [diff] [blame] | 808 | opt.recsplit = DFL_RECSPLIT; |
Manuel Pégourié-Gonnard | 9096682 | 2015-06-11 17:02:29 +0200 | [diff] [blame] | 809 | opt.dhmlen = DFL_DHMLEN; |
Manuel Pégourié-Gonnard | aaa1eab | 2013-07-30 13:43:43 +0200 | [diff] [blame] | 810 | opt.reconnect = DFL_RECONNECT; |
Manuel Pégourié-Gonnard | c55a5b7 | 2014-02-20 22:50:56 +0100 | [diff] [blame] | 811 | opt.reco_delay = DFL_RECO_DELAY; |
Manuel Pégourié-Gonnard | a7c3765 | 2019-05-20 12:46:26 +0200 | [diff] [blame] | 812 | opt.reco_mode = DFL_RECO_MODE; |
Manuel Pégourié-Gonnard | dbd2307 | 2015-09-04 10:20:17 +0200 | [diff] [blame] | 813 | opt.reconnect_hard = DFL_RECONNECT_HARD; |
Manuel Pégourié-Gonnard | aa0d4d1 | 2013-08-03 13:02:31 +0200 | [diff] [blame] | 814 | opt.tickets = DFL_TICKETS; |
Manuel Pégourié-Gonnard | 1bd2281 | 2014-04-05 14:34:07 +0200 | [diff] [blame] | 815 | opt.alpn_string = DFL_ALPN_STRING; |
Hanno Becker | e6706e6 | 2017-05-15 16:05:15 +0100 | [diff] [blame] | 816 | opt.curves = DFL_CURVES; |
Manuel Pégourié-Gonnard | d823bd0 | 2014-10-01 14:40:56 +0200 | [diff] [blame] | 817 | 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é-Gonnard | b747c6c | 2018-08-12 13:28:53 +0200 | [diff] [blame] | 820 | opt.dtls_mtu = DFL_DTLS_MTU; |
Manuel Pégourié-Gonnard | 1cbd39d | 2014-10-20 13:34:59 +0200 | [diff] [blame] | 821 | opt.fallback = DFL_FALLBACK; |
Manuel Pégourié-Gonnard | 367381f | 2014-10-20 18:40:56 +0200 | [diff] [blame] | 822 | opt.extended_ms = DFL_EXTENDED_MS; |
Manuel Pégourié-Gonnard | 699cafa | 2014-10-27 13:57:03 +0100 | [diff] [blame] | 823 | opt.etm = DFL_ETM; |
Hanno Becker | 4d61591 | 2018-08-14 13:33:30 +0100 | [diff] [blame] | 824 | opt.dgram_packing = DFL_DGRAM_PACKING; |
Jarno Lamsa | 9831c8a | 2019-05-29 13:33:32 +0300 | [diff] [blame] | 825 | opt.serialize = DFL_SERIALIZE; |
Piotr Nowicki | 3de298f | 2020-04-16 14:35:19 +0200 | [diff] [blame] | 826 | opt.context_file = DFL_CONTEXT_FILE; |
Ron Eldor | b7fd64c | 2019-05-12 11:03:32 +0300 | [diff] [blame] | 827 | opt.eap_tls = DFL_EAP_TLS; |
Philippe Antoine | aa4d152 | 2019-06-06 21:24:31 +0200 | [diff] [blame] | 828 | opt.reproducible = DFL_REPRODUCIBLE; |
Hanno Becker | 48f3a3d | 2019-08-29 06:31:22 +0100 | [diff] [blame] | 829 | opt.nss_keylog = DFL_NSS_KEYLOG; |
| 830 | opt.nss_keylog_file = DFL_NSS_KEYLOG_FILE; |
Manuel Pégourié-Gonnard | 56941fe | 2020-02-17 11:04:33 +0100 | [diff] [blame] | 831 | opt.skip_close_notify = DFL_SKIP_CLOSE_NOTIFY; |
gabor-mezei-arm | a9eecf1 | 2020-07-07 11:11:02 +0200 | [diff] [blame] | 832 | opt.query_config_mode = DFL_QUERY_CONFIG_MODE; |
Ron Eldor | 6ea6451 | 2018-07-02 10:08:07 +0300 | [diff] [blame] | 833 | opt.use_srtp = DFL_USE_SRTP; |
| 834 | opt.force_srtp_profile = DFL_SRTP_FORCE_PROFILE; |
| 835 | opt.mki = DFL_SRTP_MKI; |
Paul Bakker | 9caf2d2 | 2010-02-18 19:37:19 +0000 | [diff] [blame] | 836 | |
Manuel Pégourié-Gonnard | fc8ad27 | 2023-06-27 09:28:24 +0200 | [diff] [blame] | 837 | p = q = NULL; |
Manuel Pégourié-Gonnard | 797cfd8 | 2023-06-26 11:29:35 +0200 | [diff] [blame] | 838 | if (argc < 1) { |
Manuel Pégourié-Gonnard | 779cceb | 2023-06-26 11:28:00 +0200 | [diff] [blame] | 839 | usage: |
Manuel Pégourié-Gonnard | fc8ad27 | 2023-06-27 09:28:24 +0200 | [diff] [blame] | 840 | 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é-Gonnard | 779cceb | 2023-06-26 11:28:00 +0200 | [diff] [blame] | 852 | if (ret == 0) { |
| 853 | ret = 1; |
| 854 | } |
Manuel Pégourié-Gonnard | 779cceb | 2023-06-26 11:28:00 +0200 | [diff] [blame] | 855 | goto exit; |
| 856 | } |
| 857 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 858 | for (i = 1; i < argc; i++) { |
Paul Bakker | 9caf2d2 | 2010-02-18 19:37:19 +0000 | [diff] [blame] | 859 | p = argv[i]; |
Manuel Pégourié-Gonnard | fc8ad27 | 2023-06-27 09:28:24 +0200 | [diff] [blame] | 860 | |
| 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 Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 882 | if ((q = strchr(p, '=')) == NULL) { |
Manuel Pégourié-Gonnard | fc8ad27 | 2023-06-27 09:28:24 +0200 | [diff] [blame] | 883 | mbedtls_printf("param requires a value: '%s'\n", p); |
| 884 | p = NULL; // avoid "unrecnognized param" message |
Paul Bakker | 9caf2d2 | 2010-02-18 19:37:19 +0000 | [diff] [blame] | 885 | goto usage; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 886 | } |
Paul Bakker | 9caf2d2 | 2010-02-18 19:37:19 +0000 | [diff] [blame] | 887 | *q++ = '\0'; |
| 888 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 889 | if (strcmp(p, "server_name") == 0) { |
Paul Bakker | 9caf2d2 | 2010-02-18 19:37:19 +0000 | [diff] [blame] | 890 | opt.server_name = q; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 891 | } else if (strcmp(p, "server_addr") == 0) { |
Manuel Pégourié-Gonnard | 0d8780b | 2014-02-25 11:11:26 +0100 | [diff] [blame] | 892 | opt.server_addr = q; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 893 | } else if (strcmp(p, "server_port") == 0) { |
Manuel Pégourié-Gonnard | c0d7494 | 2015-06-23 12:30:57 +0200 | [diff] [blame] | 894 | opt.server_port = q; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 895 | } else if (strcmp(p, "dtls") == 0) { |
| 896 | int t = atoi(q); |
| 897 | if (t == 0) { |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 898 | opt.transport = MBEDTLS_SSL_TRANSPORT_STREAM; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 899 | } else if (t == 1) { |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 900 | opt.transport = MBEDTLS_SSL_TRANSPORT_DATAGRAM; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 901 | } else { |
Manuel Pégourié-Gonnard | e29fd4b | 2014-02-06 14:02:55 +0100 | [diff] [blame] | 902 | goto usage; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 903 | } |
| 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 Bakker | 9caf2d2 | 2010-02-18 19:37:19 +0000 | [diff] [blame] | 907 | goto usage; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 908 | } |
| 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 Wang | 4d4b077 | 2022-11-10 14:37:20 +0800 | [diff] [blame] | 914 | goto exit; |
| 915 | } |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 916 | } 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 Becker | bb425db | 2019-04-03 12:59:58 +0100 | [diff] [blame] | 919 | goto usage; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 920 | } |
| 921 | } else if (strcmp(p, "nbio") == 0) { |
| 922 | opt.nbio = atoi(q); |
| 923 | if (opt.nbio < 0 || opt.nbio > 2) { |
Manuel Pégourié-Gonnard | 5575316 | 2014-02-26 13:47:08 +0100 | [diff] [blame] | 924 | goto usage; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 925 | } |
| 926 | } else if (strcmp(p, "event") == 0) { |
| 927 | opt.event = atoi(q); |
| 928 | if (opt.event < 0 || opt.event > 2) { |
Hanno Becker | 16970d2 | 2017-10-10 15:56:37 +0100 | [diff] [blame] | 929 | goto usage; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 930 | } |
| 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é-Gonnard | f1e0df3 | 2014-10-02 14:02:32 +0200 | [diff] [blame] | 936 | goto usage; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 937 | } |
| 938 | } else if (strcmp(p, "request_page") == 0) { |
Paul Bakker | 9caf2d2 | 2010-02-18 19:37:19 +0000 | [diff] [blame] | 939 | opt.request_page = q; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 940 | } 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 Bakker | 93c32b2 | 2014-04-25 13:40:05 +0200 | [diff] [blame] | 944 | goto usage; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 945 | } |
| 946 | } else if (strcmp(p, "ca_file") == 0) { |
Paul Bakker | 5690efc | 2011-05-26 13:16:06 +0000 | [diff] [blame] | 947 | opt.ca_file = q; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 948 | } else if (strcmp(p, "ca_path") == 0) { |
Paul Bakker | 8d91458 | 2012-06-04 12:46:42 +0000 | [diff] [blame] | 949 | opt.ca_path = q; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 950 | } else if (strcmp(p, "crt_file") == 0) { |
Paul Bakker | 6796839 | 2010-07-18 08:28:20 +0000 | [diff] [blame] | 951 | opt.crt_file = q; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 952 | } else if (strcmp(p, "key_file") == 0) { |
Paul Bakker | 6796839 | 2010-07-18 08:28:20 +0000 | [diff] [blame] | 953 | opt.key_file = q; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 954 | } else if (strcmp(p, "key_pwd") == 0) { |
Hanno Becker | 2d3ac68 | 2020-08-17 09:42:37 +0100 | [diff] [blame] | 955 | opt.key_pwd = q; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 956 | } |
Andrzej Kurek | 7829d8f | 2022-10-18 09:19:07 -0400 | [diff] [blame] | 957 | #if defined(MBEDTLS_USE_PSA_CRYPTO) && defined(MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 958 | else if (strcmp(p, "key_opaque") == 0) { |
| 959 | opt.key_opaque = atoi(q); |
| 960 | } |
Manuel Pégourié-Gonnard | ef68be4 | 2018-11-07 09:42:35 +0100 | [diff] [blame] | 961 | #endif |
Hanno Becker | a0e20d0 | 2019-05-15 14:03:01 +0100 | [diff] [blame] | 962 | #if defined(MBEDTLS_SSL_DTLS_CONNECTION_ID) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 963 | else if (strcmp(p, "cid") == 0) { |
| 964 | opt.cid_enabled = atoi(q); |
| 965 | if (opt.cid_enabled != 0 && opt.cid_enabled != 1) { |
Hanno Becker | 90cb359 | 2019-04-09 17:24:19 +0100 | [diff] [blame] | 966 | goto usage; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 967 | } |
| 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 Becker | b42ec0d | 2019-05-03 17:30:59 +0100 | [diff] [blame] | 971 | goto usage; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 972 | } |
| 973 | } else if (strcmp(p, "cid_val") == 0) { |
Hanno Becker | 90cb359 | 2019-04-09 17:24:19 +0100 | [diff] [blame] | 974 | opt.cid_val = q; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 975 | } else if (strcmp(p, "cid_val_renego") == 0) { |
Hanno Becker | b42ec0d | 2019-05-03 17:30:59 +0100 | [diff] [blame] | 976 | opt.cid_val_renego = q; |
| 977 | } |
Hanno Becker | a0e20d0 | 2019-05-15 14:03:01 +0100 | [diff] [blame] | 978 | #endif /* MBEDTLS_SSL_DTLS_CONNECTION_ID */ |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 979 | else if (strcmp(p, "psk") == 0) { |
Paul Bakker | d4a56ec | 2013-04-16 18:05:29 +0200 | [diff] [blame] | 980 | opt.psk = q; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 981 | } |
Hanno Becker | e86964c | 2018-10-23 11:37:50 +0100 | [diff] [blame] | 982 | #if defined(MBEDTLS_USE_PSA_CRYPTO) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 983 | else if (strcmp(p, "psk_opaque") == 0) { |
| 984 | opt.psk_opaque = atoi(q); |
| 985 | } |
Hanno Becker | e86964c | 2018-10-23 11:37:50 +0100 | [diff] [blame] | 986 | #endif |
Jarno Lamsa | 1b4a2ba | 2019-03-27 17:55:27 +0200 | [diff] [blame] | 987 | #if defined(MBEDTLS_X509_TRUSTED_CERTIFICATE_CALLBACK) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 988 | else if (strcmp(p, "ca_callback") == 0) { |
| 989 | opt.ca_callback = atoi(q); |
| 990 | } |
Jarno Lamsa | 1b4a2ba | 2019-03-27 17:55:27 +0200 | [diff] [blame] | 991 | #endif |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 992 | else if (strcmp(p, "psk_identity") == 0) { |
Paul Bakker | d4a56ec | 2013-04-16 18:05:29 +0200 | [diff] [blame] | 993 | opt.psk_identity = q; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 994 | } else if (strcmp(p, "ecjpake_pw") == 0) { |
Manuel Pégourié-Gonnard | 70905a7 | 2015-09-16 11:08:34 +0200 | [diff] [blame] | 995 | opt.ecjpake_pw = q; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 996 | } 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 Bakker | 5193688 | 2011-02-20 16:05:58 +0000 | [diff] [blame] | 1000 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1001 | if (opt.force_ciphersuite[0] == 0) { |
Paul Bakker | fab5c82 | 2012-02-06 16:45:10 +0000 | [diff] [blame] | 1002 | ret = 2; |
Paul Bakker | 5193688 | 2011-02-20 16:05:58 +0000 | [diff] [blame] | 1003 | goto usage; |
Paul Bakker | fab5c82 | 2012-02-06 16:45:10 +0000 | [diff] [blame] | 1004 | } |
Paul Bakker | 5193688 | 2011-02-20 16:05:58 +0000 | [diff] [blame] | 1005 | opt.force_ciphersuite[1] = 0; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1006 | } 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 Becker | 4cb1f4d | 2017-10-10 15:59:57 +0100 | [diff] [blame] | 1012 | 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é-Gonnard | 85d915b | 2014-11-03 20:10:36 +0100 | [diff] [blame] | 1021 | default: goto usage; |
| 1022 | } |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1023 | } else if (strcmp(p, "renegotiate") == 0) { |
| 1024 | opt.renegotiate = atoi(q); |
| 1025 | if (opt.renegotiate < 0 || opt.renegotiate > 1) { |
Manuel Pégourié-Gonnard | 780d671 | 2014-02-20 17:19:59 +0100 | [diff] [blame] | 1026 | goto usage; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1027 | } |
| 1028 | } else if (strcmp(p, "exchanges") == 0) { |
| 1029 | opt.exchanges = atoi(q); |
| 1030 | if (opt.exchanges < 1) { |
Manuel Pégourié-Gonnard | a8c0a0d | 2014-08-15 12:07:38 +0200 | [diff] [blame] | 1031 | goto usage; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1032 | } |
| 1033 | } else if (strcmp(p, "reconnect") == 0) { |
| 1034 | opt.reconnect = atoi(q); |
| 1035 | if (opt.reconnect < 0 || opt.reconnect > 2) { |
Manuel Pégourié-Gonnard | aaa1eab | 2013-07-30 13:43:43 +0200 | [diff] [blame] | 1036 | goto usage; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1037 | } |
| 1038 | } else if (strcmp(p, "reco_delay") == 0) { |
| 1039 | opt.reco_delay = atoi(q); |
| 1040 | if (opt.reco_delay < 0) { |
Manuel Pégourié-Gonnard | c55a5b7 | 2014-02-20 22:50:56 +0100 | [diff] [blame] | 1041 | goto usage; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1042 | } |
| 1043 | } else if (strcmp(p, "reco_mode") == 0) { |
| 1044 | opt.reco_mode = atoi(q); |
| 1045 | if (opt.reco_mode < 0) { |
Manuel Pégourié-Gonnard | a7c3765 | 2019-05-20 12:46:26 +0200 | [diff] [blame] | 1046 | goto usage; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1047 | } |
| 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é-Gonnard | dbd2307 | 2015-09-04 10:20:17 +0200 | [diff] [blame] | 1051 | goto usage; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1052 | } |
| 1053 | } else if (strcmp(p, "tickets") == 0) { |
| 1054 | opt.tickets = atoi(q); |
| 1055 | if (opt.tickets < 0 || opt.tickets > 2) { |
Manuel Pégourié-Gonnard | aa0d4d1 | 2013-08-03 13:02:31 +0200 | [diff] [blame] | 1056 | goto usage; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1057 | } |
| 1058 | } else if (strcmp(p, "alpn") == 0) { |
Manuel Pégourié-Gonnard | 1bd2281 | 2014-04-05 14:34:07 +0200 | [diff] [blame] | 1059 | opt.alpn_string = q; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1060 | } else if (strcmp(p, "fallback") == 0) { |
| 1061 | switch (atoi(q)) { |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1062 | case 0: opt.fallback = MBEDTLS_SSL_IS_NOT_FALLBACK; break; |
| 1063 | case 1: opt.fallback = MBEDTLS_SSL_IS_FALLBACK; break; |
Manuel Pégourié-Gonnard | 1cbd39d | 2014-10-20 13:34:59 +0200 | [diff] [blame] | 1064 | default: goto usage; |
| 1065 | } |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1066 | } else if (strcmp(p, "extended_ms") == 0) { |
| 1067 | switch (atoi(q)) { |
Hanno Becker | 4cb1f4d | 2017-10-10 15:59:57 +0100 | [diff] [blame] | 1068 | 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é-Gonnard | 367381f | 2014-10-20 18:40:56 +0200 | [diff] [blame] | 1074 | default: goto usage; |
| 1075 | } |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1076 | } else if (strcmp(p, "curves") == 0) { |
Hanno Becker | e6706e6 | 2017-05-15 16:05:15 +0100 | [diff] [blame] | 1077 | opt.curves = q; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1078 | } else if (strcmp(p, "etm") == 0) { |
| 1079 | switch (atoi(q)) { |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1080 | case 0: opt.etm = MBEDTLS_SSL_ETM_DISABLED; break; |
| 1081 | case 1: opt.etm = MBEDTLS_SSL_ETM_ENABLED; break; |
Manuel Pégourié-Gonnard | 699cafa | 2014-10-27 13:57:03 +0100 | [diff] [blame] | 1082 | default: goto usage; |
| 1083 | } |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1084 | } else if (strcmp(p, "min_version") == 0) { |
| 1085 | if (strcmp(q, "ssl3") == 0) { |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1086 | opt.min_version = MBEDTLS_SSL_MINOR_VERSION_0; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1087 | } else if (strcmp(q, "tls1") == 0) { |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1088 | opt.min_version = MBEDTLS_SSL_MINOR_VERSION_1; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1089 | } else if (strcmp(q, "tls1_1") == 0 || |
| 1090 | strcmp(q, "dtls1") == 0) { |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1091 | opt.min_version = MBEDTLS_SSL_MINOR_VERSION_2; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1092 | } else if (strcmp(q, "tls12") == 0 || |
| 1093 | strcmp(q, "dtls12") == 0) { |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1094 | opt.min_version = MBEDTLS_SSL_MINOR_VERSION_3; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1095 | } else { |
Paul Bakker | 1d29fb5 | 2012-09-28 13:28:45 +0000 | [diff] [blame] | 1096 | goto usage; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1097 | } |
| 1098 | } else if (strcmp(p, "max_version") == 0) { |
| 1099 | if (strcmp(q, "ssl3") == 0) { |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1100 | opt.max_version = MBEDTLS_SSL_MINOR_VERSION_0; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1101 | } else if (strcmp(q, "tls1") == 0) { |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1102 | opt.max_version = MBEDTLS_SSL_MINOR_VERSION_1; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1103 | } else if (strcmp(q, "tls1_1") == 0 || |
| 1104 | strcmp(q, "dtls1") == 0) { |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1105 | opt.max_version = MBEDTLS_SSL_MINOR_VERSION_2; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1106 | } else if (strcmp(q, "tls12") == 0 || |
| 1107 | strcmp(q, "dtls12") == 0) { |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1108 | opt.max_version = MBEDTLS_SSL_MINOR_VERSION_3; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1109 | } else { |
Paul Bakker | 1d29fb5 | 2012-09-28 13:28:45 +0000 | [diff] [blame] | 1110 | goto usage; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1111 | } |
| 1112 | } else if (strcmp(p, "arc4") == 0) { |
| 1113 | switch (atoi(q)) { |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1114 | case 0: opt.arc4 = MBEDTLS_SSL_ARC4_DISABLED; break; |
| 1115 | case 1: opt.arc4 = MBEDTLS_SSL_ARC4_ENABLED; break; |
Manuel Pégourié-Gonnard | bd47a58 | 2015-01-12 13:43:29 +0100 | [diff] [blame] | 1116 | default: goto usage; |
| 1117 | } |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1118 | } else if (strcmp(p, "allow_sha1") == 0) { |
| 1119 | switch (atoi(q)) { |
Gilles Peskine | bc70a18 | 2017-05-09 15:59:24 +0200 | [diff] [blame] | 1120 | case 0: opt.allow_sha1 = 0; break; |
| 1121 | case 1: opt.allow_sha1 = 1; break; |
| 1122 | default: goto usage; |
| 1123 | } |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1124 | } else if (strcmp(p, "force_version") == 0) { |
| 1125 | if (strcmp(q, "ssl3") == 0) { |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1126 | opt.min_version = MBEDTLS_SSL_MINOR_VERSION_0; |
| 1127 | opt.max_version = MBEDTLS_SSL_MINOR_VERSION_0; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1128 | } else if (strcmp(q, "tls1") == 0) { |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1129 | opt.min_version = MBEDTLS_SSL_MINOR_VERSION_1; |
| 1130 | opt.max_version = MBEDTLS_SSL_MINOR_VERSION_1; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1131 | } else if (strcmp(q, "tls1_1") == 0) { |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1132 | opt.min_version = MBEDTLS_SSL_MINOR_VERSION_2; |
| 1133 | opt.max_version = MBEDTLS_SSL_MINOR_VERSION_2; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1134 | } else if (strcmp(q, "tls12") == 0) { |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1135 | opt.min_version = MBEDTLS_SSL_MINOR_VERSION_3; |
| 1136 | opt.max_version = MBEDTLS_SSL_MINOR_VERSION_3; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1137 | } else if (strcmp(q, "dtls1") == 0) { |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1138 | 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 Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1141 | } else if (strcmp(q, "dtls12") == 0) { |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1142 | 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 Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1145 | } else { |
Paul Bakker | 1d29fb5 | 2012-09-28 13:28:45 +0000 | [diff] [blame] | 1146 | goto usage; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1147 | } |
| 1148 | } else if (strcmp(p, "auth_mode") == 0) { |
| 1149 | if (strcmp(q, "none") == 0) { |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1150 | opt.auth_mode = MBEDTLS_SSL_VERIFY_NONE; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1151 | } else if (strcmp(q, "optional") == 0) { |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1152 | opt.auth_mode = MBEDTLS_SSL_VERIFY_OPTIONAL; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1153 | } else if (strcmp(q, "required") == 0) { |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1154 | opt.auth_mode = MBEDTLS_SSL_VERIFY_REQUIRED; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1155 | } else { |
Paul Bakker | 91ebfb5 | 2012-11-23 14:04:08 +0100 | [diff] [blame] | 1156 | goto usage; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1157 | } |
Gilles Peskine | 724a7bb | 2025-02-12 21:50:53 +0100 | [diff] [blame] | 1158 | } 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 Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1168 | } else if (strcmp(p, "max_frag_len") == 0) { |
| 1169 | if (strcmp(q, "512") == 0) { |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1170 | opt.mfl_code = MBEDTLS_SSL_MAX_FRAG_LEN_512; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1171 | } else if (strcmp(q, "1024") == 0) { |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1172 | opt.mfl_code = MBEDTLS_SSL_MAX_FRAG_LEN_1024; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1173 | } else if (strcmp(q, "2048") == 0) { |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1174 | opt.mfl_code = MBEDTLS_SSL_MAX_FRAG_LEN_2048; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1175 | } else if (strcmp(q, "4096") == 0) { |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1176 | opt.mfl_code = MBEDTLS_SSL_MAX_FRAG_LEN_4096; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1177 | } else { |
Manuel Pégourié-Gonnard | 0df6b1f | 2013-07-16 13:39:57 +0200 | [diff] [blame] | 1178 | goto usage; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1179 | } |
| 1180 | } else if (strcmp(p, "trunc_hmac") == 0) { |
| 1181 | switch (atoi(q)) { |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1182 | 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é-Gonnard | 265fe99 | 2015-01-09 12:43:35 +0100 | [diff] [blame] | 1184 | default: goto usage; |
| 1185 | } |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1186 | } else if (strcmp(p, "hs_timeout") == 0) { |
| 1187 | if ((p = strchr(q, '-')) == NULL) { |
Hanno Becker | 4d61591 | 2018-08-14 13:33:30 +0100 | [diff] [blame] | 1188 | goto usage; |
| 1189 | } |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1190 | *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é-Gonnard | c82ee35 | 2015-01-07 16:35:25 +0100 | [diff] [blame] | 1194 | goto usage; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1195 | } |
| 1196 | } else if (strcmp(p, "mtu") == 0) { |
| 1197 | opt.dtls_mtu = atoi(q); |
| 1198 | if (opt.dtls_mtu < 0) { |
Manuel Pégourié-Gonnard | 9096682 | 2015-06-11 17:02:29 +0200 | [diff] [blame] | 1199 | goto usage; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1200 | } |
| 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-arm | a9eecf1 | 2020-07-07 11:11:02 +0200 | [diff] [blame] | 1218 | opt.query_config_mode = 1; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1219 | query_config_ret = query_config(q); |
gabor-mezei-arm | 7859585 | 2020-04-28 10:40:30 +0200 | [diff] [blame] | 1220 | goto exit; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1221 | } else if (strcmp(p, "serialize") == 0) { |
| 1222 | opt.serialize = atoi(q); |
| 1223 | if (opt.serialize < 0 || opt.serialize > 2) { |
Jarno Lamsa | 9831c8a | 2019-05-29 13:33:32 +0300 | [diff] [blame] | 1224 | goto usage; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1225 | } |
| 1226 | } else if (strcmp(p, "context_file") == 0) { |
Piotr Nowicki | 3de298f | 2020-04-16 14:35:19 +0200 | [diff] [blame] | 1227 | opt.context_file = q; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1228 | } else if (strcmp(p, "eap_tls") == 0) { |
| 1229 | opt.eap_tls = atoi(q); |
| 1230 | if (opt.eap_tls < 0 || opt.eap_tls > 1) { |
Ron Eldor | b7fd64c | 2019-05-12 11:03:32 +0300 | [diff] [blame] | 1231 | goto usage; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1232 | } |
| 1233 | } else if (strcmp(p, "reproducible") == 0) { |
Philippe Antoine | aa4d152 | 2019-06-06 21:24:31 +0200 | [diff] [blame] | 1234 | opt.reproducible = 1; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1235 | } else if (strcmp(p, "nss_keylog") == 0) { |
| 1236 | opt.nss_keylog = atoi(q); |
| 1237 | if (opt.nss_keylog < 0 || opt.nss_keylog > 1) { |
Hanno Becker | 48f3a3d | 2019-08-29 06:31:22 +0100 | [diff] [blame] | 1238 | goto usage; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1239 | } |
| 1240 | } else if (strcmp(p, "nss_keylog_file") == 0) { |
Hanno Becker | 48f3a3d | 2019-08-29 06:31:22 +0100 | [diff] [blame] | 1241 | opt.nss_keylog_file = q; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1242 | } 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é-Gonnard | 56941fe | 2020-02-17 11:04:33 +0100 | [diff] [blame] | 1245 | goto usage; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1246 | } |
| 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 Eldor | 6ea6451 | 2018-07-02 10:08:07 +0300 | [diff] [blame] | 1252 | opt.mki = q; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1253 | } else { |
Manuel Pégourié-Gonnard | fc8ad27 | 2023-06-27 09:28:24 +0200 | [diff] [blame] | 1254 | /* This signals that the problem is with p not q */ |
| 1255 | q = NULL; |
Paul Bakker | 9caf2d2 | 2010-02-18 19:37:19 +0000 | [diff] [blame] | 1256 | goto usage; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1257 | } |
Paul Bakker | 9caf2d2 | 2010-02-18 19:37:19 +0000 | [diff] [blame] | 1258 | } |
Manuel Pégourié-Gonnard | fc8ad27 | 2023-06-27 09:28:24 +0200 | [diff] [blame] | 1259 | /* This signals that any further errors are not with a single option */ |
| 1260 | p = q = NULL; |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 1261 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1262 | 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 Becker | bc5308c | 2019-09-09 11:38:51 +0100 | [diff] [blame] | 1264 | goto usage; |
| 1265 | } |
| 1266 | |
Hanno Becker | 16970d2 | 2017-10-10 15:56:37 +0100 | [diff] [blame] | 1267 | /* 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 Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1270 | if (opt.event == 1 && opt.nbio != 1) { |
| 1271 | mbedtls_printf("Warning: event-driven IO mandates nbio=1 - overwrite\n"); |
Hanno Becker | 16970d2 | 2017-10-10 15:56:37 +0100 | [diff] [blame] | 1272 | opt.nbio = 1; |
| 1273 | } |
| 1274 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1275 | #if defined(MBEDTLS_DEBUG_C) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1276 | mbedtls_debug_set_threshold(opt.debug_level); |
Paul Bakker | c73079a | 2014-04-25 16:34:30 +0200 | [diff] [blame] | 1277 | #endif |
| 1278 | |
Gilles Peskine | eccd888 | 2020-03-10 12:19:08 +0100 | [diff] [blame] | 1279 | #if defined(MBEDTLS_KEY_EXCHANGE_SOME_PSK_ENABLED) |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 1280 | /* |
Paul Bakker | d4a56ec | 2013-04-16 18:05:29 +0200 | [diff] [blame] | 1281 | * Unhexify the pre-shared key if any is given |
| 1282 | */ |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1283 | 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 Becker | 1f583ee | 2019-04-09 17:12:56 +0100 | [diff] [blame] | 1287 | goto exit; |
Paul Bakker | d4a56ec | 2013-04-16 18:05:29 +0200 | [diff] [blame] | 1288 | } |
| 1289 | } |
Gilles Peskine | eccd888 | 2020-03-10 12:19:08 +0100 | [diff] [blame] | 1290 | #endif /* MBEDTLS_KEY_EXCHANGE_SOME_PSK_ENABLED */ |
Paul Bakker | d4a56ec | 2013-04-16 18:05:29 +0200 | [diff] [blame] | 1291 | |
Hanno Becker | e86964c | 2018-10-23 11:37:50 +0100 | [diff] [blame] | 1292 | #if defined(MBEDTLS_USE_PSA_CRYPTO) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1293 | 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 Becker | e86964c | 2018-10-23 11:37:50 +0100 | [diff] [blame] | 1296 | ret = 2; |
| 1297 | goto usage; |
| 1298 | } |
| 1299 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1300 | 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 Becker | e86964c | 2018-10-23 11:37:50 +0100 | [diff] [blame] | 1303 | ret = 2; |
| 1304 | goto usage; |
| 1305 | } |
| 1306 | } |
| 1307 | #endif /* MBEDTLS_USE_PSA_CRYPTO */ |
| 1308 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1309 | if (opt.force_ciphersuite[0] > 0) { |
Hanno Becker | e86964c | 2018-10-23 11:37:50 +0100 | [diff] [blame] | 1310 | const mbedtls_ssl_ciphersuite_t *ciphersuite_info; |
| 1311 | ciphersuite_info = |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1312 | mbedtls_ssl_ciphersuite_from_id(opt.force_ciphersuite[0]); |
Hanno Becker | e86964c | 2018-10-23 11:37:50 +0100 | [diff] [blame] | 1313 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1314 | 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 Becker | e86964c | 2018-10-23 11:37:50 +0100 | [diff] [blame] | 1317 | ret = 2; |
| 1318 | goto usage; |
| 1319 | } |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1320 | 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 Becker | e86964c | 2018-10-23 11:37:50 +0100 | [diff] [blame] | 1323 | 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 Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1329 | if (opt.max_version == -1 || |
| 1330 | opt.max_version > ciphersuite_info->max_minor_ver) { |
Hanno Becker | e86964c | 2018-10-23 11:37:50 +0100 | [diff] [blame] | 1331 | opt.max_version = ciphersuite_info->max_minor_ver; |
| 1332 | } |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1333 | if (opt.min_version < ciphersuite_info->min_minor_ver) { |
Hanno Becker | e86964c | 2018-10-23 11:37:50 +0100 | [diff] [blame] | 1334 | opt.min_version = ciphersuite_info->min_minor_ver; |
| 1335 | /* DTLS starts with TLS 1.1 */ |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1336 | if (opt.transport == MBEDTLS_SSL_TRANSPORT_DATAGRAM && |
| 1337 | opt.min_version < MBEDTLS_SSL_MINOR_VERSION_2) { |
Hanno Becker | e86964c | 2018-10-23 11:37:50 +0100 | [diff] [blame] | 1338 | opt.min_version = MBEDTLS_SSL_MINOR_VERSION_2; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1339 | } |
Hanno Becker | e86964c | 2018-10-23 11:37:50 +0100 | [diff] [blame] | 1340 | } |
| 1341 | |
| 1342 | /* Enable RC4 if needed and not explicitly disabled */ |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1343 | 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 Becker | e86964c | 2018-10-23 11:37:50 +0100 | [diff] [blame] | 1346 | ret = 2; |
| 1347 | goto usage; |
| 1348 | } |
| 1349 | |
| 1350 | opt.arc4 = MBEDTLS_SSL_ARC4_ENABLED; |
| 1351 | } |
| 1352 | |
| 1353 | #if defined(MBEDTLS_USE_PSA_CRYPTO) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1354 | #if defined(MBEDTLS_KEY_EXCHANGE_SOME_PSK_ENABLED) |
| 1355 | if (opt.psk_opaque != 0) { |
Hanno Becker | e86964c | 2018-10-23 11:37:50 +0100 | [diff] [blame] | 1356 | /* Determine KDF algorithm the opaque PSK will be used in. */ |
| 1357 | #if defined(MBEDTLS_SHA512_C) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1358 | if (ciphersuite_info->mac == MBEDTLS_MD_SHA384) { |
Hanno Becker | e86964c | 2018-10-23 11:37:50 +0100 | [diff] [blame] | 1359 | alg = PSA_ALG_TLS12_PSK_TO_MS(PSA_ALG_SHA_384); |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1360 | } else |
Hanno Becker | e86964c | 2018-10-23 11:37:50 +0100 | [diff] [blame] | 1361 | #endif /* MBEDTLS_SHA512_C */ |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1362 | alg = PSA_ALG_TLS12_PSK_TO_MS(PSA_ALG_SHA_256); |
Hanno Becker | e86964c | 2018-10-23 11:37:50 +0100 | [diff] [blame] | 1363 | } |
Andrzej Kurek | e2462ba | 2022-01-17 15:29:08 +0100 | [diff] [blame] | 1364 | #endif /* MBEDTLS_KEY_EXCHANGE_SOME_PSK_ENABLED */ |
Hanno Becker | e86964c | 2018-10-23 11:37:50 +0100 | [diff] [blame] | 1365 | #endif /* MBEDTLS_USE_PSA_CRYPTO */ |
| 1366 | } |
| 1367 | |
Hanno Becker | a0e20d0 | 2019-05-15 14:03:01 +0100 | [diff] [blame] | 1368 | #if defined(MBEDTLS_SSL_DTLS_CONNECTION_ID) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1369 | if (mbedtls_test_unhexify(cid, sizeof(cid), |
| 1370 | opt.cid_val, &cid_len) != 0) { |
| 1371 | mbedtls_printf("CID not valid\n"); |
Hanno Becker | b42ec0d | 2019-05-03 17:30:59 +0100 | [diff] [blame] | 1372 | goto exit; |
| 1373 | } |
| 1374 | |
| 1375 | /* Keep CID settings for renegotiation unless |
| 1376 | * specified otherwise. */ |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1377 | if (opt.cid_enabled_renego == DFL_CID_ENABLED_RENEGO) { |
Hanno Becker | b42ec0d | 2019-05-03 17:30:59 +0100 | [diff] [blame] | 1378 | opt.cid_enabled_renego = opt.cid_enabled; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1379 | } |
| 1380 | if (opt.cid_val_renego == DFL_CID_VALUE_RENEGO) { |
Hanno Becker | b42ec0d | 2019-05-03 17:30:59 +0100 | [diff] [blame] | 1381 | opt.cid_val_renego = opt.cid_val; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1382 | } |
Hanno Becker | b42ec0d | 2019-05-03 17:30:59 +0100 | [diff] [blame] | 1383 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1384 | 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 Becker | b42ec0d | 2019-05-03 17:30:59 +0100 | [diff] [blame] | 1387 | goto exit; |
| 1388 | } |
Hanno Becker | a0e20d0 | 2019-05-15 14:03:01 +0100 | [diff] [blame] | 1389 | #endif /* MBEDTLS_SSL_DTLS_CONNECTION_ID */ |
Hanno Becker | 90cb359 | 2019-04-09 17:24:19 +0100 | [diff] [blame] | 1390 | |
Hanno Becker | e6706e6 | 2017-05-15 16:05:15 +0100 | [diff] [blame] | 1391 | #if defined(MBEDTLS_ECP_C) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1392 | if (opt.curves != NULL) { |
Hanno Becker | e6706e6 | 2017-05-15 16:05:15 +0100 | [diff] [blame] | 1393 | p = (char *) opt.curves; |
| 1394 | i = 0; |
| 1395 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1396 | if (strcmp(p, "none") == 0) { |
Hanno Becker | e6706e6 | 2017-05-15 16:05:15 +0100 | [diff] [blame] | 1397 | curve_list[0] = MBEDTLS_ECP_DP_NONE; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1398 | } else if (strcmp(p, "default") != 0) { |
Hanno Becker | e6706e6 | 2017-05-15 16:05:15 +0100 | [diff] [blame] | 1399 | /* Leave room for a final NULL in curve list */ |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1400 | while (i < CURVE_LIST_SIZE - 1 && *p != '\0') { |
Hanno Becker | e6706e6 | 2017-05-15 16:05:15 +0100 | [diff] [blame] | 1401 | q = p; |
| 1402 | |
| 1403 | /* Terminate the current string */ |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1404 | while (*p != ',' && *p != '\0') { |
Hanno Becker | e6706e6 | 2017-05-15 16:05:15 +0100 | [diff] [blame] | 1405 | p++; |
Hanno Becker | e6706e6 | 2017-05-15 16:05:15 +0100 | [diff] [blame] | 1406 | } |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1407 | 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 Becker | e6706e6 | 2017-05-15 16:05:15 +0100 | [diff] [blame] | 1417 | curve_cur->grp_id != MBEDTLS_ECP_DP_NONE; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1418 | curve_cur++) { |
| 1419 | mbedtls_printf("%s ", curve_cur->name); |
Hanno Becker | e6706e6 | 2017-05-15 16:05:15 +0100 | [diff] [blame] | 1420 | } |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1421 | mbedtls_printf("\n"); |
Hanno Becker | e6706e6 | 2017-05-15 16:05:15 +0100 | [diff] [blame] | 1422 | goto exit; |
| 1423 | } |
| 1424 | } |
| 1425 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1426 | mbedtls_printf("Number of curves: %d\n", i); |
Hanno Becker | e6706e6 | 2017-05-15 16:05:15 +0100 | [diff] [blame] | 1427 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1428 | if (i == CURVE_LIST_SIZE - 1 && *p != '\0') { |
| 1429 | mbedtls_printf("curves list too long, maximum %d", |
| 1430 | CURVE_LIST_SIZE - 1); |
Hanno Becker | e6706e6 | 2017-05-15 16:05:15 +0100 | [diff] [blame] | 1431 | goto exit; |
| 1432 | } |
| 1433 | |
| 1434 | curve_list[i] = MBEDTLS_ECP_DP_NONE; |
| 1435 | } |
| 1436 | } |
| 1437 | #endif /* MBEDTLS_ECP_C */ |
| 1438 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1439 | #if defined(MBEDTLS_SSL_ALPN) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1440 | if (opt.alpn_string != NULL) { |
Manuel Pégourié-Gonnard | 1bd2281 | 2014-04-05 14:34:07 +0200 | [diff] [blame] | 1441 | p = (char *) opt.alpn_string; |
| 1442 | i = 0; |
| 1443 | |
| 1444 | /* Leave room for a final NULL in alpn_list */ |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1445 | while (i < ALPN_LIST_SIZE - 1 && *p != '\0') { |
Manuel Pégourié-Gonnard | 1bd2281 | 2014-04-05 14:34:07 +0200 | [diff] [blame] | 1446 | alpn_list[i++] = p; |
| 1447 | |
| 1448 | /* Terminate the current string and move on to next one */ |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1449 | while (*p != ',' && *p != '\0') { |
Manuel Pégourié-Gonnard | 1bd2281 | 2014-04-05 14:34:07 +0200 | [diff] [blame] | 1450 | p++; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1451 | } |
| 1452 | if (*p == ',') { |
Manuel Pégourié-Gonnard | 1bd2281 | 2014-04-05 14:34:07 +0200 | [diff] [blame] | 1453 | *p++ = '\0'; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1454 | } |
Manuel Pégourié-Gonnard | 1bd2281 | 2014-04-05 14:34:07 +0200 | [diff] [blame] | 1455 | } |
| 1456 | } |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1457 | #endif /* MBEDTLS_SSL_ALPN */ |
Manuel Pégourié-Gonnard | 1bd2281 | 2014-04-05 14:34:07 +0200 | [diff] [blame] | 1458 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1459 | mbedtls_printf("build version: %s (build %d)\n", |
| 1460 | MBEDTLS_VERSION_STRING_FULL, MBEDTLS_VERSION_NUMBER); |
Yanray Wang | 4d4b077 | 2022-11-10 14:37:20 +0800 | [diff] [blame] | 1461 | |
Paul Bakker | d4a56ec | 2013-04-16 18:05:29 +0200 | [diff] [blame] | 1462 | /* |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 1463 | * 0. Initialize the RNG and the session data |
| 1464 | */ |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1465 | mbedtls_printf("\n . Seeding the random number generator..."); |
| 1466 | fflush(stdout); |
Paul Bakker | 508ad5a | 2011-12-04 17:09:26 +0000 | [diff] [blame] | 1467 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1468 | ret = rng_seed(&rng, opt.reproducible, pers); |
| 1469 | if (ret != 0) { |
Gilles Peskine | daa94c4 | 2021-01-13 18:38:27 +0100 | [diff] [blame] | 1470 | goto exit; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1471 | } |
| 1472 | mbedtls_printf(" ok\n"); |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 1473 | |
Andrzej Kurek | 7829d8f | 2022-10-18 09:19:07 -0400 | [diff] [blame] | 1474 | #if defined(MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED) |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 1475 | /* |
| 1476 | * 1.1. Load the trusted CA |
| 1477 | */ |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1478 | mbedtls_printf(" . Loading the CA root certificate ..."); |
| 1479 | fflush(stdout); |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 1480 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1481 | if (strcmp(opt.ca_path, "none") == 0 || |
| 1482 | strcmp(opt.ca_file, "none") == 0) { |
Hanno Becker | 623e7b4 | 2019-03-05 16:02:15 +0000 | [diff] [blame] | 1483 | ret = 0; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1484 | } else |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1485 | #if defined(MBEDTLS_FS_IO) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1486 | 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 Bakker | 5690efc | 2011-05-26 13:16:06 +0000 | [diff] [blame] | 1491 | #endif |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1492 | #if defined(MBEDTLS_CERTS_C) |
Hanno Becker | 2900b14 | 2019-02-01 08:15:06 +0000 | [diff] [blame] | 1493 | { |
| 1494 | #if defined(MBEDTLS_PEM_PARSE_C) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1495 | 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é-Gonnard | 2f16506 | 2015-03-27 10:20:26 +0100 | [diff] [blame] | 1500 | break; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1501 | } |
Manuel Pégourié-Gonnard | 2f16506 | 2015-03-27 10:20:26 +0100 | [diff] [blame] | 1502 | } |
Hanno Becker | 2900b14 | 2019-02-01 08:15:06 +0000 | [diff] [blame] | 1503 | #endif /* MBEDTLS_PEM_PARSE_C */ |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1504 | 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 Horstmann | 9e722ad | 2022-10-24 13:11:38 +0100 | [diff] [blame] | 1510 | break; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1511 | } |
David Horstmann | 9e722ad | 2022-10-24 13:11:38 +0100 | [diff] [blame] | 1512 | } |
Hanno Becker | 2900b14 | 2019-02-01 08:15:06 +0000 | [diff] [blame] | 1513 | } |
| 1514 | } |
Paul Bakker | 5690efc | 2011-05-26 13:16:06 +0000 | [diff] [blame] | 1515 | #else |
| 1516 | { |
| 1517 | ret = 1; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1518 | mbedtls_printf("MBEDTLS_CERTS_C not defined."); |
Paul Bakker | 5690efc | 2011-05-26 13:16:06 +0000 | [diff] [blame] | 1519 | } |
Hanno Becker | 2900b14 | 2019-02-01 08:15:06 +0000 | [diff] [blame] | 1520 | #endif /* MBEDTLS_CERTS_C */ |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1521 | if (ret < 0) { |
| 1522 | mbedtls_printf(" failed\n ! mbedtls_x509_crt_parse returned -0x%x\n\n", |
| 1523 | (unsigned int) -ret); |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 1524 | goto exit; |
| 1525 | } |
| 1526 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1527 | mbedtls_printf(" ok (%d skipped)\n", ret); |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 1528 | |
| 1529 | /* |
| 1530 | * 1.2. Load own certificate and private key |
| 1531 | * |
| 1532 | * (can be skipped if client authentication is not required) |
| 1533 | */ |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1534 | mbedtls_printf(" . Loading the client cert. and key..."); |
| 1535 | fflush(stdout); |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 1536 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1537 | if (strcmp(opt.crt_file, "none") == 0) { |
Hanno Becker | 623e7b4 | 2019-03-05 16:02:15 +0000 | [diff] [blame] | 1538 | ret = 0; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1539 | } else |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1540 | #if defined(MBEDTLS_FS_IO) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1541 | if (strlen(opt.crt_file)) { |
| 1542 | ret = mbedtls_x509_crt_parse_file(&clicert, opt.crt_file); |
| 1543 | } else |
Paul Bakker | 5690efc | 2011-05-26 13:16:06 +0000 | [diff] [blame] | 1544 | #endif |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1545 | #if defined(MBEDTLS_CERTS_C) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1546 | { ret = mbedtls_x509_crt_parse(&clicert, |
| 1547 | (const unsigned char *) mbedtls_test_cli_crt, |
| 1548 | mbedtls_test_cli_crt_len); } |
Paul Bakker | 5690efc | 2011-05-26 13:16:06 +0000 | [diff] [blame] | 1549 | #else |
| 1550 | { |
| 1551 | ret = 1; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1552 | mbedtls_printf("MBEDTLS_CERTS_C not defined."); |
Paul Bakker | 5690efc | 2011-05-26 13:16:06 +0000 | [diff] [blame] | 1553 | } |
| 1554 | #endif |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1555 | if (ret != 0) { |
| 1556 | mbedtls_printf(" failed\n ! mbedtls_x509_crt_parse returned -0x%x\n\n", |
| 1557 | (unsigned int) -ret); |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 1558 | goto exit; |
| 1559 | } |
| 1560 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1561 | if (strcmp(opt.key_file, "none") == 0) { |
Hanno Becker | 623e7b4 | 2019-03-05 16:02:15 +0000 | [diff] [blame] | 1562 | ret = 0; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1563 | } else |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1564 | #if defined(MBEDTLS_FS_IO) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1565 | if (strlen(opt.key_file)) { |
| 1566 | ret = mbedtls_pk_parse_keyfile(&pkey, opt.key_file, opt.key_pwd); |
| 1567 | } else |
Paul Bakker | 5690efc | 2011-05-26 13:16:06 +0000 | [diff] [blame] | 1568 | #endif |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1569 | #if defined(MBEDTLS_CERTS_C) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1570 | { ret = mbedtls_pk_parse_key(&pkey, |
| 1571 | (const unsigned char *) mbedtls_test_cli_key, |
| 1572 | mbedtls_test_cli_key_len, NULL, 0); } |
Paul Bakker | 5690efc | 2011-05-26 13:16:06 +0000 | [diff] [blame] | 1573 | #else |
| 1574 | { |
| 1575 | ret = 1; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1576 | mbedtls_printf("MBEDTLS_CERTS_C not defined."); |
Paul Bakker | 5690efc | 2011-05-26 13:16:06 +0000 | [diff] [blame] | 1577 | } |
| 1578 | #endif |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1579 | if (ret != 0) { |
| 1580 | mbedtls_printf(" failed\n ! mbedtls_pk_parse_key returned -0x%x\n\n", |
| 1581 | (unsigned int) -ret); |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 1582 | goto exit; |
| 1583 | } |
| 1584 | |
Manuel Pégourié-Gonnard | ef68be4 | 2018-11-07 09:42:35 +0100 | [diff] [blame] | 1585 | #if defined(MBEDTLS_USE_PSA_CRYPTO) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1586 | 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é-Gonnard | cfdf8f4 | 2018-11-08 09:52:25 +0100 | [diff] [blame] | 1591 | goto exit; |
| 1592 | } |
Manuel Pégourié-Gonnard | ef68be4 | 2018-11-07 09:42:35 +0100 | [diff] [blame] | 1593 | } |
| 1594 | #endif /* MBEDTLS_USE_PSA_CRYPTO */ |
| 1595 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1596 | mbedtls_printf(" ok (key type: %s)\n", mbedtls_pk_get_name(&pkey)); |
Andrzej Kurek | 7829d8f | 2022-10-18 09:19:07 -0400 | [diff] [blame] | 1597 | #endif /* MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED */ |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 1598 | |
| 1599 | /* |
| 1600 | * 2. Start the connection |
| 1601 | */ |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1602 | if (opt.server_addr == NULL) { |
Manuel Pégourié-Gonnard | 0d8780b | 2014-02-25 11:11:26 +0100 | [diff] [blame] | 1603 | opt.server_addr = opt.server_name; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1604 | } |
Manuel Pégourié-Gonnard | 0d8780b | 2014-02-25 11:11:26 +0100 | [diff] [blame] | 1605 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1606 | 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 Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 1610 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1611 | 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 Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 1617 | goto exit; |
| 1618 | } |
| 1619 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1620 | 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é-Gonnard | 5575316 | 2014-02-26 13:47:08 +0100 | [diff] [blame] | 1628 | goto exit; |
| 1629 | } |
| 1630 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1631 | mbedtls_printf(" ok\n"); |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 1632 | |
| 1633 | /* |
| 1634 | * 3. Setup stuff |
| 1635 | */ |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1636 | mbedtls_printf(" . Setting up the SSL/TLS structure..."); |
| 1637 | fflush(stdout); |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 1638 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1639 | 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é-Gonnard | def0bbe | 2015-05-04 14:56:36 +0200 | [diff] [blame] | 1645 | goto exit; |
| 1646 | } |
| 1647 | |
Andrzej Kurek | 7829d8f | 2022-10-18 09:19:07 -0400 | [diff] [blame] | 1648 | #if defined(MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED) |
Gilles Peskine | ef86ab2 | 2017-05-05 18:59:02 +0200 | [diff] [blame] | 1649 | /* The default algorithms profile disables SHA-1, but our tests still |
| 1650 | rely on it heavily. */ |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1651 | 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 Peskine | bc70a18 | 2017-05-09 15:59:24 +0200 | [diff] [blame] | 1655 | } |
Gilles Peskine | ef86ab2 | 2017-05-05 18:59:02 +0200 | [diff] [blame] | 1656 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1657 | if (opt.context_crt_cb == 0) { |
| 1658 | mbedtls_ssl_conf_verify(&conf, my_verify, NULL); |
| 1659 | } |
Hanno Becker | bb425db | 2019-04-03 12:59:58 +0100 | [diff] [blame] | 1660 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1661 | memset(peer_crt_info, 0, sizeof(peer_crt_info)); |
Andrzej Kurek | 7829d8f | 2022-10-18 09:19:07 -0400 | [diff] [blame] | 1662 | #endif /* MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED */ |
Paul Bakker | 915275b | 2012-09-28 07:10:55 +0000 | [diff] [blame] | 1663 | |
Hanno Becker | a0e20d0 | 2019-05-15 14:03:01 +0100 | [diff] [blame] | 1664 | #if defined(MBEDTLS_SSL_DTLS_CONNECTION_ID) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1665 | if (opt.cid_enabled == 1 || opt.cid_enabled_renego == 1) { |
| 1666 | if (opt.cid_enabled == 1 && |
Hanno Becker | b42ec0d | 2019-05-03 17:30:59 +0100 | [diff] [blame] | 1667 | opt.cid_enabled_renego == 1 && |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1668 | cid_len != cid_renego_len) { |
| 1669 | mbedtls_printf("CID length must not change during renegotiation\n"); |
Hanno Becker | b42ec0d | 2019-05-03 17:30:59 +0100 | [diff] [blame] | 1670 | goto usage; |
| 1671 | } |
| 1672 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1673 | 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 Becker | b42ec0d | 2019-05-03 17:30:59 +0100 | [diff] [blame] | 1680 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1681 | if (ret != 0) { |
| 1682 | mbedtls_printf(" failed\n ! mbedtls_ssl_conf_cid_len returned -%#04x\n\n", |
| 1683 | (unsigned int) -ret); |
Hanno Becker | ad4a137 | 2019-05-03 13:06:44 +0100 | [diff] [blame] | 1684 | goto exit; |
| 1685 | } |
| 1686 | } |
Hanno Becker | a0e20d0 | 2019-05-15 14:03:01 +0100 | [diff] [blame] | 1687 | #endif /* MBEDTLS_SSL_DTLS_CONNECTION_ID */ |
Hanno Becker | ad4a137 | 2019-05-03 13:06:44 +0100 | [diff] [blame] | 1688 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1689 | if (opt.auth_mode != DFL_AUTH_MODE) { |
| 1690 | mbedtls_ssl_conf_authmode(&conf, opt.auth_mode); |
| 1691 | } |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 1692 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1693 | #if defined(MBEDTLS_SSL_PROTO_DTLS) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1694 | 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é-Gonnard | b747c6c | 2018-08-12 13:28:53 +0200 | [diff] [blame] | 1698 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1699 | if (opt.dgram_packing != DFL_DGRAM_PACKING) { |
| 1700 | mbedtls_ssl_set_datagram_packing(&ssl, opt.dgram_packing); |
| 1701 | } |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1702 | #endif /* MBEDTLS_SSL_PROTO_DTLS */ |
Manuel Pégourié-Gonnard | d823bd0 | 2014-10-01 14:40:56 +0200 | [diff] [blame] | 1703 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1704 | #if defined(MBEDTLS_SSL_MAX_FRAGMENT_LENGTH) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1705 | 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é-Gonnard | c5fd391 | 2014-07-08 14:05:52 +0200 | [diff] [blame] | 1708 | goto exit; |
| 1709 | } |
Paul Bakker | 05decb2 | 2013-08-15 13:33:48 +0200 | [diff] [blame] | 1710 | #endif |
Manuel Pégourié-Gonnard | 0df6b1f | 2013-07-16 13:39:57 +0200 | [diff] [blame] | 1711 | |
Ron Eldor | 6ea6451 | 2018-07-02 10:08:07 +0300 | [diff] [blame] | 1712 | #if defined(MBEDTLS_SSL_DTLS_SRTP) |
Bence Szépkúti | 880334c | 2020-12-14 14:42:13 +0100 | [diff] [blame] | 1713 | const mbedtls_ssl_srtp_profile forced_profile[] = |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1714 | { 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 Eldor | 6ea6451 | 2018-07-02 10:08:07 +0300 | [diff] [blame] | 1720 | } |
| 1721 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1722 | if (ret != 0) { |
| 1723 | mbedtls_printf(" failed\n ! " |
| 1724 | "mbedtls_ssl_conf_dtls_srtp_protection_profiles returned %d\n\n", |
| 1725 | ret); |
Ron Eldor | 6ea6451 | 2018-07-02 10:08:07 +0300 | [diff] [blame] | 1726 | goto exit; |
| 1727 | } |
| 1728 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1729 | } else if (opt.force_srtp_profile != 0) { |
| 1730 | mbedtls_printf(" failed\n ! must enable use_srtp to force srtp profile\n\n"); |
Ron Eldor | 6ea6451 | 2018-07-02 10:08:07 +0300 | [diff] [blame] | 1731 | goto exit; |
| 1732 | } |
| 1733 | #endif /* MBEDTLS_SSL_DTLS_SRTP */ |
| 1734 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1735 | #if defined(MBEDTLS_SSL_TRUNCATED_HMAC) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1736 | if (opt.trunc_hmac != DFL_TRUNC_HMAC) { |
| 1737 | mbedtls_ssl_conf_truncated_hmac(&conf, opt.trunc_hmac); |
| 1738 | } |
Paul Bakker | 1f2bc62 | 2013-08-15 13:45:55 +0200 | [diff] [blame] | 1739 | #endif |
Manuel Pégourié-Gonnard | e980a99 | 2013-07-19 11:08:52 +0200 | [diff] [blame] | 1740 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1741 | #if defined(MBEDTLS_SSL_EXTENDED_MASTER_SECRET) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1742 | if (opt.extended_ms != DFL_EXTENDED_MS) { |
| 1743 | mbedtls_ssl_conf_extended_master_secret(&conf, opt.extended_ms); |
| 1744 | } |
Manuel Pégourié-Gonnard | 367381f | 2014-10-20 18:40:56 +0200 | [diff] [blame] | 1745 | #endif |
| 1746 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1747 | #if defined(MBEDTLS_SSL_ENCRYPT_THEN_MAC) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1748 | if (opt.etm != DFL_ETM) { |
| 1749 | mbedtls_ssl_conf_encrypt_then_mac(&conf, opt.etm); |
| 1750 | } |
Manuel Pégourié-Gonnard | 699cafa | 2014-10-27 13:57:03 +0100 | [diff] [blame] | 1751 | #endif |
| 1752 | |
Ron Eldor | b7fd64c | 2019-05-12 11:03:32 +0300 | [diff] [blame] | 1753 | #if defined(MBEDTLS_SSL_EXPORT_KEYS) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1754 | 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 Becker | 48f3a3d | 2019-08-29 06:31:22 +0100 | [diff] [blame] | 1761 | } |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1762 | #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 Eldor | 65b56ef | 2019-09-26 16:40:48 +0300 | [diff] [blame] | 1766 | } |
| 1767 | #endif /* MBEDTLS_SSL_DTLS_SRTP */ |
| 1768 | #endif /* MBEDTLS_SSL_EXPORT_KEYS */ |
Ron Eldor | b7fd64c | 2019-05-12 11:03:32 +0300 | [diff] [blame] | 1769 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1770 | #if defined(MBEDTLS_SSL_CBC_RECORD_SPLITTING) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1771 | if (opt.recsplit != DFL_RECSPLIT) { |
| 1772 | mbedtls_ssl_conf_cbc_record_splitting(&conf, opt.recsplit |
Hanno Becker | 16970d2 | 2017-10-10 15:56:37 +0100 | [diff] [blame] | 1773 | ? MBEDTLS_SSL_CBC_RECORD_SPLITTING_ENABLED |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1774 | : MBEDTLS_SSL_CBC_RECORD_SPLITTING_DISABLED); |
| 1775 | } |
Manuel Pégourié-Gonnard | c82ee35 | 2015-01-07 16:35:25 +0100 | [diff] [blame] | 1776 | #endif |
| 1777 | |
Manuel Pégourié-Gonnard | 9096682 | 2015-06-11 17:02:29 +0200 | [diff] [blame] | 1778 | #if defined(MBEDTLS_DHM_C) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1779 | if (opt.dhmlen != DFL_DHMLEN) { |
| 1780 | mbedtls_ssl_conf_dhm_min_bitlen(&conf, opt.dhmlen); |
| 1781 | } |
Manuel Pégourié-Gonnard | 9096682 | 2015-06-11 17:02:29 +0200 | [diff] [blame] | 1782 | #endif |
| 1783 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1784 | #if defined(MBEDTLS_SSL_ALPN) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1785 | 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é-Gonnard | c5fd391 | 2014-07-08 14:05:52 +0200 | [diff] [blame] | 1789 | goto exit; |
| 1790 | } |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1791 | } |
Manuel Pégourié-Gonnard | 1bd2281 | 2014-04-05 14:34:07 +0200 | [diff] [blame] | 1792 | #endif |
| 1793 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1794 | if (opt.reproducible) { |
Philippe Antoine | f91b372 | 2019-06-11 16:02:43 +0200 | [diff] [blame] | 1795 | #if defined(MBEDTLS_HAVE_TIME) |
Philippe Antoine | aa4d152 | 2019-06-06 21:24:31 +0200 | [diff] [blame] | 1796 | #if defined(MBEDTLS_PLATFORM_TIME_ALT) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1797 | mbedtls_platform_set_time(dummy_constant_time); |
Philippe Antoine | aa4d152 | 2019-06-06 21:24:31 +0200 | [diff] [blame] | 1798 | #else |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1799 | fprintf(stderr, "Warning: reproducible option used without constant time\n"); |
Philippe Antoine | aa4d152 | 2019-06-06 21:24:31 +0200 | [diff] [blame] | 1800 | #endif |
Gilles Peskine | 34babfc | 2021-02-16 15:44:37 +0100 | [diff] [blame] | 1801 | #endif /* MBEDTLS_HAVE_TIME */ |
Philippe Antoine | 986b6f2 | 2019-06-07 15:04:32 +0200 | [diff] [blame] | 1802 | } |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1803 | mbedtls_ssl_conf_rng(&conf, rng_get, &rng); |
| 1804 | mbedtls_ssl_conf_dbg(&conf, my_debug, stdout); |
Manuel Pégourié-Gonnard | 5575316 | 2014-02-26 13:47:08 +0100 | [diff] [blame] | 1805 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1806 | mbedtls_ssl_conf_read_timeout(&conf, opt.read_timeout); |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 1807 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1808 | #if defined(MBEDTLS_SSL_SESSION_TICKETS) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1809 | mbedtls_ssl_conf_session_tickets(&conf, opt.tickets); |
Paul Bakker | a503a63 | 2013-08-14 13:48:06 +0200 | [diff] [blame] | 1810 | #endif |
Manuel Pégourié-Gonnard | aa0d4d1 | 2013-08-03 13:02:31 +0200 | [diff] [blame] | 1811 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1812 | if (opt.force_ciphersuite[0] != DFL_FORCE_CIPHER) { |
| 1813 | mbedtls_ssl_conf_ciphersuites(&conf, opt.force_ciphersuite); |
| 1814 | } |
Manuel Pégourié-Gonnard | d42b7c8 | 2015-03-20 19:44:04 +0000 | [diff] [blame] | 1815 | |
Manuel Pégourié-Gonnard | 66dc555 | 2015-05-14 12:28:21 +0200 | [diff] [blame] | 1816 | #if defined(MBEDTLS_ARC4_C) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1817 | if (opt.arc4 != DFL_ARC4) { |
| 1818 | mbedtls_ssl_conf_arc4_support(&conf, opt.arc4); |
| 1819 | } |
Manuel Pégourié-Gonnard | 66dc555 | 2015-05-14 12:28:21 +0200 | [diff] [blame] | 1820 | #endif |
Paul Bakker | 5193688 | 2011-02-20 16:05:58 +0000 | [diff] [blame] | 1821 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1822 | if (opt.allow_legacy != DFL_ALLOW_LEGACY) { |
| 1823 | mbedtls_ssl_conf_legacy_renegotiation(&conf, opt.allow_legacy); |
| 1824 | } |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1825 | #if defined(MBEDTLS_SSL_RENEGOTIATION) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1826 | mbedtls_ssl_conf_renegotiation(&conf, opt.renegotiation); |
Manuel Pégourié-Gonnard | 615e677 | 2014-11-03 08:23:14 +0100 | [diff] [blame] | 1827 | #endif |
Paul Bakker | 48916f9 | 2012-09-16 19:57:18 +0000 | [diff] [blame] | 1828 | |
Andrzej Kurek | 7829d8f | 2022-10-18 09:19:07 -0400 | [diff] [blame] | 1829 | #if defined(MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1830 | if (strcmp(opt.ca_path, "none") != 0 && |
| 1831 | strcmp(opt.ca_file, "none") != 0) { |
Jarno Lamsa | 1b4a2ba | 2019-03-27 17:55:27 +0200 | [diff] [blame] | 1832 | #if defined(MBEDTLS_X509_TRUSTED_CERTIFICATE_CALLBACK) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1833 | if (opt.ca_callback != 0) { |
| 1834 | mbedtls_ssl_conf_ca_cb(&conf, ca_callback, &cacert); |
| 1835 | } else |
Jarno Lamsa | 1b4a2ba | 2019-03-27 17:55:27 +0200 | [diff] [blame] | 1836 | #endif |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1837 | mbedtls_ssl_conf_ca_chain(&conf, &cacert, NULL); |
Manuel Pégourié-Gonnard | 3e1b178 | 2014-02-27 13:35:00 +0100 | [diff] [blame] | 1838 | } |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1839 | 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é-Gonnard | c5fd391 | 2014-07-08 14:05:52 +0200 | [diff] [blame] | 1844 | goto exit; |
| 1845 | } |
Manuel Pégourié-Gonnard | 3e1b178 | 2014-02-27 13:35:00 +0100 | [diff] [blame] | 1846 | } |
Andrzej Kurek | 7829d8f | 2022-10-18 09:19:07 -0400 | [diff] [blame] | 1847 | #endif /* MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED */ |
Paul Bakker | ed27a04 | 2013-04-18 22:46:23 +0200 | [diff] [blame] | 1848 | |
Hanno Becker | e6706e6 | 2017-05-15 16:05:15 +0100 | [diff] [blame] | 1849 | #if defined(MBEDTLS_ECP_C) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1850 | if (opt.curves != NULL && |
| 1851 | strcmp(opt.curves, "default") != 0) { |
| 1852 | mbedtls_ssl_conf_curves(&conf, curve_list); |
Hanno Becker | e6706e6 | 2017-05-15 16:05:15 +0100 | [diff] [blame] | 1853 | } |
| 1854 | #endif |
| 1855 | |
Gilles Peskine | eccd888 | 2020-03-10 12:19:08 +0100 | [diff] [blame] | 1856 | #if defined(MBEDTLS_KEY_EXCHANGE_SOME_PSK_ENABLED) |
Hanno Becker | e86964c | 2018-10-23 11:37:50 +0100 | [diff] [blame] | 1857 | #if defined(MBEDTLS_USE_PSA_CRYPTO) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1858 | if (opt.psk_opaque != 0) { |
Janos Follath | be4efc2 | 2019-08-08 11:38:18 +0100 | [diff] [blame] | 1859 | key_attributes = psa_key_attributes_init(); |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1860 | 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 Becker | e86964c | 2018-10-23 11:37:50 +0100 | [diff] [blame] | 1863 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1864 | status = psa_import_key(&key_attributes, psk, psk_len, &slot); |
| 1865 | if (status != PSA_SUCCESS) { |
Hanno Becker | e86964c | 2018-10-23 11:37:50 +0100 | [diff] [blame] | 1866 | ret = MBEDTLS_ERR_SSL_HW_ACCEL_FAILED; |
| 1867 | goto exit; |
| 1868 | } |
| 1869 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1870 | 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 Becker | e86964c | 2018-10-23 11:37:50 +0100 | [diff] [blame] | 1875 | goto exit; |
| 1876 | } |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1877 | } else |
Hanno Becker | e86964c | 2018-10-23 11:37:50 +0100 | [diff] [blame] | 1878 | #endif /* MBEDTLS_USE_PSA_CRYPTO */ |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1879 | 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 Nowicki | 9926eaf | 2019-11-20 14:54:36 +0100 | [diff] [blame] | 1885 | goto exit; |
| 1886 | } |
Manuel Pégourié-Gonnard | c5fd391 | 2014-07-08 14:05:52 +0200 | [diff] [blame] | 1887 | } |
Gilles Peskine | eccd888 | 2020-03-10 12:19:08 +0100 | [diff] [blame] | 1888 | #endif /* MBEDTLS_KEY_EXCHANGE_SOME_PSK_ENABLED */ |
Paul Bakker | ed27a04 | 2013-04-18 22:46:23 +0200 | [diff] [blame] | 1889 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1890 | 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é-Gonnard | 864a81f | 2014-02-10 14:25:10 +0100 | [diff] [blame] | 1894 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1895 | 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 Bakker | 1d29fb5 | 2012-09-28 13:28:45 +0000 | [diff] [blame] | 1899 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1900 | #if defined(MBEDTLS_SSL_FALLBACK_SCSV) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1901 | if (opt.fallback != DFL_FALLBACK) { |
| 1902 | mbedtls_ssl_conf_fallback(&conf, opt.fallback); |
| 1903 | } |
Manuel Pégourié-Gonnard | 1cbd39d | 2014-10-20 13:34:59 +0200 | [diff] [blame] | 1904 | #endif |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 1905 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1906 | 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é-Gonnard | 06939ce | 2015-05-11 11:25:46 +0200 | [diff] [blame] | 1909 | goto exit; |
| 1910 | } |
| 1911 | |
Andrzej Kurek | 7829d8f | 2022-10-18 09:19:07 -0400 | [diff] [blame] | 1912 | #if defined(MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED) |
Gilles Peskine | 724a7bb | 2025-02-12 21:50:53 +0100 | [diff] [blame] | 1913 | 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é-Gonnard | 06939ce | 2015-05-11 11:25:46 +0200 | [diff] [blame] | 1931 | } |
| 1932 | #endif |
| 1933 | |
Manuel Pégourié-Gonnard | 70905a7 | 2015-09-16 11:08:34 +0200 | [diff] [blame] | 1934 | #if defined(MBEDTLS_KEY_EXCHANGE_ECJPAKE_ENABLED) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1935 | 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é-Gonnard | 70905a7 | 2015-09-16 11:08:34 +0200 | [diff] [blame] | 1941 | goto exit; |
| 1942 | } |
| 1943 | } |
| 1944 | #endif |
| 1945 | |
Andrzej Kurek | 7829d8f | 2022-10-18 09:19:07 -0400 | [diff] [blame] | 1946 | #if defined(MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1947 | if (opt.context_crt_cb == 1) { |
| 1948 | mbedtls_ssl_set_verify(&ssl, my_verify, NULL); |
| 1949 | } |
Andrzej Kurek | 7829d8f | 2022-10-18 09:19:07 -0400 | [diff] [blame] | 1950 | #endif /* MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED */ |
Hanno Becker | bb425db | 2019-04-03 12:59:58 +0100 | [diff] [blame] | 1951 | |
Hanno Becker | 8b1af2f | 2019-07-03 17:02:43 +0100 | [diff] [blame] | 1952 | io_ctx.ssl = &ssl; |
| 1953 | io_ctx.net = &server_fd; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1954 | mbedtls_ssl_set_bio(&ssl, &io_ctx, send_cb, recv_cb, |
| 1955 | opt.nbio == 0 ? recv_timeout_cb : NULL); |
Manuel Pégourié-Gonnard | 06939ce | 2015-05-11 11:25:46 +0200 | [diff] [blame] | 1956 | |
Hanno Becker | a0e20d0 | 2019-05-15 14:03:01 +0100 | [diff] [blame] | 1957 | #if defined(MBEDTLS_SSL_DTLS_CONNECTION_ID) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1958 | 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 Becker | 90cb359 | 2019-04-09 17:24:19 +0100 | [diff] [blame] | 1963 | goto exit; |
| 1964 | } |
| 1965 | } |
Hanno Becker | a0e20d0 | 2019-05-15 14:03:01 +0100 | [diff] [blame] | 1966 | #endif /* MBEDTLS_SSL_DTLS_CONNECTION_ID */ |
Hanno Becker | 90cb359 | 2019-04-09 17:24:19 +0100 | [diff] [blame] | 1967 | |
Manuel Pégourié-Gonnard | 6e7aaca | 2018-08-20 10:37:23 +0200 | [diff] [blame] | 1968 | #if defined(MBEDTLS_SSL_PROTO_DTLS) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1969 | if (opt.dtls_mtu != DFL_DTLS_MTU) { |
| 1970 | mbedtls_ssl_set_mtu(&ssl, opt.dtls_mtu); |
| 1971 | } |
Manuel Pégourié-Gonnard | 6e7aaca | 2018-08-20 10:37:23 +0200 | [diff] [blame] | 1972 | #endif |
| 1973 | |
Manuel Pégourié-Gonnard | d2377e7 | 2015-05-13 13:58:56 +0200 | [diff] [blame] | 1974 | #if defined(MBEDTLS_TIMING_C) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1975 | mbedtls_ssl_set_timer_cb(&ssl, &timer, mbedtls_timing_set_delay, |
| 1976 | mbedtls_timing_get_delay); |
Manuel Pégourié-Gonnard | d2377e7 | 2015-05-13 13:58:56 +0200 | [diff] [blame] | 1977 | #endif |
Manuel Pégourié-Gonnard | e3c41ad | 2015-05-13 10:04:32 +0200 | [diff] [blame] | 1978 | |
Manuel Pégourié-Gonnard | b3c8307 | 2017-05-16 08:50:24 +0200 | [diff] [blame] | 1979 | #if defined(MBEDTLS_ECP_RESTARTABLE) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1980 | if (opt.ec_max_ops != DFL_EC_MAX_OPS) { |
| 1981 | mbedtls_ecp_set_max_ops(opt.ec_max_ops); |
| 1982 | } |
Manuel Pégourié-Gonnard | b3c8307 | 2017-05-16 08:50:24 +0200 | [diff] [blame] | 1983 | #endif |
| 1984 | |
Ron Eldor | 65b56ef | 2019-09-26 16:40:48 +0300 | [diff] [blame] | 1985 | #if defined(MBEDTLS_SSL_DTLS_SRTP) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1986 | 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 Pascal | 9bc97ca | 2020-09-21 23:44:45 +0200 | [diff] [blame] | 1990 | goto exit; |
Ron Eldor | 6ea6451 | 2018-07-02 10:08:07 +0300 | [diff] [blame] | 1991 | } |
| 1992 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1993 | 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 Eldor | 6ea6451 | 2018-07-02 10:08:07 +0300 | [diff] [blame] | 1997 | goto exit; |
| 1998 | } |
| 1999 | } |
| 2000 | #endif |
| 2001 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2002 | mbedtls_printf(" ok\n"); |
Manuel Pégourié-Gonnard | 798f15a | 2014-03-26 18:12:04 +0100 | [diff] [blame] | 2003 | |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 2004 | /* |
| 2005 | * 4. Handshake |
| 2006 | */ |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2007 | mbedtls_printf(" . Performing the SSL/TLS handshake..."); |
| 2008 | fflush(stdout); |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 2009 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2010 | while ((ret = mbedtls_ssl_handshake(&ssl)) != 0) { |
| 2011 | if (ret != MBEDTLS_ERR_SSL_WANT_READ && |
Manuel Pégourié-Gonnard | b3c8307 | 2017-05-16 08:50:24 +0200 | [diff] [blame] | 2012 | ret != MBEDTLS_ERR_SSL_WANT_WRITE && |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2013 | 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é-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 2017 | mbedtls_printf( |
Manuel Pégourié-Gonnard | fcf2fc2 | 2014-03-11 11:10:27 +0100 | [diff] [blame] | 2018 | " Unable to verify the server's certificate. " |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2019 | "Either it is invalid,\n" |
Manuel Pégourié-Gonnard | fcf2fc2 | 2014-03-11 11:10:27 +0100 | [diff] [blame] | 2020 | " or you didn't set ca_file or ca_path " |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2021 | "to an appropriate value.\n" |
Manuel Pégourié-Gonnard | fcf2fc2 | 2014-03-11 11:10:27 +0100 | [diff] [blame] | 2022 | " Alternatively, you may want to use " |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2023 | "auth_mode=optional for testing purposes.\n"); |
| 2024 | } |
| 2025 | mbedtls_printf("\n"); |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 2026 | goto exit; |
Paul Bakker | 40e4694 | 2009-01-03 21:51:57 +0000 | [diff] [blame] | 2027 | } |
Hanno Becker | 16970d2 | 2017-10-10 15:56:37 +0100 | [diff] [blame] | 2028 | |
Manuel Pégourié-Gonnard | da19f4c | 2018-06-12 12:40:54 +0200 | [diff] [blame] | 2029 | #if defined(MBEDTLS_ECP_RESTARTABLE) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2030 | if (ret == MBEDTLS_ERR_SSL_CRYPTO_IN_PROGRESS) { |
Manuel Pégourié-Gonnard | 25781f9 | 2018-10-15 15:28:16 +0200 | [diff] [blame] | 2031 | continue; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2032 | } |
Manuel Pégourié-Gonnard | da19f4c | 2018-06-12 12:40:54 +0200 | [diff] [blame] | 2033 | #endif |
| 2034 | |
Hanno Becker | 16970d2 | 2017-10-10 15:56:37 +0100 | [diff] [blame] | 2035 | /* For event-driven IO, wait for socket to become available */ |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2036 | if (opt.event == 1 /* level triggered IO */) { |
Hanno Becker | 16970d2 | 2017-10-10 15:56:37 +0100 | [diff] [blame] | 2037 | #if defined(MBEDTLS_TIMING_C) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2038 | ret = idle(&server_fd, &timer, ret); |
Hanno Becker | 16970d2 | 2017-10-10 15:56:37 +0100 | [diff] [blame] | 2039 | #else |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2040 | ret = idle(&server_fd, ret); |
Hanno Becker | 16970d2 | 2017-10-10 15:56:37 +0100 | [diff] [blame] | 2041 | #endif |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2042 | if (ret != 0) { |
Hanno Becker | adfa64f | 2018-03-15 11:35:07 +0000 | [diff] [blame] | 2043 | goto exit; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2044 | } |
Hanno Becker | 16970d2 | 2017-10-10 15:56:37 +0100 | [diff] [blame] | 2045 | } |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 2046 | } |
| 2047 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2048 | 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 Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 2051 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2052 | 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é-Gonnard | 9b35f18 | 2014-10-14 17:47:31 +0200 | [diff] [blame] | 2057 | |
Manuel Pégourié-Gonnard | a2cda6b | 2015-08-31 18:30:52 +0200 | [diff] [blame] | 2058 | #if defined(MBEDTLS_SSL_MAX_FRAGMENT_LENGTH) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2059 | 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é-Gonnard | a2cda6b | 2015-08-31 18:30:52 +0200 | [diff] [blame] | 2063 | #endif |
| 2064 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 2065 | #if defined(MBEDTLS_SSL_ALPN) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2066 | 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é-Gonnard | 1bd2281 | 2014-04-05 14:34:07 +0200 | [diff] [blame] | 2070 | } |
| 2071 | #endif |
| 2072 | |
Ron Eldor | b7fd64c | 2019-05-12 11:03:32 +0300 | [diff] [blame] | 2073 | #if defined(MBEDTLS_SSL_EXPORT_KEYS) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2074 | if (opt.eap_tls != 0) { |
Ron Eldor | b7fd64c | 2019-05-12 11:03:32 +0300 | [diff] [blame] | 2075 | size_t j = 0; |
Ron Eldor | 51d3ab5 | 2019-05-12 14:54:30 +0300 | [diff] [blame] | 2076 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2077 | 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 Eldor | 51d3ab5 | 2019-05-12 14:54:30 +0300 | [diff] [blame] | 2088 | goto exit; |
| 2089 | } |
| 2090 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2091 | mbedtls_printf(" EAP-TLS key material is:"); |
| 2092 | for (j = 0; j < sizeof(eap_tls_keymaterial); j++) { |
| 2093 | if (j % 8 == 0) { |
Ron Eldor | b7fd64c | 2019-05-12 11:03:32 +0300 | [diff] [blame] | 2094 | mbedtls_printf("\n "); |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2095 | } |
| 2096 | mbedtls_printf("%02x ", eap_tls_keymaterial[j]); |
Ron Eldor | b7fd64c | 2019-05-12 11:03:32 +0300 | [diff] [blame] | 2097 | } |
| 2098 | mbedtls_printf("\n"); |
| 2099 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2100 | 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 Eldor | 51d3ab5 | 2019-05-12 14:54:30 +0300 | [diff] [blame] | 2110 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2111 | mbedtls_printf(" EAP-TLS IV is:"); |
| 2112 | for (j = 0; j < sizeof(eap_tls_iv); j++) { |
| 2113 | if (j % 8 == 0) { |
Ron Eldor | b7fd64c | 2019-05-12 11:03:32 +0300 | [diff] [blame] | 2114 | mbedtls_printf("\n "); |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2115 | } |
| 2116 | mbedtls_printf("%02x ", eap_tls_iv[j]); |
Ron Eldor | b7fd64c | 2019-05-12 11:03:32 +0300 | [diff] [blame] | 2117 | } |
| 2118 | mbedtls_printf("\n"); |
| 2119 | } |
Ron Eldor | 65b56ef | 2019-09-26 16:40:48 +0300 | [diff] [blame] | 2120 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2121 | #if defined(MBEDTLS_SSL_DTLS_SRTP) |
| 2122 | else if (opt.use_srtp != 0) { |
Ron Eldor | 65b56ef | 2019-09-26 16:40:48 +0300 | [diff] [blame] | 2123 | size_t j = 0; |
Johan Pascal | 2258a4f | 2020-10-28 13:53:09 +0100 | [diff] [blame] | 2124 | mbedtls_dtls_srtp_info dtls_srtp_negotiation_result; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2125 | mbedtls_ssl_get_dtls_srtp_negotiation_result(&ssl, &dtls_srtp_negotiation_result); |
Ron Eldor | 65b56ef | 2019-09-26 16:40:48 +0300 | [diff] [blame] | 2126 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2127 | 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 Pascal | 9bc97ca | 2020-09-21 23:44:45 +0200 | [diff] [blame] | 2143 | goto exit; |
| 2144 | } |
Ron Eldor | 65b56ef | 2019-09-26 16:40:48 +0300 | [diff] [blame] | 2145 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2146 | 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 Pascal | 9bc97ca | 2020-09-21 23:44:45 +0200 | [diff] [blame] | 2152 | } |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2153 | mbedtls_printf("\n"); |
Johan Pascal | 9bc97ca | 2020-09-21 23:44:45 +0200 | [diff] [blame] | 2154 | |
Johan Pascal | 9bc50b0 | 2020-09-24 12:01:13 +0200 | [diff] [blame] | 2155 | /* 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 Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2159 | 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 Pascal | 9bc50b0 | 2020-09-24 12:01:13 +0200 | [diff] [blame] | 2162 | } |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2163 | mbedtls_printf("\n"); |
Johan Pascal | 20c7db3 | 2020-10-26 22:45:58 +0100 | [diff] [blame] | 2164 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2165 | 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 Pascal | 20c7db3 | 2020-10-26 22:45:58 +0100 | [diff] [blame] | 2169 | } |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2170 | } else { |
| 2171 | mbedtls_printf(" DTLS-SRTP no mki value negotiated"); |
Johan Pascal | 20c7db3 | 2020-10-26 22:45:58 +0100 | [diff] [blame] | 2172 | } |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2173 | mbedtls_printf("\n"); |
Johan Pascal | 9bc97ca | 2020-09-21 23:44:45 +0200 | [diff] [blame] | 2174 | } |
Ron Eldor | 65b56ef | 2019-09-26 16:40:48 +0300 | [diff] [blame] | 2175 | } |
| 2176 | #endif /* MBEDTLS_SSL_DTLS_SRTP */ |
| 2177 | #endif /* MBEDTLS_SSL_EXPORT_KEYS */ |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2178 | if (opt.reconnect != 0) { |
| 2179 | mbedtls_printf(" . Saving session for reuse..."); |
| 2180 | fflush(stdout); |
Manuel Pégourié-Gonnard | aaa1eab | 2013-07-30 13:43:43 +0200 | [diff] [blame] | 2181 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2182 | if (opt.reco_mode == 1) { |
Manuel Pégourié-Gonnard | 26f982f | 2019-05-21 11:01:32 +0200 | [diff] [blame] | 2183 | /* free any previously saved data */ |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2184 | if (session_data != NULL) { |
| 2185 | mbedtls_platform_zeroize(session_data, session_data_len); |
| 2186 | mbedtls_free(session_data); |
Manuel Pégourié-Gonnard | 4d591d6 | 2019-05-24 10:26:41 +0200 | [diff] [blame] | 2187 | session_data = NULL; |
| 2188 | } |
Manuel Pégourié-Gonnard | 26f982f | 2019-05-21 11:01:32 +0200 | [diff] [blame] | 2189 | |
| 2190 | /* get size of the buffer needed */ |
Gilles Peskine | 5fdd0bd | 2023-10-17 16:04:27 +0200 | [diff] [blame] | 2191 | (void) mbedtls_ssl_session_save(mbedtls_ssl_get_session_pointer(&ssl), |
| 2192 | NULL, 0, &session_data_len); |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2193 | 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é-Gonnard | 26f982f | 2019-05-21 11:01:32 +0200 | [diff] [blame] | 2197 | ret = MBEDTLS_ERR_SSL_ALLOC_FAILED; |
| 2198 | goto exit; |
| 2199 | } |
| 2200 | |
| 2201 | /* actually save session data */ |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2202 | 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é-Gonnard | a7c3765 | 2019-05-20 12:46:26 +0200 | [diff] [blame] | 2207 | goto exit; |
| 2208 | } |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2209 | } 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é-Gonnard | a7c3765 | 2019-05-20 12:46:26 +0200 | [diff] [blame] | 2213 | goto exit; |
| 2214 | } |
Manuel Pégourié-Gonnard | 2154863 | 2019-05-16 11:39:42 +0200 | [diff] [blame] | 2215 | } |
| 2216 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2217 | mbedtls_printf(" ok\n"); |
Manuel Pégourié-Gonnard | 26f982f | 2019-05-21 11:01:32 +0200 | [diff] [blame] | 2218 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2219 | if (opt.reco_mode == 1) { |
| 2220 | mbedtls_printf(" [ Saved %u bytes of session data]\n", |
| 2221 | (unsigned) session_data_len); |
Manuel Pégourié-Gonnard | 26f982f | 2019-05-21 11:01:32 +0200 | [diff] [blame] | 2222 | } |
Manuel Pégourié-Gonnard | aaa1eab | 2013-07-30 13:43:43 +0200 | [diff] [blame] | 2223 | } |
| 2224 | |
Andrzej Kurek | 7829d8f | 2022-10-18 09:19:07 -0400 | [diff] [blame] | 2225 | #if defined(MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED) |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 2226 | /* |
| 2227 | * 5. Verify the server certificate |
| 2228 | */ |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2229 | mbedtls_printf(" . Verifying peer X.509 certificate..."); |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 2230 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2231 | if ((flags = mbedtls_ssl_get_verify_result(&ssl)) != 0) { |
Manuel Pégourié-Gonnard | 89addc4 | 2015-04-20 10:56:18 +0100 | [diff] [blame] | 2232 | char vrfy_buf[512]; |
| 2233 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2234 | mbedtls_printf(" failed\n"); |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 2235 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2236 | mbedtls_x509_crt_verify_info(vrfy_buf, sizeof(vrfy_buf), |
| 2237 | " ! ", flags); |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 2238 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2239 | mbedtls_printf("%s\n", vrfy_buf); |
| 2240 | } else { |
| 2241 | mbedtls_printf(" ok\n"); |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 2242 | } |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 2243 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2244 | mbedtls_printf(" . Peer certificate information ...\n"); |
| 2245 | mbedtls_printf("%s\n", peer_crt_info); |
Andrzej Kurek | 7829d8f | 2022-10-18 09:19:07 -0400 | [diff] [blame] | 2246 | #endif /* MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED */ |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 2247 | |
Hanno Becker | a0e20d0 | 2019-05-15 14:03:01 +0100 | [diff] [blame] | 2248 | #if defined(MBEDTLS_SSL_DTLS_CONNECTION_ID) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2249 | ret = report_cid_usage(&ssl, "initial handshake"); |
| 2250 | if (ret != 0) { |
Hanno Becker | b42ec0d | 2019-05-03 17:30:59 +0100 | [diff] [blame] | 2251 | goto exit; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2252 | } |
Hanno Becker | b42ec0d | 2019-05-03 17:30:59 +0100 | [diff] [blame] | 2253 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2254 | 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-arm | 7859585 | 2020-04-28 10:40:30 +0200 | [diff] [blame] | 2260 | goto exit; |
Hanno Becker | 90cb359 | 2019-04-09 17:24:19 +0100 | [diff] [blame] | 2261 | } |
| 2262 | } |
Hanno Becker | a0e20d0 | 2019-05-15 14:03:01 +0100 | [diff] [blame] | 2263 | #endif /* MBEDTLS_SSL_DTLS_CONNECTION_ID */ |
Hanno Becker | 90cb359 | 2019-04-09 17:24:19 +0100 | [diff] [blame] | 2264 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 2265 | #if defined(MBEDTLS_SSL_RENEGOTIATION) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2266 | if (opt.renegotiate) { |
Manuel Pégourié-Gonnard | 780d671 | 2014-02-20 17:19:59 +0100 | [diff] [blame] | 2267 | /* |
| 2268 | * Perform renegotiation (this must be done when the server is waiting |
| 2269 | * for input from our side). |
| 2270 | */ |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2271 | 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é-Gonnard | b3c8307 | 2017-05-16 08:50:24 +0200 | [diff] [blame] | 2275 | ret != MBEDTLS_ERR_SSL_WANT_WRITE && |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2276 | ret != MBEDTLS_ERR_SSL_CRYPTO_IN_PROGRESS) { |
| 2277 | mbedtls_printf(" failed\n ! mbedtls_ssl_renegotiate returned %d\n\n", |
| 2278 | ret); |
Manuel Pégourié-Gonnard | 780d671 | 2014-02-20 17:19:59 +0100 | [diff] [blame] | 2279 | goto exit; |
| 2280 | } |
Hanno Becker | 16970d2 | 2017-10-10 15:56:37 +0100 | [diff] [blame] | 2281 | |
Manuel Pégourié-Gonnard | 25781f9 | 2018-10-15 15:28:16 +0200 | [diff] [blame] | 2282 | #if defined(MBEDTLS_ECP_RESTARTABLE) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2283 | if (ret == MBEDTLS_ERR_SSL_CRYPTO_IN_PROGRESS) { |
Manuel Pégourié-Gonnard | 25781f9 | 2018-10-15 15:28:16 +0200 | [diff] [blame] | 2284 | continue; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2285 | } |
Manuel Pégourié-Gonnard | 25781f9 | 2018-10-15 15:28:16 +0200 | [diff] [blame] | 2286 | #endif |
| 2287 | |
Hanno Becker | 16970d2 | 2017-10-10 15:56:37 +0100 | [diff] [blame] | 2288 | /* For event-driven IO, wait for socket to become available */ |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2289 | if (opt.event == 1 /* level triggered IO */) { |
Hanno Becker | 16970d2 | 2017-10-10 15:56:37 +0100 | [diff] [blame] | 2290 | #if defined(MBEDTLS_TIMING_C) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2291 | idle(&server_fd, &timer, ret); |
Hanno Becker | 16970d2 | 2017-10-10 15:56:37 +0100 | [diff] [blame] | 2292 | #else |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2293 | idle(&server_fd, ret); |
Hanno Becker | 16970d2 | 2017-10-10 15:56:37 +0100 | [diff] [blame] | 2294 | #endif |
| 2295 | } |
| 2296 | |
Manuel Pégourié-Gonnard | 53b3e06 | 2013-10-29 18:16:38 +0100 | [diff] [blame] | 2297 | } |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2298 | mbedtls_printf(" ok\n"); |
Manuel Pégourié-Gonnard | 53b3e06 | 2013-10-29 18:16:38 +0100 | [diff] [blame] | 2299 | } |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 2300 | #endif /* MBEDTLS_SSL_RENEGOTIATION */ |
Manuel Pégourié-Gonnard | 53b3e06 | 2013-10-29 18:16:38 +0100 | [diff] [blame] | 2301 | |
Hanno Becker | a0e20d0 | 2019-05-15 14:03:01 +0100 | [diff] [blame] | 2302 | #if defined(MBEDTLS_SSL_DTLS_CONNECTION_ID) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2303 | ret = report_cid_usage(&ssl, "after renegotiation"); |
| 2304 | if (ret != 0) { |
Hanno Becker | b42ec0d | 2019-05-03 17:30:59 +0100 | [diff] [blame] | 2305 | goto exit; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2306 | } |
Hanno Becker | a0e20d0 | 2019-05-15 14:03:01 +0100 | [diff] [blame] | 2307 | #endif /* MBEDTLS_SSL_DTLS_CONNECTION_ID */ |
Hanno Becker | b42ec0d | 2019-05-03 17:30:59 +0100 | [diff] [blame] | 2308 | |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 2309 | /* |
| 2310 | * 6. Write the GET request |
| 2311 | */ |
Manuel Pégourié-Gonnard | e63582a | 2014-10-14 11:47:21 +0200 | [diff] [blame] | 2312 | retry_left = opt.max_resend; |
Manuel Pégourié-Gonnard | aaa1eab | 2013-07-30 13:43:43 +0200 | [diff] [blame] | 2313 | send_request: |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2314 | mbedtls_printf(" > Write to server:"); |
| 2315 | fflush(stdout); |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 2316 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2317 | 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é-Gonnard | dcab293 | 2014-08-14 17:47:17 +0200 | [diff] [blame] | 2320 | |
| 2321 | /* Add padding to GET request to reach opt.request_size in length */ |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2322 | 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é-Gonnard | dcab293 | 2014-08-14 17:47:17 +0200 | [diff] [blame] | 2325 | len += opt.request_size - len - tail_len; |
Paul Bakker | 93c32b2 | 2014-04-25 13:40:05 +0200 | [diff] [blame] | 2326 | } |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 2327 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2328 | strncpy((char *) buf + len, GET_REQUEST_END, sizeof(buf) - len - 1); |
Manuel Pégourié-Gonnard | dcab293 | 2014-08-14 17:47:17 +0200 | [diff] [blame] | 2329 | len += tail_len; |
| 2330 | |
Manuel Pégourié-Gonnard | dea29c5 | 2014-06-18 13:07:56 +0200 | [diff] [blame] | 2331 | /* Truncate if request size is smaller than the "natural" size */ |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2332 | if (opt.request_size != DFL_REQUEST_SIZE && |
| 2333 | len > opt.request_size) { |
Manuel Pégourié-Gonnard | dea29c5 | 2014-06-18 13:07:56 +0200 | [diff] [blame] | 2334 | len = opt.request_size; |
| 2335 | |
| 2336 | /* Still end with \r\n unless that's really not possible */ |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2337 | if (len >= 2) { |
| 2338 | buf[len - 2] = '\r'; |
| 2339 | } |
| 2340 | if (len >= 1) { |
| 2341 | buf[len - 1] = '\n'; |
| 2342 | } |
Manuel Pégourié-Gonnard | dea29c5 | 2014-06-18 13:07:56 +0200 | [diff] [blame] | 2343 | } |
| 2344 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2345 | if (opt.transport == MBEDTLS_SSL_TRANSPORT_STREAM) { |
Andres Amaya Garcia | ce6fbac | 2018-07-04 09:29:34 +0100 | [diff] [blame] | 2346 | written = 0; |
| 2347 | frags = 0; |
| 2348 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2349 | 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é-Gonnard | b3c8307 | 2017-05-16 08:50:24 +0200 | [diff] [blame] | 2353 | ret != MBEDTLS_ERR_SSL_WANT_WRITE && |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2354 | 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é-Gonnard | 2d87e41 | 2014-10-13 18:38:36 +0200 | [diff] [blame] | 2357 | goto exit; |
| 2358 | } |
Hanno Becker | 16970d2 | 2017-10-10 15:56:37 +0100 | [diff] [blame] | 2359 | |
| 2360 | /* For event-driven IO, wait for socket to become available */ |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2361 | if (opt.event == 1 /* level triggered IO */) { |
Hanno Becker | 16970d2 | 2017-10-10 15:56:37 +0100 | [diff] [blame] | 2362 | #if defined(MBEDTLS_TIMING_C) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2363 | idle(&server_fd, &timer, ret); |
Hanno Becker | 16970d2 | 2017-10-10 15:56:37 +0100 | [diff] [blame] | 2364 | #else |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2365 | idle(&server_fd, ret); |
Hanno Becker | 16970d2 | 2017-10-10 15:56:37 +0100 | [diff] [blame] | 2366 | #endif |
| 2367 | } |
Manuel Pégourié-Gonnard | 787b658 | 2013-07-16 15:43:17 +0200 | [diff] [blame] | 2368 | } |
Andres Amaya Garcia | ce6fbac | 2018-07-04 09:29:34 +0100 | [diff] [blame] | 2369 | |
| 2370 | frags++; |
| 2371 | written += ret; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2372 | } while (written < len); |
| 2373 | } else { /* Not stream, so datagram */ |
| 2374 | while (1) { |
| 2375 | ret = mbedtls_ssl_write(&ssl, buf, len); |
Hanno Becker | 16970d2 | 2017-10-10 15:56:37 +0100 | [diff] [blame] | 2376 | |
Manuel Pégourié-Gonnard | da19f4c | 2018-06-12 12:40:54 +0200 | [diff] [blame] | 2377 | #if defined(MBEDTLS_ECP_RESTARTABLE) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2378 | if (ret == MBEDTLS_ERR_SSL_CRYPTO_IN_PROGRESS) { |
Manuel Pégourié-Gonnard | da19f4c | 2018-06-12 12:40:54 +0200 | [diff] [blame] | 2379 | continue; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2380 | } |
Manuel Pégourié-Gonnard | da19f4c | 2018-06-12 12:40:54 +0200 | [diff] [blame] | 2381 | #endif |
| 2382 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2383 | if (ret != MBEDTLS_ERR_SSL_WANT_READ && |
| 2384 | ret != MBEDTLS_ERR_SSL_WANT_WRITE) { |
Hanno Becker | 16970d2 | 2017-10-10 15:56:37 +0100 | [diff] [blame] | 2385 | break; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2386 | } |
Hanno Becker | 16970d2 | 2017-10-10 15:56:37 +0100 | [diff] [blame] | 2387 | |
| 2388 | /* For event-driven IO, wait for socket to become available */ |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2389 | if (opt.event == 1 /* level triggered IO */) { |
Hanno Becker | 16970d2 | 2017-10-10 15:56:37 +0100 | [diff] [blame] | 2390 | #if defined(MBEDTLS_TIMING_C) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2391 | idle(&server_fd, &timer, ret); |
Hanno Becker | 16970d2 | 2017-10-10 15:56:37 +0100 | [diff] [blame] | 2392 | #else |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2393 | idle(&server_fd, ret); |
Hanno Becker | 16970d2 | 2017-10-10 15:56:37 +0100 | [diff] [blame] | 2394 | #endif |
| 2395 | } |
| 2396 | } |
Manuel Pégourié-Gonnard | 2d87e41 | 2014-10-13 18:38:36 +0200 | [diff] [blame] | 2397 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2398 | if (ret < 0) { |
| 2399 | mbedtls_printf(" failed\n ! mbedtls_ssl_write returned %d\n\n", |
| 2400 | ret); |
Manuel Pégourié-Gonnard | 2d87e41 | 2014-10-13 18:38:36 +0200 | [diff] [blame] | 2401 | goto exit; |
| 2402 | } |
| 2403 | |
| 2404 | frags = 1; |
| 2405 | written = ret; |
Hanno Becker | e4ad3e8 | 2017-09-18 15:05:46 +0100 | [diff] [blame] | 2406 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2407 | 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 Becker | e4ad3e8 | 2017-09-18 15:05:46 +0100 | [diff] [blame] | 2410 | } |
Manuel Pégourié-Gonnard | 2d87e41 | 2014-10-13 18:38:36 +0200 | [diff] [blame] | 2411 | } |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 2412 | |
Manuel Pégourié-Gonnard | 787b658 | 2013-07-16 15:43:17 +0200 | [diff] [blame] | 2413 | buf[written] = '\0'; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2414 | mbedtls_printf(" %d bytes written in %d fragments\n\n%s\n", |
| 2415 | written, frags, (char *) buf); |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 2416 | |
Andres Amaya Garcia | ce6fbac | 2018-07-04 09:29:34 +0100 | [diff] [blame] | 2417 | /* Send a non-empty request if request_size == 0 */ |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2418 | if (len == 0) { |
Andres Amaya Garcia | ce6fbac | 2018-07-04 09:29:34 +0100 | [diff] [blame] | 2419 | opt.request_size = DFL_REQUEST_SIZE; |
| 2420 | goto send_request; |
| 2421 | } |
| 2422 | |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 2423 | /* |
| 2424 | * 7. Read the HTTP response |
| 2425 | */ |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2426 | mbedtls_printf(" < Read from server:"); |
| 2427 | fflush(stdout); |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 2428 | |
Manuel Pégourié-Gonnard | ae5050c | 2014-07-11 14:14:15 +0200 | [diff] [blame] | 2429 | /* |
| 2430 | * TLS and DTLS need different reading styles (stream vs datagram) |
| 2431 | */ |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2432 | 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é-Gonnard | ae5050c | 2014-07-11 14:14:15 +0200 | [diff] [blame] | 2437 | |
Manuel Pégourié-Gonnard | da19f4c | 2018-06-12 12:40:54 +0200 | [diff] [blame] | 2438 | #if defined(MBEDTLS_ECP_RESTARTABLE) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2439 | if (ret == MBEDTLS_ERR_SSL_CRYPTO_IN_PROGRESS) { |
Manuel Pégourié-Gonnard | ae5050c | 2014-07-11 14:14:15 +0200 | [diff] [blame] | 2440 | continue; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2441 | } |
Manuel Pégourié-Gonnard | da19f4c | 2018-06-12 12:40:54 +0200 | [diff] [blame] | 2442 | #endif |
| 2443 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2444 | if (ret == MBEDTLS_ERR_SSL_WANT_READ || |
| 2445 | ret == MBEDTLS_ERR_SSL_WANT_WRITE) { |
Hanno Becker | 16970d2 | 2017-10-10 15:56:37 +0100 | [diff] [blame] | 2446 | /* For event-driven IO, wait for socket to become available */ |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2447 | if (opt.event == 1 /* level triggered IO */) { |
Hanno Becker | 16970d2 | 2017-10-10 15:56:37 +0100 | [diff] [blame] | 2448 | #if defined(MBEDTLS_TIMING_C) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2449 | idle(&server_fd, &timer, ret); |
Hanno Becker | 16970d2 | 2017-10-10 15:56:37 +0100 | [diff] [blame] | 2450 | #else |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2451 | idle(&server_fd, ret); |
Hanno Becker | 16970d2 | 2017-10-10 15:56:37 +0100 | [diff] [blame] | 2452 | #endif |
| 2453 | } |
Manuel Pégourié-Gonnard | ae5050c | 2014-07-11 14:14:15 +0200 | [diff] [blame] | 2454 | continue; |
Hanno Becker | 16970d2 | 2017-10-10 15:56:37 +0100 | [diff] [blame] | 2455 | } |
Manuel Pégourié-Gonnard | ae5050c | 2014-07-11 14:14:15 +0200 | [diff] [blame] | 2456 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2457 | if (ret <= 0) { |
| 2458 | switch (ret) { |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 2459 | case MBEDTLS_ERR_SSL_PEER_CLOSE_NOTIFY: |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2460 | mbedtls_printf(" connection was closed gracefully\n"); |
Manuel Pégourié-Gonnard | ae5050c | 2014-07-11 14:14:15 +0200 | [diff] [blame] | 2461 | ret = 0; |
| 2462 | goto close_notify; |
| 2463 | |
| 2464 | case 0: |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 2465 | case MBEDTLS_ERR_NET_CONN_RESET: |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2466 | mbedtls_printf(" connection was reset by peer\n"); |
Manuel Pégourié-Gonnard | ae5050c | 2014-07-11 14:14:15 +0200 | [diff] [blame] | 2467 | ret = 0; |
| 2468 | goto reconnect; |
| 2469 | |
| 2470 | default: |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2471 | mbedtls_printf(" mbedtls_ssl_read returned -0x%x\n", |
| 2472 | (unsigned int) -ret); |
Manuel Pégourié-Gonnard | ae5050c | 2014-07-11 14:14:15 +0200 | [diff] [blame] | 2473 | goto exit; |
| 2474 | } |
| 2475 | } |
| 2476 | |
| 2477 | len = ret; |
| 2478 | buf[len] = '\0'; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2479 | mbedtls_printf(" %d bytes read\n\n%s", len, (char *) buf); |
Manuel Pégourié-Gonnard | ae5050c | 2014-07-11 14:14:15 +0200 | [diff] [blame] | 2480 | |
| 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 Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2483 | if (ret > 0 && buf[len-1] == '\n') { |
Manuel Pégourié-Gonnard | ae5050c | 2014-07-11 14:14:15 +0200 | [diff] [blame] | 2484 | ret = 0; |
| 2485 | break; |
| 2486 | } |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2487 | } while (1); |
| 2488 | } else { /* Not stream, so datagram */ |
| 2489 | len = sizeof(buf) - 1; |
| 2490 | memset(buf, 0, sizeof(buf)); |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 2491 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2492 | while (1) { |
| 2493 | ret = mbedtls_ssl_read(&ssl, buf, len); |
Hanno Becker | 16970d2 | 2017-10-10 15:56:37 +0100 | [diff] [blame] | 2494 | |
Manuel Pégourié-Gonnard | da19f4c | 2018-06-12 12:40:54 +0200 | [diff] [blame] | 2495 | #if defined(MBEDTLS_ECP_RESTARTABLE) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2496 | if (ret == MBEDTLS_ERR_SSL_CRYPTO_IN_PROGRESS) { |
Manuel Pégourié-Gonnard | da19f4c | 2018-06-12 12:40:54 +0200 | [diff] [blame] | 2497 | continue; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2498 | } |
Manuel Pégourié-Gonnard | da19f4c | 2018-06-12 12:40:54 +0200 | [diff] [blame] | 2499 | #endif |
| 2500 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2501 | if (ret != MBEDTLS_ERR_SSL_WANT_READ && |
| 2502 | ret != MBEDTLS_ERR_SSL_WANT_WRITE) { |
Hanno Becker | 16970d2 | 2017-10-10 15:56:37 +0100 | [diff] [blame] | 2503 | break; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2504 | } |
Hanno Becker | 16970d2 | 2017-10-10 15:56:37 +0100 | [diff] [blame] | 2505 | |
| 2506 | /* For event-driven IO, wait for socket to become available */ |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2507 | if (opt.event == 1 /* level triggered IO */) { |
Hanno Becker | 16970d2 | 2017-10-10 15:56:37 +0100 | [diff] [blame] | 2508 | #if defined(MBEDTLS_TIMING_C) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2509 | idle(&server_fd, &timer, ret); |
Hanno Becker | 16970d2 | 2017-10-10 15:56:37 +0100 | [diff] [blame] | 2510 | #else |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2511 | idle(&server_fd, ret); |
Hanno Becker | 16970d2 | 2017-10-10 15:56:37 +0100 | [diff] [blame] | 2512 | #endif |
| 2513 | } |
| 2514 | } |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 2515 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2516 | if (ret <= 0) { |
| 2517 | switch (ret) { |
Manuel Pégourié-Gonnard | 8836994 | 2015-05-06 16:19:31 +0100 | [diff] [blame] | 2518 | case MBEDTLS_ERR_SSL_TIMEOUT: |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2519 | mbedtls_printf(" timeout\n"); |
| 2520 | if (retry_left-- > 0) { |
Manuel Pégourié-Gonnard | f1e0df3 | 2014-10-02 14:02:32 +0200 | [diff] [blame] | 2521 | goto send_request; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2522 | } |
Manuel Pégourié-Gonnard | f1e0df3 | 2014-10-02 14:02:32 +0200 | [diff] [blame] | 2523 | goto exit; |
| 2524 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 2525 | case MBEDTLS_ERR_SSL_PEER_CLOSE_NOTIFY: |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2526 | mbedtls_printf(" connection was closed gracefully\n"); |
Manuel Pégourié-Gonnard | e08660e | 2014-08-16 11:28:40 +0200 | [diff] [blame] | 2527 | ret = 0; |
Manuel Pégourié-Gonnard | f138874 | 2014-08-19 16:14:36 +0200 | [diff] [blame] | 2528 | goto close_notify; |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 2529 | |
Manuel Pégourié-Gonnard | e08660e | 2014-08-16 11:28:40 +0200 | [diff] [blame] | 2530 | default: |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2531 | mbedtls_printf(" mbedtls_ssl_read returned -0x%x\n", (unsigned int) -ret); |
Manuel Pégourié-Gonnard | e08660e | 2014-08-16 11:28:40 +0200 | [diff] [blame] | 2532 | goto exit; |
| 2533 | } |
Paul Bakker | 5690efc | 2011-05-26 13:16:06 +0000 | [diff] [blame] | 2534 | } |
| 2535 | |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 2536 | len = ret; |
Paul Bakker | 93c32b2 | 2014-04-25 13:40:05 +0200 | [diff] [blame] | 2537 | buf[len] = '\0'; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2538 | mbedtls_printf(" %d bytes read\n\n%s", len, (char *) buf); |
Manuel Pégourié-Gonnard | ae5050c | 2014-07-11 14:14:15 +0200 | [diff] [blame] | 2539 | ret = 0; |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 2540 | } |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 2541 | |
Manuel Pégourié-Gonnard | e08660e | 2014-08-16 11:28:40 +0200 | [diff] [blame] | 2542 | /* |
Manuel Pégourié-Gonnard | dbd2307 | 2015-09-04 10:20:17 +0200 | [diff] [blame] | 2543 | * 7b. Simulate hard reset and reconnect from same port? |
| 2544 | */ |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2545 | if (opt.reconnect_hard != 0) { |
Manuel Pégourié-Gonnard | dbd2307 | 2015-09-04 10:20:17 +0200 | [diff] [blame] | 2546 | opt.reconnect_hard = 0; |
| 2547 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2548 | mbedtls_printf(" . Restarting connection from same port..."); |
| 2549 | fflush(stdout); |
Manuel Pégourié-Gonnard | dbd2307 | 2015-09-04 10:20:17 +0200 | [diff] [blame] | 2550 | |
Andrzej Kurek | 7829d8f | 2022-10-18 09:19:07 -0400 | [diff] [blame] | 2551 | #if defined(MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2552 | memset(peer_crt_info, 0, sizeof(peer_crt_info)); |
Andrzej Kurek | 7829d8f | 2022-10-18 09:19:07 -0400 | [diff] [blame] | 2553 | #endif /* MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED */ |
Hanno Becker | 23699ef | 2019-02-26 12:36:53 +0000 | [diff] [blame] | 2554 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2555 | 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é-Gonnard | dbd2307 | 2015-09-04 10:20:17 +0200 | [diff] [blame] | 2558 | goto exit; |
| 2559 | } |
| 2560 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2561 | while ((ret = mbedtls_ssl_handshake(&ssl)) != 0) { |
| 2562 | if (ret != MBEDTLS_ERR_SSL_WANT_READ && |
Manuel Pégourié-Gonnard | b3c8307 | 2017-05-16 08:50:24 +0200 | [diff] [blame] | 2563 | ret != MBEDTLS_ERR_SSL_WANT_WRITE && |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2564 | 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é-Gonnard | dbd2307 | 2015-09-04 10:20:17 +0200 | [diff] [blame] | 2567 | goto exit; |
| 2568 | } |
Hanno Becker | 16970d2 | 2017-10-10 15:56:37 +0100 | [diff] [blame] | 2569 | |
| 2570 | /* For event-driven IO, wait for socket to become available */ |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2571 | if (opt.event == 1 /* level triggered IO */) { |
Hanno Becker | 16970d2 | 2017-10-10 15:56:37 +0100 | [diff] [blame] | 2572 | #if defined(MBEDTLS_TIMING_C) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2573 | idle(&server_fd, &timer, ret); |
Hanno Becker | 16970d2 | 2017-10-10 15:56:37 +0100 | [diff] [blame] | 2574 | #else |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2575 | idle(&server_fd, ret); |
Hanno Becker | 16970d2 | 2017-10-10 15:56:37 +0100 | [diff] [blame] | 2576 | #endif |
| 2577 | } |
Manuel Pégourié-Gonnard | dbd2307 | 2015-09-04 10:20:17 +0200 | [diff] [blame] | 2578 | } |
| 2579 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2580 | mbedtls_printf(" ok\n"); |
Manuel Pégourié-Gonnard | dbd2307 | 2015-09-04 10:20:17 +0200 | [diff] [blame] | 2581 | |
| 2582 | goto send_request; |
| 2583 | } |
| 2584 | |
| 2585 | /* |
Jarno Lamsa | 77e6665 | 2019-05-29 15:15:08 +0300 | [diff] [blame] | 2586 | * 7c. Simulate serialize/deserialize and go back to data exchange |
| 2587 | */ |
Jarno Lamsa | bbc7b41 | 2019-06-04 11:06:31 +0300 | [diff] [blame] | 2588 | #if defined(MBEDTLS_SSL_CONTEXT_SERIALIZATION) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2589 | if (opt.serialize != 0) { |
Jarno Lamsa | 15b3a7a | 2019-06-06 15:10:07 +0300 | [diff] [blame] | 2590 | size_t buf_len; |
Jarno Lamsa | 77e6665 | 2019-05-29 15:15:08 +0300 | [diff] [blame] | 2591 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2592 | mbedtls_printf(" . Serializing live connection..."); |
Jarno Lamsa | 77e6665 | 2019-05-29 15:15:08 +0300 | [diff] [blame] | 2593 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2594 | 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 Lamsa | 77e6665 | 2019-05-29 15:15:08 +0300 | [diff] [blame] | 2598 | |
| 2599 | goto exit; |
| 2600 | } |
| 2601 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2602 | if ((context_buf = mbedtls_calloc(1, buf_len)) == NULL) { |
| 2603 | mbedtls_printf(" failed\n ! Couldn't allocate buffer for " |
| 2604 | "serialized context"); |
Jarno Lamsa | 77e6665 | 2019-05-29 15:15:08 +0300 | [diff] [blame] | 2605 | |
| 2606 | goto exit; |
| 2607 | } |
Manuel Pégourié-Gonnard | 3309a67 | 2019-07-15 10:31:11 +0200 | [diff] [blame] | 2608 | context_buf_len = buf_len; |
Jarno Lamsa | 77e6665 | 2019-05-29 15:15:08 +0300 | [diff] [blame] | 2609 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2610 | 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 Lamsa | 77e6665 | 2019-05-29 15:15:08 +0300 | [diff] [blame] | 2614 | |
| 2615 | goto exit; |
| 2616 | } |
| 2617 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2618 | mbedtls_printf(" ok\n"); |
Manuel Pégourié-Gonnard | a88399c | 2019-07-12 10:41:55 +0200 | [diff] [blame] | 2619 | |
Piotr Nowicki | 3de298f | 2020-04-16 14:35:19 +0200 | [diff] [blame] | 2620 | /* Save serialized context to the 'opt.context_file' as a base64 code */ |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2621 | if (0 < strlen(opt.context_file)) { |
Piotr Nowicki | 3de298f | 2020-04-16 14:35:19 +0200 | [diff] [blame] | 2622 | FILE *b64_file; |
| 2623 | uint8_t *b64_buf; |
| 2624 | size_t b64_len; |
| 2625 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2626 | mbedtls_printf(" . Save serialized context to a file... "); |
Piotr Nowicki | 3de298f | 2020-04-16 14:35:19 +0200 | [diff] [blame] | 2627 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2628 | mbedtls_base64_encode(NULL, 0, &b64_len, context_buf, buf_len); |
Piotr Nowicki | 3de298f | 2020-04-16 14:35:19 +0200 | [diff] [blame] | 2629 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2630 | 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 Nowicki | 3de298f | 2020-04-16 14:35:19 +0200 | [diff] [blame] | 2633 | goto exit; |
| 2634 | } |
| 2635 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2636 | 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 Nowicki | 3de298f | 2020-04-16 14:35:19 +0200 | [diff] [blame] | 2641 | goto exit; |
| 2642 | } |
| 2643 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2644 | 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 Nowicki | 3de298f | 2020-04-16 14:35:19 +0200 | [diff] [blame] | 2648 | goto exit; |
| 2649 | } |
| 2650 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2651 | 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 Nowicki | 3de298f | 2020-04-16 14:35:19 +0200 | [diff] [blame] | 2656 | goto exit; |
| 2657 | } |
| 2658 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2659 | mbedtls_free(b64_buf); |
| 2660 | fclose(b64_file); |
Piotr Nowicki | 3de298f | 2020-04-16 14:35:19 +0200 | [diff] [blame] | 2661 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2662 | mbedtls_printf("ok\n"); |
Piotr Nowicki | 3de298f | 2020-04-16 14:35:19 +0200 | [diff] [blame] | 2663 | } |
| 2664 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2665 | if (opt.serialize == 1) { |
Manuel Pégourié-Gonnard | 9df5a82 | 2019-07-23 14:51:09 +0200 | [diff] [blame] | 2666 | /* nothing to do here, done by context_save() already */ |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2667 | mbedtls_printf(" . Context has been reset... ok\n"); |
Manuel Pégourié-Gonnard | a88399c | 2019-07-12 10:41:55 +0200 | [diff] [blame] | 2668 | } |
| 2669 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2670 | if (opt.serialize == 2) { |
| 2671 | mbedtls_printf(" . Freeing and reinitializing context..."); |
Manuel Pégourié-Gonnard | a88399c | 2019-07-12 10:41:55 +0200 | [diff] [blame] | 2672 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2673 | mbedtls_ssl_free(&ssl); |
Jarno Lamsa | 304d61c | 2019-06-06 10:40:52 +0300 | [diff] [blame] | 2674 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2675 | mbedtls_ssl_init(&ssl); |
Jarno Lamsa | 304d61c | 2019-06-06 10:40:52 +0300 | [diff] [blame] | 2676 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2677 | 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 Lamsa | 304d61c | 2019-06-06 10:40:52 +0300 | [diff] [blame] | 2680 | goto exit; |
| 2681 | } |
| 2682 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2683 | 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 Lamsa | 304d61c | 2019-06-06 10:40:52 +0300 | [diff] [blame] | 2691 | |
Jarno Lamsa | 8e25321 | 2019-06-13 11:45:06 +0300 | [diff] [blame] | 2692 | #if defined(MBEDTLS_TIMING_C) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2693 | mbedtls_ssl_set_timer_cb(&ssl, &timer, |
| 2694 | mbedtls_timing_set_delay, |
| 2695 | mbedtls_timing_get_delay); |
Jarno Lamsa | 8e25321 | 2019-06-13 11:45:06 +0300 | [diff] [blame] | 2696 | #endif /* MBEDTLS_TIMING_C */ |
Manuel Pégourié-Gonnard | a88399c | 2019-07-12 10:41:55 +0200 | [diff] [blame] | 2697 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2698 | mbedtls_printf(" ok\n"); |
Jarno Lamsa | 304d61c | 2019-06-06 10:40:52 +0300 | [diff] [blame] | 2699 | } |
| 2700 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2701 | mbedtls_printf(" . Deserializing connection..."); |
Jarno Lamsa | 77e6665 | 2019-05-29 15:15:08 +0300 | [diff] [blame] | 2702 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2703 | 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 Lamsa | 77e6665 | 2019-05-29 15:15:08 +0300 | [diff] [blame] | 2707 | |
| 2708 | goto exit; |
| 2709 | } |
Manuel Pégourié-Gonnard | a88399c | 2019-07-12 10:41:55 +0200 | [diff] [blame] | 2710 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2711 | mbedtls_free(context_buf); |
Manuel Pégourié-Gonnard | 3309a67 | 2019-07-15 10:31:11 +0200 | [diff] [blame] | 2712 | context_buf = NULL; |
| 2713 | context_buf_len = 0; |
| 2714 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2715 | mbedtls_printf(" ok\n"); |
Jarno Lamsa | 77e6665 | 2019-05-29 15:15:08 +0300 | [diff] [blame] | 2716 | } |
Jarno Lamsa | 93c6ff2 | 2019-06-04 15:36:18 +0300 | [diff] [blame] | 2717 | #endif /* MBEDTLS_SSL_CONTEXT_SERIALIZATION */ |
Jarno Lamsa | 77e6665 | 2019-05-29 15:15:08 +0300 | [diff] [blame] | 2718 | |
| 2719 | /* |
| 2720 | * 7d. Continue doing data exchanges? |
Manuel Pégourié-Gonnard | a8c0a0d | 2014-08-15 12:07:38 +0200 | [diff] [blame] | 2721 | */ |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2722 | if (--opt.exchanges > 0) { |
Manuel Pégourié-Gonnard | a8c0a0d | 2014-08-15 12:07:38 +0200 | [diff] [blame] | 2723 | goto send_request; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2724 | } |
Manuel Pégourié-Gonnard | a8c0a0d | 2014-08-15 12:07:38 +0200 | [diff] [blame] | 2725 | |
| 2726 | /* |
Manuel Pégourié-Gonnard | f138874 | 2014-08-19 16:14:36 +0200 | [diff] [blame] | 2727 | * 8. Done, cleanly close the connection |
| 2728 | */ |
| 2729 | close_notify: |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2730 | mbedtls_printf(" . Closing the connection..."); |
| 2731 | fflush(stdout); |
Manuel Pégourié-Gonnard | f138874 | 2014-08-19 16:14:36 +0200 | [diff] [blame] | 2732 | |
Manuel Pégourié-Gonnard | 56941fe | 2020-02-17 11:04:33 +0100 | [diff] [blame] | 2733 | /* |
| 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 Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2745 | if (opt.skip_close_notify == 0) { |
Manuel Pégourié-Gonnard | 56941fe | 2020-02-17 11:04:33 +0100 | [diff] [blame] | 2746 | /* No error checking, the connection might be closed already */ |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2747 | do { |
| 2748 | ret = mbedtls_ssl_close_notify(&ssl); |
| 2749 | } while (ret == MBEDTLS_ERR_SSL_WANT_WRITE); |
Manuel Pégourié-Gonnard | 56941fe | 2020-02-17 11:04:33 +0100 | [diff] [blame] | 2750 | ret = 0; |
| 2751 | } |
Manuel Pégourié-Gonnard | f138874 | 2014-08-19 16:14:36 +0200 | [diff] [blame] | 2752 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2753 | mbedtls_printf(" done\n"); |
Manuel Pégourié-Gonnard | f138874 | 2014-08-19 16:14:36 +0200 | [diff] [blame] | 2754 | |
| 2755 | /* |
| 2756 | * 9. Reconnect? |
Manuel Pégourié-Gonnard | e08660e | 2014-08-16 11:28:40 +0200 | [diff] [blame] | 2757 | */ |
| 2758 | reconnect: |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2759 | if (opt.reconnect != 0) { |
Manuel Pégourié-Gonnard | cf2e97e | 2013-08-02 15:04:36 +0200 | [diff] [blame] | 2760 | --opt.reconnect; |
Manuel Pégourié-Gonnard | aaa1eab | 2013-07-30 13:43:43 +0200 | [diff] [blame] | 2761 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2762 | mbedtls_net_free(&server_fd); |
Manuel Pégourié-Gonnard | 6b0d268 | 2014-03-25 11:24:43 +0100 | [diff] [blame] | 2763 | |
Manuel Pégourié-Gonnard | d2377e7 | 2015-05-13 13:58:56 +0200 | [diff] [blame] | 2764 | #if defined(MBEDTLS_TIMING_C) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2765 | if (opt.reco_delay > 0) { |
| 2766 | mbedtls_net_usleep(1000000 * opt.reco_delay); |
| 2767 | } |
Manuel Pégourié-Gonnard | d2377e7 | 2015-05-13 13:58:56 +0200 | [diff] [blame] | 2768 | #endif |
Manuel Pégourié-Gonnard | 38d1eba | 2013-08-23 10:44:29 +0200 | [diff] [blame] | 2769 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2770 | mbedtls_printf(" . Reconnecting with saved session..."); |
Manuel Pégourié-Gonnard | aaa1eab | 2013-07-30 13:43:43 +0200 | [diff] [blame] | 2771 | |
Andrzej Kurek | 7829d8f | 2022-10-18 09:19:07 -0400 | [diff] [blame] | 2772 | #if defined(MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2773 | memset(peer_crt_info, 0, sizeof(peer_crt_info)); |
Andrzej Kurek | 7829d8f | 2022-10-18 09:19:07 -0400 | [diff] [blame] | 2774 | #endif /* MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED */ |
Hanno Becker | a1051b4 | 2019-02-26 11:38:29 +0000 | [diff] [blame] | 2775 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2776 | 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é-Gonnard | aaa1eab | 2013-07-30 13:43:43 +0200 | [diff] [blame] | 2779 | goto exit; |
| 2780 | } |
| 2781 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2782 | 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é-Gonnard | a7c3765 | 2019-05-20 12:46:26 +0200 | [diff] [blame] | 2788 | goto exit; |
| 2789 | } |
Manuel Pégourié-Gonnard | 2154863 | 2019-05-16 11:39:42 +0200 | [diff] [blame] | 2790 | } |
| 2791 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2792 | 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é-Gonnard | c5fd391 | 2014-07-08 14:05:52 +0200 | [diff] [blame] | 2795 | goto exit; |
| 2796 | } |
Manuel Pégourié-Gonnard | aaa1eab | 2013-07-30 13:43:43 +0200 | [diff] [blame] | 2797 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2798 | 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é-Gonnard | aaa1eab | 2013-07-30 13:43:43 +0200 | [diff] [blame] | 2804 | goto exit; |
| 2805 | } |
| 2806 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2807 | 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é-Gonnard | 85beb30 | 2014-10-02 17:59:19 +0200 | [diff] [blame] | 2815 | goto exit; |
| 2816 | } |
| 2817 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2818 | while ((ret = mbedtls_ssl_handshake(&ssl)) != 0) { |
| 2819 | if (ret != MBEDTLS_ERR_SSL_WANT_READ && |
Manuel Pégourié-Gonnard | b3c8307 | 2017-05-16 08:50:24 +0200 | [diff] [blame] | 2820 | ret != MBEDTLS_ERR_SSL_WANT_WRITE && |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2821 | 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é-Gonnard | aaa1eab | 2013-07-30 13:43:43 +0200 | [diff] [blame] | 2824 | goto exit; |
| 2825 | } |
| 2826 | } |
| 2827 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2828 | mbedtls_printf(" ok\n"); |
Manuel Pégourié-Gonnard | aaa1eab | 2013-07-30 13:43:43 +0200 | [diff] [blame] | 2829 | |
| 2830 | goto send_request; |
| 2831 | } |
| 2832 | |
Manuel Pégourié-Gonnard | e08660e | 2014-08-16 11:28:40 +0200 | [diff] [blame] | 2833 | /* |
| 2834 | * Cleanup and exit |
| 2835 | */ |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 2836 | exit: |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 2837 | #ifdef MBEDTLS_ERROR_C |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2838 | if (ret != 0) { |
Paul Bakker | a3d195c | 2011-11-27 21:07:34 +0000 | [diff] [blame] | 2839 | char error_buf[100]; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2840 | mbedtls_strerror(ret, error_buf, 100); |
| 2841 | mbedtls_printf("Last error was: -0x%X - %s\n\n", (unsigned int) -ret, error_buf); |
Paul Bakker | a3d195c | 2011-11-27 21:07:34 +0000 | [diff] [blame] | 2842 | } |
| 2843 | #endif |
| 2844 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2845 | mbedtls_net_free(&server_fd); |
Manuel Pégourié-Gonnard | e08660e | 2014-08-16 11:28:40 +0200 | [diff] [blame] | 2846 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2847 | mbedtls_ssl_free(&ssl); |
| 2848 | mbedtls_ssl_config_free(&conf); |
| 2849 | mbedtls_ssl_session_free(&saved_session); |
Przemyslaw Stekiel | a226ac9 | 2021-11-10 10:46:11 +0100 | [diff] [blame] | 2850 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2851 | if (session_data != NULL) { |
| 2852 | mbedtls_platform_zeroize(session_data, session_data_len); |
| 2853 | } |
| 2854 | mbedtls_free(session_data); |
Przemyslaw Stekiel | a226ac9 | 2021-11-10 10:46:11 +0100 | [diff] [blame] | 2855 | #if defined(MBEDTLS_SSL_CONTEXT_SERIALIZATION) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2856 | if (context_buf != NULL) { |
| 2857 | mbedtls_platform_zeroize(context_buf, context_buf_len); |
| 2858 | } |
| 2859 | mbedtls_free(context_buf); |
Przemyslaw Stekiel | a226ac9 | 2021-11-10 10:46:11 +0100 | [diff] [blame] | 2860 | #endif |
| 2861 | |
Andrzej Kurek | 7829d8f | 2022-10-18 09:19:07 -0400 | [diff] [blame] | 2862 | #if defined(MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2863 | mbedtls_x509_crt_free(&clicert); |
| 2864 | mbedtls_x509_crt_free(&cacert); |
| 2865 | mbedtls_pk_free(&pkey); |
Manuel Pégourié-Gonnard | cfdf8f4 | 2018-11-08 09:52:25 +0100 | [diff] [blame] | 2866 | #if defined(MBEDTLS_USE_PSA_CRYPTO) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2867 | psa_destroy_key(key_slot); |
Manuel Pégourié-Gonnard | cfdf8f4 | 2018-11-08 09:52:25 +0100 | [diff] [blame] | 2868 | #endif |
Andrzej Kurek | 7829d8f | 2022-10-18 09:19:07 -0400 | [diff] [blame] | 2869 | #endif /* MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED */ |
Gilles Peskine | 34babfc | 2021-02-16 15:44:37 +0100 | [diff] [blame] | 2870 | |
Gilles Peskine | eccd888 | 2020-03-10 12:19:08 +0100 | [diff] [blame] | 2871 | #if defined(MBEDTLS_KEY_EXCHANGE_SOME_PSK_ENABLED) && \ |
Hanno Becker | 3f24ea9 | 2018-11-05 13:25:17 +0000 | [diff] [blame] | 2872 | defined(MBEDTLS_USE_PSA_CRYPTO) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2873 | if (opt.psk_opaque != 0) { |
Hanno Becker | 3f24ea9 | 2018-11-05 13:25:17 +0000 | [diff] [blame] | 2874 | /* 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 Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2878 | 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 Becker | 3f24ea9 | 2018-11-05 13:25:17 +0000 | [diff] [blame] | 2884 | ret = MBEDTLS_ERR_SSL_HW_ACCEL_FAILED; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2885 | } |
Hanno Becker | 3f24ea9 | 2018-11-05 13:25:17 +0000 | [diff] [blame] | 2886 | } |
| 2887 | } |
Gilles Peskine | eccd888 | 2020-03-10 12:19:08 +0100 | [diff] [blame] | 2888 | #endif /* MBEDTLS_KEY_EXCHANGE_SOME_PSK_ENABLED && |
Hanno Becker | 3f24ea9 | 2018-11-05 13:25:17 +0000 | [diff] [blame] | 2889 | MBEDTLS_USE_PSA_CRYPTO */ |
| 2890 | |
Przemyslaw Stekiel | d6e0a58 | 2021-11-03 09:06:09 +0100 | [diff] [blame] | 2891 | #if defined(MBEDTLS_USE_PSA_CRYPTO) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2892 | const char *message = mbedtls_test_helper_is_psa_leaking(); |
| 2893 | if (message) { |
| 2894 | if (ret == 0) { |
Przemyslaw Stekiel | d6e0a58 | 2021-11-03 09:06:09 +0100 | [diff] [blame] | 2895 | ret = 1; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2896 | } |
| 2897 | mbedtls_printf("PSA memory leak detected: %s\n", message); |
Przemyslaw Stekiel | d6e0a58 | 2021-11-03 09:06:09 +0100 | [diff] [blame] | 2898 | } |
| 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 Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2905 | mbedtls_psa_crypto_free(); |
Przemyslaw Stekiel | d6e0a58 | 2021-11-03 09:06:09 +0100 | [diff] [blame] | 2906 | #endif |
| 2907 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2908 | rng_free(&rng); |
Gilles Peskine | b8c4840 | 2021-02-08 20:28:22 +0100 | [diff] [blame] | 2909 | |
Gilles Peskine | 60fe660 | 2021-02-16 18:56:42 +0100 | [diff] [blame] | 2910 | #if defined(MBEDTLS_TEST_HOOKS) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2911 | if (test_hooks_failure_detected()) { |
| 2912 | if (ret == 0) { |
Gilles Peskine | 53dea74 | 2021-02-02 22:55:06 +0100 | [diff] [blame] | 2913 | ret = 1; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2914 | } |
| 2915 | mbedtls_printf("Test hooks detected errors.\n"); |
Gilles Peskine | 53dea74 | 2021-02-02 22:55:06 +0100 | [diff] [blame] | 2916 | } |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2917 | test_hooks_free(); |
Gilles Peskine | 60fe660 | 2021-02-16 18:56:42 +0100 | [diff] [blame] | 2918 | #endif /* MBEDTLS_TEST_HOOKS */ |
Gilles Peskine | 53dea74 | 2021-02-02 22:55:06 +0100 | [diff] [blame] | 2919 | |
Piotr Nowicki | 7d01ef6 | 2019-11-20 15:00:17 +0100 | [diff] [blame] | 2920 | #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 Peskine | 34babfc | 2021-02-16 15:44:37 +0100 | [diff] [blame] | 2925 | #endif /* MBEDTLS_MEMORY_BUFFER_ALLOC_C */ |
Piotr Nowicki | 7d01ef6 | 2019-11-20 15:00:17 +0100 | [diff] [blame] | 2926 | |
gabor-mezei-arm | de47217 | 2020-09-04 14:44:25 +0200 | [diff] [blame] | 2927 | #if defined(_WIN32) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2928 | 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-arm | a9eecf1 | 2020-07-07 11:11:02 +0200 | [diff] [blame] | 2931 | } |
gabor-mezei-arm | de47217 | 2020-09-04 14:44:25 +0200 | [diff] [blame] | 2932 | #endif |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 2933 | |
Paul Bakker | dbd79ca | 2013-07-24 16:28:35 +0200 | [diff] [blame] | 2934 | // Shell can not handle large exit numbers -> 1 for errors |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2935 | if (ret < 0) { |
Paul Bakker | dbd79ca | 2013-07-24 16:28:35 +0200 | [diff] [blame] | 2936 | ret = 1; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2937 | } |
Paul Bakker | dbd79ca | 2013-07-24 16:28:35 +0200 | [diff] [blame] | 2938 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 2939 | if (opt.query_config_mode == DFL_QUERY_CONFIG_MODE) { |
| 2940 | mbedtls_exit(ret); |
| 2941 | } else { |
| 2942 | mbedtls_exit(query_config_ret); |
| 2943 | } |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 2944 | } |
Gilles Peskine | b4df754 | 2021-01-08 21:20:09 +0100 | [diff] [blame] | 2945 | #endif /* !MBEDTLS_SSL_TEST_IMPOSSIBLE && MBEDTLS_SSL_CLI_C */ |