blob: 1a81796469b410eaa7b9fa61aefc3f15a48a3256 [file] [log] [blame]
Manuel Pégourié-Gonnard5e94dde2015-05-26 11:57:05 +02001/**
Chris Jones84a773f2021-03-05 18:38:47 +00002 * \file ssl_misc.h
Manuel Pégourié-Gonnard5e94dde2015-05-26 11:57:05 +02003 *
4 * \brief Internal functions shared by the SSL modules
Darryl Greena40a1012018-01-05 15:33:17 +00005 */
6/*
Bence Szépkúti1e148272020-08-07 13:07:28 +02007 * Copyright The Mbed TLS Contributors
Manuel Pégourié-Gonnard37ff1402015-09-04 14:21:07 +02008 * SPDX-License-Identifier: Apache-2.0
9 *
10 * Licensed under the Apache License, Version 2.0 (the "License"); you may
11 * not use this file except in compliance with the License.
12 * You may obtain a copy of the License at
13 *
14 * http://www.apache.org/licenses/LICENSE-2.0
15 *
16 * Unless required by applicable law or agreed to in writing, software
17 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
18 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19 * See the License for the specific language governing permissions and
20 * limitations under the License.
Manuel Pégourié-Gonnard5e94dde2015-05-26 11:57:05 +020021 */
Chris Jones84a773f2021-03-05 18:38:47 +000022#ifndef MBEDTLS_SSL_MISC_H
23#define MBEDTLS_SSL_MISC_H
Manuel Pégourié-Gonnard5e94dde2015-05-26 11:57:05 +020024
Bence Szépkútic662b362021-05-27 11:25:03 +020025#include "mbedtls/build_info.h"
Andrzej Kurekc470b6b2019-01-31 08:20:20 -050026
Jaeden Amero6609aef2019-07-04 20:01:14 +010027#include "mbedtls/ssl.h"
28#include "mbedtls/cipher.h"
Manuel Pégourié-Gonnard5e94dde2015-05-26 11:57:05 +020029
Przemyslaw Stekielb15f33d2022-02-10 10:12:12 +010030#if defined(MBEDTLS_USE_PSA_CRYPTO) || defined(MBEDTLS_SSL_PROTO_TLS1_3)
Andrzej Kurekeb342242019-01-29 09:14:33 -050031#include "psa/crypto.h"
Przemyslaw Stekielb15f33d2022-02-10 10:12:12 +010032#include "mbedtls/psa_util.h"
Andrzej Kurekeb342242019-01-29 09:14:33 -050033#endif
34
Manuel Pégourié-Gonnard56273da2015-05-26 12:19:45 +020035#if defined(MBEDTLS_MD5_C)
Jaeden Amero6609aef2019-07-04 20:01:14 +010036#include "mbedtls/md5.h"
Manuel Pégourié-Gonnard56273da2015-05-26 12:19:45 +020037#endif
38
39#if defined(MBEDTLS_SHA1_C)
Jaeden Amero6609aef2019-07-04 20:01:14 +010040#include "mbedtls/sha1.h"
Manuel Pégourié-Gonnard56273da2015-05-26 12:19:45 +020041#endif
42
43#if defined(MBEDTLS_SHA256_C)
Jaeden Amero6609aef2019-07-04 20:01:14 +010044#include "mbedtls/sha256.h"
Manuel Pégourié-Gonnard56273da2015-05-26 12:19:45 +020045#endif
46
47#if defined(MBEDTLS_SHA512_C)
Jaeden Amero6609aef2019-07-04 20:01:14 +010048#include "mbedtls/sha512.h"
Manuel Pégourié-Gonnard56273da2015-05-26 12:19:45 +020049#endif
50
Manuel Pégourié-Gonnardeef142d2015-09-16 10:05:04 +020051#if defined(MBEDTLS_KEY_EXCHANGE_ECJPAKE_ENABLED)
Jaeden Amero6609aef2019-07-04 20:01:14 +010052#include "mbedtls/ecjpake.h"
Manuel Pégourié-Gonnard76cfd3f2015-09-15 12:10:54 +020053#endif
54
Jerry Yu1bab3012022-01-19 17:43:22 +080055#include "common.h"
56
Manuel Pégourié-Gonnard0223ab92015-10-05 11:40:01 +010057#if ( defined(__ARMCC_VERSION) || defined(_MSC_VER) ) && \
58 !defined(inline) && !defined(__cplusplus)
Manuel Pégourié-Gonnard065122c2015-05-26 12:31:46 +020059#define inline __inline
Manuel Pégourié-Gonnard20af64d2015-07-07 18:33:39 +020060#endif
Manuel Pégourié-Gonnard065122c2015-05-26 12:31:46 +020061
Manuel Pégourié-Gonnardcac90a12021-06-04 11:42:30 +020062/* Legacy minor version numbers as defined by:
63 * - RFC 2246: ProtocolVersion version = { 3, 1 }; // TLS v1.0
64 * - RFC 4346: ProtocolVersion version = { 3, 2 }; // TLS v1.1
65 *
66 * We no longer support these versions, but some code still references those
TRodziewicz458280e2021-07-07 11:33:06 +020067 * constants as part of negotiating with the peer, so keep them available
68 * internally.
Manuel Pégourié-Gonnardcac90a12021-06-04 11:42:30 +020069 */
70#define MBEDTLS_SSL_MINOR_VERSION_1 1
71#define MBEDTLS_SSL_MINOR_VERSION_2 2
72
Manuel Pégourié-Gonnard065122c2015-05-26 12:31:46 +020073/* Determine minimum supported version */
74#define MBEDTLS_SSL_MIN_MAJOR_VERSION MBEDTLS_SSL_MAJOR_VERSION_3
75
Manuel Pégourié-Gonnard065122c2015-05-26 12:31:46 +020076#if defined(MBEDTLS_SSL_PROTO_TLS1_2)
77#define MBEDTLS_SSL_MIN_MINOR_VERSION MBEDTLS_SSL_MINOR_VERSION_3
Jerry Yuc3091b12021-12-23 14:57:39 +080078#elif defined(MBEDTLS_SSL_PROTO_TLS1_3)
79#define MBEDTLS_SSL_MIN_MINOR_VERSION MBEDTLS_SSL_MINOR_VERSION_4
80#endif /* MBEDTLS_SSL_PROTO_TLS1_3 */
Manuel Pégourié-Gonnard065122c2015-05-26 12:31:46 +020081
82/* Determine maximum supported version */
83#define MBEDTLS_SSL_MAX_MAJOR_VERSION MBEDTLS_SSL_MAJOR_VERSION_3
84
Jerry Yu7d239632022-01-27 14:16:44 +080085#if defined(MBEDTLS_SSL_PROTO_TLS1_3)
Jerry Yuc5aef882021-12-23 20:15:02 +080086#define MBEDTLS_SSL_MAX_MINOR_VERSION MBEDTLS_SSL_MINOR_VERSION_4
Jerry Yu7d239632022-01-27 14:16:44 +080087#elif defined(MBEDTLS_SSL_PROTO_TLS1_2)
88#define MBEDTLS_SSL_MAX_MINOR_VERSION MBEDTLS_SSL_MINOR_VERSION_3
Manuel Pégourié-Gonnard065122c2015-05-26 12:31:46 +020089#endif /* MBEDTLS_SSL_PROTO_TLS1_2 */
90
Manuel Pégourié-Gonnard862cde52017-05-17 11:56:15 +020091/* Shorthand for restartable ECC */
Manuel Pégourié-Gonnard2350b4e2017-05-16 09:26:48 +020092#if defined(MBEDTLS_ECP_RESTARTABLE) && \
93 defined(MBEDTLS_SSL_CLI_C) && \
94 defined(MBEDTLS_SSL_PROTO_TLS1_2) && \
95 defined(MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA_ENABLED)
Gilles Peskineeccd8882020-03-10 12:19:08 +010096#define MBEDTLS_SSL_ECP_RESTARTABLE_ENABLED
Manuel Pégourié-Gonnard2350b4e2017-05-16 09:26:48 +020097#endif
98
Manuel Pégourié-Gonnard065122c2015-05-26 12:31:46 +020099#define MBEDTLS_SSL_INITIAL_HANDSHAKE 0
100#define MBEDTLS_SSL_RENEGOTIATION_IN_PROGRESS 1 /* In progress */
101#define MBEDTLS_SSL_RENEGOTIATION_DONE 2 /* Done or aborted */
102#define MBEDTLS_SSL_RENEGOTIATION_PENDING 3 /* Requested (server only) */
103
104/*
Jerry Yu8e7ca042021-08-26 15:31:37 +0800105 * Mask of TLS 1.3 handshake extensions used in extensions_present
106 * of mbedtls_ssl_handshake_params.
107 */
108#define MBEDTLS_SSL_EXT_NONE 0
109
110#define MBEDTLS_SSL_EXT_SERVERNAME ( 1 << 0 )
111#define MBEDTLS_SSL_EXT_MAX_FRAGMENT_LENGTH ( 1 << 1 )
112#define MBEDTLS_SSL_EXT_STATUS_REQUEST ( 1 << 2 )
113#define MBEDTLS_SSL_EXT_SUPPORTED_GROUPS ( 1 << 3 )
114#define MBEDTLS_SSL_EXT_SIG_ALG ( 1 << 4 )
115#define MBEDTLS_SSL_EXT_USE_SRTP ( 1 << 5 )
116#define MBEDTLS_SSL_EXT_HEARTBEAT ( 1 << 6 )
117#define MBEDTLS_SSL_EXT_ALPN ( 1 << 7 )
118#define MBEDTLS_SSL_EXT_SCT ( 1 << 8 )
Jerry Yu995ecd32021-08-30 17:53:49 +0800119#define MBEDTLS_SSL_EXT_CLI_CERT_TYPE ( 1 << 9 )
120#define MBEDTLS_SSL_EXT_SERV_CERT_TYPE ( 1 << 10 )
Jerry Yu8e7ca042021-08-26 15:31:37 +0800121#define MBEDTLS_SSL_EXT_PADDING ( 1 << 11 )
122#define MBEDTLS_SSL_EXT_PRE_SHARED_KEY ( 1 << 12 )
123#define MBEDTLS_SSL_EXT_EARLY_DATA ( 1 << 13 )
124#define MBEDTLS_SSL_EXT_SUPPORTED_VERSIONS ( 1 << 14 )
125#define MBEDTLS_SSL_EXT_COOKIE ( 1 << 15 )
126#define MBEDTLS_SSL_EXT_PSK_KEY_EXCHANGE_MODES ( 1 << 16 )
127#define MBEDTLS_SSL_EXT_CERT_AUTH ( 1 << 17 )
128#define MBEDTLS_SSL_EXT_OID_FILTERS ( 1 << 18 )
129#define MBEDTLS_SSL_EXT_POST_HANDSHAKE_AUTH ( 1 << 19 )
130#define MBEDTLS_SSL_EXT_SIG_ALG_CERT ( 1 << 20 )
131#define MBEDTLS_SSL_EXT_KEY_SHARE ( 1 << 21 )
Jerry Yu93bcd612021-08-18 12:47:24 +0800132
Jerry Yu5cc8f0a2021-08-27 17:21:44 +0800133/*
Jerry Yu8c02bb42021-09-03 21:09:22 +0800134 * Helper macros for function call with return check.
Jerry Yu5cc8f0a2021-08-27 17:21:44 +0800135 */
Jerry Yu5cc8f0a2021-08-27 17:21:44 +0800136/*
Jerry Yu8c02bb42021-09-03 21:09:22 +0800137 * Exit when return non-zero value
Jerry Yu5cc8f0a2021-08-27 17:21:44 +0800138 */
Jerry Yu2c0fbf32021-09-02 13:53:46 +0800139#define MBEDTLS_SSL_PROC_CHK( f ) \
Jerry Yu65dd2cc2021-08-18 16:38:40 +0800140 do { \
Jerry Yu2c0fbf32021-09-02 13:53:46 +0800141 ret = ( f ); \
Jerry Yu65dd2cc2021-08-18 16:38:40 +0800142 if( ret != 0 ) \
143 { \
Jerry Yu65dd2cc2021-08-18 16:38:40 +0800144 goto cleanup; \
145 } \
146 } while( 0 )
Jerry Yu5cc8f0a2021-08-27 17:21:44 +0800147/*
Jerry Yu8c02bb42021-09-03 21:09:22 +0800148 * Exit when return negative value
Jerry Yu5cc8f0a2021-08-27 17:21:44 +0800149 */
Jerry Yu2c0fbf32021-09-02 13:53:46 +0800150#define MBEDTLS_SSL_PROC_CHK_NEG( f ) \
Jerry Yu65dd2cc2021-08-18 16:38:40 +0800151 do { \
Jerry Yu2c0fbf32021-09-02 13:53:46 +0800152 ret = ( f ); \
Jerry Yu65dd2cc2021-08-18 16:38:40 +0800153 if( ret < 0 ) \
154 { \
Jerry Yu65dd2cc2021-08-18 16:38:40 +0800155 goto cleanup; \
156 } \
157 } while( 0 )
158
Manuel Pégourié-Gonnard065122c2015-05-26 12:31:46 +0200159/*
160 * DTLS retransmission states, see RFC 6347 4.2.4
161 *
162 * The SENDING state is merged in PREPARING for initial sends,
163 * but is distinct for resends.
164 *
165 * Note: initial state is wrong for server, but is not used anyway.
166 */
167#define MBEDTLS_SSL_RETRANS_PREPARING 0
168#define MBEDTLS_SSL_RETRANS_SENDING 1
169#define MBEDTLS_SSL_RETRANS_WAITING 2
170#define MBEDTLS_SSL_RETRANS_FINISHED 3
171
172/*
173 * Allow extra bytes for record, authentication and encryption overhead:
Mateusz Starzyka3a99842021-02-19 14:27:22 +0100174 * counter (8) + header (5) + IV(16) + MAC (16-48) + padding (0-256).
Manuel Pégourié-Gonnard065122c2015-05-26 12:31:46 +0200175 */
Manuel Pégourié-Gonnard065122c2015-05-26 12:31:46 +0200176
TRodziewicz4ca18aa2021-05-20 14:46:20 +0200177#if defined(MBEDTLS_SSL_PROTO_TLS1_2)
Hanno Becker0cc46612020-11-30 08:56:52 +0000178
Manuel Pégourié-Gonnard05579c42020-07-31 12:53:39 +0200179/* This macro determines whether CBC is supported. */
Manuel Pégourié-Gonnard2df1f1f2020-07-09 12:11:39 +0200180#if defined(MBEDTLS_CIPHER_MODE_CBC) && \
181 ( defined(MBEDTLS_AES_C) || \
182 defined(MBEDTLS_CAMELLIA_C) || \
183 defined(MBEDTLS_ARIA_C) || \
184 defined(MBEDTLS_DES_C) )
185#define MBEDTLS_SSL_SOME_SUITES_USE_CBC
186#endif
187
Hanno Becker0cc46612020-11-30 08:56:52 +0000188/* This macro determines whether a ciphersuite using a
189 * stream cipher can be used. */
190#if defined(MBEDTLS_CIPHER_NULL_CIPHER)
191#define MBEDTLS_SSL_SOME_SUITES_USE_STREAM
192#endif
193
TRodziewicz0f82ec62021-05-12 17:49:18 +0200194/* This macro determines whether the CBC construct used in TLS 1.2 is supported. */
Manuel Pégourié-Gonnarded0e8642020-07-21 11:20:30 +0200195#if defined(MBEDTLS_SSL_SOME_SUITES_USE_CBC) && \
TRodziewicz0f82ec62021-05-12 17:49:18 +0200196 defined(MBEDTLS_SSL_PROTO_TLS1_2)
Manuel Pégourié-Gonnarded0e8642020-07-21 11:20:30 +0200197#define MBEDTLS_SSL_SOME_SUITES_USE_TLS_CBC
198#endif
199
Hanno Becker31351ce2021-03-22 11:05:58 +0000200#if defined(MBEDTLS_SSL_SOME_SUITES_USE_STREAM) || \
Manuel Pégourié-Gonnard2df1f1f2020-07-09 12:11:39 +0200201 defined(MBEDTLS_SSL_SOME_SUITES_USE_CBC)
Hanno Beckerfd86ca82020-11-30 08:54:23 +0000202#define MBEDTLS_SSL_SOME_SUITES_USE_MAC
Hanno Becker52344c22018-01-03 15:24:20 +0000203#endif
204
TRodziewicz4ca18aa2021-05-20 14:46:20 +0200205#endif /* MBEDTLS_SSL_PROTO_TLS1_2 */
Hanno Becker0cc46612020-11-30 08:56:52 +0000206
Hanno Beckerfd86ca82020-11-30 08:54:23 +0000207#if defined(MBEDTLS_SSL_SOME_SUITES_USE_MAC)
Manuel Pégourié-Gonnard065122c2015-05-26 12:31:46 +0200208/* Ciphersuites using HMAC */
Mateusz Starzykc6d94ab2021-05-19 13:31:59 +0200209#if defined(MBEDTLS_SHA384_C)
Manuel Pégourié-Gonnard065122c2015-05-26 12:31:46 +0200210#define MBEDTLS_SSL_MAC_ADD 48 /* SHA-384 used for HMAC */
211#elif defined(MBEDTLS_SHA256_C)
212#define MBEDTLS_SSL_MAC_ADD 32 /* SHA-256 used for HMAC */
213#else
214#define MBEDTLS_SSL_MAC_ADD 20 /* SHA-1 used for HMAC */
215#endif
Hanno Beckerfd86ca82020-11-30 08:54:23 +0000216#else /* MBEDTLS_SSL_SOME_SUITES_USE_MAC */
Manuel Pégourié-Gonnard065122c2015-05-26 12:31:46 +0200217/* AEAD ciphersuites: GCM and CCM use a 128 bits tag */
218#define MBEDTLS_SSL_MAC_ADD 16
219#endif
220
221#if defined(MBEDTLS_CIPHER_MODE_CBC)
222#define MBEDTLS_SSL_PADDING_ADD 256
223#else
224#define MBEDTLS_SSL_PADDING_ADD 0
225#endif
226
Hanno Beckera0e20d02019-05-15 14:03:01 +0100227#if defined(MBEDTLS_SSL_DTLS_CONNECTION_ID)
TRodziewicze8dd7092021-05-12 14:19:11 +0200228#define MBEDTLS_SSL_MAX_CID_EXPANSION MBEDTLS_SSL_CID_TLS1_3_PADDING_GRANULARITY
Hanno Becker6cbad552019-05-08 15:40:11 +0100229#else
230#define MBEDTLS_SSL_MAX_CID_EXPANSION 0
231#endif
232
Mateusz Starzyka3a99842021-02-19 14:27:22 +0100233#define MBEDTLS_SSL_PAYLOAD_OVERHEAD ( MBEDTLS_MAX_IV_LENGTH + \
Angus Grattond8213d02016-05-25 20:56:48 +1000234 MBEDTLS_SSL_MAC_ADD + \
Hanno Becker6cbad552019-05-08 15:40:11 +0100235 MBEDTLS_SSL_PADDING_ADD + \
236 MBEDTLS_SSL_MAX_CID_EXPANSION \
Angus Grattond8213d02016-05-25 20:56:48 +1000237 )
238
239#define MBEDTLS_SSL_IN_PAYLOAD_LEN ( MBEDTLS_SSL_PAYLOAD_OVERHEAD + \
240 ( MBEDTLS_SSL_IN_CONTENT_LEN ) )
241
242#define MBEDTLS_SSL_OUT_PAYLOAD_LEN ( MBEDTLS_SSL_PAYLOAD_OVERHEAD + \
243 ( MBEDTLS_SSL_OUT_CONTENT_LEN ) )
244
Hanno Becker0271f962018-08-16 13:23:47 +0100245/* The maximum number of buffered handshake messages. */
Hanno Beckerd488b9e2018-08-16 16:35:37 +0100246#define MBEDTLS_SSL_MAX_BUFFERED_HS 4
Hanno Becker0271f962018-08-16 13:23:47 +0100247
Angus Grattond8213d02016-05-25 20:56:48 +1000248/* Maximum length we can advertise as our max content length for
249 RFC 6066 max_fragment_length extension negotiation purposes
250 (the lesser of both sizes, if they are unequal.)
251 */
252#define MBEDTLS_TLS_EXT_ADV_CONTENT_LEN ( \
253 (MBEDTLS_SSL_IN_CONTENT_LEN > MBEDTLS_SSL_OUT_CONTENT_LEN) \
254 ? ( MBEDTLS_SSL_OUT_CONTENT_LEN ) \
255 : ( MBEDTLS_SSL_IN_CONTENT_LEN ) \
256 )
Manuel Pégourié-Gonnard065122c2015-05-26 12:31:46 +0200257
Jerry Yu4131ec12022-01-19 10:36:30 +0800258/* Maximum size in bytes of list in signature algorithms ext., RFC 5246/8446 */
259#define MBEDTLS_SSL_MAX_SIG_ALG_LIST_LEN 65534
260
Jerry Yu8afd6e42022-01-20 15:54:26 +0800261/* Minimum size in bytes of list in signature algorithms ext., RFC 5246/8446 */
Jerry Yu4131ec12022-01-19 10:36:30 +0800262#define MBEDTLS_SSL_MIN_SIG_ALG_LIST_LEN 2
Hanno Beckere131bfe2017-04-12 14:54:42 +0100263
264/* Maximum size in bytes of list in supported elliptic curve ext., RFC 4492 */
265#define MBEDTLS_SSL_MAX_CURVE_LIST_LEN 65535
266
Xiaofei Baif5b4d252022-01-28 06:37:15 +0000267#define MBEDTLS_RECEIVED_SIG_ALGS_SIZE 20
Xiaofei Bai82f0a9a2022-01-26 09:21:54 +0000268
Manuel Pégourié-Gonnard065122c2015-05-26 12:31:46 +0200269/*
Hanno Beckera8434e82017-09-18 10:54:39 +0100270 * Check that we obey the standard's message size bounds
271 */
272
David Horstmann95d516f2021-05-04 18:36:56 +0100273#if MBEDTLS_SSL_IN_CONTENT_LEN > 16384
274#error "Bad configuration - incoming record content too large."
Hanno Beckera8434e82017-09-18 10:54:39 +0100275#endif
276
David Horstmann95d516f2021-05-04 18:36:56 +0100277#if MBEDTLS_SSL_OUT_CONTENT_LEN > 16384
278#error "Bad configuration - outgoing record content too large."
Hanno Beckera8434e82017-09-18 10:54:39 +0100279#endif
280
David Horstmann95d516f2021-05-04 18:36:56 +0100281#if MBEDTLS_SSL_IN_PAYLOAD_LEN > MBEDTLS_SSL_IN_CONTENT_LEN + 2048
Angus Grattond8213d02016-05-25 20:56:48 +1000282#error "Bad configuration - incoming protected record payload too large."
283#endif
284
David Horstmann95d516f2021-05-04 18:36:56 +0100285#if MBEDTLS_SSL_OUT_PAYLOAD_LEN > MBEDTLS_SSL_OUT_CONTENT_LEN + 2048
Angus Grattond8213d02016-05-25 20:56:48 +1000286#error "Bad configuration - outgoing protected record payload too large."
287#endif
288
289/* Calculate buffer sizes */
290
Hanno Becker25d6d1a2017-12-07 08:22:51 +0000291/* Note: Even though the TLS record header is only 5 bytes
292 long, we're internally using 8 bytes to store the
293 implicit sequence number. */
Hanno Beckerd25d4442017-10-04 13:56:42 +0100294#define MBEDTLS_SSL_HEADER_LEN 13
Hanno Beckera8434e82017-09-18 10:54:39 +0100295
Andrzej Kurek033c42a2020-03-03 05:57:59 -0500296#if !defined(MBEDTLS_SSL_DTLS_CONNECTION_ID)
Angus Grattond8213d02016-05-25 20:56:48 +1000297#define MBEDTLS_SSL_IN_BUFFER_LEN \
298 ( ( MBEDTLS_SSL_HEADER_LEN ) + ( MBEDTLS_SSL_IN_PAYLOAD_LEN ) )
Hanno Becker6cbad552019-05-08 15:40:11 +0100299#else
300#define MBEDTLS_SSL_IN_BUFFER_LEN \
301 ( ( MBEDTLS_SSL_HEADER_LEN ) + ( MBEDTLS_SSL_IN_PAYLOAD_LEN ) \
302 + ( MBEDTLS_SSL_CID_IN_LEN_MAX ) )
303#endif
Angus Grattond8213d02016-05-25 20:56:48 +1000304
Andrzej Kurek033c42a2020-03-03 05:57:59 -0500305#if !defined(MBEDTLS_SSL_DTLS_CONNECTION_ID)
Angus Grattond8213d02016-05-25 20:56:48 +1000306#define MBEDTLS_SSL_OUT_BUFFER_LEN \
307 ( ( MBEDTLS_SSL_HEADER_LEN ) + ( MBEDTLS_SSL_OUT_PAYLOAD_LEN ) )
Hanno Becker6cbad552019-05-08 15:40:11 +0100308#else
309#define MBEDTLS_SSL_OUT_BUFFER_LEN \
310 ( ( MBEDTLS_SSL_HEADER_LEN ) + ( MBEDTLS_SSL_OUT_PAYLOAD_LEN ) \
311 + ( MBEDTLS_SSL_CID_OUT_LEN_MAX ) )
312#endif
Angus Grattond8213d02016-05-25 20:56:48 +1000313
Jerry Yue6d7e5c2021-10-26 10:44:32 +0800314#define MBEDTLS_CLIENT_HELLO_RANDOM_LEN 32
315#define MBEDTLS_SERVER_HELLO_RANDOM_LEN 32
316
Hanno Becker9752aad2021-04-21 05:54:33 +0100317#if defined(MBEDTLS_SSL_MAX_FRAGMENT_LENGTH)
318/**
319 * \brief Return the maximum fragment length (payload, in bytes) for
320 * the output buffer. For the client, this is the configured
321 * value. For the server, it is the minimum of two - the
322 * configured value and the negotiated one.
323 *
324 * \sa mbedtls_ssl_conf_max_frag_len()
325 * \sa mbedtls_ssl_get_max_out_record_payload()
326 *
327 * \param ssl SSL context
328 *
329 * \return Current maximum fragment length for the output buffer.
330 */
331size_t mbedtls_ssl_get_output_max_frag_len( const mbedtls_ssl_context *ssl );
332
333/**
334 * \brief Return the maximum fragment length (payload, in bytes) for
335 * the input buffer. This is the negotiated maximum fragment
Hanno Beckerdf3b8632021-06-08 05:30:45 +0100336 * length, or, if there is none, MBEDTLS_SSL_IN_CONTENT_LEN.
Hanno Becker9752aad2021-04-21 05:54:33 +0100337 * If it is not defined either, the value is 2^14. This function
338 * works as its predecessor, \c mbedtls_ssl_get_max_frag_len().
339 *
340 * \sa mbedtls_ssl_conf_max_frag_len()
341 * \sa mbedtls_ssl_get_max_in_record_payload()
342 *
343 * \param ssl SSL context
344 *
345 * \return Current maximum fragment length for the output buffer.
346 */
347size_t mbedtls_ssl_get_input_max_frag_len( const mbedtls_ssl_context *ssl );
348#endif /* MBEDTLS_SSL_MAX_FRAGMENT_LENGTH */
349
Andrzej Kurek0afa2a12020-03-03 10:39:58 -0500350#if defined(MBEDTLS_SSL_VARIABLE_BUFFER_LENGTH)
Andrzej Kurek069fa962021-01-07 08:02:15 -0500351static inline size_t mbedtls_ssl_get_output_buflen( const mbedtls_ssl_context *ctx )
Andrzej Kurek0afa2a12020-03-03 10:39:58 -0500352{
353#if defined (MBEDTLS_SSL_DTLS_CONNECTION_ID)
Andrzej Kurek069fa962021-01-07 08:02:15 -0500354 return mbedtls_ssl_get_output_max_frag_len( ctx )
Andrzej Kurek0afa2a12020-03-03 10:39:58 -0500355 + MBEDTLS_SSL_HEADER_LEN + MBEDTLS_SSL_PAYLOAD_OVERHEAD
356 + MBEDTLS_SSL_CID_OUT_LEN_MAX;
357#else
Andrzej Kurek069fa962021-01-07 08:02:15 -0500358 return mbedtls_ssl_get_output_max_frag_len( ctx )
Andrzej Kurek0afa2a12020-03-03 10:39:58 -0500359 + MBEDTLS_SSL_HEADER_LEN + MBEDTLS_SSL_PAYLOAD_OVERHEAD;
360#endif
361}
362
Andrzej Kurek069fa962021-01-07 08:02:15 -0500363static inline size_t mbedtls_ssl_get_input_buflen( const mbedtls_ssl_context *ctx )
Andrzej Kurek0afa2a12020-03-03 10:39:58 -0500364{
365#if defined (MBEDTLS_SSL_DTLS_CONNECTION_ID)
Andrzej Kurek069fa962021-01-07 08:02:15 -0500366 return mbedtls_ssl_get_input_max_frag_len( ctx )
Andrzej Kurek0afa2a12020-03-03 10:39:58 -0500367 + MBEDTLS_SSL_HEADER_LEN + MBEDTLS_SSL_PAYLOAD_OVERHEAD
368 + MBEDTLS_SSL_CID_IN_LEN_MAX;
369#else
Andrzej Kurek069fa962021-01-07 08:02:15 -0500370 return mbedtls_ssl_get_input_max_frag_len( ctx )
Andrzej Kurek0afa2a12020-03-03 10:39:58 -0500371 + MBEDTLS_SSL_HEADER_LEN + MBEDTLS_SSL_PAYLOAD_OVERHEAD;
372#endif
373}
374#endif
375
Hanno Beckera8434e82017-09-18 10:54:39 +0100376/*
Manuel Pégourié-Gonnard065122c2015-05-26 12:31:46 +0200377 * TLS extension flags (for extensions with outgoing ServerHello content
378 * that need it (e.g. for RENEGOTIATION_INFO the server already knows because
379 * of state of the renegotiation flag, so no indicator is required)
380 */
381#define MBEDTLS_TLS_EXT_SUPPORTED_POINT_FORMATS_PRESENT (1 << 0)
Manuel Pégourié-Gonnardbf57be62015-09-16 15:04:01 +0200382#define MBEDTLS_TLS_EXT_ECJPAKE_KKPP_OK (1 << 1)
Manuel Pégourié-Gonnard065122c2015-05-26 12:31:46 +0200383
Hanno Becker51018aa2017-04-12 14:54:42 +0100384/**
385 * \brief This function checks if the remaining size in a buffer is
386 * greater or equal than a needed space.
387 *
388 * \param cur Pointer to the current position in the buffer.
389 * \param end Pointer to one past the end of the buffer.
390 * \param need Needed space in bytes.
391 *
Ronald Cronb7b35e12020-06-11 09:50:51 +0200392 * \return Zero if the needed space is available in the buffer, non-zero
Hanno Becker51018aa2017-04-12 14:54:42 +0100393 * otherwise.
394 */
395static inline int mbedtls_ssl_chk_buf_ptr( const uint8_t *cur,
396 const uint8_t *end, size_t need )
397{
Ronald Cronb7b35e12020-06-11 09:50:51 +0200398 return( ( cur > end ) || ( need > (size_t)( end - cur ) ) );
Hanno Becker51018aa2017-04-12 14:54:42 +0100399}
400
401/**
402 * \brief This macro checks if the remaining size in a buffer is
403 * greater or equal than a needed space. If it is not the case,
404 * it returns an SSL_BUFFER_TOO_SMALL error.
405 *
406 * \param cur Pointer to the current position in the buffer.
407 * \param end Pointer to one past the end of the buffer.
408 * \param need Needed space in bytes.
409 *
410 */
411#define MBEDTLS_SSL_CHK_BUF_PTR( cur, end, need ) \
412 do { \
Ronald Cronb7b35e12020-06-11 09:50:51 +0200413 if( mbedtls_ssl_chk_buf_ptr( ( cur ), ( end ), ( need ) ) != 0 ) \
Hanno Becker51018aa2017-04-12 14:54:42 +0100414 { \
415 return( MBEDTLS_ERR_SSL_BUFFER_TOO_SMALL ); \
416 } \
417 } while( 0 )
418
Jerry Yu34da3722021-09-19 18:05:08 +0800419/**
Jerry Yue15e6652021-09-28 21:06:07 +0800420 * \brief This macro checks if the remaining length in an input buffer is
421 * greater or equal than a needed length. If it is not the case, it
Jerry Yu205fd822021-10-08 16:16:24 +0800422 * returns #MBEDTLS_ERR_SSL_DECODE_ERROR error and pends a
Jerry Yudca3d5d2021-10-08 14:19:29 +0800423 * #MBEDTLS_SSL_ALERT_MSG_DECODE_ERROR alert message.
Jerry Yue4eefc72021-10-09 10:40:40 +0800424 *
425 * This is a function-like macro. It is guaranteed to evaluate each
426 * argument exactly once.
Jerry Yu34da3722021-09-19 18:05:08 +0800427 *
428 * \param cur Pointer to the current position in the buffer.
429 * \param end Pointer to one past the end of the buffer.
Jerry Yue15e6652021-09-28 21:06:07 +0800430 * \param need Needed length in bytes.
Jerry Yu34da3722021-09-19 18:05:08 +0800431 *
432 */
433#define MBEDTLS_SSL_CHK_BUF_READ_PTR( cur, end, need ) \
434 do { \
435 if( mbedtls_ssl_chk_buf_ptr( ( cur ), ( end ), ( need ) ) != 0 ) \
436 { \
437 MBEDTLS_SSL_DEBUG_MSG( 1, \
438 ( "missing input data in %s", __func__ ) ); \
439 MBEDTLS_SSL_PEND_FATAL_ALERT( MBEDTLS_SSL_ALERT_MSG_DECODE_ERROR, \
440 MBEDTLS_ERR_SSL_DECODE_ERROR ); \
441 return( MBEDTLS_ERR_SSL_DECODE_ERROR ); \
442 } \
443 } while( 0 )
444
Manuel Pégourié-Gonnard5e94dde2015-05-26 11:57:05 +0200445#ifdef __cplusplus
446extern "C" {
447#endif
448
Hanno Becker7e5437a2017-04-28 17:15:26 +0100449#if defined(MBEDTLS_SSL_PROTO_TLS1_2) && \
Gilles Peskineeccd8882020-03-10 12:19:08 +0100450 defined(MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED)
Hanno Becker7e5437a2017-04-28 17:15:26 +0100451/*
452 * Abstraction for a grid of allowed signature-hash-algorithm pairs.
453 */
454struct mbedtls_ssl_sig_hash_set_t
455{
456 /* At the moment, we only need to remember a single suitable
457 * hash algorithm per signature algorithm. As long as that's
458 * the case - and we don't need a general lookup function -
459 * we can implement the sig-hash-set as a map from signatures
460 * to hash algorithms. */
461 mbedtls_md_type_t rsa;
462 mbedtls_md_type_t ecdsa;
463};
464#endif /* MBEDTLS_SSL_PROTO_TLS1_2 &&
Gilles Peskineeccd8882020-03-10 12:19:08 +0100465 MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED */
Hanno Becker7e5437a2017-04-28 17:15:26 +0100466
Ron Eldor51d3ab52019-05-12 14:54:30 +0300467typedef int mbedtls_ssl_tls_prf_cb( const unsigned char *secret, size_t slen,
468 const char *label,
469 const unsigned char *random, size_t rlen,
470 unsigned char *dstbuf, size_t dlen );
Hanno Becker3385a4d2020-08-21 13:03:34 +0100471
Hanno Becker61baae72020-09-16 09:24:14 +0100472/* cipher.h exports the maximum IV, key and block length from
Hanno Becker15889832020-09-08 11:29:11 +0100473 * all ciphers enabled in the config, regardless of whether those
474 * ciphers are actually usable in SSL/TLS. Notably, XTS is enabled
475 * in the default configuration and uses 64 Byte keys, but it is
476 * not used for record protection in SSL/TLS.
477 *
478 * In order to prevent unnecessary inflation of key structures,
479 * we introduce SSL-specific variants of the max-{key,block,IV}
480 * macros here which are meant to only take those ciphers into
481 * account which can be negotiated in SSL/TLS.
482 *
483 * Since the current definitions of MBEDTLS_MAX_{KEY|BLOCK|IV}_LENGTH
484 * in cipher.h are rough overapproximations of the real maxima, here
Hanno Becker9a7a2ac2020-09-09 09:24:54 +0100485 * we content ourselves with replicating those overapproximations
Hanno Becker15889832020-09-08 11:29:11 +0100486 * for the maximum block and IV length, and excluding XTS from the
487 * computation of the maximum key length. */
488#define MBEDTLS_SSL_MAX_BLOCK_LENGTH 16
489#define MBEDTLS_SSL_MAX_IV_LENGTH 16
490#define MBEDTLS_SSL_MAX_KEY_LENGTH 32
491
Hanno Becker3385a4d2020-08-21 13:03:34 +0100492/**
493 * \brief The data structure holding the cryptographic material (key and IV)
494 * used for record protection in TLS 1.3.
495 */
496struct mbedtls_ssl_key_set
497{
498 /*! The key for client->server records. */
Hanno Becker15889832020-09-08 11:29:11 +0100499 unsigned char client_write_key[ MBEDTLS_SSL_MAX_KEY_LENGTH ];
Hanno Becker3385a4d2020-08-21 13:03:34 +0100500 /*! The key for server->client records. */
Hanno Becker15889832020-09-08 11:29:11 +0100501 unsigned char server_write_key[ MBEDTLS_SSL_MAX_KEY_LENGTH ];
Hanno Becker3385a4d2020-08-21 13:03:34 +0100502 /*! The IV for client->server records. */
Hanno Becker15889832020-09-08 11:29:11 +0100503 unsigned char client_write_iv[ MBEDTLS_SSL_MAX_IV_LENGTH ];
Hanno Becker3385a4d2020-08-21 13:03:34 +0100504 /*! The IV for server->client records. */
Hanno Becker15889832020-09-08 11:29:11 +0100505 unsigned char server_write_iv[ MBEDTLS_SSL_MAX_IV_LENGTH ];
Hanno Becker3385a4d2020-08-21 13:03:34 +0100506
Hanno Becker493ea7f2020-09-08 11:01:00 +0100507 size_t key_len; /*!< The length of client_write_key and
508 * server_write_key, in Bytes. */
509 size_t iv_len; /*!< The length of client_write_iv and
510 * server_write_iv, in Bytes. */
Hanno Becker3385a4d2020-08-21 13:03:34 +0100511};
512typedef struct mbedtls_ssl_key_set mbedtls_ssl_key_set;
Hanno Becker3385a4d2020-08-21 13:03:34 +0100513
Jerry Yu61e35e02021-09-16 18:59:08 +0800514typedef struct
515{
Jerry Yuf532bb22021-10-13 10:34:03 +0800516 unsigned char binder_key [ MBEDTLS_TLS1_3_MD_MAX_SIZE ];
517 unsigned char client_early_traffic_secret [ MBEDTLS_TLS1_3_MD_MAX_SIZE ];
518 unsigned char early_exporter_master_secret[ MBEDTLS_TLS1_3_MD_MAX_SIZE ];
Xiaofei Bai746f9482021-11-12 08:53:56 +0000519} mbedtls_ssl_tls13_early_secrets;
Jerry Yu61e35e02021-09-16 18:59:08 +0800520
521typedef struct
522{
Jerry Yuf532bb22021-10-13 10:34:03 +0800523 unsigned char client_handshake_traffic_secret[ MBEDTLS_TLS1_3_MD_MAX_SIZE ];
524 unsigned char server_handshake_traffic_secret[ MBEDTLS_TLS1_3_MD_MAX_SIZE ];
Xiaofei Bai746f9482021-11-12 08:53:56 +0000525} mbedtls_ssl_tls13_handshake_secrets;
Jerry Yu61e35e02021-09-16 18:59:08 +0800526
Manuel Pégourié-Gonnardcd4fcc62015-05-26 12:11:48 +0200527/*
528 * This structure contains the parameters only needed during handshake.
529 */
530struct mbedtls_ssl_handshake_params
531{
Gilles Peskineec45c1e2021-11-29 12:18:09 +0100532 /* Frequently-used boolean or byte fields (placed early to take
533 * advantage of smaller code size for indirect access on Arm Thumb) */
Gilles Peskineec45c1e2021-11-29 12:18:09 +0100534 uint8_t resume; /*!< session resume indicator*/
535 uint8_t cli_exts; /*!< client extension presence*/
536
Ronald Cron82c785f2022-03-31 15:44:41 +0200537#if defined(MBEDTLS_SSL_CLI_C)
Ronald Cronbdb4f582022-03-31 15:37:44 +0200538 /*!< Minimum minor version to be negotiated.
539 *
540 * It is set up in the ClientHello writing preparation stage and used
541 * throughout the ClientHello writing. Not relevant anymore as soon as
542 * the protocol version has been negotiated thus as soon as the
543 * ServerHello is received.
544 * For a fresh handshake not linked to any previous handshake, it is
545 * equal to the configured minimum minor version to be negotiated. When
546 * renegotiating or resuming a session, it is equal to the previously
547 * negotiated minor version.
548 *
549 * There is no maximum minor version field in this handshake context.
550 * From the start of the handshake, we need to define a current protocol
551 * version for the record layer which we define as the maximum minor
552 * version to be negotiated. The `minor_ver` field of the SSL context is
553 * used to store this maximum value until it contains the actual
554 * negotiated value.
555 */
Ronald Cron86a477f2022-02-18 17:45:10 +0100556 unsigned char min_minor_ver;
Ronald Cron82c785f2022-03-31 15:44:41 +0200557#endif
Ronald Cron86a477f2022-02-18 17:45:10 +0100558
Gilles Peskineec45c1e2021-11-29 12:18:09 +0100559#if defined(MBEDTLS_SSL_SERVER_NAME_INDICATION)
560 uint8_t sni_authmode; /*!< authmode from SNI callback */
561#endif
562
563#if defined(MBEDTLS_SSL_SESSION_TICKETS)
564 uint8_t new_session_ticket; /*!< use NewSessionTicket? */
565#endif /* MBEDTLS_SSL_SESSION_TICKETS */
566
567#if defined(MBEDTLS_SSL_EXTENDED_MASTER_SECRET)
568 uint8_t extended_ms; /*!< use Extended Master Secret? */
569#endif
570
571#if defined(MBEDTLS_SSL_ASYNC_PRIVATE)
572 uint8_t async_in_progress; /*!< an asynchronous operation is in progress */
573#endif /* MBEDTLS_SSL_ASYNC_PRIVATE */
574
575#if defined(MBEDTLS_SSL_PROTO_DTLS)
576 unsigned char retransmit_state; /*!< Retransmission state */
577#endif
578
Gilles Peskine41139a22021-12-08 18:25:39 +0100579#if !defined(MBEDTLS_DEPRECATED_REMOVED)
580 unsigned char group_list_heap_allocated;
Jerry Yuf017ee42022-01-12 15:49:48 +0800581 unsigned char sig_algs_heap_allocated;
Gilles Peskine41139a22021-12-08 18:25:39 +0100582#endif
583
Gilles Peskineec45c1e2021-11-29 12:18:09 +0100584#if defined(MBEDTLS_SSL_ECP_RESTARTABLE_ENABLED)
585 uint8_t ecrs_enabled; /*!< Handshake supports EC restart? */
Gilles Peskineec45c1e2021-11-29 12:18:09 +0100586 enum { /* this complements ssl->state with info on intra-state operations */
587 ssl_ecrs_none = 0, /*!< nothing going on (yet) */
588 ssl_ecrs_crt_verify, /*!< Certificate: crt_verify() */
589 ssl_ecrs_ske_start_processing, /*!< ServerKeyExchange: pk_verify() */
590 ssl_ecrs_cke_ecdh_calc_secret, /*!< ClientKeyExchange: ECDH step 2 */
591 ssl_ecrs_crt_vrfy_sign, /*!< CertificateVerify: pk_sign() */
592 } ecrs_state; /*!< current (or last) operation */
593 mbedtls_x509_crt *ecrs_peer_cert; /*!< The peer's CRT chain. */
594 size_t ecrs_n; /*!< place for saving a length */
595#endif
596
597 size_t pmslen; /*!< premaster length */
598
599 mbedtls_ssl_ciphersuite_t const *ciphersuite_info;
600
601 void (*update_checksum)(mbedtls_ssl_context *, const unsigned char *, size_t);
602 void (*calc_verify)(const mbedtls_ssl_context *, unsigned char *, size_t *);
603 void (*calc_finished)(mbedtls_ssl_context *, unsigned char *, int);
604 mbedtls_ssl_tls_prf_cb *tls_prf;
605
Manuel Pégourié-Gonnardcd4fcc62015-05-26 12:11:48 +0200606 /*
607 * Handshake specific crypto variables
608 */
Ronald Cron6f135e12021-12-08 16:57:54 +0100609#if defined(MBEDTLS_SSL_PROTO_TLS1_3)
Xiaofei Baid25fab62021-12-02 06:36:27 +0000610 int tls13_kex_modes; /*!< key exchange modes for TLS 1.3 */
Ronald Cron6f135e12021-12-08 16:57:54 +0100611#endif /* MBEDTLS_SSL_PROTO_TLS1_3 */
Hanno Becker7e5437a2017-04-28 17:15:26 +0100612
XiaokangQian647719a2021-12-07 09:16:29 +0000613#if defined(MBEDTLS_SSL_CLI_C)
614 /*!< Number of Hello Retry Request messages received from the server. */
XiaokangQiand9e068e2022-01-18 06:23:32 +0000615 int hello_retry_request_count;
XiaokangQian647719a2021-12-07 09:16:29 +0000616#endif /* MBEDTLS_SSL_CLI_C */
617
Hanno Becker7e5437a2017-04-28 17:15:26 +0100618#if defined(MBEDTLS_SSL_PROTO_TLS1_2) && \
Gilles Peskineeccd8882020-03-10 12:19:08 +0100619 defined(MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED)
Hanno Becker7e5437a2017-04-28 17:15:26 +0100620 mbedtls_ssl_sig_hash_set_t hash_algs; /*!< Set of suitable sig-hash pairs */
621#endif
Gilles Peskine8716f172021-11-16 15:21:44 +0100622
Xiaofei Bai51f515a2022-02-08 07:28:04 +0000623#if defined(MBEDTLS_SSL_PROTO_TLS1_3) && \
624 defined(MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED)
Xiaofei Baif5b4d252022-01-28 06:37:15 +0000625 uint16_t received_sig_algs[MBEDTLS_RECEIVED_SIG_ALGS_SIZE];
626#endif
627
Gilles Peskine41139a22021-12-08 18:25:39 +0100628#if !defined(MBEDTLS_DEPRECATED_REMOVED)
629 const uint16_t *group_list;
Jerry Yuf017ee42022-01-12 15:49:48 +0800630 const uint16_t *sig_algs;
Gilles Peskine41139a22021-12-08 18:25:39 +0100631#endif
632
Manuel Pégourié-Gonnardcd4fcc62015-05-26 12:11:48 +0200633#if defined(MBEDTLS_DHM_C)
634 mbedtls_dhm_context dhm_ctx; /*!< DHM key exchange */
635#endif
Gilles Peskine8716f172021-11-16 15:21:44 +0100636
John Durkop07cc04a2020-11-16 22:08:34 -0800637/* Adding guard for MBEDTLS_ECDSA_C to ensure no compile errors due
Ronald Cronde1adee2022-03-07 16:20:30 +0100638 * to guards in client and server code. There is a gap in functionality that
639 * access to ecdh_ctx structure is needed for MBEDTLS_ECDSA_C which does not
640 * seem correct.
John Durkop07cc04a2020-11-16 22:08:34 -0800641 */
642#if defined(MBEDTLS_ECDH_C) || defined(MBEDTLS_ECDSA_C)
Neil Armstrong769dc052022-04-13 15:12:43 +0200643#if !defined(MBEDTLS_USE_PSA_CRYPTO)
Manuel Pégourié-Gonnardcd4fcc62015-05-26 12:11:48 +0200644 mbedtls_ecdh_context ecdh_ctx; /*!< ECDH key exchange */
Neil Armstrong769dc052022-04-13 15:12:43 +0200645#endif /* !MBEDTLS_USE_PSA_CRYPTO */
Hanno Beckerdf51dbe2019-02-18 16:41:55 +0000646
Przemyslaw Stekielb15f33d2022-02-10 10:12:12 +0100647#if defined(MBEDTLS_USE_PSA_CRYPTO) || defined(MBEDTLS_SSL_PROTO_TLS1_3)
Gilles Peskine42459802019-12-19 13:31:53 +0100648 psa_key_type_t ecdh_psa_type;
Neil Armstrong91477a72022-03-25 15:42:20 +0100649 size_t ecdh_bits;
Andrzej Kurek03e01462022-01-03 12:53:24 +0100650 mbedtls_svc_key_id_t ecdh_psa_privkey;
Neil Armstrongf716a702022-04-04 11:23:46 +0200651 uint8_t ecdh_psa_privkey_is_external;
Hanno Beckerdf51dbe2019-02-18 16:41:55 +0000652 unsigned char ecdh_psa_peerkey[MBEDTLS_PSA_MAX_EC_PUBKEY_LENGTH];
653 size_t ecdh_psa_peerkey_len;
Przemyslaw Stekielb15f33d2022-02-10 10:12:12 +0100654#endif /* MBEDTLS_USE_PSA_CRYPTO || MBEDTLS_SSL_PROTO_TLS1_3 */
John Durkop07cc04a2020-11-16 22:08:34 -0800655#endif /* MBEDTLS_ECDH_C || MBEDTLS_ECDSA_C */
Hanno Beckerdf51dbe2019-02-18 16:41:55 +0000656
Manuel Pégourié-Gonnardeef142d2015-09-16 10:05:04 +0200657#if defined(MBEDTLS_KEY_EXCHANGE_ECJPAKE_ENABLED)
Manuel Pégourié-Gonnard76cfd3f2015-09-15 12:10:54 +0200658 mbedtls_ecjpake_context ecjpake_ctx; /*!< EC J-PAKE key exchange */
Manuel Pégourié-Gonnard77c06462015-09-17 13:59:49 +0200659#if defined(MBEDTLS_SSL_CLI_C)
660 unsigned char *ecjpake_cache; /*!< Cache for ClientHello ext */
661 size_t ecjpake_cache_len; /*!< Length of cached data */
662#endif
Hanno Becker1aa267c2017-04-28 17:08:27 +0100663#endif /* MBEDTLS_KEY_EXCHANGE_ECJPAKE_ENABLED */
Gilles Peskine8716f172021-11-16 15:21:44 +0100664
665#if defined(MBEDTLS_ECDH_C) || defined(MBEDTLS_ECDSA_C) || \
Manuel Pégourié-Gonnardeef142d2015-09-16 10:05:04 +0200666 defined(MBEDTLS_KEY_EXCHANGE_ECJPAKE_ENABLED)
Manuel Pégourié-Gonnardcd4fcc62015-05-26 12:11:48 +0200667 const mbedtls_ecp_curve_info **curves; /*!< Supported elliptic curves */
668#endif
Gilles Peskine8716f172021-11-16 15:21:44 +0100669
Gilles Peskineeccd8882020-03-10 12:19:08 +0100670#if defined(MBEDTLS_KEY_EXCHANGE_SOME_PSK_ENABLED)
Hanno Beckerd9f7d432018-10-22 15:29:46 +0100671#if defined(MBEDTLS_USE_PSA_CRYPTO)
Andrzej Kurek03e01462022-01-03 12:53:24 +0100672 mbedtls_svc_key_id_t psk_opaque; /*!< Opaque PSK from the callback */
Hanno Beckerd9f7d432018-10-22 15:29:46 +0100673#endif /* MBEDTLS_USE_PSA_CRYPTO */
Manuel Pégourié-Gonnardcd4fcc62015-05-26 12:11:48 +0200674 unsigned char *psk; /*!< PSK from the callback */
675 size_t psk_len; /*!< Length of PSK from callback */
Gilles Peskineeccd8882020-03-10 12:19:08 +0100676#endif /* MBEDTLS_KEY_EXCHANGE_SOME_PSK_ENABLED */
Gilles Peskine8716f172021-11-16 15:21:44 +0100677
Gilles Peskinecfe74a32021-12-08 18:38:51 +0100678#if defined(MBEDTLS_SSL_ECP_RESTARTABLE_ENABLED)
679 mbedtls_x509_crt_restart_ctx ecrs_ctx; /*!< restart context */
680#endif
681
Manuel Pégourié-Gonnardcd4fcc62015-05-26 12:11:48 +0200682#if defined(MBEDTLS_X509_CRT_PARSE_C)
683 mbedtls_ssl_key_cert *key_cert; /*!< chosen key/cert pair (server) */
684#if defined(MBEDTLS_SSL_SERVER_NAME_INDICATION)
685 mbedtls_ssl_key_cert *sni_key_cert; /*!< key/cert list from SNI */
686 mbedtls_x509_crt *sni_ca_chain; /*!< trusted CAs from SNI callback */
687 mbedtls_x509_crl *sni_ca_crl; /*!< trusted CAs CRLs from SNI */
Hanno Becker1aa267c2017-04-28 17:08:27 +0100688#endif /* MBEDTLS_SSL_SERVER_NAME_INDICATION */
Manuel Pégourié-Gonnardcd4fcc62015-05-26 12:11:48 +0200689#endif /* MBEDTLS_X509_CRT_PARSE_C */
Gilles Peskine8716f172021-11-16 15:21:44 +0100690
Gilles Peskine8716f172021-11-16 15:21:44 +0100691#if defined(MBEDTLS_X509_CRT_PARSE_C) && \
Hanno Becker75173122019-02-06 16:18:31 +0000692 !defined(MBEDTLS_SSL_KEEP_PEER_CERTIFICATE)
693 mbedtls_pk_context peer_pubkey; /*!< The public key from the peer. */
694#endif /* MBEDTLS_X509_CRT_PARSE_C && !MBEDTLS_SSL_KEEP_PEER_CERTIFICATE */
Hanno Becker2f28c102019-04-25 15:46:59 +0100695
Hanno Beckerd7f8ae22018-08-16 09:45:56 +0100696 struct
697 {
Hanno Beckere0b150f2018-08-21 15:51:03 +0100698 size_t total_bytes_buffered; /*!< Cumulative size of heap allocated
699 * buffers used for message buffering. */
700
Hanno Beckerd7f8ae22018-08-16 09:45:56 +0100701 uint8_t seen_ccs; /*!< Indicates if a CCS message has
Hanno Becker2ed6bcc2018-08-15 15:11:57 +0100702 * been seen in the current flight. */
Hanno Beckerd7f8ae22018-08-16 09:45:56 +0100703
Hanno Becker0271f962018-08-16 13:23:47 +0100704 struct mbedtls_ssl_hs_buffer
705 {
Hanno Becker98081a02018-08-22 13:32:50 +0100706 unsigned is_valid : 1;
707 unsigned is_fragmented : 1;
708 unsigned is_complete : 1;
Hanno Becker0271f962018-08-16 13:23:47 +0100709 unsigned char *data;
Hanno Beckere0b150f2018-08-21 15:51:03 +0100710 size_t data_len;
Hanno Becker0271f962018-08-16 13:23:47 +0100711 } hs[MBEDTLS_SSL_MAX_BUFFERED_HS];
712
Hanno Becker5f066e72018-08-16 14:56:31 +0100713 struct
714 {
715 unsigned char *data;
716 size_t len;
717 unsigned epoch;
718 } future_record;
719
Hanno Beckerd7f8ae22018-08-16 09:45:56 +0100720 } buffering;
Hanno Becker35462012018-08-22 10:25:40 +0100721
XiaokangQian9b93c0d2022-02-09 06:02:25 +0000722#if defined(MBEDTLS_SSL_CLI_C) && \
723 ( defined(MBEDTLS_SSL_PROTO_DTLS) || defined(MBEDTLS_SSL_PROTO_TLS1_3) )
724 unsigned char *cookie; /*!< HelloVerifyRequest cookie for DTLS
725 * HelloRetryRequest cookie for TLS 1.3 */
726#endif /* MBEDTLS_SSL_CLI_C &&
727 ( MBEDTLS_SSL_PROTO_DTLS || MBEDTLS_SSL_PROTO_TLS1_3 ) */
728#if defined(MBEDTLS_SSL_PROTO_DTLS)
729 unsigned char verify_cookie_len; /*!< Cli: HelloVerifyRequest cookie
730 * length
XiaokangQian34909742022-01-27 02:25:04 +0000731 * Srv: flag for sending a cookie */
XiaokangQian9b93c0d2022-02-09 06:02:25 +0000732#endif /* MBEDTLS_SSL_PROTO_DTLS */
733#if defined(MBEDTLS_SSL_CLI_C) && defined(MBEDTLS_SSL_PROTO_TLS1_3)
734 uint16_t hrr_cookie_len; /*!< HelloRetryRequest cookie length */
XiaokangQian20438972022-03-04 08:52:07 +0000735#endif /* MBEDTLS_SSL_CLI_C && MBEDTLS_SSL_PROTO_TLS1_3 */
XiaokangQian52da5582022-01-26 09:49:29 +0000736
737#if defined(MBEDTLS_SSL_PROTO_DTLS)
738 unsigned int out_msg_seq; /*!< Outgoing handshake sequence number */
739 unsigned int in_msg_seq; /*!< Incoming handshake sequence number */
Gilles Peskineec45c1e2021-11-29 12:18:09 +0100740
741 uint32_t retransmit_timeout; /*!< Current value of timeout */
742 mbedtls_ssl_flight_item *flight; /*!< Current outgoing flight */
743 mbedtls_ssl_flight_item *cur_msg; /*!< Current message in flight */
744 unsigned char *cur_msg_p; /*!< Position in current message */
745 unsigned int in_flight_start_seq; /*!< Minimum message sequence in the
746 flight being received */
747 mbedtls_ssl_transform *alt_transform_out; /*!< Alternative transform for
748 resending messages */
749 unsigned char alt_out_ctr[MBEDTLS_SSL_SEQUENCE_NUMBER_LEN]; /*!< Alternative record epoch/counter
750 for resending messages */
751
752#if defined(MBEDTLS_SSL_DTLS_CONNECTION_ID)
753 /* The state of CID configuration in this handshake. */
754
755 uint8_t cid_in_use; /*!< This indicates whether the use of the CID extension
756 * has been negotiated. Possible values are
757 * #MBEDTLS_SSL_CID_ENABLED and
758 * #MBEDTLS_SSL_CID_DISABLED. */
759 unsigned char peer_cid[ MBEDTLS_SSL_CID_OUT_LEN_MAX ]; /*! The peer's CID */
760 uint8_t peer_cid_len; /*!< The length of
761 * \c peer_cid. */
762#endif /* MBEDTLS_SSL_DTLS_CONNECTION_ID */
763
Manuel Pégourié-Gonnardf47a4af2018-08-22 10:38:52 +0200764 uint16_t mtu; /*!< Handshake mtu, used to fragment outgoing messages */
Hanno Becker1aa267c2017-04-28 17:08:27 +0100765#endif /* MBEDTLS_SSL_PROTO_DTLS */
Manuel Pégourié-Gonnardcd4fcc62015-05-26 12:11:48 +0200766
Ronald Cron6f135e12021-12-08 16:57:54 +0100767#if defined(MBEDTLS_SSL_PROTO_TLS1_3)
Hanno Beckere043d152021-08-12 06:22:32 +0100768 /*! TLS 1.3 transforms for 0-RTT and encrypted handshake messages.
769 * Those pointers own the transforms they reference. */
Hanno Becker3aa186f2021-08-10 09:24:19 +0100770 mbedtls_ssl_transform *transform_handshake;
771 mbedtls_ssl_transform *transform_earlydata;
Ronald Cron6f135e12021-12-08 16:57:54 +0100772#endif /* MBEDTLS_SSL_PROTO_TLS1_3 */
Hanno Becker3aa186f2021-08-10 09:24:19 +0100773
Manuel Pégourié-Gonnardcd4fcc62015-05-26 12:11:48 +0200774 /*
775 * Checksum contexts
776 */
Manuel Pégourié-Gonnardcd4fcc62015-05-26 12:11:48 +0200777#if defined(MBEDTLS_SHA256_C)
Andrzej Kurekeb342242019-01-29 09:14:33 -0500778#if defined(MBEDTLS_USE_PSA_CRYPTO)
779 psa_hash_operation_t fin_sha256_psa;
780#else
Manuel Pégourié-Gonnardcd4fcc62015-05-26 12:11:48 +0200781 mbedtls_sha256_context fin_sha256;
782#endif
Andrzej Kurekeb342242019-01-29 09:14:33 -0500783#endif
Mateusz Starzykc6d94ab2021-05-19 13:31:59 +0200784#if defined(MBEDTLS_SHA384_C)
Andrzej Kurekeb342242019-01-29 09:14:33 -0500785#if defined(MBEDTLS_USE_PSA_CRYPTO)
Andrzej Kurek972fba52019-01-30 03:29:12 -0500786 psa_hash_operation_t fin_sha384_psa;
Andrzej Kurekeb342242019-01-29 09:14:33 -0500787#else
Manuel Pégourié-Gonnardcd4fcc62015-05-26 12:11:48 +0200788 mbedtls_sha512_context fin_sha512;
789#endif
Andrzej Kurekeb342242019-01-29 09:14:33 -0500790#endif
Manuel Pégourié-Gonnardcd4fcc62015-05-26 12:11:48 +0200791
Ronald Cron6f135e12021-12-08 16:57:54 +0100792#if defined(MBEDTLS_SSL_PROTO_TLS1_3)
Jerry Yu56fc07f2021-09-01 17:48:49 +0800793 uint16_t offered_group_id; /* The NamedGroup value for the group
794 * that is being used for ephemeral
795 * key exchange.
796 *
797 * On the client: Defaults to the first
798 * entry in the client's group list,
799 * but can be overwritten by the HRR. */
Ronald Cron6f135e12021-12-08 16:57:54 +0100800#endif /* MBEDTLS_SSL_PROTO_TLS1_3 */
Jerry Yu56fc07f2021-09-01 17:48:49 +0800801
Jerry Yufb28b882022-01-28 11:05:58 +0800802#if defined(MBEDTLS_SSL_CLI_C)
Jerry Yu2d9a6942022-02-08 21:07:10 +0800803 uint8_t client_auth; /*!< used to check if CertificateRequest has been
Jerry Yu5c7d1cc2022-02-08 21:08:29 +0800804 received from server side. If CertificateRequest
Jerry Yu0ff8ac82022-02-08 10:10:48 +0800805 has been received, Certificate and CertificateVerify
Jerry Yufb28b882022-01-28 11:05:58 +0800806 should be sent to server */
807#endif /* MBEDTLS_SSL_CLI_C */
XiaokangQianaa5f5c12021-09-18 06:20:25 +0000808 /*
809 * State-local variables used during the processing
810 * of a specific handshake state.
811 */
812 union
813 {
814 /* Outgoing Finished message */
815 struct
816 {
817 uint8_t preparation_done;
818
819 /* Buffer holding digest of the handshake up to
820 * but excluding the outgoing finished message. */
XiaokangQianc5c39d52021-11-09 11:55:10 +0000821 unsigned char digest[MBEDTLS_TLS1_3_MD_MAX_SIZE];
XiaokangQianaa5f5c12021-09-18 06:20:25 +0000822 size_t digest_len;
823 } finished_out;
824
825 /* Incoming Finished message */
826 struct
827 {
XiaokangQian57b2aff2021-11-10 03:12:11 +0000828 uint8_t preparation_done;
829
XiaokangQianaa5f5c12021-09-18 06:20:25 +0000830 /* Buffer holding digest of the handshake up to but
831 * excluding the peer's incoming finished message. */
XiaokangQianc5c39d52021-11-09 11:55:10 +0000832 unsigned char digest[MBEDTLS_TLS1_3_MD_MAX_SIZE];
XiaokangQianaa5f5c12021-09-18 06:20:25 +0000833 size_t digest_len;
834 } finished_in;
835
XiaokangQianaa5f5c12021-09-18 06:20:25 +0000836 } state_local;
837
838 /* End of state-local variables. */
839
Jerry Yue6d7e5c2021-10-26 10:44:32 +0800840 unsigned char randbytes[MBEDTLS_CLIENT_HELLO_RANDOM_LEN +
841 MBEDTLS_SERVER_HELLO_RANDOM_LEN];
842 /*!< random bytes */
Manuel Pégourié-Gonnardcd4fcc62015-05-26 12:11:48 +0200843 unsigned char premaster[MBEDTLS_PREMASTER_SIZE];
844 /*!< premaster secret */
845
Ronald Cron6f135e12021-12-08 16:57:54 +0100846#if defined(MBEDTLS_SSL_PROTO_TLS1_3)
Jerry Yu8e7ca042021-08-26 15:31:37 +0800847 int extensions_present; /*!< extension presence; Each bitfield
848 represents an extension and defined
849 as \c MBEDTLS_SSL_EXT_XXX */
Jerry Yu89ea3212021-09-09 14:31:24 +0800850
Xiaofei Baia0ab7772022-01-16 12:14:45 +0000851#if defined(MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED)
852 unsigned char certificate_request_context_len;
853 unsigned char *certificate_request_context;
Xiaofei Baie1e34422021-12-23 12:09:05 +0000854#endif
855
Jerry Yu89ea3212021-09-09 14:31:24 +0800856 union
857 {
Jerry Yud1ab2622021-10-08 15:36:57 +0800858 unsigned char early [MBEDTLS_TLS1_3_MD_MAX_SIZE];
859 unsigned char handshake[MBEDTLS_TLS1_3_MD_MAX_SIZE];
860 unsigned char app [MBEDTLS_TLS1_3_MD_MAX_SIZE];
Xiaofei Baid25fab62021-12-02 06:36:27 +0000861 } tls13_master_secrets;
Jerry Yu61e35e02021-09-16 18:59:08 +0800862
Xiaofei Bai746f9482021-11-12 08:53:56 +0000863 mbedtls_ssl_tls13_handshake_secrets tls13_hs_secrets;
Ronald Cron6f135e12021-12-08 16:57:54 +0100864#endif /* MBEDTLS_SSL_PROTO_TLS1_3 */
Manuel Pégourié-Gonnardcd4fcc62015-05-26 12:11:48 +0200865
Gilles Peskinedf13d5c2018-04-25 20:39:48 +0200866#if defined(MBEDTLS_SSL_ASYNC_PRIVATE)
867 /** Asynchronous operation context. This field is meant for use by the
868 * asynchronous operation callbacks (mbedtls_ssl_config::f_async_sign_start,
869 * mbedtls_ssl_config::f_async_decrypt_start,
870 * mbedtls_ssl_config::f_async_resume, mbedtls_ssl_config::f_async_cancel).
871 * The library does not use it internally. */
872 void *user_async_ctx;
873#endif /* MBEDTLS_SSL_ASYNC_PRIVATE */
Glenn Strauss69894072022-01-24 12:58:00 -0500874
875#if defined(MBEDTLS_SSL_SERVER_NAME_INDICATION)
876 const unsigned char *sni_name; /*!< raw SNI */
877 size_t sni_name_len; /*!< raw SNI len */
878#endif /* MBEDTLS_SSL_SERVER_NAME_INDICATION */
Manuel Pégourié-Gonnardcd4fcc62015-05-26 12:11:48 +0200879};
880
Hanno Becker0271f962018-08-16 13:23:47 +0100881typedef struct mbedtls_ssl_hs_buffer mbedtls_ssl_hs_buffer;
882
Manuel Pégourié-Gonnardcd4fcc62015-05-26 12:11:48 +0200883/*
Hanno Beckerd362dc52018-01-03 15:23:11 +0000884 * Representation of decryption/encryption transformations on records
885 *
886 * There are the following general types of record transformations:
TRodziewicz2abf03c2021-06-25 14:40:09 +0200887 * - Stream transformations (TLS versions == 1.2 only)
Hanno Beckerd362dc52018-01-03 15:23:11 +0000888 * Transformation adding a MAC and applying a stream-cipher
889 * to the authenticated message.
TRodziewicz2abf03c2021-06-25 14:40:09 +0200890 * - CBC block cipher transformations ([D]TLS versions == 1.2 only)
891 * For TLS 1.2, no IV is generated at key extraction time, but every
892 * encrypted record is explicitly prefixed by the IV with which it was
893 * encrypted.
894 * - AEAD transformations ([D]TLS versions == 1.2 only)
Hanno Beckerd362dc52018-01-03 15:23:11 +0000895 * These come in two fundamentally different versions, the first one
896 * used in TLS 1.2, excluding ChaChaPoly ciphersuites, and the second
897 * one used for ChaChaPoly ciphersuites in TLS 1.2 as well as for TLS 1.3.
898 * In the first transformation, the IV to be used for a record is obtained
899 * as the concatenation of an explicit, static 4-byte IV and the 8-byte
900 * record sequence number, and explicitly prepending this sequence number
901 * to the encrypted record. In contrast, in the second transformation
902 * the IV is obtained by XOR'ing a static IV obtained at key extraction
903 * time with the 8-byte record sequence number, without prepending the
904 * latter to the encrypted record.
905 *
Hanno Becker7d343ec2020-05-04 12:29:05 +0100906 * Additionally, DTLS 1.2 + CID as well as TLS 1.3 use an inner plaintext
907 * which allows to add flexible length padding and to hide a record's true
908 * content type.
909 *
Hanno Beckerd362dc52018-01-03 15:23:11 +0000910 * In addition to type and version, the following parameters are relevant:
911 * - The symmetric cipher algorithm to be used.
912 * - The (static) encryption/decryption keys for the cipher.
913 * - For stream/CBC, the type of message digest to be used.
914 * - For stream/CBC, (static) encryption/decryption keys for the digest.
Hanno Becker0db7e0c2018-10-18 15:39:53 +0100915 * - For AEAD transformations, the size (potentially 0) of an explicit,
916 * random initialization vector placed in encrypted records.
TRodziewicz299510e2021-07-09 16:55:11 +0200917 * - For some transformations (currently AEAD) an implicit IV. It is static
Hanno Beckerd362dc52018-01-03 15:23:11 +0000918 * and (if present) is combined with the explicit IV in a transformation-
TRodziewicz299510e2021-07-09 16:55:11 +0200919 * -dependent way (e.g. appending in TLS 1.2 and XOR'ing in TLS 1.3).
Hanno Beckerd362dc52018-01-03 15:23:11 +0000920 * - For stream/CBC, a flag determining the order of encryption and MAC.
921 * - The details of the transformation depend on the SSL/TLS version.
922 * - The length of the authentication tag.
923 *
924 * The struct below refines this abstract view as follows:
925 * - The cipher underlying the transformation is managed in
926 * cipher contexts cipher_ctx_{enc/dec}, which must have the
927 * same cipher type. The mode of these cipher contexts determines
928 * the type of the transformation in the sense above: e.g., if
929 * the type is MBEDTLS_CIPHER_AES_256_CBC resp. MBEDTLS_CIPHER_AES_192_GCM
930 * then the transformation has type CBC resp. AEAD.
931 * - The cipher keys are never stored explicitly but
932 * are maintained within cipher_ctx_{enc/dec}.
933 * - For stream/CBC transformations, the message digest contexts
934 * used for the MAC's are stored in md_ctx_{enc/dec}. These contexts
935 * are unused for AEAD transformations.
TRodziewicz2abf03c2021-06-25 14:40:09 +0200936 * - For stream/CBC transformations, the MAC keys are not stored explicitly
937 * but maintained within md_ctx_{enc/dec}.
938 * - The mac_enc and mac_dec fields are unused for EAD transformations.
Hanno Beckerd362dc52018-01-03 15:23:11 +0000939 * - For transformations using an implicit IV maintained within
940 * the transformation context, its contents are stored within
941 * iv_{enc/dec}.
942 * - The value of ivlen indicates the length of the IV.
943 * This is redundant in case of stream/CBC transformations
944 * which always use 0 resp. the cipher's block length as the
945 * IV length, but is needed for AEAD ciphers and may be
946 * different from the underlying cipher's block length
947 * in this case.
948 * - The field fixed_ivlen is nonzero for AEAD transformations only
949 * and indicates the length of the static part of the IV which is
950 * constant throughout the communication, and which is stored in
951 * the first fixed_ivlen bytes of the iv_{enc/dec} arrays.
Hanno Beckerd362dc52018-01-03 15:23:11 +0000952 * - minor_ver denotes the SSL/TLS version
953 * - For stream/CBC transformations, maclen denotes the length of the
954 * authentication tag, while taglen is unused and 0.
955 * - For AEAD transformations, taglen denotes the length of the
956 * authentication tag, while maclen is unused and 0.
957 * - For CBC transformations, encrypt_then_mac determines the
958 * order of encryption and authentication. This field is unused
959 * in other transformations.
960 *
Manuel Pégourié-Gonnardcd4fcc62015-05-26 12:11:48 +0200961 */
962struct mbedtls_ssl_transform
963{
964 /*
965 * Session specific crypto layer
966 */
Manuel Pégourié-Gonnardcd4fcc62015-05-26 12:11:48 +0200967 size_t minlen; /*!< min. ciphertext length */
968 size_t ivlen; /*!< IV length */
969 size_t fixed_ivlen; /*!< Fixed part of IV (AEAD) */
Hanno Beckere694c3e2017-12-27 21:34:08 +0000970 size_t maclen; /*!< MAC(CBC) len */
971 size_t taglen; /*!< TAG(AEAD) len */
Manuel Pégourié-Gonnardcd4fcc62015-05-26 12:11:48 +0200972
973 unsigned char iv_enc[16]; /*!< IV (encryption) */
974 unsigned char iv_dec[16]; /*!< IV (decryption) */
975
Hanno Beckerfd86ca82020-11-30 08:54:23 +0000976#if defined(MBEDTLS_SSL_SOME_SUITES_USE_MAC)
Hanno Beckerd56ed242018-01-03 15:32:51 +0000977
Neil Armstrong39b8e7d2022-02-23 09:24:45 +0100978#if defined(MBEDTLS_USE_PSA_CRYPTO)
979 mbedtls_svc_key_id_t psa_mac_enc; /*!< MAC (encryption) */
980 mbedtls_svc_key_id_t psa_mac_dec; /*!< MAC (decryption) */
981 psa_algorithm_t psa_mac_alg; /*!< psa MAC algorithm */
Neil Armstrongcf8841a2022-02-24 11:17:45 +0100982#else
Manuel Pégourié-Gonnardcd4fcc62015-05-26 12:11:48 +0200983 mbedtls_md_context_t md_ctx_enc; /*!< MAC (encryption) */
984 mbedtls_md_context_t md_ctx_dec; /*!< MAC (decryption) */
Neil Armstrongcf8841a2022-02-24 11:17:45 +0100985#endif /* MBEDTLS_USE_PSA_CRYPTO */
Manuel Pégourié-Gonnardcd4fcc62015-05-26 12:11:48 +0200986
Hanno Becker9eddaeb2017-12-27 21:37:21 +0000987#if defined(MBEDTLS_SSL_ENCRYPT_THEN_MAC)
988 int encrypt_then_mac; /*!< flag for EtM activation */
989#endif
990
Hanno Beckerfd86ca82020-11-30 08:54:23 +0000991#endif /* MBEDTLS_SSL_SOME_SUITES_USE_MAC */
Hanno Beckerd56ed242018-01-03 15:32:51 +0000992
Hanno Becker9eddaeb2017-12-27 21:37:21 +0000993 int minor_ver;
994
Przemyslaw Stekiel44187d72022-01-11 08:25:29 +0100995#if defined(MBEDTLS_USE_PSA_CRYPTO)
996 mbedtls_svc_key_id_t psa_key_enc; /*!< psa encryption key */
997 mbedtls_svc_key_id_t psa_key_dec; /*!< psa decryption key */
998 psa_algorithm_t psa_alg; /*!< psa algorithm */
Przemyslaw Stekiel6be9cf52022-01-19 16:00:22 +0100999#else
1000 mbedtls_cipher_context_t cipher_ctx_enc; /*!< encryption context */
1001 mbedtls_cipher_context_t cipher_ctx_dec; /*!< decryption context */
Przemyslaw Stekiel44187d72022-01-11 08:25:29 +01001002#endif /* MBEDTLS_USE_PSA_CRYPTO */
1003
Hanno Beckera0e20d02019-05-15 14:03:01 +01001004#if defined(MBEDTLS_SSL_DTLS_CONNECTION_ID)
Hanno Becker1327fa72019-04-25 15:54:02 +01001005 uint8_t in_cid_len;
1006 uint8_t out_cid_len;
1007 unsigned char in_cid [ MBEDTLS_SSL_CID_OUT_LEN_MAX ];
1008 unsigned char out_cid[ MBEDTLS_SSL_CID_OUT_LEN_MAX ];
Hanno Beckera0e20d02019-05-15 14:03:01 +01001009#endif /* MBEDTLS_SSL_DTLS_CONNECTION_ID */
Hanno Becker1327fa72019-04-25 15:54:02 +01001010
Manuel Pégourié-Gonnard96fb0ee2019-07-09 12:54:17 +02001011#if defined(MBEDTLS_SSL_CONTEXT_SERIALIZATION)
1012 /* We need the Hello random bytes in order to re-derive keys from the
Hanno Beckerbd257552021-03-22 06:59:27 +00001013 * Master Secret and other session info,
1014 * see ssl_tls12_populate_transform() */
Jerry Yue6d7e5c2021-10-26 10:44:32 +08001015 unsigned char randbytes[MBEDTLS_SERVER_HELLO_RANDOM_LEN +
1016 MBEDTLS_CLIENT_HELLO_RANDOM_LEN];
1017 /*!< ServerHello.random+ClientHello.random */
Manuel Pégourié-Gonnard96fb0ee2019-07-09 12:54:17 +02001018#endif /* MBEDTLS_SSL_CONTEXT_SERIALIZATION */
Manuel Pégourié-Gonnardcd4fcc62015-05-26 12:11:48 +02001019};
1020
Hanno Becker12a3a862018-01-05 15:42:50 +00001021/*
Manuel Pégourié-Gonnard1aaf6692019-07-10 14:14:05 +02001022 * Return 1 if the transform uses an AEAD cipher, 0 otherwise.
1023 * Equivalently, return 0 if a separate MAC is used, 1 otherwise.
1024 */
1025static inline int mbedtls_ssl_transform_uses_aead(
1026 const mbedtls_ssl_transform *transform )
1027{
Hanno Beckerfd86ca82020-11-30 08:54:23 +00001028#if defined(MBEDTLS_SSL_SOME_SUITES_USE_MAC)
Manuel Pégourié-Gonnard1aaf6692019-07-10 14:14:05 +02001029 return( transform->maclen == 0 && transform->taglen != 0 );
1030#else
1031 (void) transform;
1032 return( 1 );
1033#endif
1034}
1035
1036/*
Hanno Becker12a3a862018-01-05 15:42:50 +00001037 * Internal representation of record frames
1038 *
Hanno Becker12a3a862018-01-05 15:42:50 +00001039 * Instances come in two flavors:
1040 * (1) Encrypted
1041 * These always have data_offset = 0
1042 * (2) Unencrypted
Hanno Beckercd430bc2019-04-04 16:29:48 +01001043 * These have data_offset set to the amount of
1044 * pre-expansion during record protection. Concretely,
1045 * this is the length of the fixed part of the explicit IV
1046 * used for encryption, or 0 if no explicit IV is used
TRodziewicz2abf03c2021-06-25 14:40:09 +02001047 * (e.g. for stream ciphers).
Hanno Becker12a3a862018-01-05 15:42:50 +00001048 *
1049 * The reason for the data_offset in the unencrypted case
1050 * is to allow for in-place conversion of an unencrypted to
1051 * an encrypted record. If the offset wasn't included, the
1052 * encrypted content would need to be shifted afterwards to
1053 * make space for the fixed IV.
1054 *
1055 */
Hanno Beckerf2ed4482019-04-29 13:45:54 +01001056#if MBEDTLS_SSL_CID_OUT_LEN_MAX > MBEDTLS_SSL_CID_IN_LEN_MAX
Hanno Becker75f080f2019-04-30 15:01:51 +01001057#define MBEDTLS_SSL_CID_LEN_MAX MBEDTLS_SSL_CID_OUT_LEN_MAX
Hanno Beckerf2ed4482019-04-29 13:45:54 +01001058#else
Hanno Becker75f080f2019-04-30 15:01:51 +01001059#define MBEDTLS_SSL_CID_LEN_MAX MBEDTLS_SSL_CID_IN_LEN_MAX
Hanno Beckerf2ed4482019-04-29 13:45:54 +01001060#endif
1061
Hanno Becker12a3a862018-01-05 15:42:50 +00001062typedef struct
1063{
Jerry Yuae0b2e22021-10-08 15:21:19 +08001064 uint8_t ctr[MBEDTLS_SSL_SEQUENCE_NUMBER_LEN]; /* In TLS: The implicit record sequence number.
1065 * In DTLS: The 2-byte epoch followed by
1066 * the 6-byte sequence number.
1067 * This is stored as a raw big endian byte array
1068 * as opposed to a uint64_t because we rarely
1069 * need to perform arithmetic on this, but do
1070 * need it as a Byte array for the purpose of
1071 * MAC computations. */
Hanno Beckerd840cea2019-07-11 09:24:36 +01001072 uint8_t type; /* The record content type. */
1073 uint8_t ver[2]; /* SSL/TLS version as present on the wire.
1074 * Convert to internal presentation of versions
1075 * using mbedtls_ssl_read_version() and
1076 * mbedtls_ssl_write_version().
1077 * Keep wire-format for MAC computations. */
Hanno Becker12a3a862018-01-05 15:42:50 +00001078
Hanno Beckerd840cea2019-07-11 09:24:36 +01001079 unsigned char *buf; /* Memory buffer enclosing the record content */
1080 size_t buf_len; /* Buffer length */
1081 size_t data_offset; /* Offset of record content */
1082 size_t data_len; /* Length of record content */
Hanno Becker12a3a862018-01-05 15:42:50 +00001083
Hanno Beckera0e20d02019-05-15 14:03:01 +01001084#if defined(MBEDTLS_SSL_DTLS_CONNECTION_ID)
Hanno Beckerd840cea2019-07-11 09:24:36 +01001085 uint8_t cid_len; /* Length of the CID (0 if not present) */
1086 unsigned char cid[ MBEDTLS_SSL_CID_LEN_MAX ]; /* The CID */
Hanno Beckera0e20d02019-05-15 14:03:01 +01001087#endif /* MBEDTLS_SSL_DTLS_CONNECTION_ID */
Hanno Becker12a3a862018-01-05 15:42:50 +00001088} mbedtls_record;
1089
Manuel Pégourié-Gonnardcd4fcc62015-05-26 12:11:48 +02001090#if defined(MBEDTLS_X509_CRT_PARSE_C)
1091/*
1092 * List of certificate + private key pairs
1093 */
1094struct mbedtls_ssl_key_cert
1095{
1096 mbedtls_x509_crt *cert; /*!< cert */
1097 mbedtls_pk_context *key; /*!< private key */
1098 mbedtls_ssl_key_cert *next; /*!< next key/cert pair */
1099};
1100#endif /* MBEDTLS_X509_CRT_PARSE_C */
1101
1102#if defined(MBEDTLS_SSL_PROTO_DTLS)
1103/*
1104 * List of handshake messages kept around for resending
1105 */
1106struct mbedtls_ssl_flight_item
1107{
1108 unsigned char *p; /*!< message, including handshake headers */
1109 size_t len; /*!< length of p */
1110 unsigned char type; /*!< type of the message: handshake or CCS */
1111 mbedtls_ssl_flight_item *next; /*!< next handshake message(s) */
1112};
1113#endif /* MBEDTLS_SSL_PROTO_DTLS */
1114
Ronald Cron4079abc2022-02-20 10:35:26 +01001115#if defined(MBEDTLS_SSL_PROTO_TLS1_2)
1116/**
1117 * \brief Given an SSL context and its associated configuration, write the TLS
1118 * 1.2 specific extensions of the ClientHello message.
1119 *
1120 * \param[in] ssl SSL context
1121 * \param[in] buf Base address of the buffer where to write the extensions
1122 * \param[in] end End address of the buffer where to write the extensions
1123 * \param uses_ec Whether one proposed ciphersuite uses an elliptic curve
1124 * (<> 0) or not ( 0 ).
1125 * \param[out] out_len Length of the data written into the buffer \p buf
1126 */
1127int mbedtls_ssl_tls12_write_client_hello_exts( mbedtls_ssl_context *ssl,
1128 unsigned char *buf,
1129 const unsigned char *end,
1130 int uses_ec,
1131 size_t *out_len );
1132#endif
1133
Hanno Becker7e5437a2017-04-28 17:15:26 +01001134#if defined(MBEDTLS_SSL_PROTO_TLS1_2) && \
Gilles Peskineeccd8882020-03-10 12:19:08 +01001135 defined(MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED)
Hanno Becker7e5437a2017-04-28 17:15:26 +01001136
1137/* Find an entry in a signature-hash set matching a given hash algorithm. */
1138mbedtls_md_type_t mbedtls_ssl_sig_hash_set_find( mbedtls_ssl_sig_hash_set_t *set,
1139 mbedtls_pk_type_t sig_alg );
1140/* Add a signature-hash-pair to a signature-hash set */
1141void mbedtls_ssl_sig_hash_set_add( mbedtls_ssl_sig_hash_set_t *set,
1142 mbedtls_pk_type_t sig_alg,
1143 mbedtls_md_type_t md_alg );
1144/* Allow exactly one hash algorithm for each signature. */
1145void mbedtls_ssl_sig_hash_set_const_hash( mbedtls_ssl_sig_hash_set_t *set,
1146 mbedtls_md_type_t md_alg );
1147
1148/* Setup an empty signature-hash set */
1149static inline void mbedtls_ssl_sig_hash_set_init( mbedtls_ssl_sig_hash_set_t *set )
1150{
1151 mbedtls_ssl_sig_hash_set_const_hash( set, MBEDTLS_MD_NONE );
1152}
1153
1154#endif /* MBEDTLS_SSL_PROTO_TLS1_2) &&
Gilles Peskineeccd8882020-03-10 12:19:08 +01001155 MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED */
Manuel Pégourié-Gonnardcd4fcc62015-05-26 12:11:48 +02001156
1157/**
1158 * \brief Free referenced items in an SSL transform context and clear
1159 * memory
1160 *
1161 * \param transform SSL transform context
1162 */
1163void mbedtls_ssl_transform_free( mbedtls_ssl_transform *transform );
1164
1165/**
1166 * \brief Free referenced items in an SSL handshake context and clear
1167 * memory
1168 *
Gilles Peskine9b562d52018-04-25 20:32:43 +02001169 * \param ssl SSL context
Manuel Pégourié-Gonnardcd4fcc62015-05-26 12:11:48 +02001170 */
Gilles Peskine9b562d52018-04-25 20:32:43 +02001171void mbedtls_ssl_handshake_free( mbedtls_ssl_context *ssl );
Manuel Pégourié-Gonnardcd4fcc62015-05-26 12:11:48 +02001172
Jerry Yuc7875b52021-09-05 21:05:50 +08001173/* set inbound transform of ssl context */
1174void mbedtls_ssl_set_inbound_transform( mbedtls_ssl_context *ssl,
1175 mbedtls_ssl_transform *transform );
1176
1177/* set outbound transform of ssl context */
1178void mbedtls_ssl_set_outbound_transform( mbedtls_ssl_context *ssl,
1179 mbedtls_ssl_transform *transform );
1180
Manuel Pégourié-Gonnard5e94dde2015-05-26 11:57:05 +02001181int mbedtls_ssl_handshake_client_step( mbedtls_ssl_context *ssl );
1182int mbedtls_ssl_handshake_server_step( mbedtls_ssl_context *ssl );
1183void mbedtls_ssl_handshake_wrapup( mbedtls_ssl_context *ssl );
Ronald Cron8f6d39a2022-03-10 18:56:50 +01001184static inline void mbedtls_ssl_handshake_set_state( mbedtls_ssl_context *ssl,
1185 mbedtls_ssl_states state )
1186{
1187 ssl->state = ( int ) state;
1188}
Manuel Pégourié-Gonnard5e94dde2015-05-26 11:57:05 +02001189
1190int mbedtls_ssl_send_fatal_handshake_failure( mbedtls_ssl_context *ssl );
1191
1192void mbedtls_ssl_reset_checksum( mbedtls_ssl_context *ssl );
Jerry Yubef175d2022-01-28 10:52:05 +08001193
1194#if defined(MBEDTLS_SSL_PROTO_TLS1_2)
Manuel Pégourié-Gonnard5e94dde2015-05-26 11:57:05 +02001195int mbedtls_ssl_derive_keys( mbedtls_ssl_context *ssl );
Jerry Yubef175d2022-01-28 10:52:05 +08001196#endif /* MBEDTLS_SSL_PROTO_TLS1_2 */
Manuel Pégourié-Gonnard5e94dde2015-05-26 11:57:05 +02001197
Simon Butcher99000142016-10-13 17:21:01 +01001198int mbedtls_ssl_handle_message_type( mbedtls_ssl_context *ssl );
1199int mbedtls_ssl_prepare_handshake_record( mbedtls_ssl_context *ssl );
1200void mbedtls_ssl_update_handshake_status( mbedtls_ssl_context *ssl );
1201
Hanno Becker4a810fb2017-05-24 16:27:30 +01001202/**
1203 * \brief Update record layer
1204 *
1205 * This function roughly separates the implementation
1206 * of the logic of (D)TLS from the implementation
1207 * of the secure transport.
1208 *
Hanno Becker3a0aad12018-08-20 09:44:02 +01001209 * \param ssl The SSL context to use.
1210 * \param update_hs_digest This indicates if the handshake digest
1211 * should be automatically updated in case
1212 * a handshake message is found.
Hanno Becker4a810fb2017-05-24 16:27:30 +01001213 *
1214 * \return 0 or non-zero error code.
1215 *
1216 * \note A clarification on what is called 'record layer' here
1217 * is in order, as many sensible definitions are possible:
1218 *
1219 * The record layer takes as input an untrusted underlying
1220 * transport (stream or datagram) and transforms it into
1221 * a serially multiplexed, secure transport, which
1222 * conceptually provides the following:
1223 *
1224 * (1) Three datagram based, content-agnostic transports
1225 * for handshake, alert and CCS messages.
1226 * (2) One stream- or datagram-based transport
1227 * for application data.
1228 * (3) Functionality for changing the underlying transform
1229 * securing the contents.
1230 *
1231 * The interface to this functionality is given as follows:
1232 *
1233 * a Updating
1234 * [Currently implemented by mbedtls_ssl_read_record]
1235 *
1236 * Check if and on which of the four 'ports' data is pending:
1237 * Nothing, a controlling datagram of type (1), or application
1238 * data (2). In any case data is present, internal buffers
1239 * provide access to the data for the user to process it.
1240 * Consumption of type (1) datagrams is done automatically
1241 * on the next update, invalidating that the internal buffers
1242 * for previous datagrams, while consumption of application
1243 * data (2) is user-controlled.
1244 *
1245 * b Reading of application data
1246 * [Currently manual adaption of ssl->in_offt pointer]
1247 *
1248 * As mentioned in the last paragraph, consumption of data
1249 * is different from the automatic consumption of control
1250 * datagrams (1) because application data is treated as a stream.
1251 *
1252 * c Tracking availability of application data
1253 * [Currently manually through decreasing ssl->in_msglen]
1254 *
1255 * For efficiency and to retain datagram semantics for
1256 * application data in case of DTLS, the record layer
1257 * provides functionality for checking how much application
1258 * data is still available in the internal buffer.
1259 *
1260 * d Changing the transformation securing the communication.
1261 *
1262 * Given an opaque implementation of the record layer in the
1263 * above sense, it should be possible to implement the logic
1264 * of (D)TLS on top of it without the need to know anything
1265 * about the record layer's internals. This is done e.g.
1266 * in all the handshake handling functions, and in the
1267 * application data reading function mbedtls_ssl_read.
1268 *
1269 * \note The above tries to give a conceptual picture of the
1270 * record layer, but the current implementation deviates
1271 * from it in some places. For example, our implementation of
1272 * the update functionality through mbedtls_ssl_read_record
1273 * discards datagrams depending on the current state, which
1274 * wouldn't fall under the record layer's responsibility
1275 * following the above definition.
1276 *
1277 */
Hanno Becker3a0aad12018-08-20 09:44:02 +01001278int mbedtls_ssl_read_record( mbedtls_ssl_context *ssl,
1279 unsigned update_hs_digest );
Manuel Pégourié-Gonnard5e94dde2015-05-26 11:57:05 +02001280int mbedtls_ssl_fetch_input( mbedtls_ssl_context *ssl, size_t nb_want );
1281
Ronald Cron8f6d39a2022-03-10 18:56:50 +01001282/*
1283 * Write handshake message header
1284 */
1285int mbedtls_ssl_start_handshake_msg( mbedtls_ssl_context *ssl, unsigned hs_type,
1286 unsigned char **buf, size_t *buf_len );
1287
Hanno Beckerf3cce8b2021-08-07 14:29:49 +01001288int mbedtls_ssl_write_handshake_msg_ext( mbedtls_ssl_context *ssl,
Ronald Cron66dbf912022-02-02 15:33:46 +01001289 int update_checksum,
Ronald Cron00d012f22022-03-08 15:57:12 +01001290 int force_flush );
Hanno Beckerf3cce8b2021-08-07 14:29:49 +01001291static inline int mbedtls_ssl_write_handshake_msg( mbedtls_ssl_context *ssl )
1292{
Ronald Cron66dbf912022-02-02 15:33:46 +01001293 return( mbedtls_ssl_write_handshake_msg_ext( ssl, 1 /* update checksum */, 1 /* force flush */ ) );
Hanno Beckerf3cce8b2021-08-07 14:29:49 +01001294}
1295
Ronald Cron8f6d39a2022-03-10 18:56:50 +01001296/*
1297 * Write handshake message tail
1298 */
1299int mbedtls_ssl_finish_handshake_msg( mbedtls_ssl_context *ssl,
1300 size_t buf_len, size_t msg_len );
1301
Ronald Cron00d012f22022-03-08 15:57:12 +01001302int mbedtls_ssl_write_record( mbedtls_ssl_context *ssl, int force_flush );
Manuel Pégourié-Gonnard5e94dde2015-05-26 11:57:05 +02001303int mbedtls_ssl_flush_output( mbedtls_ssl_context *ssl );
1304
1305int mbedtls_ssl_parse_certificate( mbedtls_ssl_context *ssl );
1306int mbedtls_ssl_write_certificate( mbedtls_ssl_context *ssl );
1307
1308int mbedtls_ssl_parse_change_cipher_spec( mbedtls_ssl_context *ssl );
1309int mbedtls_ssl_write_change_cipher_spec( mbedtls_ssl_context *ssl );
1310
1311int mbedtls_ssl_parse_finished( mbedtls_ssl_context *ssl );
1312int mbedtls_ssl_write_finished( mbedtls_ssl_context *ssl );
1313
1314void mbedtls_ssl_optimize_checksum( mbedtls_ssl_context *ssl,
1315 const mbedtls_ssl_ciphersuite_t *ciphersuite_info );
1316
Ronald Cron8f6d39a2022-03-10 18:56:50 +01001317/*
1318 * Update checksum of handshake messages.
1319 */
1320void mbedtls_ssl_add_hs_msg_to_checksum( mbedtls_ssl_context *ssl,
1321 unsigned hs_type,
1322 unsigned char const *msg,
1323 size_t msg_len );
1324
Gilles Peskineeccd8882020-03-10 12:19:08 +01001325#if defined(MBEDTLS_KEY_EXCHANGE_SOME_PSK_ENABLED)
Ronald Cron8f6d39a2022-03-10 18:56:50 +01001326int mbedtls_ssl_psk_derive_premaster( mbedtls_ssl_context *ssl,
1327 mbedtls_key_exchange_type_t key_ex );
Ronald Crond491c2d2022-02-19 18:30:46 +01001328#if defined(MBEDTLS_SSL_CLI_C) && defined(MBEDTLS_SSL_PROTO_TLS1_2)
1329int mbedtls_ssl_conf_has_static_psk( mbedtls_ssl_config const *conf );
1330#endif
Guilhem Bryantd511ac32020-03-25 17:06:37 +00001331
Guilhem Bryant8a69ddd2020-03-27 11:13:39 +00001332/**
Guilhem Bryantd511ac32020-03-25 17:06:37 +00001333 * Get the first defined PSK by order of precedence:
1334 * 1. handshake PSK set by \c mbedtls_ssl_set_hs_psk() in the PSK callback
1335 * 2. static PSK configured by \c mbedtls_ssl_conf_psk()
1336 * Return a code and update the pair (PSK, PSK length) passed to this function
1337 */
1338static inline int mbedtls_ssl_get_psk( const mbedtls_ssl_context *ssl,
1339 const unsigned char **psk, size_t *psk_len )
1340{
1341 if( ssl->handshake->psk != NULL && ssl->handshake->psk_len > 0 )
1342 {
1343 *psk = ssl->handshake->psk;
1344 *psk_len = ssl->handshake->psk_len;
1345 }
1346
1347 else if( ssl->conf->psk != NULL && ssl->conf->psk_len > 0 )
1348 {
1349 *psk = ssl->conf->psk;
1350 *psk_len = ssl->conf->psk_len;
1351 }
1352
1353 else
1354 {
Guilhem Bryantb5f04e42020-04-01 11:23:58 +01001355 *psk = NULL;
1356 *psk_len = 0;
Guilhem Bryantd511ac32020-03-25 17:06:37 +00001357 return( MBEDTLS_ERR_SSL_PRIVATE_KEY_REQUIRED );
1358 }
1359
1360 return( 0 );
1361}
1362
1363#if defined(MBEDTLS_USE_PSA_CRYPTO)
Guilhem Bryant8a69ddd2020-03-27 11:13:39 +00001364/**
Guilhem Bryantd511ac32020-03-25 17:06:37 +00001365 * Get the first defined opaque PSK by order of precedence:
1366 * 1. handshake PSK set by \c mbedtls_ssl_set_hs_psk_opaque() in the PSK
1367 * callback
1368 * 2. static PSK configured by \c mbedtls_ssl_conf_psk_opaque()
1369 * Return an opaque PSK
1370 */
Andrzej Kurek03e01462022-01-03 12:53:24 +01001371static inline mbedtls_svc_key_id_t mbedtls_ssl_get_opaque_psk(
Guilhem Bryantd511ac32020-03-25 17:06:37 +00001372 const mbedtls_ssl_context *ssl )
1373{
Ronald Croncf56a0a2020-08-04 09:51:30 +02001374 if( ! mbedtls_svc_key_id_is_null( ssl->handshake->psk_opaque ) )
Guilhem Bryantd511ac32020-03-25 17:06:37 +00001375 return( ssl->handshake->psk_opaque );
1376
Ronald Croncf56a0a2020-08-04 09:51:30 +02001377 if( ! mbedtls_svc_key_id_is_null( ssl->conf->psk_opaque ) )
Guilhem Bryantd511ac32020-03-25 17:06:37 +00001378 return( ssl->conf->psk_opaque );
1379
Ronald Croncf56a0a2020-08-04 09:51:30 +02001380 return( MBEDTLS_SVC_KEY_ID_INIT );
Guilhem Bryantd511ac32020-03-25 17:06:37 +00001381}
Przemyslaw Stekiel430f3372022-01-10 11:55:46 +01001382
Guilhem Bryantd511ac32020-03-25 17:06:37 +00001383#endif /* MBEDTLS_USE_PSA_CRYPTO */
1384
1385#endif /* MBEDTLS_KEY_EXCHANGE_SOME_PSK_ENABLED */
Manuel Pégourié-Gonnard5e94dde2015-05-26 11:57:05 +02001386
1387#if defined(MBEDTLS_PK_C)
1388unsigned char mbedtls_ssl_sig_from_pk( mbedtls_pk_context *pk );
Hanno Becker7e5437a2017-04-28 17:15:26 +01001389unsigned char mbedtls_ssl_sig_from_pk_alg( mbedtls_pk_type_t type );
Manuel Pégourié-Gonnard5e94dde2015-05-26 11:57:05 +02001390mbedtls_pk_type_t mbedtls_ssl_pk_alg_from_sig( unsigned char sig );
1391#endif
1392
1393mbedtls_md_type_t mbedtls_ssl_md_alg_from_hash( unsigned char hash );
Manuel Pégourié-Gonnard7bfc1222015-06-17 14:34:48 +02001394unsigned char mbedtls_ssl_hash_from_md_alg( int md );
Ronald Cron4dcbca92022-03-07 10:21:40 +01001395
1396#if defined(MBEDTLS_SSL_PROTO_TLS1_2)
Simon Butcher99000142016-10-13 17:21:01 +01001397int mbedtls_ssl_set_calc_verify_md( mbedtls_ssl_context *ssl, int md );
Ronald Cron4dcbca92022-03-07 10:21:40 +01001398#endif
Manuel Pégourié-Gonnard5e94dde2015-05-26 11:57:05 +02001399
Manuel Pégourié-Gonnard0d63b842022-01-18 13:10:56 +01001400int mbedtls_ssl_check_curve_tls_id( const mbedtls_ssl_context *ssl, uint16_t tls_id );
Manuel Pégourié-Gonnardb541da62015-06-17 11:43:30 +02001401#if defined(MBEDTLS_ECP_C)
Manuel Pégourié-Gonnard9d412d82015-06-17 12:10:46 +02001402int mbedtls_ssl_check_curve( const mbedtls_ssl_context *ssl, mbedtls_ecp_group_id grp_id );
Manuel Pégourié-Gonnard5e94dde2015-05-26 11:57:05 +02001403#endif
1404
Ron Eldor089c9fe2018-12-06 17:12:49 +02001405#if defined(MBEDTLS_SSL_DTLS_SRTP)
Johan Pascal43f94902020-09-22 12:25:52 +02001406static inline mbedtls_ssl_srtp_profile mbedtls_ssl_check_srtp_profile_value
1407 ( const uint16_t srtp_profile_value )
Ron Eldor089c9fe2018-12-06 17:12:49 +02001408{
Johan Pascal43f94902020-09-22 12:25:52 +02001409 switch( srtp_profile_value )
Ron Eldor089c9fe2018-12-06 17:12:49 +02001410 {
Johan Pascal85269572020-08-25 10:01:54 +02001411 case MBEDTLS_TLS_SRTP_AES128_CM_HMAC_SHA1_80:
Johan Pascal85269572020-08-25 10:01:54 +02001412 case MBEDTLS_TLS_SRTP_AES128_CM_HMAC_SHA1_32:
Johan Pascal85269572020-08-25 10:01:54 +02001413 case MBEDTLS_TLS_SRTP_NULL_HMAC_SHA1_80:
Johan Pascal85269572020-08-25 10:01:54 +02001414 case MBEDTLS_TLS_SRTP_NULL_HMAC_SHA1_32:
Johan Pascal43f94902020-09-22 12:25:52 +02001415 return srtp_profile_value;
Ron Eldor089c9fe2018-12-06 17:12:49 +02001416 default: break;
1417 }
Johan Pascal43f94902020-09-22 12:25:52 +02001418 return( MBEDTLS_TLS_SRTP_UNSET );
Ron Eldor089c9fe2018-12-06 17:12:49 +02001419}
1420#endif
1421
Manuel Pégourié-Gonnard5e94dde2015-05-26 11:57:05 +02001422#if defined(MBEDTLS_X509_CRT_PARSE_C)
1423static inline mbedtls_pk_context *mbedtls_ssl_own_key( mbedtls_ssl_context *ssl )
1424{
1425 mbedtls_ssl_key_cert *key_cert;
1426
1427 if( ssl->handshake != NULL && ssl->handshake->key_cert != NULL )
1428 key_cert = ssl->handshake->key_cert;
1429 else
1430 key_cert = ssl->conf->key_cert;
1431
1432 return( key_cert == NULL ? NULL : key_cert->key );
1433}
1434
1435static inline mbedtls_x509_crt *mbedtls_ssl_own_cert( mbedtls_ssl_context *ssl )
1436{
1437 mbedtls_ssl_key_cert *key_cert;
1438
1439 if( ssl->handshake != NULL && ssl->handshake->key_cert != NULL )
1440 key_cert = ssl->handshake->key_cert;
1441 else
1442 key_cert = ssl->conf->key_cert;
1443
1444 return( key_cert == NULL ? NULL : key_cert->cert );
1445}
1446
1447/*
1448 * Check usage of a certificate wrt extensions:
1449 * keyUsage, extendedKeyUsage (later), and nSCertType (later).
1450 *
1451 * Warning: cert_endpoint is the endpoint of the cert (ie, of our peer when we
1452 * check a cert we received from them)!
1453 *
1454 * Return 0 if everything is OK, -1 if not.
1455 */
1456int mbedtls_ssl_check_cert_usage( const mbedtls_x509_crt *cert,
1457 const mbedtls_ssl_ciphersuite_t *ciphersuite,
1458 int cert_endpoint,
1459 uint32_t *flags );
1460#endif /* MBEDTLS_X509_CRT_PARSE_C */
1461
1462void mbedtls_ssl_write_version( int major, int minor, int transport,
1463 unsigned char ver[2] );
1464void mbedtls_ssl_read_version( int *major, int *minor, int transport,
1465 const unsigned char ver[2] );
1466
Hanno Becker5903de42019-05-03 14:46:38 +01001467static inline size_t mbedtls_ssl_in_hdr_len( const mbedtls_ssl_context *ssl )
Manuel Pégourié-Gonnard5e94dde2015-05-26 11:57:05 +02001468{
Hanno Becker47be7682019-07-12 09:55:46 +01001469#if !defined(MBEDTLS_SSL_PROTO_DTLS)
1470 ((void) ssl);
1471#endif
1472
1473#if defined(MBEDTLS_SSL_PROTO_DTLS)
1474 if( ssl->conf->transport == MBEDTLS_SSL_TRANSPORT_DATAGRAM )
1475 {
1476 return( 13 );
1477 }
1478 else
1479#endif /* MBEDTLS_SSL_PROTO_DTLS */
1480 {
1481 return( 5 );
1482 }
Hanno Becker5903de42019-05-03 14:46:38 +01001483}
1484
1485static inline size_t mbedtls_ssl_out_hdr_len( const mbedtls_ssl_context *ssl )
1486{
Hanno Becker3b154c12019-05-03 15:05:27 +01001487 return( (size_t) ( ssl->out_iv - ssl->out_hdr ) );
Manuel Pégourié-Gonnard5e94dde2015-05-26 11:57:05 +02001488}
1489
1490static inline size_t mbedtls_ssl_hs_hdr_len( const mbedtls_ssl_context *ssl )
1491{
1492#if defined(MBEDTLS_SSL_PROTO_DTLS)
1493 if( ssl->conf->transport == MBEDTLS_SSL_TRANSPORT_DATAGRAM )
1494 return( 12 );
1495#else
1496 ((void) ssl);
1497#endif
1498 return( 4 );
1499}
1500
1501#if defined(MBEDTLS_SSL_PROTO_DTLS)
1502void mbedtls_ssl_send_flight_completed( mbedtls_ssl_context *ssl );
1503void mbedtls_ssl_recv_flight_completed( mbedtls_ssl_context *ssl );
1504int mbedtls_ssl_resend( mbedtls_ssl_context *ssl );
Manuel Pégourié-Gonnard87a346f2017-09-13 12:45:21 +02001505int mbedtls_ssl_flight_transmit( mbedtls_ssl_context *ssl );
Manuel Pégourié-Gonnard5e94dde2015-05-26 11:57:05 +02001506#endif
1507
1508/* Visible for testing purposes only */
1509#if defined(MBEDTLS_SSL_DTLS_ANTI_REPLAY)
Hanno Becker0183d692019-07-12 08:50:37 +01001510int mbedtls_ssl_dtls_replay_check( mbedtls_ssl_context const *ssl );
Manuel Pégourié-Gonnard5e94dde2015-05-26 11:57:05 +02001511void mbedtls_ssl_dtls_replay_update( mbedtls_ssl_context *ssl );
1512#endif
1513
Hanno Becker52055ae2019-02-06 14:30:46 +00001514int mbedtls_ssl_session_copy( mbedtls_ssl_session *dst,
1515 const mbedtls_ssl_session *src );
1516
TRodziewicz0f82ec62021-05-12 17:49:18 +02001517#if defined(MBEDTLS_SSL_PROTO_TLS1_2)
Andrzej Kurek814feff2019-01-14 04:35:19 -05001518/* The hash buffer must have at least MBEDTLS_MD_MAX_SIZE bytes of length. */
Andres Amaya Garcia46f5a3e2017-07-20 16:17:51 +01001519int mbedtls_ssl_get_key_exchange_md_tls1_2( mbedtls_ssl_context *ssl,
Gilles Peskineca1d7422018-04-24 11:53:22 +02001520 unsigned char *hash, size_t *hashlen,
1521 unsigned char *data, size_t data_len,
1522 mbedtls_md_type_t md_alg );
TRodziewicz0f82ec62021-05-12 17:49:18 +02001523#endif /* MBEDTLS_SSL_PROTO_TLS1_2 */
Andres Amaya Garcia46f5a3e2017-07-20 16:17:51 +01001524
Manuel Pégourié-Gonnard5e94dde2015-05-26 11:57:05 +02001525#ifdef __cplusplus
1526}
1527#endif
1528
Hanno Beckera18d1322018-01-03 14:27:32 +00001529void mbedtls_ssl_transform_init( mbedtls_ssl_transform *transform );
1530int mbedtls_ssl_encrypt_buf( mbedtls_ssl_context *ssl,
1531 mbedtls_ssl_transform *transform,
1532 mbedtls_record *rec,
1533 int (*f_rng)(void *, unsigned char *, size_t),
1534 void *p_rng );
Hanno Becker605949f2019-07-12 08:23:59 +01001535int mbedtls_ssl_decrypt_buf( mbedtls_ssl_context const *ssl,
Hanno Beckera18d1322018-01-03 14:27:32 +00001536 mbedtls_ssl_transform *transform,
1537 mbedtls_record *rec );
1538
Hanno Beckerdd772292020-02-05 10:38:31 +00001539/* Length of the "epoch" field in the record header */
1540static inline size_t mbedtls_ssl_ep_len( const mbedtls_ssl_context *ssl )
1541{
1542#if defined(MBEDTLS_SSL_PROTO_DTLS)
1543 if( ssl->conf->transport == MBEDTLS_SSL_TRANSPORT_DATAGRAM )
1544 return( 2 );
1545#else
1546 ((void) ssl);
1547#endif
1548 return( 0 );
1549}
1550
Hanno Becker08f09132020-02-11 15:40:07 +00001551#if defined(MBEDTLS_SSL_PROTO_DTLS)
Hanno Becker786300f2020-02-05 10:46:40 +00001552int mbedtls_ssl_resend_hello_request( mbedtls_ssl_context *ssl );
Hanno Becker08f09132020-02-11 15:40:07 +00001553#endif /* MBEDTLS_SSL_PROTO_DTLS */
Hanno Becker0f57a652020-02-05 10:37:26 +00001554
1555void mbedtls_ssl_set_timer( mbedtls_ssl_context *ssl, uint32_t millisecs );
Hanno Becker7876d122020-02-05 10:39:31 +00001556int mbedtls_ssl_check_timer( mbedtls_ssl_context *ssl );
1557
Hanno Becker3e6f8ab2020-02-05 10:40:57 +00001558void mbedtls_ssl_reset_in_out_pointers( mbedtls_ssl_context *ssl );
1559void mbedtls_ssl_update_out_pointers( mbedtls_ssl_context *ssl,
1560 mbedtls_ssl_transform *transform );
1561void mbedtls_ssl_update_in_pointers( mbedtls_ssl_context *ssl );
1562
Hanno Becker43aefe22020-02-05 10:44:56 +00001563int mbedtls_ssl_session_reset_int( mbedtls_ssl_context *ssl, int partial );
XiaokangQian78b1fa72022-01-19 06:56:30 +00001564void mbedtls_ssl_session_reset_msg_layer( mbedtls_ssl_context *ssl,
1565 int partial );
Hanno Becker43aefe22020-02-05 10:44:56 +00001566
Jerry Yue7047812021-09-13 19:26:39 +08001567/*
Jerry Yu394ece62021-09-14 22:17:21 +08001568 * Send pending alert
Jerry Yue7047812021-09-13 19:26:39 +08001569 */
1570int mbedtls_ssl_handle_pending_alert( mbedtls_ssl_context *ssl );
1571
Jerry Yu394ece62021-09-14 22:17:21 +08001572/*
1573 * Set pending fatal alert flag.
1574 */
1575void mbedtls_ssl_pend_fatal_alert( mbedtls_ssl_context *ssl,
1576 unsigned char alert_type,
1577 int alert_reason );
1578
1579/* Alias of mbedtls_ssl_pend_fatal_alert */
1580#define MBEDTLS_SSL_PEND_FATAL_ALERT( type, user_return_value ) \
1581 mbedtls_ssl_pend_fatal_alert( ssl, type, user_return_value )
1582
Hanno Becker7e8e6a62020-02-05 10:45:48 +00001583#if defined(MBEDTLS_SSL_DTLS_ANTI_REPLAY)
1584void mbedtls_ssl_dtls_replay_reset( mbedtls_ssl_context *ssl );
1585#endif
1586
Hanno Beckerce5f5fd2020-02-05 10:47:44 +00001587void mbedtls_ssl_handshake_wrapup_free_hs_transform( mbedtls_ssl_context *ssl );
1588
Hanno Becker08f09132020-02-11 15:40:07 +00001589#if defined(MBEDTLS_SSL_RENEGOTIATION)
Hanno Becker40cdaa12020-02-05 10:48:27 +00001590int mbedtls_ssl_start_renegotiation( mbedtls_ssl_context *ssl );
Hanno Becker08f09132020-02-11 15:40:07 +00001591#endif /* MBEDTLS_SSL_RENEGOTIATION */
Hanno Becker89490712020-02-05 10:50:12 +00001592
Hanno Becker533ab5f2020-02-05 10:49:13 +00001593#if defined(MBEDTLS_SSL_PROTO_DTLS)
Hanno Becker08f09132020-02-11 15:40:07 +00001594size_t mbedtls_ssl_get_current_mtu( const mbedtls_ssl_context *ssl );
Hanno Becker533ab5f2020-02-05 10:49:13 +00001595void mbedtls_ssl_buffering_free( mbedtls_ssl_context *ssl );
1596void mbedtls_ssl_flight_free( mbedtls_ssl_flight_item *flight );
1597#endif /* MBEDTLS_SSL_PROTO_DTLS */
1598
Jerry Yu60835a82021-08-04 10:13:52 +08001599/**
1600 * ssl utils functions for checking configuration.
1601 */
1602
Ronald Cron6f135e12021-12-08 16:57:54 +01001603#if defined(MBEDTLS_SSL_PROTO_TLS1_3)
Jerry Yu60835a82021-08-04 10:13:52 +08001604static inline int mbedtls_ssl_conf_is_tls13_only( const mbedtls_ssl_config *conf )
1605{
1606 if( conf->min_major_ver == MBEDTLS_SSL_MAJOR_VERSION_3 &&
1607 conf->max_major_ver == MBEDTLS_SSL_MAJOR_VERSION_3 &&
1608 conf->min_minor_ver == MBEDTLS_SSL_MINOR_VERSION_4 &&
1609 conf->max_minor_ver == MBEDTLS_SSL_MINOR_VERSION_4 )
1610 {
1611 return( 1 );
1612 }
1613 return( 0 );
1614}
Jerry Yu3ad14ac2022-01-11 17:13:16 +08001615
Ronald Cron6f135e12021-12-08 16:57:54 +01001616#endif /* MBEDTLS_SSL_PROTO_TLS1_3 */
Jerry Yu60835a82021-08-04 10:13:52 +08001617
1618#if defined(MBEDTLS_SSL_PROTO_TLS1_2)
1619static inline int mbedtls_ssl_conf_is_tls12_only( const mbedtls_ssl_config *conf )
1620{
1621 if( conf->min_major_ver == MBEDTLS_SSL_MAJOR_VERSION_3 &&
1622 conf->max_major_ver == MBEDTLS_SSL_MAJOR_VERSION_3 &&
1623 conf->min_minor_ver == MBEDTLS_SSL_MINOR_VERSION_3 &&
1624 conf->max_minor_ver == MBEDTLS_SSL_MINOR_VERSION_3 )
1625 {
1626 return( 1 );
1627 }
1628 return( 0 );
1629}
Jerry Yu3ad14ac2022-01-11 17:13:16 +08001630
Jerry Yu60835a82021-08-04 10:13:52 +08001631#endif /* MBEDTLS_SSL_PROTO_TLS1_2 */
1632
Jerry Yu3ad14ac2022-01-11 17:13:16 +08001633static inline int mbedtls_ssl_conf_is_tls13_enabled( const mbedtls_ssl_config *conf )
1634{
1635#if defined(MBEDTLS_SSL_PROTO_TLS1_3)
1636 if( conf->min_major_ver == MBEDTLS_SSL_MAJOR_VERSION_3 &&
1637 conf->max_major_ver == MBEDTLS_SSL_MAJOR_VERSION_3 &&
1638 conf->min_minor_ver <= MBEDTLS_SSL_MINOR_VERSION_4 &&
1639 conf->max_minor_ver >= MBEDTLS_SSL_MINOR_VERSION_4 )
1640 {
1641 return( 1 );
1642 }
1643 return( 0 );
1644#else
1645 ((void) conf);
1646 return( 0 );
1647#endif
1648}
1649
1650static inline int mbedtls_ssl_conf_is_tls12_enabled( const mbedtls_ssl_config *conf )
1651{
1652#if defined(MBEDTLS_SSL_PROTO_TLS1_2)
1653 if( conf->min_major_ver == MBEDTLS_SSL_MAJOR_VERSION_3 &&
1654 conf->max_major_ver == MBEDTLS_SSL_MAJOR_VERSION_3 &&
1655 conf->min_minor_ver <= MBEDTLS_SSL_MINOR_VERSION_3 &&
1656 conf->max_minor_ver >= MBEDTLS_SSL_MINOR_VERSION_3 )
1657 {
1658 return( 1 );
1659 }
1660 return( 0 );
1661#else
1662 ((void) conf);
1663 return( 0 );
1664#endif
1665}
1666
Ronald Cron6f135e12021-12-08 16:57:54 +01001667#if defined(MBEDTLS_SSL_PROTO_TLS1_2) && defined(MBEDTLS_SSL_PROTO_TLS1_3)
Jerry Yu60835a82021-08-04 10:13:52 +08001668static inline int mbedtls_ssl_conf_is_hybrid_tls12_tls13( const mbedtls_ssl_config *conf )
1669{
1670 if( conf->min_major_ver == MBEDTLS_SSL_MAJOR_VERSION_3 &&
1671 conf->max_major_ver == MBEDTLS_SSL_MAJOR_VERSION_3 &&
1672 conf->min_minor_ver == MBEDTLS_SSL_MINOR_VERSION_3 &&
1673 conf->max_minor_ver == MBEDTLS_SSL_MINOR_VERSION_4 )
1674 {
1675 return( 1 );
1676 }
1677 return( 0 );
1678}
Ronald Cron6f135e12021-12-08 16:57:54 +01001679#endif /* MBEDTLS_SSL_PROTO_TLS1_2 && MBEDTLS_SSL_PROTO_TLS1_3 */
Jerry Yu60835a82021-08-04 10:13:52 +08001680
Ronald Cron6f135e12021-12-08 16:57:54 +01001681#if defined(MBEDTLS_SSL_PROTO_TLS1_3)
Jerry Yua6e6c272021-11-17 17:54:13 +08001682
1683int mbedtls_ssl_tls13_process_finished_message( mbedtls_ssl_context *ssl );
1684int mbedtls_ssl_tls13_write_finished_message( mbedtls_ssl_context *ssl );
1685void mbedtls_ssl_tls13_handshake_wrapup( mbedtls_ssl_context *ssl );
1686
1687/**
Ronald Cron3d580bf2022-02-18 17:24:56 +01001688 * \brief Given an SSL context and its associated configuration, write the TLS
1689 * 1.3 specific extensions of the ClientHello message.
1690 *
1691 * \param[in] ssl SSL context
1692 * \param[in] buf Base address of the buffer where to write the extensions
1693 * \param[in] end End address of the buffer where to write the extensions
1694 * \param[out] out_len Length of the data written into the buffer \p buf
1695 */
1696int mbedtls_ssl_tls13_write_client_hello_exts( mbedtls_ssl_context *ssl,
1697 unsigned char *buf,
1698 unsigned char *end,
1699 size_t *out_len );
1700
1701/**
Jerry Yua6e6c272021-11-17 17:54:13 +08001702 * \brief TLS 1.3 client side state machine entry
1703 *
1704 * \param ssl SSL context
1705 */
1706int mbedtls_ssl_tls13_handshake_client_step( mbedtls_ssl_context *ssl );
1707
1708/**
1709 * \brief TLS 1.3 server side state machine entry
1710 *
1711 * \param ssl SSL context
1712 */
1713int mbedtls_ssl_tls13_handshake_server_step( mbedtls_ssl_context *ssl );
1714
Jerry Yu26f4d152021-08-23 17:42:37 +08001715
1716/*
1717 * Helper functions around key exchange modes.
1718 */
Jerry Yub60e3cf2021-09-08 16:41:02 +08001719static inline unsigned mbedtls_ssl_conf_tls13_check_kex_modes( mbedtls_ssl_context *ssl,
Jerry Yu26f4d152021-08-23 17:42:37 +08001720 int kex_mode_mask )
1721{
1722 return( ( ssl->conf->tls13_kex_modes & kex_mode_mask ) != 0 );
1723}
1724
Jerry Yub60e3cf2021-09-08 16:41:02 +08001725static inline int mbedtls_ssl_conf_tls13_psk_enabled( mbedtls_ssl_context *ssl )
Jerry Yu26f4d152021-08-23 17:42:37 +08001726{
Jerry Yub60e3cf2021-09-08 16:41:02 +08001727 return( mbedtls_ssl_conf_tls13_check_kex_modes( ssl,
Xiaofei Bai746f9482021-11-12 08:53:56 +00001728 MBEDTLS_SSL_TLS1_3_KEY_EXCHANGE_MODE_PSK ) );
Jerry Yu26f4d152021-08-23 17:42:37 +08001729}
1730
1731static inline int mbedtls_ssl_conf_tls13_psk_ephemeral_enabled( mbedtls_ssl_context *ssl )
1732{
Jerry Yub60e3cf2021-09-08 16:41:02 +08001733 return( mbedtls_ssl_conf_tls13_check_kex_modes( ssl,
Xiaofei Bai746f9482021-11-12 08:53:56 +00001734 MBEDTLS_SSL_TLS1_3_KEY_EXCHANGE_MODE_PSK_EPHEMERAL ) );
Jerry Yu26f4d152021-08-23 17:42:37 +08001735}
1736
Jerry Yub60e3cf2021-09-08 16:41:02 +08001737static inline int mbedtls_ssl_conf_tls13_ephemeral_enabled( mbedtls_ssl_context *ssl )
Jerry Yu26f4d152021-08-23 17:42:37 +08001738{
Jerry Yub60e3cf2021-09-08 16:41:02 +08001739 return( mbedtls_ssl_conf_tls13_check_kex_modes( ssl,
Xiaofei Bai746f9482021-11-12 08:53:56 +00001740 MBEDTLS_SSL_TLS1_3_KEY_EXCHANGE_MODE_EPHEMERAL ) );
Jerry Yu26f4d152021-08-23 17:42:37 +08001741}
1742
1743static inline int mbedtls_ssl_conf_tls13_some_ephemeral_enabled( mbedtls_ssl_context *ssl )
1744{
Jerry Yub60e3cf2021-09-08 16:41:02 +08001745 return( mbedtls_ssl_conf_tls13_check_kex_modes( ssl,
Xiaofei Bai746f9482021-11-12 08:53:56 +00001746 MBEDTLS_SSL_TLS1_3_KEY_EXCHANGE_MODE_EPHEMERAL_ALL ) );
Jerry Yu26f4d152021-08-23 17:42:37 +08001747}
1748
1749static inline int mbedtls_ssl_conf_tls13_some_psk_enabled( mbedtls_ssl_context *ssl )
1750{
Jerry Yub60e3cf2021-09-08 16:41:02 +08001751 return( mbedtls_ssl_conf_tls13_check_kex_modes( ssl,
Xiaofei Bai746f9482021-11-12 08:53:56 +00001752 MBEDTLS_SSL_TLS1_3_KEY_EXCHANGE_MODE_PSK_ALL ) );
Jerry Yu26f4d152021-08-23 17:42:37 +08001753}
1754
Jerry Yuadf861a2021-09-29 21:22:08 +08001755/**
1756 * Given a list of key exchange modes, check if at least one of them is
1757 * supported.
1758 *
1759 * \param[in] ssl SSL context
Jerry Yu0cabad32021-09-30 09:52:35 +08001760 * \param kex_modes_mask Mask of the key exchange modes to check
Jerry Yuadf861a2021-09-29 21:22:08 +08001761 *
1762 * \return 0 if at least one of the key exchange modes is supported,
Jerry Yudca3d5d2021-10-08 14:19:29 +08001763 * !=0 otherwise.
Jerry Yuadf861a2021-09-29 21:22:08 +08001764 */
Xiaofei Bai746f9482021-11-12 08:53:56 +00001765static inline unsigned mbedtls_ssl_tls13_check_kex_modes( mbedtls_ssl_context *ssl,
1766 int kex_modes_mask )
Jerry Yu1b7c4a42021-09-09 17:09:12 +08001767{
Xiaofei Baid25fab62021-12-02 06:36:27 +00001768 return( ( ssl->handshake->tls13_kex_modes & kex_modes_mask ) == 0 );
Jerry Yu1b7c4a42021-09-09 17:09:12 +08001769}
1770
Xiaofei Bai746f9482021-11-12 08:53:56 +00001771static inline int mbedtls_ssl_tls13_psk_enabled( mbedtls_ssl_context *ssl )
Jerry Yu1b7c4a42021-09-09 17:09:12 +08001772{
Xiaofei Bai746f9482021-11-12 08:53:56 +00001773 return( ! mbedtls_ssl_tls13_check_kex_modes( ssl,
1774 MBEDTLS_SSL_TLS1_3_KEY_EXCHANGE_MODE_PSK ) );
Jerry Yu1b7c4a42021-09-09 17:09:12 +08001775}
1776
Xiaofei Bai746f9482021-11-12 08:53:56 +00001777static inline int mbedtls_ssl_tls13_psk_ephemeral_enabled(
Jerry Yu1b7c4a42021-09-09 17:09:12 +08001778 mbedtls_ssl_context *ssl )
1779{
Xiaofei Bai746f9482021-11-12 08:53:56 +00001780 return( ! mbedtls_ssl_tls13_check_kex_modes( ssl,
1781 MBEDTLS_SSL_TLS1_3_KEY_EXCHANGE_MODE_PSK_EPHEMERAL ) );
Jerry Yu1b7c4a42021-09-09 17:09:12 +08001782}
1783
Xiaofei Bai746f9482021-11-12 08:53:56 +00001784static inline int mbedtls_ssl_tls13_ephemeral_enabled( mbedtls_ssl_context *ssl )
Jerry Yu1b7c4a42021-09-09 17:09:12 +08001785{
Xiaofei Bai746f9482021-11-12 08:53:56 +00001786 return( ! mbedtls_ssl_tls13_check_kex_modes( ssl,
1787 MBEDTLS_SSL_TLS1_3_KEY_EXCHANGE_MODE_EPHEMERAL ) );
Jerry Yu1b7c4a42021-09-09 17:09:12 +08001788}
1789
Xiaofei Bai746f9482021-11-12 08:53:56 +00001790static inline int mbedtls_ssl_tls13_some_ephemeral_enabled( mbedtls_ssl_context *ssl )
Jerry Yu1b7c4a42021-09-09 17:09:12 +08001791{
Xiaofei Bai746f9482021-11-12 08:53:56 +00001792 return( ! mbedtls_ssl_tls13_check_kex_modes( ssl,
1793 MBEDTLS_SSL_TLS1_3_KEY_EXCHANGE_MODE_EPHEMERAL_ALL ) );
Jerry Yu1b7c4a42021-09-09 17:09:12 +08001794}
1795
Xiaofei Bai746f9482021-11-12 08:53:56 +00001796static inline int mbedtls_ssl_tls13_some_psk_enabled( mbedtls_ssl_context *ssl )
Jerry Yu1b7c4a42021-09-09 17:09:12 +08001797{
Xiaofei Bai746f9482021-11-12 08:53:56 +00001798 return( ! mbedtls_ssl_tls13_check_kex_modes( ssl,
1799 MBEDTLS_SSL_TLS1_3_KEY_EXCHANGE_MODE_PSK_ALL ) );
Jerry Yu1b7c4a42021-09-09 17:09:12 +08001800}
1801
Jerry Yu5cc8f0a2021-08-27 17:21:44 +08001802/*
XiaokangQian6b226b02021-09-24 07:51:16 +00001803 * Fetch TLS 1.3 handshake message header
1804 */
Xiaofei Bai746f9482021-11-12 08:53:56 +00001805int mbedtls_ssl_tls13_fetch_handshake_msg( mbedtls_ssl_context *ssl,
1806 unsigned hs_type,
1807 unsigned char **buf,
1808 size_t *buf_len );
XiaokangQian6b226b02021-09-24 07:51:16 +00001809
1810/*
Xiaofei Bai947571e2021-09-29 09:12:03 +00001811 * Handler of TLS 1.3 server certificate message
1812 */
1813int mbedtls_ssl_tls13_process_certificate( mbedtls_ssl_context *ssl );
1814
Jerry Yu90f152d2022-01-29 22:12:42 +08001815#if defined(MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED)
Jerry Yu5cc8f0a2021-08-27 17:21:44 +08001816/*
Jerry Yu3e536442022-02-15 11:05:59 +08001817 * Handler of TLS 1.3 write Certificate message
Jerry Yu5cc35062022-01-28 16:16:08 +08001818 */
1819int mbedtls_ssl_tls13_write_certificate( mbedtls_ssl_context *ssl );
1820
1821/*
Jerry Yu3e536442022-02-15 11:05:59 +08001822 * Handler of TLS 1.3 write Certificate Verify message
Jerry Yu8511f122022-01-29 10:01:04 +08001823 */
1824int mbedtls_ssl_tls13_write_certificate_verify( mbedtls_ssl_context *ssl );
Jerry Yu90f152d2022-01-29 22:12:42 +08001825
1826#endif /* MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED */
1827
Jerry Yu8511f122022-01-29 10:01:04 +08001828/*
Jerry Yu30b071c2021-09-12 20:16:03 +08001829 * Generic handler of Certificate Verify
1830 */
1831int mbedtls_ssl_tls13_process_certificate_verify( mbedtls_ssl_context *ssl );
1832
1833/*
Ronald Cron49ad6192021-11-24 16:25:31 +01001834 * Write of dummy-CCS's for middlebox compatibility
1835 */
1836int mbedtls_ssl_tls13_write_change_cipher_spec( mbedtls_ssl_context *ssl );
1837
XiaokangQian647719a2021-12-07 09:16:29 +00001838int mbedtls_ssl_reset_transcript_for_hrr( mbedtls_ssl_context *ssl );
1839
Jerry Yuf017ee42022-01-12 15:49:48 +08001840#endif /* MBEDTLS_SSL_PROTO_TLS1_3 */
1841
Jerry Yubc20bdd2021-08-24 15:59:48 +08001842#if defined(MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED)
Jerry Yu5cc8f0a2021-08-27 17:21:44 +08001843/*
Xiaofei Bai69fcd392022-01-20 08:25:00 +00001844 * Parse TLS 1.3 Signature Algorithm extension
1845 */
1846int mbedtls_ssl_tls13_parse_sig_alg_ext( mbedtls_ssl_context *ssl,
1847 const unsigned char *buf,
1848 const unsigned char *end );
Jerry Yubc20bdd2021-08-24 15:59:48 +08001849#endif /* MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED */
Jerry Yu65dd2cc2021-08-18 16:38:40 +08001850
Jerry Yu000f9762021-09-14 11:12:51 +08001851/* Get handshake transcript */
1852int mbedtls_ssl_get_handshake_transcript( mbedtls_ssl_context *ssl,
1853 const mbedtls_md_type_t md,
1854 unsigned char *dst,
1855 size_t dst_len,
1856 size_t *olen );
1857
Brett Warrene0edc842021-08-17 09:53:13 +01001858/*
1859 * Return supported groups.
1860 *
1861 * In future, invocations can be changed to ssl->conf->group_list
1862 * when mbedtls_ssl_conf_curves() is deleted.
1863 *
1864 * ssl->handshake->group_list is either a translation of curve_list to IANA TLS group
1865 * identifiers when mbedtls_ssl_conf_curves() has been used, or a pointer to
1866 * ssl->conf->group_list when mbedtls_ssl_conf_groups() has been more recently invoked.
1867 *
1868 */
1869static inline const void *mbedtls_ssl_get_groups( const mbedtls_ssl_context *ssl )
1870{
1871 #if defined(MBEDTLS_DEPRECATED_REMOVED) || !defined(MBEDTLS_ECP_C)
1872 return( ssl->conf->group_list );
1873 #else
1874 if( ( ssl->handshake != NULL ) && ( ssl->handshake->group_list != NULL ) )
1875 return( ssl->handshake->group_list );
1876 else
1877 return( ssl->conf->group_list );
1878 #endif
1879}
1880
Jerry Yuba073422021-12-20 22:22:15 +08001881/*
1882 * Helper functions for NamedGroup.
1883 */
Jerry Yu3ad14ac2022-01-11 17:13:16 +08001884static inline int mbedtls_ssl_tls12_named_group_is_ecdhe( uint16_t named_group )
Jerry Yuba073422021-12-20 22:22:15 +08001885{
1886 /*
Jerry Yu3ad14ac2022-01-11 17:13:16 +08001887 * RFC 8422 section 5.1.1
Jerry Yuba073422021-12-20 22:22:15 +08001888 */
Jerry Yuf0fede52022-01-12 10:57:47 +08001889 return( named_group == MBEDTLS_SSL_IANA_TLS_GROUP_X25519 ||
1890 named_group == MBEDTLS_SSL_IANA_TLS_GROUP_BP256R1 ||
1891 named_group == MBEDTLS_SSL_IANA_TLS_GROUP_BP384R1 ||
1892 named_group == MBEDTLS_SSL_IANA_TLS_GROUP_BP512R1 ||
1893 named_group == MBEDTLS_SSL_IANA_TLS_GROUP_X448 ||
1894 /* Below deprected curves should be removed with notice to users */
1895 named_group == MBEDTLS_SSL_IANA_TLS_GROUP_SECP192K1 ||
Jerry Yu3ad14ac2022-01-11 17:13:16 +08001896 named_group == MBEDTLS_SSL_IANA_TLS_GROUP_SECP192R1 ||
1897 named_group == MBEDTLS_SSL_IANA_TLS_GROUP_SECP224K1 ||
1898 named_group == MBEDTLS_SSL_IANA_TLS_GROUP_SECP224R1 ||
1899 named_group == MBEDTLS_SSL_IANA_TLS_GROUP_SECP256K1 ||
1900 named_group == MBEDTLS_SSL_IANA_TLS_GROUP_SECP256R1 ||
1901 named_group == MBEDTLS_SSL_IANA_TLS_GROUP_SECP384R1 ||
Jerry Yuf0fede52022-01-12 10:57:47 +08001902 named_group == MBEDTLS_SSL_IANA_TLS_GROUP_SECP521R1 );
Jerry Yuba073422021-12-20 22:22:15 +08001903}
1904
1905static inline int mbedtls_ssl_tls13_named_group_is_ecdhe( uint16_t named_group )
1906{
Jerry Yuf0fede52022-01-12 10:57:47 +08001907 return( named_group == MBEDTLS_SSL_IANA_TLS_GROUP_X25519 ||
1908 named_group == MBEDTLS_SSL_IANA_TLS_GROUP_SECP256R1 ||
Jerry Yuba073422021-12-20 22:22:15 +08001909 named_group == MBEDTLS_SSL_IANA_TLS_GROUP_SECP384R1 ||
1910 named_group == MBEDTLS_SSL_IANA_TLS_GROUP_SECP521R1 ||
Jerry Yuba073422021-12-20 22:22:15 +08001911 named_group == MBEDTLS_SSL_IANA_TLS_GROUP_X448 );
1912}
1913
1914static inline int mbedtls_ssl_tls13_named_group_is_dhe( uint16_t named_group )
1915{
1916 return( named_group >= MBEDTLS_SSL_IANA_TLS_GROUP_FFDHE2048 &&
1917 named_group <= MBEDTLS_SSL_IANA_TLS_GROUP_FFDHE8192 );
1918}
1919
Jerry Yuafdfed12021-12-22 10:49:02 +08001920/*
Jerry Yu713013f2022-01-17 18:16:35 +08001921 * Return supported signature algorithms.
1922 *
1923 * In future, invocations can be changed to ssl->conf->sig_algs when
1924 * mbedtls_ssl_conf_sig_hashes() is deleted.
1925 *
Jerry Yu7ddc38c2022-01-19 11:08:05 +08001926 * ssl->handshake->sig_algs is either a translation of sig_hashes to IANA TLS
1927 * signature algorithm identifiers when mbedtls_ssl_conf_sig_hashes() has been
1928 * used, or a pointer to ssl->conf->sig_algs when mbedtls_ssl_conf_sig_algs() has
1929 * been more recently invoked.
1930 *
Jerry Yuafdfed12021-12-22 10:49:02 +08001931 */
Jerry Yu713013f2022-01-17 18:16:35 +08001932static inline const void *mbedtls_ssl_get_sig_algs(
1933 const mbedtls_ssl_context *ssl )
Jerry Yuafdfed12021-12-22 10:49:02 +08001934{
1935#if defined(MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED)
Manuel Pégourié-Gonnardf7d704d2022-01-28 10:05:56 +01001936
Jerry Yu6106fdc2022-01-12 16:36:14 +08001937#if !defined(MBEDTLS_DEPRECATED_REMOVED)
1938 if( ssl->handshake != NULL && ssl->handshake->sig_algs != NULL )
1939 return( ssl->handshake->sig_algs );
1940#endif
1941 return( ssl->conf->sig_algs );
Manuel Pégourié-Gonnardf7d704d2022-01-28 10:05:56 +01001942
1943#else /* MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED */
Jerry Yuafdfed12021-12-22 10:49:02 +08001944
Jerry Yu6106fdc2022-01-12 16:36:14 +08001945 ((void) ssl);
Jerry Yu713013f2022-01-17 18:16:35 +08001946 return( NULL );
Manuel Pégourié-Gonnardf7d704d2022-01-28 10:05:56 +01001947#endif /* MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED */
Jerry Yuafdfed12021-12-22 10:49:02 +08001948}
Jerry Yuba073422021-12-20 22:22:15 +08001949
Jerry Yua23b9d92022-02-09 19:57:53 +08001950
Jerry Yu1bab3012022-01-19 17:43:22 +08001951#if defined(MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED)
Jerry Yu24811fb2022-01-19 18:02:15 +08001952
Jerry Yua23b9d92022-02-09 19:57:53 +08001953#if defined(MBEDTLS_SSL_PROTO_TLS1_3)
Jerry Yu8511f122022-01-29 10:01:04 +08001954static inline int mbedtls_ssl_sig_alg_is_received( const mbedtls_ssl_context *ssl,
1955 uint16_t own_sig_alg )
1956{
Jerry Yu1bb5a1f2022-01-30 10:52:11 +08001957 const uint16_t *sig_alg = ssl->handshake->received_sig_algs;
1958 if( sig_alg == NULL )
1959 return( 0 );
1960
1961 for( ; *sig_alg != MBEDTLS_TLS1_3_SIG_NONE; sig_alg++ )
1962 {
1963 if( *sig_alg == own_sig_alg )
1964 return( 1 );
1965 }
1966 return( 0 );
Jerry Yu8511f122022-01-29 10:01:04 +08001967}
Jerry Yua23b9d92022-02-09 19:57:53 +08001968#endif /* MBEDTLS_SSL_PROTO_TLS1_3 */
Jerry Yu8511f122022-01-29 10:01:04 +08001969
Jerry Yu24811fb2022-01-19 18:02:15 +08001970static inline int mbedtls_ssl_sig_alg_is_offered( const mbedtls_ssl_context *ssl,
1971 uint16_t proposed_sig_alg )
1972{
1973 const uint16_t *sig_alg = mbedtls_ssl_get_sig_algs( ssl );
1974 if( sig_alg == NULL )
1975 return( 0 );
1976
1977 for( ; *sig_alg != MBEDTLS_TLS1_3_SIG_NONE; sig_alg++ )
1978 {
1979 if( *sig_alg == proposed_sig_alg )
1980 return( 1 );
1981 }
1982 return( 0 );
1983}
1984
Jerry Yu8c338862022-03-23 13:34:04 +08001985#if defined(MBEDTLS_SSL_PROTO_TLS1_3)
1986static inline int mbedtls_ssl_tls13_get_pk_type_and_md_alg_from_sig_alg(
Jerry Yuf8aa9a42022-03-23 20:40:28 +08001987 uint16_t sig_alg, mbedtls_pk_type_t *pk_type, mbedtls_md_type_t *md_alg )
Jerry Yu8c338862022-03-23 13:34:04 +08001988{
1989 *pk_type = MBEDTLS_PK_NONE;
1990 *md_alg = MBEDTLS_MD_NONE;
Jerry Yuf8aa9a42022-03-23 20:40:28 +08001991
Jerry Yu8c338862022-03-23 13:34:04 +08001992 switch( sig_alg )
1993 {
Jerry Yue26acee2022-03-23 21:01:33 +08001994#if defined(MBEDTLS_ECDSA_C)
1995
1996#if defined(MBEDTLS_SHA256_C) && defined(MBEDTLS_ECP_DP_SECP256R1_ENABLED)
Jerry Yu8c338862022-03-23 13:34:04 +08001997 case MBEDTLS_TLS1_3_SIG_ECDSA_SECP256R1_SHA256:
1998 *md_alg = MBEDTLS_MD_SHA256;
1999 *pk_type = MBEDTLS_PK_ECDSA;
2000 break;
Jerry Yue26acee2022-03-23 21:01:33 +08002001#endif /* MBEDTLS_SHA256_C && MBEDTLS_ECP_DP_SECP256R1_ENABLED */
Jerry Yu8c338862022-03-23 13:34:04 +08002002
Jerry Yue26acee2022-03-23 21:01:33 +08002003#if defined(MBEDTLS_SHA384_C) && defined(MBEDTLS_ECP_DP_SECP384R1_ENABLED)
Jerry Yu8c338862022-03-23 13:34:04 +08002004 case MBEDTLS_TLS1_3_SIG_ECDSA_SECP384R1_SHA384:
2005 *md_alg = MBEDTLS_MD_SHA384;
2006 *pk_type = MBEDTLS_PK_ECDSA;
2007 break;
Jerry Yue26acee2022-03-23 21:01:33 +08002008#endif /* MBEDTLS_SHA384_C && MBEDTLS_ECP_DP_SECP384R1_ENABLED */
Jerry Yu8c338862022-03-23 13:34:04 +08002009
Jerry Yue26acee2022-03-23 21:01:33 +08002010#if defined(MBEDTLS_SHA512_C) && defined(MBEDTLS_ECP_DP_SECP521R1_ENABLED)
Jerry Yu8c338862022-03-23 13:34:04 +08002011 case MBEDTLS_TLS1_3_SIG_ECDSA_SECP521R1_SHA512:
2012 *md_alg = MBEDTLS_MD_SHA512;
2013 *pk_type = MBEDTLS_PK_ECDSA;
2014 break;
Jerry Yue26acee2022-03-23 21:01:33 +08002015#endif /* MBEDTLS_SHA512_C && MBEDTLS_ECP_DP_SECP521R1_ENABLED */
Jerry Yu8c338862022-03-23 13:34:04 +08002016
Jerry Yue26acee2022-03-23 21:01:33 +08002017#endif /* MBEDTLS_ECDSA_C */
2018
2019#if defined(MBEDTLS_X509_RSASSA_PSS_SUPPORT)
2020
2021#if defined(MBEDTLS_SHA256_C)
Jerry Yu8c338862022-03-23 13:34:04 +08002022 case MBEDTLS_TLS1_3_SIG_RSA_PSS_RSAE_SHA256:
2023 *md_alg = MBEDTLS_MD_SHA256;
2024 *pk_type = MBEDTLS_PK_RSASSA_PSS;
2025 break;
Jerry Yue26acee2022-03-23 21:01:33 +08002026#endif /* MBEDTLS_SHA256_C */
Jerry Yu8c338862022-03-23 13:34:04 +08002027
Jerry Yue26acee2022-03-23 21:01:33 +08002028#if defined(MBEDTLS_SHA384_C)
Jerry Yu8c338862022-03-23 13:34:04 +08002029 case MBEDTLS_TLS1_3_SIG_RSA_PSS_RSAE_SHA384:
2030 *md_alg = MBEDTLS_MD_SHA384;
2031 *pk_type = MBEDTLS_PK_RSASSA_PSS;
2032 break;
Jerry Yue26acee2022-03-23 21:01:33 +08002033#endif /* MBEDTLS_SHA384_C */
Jerry Yu8c338862022-03-23 13:34:04 +08002034
Jerry Yue26acee2022-03-23 21:01:33 +08002035#if defined(MBEDTLS_SHA512_C)
Jerry Yu8c338862022-03-23 13:34:04 +08002036 case MBEDTLS_TLS1_3_SIG_RSA_PSS_RSAE_SHA512:
2037 *md_alg = MBEDTLS_MD_SHA512;
2038 *pk_type = MBEDTLS_PK_RSASSA_PSS;
2039 break;
Jerry Yue26acee2022-03-23 21:01:33 +08002040#endif /* MBEDTLS_SHA512_C */
Jerry Yu8c338862022-03-23 13:34:04 +08002041
Jerry Yue26acee2022-03-23 21:01:33 +08002042#endif /* MBEDTLS_X509_RSASSA_PSS_SUPPORT */
2043
2044#if defined(MBEDTLS_PKCS1_V15) && defined(MBEDTLS_RSA_C)
2045
2046#if defined(MBEDTLS_SHA256_C)
Jerry Yu8c338862022-03-23 13:34:04 +08002047 case MBEDTLS_TLS1_3_SIG_RSA_PKCS1_SHA256:
2048 *md_alg = MBEDTLS_MD_SHA256;
2049 *pk_type = MBEDTLS_PK_RSA;
2050 break;
Jerry Yue26acee2022-03-23 21:01:33 +08002051#endif /* MBEDTLS_SHA256_C */
Jerry Yu8c338862022-03-23 13:34:04 +08002052
Jerry Yue26acee2022-03-23 21:01:33 +08002053#if defined(MBEDTLS_SHA384_C)
Jerry Yu8c338862022-03-23 13:34:04 +08002054 case MBEDTLS_TLS1_3_SIG_RSA_PKCS1_SHA384:
2055 *md_alg = MBEDTLS_MD_SHA384;
2056 *pk_type = MBEDTLS_PK_RSA;
2057 break;
Jerry Yue26acee2022-03-23 21:01:33 +08002058#endif /* MBEDTLS_SHA384_C */
Jerry Yu8c338862022-03-23 13:34:04 +08002059
Jerry Yue26acee2022-03-23 21:01:33 +08002060#if defined(MBEDTLS_SHA512_C)
Jerry Yu8c338862022-03-23 13:34:04 +08002061 case MBEDTLS_TLS1_3_SIG_RSA_PKCS1_SHA512:
2062 *md_alg = MBEDTLS_MD_SHA512;
2063 *pk_type = MBEDTLS_PK_RSA;
2064 break;
Jerry Yu6c6f1022022-03-25 11:09:50 +08002065#endif /* MBEDTLS_SHA512_C */
Jerry Yue26acee2022-03-23 21:01:33 +08002066
2067#endif /* MBEDTLS_PKCS1_V15 && MBEDTLS_RSA_C */
Jerry Yu8c338862022-03-23 13:34:04 +08002068
2069 default:
Jerry Yuf8aa9a42022-03-23 20:40:28 +08002070 return( MBEDTLS_ERR_SSL_FEATURE_UNAVAILABLE );
Jerry Yu8c338862022-03-23 13:34:04 +08002071 }
Jerry Yuf8aa9a42022-03-23 20:40:28 +08002072 return( 0 );
Jerry Yu8c338862022-03-23 13:34:04 +08002073}
2074#endif /* MBEDTLS_SSL_PROTO_TLS1_3 */
2075
Jerry Yu1bab3012022-01-19 17:43:22 +08002076static inline int mbedtls_ssl_sig_alg_is_supported(
2077 const mbedtls_ssl_context *ssl,
2078 const uint16_t sig_alg )
2079{
2080
2081#if defined(MBEDTLS_SSL_PROTO_TLS1_2)
2082 if( ssl->minor_ver == MBEDTLS_SSL_MINOR_VERSION_3)
2083 {
2084 /* High byte is hash */
2085 unsigned char hash = MBEDTLS_BYTE_1( sig_alg );
2086 unsigned char sig = MBEDTLS_BYTE_0( sig_alg );
2087
2088 switch( hash )
2089 {
Jerry Yu97198852022-01-21 16:16:01 +08002090#if defined(MBEDTLS_MD5_C)
Jerry Yu1bab3012022-01-19 17:43:22 +08002091 case MBEDTLS_SSL_HASH_MD5:
2092 break;
Jerry Yu97198852022-01-21 16:16:01 +08002093#endif
2094
2095#if defined(MBEDTLS_SHA1_C)
Jerry Yu1bab3012022-01-19 17:43:22 +08002096 case MBEDTLS_SSL_HASH_SHA1:
2097 break;
Jerry Yu97198852022-01-21 16:16:01 +08002098#endif
2099
2100#if defined(MBEDTLS_SHA224_C)
Jerry Yu1bab3012022-01-19 17:43:22 +08002101 case MBEDTLS_SSL_HASH_SHA224:
2102 break;
Jerry Yu97198852022-01-21 16:16:01 +08002103#endif
2104
2105#if defined(MBEDTLS_SHA256_C)
Jerry Yu1bab3012022-01-19 17:43:22 +08002106 case MBEDTLS_SSL_HASH_SHA256:
2107 break;
Jerry Yu97198852022-01-21 16:16:01 +08002108#endif
2109
2110#if defined(MBEDTLS_SHA384_C)
Jerry Yu1bab3012022-01-19 17:43:22 +08002111 case MBEDTLS_SSL_HASH_SHA384:
2112 break;
Jerry Yu97198852022-01-21 16:16:01 +08002113#endif
2114
2115#if defined(MBEDTLS_SHA512_C)
Jerry Yu1bab3012022-01-19 17:43:22 +08002116 case MBEDTLS_SSL_HASH_SHA512:
2117 break;
Jerry Yu97198852022-01-21 16:16:01 +08002118#endif
Jerry Yu1bab3012022-01-19 17:43:22 +08002119
2120 default:
2121 return( 0 );
2122 }
2123
2124 switch( sig )
2125 {
Jerry Yu97198852022-01-21 16:16:01 +08002126#if defined(MBEDTLS_RSA_C)
Jerry Yu1bab3012022-01-19 17:43:22 +08002127 case MBEDTLS_SSL_SIG_RSA:
2128 break;
Jerry Yu97198852022-01-21 16:16:01 +08002129#endif
Jerry Yu1bab3012022-01-19 17:43:22 +08002130
Jerry Yu97198852022-01-21 16:16:01 +08002131#if defined(MBEDTLS_ECDSA_C)
Jerry Yu1bab3012022-01-19 17:43:22 +08002132 case MBEDTLS_SSL_SIG_ECDSA:
2133 break;
Jerry Yu97198852022-01-21 16:16:01 +08002134#endif
Jerry Yu1bab3012022-01-19 17:43:22 +08002135
2136 default:
2137 return( 0 );
2138 }
2139
2140 return( 1 );
2141 }
2142#endif /* MBEDTLS_SSL_PROTO_TLS1_2 */
2143
2144#if defined(MBEDTLS_SSL_PROTO_TLS1_3)
2145 if( ssl->minor_ver == MBEDTLS_SSL_MINOR_VERSION_4)
2146 {
Jerry Yu8c338862022-03-23 13:34:04 +08002147 mbedtls_pk_type_t pk_type;
2148 mbedtls_md_type_t md_alg;
Jerry Yuf8aa9a42022-03-23 20:40:28 +08002149 return( ! mbedtls_ssl_tls13_get_pk_type_and_md_alg_from_sig_alg(
Jerry Yu8c338862022-03-23 13:34:04 +08002150 sig_alg, &pk_type, &md_alg ) );
Jerry Yu1bab3012022-01-19 17:43:22 +08002151 }
2152#endif /* MBEDTLS_SSL_PROTO_TLS1_3 */
2153 ((void) ssl);
2154 ((void) sig_alg);
2155 return( 0 );
2156}
2157#endif /* MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED */
2158
Jerry Yue12f1dd2022-01-13 14:38:22 +08002159#if defined(MBEDTLS_SSL_PROTO_TLS1_2) && \
2160 defined(MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED)
2161#if defined(MBEDTLS_ECDSA_C) && defined(MBEDTLS_RSA_C)
2162#define MBEDTLS_SSL_SIG_ALG( hash ) (( hash << 8 ) | MBEDTLS_SSL_SIG_ECDSA), \
2163 (( hash << 8 ) | MBEDTLS_SSL_SIG_RSA),
2164#elif defined(MBEDTLS_ECDSA_C)
2165#define MBEDTLS_SSL_SIG_ALG( hash ) (( hash << 8 ) | MBEDTLS_SSL_SIG_ECDSA),
2166#elif defined(MBEDTLS_RSA_C)
2167#define MBEDTLS_SSL_SIG_ALG( hash ) (( hash << 8 ) | MBEDTLS_SSL_SIG_RSA),
2168#else
2169#define MBEDTLS_SSL_SIG_ALG( hash )
2170#endif /* MBEDTLS_ECDSA_C && MBEDTLS_RSA_C */
2171#endif /* MBEDTLS_SSL_PROTO_TLS1_2 && MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED */
Przemyslaw Stekiele5c22382022-01-25 00:56:34 +01002172#if defined(MBEDTLS_USE_PSA_CRYPTO)
2173/* Corresponding PSA algorithm for MBEDTLS_CIPHER_NULL.
2174 * Same value is used fo PSA_ALG_CATEGORY_CIPHER, hence it is
2175 * guaranteed to not be a valid PSA algorithm identifier.
2176 */
2177#define MBEDTLS_SSL_NULL_CIPHER 0x04000000
2178
2179/**
2180 * \brief Translate mbedtls cipher type/taglen pair to psa:
2181 * algorithm, key type and key size.
2182 *
2183 * \param mbedtls_cipher_type [in] given mbedtls cipher type
2184 * \param taglen [in] given tag length
2185 * 0 - default tag length
2186 * \param alg [out] corresponding PSA alg
2187 * There is no corresponding PSA
Przemyslaw Stekiel8c010eb2022-02-03 10:44:02 +01002188 * alg for MBEDTLS_CIPHER_NULL, so
2189 * in this case MBEDTLS_SSL_NULL_CIPHER
2190 * is returned via this parameter
Przemyslaw Stekiele5c22382022-01-25 00:56:34 +01002191 * \param key_type [out] corresponding PSA key type
2192 * \param key_size [out] corresponding PSA key size
2193 *
2194 * \return PSA_SUCCESS on success or PSA_ERROR_NOT_SUPPORTED if
2195 * conversion is not supported.
2196 */
2197psa_status_t mbedtls_ssl_cipher_to_psa( mbedtls_cipher_type_t mbedtls_cipher_type,
2198 size_t taglen,
2199 psa_algorithm_t *alg,
2200 psa_key_type_t *key_type,
2201 size_t *key_size );
Przemyslaw Stekielb15f33d2022-02-10 10:12:12 +01002202#endif /* MBEDTLS_USE_PSA_CRYPTO */
Przemyslaw Stekiele5c22382022-01-25 00:56:34 +01002203
Przemyslaw Stekielb15f33d2022-02-10 10:12:12 +01002204#if defined(MBEDTLS_USE_PSA_CRYPTO) || defined(MBEDTLS_SSL_PROTO_TLS1_3)
Przemyslaw Stekiele5c22382022-01-25 00:56:34 +01002205/**
2206 * \brief Convert given PSA status to mbedtls error code.
2207 *
2208 * \param status [in] given PSA status
2209 *
2210 * \return corresponding mbedtls error code
2211 */
Przemyslaw Stekiel77aec8d2022-01-31 20:22:53 +01002212static inline int psa_ssl_status_to_mbedtls( psa_status_t status )
Przemyslaw Stekiele5c22382022-01-25 00:56:34 +01002213{
2214 switch( status )
2215 {
2216 case PSA_SUCCESS:
2217 return( 0 );
2218 case PSA_ERROR_INSUFFICIENT_MEMORY:
Gabor Mezei1bf075f2022-03-21 12:19:52 +01002219 return( MBEDTLS_ERR_SSL_ALLOC_FAILED );
Przemyslaw Stekiele5c22382022-01-25 00:56:34 +01002220 case PSA_ERROR_NOT_SUPPORTED:
Gabor Mezei1bf075f2022-03-21 12:19:52 +01002221 return( MBEDTLS_ERR_SSL_FEATURE_UNAVAILABLE );
Przemyslaw Stekiel89dad932022-01-31 09:18:07 +01002222 case PSA_ERROR_INVALID_SIGNATURE:
2223 return( MBEDTLS_ERR_SSL_INVALID_MAC );
Gabor Mezeiadfeadc2022-03-21 12:17:49 +01002224 case PSA_ERROR_INVALID_ARGUMENT:
2225 return( MBEDTLS_ERR_SSL_BAD_INPUT_DATA );
2226 case PSA_ERROR_BAD_STATE:
2227 return( MBEDTLS_ERR_SSL_INTERNAL_ERROR );
Przemek Stekiel85836272022-04-05 10:50:53 +02002228 case PSA_ERROR_BUFFER_TOO_SMALL:
2229 return( MBEDTLS_ERR_SSL_BUFFER_TOO_SMALL );
Przemyslaw Stekiele5c22382022-01-25 00:56:34 +01002230 default:
2231 return( MBEDTLS_ERR_PLATFORM_HW_ACCEL_FAILED );
2232 }
2233}
Przemyslaw Stekielb15f33d2022-02-10 10:12:12 +01002234#endif /* MBEDTLS_USE_PSA_CRYPTO || MBEDTLS_SSL_PROTO_TLS1_3 */
Jerry Yu1bab3012022-01-19 17:43:22 +08002235
Chris Jones84a773f2021-03-05 18:38:47 +00002236#endif /* ssl_misc.h */