blob: a7b9478db10824d5f2ee1d3d34c13a6745d4de20 [file] [log] [blame]
Paul Bakker5121ce52009-01-03 21:22:43 +00001/**
2 * \file ssl.h
Paul Bakkere0ccd0a2009-01-04 16:27:10 +00003 *
Paul Bakker37ca75d2011-01-06 12:28:03 +00004 * \brief SSL/TLS functions.
Darryl Greena40a1012018-01-05 15:33:17 +00005 */
6/*
Manuel Pégourié-Gonnard6fb81872015-07-27 11:11:48 +02007 * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
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.
Paul Bakkerb96f1542010-07-18 20:36:00 +000021 *
Manuel Pégourié-Gonnardfe446432015-03-06 13:17:10 +000022 * This file is part of mbed TLS (https://tls.mbed.org)
Paul Bakker5121ce52009-01-03 21:22:43 +000023 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020024#ifndef MBEDTLS_SSL_H
25#define MBEDTLS_SSL_H
Paul Bakker5121ce52009-01-03 21:22:43 +000026
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020027#if !defined(MBEDTLS_CONFIG_FILE)
Paul Bakkered27a042013-04-18 22:46:23 +020028#include "config.h"
Manuel Pégourié-Gonnardcef4ad22014-04-29 12:39:06 +020029#else
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020030#include MBEDTLS_CONFIG_FILE
Manuel Pégourié-Gonnardcef4ad22014-04-29 12:39:06 +020031#endif
Manuel Pégourié-Gonnard03717042014-11-04 19:52:10 +010032
Paul Bakkered27a042013-04-18 22:46:23 +020033#include "bignum.h"
34
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020035#if defined(MBEDTLS_X509_CRT_PARSE_C)
Paul Bakker7c6b2c32013-09-16 13:49:26 +020036#include "x509_crt.h"
Paul Bakker7c6b2c32013-09-16 13:49:26 +020037#include "x509_crl.h"
Manuel Pégourié-Gonnard834ea852013-09-23 14:46:13 +020038#endif
Paul Bakkered27a042013-04-18 22:46:23 +020039
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020040#if defined(MBEDTLS_DHM_C)
Paul Bakker48916f92012-09-16 19:57:18 +000041#include "dhm.h"
42#endif
43
Hanno Becker82a7a212019-09-03 08:41:38 +010044#if defined(MBEDTLS_ECP_C)
Hanno Becker6cf97b72019-08-23 14:49:48 +010045#include "ecp.h"
Paul Bakker41c83d32013-03-20 14:39:14 +010046#endif
47
Hanno Becker728a38b2019-08-23 14:52:22 +010048#if defined(MBEDTLS_USE_TINYCRYPT)
49#include "tinycrypt/ecc.h"
50#endif
51
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020052#if defined(MBEDTLS_ZLIB_SUPPORT)
Hanno Beckere494e202018-03-08 13:26:12 +000053
54#if defined(MBEDTLS_DEPRECATED_WARNING)
55#warning "Record compression support via MBEDTLS_ZLIB_SUPPORT is deprecated and will be removed in the next major revision of the library"
56#endif
57
58#if defined(MBEDTLS_DEPRECATED_REMOVED)
59#error "Record compression support via MBEDTLS_ZLIB_SUPPORT is deprecated and cannot be used if MBEDTLS_DEPRECATED_REMOVED is set"
60#endif
61
Paul Bakker2770fbd2012-07-03 13:30:23 +000062#include "zlib.h"
63#endif
64
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020065#if defined(MBEDTLS_HAVE_TIME)
Ron Eldor6fd941f2017-05-14 16:17:33 +030066#include "platform_time.h"
Paul Bakkerfa9b1002013-07-03 15:31:03 +020067#endif
68
Hanno Becker381eaa52019-06-12 14:43:01 +010069#if defined(MBEDTLS_SSL_CONF_MAX_MAJOR_VER) && \
70 defined(MBEDTLS_SSL_CONF_MIN_MAJOR_VER) && \
71 ( MBEDTLS_SSL_CONF_MAX_MAJOR_VER == MBEDTLS_SSL_CONF_MIN_MAJOR_VER )
72#define MBEDTLS_SSL_CONF_FIXED_MAJOR_VER MBEDTLS_SSL_CONF_MIN_MAJOR_VER
73#endif
74
75#if defined(MBEDTLS_SSL_CONF_MAX_MINOR_VER) && \
76 defined(MBEDTLS_SSL_CONF_MIN_MINOR_VER) && \
77 ( MBEDTLS_SSL_CONF_MAX_MINOR_VER == MBEDTLS_SSL_CONF_MIN_MINOR_VER )
78#define MBEDTLS_SSL_CONF_FIXED_MINOR_VER MBEDTLS_SSL_CONF_MIN_MINOR_VER
79#endif
80
Paul Bakker13e2dfe2009-07-28 07:18:38 +000081/*
82 * SSL Error codes
83 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020084#define MBEDTLS_ERR_SSL_FEATURE_UNAVAILABLE -0x7080 /**< The requested feature is not available. */
85#define MBEDTLS_ERR_SSL_BAD_INPUT_DATA -0x7100 /**< Bad input parameters to function. */
86#define MBEDTLS_ERR_SSL_INVALID_MAC -0x7180 /**< Verification of the message MAC failed. */
87#define MBEDTLS_ERR_SSL_INVALID_RECORD -0x7200 /**< An invalid SSL record was received. */
88#define MBEDTLS_ERR_SSL_CONN_EOF -0x7280 /**< The connection indicated an EOF. */
89#define MBEDTLS_ERR_SSL_UNKNOWN_CIPHER -0x7300 /**< An unknown cipher was received. */
90#define MBEDTLS_ERR_SSL_NO_CIPHER_CHOSEN -0x7380 /**< The server has no ciphersuites in common with the client. */
91#define MBEDTLS_ERR_SSL_NO_RNG -0x7400 /**< No RNG was provided to the SSL module. */
92#define MBEDTLS_ERR_SSL_NO_CLIENT_CERTIFICATE -0x7480 /**< No client certification received from the client, but required by the authentication mode. */
93#define MBEDTLS_ERR_SSL_CERTIFICATE_TOO_LARGE -0x7500 /**< Our own certificate(s) is/are too large to send in an SSL message. */
94#define MBEDTLS_ERR_SSL_CERTIFICATE_REQUIRED -0x7580 /**< The own certificate is not set, but needed by the server. */
95#define MBEDTLS_ERR_SSL_PRIVATE_KEY_REQUIRED -0x7600 /**< The own private key or pre-shared key is not set, but needed. */
96#define MBEDTLS_ERR_SSL_CA_CHAIN_REQUIRED -0x7680 /**< No CA Chain is set, but required to operate. */
97#define MBEDTLS_ERR_SSL_UNEXPECTED_MESSAGE -0x7700 /**< An unexpected message was received from our peer. */
98#define MBEDTLS_ERR_SSL_FATAL_ALERT_MESSAGE -0x7780 /**< A fatal alert message was received from our peer. */
99#define MBEDTLS_ERR_SSL_PEER_VERIFY_FAILED -0x7800 /**< Verification of our peer failed. */
100#define MBEDTLS_ERR_SSL_PEER_CLOSE_NOTIFY -0x7880 /**< The peer notified us that the connection is going to be closed. */
101#define MBEDTLS_ERR_SSL_BAD_HS_CLIENT_HELLO -0x7900 /**< Processing of the ClientHello handshake message failed. */
102#define MBEDTLS_ERR_SSL_BAD_HS_SERVER_HELLO -0x7980 /**< Processing of the ServerHello handshake message failed. */
103#define MBEDTLS_ERR_SSL_BAD_HS_CERTIFICATE -0x7A00 /**< Processing of the Certificate handshake message failed. */
104#define MBEDTLS_ERR_SSL_BAD_HS_CERTIFICATE_REQUEST -0x7A80 /**< Processing of the CertificateRequest handshake message failed. */
105#define MBEDTLS_ERR_SSL_BAD_HS_SERVER_KEY_EXCHANGE -0x7B00 /**< Processing of the ServerKeyExchange handshake message failed. */
106#define MBEDTLS_ERR_SSL_BAD_HS_SERVER_HELLO_DONE -0x7B80 /**< Processing of the ServerHelloDone handshake message failed. */
107#define MBEDTLS_ERR_SSL_BAD_HS_CLIENT_KEY_EXCHANGE -0x7C00 /**< Processing of the ClientKeyExchange handshake message failed. */
108#define MBEDTLS_ERR_SSL_BAD_HS_CLIENT_KEY_EXCHANGE_RP -0x7C80 /**< Processing of the ClientKeyExchange handshake message failed in DHM / ECDH Read Public. */
109#define MBEDTLS_ERR_SSL_BAD_HS_CLIENT_KEY_EXCHANGE_CS -0x7D00 /**< Processing of the ClientKeyExchange handshake message failed in DHM / ECDH Calculate Secret. */
110#define MBEDTLS_ERR_SSL_BAD_HS_CERTIFICATE_VERIFY -0x7D80 /**< Processing of the CertificateVerify handshake message failed. */
111#define MBEDTLS_ERR_SSL_BAD_HS_CHANGE_CIPHER_SPEC -0x7E00 /**< Processing of the ChangeCipherSpec handshake message failed. */
112#define MBEDTLS_ERR_SSL_BAD_HS_FINISHED -0x7E80 /**< Processing of the Finished handshake message failed. */
Manuel Pégourié-Gonnard6a8ca332015-05-28 09:33:39 +0200113#define MBEDTLS_ERR_SSL_ALLOC_FAILED -0x7F00 /**< Memory allocation failed */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200114#define MBEDTLS_ERR_SSL_HW_ACCEL_FAILED -0x7F80 /**< Hardware acceleration function returned with error */
115#define MBEDTLS_ERR_SSL_HW_ACCEL_FALLTHROUGH -0x6F80 /**< Hardware acceleration function skipped / left alone data */
116#define MBEDTLS_ERR_SSL_COMPRESSION_FAILED -0x6F00 /**< Processing of the compression / decompression failed */
117#define MBEDTLS_ERR_SSL_BAD_HS_PROTOCOL_VERSION -0x6E80 /**< Handshake protocol not within min/max boundaries */
118#define MBEDTLS_ERR_SSL_BAD_HS_NEW_SESSION_TICKET -0x6E00 /**< Processing of the NewSessionTicket handshake message failed. */
119#define MBEDTLS_ERR_SSL_SESSION_TICKET_EXPIRED -0x6D80 /**< Session ticket has expired. */
120#define MBEDTLS_ERR_SSL_PK_TYPE_MISMATCH -0x6D00 /**< Public key type mismatch (eg, asked for RSA key exchange and presented EC key) */
121#define MBEDTLS_ERR_SSL_UNKNOWN_IDENTITY -0x6C80 /**< Unknown identity received (eg, PSK identity) */
122#define MBEDTLS_ERR_SSL_INTERNAL_ERROR -0x6C00 /**< Internal error (eg, unexpected failure in lower-level module) */
123#define MBEDTLS_ERR_SSL_COUNTER_WRAPPING -0x6B80 /**< A counter would wrap (eg, too many messages exchanged). */
124#define MBEDTLS_ERR_SSL_WAITING_SERVER_HELLO_RENEGO -0x6B00 /**< Unexpected message at ServerHello in renegotiation. */
125#define MBEDTLS_ERR_SSL_HELLO_VERIFY_REQUIRED -0x6A80 /**< DTLS client must retry for hello verification */
126#define MBEDTLS_ERR_SSL_BUFFER_TOO_SMALL -0x6A00 /**< A buffer is too small to receive or write a message */
127#define MBEDTLS_ERR_SSL_NO_USABLE_CIPHERSUITE -0x6980 /**< None of the common ciphersuites is usable (eg, no suitable certificate, see debug messages). */
Jarno Lamsa5aa4c072019-12-20 12:42:49 +0200128/*
129 * MBEDTLS_ERR_SSL_WANT_READ and MBEDTLS_ERR_SSL_WANT_WRITE are dismissable errors,
130 * therefore the hamming distance to other non-dismissable errors should be
131 * large to prevent bit-flipping a non-dismissable error to dismissable.
132 */
Jarno Lamsa9e8e8202019-12-11 13:51:11 +0200133#define MBEDTLS_ERR_SSL_WANT_READ -0xFF6900 /**< No data of requested type currently available on underlying transport. */
134#define MBEDTLS_ERR_SSL_WANT_WRITE -0xFF6880 /**< Connection requires a write call. */
Manuel Pégourié-Gonnard88369942015-05-06 16:19:31 +0100135#define MBEDTLS_ERR_SSL_TIMEOUT -0x6800 /**< The operation timed out. */
Manuel Pégourié-Gonnardbe619c12015-09-08 11:21:21 +0200136#define MBEDTLS_ERR_SSL_CLIENT_RECONNECT -0x6780 /**< The client initiated a reconnect from the same port. */
Manuel Pégourié-Gonnarde2e25e72015-12-03 16:13:17 +0100137#define MBEDTLS_ERR_SSL_UNEXPECTED_RECORD -0x6700 /**< Record header looks valid but is not expected. */
Simon Butcher99000142016-10-13 17:21:01 +0100138#define MBEDTLS_ERR_SSL_NON_FATAL -0x6680 /**< The alert message received indicates a non-fatal error. */
139#define MBEDTLS_ERR_SSL_INVALID_VERIFY_HASH -0x6600 /**< Couldn't set the hash for verifying CertificateVerify */
Hanno Becker8ec81022017-10-10 10:35:08 +0100140#define MBEDTLS_ERR_SSL_CONTINUE_PROCESSING -0x6580 /**< Internal-only message signaling that further message-processing should be done */
Gilles Peskineb44692f2018-04-24 12:18:19 +0200141#define MBEDTLS_ERR_SSL_ASYNC_IN_PROGRESS -0x6500 /**< The asynchronous operation is not completed yet. */
Hanno Becker40f50842018-08-15 14:48:01 +0100142#define MBEDTLS_ERR_SSL_EARLY_MESSAGE -0x6480 /**< Internal-only message signaling that a message arrived early. */
Hanno Becker7c3cdb62019-05-14 11:02:36 +0100143#define MBEDTLS_ERR_SSL_UNEXPECTED_CID -0x6000 /**< An encrypted DTLS-frame with an unexpected CID was received. */
Hanno Becker5dbcc9f2019-06-03 12:58:39 +0100144#define MBEDTLS_ERR_SSL_VERSION_MISMATCH -0x5F00 /**< An operation failed due to an unexpected version or configuration. */
Manuel Pégourié-Gonnard125af942018-09-11 11:08:12 +0200145#define MBEDTLS_ERR_SSL_CRYPTO_IN_PROGRESS -0x7000 /**< A cryptographic operation is in progress. Try again later. */
Paul Bakker5121ce52009-01-03 21:22:43 +0000146
147/*
148 * Various constants
149 */
Hanno Beckerd5cfe6f2019-07-26 11:59:45 +0100150#if !defined(MBEDTLS_SSL_PROTO_NO_TLS)
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200151#define MBEDTLS_SSL_MAJOR_VERSION_3 3
152#define MBEDTLS_SSL_MINOR_VERSION_0 0 /*!< SSL v3.0 */
153#define MBEDTLS_SSL_MINOR_VERSION_1 1 /*!< TLS v1.0 */
154#define MBEDTLS_SSL_MINOR_VERSION_2 2 /*!< TLS v1.1 */
155#define MBEDTLS_SSL_MINOR_VERSION_3 3 /*!< TLS v1.2 */
Hanno Beckerd5cfe6f2019-07-26 11:59:45 +0100156#else /* MBEDTLS_SSL_PROTO_NO_TLS */
157#define MBEDTLS_SSL_MAJOR_VERSION_3 254
158#define MBEDTLS_SSL_MINOR_VERSION_0 257 /*!< unused */
159#define MBEDTLS_SSL_MINOR_VERSION_1 256 /*!< unused */
160#define MBEDTLS_SSL_MINOR_VERSION_2 255 /*!< DTLS v1.0 */
161#define MBEDTLS_SSL_MINOR_VERSION_3 253 /*!< DTLS v1.2 */
162#endif /* MBEDTLS_SSL_PROTO_NO_TLS */
Paul Bakker5121ce52009-01-03 21:22:43 +0000163
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200164#define MBEDTLS_SSL_TRANSPORT_STREAM 0 /*!< TLS */
165#define MBEDTLS_SSL_TRANSPORT_DATAGRAM 1 /*!< DTLS */
Manuel Pégourié-Gonnard0b1ff292014-02-06 13:04:16 +0100166
Simon Butcher9f812312015-09-28 19:22:33 +0100167#define MBEDTLS_SSL_MAX_HOST_NAME_LEN 255 /*!< Maximum host name defined in RFC 1035 */
Simon Butcher89f77622015-09-27 22:50:49 +0100168
Manuel Pégourié-Gonnard581e6b62013-07-18 12:32:27 +0200169/* RFC 6066 section 4, see also mfl_code_to_length in ssl_tls.c
Manuel Pégourié-Gonnarde048b672013-07-19 12:47:00 +0200170 * NONE must be zero so that memset()ing structure to zero works */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200171#define MBEDTLS_SSL_MAX_FRAG_LEN_NONE 0 /*!< don't use this extension */
172#define MBEDTLS_SSL_MAX_FRAG_LEN_512 1 /*!< MaxFragmentLength 2^9 */
173#define MBEDTLS_SSL_MAX_FRAG_LEN_1024 2 /*!< MaxFragmentLength 2^10 */
174#define MBEDTLS_SSL_MAX_FRAG_LEN_2048 3 /*!< MaxFragmentLength 2^11 */
175#define MBEDTLS_SSL_MAX_FRAG_LEN_4096 4 /*!< MaxFragmentLength 2^12 */
176#define MBEDTLS_SSL_MAX_FRAG_LEN_INVALID 5 /*!< first invalid value */
Manuel Pégourié-Gonnard8b464592013-07-16 12:45:26 +0200177
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200178#define MBEDTLS_SSL_IS_CLIENT 0
179#define MBEDTLS_SSL_IS_SERVER 1
Manuel Pégourié-Gonnard55e4ff22014-08-19 11:16:35 +0200180
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200181#define MBEDTLS_SSL_IS_NOT_FALLBACK 0
182#define MBEDTLS_SSL_IS_FALLBACK 1
Manuel Pégourié-Gonnard1cbd39d2014-10-20 13:34:59 +0200183
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200184#define MBEDTLS_SSL_EXTENDED_MS_DISABLED 0
185#define MBEDTLS_SSL_EXTENDED_MS_ENABLED 1
Manuel Pégourié-Gonnard367381f2014-10-20 18:40:56 +0200186
Jarno Lamsad9382f82019-06-10 10:27:14 +0300187#define MBEDTLS_SSL_EXTENDED_MS_ENFORCE_DISABLED 0
188#define MBEDTLS_SSL_EXTENDED_MS_ENFORCE_ENABLED 1
189
Hanno Becker6198af32019-04-09 15:12:56 +0100190#define MBEDTLS_SSL_CID_DISABLED 0
191#define MBEDTLS_SSL_CID_ENABLED 1
192
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200193#define MBEDTLS_SSL_ETM_DISABLED 0
194#define MBEDTLS_SSL_ETM_ENABLED 1
Manuel Pégourié-Gonnard699cafa2014-10-27 13:57:03 +0100195
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200196#define MBEDTLS_SSL_COMPRESS_NULL 0
197#define MBEDTLS_SSL_COMPRESS_DEFLATE 1
Paul Bakker5121ce52009-01-03 21:22:43 +0000198
Jarno Lamsa616fbe12019-12-19 16:00:31 +0200199#define MBEDTLS_SSL_VERIFY_NONE 0x0
200#define MBEDTLS_SSL_VERIFY_OPTIONAL 0xf
201#define MBEDTLS_SSL_VERIFY_REQUIRED 0x33
202#define MBEDTLS_SSL_VERIFY_UNSET 0x3c /* Used only for sni_authmode */
Paul Bakker5121ce52009-01-03 21:22:43 +0000203
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200204#define MBEDTLS_SSL_LEGACY_RENEGOTIATION 0
205#define MBEDTLS_SSL_SECURE_RENEGOTIATION 1
Paul Bakker48916f92012-09-16 19:57:18 +0000206
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200207#define MBEDTLS_SSL_RENEGOTIATION_DISABLED 0
208#define MBEDTLS_SSL_RENEGOTIATION_ENABLED 1
Paul Bakker48916f92012-09-16 19:57:18 +0000209
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200210#define MBEDTLS_SSL_ANTI_REPLAY_DISABLED 0
211#define MBEDTLS_SSL_ANTI_REPLAY_ENABLED 1
Manuel Pégourié-Gonnard27393132014-09-24 14:41:11 +0200212
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200213#define MBEDTLS_SSL_RENEGOTIATION_NOT_ENFORCED -1
214#define MBEDTLS_SSL_RENEGO_MAX_RECORDS_DEFAULT 16
Manuel Pégourié-Gonnarda9964db2014-07-03 19:29:16 +0200215
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200216#define MBEDTLS_SSL_LEGACY_NO_RENEGOTIATION 0
217#define MBEDTLS_SSL_LEGACY_ALLOW_RENEGOTIATION 1
218#define MBEDTLS_SSL_LEGACY_BREAK_HANDSHAKE 2
Paul Bakker48916f92012-09-16 19:57:18 +0000219
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200220#define MBEDTLS_SSL_TRUNC_HMAC_DISABLED 0
221#define MBEDTLS_SSL_TRUNC_HMAC_ENABLED 1
222#define MBEDTLS_SSL_TRUNCATED_HMAC_LEN 10 /* 80 bits, rfc 6066 section 7 */
Manuel Pégourié-Gonnarde980a992013-07-19 11:08:52 +0200223
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200224#define MBEDTLS_SSL_SESSION_TICKETS_DISABLED 0
225#define MBEDTLS_SSL_SESSION_TICKETS_ENABLED 1
Manuel Pégourié-Gonnardaa0d4d12013-08-03 13:02:31 +0200226
Manuel Pégourié-Gonnard17eab2b2015-05-05 16:34:53 +0100227#define MBEDTLS_SSL_CBC_RECORD_SPLITTING_DISABLED 0
228#define MBEDTLS_SSL_CBC_RECORD_SPLITTING_ENABLED 1
Manuel Pégourié-Gonnardcfa477e2015-01-07 14:50:54 +0100229
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200230#define MBEDTLS_SSL_ARC4_ENABLED 0
231#define MBEDTLS_SSL_ARC4_DISABLED 1
Manuel Pégourié-Gonnardbd47a582015-01-12 13:43:29 +0100232
Manuel Pégourié-Gonnardb31c5f62015-06-17 13:53:47 +0200233#define MBEDTLS_SSL_PRESET_DEFAULT 0
234#define MBEDTLS_SSL_PRESET_SUITEB 2
235
Janos Follath088ce432017-04-10 12:42:31 +0100236#define MBEDTLS_SSL_CERT_REQ_CA_LIST_ENABLED 1
237#define MBEDTLS_SSL_CERT_REQ_CA_LIST_DISABLED 0
238
Manuel Pégourié-Gonnardffa67be2014-09-19 11:18:57 +0200239/*
Manuel Pégourié-Gonnard0ac247f2014-09-30 22:21:31 +0200240 * Default range for DTLS retransmission timer value, in milliseconds.
241 * RFC 6347 4.2.4.1 says from 1 second to 60 seconds.
242 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200243#define MBEDTLS_SSL_DTLS_TIMEOUT_DFL_MIN 1000
244#define MBEDTLS_SSL_DTLS_TIMEOUT_DFL_MAX 60000
Manuel Pégourié-Gonnard0ac247f2014-09-30 22:21:31 +0200245
Paul Bakker088c5c52014-04-25 11:11:10 +0200246/**
247 * \name SECTION: Module settings
248 *
249 * The configuration options you can set for this module are in this section.
250 * Either change them in config.h or define them on the compiler command line.
251 * \{
252 */
253
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200254#if !defined(MBEDTLS_SSL_DEFAULT_TICKET_LIFETIME)
255#define MBEDTLS_SSL_DEFAULT_TICKET_LIFETIME 86400 /**< Lifetime of session tickets (if enabled) */
Paul Bakker088c5c52014-04-25 11:11:10 +0200256#endif
Paul Bakker606b4ba2013-08-14 16:52:14 +0200257
Paul Bakker9bcf16c2013-06-24 19:31:17 +0200258/*
Angus Grattond8213d02016-05-25 20:56:48 +1000259 * Maximum fragment length in bytes,
Manuel Pégourié-Gonnardbb838442015-08-31 12:46:01 +0200260 * determines the size of each of the two internal I/O buffers.
261 *
Paul Bakker9bcf16c2013-06-24 19:31:17 +0200262 * Note: the RFC defines the default size of SSL / TLS messages. If you
263 * change the value here, other clients / servers may not be able to
264 * communicate with you anymore. Only change this value if you control
Manuel Pégourié-Gonnardc27807d2014-06-30 17:27:49 +0200265 * both sides of the connection and have it reduced at both sides, or
266 * if you're using the Max Fragment Length extension and you know all your
267 * peers are using it too!
Paul Bakker9bcf16c2013-06-24 19:31:17 +0200268 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200269#if !defined(MBEDTLS_SSL_MAX_CONTENT_LEN)
270#define MBEDTLS_SSL_MAX_CONTENT_LEN 16384 /**< Size of the input / output buffer */
Paul Bakker088c5c52014-04-25 11:11:10 +0200271#endif
272
Angus Grattond8213d02016-05-25 20:56:48 +1000273#if !defined(MBEDTLS_SSL_IN_CONTENT_LEN)
274#define MBEDTLS_SSL_IN_CONTENT_LEN MBEDTLS_SSL_MAX_CONTENT_LEN
275#endif
276
277#if !defined(MBEDTLS_SSL_OUT_CONTENT_LEN)
278#define MBEDTLS_SSL_OUT_CONTENT_LEN MBEDTLS_SSL_MAX_CONTENT_LEN
279#endif
280
Hanno Becker28007512018-08-28 09:46:44 +0100281/*
282 * Maximum number of heap-allocated bytes for the purpose of
283 * DTLS handshake message reassembly and future message buffering.
284 */
Hanno Beckere0b150f2018-08-21 15:51:03 +0100285#if !defined(MBEDTLS_SSL_DTLS_MAX_BUFFERING)
Hanno Becker28007512018-08-28 09:46:44 +0100286#define MBEDTLS_SSL_DTLS_MAX_BUFFERING 32768
Hanno Beckere0b150f2018-08-21 15:51:03 +0100287#endif
288
Hanno Becker6198af32019-04-09 15:12:56 +0100289/*
290 * Maximum length of CIDs for incoming and outgoing messages.
291 */
292#if !defined(MBEDTLS_SSL_CID_IN_LEN_MAX)
Hanno Beckerdc19b412019-05-15 10:09:15 +0100293#define MBEDTLS_SSL_CID_IN_LEN_MAX 32
Hanno Becker6198af32019-04-09 15:12:56 +0100294#endif
295
296#if !defined(MBEDTLS_SSL_CID_OUT_LEN_MAX)
297#define MBEDTLS_SSL_CID_OUT_LEN_MAX 32
298#endif
299
Hanno Becker550e1662019-05-08 17:37:58 +0100300#if !defined(MBEDTLS_SSL_CID_PADDING_GRANULARITY)
301#define MBEDTLS_SSL_CID_PADDING_GRANULARITY 16
302#endif
303
Paul Bakker088c5c52014-04-25 11:11:10 +0200304/* \} name SECTION: Module settings */
Paul Bakker5121ce52009-01-03 21:22:43 +0000305
306/*
Manuel Pégourié-Gonnard61860192014-11-04 13:05:42 +0100307 * Length of the verify data for secure renegotiation
308 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200309#if defined(MBEDTLS_SSL_PROTO_SSL3)
310#define MBEDTLS_SSL_VERIFY_DATA_MAX_LEN 36
Manuel Pégourié-Gonnard61860192014-11-04 13:05:42 +0100311#else
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200312#define MBEDTLS_SSL_VERIFY_DATA_MAX_LEN 12
Manuel Pégourié-Gonnard61860192014-11-04 13:05:42 +0100313#endif
314
315/*
Manuel Pégourié-Gonnardc27807d2014-06-30 17:27:49 +0200316 * Signaling ciphersuite values (SCSV)
317 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200318#define MBEDTLS_SSL_EMPTY_RENEGOTIATION_INFO 0xFF /**< renegotiation info ext */
Aaron Jonesd96e5262016-06-17 14:40:41 +0000319#define MBEDTLS_SSL_FALLBACK_SCSV_VALUE 0x5600 /**< RFC 7507 section 2 */
Paul Bakker48916f92012-09-16 19:57:18 +0000320
Paul Bakker5121ce52009-01-03 21:22:43 +0000321/*
Paul Bakker1ef83d62012-04-11 12:09:53 +0000322 * Supported Signature and Hash algorithms (For TLS 1.2)
Manuel Pégourié-Gonnard0b032002013-08-17 13:01:41 +0200323 * RFC 5246 section 7.4.1.4.1
Paul Bakker1ef83d62012-04-11 12:09:53 +0000324 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200325#define MBEDTLS_SSL_HASH_NONE 0
326#define MBEDTLS_SSL_HASH_MD5 1
327#define MBEDTLS_SSL_HASH_SHA1 2
328#define MBEDTLS_SSL_HASH_SHA224 3
329#define MBEDTLS_SSL_HASH_SHA256 4
330#define MBEDTLS_SSL_HASH_SHA384 5
331#define MBEDTLS_SSL_HASH_SHA512 6
Paul Bakker1ef83d62012-04-11 12:09:53 +0000332
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200333#define MBEDTLS_SSL_SIG_ANON 0
334#define MBEDTLS_SSL_SIG_RSA 1
335#define MBEDTLS_SSL_SIG_ECDSA 3
Paul Bakker1ef83d62012-04-11 12:09:53 +0000336
337/*
Paul Bakker926af752012-11-23 13:38:07 +0100338 * Client Certificate Types
Manuel Pégourié-Gonnard0b032002013-08-17 13:01:41 +0200339 * RFC 5246 section 7.4.4 plus RFC 4492 section 5.5
Paul Bakker926af752012-11-23 13:38:07 +0100340 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200341#define MBEDTLS_SSL_CERT_TYPE_RSA_SIGN 1
342#define MBEDTLS_SSL_CERT_TYPE_ECDSA_SIGN 64
Paul Bakker926af752012-11-23 13:38:07 +0100343
344/*
Paul Bakker5121ce52009-01-03 21:22:43 +0000345 * Message, alert and handshake types
346 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200347#define MBEDTLS_SSL_MSG_CHANGE_CIPHER_SPEC 20
348#define MBEDTLS_SSL_MSG_ALERT 21
349#define MBEDTLS_SSL_MSG_HANDSHAKE 22
350#define MBEDTLS_SSL_MSG_APPLICATION_DATA 23
Hanno Becker92c930f2019-04-29 17:31:37 +0100351#define MBEDTLS_SSL_MSG_CID 25
Paul Bakker5121ce52009-01-03 21:22:43 +0000352
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200353#define MBEDTLS_SSL_ALERT_LEVEL_WARNING 1
354#define MBEDTLS_SSL_ALERT_LEVEL_FATAL 2
Paul Bakker2e11f7d2010-07-25 14:24:53 +0000355
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200356#define MBEDTLS_SSL_ALERT_MSG_CLOSE_NOTIFY 0 /* 0x00 */
357#define MBEDTLS_SSL_ALERT_MSG_UNEXPECTED_MESSAGE 10 /* 0x0A */
358#define MBEDTLS_SSL_ALERT_MSG_BAD_RECORD_MAC 20 /* 0x14 */
359#define MBEDTLS_SSL_ALERT_MSG_DECRYPTION_FAILED 21 /* 0x15 */
360#define MBEDTLS_SSL_ALERT_MSG_RECORD_OVERFLOW 22 /* 0x16 */
361#define MBEDTLS_SSL_ALERT_MSG_DECOMPRESSION_FAILURE 30 /* 0x1E */
362#define MBEDTLS_SSL_ALERT_MSG_HANDSHAKE_FAILURE 40 /* 0x28 */
363#define MBEDTLS_SSL_ALERT_MSG_NO_CERT 41 /* 0x29 */
364#define MBEDTLS_SSL_ALERT_MSG_BAD_CERT 42 /* 0x2A */
365#define MBEDTLS_SSL_ALERT_MSG_UNSUPPORTED_CERT 43 /* 0x2B */
366#define MBEDTLS_SSL_ALERT_MSG_CERT_REVOKED 44 /* 0x2C */
367#define MBEDTLS_SSL_ALERT_MSG_CERT_EXPIRED 45 /* 0x2D */
368#define MBEDTLS_SSL_ALERT_MSG_CERT_UNKNOWN 46 /* 0x2E */
369#define MBEDTLS_SSL_ALERT_MSG_ILLEGAL_PARAMETER 47 /* 0x2F */
370#define MBEDTLS_SSL_ALERT_MSG_UNKNOWN_CA 48 /* 0x30 */
371#define MBEDTLS_SSL_ALERT_MSG_ACCESS_DENIED 49 /* 0x31 */
372#define MBEDTLS_SSL_ALERT_MSG_DECODE_ERROR 50 /* 0x32 */
373#define MBEDTLS_SSL_ALERT_MSG_DECRYPT_ERROR 51 /* 0x33 */
374#define MBEDTLS_SSL_ALERT_MSG_EXPORT_RESTRICTION 60 /* 0x3C */
375#define MBEDTLS_SSL_ALERT_MSG_PROTOCOL_VERSION 70 /* 0x46 */
376#define MBEDTLS_SSL_ALERT_MSG_INSUFFICIENT_SECURITY 71 /* 0x47 */
377#define MBEDTLS_SSL_ALERT_MSG_INTERNAL_ERROR 80 /* 0x50 */
378#define MBEDTLS_SSL_ALERT_MSG_INAPROPRIATE_FALLBACK 86 /* 0x56 */
379#define MBEDTLS_SSL_ALERT_MSG_USER_CANCELED 90 /* 0x5A */
380#define MBEDTLS_SSL_ALERT_MSG_NO_RENEGOTIATION 100 /* 0x64 */
381#define MBEDTLS_SSL_ALERT_MSG_UNSUPPORTED_EXT 110 /* 0x6E */
382#define MBEDTLS_SSL_ALERT_MSG_UNRECOGNIZED_NAME 112 /* 0x70 */
383#define MBEDTLS_SSL_ALERT_MSG_UNKNOWN_PSK_IDENTITY 115 /* 0x73 */
384#define MBEDTLS_SSL_ALERT_MSG_NO_APPLICATION_PROTOCOL 120 /* 0x78 */
Hanno Beckerf46e1ce2019-07-03 13:56:59 +0100385#define MBEDTLS_SSL_ALERT_MSG_NONE 255 /* internal */
Paul Bakker5121ce52009-01-03 21:22:43 +0000386
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200387#define MBEDTLS_SSL_HS_HELLO_REQUEST 0
388#define MBEDTLS_SSL_HS_CLIENT_HELLO 1
389#define MBEDTLS_SSL_HS_SERVER_HELLO 2
390#define MBEDTLS_SSL_HS_HELLO_VERIFY_REQUEST 3
391#define MBEDTLS_SSL_HS_NEW_SESSION_TICKET 4
392#define MBEDTLS_SSL_HS_CERTIFICATE 11
393#define MBEDTLS_SSL_HS_SERVER_KEY_EXCHANGE 12
394#define MBEDTLS_SSL_HS_CERTIFICATE_REQUEST 13
395#define MBEDTLS_SSL_HS_SERVER_HELLO_DONE 14
396#define MBEDTLS_SSL_HS_CERTIFICATE_VERIFY 15
397#define MBEDTLS_SSL_HS_CLIENT_KEY_EXCHANGE 16
398#define MBEDTLS_SSL_HS_FINISHED 20
Paul Bakker5121ce52009-01-03 21:22:43 +0000399
400/*
401 * TLS extensions
402 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200403#define MBEDTLS_TLS_EXT_SERVERNAME 0
404#define MBEDTLS_TLS_EXT_SERVERNAME_HOSTNAME 0
Paul Bakker5121ce52009-01-03 21:22:43 +0000405
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200406#define MBEDTLS_TLS_EXT_MAX_FRAGMENT_LENGTH 1
Manuel Pégourié-Gonnard48f8d0d2013-07-17 10:25:37 +0200407
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200408#define MBEDTLS_TLS_EXT_TRUNCATED_HMAC 4
Manuel Pégourié-Gonnard57c28522013-07-19 11:41:43 +0200409
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200410#define MBEDTLS_TLS_EXT_SUPPORTED_ELLIPTIC_CURVES 10
411#define MBEDTLS_TLS_EXT_SUPPORTED_POINT_FORMATS 11
Paul Bakkerc3f177a2012-04-11 16:11:49 +0000412
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200413#define MBEDTLS_TLS_EXT_SIG_ALG 13
Paul Bakker41c83d32013-03-20 14:39:14 +0100414
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200415#define MBEDTLS_TLS_EXT_ALPN 16
Manuel Pégourié-Gonnard0b874dc2014-04-07 10:57:45 +0200416
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200417#define MBEDTLS_TLS_EXT_ENCRYPT_THEN_MAC 22 /* 0x16 */
418#define MBEDTLS_TLS_EXT_EXTENDED_MASTER_SECRET 0x0017 /* 23 */
Manuel Pégourié-Gonnard367381f2014-10-20 18:40:56 +0200419
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200420#define MBEDTLS_TLS_EXT_SESSION_TICKET 35
Manuel Pégourié-Gonnard60182ef2013-08-02 14:44:54 +0200421
Hanno Becker4baec2c2019-04-25 16:24:57 +0100422/* The value of the CID extension is still TBD as of
Hanno Becker3cdf8fe2019-05-15 10:26:32 +0100423 * draft-ietf-tls-dtls-connection-id-05
424 * (https://tools.ietf.org/html/draft-ietf-tls-dtls-connection-id-05) */
Hanno Beckerfc7ff922019-05-03 12:42:13 +0100425#define MBEDTLS_TLS_EXT_CID 254 /* TBD */
Hanno Becker4baec2c2019-04-25 16:24:57 +0100426
Manuel Pégourié-Gonnard294139b2015-09-15 16:55:05 +0200427#define MBEDTLS_TLS_EXT_ECJPAKE_KKPP 256 /* experimental */
428
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200429#define MBEDTLS_TLS_EXT_RENEGOTIATION_INFO 0xFF01
Paul Bakker48916f92012-09-16 19:57:18 +0000430
Paul Bakkereb2c6582012-09-27 19:15:01 +0000431/*
Hanno Becker65382f22019-07-02 13:51:57 +0100432 * Helper macros indicating whether certain classes
433 * of key exchanges are enabled in the configuration.
434 */
435
436/* Key exchanges using a certificate */
437#if defined(MBEDTLS_KEY_EXCHANGE_RSA_ENABLED) || \
438 defined(MBEDTLS_KEY_EXCHANGE_DHE_RSA_ENABLED) || \
439 defined(MBEDTLS_KEY_EXCHANGE_ECDHE_RSA_ENABLED) || \
440 defined(MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA_ENABLED) || \
441 defined(MBEDTLS_KEY_EXCHANGE_RSA_PSK_ENABLED) || \
442 defined(MBEDTLS_KEY_EXCHANGE_ECDH_RSA_ENABLED) || \
443 defined(MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA_ENABLED)
444#define MBEDTLS_KEY_EXCHANGE__WITH_CERT__ENABLED
445#endif
446
447/* Key exchanges allowing client certificate requests */
448#if defined(MBEDTLS_KEY_EXCHANGE_RSA_ENABLED) || \
449 defined(MBEDTLS_KEY_EXCHANGE_DHE_RSA_ENABLED) || \
450 defined(MBEDTLS_KEY_EXCHANGE_ECDH_RSA_ENABLED) || \
451 defined(MBEDTLS_KEY_EXCHANGE_ECDHE_RSA_ENABLED) || \
452 defined(MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA_ENABLED) || \
453 defined(MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA_ENABLED)
454#define MBEDTLS_KEY_EXCHANGE__CERT_REQ_ALLOWED__ENABLED
455#endif
456
457/* Key exchanges involving server signature in ServerKeyExchange */
458#if defined(MBEDTLS_KEY_EXCHANGE_DHE_RSA_ENABLED) || \
459 defined(MBEDTLS_KEY_EXCHANGE_ECDHE_RSA_ENABLED) || \
460 defined(MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA_ENABLED)
461#define MBEDTLS_KEY_EXCHANGE__WITH_SERVER_SIGNATURE__ENABLED
462#endif
463
464/* Key exchanges using ECDH */
465#if defined(MBEDTLS_KEY_EXCHANGE_ECDH_RSA_ENABLED) || \
466 defined(MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA_ENABLED)
467#define MBEDTLS_KEY_EXCHANGE__SOME__ECDH_ENABLED
468#endif
469
470/* Key exchanges that don't involve ephemeral keys */
471#if defined(MBEDTLS_KEY_EXCHANGE_RSA_ENABLED) || \
472 defined(MBEDTLS_KEY_EXCHANGE_PSK_ENABLED) || \
473 defined(MBEDTLS_KEY_EXCHANGE_RSA_PSK_ENABLED) || \
474 defined(MBEDTLS_KEY_EXCHANGE__SOME__ECDH_ENABLED)
475#define MBEDTLS_KEY_EXCHANGE__SOME_NON_PFS__ENABLED
476#endif
477
478/* Key exchanges that involve ephemeral keys */
479#if defined(MBEDTLS_KEY_EXCHANGE_DHE_RSA_ENABLED) || \
480 defined(MBEDTLS_KEY_EXCHANGE_DHE_PSK_ENABLED) || \
481 defined(MBEDTLS_KEY_EXCHANGE_ECDHE_RSA_ENABLED) || \
482 defined(MBEDTLS_KEY_EXCHANGE_ECDHE_PSK_ENABLED) || \
483 defined(MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA_ENABLED) || \
484 defined(MBEDTLS_KEY_EXCHANGE_ECJPAKE_ENABLED)
485#define MBEDTLS_KEY_EXCHANGE__SOME_PFS__ENABLED
486#endif
487
488/* Key exchanges using a PSK */
489#if defined(MBEDTLS_KEY_EXCHANGE_PSK_ENABLED) || \
490 defined(MBEDTLS_KEY_EXCHANGE_RSA_PSK_ENABLED) || \
491 defined(MBEDTLS_KEY_EXCHANGE_DHE_PSK_ENABLED) || \
492 defined(MBEDTLS_KEY_EXCHANGE_ECDHE_PSK_ENABLED)
493#define MBEDTLS_KEY_EXCHANGE__SOME__PSK_ENABLED
494#endif
495
496/* Key exchanges using DHE */
497#if defined(MBEDTLS_KEY_EXCHANGE_DHE_RSA_ENABLED) || \
498 defined(MBEDTLS_KEY_EXCHANGE_DHE_PSK_ENABLED)
499#define MBEDTLS_KEY_EXCHANGE__SOME__DHE_ENABLED
500#endif
501
502/* Key exchanges using ECDHE */
503#if defined(MBEDTLS_KEY_EXCHANGE_ECDHE_RSA_ENABLED) || \
504 defined(MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA_ENABLED) || \
505 defined(MBEDTLS_KEY_EXCHANGE_ECDHE_PSK_ENABLED)
506#define MBEDTLS_KEY_EXCHANGE__SOME__ECDHE_ENABLED
507#endif
508
509/*
Paul Bakkered27a042013-04-18 22:46:23 +0200510 * Size defines
511 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200512#if !defined(MBEDTLS_PSK_MAX_LEN)
513#define MBEDTLS_PSK_MAX_LEN 32 /* 256 bits */
Paul Bakkered27a042013-04-18 22:46:23 +0200514#endif
515
Manuel Pégourié-Gonnard481fcfd2014-07-03 16:12:50 +0200516/* Dummy type used only for its size */
Manuel Pégourié-Gonnard160e3842015-05-27 20:27:06 +0200517union mbedtls_ssl_premaster_secret
Manuel Pégourié-Gonnard481fcfd2014-07-03 16:12:50 +0200518{
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200519#if defined(MBEDTLS_KEY_EXCHANGE_RSA_ENABLED)
Manuel Pégourié-Gonnard481fcfd2014-07-03 16:12:50 +0200520 unsigned char _pms_rsa[48]; /* RFC 5246 8.1.1 */
521#endif
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200522#if defined(MBEDTLS_KEY_EXCHANGE_DHE_RSA_ENABLED)
523 unsigned char _pms_dhm[MBEDTLS_MPI_MAX_SIZE]; /* RFC 5246 8.1.2 */
Manuel Pégourié-Gonnard481fcfd2014-07-03 16:12:50 +0200524#endif
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200525#if defined(MBEDTLS_KEY_EXCHANGE_ECDHE_RSA_ENABLED) || \
526 defined(MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA_ENABLED) || \
527 defined(MBEDTLS_KEY_EXCHANGE_ECDH_RSA_ENABLED) || \
528 defined(MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA_ENABLED)
Hanno Becker728a38b2019-08-23 14:52:22 +0100529#if defined(MBEDTLS_ECDH_C)
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200530 unsigned char _pms_ecdh[MBEDTLS_ECP_MAX_BYTES]; /* RFC 4492 5.10 */
Manuel Pégourié-Gonnard481fcfd2014-07-03 16:12:50 +0200531#endif
Hanno Becker728a38b2019-08-23 14:52:22 +0100532#if defined(MBEDTLS_USE_TINYCRYPT)
533 unsigned char _pms_ecdh_uecc[ NUM_ECC_BYTES ];
Hanno Becker6f768042019-09-02 11:42:24 +0100534#endif /* MBEDTLS_USE_TINYCRYPT */
Hanno Becker728a38b2019-08-23 14:52:22 +0100535#endif
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200536#if defined(MBEDTLS_KEY_EXCHANGE_PSK_ENABLED)
537 unsigned char _pms_psk[4 + 2 * MBEDTLS_PSK_MAX_LEN]; /* RFC 4279 2 */
Manuel Pégourié-Gonnard481fcfd2014-07-03 16:12:50 +0200538#endif
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200539#if defined(MBEDTLS_KEY_EXCHANGE_DHE_PSK_ENABLED)
540 unsigned char _pms_dhe_psk[4 + MBEDTLS_MPI_MAX_SIZE
541 + MBEDTLS_PSK_MAX_LEN]; /* RFC 4279 3 */
Manuel Pégourié-Gonnard481fcfd2014-07-03 16:12:50 +0200542#endif
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200543#if defined(MBEDTLS_KEY_EXCHANGE_RSA_PSK_ENABLED)
544 unsigned char _pms_rsa_psk[52 + MBEDTLS_PSK_MAX_LEN]; /* RFC 4279 4 */
Manuel Pégourié-Gonnard481fcfd2014-07-03 16:12:50 +0200545#endif
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200546#if defined(MBEDTLS_KEY_EXCHANGE_ECDHE_PSK_ENABLED)
Hanno Becker6f768042019-09-02 11:42:24 +0100547#if defined(MBEDTLS_USE_TINYCRYPT)
548 unsigned char _pms_ecdhe_psk_uecc[4 + NUM_ECC_BYTES +
549 + MBEDTLS_PSK_MAX_LEN]; /* RFC 5489 2 */
550#endif /* MBEDTLS_USE_TINYCRYPT */
Hanno Becker6f212d02019-09-02 13:05:27 +0100551#if defined(MBEDTLS_ECP_C)
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200552 unsigned char _pms_ecdhe_psk[4 + MBEDTLS_ECP_MAX_BYTES
553 + MBEDTLS_PSK_MAX_LEN]; /* RFC 5489 2 */
Manuel Pégourié-Gonnard481fcfd2014-07-03 16:12:50 +0200554#endif
Hanno Becker6f212d02019-09-02 13:05:27 +0100555#endif
Manuel Pégourié-Gonnard557535d2015-09-15 17:53:32 +0200556#if defined(MBEDTLS_KEY_EXCHANGE_ECJPAKE_ENABLED)
557 unsigned char _pms_ecjpake[32]; /* Thread spec: SHA-256 output */
558#endif
Manuel Pégourié-Gonnard481fcfd2014-07-03 16:12:50 +0200559};
560
Manuel Pégourié-Gonnard160e3842015-05-27 20:27:06 +0200561#define MBEDTLS_PREMASTER_SIZE sizeof( union mbedtls_ssl_premaster_secret )
Manuel Pégourié-Gonnard481fcfd2014-07-03 16:12:50 +0200562
Paul Bakker407a0da2013-06-27 14:29:21 +0200563#ifdef __cplusplus
564extern "C" {
565#endif
566
Paul Bakkered27a042013-04-18 22:46:23 +0200567/*
Paul Bakker5121ce52009-01-03 21:22:43 +0000568 * SSL state machine
569 */
570typedef enum
571{
Jarno Lamsa4708d662019-11-13 13:12:50 +0200572 MBEDTLS_SSL_HELLO_REQUEST = 0x0,
573 MBEDTLS_SSL_CLIENT_HELLO = 0x0000FFFF,
574 MBEDTLS_SSL_SERVER_HELLO = 0x00FF00FF,
575 MBEDTLS_SSL_SERVER_CERTIFICATE = 0x00FFFF00,
576 MBEDTLS_SSL_SERVER_KEY_EXCHANGE = 0x0F0F0F0F,
577 MBEDTLS_SSL_CERTIFICATE_REQUEST = 0x0F0FF0F0,
578 MBEDTLS_SSL_SERVER_HELLO_DONE = 0x0FF00FF0,
579 MBEDTLS_SSL_CLIENT_CERTIFICATE = 0x0FF0F00F,
580 MBEDTLS_SSL_CLIENT_KEY_EXCHANGE = 0x33333333,
581 MBEDTLS_SSL_CERTIFICATE_VERIFY = 0x3333CCCC,
582 MBEDTLS_SSL_CLIENT_CHANGE_CIPHER_SPEC = 0x33CC33CC,
583 MBEDTLS_SSL_CLIENT_FINISHED = 0x33CCCC33,
584 MBEDTLS_SSL_SERVER_CHANGE_CIPHER_SPEC = 0x3C3C3C3C,
585 MBEDTLS_SSL_SERVER_FINISHED = 0x3C3CC3C3,
586 MBEDTLS_SSL_FLUSH_BUFFERS = 0x3CC33CC3,
587 MBEDTLS_SSL_HANDSHAKE_WRAPUP = 0x3CC3C33C,
588 MBEDTLS_SSL_HANDSHAKE_OVER = 0x55555555,
589 MBEDTLS_SSL_SERVER_NEW_SESSION_TICKET = 0x5555AAAA,
590 MBEDTLS_SSL_SERVER_HELLO_VERIFY_REQUEST_SENT = 0x55AA55AA,
591 MBEDTLS_SSL_INVALID = 0x55AAAA55
Paul Bakker5121ce52009-01-03 21:22:43 +0000592}
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200593mbedtls_ssl_states;
Paul Bakker5121ce52009-01-03 21:22:43 +0000594
Simon Butchere846b512016-03-01 17:31:49 +0000595/**
596 * \brief Callback type: send data on the network.
597 *
598 * \note That callback may be either blocking or non-blocking.
599 *
600 * \param ctx Context for the send callback (typically a file descriptor)
Simon Butcherd567a232016-03-09 20:19:21 +0000601 * \param buf Buffer holding the data to send
Simon Butchere846b512016-03-01 17:31:49 +0000602 * \param len Length of the data to send
603 *
604 * \return The callback must return the number of bytes sent if any,
605 * or a non-zero error code.
606 * If performing non-blocking I/O, \c MBEDTLS_ERR_SSL_WANT_WRITE
607 * must be returned when the operation would block.
608 *
Simon Butcherd567a232016-03-09 20:19:21 +0000609 * \note The callback is allowed to send fewer bytes than requested.
Simon Butchere846b512016-03-01 17:31:49 +0000610 * It must always return the number of bytes actually sent.
611 */
612typedef int mbedtls_ssl_send_t( void *ctx,
613 const unsigned char *buf,
614 size_t len );
615
616/**
617 * \brief Callback type: receive data from the network.
618 *
619 * \note That callback may be either blocking or non-blocking.
620 *
621 * \param ctx Context for the receive callback (typically a file
622 * descriptor)
623 * \param buf Buffer to write the received data to
624 * \param len Length of the receive buffer
625 *
626 * \return The callback must return the number of bytes received,
627 * or a non-zero error code.
628 * If performing non-blocking I/O, \c MBEDTLS_ERR_SSL_WANT_READ
629 * must be returned when the operation would block.
630 *
Simon Butcherd567a232016-03-09 20:19:21 +0000631 * \note The callback may receive fewer bytes than the length of the
Simon Butchere846b512016-03-01 17:31:49 +0000632 * buffer. It must always return the number of bytes actually
633 * received and written to the buffer.
634 */
635typedef int mbedtls_ssl_recv_t( void *ctx,
636 unsigned char *buf,
637 size_t len );
638
639/**
640 * \brief Callback type: receive data from the network, with timeout
641 *
642 * \note That callback must block until data is received, or the
643 * timeout delay expires, or the operation is interrupted by a
644 * signal.
645 *
646 * \param ctx Context for the receive callback (typically a file descriptor)
647 * \param buf Buffer to write the received data to
648 * \param len Length of the receive buffer
649 * \param timeout Maximum nomber of millisecondes to wait for data
Aaron Jonesd96e5262016-06-17 14:40:41 +0000650 * 0 means no timeout (potentially waiting forever)
Simon Butchere846b512016-03-01 17:31:49 +0000651 *
652 * \return The callback must return the number of bytes received,
653 * or a non-zero error code:
654 * \c MBEDTLS_ERR_SSL_TIMEOUT if the operation timed out,
655 * \c MBEDTLS_ERR_SSL_WANT_READ if interrupted by a signal.
656 *
Simon Butcherd567a232016-03-09 20:19:21 +0000657 * \note The callback may receive fewer bytes than the length of the
Simon Butchere846b512016-03-01 17:31:49 +0000658 * buffer. It must always return the number of bytes actually
659 * received and written to the buffer.
660 */
661typedef int mbedtls_ssl_recv_timeout_t( void *ctx,
662 unsigned char *buf,
663 size_t len,
664 uint32_t timeout );
665/**
666 * \brief Callback type: set a pair of timers/delays to watch
667 *
668 * \param ctx Context pointer
669 * \param int_ms Intermediate delay in milliseconds
670 * \param fin_ms Final delay in milliseconds
671 * 0 cancels the current timer.
672 *
673 * \note This callback must at least store the necessary information
674 * for the associated \c mbedtls_ssl_get_timer_t callback to
675 * return correct information.
676 *
677 * \note If using a event-driven style of programming, an event must
678 * be generated when the final delay is passed. The event must
679 * cause a call to \c mbedtls_ssl_handshake() with the proper
680 * SSL context to be scheduled. Care must be taken to ensure
681 * that at most one such call happens at a time.
682 *
683 * \note Only one timer at a time must be running. Calling this
684 * function while a timer is running must cancel it. Cancelled
685 * timers must not generate any event.
686 */
687typedef void mbedtls_ssl_set_timer_t( void * ctx,
688 uint32_t int_ms,
689 uint32_t fin_ms );
690
691/**
692 * \brief Callback type: get status of timers/delays
693 *
694 * \param ctx Context pointer
695 *
696 * \return This callback must return:
697 * -1 if cancelled (fin_ms == 0),
Aaron Jonesd96e5262016-06-17 14:40:41 +0000698 * 0 if none of the delays have passed,
699 * 1 if only the intermediate delay has passed,
700 * 2 if the final delay has passed.
Simon Butchere846b512016-03-01 17:31:49 +0000701 */
702typedef int mbedtls_ssl_get_timer_t( void * ctx );
703
Manuel Pégourié-Gonnardcd4fcc62015-05-26 12:11:48 +0200704/* Defined below */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200705typedef struct mbedtls_ssl_session mbedtls_ssl_session;
706typedef struct mbedtls_ssl_context mbedtls_ssl_context;
Manuel Pégourié-Gonnardcd4fcc62015-05-26 12:11:48 +0200707typedef struct mbedtls_ssl_config mbedtls_ssl_config;
708
709/* Defined in ssl_internal.h */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200710typedef struct mbedtls_ssl_transform mbedtls_ssl_transform;
711typedef struct mbedtls_ssl_handshake_params mbedtls_ssl_handshake_params;
Hanno Becker7e5437a2017-04-28 17:15:26 +0100712typedef struct mbedtls_ssl_sig_hash_set_t mbedtls_ssl_sig_hash_set_t;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200713#if defined(MBEDTLS_X509_CRT_PARSE_C)
714typedef struct mbedtls_ssl_key_cert mbedtls_ssl_key_cert;
Manuel Pégourié-Gonnard834ea852013-09-23 14:46:13 +0200715#endif
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200716#if defined(MBEDTLS_SSL_PROTO_DTLS)
717typedef struct mbedtls_ssl_flight_item mbedtls_ssl_flight_item;
Manuel Pégourié-Gonnardffa67be2014-09-19 11:18:57 +0200718#endif
Paul Bakker5121ce52009-01-03 21:22:43 +0000719
Gilles Peskineb74a1c72018-04-24 13:09:22 +0200720#if defined(MBEDTLS_SSL_ASYNC_PRIVATE)
Gilles Peskine8bf79f62018-01-05 21:11:53 +0100721#if defined(MBEDTLS_X509_CRT_PARSE_C)
722/**
Gilles Peskinead28bf02018-04-26 00:19:16 +0200723 * \brief Callback type: start external signature operation.
Gilles Peskine8bf79f62018-01-05 21:11:53 +0100724 *
Gilles Peskinead28bf02018-04-26 00:19:16 +0200725 * This callback is called during an SSL handshake to start
726 * a signature decryption operation using an
Gilles Peskine2481a712018-04-26 07:28:44 +0200727 * external processor. The parameter \p cert contains
Gilles Peskine8bf79f62018-01-05 21:11:53 +0100728 * the public key; it is up to the callback function to
Gilles Peskinead28bf02018-04-26 00:19:16 +0200729 * determine how to access the associated private key.
Gilles Peskine8bf79f62018-01-05 21:11:53 +0100730 *
Gilles Peskinead28bf02018-04-26 00:19:16 +0200731 * This function typically sends or enqueues a request, and
732 * does not wait for the operation to complete. This allows
733 * the handshake step to be non-blocking.
Gilles Peskine8bf79f62018-01-05 21:11:53 +0100734 *
Gilles Peskine6a8cb362018-04-30 11:54:14 +0200735 * The parameters \p ssl and \p cert are guaranteed to remain
736 * valid throughout the handshake. On the other hand, this
Gilles Peskine2481a712018-04-26 07:28:44 +0200737 * function must save the contents of \p hash if the value
738 * is needed for later processing, because the \p hash buffer
Gilles Peskinead28bf02018-04-26 00:19:16 +0200739 * is no longer valid after this function returns.
Gilles Peskine8bf79f62018-01-05 21:11:53 +0100740 *
Gilles Peskine1febfef2018-04-30 11:54:39 +0200741 * This function may call mbedtls_ssl_set_async_operation_data()
742 * to store an operation context for later retrieval
Gilles Peskineea5fab82018-04-30 13:57:45 +0200743 * by the resume or cancel callback.
Gilles Peskinedf13d5c2018-04-25 20:39:48 +0200744 *
Gilles Peskined3268832018-04-26 06:23:59 +0200745 * \note For RSA signatures, this function must produce output
746 * that is consistent with PKCS#1 v1.5 in the same way as
747 * mbedtls_rsa_pkcs1_sign(). Before the private key operation,
748 * apply the padding steps described in RFC 8017, section 9.2
749 * "EMSA-PKCS1-v1_5" as follows.
750 * - If \p md_alg is #MBEDTLS_MD_NONE, apply the PKCS#1 v1.5
751 * encoding, treating \p hash as the DigestInfo to be
752 * padded. In other words, apply EMSA-PKCS1-v1_5 starting
753 * from step 3, with `T = hash` and `tLen = hash_len`.
Gilles Peskine6a8cb362018-04-30 11:54:14 +0200754 * - If `md_alg != MBEDTLS_MD_NONE`, apply the PKCS#1 v1.5
Gilles Peskined3268832018-04-26 06:23:59 +0200755 * encoding, treating \p hash as the hash to be encoded and
756 * padded. In other words, apply EMSA-PKCS1-v1_5 starting
757 * from step 2, with `digestAlgorithm` obtained by calling
758 * mbedtls_oid_get_oid_by_md() on \p md_alg.
759 *
Gilles Peskine20deb012018-04-26 17:57:37 +0200760 * \note For ECDSA signatures, the output format is the DER encoding
761 * `Ecdsa-Sig-Value` defined in
762 * [RFC 4492 section 5.4](https://tools.ietf.org/html/rfc4492#section-5.4).
763 *
Gilles Peskinead28bf02018-04-26 00:19:16 +0200764 * \param ssl The SSL connection instance. It should not be
Gilles Peskine1febfef2018-04-30 11:54:39 +0200765 * modified other than via
766 * mbedtls_ssl_set_async_operation_data().
Gilles Peskinead28bf02018-04-26 00:19:16 +0200767 * \param cert Certificate containing the public key.
Gilles Peskine807d74a2018-04-30 10:30:49 +0200768 * In simple cases, this is one of the pointers passed to
Gilles Peskine20deb012018-04-26 17:57:37 +0200769 * mbedtls_ssl_conf_own_cert() when configuring the SSL
Gilles Peskine807d74a2018-04-30 10:30:49 +0200770 * connection. However, if other callbacks are used, this
771 * property may not hold. For example, if an SNI callback
772 * is registered with mbedtls_ssl_conf_sni(), then
773 * this callback determines what certificate is used.
Gilles Peskinead28bf02018-04-26 00:19:16 +0200774 * \param md_alg Hash algorithm.
Gilles Peskine8bf79f62018-01-05 21:11:53 +0100775 * \param hash Buffer containing the hash. This buffer is
776 * no longer valid when the function returns.
Gilles Peskinead28bf02018-04-26 00:19:16 +0200777 * \param hash_len Size of the \c hash buffer in bytes.
Gilles Peskine8bf79f62018-01-05 21:11:53 +0100778 *
Gilles Peskine2481a712018-04-26 07:28:44 +0200779 * \return 0 if the operation was started successfully and the SSL
780 * stack should call the resume callback immediately.
781 * \return #MBEDTLS_ERR_SSL_ASYNC_IN_PROGRESS if the operation
782 * was started successfully and the SSL stack should return
783 * immediately without calling the resume callback yet.
784 * \return #MBEDTLS_ERR_SSL_HW_ACCEL_FALLTHROUGH if the external
785 * processor does not support this key. The SSL stack will
786 * use the private key object instead.
787 * \return Any other error indicates a fatal failure and is
Gilles Peskineac5e8a32018-04-26 11:50:07 +0200788 * propagated up the call chain. The callback should
789 * use \c MBEDTLS_ERR_PK_xxx error codes, and <b>must not</b>
790 * use \c MBEDTLS_ERR_SSL_xxx error codes except as
Gilles Peskine9ceae8b2018-04-30 16:37:03 +0200791 * directed in the documentation of this callback.
Gilles Peskine8bf79f62018-01-05 21:11:53 +0100792 */
Gilles Peskine8f97af72018-04-26 11:46:10 +0200793typedef int mbedtls_ssl_async_sign_t( mbedtls_ssl_context *ssl,
Gilles Peskine8bf79f62018-01-05 21:11:53 +0100794 mbedtls_x509_crt *cert,
795 mbedtls_md_type_t md_alg,
796 const unsigned char *hash,
797 size_t hash_len );
798
799/**
Gilles Peskinead28bf02018-04-26 00:19:16 +0200800 * \brief Callback type: start external decryption operation.
Gilles Peskine8bf79f62018-01-05 21:11:53 +0100801 *
Gilles Peskinead28bf02018-04-26 00:19:16 +0200802 * This callback is called during an SSL handshake to start
803 * an RSA decryption operation using an
Gilles Peskine2481a712018-04-26 07:28:44 +0200804 * external processor. The parameter \p cert contains
Gilles Peskine8bf79f62018-01-05 21:11:53 +0100805 * the public key; it is up to the callback function to
Gilles Peskinead28bf02018-04-26 00:19:16 +0200806 * determine how to access the associated private key.
Gilles Peskine8bf79f62018-01-05 21:11:53 +0100807 *
Gilles Peskinead28bf02018-04-26 00:19:16 +0200808 * This function typically sends or enqueues a request, and
809 * does not wait for the operation to complete. This allows
810 * the handshake step to be non-blocking.
Gilles Peskine8bf79f62018-01-05 21:11:53 +0100811 *
Gilles Peskine6a8cb362018-04-30 11:54:14 +0200812 * The parameters \p ssl and \p cert are guaranteed to remain
813 * valid throughout the handshake. On the other hand, this
Gilles Peskine2481a712018-04-26 07:28:44 +0200814 * function must save the contents of \p input if the value
815 * is needed for later processing, because the \p input buffer
Gilles Peskinead28bf02018-04-26 00:19:16 +0200816 * is no longer valid after this function returns.
Gilles Peskine8bf79f62018-01-05 21:11:53 +0100817 *
Gilles Peskine1febfef2018-04-30 11:54:39 +0200818 * This function may call mbedtls_ssl_set_async_operation_data()
819 * to store an operation context for later retrieval
Gilles Peskineea5fab82018-04-30 13:57:45 +0200820 * by the resume or cancel callback.
Gilles Peskinedf13d5c2018-04-25 20:39:48 +0200821 *
Gilles Peskine20deb012018-04-26 17:57:37 +0200822 * \warning RSA decryption as used in TLS is subject to a potential
823 * timing side channel attack first discovered by Bleichenbacher
824 * in 1998. This attack can be remotely exploitable
825 * in practice. To avoid this attack, you must ensure that
826 * if the callback performs an RSA decryption, the time it
827 * takes to execute and return the result does not depend
828 * on whether the RSA decryption succeeded or reported
829 * invalid padding.
830 *
Gilles Peskinead28bf02018-04-26 00:19:16 +0200831 * \param ssl The SSL connection instance. It should not be
Gilles Peskine1febfef2018-04-30 11:54:39 +0200832 * modified other than via
833 * mbedtls_ssl_set_async_operation_data().
Gilles Peskinead28bf02018-04-26 00:19:16 +0200834 * \param cert Certificate containing the public key.
Gilles Peskine807d74a2018-04-30 10:30:49 +0200835 * In simple cases, this is one of the pointers passed to
Gilles Peskine20deb012018-04-26 17:57:37 +0200836 * mbedtls_ssl_conf_own_cert() when configuring the SSL
Gilles Peskine807d74a2018-04-30 10:30:49 +0200837 * connection. However, if other callbacks are used, this
838 * property may not hold. For example, if an SNI callback
839 * is registered with mbedtls_ssl_conf_sni(), then
840 * this callback determines what certificate is used.
Gilles Peskine8bf79f62018-01-05 21:11:53 +0100841 * \param input Buffer containing the input ciphertext. This buffer
842 * is no longer valid when the function returns.
Gilles Peskine2481a712018-04-26 07:28:44 +0200843 * \param input_len Size of the \p input buffer in bytes.
Gilles Peskine8bf79f62018-01-05 21:11:53 +0100844 *
Gilles Peskine2481a712018-04-26 07:28:44 +0200845 * \return 0 if the operation was started successfully and the SSL
846 * stack should call the resume callback immediately.
847 * \return #MBEDTLS_ERR_SSL_ASYNC_IN_PROGRESS if the operation
848 * was started successfully and the SSL stack should return
849 * immediately without calling the resume callback yet.
850 * \return #MBEDTLS_ERR_SSL_HW_ACCEL_FALLTHROUGH if the external
851 * processor does not support this key. The SSL stack will
852 * use the private key object instead.
853 * \return Any other error indicates a fatal failure and is
Gilles Peskineac5e8a32018-04-26 11:50:07 +0200854 * propagated up the call chain. The callback should
855 * use \c MBEDTLS_ERR_PK_xxx error codes, and <b>must not</b>
856 * use \c MBEDTLS_ERR_SSL_xxx error codes except as
Gilles Peskine9ceae8b2018-04-30 16:37:03 +0200857 * directed in the documentation of this callback.
Gilles Peskine8bf79f62018-01-05 21:11:53 +0100858 */
Gilles Peskine8f97af72018-04-26 11:46:10 +0200859typedef int mbedtls_ssl_async_decrypt_t( mbedtls_ssl_context *ssl,
Gilles Peskine8bf79f62018-01-05 21:11:53 +0100860 mbedtls_x509_crt *cert,
861 const unsigned char *input,
862 size_t input_len );
863#endif /* MBEDTLS_X509_CRT_PARSE_C */
864
865/**
Gilles Peskinead28bf02018-04-26 00:19:16 +0200866 * \brief Callback type: resume external operation.
Gilles Peskine8bf79f62018-01-05 21:11:53 +0100867 *
Gilles Peskinead28bf02018-04-26 00:19:16 +0200868 * This callback is called during an SSL handshake to resume
869 * an external operation started by the
Gilles Peskine2481a712018-04-26 07:28:44 +0200870 * ::mbedtls_ssl_async_sign_t or
871 * ::mbedtls_ssl_async_decrypt_t callback.
Gilles Peskinead28bf02018-04-26 00:19:16 +0200872 *
873 * This function typically checks the status of a pending
874 * request or causes the request queue to make progress, and
875 * does not wait for the operation to complete. This allows
876 * the handshake step to be non-blocking.
Gilles Peskine8bf79f62018-01-05 21:11:53 +0100877 *
Gilles Peskine1febfef2018-04-30 11:54:39 +0200878 * This function may call mbedtls_ssl_get_async_operation_data()
879 * to retrieve an operation context set by the start callback.
880 * It may call mbedtls_ssl_set_async_operation_data() to modify
881 * this context.
Gilles Peskinedf13d5c2018-04-25 20:39:48 +0200882 *
Gilles Peskineea5fab82018-04-30 13:57:45 +0200883 * Note that when this function returns a status other than
884 * #MBEDTLS_ERR_SSL_ASYNC_IN_PROGRESS, it must free any
885 * resources associated with the operation.
886 *
Gilles Peskinead28bf02018-04-26 00:19:16 +0200887 * \param ssl The SSL connection instance. It should not be
Gilles Peskine1febfef2018-04-30 11:54:39 +0200888 * modified other than via
889 * mbedtls_ssl_set_async_operation_data().
Gilles Peskinead28bf02018-04-26 00:19:16 +0200890 * \param output Buffer containing the output (signature or decrypted
891 * data) on success.
Gilles Peskine2481a712018-04-26 07:28:44 +0200892 * \param output_len On success, number of bytes written to \p output.
893 * \param output_size Size of the \p output buffer in bytes.
Gilles Peskine8bf79f62018-01-05 21:11:53 +0100894 *
Gilles Peskine2481a712018-04-26 07:28:44 +0200895 * \return 0 if output of the operation is available in the
896 * \p output buffer.
897 * \return #MBEDTLS_ERR_SSL_ASYNC_IN_PROGRESS if the operation
898 * is still in progress. Subsequent requests for progress
899 * on the SSL connection will call the resume callback
900 * again.
901 * \return Any other error means that the operation is aborted.
Gilles Peskineac5e8a32018-04-26 11:50:07 +0200902 * The SSL handshake is aborted. The callback should
903 * use \c MBEDTLS_ERR_PK_xxx error codes, and <b>must not</b>
904 * use \c MBEDTLS_ERR_SSL_xxx error codes except as
Gilles Peskine9ceae8b2018-04-30 16:37:03 +0200905 * directed in the documentation of this callback.
Gilles Peskine8bf79f62018-01-05 21:11:53 +0100906 */
Gilles Peskine8f97af72018-04-26 11:46:10 +0200907typedef int mbedtls_ssl_async_resume_t( mbedtls_ssl_context *ssl,
Gilles Peskine8bf79f62018-01-05 21:11:53 +0100908 unsigned char *output,
909 size_t *output_len,
910 size_t output_size );
911
912/**
Gilles Peskinead28bf02018-04-26 00:19:16 +0200913 * \brief Callback type: cancel external operation.
Gilles Peskine8bf79f62018-01-05 21:11:53 +0100914 *
Gilles Peskinead28bf02018-04-26 00:19:16 +0200915 * This callback is called if an SSL connection is closed
Gilles Peskineea5fab82018-04-30 13:57:45 +0200916 * while an asynchronous operation is in progress. Note that
917 * this callback is not called if the
918 * ::mbedtls_ssl_async_resume_t callback has run and has
919 * returned a value other than
920 * #MBEDTLS_ERR_SSL_ASYNC_IN_PROGRESS, since in that case
921 * the asynchronous operation has already completed.
Gilles Peskine8bf79f62018-01-05 21:11:53 +0100922 *
Gilles Peskine1febfef2018-04-30 11:54:39 +0200923 * This function may call mbedtls_ssl_get_async_operation_data()
924 * to retrieve an operation context set by the start callback.
Gilles Peskinedf13d5c2018-04-25 20:39:48 +0200925 *
Gilles Peskinead28bf02018-04-26 00:19:16 +0200926 * \param ssl The SSL connection instance. It should not be
927 * modified.
Gilles Peskine8bf79f62018-01-05 21:11:53 +0100928 */
Gilles Peskine8f97af72018-04-26 11:46:10 +0200929typedef void mbedtls_ssl_async_cancel_t( mbedtls_ssl_context *ssl );
Gilles Peskineb74a1c72018-04-24 13:09:22 +0200930#endif /* MBEDTLS_SSL_ASYNC_PRIVATE */
Paul Bakker5121ce52009-01-03 21:22:43 +0000931
Hanno Becker2984bd22019-02-26 11:43:09 +0000932#if defined(MBEDTLS_KEY_EXCHANGE__WITH_CERT__ENABLED) && \
933 !defined(MBEDTLS_SSL_KEEP_PEER_CERTIFICATE)
Hanno Becker9fb6e2e2019-02-05 17:00:50 +0000934#define MBEDTLS_SSL_PEER_CERT_DIGEST_MAX_LEN 48
935#if defined(MBEDTLS_SHA256_C)
936#define MBEDTLS_SSL_PEER_CERT_DIGEST_DFL_TYPE MBEDTLS_MD_SHA256
937#define MBEDTLS_SSL_PEER_CERT_DIGEST_DFL_LEN 32
938#elif defined(MBEDTLS_SHA512_C)
939#define MBEDTLS_SSL_PEER_CERT_DIGEST_DFL_TYPE MBEDTLS_MD_SHA384
940#define MBEDTLS_SSL_PEER_CERT_DIGEST_DFL_LEN 48
941#elif defined(MBEDTLS_SHA1_C)
942#define MBEDTLS_SSL_PEER_CERT_DIGEST_DFL_TYPE MBEDTLS_MD_SHA1
943#define MBEDTLS_SSL_PEER_CERT_DIGEST_DFL_LEN 20
944#else
Hanno Becker2984bd22019-02-26 11:43:09 +0000945/* This is already checked in check_config.h, but be sure. */
Hanno Becker9fb6e2e2019-02-05 17:00:50 +0000946#error "Bad configuration - need SHA-1, SHA-256 or SHA-512 enabled to compute digest of peer CRT."
947#endif
Hanno Becker2984bd22019-02-26 11:43:09 +0000948#endif /* MBEDTLS_KEY_EXCHANGE__WITH_CERT__ENABLED &&
949 !MBEDTLS_SSL_KEEP_PEER_CERTIFICATE */
Hanno Becker9fb6e2e2019-02-05 17:00:50 +0000950
Paul Bakker5121ce52009-01-03 21:22:43 +0000951/*
Paul Bakker0a597072012-09-25 21:55:46 +0000952 * This structure is used for storing current session data.
Manuel Pégourié-Gonnard5363e1f2019-05-24 09:48:05 +0200953 *
954 * Note: when changing this definition, we need to check and update:
955 * - in tests/suites/test_suite_ssl.function:
Manuel Pégourié-Gonnard35ccdbb2019-06-03 09:55:16 +0200956 * ssl_populate_session() and ssl_serialize_session_save_load()
Manuel Pégourié-Gonnard5363e1f2019-05-24 09:48:05 +0200957 * - in library/ssl_tls.c:
958 * mbedtls_ssl_session_init() and mbedtls_ssl_session_free()
959 * mbedtls_ssl_session_save() and ssl_session_load()
960 * ssl_session_copy()
Paul Bakker5121ce52009-01-03 21:22:43 +0000961 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200962struct mbedtls_ssl_session
Paul Bakker5121ce52009-01-03 21:22:43 +0000963{
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200964#if defined(MBEDTLS_HAVE_TIME)
SimonBd5800b72016-04-26 07:43:27 +0100965 mbedtls_time_t start; /*!< starting time */
Paul Bakkerfa9b1002013-07-03 15:31:03 +0200966#endif
Hanno Becker73f4cb12019-06-27 13:51:07 +0100967#if !defined(MBEDTLS_SSL_CONF_SINGLE_CIPHERSUITE)
Paul Bakkere3166ce2011-01-27 17:40:50 +0000968 int ciphersuite; /*!< chosen ciphersuite */
Hanno Becker73f4cb12019-06-27 13:51:07 +0100969#endif /* MBEDTLS_SSL_CONF_SINGLE_CIPHERSUITE */
Hanno Becker88440552019-07-03 14:16:13 +0100970#if defined(MBEDTLS_ZLIB_SUPPORT)
Paul Bakker2770fbd2012-07-03 13:30:23 +0000971 int compression; /*!< chosen compression */
Hanno Becker88440552019-07-03 14:16:13 +0100972#endif /* MBEDTLS_ZLIB_SUPPORT */
Manuel Pégourié-Gonnard12ad7982015-06-18 15:50:37 +0200973 size_t id_len; /*!< session id length */
Paul Bakker5121ce52009-01-03 21:22:43 +0000974 unsigned char id[32]; /*!< session identifier */
975 unsigned char master[48]; /*!< the master secret */
Paul Bakkered27a042013-04-18 22:46:23 +0200976
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200977#if defined(MBEDTLS_X509_CRT_PARSE_C)
Hanno Becker2e6d3472019-02-06 15:40:27 +0000978#if defined(MBEDTLS_SSL_KEEP_PEER_CERTIFICATE)
Hanno Becker9fb6e2e2019-02-05 17:00:50 +0000979 mbedtls_x509_crt *peer_cert; /*!< peer X.509 cert chain */
Hanno Becker5882dd02019-06-06 16:25:57 +0100980#elif defined(MBEDTLS_SSL_RENEGOTIATION)
Hanno Becker9fb6e2e2019-02-05 17:00:50 +0000981 /*! The digest of the peer's end-CRT. This must be kept to detect CRT
982 * changes during renegotiation, mitigating the triple handshake attack. */
983 unsigned char *peer_cert_digest;
984 size_t peer_cert_digest_len;
985 mbedtls_md_type_t peer_cert_digest_type;
Hanno Becker5882dd02019-06-06 16:25:57 +0100986#endif /* !MBEDTLS_SSL_KEEP_PEER_CERTIFICATE && MBEDTLS_SSL_RENEGOTIATION */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200987#endif /* MBEDTLS_X509_CRT_PARSE_C */
Manuel Pégourié-Gonnarde6ef16f2015-05-11 19:54:43 +0200988 uint32_t verify_result; /*!< verification result */
Manuel Pégourié-Gonnarded4af8b2013-07-18 14:07:09 +0200989
Manuel Pégourié-Gonnardb596abf2015-05-20 10:45:29 +0200990#if defined(MBEDTLS_SSL_SESSION_TICKETS) && defined(MBEDTLS_SSL_CLI_C)
Manuel Pégourié-Gonnard75d44012013-08-02 14:44:04 +0200991 unsigned char *ticket; /*!< RFC 5077 session ticket */
992 size_t ticket_len; /*!< session ticket length */
Manuel Pégourié-Gonnarda5cc6022013-07-31 12:58:16 +0200993 uint32_t ticket_lifetime; /*!< ticket lifetime hint */
Manuel Pégourié-Gonnardb596abf2015-05-20 10:45:29 +0200994#endif /* MBEDTLS_SSL_SESSION_TICKETS && MBEDTLS_SSL_CLI_C */
Manuel Pégourié-Gonnard75d44012013-08-02 14:44:04 +0200995
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200996#if defined(MBEDTLS_SSL_MAX_FRAGMENT_LENGTH)
Manuel Pégourié-Gonnarded4af8b2013-07-18 14:07:09 +0200997 unsigned char mfl_code; /*!< MaxFragmentLength negotiated by peer */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200998#endif /* MBEDTLS_SSL_MAX_FRAGMENT_LENGTH */
Paul Bakker05decb22013-08-15 13:33:48 +0200999
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001000#if defined(MBEDTLS_SSL_TRUNCATED_HMAC)
Manuel Pégourié-Gonnard57c28522013-07-19 11:41:43 +02001001 int trunc_hmac; /*!< flag for truncated hmac activation */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001002#endif /* MBEDTLS_SSL_TRUNCATED_HMAC */
Manuel Pégourié-Gonnard699cafa2014-10-27 13:57:03 +01001003
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001004#if defined(MBEDTLS_SSL_ENCRYPT_THEN_MAC)
Manuel Pégourié-Gonnard699cafa2014-10-27 13:57:03 +01001005 int encrypt_then_mac; /*!< flag for EtM activation */
1006#endif
Paul Bakker5121ce52009-01-03 21:22:43 +00001007};
1008
Manuel Pégourié-Gonnardfa6473d2015-04-30 18:03:08 +02001009/**
Manuel Pégourié-Gonnard6729e792015-05-11 09:50:24 +02001010 * SSL/TLS configuration to be shared between mbedtls_ssl_context structures.
Manuel Pégourié-Gonnardfa6473d2015-04-30 18:03:08 +02001011 */
Manuel Pégourié-Gonnardcd4fcc62015-05-26 12:11:48 +02001012struct mbedtls_ssl_config
Manuel Pégourié-Gonnardfa6473d2015-04-30 18:03:08 +02001013{
1014 /* Group items by size (largest first) to minimize padding overhead */
1015
1016 /*
1017 * Pointers
1018 */
1019
Hanno Becker73f4cb12019-06-27 13:51:07 +01001020#if !defined(MBEDTLS_SSL_CONF_SINGLE_CIPHERSUITE)
Manuel Pégourié-Gonnard750e4d72015-05-07 12:35:38 +01001021 const int *ciphersuite_list[4]; /*!< allowed ciphersuites per version */
Hanno Becker73f4cb12019-06-27 13:51:07 +01001022#endif /* MBEDTLS_SSL_CONF_SINGLE_CIPHERSUITE */
Manuel Pégourié-Gonnardfa6473d2015-04-30 18:03:08 +02001023
Hanno Becker272063a2019-06-19 15:06:40 +01001024#if defined(MBEDTLS_DEBUG_C)
Manuel Pégourié-Gonnardfa6473d2015-04-30 18:03:08 +02001025 /** Callback for printing debug output */
Manuel Pégourié-Gonnardfd474232015-06-23 16:34:24 +02001026 void (*f_dbg)(void *, int, const char *, int, const char *);
Manuel Pégourié-Gonnardfa6473d2015-04-30 18:03:08 +02001027 void *p_dbg; /*!< context for the debug function */
Hanno Becker272063a2019-06-19 15:06:40 +01001028#endif /* MBEDTLS_DEBUG_C */
Manuel Pégourié-Gonnardfa6473d2015-04-30 18:03:08 +02001029
Hanno Beckerece325c2019-06-13 15:39:27 +01001030#if !defined(MBEDTLS_SSL_CONF_RNG)
Manuel Pégourié-Gonnard750e4d72015-05-07 12:35:38 +01001031 /** Callback for getting (pseudo-)random numbers */
1032 int (*f_rng)(void *, unsigned char *, size_t);
1033 void *p_rng; /*!< context for the RNG function */
Hanno Becker572d4482019-07-23 13:47:53 +01001034#endif /* !MBEDTLS_SSL_CONF_RNG */
Manuel Pégourié-Gonnard750e4d72015-05-07 12:35:38 +01001035
Manuel Pégourié-Gonnard33cb3e12019-07-01 11:14:18 +02001036#if defined(MBEDTLS_SSL_SRV_C) && !defined(MBEDTLS_SSL_NO_SESSION_CACHE)
Manuel Pégourié-Gonnardfa6473d2015-04-30 18:03:08 +02001037 /** Callback to retrieve a session from the cache */
1038 int (*f_get_cache)(void *, mbedtls_ssl_session *);
Manuel Pégourié-Gonnardfa6473d2015-04-30 18:03:08 +02001039 /** Callback to store a session into the cache */
1040 int (*f_set_cache)(void *, const mbedtls_ssl_session *);
Manuel Pégourié-Gonnard5cb33082015-05-06 18:06:26 +01001041 void *p_cache; /*!< context for cache callbacks */
Manuel Pégourié-Gonnard33cb3e12019-07-01 11:14:18 +02001042#endif /* MBEDTLS_SSL_SRV_C && !MBEDTLS_SSL_NO_SESSION_CACHE */
Manuel Pégourié-Gonnardfa6473d2015-04-30 18:03:08 +02001043
1044#if defined(MBEDTLS_SSL_SERVER_NAME_INDICATION)
1045 /** Callback for setting cert according to SNI extension */
1046 int (*f_sni)(void *, mbedtls_ssl_context *, const unsigned char *, size_t);
1047 void *p_sni; /*!< context for SNI callback */
1048#endif
1049
Hanno Becker9ec3fe02019-07-01 17:36:12 +01001050#if defined(MBEDTLS_X509_CRT_PARSE_C) && \
1051 !defined(MBEDTLS_X509_REMOVE_VERIFY_CALLBACK)
Manuel Pégourié-Gonnardfa6473d2015-04-30 18:03:08 +02001052 /** Callback to customize X.509 certificate chain verification */
Manuel Pégourié-Gonnarde6ef16f2015-05-11 19:54:43 +02001053 int (*f_vrfy)(void *, mbedtls_x509_crt *, int, uint32_t *);
Manuel Pégourié-Gonnardfa6473d2015-04-30 18:03:08 +02001054 void *p_vrfy; /*!< context for X.509 verify calllback */
1055#endif
1056
1057#if defined(MBEDTLS_KEY_EXCHANGE__SOME__PSK_ENABLED)
1058 /** Callback to retrieve PSK key from identity */
1059 int (*f_psk)(void *, mbedtls_ssl_context *, const unsigned char *, size_t);
1060 void *p_psk; /*!< context for PSK callback */
1061#endif
1062
Manuel Pégourié-Gonnarde057d3b2015-05-20 10:59:43 +02001063#if defined(MBEDTLS_SSL_DTLS_HELLO_VERIFY) && defined(MBEDTLS_SSL_SRV_C)
Manuel Pégourié-Gonnardfa6473d2015-04-30 18:03:08 +02001064 /** Callback to create & write a cookie for ClientHello veirifcation */
1065 int (*f_cookie_write)( void *, unsigned char **, unsigned char *,
1066 const unsigned char *, size_t );
1067 /** Callback to verify validity of a ClientHello cookie */
1068 int (*f_cookie_check)( void *, const unsigned char *, size_t,
1069 const unsigned char *, size_t );
Manuel Pégourié-Gonnard750e4d72015-05-07 12:35:38 +01001070 void *p_cookie; /*!< context for the cookie callbacks */
Manuel Pégourié-Gonnardfa6473d2015-04-30 18:03:08 +02001071#endif
1072
Manuel Pégourié-Gonnardb596abf2015-05-20 10:45:29 +02001073#if defined(MBEDTLS_SSL_SESSION_TICKETS) && defined(MBEDTLS_SSL_SRV_C)
Manuel Pégourié-Gonnardd59675d2015-05-19 15:28:00 +02001074 /** Callback to create & write a session ticket */
1075 int (*f_ticket_write)( void *, const mbedtls_ssl_session *,
1076 unsigned char *, const unsigned char *, size_t *, uint32_t * );
1077 /** Callback to parse a session ticket into a session structure */
1078 int (*f_ticket_parse)( void *, mbedtls_ssl_session *, unsigned char *, size_t);
1079 void *p_ticket; /*!< context for the ticket callbacks */
Manuel Pégourié-Gonnardb596abf2015-05-20 10:45:29 +02001080#endif /* MBEDTLS_SSL_SESSION_TICKETS && MBEDTLS_SSL_SRV_C */
Manuel Pégourié-Gonnardd59675d2015-05-19 15:28:00 +02001081
Robert Cragie4feb7ae2015-10-02 13:33:37 +01001082#if defined(MBEDTLS_SSL_EXPORT_KEYS)
Manuel Pégourié-Gonnard024b6df2015-10-19 13:52:53 +02001083 /** Callback to export key block and master secret */
Robert Cragie4feb7ae2015-10-02 13:33:37 +01001084 int (*f_export_keys)( void *, const unsigned char *,
1085 const unsigned char *, size_t, size_t, size_t );
1086 void *p_export_keys; /*!< context for key export callback */
1087#endif
1088
Hanno Beckera5a2b082019-05-15 14:03:01 +01001089#if defined(MBEDTLS_SSL_DTLS_CONNECTION_ID)
Hanno Beckere0200da2019-06-13 09:23:43 +01001090#if !defined(MBEDTLS_SSL_CONF_CID_LEN)
Hanno Beckereec2be92019-05-03 13:06:44 +01001091 size_t cid_len; /*!< The length of CIDs for incoming DTLS records. */
Hanno Beckere0200da2019-06-13 09:23:43 +01001092#endif /* !MBEDTLS_SSL_CONF_CID_LEN */
Hanno Beckera5a2b082019-05-15 14:03:01 +01001093#endif /* MBEDTLS_SSL_DTLS_CONNECTION_ID */
Hanno Beckereec2be92019-05-03 13:06:44 +01001094
Manuel Pégourié-Gonnardfa6473d2015-04-30 18:03:08 +02001095#if defined(MBEDTLS_X509_CRT_PARSE_C)
Manuel Pégourié-Gonnard36a8b572015-06-17 12:43:26 +02001096 const mbedtls_x509_crt_profile *cert_profile; /*!< verification profile */
Manuel Pégourié-Gonnardfa6473d2015-04-30 18:03:08 +02001097 mbedtls_ssl_key_cert *key_cert; /*!< own certificate/key pair(s) */
1098 mbedtls_x509_crt *ca_chain; /*!< trusted CAs */
1099 mbedtls_x509_crl *ca_crl; /*!< trusted CAs CRLs */
1100#endif /* MBEDTLS_X509_CRT_PARSE_C */
1101
Gilles Peskineb74a1c72018-04-24 13:09:22 +02001102#if defined(MBEDTLS_SSL_ASYNC_PRIVATE)
Gilles Peskine8bf79f62018-01-05 21:11:53 +01001103#if defined(MBEDTLS_X509_CRT_PARSE_C)
1104 mbedtls_ssl_async_sign_t *f_async_sign_start; /*!< start asynchronous signature operation */
1105 mbedtls_ssl_async_decrypt_t *f_async_decrypt_start; /*!< start asynchronous decryption operation */
1106#endif /* MBEDTLS_X509_CRT_PARSE_C */
1107 mbedtls_ssl_async_resume_t *f_async_resume; /*!< resume asynchronous operation */
1108 mbedtls_ssl_async_cancel_t *f_async_cancel; /*!< cancel asynchronous operation */
Gilles Peskine8f97af72018-04-26 11:46:10 +02001109 void *p_async_config_data; /*!< Configuration data set by mbedtls_ssl_conf_async_private_cb(). */
Gilles Peskineb74a1c72018-04-24 13:09:22 +02001110#endif /* MBEDTLS_SSL_ASYNC_PRIVATE */
Gilles Peskine8bf79f62018-01-05 21:11:53 +01001111
Manuel Pégourié-Gonnarde5f30722015-10-22 17:01:15 +02001112#if defined(MBEDTLS_KEY_EXCHANGE__WITH_CERT__ENABLED)
Hanno Becker56595f42019-06-19 16:31:38 +01001113#if !defined(MBEDTLS_SSL_CONF_SINGLE_SIG_HASH)
Manuel Pégourié-Gonnard36a8b572015-06-17 12:43:26 +02001114 const int *sig_hashes; /*!< allowed signature hashes */
Hanno Becker56595f42019-06-19 16:31:38 +01001115#endif /* !MBEDTLS_SSL_CONF_SINGLE_SIG_HASH */
Manuel Pégourié-Gonnard36a8b572015-06-17 12:43:26 +02001116#endif
1117
Manuel Pégourié-Gonnardb541da62015-06-17 11:43:30 +02001118#if defined(MBEDTLS_ECP_C)
Hanno Beckerc1096e72019-06-19 12:30:41 +01001119#if !defined(MBEDTLS_SSL_CONF_SINGLE_EC)
Manuel Pégourié-Gonnard750e4d72015-05-07 12:35:38 +01001120 const mbedtls_ecp_group_id *curve_list; /*!< allowed curves */
Hanno Beckerc1096e72019-06-19 12:30:41 +01001121#endif /* MBEDTLS_SSL_CONF_SINGLE_EC */
Manuel Pégourié-Gonnardfa6473d2015-04-30 18:03:08 +02001122#endif
1123
1124#if defined(MBEDTLS_DHM_C)
1125 mbedtls_mpi dhm_P; /*!< prime modulus for DHM */
1126 mbedtls_mpi dhm_G; /*!< generator for DHM */
1127#endif
1128
1129#if defined(MBEDTLS_KEY_EXCHANGE__SOME__PSK_ENABLED)
Azim Khanf4659ef2018-03-26 22:11:24 +01001130 unsigned char *psk; /*!< pre-shared key. This field should
1131 only be set via
1132 mbedtls_ssl_conf_psk() */
1133 size_t psk_len; /*!< length of the pre-shared key. This
1134 field should only be set via
1135 mbedtls_ssl_conf_psk() */
1136 unsigned char *psk_identity; /*!< identity for PSK negotiation. This
1137 field should only be set via
1138 mbedtls_ssl_conf_psk() */
1139 size_t psk_identity_len;/*!< length of identity. This field should
1140 only be set via
1141 mbedtls_ssl_conf_psk() */
Manuel Pégourié-Gonnardfa6473d2015-04-30 18:03:08 +02001142#endif
1143
1144#if defined(MBEDTLS_SSL_ALPN)
1145 const char **alpn_list; /*!< ordered list of protocols */
1146#endif
1147
1148 /*
1149 * Numerical settings (int then char)
1150 */
1151
Hanno Becker1f835fa2019-06-13 10:14:59 +01001152#if !defined(MBEDTLS_SSL_CONF_READ_TIMEOUT)
Manuel Pégourié-Gonnard7ca4e4d2015-05-04 10:55:58 +02001153 uint32_t read_timeout; /*!< timeout for mbedtls_ssl_read (ms) */
Hanno Becker1f835fa2019-06-13 10:14:59 +01001154#endif /* !MBEDTLS_SSL_CONF_READ_TIMEOUT */
Manuel Pégourié-Gonnard7ca4e4d2015-05-04 10:55:58 +02001155
Manuel Pégourié-Gonnardfa6473d2015-04-30 18:03:08 +02001156#if defined(MBEDTLS_SSL_PROTO_DTLS)
Hanno Becker1f835fa2019-06-13 10:14:59 +01001157#if !defined(MBEDTLS_SSL_CONF_HS_TIMEOUT_MIN)
Manuel Pégourié-Gonnardfa6473d2015-04-30 18:03:08 +02001158 uint32_t hs_timeout_min; /*!< initial value of the handshake
Manuel Pégourié-Gonnard7ca4e4d2015-05-04 10:55:58 +02001159 retransmission timeout (ms) */
Hanno Becker1f835fa2019-06-13 10:14:59 +01001160#endif /* !MBEDTLS_SSL_CONF_HS_TIMEOUT_MIN */
1161#if !defined(MBEDTLS_SSL_CONF_HS_TIMEOUT_MAX)
Manuel Pégourié-Gonnardfa6473d2015-04-30 18:03:08 +02001162 uint32_t hs_timeout_max; /*!< maximum value of the handshake
Manuel Pégourié-Gonnard7ca4e4d2015-05-04 10:55:58 +02001163 retransmission timeout (ms) */
Hanno Becker1f835fa2019-06-13 10:14:59 +01001164#endif /* !MBEDTLS_SSL_CONF_HS_TIMEOUT_MAX */
1165#endif /* MBEDTLS_SSL_PROTO_DTLS */
Manuel Pégourié-Gonnardfa6473d2015-04-30 18:03:08 +02001166
1167#if defined(MBEDTLS_SSL_RENEGOTIATION)
1168 int renego_max_records; /*!< grace period for renegotiation */
1169 unsigned char renego_period[8]; /*!< value of the record counters
1170 that triggers renegotiation */
1171#endif
1172
1173#if defined(MBEDTLS_SSL_DTLS_BADMAC_LIMIT)
Hanno Beckerde671542019-06-12 16:30:46 +01001174#if !defined(MBEDTLS_SSL_CONF_BADMAC_LIMIT)
Manuel Pégourié-Gonnardfa6473d2015-04-30 18:03:08 +02001175 unsigned int badmac_limit; /*!< limit of records with a bad MAC */
Hanno Beckerde671542019-06-12 16:30:46 +01001176#endif /* !MBEDTLS_SSL_CONF_BADMAC_LIMIT */
Manuel Pégourié-Gonnardfa6473d2015-04-30 18:03:08 +02001177#endif
1178
Manuel Pégourié-Gonnardbd990d62015-06-11 14:49:42 +02001179#if defined(MBEDTLS_DHM_C) && defined(MBEDTLS_SSL_CLI_C)
1180 unsigned int dhm_min_bitlen; /*!< min. bit length of the DHM prime */
1181#endif
1182
Hanno Beckere965bd32019-06-12 14:04:34 +01001183#if !defined(MBEDTLS_SSL_CONF_MIN_MAJOR_VER)
Manuel Pégourié-Gonnardfa6473d2015-04-30 18:03:08 +02001184 unsigned char min_major_ver; /*!< min. major version used */
Hanno Beckere965bd32019-06-12 14:04:34 +01001185#endif /* !MBEDTLS_SSL_CONF_MIN_MAJOR_VER */
Hanno Beckerd5cfe6f2019-07-26 11:59:45 +01001186#if !defined(MBEDTLS_SSL_CONF_MAX_MAJOR_VER)
1187 unsigned char max_major_ver; /*!< max. major version used */
1188#endif /* !MBEDTLS_SSL_CONF_MAX_MAJOR_VER */
Hanno Beckere965bd32019-06-12 14:04:34 +01001189#if !defined(MBEDTLS_SSL_CONF_MIN_MINOR_VER)
Hanno Beckerd5cfe6f2019-07-26 11:59:45 +01001190 uint16_t min_minor_ver; /*!< min. minor version used */
Hanno Beckere965bd32019-06-12 14:04:34 +01001191#endif /* !MBEDTLS_SSL_CONF_MIN_MINOR_VER */
Hanno Beckerd5cfe6f2019-07-26 11:59:45 +01001192#if !defined(MBEDTLS_SSL_CONF_MAX_MINOR_VER)
1193 uint16_t max_minor_ver; /*!< max. minor version used */
1194#endif /* !MBEDTLS_SSL_CONF_MAX_MINOR_VER */
Manuel Pégourié-Gonnardfa6473d2015-04-30 18:03:08 +02001195
Manuel Pégourié-Gonnardfa6473d2015-04-30 18:03:08 +02001196 /*
1197 * Flags (bitfields)
1198 */
1199
Hanno Becker2d9623f2019-06-13 12:07:05 +01001200#if !defined(MBEDTLS_SSL_CONF_ENDPOINT)
Manuel Pégourié-Gonnardfa6473d2015-04-30 18:03:08 +02001201 unsigned int endpoint : 1; /*!< 0: client, 1: server */
Hanno Becker2d9623f2019-06-13 12:07:05 +01001202#endif /* !MBEDTLS_SSL_CONF_ENDPOINT */
Kevin Bracey585e9e02020-11-03 12:22:27 +02001203#if !defined(MBEDTLS_SSL_CONF_TRANSPORT)
Manuel Pégourié-Gonnardfa6473d2015-04-30 18:03:08 +02001204 unsigned int transport : 1; /*!< stream (TLS) or datagram (DTLS) */
Kevin Bracey585e9e02020-11-03 12:22:27 +02001205#endif /* !MBEDTLS_SSL_CONF_TRANSPORT */
Hanno Beckeracd4fc02019-06-12 16:40:50 +01001206#if !defined(MBEDTLS_SSL_CONF_AUTHMODE)
Jarno Lamsa616fbe12019-12-19 16:00:31 +02001207 unsigned int authmode : 6; /*!< MBEDTLS_SSL_VERIFY_XXX */
Hanno Beckeracd4fc02019-06-12 16:40:50 +01001208#endif /* !MBEDTLS_SSL_CONF_AUTHMODE */
Hanno Beckerb0b2b672019-06-12 16:58:10 +01001209#if !defined(MBEDTLS_SSL_CONF_ALLOW_LEGACY_RENEGOTIATION)
Manuel Pégourié-Gonnardfa6473d2015-04-30 18:03:08 +02001210 /* needed even with renego disabled for LEGACY_BREAK_HANDSHAKE */
1211 unsigned int allow_legacy_renegotiation : 2 ; /*!< MBEDTLS_LEGACY_XXX */
Hanno Beckerb0b2b672019-06-12 16:58:10 +01001212#endif /* !MBEDTLS_SSL_CONF_ALLOW_LEGACY_RENEGOTIATION */
Manuel Pégourié-Gonnard66dc5552015-05-14 12:28:21 +02001213#if defined(MBEDTLS_ARC4_C)
1214 unsigned int arc4_disabled : 1; /*!< blacklist RC4 ciphersuites? */
1215#endif
Manuel Pégourié-Gonnarde51bba02015-05-06 09:33:13 +01001216#if defined(MBEDTLS_SSL_MAX_FRAGMENT_LENGTH)
1217 unsigned int mfl_code : 3; /*!< desired fragment length */
1218#endif
Manuel Pégourié-Gonnardfa6473d2015-04-30 18:03:08 +02001219#if defined(MBEDTLS_SSL_ENCRYPT_THEN_MAC)
1220 unsigned int encrypt_then_mac : 1 ; /*!< negotiate encrypt-then-mac? */
1221#endif
1222#if defined(MBEDTLS_SSL_EXTENDED_MASTER_SECRET)
Hanno Beckeraabbb582019-06-11 13:43:27 +01001223#if !defined(MBEDTLS_SSL_CONF_EXTENDED_MASTER_SECRET)
Manuel Pégourié-Gonnardfa6473d2015-04-30 18:03:08 +02001224 unsigned int extended_ms : 1; /*!< negotiate extended master secret? */
Hanno Beckeraabbb582019-06-11 13:43:27 +01001225#endif /* !MBEDTLS_SSL_EXTENDED_MASTER_SECRET */
1226#if !defined(MBEDTLS_SSL_CONF_ENFORCE_EXTENDED_MASTER_SECRET)
Jarno Lamsa7a5e2be2019-06-10 10:13:03 +03001227 unsigned int enforce_extended_master_secret : 1; /*!< enforce the usage
1228 * of extended master
1229 * secret */
Hanno Beckeraabbb582019-06-11 13:43:27 +01001230#endif /* !MBEDTLS_SSL_CONF_ENFORCE_EXTENDED_MASTER_SECRET */
Manuel Pégourié-Gonnardfa6473d2015-04-30 18:03:08 +02001231#endif
1232#if defined(MBEDTLS_SSL_DTLS_ANTI_REPLAY)
Hanno Becker7f376f42019-06-12 16:20:48 +01001233#if !defined(MBEDTLS_SSL_CONF_ANTI_REPLAY)
Manuel Pégourié-Gonnardfa6473d2015-04-30 18:03:08 +02001234 unsigned int anti_replay : 1; /*!< detect and prevent replay? */
Hanno Becker7f376f42019-06-12 16:20:48 +01001235#endif /* !MBEDTLS_SSL_CONF_ANTI_REPLAY */
1236#endif /* MBEDTLS_SSL_DTLS_ANTI_REPLAY */
Manuel Pégourié-Gonnardfa6473d2015-04-30 18:03:08 +02001237#if defined(MBEDTLS_SSL_CBC_RECORD_SPLITTING)
1238 unsigned int cbc_record_splitting : 1; /*!< do cbc record splitting */
1239#endif
1240#if defined(MBEDTLS_SSL_RENEGOTIATION)
1241 unsigned int disable_renegotiation : 1; /*!< disable renegotiation? */
1242#endif
1243#if defined(MBEDTLS_SSL_TRUNCATED_HMAC)
1244 unsigned int trunc_hmac : 1; /*!< negotiate truncated hmac? */
1245#endif
1246#if defined(MBEDTLS_SSL_SESSION_TICKETS)
1247 unsigned int session_tickets : 1; /*!< use session tickets? */
1248#endif
Manuel Pégourié-Gonnard684b0592015-05-06 09:27:31 +01001249#if defined(MBEDTLS_SSL_FALLBACK_SCSV) && defined(MBEDTLS_SSL_CLI_C)
1250 unsigned int fallback : 1; /*!< is this a fallback? */
1251#endif
Janos Follath088ce432017-04-10 12:42:31 +01001252#if defined(MBEDTLS_SSL_SRV_C)
Hanno Beckerc2cfdaa2019-06-13 12:33:03 +01001253#if !defined(MBEDTLS_SSL_CONF_CERT_REQ_CA_LIST)
Janos Follath088ce432017-04-10 12:42:31 +01001254 unsigned int cert_req_ca_list : 1; /*!< enable sending CA list in
1255 Certificate Request messages? */
Hanno Beckerc2cfdaa2019-06-13 12:33:03 +01001256#endif /* !MBEDTLS_SSL_CONF_CERT_REQ_CA_LIST */
Janos Follath088ce432017-04-10 12:42:31 +01001257#endif
Hanno Beckera5a2b082019-05-15 14:03:01 +01001258#if defined(MBEDTLS_SSL_DTLS_CONNECTION_ID)
Hanno Beckere0200da2019-06-13 09:23:43 +01001259#if !defined(MBEDTLS_SSL_CONF_IGNORE_UNEXPECTED_CID)
Hanno Beckere8eff9a2019-05-14 11:30:10 +01001260 unsigned int ignore_unexpected_cid : 1; /*!< Determines whether DTLS
1261 * record with unexpected CID
1262 * should lead to failure. */
Hanno Beckere0200da2019-06-13 09:23:43 +01001263#endif /* !MBEDTLS_SSL_CONF_IGNORE_UNEXPECTED_CID */
Hanno Beckera5a2b082019-05-15 14:03:01 +01001264#endif /* MBEDTLS_SSL_DTLS_CONNECTION_ID */
Manuel Pégourié-Gonnardcd4fcc62015-05-26 12:11:48 +02001265};
1266
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001267struct mbedtls_ssl_context
Paul Bakker5121ce52009-01-03 21:22:43 +00001268{
Teppo Järvelin648fbba2019-08-29 13:33:56 +03001269#if defined(MBEDTLS_SSL_PROTO_DTLS)
1270 uint8_t disable_datagram_packing; /*!< Disable packing multiple records
1271 * within a single datagram. */
1272#endif /* MBEDTLS_SSL_PROTO_DTLS */
1273#if defined(MBEDTLS_SSL_DTLS_CONNECTION_ID)
1274 /* CID configuration to use in subsequent handshakes. */
1275 uint8_t own_cid_len; /*!< The length of \c own_cid. */
1276 uint8_t negotiate_cid; /*!< This indicates whether the CID extension should
1277 * be negotiated in the next handshake or not.
1278 * Possible values are #MBEDTLS_SSL_CID_ENABLED
1279 * and #MBEDTLS_SSL_CID_DISABLED. */
1280#endif /* MBEDTLS_SSL_DTLS_CONNECTION_ID */
Manuel Pégourié-Gonnard7ca4e4d2015-05-04 10:55:58 +02001281
Hanno Becker50d53212019-07-25 12:54:16 +01001282 unsigned char pending_fatal_alert_msg; /*!< Type of a fatal alert
1283 * pending to be delivered. */
Teppo Järvelin648fbba2019-08-29 13:33:56 +03001284#if defined(MBEDTLS_SSL_PROTO_DTLS)
1285 uint16_t in_epoch; /*!< DTLS epoch for incoming records */
1286 uint16_t mtu; /*!< path mtu, used to fragment outgoing messages */
1287#endif /* MBEDTLS_SSL_PROTO_DTLS */
1288 const mbedtls_ssl_config *conf; /*!< configuration information */
Hanno Beckerf46e1ce2019-07-03 13:56:59 +01001289
Paul Bakker5121ce52009-01-03 21:22:43 +00001290 /*
1291 * Miscellaneous
1292 */
1293 int state; /*!< SSL handshake: current state */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001294#if defined(MBEDTLS_SSL_RENEGOTIATION)
Manuel Pégourié-Gonnard852a6d32015-03-19 16:15:20 +00001295 int renego_status; /*!< Initial, in progress, pending? */
Manuel Pégourié-Gonnarddf3acd82014-10-15 15:07:45 +02001296 int renego_records_seen; /*!< Records since renego request, or with DTLS,
1297 number of retransmissions of request if
1298 renego_max_records is < 0 */
Hanno Beckerbc2498a2018-08-28 10:13:29 +01001299#endif /* MBEDTLS_SSL_RENEGOTIATION */
Paul Bakker5121ce52009-01-03 21:22:43 +00001300
Hanno Becker381eaa52019-06-12 14:43:01 +01001301#if !defined(MBEDTLS_SSL_CONF_FIXED_MAJOR_VER)
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001302 int major_ver; /*!< equal to MBEDTLS_SSL_MAJOR_VERSION_3 */
Hanno Becker381eaa52019-06-12 14:43:01 +01001303#endif /* !MBEDTLS_SSL_CONF_FIXED_MAJOR_VER */
1304#if !defined(MBEDTLS_SSL_CONF_FIXED_MINOR_VER)
Paul Bakker5121ce52009-01-03 21:22:43 +00001305 int minor_ver; /*!< either 0 (SSL3) or 1 (TLS1.0) */
Hanno Becker381eaa52019-06-12 14:43:01 +01001306#endif /* !MBEDTLS_SSL_CONF_FIXED_MINOR_VER */
Paul Bakker5121ce52009-01-03 21:22:43 +00001307
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001308#if defined(MBEDTLS_SSL_DTLS_BADMAC_LIMIT)
Manuel Pégourié-Gonnardb0643d12014-10-14 18:30:36 +02001309 unsigned badmac_seen; /*!< records with a bad MAC received */
Hanno Beckerbc2498a2018-08-28 10:13:29 +01001310#endif /* MBEDTLS_SSL_DTLS_BADMAC_LIMIT */
Manuel Pégourié-Gonnardb0643d12014-10-14 18:30:36 +02001311
Hanno Beckera58a8962019-06-13 16:11:15 +01001312#if !defined(MBEDTLS_SSL_CONF_SEND)
Simon Butchere846b512016-03-01 17:31:49 +00001313 mbedtls_ssl_send_t *f_send; /*!< Callback for network send */
Hanno Beckera58a8962019-06-13 16:11:15 +01001314#endif /* !MBEDTLS_SSL_CONF_SEND */
1315#if !defined(MBEDTLS_SSL_CONF_RECV)
Simon Butchere846b512016-03-01 17:31:49 +00001316 mbedtls_ssl_recv_t *f_recv; /*!< Callback for network receive */
Hanno Beckera58a8962019-06-13 16:11:15 +01001317#endif /* !MBEDTLS_SSL_CONF_RECV */
1318#if !defined(MBEDTLS_SSL_CONF_RECV_TIMEOUT)
Simon Butchere846b512016-03-01 17:31:49 +00001319 mbedtls_ssl_recv_timeout_t *f_recv_timeout;
Hanno Beckera58a8962019-06-13 16:11:15 +01001320#endif /* !MBEDTLS_SSL_CONF_RECV_TIMEOUT */
Simon Butchere846b512016-03-01 17:31:49 +00001321 /*!< Callback for network receive with timeout */
1322
Manuel Pégourié-Gonnarde6bdc442014-09-17 11:34:57 +02001323 void *p_bio; /*!< context for I/O operations */
Paul Bakker6db455e2013-09-18 17:29:31 +02001324
Paul Bakker5121ce52009-01-03 21:22:43 +00001325 /*
1326 * Session layer
1327 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001328 mbedtls_ssl_session *session_in; /*!< current session data (in) */
1329 mbedtls_ssl_session *session_out; /*!< current session data (out) */
1330 mbedtls_ssl_session *session; /*!< negotiated session data */
1331 mbedtls_ssl_session *session_negotiate; /*!< session data in negotiation */
Paul Bakker5121ce52009-01-03 21:22:43 +00001332
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001333 mbedtls_ssl_handshake_params *handshake; /*!< params required only during
Paul Bakker48916f92012-09-16 19:57:18 +00001334 the handshake process */
1335
1336 /*
1337 * Record layer transformations
1338 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001339 mbedtls_ssl_transform *transform_in; /*!< current transform params (in) */
1340 mbedtls_ssl_transform *transform_out; /*!< current transform params (in) */
1341 mbedtls_ssl_transform *transform; /*!< negotiated transform params */
1342 mbedtls_ssl_transform *transform_negotiate; /*!< transform params in negotiation */
Paul Bakker48916f92012-09-16 19:57:18 +00001343
Paul Bakker5121ce52009-01-03 21:22:43 +00001344 /*
Manuel Pégourié-Gonnard8e704f02014-10-14 20:03:35 +02001345 * Timers
Manuel Pégourié-Gonnarddb2858c2014-09-29 14:04:42 +02001346 */
Manuel Pégourié-Gonnard2e012912015-05-12 20:55:41 +02001347 void *p_timer; /*!< context for the timer callbacks */
Simon Butchere846b512016-03-01 17:31:49 +00001348
Hanno Becker0ae6b242019-06-13 16:45:36 +01001349#if !defined(MBEDTLS_SSL_CONF_SET_TIMER)
Simon Butchere846b512016-03-01 17:31:49 +00001350 mbedtls_ssl_set_timer_t *f_set_timer; /*!< set timer callback */
Hanno Becker0ae6b242019-06-13 16:45:36 +01001351#endif /* !MBEDTLS_SSL_CONF_SET_TIMER */
1352#if !defined(MBEDTLS_SSL_CONF_GET_TIMER)
Simon Butchere846b512016-03-01 17:31:49 +00001353 mbedtls_ssl_get_timer_t *f_get_timer; /*!< get timer callback */
Hanno Becker0ae6b242019-06-13 16:45:36 +01001354#endif /* !MBEDTLS_SSL_CONF_GET_TIMER */
Manuel Pégourié-Gonnard905dd242014-10-01 12:03:55 +02001355
Manuel Pégourié-Gonnarddb2858c2014-09-29 14:04:42 +02001356 /*
Paul Bakker5121ce52009-01-03 21:22:43 +00001357 * Record layer (incoming data)
1358 */
Manuel Pégourié-Gonnard7ee6f0e2014-02-13 10:54:07 +01001359 unsigned char *in_buf; /*!< input buffer */
Manuel Pégourié-Gonnard246c13a2014-09-24 13:56:09 +02001360 unsigned char *in_ctr; /*!< 64-bit incoming message counter
1361 TLS: maintained by us
1362 DTLS: read from peer */
Manuel Pégourié-Gonnard7ee6f0e2014-02-13 10:54:07 +01001363 unsigned char *in_hdr; /*!< start of record header */
Hanno Beckera5a2b082019-05-15 14:03:01 +01001364#if defined(MBEDTLS_SSL_DTLS_CONNECTION_ID)
Hanno Becker70e79282019-05-03 14:34:53 +01001365 unsigned char *in_cid; /*!< The start of the CID;
1366 * (the end is marked by in_len). */
Hanno Beckera5a2b082019-05-15 14:03:01 +01001367#endif /* MBEDTLS_SSL_DTLS_CONNECTION_ID */
Manuel Pégourié-Gonnard7ee6f0e2014-02-13 10:54:07 +01001368 unsigned char *in_len; /*!< two-bytes message length field */
Paul Bakker92be97b2013-01-02 17:30:03 +01001369 unsigned char *in_msg; /*!< message contents (in_iv+ivlen) */
Paul Bakker5121ce52009-01-03 21:22:43 +00001370 unsigned char *in_offt; /*!< read offset in application data */
1371
1372 int in_msgtype; /*!< record header: message type */
Paul Bakker23986e52011-04-24 08:57:21 +00001373 size_t in_msglen; /*!< record header: message length */
1374 size_t in_left; /*!< amount of data read so far */
Andrzej Kurekf3844952020-10-16 23:03:01 +02001375#if defined(MBEDTLS_SSL_VARIABLE_BUFFER_LENGTH)
1376 size_t in_buf_len; /*!< length of input buffer */
1377#endif
1378
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001379#if defined(MBEDTLS_SSL_PROTO_DTLS)
Manuel Pégourié-Gonnard64dffc52014-09-02 13:39:16 +02001380 size_t next_record_offset; /*!< offset of the next record in datagram
1381 (equal to in_left if none) */
Hanno Beckerbc2498a2018-08-28 10:13:29 +01001382#endif /* MBEDTLS_SSL_PROTO_DTLS */
Paul Bakker5121ce52009-01-03 21:22:43 +00001383
Manuel Pégourié-Gonnard9d1d7192014-09-03 11:01:14 +02001384 size_t in_hslen; /*!< current handshake message length,
1385 including the handshake header */
Paul Bakker5121ce52009-01-03 21:22:43 +00001386 int nb_zero; /*!< # of 0-length encrypted messages */
Hanno Beckeraf0665d2017-05-24 09:16:26 +01001387
1388 int keep_current_message; /*!< drop or reuse current message
1389 on next call to record layer? */
Paul Bakker5121ce52009-01-03 21:22:43 +00001390
1391 /*
1392 * Record layer (outgoing data)
1393 */
Manuel Pégourié-Gonnard7ee6f0e2014-02-13 10:54:07 +01001394 unsigned char *out_buf; /*!< output buffer */
Paul Bakker5121ce52009-01-03 21:22:43 +00001395 unsigned char *out_ctr; /*!< 64-bit outgoing message counter */
Manuel Pégourié-Gonnard7ee6f0e2014-02-13 10:54:07 +01001396 unsigned char *out_hdr; /*!< start of record header */
Hanno Beckera5a2b082019-05-15 14:03:01 +01001397#if defined(MBEDTLS_SSL_DTLS_CONNECTION_ID)
Hanno Becker70e79282019-05-03 14:34:53 +01001398 unsigned char *out_cid; /*!< The start of the CID;
1399 * (the end is marked by in_len). */
Hanno Beckera5a2b082019-05-15 14:03:01 +01001400#endif /* MBEDTLS_SSL_DTLS_CONNECTION_ID */
Manuel Pégourié-Gonnard7ee6f0e2014-02-13 10:54:07 +01001401 unsigned char *out_len; /*!< two-bytes message length field */
1402 unsigned char *out_iv; /*!< ivlen-byte IV */
Paul Bakker92be97b2013-01-02 17:30:03 +01001403 unsigned char *out_msg; /*!< message contents (out_iv+ivlen) */
Paul Bakker5121ce52009-01-03 21:22:43 +00001404
1405 int out_msgtype; /*!< record header: message type */
Paul Bakker23986e52011-04-24 08:57:21 +00001406 size_t out_msglen; /*!< record header: message length */
1407 size_t out_left; /*!< amount of data not yet written */
Andrzej Kurekf3844952020-10-16 23:03:01 +02001408#if defined(MBEDTLS_SSL_VARIABLE_BUFFER_LENGTH)
1409 size_t out_buf_len; /*!< length of output buffer */
1410#endif
Paul Bakker5121ce52009-01-03 21:22:43 +00001411
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001412#if defined(MBEDTLS_ZLIB_SUPPORT)
Paul Bakker16770332013-10-11 09:59:44 +02001413 unsigned char *compress_buf; /*!< zlib data buffer */
Hanno Beckerbc2498a2018-08-28 10:13:29 +01001414#endif /* MBEDTLS_ZLIB_SUPPORT */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001415#if defined(MBEDTLS_SSL_CBC_RECORD_SPLITTING)
Manuel Pégourié-Gonnard17eab2b2015-05-05 16:34:53 +01001416 signed char split_done; /*!< current record already splitted? */
Hanno Beckerbc2498a2018-08-28 10:13:29 +01001417#endif /* MBEDTLS_SSL_CBC_RECORD_SPLITTING */
Manuel Pégourié-Gonnard8b464592013-07-16 12:45:26 +02001418
Paul Bakker5121ce52009-01-03 21:22:43 +00001419 /*
1420 * PKI layer
1421 */
Manuel Pégourié-Gonnard7ca4e4d2015-05-04 10:55:58 +02001422 int client_auth; /*!< flag for client auth. */
Manuel Pégourié-Gonnard7ca4e4d2015-05-04 10:55:58 +02001423
Manuel Pégourié-Gonnard779e4292013-08-03 13:50:48 +02001424 /*
Paul Bakker48916f92012-09-16 19:57:18 +00001425 * User settings
1426 */
Teppo Järvelin4009d8f2019-08-19 14:48:09 +03001427#if defined(MBEDTLS_X509_CRT_PARSE_C) && !defined(MBEDTLS_X509_REMOVE_HOSTNAME_VERIFICATION)
Manuel Pégourié-Gonnardbc2b7712015-05-06 11:14:19 +01001428 char *hostname; /*!< expected peer CN for verification
1429 (and SNI if available) */
Teppo Järvelin4009d8f2019-08-19 14:48:09 +03001430#endif /* MBEDTLS_X509_CRT_PARSE_C && !MBEDTLS_X509_REMOVE_HOSTNAME_VERIFICATION */
Paul Bakker48916f92012-09-16 19:57:18 +00001431
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001432#if defined(MBEDTLS_SSL_ALPN)
Manuel Pégourié-Gonnard7e250d42014-04-04 16:08:41 +02001433 const char *alpn_chosen; /*!< negotiated protocol */
Hanno Beckerbc2498a2018-08-28 10:13:29 +01001434#endif /* MBEDTLS_SSL_ALPN */
Manuel Pégourié-Gonnard7e250d42014-04-04 16:08:41 +02001435
Paul Bakker48916f92012-09-16 19:57:18 +00001436 /*
Manuel Pégourié-Gonnardd485d192014-07-23 14:56:15 +02001437 * Information for DTLS hello verify
Manuel Pégourié-Gonnard43c02182014-07-22 17:32:01 +02001438 */
Manuel Pégourié-Gonnarde057d3b2015-05-20 10:59:43 +02001439#if defined(MBEDTLS_SSL_DTLS_HELLO_VERIFY) && defined(MBEDTLS_SSL_SRV_C)
Manuel Pégourié-Gonnard43c02182014-07-22 17:32:01 +02001440 unsigned char *cli_id; /*!< transport-level ID of the client */
1441 size_t cli_id_len; /*!< length of cli_id */
Hanno Beckerbc2498a2018-08-28 10:13:29 +01001442#endif /* MBEDTLS_SSL_DTLS_HELLO_VERIFY && MBEDTLS_SSL_SRV_C */
Manuel Pégourié-Gonnard43c02182014-07-22 17:32:01 +02001443
1444 /*
Paul Bakker48916f92012-09-16 19:57:18 +00001445 * Secure renegotiation
1446 */
Manuel Pégourié-Gonnard3b2c0d62015-03-10 13:20:49 +00001447 /* needed to know when to send extension on server */
Paul Bakker48916f92012-09-16 19:57:18 +00001448 int secure_renegotiation; /*!< does peer support legacy or
1449 secure renegotiation */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001450#if defined(MBEDTLS_SSL_RENEGOTIATION)
Paul Bakker48916f92012-09-16 19:57:18 +00001451 size_t verify_data_len; /*!< length of verify data stored */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001452 char own_verify_data[MBEDTLS_SSL_VERIFY_DATA_MAX_LEN]; /*!< previous handshake verify data */
1453 char peer_verify_data[MBEDTLS_SSL_VERIFY_DATA_MAX_LEN]; /*!< previous handshake verify data */
Hanno Beckerbc2498a2018-08-28 10:13:29 +01001454#endif /* MBEDTLS_SSL_RENEGOTIATION */
Hanno Beckere5e7f622019-04-25 15:46:59 +01001455
Teppo Järvelin648fbba2019-08-29 13:33:56 +03001456 unsigned char cur_out_ctr[8]; /*!< Outgoing record sequence number. */
1457
1458#if defined(MBEDTLS_SSL_DTLS_ANTI_REPLAY)
1459 uint64_t in_window_top; /*!< last validated record seq_num */
1460 uint64_t in_window; /*!< bitmask for replay detection */
1461#endif /* MBEDTLS_SSL_DTLS_ANTI_REPLAY */
1462
Hanno Beckera5a2b082019-05-15 14:03:01 +01001463#if defined(MBEDTLS_SSL_DTLS_CONNECTION_ID)
Hanno Beckere5e7f622019-04-25 15:46:59 +01001464 /* CID configuration to use in subsequent handshakes. */
1465
1466 /*! The next incoming CID, chosen by the user and applying to
1467 * all subsequent handshakes. This may be different from the
1468 * CID currently used in case the user has re-configured the CID
1469 * after an initial handshake. */
1470 unsigned char own_cid[ MBEDTLS_SSL_CID_IN_LEN_MAX ];
Hanno Beckera5a2b082019-05-15 14:03:01 +01001471#endif /* MBEDTLS_SSL_DTLS_CONNECTION_ID */
shelib014062d6c2020-07-21 11:54:52 +03001472#if defined(MBEDTLS_FI_COUNTERMEASURES)
1473 unsigned char *out_msg_dup; /*!< out msg ptr duplication */
1474 size_t out_msglen_dup; /*!< out msg size duplication */
1475#endif
Paul Bakker5121ce52009-01-03 21:22:43 +00001476};
1477
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001478#if defined(MBEDTLS_SSL_HW_RECORD_ACCEL)
Paul Bakker07eb38b2012-12-19 14:42:06 +01001479
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001480#define MBEDTLS_SSL_CHANNEL_OUTBOUND 0
1481#define MBEDTLS_SSL_CHANNEL_INBOUND 1
Paul Bakker07eb38b2012-12-19 14:42:06 +01001482
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001483extern int (*mbedtls_ssl_hw_record_init)(mbedtls_ssl_context *ssl,
Paul Bakker05ef8352012-05-08 09:17:57 +00001484 const unsigned char *key_enc, const unsigned char *key_dec,
Paul Bakker07eb38b2012-12-19 14:42:06 +01001485 size_t keylen,
Paul Bakker05ef8352012-05-08 09:17:57 +00001486 const unsigned char *iv_enc, const unsigned char *iv_dec,
Paul Bakker07eb38b2012-12-19 14:42:06 +01001487 size_t ivlen,
1488 const unsigned char *mac_enc, const unsigned char *mac_dec,
1489 size_t maclen);
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001490extern int (*mbedtls_ssl_hw_record_activate)(mbedtls_ssl_context *ssl, int direction);
1491extern int (*mbedtls_ssl_hw_record_reset)(mbedtls_ssl_context *ssl);
1492extern int (*mbedtls_ssl_hw_record_write)(mbedtls_ssl_context *ssl);
1493extern int (*mbedtls_ssl_hw_record_read)(mbedtls_ssl_context *ssl);
1494extern int (*mbedtls_ssl_hw_record_finish)(mbedtls_ssl_context *ssl);
1495#endif /* MBEDTLS_SSL_HW_RECORD_ACCEL */
Paul Bakker05ef8352012-05-08 09:17:57 +00001496
Paul Bakker5121ce52009-01-03 21:22:43 +00001497/**
Paul Bakkerb9e4e2c2014-05-01 14:18:25 +02001498 * \brief Return the name of the ciphersuite associated with the
1499 * given ID
Paul Bakker72f62662011-01-16 21:27:44 +00001500 *
Paul Bakkere3166ce2011-01-27 17:40:50 +00001501 * \param ciphersuite_id SSL ciphersuite ID
Paul Bakker72f62662011-01-16 21:27:44 +00001502 *
Paul Bakkere3166ce2011-01-27 17:40:50 +00001503 * \return a string containing the ciphersuite name
Paul Bakker72f62662011-01-16 21:27:44 +00001504 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001505const char *mbedtls_ssl_get_ciphersuite_name( const int ciphersuite_id );
Paul Bakkere3166ce2011-01-27 17:40:50 +00001506
1507/**
Paul Bakkerb9e4e2c2014-05-01 14:18:25 +02001508 * \brief Return the ID of the ciphersuite associated with the
1509 * given name
Paul Bakkere3166ce2011-01-27 17:40:50 +00001510 *
1511 * \param ciphersuite_name SSL ciphersuite name
1512 *
1513 * \return the ID with the ciphersuite or 0 if not found
1514 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001515int mbedtls_ssl_get_ciphersuite_id( const char *ciphersuite_name );
Paul Bakker72f62662011-01-16 21:27:44 +00001516
1517/**
Paul Bakker5121ce52009-01-03 21:22:43 +00001518 * \brief Initialize an SSL context
Tillmann Karras588ad502015-09-25 04:27:22 +02001519 * Just makes the context ready for mbedtls_ssl_setup() or
Manuel Pégourié-Gonnard41d479e2015-04-29 00:48:22 +02001520 * mbedtls_ssl_free()
1521 *
1522 * \param ssl SSL context
1523 */
1524void mbedtls_ssl_init( mbedtls_ssl_context *ssl );
1525
1526/**
1527 * \brief Set up an SSL context for use
Paul Bakker5121ce52009-01-03 21:22:43 +00001528 *
Manuel Pégourié-Gonnard06939ce2015-05-11 11:25:46 +02001529 * \note No copy of the configuration context is made, it can be
Manuel Pégourié-Gonnard151dc772015-05-14 13:55:51 +02001530 * shared by many mbedtls_ssl_context structures.
Manuel Pégourié-Gonnard06939ce2015-05-11 11:25:46 +02001531 *
Gilles Peskine4ae7d5d2017-05-26 11:59:29 +02001532 * \warning The conf structure will be accessed during the session.
1533 * It must not be modified or freed as long as the session
1534 * is active.
1535 *
1536 * \warning This function must be called exactly once per context.
1537 * Calling mbedtls_ssl_setup again is not supported, even
1538 * if no session is active.
Manuel Pégourié-Gonnard06939ce2015-05-11 11:25:46 +02001539 *
Paul Bakker5121ce52009-01-03 21:22:43 +00001540 * \param ssl SSL context
Manuel Pégourié-Gonnarddef0bbe2015-05-04 14:56:36 +02001541 * \param conf SSL configuration to use
Paul Bakker5121ce52009-01-03 21:22:43 +00001542 *
Manuel Pégourié-Gonnard6a8ca332015-05-28 09:33:39 +02001543 * \return 0 if successful, or MBEDTLS_ERR_SSL_ALLOC_FAILED if
Paul Bakker69e095c2011-12-10 21:55:01 +00001544 * memory allocation failed
Paul Bakker5121ce52009-01-03 21:22:43 +00001545 */
Manuel Pégourié-Gonnarddef0bbe2015-05-04 14:56:36 +02001546int mbedtls_ssl_setup( mbedtls_ssl_context *ssl,
Manuel Pégourié-Gonnard1897af92015-05-10 23:27:38 +02001547 const mbedtls_ssl_config *conf );
Paul Bakker5121ce52009-01-03 21:22:43 +00001548
1549/**
Paul Bakker7eb013f2011-10-06 12:37:39 +00001550 * \brief Reset an already initialized SSL context for re-use
1551 * while retaining application-set variables, function
1552 * pointers and data.
1553 *
1554 * \param ssl SSL context
Attila Molnar0b98d2f2016-05-02 11:06:47 +02001555 * \return 0 if successful, or MBEDTLS_ERR_SSL_ALLOC_FAILED,
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001556 MBEDTLS_ERR_SSL_HW_ACCEL_FAILED or
1557 * MBEDTLS_ERR_SSL_COMPRESSION_FAILED
Paul Bakker7eb013f2011-10-06 12:37:39 +00001558 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001559int mbedtls_ssl_session_reset( mbedtls_ssl_context *ssl );
Paul Bakker7eb013f2011-10-06 12:37:39 +00001560
Hanno Becker2d9623f2019-06-13 12:07:05 +01001561#if !defined(MBEDTLS_SSL_CONF_ENDPOINT)
Paul Bakker7eb013f2011-10-06 12:37:39 +00001562/**
Paul Bakker5121ce52009-01-03 21:22:43 +00001563 * \brief Set the current endpoint type
1564 *
Hanno Becker2d9623f2019-06-13 12:07:05 +01001565 * \note On constrained systems, this can also be configured
1566 * at compile-time via MBEDTLS_SSL_CONF_ENDPOINT.
1567 *
Manuel Pégourié-Gonnardd36e33f2015-05-05 10:45:39 +02001568 * \param conf SSL configuration
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001569 * \param endpoint must be MBEDTLS_SSL_IS_CLIENT or MBEDTLS_SSL_IS_SERVER
Paul Bakker5121ce52009-01-03 21:22:43 +00001570 */
Manuel Pégourié-Gonnard6729e792015-05-11 09:50:24 +02001571void mbedtls_ssl_conf_endpoint( mbedtls_ssl_config *conf, int endpoint );
Hanno Becker2d9623f2019-06-13 12:07:05 +01001572#endif /* !MBEDTLS_SSL_CONF_ENDPOINT */
Paul Bakker5121ce52009-01-03 21:22:43 +00001573
Kevin Bracey585e9e02020-11-03 12:22:27 +02001574#if !defined(MBEDTLS_SSL_CONF_TRANSPORT)
Paul Bakker5121ce52009-01-03 21:22:43 +00001575/**
Manuel Pégourié-Gonnard8fa6dfd2014-09-17 10:47:43 +02001576 * \brief Set the transport type (TLS or DTLS).
Manuel Pégourié-Gonnardba8b1eb2019-06-17 15:21:07 +02001577 * Default: TLS unless #MBEDTLS_SSL_PROTO_NO_TLS is defined,
1578 * else DTLS.
Manuel Pégourié-Gonnard0b1ff292014-02-06 13:04:16 +01001579 *
Manuel Pégourié-Gonnard01e5e8c2015-05-11 10:11:56 +02001580 * \note For DTLS, you must either provide a recv callback that
1581 * doesn't block, or one that handles timeouts, see
Manuel Pégourié-Gonnardbbd28f72015-05-13 10:21:19 +02001582 * \c mbedtls_ssl_set_bio(). You also need to provide timer
1583 * callbacks with \c mbedtls_ssl_set_timer_cb().
Manuel Pégourié-Gonnard01e5e8c2015-05-11 10:11:56 +02001584 *
Kevin Bracey585e9e02020-11-03 12:22:27 +02001585 * \note On constrained systems, this can also be configured
1586 * at compile-time via MBEDTLS_SSL_CONF_TRANSPORT.
1587 *
Manuel Pégourié-Gonnardd36e33f2015-05-05 10:45:39 +02001588 * \param conf SSL configuration
Manuel Pégourié-Gonnard0b1ff292014-02-06 13:04:16 +01001589 * \param transport transport type:
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001590 * MBEDTLS_SSL_TRANSPORT_STREAM for TLS,
1591 * MBEDTLS_SSL_TRANSPORT_DATAGRAM for DTLS.
Manuel Pégourié-Gonnard0b1ff292014-02-06 13:04:16 +01001592 */
Manuel Pégourié-Gonnard01e5e8c2015-05-11 10:11:56 +02001593void mbedtls_ssl_conf_transport( mbedtls_ssl_config *conf, int transport );
Kevin Bracey585e9e02020-11-03 12:22:27 +02001594#endif /* !MBEDTLS_SSL_CONF_TRANSPORT */
Manuel Pégourié-Gonnard0b1ff292014-02-06 13:04:16 +01001595
1596/**
Paul Bakker5121ce52009-01-03 21:22:43 +00001597 * \brief Set the certificate verification mode
Manuel Pégourié-Gonnardd36e33f2015-05-05 10:45:39 +02001598 * Default: NONE on server, REQUIRED on client
Paul Bakker5121ce52009-01-03 21:22:43 +00001599 *
Manuel Pégourié-Gonnardd36e33f2015-05-05 10:45:39 +02001600 * \param conf SSL configuration
Paul Bakker37ca75d2011-01-06 12:28:03 +00001601 * \param authmode can be:
Paul Bakker5121ce52009-01-03 21:22:43 +00001602 *
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001603 * MBEDTLS_SSL_VERIFY_NONE: peer certificate is not checked
Manuel Pégourié-Gonnardfa44f202015-03-27 17:52:25 +01001604 * (default on server)
1605 * (insecure on client)
Paul Bakker5121ce52009-01-03 21:22:43 +00001606 *
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001607 * MBEDTLS_SSL_VERIFY_OPTIONAL: peer certificate is checked, however the
Paul Bakker5121ce52009-01-03 21:22:43 +00001608 * handshake continues even if verification failed;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001609 * mbedtls_ssl_get_verify_result() can be called after the
Paul Bakker5121ce52009-01-03 21:22:43 +00001610 * handshake is complete.
1611 *
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001612 * MBEDTLS_SSL_VERIFY_REQUIRED: peer *must* present a valid certificate,
Paul Bakker5121ce52009-01-03 21:22:43 +00001613 * handshake is aborted if verification failed.
Aaron Jonesd96e5262016-06-17 14:40:41 +00001614 * (default on client)
Manuel Pégourié-Gonnarde2ce2112014-03-11 10:50:48 +01001615 *
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001616 * \note On client, MBEDTLS_SSL_VERIFY_REQUIRED is the recommended mode.
1617 * With MBEDTLS_SSL_VERIFY_OPTIONAL, the user needs to call mbedtls_ssl_get_verify_result() at
Manuel Pégourié-Gonnarde2ce2112014-03-11 10:50:48 +01001618 * the right time(s), which may not be obvious, while REQUIRED always perform
1619 * the verification as soon as possible. For example, REQUIRED was protecting
1620 * against the "triple handshake" attack even before it was found.
Paul Bakker5121ce52009-01-03 21:22:43 +00001621 */
Manuel Pégourié-Gonnard6729e792015-05-11 09:50:24 +02001622void mbedtls_ssl_conf_authmode( mbedtls_ssl_config *conf, int authmode );
Paul Bakker5121ce52009-01-03 21:22:43 +00001623
Hanno Becker9ec3fe02019-07-01 17:36:12 +01001624#if defined(MBEDTLS_X509_CRT_PARSE_C) && \
1625 !defined(MBEDTLS_X509_REMOVE_VERIFY_CALLBACK)
Paul Bakker5121ce52009-01-03 21:22:43 +00001626/**
Paul Bakkerb63b0af2011-01-13 17:54:59 +00001627 * \brief Set the verification callback (Optional).
1628 *
Paul Bakker915275b2012-09-28 07:10:55 +00001629 * If set, the verify callback is called for each
1630 * certificate in the chain. For implementation
Manuel Pégourié-Gonnard31458a12017-06-26 10:11:49 +02001631 * information, please see \c mbedtls_x509_crt_verify()
Paul Bakkerb63b0af2011-01-13 17:54:59 +00001632 *
Manuel Pégourié-Gonnardd36e33f2015-05-05 10:45:39 +02001633 * \param conf SSL configuration
Paul Bakkerb63b0af2011-01-13 17:54:59 +00001634 * \param f_vrfy verification function
1635 * \param p_vrfy verification parameter
1636 */
Manuel Pégourié-Gonnard6729e792015-05-11 09:50:24 +02001637void mbedtls_ssl_conf_verify( mbedtls_ssl_config *conf,
Manuel Pégourié-Gonnarde6ef16f2015-05-11 19:54:43 +02001638 int (*f_vrfy)(void *, mbedtls_x509_crt *, int, uint32_t *),
Paul Bakkerb63b0af2011-01-13 17:54:59 +00001639 void *p_vrfy );
Hanno Becker9ec3fe02019-07-01 17:36:12 +01001640#endif /* MBEDTLS_X509_CRT_PARSE_C && !MBEDTLS_X509_REMOVE_VERIFY_CALLBACK */
Paul Bakkerb63b0af2011-01-13 17:54:59 +00001641
Hanno Beckerece325c2019-06-13 15:39:27 +01001642#if !defined(MBEDTLS_SSL_CONF_RNG)
Paul Bakkerb63b0af2011-01-13 17:54:59 +00001643/**
Paul Bakker5121ce52009-01-03 21:22:43 +00001644 * \brief Set the random number generator callback
1645 *
Hanno Becker65f6f382019-07-04 11:28:34 +01001646 * \note On constrained systems, the RNG can also be configured at
1647 * compile-time via the option MBEDTLS_SSL_CONF_RNG.
Hanno Beckerece325c2019-06-13 15:39:27 +01001648 *
Manuel Pégourié-Gonnard750e4d72015-05-07 12:35:38 +01001649 * \param conf SSL configuration
Paul Bakker5121ce52009-01-03 21:22:43 +00001650 * \param f_rng RNG function
1651 * \param p_rng RNG parameter
1652 */
Manuel Pégourié-Gonnard6729e792015-05-11 09:50:24 +02001653void mbedtls_ssl_conf_rng( mbedtls_ssl_config *conf,
Paul Bakkera3d195c2011-11-27 21:07:34 +00001654 int (*f_rng)(void *, unsigned char *, size_t),
Paul Bakker5121ce52009-01-03 21:22:43 +00001655 void *p_rng );
Hanno Becker65f6f382019-07-04 11:28:34 +01001656#endif /* MBEDTLS_SSL_CONF_RNG */
Paul Bakker5121ce52009-01-03 21:22:43 +00001657
Hanno Becker14a4a442019-07-02 17:00:34 +01001658#if defined(MBEDTLS_DEBUG_C)
Paul Bakker5121ce52009-01-03 21:22:43 +00001659/**
1660 * \brief Set the debug callback
1661 *
Manuel Pégourié-Gonnardfd474232015-06-23 16:34:24 +02001662 * The callback has the following argument:
1663 * void * opaque context for the callback
1664 * int debug level
1665 * const char * file name
1666 * int line number
1667 * const char * message
1668 *
Manuel Pégourié-Gonnardd36e33f2015-05-05 10:45:39 +02001669 * \param conf SSL configuration
Paul Bakker5121ce52009-01-03 21:22:43 +00001670 * \param f_dbg debug function
1671 * \param p_dbg debug parameter
1672 */
Manuel Pégourié-Gonnard6729e792015-05-11 09:50:24 +02001673void mbedtls_ssl_conf_dbg( mbedtls_ssl_config *conf,
Manuel Pégourié-Gonnardfd474232015-06-23 16:34:24 +02001674 void (*f_dbg)(void *, int, const char *, int, const char *),
Paul Bakker5121ce52009-01-03 21:22:43 +00001675 void *p_dbg );
Hanno Becker14a4a442019-07-02 17:00:34 +01001676#endif /* MBEDTLS_DEBUG_C */
Paul Bakker5121ce52009-01-03 21:22:43 +00001677
Hanno Beckera58a8962019-06-13 16:11:15 +01001678#if !defined(MBEDTLS_SSL_CONF_RECV) && \
1679 !defined(MBEDTLS_SSL_CONF_SEND) && \
1680 !defined(MBEDTLS_SSL_CONF_RECV_TIMEOUT)
Manuel Pégourié-Gonnard8fa6dfd2014-09-17 10:47:43 +02001681/**
1682 * \brief Set the underlying BIO callbacks for write, read and
1683 * read-with-timeout.
1684 *
1685 * \param ssl SSL context
1686 * \param p_bio parameter (context) shared by BIO callbacks
1687 * \param f_send write callback
1688 * \param f_recv read callback
Manuel Pégourié-Gonnard88369942015-05-06 16:19:31 +01001689 * \param f_recv_timeout blocking read callback with timeout.
Manuel Pégourié-Gonnard8fa6dfd2014-09-17 10:47:43 +02001690 *
Manuel Pégourié-Gonnardbbd28f72015-05-13 10:21:19 +02001691 * \note One of f_recv or f_recv_timeout can be NULL, in which case
1692 * the other is used. If both are non-NULL, f_recv_timeout is
1693 * used and f_recv is ignored (as if it were NULL).
Manuel Pégourié-Gonnard8fa6dfd2014-09-17 10:47:43 +02001694 *
Manuel Pégourié-Gonnardbbd28f72015-05-13 10:21:19 +02001695 * \note The two most common use cases are:
1696 * - non-blocking I/O, f_recv != NULL, f_recv_timeout == NULL
1697 * - blocking I/O, f_recv == NULL, f_recv_timout != NULL
1698 *
1699 * \note For DTLS, you need to provide either a non-NULL
1700 * f_recv_timeout callback, or a f_recv that doesn't block.
Manuel Pégourié-Gonnardd13b9502016-02-22 09:33:52 +01001701 *
1702 * \note See the documentations of \c mbedtls_ssl_sent_t,
1703 * \c mbedtls_ssl_recv_t and \c mbedtls_ssl_recv_timeout_t for
Simon Butcherd567a232016-03-09 20:19:21 +00001704 * the conventions those callbacks must follow.
Manuel Pégourié-Gonnardd13b9502016-02-22 09:33:52 +01001705 *
Hanno Beckera58a8962019-06-13 16:11:15 +01001706 * \note On constrained systems, the pointers \p f_send, \p f_recv,
1707 * and \p f_recv_timeout can also be configured at compile-time
1708 * via the macros MBEDTLS_SSL_CONF_RECV, MBEDTLS_SSL_CONF_SEND
Hanno Becker1f1e9ef2019-07-04 11:33:09 +01001709 * and MBEDTLS_SSL_CONF_RECV_TIMEOUT.
Hanno Beckera58a8962019-06-13 16:11:15 +01001710 *
Andres AG3616f6f2016-09-14 14:32:09 +01001711 * \note On some platforms, net_sockets.c provides
1712 * \c mbedtls_net_send(), \c mbedtls_net_recv() and
1713 * \c mbedtls_net_recv_timeout() that are suitable to be used
1714 * here.
Manuel Pégourié-Gonnard8fa6dfd2014-09-17 10:47:43 +02001715 */
Manuel Pégourié-Gonnard1b511f92015-05-06 15:54:23 +01001716void mbedtls_ssl_set_bio( mbedtls_ssl_context *ssl,
Manuel Pégourié-Gonnardd13b9502016-02-22 09:33:52 +01001717 void *p_bio,
1718 mbedtls_ssl_send_t *f_send,
1719 mbedtls_ssl_recv_t *f_recv,
1720 mbedtls_ssl_recv_timeout_t *f_recv_timeout );
Hanno Becker1f1e9ef2019-07-04 11:33:09 +01001721#else /* !( MBEDTLS_SSL_CONF_RECV &&
1722 MBEDTLS_SSL_CONF_SEND &&
1723 MBEDTLS_SSL_CONF_RECV_TIMEOUT ) */
Hanno Beckera58a8962019-06-13 16:11:15 +01001724/**
1725 * \brief Set the context to be passed to the underlying BIO callbacks
1726 * for write, read and read-with-timeout.
1727 *
1728 * \param ssl The SSL context to configure.
1729 * \param p_bio The parameter (context) to be used for the BIO callbacks.
1730 *
1731 */
1732void mbedtls_ssl_set_bio_ctx( mbedtls_ssl_context *ssl,
1733 void *p_bio );
Hanno Becker1f1e9ef2019-07-04 11:33:09 +01001734#endif /* MBEDTLS_SSL_CONF_RECV &&
1735 MBEDTLS_SSL_CONF_SEND &&
1736 MBEDTLS_SSL_CONF_RECV_TIMEOUT */
Manuel Pégourié-Gonnard97fd52c2015-05-06 15:38:52 +01001737
Manuel Pégourié-Gonnard6e7aaca2018-08-20 10:37:23 +02001738#if defined(MBEDTLS_SSL_PROTO_DTLS)
Hanno Becker6198af32019-04-09 15:12:56 +01001739
Hanno Beckera5a2b082019-05-15 14:03:01 +01001740#if defined(MBEDTLS_SSL_DTLS_CONNECTION_ID)
Hanno Becker6198af32019-04-09 15:12:56 +01001741
1742
1743/**
Hanno Becker043a2a42019-05-08 13:24:25 +01001744 * \brief Configure the use of the Connection ID (CID)
Hanno Becker8d0893d2019-04-23 12:01:20 +01001745 * extension in the next handshake.
Hanno Becker6198af32019-04-09 15:12:56 +01001746 *
Hanno Becker3cdf8fe2019-05-15 10:26:32 +01001747 * Reference: draft-ietf-tls-dtls-connection-id-05
1748 * https://tools.ietf.org/html/draft-ietf-tls-dtls-connection-id-05
Hanno Becker6198af32019-04-09 15:12:56 +01001749 *
Hanno Beckerf83017c2019-05-15 10:08:35 +01001750 * The DTLS CID extension allows the reliable association of
Hanno Becker6198af32019-04-09 15:12:56 +01001751 * DTLS records to DTLS connections across changes in the
Hanno Becker53f36e92019-05-15 10:10:36 +01001752 * underlying transport (changed IP and Port metadata) by
1753 * adding explicit connection identifiers (CIDs) to the
1754 * headers of encrypted DTLS records. The desired CIDs are
1755 * configured by the application layer and are exchanged in
1756 * new `ClientHello` / `ServerHello` extensions during the
Hanno Becker6198af32019-04-09 15:12:56 +01001757 * handshake, where each side indicates the CID it wants the
1758 * peer to use when writing encrypted messages. The CIDs are
1759 * put to use once records get encrypted: the stack discards
1760 * any incoming records that don't include the configured CID
1761 * in their header, and adds the peer's requested CID to the
1762 * headers of outgoing messages.
1763 *
Hanno Becker5fcac0d2019-05-15 10:12:11 +01001764 * This API enables or disables the use of the CID extension
1765 * in the next handshake and sets the value of the CID to
1766 * be used for incoming messages.
Hanno Becker6198af32019-04-09 15:12:56 +01001767 *
1768 * \param ssl The SSL context to configure. This must be initialized.
1769 * \param enable This value determines whether the CID extension should
1770 * be used or not. Possible values are:
1771 * - MBEDTLS_SSL_CID_ENABLED to enable the use of the CID.
Hanno Beckerd928c062019-04-23 11:37:38 +01001772 * - MBEDTLS_SSL_CID_DISABLED (default) to disable the use
1773 * of the CID.
Hanno Becker6198af32019-04-09 15:12:56 +01001774 * \param own_cid The address of the readable buffer holding the CID we want
1775 * the peer to use when sending encrypted messages to us.
1776 * This may be \c NULL if \p own_cid_len is \c 0.
1777 * This parameter is unused if \p enabled is set to
1778 * MBEDTLS_SSL_CID_DISABLED.
1779 * \param own_cid_len The length of \p own_cid.
1780 * This parameter is unused if \p enabled is set to
1781 * MBEDTLS_SSL_CID_DISABLED.
1782 *
Hanno Beckereec2be92019-05-03 13:06:44 +01001783 * \note The value of \p own_cid_len must match the value of the
Hanno Beckere8eff9a2019-05-14 11:30:10 +01001784 * \c len parameter passed to mbedtls_ssl_conf_cid()
Hanno Beckereec2be92019-05-03 13:06:44 +01001785 * when configuring the ::mbedtls_ssl_config that \p ssl
Hanno Becker241947d2019-05-13 15:26:11 +01001786 * is bound to.
Hanno Beckereec2be92019-05-03 13:06:44 +01001787 *
Hanno Beckerb9b7e292019-04-23 11:38:47 +01001788 * \note This CID configuration applies to subsequent handshakes
Hanno Becker6198af32019-04-09 15:12:56 +01001789 * performed on the SSL context \p ssl, but does not trigger
1790 * one. You still have to call `mbedtls_ssl_handshake()`
1791 * (for the initial handshake) or `mbedtls_ssl_renegotiate()`
1792 * (for a renegotiation handshake) explicitly after a
1793 * successful call to this function to run the handshake.
1794 *
1795 * \note This call cannot guarantee that the use of the CID
1796 * will be successfully negotiated in the next handshake,
1797 * because the peer might not support it. Specifically:
1798 * - On the Client, enabling the use of the CID through
1799 * this call implies that the `ClientHello` in the next
1800 * handshake will include the CID extension, thereby
1801 * offering the use of the CID to the server. Only if
1802 * the `ServerHello` contains the CID extension, too,
1803 * the CID extension will actually be put to use.
1804 * - On the Server, enabling the use of the CID through
1805 * this call implies that that the server will look for
1806 * the CID extension in a `ClientHello` from the client,
1807 * and, if present, reply with a CID extension in its
1808 * `ServerHello`.
1809 *
1810 * \note To check whether the use of the CID was negotiated
1811 * after the subsequent handshake has completed, please
1812 * use the API mbedtls_ssl_get_peer_cid().
1813 *
1814 * \warning If the use of the CID extension is enabled in this call
1815 * and the subsequent handshake negotiates its use, Mbed TLS
1816 * will silently drop every packet whose CID does not match
1817 * the CID configured in \p own_cid. It is the responsibility
1818 * of the user to adapt the underlying transport to take care
1819 * of CID-based demultiplexing before handing datagrams to
1820 * Mbed TLS.
1821 *
1822 * \return \c 0 on success. In this case, the CID configuration
1823 * applies to the next handshake.
1824 * \return A negative error code on failure.
1825 */
1826int mbedtls_ssl_set_cid( mbedtls_ssl_context *ssl,
1827 int enable,
1828 unsigned char const *own_cid,
1829 size_t own_cid_len );
1830
1831/**
Hanno Becker96f35b42019-05-15 10:14:16 +01001832 * \brief Get information about the use of the CID extension
1833 * in the current connection.
Hanno Becker6198af32019-04-09 15:12:56 +01001834 *
1835 * \param ssl The SSL context to query.
1836 * \param enabled The address at which to store whether the CID extension
1837 * is currently in use or not. If the CID is in use,
1838 * `*enabled` is set to MBEDTLS_SSL_CID_ENABLED;
1839 * otherwise, it is set to MBEDTLS_SSL_CID_DISABLED.
1840 * \param peer_cid The address of the buffer in which to store the CID
1841 * chosen by the peer (if the CID extension is used).
Hanno Becker633d6042019-05-22 16:50:35 +01001842 * This may be \c NULL in case the value of peer CID
1843 * isn't needed. If it is not \c NULL, \p peer_cid_len
1844 * must not be \c NULL.
Hanno Becker6198af32019-04-09 15:12:56 +01001845 * \param peer_cid_len The address at which to store the size of the CID
1846 * chosen by the peer (if the CID extension is used).
1847 * This is also the number of Bytes in \p peer_cid that
1848 * have been written.
Hanno Becker633d6042019-05-22 16:50:35 +01001849 * This may be \c NULL in case the length of the peer CID
1850 * isn't needed. If it is \c NULL, \p peer_cid must be
1851 * \c NULL, too.
Hanno Becker6198af32019-04-09 15:12:56 +01001852 *
1853 * \note This applies to the state of the CID negotiated in
1854 * the last complete handshake. If a handshake is in
1855 * progress, this function will attempt to complete
1856 * the handshake first.
1857 *
Hanno Beckercb063f52019-05-03 12:54:52 +01001858 * \note If CID extensions have been exchanged but both client
1859 * and server chose to use an empty CID, this function
1860 * sets `*enabled` to #MBEDTLS_SSL_CID_DISABLED
1861 * (the rationale for this is that the resulting
1862 * communication is the same as if the CID extensions
1863 * hadn't been used).
1864 *
Hanno Becker6198af32019-04-09 15:12:56 +01001865 * \return \c 0 on success.
1866 * \return A negative error code on failure.
1867 */
1868int mbedtls_ssl_get_peer_cid( mbedtls_ssl_context *ssl,
1869 int *enabled,
1870 unsigned char peer_cid[ MBEDTLS_SSL_CID_OUT_LEN_MAX ],
1871 size_t *peer_cid_len );
1872
Hanno Beckera5a2b082019-05-15 14:03:01 +01001873#endif /* MBEDTLS_SSL_DTLS_CONNECTION_ID */
Hanno Becker6198af32019-04-09 15:12:56 +01001874
Manuel Pégourié-Gonnard6e7aaca2018-08-20 10:37:23 +02001875/**
1876 * \brief Set the Maximum Tranport Unit (MTU).
1877 * Special value: 0 means unset (no limit).
1878 * This represents the maximum size of a datagram payload
1879 * handled by the transport layer (usually UDP) as determined
1880 * by the network link and stack. In practice, this controls
1881 * the maximum size datagram the DTLS layer will pass to the
1882 * \c f_send() callback set using \c mbedtls_ssl_set_bio().
1883 *
Manuel Pégourié-Gonnard66110352018-08-21 11:55:40 +02001884 * \note The limit on datagram size is converted to a limit on
1885 * record payload by subtracting the current overhead of
1886 * encapsulation and encryption/authentication if any.
1887 *
Manuel Pégourié-Gonnard6e7aaca2018-08-20 10:37:23 +02001888 * \note This can be called at any point during the connection, for
Hanno Beckereefe0842018-08-28 10:29:17 +01001889 * example when a Path Maximum Transfer Unit (PMTU)
1890 * estimate becomes available from other sources,
1891 * such as lower (or higher) protocol layers.
Manuel Pégourié-Gonnard6e7aaca2018-08-20 10:37:23 +02001892 *
Manuel Pégourié-Gonnardf2f1d402018-08-21 09:53:22 +02001893 * \note This setting only controls the size of the packets we send,
1894 * and does not restrict the size of the datagrams we're
Manuel Pégourié-Gonnard68ae3512018-08-22 10:24:31 +02001895 * willing to receive. Client-side, you can request the
Manuel Pégourié-Gonnardf2f1d402018-08-21 09:53:22 +02001896 * server to use smaller records with \c
1897 * mbedtls_ssl_conf_max_frag_len().
Manuel Pégourié-Gonnard6e7aaca2018-08-20 10:37:23 +02001898 *
1899 * \note If both a MTU and a maximum fragment length have been
Manuel Pégourié-Gonnard050dd6a2018-08-20 11:16:40 +02001900 * configured (or negotiated with the peer), the resulting
Manuel Pégourié-Gonnard66110352018-08-21 11:55:40 +02001901 * lower limit on record payload (see first note) is used.
Manuel Pégourié-Gonnard6e7aaca2018-08-20 10:37:23 +02001902 *
Manuel Pégourié-Gonnard050dd6a2018-08-20 11:16:40 +02001903 * \note This can only be used to decrease the maximum size
Manuel Pégourié-Gonnard66110352018-08-21 11:55:40 +02001904 * of datagrams (hence records, see first note) sent. It
1905 * cannot be used to increase the maximum size of records over
1906 * the limit set by #MBEDTLS_SSL_OUT_CONTENT_LEN.
Manuel Pégourié-Gonnard050dd6a2018-08-20 11:16:40 +02001907 *
1908 * \note Values lower than the current record layer expansion will
1909 * result in an error when trying to send data.
1910 *
1911 * \note Using record compression together with a non-zero MTU value
1912 * will result in an error when trying to send data.
Manuel Pégourié-Gonnard6e7aaca2018-08-20 10:37:23 +02001913 *
1914 * \param ssl SSL context
1915 * \param mtu Value of the path MTU in bytes
1916 */
1917void mbedtls_ssl_set_mtu( mbedtls_ssl_context *ssl, uint16_t mtu );
1918#endif /* MBEDTLS_SSL_PROTO_DTLS */
1919
Hanno Becker1f835fa2019-06-13 10:14:59 +01001920#if !defined(MBEDTLS_SSL_CONF_READ_TIMEOUT)
Manuel Pégourié-Gonnard97fd52c2015-05-06 15:38:52 +01001921/**
1922 * \brief Set the timeout period for mbedtls_ssl_read()
1923 * (Default: no timeout.)
1924 *
1925 * \param conf SSL configuration context
1926 * \param timeout Timeout value in milliseconds.
1927 * Use 0 for no timeout (default).
1928 *
1929 * \note With blocking I/O, this will only work if a non-NULL
Manuel Pégourié-Gonnard1b511f92015-05-06 15:54:23 +01001930 * \c f_recv_timeout was set with \c mbedtls_ssl_set_bio().
Manuel Pégourié-Gonnardbbd28f72015-05-13 10:21:19 +02001931 * With non-blocking I/O, this will only work if timer
1932 * callbacks were set with \c mbedtls_ssl_set_timer_cb().
1933 *
Hanno Becker1f835fa2019-06-13 10:14:59 +01001934 * \note On constrained systems, this option can also be configured
1935 * at compile-time via MBEDTLS_SSL_CONF_READ_TIMEOUT.
1936 *
Manuel Pégourié-Gonnardbbd28f72015-05-13 10:21:19 +02001937 * \note With non-blocking I/O, you may also skip this function
1938 * altogether and handle timeouts at the application layer.
Manuel Pégourié-Gonnard97fd52c2015-05-06 15:38:52 +01001939 */
Manuel Pégourié-Gonnard6729e792015-05-11 09:50:24 +02001940void mbedtls_ssl_conf_read_timeout( mbedtls_ssl_config *conf, uint32_t timeout );
Hanno Becker1f835fa2019-06-13 10:14:59 +01001941#endif /* !MBEDTLS_SSL_CONF_READ_TIMEOUT */
Manuel Pégourié-Gonnard8fa6dfd2014-09-17 10:47:43 +02001942
Hanno Becker02f26092019-07-03 16:13:00 +01001943#if defined(MBEDTLS_SSL_RECORD_CHECKING)
1944/**
1945 * \brief Check whether a buffer contains a valid, fresh
Hanno Beckerbec88852019-07-18 08:20:53 +01001946 * and authentic record (DTLS only).
Hanno Becker02f26092019-07-03 16:13:00 +01001947 *
1948 * This function does not change the user-visible state
Hanno Beckerc2b08d12019-07-18 08:21:17 +01001949 * of the SSL context. Its sole purpose is to provide
Hanno Becker02f26092019-07-03 16:13:00 +01001950 * an indication of the legitimacy of an incoming record.
1951 *
1952 * This can be useful e.g. in distributed server environments
1953 * using the DTLS Connection ID feature, in which connections
1954 * might need to be passed between service instances on a change
1955 * of peer address, but where such disruptive operations should
1956 * only happen after the validity of incoming records has been
1957 * confirmed.
1958 *
1959 * \param ssl The SSL context to use.
1960 * \param buf The address of the buffer holding the record to be checked.
1961 * This must be an R/W buffer of length \p buflen Bytes.
1962 * \param buflen The length of \p buf in Bytes.
1963 *
1964 * \note This routine only checks whether the provided buffer begins
1965 * with a valid, fresh and authentic record, but does not check
1966 * potential data following the initial record. In particular,
Hanno Beckere29dfb22019-07-24 14:23:16 +01001967 * it is possible to pass DTLS datagrams containing multiple
1968 * records, in which case only the first record is checked.
Hanno Becker02f26092019-07-03 16:13:00 +01001969 *
1970 * \note This function modifies the input buffer \p buf. If you need
1971 * to preserve the original record, you have to maintain a copy.
1972 *
Hanno Beckerbec88852019-07-18 08:20:53 +01001973 * \return \c 0 if the record is valid, fresh and authentic.
Hanno Becker02f26092019-07-03 16:13:00 +01001974 * \return MBEDTLS_ERR_SSL_INVALID_MAC if the check completed
1975 * successfully but the record was found to be not authentic.
1976 * \return MBEDTLS_ERR_SSL_INVALID_RECORD if the check completed
1977 * successfully but the record was found to be invalid for
1978 * a reason different from authenticity checking.
1979 * \return MBEDTLS_ERR_SSL_UNEXPECTED_RECORD if the check completed
1980 * successfully but the record was found to be unexpected
1981 * in the state of the SSL context, including replayed records.
1982 * \return Another negative error code on different kinds of failure.
1983 * In this case, the SSL context becomes unusable and needs
1984 * to be freed or reset before reuse.
1985 */
1986int mbedtls_ssl_check_record( mbedtls_ssl_context const *ssl,
1987 unsigned char *buf,
1988 size_t buflen );
1989#endif /* MBEDTLS_SSL_RECORD_CHECKING */
1990
Hanno Becker0ae6b242019-06-13 16:45:36 +01001991#if !defined(MBEDTLS_SSL_CONF_SET_TIMER) && \
1992 !defined(MBEDTLS_SSL_CONF_GET_TIMER)
Manuel Pégourié-Gonnard2e012912015-05-12 20:55:41 +02001993/**
Hanno Becker99b6b6b2019-07-04 11:34:40 +01001994 * \brief Set the timer callbacks (Mandatory for DTLS.)
Manuel Pégourié-Gonnard2e012912015-05-12 20:55:41 +02001995 *
Hanno Becker99b6b6b2019-07-04 11:34:40 +01001996 * \param ssl SSL context
1997 * \param p_timer parameter (context) shared by timer callbacks
Manuel Pégourié-Gonnard2e012912015-05-12 20:55:41 +02001998 * \param f_set_timer set timer callback
Manuel Pégourié-Gonnard2e012912015-05-12 20:55:41 +02001999 * \param f_get_timer get timer callback. Must return:
Manuel Pégourié-Gonnardd13b9502016-02-22 09:33:52 +01002000 *
Hanno Becker99b6b6b2019-07-04 11:34:40 +01002001 * \note See the documentation of \c mbedtls_ssl_set_timer_t and
2002 * \c mbedtls_ssl_get_timer_t for the conventions this pair of
2003 * callbacks must follow.
Manuel Pégourié-Gonnardd13b9502016-02-22 09:33:52 +01002004 *
Hanno Becker99b6b6b2019-07-04 11:34:40 +01002005 * \note On some platforms, timing.c provides
2006 * \c mbedtls_timing_set_delay() and
2007 * \c mbedtls_timing_get_delay() that are suitable for using
2008 * here, except if using an event-driven style.
Manuel Pégourié-Gonnardd13b9502016-02-22 09:33:52 +01002009 *
Hanno Becker99b6b6b2019-07-04 11:34:40 +01002010 * \note On constrained systems, the timer callbacks \p f_set_timer
2011 * and \p f_get_timer may also be configured at compile-time
2012 * via MBEDTLS_SSL_CONF_GET_TIMER and MBEDTLS_SSL_CONF_SET_TIMER.
Hanno Becker0ae6b242019-06-13 16:45:36 +01002013 *
Hanno Becker99b6b6b2019-07-04 11:34:40 +01002014 * \note See also the "DTLS tutorial" article in our knowledge base.
2015 * https://tls.mbed.org/kb/how-to/dtls-tutorial
Manuel Pégourié-Gonnard2e012912015-05-12 20:55:41 +02002016 */
2017void mbedtls_ssl_set_timer_cb( mbedtls_ssl_context *ssl,
2018 void *p_timer,
Manuel Pégourié-Gonnardd13b9502016-02-22 09:33:52 +01002019 mbedtls_ssl_set_timer_t *f_set_timer,
2020 mbedtls_ssl_get_timer_t *f_get_timer );
Hanno Becker99b6b6b2019-07-04 11:34:40 +01002021#else /* !( MBEDTLS_SSL_CONF_SET_TIMER &&
2022 MBEDTLS_SSL_CONF_GET_TIMER ) */
Hanno Becker0ae6b242019-06-13 16:45:36 +01002023/**
2024 * \brief Set the context to be passed to the timer callbacks
2025 * (Mandatory for DTLS.)
2026 *
2027 * \param ssl The SSL context to configure.
2028 * \param p_timer The context to be passed to the timer callbacks.
2029 *
2030 */
2031void mbedtls_ssl_set_timer_cb_ctx( mbedtls_ssl_context *ssl,
2032 void *p_timer );
Hanno Becker99b6b6b2019-07-04 11:34:40 +01002033#endif /* MBEDTLS_SSL_CONF_SET_TIMER &&
2034 MBEDTLS_SSL_CONF_GET_TIMER */
Manuel Pégourié-Gonnard2e012912015-05-12 20:55:41 +02002035
Manuel Pégourié-Gonnardd59675d2015-05-19 15:28:00 +02002036/**
2037 * \brief Callback type: generate and write session ticket
2038 *
2039 * \note This describes what a callback implementation should do.
Aaron Jonesd96e5262016-06-17 14:40:41 +00002040 * This callback should generate an encrypted and
Manuel Pégourié-Gonnardd59675d2015-05-19 15:28:00 +02002041 * authenticated ticket for the session and write it to the
2042 * output buffer. Here, ticket means the opaque ticket part
2043 * of the NewSessionTicket structure of RFC 5077.
2044 *
2045 * \param p_ticket Context for the callback
Aaron Jonesd96e5262016-06-17 14:40:41 +00002046 * \param session SSL session to be written in the ticket
2047 * \param start Start of the output buffer
Manuel Pégourié-Gonnardd59675d2015-05-19 15:28:00 +02002048 * \param end End of the output buffer
2049 * \param tlen On exit, holds the length written
2050 * \param lifetime On exit, holds the lifetime of the ticket in seconds
2051 *
2052 * \return 0 if successful, or
2053 * a specific MBEDTLS_ERR_XXX code.
2054 */
2055typedef int mbedtls_ssl_ticket_write_t( void *p_ticket,
2056 const mbedtls_ssl_session *session,
2057 unsigned char *start,
2058 const unsigned char *end,
2059 size_t *tlen,
2060 uint32_t *lifetime );
2061
Robert Cragie4feb7ae2015-10-02 13:33:37 +01002062#if defined(MBEDTLS_SSL_EXPORT_KEYS)
2063/**
Manuel Pégourié-Gonnard024b6df2015-10-19 13:52:53 +02002064 * \brief Callback type: Export key block and master secret
Robert Cragie4feb7ae2015-10-02 13:33:37 +01002065 *
2066 * \note This is required for certain uses of TLS, e.g. EAP-TLS
Manuel Pégourié-Gonnard024b6df2015-10-19 13:52:53 +02002067 * (RFC 5216) and Thread. The key pointers are ephemeral and
2068 * therefore must not be stored. The master secret and keys
2069 * should not be used directly except as an input to a key
2070 * derivation function.
Robert Cragie4feb7ae2015-10-02 13:33:37 +01002071 *
2072 * \param p_expkey Context for the callback
Manuel Pégourié-Gonnard024b6df2015-10-19 13:52:53 +02002073 * \param ms Pointer to master secret (fixed length: 48 bytes)
2074 * \param kb Pointer to key block, see RFC 5246 section 6.3
2075 * (variable length: 2 * maclen + 2 * keylen + 2 * ivlen).
Robert Cragie4feb7ae2015-10-02 13:33:37 +01002076 * \param maclen MAC length
2077 * \param keylen Key length
2078 * \param ivlen IV length
2079 *
2080 * \return 0 if successful, or
2081 * a specific MBEDTLS_ERR_XXX code.
2082 */
2083typedef int mbedtls_ssl_export_keys_t( void *p_expkey,
Manuel Pégourié-Gonnard024b6df2015-10-19 13:52:53 +02002084 const unsigned char *ms,
Robert Cragie4feb7ae2015-10-02 13:33:37 +01002085 const unsigned char *kb,
Robert Cragie4feb7ae2015-10-02 13:33:37 +01002086 size_t maclen,
2087 size_t keylen,
2088 size_t ivlen );
2089#endif /* MBEDTLS_SSL_EXPORT_KEYS */
Manuel Pégourié-Gonnard024b6df2015-10-19 13:52:53 +02002090
Manuel Pégourié-Gonnardd59675d2015-05-19 15:28:00 +02002091/**
2092 * \brief Callback type: parse and load session ticket
2093 *
2094 * \note This describes what a callback implementation should do.
2095 * This callback should parse a session ticket as generated
2096 * by the corresponding mbedtls_ssl_ticket_write_t function,
2097 * and, if the ticket is authentic and valid, load the
2098 * session.
2099 *
2100 * \note The implementation is allowed to modify the first len
Manuel Pégourié-Gonnardb596abf2015-05-20 10:45:29 +02002101 * bytes of the input buffer, eg to use it as a temporary
2102 * area for the decrypted ticket contents.
Manuel Pégourié-Gonnardd59675d2015-05-19 15:28:00 +02002103 *
2104 * \param p_ticket Context for the callback
2105 * \param session SSL session to be loaded
2106 * \param buf Start of the buffer containing the ticket
2107 * \param len Length of the ticket.
2108 *
2109 * \return 0 if successful, or
2110 * MBEDTLS_ERR_SSL_INVALID_MAC if not authentic, or
2111 * MBEDTLS_ERR_SSL_SESSION_TICKET_EXPIRED if expired, or
2112 * any other non-zero code for other failures.
2113 */
2114typedef int mbedtls_ssl_ticket_parse_t( void *p_ticket,
2115 mbedtls_ssl_session *session,
2116 unsigned char *buf,
2117 size_t len );
2118
Manuel Pégourié-Gonnardb596abf2015-05-20 10:45:29 +02002119#if defined(MBEDTLS_SSL_SESSION_TICKETS) && defined(MBEDTLS_SSL_SRV_C)
Manuel Pégourié-Gonnardd59675d2015-05-19 15:28:00 +02002120/**
Manuel Pégourié-Gonnardb596abf2015-05-20 10:45:29 +02002121 * \brief Configure SSL session ticket callbacks (server only).
2122 * (Default: none.)
2123 *
2124 * \note On server, session tickets are enabled by providing
2125 * non-NULL callbacks.
2126 *
Manuel Pégourié-Gonnard1b1e65f2015-06-11 13:29:15 +02002127 * \note On client, use \c mbedtls_ssl_conf_session_tickets().
Manuel Pégourié-Gonnardd59675d2015-05-19 15:28:00 +02002128 *
2129 * \param conf SSL configuration context
2130 * \param f_ticket_write Callback for writing a ticket
2131 * \param f_ticket_parse Callback for parsing a ticket
2132 * \param p_ticket Context shared by the two callbacks
2133 */
2134void mbedtls_ssl_conf_session_tickets_cb( mbedtls_ssl_config *conf,
2135 mbedtls_ssl_ticket_write_t *f_ticket_write,
2136 mbedtls_ssl_ticket_parse_t *f_ticket_parse,
2137 void *p_ticket );
Manuel Pégourié-Gonnardb596abf2015-05-20 10:45:29 +02002138#endif /* MBEDTLS_SSL_SESSION_TICKETS && MBEDTLS_SSL_SRV_C */
Manuel Pégourié-Gonnardd59675d2015-05-19 15:28:00 +02002139
Robert Cragie4feb7ae2015-10-02 13:33:37 +01002140#if defined(MBEDTLS_SSL_EXPORT_KEYS)
2141/**
2142 * \brief Configure key export callback.
2143 * (Default: none.)
2144 *
Manuel Pégourié-Gonnard024b6df2015-10-19 13:52:53 +02002145 * \note See \c mbedtls_ssl_export_keys_t.
Robert Cragie4feb7ae2015-10-02 13:33:37 +01002146 *
2147 * \param conf SSL configuration context
2148 * \param f_export_keys Callback for exporting keys
Manuel Pégourié-Gonnard024b6df2015-10-19 13:52:53 +02002149 * \param p_export_keys Context for the callback
Robert Cragie4feb7ae2015-10-02 13:33:37 +01002150 */
2151void mbedtls_ssl_conf_export_keys_cb( mbedtls_ssl_config *conf,
2152 mbedtls_ssl_export_keys_t *f_export_keys,
2153 void *p_export_keys );
2154#endif /* MBEDTLS_SSL_EXPORT_KEYS */
2155
Gilles Peskineb74a1c72018-04-24 13:09:22 +02002156#if defined(MBEDTLS_SSL_ASYNC_PRIVATE)
Gilles Peskine8bf79f62018-01-05 21:11:53 +01002157/**
2158 * \brief Configure asynchronous private key operation callbacks.
2159 *
2160 * \param conf SSL configuration context
2161 * \param f_async_sign Callback to start a signature operation. See
Gilles Peskine2481a712018-04-26 07:28:44 +02002162 * the description of ::mbedtls_ssl_async_sign_t
2163 * for more information. This may be \c NULL if the
Gilles Peskinef1127252018-04-24 13:05:39 +02002164 * external processor does not support any signature
Gilles Peskine8bf79f62018-01-05 21:11:53 +01002165 * operation; in this case the private key object
2166 * associated with the certificate will be used.
2167 * \param f_async_decrypt Callback to start a decryption operation. See
Gilles Peskine2481a712018-04-26 07:28:44 +02002168 * the description of ::mbedtls_ssl_async_decrypt_t
2169 * for more information. This may be \c NULL if the
Gilles Peskinef1127252018-04-24 13:05:39 +02002170 * external processor does not support any decryption
Gilles Peskine8bf79f62018-01-05 21:11:53 +01002171 * operation; in this case the private key object
2172 * associated with the certificate will be used.
2173 * \param f_async_resume Callback to resume an asynchronous operation. See
Gilles Peskine2481a712018-04-26 07:28:44 +02002174 * the description of ::mbedtls_ssl_async_resume_t
Gilles Peskinead28bf02018-04-26 00:19:16 +02002175 * for more information. This may not be \c NULL unless
2176 * \p f_async_sign and \p f_async_decrypt are both
2177 * \c NULL.
Gilles Peskine8bf79f62018-01-05 21:11:53 +01002178 * \param f_async_cancel Callback to cancel an asynchronous operation. See
Gilles Peskine2481a712018-04-26 07:28:44 +02002179 * the description of ::mbedtls_ssl_async_cancel_t
Gilles Peskinead28bf02018-04-26 00:19:16 +02002180 * for more information. This may be \c NULL if
2181 * no cleanup is needed.
Gilles Peskine8f97af72018-04-26 11:46:10 +02002182 * \param config_data A pointer to configuration data which can be
2183 * retrieved with
2184 * mbedtls_ssl_conf_get_async_config_data(). The
2185 * library stores this value without dereferencing it.
Gilles Peskine8bf79f62018-01-05 21:11:53 +01002186 */
2187void mbedtls_ssl_conf_async_private_cb( mbedtls_ssl_config *conf,
2188 mbedtls_ssl_async_sign_t *f_async_sign,
2189 mbedtls_ssl_async_decrypt_t *f_async_decrypt,
2190 mbedtls_ssl_async_resume_t *f_async_resume,
2191 mbedtls_ssl_async_cancel_t *f_async_cancel,
Gilles Peskinedf13d5c2018-04-25 20:39:48 +02002192 void *config_data );
2193
2194/**
Gilles Peskine8f97af72018-04-26 11:46:10 +02002195 * \brief Retrieve the configuration data set by
2196 * mbedtls_ssl_conf_async_private_cb().
2197 *
2198 * \param conf SSL configuration context
2199 * \return The configuration data set by
2200 * mbedtls_ssl_conf_async_private_cb().
2201 */
2202void *mbedtls_ssl_conf_get_async_config_data( const mbedtls_ssl_config *conf );
2203
2204/**
Gilles Peskinedf13d5c2018-04-25 20:39:48 +02002205 * \brief Retrieve the asynchronous operation user context.
2206 *
2207 * \note This function may only be called while a handshake
2208 * is in progress.
2209 *
2210 * \param ssl The SSL context to access.
2211 *
2212 * \return The asynchronous operation user context that was last
Gilles Peskine1febfef2018-04-30 11:54:39 +02002213 * set during the current handshake. If
2214 * mbedtls_ssl_set_async_operation_data() has not yet been
2215 * called during the current handshake, this function returns
2216 * \c NULL.
Gilles Peskinedf13d5c2018-04-25 20:39:48 +02002217 */
Gilles Peskine1febfef2018-04-30 11:54:39 +02002218void *mbedtls_ssl_get_async_operation_data( const mbedtls_ssl_context *ssl );
Gilles Peskinedf13d5c2018-04-25 20:39:48 +02002219
2220/**
2221 * \brief Retrieve the asynchronous operation user context.
2222 *
2223 * \note This function may only be called while a handshake
2224 * is in progress.
2225 *
2226 * \param ssl The SSL context to access.
2227 * \param ctx The new value of the asynchronous operation user context.
Gilles Peskine1febfef2018-04-30 11:54:39 +02002228 * Call mbedtls_ssl_get_async_operation_data() later during the
2229 * same handshake to retrieve this value.
Gilles Peskinedf13d5c2018-04-25 20:39:48 +02002230 */
Gilles Peskine1febfef2018-04-30 11:54:39 +02002231void mbedtls_ssl_set_async_operation_data( mbedtls_ssl_context *ssl,
Gilles Peskinedf13d5c2018-04-25 20:39:48 +02002232 void *ctx );
Gilles Peskineb74a1c72018-04-24 13:09:22 +02002233#endif /* MBEDTLS_SSL_ASYNC_PRIVATE */
Gilles Peskine8bf79f62018-01-05 21:11:53 +01002234
Manuel Pégourié-Gonnardd485d192014-07-23 14:56:15 +02002235/**
2236 * \brief Callback type: generate a cookie
2237 *
2238 * \param ctx Context for the callback
2239 * \param p Buffer to write to,
2240 * must be updated to point right after the cookie
2241 * \param end Pointer to one past the end of the output buffer
2242 * \param info Client ID info that was passed to
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002243 * \c mbedtls_ssl_set_client_transport_id()
Manuel Pégourié-Gonnardd485d192014-07-23 14:56:15 +02002244 * \param ilen Length of info in bytes
2245 *
2246 * \return The callback must return 0 on success,
2247 * or a negative error code.
2248 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002249typedef int mbedtls_ssl_cookie_write_t( void *ctx,
Manuel Pégourié-Gonnardd485d192014-07-23 14:56:15 +02002250 unsigned char **p, unsigned char *end,
2251 const unsigned char *info, size_t ilen );
2252
2253/**
2254 * \brief Callback type: verify a cookie
2255 *
2256 * \param ctx Context for the callback
2257 * \param cookie Cookie to verify
2258 * \param clen Length of cookie
2259 * \param info Client ID info that was passed to
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002260 * \c mbedtls_ssl_set_client_transport_id()
Manuel Pégourié-Gonnardd485d192014-07-23 14:56:15 +02002261 * \param ilen Length of info in bytes
2262 *
2263 * \return The callback must return 0 if cookie is valid,
2264 * or a negative error code.
2265 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002266typedef int mbedtls_ssl_cookie_check_t( void *ctx,
Manuel Pégourié-Gonnardd485d192014-07-23 14:56:15 +02002267 const unsigned char *cookie, size_t clen,
2268 const unsigned char *info, size_t ilen );
2269
Manuel Pégourié-Gonnarde057d3b2015-05-20 10:59:43 +02002270#if defined(MBEDTLS_SSL_DTLS_HELLO_VERIFY) && defined(MBEDTLS_SSL_SRV_C)
Manuel Pégourié-Gonnardd485d192014-07-23 14:56:15 +02002271/**
2272 * \brief Register callbacks for DTLS cookies
2273 * (Server only. DTLS only.)
2274 *
Manuel Pégourié-Gonnardb48ef9c2015-05-28 15:24:25 +02002275 * Default: dummy callbacks that fail, in order to force you to
Manuel Pégourié-Gonnard7d38d212014-07-23 17:52:09 +02002276 * register working callbacks (and initialize their context).
2277 *
2278 * To disable HelloVerifyRequest, register NULL callbacks.
2279 *
2280 * \warning Disabling hello verification allows your server to be used
2281 * for amplification in DoS attacks against other hosts.
2282 * Only disable if you known this can't happen in your
2283 * particular environment.
2284 *
Manuel Pégourié-Gonnardb48ef9c2015-05-28 15:24:25 +02002285 * \note See comments on \c mbedtls_ssl_handshake() about handling
2286 * the MBEDTLS_ERR_SSL_HELLO_VERIFY_REQUIRED that is expected
2287 * on the first handshake attempt when this is enabled.
2288 *
Manuel Pégourié-Gonnard3a2a4482015-09-08 15:36:09 +02002289 * \note This is also necessary to handle client reconnection from
2290 * the same port as described in RFC 6347 section 4.2.8 (only
2291 * the variant with cookies is supported currently). See
2292 * comments on \c mbedtls_ssl_read() for details.
2293 *
Manuel Pégourié-Gonnardd36e33f2015-05-05 10:45:39 +02002294 * \param conf SSL configuration
Manuel Pégourié-Gonnardd485d192014-07-23 14:56:15 +02002295 * \param f_cookie_write Cookie write callback
2296 * \param f_cookie_check Cookie check callback
2297 * \param p_cookie Context for both callbacks
2298 */
Manuel Pégourié-Gonnard6729e792015-05-11 09:50:24 +02002299void mbedtls_ssl_conf_dtls_cookies( mbedtls_ssl_config *conf,
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002300 mbedtls_ssl_cookie_write_t *f_cookie_write,
2301 mbedtls_ssl_cookie_check_t *f_cookie_check,
Manuel Pégourié-Gonnardd485d192014-07-23 14:56:15 +02002302 void *p_cookie );
Manuel Pégourié-Gonnarde057d3b2015-05-20 10:59:43 +02002303
2304/**
2305 * \brief Set client's transport-level identification info.
2306 * (Server only. DTLS only.)
2307 *
2308 * This is usually the IP address (and port), but could be
2309 * anything identify the client depending on the underlying
2310 * network stack. Used for HelloVerifyRequest with DTLS.
2311 * This is *not* used to route the actual packets.
2312 *
2313 * \param ssl SSL context
2314 * \param info Transport-level info identifying the client (eg IP + port)
2315 * \param ilen Length of info in bytes
2316 *
2317 * \note An internal copy is made, so the info buffer can be reused.
2318 *
2319 * \return 0 on success,
2320 * MBEDTLS_ERR_SSL_BAD_INPUT_DATA if used on client,
Manuel Pégourié-Gonnard6a8ca332015-05-28 09:33:39 +02002321 * MBEDTLS_ERR_SSL_ALLOC_FAILED if out of memory.
Manuel Pégourié-Gonnarde057d3b2015-05-20 10:59:43 +02002322 */
2323int mbedtls_ssl_set_client_transport_id( mbedtls_ssl_context *ssl,
2324 const unsigned char *info,
2325 size_t ilen );
2326
2327#endif /* MBEDTLS_SSL_DTLS_HELLO_VERIFY && MBEDTLS_SSL_SRV_C */
Manuel Pégourié-Gonnard43c02182014-07-22 17:32:01 +02002328
Hanno Becker7f376f42019-06-12 16:20:48 +01002329#if defined(MBEDTLS_SSL_DTLS_ANTI_REPLAY) && \
2330 !defined(MBEDTLS_SSL_CONF_ANTI_REPLAY)
Manuel Pégourié-Gonnard27393132014-09-24 14:41:11 +02002331/**
2332 * \brief Enable or disable anti-replay protection for DTLS.
2333 * (DTLS only, no effect on TLS.)
Manuel Pégourié-Gonnarda6fcffe2014-10-13 18:15:52 +02002334 * Default: enabled.
Manuel Pégourié-Gonnard27393132014-09-24 14:41:11 +02002335 *
Manuel Pégourié-Gonnardd36e33f2015-05-05 10:45:39 +02002336 * \param conf SSL configuration
Hanno Becker7f376f42019-06-12 16:20:48 +01002337 * \param mode MBEDTLS_SSL_ANTI_REPLAY_ENABLED or
2338 * MBEDTLS_SSL_ANTI_REPLAY_DISABLED.
Manuel Pégourié-Gonnarda6fcffe2014-10-13 18:15:52 +02002339 *
2340 * \warning Disabling this is a security risk unless the application
2341 * protocol handles duplicated packets in a safe way. You
2342 * should not disable this without careful consideration.
2343 * However, if your application already detects duplicated
2344 * packets and needs information about them to adjust its
2345 * transmission strategy, then you'll want to disable this.
Hanno Becker7f376f42019-06-12 16:20:48 +01002346 *
2347 * \note On constrained systems, this option can also be
2348 * fixed at compile-time by defining the constant
2349 * MBEDTLS_SSL_CONF_ANTI_REPLAY.
Manuel Pégourié-Gonnard27393132014-09-24 14:41:11 +02002350 */
Manuel Pégourié-Gonnard6729e792015-05-11 09:50:24 +02002351void mbedtls_ssl_conf_dtls_anti_replay( mbedtls_ssl_config *conf, char mode );
Hanno Becker7f376f42019-06-12 16:20:48 +01002352#endif /* MBEDTLS_SSL_DTLS_ANTI_REPLAY && !MBEDTLS_SSL_CONF_ANTI_REPLAY */
Manuel Pégourié-Gonnard27393132014-09-24 14:41:11 +02002353
Hanno Beckerde671542019-06-12 16:30:46 +01002354#if defined(MBEDTLS_SSL_DTLS_BADMAC_LIMIT) && \
2355 !defined(MBEDTLS_SSL_CONF_BADMAC_LIMIT)
Manuel Pégourié-Gonnardb0643d12014-10-14 18:30:36 +02002356/**
2357 * \brief Set a limit on the number of records with a bad MAC
2358 * before terminating the connection.
2359 * (DTLS only, no effect on TLS.)
2360 * Default: 0 (disabled).
2361 *
Manuel Pégourié-Gonnardd36e33f2015-05-05 10:45:39 +02002362 * \param conf SSL configuration
Manuel Pégourié-Gonnardb0643d12014-10-14 18:30:36 +02002363 * \param limit Limit, or 0 to disable.
2364 *
2365 * \note If the limit is N, then the connection is terminated when
2366 * the Nth non-authentic record is seen.
2367 *
2368 * \note Records with an invalid header are not counted, only the
2369 * ones going through the authentication-decryption phase.
2370 *
2371 * \note This is a security trade-off related to the fact that it's
2372 * often relatively easy for an active attacker ot inject UDP
2373 * datagrams. On one hand, setting a low limit here makes it
2374 * easier for such an attacker to forcibly terminated a
2375 * connection. On the other hand, a high limit or no limit
2376 * might make us waste resources checking authentication on
2377 * many bogus packets.
Hanno Beckerde671542019-06-12 16:30:46 +01002378 *
2379 * \note On constrained systems, this option can also be
2380 * fixed at compile-time by defining the constant
2381 * MBEDTLS_SSL_CONF_BADMAC_LIMIT.
Manuel Pégourié-Gonnardb0643d12014-10-14 18:30:36 +02002382 */
Manuel Pégourié-Gonnard6729e792015-05-11 09:50:24 +02002383void mbedtls_ssl_conf_dtls_badmac_limit( mbedtls_ssl_config *conf, unsigned limit );
Hanno Beckerde671542019-06-12 16:30:46 +01002384#endif /* MBEDTLS_SSL_DTLS_BADMAC_LIMIT && !MBEDTLS_SSL_CONF_BADMAC_LIMIT */
Manuel Pégourié-Gonnardb0643d12014-10-14 18:30:36 +02002385
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002386#if defined(MBEDTLS_SSL_PROTO_DTLS)
Hanno Becker04da1892018-08-14 13:22:10 +01002387
2388/**
2389 * \brief Allow or disallow packing of multiple handshake records
2390 * within a single datagram.
2391 *
2392 * \param ssl The SSL context to configure.
2393 * \param allow_packing This determines whether datagram packing may
2394 * be used or not. A value of \c 0 means that every
2395 * record will be sent in a separate datagram; a
2396 * value of \c 1 means that, if space permits,
2397 * multiple handshake messages (including CCS) belonging to
2398 * a single flight may be packed within a single datagram.
2399 *
2400 * \note This is enabled by default and should only be disabled
2401 * for test purposes, or if datagram packing causes
2402 * interoperability issues with peers that don't support it.
2403 *
2404 * \note Allowing datagram packing reduces the network load since
2405 * there's less overhead if multiple messages share the same
2406 * datagram. Also, it increases the handshake efficiency
2407 * since messages belonging to a single datagram will not
2408 * be reordered in transit, and so future message buffering
2409 * or flight retransmission (if no buffering is used) as
2410 * means to deal with reordering are needed less frequently.
2411 *
Hanno Beckereb570082018-08-24 11:28:35 +01002412 * \note Application records are not affected by this option and
Hanno Becker04da1892018-08-14 13:22:10 +01002413 * are currently always sent in separate datagrams.
2414 *
2415 */
Hanno Becker1841b0a2018-08-24 11:13:57 +01002416void mbedtls_ssl_set_datagram_packing( mbedtls_ssl_context *ssl,
2417 unsigned allow_packing );
Hanno Becker04da1892018-08-14 13:22:10 +01002418
Manuel Pégourié-Gonnard905dd242014-10-01 12:03:55 +02002419/**
Aaron Jonesd96e5262016-06-17 14:40:41 +00002420 * \brief Set retransmit timeout values for the DTLS handshake.
Manuel Pégourié-Gonnard905dd242014-10-01 12:03:55 +02002421 * (DTLS only, no effect on TLS.)
2422 *
Manuel Pégourié-Gonnardd36e33f2015-05-05 10:45:39 +02002423 * \param conf SSL configuration
Manuel Pégourié-Gonnard905dd242014-10-01 12:03:55 +02002424 * \param min Initial timeout value in milliseconds.
2425 * Default: 1000 (1 second).
2426 * \param max Maximum timeout value in milliseconds.
2427 * Default: 60000 (60 seconds).
2428 *
2429 * \note Default values are from RFC 6347 section 4.2.4.1.
2430 *
Manuel Pégourié-Gonnardedb1a482016-01-29 16:05:55 +01002431 * \note The 'min' value should typically be slightly above the
2432 * expected round-trip time to your peer, plus whatever time
2433 * it takes for the peer to process the message. For example,
2434 * if your RTT is about 600ms and you peer needs up to 1s to
2435 * do the cryptographic operations in the handshake, then you
2436 * should set 'min' slightly above 1600. Lower values of 'min'
2437 * might cause spurious resends which waste network resources,
2438 * while larger value of 'min' will increase overall latency
2439 * on unreliable network links.
2440 *
2441 * \note The more unreliable your network connection is, the larger
2442 * your max / min ratio needs to be in order to achieve
2443 * reliable handshakes.
2444 *
2445 * \note Messages are retransmitted up to log2(ceil(max/min)) times.
2446 * For example, if min = 1s and max = 5s, the retransmit plan
2447 * goes: send ... 1s -> resend ... 2s -> resend ... 4s ->
2448 * resend ... 5s -> give up and return a timeout error.
Manuel Pégourié-Gonnard905dd242014-10-01 12:03:55 +02002449 */
Manuel Pégourié-Gonnard6729e792015-05-11 09:50:24 +02002450void mbedtls_ssl_conf_handshake_timeout( mbedtls_ssl_config *conf, uint32_t min, uint32_t max );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002451#endif /* MBEDTLS_SSL_PROTO_DTLS */
Manuel Pégourié-Gonnard27393132014-09-24 14:41:11 +02002452
Jarno Lamsa29f2dd02019-06-20 15:31:52 +03002453#if defined(MBEDTLS_SSL_SRV_C) && !defined(MBEDTLS_SSL_NO_SESSION_CACHE)
Paul Bakker5121ce52009-01-03 21:22:43 +00002454/**
Paul Bakker0a597072012-09-25 21:55:46 +00002455 * \brief Set the session cache callbacks (server-side only)
Manuel Pégourié-Gonnard3e944932014-11-20 18:29:41 +01002456 * If not set, no session resuming is done (except if session
2457 * tickets are enabled too).
Paul Bakker5121ce52009-01-03 21:22:43 +00002458 *
Paul Bakker0a597072012-09-25 21:55:46 +00002459 * The session cache has the responsibility to check for stale
2460 * entries based on timeout. See RFC 5246 for recommendations.
2461 *
2462 * Warning: session.peer_cert is cleared by the SSL/TLS layer on
2463 * connection shutdown, so do not cache the pointer! Either set
2464 * it to NULL or make a full copy of the certificate.
2465 *
2466 * The get callback is called once during the initial handshake
2467 * to enable session resuming. The get function has the
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002468 * following parameters: (void *parameter, mbedtls_ssl_session *session)
Paul Bakker0a597072012-09-25 21:55:46 +00002469 * If a valid entry is found, it should fill the master of
2470 * the session object with the cached values and return 0,
2471 * return 1 otherwise. Optionally peer_cert can be set as well
2472 * if it is properly present in cache entry.
2473 *
2474 * The set callback is called once during the initial handshake
2475 * to enable session resuming after the entire handshake has
2476 * been finished. The set function has the following parameters:
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002477 * (void *parameter, const mbedtls_ssl_session *session). The function
Paul Bakker0a597072012-09-25 21:55:46 +00002478 * should create a cache entry for future retrieval based on
2479 * the data in the session structure and should keep in mind
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002480 * that the mbedtls_ssl_session object presented (and all its referenced
Paul Bakker0a597072012-09-25 21:55:46 +00002481 * data) is cleared by the SSL/TLS layer when the connection is
2482 * terminated. It is recommended to add metadata to determine if
2483 * an entry is still valid in the future. Return 0 if
Paul Bakker7a2538e2012-11-02 10:59:36 +00002484 * successfully cached, return 1 otherwise.
Paul Bakker0a597072012-09-25 21:55:46 +00002485 *
Manuel Pégourié-Gonnardd36e33f2015-05-05 10:45:39 +02002486 * \param conf SSL configuration
Manuel Pégourié-Gonnard5cb33082015-05-06 18:06:26 +01002487 * \param p_cache parmater (context) for both callbacks
Paul Bakker0a597072012-09-25 21:55:46 +00002488 * \param f_get_cache session get callback
Paul Bakker0a597072012-09-25 21:55:46 +00002489 * \param f_set_cache session set callback
Paul Bakker5121ce52009-01-03 21:22:43 +00002490 */
Manuel Pégourié-Gonnard6729e792015-05-11 09:50:24 +02002491void mbedtls_ssl_conf_session_cache( mbedtls_ssl_config *conf,
Manuel Pégourié-Gonnard5cb33082015-05-06 18:06:26 +01002492 void *p_cache,
2493 int (*f_get_cache)(void *, mbedtls_ssl_session *),
2494 int (*f_set_cache)(void *, const mbedtls_ssl_session *) );
Jarno Lamsa29f2dd02019-06-20 15:31:52 +03002495#endif /* MBEDTLS_SSL_SRV_C && !MBEDTLS_SSL_NO_SESSION_CACHE */
Paul Bakker5121ce52009-01-03 21:22:43 +00002496
Jarno Lamsa29f2dd02019-06-20 15:31:52 +03002497#if defined(MBEDTLS_SSL_CLI_C) && !defined(MBEDTLS_SSL_NO_SESSION_RESUMPTION)
Paul Bakker5121ce52009-01-03 21:22:43 +00002498/**
Paul Bakker0a597072012-09-25 21:55:46 +00002499 * \brief Request resumption of session (client-side only)
2500 * Session data is copied from presented session structure.
2501 *
Paul Bakker5121ce52009-01-03 21:22:43 +00002502 * \param ssl SSL context
Paul Bakker5121ce52009-01-03 21:22:43 +00002503 * \param session session context
Manuel Pégourié-Gonnard74718032013-07-30 12:41:56 +02002504 *
Manuel Pégourié-Gonnard06650f62013-08-02 15:34:52 +02002505 * \return 0 if successful,
Manuel Pégourié-Gonnard6a8ca332015-05-28 09:33:39 +02002506 * MBEDTLS_ERR_SSL_ALLOC_FAILED if memory allocation failed,
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002507 * MBEDTLS_ERR_SSL_BAD_INPUT_DATA if used server-side or
Manuel Pégourié-Gonnard06650f62013-08-02 15:34:52 +02002508 * arguments are otherwise invalid
2509 *
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002510 * \sa mbedtls_ssl_get_session()
Paul Bakker5121ce52009-01-03 21:22:43 +00002511 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002512int mbedtls_ssl_set_session( mbedtls_ssl_context *ssl, const mbedtls_ssl_session *session );
Jarno Lamsa29f2dd02019-06-20 15:31:52 +03002513#endif /* MBEDTLS_SSL_CLI_C && !MBEDTLS_SSL_NO_SESSION_RESUMPTION */
Paul Bakker5121ce52009-01-03 21:22:43 +00002514
2515/**
Manuel Pégourié-Gonnard35ccdbb2019-06-03 09:55:16 +02002516 * \brief Load serialized session data into a session structure.
Manuel Pégourié-Gonnard2843fe12019-05-15 16:13:59 +02002517 * On client, this can be used for loading saved sessions
2518 * before resuming them with mbedstls_ssl_set_session().
2519 * On server, this can be used for alternative implementations
2520 * of session cache or session tickets.
2521 *
2522 * \warning If a peer certificate chain is associated with the session,
Manuel Pégourié-Gonnard35ccdbb2019-06-03 09:55:16 +02002523 * the serialized state will only contain the peer's
Manuel Pégourié-Gonnard2843fe12019-05-15 16:13:59 +02002524 * end-entity certificate and the result of the chain
2525 * verification (unless verification was disabled), but not
2526 * the rest of the chain.
2527 *
2528 * \see mbedtls_ssl_session_save()
2529 * \see mbedtls_ssl_set_session()
2530 *
2531 * \param session The session structure to be populated. It must have been
2532 * initialised with mbedtls_ssl_session_init() but not
2533 * populated yet.
Manuel Pégourié-Gonnard35ccdbb2019-06-03 09:55:16 +02002534 * \param buf The buffer holding the serialized session data. It must be a
Manuel Pégourié-Gonnard2843fe12019-05-15 16:13:59 +02002535 * readable buffer of at least \p len bytes.
Manuel Pégourié-Gonnard35ccdbb2019-06-03 09:55:16 +02002536 * \param len The size of the serialized data in bytes.
Manuel Pégourié-Gonnard2843fe12019-05-15 16:13:59 +02002537 *
2538 * \return \c 0 if successful.
2539 * \return #MBEDTLS_ERR_SSL_ALLOC_FAILED if memory allocation failed.
2540 * \return #MBEDTLS_ERR_SSL_BAD_INPUT_DATA if input data is invalid.
Hanno Becker5dbcc9f2019-06-03 12:58:39 +01002541 * \return #MBEDTLS_ERR_SSL_VERSION_MISMATCH if the serialized data
2542 * was generated in a different version or configuration of
2543 * Mbed TLS.
Manuel Pégourié-Gonnarde0cd1d02019-05-27 09:58:07 +02002544 * \return Another negative value for other kinds of errors (for
2545 * example, unsupported features in the embedded certificate).
Manuel Pégourié-Gonnard2843fe12019-05-15 16:13:59 +02002546 */
2547int mbedtls_ssl_session_load( mbedtls_ssl_session *session,
2548 const unsigned char *buf,
2549 size_t len );
2550
2551/**
Manuel Pégourié-Gonnard35ccdbb2019-06-03 09:55:16 +02002552 * \brief Save session structure as serialized data in a buffer.
Manuel Pégourié-Gonnard2843fe12019-05-15 16:13:59 +02002553 * On client, this can be used for saving session data,
2554 * potentially in non-volatile storage, for resuming later.
2555 * On server, this can be used for alternative implementations
2556 * of session cache or session tickets.
2557 *
2558 * \see mbedtls_ssl_session_load()
Manuel Pégourié-Gonnard37a53242019-05-20 11:12:28 +02002559 * \see mbedtls_ssl_get_session_pointer()
Manuel Pégourié-Gonnard2843fe12019-05-15 16:13:59 +02002560 *
2561 * \param session The session structure to be saved.
2562 * \param buf The buffer to write the serialized data to. It must be a
Manuel Pégourié-Gonnard32ce5962019-05-21 11:01:32 +02002563 * writeable buffer of at least \p len bytes, or may be \c
2564 * NULL if \p len is \c 0.
Manuel Pégourié-Gonnard2843fe12019-05-15 16:13:59 +02002565 * \param buf_len The number of bytes available for writing in \p buf.
Manuel Pégourié-Gonnard32ce5962019-05-21 11:01:32 +02002566 * \param olen The size in bytes of the data that has been or would have
2567 * been written. It must point to a valid \c size_t.
2568 *
2569 * \note \p olen is updated to the correct value regardless of
2570 * whether \p buf_len was large enough. This makes it possible
2571 * to determine the necessary size by calling this function
2572 * with \p buf set to \c NULL and \p buf_len to \c 0.
Manuel Pégourié-Gonnard2843fe12019-05-15 16:13:59 +02002573 *
2574 * \return \c 0 if successful.
2575 * \return #MBEDTLS_ERR_SSL_BUFFER_TOO_SMALL if \p buf is too small.
2576 */
2577int mbedtls_ssl_session_save( const mbedtls_ssl_session *session,
2578 unsigned char *buf,
2579 size_t buf_len,
2580 size_t *olen );
2581
2582/**
Manuel Pégourié-Gonnard37a53242019-05-20 11:12:28 +02002583 * \brief Get a pointer to the current session structure, for example
Manuel Pégourié-Gonnard35ccdbb2019-06-03 09:55:16 +02002584 * to serialize it.
Manuel Pégourié-Gonnard37a53242019-05-20 11:12:28 +02002585 *
Manuel Pégourié-Gonnarde0cd1d02019-05-27 09:58:07 +02002586 * \warning Ownership of the session remains with the SSL context, and
2587 * the returned pointer is only guaranteed to be valid until
2588 * the next API call operating on the same \p ssl context.
Manuel Pégourié-Gonnard37a53242019-05-20 11:12:28 +02002589 *
2590 * \see mbedtls_ssl_session_save()
2591 *
Manuel Pégourié-Gonnarde0cd1d02019-05-27 09:58:07 +02002592 * \param ssl The SSL context.
Manuel Pégourié-Gonnard37a53242019-05-20 11:12:28 +02002593 *
Manuel Pégourié-Gonnarde0cd1d02019-05-27 09:58:07 +02002594 * \return A pointer to the current session if successful.
2595 * \return \c NULL if no session is active.
Manuel Pégourié-Gonnard37a53242019-05-20 11:12:28 +02002596 */
2597const mbedtls_ssl_session *mbedtls_ssl_get_session_pointer( const mbedtls_ssl_context *ssl );
2598
Hanno Becker73f4cb12019-06-27 13:51:07 +01002599#if !defined(MBEDTLS_SSL_CONF_SINGLE_CIPHERSUITE)
Manuel Pégourié-Gonnard37a53242019-05-20 11:12:28 +02002600/**
Paul Bakkercf1d73b2014-01-14 14:08:13 +01002601 * \brief Set the list of allowed ciphersuites and the preference
2602 * order. First in the list has the highest preference.
Aaron Jonesd96e5262016-06-17 14:40:41 +00002603 * (Overrides all version-specific lists)
Paul Bakker5121ce52009-01-03 21:22:43 +00002604 *
Manuel Pégourié-Gonnardeecb43c2015-05-12 12:56:41 +02002605 * The ciphersuites array is not copied, and must remain
2606 * valid for the lifetime of the ssl_config.
2607 *
Manuel Pégourié-Gonnardb4fe3cb2015-01-22 16:11:05 +00002608 * Note: The server uses its own preferences
2609 * over the preference of the client unless
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002610 * MBEDTLS_SSL_SRV_RESPECT_CLIENT_PREFERENCE is defined!
Paul Bakkercf1d73b2014-01-14 14:08:13 +01002611 *
Hanno Becker6ace4652019-06-26 15:14:50 +01002612 * \note On constrained systems, support for a single ciphersuite
2613 * (in all versions) can be fixed at compile-time through
Hanno Becker73f4cb12019-06-27 13:51:07 +01002614 * the configuration option MBEDTLS_SSL_CONF_SINGLE_CIPHERSUITE.
Hanno Becker6ace4652019-06-26 15:14:50 +01002615 *
Manuel Pégourié-Gonnardd36e33f2015-05-05 10:45:39 +02002616 * \param conf SSL configuration
Paul Bakkere3166ce2011-01-27 17:40:50 +00002617 * \param ciphersuites 0-terminated list of allowed ciphersuites
Paul Bakker5121ce52009-01-03 21:22:43 +00002618 */
Manuel Pégourié-Gonnard6729e792015-05-11 09:50:24 +02002619void mbedtls_ssl_conf_ciphersuites( mbedtls_ssl_config *conf,
Hanno Becker6ace4652019-06-26 15:14:50 +01002620 const int *ciphersuites );
2621
2622/**
2623 * \brief Set the list of allowed ciphersuites and the
2624 * preference order for a specific version of the protocol.
2625 * (Only useful on the server side)
2626 *
2627 * The ciphersuites array is not copied, and must remain
2628 * valid for the lifetime of the ssl_config.
2629 *
2630 * \param conf SSL configuration
2631 * \param ciphersuites 0-terminated list of allowed ciphersuites
2632 * \param major Major version number (only MBEDTLS_SSL_MAJOR_VERSION_3
2633 * supported)
2634 * \param minor Minor version number (MBEDTLS_SSL_MINOR_VERSION_0,
2635 * MBEDTLS_SSL_MINOR_VERSION_1 and MBEDTLS_SSL_MINOR_VERSION_2,
2636 * MBEDTLS_SSL_MINOR_VERSION_3 supported)
2637 *
2638 * \note With DTLS, use MBEDTLS_SSL_MINOR_VERSION_2 for DTLS 1.0
2639 * and MBEDTLS_SSL_MINOR_VERSION_3 for DTLS 1.2
2640 *
2641 * \note On constrained systems, support for a single ciphersuite
2642 * (in all versions) can be fixed at compile-time through
Hanno Becker73f4cb12019-06-27 13:51:07 +01002643 * the configuration option MBEDTLS_SSL_CONF_SINGLE_CIPHERSUITE.
Hanno Becker6ace4652019-06-26 15:14:50 +01002644 */
2645void mbedtls_ssl_conf_ciphersuites_for_version( mbedtls_ssl_config *conf,
2646 const int *ciphersuites,
2647 int major, int minor );
Hanno Becker73f4cb12019-06-27 13:51:07 +01002648#endif /* !MBEDTLS_SSL_CONF_SINGLE_CIPHERSUITE */
Paul Bakker5121ce52009-01-03 21:22:43 +00002649
Hanno Beckera69b4312019-05-14 11:44:35 +01002650#define MBEDTLS_SSL_UNEXPECTED_CID_IGNORE 0
2651#define MBEDTLS_SSL_UNEXPECTED_CID_FAIL 1
Hanno Beckere0200da2019-06-13 09:23:43 +01002652#if defined(MBEDTLS_SSL_DTLS_CONNECTION_ID) && \
2653 !defined(MBEDTLS_SSL_CONF_CID_LEN) && \
2654 !defined(MBEDTLS_SSL_CONF_IGNORE_UNEXPECTED_CID)
Hanno Beckereec2be92019-05-03 13:06:44 +01002655/**
Hanno Becker948d2d52019-05-23 16:55:50 +01002656 * \brief Specify the length of Connection IDs for incoming
2657 * encrypted DTLS records, as well as the behaviour
2658 * on unexpected CIDs.
Hanno Beckere8eff9a2019-05-14 11:30:10 +01002659 *
2660 * By default, the CID length is set to \c 0,
2661 * and unexpected CIDs are silently ignored.
Hanno Beckereec2be92019-05-03 13:06:44 +01002662 *
2663 * \param conf The SSL configuration to modify.
2664 * \param len The length in Bytes of the CID fields in encrypted
2665 * DTLS records using the CID mechanism. This must
2666 * not be larger than #MBEDTLS_SSL_CID_OUT_LEN_MAX.
Hanno Becker2f8c8042019-05-20 10:19:56 +01002667 * \param ignore_other_cids This determines the stack's behaviour when
Hanno Beckere8eff9a2019-05-14 11:30:10 +01002668 * receiving a record with an unexpected CID.
2669 * Possible values are:
2670 * - #MBEDTLS_SSL_UNEXPECTED_CID_IGNORE
2671 * In this case, the record is silently ignored.
2672 * - #MBEDTLS_SSL_UNEXPECTED_CID_FAIL
2673 * In this case, the stack fails with the specific
2674 * error code #MBEDTLS_ERR_SSL_UNEXPECTED_CID.
Hanno Beckereec2be92019-05-03 13:06:44 +01002675 *
Hanno Becker241947d2019-05-13 15:26:11 +01002676 * \note The CID specification allows implementations to either
2677 * use a common length for all incoming connection IDs or
2678 * allow variable-length incoming IDs. Mbed TLS currently
2679 * requires a common length for all connections sharing the
2680 * same SSL configuration; this allows simpler parsing of
2681 * record headers.
Hanno Beckereec2be92019-05-03 13:06:44 +01002682 *
Hanno Beckere0200da2019-06-13 09:23:43 +01002683 * \note On constrained systems, this configuration can also be
2684 * fixed at compile-time via MBEDTLS_SSL_CONF_CID_LEN and
2685 * MBEDTLS_SSL_CONF_IGNORE_UNEXPECTED_CID.
2686 *
Hanno Beckereec2be92019-05-03 13:06:44 +01002687 * \return \c 0 on success.
2688 * \return #MBEDTLS_ERR_SSL_BAD_INPUT_DATA if \p own_cid_len
2689 * is too large.
2690 */
Hanno Beckere8eff9a2019-05-14 11:30:10 +01002691int mbedtls_ssl_conf_cid( mbedtls_ssl_config *conf, size_t len,
2692 int ignore_other_cids );
Hanno Beckere0200da2019-06-13 09:23:43 +01002693#endif /* MBEDTLS_SSL_DTLS_CONNECTION_ID &&
2694 !MBEDTLS_SSL_CONF_CID_LEN &&
2695 !MBEDTLS_SSL_CONF_IGNORE_UNEXPECTED_CID */
Hanno Beckereec2be92019-05-03 13:06:44 +01002696
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002697#if defined(MBEDTLS_X509_CRT_PARSE_C)
Paul Bakker8f4ddae2013-04-15 15:09:54 +02002698/**
Manuel Pégourié-Gonnard6e3ee3a2015-06-17 10:58:20 +02002699 * \brief Set the X.509 security profile used for verification
2700 *
Manuel Pégourié-Gonnard65eefc82015-10-23 14:08:48 +02002701 * \note The restrictions are enforced for all certificates in the
2702 * chain. However, signatures in the handshake are not covered
2703 * by this setting but by \b mbedtls_ssl_conf_sig_hashes().
2704 *
Manuel Pégourié-Gonnard6e3ee3a2015-06-17 10:58:20 +02002705 * \param conf SSL configuration
2706 * \param profile Profile to use
2707 */
2708void mbedtls_ssl_conf_cert_profile( mbedtls_ssl_config *conf,
Nicholas Wilson2088e2e2015-09-08 16:53:18 +01002709 const mbedtls_x509_crt_profile *profile );
Manuel Pégourié-Gonnard6e3ee3a2015-06-17 10:58:20 +02002710
2711/**
Paul Bakker5121ce52009-01-03 21:22:43 +00002712 * \brief Set the data required to verify peer certificate
2713 *
Manuel Pégourié-Gonnard7766a2c2017-08-21 10:57:57 +02002714 * \note See \c mbedtls_x509_crt_verify() for notes regarding the
Manuel Pégourié-Gonnarda4a206e2017-06-21 09:35:44 +02002715 * parameters ca_chain (maps to trust_ca for that function)
2716 * and ca_crl.
2717 *
Manuel Pégourié-Gonnardbc2b7712015-05-06 11:14:19 +01002718 * \param conf SSL configuration
Paul Bakker1f9d02d2012-11-20 10:30:55 +01002719 * \param ca_chain trusted CA chain (meaning all fully trusted top-level CAs)
Paul Bakker40ea7de2009-05-03 10:18:48 +00002720 * \param ca_crl trusted CA CRLs
Paul Bakker5121ce52009-01-03 21:22:43 +00002721 */
Manuel Pégourié-Gonnard6729e792015-05-11 09:50:24 +02002722void mbedtls_ssl_conf_ca_chain( mbedtls_ssl_config *conf,
Manuel Pégourié-Gonnardbc2b7712015-05-06 11:14:19 +01002723 mbedtls_x509_crt *ca_chain,
2724 mbedtls_x509_crl *ca_crl );
Paul Bakker5121ce52009-01-03 21:22:43 +00002725
2726/**
Paul Bakker1f9d02d2012-11-20 10:30:55 +01002727 * \brief Set own certificate chain and private key
2728 *
Manuel Pégourié-Gonnard834ea852013-09-23 14:46:13 +02002729 * \note own_cert should contain in order from the bottom up your
2730 * certificate chain. The top certificate (self-signed)
Paul Bakker1f9d02d2012-11-20 10:30:55 +01002731 * can be omitted.
Paul Bakker5121ce52009-01-03 21:22:43 +00002732 *
Manuel Pégourié-Gonnard22bfa4b2015-05-11 08:46:37 +02002733 * \note On server, this function can be called multiple times to
2734 * provision more than one cert/key pair (eg one ECDSA, one
2735 * RSA with SHA-256, one RSA with SHA-1). An adequate
2736 * certificate will be selected according to the client's
Antonin Décimod5f47592019-01-23 15:24:37 +01002737 * advertised capabilities. In case multiple certificates are
Manuel Pégourié-Gonnard22bfa4b2015-05-11 08:46:37 +02002738 * adequate, preference is given to the one set by the first
2739 * call to this function, then second, etc.
2740 *
Manuel Pégourié-Gonnardd1b7f2b2016-02-24 14:13:22 +00002741 * \note On client, only the first call has any effect. That is,
2742 * only one client certificate can be provisioned. The
2743 * server's preferences in its CertficateRequest message will
2744 * be ignored and our only cert will be sent regardless of
2745 * whether it matches those preferences - the server can then
2746 * decide what it wants to do with it.
Manuel Pégourié-Gonnard834ea852013-09-23 14:46:13 +02002747 *
Manuel Pégourié-Gonnardd8e3a1e2018-10-25 13:24:21 +02002748 * \note The provided \p pk_key needs to match the public key in the
2749 * first certificate in \p own_cert, or all handshakes using
2750 * that certificate will fail. It is your responsibility
2751 * to ensure that; this function will not perform any check.
2752 * You may use mbedtls_pk_check_pair() in order to perform
2753 * this check yourself, but be aware that this function can
2754 * be computationally expensive on some key types.
2755 *
Manuel Pégourié-Gonnard17a40cd2015-05-10 23:17:17 +02002756 * \param conf SSL configuration
Paul Bakker1f9d02d2012-11-20 10:30:55 +01002757 * \param own_cert own public certificate chain
Manuel Pégourié-Gonnardac755232013-08-19 14:10:16 +02002758 * \param pk_key own private key
Manuel Pégourié-Gonnard834ea852013-09-23 14:46:13 +02002759 *
Manuel Pégourié-Gonnard6a8ca332015-05-28 09:33:39 +02002760 * \return 0 on success or MBEDTLS_ERR_SSL_ALLOC_FAILED
Paul Bakker5121ce52009-01-03 21:22:43 +00002761 */
Manuel Pégourié-Gonnard6729e792015-05-11 09:50:24 +02002762int mbedtls_ssl_conf_own_cert( mbedtls_ssl_config *conf,
Manuel Pégourié-Gonnard8f618a82015-05-10 21:13:36 +02002763 mbedtls_x509_crt *own_cert,
2764 mbedtls_pk_context *pk_key );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002765#endif /* MBEDTLS_X509_CRT_PARSE_C */
Paul Bakker43b7e352011-01-18 15:27:19 +00002766
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002767#if defined(MBEDTLS_KEY_EXCHANGE__SOME__PSK_ENABLED)
Paul Bakkerd4a56ec2013-04-16 18:05:29 +02002768/**
Manuel Pégourié-Gonnard4b682962015-05-07 15:59:54 +01002769 * \brief Set the Pre Shared Key (PSK) and the expected identity name
2770 *
2771 * \note This is mainly useful for clients. Servers will usually
Manuel Pégourié-Gonnard6729e792015-05-11 09:50:24 +02002772 * want to use \c mbedtls_ssl_conf_psk_cb() instead.
Paul Bakkerd4a56ec2013-04-16 18:05:29 +02002773 *
Manuel Pégourié-Gonnard9d624122016-02-22 11:10:14 +01002774 * \note Currently clients can only register one pre-shared key.
Simon Butcherc0957bd2016-03-01 13:16:57 +00002775 * In other words, the servers' identity hint is ignored.
2776 * Support for setting multiple PSKs on clients and selecting
2777 * one based on the identity hint is not a planned feature but
2778 * feedback is welcomed.
Manuel Pégourié-Gonnard9d624122016-02-22 11:10:14 +01002779 *
Manuel Pégourié-Gonnard120fdbd2015-05-07 17:07:50 +01002780 * \param conf SSL configuration
Paul Bakkerd4a56ec2013-04-16 18:05:29 +02002781 * \param psk pointer to the pre-shared key
2782 * \param psk_len pre-shared key length
2783 * \param psk_identity pointer to the pre-shared key identity
2784 * \param psk_identity_len identity key length
Paul Bakker6db455e2013-09-18 17:29:31 +02002785 *
Manuel Pégourié-Gonnard6a8ca332015-05-28 09:33:39 +02002786 * \return 0 if successful or MBEDTLS_ERR_SSL_ALLOC_FAILED
Paul Bakkerd4a56ec2013-04-16 18:05:29 +02002787 */
Manuel Pégourié-Gonnard6729e792015-05-11 09:50:24 +02002788int mbedtls_ssl_conf_psk( mbedtls_ssl_config *conf,
Manuel Pégourié-Gonnard4b682962015-05-07 15:59:54 +01002789 const unsigned char *psk, size_t psk_len,
2790 const unsigned char *psk_identity, size_t psk_identity_len );
2791
Paul Bakker6db455e2013-09-18 17:29:31 +02002792
2793/**
Manuel Pégourié-Gonnard4b682962015-05-07 15:59:54 +01002794 * \brief Set the Pre Shared Key (PSK) for the current handshake
2795 *
2796 * \note This should only be called inside the PSK callback,
Manuel Pégourié-Gonnard6729e792015-05-11 09:50:24 +02002797 * ie the function passed to \c mbedtls_ssl_conf_psk_cb().
Manuel Pégourié-Gonnard4b682962015-05-07 15:59:54 +01002798 *
2799 * \param ssl SSL context
2800 * \param psk pointer to the pre-shared key
2801 * \param psk_len pre-shared key length
2802 *
Manuel Pégourié-Gonnard6a8ca332015-05-28 09:33:39 +02002803 * \return 0 if successful or MBEDTLS_ERR_SSL_ALLOC_FAILED
Manuel Pégourié-Gonnard4b682962015-05-07 15:59:54 +01002804 */
2805int mbedtls_ssl_set_hs_psk( mbedtls_ssl_context *ssl,
2806 const unsigned char *psk, size_t psk_len );
2807
2808/**
2809 * \brief Set the PSK callback (server-side only).
Paul Bakker6db455e2013-09-18 17:29:31 +02002810 *
2811 * If set, the PSK callback is called for each
2812 * handshake where a PSK ciphersuite was negotiated.
Manuel Pégourié-Gonnarda612b442014-02-25 13:08:08 +01002813 * The caller provides the identity received and wants to
Paul Bakker6db455e2013-09-18 17:29:31 +02002814 * receive the actual PSK data and length.
2815 *
2816 * The callback has the following parameters: (void *parameter,
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002817 * mbedtls_ssl_context *ssl, const unsigned char *psk_identity,
Paul Bakker6db455e2013-09-18 17:29:31 +02002818 * size_t identity_len)
2819 * If a valid PSK identity is found, the callback should use
Manuel Pégourié-Gonnard4b682962015-05-07 15:59:54 +01002820 * \c mbedtls_ssl_set_hs_psk() on the ssl context to set the
2821 * correct PSK and return 0.
Paul Bakker6db455e2013-09-18 17:29:31 +02002822 * Any other return value will result in a denied PSK identity.
2823 *
Manuel Pégourié-Gonnard4b682962015-05-07 15:59:54 +01002824 * \note If you set a PSK callback using this function, then you
2825 * don't need to set a PSK key and identity using
Manuel Pégourié-Gonnard6729e792015-05-11 09:50:24 +02002826 * \c mbedtls_ssl_conf_psk().
Manuel Pégourié-Gonnard4b682962015-05-07 15:59:54 +01002827 *
Manuel Pégourié-Gonnardd36e33f2015-05-05 10:45:39 +02002828 * \param conf SSL configuration
Paul Bakker6db455e2013-09-18 17:29:31 +02002829 * \param f_psk PSK identity function
2830 * \param p_psk PSK identity parameter
2831 */
Manuel Pégourié-Gonnard6729e792015-05-11 09:50:24 +02002832void mbedtls_ssl_conf_psk_cb( mbedtls_ssl_config *conf,
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002833 int (*f_psk)(void *, mbedtls_ssl_context *, const unsigned char *,
Paul Bakker6db455e2013-09-18 17:29:31 +02002834 size_t),
2835 void *p_psk );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002836#endif /* MBEDTLS_KEY_EXCHANGE__SOME__PSK_ENABLED */
Paul Bakkerd4a56ec2013-04-16 18:05:29 +02002837
Manuel Pégourié-Gonnard1028b742015-05-06 17:33:07 +01002838#if defined(MBEDTLS_DHM_C) && defined(MBEDTLS_SSL_SRV_C)
Hanno Becker470a8c42017-10-04 15:28:46 +01002839
2840#if !defined(MBEDTLS_DEPRECATED_REMOVED)
2841
2842#if defined(MBEDTLS_DEPRECATED_WARNING)
2843#define MBEDTLS_DEPRECATED __attribute__((deprecated))
2844#else
2845#define MBEDTLS_DEPRECATED
2846#endif
2847
Paul Bakker5121ce52009-01-03 21:22:43 +00002848/**
2849 * \brief Set the Diffie-Hellman public P and G values,
2850 * read as hexadecimal strings (server-side only)
Hanno Becker5a7c35d2017-10-04 13:32:12 +01002851 * (Default values: MBEDTLS_DHM_RFC3526_MODP_2048_[PG])
Paul Bakker5121ce52009-01-03 21:22:43 +00002852 *
Manuel Pégourié-Gonnardd36e33f2015-05-05 10:45:39 +02002853 * \param conf SSL configuration
Paul Bakker5121ce52009-01-03 21:22:43 +00002854 * \param dhm_P Diffie-Hellman-Merkle modulus
2855 * \param dhm_G Diffie-Hellman-Merkle generator
2856 *
Hanno Becker470a8c42017-10-04 15:28:46 +01002857 * \deprecated Superseded by \c mbedtls_ssl_conf_dh_param_bin.
2858 *
Paul Bakker5121ce52009-01-03 21:22:43 +00002859 * \return 0 if successful
2860 */
Hanno Becker470a8c42017-10-04 15:28:46 +01002861MBEDTLS_DEPRECATED int mbedtls_ssl_conf_dh_param( mbedtls_ssl_config *conf,
2862 const char *dhm_P,
2863 const char *dhm_G );
Paul Bakker5121ce52009-01-03 21:22:43 +00002864
Hanno Becker470a8c42017-10-04 15:28:46 +01002865#endif /* MBEDTLS_DEPRECATED_REMOVED */
Hanno Beckera90658f2017-10-04 15:29:08 +01002866
2867/**
2868 * \brief Set the Diffie-Hellman public P and G values
2869 * from big-endian binary presentations.
2870 * (Default values: MBEDTLS_DHM_RFC3526_MODP_2048_[PG]_BIN)
2871 *
2872 * \param conf SSL configuration
2873 * \param dhm_P Diffie-Hellman-Merkle modulus in big-endian binary form
2874 * \param P_len Length of DHM modulus
2875 * \param dhm_G Diffie-Hellman-Merkle generator in big-endian binary form
2876 * \param G_len Length of DHM generator
2877 *
2878 * \return 0 if successful
2879 */
2880int mbedtls_ssl_conf_dh_param_bin( mbedtls_ssl_config *conf,
2881 const unsigned char *dhm_P, size_t P_len,
2882 const unsigned char *dhm_G, size_t G_len );
Paul Bakker5121ce52009-01-03 21:22:43 +00002883
2884/**
Paul Bakker1b57b062011-01-06 15:48:19 +00002885 * \brief Set the Diffie-Hellman public P and G values,
2886 * read from existing context (server-side only)
2887 *
Manuel Pégourié-Gonnardd36e33f2015-05-05 10:45:39 +02002888 * \param conf SSL configuration
Paul Bakker1b57b062011-01-06 15:48:19 +00002889 * \param dhm_ctx Diffie-Hellman-Merkle context
2890 *
2891 * \return 0 if successful
2892 */
Manuel Pégourié-Gonnard6729e792015-05-11 09:50:24 +02002893int mbedtls_ssl_conf_dh_param_ctx( mbedtls_ssl_config *conf, mbedtls_dhm_context *dhm_ctx );
Manuel Pégourié-Gonnardcf141ca2015-05-20 10:35:51 +02002894#endif /* MBEDTLS_DHM_C && defined(MBEDTLS_SSL_SRV_C) */
Paul Bakker1b57b062011-01-06 15:48:19 +00002895
Manuel Pégourié-Gonnardbd990d62015-06-11 14:49:42 +02002896#if defined(MBEDTLS_DHM_C) && defined(MBEDTLS_SSL_CLI_C)
2897/**
2898 * \brief Set the minimum length for Diffie-Hellman parameters.
2899 * (Client-side only.)
2900 * (Default: 1024 bits.)
2901 *
2902 * \param conf SSL configuration
2903 * \param bitlen Minimum bit length of the DHM prime
2904 */
2905void mbedtls_ssl_conf_dhm_min_bitlen( mbedtls_ssl_config *conf,
2906 unsigned int bitlen );
2907#endif /* MBEDTLS_DHM_C && MBEDTLS_SSL_CLI_C */
2908
Manuel Pégourié-Gonnardb541da62015-06-17 11:43:30 +02002909#if defined(MBEDTLS_ECP_C)
Hanno Beckerc1096e72019-06-19 12:30:41 +01002910#if !defined(MBEDTLS_SSL_CONF_SINGLE_EC)
Gergely Budai987bfb52014-01-19 21:48:42 +01002911/**
Manuel Pégourié-Gonnardcd49f762014-02-04 15:14:13 +01002912 * \brief Set the allowed curves in order of preference.
Manuel Pégourié-Gonnard5de25802014-02-03 15:56:49 +01002913 * (Default: all defined curves.)
Gergely Budai987bfb52014-01-19 21:48:42 +01002914 *
Manuel Pégourié-Gonnardcd49f762014-02-04 15:14:13 +01002915 * On server: this only affects selection of the ECDHE curve;
2916 * the curves used for ECDH and ECDSA are determined by the
2917 * list of available certificates instead.
2918 *
2919 * On client: this affects the list of curves offered for any
Manuel Pégourié-Gonnardab240102014-02-04 16:18:07 +01002920 * use. The server can override our preference order.
2921 *
Manuel Pégourié-Gonnard65eefc82015-10-23 14:08:48 +02002922 * Both sides: limits the set of curves accepted for use in
2923 * ECDHE and in the peer's end-entity certificate.
Manuel Pégourié-Gonnard27716cc2015-06-17 11:49:39 +02002924 *
Manuel Pégourié-Gonnard65eefc82015-10-23 14:08:48 +02002925 * \note This has no influence on which curves are allowed inside the
Manuel Pégourié-Gonnard27716cc2015-06-17 11:49:39 +02002926 * certificate chains, see \c mbedtls_ssl_conf_cert_profile()
Manuel Pégourié-Gonnard65eefc82015-10-23 14:08:48 +02002927 * for that. For the end-entity certificate however, the key
2928 * will be accepted only if it is allowed both by this list
2929 * and by the cert profile.
Gergely Budai987bfb52014-01-19 21:48:42 +01002930 *
Manuel Pégourié-Gonnard36a8b572015-06-17 12:43:26 +02002931 * \note This list should be ordered by decreasing preference
2932 * (preferred curve first).
2933 *
Hanno Beckerc1096e72019-06-19 12:30:41 +01002934 * \note On highly constrained systems, the support for a single
2935 * fixed elliptic curve can be configured at compile time
2936 * through the option MBEDTLS_SSL_CONF_SINGLE_EC.
2937 *
Manuel Pégourié-Gonnardd36e33f2015-05-05 10:45:39 +02002938 * \param conf SSL configuration
Manuel Pégourié-Gonnardcd49f762014-02-04 15:14:13 +01002939 * \param curves Ordered list of allowed curves,
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002940 * terminated by MBEDTLS_ECP_DP_NONE.
Gergely Budai987bfb52014-01-19 21:48:42 +01002941 */
Manuel Pégourié-Gonnard36a8b572015-06-17 12:43:26 +02002942void mbedtls_ssl_conf_curves( mbedtls_ssl_config *conf,
2943 const mbedtls_ecp_group_id *curves );
Hanno Beckerc1096e72019-06-19 12:30:41 +01002944#endif /* !MBEDTLS_SSL_CONF_SINGLE_EC */
Manuel Pégourié-Gonnardb541da62015-06-17 11:43:30 +02002945#endif /* MBEDTLS_ECP_C */
Gergely Budai987bfb52014-01-19 21:48:42 +01002946
Manuel Pégourié-Gonnarde5f30722015-10-22 17:01:15 +02002947#if defined(MBEDTLS_KEY_EXCHANGE__WITH_CERT__ENABLED)
Manuel Pégourié-Gonnard36a8b572015-06-17 12:43:26 +02002948/**
2949 * \brief Set the allowed hashes for signatures during the handshake.
Manuel Pégourié-Gonnard47229c72015-12-04 15:02:56 +01002950 * (Default: all available hashes except MD5.)
Manuel Pégourié-Gonnard36a8b572015-06-17 12:43:26 +02002951 *
2952 * \note This only affects which hashes are offered and can be used
2953 * for signatures during the handshake. Hashes for message
2954 * authentication and the TLS PRF are controlled by the
2955 * ciphersuite, see \c mbedtls_ssl_conf_ciphersuites(). Hashes
2956 * used for certificate signature are controlled by the
2957 * verification profile, see \c mbedtls_ssl_conf_cert_profile().
2958 *
2959 * \note This list should be ordered by decreasing preference
2960 * (preferred hash first).
2961 *
Hanno Becker56595f42019-06-19 16:31:38 +01002962 * \note On highly constrained systems, the support for a single
2963 * fixed signature hash algorithm can be configured at compile
2964 * time through the option MBEDTLS_SSL_CONF_SINGLE_SIG_HASH.
2965 *
Manuel Pégourié-Gonnard36a8b572015-06-17 12:43:26 +02002966 * \param conf SSL configuration
2967 * \param hashes Ordered list of allowed signature hashes,
2968 * terminated by \c MBEDTLS_MD_NONE.
2969 */
2970void mbedtls_ssl_conf_sig_hashes( mbedtls_ssl_config *conf,
2971 const int *hashes );
Manuel Pégourié-Gonnarde5f30722015-10-22 17:01:15 +02002972#endif /* MBEDTLS_KEY_EXCHANGE__WITH_CERT__ENABLED */
Manuel Pégourié-Gonnard36a8b572015-06-17 12:43:26 +02002973
Teppo Järvelin4009d8f2019-08-19 14:48:09 +03002974#if defined(MBEDTLS_X509_CRT_PARSE_C) && !defined(MBEDTLS_X509_REMOVE_HOSTNAME_VERIFICATION)
Paul Bakker1b57b062011-01-06 15:48:19 +00002975/**
Darryl Green11999bb2018-03-13 15:22:58 +00002976 * \brief Set or reset the hostname to check against the received
2977 * server certificate. It sets the ServerName TLS extension,
Hanno Becker0446a392017-04-07 12:59:32 +01002978 * too, if that extension is enabled. (client-side only)
Paul Bakker6db455e2013-09-18 17:29:31 +02002979 *
Paul Bakker5121ce52009-01-03 21:22:43 +00002980 * \param ssl SSL context
Hanno Becker0446a392017-04-07 12:59:32 +01002981 * \param hostname the server hostname, may be NULL to clear hostname
Darryl Green11999bb2018-03-13 15:22:58 +00002982
Hanno Becker0446a392017-04-07 12:59:32 +01002983 * \note Maximum hostname length MBEDTLS_SSL_MAX_HOST_NAME_LEN.
Paul Bakker5121ce52009-01-03 21:22:43 +00002984 *
Darryl Green11999bb2018-03-13 15:22:58 +00002985 * \return 0 if successful, MBEDTLS_ERR_SSL_ALLOC_FAILED on
2986 * allocation failure, MBEDTLS_ERR_SSL_BAD_INPUT_DATA on
Hanno Becker0446a392017-04-07 12:59:32 +01002987 * too long input hostname.
2988 *
Hanno Becker1a9a51c2017-04-07 13:02:16 +01002989 * Hostname set to the one provided on success (cleared
Darryl Green11999bb2018-03-13 15:22:58 +00002990 * when NULL). On allocation failure hostname is cleared.
Hanno Becker0446a392017-04-07 12:59:32 +01002991 * On too long input failure, old hostname is unchanged.
Paul Bakker5121ce52009-01-03 21:22:43 +00002992 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002993int mbedtls_ssl_set_hostname( mbedtls_ssl_context *ssl, const char *hostname );
Teppo Järvelin4009d8f2019-08-19 14:48:09 +03002994#endif /* MBEDTLS_X509_CRT_PARSE_C && !MBEDTLS_X509_REMOVE_HOSTNAME_VERIFICATION */
Paul Bakker5121ce52009-01-03 21:22:43 +00002995
Manuel Pégourié-Gonnardbc2b7712015-05-06 11:14:19 +01002996#if defined(MBEDTLS_SSL_SERVER_NAME_INDICATION)
Paul Bakker5121ce52009-01-03 21:22:43 +00002997/**
Manuel Pégourié-Gonnard1af6c852015-05-10 23:10:37 +02002998 * \brief Set own certificate and key for the current handshake
2999 *
Manuel Pégourié-Gonnard6729e792015-05-11 09:50:24 +02003000 * \note Same as \c mbedtls_ssl_conf_own_cert() but for use within
Manuel Pégourié-Gonnard1af6c852015-05-10 23:10:37 +02003001 * the SNI callback.
3002 *
3003 * \param ssl SSL context
3004 * \param own_cert own public certificate chain
3005 * \param pk_key own private key
3006 *
Manuel Pégourié-Gonnard6a8ca332015-05-28 09:33:39 +02003007 * \return 0 on success or MBEDTLS_ERR_SSL_ALLOC_FAILED
Manuel Pégourié-Gonnard1af6c852015-05-10 23:10:37 +02003008 */
3009int mbedtls_ssl_set_hs_own_cert( mbedtls_ssl_context *ssl,
3010 mbedtls_x509_crt *own_cert,
3011 mbedtls_pk_context *pk_key );
3012
3013/**
Manuel Pégourié-Gonnard22bfa4b2015-05-11 08:46:37 +02003014 * \brief Set the data required to verify peer certificate for the
3015 * current handshake
3016 *
Manuel Pégourié-Gonnard6729e792015-05-11 09:50:24 +02003017 * \note Same as \c mbedtls_ssl_conf_ca_chain() but for use within
Manuel Pégourié-Gonnard22bfa4b2015-05-11 08:46:37 +02003018 * the SNI callback.
3019 *
3020 * \param ssl SSL context
3021 * \param ca_chain trusted CA chain (meaning all fully trusted top-level CAs)
3022 * \param ca_crl trusted CA CRLs
3023 */
3024void mbedtls_ssl_set_hs_ca_chain( mbedtls_ssl_context *ssl,
3025 mbedtls_x509_crt *ca_chain,
3026 mbedtls_x509_crl *ca_crl );
3027
3028/**
Manuel Pégourié-Gonnardcdc26ae2015-06-19 12:16:31 +02003029 * \brief Set authmode for the current handshake.
3030 *
3031 * \note Same as \c mbedtls_ssl_conf_authmode() but for use within
3032 * the SNI callback.
3033 *
3034 * \param ssl SSL context
3035 * \param authmode MBEDTLS_SSL_VERIFY_NONE, MBEDTLS_SSL_VERIFY_OPTIONAL or
3036 * MBEDTLS_SSL_VERIFY_REQUIRED
3037 */
3038void mbedtls_ssl_set_hs_authmode( mbedtls_ssl_context *ssl,
3039 int authmode );
3040
3041/**
Paul Bakker5701cdc2012-09-27 21:49:42 +00003042 * \brief Set server side ServerName TLS extension callback
3043 * (optional, server-side only).
3044 *
3045 * If set, the ServerName callback is called whenever the
3046 * server receives a ServerName TLS extension from the client
3047 * during a handshake. The ServerName callback has the
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003048 * following parameters: (void *parameter, mbedtls_ssl_context *ssl,
Paul Bakker5701cdc2012-09-27 21:49:42 +00003049 * const unsigned char *hostname, size_t len). If a suitable
Manuel Pégourié-Gonnardcdc26ae2015-06-19 12:16:31 +02003050 * certificate is found, the callback must set the
Manuel Pégourié-Gonnard22bfa4b2015-05-11 08:46:37 +02003051 * certificate(s) and key(s) to use with \c
3052 * mbedtls_ssl_set_hs_own_cert() (can be called repeatedly),
Manuel Pégourié-Gonnardcdc26ae2015-06-19 12:16:31 +02003053 * and may optionally adjust the CA and associated CRL with \c
3054 * mbedtls_ssl_set_hs_ca_chain() as well as the client
3055 * authentication mode with \c mbedtls_ssl_set_hs_authmode(),
3056 * then must return 0. If no matching name is found, the
3057 * callback must either set a default cert, or
3058 * return non-zero to abort the handshake at this point.
Paul Bakker5701cdc2012-09-27 21:49:42 +00003059 *
Manuel Pégourié-Gonnardd36e33f2015-05-05 10:45:39 +02003060 * \param conf SSL configuration
Paul Bakker5701cdc2012-09-27 21:49:42 +00003061 * \param f_sni verification function
3062 * \param p_sni verification parameter
3063 */
Manuel Pégourié-Gonnard6729e792015-05-11 09:50:24 +02003064void mbedtls_ssl_conf_sni( mbedtls_ssl_config *conf,
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003065 int (*f_sni)(void *, mbedtls_ssl_context *, const unsigned char *,
Paul Bakker5701cdc2012-09-27 21:49:42 +00003066 size_t),
3067 void *p_sni );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003068#endif /* MBEDTLS_SSL_SERVER_NAME_INDICATION */
Paul Bakker5701cdc2012-09-27 21:49:42 +00003069
Manuel Pégourié-Gonnardeef142d2015-09-16 10:05:04 +02003070#if defined(MBEDTLS_KEY_EXCHANGE_ECJPAKE_ENABLED)
Manuel Pégourié-Gonnard7002f4a2015-09-15 12:43:43 +02003071/**
3072 * \brief Set the EC J-PAKE password for current handshake.
3073 *
3074 * \note An internal copy is made, and destroyed as soon as the
3075 * handshake is completed, or when the SSL context is reset or
3076 * freed.
3077 *
3078 * \note The SSL context needs to be already set up. The right place
3079 * to call this function is between \c mbedtls_ssl_setup() or
3080 * \c mbedtls_ssl_reset() and \c mbedtls_ssl_handshake().
3081 *
3082 * \param ssl SSL context
3083 * \param pw EC J-PAKE password (pre-shared secret)
3084 * \param pw_len length of pw in bytes
3085 *
3086 * \return 0 on success, or a negative error code.
3087 */
3088int mbedtls_ssl_set_hs_ecjpake_password( mbedtls_ssl_context *ssl,
3089 const unsigned char *pw,
3090 size_t pw_len );
Manuel Pégourié-Gonnardeef142d2015-09-16 10:05:04 +02003091#endif /*MBEDTLS_KEY_EXCHANGE_ECJPAKE_ENABLED */
Manuel Pégourié-Gonnard7002f4a2015-09-15 12:43:43 +02003092
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003093#if defined(MBEDTLS_SSL_ALPN)
Manuel Pégourié-Gonnard7e250d42014-04-04 16:08:41 +02003094/**
3095 * \brief Set the supported Application Layer Protocols.
3096 *
Manuel Pégourié-Gonnardd36e33f2015-05-05 10:45:39 +02003097 * \param conf SSL configuration
Simon Butcher157cb652016-02-13 23:19:04 +00003098 * \param protos Pointer to a NULL-terminated list of supported protocols,
3099 * in decreasing preference order. The pointer to the list is
3100 * recorded by the library for later reference as required, so
Aaron Jonesd96e5262016-06-17 14:40:41 +00003101 * the lifetime of the table must be atleast as long as the
3102 * lifetime of the SSL configuration structure.
Manuel Pégourié-Gonnard0b874dc2014-04-07 10:57:45 +02003103 *
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003104 * \return 0 on success, or MBEDTLS_ERR_SSL_BAD_INPUT_DATA.
Manuel Pégourié-Gonnard7e250d42014-04-04 16:08:41 +02003105 */
Manuel Pégourié-Gonnard6729e792015-05-11 09:50:24 +02003106int mbedtls_ssl_conf_alpn_protocols( mbedtls_ssl_config *conf, const char **protos );
Manuel Pégourié-Gonnard7e250d42014-04-04 16:08:41 +02003107
3108/**
3109 * \brief Get the name of the negotiated Application Layer Protocol.
3110 * This function should be called after the handshake is
3111 * completed.
3112 *
3113 * \param ssl SSL context
3114 *
3115 * \return Protcol name, or NULL if no protocol was negotiated.
3116 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003117const char *mbedtls_ssl_get_alpn_protocol( const mbedtls_ssl_context *ssl );
3118#endif /* MBEDTLS_SSL_ALPN */
Manuel Pégourié-Gonnard7e250d42014-04-04 16:08:41 +02003119
Hanno Becker33b9b252019-07-05 11:23:25 +01003120#if !defined(MBEDTLS_SSL_CONF_MAX_MINOR_VER) || \
3121 !defined(MBEDTLS_SSL_CONF_MAX_MAJOR_VER)
Paul Bakker5701cdc2012-09-27 21:49:42 +00003122/**
Paul Bakker490ecc82011-10-06 13:04:09 +00003123 * \brief Set the maximum supported version sent from the client side
Paul Bakker2fbefde2013-06-29 16:01:15 +02003124 * and/or accepted at the server side
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003125 * (Default: MBEDTLS_SSL_MAX_MAJOR_VERSION, MBEDTLS_SSL_MAX_MINOR_VERSION)
Paul Bakker2fbefde2013-06-29 16:01:15 +02003126 *
Manuel Pégourié-Gonnard01e5e8c2015-05-11 10:11:56 +02003127 * \note This ignores ciphersuites from higher versions.
3128 *
3129 * \note With DTLS, use MBEDTLS_SSL_MINOR_VERSION_2 for DTLS 1.0 and
3130 * MBEDTLS_SSL_MINOR_VERSION_3 for DTLS 1.2
Paul Bakkerd2f068e2013-08-27 21:19:20 +02003131 *
Hanno Becker94c40d12019-07-05 11:15:37 +01003132 * \note On constrained systems, the maximum major/minor version can
Hanno Beckerf1c2a332019-06-12 15:27:23 +01003133 * also be configured at compile-time by setting
Hanno Becker94c40d12019-07-05 11:15:37 +01003134 * MBEDTLS_SSL_CONF_MAX_MAJOR_VER and
3135 * MBEDTLS_SSL_CONF_MAX_MINOR_VER.
Hanno Beckerf1c2a332019-06-12 15:27:23 +01003136 *
Manuel Pégourié-Gonnardd36e33f2015-05-05 10:45:39 +02003137 * \param conf SSL configuration
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003138 * \param major Major version number (only MBEDTLS_SSL_MAJOR_VERSION_3 supported)
3139 * \param minor Minor version number (MBEDTLS_SSL_MINOR_VERSION_0,
3140 * MBEDTLS_SSL_MINOR_VERSION_1 and MBEDTLS_SSL_MINOR_VERSION_2,
3141 * MBEDTLS_SSL_MINOR_VERSION_3 supported)
Paul Bakker490ecc82011-10-06 13:04:09 +00003142 */
Manuel Pégourié-Gonnard01e5e8c2015-05-11 10:11:56 +02003143void mbedtls_ssl_conf_max_version( mbedtls_ssl_config *conf, int major, int minor );
Hanno Becker33b9b252019-07-05 11:23:25 +01003144#endif /* MBEDTLS_SSL_CONF_MAX_MINOR_VER ||
3145 MBEDTLS_SSL_CONF_MAX_MAJOR_VER */
Paul Bakker490ecc82011-10-06 13:04:09 +00003146
Hanno Becker33b9b252019-07-05 11:23:25 +01003147#if !defined(MBEDTLS_SSL_CONF_MIN_MINOR_VER) || \
3148 !defined(MBEDTLS_SSL_CONF_MIN_MAJOR_VER)
Paul Bakker1d29fb52012-09-28 13:28:45 +00003149/**
3150 * \brief Set the minimum accepted SSL/TLS protocol version
Manuel Pégourié-Gonnard8c8be1e2015-03-31 14:21:11 +02003151 * (Default: TLS 1.0)
Paul Bakkerd2f068e2013-08-27 21:19:20 +02003152 *
Manuel Pégourié-Gonnard448ea502015-01-12 11:40:14 +01003153 * \note Input outside of the SSL_MAX_XXXXX_VERSION and
3154 * SSL_MIN_XXXXX_VERSION range is ignored.
3155 *
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003156 * \note MBEDTLS_SSL_MINOR_VERSION_0 (SSL v3) should be avoided.
Paul Bakker1d29fb52012-09-28 13:28:45 +00003157 *
Manuel Pégourié-Gonnard01e5e8c2015-05-11 10:11:56 +02003158 * \note With DTLS, use MBEDTLS_SSL_MINOR_VERSION_2 for DTLS 1.0 and
3159 * MBEDTLS_SSL_MINOR_VERSION_3 for DTLS 1.2
3160 *
Hanno Beckerf1c2a332019-06-12 15:27:23 +01003161 * \note On constrained systems, the minimum major/minor version can
3162 * also be configured at compile-time by setting
Hanno Becker94c40d12019-07-05 11:15:37 +01003163 * MBEDTLS_SSL_CONF_MIN_MAJOR_VER and
3164 * MBEDTLS_SSL_CONF_MIN_MINOR_VER.
Hanno Beckerf1c2a332019-06-12 15:27:23 +01003165 *
Manuel Pégourié-Gonnardd36e33f2015-05-05 10:45:39 +02003166 * \param conf SSL configuration
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003167 * \param major Major version number (only MBEDTLS_SSL_MAJOR_VERSION_3 supported)
3168 * \param minor Minor version number (MBEDTLS_SSL_MINOR_VERSION_0,
3169 * MBEDTLS_SSL_MINOR_VERSION_1 and MBEDTLS_SSL_MINOR_VERSION_2,
3170 * MBEDTLS_SSL_MINOR_VERSION_3 supported)
Paul Bakker1d29fb52012-09-28 13:28:45 +00003171 */
Manuel Pégourié-Gonnard01e5e8c2015-05-11 10:11:56 +02003172void mbedtls_ssl_conf_min_version( mbedtls_ssl_config *conf, int major, int minor );
Hanno Becker33b9b252019-07-05 11:23:25 +01003173#endif /* MBEDTLS_SSL_CONF_MIN_MINOR_VER ||
3174 MBEDTLS_SSL_CONF_MIN_MAJOR_VER */
Paul Bakker1d29fb52012-09-28 13:28:45 +00003175
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003176#if defined(MBEDTLS_SSL_FALLBACK_SCSV) && defined(MBEDTLS_SSL_CLI_C)
Manuel Pégourié-Gonnard1cbd39d2014-10-20 13:34:59 +02003177/**
3178 * \brief Set the fallback flag (client-side only).
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003179 * (Default: MBEDTLS_SSL_IS_NOT_FALLBACK).
Manuel Pégourié-Gonnard1cbd39d2014-10-20 13:34:59 +02003180 *
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003181 * \note Set to MBEDTLS_SSL_IS_FALLBACK when preparing a fallback
Manuel Pégourié-Gonnard1cbd39d2014-10-20 13:34:59 +02003182 * connection, that is a connection with max_version set to a
3183 * lower value than the value you're willing to use. Such
3184 * fallback connections are not recommended but are sometimes
3185 * necessary to interoperate with buggy (version-intolerant)
3186 * servers.
3187 *
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003188 * \warning You should NOT set this to MBEDTLS_SSL_IS_FALLBACK for
Manuel Pégourié-Gonnard1cbd39d2014-10-20 13:34:59 +02003189 * non-fallback connections! This would appear to work for a
3190 * while, then cause failures when the server is upgraded to
3191 * support a newer TLS version.
3192 *
Manuel Pégourié-Gonnard684b0592015-05-06 09:27:31 +01003193 * \param conf SSL configuration
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003194 * \param fallback MBEDTLS_SSL_IS_NOT_FALLBACK or MBEDTLS_SSL_IS_FALLBACK
Manuel Pégourié-Gonnard1cbd39d2014-10-20 13:34:59 +02003195 */
Manuel Pégourié-Gonnard6729e792015-05-11 09:50:24 +02003196void mbedtls_ssl_conf_fallback( mbedtls_ssl_config *conf, char fallback );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003197#endif /* MBEDTLS_SSL_FALLBACK_SCSV && MBEDTLS_SSL_CLI_C */
Manuel Pégourié-Gonnard1cbd39d2014-10-20 13:34:59 +02003198
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003199#if defined(MBEDTLS_SSL_ENCRYPT_THEN_MAC)
Manuel Pégourié-Gonnard699cafa2014-10-27 13:57:03 +01003200/**
3201 * \brief Enable or disable Encrypt-then-MAC
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003202 * (Default: MBEDTLS_SSL_ETM_ENABLED)
Manuel Pégourié-Gonnard699cafa2014-10-27 13:57:03 +01003203 *
3204 * \note This should always be enabled, it is a security
3205 * improvement, and should not cause any interoperability
3206 * issue (used only if the peer supports it too).
3207 *
Manuel Pégourié-Gonnardd36e33f2015-05-05 10:45:39 +02003208 * \param conf SSL configuration
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003209 * \param etm MBEDTLS_SSL_ETM_ENABLED or MBEDTLS_SSL_ETM_DISABLED
Manuel Pégourié-Gonnard699cafa2014-10-27 13:57:03 +01003210 */
Manuel Pégourié-Gonnard6729e792015-05-11 09:50:24 +02003211void mbedtls_ssl_conf_encrypt_then_mac( mbedtls_ssl_config *conf, char etm );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003212#endif /* MBEDTLS_SSL_ENCRYPT_THEN_MAC */
Manuel Pégourié-Gonnard699cafa2014-10-27 13:57:03 +01003213
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003214#if defined(MBEDTLS_SSL_EXTENDED_MASTER_SECRET)
Hanno Beckerab1ce762019-06-12 13:35:03 +01003215#if !defined(MBEDTLS_SSL_CONF_EXTENDED_MASTER_SECRET)
Manuel Pégourié-Gonnard367381f2014-10-20 18:40:56 +02003216/**
3217 * \brief Enable or disable Extended Master Secret negotiation.
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003218 * (Default: MBEDTLS_SSL_EXTENDED_MS_ENABLED)
Manuel Pégourié-Gonnard367381f2014-10-20 18:40:56 +02003219 *
3220 * \note This should always be enabled, it is a security fix to the
3221 * protocol, and should not cause any interoperability issue
3222 * (used only if the peer supports it too).
3223 *
Hanno Beckerab1ce762019-06-12 13:35:03 +01003224 * \note On constrained systems, this option can also be
3225 * fixed at compile-time by defining the constant
3226 * MBEDTLS_SSL_CONF_ENFORCE_EXTENDED_MASTER_SECRET
3227 * as MBEDTLS_SSL_EXTENDED_MS_ENABLED or
3228 * MBEDTLS_SSL_EXTENDED_MS_DISABLED.
3229 *
Manuel Pégourié-Gonnardd36e33f2015-05-05 10:45:39 +02003230 * \param conf SSL configuration
Hanno Beckerab1ce762019-06-12 13:35:03 +01003231 * \param ems MBEDTLS_SSL_EXTENDED_MS_ENABLED or
3232 * MBEDTLS_SSL_EXTENDED_MS_DISABLED
Manuel Pégourié-Gonnard367381f2014-10-20 18:40:56 +02003233 */
Manuel Pégourié-Gonnard6729e792015-05-11 09:50:24 +02003234void mbedtls_ssl_conf_extended_master_secret( mbedtls_ssl_config *conf, char ems );
Hanno Beckerab1ce762019-06-12 13:35:03 +01003235#endif /* !MBEDTLS_SSL_CONF_EXTENDED_MASTER_SECRET */
Jarno Lamsa7a5e2be2019-06-10 10:13:03 +03003236
Hanno Beckerab1ce762019-06-12 13:35:03 +01003237#if !defined(MBEDTLS_SSL_CONF_ENFORCE_EXTENDED_MASTER_SECRET)
Jarno Lamsa7a5e2be2019-06-10 10:13:03 +03003238/**
3239 * \brief Enable or disable Extended Master Secret enforcing.
Jarno Lamsa18b9a492019-06-10 15:23:29 +03003240 * (Default: MBEDTLS_SSL_EXTENDED_MS_ENFORCE_DISABLED)
Jarno Lamsa7a5e2be2019-06-10 10:13:03 +03003241 *
Jarno Lamsa20095af2019-06-11 17:16:58 +03003242 * \note If the use of extended master secret is configured (see
3243 * `mbedtls_ssl_conf_extended_master_secret()`) and this
3244 * option is set, handshakes not leading to the use of the
3245 * extended master secret will be aborted: On the server, fail
3246 * the handshake if the client doesn't advertise the
3247 * ExtendedMasterSecret extension. On the client: Fail the
3248 * handshake if the server doesn't consent to the use of the
3249 * ExtendedMasterSecret extension in its ServerHello.
Jarno Lamsa7a5e2be2019-06-10 10:13:03 +03003250 *
Jarno Lamsa20095af2019-06-11 17:16:58 +03003251 * \param conf Currently used SSL configuration struct.
Jarno Lamsa95f752e2019-06-10 10:15:49 +03003252 * \param ems_enf MBEDTLS_SSL_EXTENDED_MS_ENFORCE_ENABLED or
Jarno Lamsad9382f82019-06-10 10:27:14 +03003253 * MBEDTLS_SSL_EXTENDED_MS_ENFORCE_DISABLED
Hanno Beckerab1ce762019-06-12 13:35:03 +01003254
3255 * \note On constrained systems, this option can also be
3256 * fixed at compile-time by defining the constant
3257 * MBEDTLS_SSL_CONF_ENFORCE_EXTENDED_MASTER_SECRET
3258 * as MBEDTLS_SSL_EXTENDED_MS_ENFORCE_ENABLED or
3259 * MBEDTLS_SSL_EXTENDED_MS_ENFORCE_DISABLED.
3260 *
Jarno Lamsa7a5e2be2019-06-10 10:13:03 +03003261 */
3262void mbedtls_ssl_conf_extended_master_secret_enforce( mbedtls_ssl_config *conf,
Jarno Lamsa20095af2019-06-11 17:16:58 +03003263 char ems_enf );
Hanno Beckerab1ce762019-06-12 13:35:03 +01003264#endif /* !MBEDTLS_SSL_CONF_ENFORCE_EXTENDED_MASTER_SECRET */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003265#endif /* MBEDTLS_SSL_EXTENDED_MASTER_SECRET */
Manuel Pégourié-Gonnard367381f2014-10-20 18:40:56 +02003266
Manuel Pégourié-Gonnard66dc5552015-05-14 12:28:21 +02003267#if defined(MBEDTLS_ARC4_C)
Manuel Pégourié-Gonnardbd47a582015-01-12 13:43:29 +01003268/**
3269 * \brief Disable or enable support for RC4
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003270 * (Default: MBEDTLS_SSL_ARC4_DISABLED)
Manuel Pégourié-Gonnardbd47a582015-01-12 13:43:29 +01003271 *
Aaron Jonesd96e5262016-06-17 14:40:41 +00003272 * \warning Use of RC4 in DTLS/TLS has been prohibited by RFC 7465
Simon Butcher68c0bd72016-02-13 22:44:49 +00003273 * for security reasons. Use at your own risk.
Manuel Pégourié-Gonnardbd47a582015-01-12 13:43:29 +01003274 *
Simon Butcher68c0bd72016-02-13 22:44:49 +00003275 * \note This function is deprecated and will likely be removed in
3276 * a future version of the library.
3277 * RC4 is disabled by default at compile time and needs to be
3278 * actively enabled for use with legacy systems.
Manuel Pégourié-Gonnardbd47a582015-01-12 13:43:29 +01003279 *
Manuel Pégourié-Gonnardd36e33f2015-05-05 10:45:39 +02003280 * \param conf SSL configuration
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003281 * \param arc4 MBEDTLS_SSL_ARC4_ENABLED or MBEDTLS_SSL_ARC4_DISABLED
Manuel Pégourié-Gonnardbd47a582015-01-12 13:43:29 +01003282 */
Manuel Pégourié-Gonnard6729e792015-05-11 09:50:24 +02003283void mbedtls_ssl_conf_arc4_support( mbedtls_ssl_config *conf, char arc4 );
Manuel Pégourié-Gonnard66dc5552015-05-14 12:28:21 +02003284#endif /* MBEDTLS_ARC4_C */
Manuel Pégourié-Gonnardbd47a582015-01-12 13:43:29 +01003285
Hanno Beckerc2cfdaa2019-06-13 12:33:03 +01003286#if defined(MBEDTLS_SSL_SRV_C) && !defined(MBEDTLS_SSL_CONF_CERT_REQ_CA_LIST)
Janos Follath088ce432017-04-10 12:42:31 +01003287/**
3288 * \brief Whether to send a list of acceptable CAs in
3289 * CertificateRequest messages.
3290 * (Default: do send)
3291 *
Hanno Beckerc2cfdaa2019-06-13 12:33:03 +01003292 * \note On constrained systems, this options can also be configured
3293 * at compile-time via MBEDTLS_SSL_CONF_CERT_REQ_CA_LIST.
3294 *
Janos Follath088ce432017-04-10 12:42:31 +01003295 * \param conf SSL configuration
3296 * \param cert_req_ca_list MBEDTLS_SSL_CERT_REQ_CA_LIST_ENABLED or
3297 * MBEDTLS_SSL_CERT_REQ_CA_LIST_DISABLED
3298 */
3299void mbedtls_ssl_conf_cert_req_ca_list( mbedtls_ssl_config *conf,
3300 char cert_req_ca_list );
Hanno Beckerc2cfdaa2019-06-13 12:33:03 +01003301#endif /* MBEDTLS_SSL_SRV_C && !MBEDTLS_SSL_CONF_CERT_REQ_CA_LIST */
Janos Follath088ce432017-04-10 12:42:31 +01003302
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003303#if defined(MBEDTLS_SSL_MAX_FRAGMENT_LENGTH)
Paul Bakker490ecc82011-10-06 13:04:09 +00003304/**
k-stachowiakd7077832019-04-29 11:15:43 +02003305 * \brief Set the maximum fragment length to emit and/or negotiate.
3306 * (Typical: the smaller of #MBEDTLS_SSL_IN_CONTENT_LEN and
3307 * #MBEDTLS_SSL_OUT_CONTENT_LEN, usually `2^14` bytes)
Manuel Pégourié-Gonnard8b464592013-07-16 12:45:26 +02003308 * (Server: set maximum fragment length to emit,
k-stachowiakd7077832019-04-29 11:15:43 +02003309 * usually negotiated by the client during handshake)
Manuel Pégourié-Gonnard8b464592013-07-16 12:45:26 +02003310 * (Client: set maximum fragment length to emit *and*
3311 * negotiate with the server during handshake)
k-stachowiakd7077832019-04-29 11:15:43 +02003312 * (Default: #MBEDTLS_SSL_MAX_FRAG_LEN_NONE)
Manuel Pégourié-Gonnard8b464592013-07-16 12:45:26 +02003313 *
k-stachowiakd7077832019-04-29 11:15:43 +02003314 * \note On the client side, the maximum fragment length extension
3315 * *will not* be used, unless the maximum fragment length has
3316 * been set via this function to a value different than
3317 * #MBEDTLS_SSL_MAX_FRAG_LEN_NONE.
Manuel Pégourié-Gonnard0b1d9b22017-09-21 13:15:27 +02003318 *
Manuel Pégourié-Gonnard7e89c172018-08-13 12:45:26 +02003319 * \note This sets the maximum length for a record's payload,
Manuel Pégourié-Gonnard0b1d9b22017-09-21 13:15:27 +02003320 * excluding record overhead that will be added to it, see
3321 * \c mbedtls_ssl_get_record_expansion().
3322 *
k-stachowiakd7077832019-04-29 11:15:43 +02003323 * \note With TLS, this currently only affects ApplicationData (sent
3324 * with \c mbedtls_ssl_read()), not handshake messages.
3325 * With DTLS, this affects both ApplicationData and handshake.
3326 *
Manuel Pégourié-Gonnard0b1d9b22017-09-21 13:15:27 +02003327 * \note For DTLS, it is also possible to set a limit for the total
3328 * size of daragrams passed to the transport layer, including
Manuel Pégourié-Gonnard6e7aaca2018-08-20 10:37:23 +02003329 * record overhead, see \c mbedtls_ssl_set_mtu().
Manuel Pégourié-Gonnard0b1d9b22017-09-21 13:15:27 +02003330 *
Manuel Pégourié-Gonnard6bf89d62015-05-05 17:01:57 +01003331 * \param conf SSL configuration
Paul Bakkerdcbfdcc2013-09-10 16:16:50 +02003332 * \param mfl_code Code for maximum fragment length (allowed values:
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003333 * MBEDTLS_SSL_MAX_FRAG_LEN_512, MBEDTLS_SSL_MAX_FRAG_LEN_1024,
3334 * MBEDTLS_SSL_MAX_FRAG_LEN_2048, MBEDTLS_SSL_MAX_FRAG_LEN_4096)
Manuel Pégourié-Gonnard8b464592013-07-16 12:45:26 +02003335 *
Manuel Pégourié-Gonnardeecb43c2015-05-12 12:56:41 +02003336 * \return 0 if successful or MBEDTLS_ERR_SSL_BAD_INPUT_DATA
Manuel Pégourié-Gonnard8b464592013-07-16 12:45:26 +02003337 */
Manuel Pégourié-Gonnard6729e792015-05-11 09:50:24 +02003338int mbedtls_ssl_conf_max_frag_len( mbedtls_ssl_config *conf, unsigned char mfl_code );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003339#endif /* MBEDTLS_SSL_MAX_FRAGMENT_LENGTH */
Manuel Pégourié-Gonnard8b464592013-07-16 12:45:26 +02003340
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003341#if defined(MBEDTLS_SSL_TRUNCATED_HMAC)
Manuel Pégourié-Gonnard8b464592013-07-16 12:45:26 +02003342/**
Manuel Pégourié-Gonnarde117a8f2015-01-09 12:39:35 +01003343 * \brief Activate negotiation of truncated HMAC
Manuel Pégourié-Gonnard662c6e82015-05-06 17:39:23 +01003344 * (Default: MBEDTLS_SSL_TRUNC_HMAC_DISABLED)
Manuel Pégourié-Gonnarde980a992013-07-19 11:08:52 +02003345 *
Manuel Pégourié-Gonnardd36e33f2015-05-05 10:45:39 +02003346 * \param conf SSL configuration
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003347 * \param truncate Enable or disable (MBEDTLS_SSL_TRUNC_HMAC_ENABLED or
3348 * MBEDTLS_SSL_TRUNC_HMAC_DISABLED)
Manuel Pégourié-Gonnarde980a992013-07-19 11:08:52 +02003349 */
Manuel Pégourié-Gonnard01e5e8c2015-05-11 10:11:56 +02003350void mbedtls_ssl_conf_truncated_hmac( mbedtls_ssl_config *conf, int truncate );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003351#endif /* MBEDTLS_SSL_TRUNCATED_HMAC */
Manuel Pégourié-Gonnarde980a992013-07-19 11:08:52 +02003352
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003353#if defined(MBEDTLS_SSL_CBC_RECORD_SPLITTING)
Manuel Pégourié-Gonnardcfa477e2015-01-07 14:50:54 +01003354/**
3355 * \brief Enable / Disable 1/n-1 record splitting
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003356 * (Default: MBEDTLS_SSL_CBC_RECORD_SPLITTING_ENABLED)
Manuel Pégourié-Gonnardcfa477e2015-01-07 14:50:54 +01003357 *
3358 * \note Only affects SSLv3 and TLS 1.0, not higher versions.
3359 * Does not affect non-CBC ciphersuites in any version.
3360 *
Manuel Pégourié-Gonnard17eab2b2015-05-05 16:34:53 +01003361 * \param conf SSL configuration
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003362 * \param split MBEDTLS_SSL_CBC_RECORD_SPLITTING_ENABLED or
3363 * MBEDTLS_SSL_CBC_RECORD_SPLITTING_DISABLED
Manuel Pégourié-Gonnardcfa477e2015-01-07 14:50:54 +01003364 */
Manuel Pégourié-Gonnard6729e792015-05-11 09:50:24 +02003365void mbedtls_ssl_conf_cbc_record_splitting( mbedtls_ssl_config *conf, char split );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003366#endif /* MBEDTLS_SSL_CBC_RECORD_SPLITTING */
Manuel Pégourié-Gonnardcfa477e2015-01-07 14:50:54 +01003367
Manuel Pégourié-Gonnardb596abf2015-05-20 10:45:29 +02003368#if defined(MBEDTLS_SSL_SESSION_TICKETS) && defined(MBEDTLS_SSL_CLI_C)
Manuel Pégourié-Gonnarde980a992013-07-19 11:08:52 +02003369/**
Manuel Pégourié-Gonnardb596abf2015-05-20 10:45:29 +02003370 * \brief Enable / Disable session tickets (client only).
3371 * (Default: MBEDTLS_SSL_SESSION_TICKETS_ENABLED.)
Manuel Pégourié-Gonnardaa0d4d12013-08-03 13:02:31 +02003372 *
Manuel Pégourié-Gonnardb596abf2015-05-20 10:45:29 +02003373 * \note On server, use \c mbedtls_ssl_conf_session_tickets_cb().
Manuel Pégourié-Gonnardaa0d4d12013-08-03 13:02:31 +02003374 *
Manuel Pégourié-Gonnard2b494452015-05-06 10:05:11 +01003375 * \param conf SSL configuration
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003376 * \param use_tickets Enable or disable (MBEDTLS_SSL_SESSION_TICKETS_ENABLED or
3377 * MBEDTLS_SSL_SESSION_TICKETS_DISABLED)
Manuel Pégourié-Gonnardaa0d4d12013-08-03 13:02:31 +02003378 */
Manuel Pégourié-Gonnardb596abf2015-05-20 10:45:29 +02003379void mbedtls_ssl_conf_session_tickets( mbedtls_ssl_config *conf, int use_tickets );
3380#endif /* MBEDTLS_SSL_SESSION_TICKETS && MBEDTLS_SSL_CLI_C */
Manuel Pégourié-Gonnardaa0d4d12013-08-03 13:02:31 +02003381
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003382#if defined(MBEDTLS_SSL_RENEGOTIATION)
Manuel Pégourié-Gonnardaa0d4d12013-08-03 13:02:31 +02003383/**
Paul Bakker09f097d2012-10-23 11:54:56 +00003384 * \brief Enable / Disable renegotiation support for connection when
3385 * initiated by peer
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003386 * (Default: MBEDTLS_SSL_RENEGOTIATION_DISABLED)
Paul Bakker09f097d2012-10-23 11:54:56 +00003387 *
Manuel Pégourié-Gonnard398b2062015-05-28 15:13:30 +02003388 * \warning It is recommended to always disable renegotation unless you
3389 * know you need it and you know what you're doing. In the
Aaron Jonesd96e5262016-06-17 14:40:41 +00003390 * past, there have been several issues associated with
Manuel Pégourié-Gonnard398b2062015-05-28 15:13:30 +02003391 * renegotiation or a poor understanding of its properties.
3392 *
3393 * \note Server-side, enabling renegotiation also makes the server
3394 * susceptible to a resource DoS by a malicious client.
Paul Bakker48916f92012-09-16 19:57:18 +00003395 *
Manuel Pégourié-Gonnardd36e33f2015-05-05 10:45:39 +02003396 * \param conf SSL configuration
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003397 * \param renegotiation Enable or disable (MBEDTLS_SSL_RENEGOTIATION_ENABLED or
3398 * MBEDTLS_SSL_RENEGOTIATION_DISABLED)
Paul Bakker48916f92012-09-16 19:57:18 +00003399 */
Manuel Pégourié-Gonnard6729e792015-05-11 09:50:24 +02003400void mbedtls_ssl_conf_renegotiation( mbedtls_ssl_config *conf, int renegotiation );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003401#endif /* MBEDTLS_SSL_RENEGOTIATION */
Paul Bakker48916f92012-09-16 19:57:18 +00003402
Hanno Beckerb0b2b672019-06-12 16:58:10 +01003403#if !defined(MBEDTLS_SSL_CONF_ALLOW_LEGACY_RENEGOTIATION)
Paul Bakker48916f92012-09-16 19:57:18 +00003404/**
3405 * \brief Prevent or allow legacy renegotiation.
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003406 * (Default: MBEDTLS_SSL_LEGACY_NO_RENEGOTIATION)
Paul Bakker9af723c2014-05-01 13:03:14 +02003407 *
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003408 * MBEDTLS_SSL_LEGACY_NO_RENEGOTIATION allows connections to
Paul Bakkerd0f6fa72012-09-17 09:18:12 +00003409 * be established even if the peer does not support
3410 * secure renegotiation, but does not allow renegotiation
3411 * to take place if not secure.
3412 * (Interoperable and secure option)
3413 *
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003414 * MBEDTLS_SSL_LEGACY_ALLOW_RENEGOTIATION allows renegotiations
Paul Bakkerd0f6fa72012-09-17 09:18:12 +00003415 * with non-upgraded peers. Allowing legacy renegotiation
3416 * makes the connection vulnerable to specific man in the
3417 * middle attacks. (See RFC 5746)
3418 * (Most interoperable and least secure option)
3419 *
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003420 * MBEDTLS_SSL_LEGACY_BREAK_HANDSHAKE breaks off connections
Paul Bakkerd0f6fa72012-09-17 09:18:12 +00003421 * if peer does not support secure renegotiation. Results
3422 * in interoperability issues with non-upgraded peers
3423 * that do not support renegotiation altogether.
3424 * (Most secure option, interoperability issues)
Paul Bakker48916f92012-09-16 19:57:18 +00003425 *
Manuel Pégourié-Gonnardd36e33f2015-05-05 10:45:39 +02003426 * \param conf SSL configuration
Paul Bakker6831c4a2012-11-07 19:46:27 +00003427 * \param allow_legacy Prevent or allow (SSL_NO_LEGACY_RENEGOTIATION,
3428 * SSL_ALLOW_LEGACY_RENEGOTIATION or
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003429 * MBEDTLS_SSL_LEGACY_BREAK_HANDSHAKE)
Hanno Beckerb0b2b672019-06-12 16:58:10 +01003430 *
3431 *
3432 * \note On constrained systems, this option can also be
3433 * fixed at compile-time by defining the constant
3434 * MBEDTLS_SSL_CONF_ALLOW_LEGACY_RENEGOTIATION.
Paul Bakker48916f92012-09-16 19:57:18 +00003435 */
Manuel Pégourié-Gonnard6729e792015-05-11 09:50:24 +02003436void mbedtls_ssl_conf_legacy_renegotiation( mbedtls_ssl_config *conf, int allow_legacy );
Hanno Beckerb0b2b672019-06-12 16:58:10 +01003437#endif /* !MBEDTLS_SSL_CONF_ALLOW_LEGACY_RENEGOTIATION */
Paul Bakker48916f92012-09-16 19:57:18 +00003438
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003439#if defined(MBEDTLS_SSL_RENEGOTIATION)
Paul Bakker48916f92012-09-16 19:57:18 +00003440/**
Manuel Pégourié-Gonnarddf3acd82014-10-15 15:07:45 +02003441 * \brief Enforce renegotiation requests.
Manuel Pégourié-Gonnarda9964db2014-07-03 19:29:16 +02003442 * (Default: enforced, max_records = 16)
Manuel Pégourié-Gonnarda9964db2014-07-03 19:29:16 +02003443 *
Manuel Pégourié-Gonnard44ade652014-08-19 13:58:40 +02003444 * When we request a renegotiation, the peer can comply or
3445 * ignore the request. This function allows us to decide
3446 * whether to enforce our renegotiation requests by closing
3447 * the connection if the peer doesn't comply.
Manuel Pégourié-Gonnarda9964db2014-07-03 19:29:16 +02003448 *
Manuel Pégourié-Gonnard44ade652014-08-19 13:58:40 +02003449 * However, records could already be in transit from the peer
3450 * when the request is emitted. In order to increase
3451 * reliability, we can accept a number of records before the
3452 * expected handshake records.
Manuel Pégourié-Gonnarda9964db2014-07-03 19:29:16 +02003453 *
3454 * The optimal value is highly dependent on the specific usage
3455 * scenario.
3456 *
Manuel Pégourié-Gonnarddf3acd82014-10-15 15:07:45 +02003457 * \note With DTLS and server-initiated renegotiation, the
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003458 * HelloRequest is retransmited every time mbedtls_ssl_read() times
Manuel Pégourié-Gonnarddf3acd82014-10-15 15:07:45 +02003459 * out or receives Application Data, until:
3460 * - max_records records have beens seen, if it is >= 0, or
3461 * - the number of retransmits that would happen during an
3462 * actual handshake has been reached.
3463 * Please remember the request might be lost a few times
3464 * if you consider setting max_records to a really low value.
3465 *
Manuel Pégourié-Gonnard44ade652014-08-19 13:58:40 +02003466 * \warning On client, the grace period can only happen during
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003467 * mbedtls_ssl_read(), as opposed to mbedtls_ssl_write() and mbedtls_ssl_renegotiate()
Manuel Pégourié-Gonnard44ade652014-08-19 13:58:40 +02003468 * which always behave as if max_record was 0. The reason is,
3469 * if we receive application data from the server, we need a
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003470 * place to write it, which only happens during mbedtls_ssl_read().
Manuel Pégourié-Gonnard44ade652014-08-19 13:58:40 +02003471 *
Manuel Pégourié-Gonnardd36e33f2015-05-05 10:45:39 +02003472 * \param conf SSL configuration
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003473 * \param max_records Use MBEDTLS_SSL_RENEGOTIATION_NOT_ENFORCED if you don't want to
Manuel Pégourié-Gonnarda9964db2014-07-03 19:29:16 +02003474 * enforce renegotiation, or a non-negative value to enforce
3475 * it but allow for a grace period of max_records records.
3476 */
Manuel Pégourié-Gonnard6729e792015-05-11 09:50:24 +02003477void mbedtls_ssl_conf_renegotiation_enforced( mbedtls_ssl_config *conf, int max_records );
Manuel Pégourié-Gonnarda9964db2014-07-03 19:29:16 +02003478
3479/**
Manuel Pégourié-Gonnard837f0fe2014-11-05 13:58:53 +01003480 * \brief Set record counter threshold for periodic renegotiation.
Andres AG18c5c592016-12-15 17:01:16 +00003481 * (Default: 2^48 - 1)
Manuel Pégourié-Gonnard837f0fe2014-11-05 13:58:53 +01003482 *
3483 * Renegotiation is automatically triggered when a record
Hanno Becker8013b272019-05-03 12:55:51 +01003484 * counter (outgoing or incoming) crosses the defined
Manuel Pégourié-Gonnard837f0fe2014-11-05 13:58:53 +01003485 * threshold. The default value is meant to prevent the
3486 * connection from being closed when the counter is about to
3487 * reached its maximal value (it is not allowed to wrap).
3488 *
3489 * Lower values can be used to enforce policies such as "keys
3490 * must be refreshed every N packets with cipher X".
3491 *
Simon Butcheree75b9b2017-02-03 00:21:28 +00003492 * The renegotiation period can be disabled by setting
3493 * conf->disable_renegotiation to
3494 * MBEDTLS_SSL_RENEGOTIATION_DISABLED.
3495 *
3496 * \note When the configured transport is
3497 * MBEDTLS_SSL_TRANSPORT_DATAGRAM the maximum renegotiation
3498 * period is 2^48 - 1, and for MBEDTLS_SSL_TRANSPORT_STREAM,
3499 * the maximum renegotiation period is 2^64 - 1.
Andres AG18c5c592016-12-15 17:01:16 +00003500 *
Manuel Pégourié-Gonnardd36e33f2015-05-05 10:45:39 +02003501 * \param conf SSL configuration
Manuel Pégourié-Gonnard837f0fe2014-11-05 13:58:53 +01003502 * \param period The threshold value: a big-endian 64-bit number.
Manuel Pégourié-Gonnard837f0fe2014-11-05 13:58:53 +01003503 */
Manuel Pégourié-Gonnard6729e792015-05-11 09:50:24 +02003504void mbedtls_ssl_conf_renegotiation_period( mbedtls_ssl_config *conf,
Manuel Pégourié-Gonnard837f0fe2014-11-05 13:58:53 +01003505 const unsigned char period[8] );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003506#endif /* MBEDTLS_SSL_RENEGOTIATION */
Paul Bakker5121ce52009-01-03 21:22:43 +00003507
Paul Bakker43ca69c2011-01-15 17:35:19 +00003508/**
Hanno Becker8b170a02017-10-10 11:51:19 +01003509 * \brief Check if there is data already read from the
3510 * underlying transport but not yet processed.
Paul Bakker5121ce52009-01-03 21:22:43 +00003511 *
3512 * \param ssl SSL context
3513 *
Hanno Becker8b170a02017-10-10 11:51:19 +01003514 * \return 0 if nothing's pending, 1 otherwise.
3515 *
Hanno Becker8b170a02017-10-10 11:51:19 +01003516 * \note This is different in purpose and behaviour from
3517 * \c mbedtls_ssl_get_bytes_avail in that it considers
3518 * any kind of unprocessed data, not only unread
3519 * application data. If \c mbedtls_ssl_get_bytes
3520 * returns a non-zero value, this function will
3521 * also signal pending data, but the converse does
3522 * not hold. For example, in DTLS there might be
3523 * further records waiting to be processed from
3524 * the current underlying transport's datagram.
3525 *
Hanno Becker9b19a122017-10-31 13:00:14 +00003526 * \note If this function returns 1 (data pending), this
Hanno Becker8b170a02017-10-10 11:51:19 +01003527 * does not imply that a subsequent call to
3528 * \c mbedtls_ssl_read will provide any data;
3529 * e.g., the unprocessed data might turn out
3530 * to be an alert or a handshake message.
Hanno Becker9b19a122017-10-31 13:00:14 +00003531 *
3532 * \note This function is useful in the following situation:
3533 * If the SSL/TLS module successfully returns from an
3534 * operation - e.g. a handshake or an application record
3535 * read - and you're awaiting incoming data next, you
3536 * must not immediately idle on the underlying transport
3537 * to have data ready, but you need to check the value
3538 * of this function first. The reason is that the desired
3539 * data might already be read but not yet processed.
3540 * If, in contrast, a previous call to the SSL/TLS module
3541 * returned MBEDTLS_ERR_SSL_WANT_READ, it is not necessary
3542 * to call this function, as the latter error code entails
3543 * that all internal data has been processed.
3544 *
Hanno Becker8b170a02017-10-10 11:51:19 +01003545 */
3546int mbedtls_ssl_check_pending( const mbedtls_ssl_context *ssl );
3547
3548/**
3549 * \brief Return the number of application data bytes
3550 * remaining to be read from the current record.
3551 *
3552 * \param ssl SSL context
3553 *
3554 * \return How many bytes are available in the application
3555 * data record read buffer.
3556 *
3557 * \note When working over a datagram transport, this is
3558 * useful to detect the current datagram's boundary
3559 * in case \c mbedtls_ssl_read has written the maximal
3560 * amount of data fitting into the input buffer.
3561 *
Paul Bakker5121ce52009-01-03 21:22:43 +00003562 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003563size_t mbedtls_ssl_get_bytes_avail( const mbedtls_ssl_context *ssl );
Paul Bakker5121ce52009-01-03 21:22:43 +00003564
3565/**
3566 * \brief Return the result of the certificate verification
3567 *
Hanno Beckercc40d862018-10-23 10:28:01 +01003568 * \param ssl The SSL context to use.
Paul Bakker5121ce52009-01-03 21:22:43 +00003569 *
Hanno Beckercc40d862018-10-23 10:28:01 +01003570 * \return \c 0 if the certificate verification was successful.
3571 * \return \c -1u if the result is not available. This may happen
3572 * e.g. if the handshake aborts early, or a verification
3573 * callback returned a fatal error.
3574 * \return A bitwise combination of \c MBEDTLS_X509_BADCERT_XXX
3575 * and \c MBEDTLS_X509_BADCRL_XXX failure flags; see x509.h.
Paul Bakker5121ce52009-01-03 21:22:43 +00003576 */
Manuel Pégourié-Gonnarde6ef16f2015-05-11 19:54:43 +02003577uint32_t mbedtls_ssl_get_verify_result( const mbedtls_ssl_context *ssl );
Paul Bakker43ca69c2011-01-15 17:35:19 +00003578
3579/**
3580 * \brief Return the name of the current ciphersuite
3581 *
3582 * \param ssl SSL context
3583 *
3584 * \return a string containing the ciphersuite name
3585 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003586const char *mbedtls_ssl_get_ciphersuite( const mbedtls_ssl_context *ssl );
Paul Bakker5121ce52009-01-03 21:22:43 +00003587
3588/**
Paul Bakker43ca69c2011-01-15 17:35:19 +00003589 * \brief Return the current SSL version (SSLv3/TLSv1/etc)
3590 *
3591 * \param ssl SSL context
3592 *
3593 * \return a string containing the SSL version
3594 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003595const char *mbedtls_ssl_get_version( const mbedtls_ssl_context *ssl );
Paul Bakker43ca69c2011-01-15 17:35:19 +00003596
Manuel Pégourié-Gonnard9b35f182014-10-14 17:47:31 +02003597/**
3598 * \brief Return the (maximum) number of bytes added by the record
3599 * layer: header + encryption/MAC overhead (inc. padding)
3600 *
Manuel Pégourié-Gonnard9468ff12017-09-21 13:49:50 +02003601 * \note This function is not available (always returns an error)
3602 * when record compression is enabled.
3603 *
Manuel Pégourié-Gonnard9b35f182014-10-14 17:47:31 +02003604 * \param ssl SSL context
3605 *
3606 * \return Current maximum record expansion in bytes, or
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003607 * MBEDTLS_ERR_SSL_FEATURE_UNAVAILABLE if compression is
Manuel Pégourié-Gonnard932e3932015-04-03 16:37:14 +02003608 * enabled, which makes expansion much less predictable
Manuel Pégourié-Gonnard9b35f182014-10-14 17:47:31 +02003609 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003610int mbedtls_ssl_get_record_expansion( const mbedtls_ssl_context *ssl );
Manuel Pégourié-Gonnard9b35f182014-10-14 17:47:31 +02003611
Manuel Pégourié-Gonnarda2cda6b2015-08-31 18:30:52 +02003612#if defined(MBEDTLS_SSL_MAX_FRAGMENT_LENGTH)
3613/**
Andrzej Kurekf3844952020-10-16 23:03:01 +02003614 * \brief Return the maximum fragment length (payload, in bytes) for
3615 * the output buffer. For the client, this is the configured
3616 * value. For the server, it is the minimum of two - the
3617 * configured value and the negotiated one.
Manuel Pégourié-Gonnarda2cda6b2015-08-31 18:30:52 +02003618 *
Manuel Pégourié-Gonnard9468ff12017-09-21 13:49:50 +02003619 * \sa mbedtls_ssl_conf_max_frag_len()
3620 * \sa mbedtls_ssl_get_max_record_payload()
Manuel Pégourié-Gonnarda2cda6b2015-08-31 18:30:52 +02003621 *
3622 * \param ssl SSL context
3623 *
Andrzej Kurekf3844952020-10-16 23:03:01 +02003624 * \return Current maximum fragment length for the output buffer.
Manuel Pégourié-Gonnarda2cda6b2015-08-31 18:30:52 +02003625 */
Andrzej Kurekf3844952020-10-16 23:03:01 +02003626size_t mbedtls_ssl_get_output_max_frag_len( const mbedtls_ssl_context *ssl );
3627
3628/**
3629 * \brief Return the maximum fragment length (payload, in bytes) for
3630 * the input buffer. This is the negotiated maximum fragment
3631 * length, or, if there is none, MBEDTLS_SSL_MAX_CONTENT_LEN.
3632 * If it is not defined either, the value is 2^14. This function
3633 * works as its predecessor, \c mbedtls_ssl_get_max_frag_len().
3634 *
3635 * \sa mbedtls_ssl_conf_max_frag_len()
3636 * \sa mbedtls_ssl_get_max_record_payload()
3637 *
3638 * \param ssl SSL context
3639 *
3640 * \return Current maximum fragment length for the output buffer.
3641 */
3642size_t mbedtls_ssl_get_input_max_frag_len( const mbedtls_ssl_context *ssl );
3643
3644#if !defined(MBEDTLS_DEPRECATED_REMOVED)
3645
3646#if defined(MBEDTLS_DEPRECATED_WARNING)
3647#define MBEDTLS_DEPRECATED __attribute__((deprecated))
3648#else
3649#define MBEDTLS_DEPRECATED
3650#endif
3651
3652/**
3653 * \brief This function is a deprecated approach to getting the max
3654 * fragment length. Its an alias for
3655 * \c mbedtls_ssl_get_output_max_frag_len(), as the behaviour
3656 * is the same. See \c mbedtls_ssl_get_output_max_frag_len() for
3657 * more detail.
3658 *
3659 * \sa mbedtls_ssl_get_input_max_frag_len()
3660 * \sa mbedtls_ssl_get_output_max_frag_len()
3661 *
3662 * \param ssl SSL context
3663 *
3664 * \return Current maximum fragment length for the output buffer.
3665 */
3666MBEDTLS_DEPRECATED size_t mbedtls_ssl_get_max_frag_len(
3667 const mbedtls_ssl_context *ssl );
3668#endif /* MBEDTLS_DEPRECATED_REMOVED */
Manuel Pégourié-Gonnarda2cda6b2015-08-31 18:30:52 +02003669#endif /* MBEDTLS_SSL_MAX_FRAGMENT_LENGTH */
3670
Manuel Pégourié-Gonnard9468ff12017-09-21 13:49:50 +02003671/**
3672 * \brief Return the current maximum outgoing record payload in bytes.
3673 * This takes into account the config.h setting \c
3674 * MBEDTLS_SSL_OUT_CONTENT_LEN, the configured and negotiated
3675 * max fragment length extension if used, and for DTLS the
3676 * path MTU as configured and current record expansion.
3677 *
3678 * \note With DTLS, \c mbedtls_ssl_write() will return an error if
3679 * called with a larger length value.
3680 * With TLS, \c mbedtls_ssl_write() will fragment the input if
3681 * necessary and return the number of bytes written; it is up
3682 * to the caller to call \c mbedtls_ssl_write() again in
3683 * order to send the remaining bytes if any.
3684 *
3685 * \note This function is not available (always returns an error)
3686 * when record compression is enabled.
3687 *
Manuel Pégourié-Gonnard6e7aaca2018-08-20 10:37:23 +02003688 * \sa mbedtls_ssl_set_mtu()
Andrzej Kurekf3844952020-10-16 23:03:01 +02003689 * \sa mbedtls_ssl_get_output_max_frag_len()
3690 * \sa mbedtls_ssl_get_input_max_frag_len()
Manuel Pégourié-Gonnard9468ff12017-09-21 13:49:50 +02003691 * \sa mbedtls_ssl_get_record_expansion()
3692 *
3693 * \param ssl SSL context
3694 *
3695 * \return Current maximum payload for an outgoing record,
3696 * or a negative error code.
3697 */
3698int mbedtls_ssl_get_max_out_record_payload( const mbedtls_ssl_context *ssl );
3699
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003700#if defined(MBEDTLS_X509_CRT_PARSE_C)
Paul Bakker43ca69c2011-01-15 17:35:19 +00003701/**
Hanno Becker869144b2019-02-05 11:33:12 +00003702 * \brief Return the peer certificate from the current connection.
Paul Bakkerb0550d92012-10-30 07:51:03 +00003703 *
Hanno Becker869144b2019-02-05 11:33:12 +00003704 * \param ssl The SSL context to use. This must be initialized and setup.
Paul Bakkerb0550d92012-10-30 07:51:03 +00003705 *
Hanno Becker24bc5702019-02-25 10:13:43 +00003706 * \return The current peer certificate, if available.
3707 * The returned certificate is owned by the SSL context and
3708 * is valid only until the next call to the SSL API.
3709 * \return \c NULL if no peer certificate is available. This might
3710 * be because the chosen ciphersuite doesn't use CRTs
3711 * (PSK-based ciphersuites, for example), or because
3712 * #MBEDTLS_SSL_KEEP_PEER_CERTIFICATE has been disabled,
3713 * allowing the stack to free the peer's CRT to save memory.
Hanno Becker869144b2019-02-05 11:33:12 +00003714 *
3715 * \note For one-time inspection of the peer's certificate during
3716 * the handshake, consider registering an X.509 CRT verification
3717 * callback through mbedtls_ssl_conf_verify() instead of calling
3718 * this function. Using mbedtls_ssl_conf_verify() also comes at
3719 * the benefit of allowing you to influence the verification
3720 * process, for example by masking expected and tolerated
3721 * verification failures.
3722 *
3723 * \warning You must not use the pointer returned by this function
3724 * after any further call to the SSL API, including
3725 * mbedtls_ssl_read() and mbedtls_ssl_write(); this is
3726 * because the pointer might change during renegotiation,
3727 * which happens transparently to the user.
3728 * If you want to use the certificate across API calls,
3729 * you must make a copy.
Paul Bakkerb0550d92012-10-30 07:51:03 +00003730 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003731const mbedtls_x509_crt *mbedtls_ssl_get_peer_cert( const mbedtls_ssl_context *ssl );
3732#endif /* MBEDTLS_X509_CRT_PARSE_C */
Paul Bakkerb0550d92012-10-30 07:51:03 +00003733
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003734#if defined(MBEDTLS_SSL_CLI_C)
Paul Bakkerb0550d92012-10-30 07:51:03 +00003735/**
Manuel Pégourié-Gonnard74718032013-07-30 12:41:56 +02003736 * \brief Save session in order to resume it later (client-side only)
3737 * Session data is copied to presented session structure.
3738 *
Manuel Pégourié-Gonnard74718032013-07-30 12:41:56 +02003739 *
3740 * \param ssl SSL context
3741 * \param session session context
3742 *
3743 * \return 0 if successful,
Manuel Pégourié-Gonnard6a8ca332015-05-28 09:33:39 +02003744 * MBEDTLS_ERR_SSL_ALLOC_FAILED if memory allocation failed,
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003745 * MBEDTLS_ERR_SSL_BAD_INPUT_DATA if used server-side or
Ron Eldor382c1db2018-07-04 17:42:47 +03003746 * arguments are otherwise invalid.
Manuel Pégourié-Gonnard74718032013-07-30 12:41:56 +02003747 *
Ron Eldor00115032018-07-17 11:21:50 +03003748 * \note Only the server certificate is copied, and not the full chain,
3749 * so you should not attempt to validate the certificate again
3750 * by calling \c mbedtls_x509_crt_verify() on it.
3751 * Instead, you should use the results from the verification
3752 * in the original handshake by calling \c mbedtls_ssl_get_verify_result()
3753 * after loading the session again into a new SSL context
3754 * using \c mbedtls_ssl_set_session().
3755 *
3756 * \note Once the session object is not needed anymore, you should
3757 * free it by calling \c mbedtls_ssl_session_free().
Manuel Pégourié-Gonnard74718032013-07-30 12:41:56 +02003758 *
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003759 * \sa mbedtls_ssl_set_session()
Manuel Pégourié-Gonnard74718032013-07-30 12:41:56 +02003760 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003761int mbedtls_ssl_get_session( const mbedtls_ssl_context *ssl, mbedtls_ssl_session *session );
3762#endif /* MBEDTLS_SSL_CLI_C */
Manuel Pégourié-Gonnard74718032013-07-30 12:41:56 +02003763
3764/**
Paul Bakker5121ce52009-01-03 21:22:43 +00003765 * \brief Perform the SSL handshake
3766 *
3767 * \param ssl SSL context
3768 *
Manuel Pégourié-Gonnard32df9112018-10-15 13:29:21 +02003769 * \return \c 0 if successful.
3770 * \return #MBEDTLS_ERR_SSL_WANT_READ or #MBEDTLS_ERR_SSL_WANT_WRITE
Manuel Pégourié-Gonnarda966fde2018-10-23 10:41:11 +02003771 * if the handshake is incomplete and waiting for data to
Manuel Pégourié-Gonnardca29fdf2018-10-22 09:56:53 +02003772 * be available for reading from or writing to the underlying
Manuel Pégourié-Gonnard32df9112018-10-15 13:29:21 +02003773 * transport - in this case you must call this function again
3774 * when the underlying transport is ready for the operation.
3775 * \return #MBEDTLS_ERR_SSL_ASYNC_IN_PROGRESS if an asynchronous
3776 * operation is in progress (see
3777 * mbedtls_ssl_conf_async_private_cb()) - in this case you
3778 * must call this function again when the operation is ready.
3779 * \return #MBEDTLS_ERR_SSL_CRYPTO_IN_PROGRESS if a cryptographic
3780 * operation is in progress (see mbedtls_ecp_set_max_ops()) -
3781 * in this case you must call this function again to complete
3782 * the handshake when you're done attending other tasks.
3783 * \return #MBEDTLS_ERR_SSL_HELLO_VERIFY_REQUIRED if DTLS is in use
3784 * and the client did not demonstrate reachability yet - in
3785 * this case you must stop using the context (see below).
3786 * \return Another SSL error code - in this case you must stop using
3787 * the context (see below).
Manuel Pégourié-Gonnardb48ef9c2015-05-28 15:24:25 +02003788 *
Manuel Pégourié-Gonnard32df9112018-10-15 13:29:21 +02003789 * \warning If this function returns something other than
3790 * \c 0,
3791 * #MBEDTLS_ERR_SSL_WANT_READ,
3792 * #MBEDTLS_ERR_SSL_WANT_WRITE,
3793 * #MBEDTLS_ERR_SSL_ASYNC_IN_PROGRESS or
3794 * #MBEDTLS_ERR_SSL_CRYPTO_IN_PROGRESS,
3795 * you must stop using the SSL context for reading or writing,
3796 * and either free it or call \c mbedtls_ssl_session_reset()
3797 * on it before re-using it for a new connection; the current
3798 * connection must be closed.
3799 *
3800 * \note If DTLS is in use, then you may choose to handle
3801 * #MBEDTLS_ERR_SSL_HELLO_VERIFY_REQUIRED specially for logging
3802 * purposes, as it is an expected return value rather than an
3803 * actual error, but you still need to reset/free the context.
Hanno Becker8ec81022017-10-10 10:35:08 +01003804 *
3805 * \note Remarks regarding event-driven DTLS:
Manuel Pégourié-Gonnardca29fdf2018-10-22 09:56:53 +02003806 * If the function returns #MBEDTLS_ERR_SSL_WANT_READ, no datagram
Hanno Becker8ec81022017-10-10 10:35:08 +01003807 * from the underlying transport layer is currently being processed,
3808 * and it is safe to idle until the timer or the underlying transport
3809 * signal a new event. This is not true for a successful handshake,
Hanno Beckerffb1e1a2017-10-23 13:17:42 +01003810 * in which case the datagram of the underlying transport that is
3811 * currently being processed might or might not contain further
3812 * DTLS records.
Paul Bakker5121ce52009-01-03 21:22:43 +00003813 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003814int mbedtls_ssl_handshake( mbedtls_ssl_context *ssl );
Paul Bakker5121ce52009-01-03 21:22:43 +00003815
3816/**
Paul Bakker1961b702013-01-25 14:49:24 +01003817 * \brief Perform a single step of the SSL handshake
3818 *
Manuel Pégourié-Gonnard222cb8d2015-09-08 15:43:59 +02003819 * \note The state of the context (ssl->state) will be at
Manuel Pégourié-Gonnard32df9112018-10-15 13:29:21 +02003820 * the next state after this function returns \c 0. Do not
Aaron Jonesd96e5262016-06-17 14:40:41 +00003821 * call this function if state is MBEDTLS_SSL_HANDSHAKE_OVER.
Paul Bakker1961b702013-01-25 14:49:24 +01003822 *
3823 * \param ssl SSL context
3824 *
Manuel Pégourié-Gonnard32df9112018-10-15 13:29:21 +02003825 * \return See mbedtls_ssl_handshake().
3826 *
3827 * \warning If this function returns something other than \c 0,
3828 * #MBEDTLS_ERR_SSL_WANT_READ, #MBEDTLS_ERR_SSL_WANT_WRITE,
3829 * #MBEDTLS_ERR_SSL_ASYNC_IN_PROGRESS or
3830 * #MBEDTLS_ERR_SSL_CRYPTO_IN_PROGRESS, you must stop using
3831 * the SSL context for reading or writing, and either free it
3832 * or call \c mbedtls_ssl_session_reset() on it before
3833 * re-using it for a new connection; the current connection
3834 * must be closed.
Paul Bakker1961b702013-01-25 14:49:24 +01003835 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003836int mbedtls_ssl_handshake_step( mbedtls_ssl_context *ssl );
Paul Bakker1961b702013-01-25 14:49:24 +01003837
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003838#if defined(MBEDTLS_SSL_RENEGOTIATION)
Paul Bakker1961b702013-01-25 14:49:24 +01003839/**
Manuel Pégourié-Gonnard9c1e1892013-10-30 16:41:21 +01003840 * \brief Initiate an SSL renegotiation on the running connection.
3841 * Client: perform the renegotiation right now.
3842 * Server: request renegotiation, which will be performed
Aaron Jonesd96e5262016-06-17 14:40:41 +00003843 * during the next call to mbedtls_ssl_read() if honored by
3844 * client.
Paul Bakker48916f92012-09-16 19:57:18 +00003845 *
3846 * \param ssl SSL context
3847 *
Aaron Jonesd96e5262016-06-17 14:40:41 +00003848 * \return 0 if successful, or any mbedtls_ssl_handshake() return
Manuel Pégourié-Gonnard32df9112018-10-15 13:29:21 +02003849 * value except #MBEDTLS_ERR_SSL_CLIENT_RECONNECT that can't
3850 * happen during a renegotiation.
Manuel Pégourié-Gonnardacbb0502015-12-10 13:57:27 +01003851 *
Manuel Pégourié-Gonnard32df9112018-10-15 13:29:21 +02003852 * \warning If this function returns something other than \c 0,
3853 * #MBEDTLS_ERR_SSL_WANT_READ, #MBEDTLS_ERR_SSL_WANT_WRITE,
3854 * #MBEDTLS_ERR_SSL_ASYNC_IN_PROGRESS or
3855 * #MBEDTLS_ERR_SSL_CRYPTO_IN_PROGRESS, you must stop using
3856 * the SSL context for reading or writing, and either free it
3857 * or call \c mbedtls_ssl_session_reset() on it before
3858 * re-using it for a new connection; the current connection
3859 * must be closed.
3860 *
Paul Bakker48916f92012-09-16 19:57:18 +00003861 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003862int mbedtls_ssl_renegotiate( mbedtls_ssl_context *ssl );
3863#endif /* MBEDTLS_SSL_RENEGOTIATION */
Paul Bakker48916f92012-09-16 19:57:18 +00003864
3865/**
Paul Bakker5121ce52009-01-03 21:22:43 +00003866 * \brief Read at most 'len' application data bytes
3867 *
3868 * \param ssl SSL context
3869 * \param buf buffer that will hold the data
Paul Bakker9e4ff952014-09-24 11:13:11 +02003870 * \param len maximum number of bytes to read
Paul Bakker5121ce52009-01-03 21:22:43 +00003871 *
Manuel Pégourié-Gonnard32df9112018-10-15 13:29:21 +02003872 * \return The (positive) number of bytes read if successful.
Manuel Pégourié-Gonnarda966fde2018-10-23 10:41:11 +02003873 * \return \c 0 if the read end of the underlying transport was closed
Manuel Pégourié-Gonnard32df9112018-10-15 13:29:21 +02003874 * - in this case you must stop using the context (see below).
3875 * \return #MBEDTLS_ERR_SSL_WANT_READ or #MBEDTLS_ERR_SSL_WANT_WRITE
Manuel Pégourié-Gonnarda966fde2018-10-23 10:41:11 +02003876 * if the handshake is incomplete and waiting for data to
Manuel Pégourié-Gonnardca29fdf2018-10-22 09:56:53 +02003877 * be available for reading from or writing to the underlying
Manuel Pégourié-Gonnard32df9112018-10-15 13:29:21 +02003878 * transport - in this case you must call this function again
3879 * when the underlying transport is ready for the operation.
3880 * \return #MBEDTLS_ERR_SSL_ASYNC_IN_PROGRESS if an asynchronous
3881 * operation is in progress (see
3882 * mbedtls_ssl_conf_async_private_cb()) - in this case you
3883 * must call this function again when the operation is ready.
3884 * \return #MBEDTLS_ERR_SSL_CRYPTO_IN_PROGRESS if a cryptographic
3885 * operation is in progress (see mbedtls_ecp_set_max_ops()) -
3886 * in this case you must call this function again to complete
3887 * the handshake when you're done attending other tasks.
3888 * \return #MBEDTLS_ERR_SSL_CLIENT_RECONNECT if we're at the server
3889 * side of a DTLS connection and the client is initiating a
Manuel Pégourié-Gonnardca29fdf2018-10-22 09:56:53 +02003890 * new connection using the same source port. See below.
Manuel Pégourié-Gonnard32df9112018-10-15 13:29:21 +02003891 * \return Another SSL error code - in this case you must stop using
3892 * the context (see below).
Manuel Pégourié-Gonnard3a2a4482015-09-08 15:36:09 +02003893 *
Manuel Pégourié-Gonnard32df9112018-10-15 13:29:21 +02003894 * \warning If this function returns something other than
3895 * a positive value,
3896 * #MBEDTLS_ERR_SSL_WANT_READ,
3897 * #MBEDTLS_ERR_SSL_WANT_WRITE,
3898 * #MBEDTLS_ERR_SSL_ASYNC_IN_PROGRESS,
3899 * #MBEDTLS_ERR_SSL_CRYPTO_IN_PROGRESS or
3900 * #MBEDTLS_ERR_SSL_CLIENT_RECONNECT,
3901 * you must stop using the SSL context for reading or writing,
3902 * and either free it or call \c mbedtls_ssl_session_reset()
3903 * on it before re-using it for a new connection; the current
3904 * connection must be closed.
Manuel Pégourié-Gonnardacbb0502015-12-10 13:57:27 +01003905 *
Manuel Pégourié-Gonnardca29fdf2018-10-22 09:56:53 +02003906 * \note When this function returns #MBEDTLS_ERR_SSL_CLIENT_RECONNECT
Manuel Pégourié-Gonnard3a2a4482015-09-08 15:36:09 +02003907 * (which can only happen server-side), it means that a client
3908 * is initiating a new connection using the same source port.
3909 * You can either treat that as a connection close and wait
3910 * for the client to resend a ClientHello, or directly
3911 * continue with \c mbedtls_ssl_handshake() with the same
Manuel Pégourié-Gonnard32df9112018-10-15 13:29:21 +02003912 * context (as it has been reset internally). Either way, you
3913 * must make sure this is seen by the application as a new
Manuel Pégourié-Gonnard3a2a4482015-09-08 15:36:09 +02003914 * connection: application state, if any, should be reset, and
3915 * most importantly the identity of the client must be checked
3916 * again. WARNING: not validating the identity of the client
3917 * again, or not transmitting the new identity to the
3918 * application layer, would allow authentication bypass!
Hanno Becker8ec81022017-10-10 10:35:08 +01003919 *
Hanno Becker8ec81022017-10-10 10:35:08 +01003920 * \note Remarks regarding event-driven DTLS:
Manuel Pégourié-Gonnardca29fdf2018-10-22 09:56:53 +02003921 * - If the function returns #MBEDTLS_ERR_SSL_WANT_READ, no datagram
Hanno Becker8ec81022017-10-10 10:35:08 +01003922 * from the underlying transport layer is currently being processed,
3923 * and it is safe to idle until the timer or the underlying transport
3924 * signal a new event.
Hanno Beckerffb1e1a2017-10-23 13:17:42 +01003925 * - This function may return MBEDTLS_ERR_SSL_WANT_READ even if data was
3926 * initially available on the underlying transport, as this data may have
3927 * been only e.g. duplicated messages or a renegotiation request.
3928 * Therefore, you must be prepared to receive MBEDTLS_ERR_SSL_WANT_READ even
3929 * when reacting to an incoming-data event from the underlying transport.
3930 * - On success, the datagram of the underlying transport that is currently
3931 * being processed may contain further DTLS records. You should call
3932 * \c mbedtls_ssl_check_pending to check for remaining records.
Hanno Becker8ec81022017-10-10 10:35:08 +01003933 *
Paul Bakker5121ce52009-01-03 21:22:43 +00003934 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003935int mbedtls_ssl_read( mbedtls_ssl_context *ssl, unsigned char *buf, size_t len );
Paul Bakker5121ce52009-01-03 21:22:43 +00003936
3937/**
Manuel Pégourié-Gonnard5f5e0ec2015-08-31 20:44:12 +02003938 * \brief Try to write exactly 'len' application data bytes
3939 *
3940 * \warning This function will do partial writes in some cases. If the
3941 * return value is non-negative but less than length, the
3942 * function must be called again with updated arguments:
3943 * buf + ret, len - ret (if ret is the return value) until
3944 * it returns a value equal to the last 'len' argument.
Paul Bakker5121ce52009-01-03 21:22:43 +00003945 *
3946 * \param ssl SSL context
3947 * \param buf buffer holding the data
3948 * \param len how many bytes must be written
3949 *
Manuel Pégourié-Gonnard32df9112018-10-15 13:29:21 +02003950 * \return The (non-negative) number of bytes actually written if
Manuel Pégourié-Gonnardca29fdf2018-10-22 09:56:53 +02003951 * successful (may be less than \p len).
Manuel Pégourié-Gonnard32df9112018-10-15 13:29:21 +02003952 * \return #MBEDTLS_ERR_SSL_WANT_READ or #MBEDTLS_ERR_SSL_WANT_WRITE
Manuel Pégourié-Gonnarda966fde2018-10-23 10:41:11 +02003953 * if the handshake is incomplete and waiting for data to
Manuel Pégourié-Gonnardca29fdf2018-10-22 09:56:53 +02003954 * be available for reading from or writing to the underlying
Manuel Pégourié-Gonnard32df9112018-10-15 13:29:21 +02003955 * transport - in this case you must call this function again
3956 * when the underlying transport is ready for the operation.
3957 * \return #MBEDTLS_ERR_SSL_ASYNC_IN_PROGRESS if an asynchronous
3958 * operation is in progress (see
3959 * mbedtls_ssl_conf_async_private_cb()) - in this case you
3960 * must call this function again when the operation is ready.
3961 * \return #MBEDTLS_ERR_SSL_CRYPTO_IN_PROGRESS if a cryptographic
3962 * operation is in progress (see mbedtls_ecp_set_max_ops()) -
3963 * in this case you must call this function again to complete
3964 * the handshake when you're done attending other tasks.
3965 * \return Another SSL error code - in this case you must stop using
3966 * the context (see below).
Paul Bakker5121ce52009-01-03 21:22:43 +00003967 *
Manuel Pégourié-Gonnard32df9112018-10-15 13:29:21 +02003968 * \warning If this function returns something other than
3969 * a non-negative value,
3970 * #MBEDTLS_ERR_SSL_WANT_READ,
3971 * #MBEDTLS_ERR_SSL_WANT_WRITE,
3972 * #MBEDTLS_ERR_SSL_ASYNC_IN_PROGRESS or
3973 * #MBEDTLS_ERR_SSL_CRYPTO_IN_PROGRESS,
3974 * you must stop using the SSL context for reading or writing,
3975 * and either free it or call \c mbedtls_ssl_session_reset()
3976 * on it before re-using it for a new connection; the current
3977 * connection must be closed.
Manuel Pégourié-Gonnardacbb0502015-12-10 13:57:27 +01003978 *
Manuel Pégourié-Gonnardca29fdf2018-10-22 09:56:53 +02003979 * \note When this function returns #MBEDTLS_ERR_SSL_WANT_WRITE/READ,
Paul Bakker5121ce52009-01-03 21:22:43 +00003980 * it must be called later with the *same* arguments,
Andres Amaya Garcia7ee25d72017-07-11 16:15:54 +01003981 * until it returns a value greater that or equal to 0. When
Manuel Pégourié-Gonnardca29fdf2018-10-22 09:56:53 +02003982 * the function returns #MBEDTLS_ERR_SSL_WANT_WRITE there may be
Andres Amaya Garcia7ee25d72017-07-11 16:15:54 +01003983 * some partial data in the output buffer, however this is not
3984 * yet sent.
Manuel Pégourié-Gonnard37e08e12014-10-13 17:55:52 +02003985 *
Manuel Pégourié-Gonnard8fbb01e2015-01-21 13:37:08 +00003986 * \note If the requested length is greater than the maximum
3987 * fragment length (either the built-in limit or the one set
3988 * or negotiated with the peer), then:
Manuel Pégourié-Gonnard5f5e0ec2015-08-31 20:44:12 +02003989 * - with TLS, less bytes than requested are written.
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003990 * - with DTLS, MBEDTLS_ERR_SSL_BAD_INPUT_DATA is returned.
Andrzej Kurekf3844952020-10-16 23:03:01 +02003991 * \c mbedtls_ssl_get_output_max_frag_len() may be used to
3992 * query the active maximum fragment length.
Andres Amaya Garcia7ee25d72017-07-11 16:15:54 +01003993 *
3994 * \note Attempting to write 0 bytes will result in an empty TLS
3995 * application record being sent.
Paul Bakker5121ce52009-01-03 21:22:43 +00003996 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02003997int mbedtls_ssl_write( mbedtls_ssl_context *ssl, const unsigned char *buf, size_t len );
Paul Bakker5121ce52009-01-03 21:22:43 +00003998
3999/**
Paul Bakker0a925182012-04-16 06:46:41 +00004000 * \brief Send an alert message
4001 *
4002 * \param ssl SSL context
4003 * \param level The alert level of the message
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02004004 * (MBEDTLS_SSL_ALERT_LEVEL_WARNING or MBEDTLS_SSL_ALERT_LEVEL_FATAL)
Paul Bakker0a925182012-04-16 06:46:41 +00004005 * \param message The alert message (SSL_ALERT_MSG_*)
4006 *
Paul Bakker6831c4a2012-11-07 19:46:27 +00004007 * \return 0 if successful, or a specific SSL error code.
Manuel Pégourié-Gonnardacbb0502015-12-10 13:57:27 +01004008 *
4009 * \note If this function returns something other than 0 or
Hanno Becker298a7b22017-11-06 10:45:26 +00004010 * MBEDTLS_ERR_SSL_WANT_READ/WRITE, you must stop using
4011 * the SSL context for reading or writing, and either free it or
4012 * call \c mbedtls_ssl_session_reset() on it before re-using it
4013 * for a new connection; the current connection must be closed.
Paul Bakker0a925182012-04-16 06:46:41 +00004014 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02004015int mbedtls_ssl_send_alert_message( mbedtls_ssl_context *ssl,
Paul Bakker0a925182012-04-16 06:46:41 +00004016 unsigned char level,
4017 unsigned char message );
4018/**
Paul Bakker5121ce52009-01-03 21:22:43 +00004019 * \brief Notify the peer that the connection is being closed
Paul Bakker13e2dfe2009-07-28 07:18:38 +00004020 *
4021 * \param ssl SSL context
Manuel Pégourié-Gonnardacbb0502015-12-10 13:57:27 +01004022 *
4023 * \return 0 if successful, or a specific SSL error code.
4024 *
4025 * \note If this function returns something other than 0 or
Hanno Becker298a7b22017-11-06 10:45:26 +00004026 * MBEDTLS_ERR_SSL_WANT_READ/WRITE, you must stop using
4027 * the SSL context for reading or writing, and either free it or
4028 * call \c mbedtls_ssl_session_reset() on it before re-using it
4029 * for a new connection; the current connection must be closed.
Paul Bakker5121ce52009-01-03 21:22:43 +00004030 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02004031int mbedtls_ssl_close_notify( mbedtls_ssl_context *ssl );
Paul Bakker5121ce52009-01-03 21:22:43 +00004032
4033/**
Paul Bakker48916f92012-09-16 19:57:18 +00004034 * \brief Free referenced items in an SSL context and clear memory
Paul Bakker13e2dfe2009-07-28 07:18:38 +00004035 *
4036 * \param ssl SSL context
Paul Bakker5121ce52009-01-03 21:22:43 +00004037 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02004038void mbedtls_ssl_free( mbedtls_ssl_context *ssl );
Paul Bakker5121ce52009-01-03 21:22:43 +00004039
Manuel Pégourié-Gonnard4c1d06e2019-07-23 16:13:17 +02004040#if defined(MBEDTLS_SSL_CONTEXT_SERIALIZATION)
Paul Bakker48916f92012-09-16 19:57:18 +00004041/**
Manuel Pégourié-Gonnardcc71c772019-06-05 09:47:18 +02004042 * \brief Save an active connection as serialized data in a buffer.
4043 * This allows the freeing or re-using of the SSL context
4044 * while still picking up the connection later in a way that
4045 * it entirely transparent to the peer.
Manuel Pégourié-Gonnardd87601e2019-05-28 13:02:16 +02004046 *
4047 * \see mbedtls_ssl_context_load()
4048 *
4049 * \note This feature is currently only available under certain
Manuel Pégourié-Gonnardcc71c772019-06-05 09:47:18 +02004050 * conditions, see the documentation of the return value
Manuel Pégourié-Gonnardd87601e2019-05-28 13:02:16 +02004051 * #MBEDTLS_ERR_SSL_BAD_INPUT_DATA for details.
4052 *
Manuel Pégourié-Gonnardcc71c772019-06-05 09:47:18 +02004053 * \note When this function succeeds, it calls
Manuel Pégourié-Gonnardd87601e2019-05-28 13:02:16 +02004054 * mbedtls_ssl_session_reset() on \p ssl which as a result is
4055 * no longer associated with the connection that has been
Manuel Pégourié-Gonnardbc847ca2019-07-23 14:51:09 +02004056 * serialized. This avoids creating copies of the connection
Manuel Pégourié-Gonnardd87601e2019-05-28 13:02:16 +02004057 * state. You're then free to either re-use the context
4058 * structure for a different connection, or call
Manuel Pégourié-Gonnardbc847ca2019-07-23 14:51:09 +02004059 * mbedtls_ssl_free() on it. See the documentation of
Manuel Pégourié-Gonnardcc71c772019-06-05 09:47:18 +02004060 * mbedtls_ssl_session_reset() for more details.
Manuel Pégourié-Gonnardd87601e2019-05-28 13:02:16 +02004061 *
4062 * \param ssl The SSL context to save. On success, it is no longer
4063 * associated with the connection that has been serialized.
4064 * \param buf The buffer to write the serialized data to. It must be a
4065 * writeable buffer of at least \p len bytes, or may be \c
4066 * NULL if \p len is \c 0.
4067 * \param buf_len The number of bytes available for writing in \p buf.
4068 * \param olen The size in bytes of the data that has been or would have
4069 * been written. It must point to a valid \c size_t.
4070 *
4071 * \note \p olen is updated to the correct value regardless of
4072 * whether \p buf_len was large enough. This makes it possible
4073 * to determine the necessary size by calling this function
Manuel Pégourié-Gonnardf1f3e522019-07-11 12:50:53 +02004074 * with \p buf set to \c NULL and \p buf_len to \c 0. However,
4075 * the value of \p olen is only guaranteed to be correct when
4076 * the function returns #MBEDTLS_ERR_SSL_BUFFER_TOO_SMALL or
4077 * \c 0. If the return value is different, then the value of
4078 * \p olen is undefined.
Manuel Pégourié-Gonnardd87601e2019-05-28 13:02:16 +02004079 *
4080 * \return \c 0 if successful.
4081 * \return #MBEDTLS_ERR_SSL_BUFFER_TOO_SMALL if \p buf is too small.
Manuel Pégourié-Gonnardbc847ca2019-07-23 14:51:09 +02004082 * \return #MBEDTLS_ERR_SSL_ALLOC_FAILED if memory allocation failed
4083 * while reseting the context.
Manuel Pégourié-Gonnardcc71c772019-06-05 09:47:18 +02004084 * \return #MBEDTLS_ERR_SSL_BAD_INPUT_DATA if a handshake is in
Manuel Pégourié-Gonnardd87601e2019-05-28 13:02:16 +02004085 * progress, or there is pending data for reading or sending,
Manuel Pégourié-Gonnard569ed6b2019-07-10 14:14:05 +02004086 * or the connection does not use DTLS 1.2 with an AEAD
Manuel Pégourié-Gonnardd87601e2019-05-28 13:02:16 +02004087 * ciphersuite, or renegotiation is enabled.
4088 */
4089int mbedtls_ssl_context_save( mbedtls_ssl_context *ssl,
4090 unsigned char *buf,
4091 size_t buf_len,
4092 size_t *olen );
Manuel Pégourié-Gonnard569ed6b2019-07-10 14:14:05 +02004093
Manuel Pégourié-Gonnardd87601e2019-05-28 13:02:16 +02004094/**
4095 * \brief Load serialized connection data to an SSL context.
4096 *
4097 * \see mbedtls_ssl_context_save()
4098 *
4099 * \warning The same serialized data must never be loaded into more
4100 * that one context. In order to ensure that, after
4101 * successfully loading serialized data to an SSL context, you
4102 * should immediately destroy or invalidate all copies of the
4103 * serialized data that was loaded. Loading the same data in
4104 * more than one context would cause severe security failures
4105 * including but not limited to loss of confidentiality.
4106 *
4107 * \note Before calling this function, the SSL context must be
Manuel Pégourié-Gonnard7667afd2019-06-11 11:25:10 +02004108 * prepared in one of the two following ways. The first way is
4109 * to take a context freshly initialised with
4110 * mbedtls_ssl_init() and call mbedtls_ssl_setup() on it with
Manuel Pégourié-Gonnardd87601e2019-05-28 13:02:16 +02004111 * the same ::mbedtls_ssl_config structure that was used in
Manuel Pégourié-Gonnard7667afd2019-06-11 11:25:10 +02004112 * the original connection. The second way is to
4113 * call mbedtls_ssl_session_reset() on a context that was
Manuel Pégourié-Gonnardd87601e2019-05-28 13:02:16 +02004114 * previously prepared as above but used in the meantime.
Manuel Pégourié-Gonnard7667afd2019-06-11 11:25:10 +02004115 * Either way, you must not use the context to perform a
4116 * handshake between calling mbedtls_ssl_setup() or
4117 * mbedtls_ssl_session_reset() and calling this function. You
4118 * may however call other setter functions in that time frame
4119 * as indicated in the note below.
Manuel Pégourié-Gonnardd87601e2019-05-28 13:02:16 +02004120 *
Manuel Pégourié-Gonnardcc71c772019-06-05 09:47:18 +02004121 * \note Before or after calling this function successfully, you
Manuel Pégourié-Gonnard7667afd2019-06-11 11:25:10 +02004122 * also need to configure some connection-specific callbacks
Manuel Pégourié-Gonnardcc71c772019-06-05 09:47:18 +02004123 * and settings before you can use the connection again
4124 * (unless they were already set before calling
4125 * mbedtls_ssl_session_reset() and the values are suitable for
4126 * the present connection). Specifically, you want to call
Manuel Pégourié-Gonnard86dfa0c2019-07-15 12:23:22 +02004127 * at least mbedtls_ssl_set_bio() and
4128 * mbedtls_ssl_set_timer_cb(). All other SSL setter functions
4129 * are not necessary to call, either because they're only used
4130 * in handshakes, or because the setting is already saved. You
4131 * might choose to call them anyway, for example in order to
4132 * share code between the cases of establishing a new
Manuel Pégourié-Gonnard7667afd2019-06-11 11:25:10 +02004133 * connection and the case of loading an already-established
4134 * connection.
4135 *
4136 * \note If you have new information about the path MTU, you want to
4137 * call mbedtls_ssl_set_mtu() after calling this function, as
4138 * otherwise this function would overwrite your
4139 * newly-configured value with the value that was active when
4140 * the context was saved.
Manuel Pégourié-Gonnardd87601e2019-05-28 13:02:16 +02004141 *
Manuel Pégourié-Gonnardf1f3e522019-07-11 12:50:53 +02004142 * \note When this function returns an error code, it calls
4143 * mbedtls_ssl_free() on \p ssl. In this case, you need to
4144 * prepare the context with the usual sequence starting with a
4145 * call to mbedtls_ssl_init() if you want to use it again.
4146 *
Manuel Pégourié-Gonnardd87601e2019-05-28 13:02:16 +02004147 * \param ssl The SSL context structure to be populated. It must have
4148 * been prepared as described in the note above.
4149 * \param buf The buffer holding the serialized connection data. It must
4150 * be a readable buffer of at least \p len bytes.
4151 * \param len The size of the serialized data in bytes.
4152 *
4153 * \return \c 0 if successful.
4154 * \return #MBEDTLS_ERR_SSL_ALLOC_FAILED if memory allocation failed.
Manuel Pégourié-Gonnardd0dd1042019-07-11 10:58:10 +02004155 * \return #MBEDTLS_ERR_SSL_VERSION_MISMATCH if the serialized data
4156 * comes from a different Mbed TLS version or build.
Manuel Pégourié-Gonnardd87601e2019-05-28 13:02:16 +02004157 * \return #MBEDTLS_ERR_SSL_BAD_INPUT_DATA if input data is invalid.
4158 */
4159int mbedtls_ssl_context_load( mbedtls_ssl_context *ssl,
4160 const unsigned char *buf,
4161 size_t len );
Manuel Pégourié-Gonnard4c1d06e2019-07-23 16:13:17 +02004162#endif /* MBEDTLS_SSL_CONTEXT_SERIALIZATION */
Manuel Pégourié-Gonnardd87601e2019-05-28 13:02:16 +02004163
4164/**
Manuel Pégourié-Gonnardcd523e22015-05-04 13:35:39 +02004165 * \brief Initialize an SSL configuration context
4166 * Just makes the context ready for
Manuel Pégourié-Gonnard1b1e65f2015-06-11 13:29:15 +02004167 * mbedtls_ssl_config_defaults() or mbedtls_ssl_config_free().
Manuel Pégourié-Gonnardcd523e22015-05-04 13:35:39 +02004168 *
4169 * \note You need to call mbedtls_ssl_config_defaults() unless you
Antonin Décimod5f47592019-01-23 15:24:37 +01004170 * manually set all of the relevant fields yourself.
Manuel Pégourié-Gonnardcd523e22015-05-04 13:35:39 +02004171 *
4172 * \param conf SSL configuration context
4173 */
4174void mbedtls_ssl_config_init( mbedtls_ssl_config *conf );
4175
4176/**
4177 * \brief Load reasonnable default SSL configuration values.
4178 * (You need to call mbedtls_ssl_config_init() first.)
4179 *
4180 * \param conf SSL configuration context
Manuel Pégourié-Gonnard1b1e65f2015-06-11 13:29:15 +02004181 * \param endpoint MBEDTLS_SSL_IS_CLIENT or MBEDTLS_SSL_IS_SERVER
4182 * \param transport MBEDTLS_SSL_TRANSPORT_STREAM for TLS, or
4183 * MBEDTLS_SSL_TRANSPORT_DATAGRAM for DTLS
Manuel Pégourié-Gonnardb31c5f62015-06-17 13:53:47 +02004184 * \param preset a MBEDTLS_SSL_PRESET_XXX value
Manuel Pégourié-Gonnardcd523e22015-05-04 13:35:39 +02004185 *
Manuel Pégourié-Gonnard6729e792015-05-11 09:50:24 +02004186 * \note See \c mbedtls_ssl_conf_transport() for notes on DTLS.
Manuel Pégourié-Gonnard8620f732015-05-06 14:42:06 +01004187 *
Manuel Pégourié-Gonnardcd523e22015-05-04 13:35:39 +02004188 * \return 0 if successful, or
Manuel Pégourié-Gonnard1b1e65f2015-06-11 13:29:15 +02004189 * MBEDTLS_ERR_XXX_ALLOC_FAILED on memory allocation error.
Manuel Pégourié-Gonnardcd523e22015-05-04 13:35:39 +02004190 */
Manuel Pégourié-Gonnard419d5ae2015-05-04 19:32:36 +02004191int mbedtls_ssl_config_defaults( mbedtls_ssl_config *conf,
Manuel Pégourié-Gonnardb31c5f62015-06-17 13:53:47 +02004192 int endpoint, int transport, int preset );
Manuel Pégourié-Gonnardcd523e22015-05-04 13:35:39 +02004193
4194/**
4195 * \brief Free an SSL configuration context
4196 *
4197 * \param conf SSL configuration context
4198 */
4199void mbedtls_ssl_config_free( mbedtls_ssl_config *conf );
4200
4201/**
Paul Bakkeraccaffe2014-06-26 13:37:14 +02004202 * \brief Initialize SSL session structure
4203 *
4204 * \param session SSL session
4205 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02004206void mbedtls_ssl_session_init( mbedtls_ssl_session *session );
Paul Bakkeraccaffe2014-06-26 13:37:14 +02004207
4208/**
Paul Bakker0a597072012-09-25 21:55:46 +00004209 * \brief Free referenced items in an SSL session including the
4210 * peer certificate and clear memory
Paul Bakker48916f92012-09-16 19:57:18 +00004211 *
Ron Eldor00115032018-07-17 11:21:50 +03004212 * \note A session object can be freed even if the SSL context
4213 * that was used to retrieve the session is still in use.
4214 *
Paul Bakker48916f92012-09-16 19:57:18 +00004215 * \param session SSL session
4216 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02004217void mbedtls_ssl_session_free( mbedtls_ssl_session *session );
Paul Bakker48916f92012-09-16 19:57:18 +00004218
Hanno Becker65382f22019-07-02 13:51:57 +01004219#include "ssl_ciphersuites.h"
4220
Paul Bakker5121ce52009-01-03 21:22:43 +00004221#ifdef __cplusplus
4222}
4223#endif
4224
4225#endif /* ssl.h */