blob: c48ba985956b690d8d9b5752b4dc0bb71b692c3f [file] [log] [blame]
Manuel Pégourié-Gonnard5e94dde2015-05-26 11:57:05 +02001/**
Darryl Greena40a1012018-01-05 15:33:17 +00002 * \file ssl_internal.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úti44bfbe32020-08-19 16:54:51 +02007 * Copyright The Mbed TLS Contributors
Bence Szépkúti4e9f7122020-06-05 13:02:18 +02008 * SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
9 *
10 * This file is provided under the Apache License 2.0, or the
11 * GNU General Public License v2.0 or later.
12 *
13 * **********
14 * Apache License 2.0:
Manuel Pégourié-Gonnard37ff1402015-09-04 14:21:07 +020015 *
16 * Licensed under the Apache License, Version 2.0 (the "License"); you may
17 * not use this file except in compliance with the License.
18 * You may obtain a copy of the License at
19 *
20 * http://www.apache.org/licenses/LICENSE-2.0
21 *
22 * Unless required by applicable law or agreed to in writing, software
23 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
24 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
25 * See the License for the specific language governing permissions and
26 * limitations under the License.
Manuel Pégourié-Gonnard5e94dde2015-05-26 11:57:05 +020027 *
Bence Szépkúti4e9f7122020-06-05 13:02:18 +020028 * **********
29 *
30 * **********
31 * GNU General Public License v2.0 or later:
32 *
33 * This program is free software; you can redistribute it and/or modify
34 * it under the terms of the GNU General Public License as published by
35 * the Free Software Foundation; either version 2 of the License, or
36 * (at your option) any later version.
37 *
38 * This program is distributed in the hope that it will be useful,
39 * but WITHOUT ANY WARRANTY; without even the implied warranty of
40 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
41 * GNU General Public License for more details.
42 *
43 * You should have received a copy of the GNU General Public License along
44 * with this program; if not, write to the Free Software Foundation, Inc.,
45 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
46 *
47 * **********
Manuel Pégourié-Gonnard5e94dde2015-05-26 11:57:05 +020048 */
49#ifndef MBEDTLS_SSL_INTERNAL_H
50#define MBEDTLS_SSL_INTERNAL_H
51
Ron Eldor0559c662018-02-14 16:02:41 +020052#if !defined(MBEDTLS_CONFIG_FILE)
53#include "config.h"
54#else
55#include MBEDTLS_CONFIG_FILE
56#endif
57
Manuel Pégourié-Gonnard5e94dde2015-05-26 11:57:05 +020058#include "ssl.h"
Hanno Beckera8434e82017-09-18 10:54:39 +010059#include "cipher.h"
Manuel Pégourié-Gonnard5e94dde2015-05-26 11:57:05 +020060
Manuel Pégourié-Gonnard56273da2015-05-26 12:19:45 +020061#if defined(MBEDTLS_MD5_C)
62#include "md5.h"
63#endif
64
65#if defined(MBEDTLS_SHA1_C)
66#include "sha1.h"
67#endif
68
69#if defined(MBEDTLS_SHA256_C)
70#include "sha256.h"
71#endif
72
73#if defined(MBEDTLS_SHA512_C)
74#include "sha512.h"
75#endif
76
Manuel Pégourié-Gonnardeef142d2015-09-16 10:05:04 +020077#if defined(MBEDTLS_KEY_EXCHANGE_ECJPAKE_ENABLED)
Manuel Pégourié-Gonnard76cfd3f2015-09-15 12:10:54 +020078#include "ecjpake.h"
79#endif
80
Manuel Pégourié-Gonnard0223ab92015-10-05 11:40:01 +010081#if ( defined(__ARMCC_VERSION) || defined(_MSC_VER) ) && \
82 !defined(inline) && !defined(__cplusplus)
Manuel Pégourié-Gonnard065122c2015-05-26 12:31:46 +020083#define inline __inline
Manuel Pégourié-Gonnard20af64d2015-07-07 18:33:39 +020084#endif
Manuel Pégourié-Gonnard065122c2015-05-26 12:31:46 +020085
86/* Determine minimum supported version */
87#define MBEDTLS_SSL_MIN_MAJOR_VERSION MBEDTLS_SSL_MAJOR_VERSION_3
88
89#if defined(MBEDTLS_SSL_PROTO_SSL3)
90#define MBEDTLS_SSL_MIN_MINOR_VERSION MBEDTLS_SSL_MINOR_VERSION_0
91#else
92#if defined(MBEDTLS_SSL_PROTO_TLS1)
93#define MBEDTLS_SSL_MIN_MINOR_VERSION MBEDTLS_SSL_MINOR_VERSION_1
94#else
95#if defined(MBEDTLS_SSL_PROTO_TLS1_1)
96#define MBEDTLS_SSL_MIN_MINOR_VERSION MBEDTLS_SSL_MINOR_VERSION_2
97#else
98#if defined(MBEDTLS_SSL_PROTO_TLS1_2)
99#define MBEDTLS_SSL_MIN_MINOR_VERSION MBEDTLS_SSL_MINOR_VERSION_3
100#endif /* MBEDTLS_SSL_PROTO_TLS1_2 */
101#endif /* MBEDTLS_SSL_PROTO_TLS1_1 */
102#endif /* MBEDTLS_SSL_PROTO_TLS1 */
103#endif /* MBEDTLS_SSL_PROTO_SSL3 */
104
Ron Eldor5e9f14d2017-05-28 10:46:38 +0300105#define MBEDTLS_SSL_MIN_VALID_MINOR_VERSION MBEDTLS_SSL_MINOR_VERSION_1
106#define MBEDTLS_SSL_MIN_VALID_MAJOR_VERSION MBEDTLS_SSL_MAJOR_VERSION_3
107
Manuel Pégourié-Gonnard065122c2015-05-26 12:31:46 +0200108/* Determine maximum supported version */
109#define MBEDTLS_SSL_MAX_MAJOR_VERSION MBEDTLS_SSL_MAJOR_VERSION_3
110
111#if defined(MBEDTLS_SSL_PROTO_TLS1_2)
112#define MBEDTLS_SSL_MAX_MINOR_VERSION MBEDTLS_SSL_MINOR_VERSION_3
113#else
114#if defined(MBEDTLS_SSL_PROTO_TLS1_1)
115#define MBEDTLS_SSL_MAX_MINOR_VERSION MBEDTLS_SSL_MINOR_VERSION_2
116#else
117#if defined(MBEDTLS_SSL_PROTO_TLS1)
118#define MBEDTLS_SSL_MAX_MINOR_VERSION MBEDTLS_SSL_MINOR_VERSION_1
119#else
120#if defined(MBEDTLS_SSL_PROTO_SSL3)
121#define MBEDTLS_SSL_MAX_MINOR_VERSION MBEDTLS_SSL_MINOR_VERSION_0
122#endif /* MBEDTLS_SSL_PROTO_SSL3 */
123#endif /* MBEDTLS_SSL_PROTO_TLS1 */
124#endif /* MBEDTLS_SSL_PROTO_TLS1_1 */
125#endif /* MBEDTLS_SSL_PROTO_TLS1_2 */
126
127#define MBEDTLS_SSL_INITIAL_HANDSHAKE 0
128#define MBEDTLS_SSL_RENEGOTIATION_IN_PROGRESS 1 /* In progress */
129#define MBEDTLS_SSL_RENEGOTIATION_DONE 2 /* Done or aborted */
130#define MBEDTLS_SSL_RENEGOTIATION_PENDING 3 /* Requested (server only) */
131
132/*
133 * DTLS retransmission states, see RFC 6347 4.2.4
134 *
135 * The SENDING state is merged in PREPARING for initial sends,
136 * but is distinct for resends.
137 *
138 * Note: initial state is wrong for server, but is not used anyway.
139 */
140#define MBEDTLS_SSL_RETRANS_PREPARING 0
141#define MBEDTLS_SSL_RETRANS_SENDING 1
142#define MBEDTLS_SSL_RETRANS_WAITING 2
143#define MBEDTLS_SSL_RETRANS_FINISHED 3
144
Manuel Pégourié-Gonnard757c2d52020-07-31 12:53:39 +0200145/* This macro determines whether CBC is supported. */
Manuel Pégourié-Gonnard8ebb88d2020-07-28 09:55:33 +0200146#if defined(MBEDTLS_CIPHER_MODE_CBC) && \
147 ( defined(MBEDTLS_AES_C) || \
148 defined(MBEDTLS_CAMELLIA_C) || \
149 defined(MBEDTLS_DES_C) )
150#define MBEDTLS_SSL_SOME_SUITES_USE_CBC
151#endif
152
Manuel Pégourié-Gonnard757c2d52020-07-31 12:53:39 +0200153/* This macro determines whether the CBC construct used in TLS 1.0-1.2 (as
154 * opposed to the very different CBC construct used in SSLv3) is supported. */
Manuel Pégourié-Gonnard41df0f22020-07-28 11:35:39 +0200155#if defined(MBEDTLS_SSL_SOME_SUITES_USE_CBC) && \
156 ( defined(MBEDTLS_SSL_PROTO_TLS1) || \
157 defined(MBEDTLS_SSL_PROTO_TLS1_1) || \
158 defined(MBEDTLS_SSL_PROTO_TLS1_2) )
159#define MBEDTLS_SSL_SOME_SUITES_USE_TLS_CBC
160#endif
161
Manuel Pégourié-Gonnard065122c2015-05-26 12:31:46 +0200162/*
163 * Allow extra bytes for record, authentication and encryption overhead:
164 * counter (8) + header (5) + IV(16) + MAC (16-48) + padding (0-256)
165 * and allow for a maximum of 1024 of compression expansion if
166 * enabled.
167 */
168#if defined(MBEDTLS_ZLIB_SUPPORT)
169#define MBEDTLS_SSL_COMPRESSION_ADD 1024
170#else
171#define MBEDTLS_SSL_COMPRESSION_ADD 0
172#endif
173
174#if defined(MBEDTLS_ARC4_C) || defined(MBEDTLS_CIPHER_MODE_CBC)
175/* Ciphersuites using HMAC */
176#if defined(MBEDTLS_SHA512_C)
177#define MBEDTLS_SSL_MAC_ADD 48 /* SHA-384 used for HMAC */
178#elif defined(MBEDTLS_SHA256_C)
179#define MBEDTLS_SSL_MAC_ADD 32 /* SHA-256 used for HMAC */
180#else
181#define MBEDTLS_SSL_MAC_ADD 20 /* SHA-1 used for HMAC */
182#endif
183#else
184/* AEAD ciphersuites: GCM and CCM use a 128 bits tag */
185#define MBEDTLS_SSL_MAC_ADD 16
186#endif
187
188#if defined(MBEDTLS_CIPHER_MODE_CBC)
189#define MBEDTLS_SSL_PADDING_ADD 256
190#else
191#define MBEDTLS_SSL_PADDING_ADD 0
192#endif
193
Hanno Beckera8434e82017-09-18 10:54:39 +0100194#define MBEDTLS_SSL_PAYLOAD_LEN ( MBEDTLS_SSL_MAX_CONTENT_LEN \
195 + MBEDTLS_SSL_COMPRESSION_ADD \
196 + MBEDTLS_MAX_IV_LENGTH \
197 + MBEDTLS_SSL_MAC_ADD \
198 + MBEDTLS_SSL_PADDING_ADD \
Manuel Pégourié-Gonnard065122c2015-05-26 12:31:46 +0200199 )
200
Hanno Becker20643552017-04-12 14:54:42 +0100201/* Maximum size in bytes of list in sig-hash algorithm ext., RFC 5246 */
202#define MBEDTLS_SSL_MAX_SIG_HASH_ALG_LIST_LEN 65534
203
204/* Maximum size in bytes of list in supported elliptic curve ext., RFC 4492 */
205#define MBEDTLS_SSL_MAX_CURVE_LIST_LEN 65535
206
Manuel Pégourié-Gonnard065122c2015-05-26 12:31:46 +0200207/*
Hanno Beckera8434e82017-09-18 10:54:39 +0100208 * Check that we obey the standard's message size bounds
209 */
210
211#if MBEDTLS_SSL_MAX_CONTENT_LEN > 16384
212#error Bad configuration - record content too large.
213#endif
214
215#if MBEDTLS_SSL_PAYLOAD_LEN > 16384 + 2048
216#error Bad configuration - protected record payload too large.
217#endif
218
Hanno Becker25d6d1a2017-12-07 08:22:51 +0000219/* Note: Even though the TLS record header is only 5 bytes
220 long, we're internally using 8 bytes to store the
221 implicit sequence number. */
Hanno Beckerd25d4442017-10-04 13:56:42 +0100222#define MBEDTLS_SSL_HEADER_LEN 13
Hanno Beckera8434e82017-09-18 10:54:39 +0100223
Hanno Beckerd25d4442017-10-04 13:56:42 +0100224#define MBEDTLS_SSL_BUFFER_LEN \
225 ( ( MBEDTLS_SSL_HEADER_LEN ) + ( MBEDTLS_SSL_PAYLOAD_LEN ) )
Hanno Beckera8434e82017-09-18 10:54:39 +0100226
227/*
Manuel Pégourié-Gonnard065122c2015-05-26 12:31:46 +0200228 * TLS extension flags (for extensions with outgoing ServerHello content
229 * that need it (e.g. for RENEGOTIATION_INFO the server already knows because
230 * of state of the renegotiation flag, so no indicator is required)
231 */
232#define MBEDTLS_TLS_EXT_SUPPORTED_POINT_FORMATS_PRESENT (1 << 0)
Manuel Pégourié-Gonnardbf57be62015-09-16 15:04:01 +0200233#define MBEDTLS_TLS_EXT_ECJPAKE_KKPP_OK (1 << 1)
Manuel Pégourié-Gonnard065122c2015-05-26 12:31:46 +0200234
Hanno Beckerdc7b5b92017-04-12 14:54:42 +0100235/**
236 * \brief This function checks if the remaining size in a buffer is
237 * greater or equal than a needed space.
238 *
239 * \param cur Pointer to the current position in the buffer.
240 * \param end Pointer to one past the end of the buffer.
241 * \param need Needed space in bytes.
242 *
Ronald Cron4206bd42020-06-11 09:50:51 +0200243 * \return Zero if the needed space is available in the buffer, non-zero
Hanno Beckerdc7b5b92017-04-12 14:54:42 +0100244 * otherwise.
245 */
246static inline int mbedtls_ssl_chk_buf_ptr( const uint8_t *cur,
247 const uint8_t *end, size_t need )
248{
Ronald Cron4206bd42020-06-11 09:50:51 +0200249 return( ( cur > end ) || ( need > (size_t)( end - cur ) ) );
Hanno Beckerdc7b5b92017-04-12 14:54:42 +0100250}
251
252/**
253 * \brief This macro checks if the remaining size in a buffer is
254 * greater or equal than a needed space. If it is not the case,
255 * it returns an SSL_BUFFER_TOO_SMALL error.
256 *
257 * \param cur Pointer to the current position in the buffer.
258 * \param end Pointer to one past the end of the buffer.
259 * \param need Needed space in bytes.
260 *
261 */
262#define MBEDTLS_SSL_CHK_BUF_PTR( cur, end, need ) \
263 do { \
Ronald Cron4206bd42020-06-11 09:50:51 +0200264 if( mbedtls_ssl_chk_buf_ptr( ( cur ), ( end ), ( need ) ) != 0 ) \
Hanno Beckerdc7b5b92017-04-12 14:54:42 +0100265 { \
266 return( MBEDTLS_ERR_SSL_BUFFER_TOO_SMALL ); \
267 } \
268 } while( 0 )
269
Manuel Pégourié-Gonnard5e94dde2015-05-26 11:57:05 +0200270#ifdef __cplusplus
271extern "C" {
272#endif
273
Hanno Becker7e5437a2017-04-28 17:15:26 +0100274#if defined(MBEDTLS_SSL_PROTO_TLS1_2) && \
275 defined(MBEDTLS_KEY_EXCHANGE__WITH_CERT__ENABLED)
276/*
277 * Abstraction for a grid of allowed signature-hash-algorithm pairs.
278 */
279struct mbedtls_ssl_sig_hash_set_t
280{
281 /* At the moment, we only need to remember a single suitable
282 * hash algorithm per signature algorithm. As long as that's
283 * the case - and we don't need a general lookup function -
284 * we can implement the sig-hash-set as a map from signatures
285 * to hash algorithms. */
286 mbedtls_md_type_t rsa;
287 mbedtls_md_type_t ecdsa;
288};
289#endif /* MBEDTLS_SSL_PROTO_TLS1_2 &&
290 MBEDTLS_KEY_EXCHANGE__WITH_CERT__ENABLED */
291
Manuel Pégourié-Gonnardcd4fcc62015-05-26 12:11:48 +0200292/*
293 * This structure contains the parameters only needed during handshake.
294 */
295struct mbedtls_ssl_handshake_params
296{
297 /*
298 * Handshake specific crypto variables
299 */
Hanno Becker7e5437a2017-04-28 17:15:26 +0100300
301#if defined(MBEDTLS_SSL_PROTO_TLS1_2) && \
302 defined(MBEDTLS_KEY_EXCHANGE__WITH_CERT__ENABLED)
303 mbedtls_ssl_sig_hash_set_t hash_algs; /*!< Set of suitable sig-hash pairs */
304#endif
Manuel Pégourié-Gonnardcd4fcc62015-05-26 12:11:48 +0200305#if defined(MBEDTLS_DHM_C)
306 mbedtls_dhm_context dhm_ctx; /*!< DHM key exchange */
307#endif
308#if defined(MBEDTLS_ECDH_C)
309 mbedtls_ecdh_context ecdh_ctx; /*!< ECDH key exchange */
310#endif
Manuel Pégourié-Gonnardeef142d2015-09-16 10:05:04 +0200311#if defined(MBEDTLS_KEY_EXCHANGE_ECJPAKE_ENABLED)
Manuel Pégourié-Gonnard76cfd3f2015-09-15 12:10:54 +0200312 mbedtls_ecjpake_context ecjpake_ctx; /*!< EC J-PAKE key exchange */
Manuel Pégourié-Gonnard77c06462015-09-17 13:59:49 +0200313#if defined(MBEDTLS_SSL_CLI_C)
314 unsigned char *ecjpake_cache; /*!< Cache for ClientHello ext */
315 size_t ecjpake_cache_len; /*!< Length of cached data */
316#endif
Hanno Becker1aa267c2017-04-28 17:08:27 +0100317#endif /* MBEDTLS_KEY_EXCHANGE_ECJPAKE_ENABLED */
Manuel Pégourié-Gonnardf4721792015-09-15 10:53:51 +0200318#if defined(MBEDTLS_ECDH_C) || defined(MBEDTLS_ECDSA_C) || \
Manuel Pégourié-Gonnardeef142d2015-09-16 10:05:04 +0200319 defined(MBEDTLS_KEY_EXCHANGE_ECJPAKE_ENABLED)
Manuel Pégourié-Gonnardcd4fcc62015-05-26 12:11:48 +0200320 const mbedtls_ecp_curve_info **curves; /*!< Supported elliptic curves */
321#endif
322#if defined(MBEDTLS_KEY_EXCHANGE__SOME__PSK_ENABLED)
323 unsigned char *psk; /*!< PSK from the callback */
324 size_t psk_len; /*!< Length of PSK from callback */
325#endif
326#if defined(MBEDTLS_X509_CRT_PARSE_C)
327 mbedtls_ssl_key_cert *key_cert; /*!< chosen key/cert pair (server) */
328#if defined(MBEDTLS_SSL_SERVER_NAME_INDICATION)
Manuel Pégourié-Gonnardcdc26ae2015-06-19 12:16:31 +0200329 int sni_authmode; /*!< authmode from SNI callback */
Manuel Pégourié-Gonnardcd4fcc62015-05-26 12:11:48 +0200330 mbedtls_ssl_key_cert *sni_key_cert; /*!< key/cert list from SNI */
331 mbedtls_x509_crt *sni_ca_chain; /*!< trusted CAs from SNI callback */
332 mbedtls_x509_crl *sni_ca_crl; /*!< trusted CAs CRLs from SNI */
Hanno Becker1aa267c2017-04-28 17:08:27 +0100333#endif /* MBEDTLS_SSL_SERVER_NAME_INDICATION */
Manuel Pégourié-Gonnardcd4fcc62015-05-26 12:11:48 +0200334#endif /* MBEDTLS_X509_CRT_PARSE_C */
335#if defined(MBEDTLS_SSL_PROTO_DTLS)
336 unsigned int out_msg_seq; /*!< Outgoing handshake sequence number */
337 unsigned int in_msg_seq; /*!< Incoming handshake sequence number */
338
339 unsigned char *verify_cookie; /*!< Cli: HelloVerifyRequest cookie
340 Srv: unused */
341 unsigned char verify_cookie_len; /*!< Cli: cookie length
342 Srv: flag for sending a cookie */
343
344 unsigned char *hs_msg; /*!< Reassembled handshake message */
345
346 uint32_t retransmit_timeout; /*!< Current value of timeout */
347 unsigned char retransmit_state; /*!< Retransmission state */
348 mbedtls_ssl_flight_item *flight; /*!< Current outgoing flight */
349 mbedtls_ssl_flight_item *cur_msg; /*!< Current message in flight */
350 unsigned int in_flight_start_seq; /*!< Minimum message sequence in the
351 flight being received */
352 mbedtls_ssl_transform *alt_transform_out; /*!< Alternative transform for
353 resending messages */
354 unsigned char alt_out_ctr[8]; /*!< Alternative record epoch/counter
355 for resending messages */
Hanno Becker1aa267c2017-04-28 17:08:27 +0100356#endif /* MBEDTLS_SSL_PROTO_DTLS */
Manuel Pégourié-Gonnardcd4fcc62015-05-26 12:11:48 +0200357
358 /*
359 * Checksum contexts
360 */
361#if defined(MBEDTLS_SSL_PROTO_SSL3) || defined(MBEDTLS_SSL_PROTO_TLS1) || \
362 defined(MBEDTLS_SSL_PROTO_TLS1_1)
363 mbedtls_md5_context fin_md5;
364 mbedtls_sha1_context fin_sha1;
365#endif
366#if defined(MBEDTLS_SSL_PROTO_TLS1_2)
367#if defined(MBEDTLS_SHA256_C)
368 mbedtls_sha256_context fin_sha256;
369#endif
370#if defined(MBEDTLS_SHA512_C)
371 mbedtls_sha512_context fin_sha512;
372#endif
373#endif /* MBEDTLS_SSL_PROTO_TLS1_2 */
374
375 void (*update_checksum)(mbedtls_ssl_context *, const unsigned char *, size_t);
376 void (*calc_verify)(mbedtls_ssl_context *, unsigned char *);
377 void (*calc_finished)(mbedtls_ssl_context *, unsigned char *, int);
378 int (*tls_prf)(const unsigned char *, size_t, const char *,
379 const unsigned char *, size_t,
380 unsigned char *, size_t);
381
382 size_t pmslen; /*!< premaster length */
383
384 unsigned char randbytes[64]; /*!< random bytes */
385 unsigned char premaster[MBEDTLS_PREMASTER_SIZE];
386 /*!< premaster secret */
387
388 int resume; /*!< session resume indicator*/
389 int max_major_ver; /*!< max. major version client*/
390 int max_minor_ver; /*!< max. minor version client*/
391 int cli_exts; /*!< client extension presence*/
392
393#if defined(MBEDTLS_SSL_SESSION_TICKETS)
394 int new_session_ticket; /*!< use NewSessionTicket? */
395#endif /* MBEDTLS_SSL_SESSION_TICKETS */
396#if defined(MBEDTLS_SSL_EXTENDED_MASTER_SECRET)
397 int extended_ms; /*!< use Extended Master Secret? */
398#endif
399};
400
401/*
402 * This structure contains a full set of runtime transform parameters
403 * either in negotiation or active.
404 */
405struct mbedtls_ssl_transform
406{
407 /*
408 * Session specific crypto layer
409 */
410 const mbedtls_ssl_ciphersuite_t *ciphersuite_info;
411 /*!< Chosen cipersuite_info */
Manuel Pégourié-Gonnard39a48f42015-06-18 16:06:55 +0200412 unsigned int keylen; /*!< symmetric key length (bytes) */
Manuel Pégourié-Gonnardcd4fcc62015-05-26 12:11:48 +0200413 size_t minlen; /*!< min. ciphertext length */
414 size_t ivlen; /*!< IV length */
415 size_t fixed_ivlen; /*!< Fixed part of IV (AEAD) */
416 size_t maclen; /*!< MAC length */
417
418 unsigned char iv_enc[16]; /*!< IV (encryption) */
419 unsigned char iv_dec[16]; /*!< IV (decryption) */
420
421#if defined(MBEDTLS_SSL_PROTO_SSL3)
422 /* Needed only for SSL v3.0 secret */
423 unsigned char mac_enc[20]; /*!< SSL v3.0 secret (enc) */
424 unsigned char mac_dec[20]; /*!< SSL v3.0 secret (dec) */
425#endif /* MBEDTLS_SSL_PROTO_SSL3 */
426
427 mbedtls_md_context_t md_ctx_enc; /*!< MAC (encryption) */
428 mbedtls_md_context_t md_ctx_dec; /*!< MAC (decryption) */
429
430 mbedtls_cipher_context_t cipher_ctx_enc; /*!< encryption context */
431 mbedtls_cipher_context_t cipher_ctx_dec; /*!< decryption context */
432
433 /*
434 * Session specific compression layer
435 */
436#if defined(MBEDTLS_ZLIB_SUPPORT)
437 z_stream ctx_deflate; /*!< compression context */
438 z_stream ctx_inflate; /*!< decompression context */
439#endif
440};
441
442#if defined(MBEDTLS_X509_CRT_PARSE_C)
443/*
444 * List of certificate + private key pairs
445 */
446struct mbedtls_ssl_key_cert
447{
448 mbedtls_x509_crt *cert; /*!< cert */
449 mbedtls_pk_context *key; /*!< private key */
450 mbedtls_ssl_key_cert *next; /*!< next key/cert pair */
451};
452#endif /* MBEDTLS_X509_CRT_PARSE_C */
453
454#if defined(MBEDTLS_SSL_PROTO_DTLS)
455/*
456 * List of handshake messages kept around for resending
457 */
458struct mbedtls_ssl_flight_item
459{
460 unsigned char *p; /*!< message, including handshake headers */
461 size_t len; /*!< length of p */
462 unsigned char type; /*!< type of the message: handshake or CCS */
463 mbedtls_ssl_flight_item *next; /*!< next handshake message(s) */
464};
465#endif /* MBEDTLS_SSL_PROTO_DTLS */
466
Hanno Becker7e5437a2017-04-28 17:15:26 +0100467#if defined(MBEDTLS_SSL_PROTO_TLS1_2) && \
468 defined(MBEDTLS_KEY_EXCHANGE__WITH_CERT__ENABLED)
469
470/* Find an entry in a signature-hash set matching a given hash algorithm. */
471mbedtls_md_type_t mbedtls_ssl_sig_hash_set_find( mbedtls_ssl_sig_hash_set_t *set,
472 mbedtls_pk_type_t sig_alg );
473/* Add a signature-hash-pair to a signature-hash set */
474void mbedtls_ssl_sig_hash_set_add( mbedtls_ssl_sig_hash_set_t *set,
475 mbedtls_pk_type_t sig_alg,
476 mbedtls_md_type_t md_alg );
477/* Allow exactly one hash algorithm for each signature. */
478void mbedtls_ssl_sig_hash_set_const_hash( mbedtls_ssl_sig_hash_set_t *set,
479 mbedtls_md_type_t md_alg );
480
481/* Setup an empty signature-hash set */
482static inline void mbedtls_ssl_sig_hash_set_init( mbedtls_ssl_sig_hash_set_t *set )
483{
484 mbedtls_ssl_sig_hash_set_const_hash( set, MBEDTLS_MD_NONE );
485}
486
487#endif /* MBEDTLS_SSL_PROTO_TLS1_2) &&
488 MBEDTLS_KEY_EXCHANGE__WITH_CERT__ENABLED */
Manuel Pégourié-Gonnardcd4fcc62015-05-26 12:11:48 +0200489
490/**
491 * \brief Free referenced items in an SSL transform context and clear
492 * memory
493 *
494 * \param transform SSL transform context
495 */
496void mbedtls_ssl_transform_free( mbedtls_ssl_transform *transform );
497
498/**
499 * \brief Free referenced items in an SSL handshake context and clear
500 * memory
501 *
502 * \param handshake SSL handshake context
503 */
504void mbedtls_ssl_handshake_free( mbedtls_ssl_handshake_params *handshake );
505
Manuel Pégourié-Gonnard5e94dde2015-05-26 11:57:05 +0200506int mbedtls_ssl_handshake_client_step( mbedtls_ssl_context *ssl );
507int mbedtls_ssl_handshake_server_step( mbedtls_ssl_context *ssl );
508void mbedtls_ssl_handshake_wrapup( mbedtls_ssl_context *ssl );
509
510int mbedtls_ssl_send_fatal_handshake_failure( mbedtls_ssl_context *ssl );
511
512void mbedtls_ssl_reset_checksum( mbedtls_ssl_context *ssl );
513int mbedtls_ssl_derive_keys( mbedtls_ssl_context *ssl );
514
Simon Butcher99000142016-10-13 17:21:01 +0100515int mbedtls_ssl_read_record_layer( mbedtls_ssl_context *ssl );
516int mbedtls_ssl_handle_message_type( mbedtls_ssl_context *ssl );
517int mbedtls_ssl_prepare_handshake_record( mbedtls_ssl_context *ssl );
518void mbedtls_ssl_update_handshake_status( mbedtls_ssl_context *ssl );
519
Hanno Becker4a810fb2017-05-24 16:27:30 +0100520/**
521 * \brief Update record layer
522 *
523 * This function roughly separates the implementation
524 * of the logic of (D)TLS from the implementation
525 * of the secure transport.
526 *
527 * \param ssl SSL context to use
528 *
529 * \return 0 or non-zero error code.
530 *
531 * \note A clarification on what is called 'record layer' here
532 * is in order, as many sensible definitions are possible:
533 *
534 * The record layer takes as input an untrusted underlying
535 * transport (stream or datagram) and transforms it into
536 * a serially multiplexed, secure transport, which
537 * conceptually provides the following:
538 *
539 * (1) Three datagram based, content-agnostic transports
540 * for handshake, alert and CCS messages.
541 * (2) One stream- or datagram-based transport
542 * for application data.
543 * (3) Functionality for changing the underlying transform
544 * securing the contents.
545 *
546 * The interface to this functionality is given as follows:
547 *
548 * a Updating
549 * [Currently implemented by mbedtls_ssl_read_record]
550 *
551 * Check if and on which of the four 'ports' data is pending:
552 * Nothing, a controlling datagram of type (1), or application
553 * data (2). In any case data is present, internal buffers
554 * provide access to the data for the user to process it.
555 * Consumption of type (1) datagrams is done automatically
556 * on the next update, invalidating that the internal buffers
557 * for previous datagrams, while consumption of application
558 * data (2) is user-controlled.
559 *
560 * b Reading of application data
561 * [Currently manual adaption of ssl->in_offt pointer]
562 *
563 * As mentioned in the last paragraph, consumption of data
564 * is different from the automatic consumption of control
565 * datagrams (1) because application data is treated as a stream.
566 *
567 * c Tracking availability of application data
568 * [Currently manually through decreasing ssl->in_msglen]
569 *
570 * For efficiency and to retain datagram semantics for
571 * application data in case of DTLS, the record layer
572 * provides functionality for checking how much application
573 * data is still available in the internal buffer.
574 *
575 * d Changing the transformation securing the communication.
576 *
577 * Given an opaque implementation of the record layer in the
578 * above sense, it should be possible to implement the logic
579 * of (D)TLS on top of it without the need to know anything
580 * about the record layer's internals. This is done e.g.
581 * in all the handshake handling functions, and in the
582 * application data reading function mbedtls_ssl_read.
583 *
584 * \note The above tries to give a conceptual picture of the
585 * record layer, but the current implementation deviates
586 * from it in some places. For example, our implementation of
587 * the update functionality through mbedtls_ssl_read_record
588 * discards datagrams depending on the current state, which
589 * wouldn't fall under the record layer's responsibility
590 * following the above definition.
591 *
592 */
Manuel Pégourié-Gonnard5e94dde2015-05-26 11:57:05 +0200593int mbedtls_ssl_read_record( mbedtls_ssl_context *ssl );
594int mbedtls_ssl_fetch_input( mbedtls_ssl_context *ssl, size_t nb_want );
595
596int mbedtls_ssl_write_record( mbedtls_ssl_context *ssl );
597int mbedtls_ssl_flush_output( mbedtls_ssl_context *ssl );
598
599int mbedtls_ssl_parse_certificate( mbedtls_ssl_context *ssl );
600int mbedtls_ssl_write_certificate( mbedtls_ssl_context *ssl );
601
602int mbedtls_ssl_parse_change_cipher_spec( mbedtls_ssl_context *ssl );
603int mbedtls_ssl_write_change_cipher_spec( mbedtls_ssl_context *ssl );
604
605int mbedtls_ssl_parse_finished( mbedtls_ssl_context *ssl );
606int mbedtls_ssl_write_finished( mbedtls_ssl_context *ssl );
607
608void mbedtls_ssl_optimize_checksum( mbedtls_ssl_context *ssl,
609 const mbedtls_ssl_ciphersuite_t *ciphersuite_info );
610
611#if defined(MBEDTLS_KEY_EXCHANGE__SOME__PSK_ENABLED)
612int mbedtls_ssl_psk_derive_premaster( mbedtls_ssl_context *ssl, mbedtls_key_exchange_type_t key_ex );
613#endif
614
615#if defined(MBEDTLS_PK_C)
616unsigned char mbedtls_ssl_sig_from_pk( mbedtls_pk_context *pk );
Hanno Becker7e5437a2017-04-28 17:15:26 +0100617unsigned char mbedtls_ssl_sig_from_pk_alg( mbedtls_pk_type_t type );
Manuel Pégourié-Gonnard5e94dde2015-05-26 11:57:05 +0200618mbedtls_pk_type_t mbedtls_ssl_pk_alg_from_sig( unsigned char sig );
619#endif
620
621mbedtls_md_type_t mbedtls_ssl_md_alg_from_hash( unsigned char hash );
Manuel Pégourié-Gonnard7bfc1222015-06-17 14:34:48 +0200622unsigned char mbedtls_ssl_hash_from_md_alg( int md );
Simon Butcher99000142016-10-13 17:21:01 +0100623int mbedtls_ssl_set_calc_verify_md( mbedtls_ssl_context *ssl, int md );
Manuel Pégourié-Gonnard5e94dde2015-05-26 11:57:05 +0200624
Manuel Pégourié-Gonnardb541da62015-06-17 11:43:30 +0200625#if defined(MBEDTLS_ECP_C)
Manuel Pégourié-Gonnard9d412d82015-06-17 12:10:46 +0200626int mbedtls_ssl_check_curve( const mbedtls_ssl_context *ssl, mbedtls_ecp_group_id grp_id );
Manuel Pégourié-Gonnard5e94dde2015-05-26 11:57:05 +0200627#endif
628
Manuel Pégourié-Gonnarde5f30722015-10-22 17:01:15 +0200629#if defined(MBEDTLS_KEY_EXCHANGE__WITH_CERT__ENABLED)
Manuel Pégourié-Gonnard7bfc1222015-06-17 14:34:48 +0200630int mbedtls_ssl_check_sig_hash( const mbedtls_ssl_context *ssl,
631 mbedtls_md_type_t md );
632#endif
633
Manuel Pégourié-Gonnard5e94dde2015-05-26 11:57:05 +0200634#if defined(MBEDTLS_X509_CRT_PARSE_C)
635static inline mbedtls_pk_context *mbedtls_ssl_own_key( mbedtls_ssl_context *ssl )
636{
637 mbedtls_ssl_key_cert *key_cert;
638
639 if( ssl->handshake != NULL && ssl->handshake->key_cert != NULL )
640 key_cert = ssl->handshake->key_cert;
641 else
642 key_cert = ssl->conf->key_cert;
643
644 return( key_cert == NULL ? NULL : key_cert->key );
645}
646
647static inline mbedtls_x509_crt *mbedtls_ssl_own_cert( mbedtls_ssl_context *ssl )
648{
649 mbedtls_ssl_key_cert *key_cert;
650
651 if( ssl->handshake != NULL && ssl->handshake->key_cert != NULL )
652 key_cert = ssl->handshake->key_cert;
653 else
654 key_cert = ssl->conf->key_cert;
655
656 return( key_cert == NULL ? NULL : key_cert->cert );
657}
658
659/*
660 * Check usage of a certificate wrt extensions:
661 * keyUsage, extendedKeyUsage (later), and nSCertType (later).
662 *
663 * Warning: cert_endpoint is the endpoint of the cert (ie, of our peer when we
664 * check a cert we received from them)!
665 *
666 * Return 0 if everything is OK, -1 if not.
667 */
668int mbedtls_ssl_check_cert_usage( const mbedtls_x509_crt *cert,
669 const mbedtls_ssl_ciphersuite_t *ciphersuite,
670 int cert_endpoint,
671 uint32_t *flags );
672#endif /* MBEDTLS_X509_CRT_PARSE_C */
673
674void mbedtls_ssl_write_version( int major, int minor, int transport,
675 unsigned char ver[2] );
676void mbedtls_ssl_read_version( int *major, int *minor, int transport,
677 const unsigned char ver[2] );
678
679static inline size_t mbedtls_ssl_hdr_len( const mbedtls_ssl_context *ssl )
680{
681#if defined(MBEDTLS_SSL_PROTO_DTLS)
682 if( ssl->conf->transport == MBEDTLS_SSL_TRANSPORT_DATAGRAM )
683 return( 13 );
684#else
685 ((void) ssl);
686#endif
687 return( 5 );
688}
689
690static inline size_t mbedtls_ssl_hs_hdr_len( const mbedtls_ssl_context *ssl )
691{
692#if defined(MBEDTLS_SSL_PROTO_DTLS)
693 if( ssl->conf->transport == MBEDTLS_SSL_TRANSPORT_DATAGRAM )
694 return( 12 );
695#else
696 ((void) ssl);
697#endif
698 return( 4 );
699}
700
701#if defined(MBEDTLS_SSL_PROTO_DTLS)
702void mbedtls_ssl_send_flight_completed( mbedtls_ssl_context *ssl );
703void mbedtls_ssl_recv_flight_completed( mbedtls_ssl_context *ssl );
704int mbedtls_ssl_resend( mbedtls_ssl_context *ssl );
705#endif
706
707/* Visible for testing purposes only */
708#if defined(MBEDTLS_SSL_DTLS_ANTI_REPLAY)
709int mbedtls_ssl_dtls_replay_check( mbedtls_ssl_context *ssl );
710void mbedtls_ssl_dtls_replay_update( mbedtls_ssl_context *ssl );
711#endif
712
713/* constant-time buffer comparison */
714static inline int mbedtls_ssl_safer_memcmp( const void *a, const void *b, size_t n )
715{
716 size_t i;
Hanno Becker59e69632017-06-26 13:26:58 +0100717 volatile const unsigned char *A = (volatile const unsigned char *) a;
718 volatile const unsigned char *B = (volatile const unsigned char *) b;
719 volatile unsigned char diff = 0;
Manuel Pégourié-Gonnard5e94dde2015-05-26 11:57:05 +0200720
721 for( i = 0; i < n; i++ )
Azim Khan826cdab2018-05-23 16:55:16 +0100722 {
723 /* Read volatile data in order before computing diff.
724 * This avoids IAR compiler warning:
725 * 'the order of volatile accesses is undefined ..' */
726 unsigned char x = A[i], y = B[i];
727 diff |= x ^ y;
728 }
Manuel Pégourié-Gonnard5e94dde2015-05-26 11:57:05 +0200729
730 return( diff );
731}
732
Andres Amaya Garcia46f5a3e2017-07-20 16:17:51 +0100733#if defined(MBEDTLS_SSL_PROTO_SSL3) || defined(MBEDTLS_SSL_PROTO_TLS1) || \
734 defined(MBEDTLS_SSL_PROTO_TLS1_1)
735int mbedtls_ssl_get_key_exchange_md_ssl_tls( mbedtls_ssl_context *ssl,
736 unsigned char *output,
737 unsigned char *data, size_t data_len );
738#endif /* MBEDTLS_SSL_PROTO_SSL3 || MBEDTLS_SSL_PROTO_TLS1 || \
739 MBEDTLS_SSL_PROTO_TLS1_1 */
740
741#if defined(MBEDTLS_SSL_PROTO_TLS1) || defined(MBEDTLS_SSL_PROTO_TLS1_1) || \
742 defined(MBEDTLS_SSL_PROTO_TLS1_2)
743int mbedtls_ssl_get_key_exchange_md_tls1_2( mbedtls_ssl_context *ssl,
744 unsigned char *output,
745 unsigned char *data, size_t data_len,
746 mbedtls_md_type_t md_alg );
747#endif /* MBEDTLS_SSL_PROTO_TLS1 || MBEDTLS_SSL_PROTO_TLS1_1 || \
748 MBEDTLS_SSL_PROTO_TLS1_2 */
749
Manuel Pégourié-Gonnard41df0f22020-07-28 11:35:39 +0200750#if defined(MBEDTLS_SSL_SOME_SUITES_USE_TLS_CBC)
Manuel Pégourié-Gonnard3ba2bca2020-07-28 10:19:45 +0200751/** \brief Compute the HMAC of variable-length data with constant flow.
752 *
753 * This function computes the HMAC of the concatenation of \p add_data and \p
754 * data, and does with a code flow and memory access pattern that does not
755 * depend on \p data_len_secret, but only on \p min_data_len and \p
756 * max_data_len. In particular, this function always reads exactly \p
757 * max_data_len bytes from \p data.
758 *
759 * \param ctx The HMAC context. It must have keys configured
Manuel Pégourié-Gonnardec956b12020-07-28 11:42:31 +0200760 * with mbedtls_md_hmac_starts() and use one of the
761 * following hashes: SHA-384, SHA-256, SHA-1 or MD-5.
762 * It is reset using mbedtls_md_hmac_reset() after
763 * the computation is complete to prepare for the
764 * next computation.
Manuel Pégourié-Gonnard3ba2bca2020-07-28 10:19:45 +0200765 * \param add_data The additional data prepended to \p data. This
766 * must point to a readable buffer of \p add_data_len
767 * bytes.
768 * \param add_data_len The length of \p add_data in bytes.
769 * \param data The data appended to \p add_data. This must point
770 * to a readable buffer of \p max_data_len bytes.
771 * \param data_len_secret The length of the data to process in \p data.
772 * This must be no less than \p min_data_len and no
Manuel Pégourié-Gonnard28101102020-07-28 11:54:35 +0200773 * greater than \p max_data_len.
Manuel Pégourié-Gonnard3ba2bca2020-07-28 10:19:45 +0200774 * \param min_data_len The minimal length of \p data in bytes.
775 * \param max_data_len The maximal length of \p data in bytes.
776 * \param output The HMAC will be written here. This must point to
Manuel Pégourié-Gonnard28101102020-07-28 11:54:35 +0200777 * a writable buffer of sufficient size to hold the
Manuel Pégourié-Gonnard3ba2bca2020-07-28 10:19:45 +0200778 * HMAC value.
779 *
780 * \retval 0
781 * Success.
782 * \retval non-zero
783 * Failure.
784 */
785int mbedtls_ssl_cf_hmac(
786 mbedtls_md_context_t *ctx,
787 const unsigned char *add_data, size_t add_data_len,
788 const unsigned char *data, size_t data_len_secret,
789 size_t min_data_len, size_t max_data_len,
790 unsigned char *output );
Manuel Pégourié-Gonnard41df0f22020-07-28 11:35:39 +0200791#endif /* MBEDTLS_SSL_SOME_SUITES_USE_TLS_CBC */
Manuel Pégourié-Gonnard3ba2bca2020-07-28 10:19:45 +0200792
Manuel Pégourié-Gonnard5e94dde2015-05-26 11:57:05 +0200793#ifdef __cplusplus
794}
795#endif
796
797#endif /* ssl_internal.h */