blob: b07ab4fac028b586056a6cebecadc081533e38e5 [file] [log] [blame]
Paul Bakkerb60b95f2012-09-25 09:05:17 +00001/*
2 * SSL client with options
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 Bakkerb60b95f2012-09-25 09:05:17 +000018 *
Manuel Pégourié-Gonnardfe446432015-03-06 13:17:10 +000019 * This file is part of mbed TLS (https://tls.mbed.org)
Paul Bakkerb60b95f2012-09-25 09:05:17 +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 Bakkerb60b95f2012-09-25 09:05:17 +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
Manuel Pégourié-Gonnard8a4d5712014-06-24 14:19:59 +020031#include <stdio.h>
Simon Butcherd3138c32016-04-27 01:26:50 +010032#include <stdlib.h>
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020033#define mbedtls_free free
Simon Butcherd3138c32016-04-27 01:26:50 +010034#define mbedtls_time time
35#define mbedtls_time_t time_t
Manuel Pégourié-Gonnard7551cb92015-05-26 16:04:06 +020036#define mbedtls_calloc calloc
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020037#define mbedtls_fprintf fprintf
38#define mbedtls_printf printf
Manuel Pégourié-Gonnard3ef6a6d2018-12-10 14:31:45 +010039#define mbedtls_exit exit
40#define MBEDTLS_EXIT_SUCCESS EXIT_SUCCESS
41#define MBEDTLS_EXIT_FAILURE EXIT_FAILURE
Rich Evans18b78c72015-02-11 14:06:19 +000042#endif
Manuel Pégourié-Gonnard8a4d5712014-06-24 14:19:59 +020043
Manuel Pégourié-Gonnarde3c41ad2015-05-13 10:04:32 +020044#if !defined(MBEDTLS_ENTROPY_C) || \
Hanno Becker7f1c8052019-08-26 13:30:13 +010045 !defined(MBEDTLS_SSL_TLS_C) || \
46 !defined(MBEDTLS_SSL_SRV_C) || \
47 !defined(MBEDTLS_NET_C) || \
48 !( defined(MBEDTLS_CTR_DRBG_C) || defined(MBEDTLS_HMAC_DRBG_C) )
Manuel Pégourié-Gonnarde3c41ad2015-05-13 10:04:32 +020049int main( void )
50{
51 mbedtls_printf("MBEDTLS_ENTROPY_C and/or "
52 "MBEDTLS_SSL_TLS_C and/or MBEDTLS_SSL_SRV_C and/or "
Hanno Becker7f1c8052019-08-26 13:30:13 +010053 "MBEDTLS_NET_C not defined, or "
54 "neither MBEDTLS_CTR_DRBG_C nor MBEDTLS_HMAC_DRBG_C defined.\n");
Manuel Pégourié-Gonnarde3c41ad2015-05-13 10:04:32 +020055 return( 0 );
56}
57#else
Manuel Pégourié-Gonnard5d917ff2014-02-21 16:52:06 +010058
Andres AG788aa4a2016-09-14 14:32:09 +010059#include "mbedtls/net_sockets.h"
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000060#include "mbedtls/ssl.h"
Hanno Becker473f98f2019-06-26 10:27:32 +010061#include "mbedtls/ssl_ciphersuites.h"
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000062#include "mbedtls/entropy.h"
63#include "mbedtls/ctr_drbg.h"
Hanno Becker7f1c8052019-08-26 13:30:13 +010064#include "mbedtls/hmac_drbg.h"
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000065#include "mbedtls/certs.h"
66#include "mbedtls/x509.h"
67#include "mbedtls/error.h"
68#include "mbedtls/debug.h"
Manuel Pégourié-Gonnard56273da2015-05-26 12:19:45 +020069#include "mbedtls/timing.h"
Paul Bakkerb60b95f2012-09-25 09:05:17 +000070
Rich Evans18b78c72015-02-11 14:06:19 +000071#include <stdio.h>
72#include <stdlib.h>
73#include <string.h>
Andres AG692ad842017-01-19 16:30:57 +000074#include <stdint.h>
Andres AG0b736db2017-02-08 14:05:57 +000075
76#if !defined(_MSC_VER)
Andres AG692ad842017-01-19 16:30:57 +000077#include <inttypes.h>
Andres AG0b736db2017-02-08 14:05:57 +000078#endif
Rich Evans18b78c72015-02-11 14:06:19 +000079
80#if !defined(_WIN32)
81#include <signal.h>
82#endif
83
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020084#if defined(MBEDTLS_SSL_CACHE_C)
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000085#include "mbedtls/ssl_cache.h"
Paul Bakker0a597072012-09-25 21:55:46 +000086#endif
87
Manuel Pégourié-Gonnardd59675d2015-05-19 15:28:00 +020088#if defined(MBEDTLS_SSL_TICKET_C)
89#include "mbedtls/ssl_ticket.h"
90#endif
91
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020092#if defined(MBEDTLS_SSL_COOKIE_C)
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000093#include "mbedtls/ssl_cookie.h"
Manuel Pégourié-Gonnard232edd42014-07-23 16:56:27 +020094#endif
95
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020096#if defined(MBEDTLS_MEMORY_BUFFER_ALLOC_C)
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000097#include "mbedtls/memory_buffer_alloc.h"
Paul Bakker82024bf2013-07-04 11:52:32 +020098#endif
99
Manuel Pégourié-Gonnarde3c41ad2015-05-13 10:04:32 +0200100#if defined(MBEDTLS_SSL_SERVER_NAME_INDICATION) && defined(MBEDTLS_FS_IO)
101#define SNI_OPTION
102#endif
103
104#if defined(_WIN32)
105#include <windows.h>
106#endif
107
Simon Butchercce68be2018-07-23 14:26:09 +0100108/* Size of memory to be allocated for the heap, when using the library's memory
109 * management and MBEDTLS_MEMORY_BUFFER_ALLOC_C is enabled. */
110#define MEMORY_HEAP_SIZE 120000
111
Manuel Pégourié-Gonnard18d31f82013-12-13 16:21:41 +0100112#define DFL_SERVER_ADDR NULL
Manuel Pégourié-Gonnardc0d74942015-06-23 12:30:57 +0200113#define DFL_SERVER_PORT "4433"
Andrzej Kurek30e731d2017-10-12 13:50:29 +0200114#define DFL_RESPONSE_SIZE -1
Paul Bakkerb60b95f2012-09-25 09:05:17 +0000115#define DFL_DEBUG_LEVEL 0
Manuel Pégourié-Gonnard55753162014-02-26 13:47:08 +0100116#define DFL_NBIO 0
Hanno Becker16970d22017-10-10 15:56:37 +0100117#define DFL_EVENT 0
Manuel Pégourié-Gonnard6b651412014-10-01 18:29:03 +0200118#define DFL_READ_TIMEOUT 0
Paul Bakkerb60b95f2012-09-25 09:05:17 +0000119#define DFL_CA_FILE ""
120#define DFL_CA_PATH ""
121#define DFL_CRT_FILE ""
122#define DFL_KEY_FILE ""
Manuel Pégourié-Gonnard3ebb2cd2013-09-23 17:00:18 +0200123#define DFL_CRT_FILE2 ""
124#define DFL_KEY_FILE2 ""
Gilles Peskinefcca9d82018-01-12 13:47:48 +0100125#define DFL_ASYNC_OPERATIONS "-"
Gilles Peskine9eb5e9a2018-01-05 21:15:57 +0100126#define DFL_ASYNC_PRIVATE_DELAY1 ( -1 )
127#define DFL_ASYNC_PRIVATE_DELAY2 ( -1 )
Gilles Peskine3665f1d2018-01-05 21:22:12 +0100128#define DFL_ASYNC_PRIVATE_ERROR ( 0 )
Paul Bakkerfbb17802013-04-17 19:10:21 +0200129#define DFL_PSK ""
130#define DFL_PSK_IDENTITY "Client_identity"
Manuel Pégourié-Gonnard70905a72015-09-16 11:08:34 +0200131#define DFL_ECJPAKE_PW NULL
Manuel Pégourié-Gonnard80c85532014-06-10 14:01:52 +0200132#define DFL_PSK_LIST NULL
Paul Bakkerb60b95f2012-09-25 09:05:17 +0000133#define DFL_FORCE_CIPHER 0
Manuel Pégourié-Gonnard6dc07812014-06-11 13:50:34 +0200134#define DFL_VERSION_SUITES NULL
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200135#define DFL_RENEGOTIATION MBEDTLS_SSL_RENEGOTIATION_DISABLED
Manuel Pégourié-Gonnard85d915b2014-11-03 20:10:36 +0100136#define DFL_ALLOW_LEGACY -2
Manuel Pégourié-Gonnard780d6712014-02-20 17:19:59 +0100137#define DFL_RENEGOTIATE 0
Manuel Pégourié-Gonnardfae355e2014-07-04 14:32:27 +0200138#define DFL_RENEGO_DELAY -2
Andres AG692ad842017-01-19 16:30:57 +0000139#define DFL_RENEGO_PERIOD ( (uint64_t)-1 )
Manuel Pégourié-Gonnard67686c42014-08-15 11:17:27 +0200140#define DFL_EXCHANGES 1
Manuel Pégourié-Gonnard8c8be1e2015-03-31 14:21:11 +0200141#define DFL_MIN_VERSION -1
Paul Bakkerc1516be2013-06-29 16:01:32 +0200142#define DFL_MAX_VERSION -1
Manuel Pégourié-Gonnardd42b7c82015-03-20 19:44:04 +0000143#define DFL_ARC4 -1
Gilles Peskinebc70a182017-05-09 15:59:24 +0200144#define DFL_SHA1 -1
Hanno Becker1029ace2019-04-09 17:28:10 +0100145#define DFL_CID_ENABLED 0
146#define DFL_CID_VALUE ""
Hanno Becker96870292019-05-03 17:30:59 +0100147#define DFL_CID_ENABLED_RENEGO -1
148#define DFL_CID_VALUE_RENEGO NULL
Manuel Pégourié-Gonnardfa44f202015-03-27 17:52:25 +0100149#define DFL_AUTH_MODE -1
Janos Follath4817e272017-04-10 13:44:33 +0100150#define DFL_CERT_REQ_CA_LIST MBEDTLS_SSL_CERT_REQ_CA_LIST_ENABLED
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200151#define DFL_MFL_CODE MBEDTLS_SSL_MAX_FRAG_LEN_NONE
Manuel Pégourié-Gonnarde117a8f2015-01-09 12:39:35 +0100152#define DFL_TRUNC_HMAC -1
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200153#define DFL_TICKETS MBEDTLS_SSL_SESSION_TICKETS_ENABLED
Manuel Pégourié-Gonnardd59675d2015-05-19 15:28:00 +0200154#define DFL_TICKET_TIMEOUT 86400
Manuel Pégourié-Gonnard4c883452014-02-20 21:32:41 +0100155#define DFL_CACHE_MAX -1
Manuel Pégourié-Gonnardc55a5b72014-02-20 22:50:56 +0100156#define DFL_CACHE_TIMEOUT -1
Manuel Pégourié-Gonnard5d917ff2014-02-21 16:52:06 +0100157#define DFL_SNI NULL
Manuel Pégourié-Gonnard1bd22812014-04-05 14:34:07 +0200158#define DFL_ALPN_STRING NULL
Hanno Beckere6706e62017-05-15 16:05:15 +0100159#define DFL_CURVES NULL
Manuel Pégourié-Gonnard736699c2014-06-09 11:29:50 +0200160#define DFL_DHM_FILE NULL
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200161#define DFL_TRANSPORT MBEDTLS_SSL_TRANSPORT_STREAM
Manuel Pégourié-Gonnard26820e32014-07-23 19:34:59 +0200162#define DFL_COOKIES 1
Manuel Pégourié-Gonnard27393132014-09-24 14:41:11 +0200163#define DFL_ANTI_REPLAY -1
Manuel Pégourié-Gonnardd823bd02014-10-01 14:40:56 +0200164#define DFL_HS_TO_MIN 0
165#define DFL_HS_TO_MAX 0
Manuel Pégourié-Gonnardb747c6c2018-08-12 13:28:53 +0200166#define DFL_DTLS_MTU -1
Manuel Pégourié-Gonnarde698f592014-10-14 19:36:36 +0200167#define DFL_BADMAC_LIMIT -1
Hanno Beckere7675d02018-08-14 13:28:56 +0100168#define DFL_DGRAM_PACKING 1
Manuel Pégourié-Gonnard367381f2014-10-20 18:40:56 +0200169#define DFL_EXTENDED_MS -1
Manuel Pégourié-Gonnard699cafa2014-10-27 13:57:03 +0100170#define DFL_ETM -1
Jarno Lamsa0ea3cfe2019-05-29 13:33:32 +0300171#define DFL_SERIALIZE 0
Jarno Lamsa41b35912019-06-10 15:51:11 +0300172#define DFL_EXTENDED_MS_ENFORCE -1
Paul Bakkerb60b95f2012-09-25 09:05:17 +0000173
Manuel Pégourié-Gonnard0c017a52013-07-18 14:07:36 +0200174#define LONG_RESPONSE "<p>01-blah-blah-blah-blah-blah-blah-blah-blah-blah\r\n" \
175 "02-blah-blah-blah-blah-blah-blah-blah-blah-blah-blah-blah-blah-blah\r\n" \
176 "03-blah-blah-blah-blah-blah-blah-blah-blah-blah-blah-blah-blah-blah\r\n" \
177 "04-blah-blah-blah-blah-blah-blah-blah-blah-blah-blah-blah-blah-blah\r\n" \
178 "05-blah-blah-blah-blah-blah-blah-blah-blah-blah-blah-blah-blah-blah\r\n" \
179 "06-blah-blah-blah-blah-blah-blah-blah-blah-blah-blah-blah-blah-blah\r\n" \
180 "07-blah-blah-blah-blah-blah-blah-blah-blah-blah-blah-blah-blah</p>\r\n"
Manuel Pégourié-Gonnardbd7ce632013-07-17 15:34:17 +0200181
Paul Bakker8e714d72013-07-18 11:05:13 +0200182/* Uncomment LONG_RESPONSE at the end of HTTP_RESPONSE to test sending longer
183 * packets (for fragmentation purposes) */
Paul Bakkerb60b95f2012-09-25 09:05:17 +0000184#define HTTP_RESPONSE \
185 "HTTP/1.0 200 OK\r\nContent-Type: text/html\r\n\r\n" \
Manuel Pégourié-Gonnard91699212015-01-22 16:26:39 +0000186 "<h2>mbed TLS Test Server</h2>\r\n" \
Manuel Pégourié-Gonnardbd7ce632013-07-17 15:34:17 +0200187 "<p>Successful connection using: %s</p>\r\n" // LONG_RESPONSE
Paul Bakkerb60b95f2012-09-25 09:05:17 +0000188
Manuel Pégourié-Gonnard95c0a632014-06-11 18:32:36 +0200189/*
190 * Size of the basic I/O buffer. Able to hold our default response.
191 *
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200192 * You will need to adapt the mbedtls_ssl_get_bytes_avail() test in ssl-opt.sh
Manuel Pégourié-Gonnard95c0a632014-06-11 18:32:36 +0200193 * if you change this value to something outside the range <= 100 or > 500
194 */
Andrzej Kurek30e731d2017-10-12 13:50:29 +0200195#define DFL_IO_BUF_LEN 200
Manuel Pégourié-Gonnarde7a3b102014-06-11 18:21:20 +0200196
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200197#if defined(MBEDTLS_X509_CRT_PARSE_C)
198#if defined(MBEDTLS_FS_IO)
Paul Bakkerb60b95f2012-09-25 09:05:17 +0000199#define USAGE_IO \
Paul Bakker1f9d02d2012-11-20 10:30:55 +0100200 " ca_file=%%s The single file containing the top-level CA(s) you fully trust\n" \
201 " default: \"\" (pre-loaded)\n" \
Hanno Becker1ce1a512019-05-01 11:16:28 +0100202 " use \"none\" to skip loading any top-level CAs.\n" \
Paul Bakker1f9d02d2012-11-20 10:30:55 +0100203 " ca_path=%%s The path containing the top-level CA(s) you fully trust\n" \
204 " default: \"\" (pre-loaded) (overrides ca_file)\n" \
Hanno Becker1ce1a512019-05-01 11:16:28 +0100205 " use \"none\" to skip loading any top-level CAs.\n" \
Paul Bakker1f9d02d2012-11-20 10:30:55 +0100206 " crt_file=%%s Your own cert and chain (in bottom to top order, top may be omitted)\n" \
Manuel Pégourié-Gonnardac8474f2013-09-25 11:35:15 +0200207 " default: see note after key_file2\n" \
208 " key_file=%%s default: see note after key_file2\n" \
Manuel Pégourié-Gonnard3ebb2cd2013-09-23 17:00:18 +0200209 " crt_file2=%%s Your second cert and chain (in bottom to top order, top may be omitted)\n" \
Manuel Pégourié-Gonnardac8474f2013-09-25 11:35:15 +0200210 " default: see note after key_file2\n" \
211 " key_file2=%%s default: see note below\n" \
212 " note: if neither crt_file/key_file nor crt_file2/key_file2 are used,\n" \
Manuel Pégourié-Gonnard736699c2014-06-09 11:29:50 +0200213 " preloaded certificate(s) and key(s) are used if available\n" \
214 " dhm_file=%%s File containing Diffie-Hellman parameters\n" \
215 " default: preloaded parameters\n"
Paul Bakkerb60b95f2012-09-25 09:05:17 +0000216#else
217#define USAGE_IO \
Paul Bakkered27a042013-04-18 22:46:23 +0200218 "\n" \
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200219 " No file operations available (MBEDTLS_FS_IO not defined)\n" \
Paul Bakkered27a042013-04-18 22:46:23 +0200220 "\n"
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200221#endif /* MBEDTLS_FS_IO */
Paul Bakkered27a042013-04-18 22:46:23 +0200222#else
223#define USAGE_IO ""
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200224#endif /* MBEDTLS_X509_CRT_PARSE_C */
Paul Bakkered27a042013-04-18 22:46:23 +0200225
Gilles Peskineb74a1c72018-04-24 13:09:22 +0200226#if defined(MBEDTLS_SSL_ASYNC_PRIVATE)
Gilles Peskine9eb5e9a2018-01-05 21:15:57 +0100227#define USAGE_SSL_ASYNC \
Gilles Peskinefcca9d82018-01-12 13:47:48 +0100228 " async_operations=%%c... d=decrypt, s=sign (default: -=off)\n" \
Gilles Peskine9eb5e9a2018-01-05 21:15:57 +0100229 " async_private_delay1=%%d Asynchronous delay for key_file or preloaded key\n" \
Gilles Peskine166ce742018-04-30 10:30:49 +0200230 " async_private_delay2=%%d Asynchronous delay for key_file2 and sni\n" \
Gilles Peskine9eb5e9a2018-01-05 21:15:57 +0100231 " default: -1 (not asynchronous)\n" \
Gilles Peskine60ee4ca2018-01-08 11:28:05 +0100232 " async_private_error=%%d Async callback error injection (default=0=none,\n" \
Gilles Peskinec9125722018-04-26 07:15:40 +0200233 " 1=start, 2=cancel, 3=resume, negative=first time only)"
Gilles Peskine9eb5e9a2018-01-05 21:15:57 +0100234#else
235#define USAGE_SSL_ASYNC ""
Gilles Peskineb74a1c72018-04-24 13:09:22 +0200236#endif /* MBEDTLS_SSL_ASYNC_PRIVATE */
Gilles Peskine9eb5e9a2018-01-05 21:15:57 +0100237
Hanno Beckera5a2b082019-05-15 14:03:01 +0100238#if defined(MBEDTLS_SSL_DTLS_CONNECTION_ID)
Hanno Becker1029ace2019-04-09 17:28:10 +0100239#define USAGE_CID \
240 " cid=%%d Disable (0) or enable (1) the use of the DTLS Connection ID extension.\n" \
241 " default: 0 (disabled)\n" \
Hanno Becker96870292019-05-03 17:30:59 +0100242 " cid_renego=%%d Disable (0) or enable (1) the use of the DTLS Connection ID extension during renegotiation.\n" \
Hanno Beckerc8f43d82019-05-23 17:01:06 +0100243 " default: same as 'cid' parameter\n" \
Hanno Becker1029ace2019-04-09 17:28:10 +0100244 " cid_val=%%s The CID to use for incoming messages (in hex, without 0x).\n" \
Hanno Becker96870292019-05-03 17:30:59 +0100245 " default: \"\"\n" \
246 " cid_val_renego=%%s The CID to use for incoming messages (in hex, without 0x) after renegotiation.\n" \
Hanno Beckerc8f43d82019-05-23 17:01:06 +0100247 " default: same as 'cid_val' parameter\n"
Hanno Beckera5a2b082019-05-15 14:03:01 +0100248#else /* MBEDTLS_SSL_DTLS_CONNECTION_ID */
Hanno Becker1029ace2019-04-09 17:28:10 +0100249#define USAGE_CID ""
Hanno Beckera5a2b082019-05-15 14:03:01 +0100250#endif /* MBEDTLS_SSL_DTLS_CONNECTION_ID */
Hanno Becker1029ace2019-04-09 17:28:10 +0100251
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200252#if defined(MBEDTLS_KEY_EXCHANGE__SOME__PSK_ENABLED)
Hanno Beckerd0d01c52018-10-25 16:49:48 +0100253#define USAGE_PSK \
254 " psk=%%s default: \"\" (in hex, without 0x)\n" \
255 " psk_list=%%s default: \"\"\n" \
Hanno Becker5ddc0632018-10-26 10:04:13 +0100256 " A list of (PSK identity, PSK value) pairs.\n" \
257 " The PSK values are in hex, without 0x.\n" \
Hanno Beckerd0d01c52018-10-25 16:49:48 +0100258 " id1,psk1[,id2,psk2[,...]]\n" \
Paul Bakkered27a042013-04-18 22:46:23 +0200259 " psk_identity=%%s default: \"Client_identity\"\n"
260#else
261#define USAGE_PSK ""
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200262#endif /* MBEDTLS_KEY_EXCHANGE__SOME__PSK_ENABLED */
Paul Bakkerb60b95f2012-09-25 09:05:17 +0000263
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200264#if defined(MBEDTLS_SSL_SESSION_TICKETS)
Paul Bakkera503a632013-08-14 13:48:06 +0200265#define USAGE_TICKETS \
Manuel Pégourié-Gonnarddbe1ee12014-02-21 09:18:13 +0100266 " tickets=%%d default: 1 (enabled)\n" \
Manuel Pégourié-Gonnardd59675d2015-05-19 15:28:00 +0200267 " ticket_timeout=%%d default: 86400 (one day)\n"
Paul Bakkera503a632013-08-14 13:48:06 +0200268#else
269#define USAGE_TICKETS ""
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200270#endif /* MBEDTLS_SSL_SESSION_TICKETS */
Paul Bakkera503a632013-08-14 13:48:06 +0200271
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200272#if defined(MBEDTLS_SSL_CACHE_C)
Manuel Pégourié-Gonnard4c883452014-02-20 21:32:41 +0100273#define USAGE_CACHE \
Manuel Pégourié-Gonnardc55a5b72014-02-20 22:50:56 +0100274 " cache_max=%%d default: cache default (50)\n" \
275 " cache_timeout=%%d default: cache default (1d)\n"
Manuel Pégourié-Gonnard4c883452014-02-20 21:32:41 +0100276#else
277#define USAGE_CACHE ""
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200278#endif /* MBEDTLS_SSL_CACHE_C */
Manuel Pégourié-Gonnard4c883452014-02-20 21:32:41 +0100279
Manuel Pégourié-Gonnard6c7af4c2015-04-03 16:41:52 +0200280#if defined(SNI_OPTION)
Ron Eldor24eec792019-04-04 15:02:01 +0300281#if defined(MBEDTLS_X509_CRL_PARSE_C)
282#define SNI_CRL ",crl"
283#else
284#define SNI_CRL ""
285#endif
286
Manuel Pégourié-Gonnard5d917ff2014-02-21 16:52:06 +0100287#define USAGE_SNI \
Ron Eldor24eec792019-04-04 15:02:01 +0300288 " sni=%%s name1,cert1,key1,ca1"SNI_CRL",auth1[,...]\n" \
Manuel Pégourié-Gonnard4d6f1782015-06-19 14:40:39 +0200289 " default: disabled\n"
Manuel Pégourié-Gonnard5d917ff2014-02-21 16:52:06 +0100290#else
291#define USAGE_SNI ""
Manuel Pégourié-Gonnard6c7af4c2015-04-03 16:41:52 +0200292#endif /* SNI_OPTION */
Manuel Pégourié-Gonnard5d917ff2014-02-21 16:52:06 +0100293
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200294#if defined(MBEDTLS_SSL_MAX_FRAGMENT_LENGTH)
Paul Bakker05decb22013-08-15 13:33:48 +0200295#define USAGE_MAX_FRAG_LEN \
296 " max_frag_len=%%d default: 16384 (tls default)\n" \
297 " options: 512, 1024, 2048, 4096\n"
298#else
299#define USAGE_MAX_FRAG_LEN ""
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200300#endif /* MBEDTLS_SSL_MAX_FRAGMENT_LENGTH */
Paul Bakker05decb22013-08-15 13:33:48 +0200301
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200302#if defined(MBEDTLS_SSL_TRUNCATED_HMAC)
Manuel Pégourié-Gonnarde117a8f2015-01-09 12:39:35 +0100303#define USAGE_TRUNC_HMAC \
304 " trunc_hmac=%%d default: library default\n"
305#else
306#define USAGE_TRUNC_HMAC ""
307#endif
308
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200309#if defined(MBEDTLS_SSL_ALPN)
Manuel Pégourié-Gonnard1bd22812014-04-05 14:34:07 +0200310#define USAGE_ALPN \
311 " alpn=%%s default: \"\" (disabled)\n" \
312 " example: spdy/1,http/1.1\n"
313#else
314#define USAGE_ALPN ""
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200315#endif /* MBEDTLS_SSL_ALPN */
Manuel Pégourié-Gonnard1bd22812014-04-05 14:34:07 +0200316
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200317#if defined(MBEDTLS_SSL_DTLS_HELLO_VERIFY)
Manuel Pégourié-Gonnard26820e32014-07-23 19:34:59 +0200318#define USAGE_COOKIES \
319 " cookies=0/1/-1 default: 1 (enabled)\n" \
Manuel Pégourié-Gonnard27393132014-09-24 14:41:11 +0200320 " 0: disabled, -1: library default (broken)\n"
Manuel Pégourié-Gonnard26820e32014-07-23 19:34:59 +0200321#else
322#define USAGE_COOKIES ""
323#endif
324
Hanno Becker7f376f42019-06-12 16:20:48 +0100325#if defined(MBEDTLS_SSL_DTLS_ANTI_REPLAY) && \
326 !defined(MBEDTLS_SSL_CONF_ANTI_REPLAY)
Manuel Pégourié-Gonnard27393132014-09-24 14:41:11 +0200327#define USAGE_ANTI_REPLAY \
Manuel Pégourié-Gonnarde698f592014-10-14 19:36:36 +0200328 " anti_replay=0/1 default: (library default: enabled)\n"
Manuel Pégourié-Gonnard27393132014-09-24 14:41:11 +0200329#else
330#define USAGE_ANTI_REPLAY ""
331#endif
332
Hanno Beckerde671542019-06-12 16:30:46 +0100333#if defined(MBEDTLS_SSL_DTLS_BADMAC_LIMIT) && \
334 !defined(MBEDTLS_SSL_CONF_BADMAC_LIMIT)
Manuel Pégourié-Gonnarde698f592014-10-14 19:36:36 +0200335#define USAGE_BADMAC_LIMIT \
336 " badmac_limit=%%d default: (library default: disabled)\n"
337#else
338#define USAGE_BADMAC_LIMIT ""
339#endif
340
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200341#if defined(MBEDTLS_SSL_PROTO_DTLS)
Manuel Pégourié-Gonnardd823bd02014-10-01 14:40:56 +0200342#define USAGE_DTLS \
Manuel Pégourié-Gonnarde744eab2019-03-18 10:51:18 +0100343 " dtls=%%d default: 0 (TLS) (if both enabled)\n" \
Manuel Pégourié-Gonnardd823bd02014-10-01 14:40:56 +0200344 " hs_timeout=%%d-%%d default: (library default: 1000-60000)\n" \
Manuel Pégourié-Gonnardb747c6c2018-08-12 13:28:53 +0200345 " range of DTLS handshake timeouts in millisecs\n" \
Hanno Beckere7675d02018-08-14 13:28:56 +0100346 " mtu=%%d default: (library default: unlimited)\n" \
347 " dgram_packing=%%d default: 1 (allowed)\n" \
348 " allow or forbid packing of multiple\n" \
349 " records within a single datgram.\n"
Manuel Pégourié-Gonnardd823bd02014-10-01 14:40:56 +0200350#else
351#define USAGE_DTLS ""
352#endif
353
Hanno Beckerf765ce62019-06-21 13:17:14 +0100354#if defined(MBEDTLS_SSL_EXTENDED_MASTER_SECRET) && \
355 !defined(MBEDTLS_SSL_CONF_EXTENDED_MASTER_SECRET) && \
356 !defined(MBEDTLS_SSL_CONF_ENFORCE_EXTENDED_MASTER_SECRET)
Manuel Pégourié-Gonnard367381f2014-10-20 18:40:56 +0200357#define USAGE_EMS \
Jarno Lamsa41b35912019-06-10 15:51:11 +0300358 " extended_ms=0/1 default: (library default: on)\n" \
359 " enforce_extended_master_secret=0/1 default: (library default: off)\n"
Manuel Pégourié-Gonnard367381f2014-10-20 18:40:56 +0200360#else
361#define USAGE_EMS ""
362#endif
363
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200364#if defined(MBEDTLS_SSL_ENCRYPT_THEN_MAC)
Manuel Pégourié-Gonnard699cafa2014-10-27 13:57:03 +0100365#define USAGE_ETM \
366 " etm=0/1 default: (library default: on)\n"
367#else
368#define USAGE_ETM ""
369#endif
370
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200371#if defined(MBEDTLS_SSL_RENEGOTIATION)
Manuel Pégourié-Gonnard615e6772014-11-03 08:23:14 +0100372#define USAGE_RENEGO \
373 " renegotiation=%%d default: 0 (disabled)\n" \
374 " renegotiate=%%d default: 0 (disabled)\n" \
Manuel Pégourié-Gonnard590f4162014-11-05 14:23:03 +0100375 " renego_delay=%%d default: -2 (library default)\n" \
Andres AG692ad842017-01-19 16:30:57 +0000376 " renego_period=%%d default: (2^64 - 1 for TLS, 2^48 - 1 for DTLS)\n"
Manuel Pégourié-Gonnard615e6772014-11-03 08:23:14 +0100377#else
378#define USAGE_RENEGO ""
379#endif
380
Manuel Pégourié-Gonnard70905a72015-09-16 11:08:34 +0200381#if defined(MBEDTLS_KEY_EXCHANGE_ECJPAKE_ENABLED)
382#define USAGE_ECJPAKE \
383 " ecjpake_pw=%%s default: none (disabled)\n"
384#else
385#define USAGE_ECJPAKE ""
386#endif
387
Hanno Beckerc1096e72019-06-19 12:30:41 +0100388#if defined(MBEDTLS_ECP_C) && !defined(MBEDTLS_SSL_CONF_SINGLE_EC)
Hanno Beckere6706e62017-05-15 16:05:15 +0100389#define USAGE_CURVES \
390 " curves=a,b,c,d default: \"default\" (library default)\n" \
391 " example: \"secp521r1,brainpoolP512r1\"\n" \
392 " - use \"none\" for empty list\n" \
393 " - see mbedtls_ecp_curve_list()\n" \
394 " for acceptable curve names\n"
395#else
396#define USAGE_CURVES ""
397#endif
398
Jarno Lamsacf1b6722019-06-04 11:06:31 +0300399#if defined(MBEDTLS_SSL_CONTEXT_SERIALIZATION)
400#define USAGE_SERIALIZATION \
Jarno Lamsab5ff6a42019-06-06 10:40:52 +0300401 " serialize=%%d default: 0 (do not serialize/deserialize)\n" \
Jarno Lamsa85c23802019-06-07 08:39:24 +0300402 " options: 1 (serialize)\n" \
403 " 2 (serialize with re-initialization)\n"
Jarno Lamsacf1b6722019-06-04 11:06:31 +0300404#else
405#define USAGE_SERIALIZATION ""
406#endif
407
Hanno Beckeracd4fc02019-06-12 16:40:50 +0100408#if !defined(MBEDTLS_SSL_CONF_AUTHMODE)
409#define USAGE_AUTH_MODE \
410 " auth_mode=%%s default: (library default: none)\n" \
411 " options: none, optional, required\n"
412#else
413#define USAGE_AUTH_MODE ""
414#endif
415
Hanno Beckerb0b2b672019-06-12 16:58:10 +0100416#if !defined(MBEDTLS_SSL_CONF_ALLOW_LEGACY_RENEGOTIATION)
417#define USAGE_ALLOW_LEGACY_RENEGO \
418 " allow_legacy=%%d default: (library default: no)\n"
419#else
420#define USAGE_ALLOW_LEGACY_RENEGO ""
421#endif
422
Hanno Becker1f835fa2019-06-13 10:14:59 +0100423#if !defined(MBEDTLS_SSL_CONF_READ_TIMEOUT)
424#define USAGE_READ_TIMEOUT \
425 " read_timeout=%%d default: 0 ms (no timeout)\n"
426#else
427#define USAGE_READ_TIMEOUT ""
428#endif
429
Hanno Beckerc2cfdaa2019-06-13 12:33:03 +0100430#if !defined(MBEDTLS_SSL_CONF_CERT_REQ_CA_LIST)
431#define USAGE_CERT_REQ_CA_LIST \
432 " cert_req_ca_list=%%d default: 1 (send ca list)\n" \
433 " options: 1 (send ca list), 0 (don't send)\n"
434#else
435#define USAGE_CERT_REQ_CA_LIST ""
436#endif
437
Hanno Becker72e5ffc2019-07-05 11:35:08 +0100438#if !defined(MBEDTLS_SSL_CONF_MIN_MINOR_VER) || \
439 !defined(MBEDTLS_SSL_CONF_MIN_MAJOR_VER) || \
440 !defined(MBEDTLS_SSL_CONF_MAX_MINOR_VER) || \
441 !defined(MBEDTLS_SSL_CONF_MAX_MAJOR_VER)
442#define USAGE_MAX_VERSION " max_version=%%s default: (library default: tls1_2)\n"
443#define USAGE_MIN_VERSION " min_version=%%s default: (library default: tls1)\n"
444#define USAGE_FORCE_VERSION " force_version=%%s default: \"\" (none)\n" \
445 " options: ssl3, tls1, tls1_1, tls1_2, dtls1, dtls1_2\n"
446#else
447#define USAGE_MAX_VERSION ""
448#define USAGE_MIN_VERSION ""
449#define USAGE_FORCE_VERSION ""
450#endif
451
Paul Bakkerb60b95f2012-09-25 09:05:17 +0000452#define USAGE \
453 "\n usage: ssl_server2 param=<>...\n" \
454 "\n acceptable parameters:\n" \
Ron Eldor71f68c42017-09-26 11:29:11 +0300455 " server_addr=%%s default: (all interfaces)\n" \
Paul Bakkerb60b95f2012-09-25 09:05:17 +0000456 " server_port=%%d default: 4433\n" \
457 " debug_level=%%d default: 0 (disabled)\n" \
Andrzej Kurek30e731d2017-10-12 13:50:29 +0200458 " buffer_size=%%d default: 200 \n" \
459 " (minimum: 1, max: 16385)\n" \
460 " response_size=%%d default: about 152 (basic response)\n" \
461 " (minimum: 0, max: 16384)\n" \
462 " increases buffer_size if bigger\n"\
Manuel Pégourié-Gonnard55753162014-02-26 13:47:08 +0100463 " nbio=%%d default: 0 (blocking I/O)\n" \
464 " options: 1 (non-blocking), 2 (added delays)\n" \
Hanno Becker16970d22017-10-10 15:56:37 +0100465 " event=%%d default: 0 (loop)\n" \
466 " options: 1 (level-triggered, implies nbio=1),\n" \
Hanno Becker1f835fa2019-06-13 10:14:59 +0100467 USAGE_READ_TIMEOUT \
Manuel Pégourié-Gonnard2fc243d2014-02-19 18:22:59 +0100468 "\n" \
Manuel Pégourié-Gonnardd823bd02014-10-01 14:40:56 +0200469 USAGE_DTLS \
470 USAGE_COOKIES \
471 USAGE_ANTI_REPLAY \
Manuel Pégourié-Gonnarde698f592014-10-14 19:36:36 +0200472 USAGE_BADMAC_LIMIT \
Manuel Pégourié-Gonnardd823bd02014-10-01 14:40:56 +0200473 "\n" \
Hanno Beckeracd4fc02019-06-12 16:40:50 +0100474 USAGE_AUTH_MODE \
Hanno Beckerc2cfdaa2019-06-13 12:33:03 +0100475 USAGE_CERT_REQ_CA_LIST \
Paul Bakkerb60b95f2012-09-25 09:05:17 +0000476 USAGE_IO \
Gilles Peskine9eb5e9a2018-01-05 21:15:57 +0100477 USAGE_SSL_ASYNC \
Manuel Pégourié-Gonnard5d917ff2014-02-21 16:52:06 +0100478 USAGE_SNI \
Manuel Pégourié-Gonnard2fc243d2014-02-19 18:22:59 +0100479 "\n" \
480 USAGE_PSK \
Manuel Pégourié-Gonnard70905a72015-09-16 11:08:34 +0200481 USAGE_ECJPAKE \
Manuel Pégourié-Gonnard2fc243d2014-02-19 18:22:59 +0100482 "\n" \
Hanno Beckerb0b2b672019-06-12 16:58:10 +0100483 USAGE_ALLOW_LEGACY_RENEGO \
Manuel Pégourié-Gonnard615e6772014-11-03 08:23:14 +0100484 USAGE_RENEGO \
Manuel Pégourié-Gonnard67686c42014-08-15 11:17:27 +0200485 " exchanges=%%d default: 1\n" \
Manuel Pégourié-Gonnardd823bd02014-10-01 14:40:56 +0200486 "\n" \
Manuel Pégourié-Gonnard2fc243d2014-02-19 18:22:59 +0100487 USAGE_TICKETS \
Manuel Pégourié-Gonnardc55a5b72014-02-20 22:50:56 +0100488 USAGE_CACHE \
Manuel Pégourié-Gonnard2fc243d2014-02-19 18:22:59 +0100489 USAGE_MAX_FRAG_LEN \
Manuel Pégourié-Gonnarde117a8f2015-01-09 12:39:35 +0100490 USAGE_TRUNC_HMAC \
Manuel Pégourié-Gonnard1bd22812014-04-05 14:34:07 +0200491 USAGE_ALPN \
Manuel Pégourié-Gonnard367381f2014-10-20 18:40:56 +0200492 USAGE_EMS \
Manuel Pégourié-Gonnard699cafa2014-10-27 13:57:03 +0100493 USAGE_ETM \
Hanno Beckere6706e62017-05-15 16:05:15 +0100494 USAGE_CURVES \
Manuel Pégourié-Gonnard2fc243d2014-02-19 18:22:59 +0100495 "\n" \
Manuel Pégourié-Gonnardfa44f202015-03-27 17:52:25 +0100496 " arc4=%%d default: (library default: 0)\n" \
Gilles Peskinebc70a182017-05-09 15:59:24 +0200497 " allow_sha1=%%d default: 0\n" \
Hanno Becker72e5ffc2019-07-05 11:35:08 +0100498 USAGE_MIN_VERSION \
499 USAGE_MAX_VERSION \
500 USAGE_FORCE_VERSION \
Manuel Pégourié-Gonnard6dc07812014-06-11 13:50:34 +0200501 "\n" \
502 " version_suites=a,b,c,d per-version ciphersuites\n" \
503 " in order from ssl3 to tls1_2\n" \
504 " default: all enabled\n" \
505 " force_ciphersuite=<name> default: all enabled\n" \
Andres Amaya Garciabfa3e092018-10-16 21:08:38 +0100506 " query_config=<name> return 0 if the specified\n" \
507 " configuration macro is defined and 1\n" \
508 " otherwise. The expansion of the macro\n" \
509 " is printed if it is defined\n" \
Jarno Lamsacf1b6722019-06-04 11:06:31 +0300510 USAGE_SERIALIZATION \
Paul Bakkerb60b95f2012-09-25 09:05:17 +0000511 " acceptable ciphersuite names:\n"
512
Hanno Becker8651a432017-06-09 16:13:22 +0100513#define ALPN_LIST_SIZE 10
514#define CURVE_LIST_SIZE 20
515
Andres AG692ad842017-01-19 16:30:57 +0000516#define PUT_UINT64_BE(out_be,in_le,i) \
517{ \
518 (out_be)[(i) + 0] = (unsigned char)( ( (in_le) >> 56 ) & 0xFF ); \
519 (out_be)[(i) + 1] = (unsigned char)( ( (in_le) >> 48 ) & 0xFF ); \
520 (out_be)[(i) + 2] = (unsigned char)( ( (in_le) >> 40 ) & 0xFF ); \
521 (out_be)[(i) + 3] = (unsigned char)( ( (in_le) >> 32 ) & 0xFF ); \
522 (out_be)[(i) + 4] = (unsigned char)( ( (in_le) >> 24 ) & 0xFF ); \
523 (out_be)[(i) + 5] = (unsigned char)( ( (in_le) >> 16 ) & 0xFF ); \
524 (out_be)[(i) + 6] = (unsigned char)( ( (in_le) >> 8 ) & 0xFF ); \
525 (out_be)[(i) + 7] = (unsigned char)( ( (in_le) >> 0 ) & 0xFF ); \
526}
527
Simon Butcher63cb97e2018-12-06 17:43:31 +0000528
Rich Evans85b05ec2015-02-12 11:37:29 +0000529/*
530 * global options
531 */
532struct options
533{
534 const char *server_addr; /* address on which the ssl service runs */
Manuel Pégourié-Gonnardc0d74942015-06-23 12:30:57 +0200535 const char *server_port; /* port on which the ssl service runs */
Rich Evans85b05ec2015-02-12 11:37:29 +0000536 int debug_level; /* level of debugging */
537 int nbio; /* should I/O be blocking? */
Hanno Becker16970d22017-10-10 15:56:37 +0100538 int event; /* loop or event-driven IO? level or edge triggered? */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200539 uint32_t read_timeout; /* timeout on mbedtls_ssl_read() in milliseconds */
Andrzej Kurek30e731d2017-10-12 13:50:29 +0200540 int response_size; /* pad response with header to requested size */
541 uint16_t buffer_size; /* IO buffer size */
Rich Evans85b05ec2015-02-12 11:37:29 +0000542 const char *ca_file; /* the file with the CA certificate(s) */
543 const char *ca_path; /* the path with the CA certificate(s) reside */
544 const char *crt_file; /* the file with the server certificate */
545 const char *key_file; /* the file with the server key */
546 const char *crt_file2; /* the file with the 2nd server certificate */
547 const char *key_file2; /* the file with the 2nd server key */
Gilles Peskinefcca9d82018-01-12 13:47:48 +0100548 const char *async_operations; /* supported SSL asynchronous operations */
Gilles Peskine9eb5e9a2018-01-05 21:15:57 +0100549 int async_private_delay1; /* number of times f_async_resume needs to be called for key 1, or -1 for no async */
550 int async_private_delay2; /* number of times f_async_resume needs to be called for key 2, or -1 for no async */
551 int async_private_error; /* inject error in async private callback */
Rich Evans85b05ec2015-02-12 11:37:29 +0000552 const char *psk; /* the pre-shared key */
553 const char *psk_identity; /* the pre-shared key identity */
554 char *psk_list; /* list of PSK id/key pairs for callback */
Manuel Pégourié-Gonnard70905a72015-09-16 11:08:34 +0200555 const char *ecjpake_pw; /* the EC J-PAKE password */
Rich Evans85b05ec2015-02-12 11:37:29 +0000556 int force_ciphersuite[2]; /* protocol/ciphersuite to use, or all */
557 const char *version_suites; /* per-version ciphersuites */
558 int renegotiation; /* enable / disable renegotiation */
559 int allow_legacy; /* allow legacy renegotiation */
560 int renegotiate; /* attempt renegotiation? */
561 int renego_delay; /* delay before enforcing renegotiation */
Andres AG692ad842017-01-19 16:30:57 +0000562 uint64_t renego_period; /* period for automatic renegotiation */
Rich Evans85b05ec2015-02-12 11:37:29 +0000563 int exchanges; /* number of data exchanges */
564 int min_version; /* minimum protocol version accepted */
565 int max_version; /* maximum protocol version accepted */
566 int arc4; /* flag for arc4 suites support */
Gilles Peskinebc70a182017-05-09 15:59:24 +0200567 int allow_sha1; /* flag for SHA-1 support */
Rich Evans85b05ec2015-02-12 11:37:29 +0000568 int auth_mode; /* verify mode for connection */
Janos Follath4817e272017-04-10 13:44:33 +0100569 int cert_req_ca_list; /* should we send the CA list? */
Rich Evans85b05ec2015-02-12 11:37:29 +0000570 unsigned char mfl_code; /* code for maximum fragment length */
571 int trunc_hmac; /* accept truncated hmac? */
572 int tickets; /* enable / disable session tickets */
573 int ticket_timeout; /* session ticket lifetime */
574 int cache_max; /* max number of session cache entries */
575 int cache_timeout; /* expiration delay of session cache entries */
576 char *sni; /* string describing sni information */
Hanno Beckere6706e62017-05-15 16:05:15 +0100577 const char *curves; /* list of supported elliptic curves */
Rich Evans85b05ec2015-02-12 11:37:29 +0000578 const char *alpn_string; /* ALPN supported protocols */
579 const char *dhm_file; /* the file with the DH parameters */
580 int extended_ms; /* allow negotiation of extended MS? */
Jarno Lamsa41b35912019-06-10 15:51:11 +0300581 int enforce_extended_master_secret; /* Enforce the usage of extended
582 * master secret */
Rich Evans85b05ec2015-02-12 11:37:29 +0000583 int etm; /* allow negotiation of encrypt-then-MAC? */
Manuel Pégourié-Gonnardd901d172015-02-16 18:37:53 +0000584 int transport; /* TLS or DTLS? */
585 int cookies; /* Use cookies for DTLS? -1 to break them */
586 int anti_replay; /* Use anti-replay for DTLS? -1 for default */
587 uint32_t hs_to_min; /* Initial value of DTLS handshake timer */
588 uint32_t hs_to_max; /* Max value of DTLS handshake timer */
Manuel Pégourié-Gonnardb747c6c2018-08-12 13:28:53 +0200589 int dtls_mtu; /* UDP Maximum tranport unit for DTLS */
Hanno Beckere7675d02018-08-14 13:28:56 +0100590 int dgram_packing; /* allow/forbid datagram packing */
Manuel Pégourié-Gonnardd901d172015-02-16 18:37:53 +0000591 int badmac_limit; /* Limit of records with bad MAC */
Hanno Becker1029ace2019-04-09 17:28:10 +0100592 int cid_enabled; /* whether to use the CID extension or not */
Hanno Becker96870292019-05-03 17:30:59 +0100593 int cid_enabled_renego; /* whether to use the CID extension or not
594 * during renegotiation */
Hanno Becker1029ace2019-04-09 17:28:10 +0100595 const char *cid_val; /* the CID to use for incoming messages */
Jarno Lamsa0ea3cfe2019-05-29 13:33:32 +0300596 int serialize; /* serialize/deserialize connection */
Hanno Becker96870292019-05-03 17:30:59 +0100597 const char *cid_val_renego; /* the CID to use for incoming messages
598 * after renegotiation */
Rich Evans85b05ec2015-02-12 11:37:29 +0000599} opt;
600
Andres Amaya Garciabfa3e092018-10-16 21:08:38 +0100601int query_config( const char *config );
602
Hanno Becker14a4a442019-07-02 17:00:34 +0100603#if defined(MBEDTLS_DEBUG_C)
Manuel Pégourié-Gonnard61ee3512015-06-23 17:35:03 +0200604static void my_debug( void *ctx, int level,
605 const char *file, int line,
606 const char *str )
Rich Evans85b05ec2015-02-12 11:37:29 +0000607{
Manuel Pégourié-Gonnard052f2882015-07-01 11:50:23 +0200608 const char *p, *basename;
Rich Evans85b05ec2015-02-12 11:37:29 +0000609
Manuel Pégourié-Gonnard052f2882015-07-01 11:50:23 +0200610 /* Extract basename from file */
611 for( p = basename = file; *p != '\0'; p++ )
612 if( *p == '/' || *p == '\\' )
613 basename = p + 1;
614
615 mbedtls_fprintf( (FILE *) ctx, "%s:%04d: |%d| %s", basename, line, level, str );
Rich Evans85b05ec2015-02-12 11:37:29 +0000616 fflush( (FILE *) ctx );
617}
Hanno Becker14a4a442019-07-02 17:00:34 +0100618#endif /* MBEDTLS_DEBUG_C */
Rich Evans85b05ec2015-02-12 11:37:29 +0000619
Hanno Beckera58a8962019-06-13 16:11:15 +0100620
621#if !defined(MBEDTLS_SSL_CONF_RECV) && \
622 !defined(MBEDTLS_SSL_CONF_SEND) && \
623 !defined(MBEDTLS_SSL_CONF_RECV_TIMEOUT)
Rich Evans85b05ec2015-02-12 11:37:29 +0000624/*
625 * Test recv/send functions that make sure each try returns
626 * WANT_READ/WANT_WRITE at least once before sucesseding
627 */
Hanno Beckerfe24b3b2019-07-03 17:05:43 +0100628static int delayed_recv( void *ctx, unsigned char *buf, size_t len )
Rich Evans85b05ec2015-02-12 11:37:29 +0000629{
630 static int first_try = 1;
631 int ret;
632
633 if( first_try )
634 {
635 first_try = 0;
Manuel Pégourié-Gonnard88369942015-05-06 16:19:31 +0100636 return( MBEDTLS_ERR_SSL_WANT_READ );
Rich Evans85b05ec2015-02-12 11:37:29 +0000637 }
638
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200639 ret = mbedtls_net_recv( ctx, buf, len );
Manuel Pégourié-Gonnard88369942015-05-06 16:19:31 +0100640 if( ret != MBEDTLS_ERR_SSL_WANT_READ )
Rich Evans85b05ec2015-02-12 11:37:29 +0000641 first_try = 1; /* Next call will be a new operation */
642 return( ret );
643}
644
Hanno Beckerfe24b3b2019-07-03 17:05:43 +0100645static int delayed_send( void *ctx, const unsigned char *buf, size_t len )
Rich Evans85b05ec2015-02-12 11:37:29 +0000646{
647 static int first_try = 1;
648 int ret;
649
650 if( first_try )
651 {
652 first_try = 0;
Manuel Pégourié-Gonnard88369942015-05-06 16:19:31 +0100653 return( MBEDTLS_ERR_SSL_WANT_WRITE );
Rich Evans85b05ec2015-02-12 11:37:29 +0000654 }
655
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200656 ret = mbedtls_net_send( ctx, buf, len );
Manuel Pégourié-Gonnard88369942015-05-06 16:19:31 +0100657 if( ret != MBEDTLS_ERR_SSL_WANT_WRITE )
Rich Evans85b05ec2015-02-12 11:37:29 +0000658 first_try = 1; /* Next call will be a new operation */
659 return( ret );
660}
661
Hanno Beckerfe24b3b2019-07-03 17:05:43 +0100662typedef struct
663{
664 mbedtls_ssl_context *ssl;
665 mbedtls_net_context *net;
666} io_ctx_t;
667
Hanno Beckerde9e36e2019-07-03 17:14:41 +0100668#if defined(MBEDTLS_SSL_RECORD_CHECKING)
669static int ssl_check_record( mbedtls_ssl_context const *ssl,
670 unsigned char const *buf, size_t len )
671{
672 int ret;
673 unsigned char *tmp_buf;
674
675 /* Record checking may modify the input buffer,
676 * so make a copy. */
677 tmp_buf = mbedtls_calloc( 1, len );
678 if( tmp_buf == NULL )
679 return( MBEDTLS_ERR_SSL_ALLOC_FAILED );
680 memcpy( tmp_buf, buf, len );
681
682 ret = mbedtls_ssl_check_record( ssl, tmp_buf, len );
683 if( ret != MBEDTLS_ERR_SSL_FEATURE_UNAVAILABLE )
684 {
685 int ret_repeated;
686
687 /* Test-only: Make sure that mbedtls_ssl_check_record()
688 * doesn't alter state. */
689 memcpy( tmp_buf, buf, len ); /* Restore buffer */
690 ret_repeated = mbedtls_ssl_check_record( ssl, tmp_buf, len );
691 if( ret != ret_repeated )
692 {
Hanno Becker83b8c3b2019-07-24 13:59:07 +0100693 mbedtls_printf( "mbedtls_ssl_check_record() returned inconsistent results.\n" );
694 return( -1 );
Hanno Beckerde9e36e2019-07-03 17:14:41 +0100695 }
696
697 switch( ret )
698 {
699 case 0:
700 break;
701
702 case MBEDTLS_ERR_SSL_INVALID_RECORD:
703 if( opt.debug_level > 1 )
704 mbedtls_printf( "mbedtls_ssl_check_record() detected invalid record.\n" );
705 break;
706
707 case MBEDTLS_ERR_SSL_INVALID_MAC:
708 if( opt.debug_level > 1 )
709 mbedtls_printf( "mbedtls_ssl_check_record() detected unauthentic record.\n" );
710 break;
711
712 case MBEDTLS_ERR_SSL_UNEXPECTED_RECORD:
713 if( opt.debug_level > 1 )
714 mbedtls_printf( "mbedtls_ssl_check_record() detected unexpected record.\n" );
715 break;
716
717 default:
718 mbedtls_printf( "mbedtls_ssl_check_record() failed fatally with -%#04x.\n", -ret );
719 return( -1 );
720 }
721
722 /* Regardless of the outcome, forward the record to the stack. */
723 }
724
Hanno Beckerde9e36e2019-07-03 17:14:41 +0100725 mbedtls_free( tmp_buf );
726
727 return( 0 );
728}
729#endif /* MBEDTLS_SSL_RECORD_CHECKING */
730
Hanno Beckerfe24b3b2019-07-03 17:05:43 +0100731static int recv_cb( void *ctx, unsigned char *buf, size_t len )
732{
733 io_ctx_t *io_ctx = (io_ctx_t*) ctx;
734 size_t recv_len;
735 int ret;
736
737 if( opt.nbio == 2 )
738 ret = delayed_recv( io_ctx->net, buf, len );
739 else
740 ret = mbedtls_net_recv( io_ctx->net, buf, len );
741 if( ret < 0 )
742 return( ret );
743 recv_len = (size_t) ret;
744
745 if( opt.transport == MBEDTLS_SSL_TRANSPORT_DATAGRAM )
746 {
747 /* Here's the place to do any datagram/record checking
748 * in between receiving the packet from the underlying
749 * transport and passing it on to the TLS stack. */
Hanno Beckerde9e36e2019-07-03 17:14:41 +0100750#if defined(MBEDTLS_SSL_RECORD_CHECKING)
751 if( ssl_check_record( io_ctx->ssl, buf, recv_len ) != 0 )
752 return( -1 );
753#endif /* MBEDTLS_SSL_RECORD_CHECKING */
Hanno Beckerfe24b3b2019-07-03 17:05:43 +0100754 }
755
756 return( (int) recv_len );
757}
758
759static int recv_timeout_cb( void *ctx, unsigned char *buf, size_t len,
760 uint32_t timeout )
761{
762 io_ctx_t *io_ctx = (io_ctx_t*) ctx;
763 int ret;
764 size_t recv_len;
765
766 ret = mbedtls_net_recv_timeout( io_ctx->net, buf, len, timeout );
767 if( ret < 0 )
768 return( ret );
769 recv_len = (size_t) ret;
770
771 if( opt.transport == MBEDTLS_SSL_TRANSPORT_DATAGRAM )
772 {
773 /* Here's the place to do any datagram/record checking
774 * in between receiving the packet from the underlying
775 * transport and passing it on to the TLS stack. */
Hanno Beckerde9e36e2019-07-03 17:14:41 +0100776#if defined(MBEDTLS_SSL_RECORD_CHECKING)
777 if( ssl_check_record( io_ctx->ssl, buf, recv_len ) != 0 )
778 return( -1 );
779#endif /* MBEDTLS_SSL_RECORD_CHECKING */
Hanno Beckerfe24b3b2019-07-03 17:05:43 +0100780 }
781
782 return( (int) recv_len );
783}
784
785static int send_cb( void *ctx, unsigned char const *buf, size_t len )
786{
787 io_ctx_t *io_ctx = (io_ctx_t*) ctx;
788
789 if( opt.nbio == 2 )
790 return( delayed_send( io_ctx->net, buf, len ) );
791
792 return( mbedtls_net_send( io_ctx->net, buf, len ) );
793}
Manuel Pégourié-Gonnard2b29a372019-07-30 17:07:38 +0200794#endif /* !MBEDTLS_SSL_CONF_RECV &&
795 !MBEDTLS_SSL_CONF_SEND &&
796 !MBEDTLS_SSL_CONF_RECV_TIMEOUT */
Hanno Beckerfe24b3b2019-07-03 17:05:43 +0100797
Manuel Pégourié-Gonnardd64a2f72019-07-30 14:54:50 +0200798#if defined(SNI_OPTION) || !defined(MBEDTLS_SSL_CONF_AUTHMODE)
Manuel Pégourié-Gonnardfdee74b2014-06-10 15:15:06 +0200799/*
Manuel Pégourié-Gonnard4d6f1782015-06-19 14:40:39 +0200800 * Return authmode from string, or -1 on error
801 */
802static int get_auth_mode( const char *s )
803{
804 if( strcmp( s, "none" ) == 0 )
805 return( MBEDTLS_SSL_VERIFY_NONE );
806 if( strcmp( s, "optional" ) == 0 )
807 return( MBEDTLS_SSL_VERIFY_OPTIONAL );
808 if( strcmp( s, "required" ) == 0 )
809 return( MBEDTLS_SSL_VERIFY_REQUIRED );
810
811 return( -1 );
812}
Manuel Pégourié-Gonnardd64a2f72019-07-30 14:54:50 +0200813#endif /* SNI_OPTION || !MBEDTLS_SSL_CONF_AUTHMODE */
Manuel Pégourié-Gonnard4d6f1782015-06-19 14:40:39 +0200814
815/*
Manuel Pégourié-Gonnardfdee74b2014-06-10 15:15:06 +0200816 * Used by sni_parse and psk_parse to handle coma-separated lists
817 */
818#define GET_ITEM( dst ) \
Hanno Beckerd6028a12018-10-15 12:01:35 +0100819 do \
820 { \
821 (dst) = p; \
822 while( *p != ',' ) \
823 if( ++p > end ) \
824 goto error; \
825 *p++ = '\0'; \
826 } while( 0 )
Manuel Pégourié-Gonnardfdee74b2014-06-10 15:15:06 +0200827
Manuel Pégourié-Gonnard6c7af4c2015-04-03 16:41:52 +0200828#if defined(SNI_OPTION)
Manuel Pégourié-Gonnard5d917ff2014-02-21 16:52:06 +0100829typedef struct _sni_entry sni_entry;
830
831struct _sni_entry {
832 const char *name;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200833 mbedtls_x509_crt *cert;
834 mbedtls_pk_context *key;
Manuel Pégourié-Gonnard4d6f1782015-06-19 14:40:39 +0200835 mbedtls_x509_crt* ca;
836 mbedtls_x509_crl* crl;
837 int authmode;
Manuel Pégourié-Gonnard5d917ff2014-02-21 16:52:06 +0100838 sni_entry *next;
839};
840
Manuel Pégourié-Gonnard5d917ff2014-02-21 16:52:06 +0100841void sni_free( sni_entry *head )
842{
843 sni_entry *cur = head, *next;
844
845 while( cur != NULL )
846 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200847 mbedtls_x509_crt_free( cur->cert );
848 mbedtls_free( cur->cert );
Manuel Pégourié-Gonnard5d917ff2014-02-21 16:52:06 +0100849
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200850 mbedtls_pk_free( cur->key );
851 mbedtls_free( cur->key );
Manuel Pégourié-Gonnard5d917ff2014-02-21 16:52:06 +0100852
Manuel Pégourié-Gonnard4d6f1782015-06-19 14:40:39 +0200853 mbedtls_x509_crt_free( cur->ca );
854 mbedtls_free( cur->ca );
Ron Eldor24eec792019-04-04 15:02:01 +0300855#if defined(MBEDTLS_X509_CRL_PARSE_C)
Manuel Pégourié-Gonnard4d6f1782015-06-19 14:40:39 +0200856 mbedtls_x509_crl_free( cur->crl );
857 mbedtls_free( cur->crl );
Ron Eldor24eec792019-04-04 15:02:01 +0300858#endif
Manuel Pégourié-Gonnard5d917ff2014-02-21 16:52:06 +0100859 next = cur->next;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200860 mbedtls_free( cur );
Manuel Pégourié-Gonnard5d917ff2014-02-21 16:52:06 +0100861 cur = next;
862 }
863}
864
865/*
Manuel Pégourié-Gonnard4d6f1782015-06-19 14:40:39 +0200866 * Parse a string of sextuples name1,crt1,key1,ca1,crl1,auth1[,...]
867 * into a usable sni_entry list. For ca1, crl1, auth1, the special value
868 * '-' means unset. If ca1 is unset, then crl1 is ignored too.
Manuel Pégourié-Gonnard5c078e12015-02-14 13:56:39 +0000869 *
870 * Modifies the input string! This is not production quality!
871 */
872sni_entry *sni_parse( char *sni_string )
873{
874 sni_entry *cur = NULL, *new = NULL;
875 char *p = sni_string;
876 char *end = p;
Ron Eldor24eec792019-04-04 15:02:01 +0300877 char *crt_file, *key_file, *ca_file, *auth_str;
878#if defined(MBEDTLS_X509_CRL_PARSE_C)
879 char *crl_file;
880#endif
Manuel Pégourié-Gonnard5c078e12015-02-14 13:56:39 +0000881
882 while( *end != '\0' )
883 ++end;
884 *end = ',';
885
886 while( p <= end )
887 {
Manuel Pégourié-Gonnard7551cb92015-05-26 16:04:06 +0200888 if( ( new = mbedtls_calloc( 1, sizeof( sni_entry ) ) ) == NULL )
Manuel Pégourié-Gonnard5c078e12015-02-14 13:56:39 +0000889 {
890 sni_free( cur );
891 return( NULL );
892 }
893
Manuel Pégourié-Gonnard4d6f1782015-06-19 14:40:39 +0200894 GET_ITEM( new->name );
895 GET_ITEM( crt_file );
896 GET_ITEM( key_file );
897 GET_ITEM( ca_file );
Ron Eldor24eec792019-04-04 15:02:01 +0300898#if defined(MBEDTLS_X509_CRL_PARSE_C)
Manuel Pégourié-Gonnard4d6f1782015-06-19 14:40:39 +0200899 GET_ITEM( crl_file );
Ron Eldor24eec792019-04-04 15:02:01 +0300900#endif
Manuel Pégourié-Gonnard4d6f1782015-06-19 14:40:39 +0200901 GET_ITEM( auth_str );
Manuel Pégourié-Gonnard5c078e12015-02-14 13:56:39 +0000902
Manuel Pégourié-Gonnard7551cb92015-05-26 16:04:06 +0200903 if( ( new->cert = mbedtls_calloc( 1, sizeof( mbedtls_x509_crt ) ) ) == NULL ||
904 ( new->key = mbedtls_calloc( 1, sizeof( mbedtls_pk_context ) ) ) == NULL )
Manuel Pégourié-Gonnard4d6f1782015-06-19 14:40:39 +0200905 goto error;
Manuel Pégourié-Gonnard5c078e12015-02-14 13:56:39 +0000906
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200907 mbedtls_x509_crt_init( new->cert );
908 mbedtls_pk_init( new->key );
Manuel Pégourié-Gonnard5c078e12015-02-14 13:56:39 +0000909
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200910 if( mbedtls_x509_crt_parse_file( new->cert, crt_file ) != 0 ||
911 mbedtls_pk_parse_keyfile( new->key, key_file, "" ) != 0 )
Manuel Pégourié-Gonnard5c078e12015-02-14 13:56:39 +0000912 goto error;
Manuel Pégourié-Gonnard4d6f1782015-06-19 14:40:39 +0200913
914 if( strcmp( ca_file, "-" ) != 0 )
915 {
916 if( ( new->ca = mbedtls_calloc( 1, sizeof( mbedtls_x509_crt ) ) ) == NULL )
917 goto error;
918
919 mbedtls_x509_crt_init( new->ca );
920
921 if( mbedtls_x509_crt_parse_file( new->ca, ca_file ) != 0 )
922 goto error;
Manuel Pégourié-Gonnard5c078e12015-02-14 13:56:39 +0000923 }
924
Ron Eldor24eec792019-04-04 15:02:01 +0300925#if defined(MBEDTLS_X509_CRL_PARSE_C)
Manuel Pégourié-Gonnard4d6f1782015-06-19 14:40:39 +0200926 if( strcmp( crl_file, "-" ) != 0 )
927 {
928 if( ( new->crl = mbedtls_calloc( 1, sizeof( mbedtls_x509_crl ) ) ) == NULL )
929 goto error;
930
931 mbedtls_x509_crl_init( new->crl );
932
933 if( mbedtls_x509_crl_parse_file( new->crl, crl_file ) != 0 )
934 goto error;
935 }
Ron Eldor24eec792019-04-04 15:02:01 +0300936#endif
Manuel Pégourié-Gonnard4d6f1782015-06-19 14:40:39 +0200937
938 if( strcmp( auth_str, "-" ) != 0 )
939 {
940 if( ( new->authmode = get_auth_mode( auth_str ) ) < 0 )
941 goto error;
942 }
943 else
944 new->authmode = DFL_AUTH_MODE;
945
Manuel Pégourié-Gonnard5c078e12015-02-14 13:56:39 +0000946 new->next = cur;
947 cur = new;
948 }
949
950 return( cur );
951
952error:
953 sni_free( new );
954 sni_free( cur );
955 return( NULL );
956}
957
958/*
Manuel Pégourié-Gonnard5d917ff2014-02-21 16:52:06 +0100959 * SNI callback.
960 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200961int sni_callback( void *p_info, mbedtls_ssl_context *ssl,
Manuel Pégourié-Gonnard5d917ff2014-02-21 16:52:06 +0100962 const unsigned char *name, size_t name_len )
963{
Manuel Pégourié-Gonnard4d6f1782015-06-19 14:40:39 +0200964 const sni_entry *cur = (const sni_entry *) p_info;
Manuel Pégourié-Gonnard5d917ff2014-02-21 16:52:06 +0100965
966 while( cur != NULL )
967 {
968 if( name_len == strlen( cur->name ) &&
969 memcmp( name, cur->name, name_len ) == 0 )
970 {
Manuel Pégourié-Gonnard4d6f1782015-06-19 14:40:39 +0200971 if( cur->ca != NULL )
972 mbedtls_ssl_set_hs_ca_chain( ssl, cur->ca, cur->crl );
973
974 if( cur->authmode != DFL_AUTH_MODE )
975 mbedtls_ssl_set_hs_authmode( ssl, cur->authmode );
976
Manuel Pégourié-Gonnard1af6c852015-05-10 23:10:37 +0200977 return( mbedtls_ssl_set_hs_own_cert( ssl, cur->cert, cur->key ) );
Manuel Pégourié-Gonnard5d917ff2014-02-21 16:52:06 +0100978 }
979
980 cur = cur->next;
981 }
982
983 return( -1 );
984}
985
Manuel Pégourié-Gonnard6c7af4c2015-04-03 16:41:52 +0200986#endif /* SNI_OPTION */
Manuel Pégourié-Gonnard5d917ff2014-02-21 16:52:06 +0100987
Hanno Becker2e0bedc2019-04-30 14:18:06 +0100988#if defined(MBEDTLS_KEY_EXCHANGE__SOME__PSK_ENABLED) || \
Hanno Beckera5a2b082019-05-15 14:03:01 +0100989 defined(MBEDTLS_SSL_DTLS_CONNECTION_ID)
Manuel Pégourié-Gonnard9e271632014-06-09 19:06:00 +0200990
Hanno Beckerd6028a12018-10-15 12:01:35 +0100991#define HEX2NUM( c ) \
992 do \
993 { \
994 if( (c) >= '0' && (c) <= '9' ) \
995 (c) -= '0'; \
996 else if( (c) >= 'a' && (c) <= 'f' ) \
997 (c) -= 'a' - 10; \
998 else if( (c) >= 'A' && (c) <= 'F' ) \
999 (c) -= 'A' - 10; \
1000 else \
1001 return( -1 ); \
1002 } while( 0 )
Manuel Pégourié-Gonnard9e271632014-06-09 19:06:00 +02001003
1004/*
1005 * Convert a hex string to bytes.
1006 * Return 0 on success, -1 on error.
1007 */
1008int unhexify( unsigned char *output, const char *input, size_t *olen )
1009{
1010 unsigned char c;
1011 size_t j;
1012
1013 *olen = strlen( input );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001014 if( *olen % 2 != 0 || *olen / 2 > MBEDTLS_PSK_MAX_LEN )
Manuel Pégourié-Gonnard9e271632014-06-09 19:06:00 +02001015 return( -1 );
1016 *olen /= 2;
1017
1018 for( j = 0; j < *olen * 2; j += 2 )
1019 {
1020 c = input[j];
1021 HEX2NUM( c );
1022 output[ j / 2 ] = c << 4;
1023
1024 c = input[j + 1];
1025 HEX2NUM( c );
1026 output[ j / 2 ] |= c;
1027 }
1028
1029 return( 0 );
1030}
Manuel Pégourié-Gonnard80c85532014-06-10 14:01:52 +02001031
Hanno Becker2e0bedc2019-04-30 14:18:06 +01001032#endif
1033
1034#if defined(MBEDTLS_KEY_EXCHANGE__SOME__PSK_ENABLED)
1035
Manuel Pégourié-Gonnard80c85532014-06-10 14:01:52 +02001036typedef struct _psk_entry psk_entry;
1037
1038struct _psk_entry
1039{
1040 const char *name;
1041 size_t key_len;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001042 unsigned char key[MBEDTLS_PSK_MAX_LEN];
Manuel Pégourié-Gonnard80c85532014-06-10 14:01:52 +02001043 psk_entry *next;
1044};
1045
1046/*
Manuel Pégourié-Gonnard5c078e12015-02-14 13:56:39 +00001047 * Free a list of psk_entry's
1048 */
1049void psk_free( psk_entry *head )
1050{
1051 psk_entry *next;
1052
1053 while( head != NULL )
1054 {
1055 next = head->next;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001056 mbedtls_free( head );
Manuel Pégourié-Gonnard5c078e12015-02-14 13:56:39 +00001057 head = next;
1058 }
1059}
1060
1061/*
Manuel Pégourié-Gonnard80c85532014-06-10 14:01:52 +02001062 * Parse a string of pairs name1,key1[,name2,key2[,...]]
1063 * into a usable psk_entry list.
1064 *
1065 * Modifies the input string! This is not production quality!
Manuel Pégourié-Gonnard80c85532014-06-10 14:01:52 +02001066 */
1067psk_entry *psk_parse( char *psk_string )
1068{
1069 psk_entry *cur = NULL, *new = NULL;
1070 char *p = psk_string;
1071 char *end = p;
1072 char *key_hex;
1073
1074 while( *end != '\0' )
1075 ++end;
1076 *end = ',';
1077
1078 while( p <= end )
1079 {
Manuel Pégourié-Gonnard7551cb92015-05-26 16:04:06 +02001080 if( ( new = mbedtls_calloc( 1, sizeof( psk_entry ) ) ) == NULL )
Manuel Pégourié-Gonnardb1990952015-02-18 09:32:06 +00001081 goto error;
Manuel Pégourié-Gonnard80c85532014-06-10 14:01:52 +02001082
1083 memset( new, 0, sizeof( psk_entry ) );
1084
Manuel Pégourié-Gonnardfdee74b2014-06-10 15:15:06 +02001085 GET_ITEM( new->name );
1086 GET_ITEM( key_hex );
Manuel Pégourié-Gonnard80c85532014-06-10 14:01:52 +02001087
1088 if( unhexify( new->key, key_hex, &new->key_len ) != 0 )
Manuel Pégourié-Gonnard5c078e12015-02-14 13:56:39 +00001089 goto error;
Manuel Pégourié-Gonnard80c85532014-06-10 14:01:52 +02001090
1091 new->next = cur;
1092 cur = new;
1093 }
1094
1095 return( cur );
Manuel Pégourié-Gonnard80c85532014-06-10 14:01:52 +02001096
Manuel Pégourié-Gonnard5c078e12015-02-14 13:56:39 +00001097error:
1098 psk_free( new );
1099 psk_free( cur );
1100 return( 0 );
Manuel Pégourié-Gonnard80c85532014-06-10 14:01:52 +02001101}
1102
1103/*
1104 * PSK callback
1105 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001106int psk_callback( void *p_info, mbedtls_ssl_context *ssl,
Manuel Pégourié-Gonnard80c85532014-06-10 14:01:52 +02001107 const unsigned char *name, size_t name_len )
1108{
1109 psk_entry *cur = (psk_entry *) p_info;
1110
1111 while( cur != NULL )
1112 {
1113 if( name_len == strlen( cur->name ) &&
1114 memcmp( name, cur->name, name_len ) == 0 )
1115 {
Manuel Pégourié-Gonnard4b682962015-05-07 15:59:54 +01001116 return( mbedtls_ssl_set_hs_psk( ssl, cur->key, cur->key_len ) );
Manuel Pégourié-Gonnard80c85532014-06-10 14:01:52 +02001117 }
1118
1119 cur = cur->next;
1120 }
1121
1122 return( -1 );
1123}
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001124#endif /* MBEDTLS_KEY_EXCHANGE__SOME__PSK_ENABLED */
Manuel Pégourié-Gonnard9e271632014-06-09 19:06:00 +02001125
Manuel Pégourié-Gonnard5db64322015-06-30 15:40:39 +02001126static mbedtls_net_context listen_fd, client_fd;
Paul Bakkerbc3e54c2014-08-18 14:36:17 +02001127
1128/* Interruption handler to ensure clean exit (for valgrind testing) */
1129#if !defined(_WIN32)
Manuel Pégourié-Gonnarddb493302014-08-14 15:36:12 +02001130static int received_sigterm = 0;
1131void term_handler( int sig )
1132{
1133 ((void) sig);
1134 received_sigterm = 1;
Manuel Pégourié-Gonnard3d7d00a2015-06-30 15:55:03 +02001135 mbedtls_net_free( &listen_fd ); /* causes mbedtls_net_accept() to abort */
1136 mbedtls_net_free( &client_fd ); /* causes net_read() to abort */
Manuel Pégourié-Gonnarddb493302014-08-14 15:36:12 +02001137}
Paul Bakkerc1283d32014-08-18 11:05:51 +02001138#endif
Manuel Pégourié-Gonnarddb493302014-08-14 15:36:12 +02001139
Hanno Becker10da2a32019-08-28 15:08:27 +01001140#if ( defined(MBEDTLS_X509_CRT_PARSE_C) && \
1141 !defined(MBEDTLS_SSL_CONF_SINGLE_HASH) ) || \
1142 !defined(MBEDTLS_CTR_DRBG_C)
Hanno Becker7f1c8052019-08-26 13:30:13 +01001143static int available_hashes[] = {
Gilles Peskine682df092017-05-11 19:01:11 +02001144#if defined(MBEDTLS_SHA512_C)
1145 MBEDTLS_MD_SHA512,
1146 MBEDTLS_MD_SHA384,
1147#endif
1148#if defined(MBEDTLS_SHA256_C)
1149 MBEDTLS_MD_SHA256,
1150 MBEDTLS_MD_SHA224,
1151#endif
1152#if defined(MBEDTLS_SHA1_C)
1153 /* Allow SHA-1 as we use it extensively in tests. */
1154 MBEDTLS_MD_SHA1,
1155#endif
1156 MBEDTLS_MD_NONE
1157};
Hanno Becker10da2a32019-08-28 15:08:27 +01001158#endif /* ( MBEDTLS_X509_CRT_PARSE_C && !MBEDTLS_SSL_CONF_SINGLE_HASH ) ||
1159 !MBEDTLS_CTR_DRBG_C */
Gilles Peskine682df092017-05-11 19:01:11 +02001160
Gilles Peskinea36ac4f2018-04-26 08:05:02 +02001161/** Return true if \p ret is a status code indicating that there is an
1162 * operation in progress on an SSL connection, and false if it indicates
1163 * success or a fatal error.
1164 *
1165 * The possible operations in progress are:
1166 *
1167 * - A read, when the SSL input buffer does not contain a full message.
1168 * - A write, when the SSL output buffer contains some data that has not
1169 * been sent over the network yet.
1170 * - An asynchronous callback that has not completed yet. */
1171static int mbedtls_status_is_ssl_in_progress( int ret )
1172{
1173 return( ret == MBEDTLS_ERR_SSL_WANT_READ ||
1174 ret == MBEDTLS_ERR_SSL_WANT_WRITE ||
1175 ret == MBEDTLS_ERR_SSL_ASYNC_IN_PROGRESS );
1176}
1177
Gilles Peskineb74a1c72018-04-24 13:09:22 +02001178#if defined(MBEDTLS_SSL_ASYNC_PRIVATE)
Gilles Peskine9eb5e9a2018-01-05 21:15:57 +01001179typedef struct
1180{
Gilles Peskine44817442018-06-13 18:09:28 +02001181 mbedtls_x509_crt *cert; /*!< Certificate corresponding to the key */
1182 mbedtls_pk_context *pk; /*!< Private key */
1183 unsigned delay; /*!< Number of resume steps to go through */
1184 unsigned pk_owned : 1; /*!< Whether to free the pk object on exit */
Gilles Peskine9eb5e9a2018-01-05 21:15:57 +01001185} ssl_async_key_slot_t;
1186
1187typedef enum {
Gilles Peskinead28bf02018-04-26 00:19:16 +02001188 SSL_ASYNC_INJECT_ERROR_NONE = 0, /*!< Let the callbacks succeed */
1189 SSL_ASYNC_INJECT_ERROR_START, /*!< Inject error during start */
1190 SSL_ASYNC_INJECT_ERROR_CANCEL, /*!< Close the connection after async start */
1191 SSL_ASYNC_INJECT_ERROR_RESUME, /*!< Inject error during resume */
Gilles Peskinec9125722018-04-26 07:15:40 +02001192#define SSL_ASYNC_INJECT_ERROR_MAX SSL_ASYNC_INJECT_ERROR_RESUME
Gilles Peskine9eb5e9a2018-01-05 21:15:57 +01001193} ssl_async_inject_error_t;
1194
1195typedef struct
1196{
Gilles Peskinee2479892018-06-13 18:06:51 +02001197 ssl_async_key_slot_t slots[4]; /* key, key2, sni1, sni2 */
Gilles Peskine9eb5e9a2018-01-05 21:15:57 +01001198 size_t slots_used;
1199 ssl_async_inject_error_t inject_error;
1200 int (*f_rng)(void *, unsigned char *, size_t);
1201 void *p_rng;
1202} ssl_async_key_context_t;
1203
Gilles Peskined6fbfde2018-04-30 10:23:56 +02001204int ssl_async_set_key( ssl_async_key_context_t *ctx,
Gilles Peskine44817442018-06-13 18:09:28 +02001205 mbedtls_x509_crt *cert,
1206 mbedtls_pk_context *pk,
1207 int pk_take_ownership,
1208 unsigned delay )
Gilles Peskine9eb5e9a2018-01-05 21:15:57 +01001209{
Gilles Peskined6fbfde2018-04-30 10:23:56 +02001210 if( ctx->slots_used >= sizeof( ctx->slots ) / sizeof( *ctx->slots ) )
1211 return( -1 );
Gilles Peskine9eb5e9a2018-01-05 21:15:57 +01001212 ctx->slots[ctx->slots_used].cert = cert;
1213 ctx->slots[ctx->slots_used].pk = pk;
1214 ctx->slots[ctx->slots_used].delay = delay;
Gilles Peskine44817442018-06-13 18:09:28 +02001215 ctx->slots[ctx->slots_used].pk_owned = pk_take_ownership;
Gilles Peskine9eb5e9a2018-01-05 21:15:57 +01001216 ++ctx->slots_used;
Gilles Peskined6fbfde2018-04-30 10:23:56 +02001217 return( 0 );
Gilles Peskine9eb5e9a2018-01-05 21:15:57 +01001218}
1219
Gilles Peskinefcca9d82018-01-12 13:47:48 +01001220#define SSL_ASYNC_INPUT_MAX_SIZE 512
Gilles Peskined3268832018-04-26 06:23:59 +02001221
1222typedef enum
1223{
1224 ASYNC_OP_SIGN,
1225 ASYNC_OP_DECRYPT,
1226} ssl_async_operation_type_t;
1227/* Note that the enum above and the array below need to be kept in sync!
1228 * `ssl_async_operation_names[op]` is the name of op for each value `op`
1229 * of type `ssl_async_operation_type_t`. */
1230static const char *const ssl_async_operation_names[] =
1231{
1232 "sign",
1233 "decrypt",
1234};
1235
Gilles Peskine9eb5e9a2018-01-05 21:15:57 +01001236typedef struct
1237{
Gilles Peskine6331d782018-04-26 13:27:43 +02001238 unsigned slot;
Gilles Peskined3268832018-04-26 06:23:59 +02001239 ssl_async_operation_type_t operation_type;
Gilles Peskine9eb5e9a2018-01-05 21:15:57 +01001240 mbedtls_md_type_t md_alg;
Gilles Peskinefcca9d82018-01-12 13:47:48 +01001241 unsigned char input[SSL_ASYNC_INPUT_MAX_SIZE];
1242 size_t input_len;
Gilles Peskineceb541b2018-04-26 06:30:45 +02001243 unsigned remaining_delay;
Gilles Peskine9eb5e9a2018-01-05 21:15:57 +01001244} ssl_async_operation_context_t;
1245
Gilles Peskine8f97af72018-04-26 11:46:10 +02001246static int ssl_async_start( mbedtls_ssl_context *ssl,
Gilles Peskinefcca9d82018-01-12 13:47:48 +01001247 mbedtls_x509_crt *cert,
Gilles Peskined3268832018-04-26 06:23:59 +02001248 ssl_async_operation_type_t op_type,
Gilles Peskinefcca9d82018-01-12 13:47:48 +01001249 mbedtls_md_type_t md_alg,
1250 const unsigned char *input,
1251 size_t input_len )
Gilles Peskine9eb5e9a2018-01-05 21:15:57 +01001252{
Hanno Becker5d9021e2019-02-28 14:32:37 +00001253 int ret;
Gilles Peskine8f97af72018-04-26 11:46:10 +02001254 ssl_async_key_context_t *config_data =
1255 mbedtls_ssl_conf_get_async_config_data( ssl->conf );
Gilles Peskine6331d782018-04-26 13:27:43 +02001256 unsigned slot;
Gilles Peskine9eb5e9a2018-01-05 21:15:57 +01001257 ssl_async_operation_context_t *ctx = NULL;
Gilles Peskined3268832018-04-26 06:23:59 +02001258 const char *op_name = ssl_async_operation_names[op_type];
Gilles Peskinef1127252018-04-24 13:05:39 +02001259
Gilles Peskine9eb5e9a2018-01-05 21:15:57 +01001260 {
1261 char dn[100];
Hanno Becker5d9021e2019-02-28 14:32:37 +00001262 mbedtls_x509_name *subject;
1263
1264 ret = mbedtls_x509_crt_get_subject( cert, &subject );
1265 if( ret != 0 )
1266 return( ret );
1267
1268 if( mbedtls_x509_dn_gets( dn, sizeof( dn ), subject ) > 0 )
Gilles Peskined5d983e2018-06-15 14:05:10 +02001269 mbedtls_printf( "Async %s callback: looking for DN=%s\n",
1270 op_name, dn );
Hanno Becker5d9021e2019-02-28 14:32:37 +00001271
1272 mbedtls_x509_name_free( subject );
Gilles Peskine9eb5e9a2018-01-05 21:15:57 +01001273 }
Gilles Peskinef1127252018-04-24 13:05:39 +02001274
Gilles Peskine3dae1cf2018-04-30 12:07:56 +02001275 /* Look for a private key that matches the public key in cert.
1276 * Since this test code has the private key inside Mbed TLS,
1277 * we call mbedtls_pk_check_pair to match a private key with the
1278 * public key. */
Gilles Peskinedf13d5c2018-04-25 20:39:48 +02001279 for( slot = 0; slot < config_data->slots_used; slot++ )
Gilles Peskine9eb5e9a2018-01-05 21:15:57 +01001280 {
Hanno Becker5d9021e2019-02-28 14:32:37 +00001281 mbedtls_pk_context *pk;
1282 int match;
1283 ret = mbedtls_x509_crt_pk_acquire( cert, &pk );
1284 if( ret != 0 )
1285 return( ret );
1286 match = mbedtls_pk_check_pair( pk, config_data->slots[slot].pk );
Hanno Beckerc6d1c3e2019-03-05 13:50:56 +00001287 mbedtls_x509_crt_pk_release( cert );
Hanno Becker5d9021e2019-02-28 14:32:37 +00001288 if( match == 0 )
Gilles Peskine9eb5e9a2018-01-05 21:15:57 +01001289 break;
1290 }
Gilles Peskinedf13d5c2018-04-25 20:39:48 +02001291 if( slot == config_data->slots_used )
Gilles Peskine9eb5e9a2018-01-05 21:15:57 +01001292 {
Gilles Peskinefcca9d82018-01-12 13:47:48 +01001293 mbedtls_printf( "Async %s callback: no key matches this certificate.\n",
1294 op_name );
Gilles Peskine9eb5e9a2018-01-05 21:15:57 +01001295 return( MBEDTLS_ERR_SSL_HW_ACCEL_FALLTHROUGH );
1296 }
Gilles Peskine6331d782018-04-26 13:27:43 +02001297 mbedtls_printf( "Async %s callback: using key slot %u, delay=%u.\n",
Gilles Peskinedf13d5c2018-04-25 20:39:48 +02001298 op_name, slot, config_data->slots[slot].delay );
Gilles Peskinef1127252018-04-24 13:05:39 +02001299
Gilles Peskinedf13d5c2018-04-25 20:39:48 +02001300 if( config_data->inject_error == SSL_ASYNC_INJECT_ERROR_START )
Gilles Peskine9eb5e9a2018-01-05 21:15:57 +01001301 {
Gilles Peskinefcca9d82018-01-12 13:47:48 +01001302 mbedtls_printf( "Async %s callback: injected error\n", op_name );
Gilles Peskine9eb5e9a2018-01-05 21:15:57 +01001303 return( MBEDTLS_ERR_PK_FEATURE_UNAVAILABLE );
1304 }
Gilles Peskinef1127252018-04-24 13:05:39 +02001305
Gilles Peskinefcca9d82018-01-12 13:47:48 +01001306 if( input_len > SSL_ASYNC_INPUT_MAX_SIZE )
Gilles Peskine9eb5e9a2018-01-05 21:15:57 +01001307 return( MBEDTLS_ERR_SSL_BAD_INPUT_DATA );
Gilles Peskinef1127252018-04-24 13:05:39 +02001308
Gilles Peskine9eb5e9a2018-01-05 21:15:57 +01001309 ctx = mbedtls_calloc( 1, sizeof( *ctx ) );
1310 if( ctx == NULL )
1311 return( MBEDTLS_ERR_SSL_ALLOC_FAILED );
1312 ctx->slot = slot;
Gilles Peskined3268832018-04-26 06:23:59 +02001313 ctx->operation_type = op_type;
Gilles Peskine9eb5e9a2018-01-05 21:15:57 +01001314 ctx->md_alg = md_alg;
Gilles Peskinefcca9d82018-01-12 13:47:48 +01001315 memcpy( ctx->input, input, input_len );
1316 ctx->input_len = input_len;
Gilles Peskineceb541b2018-04-26 06:30:45 +02001317 ctx->remaining_delay = config_data->slots[slot].delay;
Gilles Peskinea668c602018-04-30 11:54:39 +02001318 mbedtls_ssl_set_async_operation_data( ssl, ctx );
Gilles Peskinef1127252018-04-24 13:05:39 +02001319
Gilles Peskineceb541b2018-04-26 06:30:45 +02001320 if( ctx->remaining_delay == 0 )
Gilles Peskine9eb5e9a2018-01-05 21:15:57 +01001321 return( 0 );
1322 else
1323 return( MBEDTLS_ERR_SSL_ASYNC_IN_PROGRESS );
1324}
1325
Gilles Peskine8f97af72018-04-26 11:46:10 +02001326static int ssl_async_sign( mbedtls_ssl_context *ssl,
Gilles Peskinefcca9d82018-01-12 13:47:48 +01001327 mbedtls_x509_crt *cert,
1328 mbedtls_md_type_t md_alg,
1329 const unsigned char *hash,
1330 size_t hash_len )
1331{
Gilles Peskine8f97af72018-04-26 11:46:10 +02001332 return( ssl_async_start( ssl, cert,
Gilles Peskined3268832018-04-26 06:23:59 +02001333 ASYNC_OP_SIGN, md_alg,
Gilles Peskinefcca9d82018-01-12 13:47:48 +01001334 hash, hash_len ) );
1335}
1336
Gilles Peskine8f97af72018-04-26 11:46:10 +02001337static int ssl_async_decrypt( mbedtls_ssl_context *ssl,
Gilles Peskinefcca9d82018-01-12 13:47:48 +01001338 mbedtls_x509_crt *cert,
1339 const unsigned char *input,
1340 size_t input_len )
1341{
Gilles Peskine8f97af72018-04-26 11:46:10 +02001342 return( ssl_async_start( ssl, cert,
Gilles Peskined3268832018-04-26 06:23:59 +02001343 ASYNC_OP_DECRYPT, MBEDTLS_MD_NONE,
Gilles Peskinefcca9d82018-01-12 13:47:48 +01001344 input, input_len ) );
1345}
1346
Gilles Peskine8f97af72018-04-26 11:46:10 +02001347static int ssl_async_resume( mbedtls_ssl_context *ssl,
Gilles Peskinefcca9d82018-01-12 13:47:48 +01001348 unsigned char *output,
1349 size_t *output_len,
1350 size_t output_size )
Gilles Peskine9eb5e9a2018-01-05 21:15:57 +01001351{
Gilles Peskinea668c602018-04-30 11:54:39 +02001352 ssl_async_operation_context_t *ctx = mbedtls_ssl_get_async_operation_data( ssl );
Gilles Peskine8f97af72018-04-26 11:46:10 +02001353 ssl_async_key_context_t *config_data =
1354 mbedtls_ssl_conf_get_async_config_data( ssl->conf );
Gilles Peskinedf13d5c2018-04-25 20:39:48 +02001355 ssl_async_key_slot_t *key_slot = &config_data->slots[ctx->slot];
Gilles Peskine9eb5e9a2018-01-05 21:15:57 +01001356 int ret;
Gilles Peskinef5a99962018-04-30 16:37:23 +02001357 const char *op_name;
Gilles Peskinef1127252018-04-24 13:05:39 +02001358
Gilles Peskineceb541b2018-04-26 06:30:45 +02001359 if( ctx->remaining_delay > 0 )
Gilles Peskine9eb5e9a2018-01-05 21:15:57 +01001360 {
Gilles Peskineceb541b2018-04-26 06:30:45 +02001361 --ctx->remaining_delay;
Gilles Peskine6331d782018-04-26 13:27:43 +02001362 mbedtls_printf( "Async resume (slot %u): call %u more times.\n",
Gilles Peskineceb541b2018-04-26 06:30:45 +02001363 ctx->slot, ctx->remaining_delay );
Gilles Peskine9eb5e9a2018-01-05 21:15:57 +01001364 return( MBEDTLS_ERR_SSL_ASYNC_IN_PROGRESS );
1365 }
Gilles Peskinef1127252018-04-24 13:05:39 +02001366
Gilles Peskined3268832018-04-26 06:23:59 +02001367 switch( ctx->operation_type )
Gilles Peskinefcca9d82018-01-12 13:47:48 +01001368 {
Gilles Peskined3268832018-04-26 06:23:59 +02001369 case ASYNC_OP_DECRYPT:
Gilles Peskined3268832018-04-26 06:23:59 +02001370 ret = mbedtls_pk_decrypt( key_slot->pk,
1371 ctx->input, ctx->input_len,
1372 output, output_len, output_size,
1373 config_data->f_rng, config_data->p_rng );
1374 break;
1375 case ASYNC_OP_SIGN:
Gilles Peskined3268832018-04-26 06:23:59 +02001376 ret = mbedtls_pk_sign( key_slot->pk,
1377 ctx->md_alg,
1378 ctx->input, ctx->input_len,
1379 output, output_len,
1380 config_data->f_rng, config_data->p_rng );
1381 break;
1382 default:
Gilles Peskine6331d782018-04-26 13:27:43 +02001383 mbedtls_printf( "Async resume (slot %u): unknown operation type %ld. This shouldn't happen.\n",
Gilles Peskined3268832018-04-26 06:23:59 +02001384 ctx->slot, (long) ctx->operation_type );
Gilles Peskine44817442018-06-13 18:09:28 +02001385 mbedtls_free( ctx );
Gilles Peskined3268832018-04-26 06:23:59 +02001386 return( MBEDTLS_ERR_PK_FEATURE_UNAVAILABLE );
1387 break;
Gilles Peskinefcca9d82018-01-12 13:47:48 +01001388 }
Gilles Peskinef1127252018-04-24 13:05:39 +02001389
Gilles Peskinef5a99962018-04-30 16:37:23 +02001390 op_name = ssl_async_operation_names[ctx->operation_type];
1391
Gilles Peskinec9125722018-04-26 07:15:40 +02001392 if( config_data->inject_error == SSL_ASYNC_INJECT_ERROR_RESUME )
Gilles Peskine9eb5e9a2018-01-05 21:15:57 +01001393 {
Gilles Peskinefcca9d82018-01-12 13:47:48 +01001394 mbedtls_printf( "Async resume callback: %s done but injected error\n",
1395 op_name );
Gilles Peskine2636fad2018-06-12 14:17:39 +02001396 mbedtls_free( ctx );
Gilles Peskine9eb5e9a2018-01-05 21:15:57 +01001397 return( MBEDTLS_ERR_PK_FEATURE_UNAVAILABLE );
1398 }
Gilles Peskinef1127252018-04-24 13:05:39 +02001399
Gilles Peskine6331d782018-04-26 13:27:43 +02001400 mbedtls_printf( "Async resume (slot %u): %s done, status=%d.\n",
Gilles Peskinefcca9d82018-01-12 13:47:48 +01001401 ctx->slot, op_name, ret );
Gilles Peskine9eb5e9a2018-01-05 21:15:57 +01001402 mbedtls_free( ctx );
1403 return( ret );
1404}
1405
Gilles Peskine8f97af72018-04-26 11:46:10 +02001406static void ssl_async_cancel( mbedtls_ssl_context *ssl )
Gilles Peskine9eb5e9a2018-01-05 21:15:57 +01001407{
Gilles Peskinea668c602018-04-30 11:54:39 +02001408 ssl_async_operation_context_t *ctx = mbedtls_ssl_get_async_operation_data( ssl );
Gilles Peskine9eb5e9a2018-01-05 21:15:57 +01001409 mbedtls_printf( "Async cancel callback.\n" );
1410 mbedtls_free( ctx );
1411}
Gilles Peskineb74a1c72018-04-24 13:09:22 +02001412#endif /* MBEDTLS_SSL_ASYNC_PRIVATE */
Gilles Peskine9eb5e9a2018-01-05 21:15:57 +01001413
Hanno Becker16970d22017-10-10 15:56:37 +01001414/*
1415 * Wait for an event from the underlying transport or the timer
1416 * (Used in event-driven IO mode).
1417 */
1418#if !defined(MBEDTLS_TIMING_C)
Hanno Beckeradfa64f2018-03-15 11:35:07 +00001419int idle( mbedtls_net_context *fd,
Hanno Becker9b2b66e2018-03-15 12:21:15 +00001420 int idle_reason )
Hanno Becker16970d22017-10-10 15:56:37 +01001421#else
Hanno Beckeradfa64f2018-03-15 11:35:07 +00001422int idle( mbedtls_net_context *fd,
Hanno Becker9b2b66e2018-03-15 12:21:15 +00001423 mbedtls_timing_delay_context *timer,
1424 int idle_reason )
Hanno Becker16970d22017-10-10 15:56:37 +01001425#endif
Hanno Becker9b2b66e2018-03-15 12:21:15 +00001426{
Hanno Beckeradfa64f2018-03-15 11:35:07 +00001427 int ret;
Hanno Becker16970d22017-10-10 15:56:37 +01001428 int poll_type = 0;
1429
1430 if( idle_reason == MBEDTLS_ERR_SSL_WANT_WRITE )
1431 poll_type = MBEDTLS_NET_POLL_WRITE;
1432 else if( idle_reason == MBEDTLS_ERR_SSL_WANT_READ )
1433 poll_type = MBEDTLS_NET_POLL_READ;
1434#if !defined(MBEDTLS_TIMING_C)
1435 else
Hanno Beckeref527962018-03-15 15:49:24 +00001436 return( 0 );
Hanno Becker16970d22017-10-10 15:56:37 +01001437#endif
1438
1439 while( 1 )
1440 {
Hanno Becker197a91c2017-10-31 10:58:53 +00001441 /* Check if timer has expired */
Hanno Becker16970d22017-10-10 15:56:37 +01001442#if defined(MBEDTLS_TIMING_C)
Hanno Becker197a91c2017-10-31 10:58:53 +00001443 if( timer != NULL &&
1444 mbedtls_timing_get_delay( timer ) == 2 )
Hanno Becker16970d22017-10-10 15:56:37 +01001445 {
Hanno Becker16970d22017-10-10 15:56:37 +01001446 break;
1447 }
Hanno Becker197a91c2017-10-31 10:58:53 +00001448#endif /* MBEDTLS_TIMING_C */
Hanno Becker16970d22017-10-10 15:56:37 +01001449
Hanno Becker197a91c2017-10-31 10:58:53 +00001450 /* Check if underlying transport became available */
Hanno Beckeradfa64f2018-03-15 11:35:07 +00001451 if( poll_type != 0 )
Hanno Becker16970d22017-10-10 15:56:37 +01001452 {
Hanno Beckeradfa64f2018-03-15 11:35:07 +00001453 ret = mbedtls_net_poll( fd, poll_type, 0 );
1454 if( ret < 0 )
1455 return( ret );
1456 if( ret == poll_type )
1457 break;
Hanno Becker16970d22017-10-10 15:56:37 +01001458 }
1459 }
Hanno Beckeradfa64f2018-03-15 11:35:07 +00001460
1461 return( 0 );
Hanno Becker16970d22017-10-10 15:56:37 +01001462}
1463
Hanno Beckera5a2b082019-05-15 14:03:01 +01001464#if defined(MBEDTLS_SSL_DTLS_CONNECTION_ID)
Hanno Becker96870292019-05-03 17:30:59 +01001465int report_cid_usage( mbedtls_ssl_context *ssl,
1466 const char *additional_description )
1467{
1468 int ret;
1469 unsigned char peer_cid[ MBEDTLS_SSL_CID_OUT_LEN_MAX ];
1470 size_t peer_cid_len;
1471 int cid_negotiated;
1472
1473 if( opt.transport != MBEDTLS_SSL_TRANSPORT_DATAGRAM )
1474 return( 0 );
1475
1476 /* Check if the use of a CID has been negotiated */
1477 ret = mbedtls_ssl_get_peer_cid( ssl, &cid_negotiated,
1478 peer_cid, &peer_cid_len );
1479 if( ret != 0 )
1480 {
1481 mbedtls_printf( " failed\n ! mbedtls_ssl_get_peer_cid returned -0x%x\n\n",
1482 -ret );
1483 return( ret );
1484 }
1485
1486 if( cid_negotiated == MBEDTLS_SSL_CID_DISABLED )
1487 {
1488 if( opt.cid_enabled == MBEDTLS_SSL_CID_ENABLED )
1489 {
1490 mbedtls_printf( "(%s) Use of Connection ID was not offered by client.\n",
1491 additional_description );
1492 }
1493 }
1494 else
1495 {
1496 size_t idx=0;
1497 mbedtls_printf( "(%s) Use of Connection ID has been negotiated.\n",
1498 additional_description );
1499 mbedtls_printf( "(%s) Peer CID (length %u Bytes): ",
1500 additional_description,
1501 (unsigned) peer_cid_len );
1502 while( idx < peer_cid_len )
1503 {
1504 mbedtls_printf( "%02x ", peer_cid[ idx ] );
1505 idx++;
1506 }
1507 mbedtls_printf( "\n" );
1508 }
1509
1510 return( 0 );
1511}
Hanno Beckera5a2b082019-05-15 14:03:01 +01001512#endif /* MBEDTLS_SSL_DTLS_CONNECTION_ID */
Hanno Becker96870292019-05-03 17:30:59 +01001513
Hanno Becker572d4482019-07-23 13:47:53 +01001514#if defined(MBEDTLS_SSL_CONF_RNG)
1515int rng_wrap( void *ctx, unsigned char *dst, size_t len );
1516
Hanno Becker7f1c8052019-08-26 13:30:13 +01001517#if defined(MBEDTLS_CTR_DRBG_C)
Hanno Becker572d4482019-07-23 13:47:53 +01001518mbedtls_ctr_drbg_context *rng_ctx_global = NULL;
Hanno Becker7f1c8052019-08-26 13:30:13 +01001519#else
1520mbedtls_hmac_drbg_context *rng_ctx_global = NULL;
1521#endif /* MBEDTLS_CTR_DRBG_C */
1522
Hanno Becker572d4482019-07-23 13:47:53 +01001523int rng_wrap( void *ctx, unsigned char *dst, size_t len )
1524{
1525 /* We expect the NULL parameter here. */
1526 if( ctx != NULL )
1527 return( -1 );
1528
Hanno Becker7f1c8052019-08-26 13:30:13 +01001529#if defined(MBEDTLS_CTR_DRBG_C)
Hanno Becker572d4482019-07-23 13:47:53 +01001530 return( mbedtls_ctr_drbg_random( rng_ctx_global, dst, len ) );
Hanno Becker7f1c8052019-08-26 13:30:13 +01001531#else
1532 return( mbedtls_hmac_drbg_random( rng_ctx_global, dst, len ) );
1533#endif
Hanno Becker572d4482019-07-23 13:47:53 +01001534}
1535#endif /* MBEDTLS_SSL_CONF_RNG */
1536
Paul Bakkerb60b95f2012-09-25 09:05:17 +00001537int main( int argc, char *argv[] )
1538{
Manuel Pégourié-Gonnard6a0017b2015-01-22 10:33:29 +00001539 int ret = 0, len, written, frags, exchanges_left;
Manuel Pégourié-Gonnard6dc07812014-06-11 13:50:34 +02001540 int version_suites[4][2];
Manuel Pégourié-Gonnard2b29a372019-07-30 17:07:38 +02001541#if !defined(MBEDTLS_SSL_CONF_RECV) && \
1542 !defined(MBEDTLS_SSL_CONF_SEND) && \
1543 !defined(MBEDTLS_SSL_CONF_RECV_TIMEOUT)
Hanno Beckerfe24b3b2019-07-03 17:05:43 +01001544 io_ctx_t io_ctx;
Manuel Pégourié-Gonnard2b29a372019-07-30 17:07:38 +02001545#endif
Andrzej Kurek30e731d2017-10-12 13:50:29 +02001546 unsigned char* buf = 0;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001547#if defined(MBEDTLS_KEY_EXCHANGE__SOME__PSK_ENABLED)
1548 unsigned char psk[MBEDTLS_PSK_MAX_LEN];
Paul Bakkerfbb17802013-04-17 19:10:21 +02001549 size_t psk_len = 0;
Paul Bakker9b7fb6f2014-06-12 23:01:43 +02001550 psk_entry *psk_info = NULL;
Paul Bakkered27a042013-04-18 22:46:23 +02001551#endif
Paul Bakkeref3f8c72013-06-24 13:01:08 +02001552 const char *pers = "ssl_server2";
Manuel Pégourié-Gonnard336b8242014-07-22 17:57:43 +02001553 unsigned char client_ip[16] = { 0 };
Manuel Pégourié-Gonnard0b104b02015-05-14 21:52:40 +02001554 size_t cliip_len;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001555#if defined(MBEDTLS_SSL_COOKIE_C)
1556 mbedtls_ssl_cookie_ctx cookie_ctx;
Manuel Pégourié-Gonnardd485d192014-07-23 14:56:15 +02001557#endif
Paul Bakkerb60b95f2012-09-25 09:05:17 +00001558
Gilles Peskineef86ab22017-05-05 18:59:02 +02001559#if defined(MBEDTLS_X509_CRT_PARSE_C)
1560 mbedtls_x509_crt_profile crt_profile_for_test = mbedtls_x509_crt_profile_default;
1561#endif
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001562 mbedtls_entropy_context entropy;
Hanno Becker7f1c8052019-08-26 13:30:13 +01001563#if defined(MBEDTLS_CTR_DRBG_C)
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001564 mbedtls_ctr_drbg_context ctr_drbg;
Hanno Becker7f1c8052019-08-26 13:30:13 +01001565#else
1566 mbedtls_hmac_drbg_context hmac_drbg;
1567#endif
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001568 mbedtls_ssl_context ssl;
Manuel Pégourié-Gonnarddef0bbe2015-05-04 14:56:36 +02001569 mbedtls_ssl_config conf;
Manuel Pégourié-Gonnardd2377e72015-05-13 13:58:56 +02001570#if defined(MBEDTLS_TIMING_C)
Manuel Pégourié-Gonnarde3c41ad2015-05-13 10:04:32 +02001571 mbedtls_timing_delay_context timer;
Manuel Pégourié-Gonnardd2377e72015-05-13 13:58:56 +02001572#endif
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001573#if defined(MBEDTLS_SSL_RENEGOTIATION)
Manuel Pégourié-Gonnard590f4162014-11-05 14:23:03 +01001574 unsigned char renego_period[8] = { 0 };
1575#endif
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001576#if defined(MBEDTLS_X509_CRT_PARSE_C)
Manuel Pégourié-Gonnarddb1cc762015-05-12 11:27:25 +02001577 uint32_t flags;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001578 mbedtls_x509_crt cacert;
1579 mbedtls_x509_crt srvcert;
1580 mbedtls_pk_context pkey;
1581 mbedtls_x509_crt srvcert2;
1582 mbedtls_pk_context pkey2;
Manuel Pégourié-Gonnarda0fdf8b2013-09-25 14:05:49 +02001583 int key_cert_init = 0, key_cert_init2 = 0;
Gilles Peskineb74a1c72018-04-24 13:09:22 +02001584#if defined(MBEDTLS_SSL_ASYNC_PRIVATE)
Gilles Peskine9eb5e9a2018-01-05 21:15:57 +01001585 ssl_async_key_context_t ssl_async_keys;
Gilles Peskineb74a1c72018-04-24 13:09:22 +02001586#endif /* MBEDTLS_SSL_ASYNC_PRIVATE */
Gilles Peskine9eb5e9a2018-01-05 21:15:57 +01001587#endif /* MBEDTLS_X509_CRT_PARSE_C */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001588#if defined(MBEDTLS_DHM_C) && defined(MBEDTLS_FS_IO)
1589 mbedtls_dhm_context dhm;
Manuel Pégourié-Gonnard736699c2014-06-09 11:29:50 +02001590#endif
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001591#if defined(MBEDTLS_SSL_CACHE_C)
1592 mbedtls_ssl_cache_context cache;
Paul Bakker0a597072012-09-25 21:55:46 +00001593#endif
Manuel Pégourié-Gonnardd59675d2015-05-19 15:28:00 +02001594#if defined(MBEDTLS_SSL_SESSION_TICKETS)
1595 mbedtls_ssl_ticket_context ticket_ctx;
1596#endif
Manuel Pégourié-Gonnard6c7af4c2015-04-03 16:41:52 +02001597#if defined(SNI_OPTION)
Manuel Pégourié-Gonnard5d917ff2014-02-21 16:52:06 +01001598 sni_entry *sni_info = NULL;
1599#endif
Hanno Beckerc1096e72019-06-19 12:30:41 +01001600#if defined(MBEDTLS_ECP_C) && !defined(MBEDTLS_SSL_CONF_SINGLE_EC)
Hanno Becker8651a432017-06-09 16:13:22 +01001601 mbedtls_ecp_group_id curve_list[CURVE_LIST_SIZE];
Hanno Beckere6706e62017-05-15 16:05:15 +01001602 const mbedtls_ecp_curve_info * curve_cur;
1603#endif
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001604#if defined(MBEDTLS_SSL_ALPN)
Hanno Becker8651a432017-06-09 16:13:22 +01001605 const char *alpn_list[ALPN_LIST_SIZE];
Manuel Pégourié-Gonnard1bd22812014-04-05 14:34:07 +02001606#endif
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001607#if defined(MBEDTLS_MEMORY_BUFFER_ALLOC_C)
Simon Butchercce68be2018-07-23 14:26:09 +01001608 unsigned char alloc_buf[MEMORY_HEAP_SIZE];
Paul Bakker82024bf2013-07-04 11:52:32 +02001609#endif
Paul Bakkerb60b95f2012-09-25 09:05:17 +00001610
Hanno Beckera5a2b082019-05-15 14:03:01 +01001611#if defined(MBEDTLS_SSL_DTLS_CONNECTION_ID)
Hanno Becker1029ace2019-04-09 17:28:10 +01001612 unsigned char cid[MBEDTLS_SSL_CID_IN_LEN_MAX];
Hanno Becker96870292019-05-03 17:30:59 +01001613 unsigned char cid_renego[MBEDTLS_SSL_CID_IN_LEN_MAX];
Hanno Becker1029ace2019-04-09 17:28:10 +01001614 size_t cid_len = 0;
Hanno Becker96870292019-05-03 17:30:59 +01001615 size_t cid_renego_len = 0;
Hanno Becker1029ace2019-04-09 17:28:10 +01001616#endif
Manuel Pégourié-Gonnardc9812292019-07-15 10:31:11 +02001617#if defined(MBEDTLS_SSL_CONTEXT_SERIALIZATION)
1618 unsigned char *context_buf = NULL;
1619 size_t context_buf_len;
1620#endif
Hanno Becker1029ace2019-04-09 17:28:10 +01001621
Paul Bakkerb60b95f2012-09-25 09:05:17 +00001622 int i;
Paul Bakkerb60b95f2012-09-25 09:05:17 +00001623 char *p, *q;
1624 const int *list;
1625
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001626#if defined(MBEDTLS_MEMORY_BUFFER_ALLOC_C)
1627 mbedtls_memory_buffer_alloc_init( alloc_buf, sizeof(alloc_buf) );
Paul Bakker82024bf2013-07-04 11:52:32 +02001628#endif
1629
Paul Bakkerb60b95f2012-09-25 09:05:17 +00001630 /*
Manuel Pégourié-Gonnard3bd2aae2013-09-20 13:10:13 +02001631 * Make sure memory references are valid in case we exit early.
Paul Bakkerb60b95f2012-09-25 09:05:17 +00001632 */
Manuel Pégourié-Gonnard5db64322015-06-30 15:40:39 +02001633 mbedtls_net_init( &client_fd );
1634 mbedtls_net_init( &listen_fd );
Manuel Pégourié-Gonnard41d479e2015-04-29 00:48:22 +02001635 mbedtls_ssl_init( &ssl );
Manuel Pégourié-Gonnarddef0bbe2015-05-04 14:56:36 +02001636 mbedtls_ssl_config_init( &conf );
Hanno Becker7f1c8052019-08-26 13:30:13 +01001637#if defined(MBEDTLS_CTR_DRBG_C)
Manuel Pégourié-Gonnardec160c02015-04-28 22:52:30 +02001638 mbedtls_ctr_drbg_init( &ctr_drbg );
Hanno Becker7f1c8052019-08-26 13:30:13 +01001639#else
1640 mbedtls_hmac_drbg_init( &hmac_drbg );
1641#endif /* MBEDTLS_CTR_DRBG_C */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001642#if defined(MBEDTLS_X509_CRT_PARSE_C)
1643 mbedtls_x509_crt_init( &cacert );
1644 mbedtls_x509_crt_init( &srvcert );
1645 mbedtls_pk_init( &pkey );
1646 mbedtls_x509_crt_init( &srvcert2 );
1647 mbedtls_pk_init( &pkey2 );
Gilles Peskine4d9ec4d2018-04-26 14:33:43 +02001648#if defined(MBEDTLS_SSL_ASYNC_PRIVATE)
1649 memset( &ssl_async_keys, 0, sizeof( ssl_async_keys ) );
1650#endif
Paul Bakkered27a042013-04-18 22:46:23 +02001651#endif
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001652#if defined(MBEDTLS_DHM_C) && defined(MBEDTLS_FS_IO)
1653 mbedtls_dhm_init( &dhm );
Manuel Pégourié-Gonnard736699c2014-06-09 11:29:50 +02001654#endif
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001655#if defined(MBEDTLS_SSL_CACHE_C)
1656 mbedtls_ssl_cache_init( &cache );
Paul Bakker0a597072012-09-25 21:55:46 +00001657#endif
Manuel Pégourié-Gonnardd59675d2015-05-19 15:28:00 +02001658#if defined(MBEDTLS_SSL_SESSION_TICKETS)
1659 mbedtls_ssl_ticket_init( &ticket_ctx );
1660#endif
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001661#if defined(MBEDTLS_SSL_ALPN)
Paul Bakker525f8752014-05-01 10:58:57 +02001662 memset( (void *) alpn_list, 0, sizeof( alpn_list ) );
Manuel Pégourié-Gonnard1bd22812014-04-05 14:34:07 +02001663#endif
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001664#if defined(MBEDTLS_SSL_COOKIE_C)
1665 mbedtls_ssl_cookie_init( &cookie_ctx );
Manuel Pégourié-Gonnardd485d192014-07-23 14:56:15 +02001666#endif
Paul Bakkerb60b95f2012-09-25 09:05:17 +00001667
Paul Bakkerc1283d32014-08-18 11:05:51 +02001668#if !defined(_WIN32)
Manuel Pégourié-Gonnard403a86f2014-11-17 12:46:49 +01001669 /* Abort cleanly on SIGTERM and SIGINT */
Manuel Pégourié-Gonnarddb493302014-08-14 15:36:12 +02001670 signal( SIGTERM, term_handler );
Manuel Pégourié-Gonnard403a86f2014-11-17 12:46:49 +01001671 signal( SIGINT, term_handler );
Paul Bakkerc1283d32014-08-18 11:05:51 +02001672#endif
Manuel Pégourié-Gonnarddb493302014-08-14 15:36:12 +02001673
Paul Bakkerb60b95f2012-09-25 09:05:17 +00001674 if( argc == 0 )
1675 {
1676 usage:
1677 if( ret == 0 )
1678 ret = 1;
1679
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001680 mbedtls_printf( USAGE );
Paul Bakkerb60b95f2012-09-25 09:05:17 +00001681
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001682 list = mbedtls_ssl_list_ciphersuites();
Paul Bakkerb60b95f2012-09-25 09:05:17 +00001683 while( *list )
1684 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001685 mbedtls_printf(" %-42s", mbedtls_ssl_get_ciphersuite_name( *list ) );
Paul Bakkered27a042013-04-18 22:46:23 +02001686 list++;
1687 if( !*list )
1688 break;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001689 mbedtls_printf(" %s\n", mbedtls_ssl_get_ciphersuite_name( *list ) );
Paul Bakkerb60b95f2012-09-25 09:05:17 +00001690 list++;
1691 }
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001692 mbedtls_printf("\n");
Paul Bakkerb60b95f2012-09-25 09:05:17 +00001693 goto exit;
1694 }
1695
Andrzej Kurek30e731d2017-10-12 13:50:29 +02001696 opt.buffer_size = DFL_IO_BUF_LEN;
Manuel Pégourié-Gonnard18d31f82013-12-13 16:21:41 +01001697 opt.server_addr = DFL_SERVER_ADDR;
Paul Bakkerb60b95f2012-09-25 09:05:17 +00001698 opt.server_port = DFL_SERVER_PORT;
1699 opt.debug_level = DFL_DEBUG_LEVEL;
Hanno Becker16970d22017-10-10 15:56:37 +01001700 opt.event = DFL_EVENT;
Andrzej Kurek30e731d2017-10-12 13:50:29 +02001701 opt.response_size = DFL_RESPONSE_SIZE;
Manuel Pégourié-Gonnard55753162014-02-26 13:47:08 +01001702 opt.nbio = DFL_NBIO;
Hanno Becker1029ace2019-04-09 17:28:10 +01001703 opt.cid_enabled = DFL_CID_ENABLED;
Hanno Becker96870292019-05-03 17:30:59 +01001704 opt.cid_enabled_renego = DFL_CID_ENABLED_RENEGO;
Hanno Becker1029ace2019-04-09 17:28:10 +01001705 opt.cid_val = DFL_CID_VALUE;
Hanno Becker96870292019-05-03 17:30:59 +01001706 opt.cid_val_renego = DFL_CID_VALUE_RENEGO;
Manuel Pégourié-Gonnard6b651412014-10-01 18:29:03 +02001707 opt.read_timeout = DFL_READ_TIMEOUT;
Paul Bakkerb60b95f2012-09-25 09:05:17 +00001708 opt.ca_file = DFL_CA_FILE;
1709 opt.ca_path = DFL_CA_PATH;
1710 opt.crt_file = DFL_CRT_FILE;
1711 opt.key_file = DFL_KEY_FILE;
Manuel Pégourié-Gonnard3ebb2cd2013-09-23 17:00:18 +02001712 opt.crt_file2 = DFL_CRT_FILE2;
1713 opt.key_file2 = DFL_KEY_FILE2;
Gilles Peskinefcca9d82018-01-12 13:47:48 +01001714 opt.async_operations = DFL_ASYNC_OPERATIONS;
Gilles Peskine9eb5e9a2018-01-05 21:15:57 +01001715 opt.async_private_delay1 = DFL_ASYNC_PRIVATE_DELAY1;
1716 opt.async_private_delay2 = DFL_ASYNC_PRIVATE_DELAY2;
1717 opt.async_private_error = DFL_ASYNC_PRIVATE_ERROR;
Paul Bakkerfbb17802013-04-17 19:10:21 +02001718 opt.psk = DFL_PSK;
1719 opt.psk_identity = DFL_PSK_IDENTITY;
Manuel Pégourié-Gonnard80c85532014-06-10 14:01:52 +02001720 opt.psk_list = DFL_PSK_LIST;
Manuel Pégourié-Gonnard70905a72015-09-16 11:08:34 +02001721 opt.ecjpake_pw = DFL_ECJPAKE_PW;
Paul Bakkerb60b95f2012-09-25 09:05:17 +00001722 opt.force_ciphersuite[0]= DFL_FORCE_CIPHER;
Manuel Pégourié-Gonnard6dc07812014-06-11 13:50:34 +02001723 opt.version_suites = DFL_VERSION_SUITES;
Paul Bakkerb60b95f2012-09-25 09:05:17 +00001724 opt.renegotiation = DFL_RENEGOTIATION;
1725 opt.allow_legacy = DFL_ALLOW_LEGACY;
Manuel Pégourié-Gonnard780d6712014-02-20 17:19:59 +01001726 opt.renegotiate = DFL_RENEGOTIATE;
Manuel Pégourié-Gonnardfae355e2014-07-04 14:32:27 +02001727 opt.renego_delay = DFL_RENEGO_DELAY;
Manuel Pégourié-Gonnard590f4162014-11-05 14:23:03 +01001728 opt.renego_period = DFL_RENEGO_PERIOD;
Manuel Pégourié-Gonnard67686c42014-08-15 11:17:27 +02001729 opt.exchanges = DFL_EXCHANGES;
Paul Bakker1d29fb52012-09-28 13:28:45 +00001730 opt.min_version = DFL_MIN_VERSION;
Paul Bakkerc1516be2013-06-29 16:01:32 +02001731 opt.max_version = DFL_MAX_VERSION;
Manuel Pégourié-Gonnardbd47a582015-01-12 13:43:29 +01001732 opt.arc4 = DFL_ARC4;
Gilles Peskinebc70a182017-05-09 15:59:24 +02001733 opt.allow_sha1 = DFL_SHA1;
Paul Bakker91ebfb52012-11-23 14:04:08 +01001734 opt.auth_mode = DFL_AUTH_MODE;
Janos Follath4817e272017-04-10 13:44:33 +01001735 opt.cert_req_ca_list = DFL_CERT_REQ_CA_LIST;
Manuel Pégourié-Gonnard0c017a52013-07-18 14:07:36 +02001736 opt.mfl_code = DFL_MFL_CODE;
Manuel Pégourié-Gonnarde117a8f2015-01-09 12:39:35 +01001737 opt.trunc_hmac = DFL_TRUNC_HMAC;
Manuel Pégourié-Gonnardaa0d4d12013-08-03 13:02:31 +02001738 opt.tickets = DFL_TICKETS;
Manuel Pégourié-Gonnarddbe1ee12014-02-21 09:18:13 +01001739 opt.ticket_timeout = DFL_TICKET_TIMEOUT;
Manuel Pégourié-Gonnard4c883452014-02-20 21:32:41 +01001740 opt.cache_max = DFL_CACHE_MAX;
Manuel Pégourié-Gonnardc55a5b72014-02-20 22:50:56 +01001741 opt.cache_timeout = DFL_CACHE_TIMEOUT;
Manuel Pégourié-Gonnard5d917ff2014-02-21 16:52:06 +01001742 opt.sni = DFL_SNI;
Manuel Pégourié-Gonnard1bd22812014-04-05 14:34:07 +02001743 opt.alpn_string = DFL_ALPN_STRING;
Hanno Beckere6706e62017-05-15 16:05:15 +01001744 opt.curves = DFL_CURVES;
Manuel Pégourié-Gonnard736699c2014-06-09 11:29:50 +02001745 opt.dhm_file = DFL_DHM_FILE;
Manuel Pégourié-Gonnarde29fd4b2014-02-06 14:02:55 +01001746 opt.transport = DFL_TRANSPORT;
Manuel Pégourié-Gonnard26820e32014-07-23 19:34:59 +02001747 opt.cookies = DFL_COOKIES;
Manuel Pégourié-Gonnard27393132014-09-24 14:41:11 +02001748 opt.anti_replay = DFL_ANTI_REPLAY;
Manuel Pégourié-Gonnardd823bd02014-10-01 14:40:56 +02001749 opt.hs_to_min = DFL_HS_TO_MIN;
1750 opt.hs_to_max = DFL_HS_TO_MAX;
Manuel Pégourié-Gonnardb747c6c2018-08-12 13:28:53 +02001751 opt.dtls_mtu = DFL_DTLS_MTU;
Hanno Beckere7675d02018-08-14 13:28:56 +01001752 opt.dgram_packing = DFL_DGRAM_PACKING;
Manuel Pégourié-Gonnarde698f592014-10-14 19:36:36 +02001753 opt.badmac_limit = DFL_BADMAC_LIMIT;
Manuel Pégourié-Gonnard367381f2014-10-20 18:40:56 +02001754 opt.extended_ms = DFL_EXTENDED_MS;
Jarno Lamsa41b35912019-06-10 15:51:11 +03001755 opt.enforce_extended_master_secret = DFL_EXTENDED_MS_ENFORCE;
Manuel Pégourié-Gonnard699cafa2014-10-27 13:57:03 +01001756 opt.etm = DFL_ETM;
Jarno Lamsa0ea3cfe2019-05-29 13:33:32 +03001757 opt.serialize = DFL_SERIALIZE;
Paul Bakkerb60b95f2012-09-25 09:05:17 +00001758
1759 for( i = 1; i < argc; i++ )
1760 {
Paul Bakkerb60b95f2012-09-25 09:05:17 +00001761 p = argv[i];
1762 if( ( q = strchr( p, '=' ) ) == NULL )
1763 goto usage;
1764 *q++ = '\0';
1765
1766 if( strcmp( p, "server_port" ) == 0 )
Manuel Pégourié-Gonnardc0d74942015-06-23 12:30:57 +02001767 opt.server_port = q;
Manuel Pégourié-Gonnard18d31f82013-12-13 16:21:41 +01001768 else if( strcmp( p, "server_addr" ) == 0 )
1769 opt.server_addr = q;
Manuel Pégourié-Gonnarde29fd4b2014-02-06 14:02:55 +01001770 else if( strcmp( p, "dtls" ) == 0 )
1771 {
1772 int t = atoi( q );
1773 if( t == 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001774 opt.transport = MBEDTLS_SSL_TRANSPORT_STREAM;
Manuel Pégourié-Gonnarde29fd4b2014-02-06 14:02:55 +01001775 else if( t == 1 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001776 opt.transport = MBEDTLS_SSL_TRANSPORT_DATAGRAM;
Manuel Pégourié-Gonnarde29fd4b2014-02-06 14:02:55 +01001777 else
1778 goto usage;
1779 }
Paul Bakkerb60b95f2012-09-25 09:05:17 +00001780 else if( strcmp( p, "debug_level" ) == 0 )
1781 {
1782 opt.debug_level = atoi( q );
1783 if( opt.debug_level < 0 || opt.debug_level > 65535 )
1784 goto usage;
1785 }
Manuel Pégourié-Gonnard55753162014-02-26 13:47:08 +01001786 else if( strcmp( p, "nbio" ) == 0 )
1787 {
1788 opt.nbio = atoi( q );
1789 if( opt.nbio < 0 || opt.nbio > 2 )
1790 goto usage;
1791 }
Hanno Becker16970d22017-10-10 15:56:37 +01001792 else if( strcmp( p, "event" ) == 0 )
1793 {
1794 opt.event = atoi( q );
1795 if( opt.event < 0 || opt.event > 2 )
1796 goto usage;
1797 }
Hanno Becker1f835fa2019-06-13 10:14:59 +01001798#if !defined(MBEDTLS_SSL_CONF_READ_TIMEOUT)
Manuel Pégourié-Gonnard6b651412014-10-01 18:29:03 +02001799 else if( strcmp( p, "read_timeout" ) == 0 )
1800 opt.read_timeout = atoi( q );
Hanno Becker1f835fa2019-06-13 10:14:59 +01001801#endif
Andrzej Kurek30e731d2017-10-12 13:50:29 +02001802 else if( strcmp( p, "buffer_size" ) == 0 )
1803 {
1804 opt.buffer_size = atoi( q );
1805 if( opt.buffer_size < 1 || opt.buffer_size > MBEDTLS_SSL_MAX_CONTENT_LEN + 1 )
1806 goto usage;
1807 }
1808 else if( strcmp( p, "response_size" ) == 0 )
1809 {
1810 opt.response_size = atoi( q );
1811 if( opt.response_size < 0 || opt.response_size > MBEDTLS_SSL_MAX_CONTENT_LEN )
1812 goto usage;
1813 if( opt.buffer_size < opt.response_size )
1814 opt.buffer_size = opt.response_size;
1815 }
Paul Bakkerb60b95f2012-09-25 09:05:17 +00001816 else if( strcmp( p, "ca_file" ) == 0 )
1817 opt.ca_file = q;
1818 else if( strcmp( p, "ca_path" ) == 0 )
1819 opt.ca_path = q;
1820 else if( strcmp( p, "crt_file" ) == 0 )
1821 opt.crt_file = q;
1822 else if( strcmp( p, "key_file" ) == 0 )
1823 opt.key_file = q;
Manuel Pégourié-Gonnard3ebb2cd2013-09-23 17:00:18 +02001824 else if( strcmp( p, "crt_file2" ) == 0 )
1825 opt.crt_file2 = q;
1826 else if( strcmp( p, "key_file2" ) == 0 )
1827 opt.key_file2 = q;
Manuel Pégourié-Gonnard736699c2014-06-09 11:29:50 +02001828 else if( strcmp( p, "dhm_file" ) == 0 )
1829 opt.dhm_file = q;
Gilles Peskineb74a1c72018-04-24 13:09:22 +02001830#if defined(MBEDTLS_SSL_ASYNC_PRIVATE)
Gilles Peskinefcca9d82018-01-12 13:47:48 +01001831 else if( strcmp( p, "async_operations" ) == 0 )
1832 opt.async_operations = q;
Gilles Peskine9eb5e9a2018-01-05 21:15:57 +01001833 else if( strcmp( p, "async_private_delay1" ) == 0 )
1834 opt.async_private_delay1 = atoi( q );
1835 else if( strcmp( p, "async_private_delay2" ) == 0 )
1836 opt.async_private_delay2 = atoi( q );
1837 else if( strcmp( p, "async_private_error" ) == 0 )
1838 {
1839 int n = atoi( q );
Gilles Peskine60ee4ca2018-01-08 11:28:05 +01001840 if( n < -SSL_ASYNC_INJECT_ERROR_MAX ||
1841 n > SSL_ASYNC_INJECT_ERROR_MAX )
Gilles Peskine9eb5e9a2018-01-05 21:15:57 +01001842 {
1843 ret = 2;
1844 goto usage;
1845 }
1846 opt.async_private_error = n;
1847 }
Gilles Peskineb74a1c72018-04-24 13:09:22 +02001848#endif /* MBEDTLS_SSL_ASYNC_PRIVATE */
Hanno Beckera5a2b082019-05-15 14:03:01 +01001849#if defined(MBEDTLS_SSL_DTLS_CONNECTION_ID)
Hanno Becker1029ace2019-04-09 17:28:10 +01001850 else if( strcmp( p, "cid" ) == 0 )
1851 {
1852 opt.cid_enabled = atoi( q );
1853 if( opt.cid_enabled != 0 && opt.cid_enabled != 1 )
1854 goto usage;
1855 }
Hanno Becker96870292019-05-03 17:30:59 +01001856 else if( strcmp( p, "cid_renego" ) == 0 )
1857 {
1858 opt.cid_enabled_renego = atoi( q );
1859 if( opt.cid_enabled_renego != 0 && opt.cid_enabled_renego != 1 )
1860 goto usage;
1861 }
Hanno Becker1029ace2019-04-09 17:28:10 +01001862 else if( strcmp( p, "cid_val" ) == 0 )
1863 {
1864 opt.cid_val = q;
1865 }
Hanno Becker96870292019-05-03 17:30:59 +01001866 else if( strcmp( p, "cid_val_renego" ) == 0 )
1867 {
1868 opt.cid_val_renego = q;
1869 }
Hanno Beckera5a2b082019-05-15 14:03:01 +01001870#endif /* MBEDTLS_SSL_DTLS_CONNECTION_ID */
Paul Bakkerfbb17802013-04-17 19:10:21 +02001871 else if( strcmp( p, "psk" ) == 0 )
1872 opt.psk = q;
1873 else if( strcmp( p, "psk_identity" ) == 0 )
1874 opt.psk_identity = q;
Manuel Pégourié-Gonnard80c85532014-06-10 14:01:52 +02001875 else if( strcmp( p, "psk_list" ) == 0 )
1876 opt.psk_list = q;
Manuel Pégourié-Gonnard70905a72015-09-16 11:08:34 +02001877 else if( strcmp( p, "ecjpake_pw" ) == 0 )
1878 opt.ecjpake_pw = q;
Paul Bakkerb60b95f2012-09-25 09:05:17 +00001879 else if( strcmp( p, "force_ciphersuite" ) == 0 )
1880 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001881 opt.force_ciphersuite[0] = mbedtls_ssl_get_ciphersuite_id( q );
Paul Bakkerb60b95f2012-09-25 09:05:17 +00001882
Manuel Pégourié-Gonnard8de259b2014-06-11 14:19:06 +02001883 if( opt.force_ciphersuite[0] == 0 )
Paul Bakkerb60b95f2012-09-25 09:05:17 +00001884 {
1885 ret = 2;
1886 goto usage;
1887 }
1888 opt.force_ciphersuite[1] = 0;
1889 }
Hanno Beckerc1096e72019-06-19 12:30:41 +01001890#if !defined(MBEDTLS_SSL_CONF_SINGLE_EC)
Hanno Beckere6706e62017-05-15 16:05:15 +01001891 else if( strcmp( p, "curves" ) == 0 )
1892 opt.curves = q;
Hanno Beckerc1096e72019-06-19 12:30:41 +01001893#endif /* !MBEDTLS_SSL_CONF_SINGLE_EC */
Manuel Pégourié-Gonnard6dc07812014-06-11 13:50:34 +02001894 else if( strcmp( p, "version_suites" ) == 0 )
1895 opt.version_suites = q;
Paul Bakkerb60b95f2012-09-25 09:05:17 +00001896 else if( strcmp( p, "renegotiation" ) == 0 )
1897 {
Hanno Becker4cb1f4d2017-10-10 15:59:57 +01001898 opt.renegotiation = (atoi( q )) ?
1899 MBEDTLS_SSL_RENEGOTIATION_ENABLED :
1900 MBEDTLS_SSL_RENEGOTIATION_DISABLED;
Paul Bakkerb60b95f2012-09-25 09:05:17 +00001901 }
Hanno Beckerb0b2b672019-06-12 16:58:10 +01001902#if !defined(MBEDTLS_SSL_CONF_ALLOW_LEGACY_RENEGOTIATION)
Paul Bakkerb60b95f2012-09-25 09:05:17 +00001903 else if( strcmp( p, "allow_legacy" ) == 0 )
1904 {
Manuel Pégourié-Gonnard85d915b2014-11-03 20:10:36 +01001905 switch( atoi( q ) )
1906 {
Hanno Becker4cb1f4d2017-10-10 15:59:57 +01001907 case -1:
1908 opt.allow_legacy = MBEDTLS_SSL_LEGACY_BREAK_HANDSHAKE;
1909 break;
1910 case 0:
1911 opt.allow_legacy = MBEDTLS_SSL_LEGACY_NO_RENEGOTIATION;
1912 break;
1913 case 1:
1914 opt.allow_legacy = MBEDTLS_SSL_LEGACY_ALLOW_RENEGOTIATION;
1915 break;
Manuel Pégourié-Gonnard85d915b2014-11-03 20:10:36 +01001916 default: goto usage;
1917 }
Paul Bakkerb60b95f2012-09-25 09:05:17 +00001918 }
Hanno Beckerb0b2b672019-06-12 16:58:10 +01001919#endif /* !MBEDTLS_SSL_CONF_ALLOW_LEGACY_RENEGOTIATION */
Manuel Pégourié-Gonnard780d6712014-02-20 17:19:59 +01001920 else if( strcmp( p, "renegotiate" ) == 0 )
1921 {
1922 opt.renegotiate = atoi( q );
1923 if( opt.renegotiate < 0 || opt.renegotiate > 1 )
1924 goto usage;
1925 }
Manuel Pégourié-Gonnardfae355e2014-07-04 14:32:27 +02001926 else if( strcmp( p, "renego_delay" ) == 0 )
1927 {
1928 opt.renego_delay = atoi( q );
1929 }
Manuel Pégourié-Gonnard590f4162014-11-05 14:23:03 +01001930 else if( strcmp( p, "renego_period" ) == 0 )
1931 {
Andres AG0b736db2017-02-08 14:05:57 +00001932#if defined(_MSC_VER)
1933 opt.renego_period = _strtoui64( q, NULL, 10 );
1934#else
1935 if( sscanf( q, "%" SCNu64, &opt.renego_period ) != 1 )
1936 goto usage;
1937#endif /* _MSC_VER */
1938 if( opt.renego_period < 2 )
Manuel Pégourié-Gonnard590f4162014-11-05 14:23:03 +01001939 goto usage;
1940 }
Manuel Pégourié-Gonnard67686c42014-08-15 11:17:27 +02001941 else if( strcmp( p, "exchanges" ) == 0 )
1942 {
1943 opt.exchanges = atoi( q );
Manuel Pégourié-Gonnard6a2bc232014-10-09 15:33:13 +02001944 if( opt.exchanges < 0 )
Manuel Pégourié-Gonnard67686c42014-08-15 11:17:27 +02001945 goto usage;
1946 }
Hanno Becker72e5ffc2019-07-05 11:35:08 +01001947#if !defined(MBEDTLS_SSL_CONF_MIN_MINOR_VER) || \
1948 !defined(MBEDTLS_SSL_CONF_MIN_MAJOR_VER) || \
1949 !defined(MBEDTLS_SSL_CONF_MAX_MINOR_VER) || \
1950 !defined(MBEDTLS_SSL_CONF_MAX_MAJOR_VER)
Paul Bakker1d29fb52012-09-28 13:28:45 +00001951 else if( strcmp( p, "min_version" ) == 0 )
1952 {
1953 if( strcmp( q, "ssl3" ) == 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001954 opt.min_version = MBEDTLS_SSL_MINOR_VERSION_0;
Paul Bakker1d29fb52012-09-28 13:28:45 +00001955 else if( strcmp( q, "tls1" ) == 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001956 opt.min_version = MBEDTLS_SSL_MINOR_VERSION_1;
Manuel Pégourié-Gonnard83218f12014-02-12 11:11:12 +01001957 else if( strcmp( q, "tls1_1" ) == 0 ||
1958 strcmp( q, "dtls1" ) == 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001959 opt.min_version = MBEDTLS_SSL_MINOR_VERSION_2;
Manuel Pégourié-Gonnard83218f12014-02-12 11:11:12 +01001960 else if( strcmp( q, "tls1_2" ) == 0 ||
1961 strcmp( q, "dtls1_2" ) == 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001962 opt.min_version = MBEDTLS_SSL_MINOR_VERSION_3;
Paul Bakker1d29fb52012-09-28 13:28:45 +00001963 else
1964 goto usage;
1965 }
Paul Bakkerc1516be2013-06-29 16:01:32 +02001966 else if( strcmp( p, "max_version" ) == 0 )
1967 {
1968 if( strcmp( q, "ssl3" ) == 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001969 opt.max_version = MBEDTLS_SSL_MINOR_VERSION_0;
Paul Bakkerc1516be2013-06-29 16:01:32 +02001970 else if( strcmp( q, "tls1" ) == 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001971 opt.max_version = MBEDTLS_SSL_MINOR_VERSION_1;
Manuel Pégourié-Gonnard83218f12014-02-12 11:11:12 +01001972 else if( strcmp( q, "tls1_1" ) == 0 ||
1973 strcmp( q, "dtls1" ) == 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001974 opt.max_version = MBEDTLS_SSL_MINOR_VERSION_2;
Manuel Pégourié-Gonnard83218f12014-02-12 11:11:12 +01001975 else if( strcmp( q, "tls1_2" ) == 0 ||
1976 strcmp( q, "dtls1_2" ) == 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001977 opt.max_version = MBEDTLS_SSL_MINOR_VERSION_3;
Paul Bakkerc1516be2013-06-29 16:01:32 +02001978 else
1979 goto usage;
1980 }
1981 else if( strcmp( p, "force_version" ) == 0 )
1982 {
1983 if( strcmp( q, "ssl3" ) == 0 )
1984 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001985 opt.min_version = MBEDTLS_SSL_MINOR_VERSION_0;
1986 opt.max_version = MBEDTLS_SSL_MINOR_VERSION_0;
Paul Bakkerc1516be2013-06-29 16:01:32 +02001987 }
1988 else if( strcmp( q, "tls1" ) == 0 )
1989 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001990 opt.min_version = MBEDTLS_SSL_MINOR_VERSION_1;
1991 opt.max_version = MBEDTLS_SSL_MINOR_VERSION_1;
Paul Bakkerc1516be2013-06-29 16:01:32 +02001992 }
Manuel Pégourié-Gonnardfe3f73b2014-03-26 12:16:44 +01001993 else if( strcmp( q, "tls1_1" ) == 0 )
Paul Bakkerc1516be2013-06-29 16:01:32 +02001994 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001995 opt.min_version = MBEDTLS_SSL_MINOR_VERSION_2;
1996 opt.max_version = MBEDTLS_SSL_MINOR_VERSION_2;
Paul Bakkerc1516be2013-06-29 16:01:32 +02001997 }
Manuel Pégourié-Gonnardfe3f73b2014-03-26 12:16:44 +01001998 else if( strcmp( q, "tls1_2" ) == 0 )
Paul Bakkerc1516be2013-06-29 16:01:32 +02001999 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002000 opt.min_version = MBEDTLS_SSL_MINOR_VERSION_3;
2001 opt.max_version = MBEDTLS_SSL_MINOR_VERSION_3;
Paul Bakkerc1516be2013-06-29 16:01:32 +02002002 }
Manuel Pégourié-Gonnardfe3f73b2014-03-26 12:16:44 +01002003 else if( strcmp( q, "dtls1" ) == 0 )
2004 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002005 opt.min_version = MBEDTLS_SSL_MINOR_VERSION_2;
2006 opt.max_version = MBEDTLS_SSL_MINOR_VERSION_2;
2007 opt.transport = MBEDTLS_SSL_TRANSPORT_DATAGRAM;
Manuel Pégourié-Gonnardfe3f73b2014-03-26 12:16:44 +01002008 }
2009 else if( strcmp( q, "dtls1_2" ) == 0 )
2010 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002011 opt.min_version = MBEDTLS_SSL_MINOR_VERSION_3;
2012 opt.max_version = MBEDTLS_SSL_MINOR_VERSION_3;
2013 opt.transport = MBEDTLS_SSL_TRANSPORT_DATAGRAM;
Manuel Pégourié-Gonnardfe3f73b2014-03-26 12:16:44 +01002014 }
Paul Bakkerc1516be2013-06-29 16:01:32 +02002015 else
2016 goto usage;
2017 }
Hanno Becker72e5ffc2019-07-05 11:35:08 +01002018#endif
2019 else if( strcmp( p, "arc4" ) == 0 )
2020 {
2021 switch( atoi( q ) )
2022 {
2023 case 0: opt.arc4 = MBEDTLS_SSL_ARC4_DISABLED; break;
2024 case 1: opt.arc4 = MBEDTLS_SSL_ARC4_ENABLED; break;
2025 default: goto usage;
2026 }
2027 }
2028 else if( strcmp( p, "allow_sha1" ) == 0 )
2029 {
2030 switch( atoi( q ) )
2031 {
2032 case 0: opt.allow_sha1 = 0; break;
2033 case 1: opt.allow_sha1 = 1; break;
2034 default: goto usage;
2035 }
2036 }
2037#if !defined(MBEDTLS_SSL_CONF_MIN_MINOR_VER) || \
2038 !defined(MBEDTLS_SSL_CONF_MIN_MAJOR_VER) || \
2039 !defined(MBEDTLS_SSL_CONF_MAX_MINOR_VER) || \
2040 !defined(MBEDTLS_SSL_CONF_MAX_MAJOR_VER)
2041
2042#endif
Hanno Beckeracd4fc02019-06-12 16:40:50 +01002043#if !defined(MBEDTLS_SSL_CONF_AUTHMODE)
Paul Bakker91ebfb52012-11-23 14:04:08 +01002044 else if( strcmp( p, "auth_mode" ) == 0 )
2045 {
Manuel Pégourié-Gonnard4d6f1782015-06-19 14:40:39 +02002046 if( ( opt.auth_mode = get_auth_mode( q ) ) < 0 )
Paul Bakker91ebfb52012-11-23 14:04:08 +01002047 goto usage;
2048 }
Hanno Beckeracd4fc02019-06-12 16:40:50 +01002049#endif /* !MBEDTLS_SSL_CONF_AUTHMODE */
Janos Follath4817e272017-04-10 13:44:33 +01002050 else if( strcmp( p, "cert_req_ca_list" ) == 0 )
2051 {
2052 opt.cert_req_ca_list = atoi( q );
2053 if( opt.cert_req_ca_list < 0 || opt.cert_req_ca_list > 1 )
2054 goto usage;
2055 }
Manuel Pégourié-Gonnard0c017a52013-07-18 14:07:36 +02002056 else if( strcmp( p, "max_frag_len" ) == 0 )
2057 {
2058 if( strcmp( q, "512" ) == 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002059 opt.mfl_code = MBEDTLS_SSL_MAX_FRAG_LEN_512;
Manuel Pégourié-Gonnard0c017a52013-07-18 14:07:36 +02002060 else if( strcmp( q, "1024" ) == 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002061 opt.mfl_code = MBEDTLS_SSL_MAX_FRAG_LEN_1024;
Manuel Pégourié-Gonnard0c017a52013-07-18 14:07:36 +02002062 else if( strcmp( q, "2048" ) == 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002063 opt.mfl_code = MBEDTLS_SSL_MAX_FRAG_LEN_2048;
Manuel Pégourié-Gonnard0c017a52013-07-18 14:07:36 +02002064 else if( strcmp( q, "4096" ) == 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002065 opt.mfl_code = MBEDTLS_SSL_MAX_FRAG_LEN_4096;
Manuel Pégourié-Gonnard0c017a52013-07-18 14:07:36 +02002066 else
2067 goto usage;
2068 }
Manuel Pégourié-Gonnard1bd22812014-04-05 14:34:07 +02002069 else if( strcmp( p, "alpn" ) == 0 )
2070 {
2071 opt.alpn_string = q;
2072 }
Manuel Pégourié-Gonnarde117a8f2015-01-09 12:39:35 +01002073 else if( strcmp( p, "trunc_hmac" ) == 0 )
2074 {
2075 switch( atoi( q ) )
2076 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002077 case 0: opt.trunc_hmac = MBEDTLS_SSL_TRUNC_HMAC_DISABLED; break;
2078 case 1: opt.trunc_hmac = MBEDTLS_SSL_TRUNC_HMAC_ENABLED; break;
Manuel Pégourié-Gonnarde117a8f2015-01-09 12:39:35 +01002079 default: goto usage;
2080 }
2081 }
Manuel Pégourié-Gonnard367381f2014-10-20 18:40:56 +02002082 else if( strcmp( p, "extended_ms" ) == 0 )
2083 {
2084 switch( atoi( q ) )
2085 {
Hanno Becker4cb1f4d2017-10-10 15:59:57 +01002086 case 0:
2087 opt.extended_ms = MBEDTLS_SSL_EXTENDED_MS_DISABLED;
2088 break;
2089 case 1:
2090 opt.extended_ms = MBEDTLS_SSL_EXTENDED_MS_ENABLED;
2091 break;
Manuel Pégourié-Gonnard367381f2014-10-20 18:40:56 +02002092 default: goto usage;
2093 }
2094 }
Jarno Lamsa41b35912019-06-10 15:51:11 +03002095 else if( strcmp( p, "enforce_extended_master_secret" ) == 0 )
2096 {
2097 switch( atoi( q ) )
2098 {
2099 case 0:
2100 opt.enforce_extended_master_secret =
2101 MBEDTLS_SSL_EXTENDED_MS_ENFORCE_DISABLED;
2102 break;
2103 case 1:
2104 opt.enforce_extended_master_secret =
2105 MBEDTLS_SSL_EXTENDED_MS_ENFORCE_ENABLED;
2106 break;
2107 default: goto usage;
2108 }
2109 }
Manuel Pégourié-Gonnard699cafa2014-10-27 13:57:03 +01002110 else if( strcmp( p, "etm" ) == 0 )
2111 {
2112 switch( atoi( q ) )
2113 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002114 case 0: opt.etm = MBEDTLS_SSL_ETM_DISABLED; break;
2115 case 1: opt.etm = MBEDTLS_SSL_ETM_ENABLED; break;
Manuel Pégourié-Gonnard699cafa2014-10-27 13:57:03 +01002116 default: goto usage;
2117 }
2118 }
Manuel Pégourié-Gonnardaa0d4d12013-08-03 13:02:31 +02002119 else if( strcmp( p, "tickets" ) == 0 )
2120 {
2121 opt.tickets = atoi( q );
2122 if( opt.tickets < 0 || opt.tickets > 1 )
2123 goto usage;
2124 }
Manuel Pégourié-Gonnarddbe1ee12014-02-21 09:18:13 +01002125 else if( strcmp( p, "ticket_timeout" ) == 0 )
2126 {
2127 opt.ticket_timeout = atoi( q );
2128 if( opt.ticket_timeout < 0 )
2129 goto usage;
2130 }
Manuel Pégourié-Gonnard4c883452014-02-20 21:32:41 +01002131 else if( strcmp( p, "cache_max" ) == 0 )
2132 {
2133 opt.cache_max = atoi( q );
2134 if( opt.cache_max < 0 )
2135 goto usage;
2136 }
Manuel Pégourié-Gonnardc55a5b72014-02-20 22:50:56 +01002137 else if( strcmp( p, "cache_timeout" ) == 0 )
2138 {
2139 opt.cache_timeout = atoi( q );
2140 if( opt.cache_timeout < 0 )
2141 goto usage;
2142 }
Manuel Pégourié-Gonnard26820e32014-07-23 19:34:59 +02002143 else if( strcmp( p, "cookies" ) == 0 )
2144 {
2145 opt.cookies = atoi( q );
2146 if( opt.cookies < -1 || opt.cookies > 1)
2147 goto usage;
2148 }
Hanno Becker7f376f42019-06-12 16:20:48 +01002149#if !defined(MBEDTLS_SSL_CONF_ANTI_REPLAY)
Manuel Pégourié-Gonnard27393132014-09-24 14:41:11 +02002150 else if( strcmp( p, "anti_replay" ) == 0 )
2151 {
2152 opt.anti_replay = atoi( q );
2153 if( opt.anti_replay < 0 || opt.anti_replay > 1)
2154 goto usage;
2155 }
Hanno Becker7f376f42019-06-12 16:20:48 +01002156#endif /* !MBEDTLS_SSL_CONF_ANTI_REPLAY */
Hanno Beckerde671542019-06-12 16:30:46 +01002157#if !defined(MBEDTLS_SSL_CONF_BADMAC_LIMIT)
Manuel Pégourié-Gonnarde698f592014-10-14 19:36:36 +02002158 else if( strcmp( p, "badmac_limit" ) == 0 )
2159 {
2160 opt.badmac_limit = atoi( q );
2161 if( opt.badmac_limit < 0 )
2162 goto usage;
2163 }
Hanno Beckerde671542019-06-12 16:30:46 +01002164#endif /* !MBEDTLS_SSL_CONF_BADMAC_LIMIT */
Manuel Pégourié-Gonnardd823bd02014-10-01 14:40:56 +02002165 else if( strcmp( p, "hs_timeout" ) == 0 )
2166 {
2167 if( ( p = strchr( q, '-' ) ) == NULL )
2168 goto usage;
2169 *p++ = '\0';
2170 opt.hs_to_min = atoi( q );
2171 opt.hs_to_max = atoi( p );
2172 if( opt.hs_to_min == 0 || opt.hs_to_max < opt.hs_to_min )
2173 goto usage;
2174 }
Manuel Pégourié-Gonnardb747c6c2018-08-12 13:28:53 +02002175 else if( strcmp( p, "mtu" ) == 0 )
2176 {
2177 opt.dtls_mtu = atoi( q );
2178 if( opt.dtls_mtu < 0 )
2179 goto usage;
2180 }
Hanno Beckere7675d02018-08-14 13:28:56 +01002181 else if( strcmp( p, "dgram_packing" ) == 0 )
2182 {
2183 opt.dgram_packing = atoi( q );
2184 if( opt.dgram_packing != 0 &&
2185 opt.dgram_packing != 1 )
2186 {
2187 goto usage;
2188 }
2189 }
Manuel Pégourié-Gonnard5d917ff2014-02-21 16:52:06 +01002190 else if( strcmp( p, "sni" ) == 0 )
2191 {
2192 opt.sni = q;
2193 }
Andres Amaya Garciabfa3e092018-10-16 21:08:38 +01002194 else if( strcmp( p, "query_config" ) == 0 )
2195 {
2196 return query_config( q );
2197 }
Jarno Lamsa0ea3cfe2019-05-29 13:33:32 +03002198 else if( strcmp( p, "serialize") == 0 )
2199 {
2200 opt.serialize = atoi( q );
Jarno Lamsab5ff6a42019-06-06 10:40:52 +03002201 if( opt.serialize < 0 || opt.serialize > 2)
Jarno Lamsa0ea3cfe2019-05-29 13:33:32 +03002202 goto usage;
2203 }
Paul Bakkerb60b95f2012-09-25 09:05:17 +00002204 else
2205 goto usage;
2206 }
2207
Hanno Becker16970d22017-10-10 15:56:37 +01002208 /* Event-driven IO is incompatible with the above custom
2209 * receive and send functions, as the polling builds on
2210 * refers to the underlying net_context. */
2211 if( opt.event == 1 && opt.nbio != 1 )
2212 {
Hanno Beckerdf4180a2017-10-27 13:43:58 +01002213 mbedtls_printf( "Warning: event-driven IO mandates nbio=1 - overwrite\n" );
Hanno Becker16970d22017-10-10 15:56:37 +01002214 opt.nbio = 1;
2215 }
2216
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002217#if defined(MBEDTLS_DEBUG_C)
2218 mbedtls_debug_set_threshold( opt.debug_level );
Paul Bakkerc73079a2014-04-25 16:34:30 +02002219#endif
Andrzej Kurekda4029d2018-06-20 07:07:55 -04002220 buf = mbedtls_calloc( 1, opt.buffer_size + 1 );
Andrzej Kurek30e731d2017-10-12 13:50:29 +02002221 if( buf == NULL )
2222 {
Andrzej Kurek755890f2018-06-20 08:17:04 -04002223 mbedtls_printf( "Could not allocate %u bytes\n", opt.buffer_size );
Andrzej Kurek30e731d2017-10-12 13:50:29 +02002224 ret = 3;
2225 goto exit;
2226 }
Paul Bakkerc73079a2014-04-25 16:34:30 +02002227
Paul Bakkerc1516be2013-06-29 16:01:32 +02002228 if( opt.force_ciphersuite[0] > 0 )
2229 {
Hanno Becker473f98f2019-06-26 10:27:32 +01002230 mbedtls_ssl_ciphersuite_handle_t ciphersuite_info;
Hanno Becker4cb1f4d2017-10-10 15:59:57 +01002231 ciphersuite_info =
2232 mbedtls_ssl_ciphersuite_from_id( opt.force_ciphersuite[0] );
Paul Bakkerc1516be2013-06-29 16:01:32 +02002233
Paul Bakker5b55b792013-07-19 13:43:43 +02002234 if( opt.max_version != -1 &&
Hanno Becker473f98f2019-06-26 10:27:32 +01002235 mbedtls_ssl_suite_get_min_minor_ver( ciphersuite_info ) > opt.max_version )
Paul Bakker5b55b792013-07-19 13:43:43 +02002236 {
Hanno Becker4cb1f4d2017-10-10 15:59:57 +01002237 mbedtls_printf( "forced ciphersuite not allowed with this protocol version\n" );
Paul Bakker5b55b792013-07-19 13:43:43 +02002238 ret = 2;
2239 goto usage;
2240 }
2241 if( opt.min_version != -1 &&
Hanno Becker473f98f2019-06-26 10:27:32 +01002242 mbedtls_ssl_suite_get_max_minor_ver( ciphersuite_info ) < opt.min_version )
Paul Bakkerc1516be2013-06-29 16:01:32 +02002243 {
Hanno Becker4cb1f4d2017-10-10 15:59:57 +01002244 mbedtls_printf( "forced ciphersuite not allowed with this protocol version\n" );
Paul Bakkerc1516be2013-06-29 16:01:32 +02002245 ret = 2;
2246 goto usage;
2247 }
Manuel Pégourié-Gonnard798f15a2014-03-26 18:12:04 +01002248
2249 /* If we select a version that's not supported by
2250 * this suite, then there will be no common ciphersuite... */
2251 if( opt.max_version == -1 ||
Hanno Becker473f98f2019-06-26 10:27:32 +01002252 opt.max_version > mbedtls_ssl_suite_get_max_minor_ver( ciphersuite_info ) )
Manuel Pégourié-Gonnard798f15a2014-03-26 18:12:04 +01002253 {
Hanno Becker473f98f2019-06-26 10:27:32 +01002254 opt.max_version = mbedtls_ssl_suite_get_max_minor_ver( ciphersuite_info );
Manuel Pégourié-Gonnard798f15a2014-03-26 18:12:04 +01002255 }
Hanno Becker473f98f2019-06-26 10:27:32 +01002256 if( opt.min_version < mbedtls_ssl_suite_get_min_minor_ver( ciphersuite_info ) )
Manuel Pégourié-Gonnard798f15a2014-03-26 18:12:04 +01002257 {
Hanno Becker473f98f2019-06-26 10:27:32 +01002258 opt.min_version = mbedtls_ssl_suite_get_min_minor_ver( ciphersuite_info );
Manuel Pégourié-Gonnard798f15a2014-03-26 18:12:04 +01002259 /* DTLS starts with TLS 1.1 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002260 if( opt.transport == MBEDTLS_SSL_TRANSPORT_DATAGRAM &&
2261 opt.min_version < MBEDTLS_SSL_MINOR_VERSION_2 )
2262 opt.min_version = MBEDTLS_SSL_MINOR_VERSION_2;
Manuel Pégourié-Gonnard798f15a2014-03-26 18:12:04 +01002263 }
Manuel Pégourié-Gonnardd42b7c82015-03-20 19:44:04 +00002264
2265 /* Enable RC4 if needed and not explicitly disabled */
Hanno Becker473f98f2019-06-26 10:27:32 +01002266 if( mbedtls_ssl_suite_get_cipher( ciphersuite_info ) == MBEDTLS_CIPHER_ARC4_128 )
Manuel Pégourié-Gonnardd42b7c82015-03-20 19:44:04 +00002267 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002268 if( opt.arc4 == MBEDTLS_SSL_ARC4_DISABLED )
Manuel Pégourié-Gonnardd42b7c82015-03-20 19:44:04 +00002269 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002270 mbedtls_printf("forced RC4 ciphersuite with RC4 disabled\n");
Manuel Pégourié-Gonnardd42b7c82015-03-20 19:44:04 +00002271 ret = 2;
2272 goto usage;
2273 }
2274
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002275 opt.arc4 = MBEDTLS_SSL_ARC4_ENABLED;
Manuel Pégourié-Gonnardd42b7c82015-03-20 19:44:04 +00002276 }
Paul Bakkerc1516be2013-06-29 16:01:32 +02002277 }
2278
Manuel Pégourié-Gonnard6dc07812014-06-11 13:50:34 +02002279 if( opt.version_suites != NULL )
2280 {
2281 const char *name[4] = { 0 };
2282
2283 /* Parse 4-element coma-separated list */
2284 for( i = 0, p = (char *) opt.version_suites;
2285 i < 4 && *p != '\0';
2286 i++ )
2287 {
2288 name[i] = p;
2289
2290 /* Terminate the current string and move on to next one */
2291 while( *p != ',' && *p != '\0' )
2292 p++;
2293 if( *p == ',' )
2294 *p++ = '\0';
2295 }
2296
2297 if( i != 4 )
2298 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002299 mbedtls_printf( "too few values for version_suites\n" );
Manuel Pégourié-Gonnard6dc07812014-06-11 13:50:34 +02002300 ret = 1;
2301 goto exit;
2302 }
2303
2304 memset( version_suites, 0, sizeof( version_suites ) );
2305
2306 /* Get the suites identifiers from their name */
2307 for( i = 0; i < 4; i++ )
2308 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002309 version_suites[i][0] = mbedtls_ssl_get_ciphersuite_id( name[i] );
Manuel Pégourié-Gonnard6dc07812014-06-11 13:50:34 +02002310
2311 if( version_suites[i][0] == 0 )
2312 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002313 mbedtls_printf( "unknown ciphersuite: '%s'\n", name[i] );
Manuel Pégourié-Gonnard6dc07812014-06-11 13:50:34 +02002314 ret = 2;
2315 goto usage;
2316 }
2317 }
2318 }
2319
Hanno Beckera5a2b082019-05-15 14:03:01 +01002320#if defined(MBEDTLS_SSL_DTLS_CONNECTION_ID)
Hanno Becker96870292019-05-03 17:30:59 +01002321 if( unhexify( cid, opt.cid_val, &cid_len ) != 0 )
2322 {
2323 mbedtls_printf( "CID not valid hex\n" );
2324 goto exit;
2325 }
Hanno Becker1029ace2019-04-09 17:28:10 +01002326
Hanno Becker96870292019-05-03 17:30:59 +01002327 /* Keep CID settings for renegotiation unless
2328 * specified otherwise. */
2329 if( opt.cid_enabled_renego == DFL_CID_ENABLED_RENEGO )
2330 opt.cid_enabled_renego = opt.cid_enabled;
2331 if( opt.cid_val_renego == DFL_CID_VALUE_RENEGO )
2332 opt.cid_val_renego = opt.cid_val;
2333
2334 if( unhexify( cid_renego, opt.cid_val_renego, &cid_renego_len ) != 0 )
2335 {
2336 mbedtls_printf( "CID not valid hex\n" );
2337 goto exit;
2338 }
Hanno Beckera5a2b082019-05-15 14:03:01 +01002339#endif /* MBEDTLS_SSL_DTLS_CONNECTION_ID */
Hanno Becker1029ace2019-04-09 17:28:10 +01002340
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002341#if defined(MBEDTLS_KEY_EXCHANGE__SOME__PSK_ENABLED)
Paul Bakkerb60b95f2012-09-25 09:05:17 +00002342 /*
Manuel Pégourié-Gonnard80c85532014-06-10 14:01:52 +02002343 * Unhexify the pre-shared key and parse the list if any given
Paul Bakkerfbb17802013-04-17 19:10:21 +02002344 */
Manuel Pégourié-Gonnard80c85532014-06-10 14:01:52 +02002345 if( unhexify( psk, opt.psk, &psk_len ) != 0 )
Paul Bakkerfbb17802013-04-17 19:10:21 +02002346 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002347 mbedtls_printf( "pre-shared key not valid hex\n" );
Manuel Pégourié-Gonnard80c85532014-06-10 14:01:52 +02002348 goto exit;
2349 }
2350
2351 if( opt.psk_list != NULL )
2352 {
2353 if( ( psk_info = psk_parse( opt.psk_list ) ) == NULL )
Paul Bakkerfbb17802013-04-17 19:10:21 +02002354 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002355 mbedtls_printf( "psk_list invalid" );
Paul Bakkerfbb17802013-04-17 19:10:21 +02002356 goto exit;
2357 }
Paul Bakkerfbb17802013-04-17 19:10:21 +02002358 }
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002359#endif /* MBEDTLS_KEY_EXCHANGE__SOME__PSK_ENABLED */
Paul Bakkerfbb17802013-04-17 19:10:21 +02002360
Hanno Beckerc1096e72019-06-19 12:30:41 +01002361#if defined(MBEDTLS_ECP_C) && !defined(MBEDTLS_SSL_CONF_SINGLE_EC)
Hanno Beckere6706e62017-05-15 16:05:15 +01002362 if( opt.curves != NULL )
2363 {
2364 p = (char *) opt.curves;
2365 i = 0;
2366
2367 if( strcmp( p, "none" ) == 0 )
2368 {
2369 curve_list[0] = MBEDTLS_ECP_DP_NONE;
2370 }
2371 else if( strcmp( p, "default" ) != 0 )
2372 {
2373 /* Leave room for a final NULL in curve list */
Hanno Becker8651a432017-06-09 16:13:22 +01002374 while( i < CURVE_LIST_SIZE - 1 && *p != '\0' )
Hanno Beckere6706e62017-05-15 16:05:15 +01002375 {
2376 q = p;
2377
2378 /* Terminate the current string */
2379 while( *p != ',' && *p != '\0' )
2380 p++;
2381 if( *p == ',' )
2382 *p++ = '\0';
2383
2384 if( ( curve_cur = mbedtls_ecp_curve_info_from_name( q ) ) != NULL )
2385 {
2386 curve_list[i++] = curve_cur->grp_id;
2387 }
2388 else
2389 {
2390 mbedtls_printf( "unknown curve %s\n", q );
2391 mbedtls_printf( "supported curves: " );
2392 for( curve_cur = mbedtls_ecp_curve_list();
2393 curve_cur->grp_id != MBEDTLS_ECP_DP_NONE;
2394 curve_cur++ )
2395 {
2396 mbedtls_printf( "%s ", curve_cur->name );
2397 }
2398 mbedtls_printf( "\n" );
2399 goto exit;
2400 }
2401 }
2402
2403 mbedtls_printf("Number of curves: %d\n", i );
2404
Hanno Becker8651a432017-06-09 16:13:22 +01002405 if( i == CURVE_LIST_SIZE - 1 && *p != '\0' )
Hanno Beckere6706e62017-05-15 16:05:15 +01002406 {
Hanno Becker8651a432017-06-09 16:13:22 +01002407 mbedtls_printf( "curves list too long, maximum %d",
2408 CURVE_LIST_SIZE - 1 );
Hanno Beckere6706e62017-05-15 16:05:15 +01002409 goto exit;
2410 }
2411
2412 curve_list[i] = MBEDTLS_ECP_DP_NONE;
2413 }
2414 }
Hanno Beckerc1096e72019-06-19 12:30:41 +01002415#endif /* MBEDTLS_ECP_C && !MBEDTLS_SSL_CONF_SINGLE_EC */
Hanno Beckere6706e62017-05-15 16:05:15 +01002416
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002417#if defined(MBEDTLS_SSL_ALPN)
Manuel Pégourié-Gonnard1bd22812014-04-05 14:34:07 +02002418 if( opt.alpn_string != NULL )
2419 {
2420 p = (char *) opt.alpn_string;
2421 i = 0;
2422
2423 /* Leave room for a final NULL in alpn_list */
Hanno Becker8651a432017-06-09 16:13:22 +01002424 while( i < ALPN_LIST_SIZE - 1 && *p != '\0' )
Manuel Pégourié-Gonnard1bd22812014-04-05 14:34:07 +02002425 {
2426 alpn_list[i++] = p;
2427
2428 /* Terminate the current string and move on to next one */
2429 while( *p != ',' && *p != '\0' )
2430 p++;
2431 if( *p == ',' )
2432 *p++ = '\0';
2433 }
2434 }
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002435#endif /* MBEDTLS_SSL_ALPN */
Manuel Pégourié-Gonnard1bd22812014-04-05 14:34:07 +02002436
Paul Bakkerfbb17802013-04-17 19:10:21 +02002437 /*
Paul Bakkerb60b95f2012-09-25 09:05:17 +00002438 * 0. Initialize the RNG and the session data
2439 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002440 mbedtls_printf( "\n . Seeding the random number generator..." );
Paul Bakkerb60b95f2012-09-25 09:05:17 +00002441 fflush( stdout );
2442
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002443 mbedtls_entropy_init( &entropy );
Hanno Becker7f1c8052019-08-26 13:30:13 +01002444#if defined(MBEDTLS_CTR_DRBG_C)
Hanno Becker4cb1f4d2017-10-10 15:59:57 +01002445 if( ( ret = mbedtls_ctr_drbg_seed( &ctr_drbg, mbedtls_entropy_func,
2446 &entropy, (const unsigned char *) pers,
2447 strlen( pers ) ) ) != 0 )
Paul Bakkerb60b95f2012-09-25 09:05:17 +00002448 {
Hanno Becker4cb1f4d2017-10-10 15:59:57 +01002449 mbedtls_printf( " failed\n ! mbedtls_ctr_drbg_seed returned -0x%x\n",
2450 -ret );
Paul Bakkerb60b95f2012-09-25 09:05:17 +00002451 goto exit;
2452 }
Hanno Becker7f1c8052019-08-26 13:30:13 +01002453#else /* MBEDTLS_CTR_DRBG_C */
2454 if( ( ret = mbedtls_hmac_drbg_seed( &hmac_drbg,
2455 mbedtls_md_info_from_type(
2456 available_hashes[0] ),
2457 mbedtls_entropy_func,
2458 &entropy, (const unsigned char *) pers,
2459 strlen( pers ) ) ) != 0 )
2460 {
2461 mbedtls_printf( " failed\n ! mbedtls_ctr_drbg_seed returned -0x%x\n",
2462 -ret );
2463 goto exit;
2464 }
2465#endif /* MBEDTLS_CTR_DRBG */
Paul Bakkerb60b95f2012-09-25 09:05:17 +00002466
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002467 mbedtls_printf( " ok\n" );
Paul Bakkerb60b95f2012-09-25 09:05:17 +00002468
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002469#if defined(MBEDTLS_X509_CRT_PARSE_C)
Paul Bakkerb60b95f2012-09-25 09:05:17 +00002470 /*
2471 * 1.1. Load the trusted CA
2472 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002473 mbedtls_printf( " . Loading the CA root certificate ..." );
Paul Bakkerb60b95f2012-09-25 09:05:17 +00002474 fflush( stdout );
2475
Hanno Becker7ae36e42019-03-05 16:22:07 +00002476 if( strcmp( opt.ca_path, "none" ) == 0 ||
2477 strcmp( opt.ca_file, "none" ) == 0 )
2478 {
2479 ret = 0;
2480 }
2481 else
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002482#if defined(MBEDTLS_FS_IO)
Paul Bakkerb60b95f2012-09-25 09:05:17 +00002483 if( strlen( opt.ca_path ) )
Hanno Becker7ae36e42019-03-05 16:22:07 +00002484 ret = mbedtls_x509_crt_parse_path( &cacert, opt.ca_path );
Paul Bakkerb60b95f2012-09-25 09:05:17 +00002485 else if( strlen( opt.ca_file ) )
Hanno Becker7ae36e42019-03-05 16:22:07 +00002486 ret = mbedtls_x509_crt_parse_file( &cacert, opt.ca_file );
Paul Bakkerddf26b42013-09-18 13:46:23 +02002487 else
Paul Bakkerb60b95f2012-09-25 09:05:17 +00002488#endif
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002489#if defined(MBEDTLS_CERTS_C)
Hanno Becker38566cc2019-02-01 08:13:19 +00002490 {
2491#if defined(MBEDTLS_PEM_PARSE_C)
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002492 for( i = 0; mbedtls_test_cas[i] != NULL; i++ )
Manuel Pégourié-Gonnard2f165062015-03-27 10:20:26 +01002493 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002494 ret = mbedtls_x509_crt_parse( &cacert,
2495 (const unsigned char *) mbedtls_test_cas[i],
2496 mbedtls_test_cas_len[i] );
Manuel Pégourié-Gonnard2f165062015-03-27 10:20:26 +01002497 if( ret != 0 )
2498 break;
2499 }
Hanno Becker38566cc2019-02-01 08:13:19 +00002500 if( ret == 0 )
2501#endif /* MBEDTLS_PEM_PARSE_C */
2502 for( i = 0; mbedtls_test_cas_der[i] != NULL; i++ )
2503 {
2504 ret = mbedtls_x509_crt_parse_der( &cacert,
2505 (const unsigned char *) mbedtls_test_cas_der[i],
2506 mbedtls_test_cas_der_len[i] );
2507 if( ret != 0 )
2508 break;
2509 }
2510 }
Paul Bakkerb60b95f2012-09-25 09:05:17 +00002511#else
2512 {
2513 ret = 1;
Hanno Beckerc258c442018-12-05 16:49:42 +00002514 mbedtls_printf( "MBEDTLS_CERTS_C not defined." );
Paul Bakkerb60b95f2012-09-25 09:05:17 +00002515 }
Hanno Becker38566cc2019-02-01 08:13:19 +00002516#endif /* MBEDTLS_CERTS_C */
Paul Bakkerb60b95f2012-09-25 09:05:17 +00002517 if( ret < 0 )
2518 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002519 mbedtls_printf( " failed\n ! mbedtls_x509_crt_parse returned -0x%x\n\n", -ret );
Paul Bakkerb60b95f2012-09-25 09:05:17 +00002520 goto exit;
2521 }
2522
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002523 mbedtls_printf( " ok (%d skipped)\n", ret );
Paul Bakkerb60b95f2012-09-25 09:05:17 +00002524
2525 /*
2526 * 1.2. Load own certificate and private key
2527 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002528 mbedtls_printf( " . Loading the server cert. and key..." );
Paul Bakkerb60b95f2012-09-25 09:05:17 +00002529 fflush( stdout );
2530
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002531#if defined(MBEDTLS_FS_IO)
Manuel Pégourié-Gonnard3e1b1782014-02-27 13:35:00 +01002532 if( strlen( opt.crt_file ) && strcmp( opt.crt_file, "none" ) != 0 )
Manuel Pégourié-Gonnardb095a7b2013-09-24 21:14:51 +02002533 {
Manuel Pégourié-Gonnarda0fdf8b2013-09-25 14:05:49 +02002534 key_cert_init++;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002535 if( ( ret = mbedtls_x509_crt_parse_file( &srvcert, opt.crt_file ) ) != 0 )
Manuel Pégourié-Gonnardac8474f2013-09-25 11:35:15 +02002536 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002537 mbedtls_printf( " failed\n ! mbedtls_x509_crt_parse_file returned -0x%x\n\n",
Manuel Pégourié-Gonnardac8474f2013-09-25 11:35:15 +02002538 -ret );
2539 goto exit;
2540 }
Manuel Pégourié-Gonnardb095a7b2013-09-24 21:14:51 +02002541 }
Manuel Pégourié-Gonnard3e1b1782014-02-27 13:35:00 +01002542 if( strlen( opt.key_file ) && strcmp( opt.key_file, "none" ) != 0 )
Manuel Pégourié-Gonnardb095a7b2013-09-24 21:14:51 +02002543 {
Manuel Pégourié-Gonnarda0fdf8b2013-09-25 14:05:49 +02002544 key_cert_init++;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002545 if( ( ret = mbedtls_pk_parse_keyfile( &pkey, opt.key_file, "" ) ) != 0 )
Manuel Pégourié-Gonnardac8474f2013-09-25 11:35:15 +02002546 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002547 mbedtls_printf( " failed\n ! mbedtls_pk_parse_keyfile returned -0x%x\n\n", -ret );
Manuel Pégourié-Gonnardac8474f2013-09-25 11:35:15 +02002548 goto exit;
2549 }
Manuel Pégourié-Gonnardb095a7b2013-09-24 21:14:51 +02002550 }
Manuel Pégourié-Gonnarda0fdf8b2013-09-25 14:05:49 +02002551 if( key_cert_init == 1 )
2552 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002553 mbedtls_printf( " failed\n ! crt_file without key_file or vice-versa\n\n" );
Manuel Pégourié-Gonnarda0fdf8b2013-09-25 14:05:49 +02002554 goto exit;
2555 }
2556
Manuel Pégourié-Gonnard3e1b1782014-02-27 13:35:00 +01002557 if( strlen( opt.crt_file2 ) && strcmp( opt.crt_file2, "none" ) != 0 )
Manuel Pégourié-Gonnardb095a7b2013-09-24 21:14:51 +02002558 {
Manuel Pégourié-Gonnarda0fdf8b2013-09-25 14:05:49 +02002559 key_cert_init2++;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002560 if( ( ret = mbedtls_x509_crt_parse_file( &srvcert2, opt.crt_file2 ) ) != 0 )
Manuel Pégourié-Gonnardac8474f2013-09-25 11:35:15 +02002561 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002562 mbedtls_printf( " failed\n ! mbedtls_x509_crt_parse_file(2) returned -0x%x\n\n",
Manuel Pégourié-Gonnardac8474f2013-09-25 11:35:15 +02002563 -ret );
2564 goto exit;
2565 }
Manuel Pégourié-Gonnardb095a7b2013-09-24 21:14:51 +02002566 }
Manuel Pégourié-Gonnard3e1b1782014-02-27 13:35:00 +01002567 if( strlen( opt.key_file2 ) && strcmp( opt.key_file2, "none" ) != 0 )
Manuel Pégourié-Gonnardb095a7b2013-09-24 21:14:51 +02002568 {
Manuel Pégourié-Gonnarda0fdf8b2013-09-25 14:05:49 +02002569 key_cert_init2++;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002570 if( ( ret = mbedtls_pk_parse_keyfile( &pkey2, opt.key_file2, "" ) ) != 0 )
Manuel Pégourié-Gonnardac8474f2013-09-25 11:35:15 +02002571 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002572 mbedtls_printf( " failed\n ! mbedtls_pk_parse_keyfile(2) returned -0x%x\n\n",
Hanno Beckerdf4180a2017-10-27 13:43:58 +01002573 -ret );
Manuel Pégourié-Gonnardac8474f2013-09-25 11:35:15 +02002574 goto exit;
2575 }
Manuel Pégourié-Gonnardb095a7b2013-09-24 21:14:51 +02002576 }
Manuel Pégourié-Gonnarda0fdf8b2013-09-25 14:05:49 +02002577 if( key_cert_init2 == 1 )
2578 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002579 mbedtls_printf( " failed\n ! crt_file2 without key_file2 or vice-versa\n\n" );
Manuel Pégourié-Gonnarda0fdf8b2013-09-25 14:05:49 +02002580 goto exit;
2581 }
Manuel Pégourié-Gonnardb095a7b2013-09-24 21:14:51 +02002582#endif
Manuel Pégourié-Gonnard3e1b1782014-02-27 13:35:00 +01002583 if( key_cert_init == 0 &&
2584 strcmp( opt.crt_file, "none" ) != 0 &&
2585 strcmp( opt.key_file, "none" ) != 0 &&
2586 key_cert_init2 == 0 &&
2587 strcmp( opt.crt_file2, "none" ) != 0 &&
2588 strcmp( opt.key_file2, "none" ) != 0 )
Manuel Pégourié-Gonnardb095a7b2013-09-24 21:14:51 +02002589 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002590#if !defined(MBEDTLS_CERTS_C)
Hanno Beckerdf4180a2017-10-27 13:43:58 +01002591 mbedtls_printf( "Not certificated or key provided, and \nMBEDTLS_CERTS_C not defined!\n" );
Manuel Pégourié-Gonnardb095a7b2013-09-24 21:14:51 +02002592 goto exit;
Manuel Pégourié-Gonnardac8474f2013-09-25 11:35:15 +02002593#else
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002594#if defined(MBEDTLS_RSA_C)
2595 if( ( ret = mbedtls_x509_crt_parse( &srvcert,
2596 (const unsigned char *) mbedtls_test_srv_crt_rsa,
2597 mbedtls_test_srv_crt_rsa_len ) ) != 0 )
Manuel Pégourié-Gonnardac8474f2013-09-25 11:35:15 +02002598 {
Hanno Beckerdf4180a2017-10-27 13:43:58 +01002599 mbedtls_printf( " failed\n ! mbedtls_x509_crt_parse returned -0x%x\n\n",
2600 -ret );
Manuel Pégourié-Gonnardac8474f2013-09-25 11:35:15 +02002601 goto exit;
2602 }
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002603 if( ( ret = mbedtls_pk_parse_key( &pkey,
2604 (const unsigned char *) mbedtls_test_srv_key_rsa,
2605 mbedtls_test_srv_key_rsa_len, NULL, 0 ) ) != 0 )
Manuel Pégourié-Gonnardac8474f2013-09-25 11:35:15 +02002606 {
Hanno Beckerdf4180a2017-10-27 13:43:58 +01002607 mbedtls_printf( " failed\n ! mbedtls_pk_parse_key returned -0x%x\n\n",
2608 -ret );
Manuel Pégourié-Gonnardac8474f2013-09-25 11:35:15 +02002609 goto exit;
2610 }
Manuel Pégourié-Gonnarda0fdf8b2013-09-25 14:05:49 +02002611 key_cert_init = 2;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002612#endif /* MBEDTLS_RSA_C */
Hanno Becker88889c62019-08-23 12:01:45 +01002613#if defined(MBEDTLS_ECDSA_C) || defined(MBEDTLS_USE_TINYCRYPT)
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002614 if( ( ret = mbedtls_x509_crt_parse( &srvcert2,
2615 (const unsigned char *) mbedtls_test_srv_crt_ec,
2616 mbedtls_test_srv_crt_ec_len ) ) != 0 )
Manuel Pégourié-Gonnardac8474f2013-09-25 11:35:15 +02002617 {
Hanno Beckerdf4180a2017-10-27 13:43:58 +01002618 mbedtls_printf( " failed\n ! x509_crt_parse2 returned -0x%x\n\n",
2619 -ret );
Manuel Pégourié-Gonnardac8474f2013-09-25 11:35:15 +02002620 goto exit;
2621 }
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002622 if( ( ret = mbedtls_pk_parse_key( &pkey2,
2623 (const unsigned char *) mbedtls_test_srv_key_ec,
2624 mbedtls_test_srv_key_ec_len, NULL, 0 ) ) != 0 )
Manuel Pégourié-Gonnardac8474f2013-09-25 11:35:15 +02002625 {
Hanno Beckerdf4180a2017-10-27 13:43:58 +01002626 mbedtls_printf( " failed\n ! pk_parse_key2 returned -0x%x\n\n",
2627 -ret );
Manuel Pégourié-Gonnardac8474f2013-09-25 11:35:15 +02002628 goto exit;
2629 }
Manuel Pégourié-Gonnarda0fdf8b2013-09-25 14:05:49 +02002630 key_cert_init2 = 2;
Hanno Becker88889c62019-08-23 12:01:45 +01002631#endif /* MBEDTLS_ECDSA_C || MBEDTLS_USE_TINYCRYPT */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002632#endif /* MBEDTLS_CERTS_C */
Manuel Pégourié-Gonnardac8474f2013-09-25 11:35:15 +02002633 }
Paul Bakkerb60b95f2012-09-25 09:05:17 +00002634
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002635 mbedtls_printf( " ok\n" );
2636#endif /* MBEDTLS_X509_CRT_PARSE_C */
Paul Bakkerb60b95f2012-09-25 09:05:17 +00002637
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002638#if defined(MBEDTLS_DHM_C) && defined(MBEDTLS_FS_IO)
Manuel Pégourié-Gonnard736699c2014-06-09 11:29:50 +02002639 if( opt.dhm_file != NULL )
2640 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002641 mbedtls_printf( " . Loading DHM parameters..." );
Manuel Pégourié-Gonnard736699c2014-06-09 11:29:50 +02002642 fflush( stdout );
2643
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002644 if( ( ret = mbedtls_dhm_parse_dhmfile( &dhm, opt.dhm_file ) ) != 0 )
Manuel Pégourié-Gonnard736699c2014-06-09 11:29:50 +02002645 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002646 mbedtls_printf( " failed\n ! mbedtls_dhm_parse_dhmfile returned -0x%04X\n\n",
Manuel Pégourié-Gonnard736699c2014-06-09 11:29:50 +02002647 -ret );
2648 goto exit;
2649 }
2650
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002651 mbedtls_printf( " ok\n" );
Manuel Pégourié-Gonnard736699c2014-06-09 11:29:50 +02002652 }
2653#endif
2654
Manuel Pégourié-Gonnard6c7af4c2015-04-03 16:41:52 +02002655#if defined(SNI_OPTION)
Manuel Pégourié-Gonnard5d917ff2014-02-21 16:52:06 +01002656 if( opt.sni != NULL )
2657 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002658 mbedtls_printf( " . Setting up SNI information..." );
Manuel Pégourié-Gonnard5d917ff2014-02-21 16:52:06 +01002659 fflush( stdout );
2660
2661 if( ( sni_info = sni_parse( opt.sni ) ) == NULL )
2662 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002663 mbedtls_printf( " failed\n" );
Manuel Pégourié-Gonnard5d917ff2014-02-21 16:52:06 +01002664 goto exit;
2665 }
2666
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002667 mbedtls_printf( " ok\n" );
Manuel Pégourié-Gonnard5d917ff2014-02-21 16:52:06 +01002668 }
Manuel Pégourié-Gonnard6c7af4c2015-04-03 16:41:52 +02002669#endif /* SNI_OPTION */
Manuel Pégourié-Gonnard5d917ff2014-02-21 16:52:06 +01002670
Paul Bakkerb60b95f2012-09-25 09:05:17 +00002671 /*
2672 * 2. Setup the listening TCP socket
2673 */
Manuel Pégourié-Gonnardc0d74942015-06-23 12:30:57 +02002674 mbedtls_printf( " . Bind on %s://%s:%s/ ...",
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002675 opt.transport == MBEDTLS_SSL_TRANSPORT_STREAM ? "tcp" : "udp",
Manuel Pégourié-Gonnard8a06d9c2014-03-23 18:23:41 +01002676 opt.server_addr ? opt.server_addr : "*",
2677 opt.server_port );
Paul Bakkerb60b95f2012-09-25 09:05:17 +00002678 fflush( stdout );
2679
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002680 if( ( ret = mbedtls_net_bind( &listen_fd, opt.server_addr, opt.server_port,
2681 opt.transport == MBEDTLS_SSL_TRANSPORT_STREAM ?
2682 MBEDTLS_NET_PROTO_TCP : MBEDTLS_NET_PROTO_UDP ) ) != 0 )
Paul Bakkerb60b95f2012-09-25 09:05:17 +00002683 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002684 mbedtls_printf( " failed\n ! mbedtls_net_bind returned -0x%x\n\n", -ret );
Paul Bakkerb60b95f2012-09-25 09:05:17 +00002685 goto exit;
2686 }
2687
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002688 mbedtls_printf( " ok\n" );
Paul Bakkerb60b95f2012-09-25 09:05:17 +00002689
2690 /*
2691 * 3. Setup stuff
2692 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002693 mbedtls_printf( " . Setting up the SSL/TLS structure..." );
Paul Bakkerb60b95f2012-09-25 09:05:17 +00002694 fflush( stdout );
2695
Manuel Pégourié-Gonnard419d5ae2015-05-04 19:32:36 +02002696 if( ( ret = mbedtls_ssl_config_defaults( &conf,
2697 MBEDTLS_SSL_IS_SERVER,
Manuel Pégourié-Gonnardb31c5f62015-06-17 13:53:47 +02002698 opt.transport,
2699 MBEDTLS_SSL_PRESET_DEFAULT ) ) != 0 )
Manuel Pégourié-Gonnarddef0bbe2015-05-04 14:56:36 +02002700 {
2701 mbedtls_printf( " failed\n ! mbedtls_ssl_config_defaults returned -0x%x\n\n", -ret );
2702 goto exit;
2703 }
2704
Gilles Peskineef86ab22017-05-05 18:59:02 +02002705#if defined(MBEDTLS_X509_CRT_PARSE_C)
2706 /* The default algorithms profile disables SHA-1, but our tests still
2707 rely on it heavily. Hence we allow it here. A real-world server
2708 should use the default profile unless there is a good reason not to. */
Gilles Peskinebc70a182017-05-09 15:59:24 +02002709 if( opt.allow_sha1 > 0 )
2710 {
2711 crt_profile_for_test.allowed_mds |= MBEDTLS_X509_ID_FLAG( MBEDTLS_MD_SHA1 );
2712 mbedtls_ssl_conf_cert_profile( &conf, &crt_profile_for_test );
Hanno Becker56595f42019-06-19 16:31:38 +01002713#if !defined(MBEDTLS_SSL_CONF_SINGLE_HASH)
Hanno Becker7f1c8052019-08-26 13:30:13 +01002714 mbedtls_ssl_conf_sig_hashes( &conf, available_hashes );
Hanno Becker56595f42019-06-19 16:31:38 +01002715#endif
Gilles Peskinebc70a182017-05-09 15:59:24 +02002716 }
Gilles Peskineef86ab22017-05-05 18:59:02 +02002717#endif /* MBEDTLS_X509_CRT_PARSE_C */
2718
Hanno Beckeracd4fc02019-06-12 16:40:50 +01002719#if !defined(MBEDTLS_SSL_CONF_AUTHMODE)
Manuel Pégourié-Gonnardfa44f202015-03-27 17:52:25 +01002720 if( opt.auth_mode != DFL_AUTH_MODE )
Manuel Pégourié-Gonnard6729e792015-05-11 09:50:24 +02002721 mbedtls_ssl_conf_authmode( &conf, opt.auth_mode );
Hanno Beckeracd4fc02019-06-12 16:40:50 +01002722#endif /* !MBEDTLS_SSL_CONF_AUTHMODE */
Paul Bakkerb60b95f2012-09-25 09:05:17 +00002723
Hanno Beckerc2cfdaa2019-06-13 12:33:03 +01002724#if !defined(MBEDTLS_SSL_CONF_CERT_REQ_CA_LIST)
Janos Follath4817e272017-04-10 13:44:33 +01002725 if( opt.cert_req_ca_list != DFL_CERT_REQ_CA_LIST )
2726 mbedtls_ssl_conf_cert_req_ca_list( &conf, opt.cert_req_ca_list );
Hanno Beckerc2cfdaa2019-06-13 12:33:03 +01002727#endif
Janos Follath4817e272017-04-10 13:44:33 +01002728
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002729#if defined(MBEDTLS_SSL_PROTO_DTLS)
Manuel Pégourié-Gonnardd823bd02014-10-01 14:40:56 +02002730 if( opt.hs_to_min != DFL_HS_TO_MIN || opt.hs_to_max != DFL_HS_TO_MAX )
Manuel Pégourié-Gonnard6729e792015-05-11 09:50:24 +02002731 mbedtls_ssl_conf_handshake_timeout( &conf, opt.hs_to_min, opt.hs_to_max );
Manuel Pégourié-Gonnardb747c6c2018-08-12 13:28:53 +02002732
Hanno Beckere7675d02018-08-14 13:28:56 +01002733 if( opt.dgram_packing != DFL_DGRAM_PACKING )
Hanno Becker1841b0a2018-08-24 11:13:57 +01002734 mbedtls_ssl_set_datagram_packing( &ssl, opt.dgram_packing );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002735#endif /* MBEDTLS_SSL_PROTO_DTLS */
Manuel Pégourié-Gonnardd823bd02014-10-01 14:40:56 +02002736
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002737#if defined(MBEDTLS_SSL_MAX_FRAGMENT_LENGTH)
Manuel Pégourié-Gonnard6729e792015-05-11 09:50:24 +02002738 if( ( ret = mbedtls_ssl_conf_max_frag_len( &conf, opt.mfl_code ) ) != 0 )
Manuel Pégourié-Gonnardc5fd3912014-07-08 14:05:52 +02002739 {
Manuel Pégourié-Gonnard6729e792015-05-11 09:50:24 +02002740 mbedtls_printf( " failed\n ! mbedtls_ssl_conf_max_frag_len returned %d\n\n", ret );
Manuel Pégourié-Gonnardc5fd3912014-07-08 14:05:52 +02002741 goto exit;
2742 };
Paul Bakker05decb22013-08-15 13:33:48 +02002743#endif
Manuel Pégourié-Gonnard0c017a52013-07-18 14:07:36 +02002744
Hanno Beckere0200da2019-06-13 09:23:43 +01002745#if defined(MBEDTLS_SSL_DTLS_CONNECTION_ID) && \
2746 !defined(MBEDTLS_SSL_CONF_CID_LEN) && \
2747 !defined(MBEDTLS_SSL_CONF_IGNORE_UNEXPECTED_CID)
Hanno Becker96870292019-05-03 17:30:59 +01002748 if( opt.cid_enabled == 1 || opt.cid_enabled_renego == 1 )
Hanno Beckereec2be92019-05-03 13:06:44 +01002749 {
Hanno Becker96870292019-05-03 17:30:59 +01002750 if( opt.cid_enabled == 1 &&
2751 opt.cid_enabled_renego == 1 &&
2752 cid_len != cid_renego_len )
2753 {
2754 mbedtls_printf( "CID length must not change during renegotiation\n" );
2755 goto usage;
2756 }
2757
2758 if( opt.cid_enabled == 1 )
Hanno Beckere8eff9a2019-05-14 11:30:10 +01002759 ret = mbedtls_ssl_conf_cid( &conf, cid_len,
2760 MBEDTLS_SSL_UNEXPECTED_CID_IGNORE );
Hanno Becker96870292019-05-03 17:30:59 +01002761 else
Hanno Beckere8eff9a2019-05-14 11:30:10 +01002762 ret = mbedtls_ssl_conf_cid( &conf, cid_renego_len,
2763 MBEDTLS_SSL_UNEXPECTED_CID_IGNORE );
Hanno Becker96870292019-05-03 17:30:59 +01002764
Hanno Beckereec2be92019-05-03 13:06:44 +01002765 if( ret != 0 )
2766 {
Hanno Becker76581052019-05-23 16:58:22 +01002767 mbedtls_printf( " failed\n ! mbedtls_ssl_conf_cid_len returned -%#04x\n\n",
2768 -ret );
Hanno Beckereec2be92019-05-03 13:06:44 +01002769 goto exit;
2770 }
2771 }
Hanno Beckere0200da2019-06-13 09:23:43 +01002772#endif /* MBEDTLS_SSL_DTLS_CONNECTION_ID &&
2773 !MBEDTLS_SSL_CONF_CID_LEN &&
2774 !MBEDTLS_SSL_CONF_IGNORE_UNEXPECTED_CID */
Hanno Beckereec2be92019-05-03 13:06:44 +01002775
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002776#if defined(MBEDTLS_SSL_TRUNCATED_HMAC)
Manuel Pégourié-Gonnarde117a8f2015-01-09 12:39:35 +01002777 if( opt.trunc_hmac != DFL_TRUNC_HMAC )
Manuel Pégourié-Gonnard6729e792015-05-11 09:50:24 +02002778 mbedtls_ssl_conf_truncated_hmac( &conf, opt.trunc_hmac );
Manuel Pégourié-Gonnarde117a8f2015-01-09 12:39:35 +01002779#endif
2780
Hanno Beckerf765ce62019-06-21 13:17:14 +01002781#if defined(MBEDTLS_SSL_EXTENDED_MASTER_SECRET) && \
2782 !defined(MBEDTLS_SSL_CONF_EXTENDED_MASTER_SECRET) && \
2783 !defined(MBEDTLS_SSL_CONF_ENFORCE_EXTENDED_MASTER_SECRET)
Manuel Pégourié-Gonnard367381f2014-10-20 18:40:56 +02002784 if( opt.extended_ms != DFL_EXTENDED_MS )
Manuel Pégourié-Gonnard6729e792015-05-11 09:50:24 +02002785 mbedtls_ssl_conf_extended_master_secret( &conf, opt.extended_ms );
Jarno Lamsa41b35912019-06-10 15:51:11 +03002786 if( opt.enforce_extended_master_secret != DFL_EXTENDED_MS_ENFORCE )
2787 mbedtls_ssl_conf_extended_master_secret_enforce( &conf,
2788 opt.enforce_extended_master_secret );
Manuel Pégourié-Gonnard367381f2014-10-20 18:40:56 +02002789#endif
2790
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002791#if defined(MBEDTLS_SSL_ENCRYPT_THEN_MAC)
Manuel Pégourié-Gonnard699cafa2014-10-27 13:57:03 +01002792 if( opt.etm != DFL_ETM )
Manuel Pégourié-Gonnard6729e792015-05-11 09:50:24 +02002793 mbedtls_ssl_conf_encrypt_then_mac( &conf, opt.etm );
Manuel Pégourié-Gonnard699cafa2014-10-27 13:57:03 +01002794#endif
2795
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002796#if defined(MBEDTLS_SSL_ALPN)
Manuel Pégourié-Gonnard1bd22812014-04-05 14:34:07 +02002797 if( opt.alpn_string != NULL )
Manuel Pégourié-Gonnard6729e792015-05-11 09:50:24 +02002798 if( ( ret = mbedtls_ssl_conf_alpn_protocols( &conf, alpn_list ) ) != 0 )
Manuel Pégourié-Gonnardc5fd3912014-07-08 14:05:52 +02002799 {
Manuel Pégourié-Gonnard6729e792015-05-11 09:50:24 +02002800 mbedtls_printf( " failed\n ! mbedtls_ssl_conf_alpn_protocols returned %d\n\n", ret );
Manuel Pégourié-Gonnardc5fd3912014-07-08 14:05:52 +02002801 goto exit;
2802 }
Manuel Pégourié-Gonnard1bd22812014-04-05 14:34:07 +02002803#endif
2804
Hanno Becker7f1c8052019-08-26 13:30:13 +01002805#if defined(MBEDTLS_CTR_DRBG_C)
Hanno Beckerece325c2019-06-13 15:39:27 +01002806#if !defined(MBEDTLS_SSL_CONF_RNG)
Manuel Pégourié-Gonnard6729e792015-05-11 09:50:24 +02002807 mbedtls_ssl_conf_rng( &conf, mbedtls_ctr_drbg_random, &ctr_drbg );
Hanno Beckerece325c2019-06-13 15:39:27 +01002808#else
Hanno Becker572d4482019-07-23 13:47:53 +01002809 rng_ctx_global = &ctr_drbg;
Hanno Beckerece325c2019-06-13 15:39:27 +01002810#endif
Hanno Becker7f1c8052019-08-26 13:30:13 +01002811#else /* MBEDTLS_CTR_DRBG_C */
2812#if !defined(MBEDTLS_SSL_CONF_RNG)
2813 mbedtls_ssl_conf_rng( &conf, mbedtls_hmac_drbg_random, &hmac_drbg );
2814#else
2815 rng_ctx_global = &hmac_drbg;
2816#endif
2817#endif /* MBEDTLS_CTR_DRBG_C */
Hanno Beckerece325c2019-06-13 15:39:27 +01002818
Hanno Becker14a4a442019-07-02 17:00:34 +01002819#if defined(MBEDTLS_DEBUG_C)
Manuel Pégourié-Gonnard6729e792015-05-11 09:50:24 +02002820 mbedtls_ssl_conf_dbg( &conf, my_debug, stdout );
Hanno Becker14a4a442019-07-02 17:00:34 +01002821#endif
Paul Bakkerb60b95f2012-09-25 09:05:17 +00002822
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002823#if defined(MBEDTLS_SSL_CACHE_C)
Manuel Pégourié-Gonnard4c883452014-02-20 21:32:41 +01002824 if( opt.cache_max != -1 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002825 mbedtls_ssl_cache_set_max_entries( &cache, opt.cache_max );
Manuel Pégourié-Gonnard4c883452014-02-20 21:32:41 +01002826
Manuel Pégourié-Gonnardc55a5b72014-02-20 22:50:56 +01002827 if( opt.cache_timeout != -1 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002828 mbedtls_ssl_cache_set_timeout( &cache, opt.cache_timeout );
Manuel Pégourié-Gonnardc55a5b72014-02-20 22:50:56 +01002829
Jarno Lamsa29f2dd02019-06-20 15:31:52 +03002830#if !defined(MBEDTLS_SSL_NO_SESSION_CACHE)
Manuel Pégourié-Gonnard6729e792015-05-11 09:50:24 +02002831 mbedtls_ssl_conf_session_cache( &conf, &cache,
Manuel Pégourié-Gonnard5cb33082015-05-06 18:06:26 +01002832 mbedtls_ssl_cache_get,
2833 mbedtls_ssl_cache_set );
Jarno Lamsa29f2dd02019-06-20 15:31:52 +03002834#endif /* !MBEDTLS_SSL_NO_SESSION_CACHE */
Paul Bakker0a597072012-09-25 21:55:46 +00002835#endif
Paul Bakkerb60b95f2012-09-25 09:05:17 +00002836
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002837#if defined(MBEDTLS_SSL_SESSION_TICKETS)
Manuel Pégourié-Gonnardd59675d2015-05-19 15:28:00 +02002838 if( opt.tickets == MBEDTLS_SSL_SESSION_TICKETS_ENABLED )
Manuel Pégourié-Gonnardc5fd3912014-07-08 14:05:52 +02002839 {
Manuel Pégourié-Gonnardd59675d2015-05-19 15:28:00 +02002840 if( ( ret = mbedtls_ssl_ticket_setup( &ticket_ctx,
Hanno Becker7f1c8052019-08-26 13:30:13 +01002841#if defined(MBEDTLS_CTR_DRBG_C)
Manuel Pégourié-Gonnardd59675d2015-05-19 15:28:00 +02002842 mbedtls_ctr_drbg_random, &ctr_drbg,
Hanno Becker7f1c8052019-08-26 13:30:13 +01002843#else
2844 mbedtls_hmac_drbg_random, &hmac_drbg,
2845#endif
Manuel Pégourié-Gonnarda0adc1b2015-05-25 10:35:16 +02002846 MBEDTLS_CIPHER_AES_256_GCM,
Manuel Pégourié-Gonnardd59675d2015-05-19 15:28:00 +02002847 opt.ticket_timeout ) ) != 0 )
2848 {
2849 mbedtls_printf( " failed\n ! mbedtls_ssl_ticket_setup returned %d\n\n", ret );
2850 goto exit;
2851 }
Manuel Pégourié-Gonnarddbe1ee12014-02-21 09:18:13 +01002852
Manuel Pégourié-Gonnardd59675d2015-05-19 15:28:00 +02002853 mbedtls_ssl_conf_session_tickets_cb( &conf,
2854 mbedtls_ssl_ticket_write,
2855 mbedtls_ssl_ticket_parse,
2856 &ticket_ctx );
2857 }
Paul Bakkera503a632013-08-14 13:48:06 +02002858#endif
Manuel Pégourié-Gonnardaa0d4d12013-08-03 13:02:31 +02002859
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002860#if defined(MBEDTLS_SSL_PROTO_DTLS)
2861 if( opt.transport == MBEDTLS_SSL_TRANSPORT_DATAGRAM )
Manuel Pégourié-Gonnard98545f12014-07-22 22:10:43 +02002862 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002863#if defined(MBEDTLS_SSL_COOKIE_C)
Manuel Pégourié-Gonnard26820e32014-07-23 19:34:59 +02002864 if( opt.cookies > 0 )
Manuel Pégourié-Gonnardd485d192014-07-23 14:56:15 +02002865 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002866 if( ( ret = mbedtls_ssl_cookie_setup( &cookie_ctx,
Hanno Becker7f1c8052019-08-26 13:30:13 +01002867#if defined(MBEDTLS_CTR_DRBG_C)
2868 mbedtls_ctr_drbg_random, &ctr_drbg
2869#else
2870 mbedtls_hmac_drbg_random, &hmac_drbg
2871#endif /* MBEDTLS_CTR_DRBG_C */
Hanno Becker2ccdab82019-09-03 09:01:49 +01002872 ) ) != 0 )
Manuel Pégourié-Gonnard26820e32014-07-23 19:34:59 +02002873 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002874 mbedtls_printf( " failed\n ! mbedtls_ssl_cookie_setup returned %d\n\n", ret );
Manuel Pégourié-Gonnard26820e32014-07-23 19:34:59 +02002875 goto exit;
2876 }
Manuel Pégourié-Gonnardd485d192014-07-23 14:56:15 +02002877
Manuel Pégourié-Gonnard6729e792015-05-11 09:50:24 +02002878 mbedtls_ssl_conf_dtls_cookies( &conf, mbedtls_ssl_cookie_write, mbedtls_ssl_cookie_check,
Manuel Pégourié-Gonnard26820e32014-07-23 19:34:59 +02002879 &cookie_ctx );
2880 }
2881 else
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002882#endif /* MBEDTLS_SSL_COOKIE_C */
2883#if defined(MBEDTLS_SSL_DTLS_HELLO_VERIFY)
Manuel Pégourié-Gonnard26820e32014-07-23 19:34:59 +02002884 if( opt.cookies == 0 )
2885 {
Manuel Pégourié-Gonnard6729e792015-05-11 09:50:24 +02002886 mbedtls_ssl_conf_dtls_cookies( &conf, NULL, NULL, NULL );
Manuel Pégourié-Gonnard26820e32014-07-23 19:34:59 +02002887 }
2888 else
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002889#endif /* MBEDTLS_SSL_DTLS_HELLO_VERIFY */
Manuel Pégourié-Gonnard26820e32014-07-23 19:34:59 +02002890 {
2891 ; /* Nothing to do */
2892 }
Manuel Pégourié-Gonnard27393132014-09-24 14:41:11 +02002893
Hanno Becker7f376f42019-06-12 16:20:48 +01002894#if defined(MBEDTLS_SSL_DTLS_ANTI_REPLAY) && \
2895 !defined(MBEDTLS_SSL_CONF_ANTI_REPLAY)
Manuel Pégourié-Gonnard27393132014-09-24 14:41:11 +02002896 if( opt.anti_replay != DFL_ANTI_REPLAY )
Manuel Pégourié-Gonnard6729e792015-05-11 09:50:24 +02002897 mbedtls_ssl_conf_dtls_anti_replay( &conf, opt.anti_replay );
Manuel Pégourié-Gonnarde698f592014-10-14 19:36:36 +02002898#endif
2899
Hanno Beckerde671542019-06-12 16:30:46 +01002900#if defined(MBEDTLS_SSL_DTLS_BADMAC_LIMIT) && \
2901 !defined(MBEDTLS_SSL_CONF_BADMAC_LIMIT)
Manuel Pégourié-Gonnarde698f592014-10-14 19:36:36 +02002902 if( opt.badmac_limit != DFL_BADMAC_LIMIT )
Manuel Pégourié-Gonnard6729e792015-05-11 09:50:24 +02002903 mbedtls_ssl_conf_dtls_badmac_limit( &conf, opt.badmac_limit );
Manuel Pégourié-Gonnard27393132014-09-24 14:41:11 +02002904#endif
Manuel Pégourié-Gonnard98545f12014-07-22 22:10:43 +02002905 }
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002906#endif /* MBEDTLS_SSL_PROTO_DTLS */
Manuel Pégourié-Gonnard98545f12014-07-22 22:10:43 +02002907
Hanno Becker73f4cb12019-06-27 13:51:07 +01002908#if !defined(MBEDTLS_SSL_CONF_SINGLE_CIPHERSUITE)
Paul Bakker41c83d32013-03-20 14:39:14 +01002909 if( opt.force_ciphersuite[0] != DFL_FORCE_CIPHER )
Manuel Pégourié-Gonnard6729e792015-05-11 09:50:24 +02002910 mbedtls_ssl_conf_ciphersuites( &conf, opt.force_ciphersuite );
Hanno Becker73f4cb12019-06-27 13:51:07 +01002911#endif /* !MBEDTLS_SSL_CONF_SINGLE_CIPHERSUITE */
Manuel Pégourié-Gonnardd42b7c82015-03-20 19:44:04 +00002912
Manuel Pégourié-Gonnard66dc5552015-05-14 12:28:21 +02002913#if defined(MBEDTLS_ARC4_C)
Manuel Pégourié-Gonnardd42b7c82015-03-20 19:44:04 +00002914 if( opt.arc4 != DFL_ARC4 )
Manuel Pégourié-Gonnard6729e792015-05-11 09:50:24 +02002915 mbedtls_ssl_conf_arc4_support( &conf, opt.arc4 );
Manuel Pégourié-Gonnard66dc5552015-05-14 12:28:21 +02002916#endif
Paul Bakkerb60b95f2012-09-25 09:05:17 +00002917
Hanno Becker73f4cb12019-06-27 13:51:07 +01002918#if !defined(MBEDTLS_SSL_CONF_SINGLE_CIPHERSUITE)
Manuel Pégourié-Gonnard6dc07812014-06-11 13:50:34 +02002919 if( opt.version_suites != NULL )
2920 {
Manuel Pégourié-Gonnard6729e792015-05-11 09:50:24 +02002921 mbedtls_ssl_conf_ciphersuites_for_version( &conf, version_suites[0],
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002922 MBEDTLS_SSL_MAJOR_VERSION_3,
2923 MBEDTLS_SSL_MINOR_VERSION_0 );
Manuel Pégourié-Gonnard6729e792015-05-11 09:50:24 +02002924 mbedtls_ssl_conf_ciphersuites_for_version( &conf, version_suites[1],
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002925 MBEDTLS_SSL_MAJOR_VERSION_3,
2926 MBEDTLS_SSL_MINOR_VERSION_1 );
Manuel Pégourié-Gonnard6729e792015-05-11 09:50:24 +02002927 mbedtls_ssl_conf_ciphersuites_for_version( &conf, version_suites[2],
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002928 MBEDTLS_SSL_MAJOR_VERSION_3,
2929 MBEDTLS_SSL_MINOR_VERSION_2 );
Manuel Pégourié-Gonnard6729e792015-05-11 09:50:24 +02002930 mbedtls_ssl_conf_ciphersuites_for_version( &conf, version_suites[3],
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002931 MBEDTLS_SSL_MAJOR_VERSION_3,
2932 MBEDTLS_SSL_MINOR_VERSION_3 );
Manuel Pégourié-Gonnard6dc07812014-06-11 13:50:34 +02002933 }
Hanno Becker73f4cb12019-06-27 13:51:07 +01002934#endif /* !MBEDTLS_SSL_CONF_SINGLE_CIPHERSUITE */
Manuel Pégourié-Gonnard6dc07812014-06-11 13:50:34 +02002935
Hanno Beckerb0b2b672019-06-12 16:58:10 +01002936#if !defined(MBEDTLS_SSL_CONF_ALLOW_LEGACY_RENEGOTIATION)
Manuel Pégourié-Gonnard85d915b2014-11-03 20:10:36 +01002937 if( opt.allow_legacy != DFL_ALLOW_LEGACY )
Manuel Pégourié-Gonnard6729e792015-05-11 09:50:24 +02002938 mbedtls_ssl_conf_legacy_renegotiation( &conf, opt.allow_legacy );
Hanno Beckerb0b2b672019-06-12 16:58:10 +01002939#endif
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002940#if defined(MBEDTLS_SSL_RENEGOTIATION)
Manuel Pégourié-Gonnard6729e792015-05-11 09:50:24 +02002941 mbedtls_ssl_conf_renegotiation( &conf, opt.renegotiation );
Manuel Pégourié-Gonnard590f4162014-11-05 14:23:03 +01002942
Manuel Pégourié-Gonnardfae355e2014-07-04 14:32:27 +02002943 if( opt.renego_delay != DFL_RENEGO_DELAY )
Manuel Pégourié-Gonnard6729e792015-05-11 09:50:24 +02002944 mbedtls_ssl_conf_renegotiation_enforced( &conf, opt.renego_delay );
Paul Bakkerb60b95f2012-09-25 09:05:17 +00002945
Manuel Pégourié-Gonnard590f4162014-11-05 14:23:03 +01002946 if( opt.renego_period != DFL_RENEGO_PERIOD )
2947 {
Andres AG692ad842017-01-19 16:30:57 +00002948 PUT_UINT64_BE( renego_period, opt.renego_period, 0 );
Manuel Pégourié-Gonnard6729e792015-05-11 09:50:24 +02002949 mbedtls_ssl_conf_renegotiation_period( &conf, renego_period );
Manuel Pégourié-Gonnard590f4162014-11-05 14:23:03 +01002950 }
Manuel Pégourié-Gonnard615e6772014-11-03 08:23:14 +01002951#endif
Paul Bakkerb60b95f2012-09-25 09:05:17 +00002952
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002953#if defined(MBEDTLS_X509_CRT_PARSE_C)
Manuel Pégourié-Gonnard3e1b1782014-02-27 13:35:00 +01002954 if( strcmp( opt.ca_path, "none" ) != 0 &&
2955 strcmp( opt.ca_file, "none" ) != 0 )
2956 {
Manuel Pégourié-Gonnard6729e792015-05-11 09:50:24 +02002957 mbedtls_ssl_conf_ca_chain( &conf, &cacert, NULL );
Manuel Pégourié-Gonnard3e1b1782014-02-27 13:35:00 +01002958 }
Manuel Pégourié-Gonnarda0fdf8b2013-09-25 14:05:49 +02002959 if( key_cert_init )
Gilles Peskine9eb5e9a2018-01-05 21:15:57 +01002960 {
2961 mbedtls_pk_context *pk = &pkey;
Gilles Peskineb74a1c72018-04-24 13:09:22 +02002962#if defined(MBEDTLS_SSL_ASYNC_PRIVATE)
Gilles Peskine9eb5e9a2018-01-05 21:15:57 +01002963 if( opt.async_private_delay1 >= 0 )
2964 {
Gilles Peskine44817442018-06-13 18:09:28 +02002965 ret = ssl_async_set_key( &ssl_async_keys, &srvcert, pk, 0,
Gilles Peskined6fbfde2018-04-30 10:23:56 +02002966 opt.async_private_delay1 );
2967 if( ret < 0 )
2968 {
2969 mbedtls_printf( " Test error: ssl_async_set_key failed (%d)\n",
2970 ret );
2971 goto exit;
2972 }
Gilles Peskine9eb5e9a2018-01-05 21:15:57 +01002973 pk = NULL;
2974 }
Gilles Peskineb74a1c72018-04-24 13:09:22 +02002975#endif /* MBEDTLS_SSL_ASYNC_PRIVATE */
Gilles Peskine9eb5e9a2018-01-05 21:15:57 +01002976 if( ( ret = mbedtls_ssl_conf_own_cert( &conf, &srvcert, pk ) ) != 0 )
Manuel Pégourié-Gonnardc5fd3912014-07-08 14:05:52 +02002977 {
Manuel Pégourié-Gonnard6729e792015-05-11 09:50:24 +02002978 mbedtls_printf( " failed\n ! mbedtls_ssl_conf_own_cert returned %d\n\n", ret );
Manuel Pégourié-Gonnardc5fd3912014-07-08 14:05:52 +02002979 goto exit;
2980 }
Gilles Peskine9eb5e9a2018-01-05 21:15:57 +01002981 }
Manuel Pégourié-Gonnarda0fdf8b2013-09-25 14:05:49 +02002982 if( key_cert_init2 )
Gilles Peskine9eb5e9a2018-01-05 21:15:57 +01002983 {
2984 mbedtls_pk_context *pk = &pkey2;
Gilles Peskineb74a1c72018-04-24 13:09:22 +02002985#if defined(MBEDTLS_SSL_ASYNC_PRIVATE)
Gilles Peskine9eb5e9a2018-01-05 21:15:57 +01002986 if( opt.async_private_delay2 >= 0 )
2987 {
Gilles Peskine44817442018-06-13 18:09:28 +02002988 ret = ssl_async_set_key( &ssl_async_keys, &srvcert2, pk, 0,
Gilles Peskined6fbfde2018-04-30 10:23:56 +02002989 opt.async_private_delay2 );
2990 if( ret < 0 )
2991 {
2992 mbedtls_printf( " Test error: ssl_async_set_key failed (%d)\n",
2993 ret );
2994 goto exit;
2995 }
Gilles Peskine9eb5e9a2018-01-05 21:15:57 +01002996 pk = NULL;
2997 }
Gilles Peskineb74a1c72018-04-24 13:09:22 +02002998#endif /* MBEDTLS_SSL_ASYNC_PRIVATE */
Gilles Peskine9eb5e9a2018-01-05 21:15:57 +01002999 if( ( ret = mbedtls_ssl_conf_own_cert( &conf, &srvcert2, pk ) ) != 0 )
Manuel Pégourié-Gonnardc5fd3912014-07-08 14:05:52 +02003000 {
Manuel Pégourié-Gonnard6729e792015-05-11 09:50:24 +02003001 mbedtls_printf( " failed\n ! mbedtls_ssl_conf_own_cert returned %d\n\n", ret );
Manuel Pégourié-Gonnardc5fd3912014-07-08 14:05:52 +02003002 goto exit;
3003 }
Gilles Peskine9eb5e9a2018-01-05 21:15:57 +01003004 }
3005
Gilles Peskineb74a1c72018-04-24 13:09:22 +02003006#if defined(MBEDTLS_SSL_ASYNC_PRIVATE)
Gilles Peskinefcca9d82018-01-12 13:47:48 +01003007 if( opt.async_operations[0] != '-' )
Gilles Peskine9eb5e9a2018-01-05 21:15:57 +01003008 {
Gilles Peskinefcca9d82018-01-12 13:47:48 +01003009 mbedtls_ssl_async_sign_t *sign = NULL;
3010 mbedtls_ssl_async_decrypt_t *decrypt = NULL;
Gilles Peskine12ab5d42018-04-24 12:32:04 +02003011 const char *r;
3012 for( r = opt.async_operations; *r; r++ )
Gilles Peskinefcca9d82018-01-12 13:47:48 +01003013 {
Gilles Peskine12ab5d42018-04-24 12:32:04 +02003014 switch( *r )
Gilles Peskinefcca9d82018-01-12 13:47:48 +01003015 {
3016 case 'd':
3017 decrypt = ssl_async_decrypt;
3018 break;
3019 case 's':
3020 sign = ssl_async_sign;
3021 break;
3022 }
3023 }
Gilles Peskine60ee4ca2018-01-08 11:28:05 +01003024 ssl_async_keys.inject_error = ( opt.async_private_error < 0 ?
3025 - opt.async_private_error :
3026 opt.async_private_error );
Gilles Peskine9eb5e9a2018-01-05 21:15:57 +01003027 ssl_async_keys.f_rng = mbedtls_ctr_drbg_random;
3028 ssl_async_keys.p_rng = &ctr_drbg;
3029 mbedtls_ssl_conf_async_private_cb( &conf,
Gilles Peskinefcca9d82018-01-12 13:47:48 +01003030 sign,
3031 decrypt,
Gilles Peskine9eb5e9a2018-01-05 21:15:57 +01003032 ssl_async_resume,
3033 ssl_async_cancel,
3034 &ssl_async_keys );
3035 }
Gilles Peskineb74a1c72018-04-24 13:09:22 +02003036#endif /* MBEDTLS_SSL_ASYNC_PRIVATE */
Gilles Peskine9eb5e9a2018-01-05 21:15:57 +01003037#endif /* MBEDTLS_X509_CRT_PARSE_C */
Paul Bakkered27a042013-04-18 22:46:23 +02003038
Manuel Pégourié-Gonnard6c7af4c2015-04-03 16:41:52 +02003039#if defined(SNI_OPTION)
Manuel Pégourié-Gonnard5d917ff2014-02-21 16:52:06 +01003040 if( opt.sni != NULL )
Gilles Peskine166ce742018-04-30 10:30:49 +02003041 {
Manuel Pégourié-Gonnard6729e792015-05-11 09:50:24 +02003042 mbedtls_ssl_conf_sni( &conf, sni_callback, sni_info );
Gilles Peskine166ce742018-04-30 10:30:49 +02003043#if defined(MBEDTLS_SSL_ASYNC_PRIVATE)
3044 if( opt.async_private_delay2 >= 0 )
3045 {
Gilles Peskinee2479892018-06-13 18:06:51 +02003046 sni_entry *cur;
3047 for( cur = sni_info; cur != NULL; cur = cur->next )
Gilles Peskine166ce742018-04-30 10:30:49 +02003048 {
Gilles Peskinee2479892018-06-13 18:06:51 +02003049 ret = ssl_async_set_key( &ssl_async_keys,
Gilles Peskine44817442018-06-13 18:09:28 +02003050 cur->cert, cur->key, 1,
Gilles Peskinee2479892018-06-13 18:06:51 +02003051 opt.async_private_delay2 );
3052 if( ret < 0 )
3053 {
3054 mbedtls_printf( " Test error: ssl_async_set_key failed (%d)\n",
3055 ret );
3056 goto exit;
3057 }
3058 cur->key = NULL;
Gilles Peskine166ce742018-04-30 10:30:49 +02003059 }
Gilles Peskine166ce742018-04-30 10:30:49 +02003060 }
3061#endif /* MBEDTLS_SSL_ASYNC_PRIVATE */
3062 }
Manuel Pégourié-Gonnard5d917ff2014-02-21 16:52:06 +01003063#endif
3064
Hanno Beckere6706e62017-05-15 16:05:15 +01003065#if defined(MBEDTLS_ECP_C)
Hanno Beckerc1096e72019-06-19 12:30:41 +01003066#if !defined(MBEDTLS_SSL_CONF_SINGLE_EC)
Hanno Beckere6706e62017-05-15 16:05:15 +01003067 if( opt.curves != NULL &&
3068 strcmp( opt.curves, "default" ) != 0 )
3069 {
3070 mbedtls_ssl_conf_curves( &conf, curve_list );
3071 }
Hanno Beckerc1096e72019-06-19 12:30:41 +01003072#endif /* !MBEDTLS_SSL_CONF_SINGLE_EC */
Hanno Becker88889c62019-08-23 12:01:45 +01003073#endif /* MBEDTLS_ECP_C*/
Hanno Beckere6706e62017-05-15 16:05:15 +01003074
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003075#if defined(MBEDTLS_KEY_EXCHANGE__SOME__PSK_ENABLED)
Manuel Pégourié-Gonnarddc019b92014-06-10 15:24:51 +02003076 if( strlen( opt.psk ) != 0 && strlen( opt.psk_identity ) != 0 )
3077 {
Manuel Pégourié-Gonnard6729e792015-05-11 09:50:24 +02003078 ret = mbedtls_ssl_conf_psk( &conf, psk, psk_len,
Manuel Pégourié-Gonnarddc019b92014-06-10 15:24:51 +02003079 (const unsigned char *) opt.psk_identity,
3080 strlen( opt.psk_identity ) );
3081 if( ret != 0 )
3082 {
Manuel Pégourié-Gonnard6729e792015-05-11 09:50:24 +02003083 mbedtls_printf( " failed\n mbedtls_ssl_conf_psk returned -0x%04X\n\n", - ret );
Manuel Pégourié-Gonnarddc019b92014-06-10 15:24:51 +02003084 goto exit;
3085 }
3086 }
3087
Manuel Pégourié-Gonnard80c85532014-06-10 14:01:52 +02003088 if( opt.psk_list != NULL )
Manuel Pégourié-Gonnard6729e792015-05-11 09:50:24 +02003089 mbedtls_ssl_conf_psk_cb( &conf, psk_callback, psk_info );
Paul Bakkered27a042013-04-18 22:46:23 +02003090#endif
Paul Bakkerb60b95f2012-09-25 09:05:17 +00003091
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003092#if defined(MBEDTLS_DHM_C)
Paul Bakker5d19f862012-09-28 07:33:00 +00003093 /*
3094 * Use different group than default DHM group
3095 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003096#if defined(MBEDTLS_FS_IO)
Manuel Pégourié-Gonnard736699c2014-06-09 11:29:50 +02003097 if( opt.dhm_file != NULL )
Manuel Pégourié-Gonnard6729e792015-05-11 09:50:24 +02003098 ret = mbedtls_ssl_conf_dh_param_ctx( &conf, &dhm );
Manuel Pégourié-Gonnard736699c2014-06-09 11:29:50 +02003099#endif
Manuel Pégourié-Gonnard736699c2014-06-09 11:29:50 +02003100 if( ret != 0 )
3101 {
Manuel Pégourié-Gonnard6729e792015-05-11 09:50:24 +02003102 mbedtls_printf( " failed\n mbedtls_ssl_conf_dh_param returned -0x%04X\n\n", - ret );
Manuel Pégourié-Gonnard736699c2014-06-09 11:29:50 +02003103 goto exit;
3104 }
Paul Bakkerb60b95f2012-09-25 09:05:17 +00003105#endif
3106
Hanno Becker72e5ffc2019-07-05 11:35:08 +01003107#if !defined(MBEDTLS_SSL_CONF_MIN_MINOR_VER) || \
3108 !defined(MBEDTLS_SSL_CONF_MIN_MAJOR_VER) || \
3109 !defined(MBEDTLS_SSL_CONF_MAX_MINOR_VER) || \
3110 !defined(MBEDTLS_SSL_CONF_MAX_MAJOR_VER)
Manuel Pégourié-Gonnard8c8be1e2015-03-31 14:21:11 +02003111 if( opt.min_version != DFL_MIN_VERSION )
Manuel Pégourié-Gonnard01e5e8c2015-05-11 10:11:56 +02003112 mbedtls_ssl_conf_min_version( &conf, MBEDTLS_SSL_MAJOR_VERSION_3, opt.min_version );
Paul Bakker1d29fb52012-09-28 13:28:45 +00003113
Manuel Pégourié-Gonnard8c8be1e2015-03-31 14:21:11 +02003114 if( opt.max_version != DFL_MIN_VERSION )
Manuel Pégourié-Gonnard01e5e8c2015-05-11 10:11:56 +02003115 mbedtls_ssl_conf_max_version( &conf, MBEDTLS_SSL_MAJOR_VERSION_3, opt.max_version );
Hanno Becker72e5ffc2019-07-05 11:35:08 +01003116#endif
Paul Bakkerc1516be2013-06-29 16:01:32 +02003117
Manuel Pégourié-Gonnard06939ce2015-05-11 11:25:46 +02003118 if( ( ret = mbedtls_ssl_setup( &ssl, &conf ) ) != 0 )
3119 {
3120 mbedtls_printf( " failed\n ! mbedtls_ssl_setup returned -0x%x\n\n", -ret );
3121 goto exit;
3122 }
3123
Hanno Beckera58a8962019-06-13 16:11:15 +01003124#if !defined(MBEDTLS_SSL_CONF_RECV) && \
3125 !defined(MBEDTLS_SSL_CONF_SEND) && \
3126 !defined(MBEDTLS_SSL_CONF_RECV_TIMEOUT)
Hanno Beckerfe24b3b2019-07-03 17:05:43 +01003127 io_ctx.ssl = &ssl;
3128 io_ctx.net = &client_fd;
3129 mbedtls_ssl_set_bio( &ssl, &io_ctx, send_cb, recv_cb,
3130 opt.nbio == 0 ? recv_timeout_cb : NULL );
Hanno Beckera58a8962019-06-13 16:11:15 +01003131#else
3132 mbedtls_ssl_set_bio_ctx( &ssl, &client_fd );
3133#endif
Manuel Pégourié-Gonnard06939ce2015-05-11 11:25:46 +02003134
Hanno Beckera5a2b082019-05-15 14:03:01 +01003135#if defined(MBEDTLS_SSL_DTLS_CONNECTION_ID)
Hanno Becker1029ace2019-04-09 17:28:10 +01003136 if( opt.transport == MBEDTLS_SSL_TRANSPORT_DATAGRAM )
3137 {
3138 if( ( ret = mbedtls_ssl_set_cid( &ssl, opt.cid_enabled,
3139 cid, cid_len ) ) != 0 )
3140 {
3141 mbedtls_printf( " failed\n ! mbedtls_ssl_set_cid returned %d\n\n",
3142 ret );
3143 goto exit;
3144 }
3145 }
Hanno Beckera5a2b082019-05-15 14:03:01 +01003146#endif /* MBEDTLS_SSL_DTLS_CONNECTION_ID */
Hanno Becker1029ace2019-04-09 17:28:10 +01003147
Manuel Pégourié-Gonnard6e7aaca2018-08-20 10:37:23 +02003148#if defined(MBEDTLS_SSL_PROTO_DTLS)
3149 if( opt.dtls_mtu != DFL_DTLS_MTU )
3150 mbedtls_ssl_set_mtu( &ssl, opt.dtls_mtu );
3151#endif
3152
Manuel Pégourié-Gonnardd2377e72015-05-13 13:58:56 +02003153#if defined(MBEDTLS_TIMING_C)
Hanno Becker0ae6b242019-06-13 16:45:36 +01003154#if !defined(MBEDTLS_SSL_CONF_SET_TIMER) && \
3155 !defined(MBEDTLS_SSL_CONF_GET_TIMER)
Manuel Pégourié-Gonnarde3c41ad2015-05-13 10:04:32 +02003156 mbedtls_ssl_set_timer_cb( &ssl, &timer, mbedtls_timing_set_delay,
3157 mbedtls_timing_get_delay );
Hanno Becker0ae6b242019-06-13 16:45:36 +01003158#else
3159 mbedtls_ssl_set_timer_cb_ctx( &ssl, &timer );
3160#endif
Manuel Pégourié-Gonnardd2377e72015-05-13 13:58:56 +02003161#endif
Manuel Pégourié-Gonnarde3c41ad2015-05-13 10:04:32 +02003162
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003163 mbedtls_printf( " ok\n" );
Paul Bakkerb60b95f2012-09-25 09:05:17 +00003164
3165reset:
Manuel Pégourié-Gonnardb6440a42014-09-20 12:03:00 +02003166#if !defined(_WIN32)
3167 if( received_sigterm )
3168 {
Manuel Pégourié-Gonnard4fa619f2018-01-22 10:55:10 +01003169 mbedtls_printf( " interrupted by SIGTERM (not in net_accept())\n" );
3170 if( ret == MBEDTLS_ERR_NET_INVALID_CONTEXT )
3171 ret = 0;
3172
Manuel Pégourié-Gonnardb6440a42014-09-20 12:03:00 +02003173 goto exit;
3174 }
3175#endif
3176
Manuel Pégourié-Gonnard3f09b6d2015-09-08 11:58:14 +02003177 if( ret == MBEDTLS_ERR_SSL_CLIENT_RECONNECT )
3178 {
3179 mbedtls_printf( " ! Client initiated reconnection from same port\n" );
3180 goto handshake;
3181 }
3182
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003183#ifdef MBEDTLS_ERROR_C
Paul Bakkerb60b95f2012-09-25 09:05:17 +00003184 if( ret != 0 )
3185 {
3186 char error_buf[100];
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003187 mbedtls_strerror( ret, error_buf, 100 );
3188 mbedtls_printf("Last error was: %d - %s\n\n", ret, error_buf );
Paul Bakkerb60b95f2012-09-25 09:05:17 +00003189 }
3190#endif
3191
Manuel Pégourié-Gonnard3d7d00a2015-06-30 15:55:03 +02003192 mbedtls_net_free( &client_fd );
Manuel Pégourié-Gonnard8a06d9c2014-03-23 18:23:41 +01003193
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003194 mbedtls_ssl_session_reset( &ssl );
Paul Bakkerb60b95f2012-09-25 09:05:17 +00003195
3196 /*
3197 * 3. Wait until a client connects
3198 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003199 mbedtls_printf( " . Waiting for a remote connection ..." );
Paul Bakkerb60b95f2012-09-25 09:05:17 +00003200 fflush( stdout );
3201
Manuel Pégourié-Gonnard5db64322015-06-30 15:40:39 +02003202 if( ( ret = mbedtls_net_accept( &listen_fd, &client_fd,
Manuel Pégourié-Gonnard0b104b02015-05-14 21:52:40 +02003203 client_ip, sizeof( client_ip ), &cliip_len ) ) != 0 )
Paul Bakkerb60b95f2012-09-25 09:05:17 +00003204 {
Paul Bakkerc1283d32014-08-18 11:05:51 +02003205#if !defined(_WIN32)
Manuel Pégourié-Gonnarddb493302014-08-14 15:36:12 +02003206 if( received_sigterm )
3207 {
Manuel Pégourié-Gonnard4fa619f2018-01-22 10:55:10 +01003208 mbedtls_printf( " interrupted by SIGTERM (in net_accept())\n" );
3209 if( ret == MBEDTLS_ERR_NET_ACCEPT_FAILED )
3210 ret = 0;
3211
Manuel Pégourié-Gonnarddb493302014-08-14 15:36:12 +02003212 goto exit;
3213 }
Paul Bakkerc1283d32014-08-18 11:05:51 +02003214#endif
Manuel Pégourié-Gonnarddb493302014-08-14 15:36:12 +02003215
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003216 mbedtls_printf( " failed\n ! mbedtls_net_accept returned -0x%x\n\n", -ret );
Paul Bakkerb60b95f2012-09-25 09:05:17 +00003217 goto exit;
3218 }
3219
Manuel Pégourié-Gonnard55753162014-02-26 13:47:08 +01003220 if( opt.nbio > 0 )
Manuel Pégourié-Gonnard5db64322015-06-30 15:40:39 +02003221 ret = mbedtls_net_set_nonblock( &client_fd );
Manuel Pégourié-Gonnard55753162014-02-26 13:47:08 +01003222 else
Manuel Pégourié-Gonnard5db64322015-06-30 15:40:39 +02003223 ret = mbedtls_net_set_block( &client_fd );
Manuel Pégourié-Gonnard55753162014-02-26 13:47:08 +01003224 if( ret != 0 )
3225 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003226 mbedtls_printf( " failed\n ! net_set_(non)block() returned -0x%x\n\n", -ret );
Manuel Pégourié-Gonnard55753162014-02-26 13:47:08 +01003227 goto exit;
3228 }
3229
Hanno Becker1f835fa2019-06-13 10:14:59 +01003230#if !defined(MBEDTLS_SSL_CONF_READ_TIMEOUT)
Manuel Pégourié-Gonnard6729e792015-05-11 09:50:24 +02003231 mbedtls_ssl_conf_read_timeout( &conf, opt.read_timeout );
Hanno Becker1f835fa2019-06-13 10:14:59 +01003232#endif /* MBEDTLS_SSL_CONF_READ_TIMEOUT */
Paul Bakkerb60b95f2012-09-25 09:05:17 +00003233
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003234#if defined(MBEDTLS_SSL_DTLS_HELLO_VERIFY)
3235 if( opt.transport == MBEDTLS_SSL_TRANSPORT_DATAGRAM )
Manuel Pégourié-Gonnard336b8242014-07-22 17:57:43 +02003236 {
Manuel Pégourié-Gonnard0b104b02015-05-14 21:52:40 +02003237 if( ( ret = mbedtls_ssl_set_client_transport_id( &ssl,
3238 client_ip, cliip_len ) ) != 0 )
Manuel Pégourié-Gonnard336b8242014-07-22 17:57:43 +02003239 {
Hanno Beckerdf4180a2017-10-27 13:43:58 +01003240 mbedtls_printf( " failed\n ! mbedtls_ssl_set_client_transport_id() returned -0x%x\n\n",
3241 -ret );
Manuel Pégourié-Gonnard336b8242014-07-22 17:57:43 +02003242 goto exit;
3243 }
3244 }
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003245#endif /* MBEDTLS_SSL_DTLS_HELLO_VERIFY */
Manuel Pégourié-Gonnard336b8242014-07-22 17:57:43 +02003246
Manuel Pégourié-Gonnard70905a72015-09-16 11:08:34 +02003247#if defined(MBEDTLS_KEY_EXCHANGE_ECJPAKE_ENABLED)
3248 if( opt.ecjpake_pw != DFL_ECJPAKE_PW )
3249 {
3250 if( ( ret = mbedtls_ssl_set_hs_ecjpake_password( &ssl,
3251 (const unsigned char *) opt.ecjpake_pw,
3252 strlen( opt.ecjpake_pw ) ) ) != 0 )
3253 {
3254 mbedtls_printf( " failed\n ! mbedtls_ssl_set_hs_ecjpake_password returned %d\n\n", ret );
3255 goto exit;
3256 }
3257 }
3258#endif
3259
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003260 mbedtls_printf( " ok\n" );
Paul Bakkerb60b95f2012-09-25 09:05:17 +00003261
3262 /*
3263 * 4. Handshake
3264 */
Manuel Pégourié-Gonnard3f09b6d2015-09-08 11:58:14 +02003265handshake:
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003266 mbedtls_printf( " . Performing the SSL/TLS handshake..." );
Paul Bakkerb60b95f2012-09-25 09:05:17 +00003267 fflush( stdout );
3268
Hanno Becker16970d22017-10-10 15:56:37 +01003269 while( ( ret = mbedtls_ssl_handshake( &ssl ) ) != 0 )
Gilles Peskine9eb5e9a2018-01-05 21:15:57 +01003270 {
Gilles Peskineb74a1c72018-04-24 13:09:22 +02003271#if defined(MBEDTLS_SSL_ASYNC_PRIVATE)
Gilles Peskine9eb5e9a2018-01-05 21:15:57 +01003272 if( ret == MBEDTLS_ERR_SSL_ASYNC_IN_PROGRESS &&
Gilles Peskine60ee4ca2018-01-08 11:28:05 +01003273 ssl_async_keys.inject_error == SSL_ASYNC_INJECT_ERROR_CANCEL )
Gilles Peskine9eb5e9a2018-01-05 21:15:57 +01003274 {
3275 mbedtls_printf( " cancelling on injected error\n" );
Gilles Peskine60ee4ca2018-01-08 11:28:05 +01003276 break;
Gilles Peskine9eb5e9a2018-01-05 21:15:57 +01003277 }
Gilles Peskineb74a1c72018-04-24 13:09:22 +02003278#endif /* MBEDTLS_SSL_ASYNC_PRIVATE */
Gilles Peskineb44692f2018-04-24 12:18:19 +02003279
Gilles Peskinea36ac4f2018-04-26 08:05:02 +02003280 if( ! mbedtls_status_is_ssl_in_progress( ret ) )
Hanno Becker16970d22017-10-10 15:56:37 +01003281 break;
3282
3283 /* For event-driven IO, wait for socket to become available */
3284 if( opt.event == 1 /* level triggered IO */ )
3285 {
3286#if defined(MBEDTLS_TIMING_C)
Hanno Beckeradfa64f2018-03-15 11:35:07 +00003287 ret = idle( &client_fd, &timer, ret );
Hanno Becker16970d22017-10-10 15:56:37 +01003288#else
Hanno Beckeradfa64f2018-03-15 11:35:07 +00003289 ret = idle( &client_fd, ret );
Hanno Becker16970d22017-10-10 15:56:37 +01003290#endif
Hanno Beckeradfa64f2018-03-15 11:35:07 +00003291 if( ret != 0 )
3292 goto reset;
Hanno Becker16970d22017-10-10 15:56:37 +01003293 }
Gilles Peskine9eb5e9a2018-01-05 21:15:57 +01003294 }
Paul Bakkerb60b95f2012-09-25 09:05:17 +00003295
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003296 if( ret == MBEDTLS_ERR_SSL_HELLO_VERIFY_REQUIRED )
Manuel Pégourié-Gonnardcaecdae2014-10-13 19:04:37 +02003297 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003298 mbedtls_printf( " hello verification requested\n" );
Manuel Pégourié-Gonnardcaecdae2014-10-13 19:04:37 +02003299 ret = 0;
3300 goto reset;
3301 }
3302 else if( ret != 0 )
3303 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003304 mbedtls_printf( " failed\n ! mbedtls_ssl_handshake returned -0x%x\n\n", -ret );
Manuel Pégourié-Gonnard6ea831d2015-06-22 16:50:52 +02003305
Hanno Becker02a21932019-06-10 15:08:43 +01003306#if defined(MBEDTLS_X509_CRT_PARSE_C) && !defined(MBEDTLS_X509_REMOVE_INFO)
Manuel Pégourié-Gonnard6ea831d2015-06-22 16:50:52 +02003307 if( ret == MBEDTLS_ERR_X509_CERT_VERIFY_FAILED )
3308 {
3309 char vrfy_buf[512];
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +02003310 flags = mbedtls_ssl_get_verify_result( &ssl );
Manuel Pégourié-Gonnard6ea831d2015-06-22 16:50:52 +02003311
3312 mbedtls_x509_crt_verify_info( vrfy_buf, sizeof( vrfy_buf ), " ! ", flags );
3313
3314 mbedtls_printf( "%s\n", vrfy_buf );
3315 }
3316#endif
3317
Gilles Peskineb74a1c72018-04-24 13:09:22 +02003318#if defined(MBEDTLS_SSL_ASYNC_PRIVATE)
Gilles Peskine60ee4ca2018-01-08 11:28:05 +01003319 if( opt.async_private_error < 0 )
3320 /* Injected error only the first time round, to test reset */
3321 ssl_async_keys.inject_error = SSL_ASYNC_INJECT_ERROR_NONE;
3322#endif
Manuel Pégourié-Gonnardcaecdae2014-10-13 19:04:37 +02003323 goto reset;
3324 }
3325 else /* ret == 0 */
3326 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003327 mbedtls_printf( " ok\n [ Protocol is %s ]\n [ Ciphersuite is %s ]\n",
3328 mbedtls_ssl_get_version( &ssl ), mbedtls_ssl_get_ciphersuite( &ssl ) );
Manuel Pégourié-Gonnardcaecdae2014-10-13 19:04:37 +02003329 }
Paul Bakkerb60b95f2012-09-25 09:05:17 +00003330
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003331 if( ( ret = mbedtls_ssl_get_record_expansion( &ssl ) ) >= 0 )
3332 mbedtls_printf( " [ Record expansion is %d ]\n", ret );
Manuel Pégourié-Gonnard9b35f182014-10-14 17:47:31 +02003333 else
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003334 mbedtls_printf( " [ Record expansion is unknown (compression) ]\n" );
Manuel Pégourié-Gonnard9b35f182014-10-14 17:47:31 +02003335
Manuel Pégourié-Gonnarda2cda6b2015-08-31 18:30:52 +02003336#if defined(MBEDTLS_SSL_MAX_FRAGMENT_LENGTH)
3337 mbedtls_printf( " [ Maximum fragment length is %u ]\n",
3338 (unsigned int) mbedtls_ssl_get_max_frag_len( &ssl ) );
3339#endif
3340
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003341#if defined(MBEDTLS_SSL_ALPN)
Manuel Pégourié-Gonnard1bd22812014-04-05 14:34:07 +02003342 if( opt.alpn_string != NULL )
3343 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003344 const char *alp = mbedtls_ssl_get_alpn_protocol( &ssl );
3345 mbedtls_printf( " [ Application Layer Protocol is %s ]\n",
Manuel Pégourié-Gonnard1bd22812014-04-05 14:34:07 +02003346 alp ? alp : "(none)" );
3347 }
3348#endif
3349
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003350#if defined(MBEDTLS_X509_CRT_PARSE_C)
Paul Bakkerb60b95f2012-09-25 09:05:17 +00003351 /*
Ron Eldor2a47be52017-06-20 15:23:23 +03003352 * 5. Verify the client certificate
Paul Bakkerb60b95f2012-09-25 09:05:17 +00003353 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003354 mbedtls_printf( " . Verifying peer X.509 certificate..." );
Paul Bakkerb60b95f2012-09-25 09:05:17 +00003355
Manuel Pégourié-Gonnarde6ef16f2015-05-11 19:54:43 +02003356 if( ( flags = mbedtls_ssl_get_verify_result( &ssl ) ) != 0 )
Paul Bakkerb60b95f2012-09-25 09:05:17 +00003357 {
Hanno Becker02a21932019-06-10 15:08:43 +01003358#if !defined(MBEDTLS_X509_REMOVE_INFO)
Manuel Pégourié-Gonnard89addc42015-04-20 10:56:18 +01003359 char vrfy_buf[512];
Peter Kolbusdc470ae2018-12-11 13:55:56 -06003360#endif
Manuel Pégourié-Gonnard89addc42015-04-20 10:56:18 +01003361
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003362 mbedtls_printf( " failed\n" );
Paul Bakkerb60b95f2012-09-25 09:05:17 +00003363
Hanno Becker02a21932019-06-10 15:08:43 +01003364#if !defined(MBEDTLS_X509_REMOVE_INFO)
Manuel Pégourié-Gonnarde6ef16f2015-05-11 19:54:43 +02003365 mbedtls_x509_crt_verify_info( vrfy_buf, sizeof( vrfy_buf ), " ! ", flags );
Paul Bakkerb60b95f2012-09-25 09:05:17 +00003366
Manuel Pégourié-Gonnard89addc42015-04-20 10:56:18 +01003367 mbedtls_printf( "%s\n", vrfy_buf );
Peter Kolbusdc470ae2018-12-11 13:55:56 -06003368#endif
Paul Bakkerb60b95f2012-09-25 09:05:17 +00003369 }
3370 else
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003371 mbedtls_printf( " ok\n" );
Paul Bakkerb60b95f2012-09-25 09:05:17 +00003372
Hanno Becker02a21932019-06-10 15:08:43 +01003373#if !defined(MBEDTLS_X509_REMOVE_INFO)
Manuel Pégourié-Gonnard1c5b9fc2015-06-27 14:38:51 +02003374 if( mbedtls_ssl_get_peer_cert( &ssl ) != NULL )
Paul Bakkerb60b95f2012-09-25 09:05:17 +00003375 {
Manuel Pégourié-Gonnard1c5b9fc2015-06-27 14:38:51 +02003376 char crt_buf[512];
3377
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003378 mbedtls_printf( " . Peer certificate information ...\n" );
Manuel Pégourié-Gonnard1c5b9fc2015-06-27 14:38:51 +02003379 mbedtls_x509_crt_info( crt_buf, sizeof( crt_buf ), " ",
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003380 mbedtls_ssl_get_peer_cert( &ssl ) );
Manuel Pégourié-Gonnard67557172015-07-02 11:15:48 +02003381 mbedtls_printf( "%s\n", crt_buf );
Paul Bakkerb60b95f2012-09-25 09:05:17 +00003382 }
Hanno Becker02a21932019-06-10 15:08:43 +01003383#endif /* !MBEDTLS_X509_REMOVE_INFO */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003384#endif /* MBEDTLS_X509_CRT_PARSE_C */
Paul Bakkerb60b95f2012-09-25 09:05:17 +00003385
Hanno Beckera5a2b082019-05-15 14:03:01 +01003386#if defined(MBEDTLS_SSL_DTLS_CONNECTION_ID)
Hanno Becker96870292019-05-03 17:30:59 +01003387 ret = report_cid_usage( &ssl, "initial handshake" );
3388 if( ret != 0 )
3389 goto exit;
3390
Hanno Becker1029ace2019-04-09 17:28:10 +01003391 if( opt.transport == MBEDTLS_SSL_TRANSPORT_DATAGRAM )
3392 {
Hanno Becker96870292019-05-03 17:30:59 +01003393 if( ( ret = mbedtls_ssl_set_cid( &ssl, opt.cid_enabled_renego,
3394 cid_renego, cid_renego_len ) ) != 0 )
Hanno Becker1029ace2019-04-09 17:28:10 +01003395 {
Hanno Becker96870292019-05-03 17:30:59 +01003396 mbedtls_printf( " failed\n ! mbedtls_ssl_set_cid returned %d\n\n",
3397 ret );
Hanno Becker1029ace2019-04-09 17:28:10 +01003398 goto exit;
3399 }
Hanno Becker1029ace2019-04-09 17:28:10 +01003400 }
Hanno Beckera5a2b082019-05-15 14:03:01 +01003401#endif /* MBEDTLS_SSL_DTLS_CONNECTION_ID */
Hanno Becker1029ace2019-04-09 17:28:10 +01003402
Manuel Pégourié-Gonnard6a2bc232014-10-09 15:33:13 +02003403 if( opt.exchanges == 0 )
3404 goto close_notify;
3405
Manuel Pégourié-Gonnard6a0017b2015-01-22 10:33:29 +00003406 exchanges_left = opt.exchanges;
Manuel Pégourié-Gonnarda8c0a0d2014-08-15 12:07:38 +02003407data_exchange:
Paul Bakkerb60b95f2012-09-25 09:05:17 +00003408 /*
3409 * 6. Read the HTTP Request
3410 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003411 mbedtls_printf( " < Read from client:" );
Paul Bakkerb60b95f2012-09-25 09:05:17 +00003412 fflush( stdout );
3413
Manuel Pégourié-Gonnardcce220d2014-10-06 18:11:43 +02003414 /*
3415 * TLS and DTLS need different reading styles (stream vs datagram)
3416 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003417 if( opt.transport == MBEDTLS_SSL_TRANSPORT_STREAM )
Paul Bakkerb60b95f2012-09-25 09:05:17 +00003418 {
Manuel Pégourié-Gonnardcce220d2014-10-06 18:11:43 +02003419 do
3420 {
3421 int terminated = 0;
Andrzej Kurek30e731d2017-10-12 13:50:29 +02003422 len = opt.buffer_size - 1;
3423 memset( buf, 0, opt.buffer_size );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003424 ret = mbedtls_ssl_read( &ssl, buf, len );
Manuel Pégourié-Gonnardcce220d2014-10-06 18:11:43 +02003425
Gilles Peskinea36ac4f2018-04-26 08:05:02 +02003426 if( mbedtls_status_is_ssl_in_progress( ret ) )
Hanno Becker16970d22017-10-10 15:56:37 +01003427 {
3428 if( opt.event == 1 /* level triggered IO */ )
3429 {
3430#if defined(MBEDTLS_TIMING_C)
Hanno Becker197a91c2017-10-31 10:58:53 +00003431 idle( &client_fd, &timer, ret );
Hanno Becker16970d22017-10-10 15:56:37 +01003432#else
Hanno Becker197a91c2017-10-31 10:58:53 +00003433 idle( &client_fd, ret );
Hanno Becker16970d22017-10-10 15:56:37 +01003434#endif
3435 }
3436
Manuel Pégourié-Gonnardcce220d2014-10-06 18:11:43 +02003437 continue;
Hanno Becker16970d22017-10-10 15:56:37 +01003438 }
Manuel Pégourié-Gonnardcce220d2014-10-06 18:11:43 +02003439
3440 if( ret <= 0 )
3441 {
3442 switch( ret )
3443 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003444 case MBEDTLS_ERR_SSL_PEER_CLOSE_NOTIFY:
3445 mbedtls_printf( " connection was closed gracefully\n" );
Manuel Pégourié-Gonnardcce220d2014-10-06 18:11:43 +02003446 goto close_notify;
3447
3448 case 0:
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003449 case MBEDTLS_ERR_NET_CONN_RESET:
3450 mbedtls_printf( " connection was reset by peer\n" );
3451 ret = MBEDTLS_ERR_NET_CONN_RESET;
Manuel Pégourié-Gonnardcce220d2014-10-06 18:11:43 +02003452 goto reset;
3453
3454 default:
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003455 mbedtls_printf( " mbedtls_ssl_read returned -0x%x\n", -ret );
Manuel Pégourié-Gonnardcce220d2014-10-06 18:11:43 +02003456 goto reset;
3457 }
3458 }
3459
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003460 if( mbedtls_ssl_get_bytes_avail( &ssl ) == 0 )
Manuel Pégourié-Gonnardcce220d2014-10-06 18:11:43 +02003461 {
3462 len = ret;
3463 buf[len] = '\0';
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003464 mbedtls_printf( " %d bytes read\n\n%s\n", len, (char *) buf );
Manuel Pégourié-Gonnardcce220d2014-10-06 18:11:43 +02003465
3466 /* End of message should be detected according to the syntax of the
3467 * application protocol (eg HTTP), just use a dummy test here. */
3468 if( buf[len - 1] == '\n' )
3469 terminated = 1;
3470 }
3471 else
3472 {
3473 int extra_len, ori_len;
3474 unsigned char *larger_buf;
3475
3476 ori_len = ret;
Manuel Pégourié-Gonnard9de64f52015-07-01 15:51:43 +02003477 extra_len = (int) mbedtls_ssl_get_bytes_avail( &ssl );
Manuel Pégourié-Gonnardcce220d2014-10-06 18:11:43 +02003478
Manuel Pégourié-Gonnard7551cb92015-05-26 16:04:06 +02003479 larger_buf = mbedtls_calloc( 1, ori_len + extra_len + 1 );
Manuel Pégourié-Gonnardcce220d2014-10-06 18:11:43 +02003480 if( larger_buf == NULL )
3481 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003482 mbedtls_printf( " ! memory allocation failed\n" );
Manuel Pégourié-Gonnardcce220d2014-10-06 18:11:43 +02003483 ret = 1;
3484 goto reset;
3485 }
3486
3487 memset( larger_buf, 0, ori_len + extra_len );
3488 memcpy( larger_buf, buf, ori_len );
3489
3490 /* This read should never fail and get the whole cached data */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003491 ret = mbedtls_ssl_read( &ssl, larger_buf + ori_len, extra_len );
Manuel Pégourié-Gonnardcce220d2014-10-06 18:11:43 +02003492 if( ret != extra_len ||
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003493 mbedtls_ssl_get_bytes_avail( &ssl ) != 0 )
Manuel Pégourié-Gonnardcce220d2014-10-06 18:11:43 +02003494 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003495 mbedtls_printf( " ! mbedtls_ssl_read failed on cached data\n" );
Manuel Pégourié-Gonnardcce220d2014-10-06 18:11:43 +02003496 ret = 1;
3497 goto reset;
3498 }
3499
3500 larger_buf[ori_len + extra_len] = '\0';
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003501 mbedtls_printf( " %u bytes read (%u + %u)\n\n%s\n",
Manuel Pégourié-Gonnardcce220d2014-10-06 18:11:43 +02003502 ori_len + extra_len, ori_len, extra_len,
3503 (char *) larger_buf );
3504
3505 /* End of message should be detected according to the syntax of the
3506 * application protocol (eg HTTP), just use a dummy test here. */
3507 if( larger_buf[ori_len + extra_len - 1] == '\n' )
3508 terminated = 1;
3509
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003510 mbedtls_free( larger_buf );
Manuel Pégourié-Gonnardcce220d2014-10-06 18:11:43 +02003511 }
3512
3513 if( terminated )
3514 {
3515 ret = 0;
3516 break;
3517 }
3518 }
3519 while( 1 );
3520 }
3521 else /* Not stream, so datagram */
3522 {
Andrzej Kurek30e731d2017-10-12 13:50:29 +02003523 len = opt.buffer_size - 1;
3524 memset( buf, 0, opt.buffer_size );
Paul Bakkerb60b95f2012-09-25 09:05:17 +00003525
Gilles Peskineb44692f2018-04-24 12:18:19 +02003526 do
Hanno Becker16970d22017-10-10 15:56:37 +01003527 {
Hanno Beckerddc3ebb2018-03-13 11:39:09 +00003528 /* Without the call to `mbedtls_ssl_check_pending`, it might
3529 * happen that the client sends application data in the same
3530 * datagram as the Finished message concluding the handshake.
3531 * In this case, the application data would be ready to be
3532 * processed while the underlying transport wouldn't signal
3533 * any further incoming data.
3534 *
3535 * See the test 'Event-driven I/O: session-id resume, UDP packing'
3536 * in tests/ssl-opt.sh.
3537 */
3538
3539 /* For event-driven IO, wait for socket to become available */
3540 if( mbedtls_ssl_check_pending( &ssl ) == 0 &&
3541 opt.event == 1 /* level triggered IO */ )
3542 {
3543#if defined(MBEDTLS_TIMING_C)
3544 idle( &client_fd, &timer, MBEDTLS_ERR_SSL_WANT_READ );
3545#else
3546 idle( &client_fd, MBEDTLS_ERR_SSL_WANT_READ );
3547#endif
3548 }
3549
Hanno Becker16970d22017-10-10 15:56:37 +01003550 ret = mbedtls_ssl_read( &ssl, buf, len );
3551
Hanno Beckerddc3ebb2018-03-13 11:39:09 +00003552 /* Note that even if `mbedtls_ssl_check_pending` returns true,
3553 * it can happen that the subsequent call to `mbedtls_ssl_read`
3554 * returns `MBEDTLS_ERR_SSL_WANT_READ`, because the pending messages
3555 * might be discarded (e.g. because they are retransmissions). */
Hanno Becker16970d22017-10-10 15:56:37 +01003556 }
Gilles Peskinea36ac4f2018-04-26 08:05:02 +02003557 while( mbedtls_status_is_ssl_in_progress( ret ) );
Paul Bakkerb60b95f2012-09-25 09:05:17 +00003558
3559 if( ret <= 0 )
3560 {
3561 switch( ret )
3562 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003563 case MBEDTLS_ERR_SSL_PEER_CLOSE_NOTIFY:
3564 mbedtls_printf( " connection was closed gracefully\n" );
Manuel Pégourié-Gonnardcce220d2014-10-06 18:11:43 +02003565 ret = 0;
Manuel Pégourié-Gonnarde08660e2014-08-16 11:28:40 +02003566 goto close_notify;
Paul Bakkerb60b95f2012-09-25 09:05:17 +00003567
Paul Bakkerb60b95f2012-09-25 09:05:17 +00003568 default:
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003569 mbedtls_printf( " mbedtls_ssl_read returned -0x%x\n", -ret );
Manuel Pégourié-Gonnarda8c0a0d2014-08-15 12:07:38 +02003570 goto reset;
Paul Bakkerb60b95f2012-09-25 09:05:17 +00003571 }
Paul Bakkerb60b95f2012-09-25 09:05:17 +00003572 }
3573
Manuel Pégourié-Gonnardcce220d2014-10-06 18:11:43 +02003574 len = ret;
3575 buf[len] = '\0';
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003576 mbedtls_printf( " %d bytes read\n\n%s", len, (char *) buf );
Manuel Pégourié-Gonnardcce220d2014-10-06 18:11:43 +02003577 ret = 0;
Paul Bakkerb60b95f2012-09-25 09:05:17 +00003578 }
Paul Bakkerb60b95f2012-09-25 09:05:17 +00003579
3580 /*
Manuel Pégourié-Gonnarda8c0a0d2014-08-15 12:07:38 +02003581 * 7a. Request renegotiation while client is waiting for input from us.
Manuel Pégourié-Gonnarda6ace042014-10-15 12:44:41 +02003582 * (only on the first exchange, to be able to test retransmission)
Paul Bakkerb60b95f2012-09-25 09:05:17 +00003583 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003584#if defined(MBEDTLS_SSL_RENEGOTIATION)
Manuel Pégourié-Gonnard3a173f42015-01-22 13:30:33 +00003585 if( opt.renegotiate && exchanges_left == opt.exchanges )
Manuel Pégourié-Gonnard296e3b12014-08-19 12:59:03 +02003586 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003587 mbedtls_printf( " . Requestion renegotiation..." );
Manuel Pégourié-Gonnard296e3b12014-08-19 12:59:03 +02003588 fflush( stdout );
Manuel Pégourié-Gonnarda8c0a0d2014-08-15 12:07:38 +02003589
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003590 while( ( ret = mbedtls_ssl_renegotiate( &ssl ) ) != 0 )
Manuel Pégourié-Gonnard296e3b12014-08-19 12:59:03 +02003591 {
Gilles Peskinea36ac4f2018-04-26 08:05:02 +02003592 if( ! mbedtls_status_is_ssl_in_progress( ret ) )
Manuel Pégourié-Gonnard296e3b12014-08-19 12:59:03 +02003593 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003594 mbedtls_printf( " failed\n ! mbedtls_ssl_renegotiate returned %d\n\n", ret );
Manuel Pégourié-Gonnard296e3b12014-08-19 12:59:03 +02003595 goto reset;
3596 }
Hanno Becker16970d22017-10-10 15:56:37 +01003597
3598 /* For event-driven IO, wait for socket to become available */
3599 if( opt.event == 1 /* level triggered IO */ )
3600 {
3601#if defined(MBEDTLS_TIMING_C)
Hanno Becker197a91c2017-10-31 10:58:53 +00003602 idle( &client_fd, &timer, ret );
Hanno Becker16970d22017-10-10 15:56:37 +01003603#else
Hanno Becker197a91c2017-10-31 10:58:53 +00003604 idle( &client_fd, ret );
Hanno Becker16970d22017-10-10 15:56:37 +01003605#endif
3606 }
Manuel Pégourié-Gonnard296e3b12014-08-19 12:59:03 +02003607 }
Manuel Pégourié-Gonnarda8c0a0d2014-08-15 12:07:38 +02003608
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003609 mbedtls_printf( " ok\n" );
Manuel Pégourié-Gonnard296e3b12014-08-19 12:59:03 +02003610 }
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003611#endif /* MBEDTLS_SSL_RENEGOTIATION */
Manuel Pégourié-Gonnard296e3b12014-08-19 12:59:03 +02003612
Hanno Beckera5a2b082019-05-15 14:03:01 +01003613#if defined(MBEDTLS_SSL_DTLS_CONNECTION_ID)
Hanno Becker96870292019-05-03 17:30:59 +01003614 ret = report_cid_usage( &ssl, "after renegotiation" );
3615 if( ret != 0 )
3616 goto exit;
Hanno Beckera5a2b082019-05-15 14:03:01 +01003617#endif /* MBEDTLS_SSL_DTLS_CONNECTION_ID */
Hanno Becker96870292019-05-03 17:30:59 +01003618
Manuel Pégourié-Gonnarda8c0a0d2014-08-15 12:07:38 +02003619 /*
3620 * 7. Write the 200 Response
3621 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003622 mbedtls_printf( " > Write to client:" );
Paul Bakkerb60b95f2012-09-25 09:05:17 +00003623 fflush( stdout );
3624
3625 len = sprintf( (char *) buf, HTTP_RESPONSE,
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003626 mbedtls_ssl_get_ciphersuite( &ssl ) );
Paul Bakkerb60b95f2012-09-25 09:05:17 +00003627
Andrzej Kurek30e731d2017-10-12 13:50:29 +02003628 /* Add padding to the response to reach opt.response_size in length */
3629 if( opt.response_size != DFL_RESPONSE_SIZE &&
3630 len < opt.response_size )
3631 {
3632 memset( buf + len, 'B', opt.response_size - len );
3633 len += opt.response_size - len;
3634 }
3635
3636 /* Truncate if response size is smaller than the "natural" size */
3637 if( opt.response_size != DFL_RESPONSE_SIZE &&
3638 len > opt.response_size )
3639 {
3640 len = opt.response_size;
3641
3642 /* Still end with \r\n unless that's really not possible */
3643 if( len >= 2 ) buf[len - 2] = '\r';
3644 if( len >= 1 ) buf[len - 1] = '\n';
3645 }
3646
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003647 if( opt.transport == MBEDTLS_SSL_TRANSPORT_STREAM )
Paul Bakkerb60b95f2012-09-25 09:05:17 +00003648 {
Manuel Pégourié-Gonnard2d87e412014-10-13 18:38:36 +02003649 for( written = 0, frags = 0; written < len; written += ret, frags++ )
Paul Bakkerb60b95f2012-09-25 09:05:17 +00003650 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003651 while( ( ret = mbedtls_ssl_write( &ssl, buf + written, len - written ) )
Manuel Pégourié-Gonnard2d87e412014-10-13 18:38:36 +02003652 <= 0 )
Manuel Pégourié-Gonnardbd7ce632013-07-17 15:34:17 +02003653 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003654 if( ret == MBEDTLS_ERR_NET_CONN_RESET )
Manuel Pégourié-Gonnard2d87e412014-10-13 18:38:36 +02003655 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003656 mbedtls_printf( " failed\n ! peer closed the connection\n\n" );
Manuel Pégourié-Gonnard2d87e412014-10-13 18:38:36 +02003657 goto reset;
3658 }
Paul Bakkerb60b95f2012-09-25 09:05:17 +00003659
Gilles Peskinea36ac4f2018-04-26 08:05:02 +02003660 if( ! mbedtls_status_is_ssl_in_progress( ret ) )
Manuel Pégourié-Gonnard2d87e412014-10-13 18:38:36 +02003661 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003662 mbedtls_printf( " failed\n ! mbedtls_ssl_write returned %d\n\n", ret );
Manuel Pégourié-Gonnard2d87e412014-10-13 18:38:36 +02003663 goto reset;
3664 }
Hanno Becker16970d22017-10-10 15:56:37 +01003665
3666 /* For event-driven IO, wait for socket to become available */
3667 if( opt.event == 1 /* level triggered IO */ )
3668 {
3669#if defined(MBEDTLS_TIMING_C)
Hanno Becker197a91c2017-10-31 10:58:53 +00003670 idle( &client_fd, &timer, ret );
Hanno Becker16970d22017-10-10 15:56:37 +01003671#else
Hanno Becker197a91c2017-10-31 10:58:53 +00003672 idle( &client_fd, ret );
Hanno Becker16970d22017-10-10 15:56:37 +01003673#endif
3674 }
Manuel Pégourié-Gonnardbd7ce632013-07-17 15:34:17 +02003675 }
Paul Bakkerb60b95f2012-09-25 09:05:17 +00003676 }
3677 }
Manuel Pégourié-Gonnard2d87e412014-10-13 18:38:36 +02003678 else /* Not stream, so datagram */
3679 {
Hanno Becker16970d22017-10-10 15:56:37 +01003680 while( 1 )
3681 {
3682 ret = mbedtls_ssl_write( &ssl, buf, len );
3683
Gilles Peskinea36ac4f2018-04-26 08:05:02 +02003684 if( ! mbedtls_status_is_ssl_in_progress( ret ) )
Hanno Becker16970d22017-10-10 15:56:37 +01003685 break;
3686
3687 /* For event-driven IO, wait for socket to become available */
3688 if( opt.event == 1 /* level triggered IO */ )
3689 {
3690#if defined(MBEDTLS_TIMING_C)
Hanno Becker197a91c2017-10-31 10:58:53 +00003691 idle( &client_fd, &timer, ret );
Hanno Becker16970d22017-10-10 15:56:37 +01003692#else
Hanno Becker197a91c2017-10-31 10:58:53 +00003693 idle( &client_fd, ret );
Hanno Becker16970d22017-10-10 15:56:37 +01003694#endif
3695 }
3696 }
Manuel Pégourié-Gonnard2d87e412014-10-13 18:38:36 +02003697
3698 if( ret < 0 )
3699 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003700 mbedtls_printf( " failed\n ! mbedtls_ssl_write returned %d\n\n", ret );
Manuel Pégourié-Gonnard2d87e412014-10-13 18:38:36 +02003701 goto reset;
3702 }
3703
3704 frags = 1;
3705 written = ret;
3706 }
Paul Bakkerb60b95f2012-09-25 09:05:17 +00003707
Manuel Pégourié-Gonnardbd7ce632013-07-17 15:34:17 +02003708 buf[written] = '\0';
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003709 mbedtls_printf( " %d bytes written in %d fragments\n\n%s\n", written, frags, (char *) buf );
Manuel Pégourié-Gonnarda92ed482015-01-14 10:46:08 +01003710 ret = 0;
Manuel Pégourié-Gonnardf3dc2f62013-10-29 18:17:41 +01003711
Manuel Pégourié-Gonnarde08660e2014-08-16 11:28:40 +02003712 /*
Jarno Lamsaf4572932019-05-29 15:41:21 +03003713 * 7b. Simulate serialize/deserialize and go back to data exchange
3714 */
Jarno Lamsacf1b6722019-06-04 11:06:31 +03003715#if defined(MBEDTLS_SSL_CONTEXT_SERIALIZATION)
Jarno Lamsab5ff6a42019-06-06 10:40:52 +03003716 if( opt.serialize != 0 )
Jarno Lamsaf4572932019-05-29 15:41:21 +03003717 {
Jarno Lamsa034ae842019-06-06 15:10:07 +03003718 size_t buf_len;
Jarno Lamsaf4572932019-05-29 15:41:21 +03003719
Manuel Pégourié-Gonnard3b23c7d2019-07-12 10:41:55 +02003720 mbedtls_printf( " . Serializing live connection..." );
Jarno Lamsaf4572932019-05-29 15:41:21 +03003721
Jarno Lamsa034ae842019-06-06 15:10:07 +03003722 ret = mbedtls_ssl_context_save( &ssl, NULL, 0, &buf_len );
Manuel Pégourié-Gonnard3b23c7d2019-07-12 10:41:55 +02003723 if( ret != MBEDTLS_ERR_SSL_BUFFER_TOO_SMALL )
Jarno Lamsaf4572932019-05-29 15:41:21 +03003724 {
Jarno Lamsa5737ec92019-06-04 15:36:18 +03003725 mbedtls_printf( " failed\n ! mbedtls_ssl_context_save returned "
3726 "-0x%x\n\n", -ret );
Jarno Lamsaf4572932019-05-29 15:41:21 +03003727
3728 goto exit;
3729 }
3730
Jarno Lamsa034ae842019-06-06 15:10:07 +03003731 if( ( context_buf = mbedtls_calloc( 1, buf_len ) ) == NULL )
Jarno Lamsaf4572932019-05-29 15:41:21 +03003732 {
Jarno Lamsa5737ec92019-06-04 15:36:18 +03003733 mbedtls_printf( " failed\n ! Couldn't allocate buffer for "
3734 "serialized context" );
Jarno Lamsaf4572932019-05-29 15:41:21 +03003735
3736 goto exit;
3737 }
Manuel Pégourié-Gonnardc9812292019-07-15 10:31:11 +02003738 context_buf_len = buf_len;
Jarno Lamsaf4572932019-05-29 15:41:21 +03003739
Jarno Lamsa8b2608b2019-06-13 12:22:50 +03003740 if( ( ret = mbedtls_ssl_context_save( &ssl, context_buf,
3741 buf_len, &buf_len ) ) != 0 )
Jarno Lamsaf4572932019-05-29 15:41:21 +03003742 {
Manuel Pégourié-Gonnard3b23c7d2019-07-12 10:41:55 +02003743 mbedtls_printf( " failed\n ! mbedtls_ssl_context_save returned "
Jarno Lamsa5737ec92019-06-04 15:36:18 +03003744 "-0x%x\n\n", -ret );
Jarno Lamsaf4572932019-05-29 15:41:21 +03003745
3746 goto exit;
3747 }
3748
Manuel Pégourié-Gonnard3b23c7d2019-07-12 10:41:55 +02003749 mbedtls_printf( " ok\n" );
3750
3751 /*
3752 * This simulates a workflow where you have a long-lived server
3753 * instance, potentially with a pool of ssl_context objects, and you
3754 * just want to re-use one while the connection is inactive: in that
3755 * case you can just reset() it, and then it's ready to receive
3756 * serialized data from another connection (or the same here).
3757 */
3758 if( opt.serialize == 1 )
3759 {
Manuel Pégourié-Gonnardbc847ca2019-07-23 14:51:09 +02003760 /* nothing to do here, done by context_save() already */
3761 mbedtls_printf( " . Context has been reset... ok" );
Manuel Pégourié-Gonnard3b23c7d2019-07-12 10:41:55 +02003762 }
3763
3764 /*
3765 * This simulates a workflow where you have one server instance per
3766 * connection, and want to release it entire when the connection is
3767 * inactive, and spawn it again when needed again - this would happen
3768 * between ssl_free() and ssl_init() below, together with any other
3769 * teardown/startup code needed - for example, preparing the
3770 * ssl_config again (see section 3 "setup stuff" in this file).
3771 */
Jarno Lamsab5ff6a42019-06-06 10:40:52 +03003772 if( opt.serialize == 2 )
3773 {
Manuel Pégourié-Gonnard3b23c7d2019-07-12 10:41:55 +02003774 mbedtls_printf( " . Freeing and reinitializing context..." );
3775
Jarno Lamsab5ff6a42019-06-06 10:40:52 +03003776 mbedtls_ssl_free( &ssl );
3777
3778 mbedtls_ssl_init( &ssl );
3779
3780 if( ( ret = mbedtls_ssl_setup( &ssl, &conf ) ) != 0 )
3781 {
Jarno Lamsa8b2608b2019-06-13 12:22:50 +03003782 mbedtls_printf( " failed\n ! mbedtls_ssl_setup returned "
3783 "-0x%x\n\n", -ret );
Jarno Lamsab5ff6a42019-06-06 10:40:52 +03003784 goto exit;
3785 }
3786
Manuel Pégourié-Gonnard3b23c7d2019-07-12 10:41:55 +02003787 /*
3788 * This illustrates the minimum amount of things you need to set
Hanno Becker41e5a682019-07-19 17:07:30 +01003789 * up: I/O and timer callbacks/contexts; however you could set up
3790 * much more if desired, for example if you want to share your set
3791 * up code between the case of establishing a new connection and
3792 * this case.
Manuel Pégourié-Gonnard3b23c7d2019-07-12 10:41:55 +02003793 */
Hanno Becker41e5a682019-07-19 17:07:30 +01003794#if !defined(MBEDTLS_SSL_CONF_RECV) && \
3795 !defined(MBEDTLS_SSL_CONF_SEND) && \
3796 !defined(MBEDTLS_SSL_CONF_RECV_TIMEOUT)
Hanno Beckerfe24b3b2019-07-03 17:05:43 +01003797 mbedtls_ssl_set_bio( &ssl, &io_ctx, send_cb, recv_cb,
3798 opt.nbio == 0 ? recv_timeout_cb : NULL );
Hanno Becker41e5a682019-07-19 17:07:30 +01003799#else
3800 mbedtls_ssl_set_bio_ctx( &ssl, &client_fd );
3801#endif
Jarno Lamsab5ff6a42019-06-06 10:40:52 +03003802
Jarno Lamsa29a15c22019-06-13 11:45:06 +03003803#if defined(MBEDTLS_TIMING_C)
Hanno Becker0ae6b242019-06-13 16:45:36 +01003804#if !defined(MBEDTLS_SSL_CONF_SET_TIMER) && \
3805 !defined(MBEDTLS_SSL_CONF_GET_TIMER)
Manuel Pégourié-Gonnard86dfa0c2019-07-15 12:23:22 +02003806 mbedtls_ssl_set_timer_cb( &ssl, &timer,
3807 mbedtls_timing_set_delay,
3808 mbedtls_timing_get_delay );
Hanno Becker0ae6b242019-06-13 16:45:36 +01003809#else
Manuel Pégourié-Gonnard86dfa0c2019-07-15 12:23:22 +02003810 mbedtls_ssl_set_timer_cb_ctx( &ssl, &timer );
Hanno Becker0ae6b242019-06-13 16:45:36 +01003811#endif
Jarno Lamsa29a15c22019-06-13 11:45:06 +03003812#endif /* MBEDTLS_TIMING_C */
Manuel Pégourié-Gonnard3b23c7d2019-07-12 10:41:55 +02003813
3814 mbedtls_printf( " ok\n" );
Jarno Lamsab5ff6a42019-06-06 10:40:52 +03003815 }
3816
Manuel Pégourié-Gonnard3b23c7d2019-07-12 10:41:55 +02003817 mbedtls_printf( " . Deserializing connection..." );
Jarno Lamsaf4572932019-05-29 15:41:21 +03003818
Jarno Lamsa8b2608b2019-06-13 12:22:50 +03003819 if( ( ret = mbedtls_ssl_context_load( &ssl, context_buf,
3820 buf_len ) ) != 0 )
Jarno Lamsaf4572932019-05-29 15:41:21 +03003821 {
Jarno Lamsa5737ec92019-06-04 15:36:18 +03003822 mbedtls_printf( "failed\n ! mbedtls_ssl_context_load returned "
3823 "-0x%x\n\n", -ret );
Jarno Lamsaf4572932019-05-29 15:41:21 +03003824
3825 goto exit;
3826 }
Manuel Pégourié-Gonnard3b23c7d2019-07-12 10:41:55 +02003827
Manuel Pégourié-Gonnardc9812292019-07-15 10:31:11 +02003828 mbedtls_free( context_buf );
3829 context_buf = NULL;
3830 context_buf_len = 0;
3831
Manuel Pégourié-Gonnard3b23c7d2019-07-12 10:41:55 +02003832 mbedtls_printf( " ok\n" );
Jarno Lamsaf4572932019-05-29 15:41:21 +03003833 }
Jarno Lamsa5737ec92019-06-04 15:36:18 +03003834#endif /* MBEDTLS_SSL_CONTEXT_SERIALIZATION */
Jarno Lamsaf4572932019-05-29 15:41:21 +03003835
3836 /*
3837 * 7c. Continue doing data exchanges?
Manuel Pégourié-Gonnarda8c0a0d2014-08-15 12:07:38 +02003838 */
Manuel Pégourié-Gonnard6a0017b2015-01-22 10:33:29 +00003839 if( --exchanges_left > 0 )
Manuel Pégourié-Gonnarda8c0a0d2014-08-15 12:07:38 +02003840 goto data_exchange;
3841
3842 /*
3843 * 8. Done, cleanly close the connection
Manuel Pégourié-Gonnarde08660e2014-08-16 11:28:40 +02003844 */
3845close_notify:
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003846 mbedtls_printf( " . Closing the connection..." );
Manuel Pégourié-Gonnard6b0d2682014-03-25 11:24:43 +01003847
Manuel Pégourié-Gonnard994f8b52014-10-09 19:56:44 +02003848 /* No error checking, the connection might be closed already */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003849 do ret = mbedtls_ssl_close_notify( &ssl );
Manuel Pégourié-Gonnard88369942015-05-06 16:19:31 +01003850 while( ret == MBEDTLS_ERR_SSL_WANT_WRITE );
Manuel Pégourié-Gonnard994f8b52014-10-09 19:56:44 +02003851 ret = 0;
Manuel Pégourié-Gonnarde08660e2014-08-16 11:28:40 +02003852
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003853 mbedtls_printf( " done\n" );
Rich Evansf90016a2015-01-19 14:26:37 +00003854
Paul Bakkerb60b95f2012-09-25 09:05:17 +00003855 goto reset;
3856
Manuel Pégourié-Gonnarde08660e2014-08-16 11:28:40 +02003857 /*
3858 * Cleanup and exit
3859 */
Paul Bakkerb60b95f2012-09-25 09:05:17 +00003860exit:
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003861#ifdef MBEDTLS_ERROR_C
Paul Bakkerb60b95f2012-09-25 09:05:17 +00003862 if( ret != 0 )
3863 {
3864 char error_buf[100];
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003865 mbedtls_strerror( ret, error_buf, 100 );
3866 mbedtls_printf("Last error was: -0x%X - %s\n\n", -ret, error_buf );
Paul Bakkerb60b95f2012-09-25 09:05:17 +00003867 }
3868#endif
3869
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003870 mbedtls_printf( " . Cleaning up..." );
Manuel Pégourié-Gonnardf29e5de2014-11-21 11:54:41 +01003871 fflush( stdout );
3872
Manuel Pégourié-Gonnard3d7d00a2015-06-30 15:55:03 +02003873 mbedtls_net_free( &client_fd );
3874 mbedtls_net_free( &listen_fd );
Paul Bakker0c226102014-04-17 16:02:36 +02003875
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003876#if defined(MBEDTLS_DHM_C) && defined(MBEDTLS_FS_IO)
3877 mbedtls_dhm_free( &dhm );
Paul Bakkera317a982014-06-18 16:44:11 +02003878#endif
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003879#if defined(MBEDTLS_X509_CRT_PARSE_C)
3880 mbedtls_x509_crt_free( &cacert );
3881 mbedtls_x509_crt_free( &srvcert );
3882 mbedtls_pk_free( &pkey );
3883 mbedtls_x509_crt_free( &srvcert2 );
3884 mbedtls_pk_free( &pkey2 );
Paul Bakkered27a042013-04-18 22:46:23 +02003885#endif
Gilles Peskine44817442018-06-13 18:09:28 +02003886#if defined(MBEDTLS_SSL_ASYNC_PRIVATE)
3887 for( i = 0; (size_t) i < ssl_async_keys.slots_used; i++ )
3888 {
3889 if( ssl_async_keys.slots[i].pk_owned )
3890 {
3891 mbedtls_pk_free( ssl_async_keys.slots[i].pk );
3892 mbedtls_free( ssl_async_keys.slots[i].pk );
3893 ssl_async_keys.slots[i].pk = NULL;
3894 }
3895 }
3896#endif
Manuel Pégourié-Gonnard6c7af4c2015-04-03 16:41:52 +02003897#if defined(SNI_OPTION)
Manuel Pégourié-Gonnard5d917ff2014-02-21 16:52:06 +01003898 sni_free( sni_info );
3899#endif
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003900#if defined(MBEDTLS_KEY_EXCHANGE__SOME__PSK_ENABLED)
Manuel Pégourié-Gonnard4505ed32014-06-19 20:56:52 +02003901 psk_free( psk_info );
3902#endif
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003903#if defined(MBEDTLS_DHM_C) && defined(MBEDTLS_FS_IO)
3904 mbedtls_dhm_free( &dhm );
Manuel Pégourié-Gonnard4505ed32014-06-19 20:56:52 +02003905#endif
Paul Bakkered27a042013-04-18 22:46:23 +02003906
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003907 mbedtls_ssl_free( &ssl );
Manuel Pégourié-Gonnarddef0bbe2015-05-04 14:56:36 +02003908 mbedtls_ssl_config_free( &conf );
Hanno Becker7f1c8052019-08-26 13:30:13 +01003909#if defined(MBEDTLS_CTR_DRBG_C)
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003910 mbedtls_ctr_drbg_free( &ctr_drbg );
Hanno Becker7f1c8052019-08-26 13:30:13 +01003911#else
3912 mbedtls_hmac_drbg_free( &hmac_drbg );
3913#endif
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003914 mbedtls_entropy_free( &entropy );
Paul Bakkerb60b95f2012-09-25 09:05:17 +00003915
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003916#if defined(MBEDTLS_SSL_CACHE_C)
3917 mbedtls_ssl_cache_free( &cache );
Paul Bakker0a597072012-09-25 21:55:46 +00003918#endif
Manuel Pégourié-Gonnardd59675d2015-05-19 15:28:00 +02003919#if defined(MBEDTLS_SSL_SESSION_TICKETS)
3920 mbedtls_ssl_ticket_free( &ticket_ctx );
3921#endif
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003922#if defined(MBEDTLS_SSL_COOKIE_C)
3923 mbedtls_ssl_cookie_free( &cookie_ctx );
Manuel Pégourié-Gonnardd485d192014-07-23 14:56:15 +02003924#endif
Paul Bakker0a597072012-09-25 21:55:46 +00003925
Hanno Becker095d9cf2018-10-09 12:39:13 +01003926 mbedtls_free( buf );
3927
Manuel Pégourié-Gonnardc9812292019-07-15 10:31:11 +02003928#if defined(MBEDTLS_SSL_CONTEXT_SERIALIZATION)
3929 if( context_buf != NULL )
3930 mbedtls_platform_zeroize( context_buf, context_buf_len );
3931 mbedtls_free( context_buf );
3932#endif
3933
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003934#if defined(MBEDTLS_MEMORY_BUFFER_ALLOC_C)
3935#if defined(MBEDTLS_MEMORY_DEBUG)
3936 mbedtls_memory_buffer_alloc_status();
Paul Bakker82024bf2013-07-04 11:52:32 +02003937#endif
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003938 mbedtls_memory_buffer_alloc_free();
Paul Bakker1337aff2013-09-29 14:45:34 +02003939#endif
Paul Bakker82024bf2013-07-04 11:52:32 +02003940
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003941 mbedtls_printf( " done.\n" );
Manuel Pégourié-Gonnardf29e5de2014-11-21 11:54:41 +01003942
Paul Bakkerb60b95f2012-09-25 09:05:17 +00003943#if defined(_WIN32)
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003944 mbedtls_printf( " + Press Enter to exit this program.\n" );
Paul Bakkerb60b95f2012-09-25 09:05:17 +00003945 fflush( stdout ); getchar();
3946#endif
3947
Paul Bakkerdbd79ca2013-07-24 16:28:35 +02003948 // Shell can not handle large exit numbers -> 1 for errors
3949 if( ret < 0 )
3950 ret = 1;
3951
Paul Bakkerb60b95f2012-09-25 09:05:17 +00003952 return( ret );
3953}
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003954#endif /* MBEDTLS_BIGNUM_C && MBEDTLS_ENTROPY_C && MBEDTLS_SSL_TLS_C &&
3955 MBEDTLS_SSL_SRV_C && MBEDTLS_NET_C && MBEDTLS_RSA_C &&
Hanno Becker7f1c8052019-08-26 13:30:13 +01003956 ( MBEDTLS_CTR_DRBG_C || MBEDTLS_HMAC_DRBG_C ) */