4 * \brief Internal functions shared by the SSL modules
7 * Copyright The Mbed TLS Contributors
8 * SPDX-License-Identifier: Apache-2.0
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
14 * http://www.apache.org/licenses/LICENSE-2.0
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.
22 #ifndef MBEDTLS_SSL_INTERNAL_H
23 #define MBEDTLS_SSL_INTERNAL_H
25 #if !defined(MBEDTLS_CONFIG_FILE)
26 #include "mbedtls/config.h"
28 #include MBEDTLS_CONFIG_FILE
31 #include "mbedtls/ssl.h"
32 #include "mbedtls/cipher.h"
34 #if defined(MBEDTLS_USE_PSA_CRYPTO)
35 #include "psa/crypto.h"
38 #if defined(MBEDTLS_MD5_C)
39 #include "mbedtls/md5.h"
42 #if defined(MBEDTLS_SHA1_C)
43 #include "mbedtls/sha1.h"
46 #if defined(MBEDTLS_SHA256_C)
47 #include "mbedtls/sha256.h"
50 #if defined(MBEDTLS_SHA512_C)
51 #include "mbedtls/sha512.h"
54 #if defined(MBEDTLS_KEY_EXCHANGE_ECJPAKE_ENABLED)
55 #include "mbedtls/ecjpake.h"
58 #if defined(MBEDTLS_USE_PSA_CRYPTO)
59 #include "psa/crypto.h"
60 #include "mbedtls/psa_util.h"
61 #endif /* MBEDTLS_USE_PSA_CRYPTO */
63 #if ( defined(__ARMCC_VERSION) || defined(_MSC_VER) ) && \
64 !defined(inline) && !defined(__cplusplus)
65 #define inline __inline
68 /* Determine minimum supported version */
69 #define MBEDTLS_SSL_MIN_MAJOR_VERSION MBEDTLS_SSL_MAJOR_VERSION_3
71 #if defined(MBEDTLS_SSL_PROTO_SSL3)
72 #define MBEDTLS_SSL_MIN_MINOR_VERSION MBEDTLS_SSL_MINOR_VERSION_0
74 #if defined(MBEDTLS_SSL_PROTO_TLS1)
75 #define MBEDTLS_SSL_MIN_MINOR_VERSION MBEDTLS_SSL_MINOR_VERSION_1
77 #if defined(MBEDTLS_SSL_PROTO_TLS1_1)
78 #define MBEDTLS_SSL_MIN_MINOR_VERSION MBEDTLS_SSL_MINOR_VERSION_2
80 #if defined(MBEDTLS_SSL_PROTO_TLS1_2)
81 #define MBEDTLS_SSL_MIN_MINOR_VERSION MBEDTLS_SSL_MINOR_VERSION_3
82 #endif /* MBEDTLS_SSL_PROTO_TLS1_2 */
83 #endif /* MBEDTLS_SSL_PROTO_TLS1_1 */
84 #endif /* MBEDTLS_SSL_PROTO_TLS1 */
85 #endif /* MBEDTLS_SSL_PROTO_SSL3 */
87 #define MBEDTLS_SSL_MIN_VALID_MINOR_VERSION MBEDTLS_SSL_MINOR_VERSION_1
88 #define MBEDTLS_SSL_MIN_VALID_MAJOR_VERSION MBEDTLS_SSL_MAJOR_VERSION_3
90 /* Determine maximum supported version */
91 #define MBEDTLS_SSL_MAX_MAJOR_VERSION MBEDTLS_SSL_MAJOR_VERSION_3
93 #if defined(MBEDTLS_SSL_PROTO_TLS1_2)
94 #define MBEDTLS_SSL_MAX_MINOR_VERSION MBEDTLS_SSL_MINOR_VERSION_3
96 #if defined(MBEDTLS_SSL_PROTO_TLS1_1)
97 #define MBEDTLS_SSL_MAX_MINOR_VERSION MBEDTLS_SSL_MINOR_VERSION_2
99 #if defined(MBEDTLS_SSL_PROTO_TLS1)
100 #define MBEDTLS_SSL_MAX_MINOR_VERSION MBEDTLS_SSL_MINOR_VERSION_1
102 #if defined(MBEDTLS_SSL_PROTO_SSL3)
103 #define MBEDTLS_SSL_MAX_MINOR_VERSION MBEDTLS_SSL_MINOR_VERSION_0
104 #endif /* MBEDTLS_SSL_PROTO_SSL3 */
105 #endif /* MBEDTLS_SSL_PROTO_TLS1 */
106 #endif /* MBEDTLS_SSL_PROTO_TLS1_1 */
107 #endif /* MBEDTLS_SSL_PROTO_TLS1_2 */
109 /* Shorthand for restartable ECC */
110 #if defined(MBEDTLS_ECP_RESTARTABLE) && \
111 defined(MBEDTLS_SSL_CLI_C) && \
112 defined(MBEDTLS_SSL_PROTO_TLS1_2) && \
113 defined(MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA_ENABLED)
114 #define MBEDTLS_SSL_ECP_RESTARTABLE_ENABLED
117 #define MBEDTLS_SSL_INITIAL_HANDSHAKE 0
118 #define MBEDTLS_SSL_RENEGOTIATION_IN_PROGRESS 1 /* In progress */
119 #define MBEDTLS_SSL_RENEGOTIATION_DONE 2 /* Done or aborted */
120 #define MBEDTLS_SSL_RENEGOTIATION_PENDING 3 /* Requested (server only) */
123 * DTLS retransmission states, see RFC 6347 4.2.4
125 * The SENDING state is merged in PREPARING for initial sends,
126 * but is distinct for resends.
128 * Note: initial state is wrong for server, but is not used anyway.
130 #define MBEDTLS_SSL_RETRANS_PREPARING 0
131 #define MBEDTLS_SSL_RETRANS_SENDING 1
132 #define MBEDTLS_SSL_RETRANS_WAITING 2
133 #define MBEDTLS_SSL_RETRANS_FINISHED 3
136 * Allow extra bytes for record, authentication and encryption overhead:
137 * counter (8) + header (5) + IV(16) + MAC (16-48) + padding (0-256)
138 * and allow for a maximum of 1024 of compression expansion if
141 #if defined(MBEDTLS_ZLIB_SUPPORT)
142 #define MBEDTLS_SSL_COMPRESSION_ADD 1024
144 #define MBEDTLS_SSL_COMPRESSION_ADD 0
147 /* This macro determines whether CBC is supported. */
148 #if defined(MBEDTLS_CIPHER_MODE_CBC) && \
149 ( defined(MBEDTLS_AES_C) || \
150 defined(MBEDTLS_CAMELLIA_C) || \
151 defined(MBEDTLS_ARIA_C) || \
152 defined(MBEDTLS_DES_C) )
153 #define MBEDTLS_SSL_SOME_SUITES_USE_CBC
156 /* This macro determines whether the CBC construct used in TLS 1.0-1.2 (as
157 * opposed to the very different CBC construct used in SSLv3) is supported. */
158 #if defined(MBEDTLS_SSL_SOME_SUITES_USE_CBC) && \
159 ( defined(MBEDTLS_SSL_PROTO_TLS1) || \
160 defined(MBEDTLS_SSL_PROTO_TLS1_1) || \
161 defined(MBEDTLS_SSL_PROTO_TLS1_2) )
162 #define MBEDTLS_SSL_SOME_SUITES_USE_TLS_CBC
165 #if defined(MBEDTLS_ARC4_C) || defined(MBEDTLS_CIPHER_NULL_CIPHER) || \
166 defined(MBEDTLS_SSL_SOME_SUITES_USE_CBC)
167 #define MBEDTLS_SSL_SOME_MODES_USE_MAC
170 #if defined(MBEDTLS_SSL_SOME_MODES_USE_MAC)
171 /* Ciphersuites using HMAC */
172 #if defined(MBEDTLS_SHA512_C)
173 #define MBEDTLS_SSL_MAC_ADD 48 /* SHA-384 used for HMAC */
174 #elif defined(MBEDTLS_SHA256_C)
175 #define MBEDTLS_SSL_MAC_ADD 32 /* SHA-256 used for HMAC */
177 #define MBEDTLS_SSL_MAC_ADD 20 /* SHA-1 used for HMAC */
179 #else /* MBEDTLS_SSL_SOME_MODES_USE_MAC */
180 /* AEAD ciphersuites: GCM and CCM use a 128 bits tag */
181 #define MBEDTLS_SSL_MAC_ADD 16
184 #if defined(MBEDTLS_CIPHER_MODE_CBC)
185 #define MBEDTLS_SSL_PADDING_ADD 256
187 #define MBEDTLS_SSL_PADDING_ADD 0
190 #if defined(MBEDTLS_SSL_DTLS_CONNECTION_ID)
191 #define MBEDTLS_SSL_MAX_CID_EXPANSION MBEDTLS_SSL_CID_PADDING_GRANULARITY
193 #define MBEDTLS_SSL_MAX_CID_EXPANSION 0
196 #define MBEDTLS_SSL_PAYLOAD_OVERHEAD ( MBEDTLS_SSL_COMPRESSION_ADD + \
197 MBEDTLS_MAX_IV_LENGTH + \
198 MBEDTLS_SSL_MAC_ADD + \
199 MBEDTLS_SSL_PADDING_ADD + \
200 MBEDTLS_SSL_MAX_CID_EXPANSION \
203 #define MBEDTLS_SSL_IN_PAYLOAD_LEN ( MBEDTLS_SSL_PAYLOAD_OVERHEAD + \
204 ( MBEDTLS_SSL_IN_CONTENT_LEN ) )
206 #define MBEDTLS_SSL_OUT_PAYLOAD_LEN ( MBEDTLS_SSL_PAYLOAD_OVERHEAD + \
207 ( MBEDTLS_SSL_OUT_CONTENT_LEN ) )
209 /* The maximum number of buffered handshake messages. */
210 #define MBEDTLS_SSL_MAX_BUFFERED_HS 4
212 /* Maximum length we can advertise as our max content length for
213 RFC 6066 max_fragment_length extension negotiation purposes
214 (the lesser of both sizes, if they are unequal.)
216 #define MBEDTLS_TLS_EXT_ADV_CONTENT_LEN ( \
217 (MBEDTLS_SSL_IN_CONTENT_LEN > MBEDTLS_SSL_OUT_CONTENT_LEN) \
218 ? ( MBEDTLS_SSL_OUT_CONTENT_LEN ) \
219 : ( MBEDTLS_SSL_IN_CONTENT_LEN ) \
222 /* Maximum size in bytes of list in sig-hash algorithm ext., RFC 5246 */
223 #define MBEDTLS_SSL_MAX_SIG_HASH_ALG_LIST_LEN 65534
225 /* Maximum size in bytes of list in supported elliptic curve ext., RFC 4492 */
226 #define MBEDTLS_SSL_MAX_CURVE_LIST_LEN 65535
229 * Check that we obey the standard's message size bounds
232 #if MBEDTLS_SSL_MAX_CONTENT_LEN > 16384
233 #error "Bad configuration - record content too large."
236 #if MBEDTLS_SSL_IN_CONTENT_LEN > MBEDTLS_SSL_MAX_CONTENT_LEN
237 #error "Bad configuration - incoming record content should not be larger than MBEDTLS_SSL_MAX_CONTENT_LEN."
240 #if MBEDTLS_SSL_OUT_CONTENT_LEN > MBEDTLS_SSL_MAX_CONTENT_LEN
241 #error "Bad configuration - outgoing record content should not be larger than MBEDTLS_SSL_MAX_CONTENT_LEN."
244 #if MBEDTLS_SSL_IN_PAYLOAD_LEN > MBEDTLS_SSL_MAX_CONTENT_LEN + 2048
245 #error "Bad configuration - incoming protected record payload too large."
248 #if MBEDTLS_SSL_OUT_PAYLOAD_LEN > MBEDTLS_SSL_MAX_CONTENT_LEN + 2048
249 #error "Bad configuration - outgoing protected record payload too large."
252 /* Calculate buffer sizes */
254 /* Note: Even though the TLS record header is only 5 bytes
255 long, we're internally using 8 bytes to store the
256 implicit sequence number. */
257 #define MBEDTLS_SSL_HEADER_LEN 13
259 #if !defined(MBEDTLS_SSL_DTLS_CONNECTION_ID)
260 #define MBEDTLS_SSL_IN_BUFFER_LEN \
261 ( ( MBEDTLS_SSL_HEADER_LEN ) + ( MBEDTLS_SSL_IN_PAYLOAD_LEN ) )
263 #define MBEDTLS_SSL_IN_BUFFER_LEN \
264 ( ( MBEDTLS_SSL_HEADER_LEN ) + ( MBEDTLS_SSL_IN_PAYLOAD_LEN ) \
265 + ( MBEDTLS_SSL_CID_IN_LEN_MAX ) )
268 #if !defined(MBEDTLS_SSL_DTLS_CONNECTION_ID)
269 #define MBEDTLS_SSL_OUT_BUFFER_LEN \
270 ( ( MBEDTLS_SSL_HEADER_LEN ) + ( MBEDTLS_SSL_OUT_PAYLOAD_LEN ) )
272 #define MBEDTLS_SSL_OUT_BUFFER_LEN \
273 ( ( MBEDTLS_SSL_HEADER_LEN ) + ( MBEDTLS_SSL_OUT_PAYLOAD_LEN ) \
274 + ( MBEDTLS_SSL_CID_OUT_LEN_MAX ) )
277 #if defined(MBEDTLS_SSL_VARIABLE_BUFFER_LENGTH)
278 static inline size_t mbedtls_ssl_get_output_buflen(const mbedtls_ssl_context
*ctx
) {
279 #if defined (MBEDTLS_SSL_DTLS_CONNECTION_ID)
280 return mbedtls_ssl_get_output_max_frag_len(ctx
)
281 + MBEDTLS_SSL_HEADER_LEN
+ MBEDTLS_SSL_PAYLOAD_OVERHEAD
282 + MBEDTLS_SSL_CID_OUT_LEN_MAX
;
284 return mbedtls_ssl_get_output_max_frag_len(ctx
)
285 + MBEDTLS_SSL_HEADER_LEN
+ MBEDTLS_SSL_PAYLOAD_OVERHEAD
;
289 static inline size_t mbedtls_ssl_get_input_buflen(const mbedtls_ssl_context
*ctx
) {
290 #if defined (MBEDTLS_SSL_DTLS_CONNECTION_ID)
291 return mbedtls_ssl_get_input_max_frag_len(ctx
)
292 + MBEDTLS_SSL_HEADER_LEN
+ MBEDTLS_SSL_PAYLOAD_OVERHEAD
293 + MBEDTLS_SSL_CID_IN_LEN_MAX
;
295 return mbedtls_ssl_get_input_max_frag_len(ctx
)
296 + MBEDTLS_SSL_HEADER_LEN
+ MBEDTLS_SSL_PAYLOAD_OVERHEAD
;
301 #ifdef MBEDTLS_ZLIB_SUPPORT
302 /* Compression buffer holds both IN and OUT buffers, so should be size of the larger */
303 #define MBEDTLS_SSL_COMPRESS_BUFFER_LEN ( \
304 ( MBEDTLS_SSL_IN_BUFFER_LEN > MBEDTLS_SSL_OUT_BUFFER_LEN ) \
305 ? MBEDTLS_SSL_IN_BUFFER_LEN \
306 : MBEDTLS_SSL_OUT_BUFFER_LEN \
311 * TLS extension flags (for extensions with outgoing ServerHello content
312 * that need it (e.g. for RENEGOTIATION_INFO the server already knows because
313 * of state of the renegotiation flag, so no indicator is required)
315 #define MBEDTLS_TLS_EXT_SUPPORTED_POINT_FORMATS_PRESENT (1 << 0)
316 #define MBEDTLS_TLS_EXT_ECJPAKE_KKPP_OK (1 << 1)
319 * \brief This function checks if the remaining size in a buffer is
320 * greater or equal than a needed space.
322 * \param cur Pointer to the current position in the buffer.
323 * \param end Pointer to one past the end of the buffer.
324 * \param need Needed space in bytes.
326 * \return Zero if the needed space is available in the buffer, non-zero
329 static inline int mbedtls_ssl_chk_buf_ptr(const uint8_t *cur
,
330 const uint8_t *end
, size_t need
) {
331 return ((cur
> end
) || (need
> (size_t)(end
- cur
)));
335 * \brief This macro checks if the remaining size in a buffer is
336 * greater or equal than a needed space. If it is not the case,
337 * it returns an SSL_BUFFER_TOO_SMALL error.
339 * \param cur Pointer to the current position in the buffer.
340 * \param end Pointer to one past the end of the buffer.
341 * \param need Needed space in bytes.
344 #define MBEDTLS_SSL_CHK_BUF_PTR( cur, end, need ) \
346 if( mbedtls_ssl_chk_buf_ptr( ( cur ), ( end ), ( need ) ) != 0 ) \
348 return( MBEDTLS_ERR_SSL_BUFFER_TOO_SMALL ); \
356 #if defined(MBEDTLS_SSL_PROTO_TLS1_2) && \
357 defined(MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED)
359 * Abstraction for a grid of allowed signature-hash-algorithm pairs.
361 struct mbedtls_ssl_sig_hash_set_t
{
362 /* At the moment, we only need to remember a single suitable
363 * hash algorithm per signature algorithm. As long as that's
364 * the case - and we don't need a general lookup function -
365 * we can implement the sig-hash-set as a map from signatures
366 * to hash algorithms. */
367 mbedtls_md_type_t rsa
;
368 mbedtls_md_type_t ecdsa
;
370 #endif /* MBEDTLS_SSL_PROTO_TLS1_2 &&
371 MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED */
373 typedef int mbedtls_ssl_tls_prf_cb(const unsigned char *secret
, size_t slen
,
375 const unsigned char *random
, size_t rlen
,
376 unsigned char *dstbuf
, size_t dlen
);
378 /* cipher.h exports the maximum IV, key and block length from
379 * all ciphers enabled in the config, regardless of whether those
380 * ciphers are actually usable in SSL/TLS. Notably, XTS is enabled
381 * in the default configuration and uses 64 Byte keys, but it is
382 * not used for record protection in SSL/TLS.
384 * In order to prevent unnecessary inflation of key structures,
385 * we introduce SSL-specific variants of the max-{key,block,IV}
386 * macros here which are meant to only take those ciphers into
387 * account which can be negotiated in SSL/TLS.
389 * Since the current definitions of MBEDTLS_MAX_{KEY|BLOCK|IV}_LENGTH
390 * in cipher.h are rough overapproximations of the real maxima, here
391 * we content ourselves with replicating those overapproximations
392 * for the maximum block and IV length, and excluding XTS from the
393 * computation of the maximum key length. */
394 #define MBEDTLS_SSL_MAX_BLOCK_LENGTH 16
395 #define MBEDTLS_SSL_MAX_IV_LENGTH 16
396 #define MBEDTLS_SSL_MAX_KEY_LENGTH 32
399 * \brief The data structure holding the cryptographic material (key and IV)
400 * used for record protection in TLS 1.3.
402 struct mbedtls_ssl_key_set
{
403 /*! The key for client->server records. */
404 unsigned char client_write_key
[ MBEDTLS_SSL_MAX_KEY_LENGTH
];
405 /*! The key for server->client records. */
406 unsigned char server_write_key
[ MBEDTLS_SSL_MAX_KEY_LENGTH
];
407 /*! The IV for client->server records. */
408 unsigned char client_write_iv
[ MBEDTLS_SSL_MAX_IV_LENGTH
];
409 /*! The IV for server->client records. */
410 unsigned char server_write_iv
[ MBEDTLS_SSL_MAX_IV_LENGTH
];
412 size_t key_len
; /*!< The length of client_write_key and
413 * server_write_key, in Bytes. */
414 size_t iv_len
; /*!< The length of client_write_iv and
415 * server_write_iv, in Bytes. */
417 typedef struct mbedtls_ssl_key_set mbedtls_ssl_key_set
;
420 * This structure contains the parameters only needed during handshake.
422 struct mbedtls_ssl_handshake_params
{
424 * Handshake specific crypto variables
427 #if defined(MBEDTLS_SSL_PROTO_TLS1_2) && \
428 defined(MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED)
429 mbedtls_ssl_sig_hash_set_t hash_algs
; /*!< Set of suitable sig-hash pairs */
431 #if defined(MBEDTLS_DHM_C)
432 mbedtls_dhm_context dhm_ctx
; /*!< DHM key exchange */
434 /* Adding guard for MBEDTLS_ECDSA_C to ensure no compile errors due
435 * to guards also being in ssl_srv.c and ssl_cli.c. There is a gap
436 * in functionality that access to ecdh_ctx structure is needed for
437 * MBEDTLS_ECDSA_C which does not seem correct.
439 #if defined(MBEDTLS_ECDH_C) || defined(MBEDTLS_ECDSA_C)
440 mbedtls_ecdh_context ecdh_ctx
; /*!< ECDH key exchange */
442 #if defined(MBEDTLS_USE_PSA_CRYPTO)
443 psa_key_type_t ecdh_psa_type
;
445 psa_key_id_t ecdh_psa_privkey
;
446 unsigned char ecdh_psa_peerkey
[MBEDTLS_PSA_MAX_EC_PUBKEY_LENGTH
];
447 size_t ecdh_psa_peerkey_len
;
448 #endif /* MBEDTLS_USE_PSA_CRYPTO */
449 #endif /* MBEDTLS_ECDH_C || MBEDTLS_ECDSA_C */
451 #if defined(MBEDTLS_KEY_EXCHANGE_ECJPAKE_ENABLED)
452 mbedtls_ecjpake_context ecjpake_ctx
; /*!< EC J-PAKE key exchange */
453 #if defined(MBEDTLS_SSL_CLI_C)
454 unsigned char *ecjpake_cache
; /*!< Cache for ClientHello ext */
455 size_t ecjpake_cache_len
; /*!< Length of cached data */
457 #endif /* MBEDTLS_KEY_EXCHANGE_ECJPAKE_ENABLED */
458 #if defined(MBEDTLS_ECDH_C) || defined(MBEDTLS_ECDSA_C) || \
459 defined(MBEDTLS_KEY_EXCHANGE_ECJPAKE_ENABLED)
460 const mbedtls_ecp_curve_info
**curves
; /*!< Supported elliptic curves */
462 #if defined(MBEDTLS_KEY_EXCHANGE_SOME_PSK_ENABLED)
463 #if defined(MBEDTLS_USE_PSA_CRYPTO)
464 psa_key_id_t psk_opaque
; /*!< Opaque PSK from the callback */
465 #endif /* MBEDTLS_USE_PSA_CRYPTO */
466 unsigned char *psk
; /*!< PSK from the callback */
467 size_t psk_len
; /*!< Length of PSK from callback */
468 #endif /* MBEDTLS_KEY_EXCHANGE_SOME_PSK_ENABLED */
469 #if defined(MBEDTLS_X509_CRT_PARSE_C)
470 mbedtls_ssl_key_cert
*key_cert
; /*!< chosen key/cert pair (server) */
471 #if defined(MBEDTLS_SSL_SERVER_NAME_INDICATION)
472 int sni_authmode
; /*!< authmode from SNI callback */
473 mbedtls_ssl_key_cert
*sni_key_cert
; /*!< key/cert list from SNI */
474 mbedtls_x509_crt
*sni_ca_chain
; /*!< trusted CAs from SNI callback */
475 mbedtls_x509_crl
*sni_ca_crl
; /*!< trusted CAs CRLs from SNI */
476 #endif /* MBEDTLS_SSL_SERVER_NAME_INDICATION */
477 #endif /* MBEDTLS_X509_CRT_PARSE_C */
478 #if defined(MBEDTLS_SSL_ECP_RESTARTABLE_ENABLED)
479 int ecrs_enabled
; /*!< Handshake supports EC restart? */
480 mbedtls_x509_crt_restart_ctx ecrs_ctx
; /*!< restart context */
481 enum { /* this complements ssl->state with info on intra-state operations */
482 ssl_ecrs_none
= 0, /*!< nothing going on (yet) */
483 ssl_ecrs_crt_verify
, /*!< Certificate: crt_verify() */
484 ssl_ecrs_ske_start_processing
, /*!< ServerKeyExchange: pk_verify() */
485 ssl_ecrs_cke_ecdh_calc_secret
, /*!< ClientKeyExchange: ECDH step 2 */
486 ssl_ecrs_crt_vrfy_sign
, /*!< CertificateVerify: pk_sign() */
487 } ecrs_state
; /*!< current (or last) operation */
488 mbedtls_x509_crt
*ecrs_peer_cert
; /*!< The peer's CRT chain. */
489 size_t ecrs_n
; /*!< place for saving a length */
491 #if defined(MBEDTLS_X509_CRT_PARSE_C) && \
492 !defined(MBEDTLS_SSL_KEEP_PEER_CERTIFICATE)
493 mbedtls_pk_context peer_pubkey
; /*!< The public key from the peer. */
494 #endif /* MBEDTLS_X509_CRT_PARSE_C && !MBEDTLS_SSL_KEEP_PEER_CERTIFICATE */
495 #if defined(MBEDTLS_SSL_PROTO_DTLS)
496 unsigned int out_msg_seq
; /*!< Outgoing handshake sequence number */
497 unsigned int in_msg_seq
; /*!< Incoming handshake sequence number */
499 unsigned char *verify_cookie
; /*!< Cli: HelloVerifyRequest cookie
501 unsigned char verify_cookie_len
; /*!< Cli: cookie length
502 Srv: flag for sending a cookie */
504 uint32_t retransmit_timeout
; /*!< Current value of timeout */
505 unsigned char retransmit_state
; /*!< Retransmission state */
506 mbedtls_ssl_flight_item
*flight
; /*!< Current outgoing flight */
507 mbedtls_ssl_flight_item
*cur_msg
; /*!< Current message in flight */
508 unsigned char *cur_msg_p
; /*!< Position in current message */
509 unsigned int in_flight_start_seq
; /*!< Minimum message sequence in the
510 flight being received */
511 mbedtls_ssl_transform
*alt_transform_out
; /*!< Alternative transform for
512 resending messages */
513 unsigned char alt_out_ctr
[8]; /*!< Alternative record epoch/counter
514 for resending messages */
516 #if defined(MBEDTLS_SSL_DTLS_CONNECTION_ID)
517 /* The state of CID configuration in this handshake. */
519 uint8_t cid_in_use
; /*!< This indicates whether the use of the CID extension
520 * has been negotiated. Possible values are
521 * #MBEDTLS_SSL_CID_ENABLED and
522 * #MBEDTLS_SSL_CID_DISABLED. */
523 unsigned char peer_cid
[ MBEDTLS_SSL_CID_OUT_LEN_MAX
]; /*! The peer's CID */
524 uint8_t peer_cid_len
; /*!< The length of
526 #endif /* MBEDTLS_SSL_DTLS_CONNECTION_ID */
529 size_t total_bytes_buffered
; /*!< Cumulative size of heap allocated
530 * buffers used for message buffering. */
532 uint8_t seen_ccs
; /*!< Indicates if a CCS message has
533 * been seen in the current flight. */
535 struct mbedtls_ssl_hs_buffer
{
536 unsigned is_valid
: 1;
537 unsigned is_fragmented
: 1;
538 unsigned is_complete
: 1;
541 } hs
[MBEDTLS_SSL_MAX_BUFFERED_HS
];
551 uint16_t mtu
; /*!< Handshake mtu, used to fragment outgoing messages */
552 #endif /* MBEDTLS_SSL_PROTO_DTLS */
557 #if defined(MBEDTLS_SSL_PROTO_SSL3) || defined(MBEDTLS_SSL_PROTO_TLS1) || \
558 defined(MBEDTLS_SSL_PROTO_TLS1_1)
559 mbedtls_md5_context fin_md5
;
560 mbedtls_sha1_context fin_sha1
;
562 #if defined(MBEDTLS_SSL_PROTO_TLS1_2)
563 #if defined(MBEDTLS_SHA256_C)
564 #if defined(MBEDTLS_USE_PSA_CRYPTO)
565 psa_hash_operation_t fin_sha256_psa
;
567 mbedtls_sha256_context fin_sha256
;
570 #if defined(MBEDTLS_SHA512_C)
571 #if defined(MBEDTLS_USE_PSA_CRYPTO)
572 psa_hash_operation_t fin_sha384_psa
;
574 mbedtls_sha512_context fin_sha512
;
577 #endif /* MBEDTLS_SSL_PROTO_TLS1_2 */
579 void (*update_checksum
)(mbedtls_ssl_context
*, const unsigned char *, size_t);
580 void (*calc_verify
)(const mbedtls_ssl_context
*, unsigned char *, size_t *);
581 void (*calc_finished
)(mbedtls_ssl_context
*, unsigned char *, int);
582 mbedtls_ssl_tls_prf_cb
*tls_prf
;
584 mbedtls_ssl_ciphersuite_t
const *ciphersuite_info
;
586 size_t pmslen
; /*!< premaster length */
588 unsigned char randbytes
[64]; /*!< random bytes */
589 unsigned char premaster
[MBEDTLS_PREMASTER_SIZE
];
590 /*!< premaster secret */
592 int resume
; /*!< session resume indicator*/
593 int max_major_ver
; /*!< max. major version client*/
594 int max_minor_ver
; /*!< max. minor version client*/
595 int cli_exts
; /*!< client extension presence*/
597 #if defined(MBEDTLS_SSL_SESSION_TICKETS)
598 int new_session_ticket
; /*!< use NewSessionTicket? */
599 #endif /* MBEDTLS_SSL_SESSION_TICKETS */
600 #if defined(MBEDTLS_SSL_EXTENDED_MASTER_SECRET)
601 int extended_ms
; /*!< use Extended Master Secret? */
604 #if defined(MBEDTLS_SSL_ASYNC_PRIVATE)
605 unsigned int async_in_progress
: 1; /*!< an asynchronous operation is in progress */
606 #endif /* MBEDTLS_SSL_ASYNC_PRIVATE */
608 #if defined(MBEDTLS_SSL_ASYNC_PRIVATE)
609 /** Asynchronous operation context. This field is meant for use by the
610 * asynchronous operation callbacks (mbedtls_ssl_config::f_async_sign_start,
611 * mbedtls_ssl_config::f_async_decrypt_start,
612 * mbedtls_ssl_config::f_async_resume, mbedtls_ssl_config::f_async_cancel).
613 * The library does not use it internally. */
614 void *user_async_ctx
;
615 #endif /* MBEDTLS_SSL_ASYNC_PRIVATE */
618 typedef struct mbedtls_ssl_hs_buffer mbedtls_ssl_hs_buffer
;
621 * Representation of decryption/encryption transformations on records
623 * There are the following general types of record transformations:
624 * - Stream transformations (TLS versions <= 1.2 only)
625 * Transformation adding a MAC and applying a stream-cipher
626 * to the authenticated message.
627 * - CBC block cipher transformations ([D]TLS versions <= 1.2 only)
628 * In addition to the distinction of the order of encryption and
629 * authentication, there's a fundamental difference between the
630 * handling in SSL3 & TLS 1.0 and TLS 1.1 and TLS 1.2: For SSL3
631 * and TLS 1.0, the final IV after processing a record is used
632 * as the IV for the next record. No explicit IV is contained
633 * in an encrypted record. The IV for the first record is extracted
634 * at key extraction time. In contrast, for TLS 1.1 and 1.2, no
635 * IV is generated at key extraction time, but every encrypted
636 * record is explicitly prefixed by the IV with which it was encrypted.
637 * - AEAD transformations ([D]TLS versions >= 1.2 only)
638 * These come in two fundamentally different versions, the first one
639 * used in TLS 1.2, excluding ChaChaPoly ciphersuites, and the second
640 * one used for ChaChaPoly ciphersuites in TLS 1.2 as well as for TLS 1.3.
641 * In the first transformation, the IV to be used for a record is obtained
642 * as the concatenation of an explicit, static 4-byte IV and the 8-byte
643 * record sequence number, and explicitly prepending this sequence number
644 * to the encrypted record. In contrast, in the second transformation
645 * the IV is obtained by XOR'ing a static IV obtained at key extraction
646 * time with the 8-byte record sequence number, without prepending the
647 * latter to the encrypted record.
649 * Additionally, DTLS 1.2 + CID as well as TLS 1.3 use an inner plaintext
650 * which allows to add flexible length padding and to hide a record's true
653 * In addition to type and version, the following parameters are relevant:
654 * - The symmetric cipher algorithm to be used.
655 * - The (static) encryption/decryption keys for the cipher.
656 * - For stream/CBC, the type of message digest to be used.
657 * - For stream/CBC, (static) encryption/decryption keys for the digest.
658 * - For AEAD transformations, the size (potentially 0) of an explicit,
659 * random initialization vector placed in encrypted records.
660 * - For some transformations (currently AEAD and CBC in SSL3 and TLS 1.0)
661 * an implicit IV. It may be static (e.g. AEAD) or dynamic (e.g. CBC)
662 * and (if present) is combined with the explicit IV in a transformation-
663 * dependent way (e.g. appending in TLS 1.2 and XOR'ing in TLS 1.3).
664 * - For stream/CBC, a flag determining the order of encryption and MAC.
665 * - The details of the transformation depend on the SSL/TLS version.
666 * - The length of the authentication tag.
668 * Note: Except for CBC in SSL3 and TLS 1.0, these parameters are
669 * constant across multiple encryption/decryption operations.
670 * For CBC, the implicit IV needs to be updated after each
673 * The struct below refines this abstract view as follows:
674 * - The cipher underlying the transformation is managed in
675 * cipher contexts cipher_ctx_{enc/dec}, which must have the
676 * same cipher type. The mode of these cipher contexts determines
677 * the type of the transformation in the sense above: e.g., if
678 * the type is MBEDTLS_CIPHER_AES_256_CBC resp. MBEDTLS_CIPHER_AES_192_GCM
679 * then the transformation has type CBC resp. AEAD.
680 * - The cipher keys are never stored explicitly but
681 * are maintained within cipher_ctx_{enc/dec}.
682 * - For stream/CBC transformations, the message digest contexts
683 * used for the MAC's are stored in md_ctx_{enc/dec}. These contexts
684 * are unused for AEAD transformations.
685 * - For stream/CBC transformations and versions > SSL3, the
686 * MAC keys are not stored explicitly but maintained within
688 * - For stream/CBC transformations and version SSL3, the MAC
689 * keys are stored explicitly in mac_enc, mac_dec and have
690 * a fixed size of 20 bytes. These fields are unused for
691 * AEAD transformations or transformations >= TLS 1.0.
692 * - For transformations using an implicit IV maintained within
693 * the transformation context, its contents are stored within
695 * - The value of ivlen indicates the length of the IV.
696 * This is redundant in case of stream/CBC transformations
697 * which always use 0 resp. the cipher's block length as the
698 * IV length, but is needed for AEAD ciphers and may be
699 * different from the underlying cipher's block length
701 * - The field fixed_ivlen is nonzero for AEAD transformations only
702 * and indicates the length of the static part of the IV which is
703 * constant throughout the communication, and which is stored in
704 * the first fixed_ivlen bytes of the iv_{enc/dec} arrays.
705 * Note: For CBC in SSL3 and TLS 1.0, the fields iv_{enc/dec}
706 * still store IV's for continued use across multiple transformations,
707 * so it is not true that fixed_ivlen == 0 means that iv_{enc/dec} are
709 * - minor_ver denotes the SSL/TLS version
710 * - For stream/CBC transformations, maclen denotes the length of the
711 * authentication tag, while taglen is unused and 0.
712 * - For AEAD transformations, taglen denotes the length of the
713 * authentication tag, while maclen is unused and 0.
714 * - For CBC transformations, encrypt_then_mac determines the
715 * order of encryption and authentication. This field is unused
716 * in other transformations.
719 struct mbedtls_ssl_transform
{
721 * Session specific crypto layer
723 size_t minlen
; /*!< min. ciphertext length */
724 size_t ivlen
; /*!< IV length */
725 size_t fixed_ivlen
; /*!< Fixed part of IV (AEAD) */
726 size_t maclen
; /*!< MAC(CBC) len */
727 size_t taglen
; /*!< TAG(AEAD) len */
729 unsigned char iv_enc
[16]; /*!< IV (encryption) */
730 unsigned char iv_dec
[16]; /*!< IV (decryption) */
732 #if defined(MBEDTLS_SSL_SOME_MODES_USE_MAC)
734 #if defined(MBEDTLS_SSL_PROTO_SSL3)
735 /* Needed only for SSL v3.0 secret */
736 unsigned char mac_enc
[20]; /*!< SSL v3.0 secret (enc) */
737 unsigned char mac_dec
[20]; /*!< SSL v3.0 secret (dec) */
738 #endif /* MBEDTLS_SSL_PROTO_SSL3 */
740 mbedtls_md_context_t md_ctx_enc
; /*!< MAC (encryption) */
741 mbedtls_md_context_t md_ctx_dec
; /*!< MAC (decryption) */
743 #if defined(MBEDTLS_SSL_ENCRYPT_THEN_MAC)
744 int encrypt_then_mac
; /*!< flag for EtM activation */
747 #endif /* MBEDTLS_SSL_SOME_MODES_USE_MAC */
749 mbedtls_cipher_context_t cipher_ctx_enc
; /*!< encryption context */
750 mbedtls_cipher_context_t cipher_ctx_dec
; /*!< decryption context */
753 #if defined(MBEDTLS_SSL_DTLS_CONNECTION_ID)
756 unsigned char in_cid
[ MBEDTLS_SSL_CID_OUT_LEN_MAX
];
757 unsigned char out_cid
[ MBEDTLS_SSL_CID_OUT_LEN_MAX
];
758 #endif /* MBEDTLS_SSL_DTLS_CONNECTION_ID */
761 * Session specific compression layer
763 #if defined(MBEDTLS_ZLIB_SUPPORT)
764 z_stream ctx_deflate
; /*!< compression context */
765 z_stream ctx_inflate
; /*!< decompression context */
768 #if defined(MBEDTLS_SSL_CONTEXT_SERIALIZATION)
769 /* We need the Hello random bytes in order to re-derive keys from the
770 * Master Secret and other session info, see ssl_populate_transform() */
771 unsigned char randbytes
[64]; /*!< ServerHello.random+ClientHello.random */
772 #endif /* MBEDTLS_SSL_CONTEXT_SERIALIZATION */
776 * Return 1 if the transform uses an AEAD cipher, 0 otherwise.
777 * Equivalently, return 0 if a separate MAC is used, 1 otherwise.
779 static inline int mbedtls_ssl_transform_uses_aead(
780 const mbedtls_ssl_transform
*transform
) {
781 #if defined(MBEDTLS_SSL_SOME_MODES_USE_MAC)
782 return (transform
->maclen
== 0 && transform
->taglen
!= 0);
790 * Internal representation of record frames
792 * Instances come in two flavors:
794 * These always have data_offset = 0
796 * These have data_offset set to the amount of
797 * pre-expansion during record protection. Concretely,
798 * this is the length of the fixed part of the explicit IV
799 * used for encryption, or 0 if no explicit IV is used
800 * (e.g. for CBC in TLS 1.0, or stream ciphers).
802 * The reason for the data_offset in the unencrypted case
803 * is to allow for in-place conversion of an unencrypted to
804 * an encrypted record. If the offset wasn't included, the
805 * encrypted content would need to be shifted afterwards to
806 * make space for the fixed IV.
809 #if MBEDTLS_SSL_CID_OUT_LEN_MAX > MBEDTLS_SSL_CID_IN_LEN_MAX
810 #define MBEDTLS_SSL_CID_LEN_MAX MBEDTLS_SSL_CID_OUT_LEN_MAX
812 #define MBEDTLS_SSL_CID_LEN_MAX MBEDTLS_SSL_CID_IN_LEN_MAX
816 uint8_t ctr
[8]; /* In TLS: The implicit record sequence number.
817 * In DTLS: The 2-byte epoch followed by
818 * the 6-byte sequence number.
819 * This is stored as a raw big endian byte array
820 * as opposed to a uint64_t because we rarely
821 * need to perform arithmetic on this, but do
822 * need it as a Byte array for the purpose of
823 * MAC computations. */
824 uint8_t type
; /* The record content type. */
825 uint8_t ver
[2]; /* SSL/TLS version as present on the wire.
826 * Convert to internal presentation of versions
827 * using mbedtls_ssl_read_version() and
828 * mbedtls_ssl_write_version().
829 * Keep wire-format for MAC computations. */
831 unsigned char *buf
; /* Memory buffer enclosing the record content */
832 size_t buf_len
; /* Buffer length */
833 size_t data_offset
; /* Offset of record content */
834 size_t data_len
; /* Length of record content */
836 #if defined(MBEDTLS_SSL_DTLS_CONNECTION_ID)
837 uint8_t cid_len
; /* Length of the CID (0 if not present) */
838 unsigned char cid
[ MBEDTLS_SSL_CID_LEN_MAX
]; /* The CID */
839 #endif /* MBEDTLS_SSL_DTLS_CONNECTION_ID */
842 #if defined(MBEDTLS_X509_CRT_PARSE_C)
844 * List of certificate + private key pairs
846 struct mbedtls_ssl_key_cert
{
847 mbedtls_x509_crt
*cert
; /*!< cert */
848 mbedtls_pk_context
*key
; /*!< private key */
849 mbedtls_ssl_key_cert
*next
; /*!< next key/cert pair */
851 #endif /* MBEDTLS_X509_CRT_PARSE_C */
853 #if defined(MBEDTLS_SSL_PROTO_DTLS)
855 * List of handshake messages kept around for resending
857 struct mbedtls_ssl_flight_item
{
858 unsigned char *p
; /*!< message, including handshake headers */
859 size_t len
; /*!< length of p */
860 unsigned char type
; /*!< type of the message: handshake or CCS */
861 mbedtls_ssl_flight_item
*next
; /*!< next handshake message(s) */
863 #endif /* MBEDTLS_SSL_PROTO_DTLS */
865 #if defined(MBEDTLS_SSL_PROTO_TLS1_2) && \
866 defined(MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED)
868 /* Find an entry in a signature-hash set matching a given hash algorithm. */
869 mbedtls_md_type_t
mbedtls_ssl_sig_hash_set_find(mbedtls_ssl_sig_hash_set_t
*set
,
870 mbedtls_pk_type_t sig_alg
);
871 /* Add a signature-hash-pair to a signature-hash set */
872 void mbedtls_ssl_sig_hash_set_add(mbedtls_ssl_sig_hash_set_t
*set
,
873 mbedtls_pk_type_t sig_alg
,
874 mbedtls_md_type_t md_alg
);
875 /* Allow exactly one hash algorithm for each signature. */
876 void mbedtls_ssl_sig_hash_set_const_hash(mbedtls_ssl_sig_hash_set_t
*set
,
877 mbedtls_md_type_t md_alg
);
879 /* Setup an empty signature-hash set */
880 static inline void mbedtls_ssl_sig_hash_set_init(mbedtls_ssl_sig_hash_set_t
*set
) {
881 mbedtls_ssl_sig_hash_set_const_hash(set
, MBEDTLS_MD_NONE
);
884 #endif /* MBEDTLS_SSL_PROTO_TLS1_2) &&
885 MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED */
888 * \brief Free referenced items in an SSL transform context and clear
891 * \param transform SSL transform context
893 void mbedtls_ssl_transform_free(mbedtls_ssl_transform
*transform
);
896 * \brief Free referenced items in an SSL handshake context and clear
899 * \param ssl SSL context
901 void mbedtls_ssl_handshake_free(mbedtls_ssl_context
*ssl
);
903 int mbedtls_ssl_handshake_client_step(mbedtls_ssl_context
*ssl
);
904 int mbedtls_ssl_handshake_server_step(mbedtls_ssl_context
*ssl
);
905 void mbedtls_ssl_handshake_wrapup(mbedtls_ssl_context
*ssl
);
907 int mbedtls_ssl_send_fatal_handshake_failure(mbedtls_ssl_context
*ssl
);
909 void mbedtls_ssl_reset_checksum(mbedtls_ssl_context
*ssl
);
910 int mbedtls_ssl_derive_keys(mbedtls_ssl_context
*ssl
);
912 int mbedtls_ssl_handle_message_type(mbedtls_ssl_context
*ssl
);
913 int mbedtls_ssl_prepare_handshake_record(mbedtls_ssl_context
*ssl
);
914 void mbedtls_ssl_update_handshake_status(mbedtls_ssl_context
*ssl
);
917 * \brief Update record layer
919 * This function roughly separates the implementation
920 * of the logic of (D)TLS from the implementation
921 * of the secure transport.
923 * \param ssl The SSL context to use.
924 * \param update_hs_digest This indicates if the handshake digest
925 * should be automatically updated in case
926 * a handshake message is found.
928 * \return 0 or non-zero error code.
930 * \note A clarification on what is called 'record layer' here
931 * is in order, as many sensible definitions are possible:
933 * The record layer takes as input an untrusted underlying
934 * transport (stream or datagram) and transforms it into
935 * a serially multiplexed, secure transport, which
936 * conceptually provides the following:
938 * (1) Three datagram based, content-agnostic transports
939 * for handshake, alert and CCS messages.
940 * (2) One stream- or datagram-based transport
941 * for application data.
942 * (3) Functionality for changing the underlying transform
943 * securing the contents.
945 * The interface to this functionality is given as follows:
948 * [Currently implemented by mbedtls_ssl_read_record]
950 * Check if and on which of the four 'ports' data is pending:
951 * Nothing, a controlling datagram of type (1), or application
952 * data (2). In any case data is present, internal buffers
953 * provide access to the data for the user to process it.
954 * Consumption of type (1) datagrams is done automatically
955 * on the next update, invalidating that the internal buffers
956 * for previous datagrams, while consumption of application
957 * data (2) is user-controlled.
959 * b Reading of application data
960 * [Currently manual adaption of ssl->in_offt pointer]
962 * As mentioned in the last paragraph, consumption of data
963 * is different from the automatic consumption of control
964 * datagrams (1) because application data is treated as a stream.
966 * c Tracking availability of application data
967 * [Currently manually through decreasing ssl->in_msglen]
969 * For efficiency and to retain datagram semantics for
970 * application data in case of DTLS, the record layer
971 * provides functionality for checking how much application
972 * data is still available in the internal buffer.
974 * d Changing the transformation securing the communication.
976 * Given an opaque implementation of the record layer in the
977 * above sense, it should be possible to implement the logic
978 * of (D)TLS on top of it without the need to know anything
979 * about the record layer's internals. This is done e.g.
980 * in all the handshake handling functions, and in the
981 * application data reading function mbedtls_ssl_read.
983 * \note The above tries to give a conceptual picture of the
984 * record layer, but the current implementation deviates
985 * from it in some places. For example, our implementation of
986 * the update functionality through mbedtls_ssl_read_record
987 * discards datagrams depending on the current state, which
988 * wouldn't fall under the record layer's responsibility
989 * following the above definition.
992 int mbedtls_ssl_read_record(mbedtls_ssl_context
*ssl
,
993 unsigned update_hs_digest
);
994 int mbedtls_ssl_fetch_input(mbedtls_ssl_context
*ssl
, size_t nb_want
);
996 int mbedtls_ssl_write_handshake_msg(mbedtls_ssl_context
*ssl
);
997 int mbedtls_ssl_write_record(mbedtls_ssl_context
*ssl
, uint8_t force_flush
);
998 int mbedtls_ssl_flush_output(mbedtls_ssl_context
*ssl
);
1000 int mbedtls_ssl_parse_certificate(mbedtls_ssl_context
*ssl
);
1001 int mbedtls_ssl_write_certificate(mbedtls_ssl_context
*ssl
);
1003 int mbedtls_ssl_parse_change_cipher_spec(mbedtls_ssl_context
*ssl
);
1004 int mbedtls_ssl_write_change_cipher_spec(mbedtls_ssl_context
*ssl
);
1006 int mbedtls_ssl_parse_finished(mbedtls_ssl_context
*ssl
);
1007 int mbedtls_ssl_write_finished(mbedtls_ssl_context
*ssl
);
1009 void mbedtls_ssl_optimize_checksum(mbedtls_ssl_context
*ssl
,
1010 const mbedtls_ssl_ciphersuite_t
*ciphersuite_info
);
1012 #if defined(MBEDTLS_KEY_EXCHANGE_SOME_PSK_ENABLED)
1013 int mbedtls_ssl_psk_derive_premaster(mbedtls_ssl_context
*ssl
, mbedtls_key_exchange_type_t key_ex
);
1016 * Get the first defined PSK by order of precedence:
1017 * 1. handshake PSK set by \c mbedtls_ssl_set_hs_psk() in the PSK callback
1018 * 2. static PSK configured by \c mbedtls_ssl_conf_psk()
1019 * Return a code and update the pair (PSK, PSK length) passed to this function
1021 static inline int mbedtls_ssl_get_psk(const mbedtls_ssl_context
*ssl
,
1022 const unsigned char **psk
, size_t *psk_len
) {
1023 if (ssl
->handshake
->psk
!= NULL
&& ssl
->handshake
->psk_len
> 0) {
1024 *psk
= ssl
->handshake
->psk
;
1025 *psk_len
= ssl
->handshake
->psk_len
;
1028 else if (ssl
->conf
->psk
!= NULL
&& ssl
->conf
->psk_len
> 0) {
1029 *psk
= ssl
->conf
->psk
;
1030 *psk_len
= ssl
->conf
->psk_len
;
1036 return (MBEDTLS_ERR_SSL_PRIVATE_KEY_REQUIRED
);
1042 #if defined(MBEDTLS_USE_PSA_CRYPTO)
1044 * Get the first defined opaque PSK by order of precedence:
1045 * 1. handshake PSK set by \c mbedtls_ssl_set_hs_psk_opaque() in the PSK
1047 * 2. static PSK configured by \c mbedtls_ssl_conf_psk_opaque()
1048 * Return an opaque PSK
1050 static inline psa_key_id_t
mbedtls_ssl_get_opaque_psk(
1051 const mbedtls_ssl_context
*ssl
) {
1052 if (! mbedtls_svc_key_id_is_null(ssl
->handshake
->psk_opaque
))
1053 return (ssl
->handshake
->psk_opaque
);
1055 if (! mbedtls_svc_key_id_is_null(ssl
->conf
->psk_opaque
))
1056 return (ssl
->conf
->psk_opaque
);
1058 return (MBEDTLS_SVC_KEY_ID_INIT
);
1060 #endif /* MBEDTLS_USE_PSA_CRYPTO */
1062 #endif /* MBEDTLS_KEY_EXCHANGE_SOME_PSK_ENABLED */
1064 #if defined(MBEDTLS_PK_C)
1065 unsigned char mbedtls_ssl_sig_from_pk(mbedtls_pk_context
*pk
);
1066 unsigned char mbedtls_ssl_sig_from_pk_alg(mbedtls_pk_type_t type
);
1067 mbedtls_pk_type_t
mbedtls_ssl_pk_alg_from_sig(unsigned char sig
);
1070 mbedtls_md_type_t
mbedtls_ssl_md_alg_from_hash(unsigned char hash
);
1071 unsigned char mbedtls_ssl_hash_from_md_alg(int md
);
1072 int mbedtls_ssl_set_calc_verify_md(mbedtls_ssl_context
*ssl
, int md
);
1074 #if defined(MBEDTLS_ECP_C)
1075 int mbedtls_ssl_check_curve(const mbedtls_ssl_context
*ssl
, mbedtls_ecp_group_id grp_id
);
1078 #if defined(MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED)
1079 int mbedtls_ssl_check_sig_hash(const mbedtls_ssl_context
*ssl
,
1080 mbedtls_md_type_t md
);
1083 #if defined(MBEDTLS_SSL_DTLS_SRTP)
1084 static inline mbedtls_ssl_srtp_profile mbedtls_ssl_check_srtp_profile_value
1085 (const uint16_t srtp_profile_value
) {
1086 switch (srtp_profile_value
) {
1087 case MBEDTLS_TLS_SRTP_AES128_CM_HMAC_SHA1_80
:
1088 case MBEDTLS_TLS_SRTP_AES128_CM_HMAC_SHA1_32
:
1089 case MBEDTLS_TLS_SRTP_NULL_HMAC_SHA1_80
:
1090 case MBEDTLS_TLS_SRTP_NULL_HMAC_SHA1_32
:
1091 return srtp_profile_value
;
1095 return (MBEDTLS_TLS_SRTP_UNSET
);
1099 #if defined(MBEDTLS_X509_CRT_PARSE_C)
1100 static inline mbedtls_pk_context
*mbedtls_ssl_own_key(mbedtls_ssl_context
*ssl
) {
1101 mbedtls_ssl_key_cert
*key_cert
;
1103 if (ssl
->handshake
!= NULL
&& ssl
->handshake
->key_cert
!= NULL
)
1104 key_cert
= ssl
->handshake
->key_cert
;
1106 key_cert
= ssl
->conf
->key_cert
;
1108 return (key_cert
== NULL
? NULL
: key_cert
->key
);
1111 static inline mbedtls_x509_crt
*mbedtls_ssl_own_cert(mbedtls_ssl_context
*ssl
) {
1112 mbedtls_ssl_key_cert
*key_cert
;
1114 if (ssl
->handshake
!= NULL
&& ssl
->handshake
->key_cert
!= NULL
)
1115 key_cert
= ssl
->handshake
->key_cert
;
1117 key_cert
= ssl
->conf
->key_cert
;
1119 return (key_cert
== NULL
? NULL
: key_cert
->cert
);
1123 * Check usage of a certificate wrt extensions:
1124 * keyUsage, extendedKeyUsage (later), and nSCertType (later).
1126 * Warning: cert_endpoint is the endpoint of the cert (ie, of our peer when we
1127 * check a cert we received from them)!
1129 * Return 0 if everything is OK, -1 if not.
1131 int mbedtls_ssl_check_cert_usage(const mbedtls_x509_crt
*cert
,
1132 const mbedtls_ssl_ciphersuite_t
*ciphersuite
,
1135 #endif /* MBEDTLS_X509_CRT_PARSE_C */
1137 void mbedtls_ssl_write_version(int major
, int minor
, int transport
,
1138 unsigned char ver
[2]);
1139 void mbedtls_ssl_read_version(int *major
, int *minor
, int transport
,
1140 const unsigned char ver
[2]);
1142 static inline size_t mbedtls_ssl_in_hdr_len(const mbedtls_ssl_context
*ssl
) {
1143 #if !defined(MBEDTLS_SSL_PROTO_DTLS)
1147 #if defined(MBEDTLS_SSL_PROTO_DTLS)
1148 if (ssl
->conf
->transport
== MBEDTLS_SSL_TRANSPORT_DATAGRAM
) {
1151 #endif /* MBEDTLS_SSL_PROTO_DTLS */
1157 static inline size_t mbedtls_ssl_out_hdr_len(const mbedtls_ssl_context
*ssl
) {
1158 return ((size_t)(ssl
->out_iv
- ssl
->out_hdr
));
1161 static inline size_t mbedtls_ssl_hs_hdr_len(const mbedtls_ssl_context
*ssl
) {
1162 #if defined(MBEDTLS_SSL_PROTO_DTLS)
1163 if (ssl
->conf
->transport
== MBEDTLS_SSL_TRANSPORT_DATAGRAM
)
1171 #if defined(MBEDTLS_SSL_PROTO_DTLS)
1172 void mbedtls_ssl_send_flight_completed(mbedtls_ssl_context
*ssl
);
1173 void mbedtls_ssl_recv_flight_completed(mbedtls_ssl_context
*ssl
);
1174 int mbedtls_ssl_resend(mbedtls_ssl_context
*ssl
);
1175 int mbedtls_ssl_flight_transmit(mbedtls_ssl_context
*ssl
);
1178 /* Visible for testing purposes only */
1179 #if defined(MBEDTLS_SSL_DTLS_ANTI_REPLAY)
1180 int mbedtls_ssl_dtls_replay_check(mbedtls_ssl_context
const *ssl
);
1181 void mbedtls_ssl_dtls_replay_update(mbedtls_ssl_context
*ssl
);
1184 int mbedtls_ssl_session_copy(mbedtls_ssl_session
*dst
,
1185 const mbedtls_ssl_session
*src
);
1187 /* constant-time buffer comparison */
1188 static inline int mbedtls_ssl_safer_memcmp(const void *a
, const void *b
, size_t n
) {
1190 volatile const unsigned char *A
= (volatile const unsigned char *) a
;
1191 volatile const unsigned char *B
= (volatile const unsigned char *) b
;
1192 volatile unsigned char diff
= 0;
1194 for (i
= 0; i
< n
; i
++) {
1195 /* Read volatile data in order before computing diff.
1196 * This avoids IAR compiler warning:
1197 * 'the order of volatile accesses is undefined ..' */
1198 unsigned char x
= A
[i
], y
= B
[i
];
1205 #if defined(MBEDTLS_SSL_PROTO_SSL3) || defined(MBEDTLS_SSL_PROTO_TLS1) || \
1206 defined(MBEDTLS_SSL_PROTO_TLS1_1)
1207 int mbedtls_ssl_get_key_exchange_md_ssl_tls(mbedtls_ssl_context
*ssl
,
1208 unsigned char *output
,
1209 unsigned char *data
, size_t data_len
);
1210 #endif /* MBEDTLS_SSL_PROTO_SSL3 || MBEDTLS_SSL_PROTO_TLS1 || \
1211 MBEDTLS_SSL_PROTO_TLS1_1 */
1213 #if defined(MBEDTLS_SSL_PROTO_TLS1) || defined(MBEDTLS_SSL_PROTO_TLS1_1) || \
1214 defined(MBEDTLS_SSL_PROTO_TLS1_2)
1215 /* The hash buffer must have at least MBEDTLS_MD_MAX_SIZE bytes of length. */
1216 int mbedtls_ssl_get_key_exchange_md_tls1_2(mbedtls_ssl_context
*ssl
,
1217 unsigned char *hash
, size_t *hashlen
,
1218 unsigned char *data
, size_t data_len
,
1219 mbedtls_md_type_t md_alg
);
1220 #endif /* MBEDTLS_SSL_PROTO_TLS1 || MBEDTLS_SSL_PROTO_TLS1_1 || \
1221 MBEDTLS_SSL_PROTO_TLS1_2 */
1227 void mbedtls_ssl_transform_init(mbedtls_ssl_transform
*transform
);
1228 int mbedtls_ssl_encrypt_buf(mbedtls_ssl_context
*ssl
,
1229 mbedtls_ssl_transform
*transform
,
1230 mbedtls_record
*rec
,
1231 int (*f_rng
)(void *, unsigned char *, size_t),
1233 int mbedtls_ssl_decrypt_buf(mbedtls_ssl_context
const *ssl
,
1234 mbedtls_ssl_transform
*transform
,
1235 mbedtls_record
*rec
);
1237 /* Length of the "epoch" field in the record header */
1238 static inline size_t mbedtls_ssl_ep_len(const mbedtls_ssl_context
*ssl
) {
1239 #if defined(MBEDTLS_SSL_PROTO_DTLS)
1240 if (ssl
->conf
->transport
== MBEDTLS_SSL_TRANSPORT_DATAGRAM
)
1248 #if defined(MBEDTLS_SSL_PROTO_DTLS)
1249 int mbedtls_ssl_resend_hello_request(mbedtls_ssl_context
*ssl
);
1250 #endif /* MBEDTLS_SSL_PROTO_DTLS */
1252 void mbedtls_ssl_set_timer(mbedtls_ssl_context
*ssl
, uint32_t millisecs
);
1253 int mbedtls_ssl_check_timer(mbedtls_ssl_context
*ssl
);
1255 void mbedtls_ssl_reset_in_out_pointers(mbedtls_ssl_context
*ssl
);
1256 void mbedtls_ssl_update_out_pointers(mbedtls_ssl_context
*ssl
,
1257 mbedtls_ssl_transform
*transform
);
1258 void mbedtls_ssl_update_in_pointers(mbedtls_ssl_context
*ssl
);
1260 int mbedtls_ssl_session_reset_int(mbedtls_ssl_context
*ssl
, int partial
);
1262 #if defined(MBEDTLS_SSL_DTLS_ANTI_REPLAY)
1263 void mbedtls_ssl_dtls_replay_reset(mbedtls_ssl_context
*ssl
);
1266 void mbedtls_ssl_handshake_wrapup_free_hs_transform(mbedtls_ssl_context
*ssl
);
1268 #if defined(MBEDTLS_SSL_RENEGOTIATION)
1269 int mbedtls_ssl_start_renegotiation(mbedtls_ssl_context
*ssl
);
1270 #endif /* MBEDTLS_SSL_RENEGOTIATION */
1272 #if defined(MBEDTLS_SSL_PROTO_DTLS)
1273 size_t mbedtls_ssl_get_current_mtu(const mbedtls_ssl_context
*ssl
);
1274 void mbedtls_ssl_buffering_free(mbedtls_ssl_context
*ssl
);
1275 void mbedtls_ssl_flight_free(mbedtls_ssl_flight_item
*flight
);
1276 #endif /* MBEDTLS_SSL_PROTO_DTLS */
1278 #endif /* ssl_internal.h */