blob: c188900b4cbbb49d5a792ca24483a672265e2091 [file] [log] [blame]
Paul Bakker5121ce52009-01-03 21:22:43 +00001/*
2 * SSL client with certificate authentication
3 *
Manuel Pégourié-Gonnard6fb81872015-07-27 11:11:48 +02004 * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
Manuel Pégourié-Gonnard37ff1402015-09-04 14:21:07 +02005 * SPDX-License-Identifier: Apache-2.0
6 *
7 * Licensed under the Apache License, Version 2.0 (the "License"); you may
8 * not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
10 *
11 * http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
15 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
Paul Bakkerb96f1542010-07-18 20:36:00 +000018 *
Manuel Pégourié-Gonnardfe446432015-03-06 13:17:10 +000019 * This file is part of mbed TLS (https://tls.mbed.org)
Paul Bakker5121ce52009-01-03 21:22:43 +000020 */
21
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020022#if !defined(MBEDTLS_CONFIG_FILE)
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000023#include "mbedtls/config.h"
Manuel Pégourié-Gonnardcef4ad22014-04-29 12:39:06 +020024#else
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020025#include MBEDTLS_CONFIG_FILE
Manuel Pégourié-Gonnardcef4ad22014-04-29 12:39:06 +020026#endif
Paul Bakker5121ce52009-01-03 21:22:43 +000027
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020028#if defined(MBEDTLS_PLATFORM_C)
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000029#include "mbedtls/platform.h"
Rich Evansf90016a2015-01-19 14:26:37 +000030#else
Rich Evans18b78c72015-02-11 14:06:19 +000031#include <stdio.h>
Simon Butcherd3138c32016-04-27 01:26:50 +010032#include <stdlib.h>
33#define mbedtls_time time
34#define mbedtls_time_t time_t
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020035#define mbedtls_printf printf
36#define mbedtls_fprintf fprintf
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020037#define mbedtls_snprintf snprintf
Hanno Beckerd6d100b2019-03-30 06:27:43 +000038#define mbedtls_calloc calloc
39#define mbedtls_free free
Andrzej Kurekc470b6b2019-01-31 08:20:20 -050040#define mbedtls_exit exit
41#define MBEDTLS_EXIT_SUCCESS EXIT_SUCCESS
42#define MBEDTLS_EXIT_FAILURE EXIT_FAILURE
Rich Evansf90016a2015-01-19 14:26:37 +000043#endif
44
Manuel Pégourié-Gonnarde3c41ad2015-05-13 10:04:32 +020045#if !defined(MBEDTLS_ENTROPY_C) || \
46 !defined(MBEDTLS_SSL_TLS_C) || !defined(MBEDTLS_SSL_CLI_C) || \
Manuel Pégourié-Gonnardd2377e72015-05-13 13:58:56 +020047 !defined(MBEDTLS_NET_C) || !defined(MBEDTLS_CTR_DRBG_C)
Manuel Pégourié-Gonnarde3c41ad2015-05-13 10:04:32 +020048int main( void )
49{
50 mbedtls_printf("MBEDTLS_ENTROPY_C and/or "
51 "MBEDTLS_SSL_TLS_C and/or MBEDTLS_SSL_CLI_C and/or "
Manuel Pégourié-Gonnardd2377e72015-05-13 13:58:56 +020052 "MBEDTLS_NET_C and/or MBEDTLS_CTR_DRBG_C and/or not defined.\n");
Manuel Pégourié-Gonnarde3c41ad2015-05-13 10:04:32 +020053 return( 0 );
54}
55#else
56
Piotr Nowicki7d01ef62019-11-20 15:00:17 +010057#if defined(MBEDTLS_MEMORY_BUFFER_ALLOC_C)
58#include "mbedtls/memory_buffer_alloc.h"
59#endif
60
Andres AG788aa4a2016-09-14 14:32:09 +010061#include "mbedtls/net_sockets.h"
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000062#include "mbedtls/ssl.h"
63#include "mbedtls/entropy.h"
64#include "mbedtls/ctr_drbg.h"
65#include "mbedtls/certs.h"
66#include "mbedtls/x509.h"
67#include "mbedtls/error.h"
68#include "mbedtls/debug.h"
Manuel Pégourié-Gonnarde3c41ad2015-05-13 10:04:32 +020069#include "mbedtls/timing.h"
Paul Bakker5121ce52009-01-03 21:22:43 +000070
Hanno Beckerb2b468b2018-11-12 17:46:59 +000071#if defined(MBEDTLS_USE_PSA_CRYPTO)
72#include "psa/crypto.h"
Hanno Becker1d911cd2018-11-15 13:06:09 +000073#include "mbedtls/psa_util.h"
Hanno Beckerb2b468b2018-11-12 17:46:59 +000074#endif
75
Rich Evans18b78c72015-02-11 14:06:19 +000076#include <stdio.h>
77#include <stdlib.h>
78#include <string.h>
Manuel Pégourié-Gonnardc55a5b72014-02-20 22:50:56 +010079
Piotr Nowicki7d01ef62019-11-20 15:00:17 +010080/* Size of memory to be allocated for the heap, when using the library's memory
81 * management and MBEDTLS_MEMORY_BUFFER_ALLOC_C is enabled. */
82#define MEMORY_HEAP_SIZE 120000
83
Hanno Beckere4ad3e82017-09-18 15:05:46 +010084#define MAX_REQUEST_SIZE 20000
85#define MAX_REQUEST_SIZE_STR "20000"
86
Paul Bakker9caf2d22010-02-18 19:37:19 +000087#define DFL_SERVER_NAME "localhost"
Manuel Pégourié-Gonnard0d8780b2014-02-25 11:11:26 +010088#define DFL_SERVER_ADDR NULL
Manuel Pégourié-Gonnardc0d74942015-06-23 12:30:57 +020089#define DFL_SERVER_PORT "4433"
Paul Bakker9caf2d22010-02-18 19:37:19 +000090#define DFL_REQUEST_PAGE "/"
Manuel Pégourié-Gonnarddea29c52014-06-18 13:07:56 +020091#define DFL_REQUEST_SIZE -1
Paul Bakker9caf2d22010-02-18 19:37:19 +000092#define DFL_DEBUG_LEVEL 0
Hanno Beckerbb425db2019-04-03 12:59:58 +010093#define DFL_CONTEXT_CRT_CB 0
Manuel Pégourié-Gonnard55753162014-02-26 13:47:08 +010094#define DFL_NBIO 0
Hanno Becker16970d22017-10-10 15:56:37 +010095#define DFL_EVENT 0
Manuel Pégourié-Gonnard6b651412014-10-01 18:29:03 +020096#define DFL_READ_TIMEOUT 0
Manuel Pégourié-Gonnardf1e0df32014-10-02 14:02:32 +020097#define DFL_MAX_RESEND 0
Paul Bakker5690efc2011-05-26 13:16:06 +000098#define DFL_CA_FILE ""
Paul Bakker8d914582012-06-04 12:46:42 +000099#define DFL_CA_PATH ""
Paul Bakker67968392010-07-18 08:28:20 +0000100#define DFL_CRT_FILE ""
101#define DFL_KEY_FILE ""
Manuel Pégourié-Gonnardef68be42018-11-07 09:42:35 +0100102#define DFL_KEY_OPAQUE 0
Paul Bakkerd4a56ec2013-04-16 18:05:29 +0200103#define DFL_PSK ""
Hanno Becker1d911cd2018-11-15 13:06:09 +0000104#define DFL_PSK_OPAQUE 0
Paul Bakkerd4a56ec2013-04-16 18:05:29 +0200105#define DFL_PSK_IDENTITY "Client_identity"
Manuel Pégourié-Gonnard70905a72015-09-16 11:08:34 +0200106#define DFL_ECJPAKE_PW NULL
Manuel Pégourié-Gonnardb3c83072017-05-16 08:50:24 +0200107#define DFL_EC_MAX_OPS -1
Paul Bakker51936882011-02-20 16:05:58 +0000108#define DFL_FORCE_CIPHER 0
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200109#define DFL_RENEGOTIATION MBEDTLS_SSL_RENEGOTIATION_DISABLED
Manuel Pégourié-Gonnard85d915b2014-11-03 20:10:36 +0100110#define DFL_ALLOW_LEGACY -2
Manuel Pégourié-Gonnard780d6712014-02-20 17:19:59 +0100111#define DFL_RENEGOTIATE 0
Manuel Pégourié-Gonnarda8c0a0d2014-08-15 12:07:38 +0200112#define DFL_EXCHANGES 1
Manuel Pégourié-Gonnard8c8be1e2015-03-31 14:21:11 +0200113#define DFL_MIN_VERSION -1
Paul Bakker1d29fb52012-09-28 13:28:45 +0000114#define DFL_MAX_VERSION -1
Manuel Pégourié-Gonnardd42b7c82015-03-20 19:44:04 +0000115#define DFL_ARC4 -1
Gilles Peskinebc70a182017-05-09 15:59:24 +0200116#define DFL_SHA1 -1
Manuel Pégourié-Gonnardfa44f202015-03-27 17:52:25 +0100117#define DFL_AUTH_MODE -1
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200118#define DFL_MFL_CODE MBEDTLS_SSL_MAX_FRAG_LEN_NONE
Manuel Pégourié-Gonnard265fe992015-01-09 12:43:35 +0100119#define DFL_TRUNC_HMAC -1
Manuel Pégourié-Gonnardc82ee352015-01-07 16:35:25 +0100120#define DFL_RECSPLIT -1
Manuel Pégourié-Gonnard90966822015-06-11 17:02:29 +0200121#define DFL_DHMLEN -1
Manuel Pégourié-Gonnardaaa1eab2013-07-30 13:43:43 +0200122#define DFL_RECONNECT 0
Manuel Pégourié-Gonnardc55a5b72014-02-20 22:50:56 +0100123#define DFL_RECO_DELAY 0
Manuel Pégourié-Gonnarda7c37652019-05-20 12:46:26 +0200124#define DFL_RECO_MODE 1
Hanno Becker90cb3592019-04-09 17:24:19 +0100125#define DFL_CID_ENABLED 0
126#define DFL_CID_VALUE ""
Hanno Beckerb42ec0d2019-05-03 17:30:59 +0100127#define DFL_CID_ENABLED_RENEGO -1
128#define DFL_CID_VALUE_RENEGO NULL
Manuel Pégourié-Gonnarddbd23072015-09-04 10:20:17 +0200129#define DFL_RECONNECT_HARD 0
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200130#define DFL_TICKETS MBEDTLS_SSL_SESSION_TICKETS_ENABLED
Manuel Pégourié-Gonnard1bd22812014-04-05 14:34:07 +0200131#define DFL_ALPN_STRING NULL
Hanno Beckere6706e62017-05-15 16:05:15 +0100132#define DFL_CURVES NULL
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200133#define DFL_TRANSPORT MBEDTLS_SSL_TRANSPORT_STREAM
Manuel Pégourié-Gonnardd823bd02014-10-01 14:40:56 +0200134#define DFL_HS_TO_MIN 0
135#define DFL_HS_TO_MAX 0
Manuel Pégourié-Gonnardb747c6c2018-08-12 13:28:53 +0200136#define DFL_DTLS_MTU -1
Hanno Becker4d615912018-08-14 13:33:30 +0100137#define DFL_DGRAM_PACKING 1
Manuel Pégourié-Gonnard1cbd39d2014-10-20 13:34:59 +0200138#define DFL_FALLBACK -1
Manuel Pégourié-Gonnard367381f2014-10-20 18:40:56 +0200139#define DFL_EXTENDED_MS -1
Manuel Pégourié-Gonnard699cafa2014-10-27 13:57:03 +0100140#define DFL_ETM -1
Jarno Lamsa9831c8a2019-05-29 13:33:32 +0300141#define DFL_SERIALIZE 0
142#define DFL_EXTENDED_MS_ENFORCE -1
Jarno Lamsa1b4a2ba2019-03-27 17:55:27 +0200143#define DFL_CA_CALLBACK 0
Ron Eldorb7fd64c2019-05-12 11:03:32 +0300144#define DFL_EAP_TLS 0
Philippe Antoineaa4d1522019-06-06 21:24:31 +0200145#define DFL_REPRODUCIBLE 0
Hanno Becker48f3a3d2019-08-29 06:31:22 +0100146#define DFL_NSS_KEYLOG 0
147#define DFL_NSS_KEYLOG_FILE NULL
Paul Bakker0e6975b2009-02-10 22:19:10 +0000148
Paul Bakker93c32b22014-04-25 13:40:05 +0200149#define GET_REQUEST "GET %s HTTP/1.0\r\nExtra-header: "
150#define GET_REQUEST_END "\r\n\r\n"
Paul Bakker5121ce52009-01-03 21:22:43 +0000151
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200152#if defined(MBEDTLS_X509_CRT_PARSE_C)
Janos Follathae13beb2019-04-05 14:06:58 +0100153#define USAGE_CONTEXT_CRT_CB \
Hanno Beckerbb425db2019-04-03 12:59:58 +0100154 " context_crt_cb=%%d This determines whether the CRT verification callback is bound\n" \
155 " to the SSL configuration of the SSL context.\n" \
156 " Possible values:\n"\
157 " - 0 (default): Use CRT callback bound to configuration\n" \
158 " - 1: Use CRT callback bound to SSL context\n"
159#else
Janos Follathae13beb2019-04-05 14:06:58 +0100160#define USAGE_CONTEXT_CRT_CB ""
Hanno Beckerbb425db2019-04-03 12:59:58 +0100161#endif /* MBEDTLS_X509_CRT_PARSE_C */
162#if defined(MBEDTLS_X509_CRT_PARSE_C)
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200163#if defined(MBEDTLS_FS_IO)
Paul Bakker5690efc2011-05-26 13:16:06 +0000164#define USAGE_IO \
Paul Bakker1f9d02d2012-11-20 10:30:55 +0100165 " ca_file=%%s The single file containing the top-level CA(s) you fully trust\n" \
166 " default: \"\" (pre-loaded)\n" \
Hanno Becker422d1992019-05-01 11:16:28 +0100167 " use \"none\" to skip loading any top-level CAs.\n" \
Paul Bakker1f9d02d2012-11-20 10:30:55 +0100168 " ca_path=%%s The path containing the top-level CA(s) you fully trust\n" \
169 " default: \"\" (pre-loaded) (overrides ca_file)\n" \
Hanno Becker422d1992019-05-01 11:16:28 +0100170 " use \"none\" to skip loading any top-level CAs.\n" \
Paul Bakker1f9d02d2012-11-20 10:30:55 +0100171 " crt_file=%%s Your own cert and chain (in bottom to top order, top may be omitted)\n" \
172 " default: \"\" (pre-loaded)\n" \
Paul Bakker5690efc2011-05-26 13:16:06 +0000173 " key_file=%%s default: \"\" (pre-loaded)\n"
174#else
175#define USAGE_IO \
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200176 " No file operations available (MBEDTLS_FS_IO not defined)\n"
177#endif /* MBEDTLS_FS_IO */
Manuel Pégourié-Gonnardef68be42018-11-07 09:42:35 +0100178#else /* MBEDTLS_X509_CRT_PARSE_C */
Paul Bakkered27a042013-04-18 22:46:23 +0200179#define USAGE_IO ""
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200180#endif /* MBEDTLS_X509_CRT_PARSE_C */
Manuel Pégourié-Gonnardef68be42018-11-07 09:42:35 +0100181#if defined(MBEDTLS_USE_PSA_CRYPTO) && defined(MBEDTLS_X509_CRT_PARSE_C)
182#define USAGE_KEY_OPAQUE \
183 " key_opaque=%%d Handle your private key as if it were opaque\n" \
184 " default: 0 (disabled)\n"
185#else
186#define USAGE_KEY_OPAQUE ""
187#endif
Paul Bakkered27a042013-04-18 22:46:23 +0200188
Hanno Beckera0e20d02019-05-15 14:03:01 +0100189#if defined(MBEDTLS_SSL_DTLS_CONNECTION_ID)
Hanno Becker90cb3592019-04-09 17:24:19 +0100190#define USAGE_CID \
191 " cid=%%d Disable (0) or enable (1) the use of the DTLS Connection ID extension.\n" \
192 " default: 0 (disabled)\n" \
Hanno Beckerb42ec0d2019-05-03 17:30:59 +0100193 " cid_renego=%%d Disable (0) or enable (1) the use of the DTLS Connection ID extension during renegotiation.\n" \
Hanno Becker32798222019-05-23 17:01:06 +0100194 " default: same as 'cid' parameter\n" \
Hanno Becker90cb3592019-04-09 17:24:19 +0100195 " cid_val=%%s The CID to use for incoming messages (in hex, without 0x).\n" \
Hanno Beckerb42ec0d2019-05-03 17:30:59 +0100196 " default: \"\"\n" \
197 " cid_val_renego=%%s The CID to use for incoming messages (in hex, without 0x) after renegotiation.\n" \
Hanno Becker32798222019-05-23 17:01:06 +0100198 " default: same as 'cid_val' parameter\n"
Hanno Beckera0e20d02019-05-15 14:03:01 +0100199#else /* MBEDTLS_SSL_DTLS_CONNECTION_ID */
Hanno Becker90cb3592019-04-09 17:24:19 +0100200#define USAGE_CID ""
Hanno Beckera0e20d02019-05-15 14:03:01 +0100201#endif /* MBEDTLS_SSL_DTLS_CONNECTION_ID */
Hanno Becker90cb3592019-04-09 17:24:19 +0100202
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200203#if defined(MBEDTLS_KEY_EXCHANGE__SOME__PSK_ENABLED)
Hanno Beckere86964c2018-10-23 11:37:50 +0100204#define USAGE_PSK_RAW \
Piotr Nowicki9926eaf2019-11-20 14:54:36 +0100205 " psk=%%s default: \"\" (disabled)\n" \
206 " The PSK values are in hex, without 0x.\n" \
Paul Bakkered27a042013-04-18 22:46:23 +0200207 " psk_identity=%%s default: \"Client_identity\"\n"
Hanno Beckere86964c2018-10-23 11:37:50 +0100208#if defined(MBEDTLS_USE_PSA_CRYPTO)
209#define USAGE_PSK_SLOT \
Hanno Becker1d911cd2018-11-15 13:06:09 +0000210 " psk_opaque=%%d default: 0 (don't use opaque static PSK)\n" \
211 " Enable this to store the PSK configured through command line\n" \
212 " parameter `psk` in a PSA-based key slot.\n" \
Hanno Beckere86964c2018-10-23 11:37:50 +0100213 " Note: Currently only supported in conjunction with\n" \
214 " the use of min_version to force TLS 1.2 and force_ciphersuite \n" \
215 " to force a particular PSK-only ciphersuite.\n" \
216 " Note: This is to test integration of PSA-based opaque PSKs with\n" \
217 " Mbed TLS only. Production systems are likely to configure Mbed TLS\n" \
218 " with prepopulated key slots instead of importing raw key material.\n"
219#else
220#define USAGE_PSK_SLOT ""
221#endif /* MBEDTLS_USE_PSA_CRYPTO */
Hanno Becker1bac87c2019-03-29 12:02:26 +0000222#define USAGE_PSK USAGE_PSK_RAW USAGE_PSK_SLOT
223#else
224#define USAGE_PSK ""
225#endif /* MBEDTLS_KEY_EXCHANGE__SOME__PSK_ENABLED */
226
Jarno Lamsa1b4a2ba2019-03-27 17:55:27 +0200227#if defined(MBEDTLS_X509_TRUSTED_CERTIFICATE_CALLBACK)
228#define USAGE_CA_CALLBACK \
229 " ca_callback=%%d default: 0 (disabled)\n" \
230 " Enable this to use the trusted certificate callback function\n"
231#else
232#define USAGE_CA_CALLBACK ""
233#endif /* MBEDTLS_X509_TRUSTED_CERTIFICATE_CALLBACK */
Paul Bakker5690efc2011-05-26 13:16:06 +0000234
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200235#if defined(MBEDTLS_SSL_SESSION_TICKETS)
Paul Bakkera503a632013-08-14 13:48:06 +0200236#define USAGE_TICKETS \
237 " tickets=%%d default: 1 (enabled)\n"
238#else
239#define USAGE_TICKETS ""
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200240#endif /* MBEDTLS_SSL_SESSION_TICKETS */
Paul Bakkera503a632013-08-14 13:48:06 +0200241
Ron Eldorb7fd64c2019-05-12 11:03:32 +0300242#if defined(MBEDTLS_SSL_EXPORT_KEYS)
243#define USAGE_EAP_TLS \
244 " eap_tls=%%d default: 0 (disabled)\n"
Hanno Becker48f3a3d2019-08-29 06:31:22 +0100245#define USAGE_NSS_KEYLOG \
Hanno Beckerbc5308c2019-09-09 11:38:51 +0100246 " nss_keylog=%%d default: 0 (disabled)\n" \
247 " This cannot be used with eap_tls=1\n"
Hanno Becker48f3a3d2019-08-29 06:31:22 +0100248#define USAGE_NSS_KEYLOG_FILE \
249 " nss_keylog_file=%%s\n"
Ron Eldorb7fd64c2019-05-12 11:03:32 +0300250#else
251#define USAGE_EAP_TLS ""
Hanno Becker48f3a3d2019-08-29 06:31:22 +0100252#define USAGE_NSS_KEYLOG ""
253#define USAGE_NSS_KEYLOG_FILE ""
Ron Eldorb7fd64c2019-05-12 11:03:32 +0300254#endif /* MBEDTLS_SSL_EXPORT_KEYS */
255
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200256#if defined(MBEDTLS_SSL_TRUNCATED_HMAC)
Paul Bakker1f2bc622013-08-15 13:45:55 +0200257#define USAGE_TRUNC_HMAC \
Manuel Pégourié-Gonnard265fe992015-01-09 12:43:35 +0100258 " trunc_hmac=%%d default: library default\n"
Paul Bakker1f2bc622013-08-15 13:45:55 +0200259#else
260#define USAGE_TRUNC_HMAC ""
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200261#endif /* MBEDTLS_SSL_TRUNCATED_HMAC */
Paul Bakker1f2bc622013-08-15 13:45:55 +0200262
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200263#if defined(MBEDTLS_SSL_MAX_FRAGMENT_LENGTH)
Paul Bakker05decb22013-08-15 13:33:48 +0200264#define USAGE_MAX_FRAG_LEN \
265 " max_frag_len=%%d default: 16384 (tls default)\n" \
266 " options: 512, 1024, 2048, 4096\n"
267#else
268#define USAGE_MAX_FRAG_LEN ""
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200269#endif /* MBEDTLS_SSL_MAX_FRAGMENT_LENGTH */
Paul Bakker05decb22013-08-15 13:33:48 +0200270
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200271#if defined(MBEDTLS_SSL_CBC_RECORD_SPLITTING)
Manuel Pégourié-Gonnardc82ee352015-01-07 16:35:25 +0100272#define USAGE_RECSPLIT \
Manuel Pégourié-Gonnardbf27eaa2015-06-11 17:02:10 +0200273 " recsplit=0/1 default: (library default: on)\n"
Manuel Pégourié-Gonnardc82ee352015-01-07 16:35:25 +0100274#else
275#define USAGE_RECSPLIT
276#endif
277
Manuel Pégourié-Gonnard90966822015-06-11 17:02:29 +0200278#if defined(MBEDTLS_DHM_C)
279#define USAGE_DHMLEN \
280 " dhmlen=%%d default: (library default: 1024 bits)\n"
281#else
282#define USAGE_DHMLEN
283#endif
284
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200285#if defined(MBEDTLS_SSL_ALPN)
Manuel Pégourié-Gonnard1bd22812014-04-05 14:34:07 +0200286#define USAGE_ALPN \
287 " alpn=%%s default: \"\" (disabled)\n" \
288 " example: spdy/1,http/1.1\n"
289#else
290#define USAGE_ALPN ""
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200291#endif /* MBEDTLS_SSL_ALPN */
Manuel Pégourié-Gonnard1bd22812014-04-05 14:34:07 +0200292
Hanno Beckere6706e62017-05-15 16:05:15 +0100293#if defined(MBEDTLS_ECP_C)
294#define USAGE_CURVES \
295 " curves=a,b,c,d default: \"default\" (library default)\n" \
296 " example: \"secp521r1,brainpoolP512r1\"\n" \
297 " - use \"none\" for empty list\n" \
298 " - see mbedtls_ecp_curve_list()\n" \
299 " for acceptable curve names\n"
300#else
301#define USAGE_CURVES ""
302#endif
303
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200304#if defined(MBEDTLS_SSL_PROTO_DTLS)
Manuel Pégourié-Gonnardd823bd02014-10-01 14:40:56 +0200305#define USAGE_DTLS \
306 " dtls=%%d default: 0 (TLS)\n" \
307 " hs_timeout=%%d-%%d default: (library default: 1000-60000)\n" \
Manuel Pégourié-Gonnardb747c6c2018-08-12 13:28:53 +0200308 " range of DTLS handshake timeouts in millisecs\n" \
Hanno Becker4d615912018-08-14 13:33:30 +0100309 " mtu=%%d default: (library default: unlimited)\n" \
310 " dgram_packing=%%d default: 1 (allowed)\n" \
311 " allow or forbid packing of multiple\n" \
312 " records within a single datgram.\n"
Manuel Pégourié-Gonnardd823bd02014-10-01 14:40:56 +0200313#else
314#define USAGE_DTLS ""
315#endif
316
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200317#if defined(MBEDTLS_SSL_FALLBACK_SCSV)
Manuel Pégourié-Gonnard1cbd39d2014-10-20 13:34:59 +0200318#define USAGE_FALLBACK \
319 " fallback=0/1 default: (library default: off)\n"
320#else
321#define USAGE_FALLBACK ""
322#endif
323
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200324#if defined(MBEDTLS_SSL_EXTENDED_MASTER_SECRET)
Manuel Pégourié-Gonnard367381f2014-10-20 18:40:56 +0200325#define USAGE_EMS \
326 " extended_ms=0/1 default: (library default: on)\n"
327#else
328#define USAGE_EMS ""
329#endif
330
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200331#if defined(MBEDTLS_SSL_ENCRYPT_THEN_MAC)
Manuel Pégourié-Gonnard699cafa2014-10-27 13:57:03 +0100332#define USAGE_ETM \
333 " etm=0/1 default: (library default: on)\n"
334#else
335#define USAGE_ETM ""
336#endif
337
Philippe Antoine738153a2019-06-18 20:16:43 +0200338#define USAGE_REPRODUCIBLE \
339 " reproducible=0/1 default: 0 (disabled)\n"
340
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200341#if defined(MBEDTLS_SSL_RENEGOTIATION)
Manuel Pégourié-Gonnard615e6772014-11-03 08:23:14 +0100342#define USAGE_RENEGO \
343 " renegotiation=%%d default: 0 (disabled)\n" \
344 " renegotiate=%%d default: 0 (disabled)\n"
345#else
346#define USAGE_RENEGO ""
347#endif
348
Manuel Pégourié-Gonnard70905a72015-09-16 11:08:34 +0200349#if defined(MBEDTLS_KEY_EXCHANGE_ECJPAKE_ENABLED)
350#define USAGE_ECJPAKE \
351 " ecjpake_pw=%%s default: none (disabled)\n"
352#else
353#define USAGE_ECJPAKE ""
354#endif
355
Manuel Pégourié-Gonnardb3c83072017-05-16 08:50:24 +0200356#if defined(MBEDTLS_ECP_RESTARTABLE)
357#define USAGE_ECRESTART \
358 " ec_max_ops=%%s default: library default (restart disabled)\n"
359#else
360#define USAGE_ECRESTART ""
361#endif
362
Jarno Lamsabbc7b412019-06-04 11:06:31 +0300363#if defined(MBEDTLS_SSL_CONTEXT_SERIALIZATION)
364#define USAGE_SERIALIZATION \
Jarno Lamsa304d61c2019-06-06 10:40:52 +0300365 " serialize=%%d default: 0 (do not serialize/deserialize)\n" \
Jarno Lamsa1a7f7932019-06-07 08:39:24 +0300366 " options: 1 (serialize)\n" \
367 " 2 (serialize with re-initialization)\n"
Jarno Lamsabbc7b412019-06-04 11:06:31 +0300368#else
369#define USAGE_SERIALIZATION ""
370#endif
371
Paul Bakker9caf2d22010-02-18 19:37:19 +0000372#define USAGE \
Paul Bakker67968392010-07-18 08:28:20 +0000373 "\n usage: ssl_client2 param=<>...\n" \
374 "\n acceptable parameters:\n" \
375 " server_name=%%s default: localhost\n" \
Manuel Pégourié-Gonnard0d8780b2014-02-25 11:11:26 +0100376 " server_addr=%%s default: given by name\n" \
Paul Bakker67968392010-07-18 08:28:20 +0000377 " server_port=%%d default: 4433\n" \
Paul Bakker67968392010-07-18 08:28:20 +0000378 " request_page=%%s default: \".\"\n" \
Andres Amaya Garciace6fbac2018-07-04 09:29:34 +0100379 " request_size=%%d default: about 34 (basic request)\n" \
380 " (minimum: 0, max: " MAX_REQUEST_SIZE_STR ")\n" \
381 " If 0, in the first exchange only an empty\n" \
382 " application data message is sent followed by\n" \
383 " a second non-empty message before attempting\n" \
384 " to read a response from the server\n" \
Hanno Becker16970d22017-10-10 15:56:37 +0100385 " debug_level=%%d default: 0 (disabled)\n" \
386 " nbio=%%d default: 0 (blocking I/O)\n" \
387 " options: 1 (non-blocking), 2 (added delays)\n" \
388 " event=%%d default: 0 (loop)\n" \
389 " options: 1 (level-triggered, implies nbio=1),\n" \
390 " read_timeout=%%d default: 0 ms (no timeout)\n" \
Manuel Pégourié-Gonnardf1e0df32014-10-02 14:02:32 +0200391 " max_resend=%%d default: 0 (no resend on timeout)\n" \
Manuel Pégourié-Gonnard2fc243d2014-02-19 18:22:59 +0100392 "\n" \
Manuel Pégourié-Gonnardd823bd02014-10-01 14:40:56 +0200393 USAGE_DTLS \
Hanno Becker90cb3592019-04-09 17:24:19 +0100394 USAGE_CID \
Manuel Pégourié-Gonnardd823bd02014-10-01 14:40:56 +0200395 "\n" \
Hanno Becker16970d22017-10-10 15:56:37 +0100396 " auth_mode=%%s default: (library default: none)\n" \
Manuel Pégourié-Gonnard2fc243d2014-02-19 18:22:59 +0100397 " options: none, optional, required\n" \
398 USAGE_IO \
Manuel Pégourié-Gonnardef68be42018-11-07 09:42:35 +0100399 USAGE_KEY_OPAQUE \
Jarno Lamsa1b4a2ba2019-03-27 17:55:27 +0200400 USAGE_CA_CALLBACK \
Manuel Pégourié-Gonnard2fc243d2014-02-19 18:22:59 +0100401 "\n" \
402 USAGE_PSK \
Manuel Pégourié-Gonnard70905a72015-09-16 11:08:34 +0200403 USAGE_ECJPAKE \
Manuel Pégourié-Gonnardb3c83072017-05-16 08:50:24 +0200404 USAGE_ECRESTART \
Manuel Pégourié-Gonnard2fc243d2014-02-19 18:22:59 +0100405 "\n" \
Hanno Becker16970d22017-10-10 15:56:37 +0100406 " allow_legacy=%%d default: (library default: no)\n" \
Manuel Pégourié-Gonnard615e6772014-11-03 08:23:14 +0100407 USAGE_RENEGO \
Manuel Pégourié-Gonnarda8c0a0d2014-08-15 12:07:38 +0200408 " exchanges=%%d default: 1\n" \
Manuel Pégourié-Gonnarda7c37652019-05-20 12:46:26 +0200409 " reconnect=%%d number of reconnections using session resumption\n" \
410 " default: 0 (disabled)\n" \
Manuel Pégourié-Gonnarde3c41ad2015-05-13 10:04:32 +0200411 " reco_delay=%%d default: 0 seconds\n" \
Manuel Pégourié-Gonnard686adb42019-06-03 09:55:16 +0200412 " reco_mode=%%d 0: copy session, 1: serialize session\n" \
Manuel Pégourié-Gonnarda7c37652019-05-20 12:46:26 +0200413 " default: 1\n" \
Manuel Pégourié-Gonnarddbd23072015-09-04 10:20:17 +0200414 " reconnect_hard=%%d default: 0 (disabled)\n" \
Paul Bakkera503a632013-08-14 13:48:06 +0200415 USAGE_TICKETS \
Ron Eldorb7fd64c2019-05-12 11:03:32 +0300416 USAGE_EAP_TLS \
Manuel Pégourié-Gonnard2fc243d2014-02-19 18:22:59 +0100417 USAGE_MAX_FRAG_LEN \
418 USAGE_TRUNC_HMAC \
Janos Follathae13beb2019-04-05 14:06:58 +0100419 USAGE_CONTEXT_CRT_CB \
Manuel Pégourié-Gonnard1bd22812014-04-05 14:34:07 +0200420 USAGE_ALPN \
Manuel Pégourié-Gonnard1cbd39d2014-10-20 13:34:59 +0200421 USAGE_FALLBACK \
Manuel Pégourié-Gonnard367381f2014-10-20 18:40:56 +0200422 USAGE_EMS \
Manuel Pégourié-Gonnard699cafa2014-10-27 13:57:03 +0100423 USAGE_ETM \
Philippe Antoine738153a2019-06-18 20:16:43 +0200424 USAGE_REPRODUCIBLE \
Hanno Beckere6706e62017-05-15 16:05:15 +0100425 USAGE_CURVES \
Manuel Pégourié-Gonnardc82ee352015-01-07 16:35:25 +0100426 USAGE_RECSPLIT \
Manuel Pégourié-Gonnard90966822015-06-11 17:02:29 +0200427 USAGE_DHMLEN \
Paul Bakker1d29fb52012-09-28 13:28:45 +0000428 "\n" \
Manuel Pégourié-Gonnardfa44f202015-03-27 17:52:25 +0100429 " arc4=%%d default: (library default: 0)\n" \
Gilles Peskinebc70a182017-05-09 15:59:24 +0200430 " allow_sha1=%%d default: 0\n" \
Manuel Pégourié-Gonnard8c8be1e2015-03-31 14:21:11 +0200431 " min_version=%%s default: (library default: tls1)\n" \
432 " max_version=%%s default: (library default: tls1_2)\n" \
Paul Bakker1d29fb52012-09-28 13:28:45 +0000433 " force_version=%%s default: \"\" (none)\n" \
Manuel Pégourié-Gonnard83218f12014-02-12 11:11:12 +0100434 " options: ssl3, tls1, tls1_1, tls1_2, dtls1, dtls1_2\n" \
Paul Bakker1d29fb52012-09-28 13:28:45 +0000435 "\n" \
Paul Bakker51936882011-02-20 16:05:58 +0000436 " force_ciphersuite=<name> default: all enabled\n"\
Andres Amaya Garciabc818842018-10-16 21:08:38 +0100437 " query_config=<name> return 0 if the specified\n" \
438 " configuration macro is defined and 1\n" \
439 " otherwise. The expansion of the macro\n" \
440 " is printed if it is defined\n" \
Jarno Lamsabbc7b412019-06-04 11:06:31 +0300441 USAGE_SERIALIZATION \
Paul Bakker51936882011-02-20 16:05:58 +0000442 " acceptable ciphersuite names:\n"
Paul Bakker9caf2d22010-02-18 19:37:19 +0000443
Hanno Becker8651a432017-06-09 16:13:22 +0100444#define ALPN_LIST_SIZE 10
445#define CURVE_LIST_SIZE 20
446
Andrzej Kurekc470b6b2019-01-31 08:20:20 -0500447
Rich Evans85b05ec2015-02-12 11:37:29 +0000448/*
449 * global options
450 */
451struct options
452{
453 const char *server_name; /* hostname of the server (client only) */
454 const char *server_addr; /* address of the server (client only) */
Manuel Pégourié-Gonnardc0d74942015-06-23 12:30:57 +0200455 const char *server_port; /* port on which the ssl service runs */
Rich Evans85b05ec2015-02-12 11:37:29 +0000456 int debug_level; /* level of debugging */
457 int nbio; /* should I/O be blocking? */
Hanno Becker16970d22017-10-10 15:56:37 +0100458 int event; /* loop or event-driven IO? level or edge triggered? */
459 uint32_t read_timeout; /* timeout on mbedtls_ssl_read() in milliseconds */
Manuel Pégourié-Gonnardd901d172015-02-16 18:37:53 +0000460 int max_resend; /* DTLS times to resend on read timeout */
Rich Evans85b05ec2015-02-12 11:37:29 +0000461 const char *request_page; /* page on server to request */
462 int request_size; /* pad request with header to requested size */
463 const char *ca_file; /* the file with the CA certificate(s) */
464 const char *ca_path; /* the path with the CA certificate(s) reside */
465 const char *crt_file; /* the file with the client certificate */
466 const char *key_file; /* the file with the client key */
Manuel Pégourié-Gonnardef68be42018-11-07 09:42:35 +0100467 int key_opaque; /* handle private key as if it were opaque */
Hanno Beckere86964c2018-10-23 11:37:50 +0100468#if defined(MBEDTLS_USE_PSA_CRYPTO)
Hanno Becker1d911cd2018-11-15 13:06:09 +0000469 int psk_opaque;
Hanno Beckere86964c2018-10-23 11:37:50 +0100470#endif
Jarno Lamsa1b4a2ba2019-03-27 17:55:27 +0200471#if defined(MBEDTLS_X509_TRUSTED_CERTIFICATE_CALLBACK)
Hanno Beckercbb59032019-03-28 14:14:22 +0000472 int ca_callback; /* Use callback for trusted certificate list */
Jarno Lamsa1b4a2ba2019-03-27 17:55:27 +0200473#endif
Rich Evans85b05ec2015-02-12 11:37:29 +0000474 const char *psk; /* the pre-shared key */
475 const char *psk_identity; /* the pre-shared key identity */
Manuel Pégourié-Gonnard70905a72015-09-16 11:08:34 +0200476 const char *ecjpake_pw; /* the EC J-PAKE password */
Manuel Pégourié-Gonnardb3c83072017-05-16 08:50:24 +0200477 int ec_max_ops; /* EC consecutive operations limit */
Rich Evans85b05ec2015-02-12 11:37:29 +0000478 int force_ciphersuite[2]; /* protocol/ciphersuite to use, or all */
479 int renegotiation; /* enable / disable renegotiation */
480 int allow_legacy; /* allow legacy renegotiation */
481 int renegotiate; /* attempt renegotiation? */
482 int renego_delay; /* delay before enforcing renegotiation */
483 int exchanges; /* number of data exchanges */
484 int min_version; /* minimum protocol version accepted */
485 int max_version; /* maximum protocol version accepted */
486 int arc4; /* flag for arc4 suites support */
Gilles Peskinebc70a182017-05-09 15:59:24 +0200487 int allow_sha1; /* flag for SHA-1 support */
Rich Evans85b05ec2015-02-12 11:37:29 +0000488 int auth_mode; /* verify mode for connection */
489 unsigned char mfl_code; /* code for maximum fragment length */
490 int trunc_hmac; /* negotiate truncated hmac or not */
491 int recsplit; /* enable record splitting? */
Manuel Pégourié-Gonnard90966822015-06-11 17:02:29 +0200492 int dhmlen; /* minimum DHM params len in bits */
Rich Evans85b05ec2015-02-12 11:37:29 +0000493 int reconnect; /* attempt to resume session */
494 int reco_delay; /* delay in seconds before resuming session */
Manuel Pégourié-Gonnarda7c37652019-05-20 12:46:26 +0200495 int reco_mode; /* how to keep the session around */
Manuel Pégourié-Gonnarddbd23072015-09-04 10:20:17 +0200496 int reconnect_hard; /* unexpectedly reconnect from the same port */
Rich Evans85b05ec2015-02-12 11:37:29 +0000497 int tickets; /* enable / disable session tickets */
Hanno Beckere6706e62017-05-15 16:05:15 +0100498 const char *curves; /* list of supported elliptic curves */
Rich Evans85b05ec2015-02-12 11:37:29 +0000499 const char *alpn_string; /* ALPN supported protocols */
Manuel Pégourié-Gonnardd901d172015-02-16 18:37:53 +0000500 int transport; /* TLS or DTLS? */
501 uint32_t hs_to_min; /* Initial value of DTLS handshake timer */
502 uint32_t hs_to_max; /* Max value of DTLS handshake timer */
Manuel Pégourié-Gonnardb747c6c2018-08-12 13:28:53 +0200503 int dtls_mtu; /* UDP Maximum tranport unit for DTLS */
Rich Evans85b05ec2015-02-12 11:37:29 +0000504 int fallback; /* is this a fallback connection? */
Hanno Becker4d615912018-08-14 13:33:30 +0100505 int dgram_packing; /* allow/forbid datagram packing */
Rich Evans85b05ec2015-02-12 11:37:29 +0000506 int extended_ms; /* negotiate extended master secret? */
507 int etm; /* negotiate encrypt then mac? */
Hanno Beckerbb425db2019-04-03 12:59:58 +0100508 int context_crt_cb; /* use context-specific CRT verify callback */
Ron Eldorb7fd64c2019-05-12 11:03:32 +0300509 int eap_tls; /* derive EAP-TLS keying material? */
Hanno Becker48f3a3d2019-08-29 06:31:22 +0100510 int nss_keylog; /* export NSS key log material */
511 const char *nss_keylog_file; /* NSS key log file */
Hanno Becker90cb3592019-04-09 17:24:19 +0100512 int cid_enabled; /* whether to use the CID extension or not */
Hanno Beckerb42ec0d2019-05-03 17:30:59 +0100513 int cid_enabled_renego; /* whether to use the CID extension or not
514 * during renegotiation */
Hanno Becker90cb3592019-04-09 17:24:19 +0100515 const char *cid_val; /* the CID to use for incoming messages */
Jarno Lamsa9831c8a2019-05-29 13:33:32 +0300516 int serialize; /* serialize/deserialize connection */
Hanno Beckerb42ec0d2019-05-03 17:30:59 +0100517 const char *cid_val_renego; /* the CID to use for incoming messages
518 * after renegotiation */
Philippe Antoine154feb22019-06-11 17:50:23 +0200519 int reproducible; /* make communication reproducible */
Rich Evans85b05ec2015-02-12 11:37:29 +0000520} opt;
521
Andres Amaya Garciabc818842018-10-16 21:08:38 +0100522int query_config( const char *config );
523
Ron Eldorb7fd64c2019-05-12 11:03:32 +0300524#if defined(MBEDTLS_SSL_EXPORT_KEYS)
525typedef struct eap_tls_keys
526{
527 unsigned char master_secret[48];
528 unsigned char randbytes[64];
Ron Eldor51d3ab52019-05-12 14:54:30 +0300529 mbedtls_tls_prf_types tls_prf_type;
Ron Eldorb7fd64c2019-05-12 11:03:32 +0300530} eap_tls_keys;
531
532static int eap_tls_key_derivation ( void *p_expkey,
533 const unsigned char *ms,
534 const unsigned char *kb,
535 size_t maclen,
536 size_t keylen,
537 size_t ivlen,
Jaeden Amero63d813d2019-09-12 10:09:57 +0100538 const unsigned char client_random[32],
539 const unsigned char server_random[32],
Ron Eldor51d3ab52019-05-12 14:54:30 +0300540 mbedtls_tls_prf_types tls_prf_type )
Ron Eldorb7fd64c2019-05-12 11:03:32 +0300541{
542 eap_tls_keys *keys = (eap_tls_keys *)p_expkey;
543
544 ( ( void ) kb );
Ron Eldorb7fd64c2019-05-12 11:03:32 +0300545 memcpy( keys->master_secret, ms, sizeof( keys->master_secret ) );
546 memcpy( keys->randbytes, client_random, 32 );
547 memcpy( keys->randbytes + 32, server_random, 32 );
Ron Eldor51d3ab52019-05-12 14:54:30 +0300548 keys->tls_prf_type = tls_prf_type;
Ron Eldorb7fd64c2019-05-12 11:03:32 +0300549
Ron Eldorf75e2522019-05-14 20:38:49 +0300550 if( opt.debug_level > 2 )
551 {
Ron Eldor801faf02019-05-15 17:45:24 +0300552 mbedtls_printf("exported maclen is %u\n", (unsigned)maclen);
553 mbedtls_printf("exported keylen is %u\n", (unsigned)keylen);
554 mbedtls_printf("exported ivlen is %u\n", (unsigned)ivlen);
Ron Eldorf75e2522019-05-14 20:38:49 +0300555 }
Ron Eldorb7fd64c2019-05-12 11:03:32 +0300556 return( 0 );
557}
Hanno Becker48f3a3d2019-08-29 06:31:22 +0100558
559static int nss_keylog_export( void *p_expkey,
560 const unsigned char *ms,
561 const unsigned char *kb,
562 size_t maclen,
563 size_t keylen,
564 size_t ivlen,
Jaeden Amero63d813d2019-09-12 10:09:57 +0100565 const unsigned char client_random[32],
566 const unsigned char server_random[32],
Hanno Becker48f3a3d2019-08-29 06:31:22 +0100567 mbedtls_tls_prf_types tls_prf_type )
568{
569 char nss_keylog_line[ 200 ];
570 size_t const client_random_len = 32;
571 size_t const master_secret_len = 48;
572 size_t len = 0;
573 size_t j;
574 int ret = 0;
575
576 ((void) p_expkey);
577 ((void) kb);
578 ((void) maclen);
579 ((void) keylen);
580 ((void) ivlen);
581 ((void) server_random);
582 ((void) tls_prf_type);
583
584 len += sprintf( nss_keylog_line + len,
585 "%s", "CLIENT_RANDOM " );
586
587 for( j = 0; j < client_random_len; j++ )
588 {
589 len += sprintf( nss_keylog_line + len,
590 "%02x", client_random[j] );
591 }
592
593 len += sprintf( nss_keylog_line + len, " " );
594
595 for( j = 0; j < master_secret_len; j++ )
596 {
597 len += sprintf( nss_keylog_line + len,
598 "%02x", ms[j] );
599 }
600
601 len += sprintf( nss_keylog_line + len, "\n" );
602 nss_keylog_line[ len ] = '\0';
603
604 mbedtls_printf( "\n" );
605 mbedtls_printf( "---------------- NSS KEYLOG -----------------\n" );
606 mbedtls_printf( "%s", nss_keylog_line );
607 mbedtls_printf( "---------------------------------------------\n" );
608
609 if( opt.nss_keylog_file != NULL )
610 {
611 FILE *f;
612
613 if( ( f = fopen( opt.nss_keylog_file, "a" ) ) == NULL )
614 {
615 ret = -1;
616 goto exit;
617 }
618
619 if( fwrite( nss_keylog_line, 1, len, f ) != len )
620 {
621 ret = -1;
Gilles Peskine2ac4d862020-01-21 17:39:52 +0100622 fclose( f );
Hanno Becker48f3a3d2019-08-29 06:31:22 +0100623 goto exit;
624 }
625
626 fclose( f );
627 }
628
629exit:
630 mbedtls_platform_zeroize( nss_keylog_line,
631 sizeof( nss_keylog_line ) );
632 return( ret );
633}
Ron Eldorb7fd64c2019-05-12 11:03:32 +0300634#endif
635
Manuel Pégourié-Gonnard61ee3512015-06-23 17:35:03 +0200636static void my_debug( void *ctx, int level,
637 const char *file, int line,
638 const char *str )
Rich Evans85b05ec2015-02-12 11:37:29 +0000639{
Manuel Pégourié-Gonnard052f2882015-07-01 11:50:23 +0200640 const char *p, *basename;
Rich Evans85b05ec2015-02-12 11:37:29 +0000641
Manuel Pégourié-Gonnard052f2882015-07-01 11:50:23 +0200642 /* Extract basename from file */
643 for( p = basename = file; *p != '\0'; p++ )
644 if( *p == '/' || *p == '\\' )
645 basename = p + 1;
646
Hanno Becker4cb1f4d2017-10-10 15:59:57 +0100647 mbedtls_fprintf( (FILE *) ctx, "%s:%04d: |%d| %s",
648 basename, line, level, str );
Rich Evans85b05ec2015-02-12 11:37:29 +0000649 fflush( (FILE *) ctx );
650}
651
Philippe Antoineaa4d1522019-06-06 21:24:31 +0200652
653mbedtls_time_t dummy_constant_time( mbedtls_time_t* time )
654{
655 (void) time;
656 return 0x5af2a056;
657}
658
Philippe Antoineaa4d1522019-06-06 21:24:31 +0200659int dummy_entropy( void *data, unsigned char *output, size_t len )
660{
661 size_t i;
Philippe Antoine12e85de2019-06-11 16:07:53 +0200662 int ret;
Philippe Antoined2235f22019-06-11 16:29:28 +0200663 (void) data;
Philippe Antoineaa4d1522019-06-06 21:24:31 +0200664
Philippe Antoine3ca50852019-06-07 22:31:59 +0200665 ret = mbedtls_entropy_func( data, output, len );
Philippe Antoine986b6f22019-06-07 15:04:32 +0200666 for ( i = 0; i < len; i++ )
667 {
Philippe Antoineaa4d1522019-06-06 21:24:31 +0200668 //replace result with pseudo random
669 output[i] = (unsigned char) rand();
670 }
Philippe Antoine3ca50852019-06-07 22:31:59 +0200671 return( ret );
Philippe Antoineaa4d1522019-06-06 21:24:31 +0200672}
673
Jarno Lamsa1b4a2ba2019-03-27 17:55:27 +0200674#if defined(MBEDTLS_X509_TRUSTED_CERTIFICATE_CALLBACK)
Hanno Beckercbb59032019-03-28 14:14:22 +0000675int ca_callback( void *data, mbedtls_x509_crt const *child,
Janos Follathd7ecbd62019-04-05 14:52:17 +0100676 mbedtls_x509_crt **candidates )
Jarno Lamsa1b4a2ba2019-03-27 17:55:27 +0200677{
Hanno Beckercbb59032019-03-28 14:14:22 +0000678 int ret = 0;
Jarno Lamsa1b4a2ba2019-03-27 17:55:27 +0200679 mbedtls_x509_crt *ca = (mbedtls_x509_crt *) data;
Hanno Beckercbb59032019-03-28 14:14:22 +0000680 mbedtls_x509_crt *first;
681
682 /* This is a test-only implementation of the CA callback
683 * which always returns the entire list of trusted certificates.
684 * Production implementations managing a large number of CAs
685 * should use an efficient presentation and lookup for the
686 * set of trusted certificates (such as a hashtable) and only
687 * return those trusted certificates which satisfy basic
688 * parental checks, such as the matching of child `Issuer`
Jarno Lamsaf7a7f9e2019-04-01 15:11:54 +0300689 * and parent `Subject` field or matching key identifiers. */
Hanno Beckercbb59032019-03-28 14:14:22 +0000690 ((void) child);
691
692 first = mbedtls_calloc( 1, sizeof( mbedtls_x509_crt ) );
693 if( first == NULL )
694 {
695 ret = -1;
696 goto exit;
697 }
698 mbedtls_x509_crt_init( first );
699
700 if( mbedtls_x509_crt_parse_der( first, ca->raw.p, ca->raw.len ) != 0 )
701 {
702 ret = -1;
703 goto exit;
704 }
705
Jarno Lamsa1b4a2ba2019-03-27 17:55:27 +0200706 while( ca->next != NULL )
707 {
708 ca = ca->next;
Hanno Beckercbb59032019-03-28 14:14:22 +0000709 if( mbedtls_x509_crt_parse_der( first, ca->raw.p, ca->raw.len ) != 0 )
710 {
711 ret = -1;
712 goto exit;
713 }
Jarno Lamsa1b4a2ba2019-03-27 17:55:27 +0200714 }
Hanno Beckercbb59032019-03-28 14:14:22 +0000715
716exit:
717
718 if( ret != 0 )
719 {
720 mbedtls_x509_crt_free( first );
721 mbedtls_free( first );
722 first = NULL;
723 }
724
Jarno Lamsa1b4a2ba2019-03-27 17:55:27 +0200725 *candidates = first;
Hanno Beckercbb59032019-03-28 14:14:22 +0000726 return( ret );
Jarno Lamsa1b4a2ba2019-03-27 17:55:27 +0200727}
728#endif /* MBEDTLS_X509_TRUSTED_CERTIFICATE_CALLBACK */
729
Rich Evans85b05ec2015-02-12 11:37:29 +0000730/*
731 * Test recv/send functions that make sure each try returns
732 * WANT_READ/WANT_WRITE at least once before sucesseding
733 */
Hanno Becker8b1af2f2019-07-03 17:02:43 +0100734
735static int delayed_recv( void *ctx, unsigned char *buf, size_t len )
Rich Evans85b05ec2015-02-12 11:37:29 +0000736{
737 static int first_try = 1;
738 int ret;
739
740 if( first_try )
741 {
742 first_try = 0;
Manuel Pégourié-Gonnard88369942015-05-06 16:19:31 +0100743 return( MBEDTLS_ERR_SSL_WANT_READ );
Rich Evans85b05ec2015-02-12 11:37:29 +0000744 }
745
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200746 ret = mbedtls_net_recv( ctx, buf, len );
Manuel Pégourié-Gonnard88369942015-05-06 16:19:31 +0100747 if( ret != MBEDTLS_ERR_SSL_WANT_READ )
Rich Evans85b05ec2015-02-12 11:37:29 +0000748 first_try = 1; /* Next call will be a new operation */
749 return( ret );
750}
751
Hanno Becker8b1af2f2019-07-03 17:02:43 +0100752static int delayed_send( void *ctx, const unsigned char *buf, size_t len )
Rich Evans85b05ec2015-02-12 11:37:29 +0000753{
754 static int first_try = 1;
755 int ret;
756
757 if( first_try )
758 {
759 first_try = 0;
Manuel Pégourié-Gonnard88369942015-05-06 16:19:31 +0100760 return( MBEDTLS_ERR_SSL_WANT_WRITE );
Rich Evans85b05ec2015-02-12 11:37:29 +0000761 }
762
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200763 ret = mbedtls_net_send( ctx, buf, len );
Manuel Pégourié-Gonnard88369942015-05-06 16:19:31 +0100764 if( ret != MBEDTLS_ERR_SSL_WANT_WRITE )
Rich Evans85b05ec2015-02-12 11:37:29 +0000765 first_try = 1; /* Next call will be a new operation */
766 return( ret );
767}
768
Hanno Becker8b1af2f2019-07-03 17:02:43 +0100769typedef struct
770{
771 mbedtls_ssl_context *ssl;
772 mbedtls_net_context *net;
773} io_ctx_t;
774
Hanno Becker4b6649e2019-07-03 17:14:41 +0100775#if defined(MBEDTLS_SSL_RECORD_CHECKING)
776static int ssl_check_record( mbedtls_ssl_context const *ssl,
777 unsigned char const *buf, size_t len )
778{
779 int ret;
780 unsigned char *tmp_buf;
781
782 tmp_buf = mbedtls_calloc( 1, len );
783 if( tmp_buf == NULL )
784 return( MBEDTLS_ERR_SSL_ALLOC_FAILED );
785 memcpy( tmp_buf, buf, len );
786
787 ret = mbedtls_ssl_check_record( ssl, tmp_buf, len );
788 if( ret != MBEDTLS_ERR_SSL_FEATURE_UNAVAILABLE )
789 {
790 int ret_repeated;
791
792 /* Test-only: Make sure that mbedtls_ssl_check_record()
793 * doesn't alter state. */
794 memcpy( tmp_buf, buf, len ); /* Restore buffer */
795 ret_repeated = mbedtls_ssl_check_record( ssl, tmp_buf, len );
796 if( ret != ret_repeated )
797 {
Hanno Becker91f83272019-07-24 13:59:07 +0100798 mbedtls_printf( "mbedtls_ssl_check_record() returned inconsistent results.\n" );
799 return( -1 );
Hanno Becker4b6649e2019-07-03 17:14:41 +0100800 }
801
802 switch( ret )
803 {
804 case 0:
805 break;
806
807 case MBEDTLS_ERR_SSL_INVALID_RECORD:
808 if( opt.debug_level > 1 )
809 mbedtls_printf( "mbedtls_ssl_check_record() detected invalid record.\n" );
810 break;
811
812 case MBEDTLS_ERR_SSL_INVALID_MAC:
813 if( opt.debug_level > 1 )
814 mbedtls_printf( "mbedtls_ssl_check_record() detected unauthentic record.\n" );
815 break;
816
817 case MBEDTLS_ERR_SSL_UNEXPECTED_RECORD:
818 if( opt.debug_level > 1 )
819 mbedtls_printf( "mbedtls_ssl_check_record() detected unexpected record.\n" );
820 break;
821
822 default:
823 mbedtls_printf( "mbedtls_ssl_check_record() failed fatally with -%#04x.\n", -ret );
824 return( -1 );
825 }
826
827 /* Regardless of the outcome, forward the record to the stack. */
828 }
829
Hanno Becker4b6649e2019-07-03 17:14:41 +0100830 mbedtls_free( tmp_buf );
831
832 return( 0 );
833}
834#endif /* MBEDTLS_SSL_RECORD_CHECKING */
835
Hanno Becker8b1af2f2019-07-03 17:02:43 +0100836static int recv_cb( void *ctx, unsigned char *buf, size_t len )
837{
838 io_ctx_t *io_ctx = (io_ctx_t*) ctx;
839 size_t recv_len;
840 int ret;
841
842 if( opt.nbio == 2 )
843 ret = delayed_recv( io_ctx->net, buf, len );
844 else
845 ret = mbedtls_net_recv( io_ctx->net, buf, len );
846 if( ret < 0 )
847 return( ret );
848 recv_len = (size_t) ret;
849
850 if( opt.transport == MBEDTLS_SSL_TRANSPORT_DATAGRAM )
851 {
852 /* Here's the place to do any datagram/record checking
853 * in between receiving the packet from the underlying
854 * transport and passing it on to the TLS stack. */
Hanno Becker4b6649e2019-07-03 17:14:41 +0100855#if defined(MBEDTLS_SSL_RECORD_CHECKING)
856 if( ssl_check_record( io_ctx->ssl, buf, recv_len ) != 0 )
857 return( -1 );
858#endif /* MBEDTLS_SSL_RECORD_CHECKING */
Hanno Becker8b1af2f2019-07-03 17:02:43 +0100859 }
860
861 return( (int) recv_len );
862}
863
864static int recv_timeout_cb( void *ctx, unsigned char *buf, size_t len,
865 uint32_t timeout )
866{
867 io_ctx_t *io_ctx = (io_ctx_t*) ctx;
868 int ret;
869 size_t recv_len;
870
871 ret = mbedtls_net_recv_timeout( io_ctx->net, buf, len, timeout );
872 if( ret < 0 )
873 return( ret );
874 recv_len = (size_t) ret;
875
876 if( opt.transport == MBEDTLS_SSL_TRANSPORT_DATAGRAM )
877 {
878 /* Here's the place to do any datagram/record checking
879 * in between receiving the packet from the underlying
880 * transport and passing it on to the TLS stack. */
Hanno Becker4b6649e2019-07-03 17:14:41 +0100881#if defined(MBEDTLS_SSL_RECORD_CHECKING)
882 if( ssl_check_record( io_ctx->ssl, buf, recv_len ) != 0 )
883 return( -1 );
884#endif /* MBEDTLS_SSL_RECORD_CHECKING */
Hanno Becker8b1af2f2019-07-03 17:02:43 +0100885 }
886
887 return( (int) recv_len );
888}
889
890static int send_cb( void *ctx, unsigned char const *buf, size_t len )
891{
892 io_ctx_t *io_ctx = (io_ctx_t*) ctx;
893
894 if( opt.nbio == 2 )
895 return( delayed_send( io_ctx->net, buf, len ) );
896
897 return( mbedtls_net_send( io_ctx->net, buf, len ) );
898}
899
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200900#if defined(MBEDTLS_X509_CRT_PARSE_C)
Hanno Beckera1051b42019-02-26 11:38:29 +0000901static unsigned char peer_crt_info[1024];
Hanno Beckera9766c2c2019-02-25 17:43:18 +0000902
Rich Evans85b05ec2015-02-12 11:37:29 +0000903/*
904 * Enabled if debug_level > 1 in code below
905 */
Hanno Becker4cb1f4d2017-10-10 15:59:57 +0100906static int my_verify( void *data, mbedtls_x509_crt *crt,
907 int depth, uint32_t *flags )
Rich Evans85b05ec2015-02-12 11:37:29 +0000908{
909 char buf[1024];
910 ((void) data);
911
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200912 mbedtls_x509_crt_info( buf, sizeof( buf ) - 1, "", crt );
Hanno Beckera9766c2c2019-02-25 17:43:18 +0000913 if( depth == 0 )
914 memcpy( peer_crt_info, buf, sizeof( buf ) );
915
916 if( opt.debug_level == 0 )
917 return( 0 );
918
919 mbedtls_printf( "\nVerify requested for (Depth %d):\n", depth );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200920 mbedtls_printf( "%s", buf );
Rich Evans85b05ec2015-02-12 11:37:29 +0000921
Rich Evans85b05ec2015-02-12 11:37:29 +0000922 if ( ( *flags ) == 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200923 mbedtls_printf( " This certificate has no flags\n" );
Manuel Pégourié-Gonnard89addc42015-04-20 10:56:18 +0100924 else
925 {
926 mbedtls_x509_crt_verify_info( buf, sizeof( buf ), " ! ", *flags );
927 mbedtls_printf( "%s\n", buf );
928 }
Rich Evans85b05ec2015-02-12 11:37:29 +0000929
930 return( 0 );
931}
Gilles Peskinecd3c8452017-05-09 14:57:45 +0200932
933static int ssl_sig_hashes_for_test[] = {
934#if defined(MBEDTLS_SHA512_C)
935 MBEDTLS_MD_SHA512,
936 MBEDTLS_MD_SHA384,
937#endif
938#if defined(MBEDTLS_SHA256_C)
939 MBEDTLS_MD_SHA256,
940 MBEDTLS_MD_SHA224,
941#endif
942#if defined(MBEDTLS_SHA1_C)
943 /* Allow SHA-1 as we use it extensively in tests. */
944 MBEDTLS_MD_SHA1,
945#endif
946 MBEDTLS_MD_NONE
947};
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200948#endif /* MBEDTLS_X509_CRT_PARSE_C */
Rich Evans85b05ec2015-02-12 11:37:29 +0000949
Hanno Becker16970d22017-10-10 15:56:37 +0100950/*
951 * Wait for an event from the underlying transport or the timer
952 * (Used in event-driven IO mode).
953 */
954#if !defined(MBEDTLS_TIMING_C)
Hanno Beckeradfa64f2018-03-15 11:35:07 +0000955int idle( mbedtls_net_context *fd,
Hanno Becker9b2b66e2018-03-15 12:21:15 +0000956 int idle_reason )
Hanno Becker16970d22017-10-10 15:56:37 +0100957#else
Hanno Beckeradfa64f2018-03-15 11:35:07 +0000958int idle( mbedtls_net_context *fd,
Hanno Becker9b2b66e2018-03-15 12:21:15 +0000959 mbedtls_timing_delay_context *timer,
960 int idle_reason )
Hanno Becker16970d22017-10-10 15:56:37 +0100961#endif
Hanno Becker9b2b66e2018-03-15 12:21:15 +0000962{
Hanno Becker16970d22017-10-10 15:56:37 +0100963
Hanno Beckeradfa64f2018-03-15 11:35:07 +0000964 int ret;
Hanno Becker16970d22017-10-10 15:56:37 +0100965 int poll_type = 0;
966
967 if( idle_reason == MBEDTLS_ERR_SSL_WANT_WRITE )
968 poll_type = MBEDTLS_NET_POLL_WRITE;
969 else if( idle_reason == MBEDTLS_ERR_SSL_WANT_READ )
970 poll_type = MBEDTLS_NET_POLL_READ;
971#if !defined(MBEDTLS_TIMING_C)
972 else
Hanno Beckeref527962018-03-15 15:49:24 +0000973 return( 0 );
Hanno Becker16970d22017-10-10 15:56:37 +0100974#endif
975
976 while( 1 )
977 {
Hanno Becker197a91c2017-10-31 10:58:53 +0000978 /* Check if timer has expired */
Hanno Becker16970d22017-10-10 15:56:37 +0100979#if defined(MBEDTLS_TIMING_C)
Hanno Becker197a91c2017-10-31 10:58:53 +0000980 if( timer != NULL &&
981 mbedtls_timing_get_delay( timer ) == 2 )
Hanno Becker16970d22017-10-10 15:56:37 +0100982 {
Hanno Becker16970d22017-10-10 15:56:37 +0100983 break;
984 }
Hanno Becker197a91c2017-10-31 10:58:53 +0000985#endif /* MBEDTLS_TIMING_C */
Hanno Becker16970d22017-10-10 15:56:37 +0100986
Hanno Becker197a91c2017-10-31 10:58:53 +0000987 /* Check if underlying transport became available */
Hanno Beckeradfa64f2018-03-15 11:35:07 +0000988 if( poll_type != 0 )
Hanno Becker16970d22017-10-10 15:56:37 +0100989 {
Hanno Beckeradfa64f2018-03-15 11:35:07 +0000990 ret = mbedtls_net_poll( fd, poll_type, 0 );
991 if( ret < 0 )
992 return( ret );
993 if( ret == poll_type )
994 break;
Hanno Becker16970d22017-10-10 15:56:37 +0100995 }
996 }
Hanno Beckeradfa64f2018-03-15 11:35:07 +0000997
998 return( 0 );
Hanno Becker16970d22017-10-10 15:56:37 +0100999}
1000
Hanno Becker1f583ee2019-04-09 17:12:56 +01001001/* Unhexify `hex` into `dst`. `dst` must have
1002 * size at least `strlen( hex ) / 2`. */
Hanno Becker90cb3592019-04-09 17:24:19 +01001003int unhexify( char const *hex, unsigned char *dst )
Hanno Becker1f583ee2019-04-09 17:12:56 +01001004{
1005 unsigned char c;
1006 size_t j;
1007 size_t len = strlen( hex );
1008
1009 if( len % 2 != 0 )
1010 return( -1 );
1011
1012 for( j = 0; j < len; j += 2 )
1013 {
1014 c = hex[j];
1015 if( c >= '0' && c <= '9' )
1016 c -= '0';
1017 else if( c >= 'a' && c <= 'f' )
1018 c -= 'a' - 10;
1019 else if( c >= 'A' && c <= 'F' )
1020 c -= 'A' - 10;
1021 else
1022 return( -1 );
1023 dst[ j / 2 ] = c << 4;
1024
1025 c = hex[j + 1];
1026 if( c >= '0' && c <= '9' )
1027 c -= '0';
1028 else if( c >= 'a' && c <= 'f' )
1029 c -= 'a' - 10;
1030 else if( c >= 'A' && c <= 'F' )
1031 c -= 'A' - 10;
1032 else
1033 return( -1 );
1034 dst[ j / 2 ] |= c;
1035 }
1036
1037 return( 0 );
1038}
1039
Hanno Beckera0e20d02019-05-15 14:03:01 +01001040#if defined(MBEDTLS_SSL_DTLS_CONNECTION_ID)
Hanno Beckerb42ec0d2019-05-03 17:30:59 +01001041int report_cid_usage( mbedtls_ssl_context *ssl,
1042 const char *additional_description )
1043{
1044 int ret;
1045 unsigned char peer_cid[ MBEDTLS_SSL_CID_OUT_LEN_MAX ];
1046 size_t peer_cid_len;
1047 int cid_negotiated;
1048
1049 if( opt.transport != MBEDTLS_SSL_TRANSPORT_DATAGRAM )
1050 return( 0 );
1051
Hanno Becker6ae14c02019-05-22 16:59:25 +01001052 /* Check if the use of a CID has been negotiated,
1053 * but don't ask for the CID value and length.
1054 *
1055 * Note: Here and below, we're demonstrating the various ways
1056 * in which mbedtls_ssl_get_peer_cid() can be called,
1057 * depending on whether or not the length/value of the
1058 * peer's CID is needed.
1059 *
1060 * An actual application, however, should use
1061 * just one call to mbedtls_ssl_get_peer_cid(). */
Hanno Beckerb42ec0d2019-05-03 17:30:59 +01001062 ret = mbedtls_ssl_get_peer_cid( ssl, &cid_negotiated,
Hanno Becker6ae14c02019-05-22 16:59:25 +01001063 NULL, NULL );
Hanno Beckerb42ec0d2019-05-03 17:30:59 +01001064 if( ret != 0 )
1065 {
1066 mbedtls_printf( " failed\n ! mbedtls_ssl_get_peer_cid returned -0x%x\n\n",
1067 -ret );
1068 return( ret );
1069 }
1070
1071 if( cid_negotiated == MBEDTLS_SSL_CID_DISABLED )
1072 {
1073 if( opt.cid_enabled == MBEDTLS_SSL_CID_ENABLED )
1074 {
1075 mbedtls_printf( "(%s) Use of Connection ID was rejected by the server.\n",
1076 additional_description );
1077 }
1078 }
1079 else
1080 {
1081 size_t idx=0;
1082 mbedtls_printf( "(%s) Use of Connection ID has been negotiated.\n",
1083 additional_description );
Hanno Becker6ae14c02019-05-22 16:59:25 +01001084
1085 /* Ask for just the length of the peer's CID. */
1086 ret = mbedtls_ssl_get_peer_cid( ssl, &cid_negotiated,
1087 NULL, &peer_cid_len );
1088 if( ret != 0 )
1089 {
1090 mbedtls_printf( " failed\n ! mbedtls_ssl_get_peer_cid returned -0x%x\n\n",
1091 -ret );
1092 return( ret );
1093 }
1094
1095 /* Ask for just length + value of the peer's CID. */
1096 ret = mbedtls_ssl_get_peer_cid( ssl, &cid_negotiated,
1097 peer_cid, &peer_cid_len );
1098 if( ret != 0 )
1099 {
1100 mbedtls_printf( " failed\n ! mbedtls_ssl_get_peer_cid returned -0x%x\n\n",
1101 -ret );
1102 return( ret );
1103 }
Hanno Beckerb42ec0d2019-05-03 17:30:59 +01001104 mbedtls_printf( "(%s) Peer CID (length %u Bytes): ",
1105 additional_description,
1106 (unsigned) peer_cid_len );
1107 while( idx < peer_cid_len )
1108 {
1109 mbedtls_printf( "%02x ", peer_cid[ idx ] );
1110 idx++;
1111 }
1112 mbedtls_printf( "\n" );
1113 }
1114
1115 return( 0 );
1116}
Hanno Beckera0e20d02019-05-15 14:03:01 +01001117#endif /* MBEDTLS_SSL_DTLS_CONNECTION_ID */
Hanno Beckerb42ec0d2019-05-03 17:30:59 +01001118
Paul Bakker9caf2d22010-02-18 19:37:19 +00001119int main( int argc, char *argv[] )
Paul Bakker5121ce52009-01-03 21:22:43 +00001120{
Manuel Pégourié-Gonnard5db64322015-06-30 15:40:39 +02001121 int ret = 0, len, tail_len, i, written, frags, retry_left;
1122 mbedtls_net_context server_fd;
Hanno Becker8b1af2f2019-07-03 17:02:43 +01001123 io_ctx_t io_ctx;
Hanno Beckere4ad3e82017-09-18 15:05:46 +01001124
1125 unsigned char buf[MAX_REQUEST_SIZE + 1];
1126
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001127#if defined(MBEDTLS_KEY_EXCHANGE__SOME__PSK_ENABLED)
1128 unsigned char psk[MBEDTLS_PSK_MAX_LEN];
Paul Bakkerd4a56ec2013-04-16 18:05:29 +02001129 size_t psk_len = 0;
Paul Bakkered27a042013-04-18 22:46:23 +02001130#endif
Hanno Becker90cb3592019-04-09 17:24:19 +01001131
Hanno Beckera0e20d02019-05-15 14:03:01 +01001132#if defined(MBEDTLS_SSL_DTLS_CONNECTION_ID)
Hanno Becker90cb3592019-04-09 17:24:19 +01001133 unsigned char cid[MBEDTLS_SSL_CID_IN_LEN_MAX];
Hanno Beckerb42ec0d2019-05-03 17:30:59 +01001134 unsigned char cid_renego[MBEDTLS_SSL_CID_IN_LEN_MAX];
Hanno Becker90cb3592019-04-09 17:24:19 +01001135 size_t cid_len = 0;
Hanno Beckerb42ec0d2019-05-03 17:30:59 +01001136 size_t cid_renego_len = 0;
Hanno Becker90cb3592019-04-09 17:24:19 +01001137#endif
1138
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001139#if defined(MBEDTLS_SSL_ALPN)
Hanno Becker8651a432017-06-09 16:13:22 +01001140 const char *alpn_list[ALPN_LIST_SIZE];
Manuel Pégourié-Gonnard1bd22812014-04-05 14:34:07 +02001141#endif
Piotr Nowicki7d01ef62019-11-20 15:00:17 +01001142
1143#if defined(MBEDTLS_MEMORY_BUFFER_ALLOC_C)
1144 unsigned char alloc_buf[MEMORY_HEAP_SIZE];
1145#endif
1146
Hanno Beckere6706e62017-05-15 16:05:15 +01001147#if defined(MBEDTLS_ECP_C)
Hanno Becker8651a432017-06-09 16:13:22 +01001148 mbedtls_ecp_group_id curve_list[CURVE_LIST_SIZE];
Hanno Beckere6706e62017-05-15 16:05:15 +01001149 const mbedtls_ecp_curve_info *curve_cur;
1150#endif
1151
Paul Bakkeref3f8c72013-06-24 13:01:08 +02001152 const char *pers = "ssl_client2";
Paul Bakker508ad5a2011-12-04 17:09:26 +00001153
Hanno Beckere86964c2018-10-23 11:37:50 +01001154#if defined(MBEDTLS_USE_PSA_CRYPTO)
Andrzej Kurek2349c4d2019-01-08 09:36:01 -05001155 psa_key_handle_t slot = 0;
Hanno Beckere86964c2018-10-23 11:37:50 +01001156 psa_algorithm_t alg = 0;
Janos Follathbe4efc22019-08-08 11:38:18 +01001157 psa_key_attributes_t key_attributes;
Hanno Beckere86964c2018-10-23 11:37:50 +01001158 psa_status_t status;
1159#endif
1160
Gilles Peskineef86ab22017-05-05 18:59:02 +02001161#if defined(MBEDTLS_X509_CRT_PARSE_C)
1162 mbedtls_x509_crt_profile crt_profile_for_test = mbedtls_x509_crt_profile_default;
1163#endif
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001164 mbedtls_entropy_context entropy;
1165 mbedtls_ctr_drbg_context ctr_drbg;
1166 mbedtls_ssl_context ssl;
Manuel Pégourié-Gonnarddef0bbe2015-05-04 14:56:36 +02001167 mbedtls_ssl_config conf;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001168 mbedtls_ssl_session saved_session;
Manuel Pégourié-Gonnard26f982f2019-05-21 11:01:32 +02001169 unsigned char *session_data = NULL;
1170 size_t session_data_len = 0;
Manuel Pégourié-Gonnardd2377e72015-05-13 13:58:56 +02001171#if defined(MBEDTLS_TIMING_C)
Manuel Pégourié-Gonnarde3c41ad2015-05-13 10:04:32 +02001172 mbedtls_timing_delay_context timer;
Manuel Pégourié-Gonnardd2377e72015-05-13 13:58:56 +02001173#endif
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001174#if defined(MBEDTLS_X509_CRT_PARSE_C)
Manuel Pégourié-Gonnarddb1cc762015-05-12 11:27:25 +02001175 uint32_t flags;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001176 mbedtls_x509_crt cacert;
1177 mbedtls_x509_crt clicert;
1178 mbedtls_pk_context pkey;
Manuel Pégourié-Gonnardcfdf8f42018-11-08 09:52:25 +01001179#if defined(MBEDTLS_USE_PSA_CRYPTO)
Andrzej Kurek2349c4d2019-01-08 09:36:01 -05001180 psa_key_handle_t key_slot = 0; /* invalid key slot */
Manuel Pégourié-Gonnardcfdf8f42018-11-08 09:52:25 +01001181#endif
Paul Bakkered27a042013-04-18 22:46:23 +02001182#endif
Paul Bakker9caf2d22010-02-18 19:37:19 +00001183 char *p, *q;
Paul Bakker51936882011-02-20 16:05:58 +00001184 const int *list;
Manuel Pégourié-Gonnard3309a672019-07-15 10:31:11 +02001185#if defined(MBEDTLS_SSL_CONTEXT_SERIALIZATION)
1186 unsigned char *context_buf = NULL;
1187 size_t context_buf_len;
1188#endif
Ron Eldorb7fd64c2019-05-12 11:03:32 +03001189#if defined(MBEDTLS_SSL_EXPORT_KEYS)
1190 unsigned char eap_tls_keymaterial[16];
1191 unsigned char eap_tls_iv[8];
1192 const char* eap_tls_label = "client EAP encryption";
1193 eap_tls_keys eap_tls_keying;
1194#endif
Paul Bakker9caf2d22010-02-18 19:37:19 +00001195
Piotr Nowicki7d01ef62019-11-20 15:00:17 +01001196#if defined(MBEDTLS_MEMORY_BUFFER_ALLOC_C)
1197 mbedtls_memory_buffer_alloc_init( alloc_buf, sizeof(alloc_buf) );
1198#endif
1199
Paul Bakker1a207ec2011-02-06 13:22:40 +00001200 /*
1201 * Make sure memory references are valid.
1202 */
Manuel Pégourié-Gonnard5db64322015-06-30 15:40:39 +02001203 mbedtls_net_init( &server_fd );
Manuel Pégourié-Gonnard41d479e2015-04-29 00:48:22 +02001204 mbedtls_ssl_init( &ssl );
Manuel Pégourié-Gonnarddef0bbe2015-05-04 14:56:36 +02001205 mbedtls_ssl_config_init( &conf );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001206 memset( &saved_session, 0, sizeof( mbedtls_ssl_session ) );
Manuel Pégourié-Gonnardec160c02015-04-28 22:52:30 +02001207 mbedtls_ctr_drbg_init( &ctr_drbg );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001208#if defined(MBEDTLS_X509_CRT_PARSE_C)
1209 mbedtls_x509_crt_init( &cacert );
1210 mbedtls_x509_crt_init( &clicert );
1211 mbedtls_pk_init( &pkey );
Paul Bakkered27a042013-04-18 22:46:23 +02001212#endif
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001213#if defined(MBEDTLS_SSL_ALPN)
Paul Bakker525f8752014-05-01 10:58:57 +02001214 memset( (void * ) alpn_list, 0, sizeof( alpn_list ) );
Manuel Pégourié-Gonnard1bd22812014-04-05 14:34:07 +02001215#endif
Paul Bakker1a207ec2011-02-06 13:22:40 +00001216
Hanno Beckerb2b468b2018-11-12 17:46:59 +00001217#if defined(MBEDTLS_USE_PSA_CRYPTO)
1218 status = psa_crypto_init();
1219 if( status != PSA_SUCCESS )
1220 {
1221 mbedtls_fprintf( stderr, "Failed to initialize PSA Crypto implementation: %d\n",
1222 (int) status );
1223 ret = MBEDTLS_ERR_SSL_HW_ACCEL_FAILED;
1224 goto exit;
1225 }
1226#endif
1227
Paul Bakker9caf2d22010-02-18 19:37:19 +00001228 if( argc == 0 )
1229 {
1230 usage:
Paul Bakkerfab5c822012-02-06 16:45:10 +00001231 if( ret == 0 )
1232 ret = 1;
1233
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001234 mbedtls_printf( USAGE );
Paul Bakker51936882011-02-20 16:05:58 +00001235
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001236 list = mbedtls_ssl_list_ciphersuites();
Paul Bakker51936882011-02-20 16:05:58 +00001237 while( *list )
1238 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001239 mbedtls_printf(" %-42s", mbedtls_ssl_get_ciphersuite_name( *list ) );
Paul Bakkered27a042013-04-18 22:46:23 +02001240 list++;
1241 if( !*list )
1242 break;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001243 mbedtls_printf(" %s\n", mbedtls_ssl_get_ciphersuite_name( *list ) );
Paul Bakker51936882011-02-20 16:05:58 +00001244 list++;
1245 }
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001246 mbedtls_printf("\n");
Paul Bakker9caf2d22010-02-18 19:37:19 +00001247 goto exit;
1248 }
1249
1250 opt.server_name = DFL_SERVER_NAME;
Manuel Pégourié-Gonnard0d8780b2014-02-25 11:11:26 +01001251 opt.server_addr = DFL_SERVER_ADDR;
Paul Bakker9caf2d22010-02-18 19:37:19 +00001252 opt.server_port = DFL_SERVER_PORT;
1253 opt.debug_level = DFL_DEBUG_LEVEL;
Hanno Becker90cb3592019-04-09 17:24:19 +01001254 opt.cid_enabled = DFL_CID_ENABLED;
1255 opt.cid_val = DFL_CID_VALUE;
Hanno Beckerb42ec0d2019-05-03 17:30:59 +01001256 opt.cid_enabled_renego = DFL_CID_ENABLED_RENEGO;
1257 opt.cid_val_renego = DFL_CID_VALUE_RENEGO;
Manuel Pégourié-Gonnard55753162014-02-26 13:47:08 +01001258 opt.nbio = DFL_NBIO;
Hanno Becker16970d22017-10-10 15:56:37 +01001259 opt.event = DFL_EVENT;
Hanno Beckerbb425db2019-04-03 12:59:58 +01001260 opt.context_crt_cb = DFL_CONTEXT_CRT_CB;
Manuel Pégourié-Gonnard6b651412014-10-01 18:29:03 +02001261 opt.read_timeout = DFL_READ_TIMEOUT;
Manuel Pégourié-Gonnardf1e0df32014-10-02 14:02:32 +02001262 opt.max_resend = DFL_MAX_RESEND;
Paul Bakker9caf2d22010-02-18 19:37:19 +00001263 opt.request_page = DFL_REQUEST_PAGE;
Paul Bakker93c32b22014-04-25 13:40:05 +02001264 opt.request_size = DFL_REQUEST_SIZE;
Paul Bakker5690efc2011-05-26 13:16:06 +00001265 opt.ca_file = DFL_CA_FILE;
Paul Bakker8d914582012-06-04 12:46:42 +00001266 opt.ca_path = DFL_CA_PATH;
Paul Bakker67968392010-07-18 08:28:20 +00001267 opt.crt_file = DFL_CRT_FILE;
1268 opt.key_file = DFL_KEY_FILE;
Manuel Pégourié-Gonnardef68be42018-11-07 09:42:35 +01001269 opt.key_opaque = DFL_KEY_OPAQUE;
Paul Bakkerd4a56ec2013-04-16 18:05:29 +02001270 opt.psk = DFL_PSK;
Hanno Beckere86964c2018-10-23 11:37:50 +01001271#if defined(MBEDTLS_USE_PSA_CRYPTO)
Hanno Becker1d911cd2018-11-15 13:06:09 +00001272 opt.psk_opaque = DFL_PSK_OPAQUE;
Hanno Beckere86964c2018-10-23 11:37:50 +01001273#endif
Jarno Lamsa1b4a2ba2019-03-27 17:55:27 +02001274#if defined(MBEDTLS_X509_TRUSTED_CERTIFICATE_CALLBACK)
1275 opt.ca_callback = DFL_CA_CALLBACK;
1276#endif
Paul Bakkerd4a56ec2013-04-16 18:05:29 +02001277 opt.psk_identity = DFL_PSK_IDENTITY;
Manuel Pégourié-Gonnard70905a72015-09-16 11:08:34 +02001278 opt.ecjpake_pw = DFL_ECJPAKE_PW;
Manuel Pégourié-Gonnardb3c83072017-05-16 08:50:24 +02001279 opt.ec_max_ops = DFL_EC_MAX_OPS;
Paul Bakker51936882011-02-20 16:05:58 +00001280 opt.force_ciphersuite[0]= DFL_FORCE_CIPHER;
Paul Bakker48916f92012-09-16 19:57:18 +00001281 opt.renegotiation = DFL_RENEGOTIATION;
1282 opt.allow_legacy = DFL_ALLOW_LEGACY;
Manuel Pégourié-Gonnard780d6712014-02-20 17:19:59 +01001283 opt.renegotiate = DFL_RENEGOTIATE;
Manuel Pégourié-Gonnarda8c0a0d2014-08-15 12:07:38 +02001284 opt.exchanges = DFL_EXCHANGES;
Paul Bakker1d29fb52012-09-28 13:28:45 +00001285 opt.min_version = DFL_MIN_VERSION;
1286 opt.max_version = DFL_MAX_VERSION;
Manuel Pégourié-Gonnardbd47a582015-01-12 13:43:29 +01001287 opt.arc4 = DFL_ARC4;
Gilles Peskinebc70a182017-05-09 15:59:24 +02001288 opt.allow_sha1 = DFL_SHA1;
Paul Bakker91ebfb52012-11-23 14:04:08 +01001289 opt.auth_mode = DFL_AUTH_MODE;
Manuel Pégourié-Gonnard0df6b1f2013-07-16 13:39:57 +02001290 opt.mfl_code = DFL_MFL_CODE;
Manuel Pégourié-Gonnarde980a992013-07-19 11:08:52 +02001291 opt.trunc_hmac = DFL_TRUNC_HMAC;
Manuel Pégourié-Gonnardc82ee352015-01-07 16:35:25 +01001292 opt.recsplit = DFL_RECSPLIT;
Manuel Pégourié-Gonnard90966822015-06-11 17:02:29 +02001293 opt.dhmlen = DFL_DHMLEN;
Manuel Pégourié-Gonnardaaa1eab2013-07-30 13:43:43 +02001294 opt.reconnect = DFL_RECONNECT;
Manuel Pégourié-Gonnardc55a5b72014-02-20 22:50:56 +01001295 opt.reco_delay = DFL_RECO_DELAY;
Manuel Pégourié-Gonnarda7c37652019-05-20 12:46:26 +02001296 opt.reco_mode = DFL_RECO_MODE;
Manuel Pégourié-Gonnarddbd23072015-09-04 10:20:17 +02001297 opt.reconnect_hard = DFL_RECONNECT_HARD;
Manuel Pégourié-Gonnardaa0d4d12013-08-03 13:02:31 +02001298 opt.tickets = DFL_TICKETS;
Manuel Pégourié-Gonnard1bd22812014-04-05 14:34:07 +02001299 opt.alpn_string = DFL_ALPN_STRING;
Hanno Beckere6706e62017-05-15 16:05:15 +01001300 opt.curves = DFL_CURVES;
Manuel Pégourié-Gonnardd823bd02014-10-01 14:40:56 +02001301 opt.transport = DFL_TRANSPORT;
1302 opt.hs_to_min = DFL_HS_TO_MIN;
1303 opt.hs_to_max = DFL_HS_TO_MAX;
Manuel Pégourié-Gonnardb747c6c2018-08-12 13:28:53 +02001304 opt.dtls_mtu = DFL_DTLS_MTU;
Manuel Pégourié-Gonnard1cbd39d2014-10-20 13:34:59 +02001305 opt.fallback = DFL_FALLBACK;
Manuel Pégourié-Gonnard367381f2014-10-20 18:40:56 +02001306 opt.extended_ms = DFL_EXTENDED_MS;
Manuel Pégourié-Gonnard699cafa2014-10-27 13:57:03 +01001307 opt.etm = DFL_ETM;
Hanno Becker4d615912018-08-14 13:33:30 +01001308 opt.dgram_packing = DFL_DGRAM_PACKING;
Jarno Lamsa9831c8a2019-05-29 13:33:32 +03001309 opt.serialize = DFL_SERIALIZE;
Ron Eldorb7fd64c2019-05-12 11:03:32 +03001310 opt.eap_tls = DFL_EAP_TLS;
Philippe Antoineaa4d1522019-06-06 21:24:31 +02001311 opt.reproducible = DFL_REPRODUCIBLE;
Hanno Becker48f3a3d2019-08-29 06:31:22 +01001312 opt.nss_keylog = DFL_NSS_KEYLOG;
1313 opt.nss_keylog_file = DFL_NSS_KEYLOG_FILE;
Paul Bakker9caf2d22010-02-18 19:37:19 +00001314
1315 for( i = 1; i < argc; i++ )
1316 {
Paul Bakker9caf2d22010-02-18 19:37:19 +00001317 p = argv[i];
1318 if( ( q = strchr( p, '=' ) ) == NULL )
1319 goto usage;
1320 *q++ = '\0';
1321
1322 if( strcmp( p, "server_name" ) == 0 )
1323 opt.server_name = q;
Manuel Pégourié-Gonnard0d8780b2014-02-25 11:11:26 +01001324 else if( strcmp( p, "server_addr" ) == 0 )
1325 opt.server_addr = q;
Paul Bakker9caf2d22010-02-18 19:37:19 +00001326 else if( strcmp( p, "server_port" ) == 0 )
Manuel Pégourié-Gonnardc0d74942015-06-23 12:30:57 +02001327 opt.server_port = q;
Manuel Pégourié-Gonnarde29fd4b2014-02-06 14:02:55 +01001328 else if( strcmp( p, "dtls" ) == 0 )
1329 {
1330 int t = atoi( q );
1331 if( t == 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001332 opt.transport = MBEDTLS_SSL_TRANSPORT_STREAM;
Manuel Pégourié-Gonnarde29fd4b2014-02-06 14:02:55 +01001333 else if( t == 1 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001334 opt.transport = MBEDTLS_SSL_TRANSPORT_DATAGRAM;
Manuel Pégourié-Gonnarde29fd4b2014-02-06 14:02:55 +01001335 else
1336 goto usage;
1337 }
Paul Bakker9caf2d22010-02-18 19:37:19 +00001338 else if( strcmp( p, "debug_level" ) == 0 )
1339 {
1340 opt.debug_level = atoi( q );
1341 if( opt.debug_level < 0 || opt.debug_level > 65535 )
1342 goto usage;
1343 }
Hanno Beckerbb425db2019-04-03 12:59:58 +01001344 else if( strcmp( p, "context_crt_cb" ) == 0 )
1345 {
1346 opt.context_crt_cb = atoi( q );
1347 if( opt.context_crt_cb != 0 && opt.context_crt_cb != 1 )
1348 goto usage;
1349 }
Manuel Pégourié-Gonnard55753162014-02-26 13:47:08 +01001350 else if( strcmp( p, "nbio" ) == 0 )
1351 {
1352 opt.nbio = atoi( q );
1353 if( opt.nbio < 0 || opt.nbio > 2 )
1354 goto usage;
1355 }
Hanno Becker16970d22017-10-10 15:56:37 +01001356 else if( strcmp( p, "event" ) == 0 )
1357 {
1358 opt.event = atoi( q );
1359 if( opt.event < 0 || opt.event > 2 )
1360 goto usage;
1361 }
Manuel Pégourié-Gonnard6b651412014-10-01 18:29:03 +02001362 else if( strcmp( p, "read_timeout" ) == 0 )
1363 opt.read_timeout = atoi( q );
Manuel Pégourié-Gonnardf1e0df32014-10-02 14:02:32 +02001364 else if( strcmp( p, "max_resend" ) == 0 )
1365 {
1366 opt.max_resend = atoi( q );
1367 if( opt.max_resend < 0 )
1368 goto usage;
1369 }
Paul Bakker9caf2d22010-02-18 19:37:19 +00001370 else if( strcmp( p, "request_page" ) == 0 )
1371 opt.request_page = q;
Paul Bakker93c32b22014-04-25 13:40:05 +02001372 else if( strcmp( p, "request_size" ) == 0 )
1373 {
1374 opt.request_size = atoi( q );
Hanno Beckere4ad3e82017-09-18 15:05:46 +01001375 if( opt.request_size < 0 ||
1376 opt.request_size > MAX_REQUEST_SIZE )
Paul Bakker93c32b22014-04-25 13:40:05 +02001377 goto usage;
1378 }
Paul Bakker5690efc2011-05-26 13:16:06 +00001379 else if( strcmp( p, "ca_file" ) == 0 )
1380 opt.ca_file = q;
Paul Bakker8d914582012-06-04 12:46:42 +00001381 else if( strcmp( p, "ca_path" ) == 0 )
1382 opt.ca_path = q;
Paul Bakker67968392010-07-18 08:28:20 +00001383 else if( strcmp( p, "crt_file" ) == 0 )
1384 opt.crt_file = q;
1385 else if( strcmp( p, "key_file" ) == 0 )
1386 opt.key_file = q;
Manuel Pégourié-Gonnardef68be42018-11-07 09:42:35 +01001387#if defined(MBEDTLS_USE_PSA_CRYPTO) && defined(MBEDTLS_X509_CRT_PARSE_C)
1388 else if( strcmp( p, "key_opaque" ) == 0 )
1389 opt.key_opaque = atoi( q );
1390#endif
Hanno Beckera0e20d02019-05-15 14:03:01 +01001391#if defined(MBEDTLS_SSL_DTLS_CONNECTION_ID)
Hanno Becker90cb3592019-04-09 17:24:19 +01001392 else if( strcmp( p, "cid" ) == 0 )
1393 {
1394 opt.cid_enabled = atoi( q );
1395 if( opt.cid_enabled != 0 && opt.cid_enabled != 1 )
1396 goto usage;
1397 }
Hanno Beckerb42ec0d2019-05-03 17:30:59 +01001398 else if( strcmp( p, "cid_renego" ) == 0 )
1399 {
1400 opt.cid_enabled_renego = atoi( q );
1401 if( opt.cid_enabled_renego != 0 && opt.cid_enabled_renego != 1 )
1402 goto usage;
1403 }
Hanno Becker90cb3592019-04-09 17:24:19 +01001404 else if( strcmp( p, "cid_val" ) == 0 )
1405 {
1406 opt.cid_val = q;
1407 }
Hanno Beckerb42ec0d2019-05-03 17:30:59 +01001408 else if( strcmp( p, "cid_val_renego" ) == 0 )
1409 {
1410 opt.cid_val_renego = q;
1411 }
Hanno Beckera0e20d02019-05-15 14:03:01 +01001412#endif /* MBEDTLS_SSL_DTLS_CONNECTION_ID */
Paul Bakkerd4a56ec2013-04-16 18:05:29 +02001413 else if( strcmp( p, "psk" ) == 0 )
1414 opt.psk = q;
Hanno Beckere86964c2018-10-23 11:37:50 +01001415#if defined(MBEDTLS_USE_PSA_CRYPTO)
Hanno Becker1d911cd2018-11-15 13:06:09 +00001416 else if( strcmp( p, "psk_opaque" ) == 0 )
1417 opt.psk_opaque = atoi( q );
Hanno Beckere86964c2018-10-23 11:37:50 +01001418#endif
Jarno Lamsa1b4a2ba2019-03-27 17:55:27 +02001419#if defined(MBEDTLS_X509_TRUSTED_CERTIFICATE_CALLBACK)
1420 else if( strcmp( p, "ca_callback" ) == 0)
1421 opt.ca_callback = atoi( q );
1422#endif
Paul Bakkerd4a56ec2013-04-16 18:05:29 +02001423 else if( strcmp( p, "psk_identity" ) == 0 )
1424 opt.psk_identity = q;
Manuel Pégourié-Gonnard70905a72015-09-16 11:08:34 +02001425 else if( strcmp( p, "ecjpake_pw" ) == 0 )
1426 opt.ecjpake_pw = q;
Manuel Pégourié-Gonnardb3c83072017-05-16 08:50:24 +02001427 else if( strcmp( p, "ec_max_ops" ) == 0 )
1428 opt.ec_max_ops = atoi( q );
Paul Bakker51936882011-02-20 16:05:58 +00001429 else if( strcmp( p, "force_ciphersuite" ) == 0 )
1430 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001431 opt.force_ciphersuite[0] = mbedtls_ssl_get_ciphersuite_id( q );
Paul Bakker51936882011-02-20 16:05:58 +00001432
Manuel Pégourié-Gonnard8de259b2014-06-11 14:19:06 +02001433 if( opt.force_ciphersuite[0] == 0 )
Paul Bakkerfab5c822012-02-06 16:45:10 +00001434 {
1435 ret = 2;
Paul Bakker51936882011-02-20 16:05:58 +00001436 goto usage;
Paul Bakkerfab5c822012-02-06 16:45:10 +00001437 }
Paul Bakker51936882011-02-20 16:05:58 +00001438 opt.force_ciphersuite[1] = 0;
1439 }
Paul Bakker48916f92012-09-16 19:57:18 +00001440 else if( strcmp( p, "renegotiation" ) == 0 )
1441 {
Hanno Becker4cb1f4d2017-10-10 15:59:57 +01001442 opt.renegotiation = (atoi( q )) ?
1443 MBEDTLS_SSL_RENEGOTIATION_ENABLED :
1444 MBEDTLS_SSL_RENEGOTIATION_DISABLED;
Paul Bakker48916f92012-09-16 19:57:18 +00001445 }
1446 else if( strcmp( p, "allow_legacy" ) == 0 )
1447 {
Manuel Pégourié-Gonnard85d915b2014-11-03 20:10:36 +01001448 switch( atoi( q ) )
1449 {
Hanno Becker4cb1f4d2017-10-10 15:59:57 +01001450 case -1:
1451 opt.allow_legacy = MBEDTLS_SSL_LEGACY_BREAK_HANDSHAKE;
1452 break;
1453 case 0:
1454 opt.allow_legacy = MBEDTLS_SSL_LEGACY_NO_RENEGOTIATION;
1455 break;
1456 case 1:
1457 opt.allow_legacy = MBEDTLS_SSL_LEGACY_ALLOW_RENEGOTIATION;
1458 break;
Manuel Pégourié-Gonnard85d915b2014-11-03 20:10:36 +01001459 default: goto usage;
1460 }
Paul Bakker48916f92012-09-16 19:57:18 +00001461 }
Manuel Pégourié-Gonnard780d6712014-02-20 17:19:59 +01001462 else if( strcmp( p, "renegotiate" ) == 0 )
1463 {
1464 opt.renegotiate = atoi( q );
1465 if( opt.renegotiate < 0 || opt.renegotiate > 1 )
1466 goto usage;
1467 }
Manuel Pégourié-Gonnarda8c0a0d2014-08-15 12:07:38 +02001468 else if( strcmp( p, "exchanges" ) == 0 )
1469 {
1470 opt.exchanges = atoi( q );
1471 if( opt.exchanges < 1 )
1472 goto usage;
1473 }
Manuel Pégourié-Gonnardaaa1eab2013-07-30 13:43:43 +02001474 else if( strcmp( p, "reconnect" ) == 0 )
1475 {
1476 opt.reconnect = atoi( q );
Manuel Pégourié-Gonnardcf2e97e2013-08-02 15:04:36 +02001477 if( opt.reconnect < 0 || opt.reconnect > 2 )
Manuel Pégourié-Gonnardaaa1eab2013-07-30 13:43:43 +02001478 goto usage;
1479 }
Manuel Pégourié-Gonnardc55a5b72014-02-20 22:50:56 +01001480 else if( strcmp( p, "reco_delay" ) == 0 )
1481 {
1482 opt.reco_delay = atoi( q );
1483 if( opt.reco_delay < 0 )
1484 goto usage;
1485 }
Manuel Pégourié-Gonnarda7c37652019-05-20 12:46:26 +02001486 else if( strcmp( p, "reco_mode" ) == 0 )
1487 {
1488 opt.reco_mode = atoi( q );
1489 if( opt.reco_mode < 0 )
1490 goto usage;
1491 }
Manuel Pégourié-Gonnarddbd23072015-09-04 10:20:17 +02001492 else if( strcmp( p, "reconnect_hard" ) == 0 )
1493 {
1494 opt.reconnect_hard = atoi( q );
1495 if( opt.reconnect_hard < 0 || opt.reconnect_hard > 1 )
1496 goto usage;
1497 }
Manuel Pégourié-Gonnardaa0d4d12013-08-03 13:02:31 +02001498 else if( strcmp( p, "tickets" ) == 0 )
1499 {
1500 opt.tickets = atoi( q );
1501 if( opt.tickets < 0 || opt.tickets > 2 )
1502 goto usage;
1503 }
Manuel Pégourié-Gonnard1bd22812014-04-05 14:34:07 +02001504 else if( strcmp( p, "alpn" ) == 0 )
1505 {
1506 opt.alpn_string = q;
1507 }
Manuel Pégourié-Gonnard1cbd39d2014-10-20 13:34:59 +02001508 else if( strcmp( p, "fallback" ) == 0 )
1509 {
1510 switch( atoi( q ) )
1511 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001512 case 0: opt.fallback = MBEDTLS_SSL_IS_NOT_FALLBACK; break;
1513 case 1: opt.fallback = MBEDTLS_SSL_IS_FALLBACK; break;
Manuel Pégourié-Gonnard1cbd39d2014-10-20 13:34:59 +02001514 default: goto usage;
1515 }
1516 }
Manuel Pégourié-Gonnard367381f2014-10-20 18:40:56 +02001517 else if( strcmp( p, "extended_ms" ) == 0 )
1518 {
1519 switch( atoi( q ) )
1520 {
Hanno Becker4cb1f4d2017-10-10 15:59:57 +01001521 case 0:
1522 opt.extended_ms = MBEDTLS_SSL_EXTENDED_MS_DISABLED;
1523 break;
1524 case 1:
1525 opt.extended_ms = MBEDTLS_SSL_EXTENDED_MS_ENABLED;
1526 break;
Manuel Pégourié-Gonnard367381f2014-10-20 18:40:56 +02001527 default: goto usage;
1528 }
1529 }
Hanno Beckere6706e62017-05-15 16:05:15 +01001530 else if( strcmp( p, "curves" ) == 0 )
1531 opt.curves = q;
Manuel Pégourié-Gonnard699cafa2014-10-27 13:57:03 +01001532 else if( strcmp( p, "etm" ) == 0 )
1533 {
1534 switch( atoi( q ) )
1535 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001536 case 0: opt.etm = MBEDTLS_SSL_ETM_DISABLED; break;
1537 case 1: opt.etm = MBEDTLS_SSL_ETM_ENABLED; break;
Manuel Pégourié-Gonnard699cafa2014-10-27 13:57:03 +01001538 default: goto usage;
1539 }
1540 }
Paul Bakker1d29fb52012-09-28 13:28:45 +00001541 else if( strcmp( p, "min_version" ) == 0 )
1542 {
1543 if( strcmp( q, "ssl3" ) == 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001544 opt.min_version = MBEDTLS_SSL_MINOR_VERSION_0;
Paul Bakker1d29fb52012-09-28 13:28:45 +00001545 else if( strcmp( q, "tls1" ) == 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001546 opt.min_version = MBEDTLS_SSL_MINOR_VERSION_1;
Manuel Pégourié-Gonnard83218f12014-02-12 11:11:12 +01001547 else if( strcmp( q, "tls1_1" ) == 0 ||
1548 strcmp( q, "dtls1" ) == 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001549 opt.min_version = MBEDTLS_SSL_MINOR_VERSION_2;
Manuel Pégourié-Gonnard83218f12014-02-12 11:11:12 +01001550 else if( strcmp( q, "tls1_2" ) == 0 ||
1551 strcmp( q, "dtls1_2" ) == 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001552 opt.min_version = MBEDTLS_SSL_MINOR_VERSION_3;
Paul Bakker1d29fb52012-09-28 13:28:45 +00001553 else
1554 goto usage;
1555 }
1556 else if( strcmp( p, "max_version" ) == 0 )
1557 {
1558 if( strcmp( q, "ssl3" ) == 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001559 opt.max_version = MBEDTLS_SSL_MINOR_VERSION_0;
Paul Bakker1d29fb52012-09-28 13:28:45 +00001560 else if( strcmp( q, "tls1" ) == 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001561 opt.max_version = MBEDTLS_SSL_MINOR_VERSION_1;
Manuel Pégourié-Gonnard83218f12014-02-12 11:11:12 +01001562 else if( strcmp( q, "tls1_1" ) == 0 ||
1563 strcmp( q, "dtls1" ) == 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001564 opt.max_version = MBEDTLS_SSL_MINOR_VERSION_2;
Manuel Pégourié-Gonnard83218f12014-02-12 11:11:12 +01001565 else if( strcmp( q, "tls1_2" ) == 0 ||
1566 strcmp( q, "dtls1_2" ) == 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001567 opt.max_version = MBEDTLS_SSL_MINOR_VERSION_3;
Paul Bakker1d29fb52012-09-28 13:28:45 +00001568 else
1569 goto usage;
1570 }
Manuel Pégourié-Gonnardbd47a582015-01-12 13:43:29 +01001571 else if( strcmp( p, "arc4" ) == 0 )
1572 {
1573 switch( atoi( q ) )
1574 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001575 case 0: opt.arc4 = MBEDTLS_SSL_ARC4_DISABLED; break;
1576 case 1: opt.arc4 = MBEDTLS_SSL_ARC4_ENABLED; break;
Manuel Pégourié-Gonnardbd47a582015-01-12 13:43:29 +01001577 default: goto usage;
1578 }
1579 }
Gilles Peskinebc70a182017-05-09 15:59:24 +02001580 else if( strcmp( p, "allow_sha1" ) == 0 )
1581 {
1582 switch( atoi( q ) )
1583 {
1584 case 0: opt.allow_sha1 = 0; break;
1585 case 1: opt.allow_sha1 = 1; break;
1586 default: goto usage;
1587 }
1588 }
Paul Bakker1d29fb52012-09-28 13:28:45 +00001589 else if( strcmp( p, "force_version" ) == 0 )
1590 {
1591 if( strcmp( q, "ssl3" ) == 0 )
1592 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001593 opt.min_version = MBEDTLS_SSL_MINOR_VERSION_0;
1594 opt.max_version = MBEDTLS_SSL_MINOR_VERSION_0;
Paul Bakker1d29fb52012-09-28 13:28:45 +00001595 }
1596 else if( strcmp( q, "tls1" ) == 0 )
1597 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001598 opt.min_version = MBEDTLS_SSL_MINOR_VERSION_1;
1599 opt.max_version = MBEDTLS_SSL_MINOR_VERSION_1;
Paul Bakker1d29fb52012-09-28 13:28:45 +00001600 }
Manuel Pégourié-Gonnardfe3f73b2014-03-26 12:16:44 +01001601 else if( strcmp( q, "tls1_1" ) == 0 )
Paul Bakker1d29fb52012-09-28 13:28:45 +00001602 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001603 opt.min_version = MBEDTLS_SSL_MINOR_VERSION_2;
1604 opt.max_version = MBEDTLS_SSL_MINOR_VERSION_2;
Paul Bakker1d29fb52012-09-28 13:28:45 +00001605 }
Manuel Pégourié-Gonnardfe3f73b2014-03-26 12:16:44 +01001606 else if( strcmp( q, "tls1_2" ) == 0 )
Paul Bakker1d29fb52012-09-28 13:28:45 +00001607 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001608 opt.min_version = MBEDTLS_SSL_MINOR_VERSION_3;
1609 opt.max_version = MBEDTLS_SSL_MINOR_VERSION_3;
Paul Bakker1d29fb52012-09-28 13:28:45 +00001610 }
Manuel Pégourié-Gonnardfe3f73b2014-03-26 12:16:44 +01001611 else if( strcmp( q, "dtls1" ) == 0 )
1612 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001613 opt.min_version = MBEDTLS_SSL_MINOR_VERSION_2;
1614 opt.max_version = MBEDTLS_SSL_MINOR_VERSION_2;
1615 opt.transport = MBEDTLS_SSL_TRANSPORT_DATAGRAM;
Manuel Pégourié-Gonnardfe3f73b2014-03-26 12:16:44 +01001616 }
1617 else if( strcmp( q, "dtls1_2" ) == 0 )
1618 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001619 opt.min_version = MBEDTLS_SSL_MINOR_VERSION_3;
1620 opt.max_version = MBEDTLS_SSL_MINOR_VERSION_3;
1621 opt.transport = MBEDTLS_SSL_TRANSPORT_DATAGRAM;
Manuel Pégourié-Gonnardfe3f73b2014-03-26 12:16:44 +01001622 }
Paul Bakker1d29fb52012-09-28 13:28:45 +00001623 else
1624 goto usage;
1625 }
Paul Bakker91ebfb52012-11-23 14:04:08 +01001626 else if( strcmp( p, "auth_mode" ) == 0 )
1627 {
1628 if( strcmp( q, "none" ) == 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001629 opt.auth_mode = MBEDTLS_SSL_VERIFY_NONE;
Paul Bakker91ebfb52012-11-23 14:04:08 +01001630 else if( strcmp( q, "optional" ) == 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001631 opt.auth_mode = MBEDTLS_SSL_VERIFY_OPTIONAL;
Paul Bakker91ebfb52012-11-23 14:04:08 +01001632 else if( strcmp( q, "required" ) == 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001633 opt.auth_mode = MBEDTLS_SSL_VERIFY_REQUIRED;
Paul Bakker91ebfb52012-11-23 14:04:08 +01001634 else
1635 goto usage;
1636 }
Manuel Pégourié-Gonnard0df6b1f2013-07-16 13:39:57 +02001637 else if( strcmp( p, "max_frag_len" ) == 0 )
1638 {
1639 if( strcmp( q, "512" ) == 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001640 opt.mfl_code = MBEDTLS_SSL_MAX_FRAG_LEN_512;
Manuel Pégourié-Gonnard0df6b1f2013-07-16 13:39:57 +02001641 else if( strcmp( q, "1024" ) == 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001642 opt.mfl_code = MBEDTLS_SSL_MAX_FRAG_LEN_1024;
Manuel Pégourié-Gonnard0df6b1f2013-07-16 13:39:57 +02001643 else if( strcmp( q, "2048" ) == 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001644 opt.mfl_code = MBEDTLS_SSL_MAX_FRAG_LEN_2048;
Manuel Pégourié-Gonnard0df6b1f2013-07-16 13:39:57 +02001645 else if( strcmp( q, "4096" ) == 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001646 opt.mfl_code = MBEDTLS_SSL_MAX_FRAG_LEN_4096;
Manuel Pégourié-Gonnard0df6b1f2013-07-16 13:39:57 +02001647 else
1648 goto usage;
1649 }
Manuel Pégourié-Gonnarde980a992013-07-19 11:08:52 +02001650 else if( strcmp( p, "trunc_hmac" ) == 0 )
1651 {
Manuel Pégourié-Gonnard265fe992015-01-09 12:43:35 +01001652 switch( atoi( q ) )
1653 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001654 case 0: opt.trunc_hmac = MBEDTLS_SSL_TRUNC_HMAC_DISABLED; break;
1655 case 1: opt.trunc_hmac = MBEDTLS_SSL_TRUNC_HMAC_ENABLED; break;
Manuel Pégourié-Gonnard265fe992015-01-09 12:43:35 +01001656 default: goto usage;
1657 }
Manuel Pégourié-Gonnarde980a992013-07-19 11:08:52 +02001658 }
Manuel Pégourié-Gonnardd823bd02014-10-01 14:40:56 +02001659 else if( strcmp( p, "hs_timeout" ) == 0 )
1660 {
1661 if( ( p = strchr( q, '-' ) ) == NULL )
1662 goto usage;
1663 *p++ = '\0';
1664 opt.hs_to_min = atoi( q );
1665 opt.hs_to_max = atoi( p );
1666 if( opt.hs_to_min == 0 || opt.hs_to_max < opt.hs_to_min )
1667 goto usage;
1668 }
Manuel Pégourié-Gonnardb747c6c2018-08-12 13:28:53 +02001669 else if( strcmp( p, "mtu" ) == 0 )
1670 {
1671 opt.dtls_mtu = atoi( q );
1672 if( opt.dtls_mtu < 0 )
1673 goto usage;
1674 }
Hanno Becker4d615912018-08-14 13:33:30 +01001675 else if( strcmp( p, "dgram_packing" ) == 0 )
1676 {
1677 opt.dgram_packing = atoi( q );
1678 if( opt.dgram_packing != 0 &&
1679 opt.dgram_packing != 1 )
1680 {
1681 goto usage;
1682 }
1683 }
Manuel Pégourié-Gonnardc82ee352015-01-07 16:35:25 +01001684 else if( strcmp( p, "recsplit" ) == 0 )
1685 {
1686 opt.recsplit = atoi( q );
1687 if( opt.recsplit < 0 || opt.recsplit > 1 )
1688 goto usage;
1689 }
Manuel Pégourié-Gonnard90966822015-06-11 17:02:29 +02001690 else if( strcmp( p, "dhmlen" ) == 0 )
1691 {
1692 opt.dhmlen = atoi( q );
1693 if( opt.dhmlen < 0 )
1694 goto usage;
1695 }
Andres Amaya Garciabc818842018-10-16 21:08:38 +01001696 else if( strcmp( p, "query_config" ) == 0 )
1697 {
1698 return query_config( q );
1699 }
Jarno Lamsa9831c8a2019-05-29 13:33:32 +03001700 else if( strcmp( p, "serialize") == 0 )
1701 {
1702 opt.serialize = atoi( q );
Jarno Lamsa304d61c2019-06-06 10:40:52 +03001703 if( opt.serialize < 0 || opt.serialize > 2)
Jarno Lamsa9831c8a2019-05-29 13:33:32 +03001704 goto usage;
1705 }
Ron Eldorb7fd64c2019-05-12 11:03:32 +03001706 else if( strcmp( p, "eap_tls" ) == 0 )
1707 {
1708 opt.eap_tls = atoi( q );
1709 if( opt.eap_tls < 0 || opt.eap_tls > 1 )
1710 goto usage;
1711 }
Philippe Antoineaa4d1522019-06-06 21:24:31 +02001712 else if( strcmp( p, "reproducible" ) == 0 )
1713 {
1714 opt.reproducible = 1;
1715 }
Hanno Becker48f3a3d2019-08-29 06:31:22 +01001716 else if( strcmp( p, "nss_keylog" ) == 0 )
1717 {
1718 opt.nss_keylog = atoi( q );
1719 if( opt.nss_keylog < 0 || opt.nss_keylog > 1 )
1720 goto usage;
1721 }
1722 else if( strcmp( p, "nss_keylog_file" ) == 0 )
1723 {
1724 opt.nss_keylog_file = q;
1725 }
Paul Bakker9caf2d22010-02-18 19:37:19 +00001726 else
1727 goto usage;
1728 }
Paul Bakker5121ce52009-01-03 21:22:43 +00001729
Hanno Beckerbc5308c2019-09-09 11:38:51 +01001730 if( opt.nss_keylog != 0 && opt.eap_tls != 0 )
1731 {
1732 mbedtls_printf( "Error: eap_tls and nss_keylog options cannot be used together.\n" );
1733 goto usage;
1734 }
1735
Hanno Becker16970d22017-10-10 15:56:37 +01001736 /* Event-driven IO is incompatible with the above custom
1737 * receive and send functions, as the polling builds on
1738 * refers to the underlying net_context. */
1739 if( opt.event == 1 && opt.nbio != 1 )
1740 {
Hanno Beckerdf4180a2017-10-27 13:43:58 +01001741 mbedtls_printf( "Warning: event-driven IO mandates nbio=1 - overwrite\n" );
Hanno Becker16970d22017-10-10 15:56:37 +01001742 opt.nbio = 1;
1743 }
1744
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001745#if defined(MBEDTLS_DEBUG_C)
1746 mbedtls_debug_set_threshold( opt.debug_level );
Paul Bakkerc73079a2014-04-25 16:34:30 +02001747#endif
1748
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001749#if defined(MBEDTLS_KEY_EXCHANGE__SOME__PSK_ENABLED)
Paul Bakker5121ce52009-01-03 21:22:43 +00001750 /*
Paul Bakkerd4a56ec2013-04-16 18:05:29 +02001751 * Unhexify the pre-shared key if any is given
1752 */
1753 if( strlen( opt.psk ) )
1754 {
Hanno Becker1f583ee2019-04-09 17:12:56 +01001755 psk_len = strlen( opt.psk ) / 2;
1756 if( psk_len > sizeof( psk ) )
Paul Bakkerd4a56ec2013-04-16 18:05:29 +02001757 {
Hanno Becker1f583ee2019-04-09 17:12:56 +01001758 mbedtls_printf( "pre-shared key too long\n" );
Paul Bakkerd4a56ec2013-04-16 18:05:29 +02001759 goto exit;
1760 }
1761
Hanno Becker1f583ee2019-04-09 17:12:56 +01001762 if( unhexify( opt.psk, psk ) != 0 )
Paul Bakkerd4a56ec2013-04-16 18:05:29 +02001763 {
Hanno Becker1f583ee2019-04-09 17:12:56 +01001764 mbedtls_printf( "pre-shared key not valid hex\n" );
1765 goto exit;
Paul Bakkerd4a56ec2013-04-16 18:05:29 +02001766 }
1767 }
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001768#endif /* MBEDTLS_KEY_EXCHANGE__SOME__PSK_ENABLED */
Paul Bakkerd4a56ec2013-04-16 18:05:29 +02001769
Hanno Beckere86964c2018-10-23 11:37:50 +01001770#if defined(MBEDTLS_USE_PSA_CRYPTO)
Hanno Becker1d911cd2018-11-15 13:06:09 +00001771 if( opt.psk_opaque != 0 )
Hanno Beckere86964c2018-10-23 11:37:50 +01001772 {
1773 if( opt.psk == NULL )
1774 {
Hanno Becker1d911cd2018-11-15 13:06:09 +00001775 mbedtls_printf( "psk_opaque set but no psk to be imported specified.\n" );
Hanno Beckere86964c2018-10-23 11:37:50 +01001776 ret = 2;
1777 goto usage;
1778 }
1779
1780 if( opt.force_ciphersuite[0] <= 0 )
1781 {
1782 mbedtls_printf( "opaque PSKs are only supported in conjunction with forcing TLS 1.2 and a PSK-only ciphersuite through the 'force_ciphersuite' option.\n" );
1783 ret = 2;
1784 goto usage;
1785 }
1786 }
1787#endif /* MBEDTLS_USE_PSA_CRYPTO */
1788
1789 if( opt.force_ciphersuite[0] > 0 )
1790 {
1791 const mbedtls_ssl_ciphersuite_t *ciphersuite_info;
1792 ciphersuite_info =
1793 mbedtls_ssl_ciphersuite_from_id( opt.force_ciphersuite[0] );
1794
1795 if( opt.max_version != -1 &&
1796 ciphersuite_info->min_minor_ver > opt.max_version )
1797 {
1798 mbedtls_printf( "forced ciphersuite not allowed with this protocol version\n" );
1799 ret = 2;
1800 goto usage;
1801 }
1802 if( opt.min_version != -1 &&
1803 ciphersuite_info->max_minor_ver < opt.min_version )
1804 {
1805 mbedtls_printf( "forced ciphersuite not allowed with this protocol version\n" );
1806 ret = 2;
1807 goto usage;
1808 }
1809
1810 /* If the server selects a version that's not supported by
1811 * this suite, then there will be no common ciphersuite... */
1812 if( opt.max_version == -1 ||
1813 opt.max_version > ciphersuite_info->max_minor_ver )
1814 {
1815 opt.max_version = ciphersuite_info->max_minor_ver;
1816 }
1817 if( opt.min_version < ciphersuite_info->min_minor_ver )
1818 {
1819 opt.min_version = ciphersuite_info->min_minor_ver;
1820 /* DTLS starts with TLS 1.1 */
1821 if( opt.transport == MBEDTLS_SSL_TRANSPORT_DATAGRAM &&
1822 opt.min_version < MBEDTLS_SSL_MINOR_VERSION_2 )
1823 opt.min_version = MBEDTLS_SSL_MINOR_VERSION_2;
1824 }
1825
1826 /* Enable RC4 if needed and not explicitly disabled */
1827 if( ciphersuite_info->cipher == MBEDTLS_CIPHER_ARC4_128 )
1828 {
1829 if( opt.arc4 == MBEDTLS_SSL_ARC4_DISABLED )
1830 {
1831 mbedtls_printf( "forced RC4 ciphersuite with RC4 disabled\n" );
1832 ret = 2;
1833 goto usage;
1834 }
1835
1836 opt.arc4 = MBEDTLS_SSL_ARC4_ENABLED;
1837 }
1838
Hanno Becker90cb3592019-04-09 17:24:19 +01001839
Hanno Beckere86964c2018-10-23 11:37:50 +01001840#if defined(MBEDTLS_USE_PSA_CRYPTO)
Hanno Becker1d911cd2018-11-15 13:06:09 +00001841 if( opt.psk_opaque != 0 )
Hanno Beckere86964c2018-10-23 11:37:50 +01001842 {
1843 /* Ensure that the chosen ciphersuite is PSK-only; we must know
1844 * the ciphersuite in advance to set the correct policy for the
1845 * PSK key slot. This limitation might go away in the future. */
1846 if( ciphersuite_info->key_exchange != MBEDTLS_KEY_EXCHANGE_PSK ||
1847 opt.min_version != MBEDTLS_SSL_MINOR_VERSION_3 )
1848 {
1849 mbedtls_printf( "opaque PSKs are only supported in conjunction with forcing TLS 1.2 and a PSK-only ciphersuite through the 'force_ciphersuite' option.\n" );
1850 ret = 2;
1851 goto usage;
1852 }
1853
1854 /* Determine KDF algorithm the opaque PSK will be used in. */
1855#if defined(MBEDTLS_SHA512_C)
1856 if( ciphersuite_info->mac == MBEDTLS_MD_SHA384 )
1857 alg = PSA_ALG_TLS12_PSK_TO_MS(PSA_ALG_SHA_384);
1858 else
1859#endif /* MBEDTLS_SHA512_C */
1860 alg = PSA_ALG_TLS12_PSK_TO_MS(PSA_ALG_SHA_256);
1861 }
1862#endif /* MBEDTLS_USE_PSA_CRYPTO */
1863 }
1864
Hanno Beckera0e20d02019-05-15 14:03:01 +01001865#if defined(MBEDTLS_SSL_DTLS_CONNECTION_ID)
Hanno Beckerb42ec0d2019-05-03 17:30:59 +01001866 cid_len = strlen( opt.cid_val ) / 2;
1867 if( cid_len > sizeof( cid ) )
1868 {
1869 mbedtls_printf( "CID too long\n" );
1870 goto exit;
1871 }
Hanno Becker90cb3592019-04-09 17:24:19 +01001872
Hanno Beckerb42ec0d2019-05-03 17:30:59 +01001873 if( unhexify( opt.cid_val, cid ) != 0 )
1874 {
1875 mbedtls_printf( "CID not valid hex\n" );
1876 goto exit;
1877 }
1878
1879 /* Keep CID settings for renegotiation unless
1880 * specified otherwise. */
1881 if( opt.cid_enabled_renego == DFL_CID_ENABLED_RENEGO )
1882 opt.cid_enabled_renego = opt.cid_enabled;
1883 if( opt.cid_val_renego == DFL_CID_VALUE_RENEGO )
1884 opt.cid_val_renego = opt.cid_val;
1885
1886 cid_renego_len = strlen( opt.cid_val_renego ) / 2;
1887 if( cid_renego_len > sizeof( cid_renego ) )
1888 {
1889 mbedtls_printf( "CID too long\n" );
1890 goto exit;
1891 }
1892
1893 if( unhexify( opt.cid_val_renego, cid_renego ) != 0 )
1894 {
1895 mbedtls_printf( "CID not valid hex\n" );
1896 goto exit;
1897 }
Hanno Beckera0e20d02019-05-15 14:03:01 +01001898#endif /* MBEDTLS_SSL_DTLS_CONNECTION_ID */
Hanno Becker90cb3592019-04-09 17:24:19 +01001899
Hanno Beckere6706e62017-05-15 16:05:15 +01001900#if defined(MBEDTLS_ECP_C)
1901 if( opt.curves != NULL )
1902 {
1903 p = (char *) opt.curves;
1904 i = 0;
1905
1906 if( strcmp( p, "none" ) == 0 )
1907 {
1908 curve_list[0] = MBEDTLS_ECP_DP_NONE;
1909 }
1910 else if( strcmp( p, "default" ) != 0 )
1911 {
1912 /* Leave room for a final NULL in curve list */
Hanno Becker8651a432017-06-09 16:13:22 +01001913 while( i < CURVE_LIST_SIZE - 1 && *p != '\0' )
Hanno Beckere6706e62017-05-15 16:05:15 +01001914 {
1915 q = p;
1916
1917 /* Terminate the current string */
1918 while( *p != ',' && *p != '\0' )
1919 p++;
1920 if( *p == ',' )
1921 *p++ = '\0';
1922
1923 if( ( curve_cur = mbedtls_ecp_curve_info_from_name( q ) ) != NULL )
1924 {
1925 curve_list[i++] = curve_cur->grp_id;
1926 }
1927 else
1928 {
1929 mbedtls_printf( "unknown curve %s\n", q );
1930 mbedtls_printf( "supported curves: " );
1931 for( curve_cur = mbedtls_ecp_curve_list();
1932 curve_cur->grp_id != MBEDTLS_ECP_DP_NONE;
1933 curve_cur++ )
1934 {
1935 mbedtls_printf( "%s ", curve_cur->name );
1936 }
1937 mbedtls_printf( "\n" );
1938 goto exit;
1939 }
1940 }
1941
1942 mbedtls_printf("Number of curves: %d\n", i );
1943
Hanno Becker8651a432017-06-09 16:13:22 +01001944 if( i == CURVE_LIST_SIZE - 1 && *p != '\0' )
Hanno Beckere6706e62017-05-15 16:05:15 +01001945 {
Hanno Becker8651a432017-06-09 16:13:22 +01001946 mbedtls_printf( "curves list too long, maximum %d",
1947 CURVE_LIST_SIZE - 1 );
Hanno Beckere6706e62017-05-15 16:05:15 +01001948 goto exit;
1949 }
1950
1951 curve_list[i] = MBEDTLS_ECP_DP_NONE;
1952 }
1953 }
1954#endif /* MBEDTLS_ECP_C */
1955
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001956#if defined(MBEDTLS_SSL_ALPN)
Manuel Pégourié-Gonnard1bd22812014-04-05 14:34:07 +02001957 if( opt.alpn_string != NULL )
1958 {
1959 p = (char *) opt.alpn_string;
1960 i = 0;
1961
1962 /* Leave room for a final NULL in alpn_list */
Hanno Becker8651a432017-06-09 16:13:22 +01001963 while( i < ALPN_LIST_SIZE - 1 && *p != '\0' )
Manuel Pégourié-Gonnard1bd22812014-04-05 14:34:07 +02001964 {
1965 alpn_list[i++] = p;
1966
1967 /* Terminate the current string and move on to next one */
1968 while( *p != ',' && *p != '\0' )
1969 p++;
1970 if( *p == ',' )
1971 *p++ = '\0';
1972 }
1973 }
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001974#endif /* MBEDTLS_SSL_ALPN */
Manuel Pégourié-Gonnard1bd22812014-04-05 14:34:07 +02001975
Paul Bakkerd4a56ec2013-04-16 18:05:29 +02001976 /*
Paul Bakker5121ce52009-01-03 21:22:43 +00001977 * 0. Initialize the RNG and the session data
1978 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001979 mbedtls_printf( "\n . Seeding the random number generator..." );
Paul Bakker508ad5a2011-12-04 17:09:26 +00001980 fflush( stdout );
1981
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001982 mbedtls_entropy_init( &entropy );
Philippe Antoine986b6f22019-06-07 15:04:32 +02001983 if (opt.reproducible)
Paul Bakker508ad5a2011-12-04 17:09:26 +00001984 {
Philippe Antoine738153a2019-06-18 20:16:43 +02001985 srand( 1 );
Philippe Antoineaa4d1522019-06-06 21:24:31 +02001986 if( ( ret = mbedtls_ctr_drbg_seed( &ctr_drbg, dummy_entropy,
Philippe Antoine986b6f22019-06-07 15:04:32 +02001987 &entropy, (const unsigned char *) pers,
1988 strlen( pers ) ) ) != 0 )
Philippe Antoineaa4d1522019-06-06 21:24:31 +02001989 {
1990 mbedtls_printf( " failed\n ! mbedtls_ctr_drbg_seed returned -0x%x\n",
Philippe Antoine986b6f22019-06-07 15:04:32 +02001991 -ret );
Philippe Antoineaa4d1522019-06-06 21:24:31 +02001992 goto exit;
1993 }
Philippe Antoine986b6f22019-06-07 15:04:32 +02001994 }
1995 else
1996 {
Philippe Antoineaa4d1522019-06-06 21:24:31 +02001997 if( ( ret = mbedtls_ctr_drbg_seed( &ctr_drbg, mbedtls_entropy_func,
Philippe Antoine986b6f22019-06-07 15:04:32 +02001998 &entropy, (const unsigned char *) pers,
1999 strlen( pers ) ) ) != 0 )
Philippe Antoineaa4d1522019-06-06 21:24:31 +02002000 {
2001 mbedtls_printf( " failed\n ! mbedtls_ctr_drbg_seed returned -0x%x\n",
Philippe Antoine986b6f22019-06-07 15:04:32 +02002002 -ret );
Philippe Antoineaa4d1522019-06-06 21:24:31 +02002003 goto exit;
2004 }
Paul Bakker508ad5a2011-12-04 17:09:26 +00002005 }
2006
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002007 mbedtls_printf( " ok\n" );
Paul Bakker5121ce52009-01-03 21:22:43 +00002008
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002009#if defined(MBEDTLS_X509_CRT_PARSE_C)
Paul Bakker5121ce52009-01-03 21:22:43 +00002010 /*
2011 * 1.1. Load the trusted CA
2012 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002013 mbedtls_printf( " . Loading the CA root certificate ..." );
Paul Bakker5121ce52009-01-03 21:22:43 +00002014 fflush( stdout );
2015
Hanno Becker623e7b42019-03-05 16:02:15 +00002016 if( strcmp( opt.ca_path, "none" ) == 0 ||
2017 strcmp( opt.ca_file, "none" ) == 0 )
2018 {
2019 ret = 0;
2020 }
2021 else
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002022#if defined(MBEDTLS_FS_IO)
Paul Bakker8d914582012-06-04 12:46:42 +00002023 if( strlen( opt.ca_path ) )
Hanno Becker623e7b42019-03-05 16:02:15 +00002024 ret = mbedtls_x509_crt_parse_path( &cacert, opt.ca_path );
Paul Bakker8d914582012-06-04 12:46:42 +00002025 else if( strlen( opt.ca_file ) )
Hanno Becker623e7b42019-03-05 16:02:15 +00002026 ret = mbedtls_x509_crt_parse_file( &cacert, opt.ca_file );
Paul Bakkered27a042013-04-18 22:46:23 +02002027 else
Paul Bakker5690efc2011-05-26 13:16:06 +00002028#endif
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002029#if defined(MBEDTLS_CERTS_C)
Hanno Becker2900b142019-02-01 08:15:06 +00002030 {
2031#if defined(MBEDTLS_PEM_PARSE_C)
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002032 for( i = 0; mbedtls_test_cas[i] != NULL; i++ )
Manuel Pégourié-Gonnard2f165062015-03-27 10:20:26 +01002033 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002034 ret = mbedtls_x509_crt_parse( &cacert,
2035 (const unsigned char *) mbedtls_test_cas[i],
2036 mbedtls_test_cas_len[i] );
Manuel Pégourié-Gonnard2f165062015-03-27 10:20:26 +01002037 if( ret != 0 )
2038 break;
2039 }
Hanno Becker2900b142019-02-01 08:15:06 +00002040 if( ret == 0 )
2041#endif /* MBEDTLS_PEM_PARSE_C */
2042 for( i = 0; mbedtls_test_cas_der[i] != NULL; i++ )
2043 {
2044 ret = mbedtls_x509_crt_parse_der( &cacert,
2045 (const unsigned char *) mbedtls_test_cas_der[i],
2046 mbedtls_test_cas_der_len[i] );
2047 if( ret != 0 )
2048 break;
2049 }
2050 }
Paul Bakker5690efc2011-05-26 13:16:06 +00002051#else
2052 {
2053 ret = 1;
Hanno Becker4cb1f4d2017-10-10 15:59:57 +01002054 mbedtls_printf( "MBEDTLS_CERTS_C not defined." );
Paul Bakker5690efc2011-05-26 13:16:06 +00002055 }
Hanno Becker2900b142019-02-01 08:15:06 +00002056#endif /* MBEDTLS_CERTS_C */
Paul Bakker42488232012-05-16 08:21:05 +00002057 if( ret < 0 )
Paul Bakker5121ce52009-01-03 21:22:43 +00002058 {
Hanno Becker4cb1f4d2017-10-10 15:59:57 +01002059 mbedtls_printf( " failed\n ! mbedtls_x509_crt_parse returned -0x%x\n\n",
2060 -ret );
Paul Bakker5121ce52009-01-03 21:22:43 +00002061 goto exit;
2062 }
2063
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002064 mbedtls_printf( " ok (%d skipped)\n", ret );
Paul Bakker5121ce52009-01-03 21:22:43 +00002065
2066 /*
2067 * 1.2. Load own certificate and private key
2068 *
2069 * (can be skipped if client authentication is not required)
2070 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002071 mbedtls_printf( " . Loading the client cert. and key..." );
Paul Bakker5121ce52009-01-03 21:22:43 +00002072 fflush( stdout );
2073
Hanno Becker623e7b42019-03-05 16:02:15 +00002074 if( strcmp( opt.crt_file, "none" ) == 0 )
2075 ret = 0;
2076 else
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002077#if defined(MBEDTLS_FS_IO)
Paul Bakker67968392010-07-18 08:28:20 +00002078 if( strlen( opt.crt_file ) )
Hanno Becker623e7b42019-03-05 16:02:15 +00002079 ret = mbedtls_x509_crt_parse_file( &clicert, opt.crt_file );
Paul Bakkered27a042013-04-18 22:46:23 +02002080 else
Paul Bakker5690efc2011-05-26 13:16:06 +00002081#endif
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002082#if defined(MBEDTLS_CERTS_C)
Hanno Becker16970d22017-10-10 15:56:37 +01002083 ret = mbedtls_x509_crt_parse( &clicert,
2084 (const unsigned char *) mbedtls_test_cli_crt,
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002085 mbedtls_test_cli_crt_len );
Paul Bakker5690efc2011-05-26 13:16:06 +00002086#else
2087 {
2088 ret = 1;
Hanno Beckera0c5ceb2018-12-05 16:49:42 +00002089 mbedtls_printf( "MBEDTLS_CERTS_C not defined." );
Paul Bakker5690efc2011-05-26 13:16:06 +00002090 }
2091#endif
Paul Bakker5121ce52009-01-03 21:22:43 +00002092 if( ret != 0 )
2093 {
Hanno Beckerdf4180a2017-10-27 13:43:58 +01002094 mbedtls_printf( " failed\n ! mbedtls_x509_crt_parse returned -0x%x\n\n",
2095 -ret );
Paul Bakker5121ce52009-01-03 21:22:43 +00002096 goto exit;
2097 }
2098
Hanno Becker623e7b42019-03-05 16:02:15 +00002099 if( strcmp( opt.key_file, "none" ) == 0 )
2100 ret = 0;
2101 else
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002102#if defined(MBEDTLS_FS_IO)
Paul Bakker67968392010-07-18 08:28:20 +00002103 if( strlen( opt.key_file ) )
Hanno Becker623e7b42019-03-05 16:02:15 +00002104 ret = mbedtls_pk_parse_keyfile( &pkey, opt.key_file, "" );
Paul Bakker67968392010-07-18 08:28:20 +00002105 else
Paul Bakker5690efc2011-05-26 13:16:06 +00002106#endif
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002107#if defined(MBEDTLS_CERTS_C)
Hanno Becker16970d22017-10-10 15:56:37 +01002108 ret = mbedtls_pk_parse_key( &pkey,
2109 (const unsigned char *) mbedtls_test_cli_key,
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002110 mbedtls_test_cli_key_len, NULL, 0 );
Paul Bakker5690efc2011-05-26 13:16:06 +00002111#else
2112 {
2113 ret = 1;
Hanno Beckera0c5ceb2018-12-05 16:49:42 +00002114 mbedtls_printf( "MBEDTLS_CERTS_C not defined." );
Paul Bakker5690efc2011-05-26 13:16:06 +00002115 }
2116#endif
Paul Bakker5121ce52009-01-03 21:22:43 +00002117 if( ret != 0 )
2118 {
Hanno Beckerdf4180a2017-10-27 13:43:58 +01002119 mbedtls_printf( " failed\n ! mbedtls_pk_parse_key returned -0x%x\n\n",
2120 -ret );
Paul Bakker5121ce52009-01-03 21:22:43 +00002121 goto exit;
2122 }
2123
Manuel Pégourié-Gonnardef68be42018-11-07 09:42:35 +01002124#if defined(MBEDTLS_USE_PSA_CRYPTO)
2125 if( opt.key_opaque != 0 )
2126 {
Manuel Pégourié-Gonnardcfdf8f42018-11-08 09:52:25 +01002127 if( ( ret = mbedtls_pk_wrap_as_opaque( &pkey, &key_slot,
2128 PSA_ALG_SHA_256 ) ) != 0 )
2129 {
2130 mbedtls_printf( " failed\n ! "
2131 "mbedtls_pk_wrap_as_opaque returned -0x%x\n\n", -ret );
2132 goto exit;
2133 }
Manuel Pégourié-Gonnardef68be42018-11-07 09:42:35 +01002134 }
2135#endif /* MBEDTLS_USE_PSA_CRYPTO */
2136
Manuel Pégourié-Gonnardcfdf8f42018-11-08 09:52:25 +01002137 mbedtls_printf( " ok (key type: %s)\n", mbedtls_pk_get_name( &pkey ) );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002138#endif /* MBEDTLS_X509_CRT_PARSE_C */
Paul Bakker5121ce52009-01-03 21:22:43 +00002139
2140 /*
2141 * 2. Start the connection
2142 */
Manuel Pégourié-Gonnard0d8780b2014-02-25 11:11:26 +01002143 if( opt.server_addr == NULL)
2144 opt.server_addr = opt.server_name;
2145
Manuel Pégourié-Gonnardc0d74942015-06-23 12:30:57 +02002146 mbedtls_printf( " . Connecting to %s/%s/%s...",
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002147 opt.transport == MBEDTLS_SSL_TRANSPORT_STREAM ? "tcp" : "udp",
Manuel Pégourié-Gonnard8a06d9c2014-03-23 18:23:41 +01002148 opt.server_addr, opt.server_port );
Paul Bakker5121ce52009-01-03 21:22:43 +00002149 fflush( stdout );
2150
Hanno Becker16970d22017-10-10 15:56:37 +01002151 if( ( ret = mbedtls_net_connect( &server_fd,
2152 opt.server_addr, opt.server_port,
2153 opt.transport == MBEDTLS_SSL_TRANSPORT_STREAM ?
2154 MBEDTLS_NET_PROTO_TCP : MBEDTLS_NET_PROTO_UDP ) ) != 0 )
Paul Bakker5121ce52009-01-03 21:22:43 +00002155 {
Hanno Beckerdf4180a2017-10-27 13:43:58 +01002156 mbedtls_printf( " failed\n ! mbedtls_net_connect returned -0x%x\n\n",
2157 -ret );
Paul Bakker5121ce52009-01-03 21:22:43 +00002158 goto exit;
2159 }
2160
Manuel Pégourié-Gonnard55753162014-02-26 13:47:08 +01002161 if( opt.nbio > 0 )
Manuel Pégourié-Gonnard5db64322015-06-30 15:40:39 +02002162 ret = mbedtls_net_set_nonblock( &server_fd );
Manuel Pégourié-Gonnard55753162014-02-26 13:47:08 +01002163 else
Manuel Pégourié-Gonnard5db64322015-06-30 15:40:39 +02002164 ret = mbedtls_net_set_block( &server_fd );
Manuel Pégourié-Gonnard55753162014-02-26 13:47:08 +01002165 if( ret != 0 )
2166 {
Hanno Beckerdf4180a2017-10-27 13:43:58 +01002167 mbedtls_printf( " failed\n ! net_set_(non)block() returned -0x%x\n\n",
2168 -ret );
Manuel Pégourié-Gonnard55753162014-02-26 13:47:08 +01002169 goto exit;
2170 }
2171
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002172 mbedtls_printf( " ok\n" );
Paul Bakker5121ce52009-01-03 21:22:43 +00002173
2174 /*
2175 * 3. Setup stuff
2176 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002177 mbedtls_printf( " . Setting up the SSL/TLS structure..." );
Paul Bakker5121ce52009-01-03 21:22:43 +00002178 fflush( stdout );
2179
Manuel Pégourié-Gonnard419d5ae2015-05-04 19:32:36 +02002180 if( ( ret = mbedtls_ssl_config_defaults( &conf,
2181 MBEDTLS_SSL_IS_CLIENT,
Manuel Pégourié-Gonnardb31c5f62015-06-17 13:53:47 +02002182 opt.transport,
2183 MBEDTLS_SSL_PRESET_DEFAULT ) ) != 0 )
Manuel Pégourié-Gonnarddef0bbe2015-05-04 14:56:36 +02002184 {
Hanno Beckerdf4180a2017-10-27 13:43:58 +01002185 mbedtls_printf( " failed\n ! mbedtls_ssl_config_defaults returned -0x%x\n\n",
2186 -ret );
Manuel Pégourié-Gonnarddef0bbe2015-05-04 14:56:36 +02002187 goto exit;
2188 }
2189
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002190#if defined(MBEDTLS_X509_CRT_PARSE_C)
Gilles Peskineef86ab22017-05-05 18:59:02 +02002191 /* The default algorithms profile disables SHA-1, but our tests still
2192 rely on it heavily. */
Gilles Peskinebc70a182017-05-09 15:59:24 +02002193 if( opt.allow_sha1 > 0 )
2194 {
2195 crt_profile_for_test.allowed_mds |= MBEDTLS_X509_ID_FLAG( MBEDTLS_MD_SHA1 );
2196 mbedtls_ssl_conf_cert_profile( &conf, &crt_profile_for_test );
2197 mbedtls_ssl_conf_sig_hashes( &conf, ssl_sig_hashes_for_test );
2198 }
Gilles Peskineef86ab22017-05-05 18:59:02 +02002199
Hanno Beckerbb425db2019-04-03 12:59:58 +01002200 if( opt.context_crt_cb == 0 )
2201 mbedtls_ssl_conf_verify( &conf, my_verify, NULL );
2202
Hanno Beckera1051b42019-02-26 11:38:29 +00002203 memset( peer_crt_info, 0, sizeof( peer_crt_info ) );
Gilles Peskineef86ab22017-05-05 18:59:02 +02002204#endif /* MBEDTLS_X509_CRT_PARSE_C */
Paul Bakker915275b2012-09-28 07:10:55 +00002205
Hanno Beckera0e20d02019-05-15 14:03:01 +01002206#if defined(MBEDTLS_SSL_DTLS_CONNECTION_ID)
Hanno Beckerb42ec0d2019-05-03 17:30:59 +01002207 if( opt.cid_enabled == 1 || opt.cid_enabled_renego == 1 )
Hanno Beckerad4a1372019-05-03 13:06:44 +01002208 {
Hanno Beckerb42ec0d2019-05-03 17:30:59 +01002209 if( opt.cid_enabled == 1 &&
2210 opt.cid_enabled_renego == 1 &&
2211 cid_len != cid_renego_len )
2212 {
2213 mbedtls_printf( "CID length must not change during renegotiation\n" );
2214 goto usage;
2215 }
2216
Hanno Beckerb42ec0d2019-05-03 17:30:59 +01002217 if( opt.cid_enabled == 1 )
Hanno Becker8367ccc2019-05-14 11:30:10 +01002218 ret = mbedtls_ssl_conf_cid( &conf, cid_len,
2219 MBEDTLS_SSL_UNEXPECTED_CID_IGNORE );
Hanno Beckerb42ec0d2019-05-03 17:30:59 +01002220 else
Hanno Becker8367ccc2019-05-14 11:30:10 +01002221 ret = mbedtls_ssl_conf_cid( &conf, cid_renego_len,
2222 MBEDTLS_SSL_UNEXPECTED_CID_IGNORE );
Hanno Beckerb42ec0d2019-05-03 17:30:59 +01002223
Hanno Beckerad4a1372019-05-03 13:06:44 +01002224 if( ret != 0 )
2225 {
Hanno Beckerd5eed422019-05-23 16:58:22 +01002226 mbedtls_printf( " failed\n ! mbedtls_ssl_conf_cid_len returned -%#04x\n\n",
2227 -ret );
Hanno Beckerad4a1372019-05-03 13:06:44 +01002228 goto exit;
2229 }
2230 }
Hanno Beckera0e20d02019-05-15 14:03:01 +01002231#endif /* MBEDTLS_SSL_DTLS_CONNECTION_ID */
Hanno Beckerad4a1372019-05-03 13:06:44 +01002232
Manuel Pégourié-Gonnardfa44f202015-03-27 17:52:25 +01002233 if( opt.auth_mode != DFL_AUTH_MODE )
Manuel Pégourié-Gonnard6729e792015-05-11 09:50:24 +02002234 mbedtls_ssl_conf_authmode( &conf, opt.auth_mode );
Paul Bakker5121ce52009-01-03 21:22:43 +00002235
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002236#if defined(MBEDTLS_SSL_PROTO_DTLS)
Manuel Pégourié-Gonnardd823bd02014-10-01 14:40:56 +02002237 if( opt.hs_to_min != DFL_HS_TO_MIN || opt.hs_to_max != DFL_HS_TO_MAX )
Hanno Becker16970d22017-10-10 15:56:37 +01002238 mbedtls_ssl_conf_handshake_timeout( &conf, opt.hs_to_min,
2239 opt.hs_to_max );
Manuel Pégourié-Gonnardb747c6c2018-08-12 13:28:53 +02002240
Hanno Becker4d615912018-08-14 13:33:30 +01002241 if( opt.dgram_packing != DFL_DGRAM_PACKING )
Hanno Becker1841b0a2018-08-24 11:13:57 +01002242 mbedtls_ssl_set_datagram_packing( &ssl, opt.dgram_packing );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002243#endif /* MBEDTLS_SSL_PROTO_DTLS */
Manuel Pégourié-Gonnardd823bd02014-10-01 14:40:56 +02002244
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002245#if defined(MBEDTLS_SSL_MAX_FRAGMENT_LENGTH)
Manuel Pégourié-Gonnard6729e792015-05-11 09:50:24 +02002246 if( ( ret = mbedtls_ssl_conf_max_frag_len( &conf, opt.mfl_code ) ) != 0 )
Manuel Pégourié-Gonnardc5fd3912014-07-08 14:05:52 +02002247 {
Hanno Beckerdf4180a2017-10-27 13:43:58 +01002248 mbedtls_printf( " failed\n ! mbedtls_ssl_conf_max_frag_len returned %d\n\n",
2249 ret );
Manuel Pégourié-Gonnardc5fd3912014-07-08 14:05:52 +02002250 goto exit;
2251 }
Paul Bakker05decb22013-08-15 13:33:48 +02002252#endif
Manuel Pégourié-Gonnard0df6b1f2013-07-16 13:39:57 +02002253
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002254#if defined(MBEDTLS_SSL_TRUNCATED_HMAC)
Manuel Pégourié-Gonnard265fe992015-01-09 12:43:35 +01002255 if( opt.trunc_hmac != DFL_TRUNC_HMAC )
Manuel Pégourié-Gonnard6729e792015-05-11 09:50:24 +02002256 mbedtls_ssl_conf_truncated_hmac( &conf, opt.trunc_hmac );
Paul Bakker1f2bc622013-08-15 13:45:55 +02002257#endif
Manuel Pégourié-Gonnarde980a992013-07-19 11:08:52 +02002258
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002259#if defined(MBEDTLS_SSL_EXTENDED_MASTER_SECRET)
Manuel Pégourié-Gonnard367381f2014-10-20 18:40:56 +02002260 if( opt.extended_ms != DFL_EXTENDED_MS )
Manuel Pégourié-Gonnard6729e792015-05-11 09:50:24 +02002261 mbedtls_ssl_conf_extended_master_secret( &conf, opt.extended_ms );
Manuel Pégourié-Gonnard367381f2014-10-20 18:40:56 +02002262#endif
2263
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002264#if defined(MBEDTLS_SSL_ENCRYPT_THEN_MAC)
Manuel Pégourié-Gonnard699cafa2014-10-27 13:57:03 +01002265 if( opt.etm != DFL_ETM )
Manuel Pégourié-Gonnard6729e792015-05-11 09:50:24 +02002266 mbedtls_ssl_conf_encrypt_then_mac( &conf, opt.etm );
Manuel Pégourié-Gonnard699cafa2014-10-27 13:57:03 +01002267#endif
2268
Ron Eldorb7fd64c2019-05-12 11:03:32 +03002269#if defined(MBEDTLS_SSL_EXPORT_KEYS)
2270 if( opt.eap_tls != 0 )
Hanno Becker48f3a3d2019-08-29 06:31:22 +01002271 {
Ron Eldorb7fd64c2019-05-12 11:03:32 +03002272 mbedtls_ssl_conf_export_keys_ext_cb( &conf, eap_tls_key_derivation,
2273 &eap_tls_keying );
Hanno Becker48f3a3d2019-08-29 06:31:22 +01002274 }
2275 else if( opt.nss_keylog != 0 )
2276 {
2277 mbedtls_ssl_conf_export_keys_ext_cb( &conf,
2278 nss_keylog_export,
2279 NULL );
2280 }
Ron Eldorb7fd64c2019-05-12 11:03:32 +03002281#endif
2282
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002283#if defined(MBEDTLS_SSL_CBC_RECORD_SPLITTING)
Manuel Pégourié-Gonnardc82ee352015-01-07 16:35:25 +01002284 if( opt.recsplit != DFL_RECSPLIT )
Manuel Pégourié-Gonnard6729e792015-05-11 09:50:24 +02002285 mbedtls_ssl_conf_cbc_record_splitting( &conf, opt.recsplit
Hanno Becker16970d22017-10-10 15:56:37 +01002286 ? MBEDTLS_SSL_CBC_RECORD_SPLITTING_ENABLED
2287 : MBEDTLS_SSL_CBC_RECORD_SPLITTING_DISABLED );
Manuel Pégourié-Gonnardc82ee352015-01-07 16:35:25 +01002288#endif
2289
Manuel Pégourié-Gonnard90966822015-06-11 17:02:29 +02002290#if defined(MBEDTLS_DHM_C)
2291 if( opt.dhmlen != DFL_DHMLEN )
2292 mbedtls_ssl_conf_dhm_min_bitlen( &conf, opt.dhmlen );
2293#endif
2294
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002295#if defined(MBEDTLS_SSL_ALPN)
Manuel Pégourié-Gonnard1bd22812014-04-05 14:34:07 +02002296 if( opt.alpn_string != NULL )
Manuel Pégourié-Gonnard6729e792015-05-11 09:50:24 +02002297 if( ( ret = mbedtls_ssl_conf_alpn_protocols( &conf, alpn_list ) ) != 0 )
Manuel Pégourié-Gonnardc5fd3912014-07-08 14:05:52 +02002298 {
Hanno Beckerdf4180a2017-10-27 13:43:58 +01002299 mbedtls_printf( " failed\n ! mbedtls_ssl_conf_alpn_protocols returned %d\n\n",
2300 ret );
Manuel Pégourié-Gonnardc5fd3912014-07-08 14:05:52 +02002301 goto exit;
2302 }
Manuel Pégourié-Gonnard1bd22812014-04-05 14:34:07 +02002303#endif
2304
Philippe Antoine986b6f22019-06-07 15:04:32 +02002305 if (opt.reproducible)
2306 {
Philippe Antoinef91b3722019-06-11 16:02:43 +02002307#if defined(MBEDTLS_HAVE_TIME)
Philippe Antoineaa4d1522019-06-06 21:24:31 +02002308#if defined(MBEDTLS_PLATFORM_TIME_ALT)
2309 mbedtls_platform_set_time( dummy_constant_time );
2310#else
Philippe Antoine7c9d7242019-06-11 12:11:36 +02002311 fprintf( stderr, "Warning: reproducible option used without constant time\n" );
Philippe Antoineaa4d1522019-06-06 21:24:31 +02002312#endif
Philippe Antoine0ff84fb2019-06-11 12:15:17 +02002313#endif
Philippe Antoine986b6f22019-06-07 15:04:32 +02002314 }
Manuel Pégourié-Gonnard6729e792015-05-11 09:50:24 +02002315 mbedtls_ssl_conf_rng( &conf, mbedtls_ctr_drbg_random, &ctr_drbg );
2316 mbedtls_ssl_conf_dbg( &conf, my_debug, stdout );
Manuel Pégourié-Gonnard55753162014-02-26 13:47:08 +01002317
Manuel Pégourié-Gonnard6729e792015-05-11 09:50:24 +02002318 mbedtls_ssl_conf_read_timeout( &conf, opt.read_timeout );
Paul Bakker5121ce52009-01-03 21:22:43 +00002319
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002320#if defined(MBEDTLS_SSL_SESSION_TICKETS)
Manuel Pégourié-Gonnardb596abf2015-05-20 10:45:29 +02002321 mbedtls_ssl_conf_session_tickets( &conf, opt.tickets );
Paul Bakkera503a632013-08-14 13:48:06 +02002322#endif
Manuel Pégourié-Gonnardaa0d4d12013-08-03 13:02:31 +02002323
Paul Bakker645ce3a2012-10-31 12:32:41 +00002324 if( opt.force_ciphersuite[0] != DFL_FORCE_CIPHER )
Manuel Pégourié-Gonnard6729e792015-05-11 09:50:24 +02002325 mbedtls_ssl_conf_ciphersuites( &conf, opt.force_ciphersuite );
Manuel Pégourié-Gonnardd42b7c82015-03-20 19:44:04 +00002326
Manuel Pégourié-Gonnard66dc5552015-05-14 12:28:21 +02002327#if defined(MBEDTLS_ARC4_C)
Manuel Pégourié-Gonnardd42b7c82015-03-20 19:44:04 +00002328 if( opt.arc4 != DFL_ARC4 )
Manuel Pégourié-Gonnard6729e792015-05-11 09:50:24 +02002329 mbedtls_ssl_conf_arc4_support( &conf, opt.arc4 );
Manuel Pégourié-Gonnard66dc5552015-05-14 12:28:21 +02002330#endif
Paul Bakker51936882011-02-20 16:05:58 +00002331
Manuel Pégourié-Gonnard85d915b2014-11-03 20:10:36 +01002332 if( opt.allow_legacy != DFL_ALLOW_LEGACY )
Manuel Pégourié-Gonnard6729e792015-05-11 09:50:24 +02002333 mbedtls_ssl_conf_legacy_renegotiation( &conf, opt.allow_legacy );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002334#if defined(MBEDTLS_SSL_RENEGOTIATION)
Manuel Pégourié-Gonnard6729e792015-05-11 09:50:24 +02002335 mbedtls_ssl_conf_renegotiation( &conf, opt.renegotiation );
Manuel Pégourié-Gonnard615e6772014-11-03 08:23:14 +01002336#endif
Paul Bakker48916f92012-09-16 19:57:18 +00002337
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002338#if defined(MBEDTLS_X509_CRT_PARSE_C)
Manuel Pégourié-Gonnard3e1b1782014-02-27 13:35:00 +01002339 if( strcmp( opt.ca_path, "none" ) != 0 &&
2340 strcmp( opt.ca_file, "none" ) != 0 )
2341 {
Jarno Lamsa1b4a2ba2019-03-27 17:55:27 +02002342#if defined(MBEDTLS_X509_TRUSTED_CERTIFICATE_CALLBACK)
2343 if( opt.ca_callback != 0 )
Hanno Beckercbb59032019-03-28 14:14:22 +00002344 mbedtls_ssl_conf_ca_cb( &conf, ca_callback, &cacert );
Jarno Lamsa1b4a2ba2019-03-27 17:55:27 +02002345 else
2346#endif
2347 mbedtls_ssl_conf_ca_chain( &conf, &cacert, NULL );
Manuel Pégourié-Gonnard3e1b1782014-02-27 13:35:00 +01002348 }
2349 if( strcmp( opt.crt_file, "none" ) != 0 &&
2350 strcmp( opt.key_file, "none" ) != 0 )
2351 {
Manuel Pégourié-Gonnard6729e792015-05-11 09:50:24 +02002352 if( ( ret = mbedtls_ssl_conf_own_cert( &conf, &clicert, &pkey ) ) != 0 )
Manuel Pégourié-Gonnardc5fd3912014-07-08 14:05:52 +02002353 {
Hanno Beckerdf4180a2017-10-27 13:43:58 +01002354 mbedtls_printf( " failed\n ! mbedtls_ssl_conf_own_cert returned %d\n\n",
2355 ret );
Manuel Pégourié-Gonnardc5fd3912014-07-08 14:05:52 +02002356 goto exit;
2357 }
Manuel Pégourié-Gonnard3e1b1782014-02-27 13:35:00 +01002358 }
Paul Bakkered27a042013-04-18 22:46:23 +02002359#endif
2360
Hanno Beckere6706e62017-05-15 16:05:15 +01002361#if defined(MBEDTLS_ECP_C)
2362 if( opt.curves != NULL &&
2363 strcmp( opt.curves, "default" ) != 0 )
2364 {
2365 mbedtls_ssl_conf_curves( &conf, curve_list );
2366 }
2367#endif
2368
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002369#if defined(MBEDTLS_KEY_EXCHANGE__SOME__PSK_ENABLED)
Hanno Beckere86964c2018-10-23 11:37:50 +01002370#if defined(MBEDTLS_USE_PSA_CRYPTO)
Hanno Becker1d911cd2018-11-15 13:06:09 +00002371 if( opt.psk_opaque != 0 )
Hanno Beckere86964c2018-10-23 11:37:50 +01002372 {
Janos Follathbe4efc22019-08-08 11:38:18 +01002373 key_attributes = psa_key_attributes_init();
2374 psa_set_key_usage_flags( &key_attributes, PSA_KEY_USAGE_DERIVE );
2375 psa_set_key_algorithm( &key_attributes, alg );
2376 psa_set_key_type( &key_attributes, PSA_KEY_TYPE_DERIVE );
Hanno Beckere86964c2018-10-23 11:37:50 +01002377
Janos Follathbe4efc22019-08-08 11:38:18 +01002378 status = psa_import_key( &key_attributes, psk, psk_len, &slot );
Hanno Beckere86964c2018-10-23 11:37:50 +01002379 if( status != PSA_SUCCESS )
2380 {
2381 ret = MBEDTLS_ERR_SSL_HW_ACCEL_FAILED;
2382 goto exit;
2383 }
2384
2385 if( ( ret = mbedtls_ssl_conf_psk_opaque( &conf, slot,
2386 (const unsigned char *) opt.psk_identity,
Hanno Becker5cd607b2018-11-05 12:52:42 +00002387 strlen( opt.psk_identity ) ) ) != 0 )
Hanno Beckere86964c2018-10-23 11:37:50 +01002388 {
2389 mbedtls_printf( " failed\n ! mbedtls_ssl_conf_psk_opaque returned %d\n\n",
2390 ret );
2391 goto exit;
2392 }
2393 }
2394 else
2395#endif /* MBEDTLS_USE_PSA_CRYPTO */
Piotr Nowicki9926eaf2019-11-20 14:54:36 +01002396 if( psk_len > 0 )
Manuel Pégourié-Gonnardc5fd3912014-07-08 14:05:52 +02002397 {
Piotr Nowicki9926eaf2019-11-20 14:54:36 +01002398 ret = mbedtls_ssl_conf_psk( &conf, psk, psk_len,
2399 (const unsigned char *) opt.psk_identity,
2400 strlen( opt.psk_identity ) );
2401 if( ret != 0 )
2402 {
2403 mbedtls_printf( " failed\n ! mbedtls_ssl_conf_psk returned %d\n\n", ret );
2404 goto exit;
2405 }
Manuel Pégourié-Gonnardc5fd3912014-07-08 14:05:52 +02002406 }
Hanno Beckere86964c2018-10-23 11:37:50 +01002407#endif /* MBEDTLS_KEY_EXCHANGE__SOME__PSK_ENABLED */
Paul Bakkered27a042013-04-18 22:46:23 +02002408
Manuel Pégourié-Gonnard8c8be1e2015-03-31 14:21:11 +02002409 if( opt.min_version != DFL_MIN_VERSION )
Hanno Becker16970d22017-10-10 15:56:37 +01002410 mbedtls_ssl_conf_min_version( &conf, MBEDTLS_SSL_MAJOR_VERSION_3,
2411 opt.min_version );
Manuel Pégourié-Gonnard864a81f2014-02-10 14:25:10 +01002412
Manuel Pégourié-Gonnard8c8be1e2015-03-31 14:21:11 +02002413 if( opt.max_version != DFL_MAX_VERSION )
Hanno Becker16970d22017-10-10 15:56:37 +01002414 mbedtls_ssl_conf_max_version( &conf, MBEDTLS_SSL_MAJOR_VERSION_3,
2415 opt.max_version );
Paul Bakker1d29fb52012-09-28 13:28:45 +00002416
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002417#if defined(MBEDTLS_SSL_FALLBACK_SCSV)
Manuel Pégourié-Gonnard1cbd39d2014-10-20 13:34:59 +02002418 if( opt.fallback != DFL_FALLBACK )
Manuel Pégourié-Gonnard6729e792015-05-11 09:50:24 +02002419 mbedtls_ssl_conf_fallback( &conf, opt.fallback );
Manuel Pégourié-Gonnard1cbd39d2014-10-20 13:34:59 +02002420#endif
Paul Bakker5121ce52009-01-03 21:22:43 +00002421
Manuel Pégourié-Gonnard06939ce2015-05-11 11:25:46 +02002422 if( ( ret = mbedtls_ssl_setup( &ssl, &conf ) ) != 0 )
2423 {
Hanno Beckerdf4180a2017-10-27 13:43:58 +01002424 mbedtls_printf( " failed\n ! mbedtls_ssl_setup returned -0x%x\n\n",
2425 -ret );
Manuel Pégourié-Gonnard06939ce2015-05-11 11:25:46 +02002426 goto exit;
2427 }
2428
2429#if defined(MBEDTLS_X509_CRT_PARSE_C)
2430 if( ( ret = mbedtls_ssl_set_hostname( &ssl, opt.server_name ) ) != 0 )
2431 {
Hanno Beckerdf4180a2017-10-27 13:43:58 +01002432 mbedtls_printf( " failed\n ! mbedtls_ssl_set_hostname returned %d\n\n",
2433 ret );
Manuel Pégourié-Gonnard06939ce2015-05-11 11:25:46 +02002434 goto exit;
2435 }
2436#endif
2437
Manuel Pégourié-Gonnard70905a72015-09-16 11:08:34 +02002438#if defined(MBEDTLS_KEY_EXCHANGE_ECJPAKE_ENABLED)
2439 if( opt.ecjpake_pw != DFL_ECJPAKE_PW )
2440 {
2441 if( ( ret = mbedtls_ssl_set_hs_ecjpake_password( &ssl,
2442 (const unsigned char *) opt.ecjpake_pw,
2443 strlen( opt.ecjpake_pw ) ) ) != 0 )
2444 {
Hanno Beckerdf4180a2017-10-27 13:43:58 +01002445 mbedtls_printf( " failed\n ! mbedtls_ssl_set_hs_ecjpake_password returned %d\n\n",
2446 ret );
Manuel Pégourié-Gonnard70905a72015-09-16 11:08:34 +02002447 goto exit;
2448 }
2449 }
2450#endif
2451
Hanno Beckerbb425db2019-04-03 12:59:58 +01002452#if defined(MBEDTLS_X509_CRT_PARSE_C)
2453 if( opt.context_crt_cb == 1 )
2454 mbedtls_ssl_set_verify( &ssl, my_verify, NULL );
2455#endif /* MBEDTLS_X509_CRT_PARSE_C */
2456
Hanno Becker8b1af2f2019-07-03 17:02:43 +01002457 io_ctx.ssl = &ssl;
2458 io_ctx.net = &server_fd;
2459 mbedtls_ssl_set_bio( &ssl, &io_ctx, send_cb, recv_cb,
2460 opt.nbio == 0 ? recv_timeout_cb : NULL );
Manuel Pégourié-Gonnard06939ce2015-05-11 11:25:46 +02002461
Hanno Beckera0e20d02019-05-15 14:03:01 +01002462#if defined(MBEDTLS_SSL_DTLS_CONNECTION_ID)
Hanno Becker90cb3592019-04-09 17:24:19 +01002463 if( opt.transport == MBEDTLS_SSL_TRANSPORT_DATAGRAM )
2464 {
2465 if( ( ret = mbedtls_ssl_set_cid( &ssl, opt.cid_enabled,
2466 cid, cid_len ) ) != 0 )
2467 {
2468 mbedtls_printf( " failed\n ! mbedtls_ssl_set_cid returned %d\n\n",
2469 ret );
2470 goto exit;
2471 }
2472 }
Hanno Beckera0e20d02019-05-15 14:03:01 +01002473#endif /* MBEDTLS_SSL_DTLS_CONNECTION_ID */
Hanno Becker90cb3592019-04-09 17:24:19 +01002474
Manuel Pégourié-Gonnard6e7aaca2018-08-20 10:37:23 +02002475#if defined(MBEDTLS_SSL_PROTO_DTLS)
2476 if( opt.dtls_mtu != DFL_DTLS_MTU )
2477 mbedtls_ssl_set_mtu( &ssl, opt.dtls_mtu );
2478#endif
2479
Manuel Pégourié-Gonnardd2377e72015-05-13 13:58:56 +02002480#if defined(MBEDTLS_TIMING_C)
Manuel Pégourié-Gonnarde3c41ad2015-05-13 10:04:32 +02002481 mbedtls_ssl_set_timer_cb( &ssl, &timer, mbedtls_timing_set_delay,
2482 mbedtls_timing_get_delay );
Manuel Pégourié-Gonnardd2377e72015-05-13 13:58:56 +02002483#endif
Manuel Pégourié-Gonnarde3c41ad2015-05-13 10:04:32 +02002484
Manuel Pégourié-Gonnardb3c83072017-05-16 08:50:24 +02002485#if defined(MBEDTLS_ECP_RESTARTABLE)
2486 if( opt.ec_max_ops != DFL_EC_MAX_OPS )
2487 mbedtls_ecp_set_max_ops( opt.ec_max_ops );
2488#endif
2489
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002490 mbedtls_printf( " ok\n" );
Manuel Pégourié-Gonnard798f15a2014-03-26 18:12:04 +01002491
Paul Bakker5121ce52009-01-03 21:22:43 +00002492 /*
2493 * 4. Handshake
2494 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002495 mbedtls_printf( " . Performing the SSL/TLS handshake..." );
Paul Bakker5121ce52009-01-03 21:22:43 +00002496 fflush( stdout );
2497
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002498 while( ( ret = mbedtls_ssl_handshake( &ssl ) ) != 0 )
Paul Bakker5121ce52009-01-03 21:22:43 +00002499 {
Manuel Pégourié-Gonnardb3c83072017-05-16 08:50:24 +02002500 if( ret != MBEDTLS_ERR_SSL_WANT_READ &&
2501 ret != MBEDTLS_ERR_SSL_WANT_WRITE &&
Manuel Pégourié-Gonnard558da9c2018-06-13 12:02:12 +02002502 ret != MBEDTLS_ERR_SSL_CRYPTO_IN_PROGRESS )
Paul Bakker40e46942009-01-03 21:51:57 +00002503 {
Hanno Beckerdf4180a2017-10-27 13:43:58 +01002504 mbedtls_printf( " failed\n ! mbedtls_ssl_handshake returned -0x%x\n",
2505 -ret );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002506 if( ret == MBEDTLS_ERR_X509_CERT_VERIFY_FAILED )
2507 mbedtls_printf(
Manuel Pégourié-Gonnardfcf2fc22014-03-11 11:10:27 +01002508 " Unable to verify the server's certificate. "
2509 "Either it is invalid,\n"
2510 " or you didn't set ca_file or ca_path "
2511 "to an appropriate value.\n"
2512 " Alternatively, you may want to use "
2513 "auth_mode=optional for testing purposes.\n" );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002514 mbedtls_printf( "\n" );
Paul Bakker5121ce52009-01-03 21:22:43 +00002515 goto exit;
Paul Bakker40e46942009-01-03 21:51:57 +00002516 }
Hanno Becker16970d22017-10-10 15:56:37 +01002517
Manuel Pégourié-Gonnardda19f4c2018-06-12 12:40:54 +02002518#if defined(MBEDTLS_ECP_RESTARTABLE)
Manuel Pégourié-Gonnard25781f92018-10-15 15:28:16 +02002519 if( ret == MBEDTLS_ERR_SSL_CRYPTO_IN_PROGRESS )
2520 continue;
Manuel Pégourié-Gonnardda19f4c2018-06-12 12:40:54 +02002521#endif
2522
Hanno Becker16970d22017-10-10 15:56:37 +01002523 /* For event-driven IO, wait for socket to become available */
2524 if( opt.event == 1 /* level triggered IO */ )
2525 {
2526#if defined(MBEDTLS_TIMING_C)
Hanno Beckeradfa64f2018-03-15 11:35:07 +00002527 ret = idle( &server_fd, &timer, ret );
Hanno Becker16970d22017-10-10 15:56:37 +01002528#else
Hanno Beckeradfa64f2018-03-15 11:35:07 +00002529 ret = idle( &server_fd, ret );
Hanno Becker16970d22017-10-10 15:56:37 +01002530#endif
Hanno Beckeradfa64f2018-03-15 11:35:07 +00002531 if( ret != 0 )
2532 goto exit;
Hanno Becker16970d22017-10-10 15:56:37 +01002533 }
Paul Bakker5121ce52009-01-03 21:22:43 +00002534 }
2535
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002536 mbedtls_printf( " ok\n [ Protocol is %s ]\n [ Ciphersuite is %s ]\n",
Hanno Becker16970d22017-10-10 15:56:37 +01002537 mbedtls_ssl_get_version( &ssl ),
2538 mbedtls_ssl_get_ciphersuite( &ssl ) );
Paul Bakker5121ce52009-01-03 21:22:43 +00002539
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002540 if( ( ret = mbedtls_ssl_get_record_expansion( &ssl ) ) >= 0 )
2541 mbedtls_printf( " [ Record expansion is %d ]\n", ret );
Manuel Pégourié-Gonnard9b35f182014-10-14 17:47:31 +02002542 else
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002543 mbedtls_printf( " [ Record expansion is unknown (compression) ]\n" );
Manuel Pégourié-Gonnard9b35f182014-10-14 17:47:31 +02002544
Manuel Pégourié-Gonnarda2cda6b2015-08-31 18:30:52 +02002545#if defined(MBEDTLS_SSL_MAX_FRAGMENT_LENGTH)
2546 mbedtls_printf( " [ Maximum fragment length is %u ]\n",
2547 (unsigned int) mbedtls_ssl_get_max_frag_len( &ssl ) );
2548#endif
2549
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002550#if defined(MBEDTLS_SSL_ALPN)
Manuel Pégourié-Gonnard1bd22812014-04-05 14:34:07 +02002551 if( opt.alpn_string != NULL )
2552 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002553 const char *alp = mbedtls_ssl_get_alpn_protocol( &ssl );
2554 mbedtls_printf( " [ Application Layer Protocol is %s ]\n",
Manuel Pégourié-Gonnard1bd22812014-04-05 14:34:07 +02002555 alp ? alp : "(none)" );
2556 }
2557#endif
2558
Ron Eldorb7fd64c2019-05-12 11:03:32 +03002559#if defined(MBEDTLS_SSL_EXPORT_KEYS)
Ron Eldor51d3ab52019-05-12 14:54:30 +03002560 if( opt.eap_tls != 0 )
Ron Eldorb7fd64c2019-05-12 11:03:32 +03002561 {
2562 size_t j = 0;
Ron Eldor51d3ab52019-05-12 14:54:30 +03002563
2564 if( ( ret = mbedtls_ssl_tls_prf( eap_tls_keying.tls_prf_type,
2565 eap_tls_keying.master_secret,
2566 sizeof( eap_tls_keying.master_secret ),
2567 eap_tls_label,
2568 eap_tls_keying.randbytes,
2569 sizeof( eap_tls_keying.randbytes ),
2570 eap_tls_keymaterial,
2571 sizeof( eap_tls_keymaterial ) ) )
2572 != 0 )
2573 {
2574 mbedtls_printf( " failed\n ! mbedtls_ssl_tls_prf returned -0x%x\n\n",
2575 -ret );
2576 goto exit;
2577 }
2578
Ron Eldorb7fd64c2019-05-12 11:03:32 +03002579 mbedtls_printf( " EAP-TLS key material is:" );
2580 for( j = 0; j < sizeof( eap_tls_keymaterial ); j++ )
2581 {
2582 if( j % 8 == 0 )
2583 mbedtls_printf("\n ");
2584 mbedtls_printf("%02x ", eap_tls_keymaterial[j] );
2585 }
2586 mbedtls_printf("\n");
2587
Ron Eldor51d3ab52019-05-12 14:54:30 +03002588 if( ( ret = mbedtls_ssl_tls_prf( eap_tls_keying.tls_prf_type, NULL, 0,
Ron Eldor51c45072019-05-15 17:49:54 +03002589 eap_tls_label,
2590 eap_tls_keying.randbytes,
2591 sizeof( eap_tls_keying.randbytes ),
2592 eap_tls_iv,
2593 sizeof( eap_tls_iv ) ) ) != 0 )
Ron Eldor51d3ab52019-05-12 14:54:30 +03002594 {
2595 mbedtls_printf( " failed\n ! mbedtls_ssl_tls_prf returned -0x%x\n\n",
2596 -ret );
2597 goto exit;
2598 }
2599
Ron Eldorb7fd64c2019-05-12 11:03:32 +03002600 mbedtls_printf( " EAP-TLS IV is:" );
2601 for( j = 0; j < sizeof( eap_tls_iv ); j++ )
2602 {
2603 if( j % 8 == 0 )
2604 mbedtls_printf("\n ");
2605 mbedtls_printf("%02x ", eap_tls_iv[j] );
2606 }
2607 mbedtls_printf("\n");
2608 }
2609#endif
Manuel Pégourié-Gonnardaaa1eab2013-07-30 13:43:43 +02002610 if( opt.reconnect != 0 )
2611 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002612 mbedtls_printf(" . Saving session for reuse..." );
Manuel Pégourié-Gonnardaaa1eab2013-07-30 13:43:43 +02002613 fflush( stdout );
2614
Manuel Pégourié-Gonnarda7c37652019-05-20 12:46:26 +02002615 if( opt.reco_mode == 1 )
Manuel Pégourié-Gonnard21548632019-05-16 11:39:42 +02002616 {
Manuel Pégourié-Gonnard26f982f2019-05-21 11:01:32 +02002617 /* free any previously saved data */
Manuel Pégourié-Gonnard4d591d62019-05-24 10:26:41 +02002618 if( session_data != NULL )
2619 {
2620 mbedtls_platform_zeroize( session_data, session_data_len );
2621 mbedtls_free( session_data );
2622 session_data = NULL;
2623 }
Manuel Pégourié-Gonnard26f982f2019-05-21 11:01:32 +02002624
2625 /* get size of the buffer needed */
2626 mbedtls_ssl_session_save( mbedtls_ssl_get_session_pointer( &ssl ),
2627 NULL, 0, &session_data_len );
2628 session_data = mbedtls_calloc( 1, session_data_len );
2629 if( session_data == NULL )
2630 {
2631 mbedtls_printf( " failed\n ! alloc %u bytes for session data\n",
2632 (unsigned) session_data_len );
2633 ret = MBEDTLS_ERR_SSL_ALLOC_FAILED;
2634 goto exit;
2635 }
2636
2637 /* actually save session data */
Manuel Pégourié-Gonnarda7c37652019-05-20 12:46:26 +02002638 if( ( ret = mbedtls_ssl_session_save( mbedtls_ssl_get_session_pointer( &ssl ),
Manuel Pégourié-Gonnard26f982f2019-05-21 11:01:32 +02002639 session_data, session_data_len,
Manuel Pégourié-Gonnarda7c37652019-05-20 12:46:26 +02002640 &session_data_len ) ) != 0 )
2641 {
2642 mbedtls_printf( " failed\n ! mbedtls_ssl_session_saved returned -0x%04x\n\n",
2643 -ret );
2644 goto exit;
2645 }
2646 }
2647 else
2648 {
2649 if( ( ret = mbedtls_ssl_get_session( &ssl, &saved_session ) ) != 0 )
2650 {
2651 mbedtls_printf( " failed\n ! mbedtls_ssl_get_session returned -0x%x\n\n",
2652 -ret );
2653 goto exit;
2654 }
Manuel Pégourié-Gonnard21548632019-05-16 11:39:42 +02002655 }
2656
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002657 mbedtls_printf( " ok\n" );
Manuel Pégourié-Gonnard26f982f2019-05-21 11:01:32 +02002658
2659 if( opt.reco_mode == 1 )
2660 {
2661 mbedtls_printf( " [ Saved %u bytes of session data]\n",
2662 (unsigned) session_data_len );
2663 }
Manuel Pégourié-Gonnardaaa1eab2013-07-30 13:43:43 +02002664 }
2665
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002666#if defined(MBEDTLS_X509_CRT_PARSE_C)
Paul Bakker5121ce52009-01-03 21:22:43 +00002667 /*
2668 * 5. Verify the server certificate
2669 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002670 mbedtls_printf( " . Verifying peer X.509 certificate..." );
Paul Bakker5121ce52009-01-03 21:22:43 +00002671
Manuel Pégourié-Gonnarde6ef16f2015-05-11 19:54:43 +02002672 if( ( flags = mbedtls_ssl_get_verify_result( &ssl ) ) != 0 )
Paul Bakker5121ce52009-01-03 21:22:43 +00002673 {
Manuel Pégourié-Gonnard89addc42015-04-20 10:56:18 +01002674 char vrfy_buf[512];
2675
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002676 mbedtls_printf( " failed\n" );
Paul Bakker5121ce52009-01-03 21:22:43 +00002677
Hanno Becker16970d22017-10-10 15:56:37 +01002678 mbedtls_x509_crt_verify_info( vrfy_buf, sizeof( vrfy_buf ),
2679 " ! ", flags );
Paul Bakker5121ce52009-01-03 21:22:43 +00002680
Manuel Pégourié-Gonnard89addc42015-04-20 10:56:18 +01002681 mbedtls_printf( "%s\n", vrfy_buf );
Paul Bakker5121ce52009-01-03 21:22:43 +00002682 }
2683 else
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002684 mbedtls_printf( " ok\n" );
Paul Bakker5121ce52009-01-03 21:22:43 +00002685
Hanno Beckera9766c2c2019-02-25 17:43:18 +00002686 mbedtls_printf( " . Peer certificate information ...\n" );
2687 mbedtls_printf( "%s\n", peer_crt_info );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002688#endif /* MBEDTLS_X509_CRT_PARSE_C */
Paul Bakker5121ce52009-01-03 21:22:43 +00002689
Hanno Beckera0e20d02019-05-15 14:03:01 +01002690#if defined(MBEDTLS_SSL_DTLS_CONNECTION_ID)
Hanno Beckerb42ec0d2019-05-03 17:30:59 +01002691 ret = report_cid_usage( &ssl, "initial handshake" );
2692 if( ret != 0 )
2693 goto exit;
2694
Hanno Becker90cb3592019-04-09 17:24:19 +01002695 if( opt.transport == MBEDTLS_SSL_TRANSPORT_DATAGRAM )
2696 {
Hanno Beckerb42ec0d2019-05-03 17:30:59 +01002697 if( ( ret = mbedtls_ssl_set_cid( &ssl, opt.cid_enabled_renego,
2698 cid_renego,
2699 cid_renego_len ) ) != 0 )
Hanno Becker90cb3592019-04-09 17:24:19 +01002700 {
Hanno Beckerb42ec0d2019-05-03 17:30:59 +01002701 mbedtls_printf( " failed\n ! mbedtls_ssl_set_cid returned %d\n\n",
2702 ret );
2703 return( ret );
Hanno Becker90cb3592019-04-09 17:24:19 +01002704 }
2705 }
Hanno Beckera0e20d02019-05-15 14:03:01 +01002706#endif /* MBEDTLS_SSL_DTLS_CONNECTION_ID */
Hanno Becker90cb3592019-04-09 17:24:19 +01002707
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002708#if defined(MBEDTLS_SSL_RENEGOTIATION)
Manuel Pégourié-Gonnard780d6712014-02-20 17:19:59 +01002709 if( opt.renegotiate )
Manuel Pégourié-Gonnard53b3e062013-10-29 18:16:38 +01002710 {
Manuel Pégourié-Gonnard780d6712014-02-20 17:19:59 +01002711 /*
2712 * Perform renegotiation (this must be done when the server is waiting
2713 * for input from our side).
2714 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002715 mbedtls_printf( " . Performing renegotiation..." );
Manuel Pégourié-Gonnard780d6712014-02-20 17:19:59 +01002716 fflush( stdout );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002717 while( ( ret = mbedtls_ssl_renegotiate( &ssl ) ) != 0 )
Manuel Pégourié-Gonnard53b3e062013-10-29 18:16:38 +01002718 {
Manuel Pégourié-Gonnard88369942015-05-06 16:19:31 +01002719 if( ret != MBEDTLS_ERR_SSL_WANT_READ &&
Manuel Pégourié-Gonnardb3c83072017-05-16 08:50:24 +02002720 ret != MBEDTLS_ERR_SSL_WANT_WRITE &&
Manuel Pégourié-Gonnard558da9c2018-06-13 12:02:12 +02002721 ret != MBEDTLS_ERR_SSL_CRYPTO_IN_PROGRESS )
Manuel Pégourié-Gonnard780d6712014-02-20 17:19:59 +01002722 {
Hanno Beckerdf4180a2017-10-27 13:43:58 +01002723 mbedtls_printf( " failed\n ! mbedtls_ssl_renegotiate returned %d\n\n",
2724 ret );
Manuel Pégourié-Gonnard780d6712014-02-20 17:19:59 +01002725 goto exit;
2726 }
Hanno Becker16970d22017-10-10 15:56:37 +01002727
Manuel Pégourié-Gonnard25781f92018-10-15 15:28:16 +02002728#if defined(MBEDTLS_ECP_RESTARTABLE)
2729 if( ret == MBEDTLS_ERR_SSL_CRYPTO_IN_PROGRESS )
2730 continue;
2731#endif
2732
Hanno Becker16970d22017-10-10 15:56:37 +01002733 /* For event-driven IO, wait for socket to become available */
2734 if( opt.event == 1 /* level triggered IO */ )
2735 {
2736#if defined(MBEDTLS_TIMING_C)
Hanno Becker197a91c2017-10-31 10:58:53 +00002737 idle( &server_fd, &timer, ret );
Hanno Becker16970d22017-10-10 15:56:37 +01002738#else
Hanno Becker197a91c2017-10-31 10:58:53 +00002739 idle( &server_fd, ret );
Hanno Becker16970d22017-10-10 15:56:37 +01002740#endif
2741 }
2742
Manuel Pégourié-Gonnard53b3e062013-10-29 18:16:38 +01002743 }
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002744 mbedtls_printf( " ok\n" );
Manuel Pégourié-Gonnard53b3e062013-10-29 18:16:38 +01002745 }
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002746#endif /* MBEDTLS_SSL_RENEGOTIATION */
Manuel Pégourié-Gonnard53b3e062013-10-29 18:16:38 +01002747
Hanno Beckera0e20d02019-05-15 14:03:01 +01002748#if defined(MBEDTLS_SSL_DTLS_CONNECTION_ID)
Hanno Beckerb42ec0d2019-05-03 17:30:59 +01002749 ret = report_cid_usage( &ssl, "after renegotiation" );
2750 if( ret != 0 )
2751 goto exit;
Hanno Beckera0e20d02019-05-15 14:03:01 +01002752#endif /* MBEDTLS_SSL_DTLS_CONNECTION_ID */
Hanno Beckerb42ec0d2019-05-03 17:30:59 +01002753
Paul Bakker5121ce52009-01-03 21:22:43 +00002754 /*
2755 * 6. Write the GET request
2756 */
Manuel Pégourié-Gonnarde63582a2014-10-14 11:47:21 +02002757 retry_left = opt.max_resend;
Manuel Pégourié-Gonnardaaa1eab2013-07-30 13:43:43 +02002758send_request:
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002759 mbedtls_printf( " > Write to server:" );
Paul Bakker5121ce52009-01-03 21:22:43 +00002760 fflush( stdout );
2761
Hanno Beckere4ad3e82017-09-18 15:05:46 +01002762 len = mbedtls_snprintf( (char *) buf, sizeof( buf ) - 1, GET_REQUEST,
2763 opt.request_page );
Manuel Pégourié-Gonnard9de64f52015-07-01 15:51:43 +02002764 tail_len = (int) strlen( GET_REQUEST_END );
Manuel Pégourié-Gonnarddcab2932014-08-14 17:47:17 +02002765
2766 /* Add padding to GET request to reach opt.request_size in length */
2767 if( opt.request_size != DFL_REQUEST_SIZE &&
2768 len + tail_len < opt.request_size )
Paul Bakker93c32b22014-04-25 13:40:05 +02002769 {
Manuel Pégourié-Gonnarddcab2932014-08-14 17:47:17 +02002770 memset( buf + len, 'A', opt.request_size - len - tail_len );
2771 len += opt.request_size - len - tail_len;
Paul Bakker93c32b22014-04-25 13:40:05 +02002772 }
Paul Bakker5121ce52009-01-03 21:22:43 +00002773
Hanno Beckere4ad3e82017-09-18 15:05:46 +01002774 strncpy( (char *) buf + len, GET_REQUEST_END, sizeof( buf ) - len - 1 );
Manuel Pégourié-Gonnarddcab2932014-08-14 17:47:17 +02002775 len += tail_len;
2776
Manuel Pégourié-Gonnarddea29c52014-06-18 13:07:56 +02002777 /* Truncate if request size is smaller than the "natural" size */
2778 if( opt.request_size != DFL_REQUEST_SIZE &&
2779 len > opt.request_size )
2780 {
2781 len = opt.request_size;
2782
2783 /* Still end with \r\n unless that's really not possible */
2784 if( len >= 2 ) buf[len - 2] = '\r';
2785 if( len >= 1 ) buf[len - 1] = '\n';
2786 }
2787
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002788 if( opt.transport == MBEDTLS_SSL_TRANSPORT_STREAM )
Paul Bakker5121ce52009-01-03 21:22:43 +00002789 {
Andres Amaya Garciace6fbac2018-07-04 09:29:34 +01002790 written = 0;
2791 frags = 0;
2792
2793 do
Paul Bakker5121ce52009-01-03 21:22:43 +00002794 {
Hanno Becker16970d22017-10-10 15:56:37 +01002795 while( ( ret = mbedtls_ssl_write( &ssl, buf + written,
Andres Amaya Garciace6fbac2018-07-04 09:29:34 +01002796 len - written ) ) < 0 )
Manuel Pégourié-Gonnard787b6582013-07-16 15:43:17 +02002797 {
Manuel Pégourié-Gonnard88369942015-05-06 16:19:31 +01002798 if( ret != MBEDTLS_ERR_SSL_WANT_READ &&
Manuel Pégourié-Gonnardb3c83072017-05-16 08:50:24 +02002799 ret != MBEDTLS_ERR_SSL_WANT_WRITE &&
Manuel Pégourié-Gonnard558da9c2018-06-13 12:02:12 +02002800 ret != MBEDTLS_ERR_SSL_CRYPTO_IN_PROGRESS )
Manuel Pégourié-Gonnard2d87e412014-10-13 18:38:36 +02002801 {
Hanno Beckerdf4180a2017-10-27 13:43:58 +01002802 mbedtls_printf( " failed\n ! mbedtls_ssl_write returned -0x%x\n\n",
2803 -ret );
Manuel Pégourié-Gonnard2d87e412014-10-13 18:38:36 +02002804 goto exit;
2805 }
Hanno Becker16970d22017-10-10 15:56:37 +01002806
2807 /* For event-driven IO, wait for socket to become available */
2808 if( opt.event == 1 /* level triggered IO */ )
2809 {
2810#if defined(MBEDTLS_TIMING_C)
Hanno Becker197a91c2017-10-31 10:58:53 +00002811 idle( &server_fd, &timer, ret );
Hanno Becker16970d22017-10-10 15:56:37 +01002812#else
Hanno Becker197a91c2017-10-31 10:58:53 +00002813 idle( &server_fd, ret );
Hanno Becker16970d22017-10-10 15:56:37 +01002814#endif
2815 }
Manuel Pégourié-Gonnard787b6582013-07-16 15:43:17 +02002816 }
Andres Amaya Garciace6fbac2018-07-04 09:29:34 +01002817
2818 frags++;
2819 written += ret;
Paul Bakker5121ce52009-01-03 21:22:43 +00002820 }
Andres Amaya Garciace6fbac2018-07-04 09:29:34 +01002821 while( written < len );
Paul Bakker5121ce52009-01-03 21:22:43 +00002822 }
Manuel Pégourié-Gonnard2d87e412014-10-13 18:38:36 +02002823 else /* Not stream, so datagram */
2824 {
Hanno Becker16970d22017-10-10 15:56:37 +01002825 while( 1 )
2826 {
2827 ret = mbedtls_ssl_write( &ssl, buf, len );
2828
Manuel Pégourié-Gonnardda19f4c2018-06-12 12:40:54 +02002829#if defined(MBEDTLS_ECP_RESTARTABLE)
Manuel Pégourié-Gonnard558da9c2018-06-13 12:02:12 +02002830 if( ret == MBEDTLS_ERR_SSL_CRYPTO_IN_PROGRESS )
Manuel Pégourié-Gonnardda19f4c2018-06-12 12:40:54 +02002831 continue;
2832#endif
2833
Hanno Becker16970d22017-10-10 15:56:37 +01002834 if( ret != MBEDTLS_ERR_SSL_WANT_READ &&
2835 ret != MBEDTLS_ERR_SSL_WANT_WRITE )
2836 break;
2837
2838 /* For event-driven IO, wait for socket to become available */
2839 if( opt.event == 1 /* level triggered IO */ )
2840 {
2841#if defined(MBEDTLS_TIMING_C)
Hanno Becker197a91c2017-10-31 10:58:53 +00002842 idle( &server_fd, &timer, ret );
Hanno Becker16970d22017-10-10 15:56:37 +01002843#else
Hanno Becker197a91c2017-10-31 10:58:53 +00002844 idle( &server_fd, ret );
Hanno Becker16970d22017-10-10 15:56:37 +01002845#endif
2846 }
2847 }
Manuel Pégourié-Gonnard2d87e412014-10-13 18:38:36 +02002848
2849 if( ret < 0 )
2850 {
Hanno Beckerdf4180a2017-10-27 13:43:58 +01002851 mbedtls_printf( " failed\n ! mbedtls_ssl_write returned %d\n\n",
2852 ret );
Manuel Pégourié-Gonnard2d87e412014-10-13 18:38:36 +02002853 goto exit;
2854 }
2855
2856 frags = 1;
2857 written = ret;
Hanno Beckere4ad3e82017-09-18 15:05:46 +01002858
2859 if( written < len )
2860 {
2861 mbedtls_printf( " warning\n ! request didn't fit into single datagram and "
2862 "was truncated to size %u", (unsigned) written );
2863 }
Manuel Pégourié-Gonnard2d87e412014-10-13 18:38:36 +02002864 }
Paul Bakker5121ce52009-01-03 21:22:43 +00002865
Manuel Pégourié-Gonnard787b6582013-07-16 15:43:17 +02002866 buf[written] = '\0';
Hanno Becker16970d22017-10-10 15:56:37 +01002867 mbedtls_printf( " %d bytes written in %d fragments\n\n%s\n",
2868 written, frags, (char *) buf );
Paul Bakker5121ce52009-01-03 21:22:43 +00002869
Andres Amaya Garciace6fbac2018-07-04 09:29:34 +01002870 /* Send a non-empty request if request_size == 0 */
2871 if ( len == 0 )
2872 {
2873 opt.request_size = DFL_REQUEST_SIZE;
2874 goto send_request;
2875 }
2876
Paul Bakker5121ce52009-01-03 21:22:43 +00002877 /*
2878 * 7. Read the HTTP response
2879 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002880 mbedtls_printf( " < Read from server:" );
Paul Bakker5121ce52009-01-03 21:22:43 +00002881 fflush( stdout );
2882
Manuel Pégourié-Gonnardae5050c2014-07-11 14:14:15 +02002883 /*
2884 * TLS and DTLS need different reading styles (stream vs datagram)
2885 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002886 if( opt.transport == MBEDTLS_SSL_TRANSPORT_STREAM )
Manuel Pégourié-Gonnardae5050c2014-07-11 14:14:15 +02002887 {
2888 do
2889 {
2890 len = sizeof( buf ) - 1;
2891 memset( buf, 0, sizeof( buf ) );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002892 ret = mbedtls_ssl_read( &ssl, buf, len );
Manuel Pégourié-Gonnardae5050c2014-07-11 14:14:15 +02002893
Manuel Pégourié-Gonnardda19f4c2018-06-12 12:40:54 +02002894#if defined(MBEDTLS_ECP_RESTARTABLE)
Manuel Pégourié-Gonnard558da9c2018-06-13 12:02:12 +02002895 if( ret == MBEDTLS_ERR_SSL_CRYPTO_IN_PROGRESS )
Manuel Pégourié-Gonnardae5050c2014-07-11 14:14:15 +02002896 continue;
Manuel Pégourié-Gonnardda19f4c2018-06-12 12:40:54 +02002897#endif
2898
Manuel Pégourié-Gonnardae5050c2014-07-11 14:14:15 +02002899 if( ret == MBEDTLS_ERR_SSL_WANT_READ ||
2900 ret == MBEDTLS_ERR_SSL_WANT_WRITE )
Hanno Becker16970d22017-10-10 15:56:37 +01002901 {
2902 /* For event-driven IO, wait for socket to become available */
2903 if( opt.event == 1 /* level triggered IO */ )
2904 {
2905#if defined(MBEDTLS_TIMING_C)
Hanno Becker197a91c2017-10-31 10:58:53 +00002906 idle( &server_fd, &timer, ret );
Hanno Becker16970d22017-10-10 15:56:37 +01002907#else
Hanno Becker197a91c2017-10-31 10:58:53 +00002908 idle( &server_fd, ret );
Hanno Becker16970d22017-10-10 15:56:37 +01002909#endif
2910 }
Manuel Pégourié-Gonnardae5050c2014-07-11 14:14:15 +02002911 continue;
Hanno Becker16970d22017-10-10 15:56:37 +01002912 }
Manuel Pégourié-Gonnardae5050c2014-07-11 14:14:15 +02002913
2914 if( ret <= 0 )
2915 {
2916 switch( ret )
2917 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002918 case MBEDTLS_ERR_SSL_PEER_CLOSE_NOTIFY:
2919 mbedtls_printf( " connection was closed gracefully\n" );
Manuel Pégourié-Gonnardae5050c2014-07-11 14:14:15 +02002920 ret = 0;
2921 goto close_notify;
2922
2923 case 0:
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002924 case MBEDTLS_ERR_NET_CONN_RESET:
2925 mbedtls_printf( " connection was reset by peer\n" );
Manuel Pégourié-Gonnardae5050c2014-07-11 14:14:15 +02002926 ret = 0;
2927 goto reconnect;
2928
2929 default:
Hanno Becker4cb1f4d2017-10-10 15:59:57 +01002930 mbedtls_printf( " mbedtls_ssl_read returned -0x%x\n",
2931 -ret );
Manuel Pégourié-Gonnardae5050c2014-07-11 14:14:15 +02002932 goto exit;
2933 }
2934 }
2935
2936 len = ret;
2937 buf[len] = '\0';
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002938 mbedtls_printf( " %d bytes read\n\n%s", len, (char *) buf );
Manuel Pégourié-Gonnardae5050c2014-07-11 14:14:15 +02002939
2940 /* End of message should be detected according to the syntax of the
2941 * application protocol (eg HTTP), just use a dummy test here. */
2942 if( ret > 0 && buf[len-1] == '\n' )
2943 {
2944 ret = 0;
2945 break;
2946 }
2947 }
2948 while( 1 );
2949 }
2950 else /* Not stream, so datagram */
Paul Bakker5121ce52009-01-03 21:22:43 +00002951 {
2952 len = sizeof( buf ) - 1;
2953 memset( buf, 0, sizeof( buf ) );
Paul Bakker5121ce52009-01-03 21:22:43 +00002954
Hanno Becker16970d22017-10-10 15:56:37 +01002955 while( 1 )
2956 {
2957 ret = mbedtls_ssl_read( &ssl, buf, len );
2958
Manuel Pégourié-Gonnardda19f4c2018-06-12 12:40:54 +02002959#if defined(MBEDTLS_ECP_RESTARTABLE)
Manuel Pégourié-Gonnard558da9c2018-06-13 12:02:12 +02002960 if( ret == MBEDTLS_ERR_SSL_CRYPTO_IN_PROGRESS )
Manuel Pégourié-Gonnardda19f4c2018-06-12 12:40:54 +02002961 continue;
2962#endif
2963
Hanno Becker16970d22017-10-10 15:56:37 +01002964 if( ret != MBEDTLS_ERR_SSL_WANT_READ &&
2965 ret != MBEDTLS_ERR_SSL_WANT_WRITE )
2966 break;
2967
2968 /* For event-driven IO, wait for socket to become available */
2969 if( opt.event == 1 /* level triggered IO */ )
2970 {
2971#if defined(MBEDTLS_TIMING_C)
Hanno Becker197a91c2017-10-31 10:58:53 +00002972 idle( &server_fd, &timer, ret );
Hanno Becker16970d22017-10-10 15:56:37 +01002973#else
Hanno Becker197a91c2017-10-31 10:58:53 +00002974 idle( &server_fd, ret );
Hanno Becker16970d22017-10-10 15:56:37 +01002975#endif
2976 }
2977 }
Paul Bakker5121ce52009-01-03 21:22:43 +00002978
Manuel Pégourié-Gonnarde08660e2014-08-16 11:28:40 +02002979 if( ret <= 0 )
Paul Bakker5121ce52009-01-03 21:22:43 +00002980 {
Manuel Pégourié-Gonnarde08660e2014-08-16 11:28:40 +02002981 switch( ret )
2982 {
Manuel Pégourié-Gonnard88369942015-05-06 16:19:31 +01002983 case MBEDTLS_ERR_SSL_TIMEOUT:
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002984 mbedtls_printf( " timeout\n" );
Manuel Pégourié-Gonnarde63582a2014-10-14 11:47:21 +02002985 if( retry_left-- > 0 )
Manuel Pégourié-Gonnardf1e0df32014-10-02 14:02:32 +02002986 goto send_request;
2987 goto exit;
2988
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002989 case MBEDTLS_ERR_SSL_PEER_CLOSE_NOTIFY:
2990 mbedtls_printf( " connection was closed gracefully\n" );
Manuel Pégourié-Gonnarde08660e2014-08-16 11:28:40 +02002991 ret = 0;
Manuel Pégourié-Gonnardf1388742014-08-19 16:14:36 +02002992 goto close_notify;
Paul Bakker5121ce52009-01-03 21:22:43 +00002993
Manuel Pégourié-Gonnarde08660e2014-08-16 11:28:40 +02002994 default:
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002995 mbedtls_printf( " mbedtls_ssl_read returned -0x%x\n", -ret );
Manuel Pégourié-Gonnarde08660e2014-08-16 11:28:40 +02002996 goto exit;
2997 }
Paul Bakker5690efc2011-05-26 13:16:06 +00002998 }
2999
Paul Bakker5121ce52009-01-03 21:22:43 +00003000 len = ret;
Paul Bakker93c32b22014-04-25 13:40:05 +02003001 buf[len] = '\0';
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003002 mbedtls_printf( " %d bytes read\n\n%s", len, (char *) buf );
Manuel Pégourié-Gonnardae5050c2014-07-11 14:14:15 +02003003 ret = 0;
Paul Bakker5121ce52009-01-03 21:22:43 +00003004 }
Paul Bakker5121ce52009-01-03 21:22:43 +00003005
Manuel Pégourié-Gonnarde08660e2014-08-16 11:28:40 +02003006 /*
Manuel Pégourié-Gonnarddbd23072015-09-04 10:20:17 +02003007 * 7b. Simulate hard reset and reconnect from same port?
3008 */
3009 if( opt.reconnect_hard != 0 )
3010 {
3011 opt.reconnect_hard = 0;
3012
3013 mbedtls_printf( " . Restarting connection from same port..." );
3014 fflush( stdout );
3015
Hanno Beckerbdf75eb2019-02-27 08:34:31 +00003016#if defined(MBEDTLS_X509_CRT_PARSE_C)
Hanno Becker23699ef2019-02-26 12:36:53 +00003017 memset( peer_crt_info, 0, sizeof( peer_crt_info ) );
Hanno Beckerbdf75eb2019-02-27 08:34:31 +00003018#endif /* MBEDTLS_X509_CRT_PARSE_C */
Hanno Becker23699ef2019-02-26 12:36:53 +00003019
Manuel Pégourié-Gonnarddbd23072015-09-04 10:20:17 +02003020 if( ( ret = mbedtls_ssl_session_reset( &ssl ) ) != 0 )
3021 {
Hanno Becker4cb1f4d2017-10-10 15:59:57 +01003022 mbedtls_printf( " failed\n ! mbedtls_ssl_session_reset returned -0x%x\n\n",
3023 -ret );
Manuel Pégourié-Gonnarddbd23072015-09-04 10:20:17 +02003024 goto exit;
3025 }
3026
3027 while( ( ret = mbedtls_ssl_handshake( &ssl ) ) != 0 )
3028 {
3029 if( ret != MBEDTLS_ERR_SSL_WANT_READ &&
Manuel Pégourié-Gonnardb3c83072017-05-16 08:50:24 +02003030 ret != MBEDTLS_ERR_SSL_WANT_WRITE &&
Manuel Pégourié-Gonnard558da9c2018-06-13 12:02:12 +02003031 ret != MBEDTLS_ERR_SSL_CRYPTO_IN_PROGRESS )
Manuel Pégourié-Gonnarddbd23072015-09-04 10:20:17 +02003032 {
Hanno Becker4cb1f4d2017-10-10 15:59:57 +01003033 mbedtls_printf( " failed\n ! mbedtls_ssl_handshake returned -0x%x\n\n",
3034 -ret );
Manuel Pégourié-Gonnarddbd23072015-09-04 10:20:17 +02003035 goto exit;
3036 }
Hanno Becker16970d22017-10-10 15:56:37 +01003037
3038 /* For event-driven IO, wait for socket to become available */
3039 if( opt.event == 1 /* level triggered IO */ )
3040 {
3041#if defined(MBEDTLS_TIMING_C)
Hanno Becker197a91c2017-10-31 10:58:53 +00003042 idle( &server_fd, &timer, ret );
Hanno Becker16970d22017-10-10 15:56:37 +01003043#else
Hanno Becker197a91c2017-10-31 10:58:53 +00003044 idle( &server_fd, ret );
Hanno Becker16970d22017-10-10 15:56:37 +01003045#endif
3046 }
Manuel Pégourié-Gonnarddbd23072015-09-04 10:20:17 +02003047 }
3048
3049 mbedtls_printf( " ok\n" );
3050
3051 goto send_request;
3052 }
3053
3054 /*
Jarno Lamsa77e66652019-05-29 15:15:08 +03003055 * 7c. Simulate serialize/deserialize and go back to data exchange
3056 */
Jarno Lamsabbc7b412019-06-04 11:06:31 +03003057#if defined(MBEDTLS_SSL_CONTEXT_SERIALIZATION)
Jarno Lamsa304d61c2019-06-06 10:40:52 +03003058 if( opt.serialize != 0 )
Jarno Lamsa77e66652019-05-29 15:15:08 +03003059 {
Jarno Lamsa15b3a7a2019-06-06 15:10:07 +03003060 size_t buf_len;
Jarno Lamsa77e66652019-05-29 15:15:08 +03003061
Manuel Pégourié-Gonnarda88399c2019-07-12 10:41:55 +02003062 mbedtls_printf( " . Serializing live connection..." );
Jarno Lamsa77e66652019-05-29 15:15:08 +03003063
Jarno Lamsa15b3a7a2019-06-06 15:10:07 +03003064 ret = mbedtls_ssl_context_save( &ssl, NULL, 0, &buf_len );
Manuel Pégourié-Gonnarda88399c2019-07-12 10:41:55 +02003065 if( ret != MBEDTLS_ERR_SSL_BUFFER_TOO_SMALL )
Jarno Lamsa77e66652019-05-29 15:15:08 +03003066 {
Jarno Lamsa93c6ff22019-06-04 15:36:18 +03003067 mbedtls_printf( " failed\n ! mbedtls_ssl_context_save returned "
3068 "-0x%x\n\n", -ret );
Jarno Lamsa77e66652019-05-29 15:15:08 +03003069
3070 goto exit;
3071 }
3072
Jarno Lamsa15b3a7a2019-06-06 15:10:07 +03003073 if( ( context_buf = mbedtls_calloc( 1, buf_len ) ) == NULL )
Jarno Lamsa77e66652019-05-29 15:15:08 +03003074 {
Jarno Lamsa93c6ff22019-06-04 15:36:18 +03003075 mbedtls_printf( " failed\n ! Couldn't allocate buffer for "
3076 "serialized context" );
Jarno Lamsa77e66652019-05-29 15:15:08 +03003077
3078 goto exit;
3079 }
Manuel Pégourié-Gonnard3309a672019-07-15 10:31:11 +02003080 context_buf_len = buf_len;
Jarno Lamsa77e66652019-05-29 15:15:08 +03003081
Jarno Lamsaddf72a12019-06-13 12:22:50 +03003082 if( ( ret = mbedtls_ssl_context_save( &ssl, context_buf,
3083 buf_len, &buf_len ) ) != 0 )
Jarno Lamsa77e66652019-05-29 15:15:08 +03003084 {
Manuel Pégourié-Gonnarda88399c2019-07-12 10:41:55 +02003085 mbedtls_printf( " failed\n ! mbedtls_ssl_context_save returned "
Jarno Lamsa93c6ff22019-06-04 15:36:18 +03003086 "-0x%x\n\n", -ret );
Jarno Lamsa77e66652019-05-29 15:15:08 +03003087
3088 goto exit;
3089 }
3090
Manuel Pégourié-Gonnarda88399c2019-07-12 10:41:55 +02003091 mbedtls_printf( " ok\n" );
3092
3093 if( opt.serialize == 1 )
3094 {
Manuel Pégourié-Gonnard9df5a822019-07-23 14:51:09 +02003095 /* nothing to do here, done by context_save() already */
3096 mbedtls_printf( " . Context has been reset... ok" );
Manuel Pégourié-Gonnarda88399c2019-07-12 10:41:55 +02003097 }
3098
Jarno Lamsa304d61c2019-06-06 10:40:52 +03003099 if( opt.serialize == 2 )
3100 {
Manuel Pégourié-Gonnarda88399c2019-07-12 10:41:55 +02003101 mbedtls_printf( " . Freeing and reinitializing context..." );
3102
Jarno Lamsa304d61c2019-06-06 10:40:52 +03003103 mbedtls_ssl_free( &ssl );
3104
3105 mbedtls_ssl_init( &ssl );
3106
3107 if( ( ret = mbedtls_ssl_setup( &ssl, &conf ) ) != 0 )
3108 {
Jarno Lamsaddf72a12019-06-13 12:22:50 +03003109 mbedtls_printf( " failed\n ! mbedtls_ssl_setup returned "
Manuel Pégourié-Gonnarda88399c2019-07-12 10:41:55 +02003110 "-0x%x\n\n", -ret );
Jarno Lamsa304d61c2019-06-06 10:40:52 +03003111 goto exit;
3112 }
3113
3114 if( opt.nbio == 2 )
Jarno Lamsaddf72a12019-06-13 12:22:50 +03003115 mbedtls_ssl_set_bio( &ssl, &server_fd, delayed_send,
3116 delayed_recv, NULL );
Jarno Lamsa304d61c2019-06-06 10:40:52 +03003117 else
Manuel Pégourié-Gonnarda88399c2019-07-12 10:41:55 +02003118 mbedtls_ssl_set_bio( &ssl, &server_fd, mbedtls_net_send,
3119 mbedtls_net_recv,
Jarno Lamsaddf72a12019-06-13 12:22:50 +03003120 opt.nbio == 0 ? mbedtls_net_recv_timeout : NULL );
Jarno Lamsa304d61c2019-06-06 10:40:52 +03003121
Jarno Lamsa8e253212019-06-13 11:45:06 +03003122#if defined(MBEDTLS_TIMING_C)
Jarno Lamsaddf72a12019-06-13 12:22:50 +03003123 mbedtls_ssl_set_timer_cb( &ssl, &timer,
3124 mbedtls_timing_set_delay,
3125 mbedtls_timing_get_delay );
Jarno Lamsa8e253212019-06-13 11:45:06 +03003126#endif /* MBEDTLS_TIMING_C */
Manuel Pégourié-Gonnarda88399c2019-07-12 10:41:55 +02003127
3128 mbedtls_printf( " ok\n" );
Jarno Lamsa304d61c2019-06-06 10:40:52 +03003129 }
3130
Manuel Pégourié-Gonnarda88399c2019-07-12 10:41:55 +02003131 mbedtls_printf( " . Deserializing connection..." );
Jarno Lamsa77e66652019-05-29 15:15:08 +03003132
Jarno Lamsaddf72a12019-06-13 12:22:50 +03003133 if( ( ret = mbedtls_ssl_context_load( &ssl, context_buf,
3134 buf_len ) ) != 0 )
Jarno Lamsa77e66652019-05-29 15:15:08 +03003135 {
Jarno Lamsa93c6ff22019-06-04 15:36:18 +03003136 mbedtls_printf( "failed\n ! mbedtls_ssl_context_load returned "
3137 "-0x%x\n\n", -ret );
Jarno Lamsa77e66652019-05-29 15:15:08 +03003138
3139 goto exit;
3140 }
Manuel Pégourié-Gonnarda88399c2019-07-12 10:41:55 +02003141
Manuel Pégourié-Gonnard3309a672019-07-15 10:31:11 +02003142 mbedtls_free( context_buf );
3143 context_buf = NULL;
3144 context_buf_len = 0;
3145
Manuel Pégourié-Gonnarda88399c2019-07-12 10:41:55 +02003146 mbedtls_printf( " ok\n" );
Jarno Lamsa77e66652019-05-29 15:15:08 +03003147 }
Jarno Lamsa93c6ff22019-06-04 15:36:18 +03003148#endif /* MBEDTLS_SSL_CONTEXT_SERIALIZATION */
Jarno Lamsa77e66652019-05-29 15:15:08 +03003149
3150 /*
3151 * 7d. Continue doing data exchanges?
Manuel Pégourié-Gonnarda8c0a0d2014-08-15 12:07:38 +02003152 */
3153 if( --opt.exchanges > 0 )
3154 goto send_request;
3155
3156 /*
Manuel Pégourié-Gonnardf1388742014-08-19 16:14:36 +02003157 * 8. Done, cleanly close the connection
3158 */
3159close_notify:
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003160 mbedtls_printf( " . Closing the connection..." );
Manuel Pégourié-Gonnarddbd23072015-09-04 10:20:17 +02003161 fflush( stdout );
Manuel Pégourié-Gonnardf1388742014-08-19 16:14:36 +02003162
Manuel Pégourié-Gonnard994f8b52014-10-09 19:56:44 +02003163 /* No error checking, the connection might be closed already */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003164 do ret = mbedtls_ssl_close_notify( &ssl );
Manuel Pégourié-Gonnard88369942015-05-06 16:19:31 +01003165 while( ret == MBEDTLS_ERR_SSL_WANT_WRITE );
Manuel Pégourié-Gonnard994f8b52014-10-09 19:56:44 +02003166 ret = 0;
Manuel Pégourié-Gonnardf1388742014-08-19 16:14:36 +02003167
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003168 mbedtls_printf( " done\n" );
Manuel Pégourié-Gonnardf1388742014-08-19 16:14:36 +02003169
3170 /*
3171 * 9. Reconnect?
Manuel Pégourié-Gonnarde08660e2014-08-16 11:28:40 +02003172 */
3173reconnect:
Manuel Pégourié-Gonnardaaa1eab2013-07-30 13:43:43 +02003174 if( opt.reconnect != 0 )
3175 {
Manuel Pégourié-Gonnardcf2e97e2013-08-02 15:04:36 +02003176 --opt.reconnect;
Manuel Pégourié-Gonnardaaa1eab2013-07-30 13:43:43 +02003177
Manuel Pégourié-Gonnard3d7d00a2015-06-30 15:55:03 +02003178 mbedtls_net_free( &server_fd );
Manuel Pégourié-Gonnard6b0d2682014-03-25 11:24:43 +01003179
Manuel Pégourié-Gonnardd2377e72015-05-13 13:58:56 +02003180#if defined(MBEDTLS_TIMING_C)
Manuel Pégourié-Gonnardc55a5b72014-02-20 22:50:56 +01003181 if( opt.reco_delay > 0 )
Manuel Pégourié-Gonnarda63bc942015-05-14 18:22:47 +02003182 mbedtls_net_usleep( 1000000 * opt.reco_delay );
Manuel Pégourié-Gonnardd2377e72015-05-13 13:58:56 +02003183#endif
Manuel Pégourié-Gonnard38d1eba2013-08-23 10:44:29 +02003184
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003185 mbedtls_printf( " . Reconnecting with saved session..." );
Manuel Pégourié-Gonnardaaa1eab2013-07-30 13:43:43 +02003186
Hanno Beckerbdf75eb2019-02-27 08:34:31 +00003187#if defined(MBEDTLS_X509_CRT_PARSE_C)
Hanno Beckera1051b42019-02-26 11:38:29 +00003188 memset( peer_crt_info, 0, sizeof( peer_crt_info ) );
Hanno Beckerbdf75eb2019-02-27 08:34:31 +00003189#endif /* MBEDTLS_X509_CRT_PARSE_C */
Hanno Beckera1051b42019-02-26 11:38:29 +00003190
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003191 if( ( ret = mbedtls_ssl_session_reset( &ssl ) ) != 0 )
Manuel Pégourié-Gonnardaaa1eab2013-07-30 13:43:43 +02003192 {
Hanno Becker4cb1f4d2017-10-10 15:59:57 +01003193 mbedtls_printf( " failed\n ! mbedtls_ssl_session_reset returned -0x%x\n\n",
3194 -ret );
Manuel Pégourié-Gonnardaaa1eab2013-07-30 13:43:43 +02003195 goto exit;
3196 }
3197
Manuel Pégourié-Gonnarda7c37652019-05-20 12:46:26 +02003198 if( opt.reco_mode == 1 )
Manuel Pégourié-Gonnard21548632019-05-16 11:39:42 +02003199 {
Manuel Pégourié-Gonnarda7c37652019-05-20 12:46:26 +02003200 if( ( ret = mbedtls_ssl_session_load( &saved_session,
3201 session_data,
3202 session_data_len ) ) != 0 )
3203 {
3204 mbedtls_printf( " failed\n ! mbedtls_ssl_session_load returned -0x%x\n\n",
3205 -ret );
3206 goto exit;
3207 }
Manuel Pégourié-Gonnard21548632019-05-16 11:39:42 +02003208 }
3209
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003210 if( ( ret = mbedtls_ssl_set_session( &ssl, &saved_session ) ) != 0 )
Manuel Pégourié-Gonnardc5fd3912014-07-08 14:05:52 +02003211 {
Manuel Pégourié-Gonnard21548632019-05-16 11:39:42 +02003212 mbedtls_printf( " failed\n ! mbedtls_ssl_set_session returned -0x%x\n\n",
3213 -ret );
Manuel Pégourié-Gonnardc5fd3912014-07-08 14:05:52 +02003214 goto exit;
3215 }
Manuel Pégourié-Gonnardaaa1eab2013-07-30 13:43:43 +02003216
Hanno Becker4cb1f4d2017-10-10 15:59:57 +01003217 if( ( ret = mbedtls_net_connect( &server_fd,
3218 opt.server_addr, opt.server_port,
3219 opt.transport == MBEDTLS_SSL_TRANSPORT_STREAM ?
3220 MBEDTLS_NET_PROTO_TCP : MBEDTLS_NET_PROTO_UDP ) ) != 0 )
Manuel Pégourié-Gonnardaaa1eab2013-07-30 13:43:43 +02003221 {
Hanno Becker4cb1f4d2017-10-10 15:59:57 +01003222 mbedtls_printf( " failed\n ! mbedtls_net_connect returned -0x%x\n\n",
3223 -ret );
Manuel Pégourié-Gonnardaaa1eab2013-07-30 13:43:43 +02003224 goto exit;
3225 }
3226
Manuel Pégourié-Gonnard85beb302014-10-02 17:59:19 +02003227 if( opt.nbio > 0 )
Manuel Pégourié-Gonnard5db64322015-06-30 15:40:39 +02003228 ret = mbedtls_net_set_nonblock( &server_fd );
Manuel Pégourié-Gonnard85beb302014-10-02 17:59:19 +02003229 else
Manuel Pégourié-Gonnard5db64322015-06-30 15:40:39 +02003230 ret = mbedtls_net_set_block( &server_fd );
Manuel Pégourié-Gonnard85beb302014-10-02 17:59:19 +02003231 if( ret != 0 )
3232 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003233 mbedtls_printf( " failed\n ! net_set_(non)block() returned -0x%x\n\n",
Hanno Becker4cb1f4d2017-10-10 15:59:57 +01003234 -ret );
Manuel Pégourié-Gonnard85beb302014-10-02 17:59:19 +02003235 goto exit;
3236 }
3237
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003238 while( ( ret = mbedtls_ssl_handshake( &ssl ) ) != 0 )
Manuel Pégourié-Gonnardaaa1eab2013-07-30 13:43:43 +02003239 {
Manuel Pégourié-Gonnard88369942015-05-06 16:19:31 +01003240 if( ret != MBEDTLS_ERR_SSL_WANT_READ &&
Manuel Pégourié-Gonnardb3c83072017-05-16 08:50:24 +02003241 ret != MBEDTLS_ERR_SSL_WANT_WRITE &&
Manuel Pégourié-Gonnard558da9c2018-06-13 12:02:12 +02003242 ret != MBEDTLS_ERR_SSL_CRYPTO_IN_PROGRESS )
Manuel Pégourié-Gonnardaaa1eab2013-07-30 13:43:43 +02003243 {
Hanno Becker4cb1f4d2017-10-10 15:59:57 +01003244 mbedtls_printf( " failed\n ! mbedtls_ssl_handshake returned -0x%x\n\n",
3245 -ret );
Manuel Pégourié-Gonnardaaa1eab2013-07-30 13:43:43 +02003246 goto exit;
3247 }
3248 }
3249
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003250 mbedtls_printf( " ok\n" );
Manuel Pégourié-Gonnardaaa1eab2013-07-30 13:43:43 +02003251
3252 goto send_request;
3253 }
3254
Manuel Pégourié-Gonnarde08660e2014-08-16 11:28:40 +02003255 /*
3256 * Cleanup and exit
3257 */
Paul Bakker5121ce52009-01-03 21:22:43 +00003258exit:
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003259#ifdef MBEDTLS_ERROR_C
Paul Bakkera3d195c2011-11-27 21:07:34 +00003260 if( ret != 0 )
3261 {
3262 char error_buf[100];
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003263 mbedtls_strerror( ret, error_buf, 100 );
3264 mbedtls_printf("Last error was: -0x%X - %s\n\n", -ret, error_buf );
Paul Bakkera3d195c2011-11-27 21:07:34 +00003265 }
3266#endif
3267
Manuel Pégourié-Gonnard3d7d00a2015-06-30 15:55:03 +02003268 mbedtls_net_free( &server_fd );
Manuel Pégourié-Gonnarde08660e2014-08-16 11:28:40 +02003269
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003270#if defined(MBEDTLS_X509_CRT_PARSE_C)
3271 mbedtls_x509_crt_free( &clicert );
3272 mbedtls_x509_crt_free( &cacert );
3273 mbedtls_pk_free( &pkey );
Manuel Pégourié-Gonnardcfdf8f42018-11-08 09:52:25 +01003274#if defined(MBEDTLS_USE_PSA_CRYPTO)
3275 psa_destroy_key( key_slot );
3276#endif
Paul Bakkered27a042013-04-18 22:46:23 +02003277#endif
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003278 mbedtls_ssl_session_free( &saved_session );
3279 mbedtls_ssl_free( &ssl );
Manuel Pégourié-Gonnarddef0bbe2015-05-04 14:56:36 +02003280 mbedtls_ssl_config_free( &conf );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003281 mbedtls_ctr_drbg_free( &ctr_drbg );
3282 mbedtls_entropy_free( &entropy );
Manuel Pégourié-Gonnard4d591d62019-05-24 10:26:41 +02003283 if( session_data != NULL )
3284 mbedtls_platform_zeroize( session_data, session_data_len );
Manuel Pégourié-Gonnard26f982f2019-05-21 11:01:32 +02003285 mbedtls_free( session_data );
Manuel Pégourié-Gonnard3309a672019-07-15 10:31:11 +02003286#if defined(MBEDTLS_SSL_CONTEXT_SERIALIZATION)
3287 if( context_buf != NULL )
3288 mbedtls_platform_zeroize( context_buf, context_buf_len );
3289 mbedtls_free( context_buf );
3290#endif
Paul Bakker5121ce52009-01-03 21:22:43 +00003291
Hanno Becker3f24ea92018-11-05 13:25:17 +00003292#if defined(MBEDTLS_KEY_EXCHANGE__SOME__PSK_ENABLED) && \
3293 defined(MBEDTLS_USE_PSA_CRYPTO)
Hanno Becker1d911cd2018-11-15 13:06:09 +00003294 if( opt.psk_opaque != 0 )
Hanno Becker3f24ea92018-11-05 13:25:17 +00003295 {
3296 /* This is ok even if the slot hasn't been
3297 * initialized (we might have jumed here
3298 * immediately because of bad cmd line params,
3299 * for example). */
Hanno Becker1d911cd2018-11-15 13:06:09 +00003300 status = psa_destroy_key( slot );
Hanno Becker3f24ea92018-11-05 13:25:17 +00003301 if( status != PSA_SUCCESS )
3302 {
3303 mbedtls_printf( "Failed to destroy key slot %u - error was %d",
Hanno Becker1d911cd2018-11-15 13:06:09 +00003304 (unsigned) slot, (int) status );
Hanno Becker3f24ea92018-11-05 13:25:17 +00003305 if( ret == 0 )
3306 ret = MBEDTLS_ERR_SSL_HW_ACCEL_FAILED;
3307 }
3308 }
3309#endif /* MBEDTLS_KEY_EXCHANGE__SOME__PSK_ENABLED &&
3310 MBEDTLS_USE_PSA_CRYPTO */
3311
Piotr Nowicki7d01ef62019-11-20 15:00:17 +01003312#if defined(MBEDTLS_MEMORY_BUFFER_ALLOC_C)
3313#if defined(MBEDTLS_MEMORY_DEBUG)
3314 mbedtls_memory_buffer_alloc_status();
3315#endif
3316 mbedtls_memory_buffer_alloc_free();
3317#endif
3318
Paul Bakkercce9d772011-11-18 14:26:47 +00003319#if defined(_WIN32)
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003320 mbedtls_printf( " + Press Enter to exit this program.\n" );
Paul Bakker5121ce52009-01-03 21:22:43 +00003321 fflush( stdout ); getchar();
3322#endif
3323
Paul Bakkerdbd79ca2013-07-24 16:28:35 +02003324 // Shell can not handle large exit numbers -> 1 for errors
3325 if( ret < 0 )
3326 ret = 1;
3327
Paul Bakker5121ce52009-01-03 21:22:43 +00003328 return( ret );
3329}
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003330#endif /* MBEDTLS_BIGNUM_C && MBEDTLS_ENTROPY_C && MBEDTLS_SSL_TLS_C &&
3331 MBEDTLS_SSL_CLI_C && MBEDTLS_NET_C && MBEDTLS_RSA_C &&
Manuel Pégourié-Gonnardd2377e72015-05-13 13:58:56 +02003332 MBEDTLS_CTR_DRBG_C MBEDTLS_TIMING_C */