2022-02-18 17:24:56 +01:00
|
|
|
/*
|
|
|
|
* TLS 1.2 and 1.3 client-side functions
|
|
|
|
*
|
|
|
|
* Copyright The Mbed TLS Contributors
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
|
|
* not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*
|
|
|
|
* This file is part of mbed TLS ( https://tls.mbed.org )
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "common.h"
|
|
|
|
|
|
|
|
#if defined(MBEDTLS_SSL_CLI_C)
|
|
|
|
#if defined(MBEDTLS_SSL_PROTO_TLS1_3) || defined(MBEDTLS_SSL_PROTO_TLS1_2)
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include "mbedtls/debug.h"
|
|
|
|
#include "mbedtls/error.h"
|
2022-12-01 13:30:41 +01:00
|
|
|
#include "mbedtls/platform.h"
|
2022-02-18 17:24:56 +01:00
|
|
|
|
|
|
|
#include "ssl_client.h"
|
|
|
|
#include "ssl_misc.h"
|
|
|
|
#include "ssl_tls13_keys.h"
|
|
|
|
#include "ssl_debug_helpers.h"
|
|
|
|
|
2022-03-17 15:22:07 +01:00
|
|
|
#if defined(MBEDTLS_SSL_SERVER_NAME_INDICATION)
|
2022-06-17 10:52:54 +02:00
|
|
|
MBEDTLS_CHECK_RETURN_CRITICAL
|
2023-01-11 14:50:10 +01:00
|
|
|
static int ssl_write_hostname_ext(mbedtls_ssl_context *ssl,
|
|
|
|
unsigned char *buf,
|
|
|
|
const unsigned char *end,
|
|
|
|
size_t *olen)
|
2022-03-17 15:22:07 +01:00
|
|
|
{
|
|
|
|
unsigned char *p = buf;
|
|
|
|
size_t hostname_len;
|
|
|
|
|
|
|
|
*olen = 0;
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
if (ssl->hostname == NULL) {
|
|
|
|
return 0;
|
|
|
|
}
|
2022-03-17 15:22:07 +01:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
MBEDTLS_SSL_DEBUG_MSG(3,
|
|
|
|
("client hello, adding server name extension: %s",
|
|
|
|
ssl->hostname));
|
2022-03-17 15:22:07 +01:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
hostname_len = strlen(ssl->hostname);
|
2022-03-17 15:22:07 +01:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
MBEDTLS_SSL_CHK_BUF_PTR(p, end, hostname_len + 9);
|
2022-03-17 15:22:07 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Sect. 3, RFC 6066 (TLS Extensions Definitions)
|
|
|
|
*
|
|
|
|
* In order to provide any of the server names, clients MAY include an
|
|
|
|
* extension of type "server_name" in the (extended) client hello. The
|
|
|
|
* "extension_data" field of this extension SHALL contain
|
|
|
|
* "ServerNameList" where:
|
|
|
|
*
|
|
|
|
* struct {
|
|
|
|
* NameType name_type;
|
|
|
|
* select (name_type) {
|
|
|
|
* case host_name: HostName;
|
|
|
|
* } name;
|
|
|
|
* } ServerName;
|
|
|
|
*
|
|
|
|
* enum {
|
|
|
|
* host_name(0), (255)
|
|
|
|
* } NameType;
|
|
|
|
*
|
|
|
|
* opaque HostName<1..2^16-1>;
|
|
|
|
*
|
|
|
|
* struct {
|
|
|
|
* ServerName server_name_list<1..2^16-1>
|
|
|
|
* } ServerNameList;
|
|
|
|
*
|
|
|
|
*/
|
2023-01-11 14:50:10 +01:00
|
|
|
MBEDTLS_PUT_UINT16_BE(MBEDTLS_TLS_EXT_SERVERNAME, p, 0);
|
2022-03-17 15:22:07 +01:00
|
|
|
p += 2;
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
MBEDTLS_PUT_UINT16_BE(hostname_len + 5, p, 0);
|
2022-03-17 15:22:07 +01:00
|
|
|
p += 2;
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
MBEDTLS_PUT_UINT16_BE(hostname_len + 3, p, 0);
|
2022-03-17 15:22:07 +01:00
|
|
|
p += 2;
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
*p++ = MBEDTLS_BYTE_0(MBEDTLS_TLS_EXT_SERVERNAME_HOSTNAME);
|
2022-03-17 15:22:07 +01:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
MBEDTLS_PUT_UINT16_BE(hostname_len, p, 0);
|
2022-03-17 15:22:07 +01:00
|
|
|
p += 2;
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
memcpy(p, ssl->hostname, hostname_len);
|
2022-03-17 15:22:07 +01:00
|
|
|
|
|
|
|
*olen = hostname_len + 9;
|
|
|
|
|
2022-08-29 09:25:36 +02:00
|
|
|
#if defined(MBEDTLS_SSL_PROTO_TLS1_3)
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_ssl_tls13_set_hs_sent_ext_mask(ssl, MBEDTLS_TLS_EXT_SERVERNAME);
|
2022-08-29 09:25:36 +02:00
|
|
|
#endif /* MBEDTLS_SSL_PROTO_TLS1_3 */
|
2023-01-11 14:50:10 +01:00
|
|
|
return 0;
|
2022-03-17 15:22:07 +01:00
|
|
|
}
|
|
|
|
#endif /* MBEDTLS_SSL_SERVER_NAME_INDICATION */
|
|
|
|
|
2022-02-18 17:24:56 +01:00
|
|
|
#if defined(MBEDTLS_SSL_ALPN)
|
|
|
|
/*
|
2022-02-18 17:29:39 +01:00
|
|
|
* ssl_write_alpn_ext()
|
2022-02-18 17:24:56 +01:00
|
|
|
*
|
|
|
|
* Structure of the application_layer_protocol_negotiation extension in
|
|
|
|
* ClientHello:
|
|
|
|
*
|
|
|
|
* opaque ProtocolName<1..2^8-1>;
|
|
|
|
*
|
|
|
|
* struct {
|
|
|
|
* ProtocolName protocol_name_list<2..2^16-1>
|
|
|
|
* } ProtocolNameList;
|
|
|
|
*
|
|
|
|
*/
|
2022-06-17 10:52:54 +02:00
|
|
|
MBEDTLS_CHECK_RETURN_CRITICAL
|
2023-01-11 14:50:10 +01:00
|
|
|
static int ssl_write_alpn_ext(mbedtls_ssl_context *ssl,
|
|
|
|
unsigned char *buf,
|
|
|
|
const unsigned char *end,
|
|
|
|
size_t *out_len)
|
2022-02-18 17:24:56 +01:00
|
|
|
{
|
|
|
|
unsigned char *p = buf;
|
|
|
|
|
|
|
|
*out_len = 0;
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
if (ssl->conf->alpn_list == NULL) {
|
|
|
|
return 0;
|
|
|
|
}
|
2022-02-18 17:24:56 +01:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
MBEDTLS_SSL_DEBUG_MSG(3, ("client hello, adding alpn extension"));
|
2022-02-18 17:24:56 +01:00
|
|
|
|
|
|
|
|
|
|
|
/* Check we have enough space for the extension type (2 bytes), the
|
|
|
|
* extension length (2 bytes) and the protocol_name_list length (2 bytes).
|
|
|
|
*/
|
2023-01-11 14:50:10 +01:00
|
|
|
MBEDTLS_SSL_CHK_BUF_PTR(p, end, 6);
|
|
|
|
MBEDTLS_PUT_UINT16_BE(MBEDTLS_TLS_EXT_ALPN, p, 0);
|
2022-02-18 17:24:56 +01:00
|
|
|
/* Skip writing extension and list length for now */
|
|
|
|
p += 6;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* opaque ProtocolName<1..2^8-1>;
|
|
|
|
*
|
|
|
|
* struct {
|
|
|
|
* ProtocolName protocol_name_list<2..2^16-1>
|
|
|
|
* } ProtocolNameList;
|
|
|
|
*/
|
2023-01-11 14:50:10 +01:00
|
|
|
for (const char **cur = ssl->conf->alpn_list; *cur != NULL; cur++) {
|
2022-02-18 17:24:56 +01:00
|
|
|
/*
|
|
|
|
* mbedtls_ssl_conf_set_alpn_protocols() checked that the length of
|
|
|
|
* protocol names is less than 255.
|
|
|
|
*/
|
2023-01-11 14:50:10 +01:00
|
|
|
size_t protocol_name_len = strlen(*cur);
|
2022-02-18 17:24:56 +01:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
MBEDTLS_SSL_CHK_BUF_PTR(p, end, 1 + protocol_name_len);
|
|
|
|
*p++ = (unsigned char) protocol_name_len;
|
|
|
|
memcpy(p, *cur, protocol_name_len);
|
2022-02-18 17:24:56 +01:00
|
|
|
p += protocol_name_len;
|
|
|
|
}
|
|
|
|
|
|
|
|
*out_len = p - buf;
|
|
|
|
|
|
|
|
/* List length = *out_len - 2 (ext_type) - 2 (ext_len) - 2 (list_len) */
|
2023-01-11 14:50:10 +01:00
|
|
|
MBEDTLS_PUT_UINT16_BE(*out_len - 6, buf, 4);
|
2022-02-18 17:24:56 +01:00
|
|
|
|
|
|
|
/* Extension length = *out_len - 2 (ext_type) - 2 (ext_len) */
|
2023-01-11 14:50:10 +01:00
|
|
|
MBEDTLS_PUT_UINT16_BE(*out_len - 4, buf, 2);
|
2022-02-18 17:24:56 +01:00
|
|
|
|
2022-08-29 09:25:36 +02:00
|
|
|
#if defined(MBEDTLS_SSL_PROTO_TLS1_3)
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_ssl_tls13_set_hs_sent_ext_mask(ssl, MBEDTLS_TLS_EXT_ALPN);
|
2022-08-29 09:25:36 +02:00
|
|
|
#endif /* MBEDTLS_SSL_PROTO_TLS1_3 */
|
2023-01-11 14:50:10 +01:00
|
|
|
return 0;
|
2022-02-18 17:24:56 +01:00
|
|
|
}
|
|
|
|
#endif /* MBEDTLS_SSL_ALPN */
|
|
|
|
|
2023-06-26 12:44:33 +02:00
|
|
|
#if defined(MBEDTLS_SSL_TLS1_2_SOME_ECC) || \
|
|
|
|
defined(MBEDTLS_SSL_TLS1_3_KEY_EXCHANGE_MODE_SOME_EPHEMERAL_ENABLED)
|
2022-03-17 15:22:07 +01:00
|
|
|
/*
|
|
|
|
* Function for writing a supported groups (TLS 1.3) or supported elliptic
|
|
|
|
* curves (TLS 1.2) extension.
|
|
|
|
*
|
|
|
|
* The "extension_data" field of a supported groups extension contains a
|
|
|
|
* "NamedGroupList" value (TLS 1.3 RFC8446):
|
|
|
|
* enum {
|
|
|
|
* secp256r1(0x0017), secp384r1(0x0018), secp521r1(0x0019),
|
|
|
|
* x25519(0x001D), x448(0x001E),
|
|
|
|
* ffdhe2048(0x0100), ffdhe3072(0x0101), ffdhe4096(0x0102),
|
|
|
|
* ffdhe6144(0x0103), ffdhe8192(0x0104),
|
|
|
|
* ffdhe_private_use(0x01FC..0x01FF),
|
|
|
|
* ecdhe_private_use(0xFE00..0xFEFF),
|
|
|
|
* (0xFFFF)
|
|
|
|
* } NamedGroup;
|
|
|
|
* struct {
|
|
|
|
* NamedGroup named_group_list<2..2^16-1>;
|
|
|
|
* } NamedGroupList;
|
|
|
|
*
|
|
|
|
* The "extension_data" field of a supported elliptic curves extension contains
|
|
|
|
* a "NamedCurveList" value (TLS 1.2 RFC 8422):
|
|
|
|
* enum {
|
|
|
|
* deprecated(1..22),
|
|
|
|
* secp256r1 (23), secp384r1 (24), secp521r1 (25),
|
|
|
|
* x25519(29), x448(30),
|
|
|
|
* reserved (0xFE00..0xFEFF),
|
|
|
|
* deprecated(0xFF01..0xFF02),
|
|
|
|
* (0xFFFF)
|
|
|
|
* } NamedCurve;
|
|
|
|
* struct {
|
|
|
|
* NamedCurve named_curve_list<2..2^16-1>
|
|
|
|
* } NamedCurveList;
|
|
|
|
*
|
|
|
|
* The TLS 1.3 supported groups extension was defined to be a compatible
|
|
|
|
* generalization of the TLS 1.2 supported elliptic curves extension. They both
|
|
|
|
* share the same extension identifier.
|
|
|
|
*
|
|
|
|
*/
|
2023-06-30 14:56:38 +02:00
|
|
|
#define SSL_WRITE_SUPPORTED_GROUPS_EXT_TLS1_2_FLAG 1
|
|
|
|
#define SSL_WRITE_SUPPORTED_GROUPS_EXT_TLS1_3_FLAG 2
|
|
|
|
|
2022-06-17 10:52:54 +02:00
|
|
|
MBEDTLS_CHECK_RETURN_CRITICAL
|
2023-01-11 14:50:10 +01:00
|
|
|
static int ssl_write_supported_groups_ext(mbedtls_ssl_context *ssl,
|
|
|
|
unsigned char *buf,
|
|
|
|
const unsigned char *end,
|
2023-06-30 14:56:38 +02:00
|
|
|
int flags,
|
2023-01-11 14:50:10 +01:00
|
|
|
size_t *out_len)
|
2022-03-17 15:22:07 +01:00
|
|
|
{
|
2023-01-11 14:50:10 +01:00
|
|
|
unsigned char *p = buf;
|
2022-03-17 15:22:07 +01:00
|
|
|
unsigned char *named_group_list; /* Start of named_group_list */
|
|
|
|
size_t named_group_list_len; /* Length of named_group_list */
|
2023-01-11 14:50:10 +01:00
|
|
|
const uint16_t *group_list = mbedtls_ssl_get_groups(ssl);
|
2022-03-17 15:22:07 +01:00
|
|
|
|
|
|
|
*out_len = 0;
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
MBEDTLS_SSL_DEBUG_MSG(3, ("client hello, adding supported_groups extension"));
|
2022-03-17 15:22:07 +01:00
|
|
|
|
|
|
|
/* Check if we have space for header and length fields:
|
|
|
|
* - extension_type (2 bytes)
|
|
|
|
* - extension_data_length (2 bytes)
|
|
|
|
* - named_group_list_length (2 bytes)
|
|
|
|
*/
|
2023-01-11 14:50:10 +01:00
|
|
|
MBEDTLS_SSL_CHK_BUF_PTR(p, end, 6);
|
2022-03-17 15:22:07 +01:00
|
|
|
p += 6;
|
|
|
|
|
|
|
|
named_group_list = p;
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
if (group_list == NULL) {
|
|
|
|
return MBEDTLS_ERR_SSL_BAD_CONFIG;
|
|
|
|
}
|
2022-03-17 15:22:07 +01:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
for (; *group_list != 0; group_list++) {
|
2023-06-30 14:56:38 +02:00
|
|
|
int propose_group = 0;
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
MBEDTLS_SSL_DEBUG_MSG(1, ("got supported group(%04x)", *group_list));
|
2022-03-17 15:22:07 +01:00
|
|
|
|
2023-06-30 14:56:38 +02:00
|
|
|
#if defined(MBEDTLS_SSL_TLS1_3_KEY_EXCHANGE_MODE_SOME_EPHEMERAL_ENABLED)
|
|
|
|
if (flags & SSL_WRITE_SUPPORTED_GROUPS_EXT_TLS1_3_FLAG) {
|
|
|
|
#if defined(PSA_WANT_ALG_ECDH)
|
|
|
|
if (mbedtls_ssl_tls13_named_group_is_ecdhe(*group_list) &&
|
|
|
|
(mbedtls_ssl_get_ecp_group_id_from_tls_id(*group_list) !=
|
|
|
|
MBEDTLS_ECP_DP_NONE)) {
|
|
|
|
propose_group = 1;
|
2022-12-30 17:44:24 +01:00
|
|
|
}
|
2023-06-30 14:56:38 +02:00
|
|
|
#endif
|
|
|
|
#if defined(PSA_WANT_ALG_FFDH)
|
2023-07-05 10:34:40 +02:00
|
|
|
if (mbedtls_ssl_tls13_named_group_is_ffdh(*group_list)) {
|
2023-06-30 14:56:38 +02:00
|
|
|
propose_group = 1;
|
|
|
|
}
|
|
|
|
#endif
|
2022-03-17 15:22:07 +01:00
|
|
|
}
|
2023-06-30 14:56:38 +02:00
|
|
|
#endif /* MBEDTLS_SSL_TLS1_3_KEY_EXCHANGE_MODE_SOME_EPHEMERAL_ENABLED */
|
|
|
|
|
|
|
|
#if defined(MBEDTLS_SSL_TLS1_2_SOME_ECC)
|
|
|
|
if ((flags & SSL_WRITE_SUPPORTED_GROUPS_EXT_TLS1_2_FLAG) &&
|
|
|
|
mbedtls_ssl_tls12_named_group_is_ecdhe(*group_list) &&
|
|
|
|
(mbedtls_ssl_get_ecp_group_id_from_tls_id(*group_list) !=
|
|
|
|
MBEDTLS_ECP_DP_NONE)) {
|
|
|
|
propose_group = 1;
|
|
|
|
}
|
|
|
|
#endif /* MBEDTLS_SSL_TLS1_2_SOME_ECC */
|
2023-06-13 11:49:11 +02:00
|
|
|
|
2023-06-30 14:56:38 +02:00
|
|
|
if (propose_group) {
|
2023-05-18 14:10:02 +02:00
|
|
|
MBEDTLS_SSL_CHK_BUF_PTR(p, end, 2);
|
|
|
|
MBEDTLS_PUT_UINT16_BE(*group_list, p, 0);
|
|
|
|
p += 2;
|
2023-06-30 14:56:38 +02:00
|
|
|
MBEDTLS_SSL_DEBUG_MSG(3, ("NamedGroup: %s ( %x )",
|
|
|
|
mbedtls_ssl_named_group_to_str(*group_list),
|
|
|
|
*group_list));
|
2023-05-18 14:31:10 +02:00
|
|
|
}
|
2022-03-17 15:22:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Length of named_group_list */
|
|
|
|
named_group_list_len = p - named_group_list;
|
2023-01-11 14:50:10 +01:00
|
|
|
if (named_group_list_len == 0) {
|
|
|
|
MBEDTLS_SSL_DEBUG_MSG(1, ("No group available."));
|
|
|
|
return MBEDTLS_ERR_SSL_INTERNAL_ERROR;
|
2022-03-17 15:22:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Write extension_type */
|
2023-01-11 14:50:10 +01:00
|
|
|
MBEDTLS_PUT_UINT16_BE(MBEDTLS_TLS_EXT_SUPPORTED_GROUPS, buf, 0);
|
2022-03-17 15:22:07 +01:00
|
|
|
/* Write extension_data_length */
|
2023-01-11 14:50:10 +01:00
|
|
|
MBEDTLS_PUT_UINT16_BE(named_group_list_len + 2, buf, 2);
|
2022-03-17 15:22:07 +01:00
|
|
|
/* Write length of named_group_list */
|
2023-01-11 14:50:10 +01:00
|
|
|
MBEDTLS_PUT_UINT16_BE(named_group_list_len, buf, 4);
|
2022-03-17 15:22:07 +01:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
MBEDTLS_SSL_DEBUG_BUF(3, "Supported groups extension",
|
|
|
|
buf + 4, named_group_list_len + 2);
|
2022-03-17 15:22:07 +01:00
|
|
|
|
|
|
|
*out_len = p - buf;
|
|
|
|
|
|
|
|
#if defined(MBEDTLS_SSL_PROTO_TLS1_3)
|
2022-10-31 06:31:22 +01:00
|
|
|
mbedtls_ssl_tls13_set_hs_sent_ext_mask(
|
2023-01-11 14:50:10 +01:00
|
|
|
ssl, MBEDTLS_TLS_EXT_SUPPORTED_GROUPS);
|
2022-03-17 15:22:07 +01:00
|
|
|
#endif /* MBEDTLS_SSL_PROTO_TLS1_3 */
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
return 0;
|
2022-03-17 15:22:07 +01:00
|
|
|
}
|
2023-06-26 12:44:33 +02:00
|
|
|
#endif /* MBEDTLS_SSL_TLS1_2_SOME_ECC ||
|
|
|
|
MBEDTLS_SSL_TLS1_3_KEY_EXCHANGE_MODE_SOME_EPHEMERAL_ENABLED */
|
2022-03-17 15:22:07 +01:00
|
|
|
|
2022-06-17 10:52:54 +02:00
|
|
|
MBEDTLS_CHECK_RETURN_CRITICAL
|
2022-02-18 17:29:39 +01:00
|
|
|
static int ssl_write_client_hello_cipher_suites(
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_ssl_context *ssl,
|
|
|
|
unsigned char *buf,
|
|
|
|
unsigned char *end,
|
|
|
|
int *tls12_uses_ec,
|
|
|
|
size_t *out_len)
|
2022-02-18 17:24:56 +01:00
|
|
|
{
|
|
|
|
unsigned char *p = buf;
|
|
|
|
const int *ciphersuite_list;
|
|
|
|
unsigned char *cipher_suites; /* Start of the cipher_suites list */
|
|
|
|
size_t cipher_suites_len;
|
|
|
|
|
2022-02-19 18:30:46 +01:00
|
|
|
*tls12_uses_ec = 0;
|
|
|
|
*out_len = 0;
|
2022-02-18 17:24:56 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Ciphersuite list
|
|
|
|
*
|
|
|
|
* This is a list of the symmetric cipher options supported by
|
|
|
|
* the client, specifically the record protection algorithm
|
|
|
|
* ( including secret key length ) and a hash to be used with
|
|
|
|
* HKDF, in descending order of client preference.
|
|
|
|
*/
|
|
|
|
ciphersuite_list = ssl->conf->ciphersuite_list;
|
|
|
|
|
|
|
|
/* Check there is space for the cipher suite list length (2 bytes). */
|
2023-01-11 14:50:10 +01:00
|
|
|
MBEDTLS_SSL_CHK_BUF_PTR(p, end, 2);
|
2022-02-18 17:24:56 +01:00
|
|
|
p += 2;
|
|
|
|
|
2022-03-31 14:13:57 +02:00
|
|
|
/* Write cipher_suites
|
|
|
|
* CipherSuite cipher_suites<2..2^16-2>;
|
|
|
|
*/
|
2022-02-18 17:24:56 +01:00
|
|
|
cipher_suites = p;
|
2023-01-11 14:50:10 +01:00
|
|
|
for (size_t i = 0; ciphersuite_list[i] != 0; i++) {
|
2022-02-18 17:24:56 +01:00
|
|
|
int cipher_suite = ciphersuite_list[i];
|
|
|
|
const mbedtls_ssl_ciphersuite_t *ciphersuite_info;
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
ciphersuite_info = mbedtls_ssl_ciphersuite_from_id(cipher_suite);
|
2022-02-19 18:30:46 +01:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
if (mbedtls_ssl_validate_ciphersuite(ssl, ciphersuite_info,
|
|
|
|
ssl->handshake->min_tls_version,
|
|
|
|
ssl->tls_version) != 0) {
|
2022-02-18 17:24:56 +01:00
|
|
|
continue;
|
2023-01-11 14:50:10 +01:00
|
|
|
}
|
2022-02-18 17:24:56 +01:00
|
|
|
|
2022-02-19 18:30:46 +01:00
|
|
|
#if defined(MBEDTLS_SSL_PROTO_TLS1_2) && \
|
2023-01-11 14:50:10 +01:00
|
|
|
(defined(MBEDTLS_ECDH_C) || defined(MBEDTLS_ECDSA_C) || \
|
|
|
|
defined(MBEDTLS_KEY_EXCHANGE_ECJPAKE_ENABLED))
|
|
|
|
*tls12_uses_ec |= mbedtls_ssl_ciphersuite_uses_ec(ciphersuite_info);
|
2022-02-19 18:30:46 +01:00
|
|
|
#endif
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
MBEDTLS_SSL_DEBUG_MSG(3, ("client hello, add ciphersuite: %04x, %s",
|
|
|
|
(unsigned int) cipher_suite,
|
|
|
|
ciphersuite_info->name));
|
2022-02-18 17:24:56 +01:00
|
|
|
|
|
|
|
/* Check there is space for the cipher suite identifier (2 bytes). */
|
2023-01-11 14:50:10 +01:00
|
|
|
MBEDTLS_SSL_CHK_BUF_PTR(p, end, 2);
|
|
|
|
MBEDTLS_PUT_UINT16_BE(cipher_suite, p, 0);
|
2022-02-18 17:24:56 +01:00
|
|
|
p += 2;
|
|
|
|
}
|
|
|
|
|
2022-02-19 18:30:46 +01:00
|
|
|
/*
|
|
|
|
* Add TLS_EMPTY_RENEGOTIATION_INFO_SCSV
|
|
|
|
*/
|
2022-10-06 19:30:10 +02:00
|
|
|
int renegotiating = 0;
|
2022-02-19 18:30:46 +01:00
|
|
|
#if defined(MBEDTLS_SSL_RENEGOTIATION)
|
2023-01-11 14:50:10 +01:00
|
|
|
renegotiating = (ssl->renego_status != MBEDTLS_SSL_INITIAL_HANDSHAKE);
|
2022-02-19 18:30:46 +01:00
|
|
|
#endif
|
2023-01-11 14:50:10 +01:00
|
|
|
if (!renegotiating) {
|
|
|
|
MBEDTLS_SSL_DEBUG_MSG(3, ("adding EMPTY_RENEGOTIATION_INFO_SCSV"));
|
|
|
|
MBEDTLS_SSL_CHK_BUF_PTR(p, end, 2);
|
|
|
|
MBEDTLS_PUT_UINT16_BE(MBEDTLS_SSL_EMPTY_RENEGOTIATION_INFO, p, 0);
|
2022-02-19 18:30:46 +01:00
|
|
|
p += 2;
|
|
|
|
}
|
|
|
|
|
2022-02-18 17:24:56 +01:00
|
|
|
/* Write the cipher_suites length in number of bytes */
|
|
|
|
cipher_suites_len = p - cipher_suites;
|
2023-01-11 14:50:10 +01:00
|
|
|
MBEDTLS_PUT_UINT16_BE(cipher_suites_len, buf, 0);
|
|
|
|
MBEDTLS_SSL_DEBUG_MSG(3,
|
|
|
|
("client hello, got %" MBEDTLS_PRINTF_SIZET " cipher suites",
|
|
|
|
cipher_suites_len/2));
|
2022-02-18 17:24:56 +01:00
|
|
|
|
|
|
|
/* Output the total length of cipher_suites field. */
|
|
|
|
*out_len = p - buf;
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
return 0;
|
2022-02-18 17:24:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2022-02-18 17:38:42 +01:00
|
|
|
* Structure of the TLS 1.3 ClientHello message:
|
2022-02-18 17:24:56 +01:00
|
|
|
*
|
|
|
|
* struct {
|
|
|
|
* ProtocolVersion legacy_version = 0x0303; // TLS v1.2
|
|
|
|
* Random random;
|
|
|
|
* opaque legacy_session_id<0..32>;
|
|
|
|
* CipherSuite cipher_suites<2..2^16-2>;
|
|
|
|
* opaque legacy_compression_methods<1..2^8-1>;
|
|
|
|
* Extension extensions<8..2^16-1>;
|
|
|
|
* } ClientHello;
|
2022-02-18 17:38:42 +01:00
|
|
|
*
|
|
|
|
* Structure of the (D)TLS 1.2 ClientHello message:
|
|
|
|
*
|
|
|
|
* struct {
|
|
|
|
* ProtocolVersion client_version;
|
|
|
|
* Random random;
|
|
|
|
* SessionID session_id;
|
|
|
|
* opaque cookie<0..2^8-1>; // DTLS 1.2 ONLY
|
|
|
|
* CipherSuite cipher_suites<2..2^16-2>;
|
|
|
|
* CompressionMethod compression_methods<1..2^8-1>;
|
|
|
|
* select (extensions_present) {
|
|
|
|
* case false:
|
|
|
|
* struct {};
|
|
|
|
* case true:
|
|
|
|
* Extension extensions<0..2^16-1>;
|
|
|
|
* };
|
|
|
|
* } ClientHello;
|
2022-02-18 17:24:56 +01:00
|
|
|
*/
|
2022-06-17 10:52:54 +02:00
|
|
|
MBEDTLS_CHECK_RETURN_CRITICAL
|
2023-01-11 14:50:10 +01:00
|
|
|
static int ssl_write_client_hello_body(mbedtls_ssl_context *ssl,
|
|
|
|
unsigned char *buf,
|
|
|
|
unsigned char *end,
|
|
|
|
size_t *out_len,
|
|
|
|
size_t *binders_len)
|
2022-02-18 17:24:56 +01:00
|
|
|
{
|
|
|
|
int ret;
|
2022-02-20 10:35:26 +01:00
|
|
|
mbedtls_ssl_handshake_params *handshake = ssl->handshake;
|
|
|
|
unsigned char *p = buf;
|
2022-02-18 17:24:56 +01:00
|
|
|
unsigned char *p_extensions_len; /* Pointer to extensions length */
|
|
|
|
size_t output_len; /* Length of buffer used by function */
|
|
|
|
size_t extensions_len; /* Length of the list of extensions*/
|
2022-02-20 10:35:26 +01:00
|
|
|
int tls12_uses_ec = 0;
|
2022-02-18 17:24:56 +01:00
|
|
|
|
|
|
|
*out_len = 0;
|
2022-07-05 10:21:43 +02:00
|
|
|
*binders_len = 0;
|
2022-02-18 17:24:56 +01:00
|
|
|
|
2022-02-20 10:35:26 +01:00
|
|
|
#if defined(MBEDTLS_SSL_PROTO_TLS1_2)
|
2022-03-30 20:24:51 +02:00
|
|
|
unsigned char propose_tls12 =
|
2023-01-11 14:50:10 +01:00
|
|
|
(handshake->min_tls_version <= MBEDTLS_SSL_VERSION_TLS1_2)
|
2022-03-30 20:24:51 +02:00
|
|
|
&&
|
2023-01-11 14:50:10 +01:00
|
|
|
(MBEDTLS_SSL_VERSION_TLS1_2 <= ssl->tls_version);
|
2022-02-20 10:35:26 +01:00
|
|
|
#endif
|
|
|
|
#if defined(MBEDTLS_SSL_PROTO_TLS1_3)
|
2022-03-30 20:24:51 +02:00
|
|
|
unsigned char propose_tls13 =
|
2023-01-11 14:50:10 +01:00
|
|
|
(handshake->min_tls_version <= MBEDTLS_SSL_VERSION_TLS1_3)
|
2022-03-30 20:24:51 +02:00
|
|
|
&&
|
2023-01-11 14:50:10 +01:00
|
|
|
(MBEDTLS_SSL_VERSION_TLS1_3 <= ssl->tls_version);
|
2022-02-20 10:35:26 +01:00
|
|
|
#endif
|
|
|
|
|
2022-02-18 17:24:56 +01:00
|
|
|
/*
|
2022-02-18 17:53:01 +01:00
|
|
|
* Write client_version (TLS 1.2) or legacy_version (TLS 1.3)
|
2022-02-18 17:24:56 +01:00
|
|
|
*
|
2022-02-18 17:53:01 +01:00
|
|
|
* In all cases this is the TLS 1.2 version.
|
2022-02-18 17:24:56 +01:00
|
|
|
*/
|
2023-01-11 14:50:10 +01:00
|
|
|
MBEDTLS_SSL_CHK_BUF_PTR(p, end, 2);
|
|
|
|
mbedtls_ssl_write_version(p, ssl->conf->transport,
|
|
|
|
MBEDTLS_SSL_VERSION_TLS1_2);
|
2022-02-18 17:24:56 +01:00
|
|
|
p += 2;
|
|
|
|
|
2022-02-18 18:41:08 +01:00
|
|
|
/* ...
|
|
|
|
* Random random;
|
|
|
|
* ...
|
|
|
|
*
|
|
|
|
* The random bytes have been prepared by ssl_prepare_client_hello() into
|
2022-02-20 10:35:26 +01:00
|
|
|
* the handshake->randbytes buffer and are copied here into the output
|
|
|
|
* buffer.
|
2022-02-18 18:41:08 +01:00
|
|
|
*/
|
2023-01-11 14:50:10 +01:00
|
|
|
MBEDTLS_SSL_CHK_BUF_PTR(p, end, MBEDTLS_CLIENT_HELLO_RANDOM_LEN);
|
|
|
|
memcpy(p, handshake->randbytes, MBEDTLS_CLIENT_HELLO_RANDOM_LEN);
|
|
|
|
MBEDTLS_SSL_DEBUG_BUF(3, "client hello, random bytes",
|
|
|
|
p, MBEDTLS_CLIENT_HELLO_RANDOM_LEN);
|
2022-02-18 17:24:56 +01:00
|
|
|
p += MBEDTLS_CLIENT_HELLO_RANDOM_LEN;
|
|
|
|
|
2022-02-19 17:32:53 +01:00
|
|
|
/* TLS 1.2:
|
|
|
|
* ...
|
|
|
|
* SessionID session_id;
|
|
|
|
* ...
|
|
|
|
* with
|
|
|
|
* opaque SessionID<0..32>;
|
2022-02-18 17:24:56 +01:00
|
|
|
*
|
2022-02-19 17:32:53 +01:00
|
|
|
* TLS 1.3:
|
|
|
|
* ...
|
|
|
|
* opaque legacy_session_id<0..32>;
|
|
|
|
* ...
|
|
|
|
*
|
2022-03-30 09:57:11 +02:00
|
|
|
* The (legacy) session identifier bytes have been prepared by
|
2022-02-19 17:32:53 +01:00
|
|
|
* ssl_prepare_client_hello() into the ssl->session_negotiate->id buffer
|
|
|
|
* and are copied here into the output buffer.
|
2022-02-18 17:24:56 +01:00
|
|
|
*/
|
2023-01-11 14:50:10 +01:00
|
|
|
MBEDTLS_SSL_CHK_BUF_PTR(p, end, ssl->session_negotiate->id_len + 1);
|
|
|
|
*p++ = (unsigned char) ssl->session_negotiate->id_len;
|
|
|
|
memcpy(p, ssl->session_negotiate->id, ssl->session_negotiate->id_len);
|
2022-02-18 17:24:56 +01:00
|
|
|
p += ssl->session_negotiate->id_len;
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
MBEDTLS_SSL_DEBUG_BUF(3, "session id", ssl->session_negotiate->id,
|
|
|
|
ssl->session_negotiate->id_len);
|
2022-02-18 17:24:56 +01:00
|
|
|
|
2022-02-19 18:11:26 +01:00
|
|
|
/* DTLS 1.2 ONLY
|
|
|
|
* ...
|
|
|
|
* opaque cookie<0..2^8-1>;
|
|
|
|
* ...
|
|
|
|
*/
|
|
|
|
#if defined(MBEDTLS_SSL_PROTO_TLS1_2) && defined(MBEDTLS_SSL_PROTO_DTLS)
|
2023-01-11 14:50:10 +01:00
|
|
|
if (ssl->conf->transport == MBEDTLS_SSL_TRANSPORT_DATAGRAM) {
|
2022-04-07 04:51:55 +02:00
|
|
|
#if !defined(MBEDTLS_SSL_PROTO_TLS1_3)
|
|
|
|
uint8_t cookie_len = 0;
|
|
|
|
#else
|
|
|
|
uint16_t cookie_len = 0;
|
|
|
|
#endif /* !MBEDTLS_SSL_PROTO_TLS1_3 */
|
2022-02-19 18:11:26 +01:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
if (handshake->cookie != NULL) {
|
|
|
|
MBEDTLS_SSL_DEBUG_BUF(3, "client hello, cookie",
|
|
|
|
handshake->cookie,
|
|
|
|
handshake->cookie_len);
|
2022-03-04 05:50:46 +01:00
|
|
|
cookie_len = handshake->cookie_len;
|
2022-02-19 18:11:26 +01:00
|
|
|
}
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
MBEDTLS_SSL_CHK_BUF_PTR(p, end, cookie_len + 1);
|
|
|
|
*p++ = (unsigned char) cookie_len;
|
|
|
|
if (cookie_len > 0) {
|
|
|
|
memcpy(p, handshake->cookie, cookie_len);
|
2022-02-19 18:11:26 +01:00
|
|
|
p += cookie_len;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif /* MBEDTLS_SSL_PROTO_TLS1_2 && MBEDTLS_SSL_PROTO_DTLS */
|
|
|
|
|
2022-02-18 17:24:56 +01:00
|
|
|
/* Write cipher_suites */
|
2023-01-11 14:50:10 +01:00
|
|
|
ret = ssl_write_client_hello_cipher_suites(ssl, p, end,
|
|
|
|
&tls12_uses_ec,
|
|
|
|
&output_len);
|
|
|
|
if (ret != 0) {
|
|
|
|
return ret;
|
|
|
|
}
|
2022-02-18 17:24:56 +01:00
|
|
|
p += output_len;
|
|
|
|
|
2022-02-20 10:24:39 +01:00
|
|
|
/* Write legacy_compression_methods (TLS 1.3) or
|
|
|
|
* compression_methods (TLS 1.2)
|
2022-02-18 17:24:56 +01:00
|
|
|
*
|
|
|
|
* For every TLS 1.3 ClientHello, this vector MUST contain exactly
|
|
|
|
* one byte set to zero, which corresponds to the 'null' compression
|
|
|
|
* method in prior versions of TLS.
|
2022-02-20 10:24:39 +01:00
|
|
|
*
|
|
|
|
* For TLS 1.2 ClientHello, for security reasons we do not support
|
|
|
|
* compression anymore, thus also just the 'null' compression method.
|
2022-02-18 17:24:56 +01:00
|
|
|
*/
|
2023-01-11 14:50:10 +01:00
|
|
|
MBEDTLS_SSL_CHK_BUF_PTR(p, end, 2);
|
2022-02-18 17:24:56 +01:00
|
|
|
*p++ = 1;
|
|
|
|
*p++ = MBEDTLS_SSL_COMPRESS_NULL;
|
|
|
|
|
|
|
|
/* Write extensions */
|
|
|
|
|
|
|
|
#if defined(MBEDTLS_SSL_PROTO_TLS1_3)
|
|
|
|
/* Keeping track of the included extensions */
|
2022-10-31 06:38:40 +01:00
|
|
|
handshake->sent_extensions = MBEDTLS_SSL_EXT_MASK_NONE;
|
2022-02-18 17:24:56 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/* First write extensions, then the total length */
|
2023-01-11 14:50:10 +01:00
|
|
|
MBEDTLS_SSL_CHK_BUF_PTR(p, end, 2);
|
2022-02-18 17:24:56 +01:00
|
|
|
p_extensions_len = p;
|
|
|
|
p += 2;
|
|
|
|
|
2022-03-29 18:57:54 +02:00
|
|
|
#if defined(MBEDTLS_SSL_SERVER_NAME_INDICATION)
|
|
|
|
/* Write server name extension */
|
2023-01-11 14:50:10 +01:00
|
|
|
ret = ssl_write_hostname_ext(ssl, p, end, &output_len);
|
|
|
|
if (ret != 0) {
|
|
|
|
return ret;
|
|
|
|
}
|
2022-02-18 17:24:56 +01:00
|
|
|
p += output_len;
|
2022-03-29 18:57:54 +02:00
|
|
|
#endif /* MBEDTLS_SSL_SERVER_NAME_INDICATION */
|
2022-02-18 17:24:56 +01:00
|
|
|
|
|
|
|
#if defined(MBEDTLS_SSL_ALPN)
|
2023-01-11 14:50:10 +01:00
|
|
|
ret = ssl_write_alpn_ext(ssl, p, end, &output_len);
|
|
|
|
if (ret != 0) {
|
|
|
|
return ret;
|
|
|
|
}
|
2022-02-18 17:24:56 +01:00
|
|
|
p += output_len;
|
|
|
|
#endif /* MBEDTLS_SSL_ALPN */
|
|
|
|
|
2022-03-29 18:57:54 +02:00
|
|
|
#if defined(MBEDTLS_SSL_PROTO_TLS1_3)
|
2023-01-11 14:50:10 +01:00
|
|
|
if (propose_tls13) {
|
|
|
|
ret = mbedtls_ssl_tls13_write_client_hello_exts(ssl, p, end,
|
|
|
|
&output_len);
|
|
|
|
if (ret != 0) {
|
|
|
|
return ret;
|
|
|
|
}
|
2022-02-20 10:35:26 +01:00
|
|
|
p += output_len;
|
|
|
|
}
|
2022-03-29 18:57:54 +02:00
|
|
|
#endif
|
|
|
|
|
2023-06-26 17:34:36 +02:00
|
|
|
#if defined(MBEDTLS_SSL_TLS1_2_SOME_ECC) || \
|
|
|
|
defined(MBEDTLS_SSL_TLS1_3_KEY_EXCHANGE_MODE_SOME_EPHEMERAL_ENABLED)
|
2023-06-30 14:56:38 +02:00
|
|
|
{
|
|
|
|
int ssl_write_supported_groups_ext_flags = 0;
|
|
|
|
|
|
|
|
#if defined(MBEDTLS_SSL_TLS1_3_KEY_EXCHANGE_MODE_SOME_EPHEMERAL_ENABLED)
|
|
|
|
if (propose_tls13 && mbedtls_ssl_conf_tls13_some_ephemeral_enabled(ssl)) {
|
|
|
|
ssl_write_supported_groups_ext_flags |=
|
|
|
|
SSL_WRITE_SUPPORTED_GROUPS_EXT_TLS1_3_FLAG;
|
|
|
|
}
|
2022-02-20 10:35:26 +01:00
|
|
|
#endif
|
2023-06-30 14:56:38 +02:00
|
|
|
#if defined(MBEDTLS_SSL_TLS1_2_SOME_ECC)
|
|
|
|
if (propose_tls12 && tls12_uses_ec) {
|
|
|
|
ssl_write_supported_groups_ext_flags |=
|
|
|
|
SSL_WRITE_SUPPORTED_GROUPS_EXT_TLS1_2_FLAG;
|
|
|
|
}
|
2022-02-20 10:35:26 +01:00
|
|
|
#endif
|
2023-06-30 14:56:38 +02:00
|
|
|
if (ssl_write_supported_groups_ext_flags != 0) {
|
|
|
|
ret = ssl_write_supported_groups_ext(ssl, p, end,
|
|
|
|
ssl_write_supported_groups_ext_flags,
|
|
|
|
&output_len);
|
|
|
|
if (ret != 0) {
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
p += output_len;
|
2023-01-11 14:50:10 +01:00
|
|
|
}
|
2022-02-18 17:24:56 +01:00
|
|
|
}
|
2023-06-26 17:34:36 +02:00
|
|
|
#endif /* MBEDTLS_SSL_TLS1_2_SOME_ECC ||
|
|
|
|
MBEDTLS_SSL_TLS1_3_KEY_EXCHANGE_MODE_SOME_EPHEMERAL_ENABLED */
|
2022-02-18 17:24:56 +01:00
|
|
|
|
2022-10-05 12:46:29 +02:00
|
|
|
#if defined(MBEDTLS_SSL_HANDSHAKE_WITH_CERT_ENABLED)
|
2023-01-11 14:50:10 +01:00
|
|
|
if (
|
2022-02-20 10:35:26 +01:00
|
|
|
#if defined(MBEDTLS_SSL_PROTO_TLS1_3)
|
2023-01-11 14:50:10 +01:00
|
|
|
(propose_tls13 && mbedtls_ssl_conf_tls13_ephemeral_enabled(ssl)) ||
|
2022-02-20 10:35:26 +01:00
|
|
|
#endif
|
|
|
|
#if defined(MBEDTLS_SSL_PROTO_TLS1_2)
|
|
|
|
propose_tls12 ||
|
|
|
|
#endif
|
2023-01-11 14:50:10 +01:00
|
|
|
0) {
|
|
|
|
ret = mbedtls_ssl_write_sig_alg_ext(ssl, p, end, &output_len);
|
|
|
|
if (ret != 0) {
|
|
|
|
return ret;
|
|
|
|
}
|
2022-02-18 17:24:56 +01:00
|
|
|
p += output_len;
|
|
|
|
}
|
2022-10-05 12:46:29 +02:00
|
|
|
#endif /* MBEDTLS_SSL_HANDSHAKE_WITH_CERT_ENABLED */
|
2022-02-18 17:24:56 +01:00
|
|
|
|
2022-02-20 10:35:26 +01:00
|
|
|
#if defined(MBEDTLS_SSL_PROTO_TLS1_2)
|
2023-01-11 14:50:10 +01:00
|
|
|
if (propose_tls12) {
|
|
|
|
ret = mbedtls_ssl_tls12_write_client_hello_exts(ssl, p, end,
|
|
|
|
tls12_uses_ec,
|
|
|
|
&output_len);
|
|
|
|
if (ret != 0) {
|
|
|
|
return ret;
|
|
|
|
}
|
2022-02-20 10:35:26 +01:00
|
|
|
p += output_len;
|
|
|
|
}
|
|
|
|
#endif /* MBEDTLS_SSL_PROTO_TLS1_2 */
|
2022-02-18 17:24:56 +01:00
|
|
|
|
2022-10-04 16:38:25 +02:00
|
|
|
#if defined(MBEDTLS_SSL_TLS1_3_KEY_EXCHANGE_MODE_SOME_PSK_ENABLED)
|
2022-07-19 11:51:50 +02:00
|
|
|
/* The "pre_shared_key" extension (RFC 8446 Section 4.2.11)
|
|
|
|
* MUST be the last extension in the ClientHello.
|
|
|
|
*/
|
2023-01-11 14:50:10 +01:00
|
|
|
if (propose_tls13 && mbedtls_ssl_conf_tls13_some_psk_enabled(ssl)) {
|
2022-07-21 04:26:21 +02:00
|
|
|
ret = mbedtls_ssl_tls13_write_identities_of_pre_shared_key_ext(
|
2023-01-11 14:50:10 +01:00
|
|
|
ssl, p, end, &output_len, binders_len);
|
|
|
|
if (ret != 0) {
|
|
|
|
return ret;
|
|
|
|
}
|
2022-07-05 10:21:43 +02:00
|
|
|
p += output_len;
|
|
|
|
}
|
2022-10-04 16:38:25 +02:00
|
|
|
#endif /* MBEDTLS_SSL_TLS1_3_KEY_EXCHANGE_MODE_SOME_PSK_ENABLED */
|
2022-07-05 10:21:43 +02:00
|
|
|
|
2022-02-18 17:24:56 +01:00
|
|
|
/* Write the length of the list of extensions. */
|
|
|
|
extensions_len = p - p_extensions_len - 2;
|
2022-02-20 10:35:26 +01:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
if (extensions_len == 0) {
|
|
|
|
p = p_extensions_len;
|
|
|
|
} else {
|
|
|
|
MBEDTLS_PUT_UINT16_BE(extensions_len, p_extensions_len, 0);
|
|
|
|
MBEDTLS_SSL_DEBUG_MSG(3, ("client hello, total extension length: %" \
|
|
|
|
MBEDTLS_PRINTF_SIZET, extensions_len));
|
|
|
|
MBEDTLS_SSL_DEBUG_BUF(3, "client hello extensions",
|
|
|
|
p_extensions_len, extensions_len);
|
2022-02-20 10:35:26 +01:00
|
|
|
}
|
2022-10-31 06:31:22 +01:00
|
|
|
|
|
|
|
#if defined(MBEDTLS_SSL_PROTO_TLS1_3)
|
2022-11-08 14:43:46 +01:00
|
|
|
MBEDTLS_SSL_PRINT_EXTS(
|
2023-01-11 14:50:10 +01:00
|
|
|
3, MBEDTLS_SSL_HS_CLIENT_HELLO, handshake->sent_extensions);
|
2022-10-31 06:31:22 +01:00
|
|
|
#endif
|
2022-02-18 17:24:56 +01:00
|
|
|
|
|
|
|
*out_len = p - buf;
|
2023-01-11 14:50:10 +01:00
|
|
|
return 0;
|
2022-02-18 17:24:56 +01:00
|
|
|
}
|
|
|
|
|
2022-06-17 10:52:54 +02:00
|
|
|
MBEDTLS_CHECK_RETURN_CRITICAL
|
2023-01-11 14:50:10 +01:00
|
|
|
static int ssl_generate_random(mbedtls_ssl_context *ssl)
|
2022-02-18 18:41:08 +01:00
|
|
|
{
|
|
|
|
int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
|
|
|
|
unsigned char *randbytes = ssl->handshake->randbytes;
|
|
|
|
size_t gmt_unix_time_len = 0;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Generate the random bytes
|
|
|
|
*
|
|
|
|
* TLS 1.2 case:
|
|
|
|
* struct {
|
|
|
|
* uint32 gmt_unix_time;
|
|
|
|
* opaque random_bytes[28];
|
|
|
|
* } Random;
|
|
|
|
*
|
|
|
|
* TLS 1.3 case:
|
|
|
|
* opaque Random[32];
|
|
|
|
*/
|
2023-01-11 14:50:10 +01:00
|
|
|
if (ssl->tls_version == MBEDTLS_SSL_VERSION_TLS1_2) {
|
2022-02-18 18:41:08 +01:00
|
|
|
#if defined(MBEDTLS_HAVE_TIME)
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_time_t gmt_unix_time = mbedtls_time(NULL);
|
|
|
|
MBEDTLS_PUT_UINT32_BE(gmt_unix_time, randbytes, 0);
|
2022-02-18 18:41:08 +01:00
|
|
|
gmt_unix_time_len = 4;
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
MBEDTLS_SSL_DEBUG_MSG(3,
|
|
|
|
("client hello, current time: %" MBEDTLS_PRINTF_LONGLONG,
|
|
|
|
(long long) gmt_unix_time));
|
2022-02-18 18:41:08 +01:00
|
|
|
#endif /* MBEDTLS_HAVE_TIME */
|
|
|
|
}
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
ret = ssl->conf->f_rng(ssl->conf->p_rng,
|
|
|
|
randbytes + gmt_unix_time_len,
|
|
|
|
MBEDTLS_CLIENT_HELLO_RANDOM_LEN - gmt_unix_time_len);
|
|
|
|
return ret;
|
2022-02-18 18:41:08 +01:00
|
|
|
}
|
2022-10-10 13:24:08 +02:00
|
|
|
|
2022-06-17 10:52:54 +02:00
|
|
|
MBEDTLS_CHECK_RETURN_CRITICAL
|
2023-01-11 14:50:10 +01:00
|
|
|
static int ssl_prepare_client_hello(mbedtls_ssl_context *ssl)
|
2022-02-18 17:24:56 +01:00
|
|
|
{
|
|
|
|
int ret;
|
2022-02-19 17:32:53 +01:00
|
|
|
size_t session_id_len;
|
2022-10-11 09:58:51 +02:00
|
|
|
mbedtls_ssl_session *session_negotiate = ssl->session_negotiate;
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
if (session_negotiate == NULL) {
|
|
|
|
return MBEDTLS_ERR_SSL_INTERNAL_ERROR;
|
|
|
|
}
|
2022-02-18 17:24:56 +01:00
|
|
|
|
2022-10-10 16:10:08 +02:00
|
|
|
#if defined(MBEDTLS_SSL_PROTO_TLS1_3) && \
|
|
|
|
defined(MBEDTLS_SSL_SESSION_TICKETS) && \
|
|
|
|
defined(MBEDTLS_HAVE_TIME)
|
2022-10-11 09:58:51 +02:00
|
|
|
|
2022-10-10 16:10:08 +02:00
|
|
|
/* Check if a tls13 ticket has been configured. */
|
2023-01-11 14:50:10 +01:00
|
|
|
if (ssl->handshake->resume != 0 &&
|
2022-10-11 09:58:51 +02:00
|
|
|
session_negotiate->tls_version == MBEDTLS_SSL_VERSION_TLS1_3 &&
|
2023-01-11 14:50:10 +01:00
|
|
|
session_negotiate->ticket != NULL) {
|
|
|
|
mbedtls_time_t now = mbedtls_time(NULL);
|
|
|
|
uint64_t age = (uint64_t) (now - session_negotiate->ticket_received);
|
|
|
|
if (session_negotiate->ticket_received > now ||
|
|
|
|
age > session_negotiate->ticket_lifetime) {
|
2022-10-10 16:10:08 +02:00
|
|
|
/* Without valid ticket, disable session resumption.*/
|
|
|
|
MBEDTLS_SSL_DEBUG_MSG(
|
2023-01-11 14:50:10 +01:00
|
|
|
3, ("Ticket expired, disable session resumption"));
|
2022-10-10 16:10:08 +02:00
|
|
|
ssl->handshake->resume = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif /* MBEDTLS_SSL_PROTO_TLS1_3 &&
|
|
|
|
MBEDTLS_SSL_SESSION_TICKETS &&
|
|
|
|
MBEDTLS_HAVE_TIME */
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
if (ssl->conf->f_rng == NULL) {
|
|
|
|
MBEDTLS_SSL_DEBUG_MSG(1, ("no RNG provided"));
|
|
|
|
return MBEDTLS_ERR_SSL_NO_RNG;
|
2022-02-18 17:24:56 +01:00
|
|
|
}
|
|
|
|
|
2022-02-18 17:45:10 +01:00
|
|
|
/* Bet on the highest configured version if we are not in a TLS 1.2
|
|
|
|
* renegotiation or session resumption.
|
|
|
|
*/
|
|
|
|
#if defined(MBEDTLS_SSL_RENEGOTIATION)
|
2023-01-11 14:50:10 +01:00
|
|
|
if (ssl->renego_status != MBEDTLS_SSL_INITIAL_HANDSHAKE) {
|
2022-04-08 01:07:11 +02:00
|
|
|
ssl->handshake->min_tls_version = ssl->tls_version;
|
2023-01-11 14:50:10 +01:00
|
|
|
} else
|
2022-02-18 17:45:10 +01:00
|
|
|
#endif
|
|
|
|
{
|
2023-01-11 14:50:10 +01:00
|
|
|
if (ssl->handshake->resume) {
|
|
|
|
ssl->tls_version = session_negotiate->tls_version;
|
|
|
|
ssl->handshake->min_tls_version = ssl->tls_version;
|
|
|
|
} else {
|
|
|
|
ssl->handshake->min_tls_version = ssl->conf->min_tls_version;
|
2022-02-18 17:45:10 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-02-18 18:41:08 +01:00
|
|
|
/*
|
2022-03-30 09:57:11 +02:00
|
|
|
* Generate the random bytes, except when responding to a verify request
|
2022-12-04 18:19:59 +01:00
|
|
|
* where we MUST reuse the previously generated random bytes
|
2022-03-30 09:57:11 +02:00
|
|
|
* (RFC 6347 4.2.1).
|
2022-02-18 18:41:08 +01:00
|
|
|
*/
|
|
|
|
#if defined(MBEDTLS_SSL_PROTO_DTLS)
|
2023-01-11 14:50:10 +01:00
|
|
|
if ((ssl->conf->transport != MBEDTLS_SSL_TRANSPORT_DATAGRAM) ||
|
|
|
|
(ssl->handshake->cookie == NULL))
|
2022-02-18 18:41:08 +01:00
|
|
|
#endif
|
2022-02-18 17:24:56 +01:00
|
|
|
{
|
2023-01-11 14:50:10 +01:00
|
|
|
ret = ssl_generate_random(ssl);
|
|
|
|
if (ret != 0) {
|
|
|
|
MBEDTLS_SSL_DEBUG_RET(1, "Random bytes generation failed", ret);
|
|
|
|
return ret;
|
2022-02-18 18:41:08 +01:00
|
|
|
}
|
2022-02-18 17:24:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2022-03-30 09:57:11 +02:00
|
|
|
* Prepare session identifier. At that point, the length of the session
|
|
|
|
* identifier in the SSL context `ssl->session_negotiate->id_len` is equal
|
|
|
|
* to zero, except in the case of a TLS 1.2 session renegotiation or
|
|
|
|
* session resumption.
|
2022-02-18 17:24:56 +01:00
|
|
|
*/
|
2022-10-11 09:58:51 +02:00
|
|
|
session_id_len = session_negotiate->id_len;
|
2022-02-19 17:32:53 +01:00
|
|
|
|
|
|
|
#if defined(MBEDTLS_SSL_PROTO_TLS1_2)
|
2023-01-11 14:50:10 +01:00
|
|
|
if (ssl->tls_version == MBEDTLS_SSL_VERSION_TLS1_2) {
|
|
|
|
if (session_id_len < 16 || session_id_len > 32 ||
|
2022-02-19 17:32:53 +01:00
|
|
|
#if defined(MBEDTLS_SSL_RENEGOTIATION)
|
|
|
|
ssl->renego_status != MBEDTLS_SSL_INITIAL_HANDSHAKE ||
|
|
|
|
#endif
|
2023-01-11 14:50:10 +01:00
|
|
|
ssl->handshake->resume == 0) {
|
2022-02-19 17:32:53 +01:00
|
|
|
session_id_len = 0;
|
2022-02-18 17:24:56 +01:00
|
|
|
}
|
2022-02-19 17:32:53 +01:00
|
|
|
|
|
|
|
#if defined(MBEDTLS_SSL_SESSION_TICKETS)
|
2023-01-11 14:50:10 +01:00
|
|
|
/*
|
|
|
|
* RFC 5077 section 3.4: "When presenting a ticket, the client MAY
|
|
|
|
* generate and include a Session ID in the TLS ClientHello."
|
|
|
|
*/
|
2022-10-06 19:30:10 +02:00
|
|
|
int renegotiating = 0;
|
2022-02-19 17:32:53 +01:00
|
|
|
#if defined(MBEDTLS_SSL_RENEGOTIATION)
|
2023-01-11 14:50:10 +01:00
|
|
|
if (ssl->renego_status != MBEDTLS_SSL_INITIAL_HANDSHAKE) {
|
2022-10-25 11:38:25 +02:00
|
|
|
renegotiating = 1;
|
2023-01-11 14:50:10 +01:00
|
|
|
}
|
2022-02-19 17:32:53 +01:00
|
|
|
#endif
|
2023-01-11 14:50:10 +01:00
|
|
|
if (!renegotiating) {
|
|
|
|
if ((session_negotiate->ticket != NULL) &&
|
|
|
|
(session_negotiate->ticket_len != 0)) {
|
2022-02-19 17:32:53 +01:00
|
|
|
session_id_len = 32;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif /* MBEDTLS_SSL_SESSION_TICKETS */
|
|
|
|
}
|
|
|
|
#endif /* MBEDTLS_SSL_PROTO_TLS1_2 */
|
|
|
|
|
|
|
|
#if defined(MBEDTLS_SSL_TLS1_3_COMPATIBILITY_MODE)
|
2023-01-11 14:50:10 +01:00
|
|
|
if (ssl->tls_version == MBEDTLS_SSL_VERSION_TLS1_3) {
|
2022-02-19 17:32:53 +01:00
|
|
|
/*
|
|
|
|
* Create a legacy session identifier for the purpose of middlebox
|
|
|
|
* compatibility only if one has not been created already, which is
|
|
|
|
* the case if we are here for the TLS 1.3 second ClientHello.
|
|
|
|
*
|
|
|
|
* Versions of TLS before TLS 1.3 supported a "session resumption"
|
|
|
|
* feature which has been merged with pre-shared keys in TLS 1.3
|
|
|
|
* version. A client which has a cached session ID set by a pre-TLS 1.3
|
|
|
|
* server SHOULD set this field to that value. In compatibility mode,
|
|
|
|
* this field MUST be non-empty, so a client not offering a pre-TLS 1.3
|
|
|
|
* session MUST generate a new 32-byte value. This value need not be
|
|
|
|
* random but SHOULD be unpredictable to avoid implementations fixating
|
|
|
|
* on a specific value (also known as ossification). Otherwise, it MUST
|
|
|
|
* be set as a zero-length vector ( i.e., a zero-valued single byte
|
|
|
|
* length field ).
|
|
|
|
*/
|
|
|
|
session_id_len = 32;
|
2022-02-18 17:24:56 +01:00
|
|
|
}
|
|
|
|
#endif /* MBEDTLS_SSL_TLS1_3_COMPATIBILITY_MODE */
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
if (session_id_len != session_negotiate->id_len) {
|
2022-10-11 09:58:51 +02:00
|
|
|
session_negotiate->id_len = session_id_len;
|
2023-01-11 14:50:10 +01:00
|
|
|
if (session_id_len > 0) {
|
|
|
|
ret = ssl->conf->f_rng(ssl->conf->p_rng,
|
|
|
|
session_negotiate->id,
|
|
|
|
session_id_len);
|
|
|
|
if (ret != 0) {
|
|
|
|
MBEDTLS_SSL_DEBUG_RET(1, "creating session id failed", ret);
|
|
|
|
return ret;
|
2022-02-19 17:32:53 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-10-09 13:14:39 +02:00
|
|
|
#if defined(MBEDTLS_SSL_PROTO_TLS1_3) && \
|
2022-10-12 04:49:52 +02:00
|
|
|
defined(MBEDTLS_SSL_SESSION_TICKETS) && \
|
2022-10-09 13:14:39 +02:00
|
|
|
defined(MBEDTLS_SSL_SERVER_NAME_INDICATION)
|
2023-01-11 14:50:10 +01:00
|
|
|
if (ssl->tls_version == MBEDTLS_SSL_VERSION_TLS1_3 &&
|
|
|
|
ssl->handshake->resume) {
|
2022-10-11 11:05:11 +02:00
|
|
|
int hostname_mismatch = ssl->hostname != NULL ||
|
2022-10-12 13:14:32 +02:00
|
|
|
session_negotiate->hostname != NULL;
|
2023-01-11 14:50:10 +01:00
|
|
|
if (ssl->hostname != NULL && session_negotiate->hostname != NULL) {
|
2022-10-11 11:05:11 +02:00
|
|
|
hostname_mismatch = strcmp(
|
2023-01-11 14:50:10 +01:00
|
|
|
ssl->hostname, session_negotiate->hostname) != 0;
|
2022-10-12 10:31:11 +02:00
|
|
|
}
|
2022-10-11 08:20:56 +02:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
if (hostname_mismatch) {
|
2022-10-12 08:58:13 +02:00
|
|
|
MBEDTLS_SSL_DEBUG_MSG(
|
2023-01-11 14:50:10 +01:00
|
|
|
1, ("Hostname mismatch the session ticket, "
|
|
|
|
"disable session resumption."));
|
|
|
|
return MBEDTLS_ERR_SSL_BAD_INPUT_DATA;
|
2022-10-09 13:14:39 +02:00
|
|
|
}
|
2023-01-11 14:50:10 +01:00
|
|
|
} else {
|
|
|
|
return mbedtls_ssl_session_set_hostname(session_negotiate,
|
|
|
|
ssl->hostname);
|
2022-10-12 04:49:52 +02:00
|
|
|
}
|
2022-10-09 13:14:39 +02:00
|
|
|
#endif /* MBEDTLS_SSL_PROTO_TLS1_3 &&
|
2022-10-12 04:49:52 +02:00
|
|
|
MBEDTLS_SSL_SESSION_TICKETS &&
|
2022-10-09 13:14:39 +02:00
|
|
|
MBEDTLS_SSL_SERVER_NAME_INDICATION */
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
return 0;
|
2022-02-18 17:24:56 +01:00
|
|
|
}
|
|
|
|
/*
|
|
|
|
* Write ClientHello handshake message.
|
|
|
|
* Handler for MBEDTLS_SSL_CLIENT_HELLO
|
|
|
|
*/
|
2023-01-11 14:50:10 +01:00
|
|
|
int mbedtls_ssl_write_client_hello(mbedtls_ssl_context *ssl)
|
2022-02-18 17:24:56 +01:00
|
|
|
{
|
|
|
|
int ret = 0;
|
|
|
|
unsigned char *buf;
|
2022-07-05 10:21:43 +02:00
|
|
|
size_t buf_len, msg_len, binders_len;
|
2022-02-18 17:24:56 +01:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
MBEDTLS_SSL_DEBUG_MSG(2, ("=> write client hello"));
|
2022-02-18 17:24:56 +01:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
MBEDTLS_SSL_PROC_CHK(ssl_prepare_client_hello(ssl));
|
2022-02-18 17:24:56 +01:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
MBEDTLS_SSL_PROC_CHK(mbedtls_ssl_start_handshake_msg(
|
|
|
|
ssl, MBEDTLS_SSL_HS_CLIENT_HELLO,
|
|
|
|
&buf, &buf_len));
|
2022-02-18 17:24:56 +01:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
MBEDTLS_SSL_PROC_CHK(ssl_write_client_hello_body(ssl, buf,
|
|
|
|
buf + buf_len,
|
|
|
|
&msg_len,
|
|
|
|
&binders_len));
|
2022-02-18 17:24:56 +01:00
|
|
|
|
2022-02-21 09:50:36 +01:00
|
|
|
#if defined(MBEDTLS_SSL_PROTO_TLS1_2) && defined(MBEDTLS_SSL_PROTO_DTLS)
|
2023-01-11 14:50:10 +01:00
|
|
|
if (ssl->conf->transport == MBEDTLS_SSL_TRANSPORT_DATAGRAM) {
|
2022-02-21 09:50:36 +01:00
|
|
|
ssl->out_msglen = msg_len + 4;
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_ssl_send_flight_completed(ssl);
|
2022-02-21 09:50:36 +01:00
|
|
|
|
2022-03-29 12:26:54 +02:00
|
|
|
/*
|
|
|
|
* The two functions below may try to send data on the network and
|
|
|
|
* can return with the MBEDTLS_ERR_SSL_WANT_READ error code when they
|
|
|
|
* fail to do so and the transmission has to be retried later. In that
|
2022-03-30 09:57:11 +02:00
|
|
|
* case as in fatal error cases, we return immediately. But we must have
|
2022-03-29 12:26:54 +02:00
|
|
|
* set the handshake state to the next state at that point to ensure
|
|
|
|
* that we will not write and send again a ClientHello when we
|
|
|
|
* eventually succeed in sending the pending data.
|
|
|
|
*/
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_ssl_handshake_set_state(ssl, MBEDTLS_SSL_SERVER_HELLO);
|
2022-03-29 12:26:54 +02:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
if ((ret = mbedtls_ssl_write_handshake_msg(ssl)) != 0) {
|
|
|
|
MBEDTLS_SSL_DEBUG_RET(1, "mbedtls_ssl_write_handshake_msg", ret);
|
|
|
|
return ret;
|
2022-02-21 09:50:36 +01:00
|
|
|
}
|
2022-02-18 17:24:56 +01:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
if ((ret = mbedtls_ssl_flight_transmit(ssl)) != 0) {
|
|
|
|
MBEDTLS_SSL_DEBUG_RET(1, "mbedtls_ssl_flight_transmit", ret);
|
|
|
|
return ret;
|
2022-02-21 09:50:36 +01:00
|
|
|
}
|
2023-01-11 14:50:10 +01:00
|
|
|
} else
|
2022-02-21 09:50:36 +01:00
|
|
|
#endif /* MBEDTLS_SSL_PROTO_TLS1_2 && MBEDTLS_SSL_PROTO_DTLS */
|
|
|
|
{
|
2022-07-05 10:21:43 +02:00
|
|
|
|
2023-02-06 00:34:21 +01:00
|
|
|
ret = mbedtls_ssl_add_hs_hdr_to_checksum(ssl,
|
|
|
|
MBEDTLS_SSL_HS_CLIENT_HELLO,
|
|
|
|
msg_len);
|
|
|
|
if (ret != 0) {
|
|
|
|
MBEDTLS_SSL_DEBUG_RET(1, "mbedtls_ssl_add_hs_hdr_to_checksum", ret);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
ret = ssl->handshake->update_checksum(ssl, buf, msg_len - binders_len);
|
|
|
|
if (ret != 0) {
|
|
|
|
MBEDTLS_SSL_DEBUG_RET(1, "update_checksum", ret);
|
|
|
|
return ret;
|
|
|
|
}
|
2022-10-04 16:38:25 +02:00
|
|
|
#if defined(MBEDTLS_SSL_TLS1_3_KEY_EXCHANGE_MODE_SOME_PSK_ENABLED)
|
2023-01-11 14:50:10 +01:00
|
|
|
if (binders_len > 0) {
|
2022-07-05 10:21:43 +02:00
|
|
|
MBEDTLS_SSL_PROC_CHK(
|
2022-07-19 11:51:50 +02:00
|
|
|
mbedtls_ssl_tls13_write_binders_of_pre_shared_key_ext(
|
2023-01-11 14:50:10 +01:00
|
|
|
ssl, buf + msg_len - binders_len, buf + msg_len));
|
2023-02-06 00:34:21 +01:00
|
|
|
ret = ssl->handshake->update_checksum(ssl, buf + msg_len - binders_len,
|
2023-02-06 11:48:19 +01:00
|
|
|
binders_len);
|
2023-02-06 00:34:21 +01:00
|
|
|
if (ret != 0) {
|
|
|
|
MBEDTLS_SSL_DEBUG_RET(1, "update_checksum", ret);
|
|
|
|
return ret;
|
|
|
|
}
|
2022-07-05 10:21:43 +02:00
|
|
|
}
|
2022-10-04 16:38:25 +02:00
|
|
|
#endif /* MBEDTLS_SSL_TLS1_3_KEY_EXCHANGE_MODE_SOME_PSK_ENABLED */
|
2022-07-05 10:21:43 +02:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
MBEDTLS_SSL_PROC_CHK(mbedtls_ssl_finish_handshake_msg(ssl,
|
|
|
|
buf_len,
|
|
|
|
msg_len));
|
2022-12-15 15:42:45 +01:00
|
|
|
|
2023-02-02 07:57:26 +01:00
|
|
|
/*
|
|
|
|
* Set next state. Note that if TLS 1.3 is proposed, this may be
|
2023-02-06 11:23:04 +01:00
|
|
|
* overwritten by mbedtls_ssl_tls13_finalize_client_hello().
|
2023-02-02 07:57:26 +01:00
|
|
|
*/
|
|
|
|
mbedtls_ssl_handshake_set_state(ssl, MBEDTLS_SSL_SERVER_HELLO);
|
|
|
|
|
2023-01-04 08:38:50 +01:00
|
|
|
#if defined(MBEDTLS_SSL_PROTO_TLS1_3)
|
2023-02-02 07:57:26 +01:00
|
|
|
if (ssl->handshake->min_tls_version <= MBEDTLS_SSL_VERSION_TLS1_3 &&
|
|
|
|
MBEDTLS_SSL_VERSION_TLS1_3 <= ssl->tls_version) {
|
2023-02-06 11:23:04 +01:00
|
|
|
ret = mbedtls_ssl_tls13_finalize_client_hello(ssl);
|
2023-01-28 11:35:29 +01:00
|
|
|
}
|
2023-02-02 07:57:26 +01:00
|
|
|
#endif
|
2022-12-15 15:42:45 +01:00
|
|
|
}
|
2022-02-18 17:24:56 +01:00
|
|
|
|
|
|
|
cleanup:
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
MBEDTLS_SSL_DEBUG_MSG(2, ("<= write client hello"));
|
2022-02-18 17:24:56 +01:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* MBEDTLS_SSL_PROTO_TLS1_3 || MBEDTLS_SSL_PROTO_TLS1_2 */
|
|
|
|
#endif /* MBEDTLS_SSL_CLI_C */
|