blob: 7009827f8951532c1092450db5a0dc7918d1b42b [file] [log] [blame]
Paul Bakker0a597072012-09-25 21:55:46 +00001/**
2 * \file ssl_cache.h
3 *
4 * \brief SSL session cache implementation
Darryl Greena40a1012018-01-05 15:33:17 +00005 */
6/*
Bence Szépkúti1e148272020-08-07 13:07:28 +02007 * Copyright The Mbed TLS Contributors
Manuel Pégourié-Gonnard37ff1402015-09-04 14:21:07 +02008 * SPDX-License-Identifier: Apache-2.0
9 *
10 * Licensed under the Apache License, Version 2.0 (the "License"); you may
11 * not use this file except in compliance with the License.
12 * You may obtain a copy of the License at
13 *
14 * http://www.apache.org/licenses/LICENSE-2.0
15 *
16 * Unless required by applicable law or agreed to in writing, software
17 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
18 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19 * See the License for the specific language governing permissions and
20 * limitations under the License.
Paul Bakker0a597072012-09-25 21:55:46 +000021 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020022#ifndef MBEDTLS_SSL_CACHE_H
23#define MBEDTLS_SSL_CACHE_H
Mateusz Starzyk846f0212021-05-19 19:44:07 +020024#include "mbedtls/private_access.h"
Paul Bakker0a597072012-09-25 21:55:46 +000025
Bence Szépkútic662b362021-05-27 11:25:03 +020026#include "mbedtls/build_info.h"
Ron Eldor9cbd1b22018-12-16 12:14:37 +020027
Jaeden Amero6609aef2019-07-04 20:01:14 +010028#include "mbedtls/ssl.h"
Paul Bakker0a597072012-09-25 21:55:46 +000029
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020030#if defined(MBEDTLS_THREADING_C)
Jaeden Amero6609aef2019-07-04 20:01:14 +010031#include "mbedtls/threading.h"
Paul Bakkerc5598842013-09-28 15:01:27 +020032#endif
33
Paul Bakker088c5c52014-04-25 11:11:10 +020034/**
35 * \name SECTION: Module settings
36 *
37 * The configuration options you can set for this module are in this section.
Bence Szépkútibb0cfeb2021-05-28 09:42:25 +020038 * Either change them in mbedtls_config.h or define them on the compiler command line.
Paul Bakker088c5c52014-04-25 11:11:10 +020039 * \{
40 */
41
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020042#if !defined(MBEDTLS_SSL_CACHE_DEFAULT_TIMEOUT)
43#define MBEDTLS_SSL_CACHE_DEFAULT_TIMEOUT 86400 /*!< 1 day */
Paul Bakker088c5c52014-04-25 11:11:10 +020044#endif
45
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020046#if !defined(MBEDTLS_SSL_CACHE_DEFAULT_MAX_ENTRIES)
47#define MBEDTLS_SSL_CACHE_DEFAULT_MAX_ENTRIES 50 /*!< Maximum entries in cache */
Paul Bakker088c5c52014-04-25 11:11:10 +020048#endif
49
Andrzej Kurek38d4fdd2021-12-28 16:22:52 +010050/** \} name SECTION: Module settings */
Paul Bakker0a597072012-09-25 21:55:46 +000051
52#ifdef __cplusplus
53extern "C" {
54#endif
55
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020056typedef struct mbedtls_ssl_cache_context mbedtls_ssl_cache_context;
57typedef struct mbedtls_ssl_cache_entry mbedtls_ssl_cache_entry;
Paul Bakker0a597072012-09-25 21:55:46 +000058
59/**
60 * \brief This structure is used for storing cache entries
61 */
Gilles Peskine449bd832023-01-11 14:50:10 +010062struct mbedtls_ssl_cache_entry {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020063#if defined(MBEDTLS_HAVE_TIME)
Mateusz Starzyk846f0212021-05-19 19:44:07 +020064 mbedtls_time_t MBEDTLS_PRIVATE(timestamp); /*!< entry timestamp */
Paul Bakkerfa9b1002013-07-03 15:31:03 +020065#endif
Hanno Becker7e6eb9f2021-04-15 10:26:06 +010066
Mateusz Starzyk846f0212021-05-19 19:44:07 +020067 unsigned char MBEDTLS_PRIVATE(session_id)[32]; /*!< session ID */
68 size_t MBEDTLS_PRIVATE(session_id_len);
Hanno Becker7e6eb9f2021-04-15 10:26:06 +010069
Mateusz Starzyk846f0212021-05-19 19:44:07 +020070 unsigned char *MBEDTLS_PRIVATE(session); /*!< serialized session */
71 size_t MBEDTLS_PRIVATE(session_len);
Hanno Becker7e6eb9f2021-04-15 10:26:06 +010072
Mateusz Starzyk846f0212021-05-19 19:44:07 +020073 mbedtls_ssl_cache_entry *MBEDTLS_PRIVATE(next); /*!< chain pointer */
Paul Bakker0a597072012-09-25 21:55:46 +000074};
75
76/**
77 * \brief Cache context
78 */
Gilles Peskine449bd832023-01-11 14:50:10 +010079struct mbedtls_ssl_cache_context {
Mateusz Starzyk846f0212021-05-19 19:44:07 +020080 mbedtls_ssl_cache_entry *MBEDTLS_PRIVATE(chain); /*!< start of the chain */
81 int MBEDTLS_PRIVATE(timeout); /*!< cache entry timeout */
82 int MBEDTLS_PRIVATE(max_entries); /*!< maximum entries */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020083#if defined(MBEDTLS_THREADING_C)
Mateusz Starzyk846f0212021-05-19 19:44:07 +020084 mbedtls_threading_mutex_t MBEDTLS_PRIVATE(mutex); /*!< mutex */
Paul Bakkerc5598842013-09-28 15:01:27 +020085#endif
Paul Bakker0a597072012-09-25 21:55:46 +000086};
87
88/**
89 * \brief Initialize an SSL cache context
90 *
91 * \param cache SSL cache context
92 */
Gilles Peskine449bd832023-01-11 14:50:10 +010093void mbedtls_ssl_cache_init(mbedtls_ssl_cache_context *cache);
Paul Bakker0a597072012-09-25 21:55:46 +000094
95/**
96 * \brief Cache get callback implementation
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020097 * (Thread-safe if MBEDTLS_THREADING_C is enabled)
Paul Bakker0a597072012-09-25 21:55:46 +000098 *
Hanno Beckerccdaf6e2021-04-15 09:26:17 +010099 * \param data The SSL cache context to use.
100 * \param session_id The pointer to the buffer holding the session ID
101 * for the session to load.
102 * \param session_id_len The length of \p session_id in bytes.
103 * \param session The address at which to store the session
104 * associated with \p session_id, if present.
Pengyu Lv4e707242023-03-27 11:29:49 +0800105 *
106 * \return \c 0 on success.
Pengyu Lve3746d72023-04-10 14:40:03 +0800107 * \return #MBEDTLS_ERR_SSL_CACHE_ENTRY_NOT_FOUND if there is
108 * no cache entry with specified session ID found.
Paul Bakker0a597072012-09-25 21:55:46 +0000109 */
Gilles Peskine449bd832023-01-11 14:50:10 +0100110int mbedtls_ssl_cache_get(void *data,
111 unsigned char const *session_id,
112 size_t session_id_len,
113 mbedtls_ssl_session *session);
Paul Bakker0a597072012-09-25 21:55:46 +0000114
115/**
116 * \brief Cache set callback implementation
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200117 * (Thread-safe if MBEDTLS_THREADING_C is enabled)
Paul Bakker0a597072012-09-25 21:55:46 +0000118 *
Hanno Beckerccdaf6e2021-04-15 09:26:17 +0100119 * \param data The SSL cache context to use.
120 * \param session_id The pointer to the buffer holding the session ID
121 * associated to \p session.
122 * \param session_id_len The length of \p session_id in bytes.
123 * \param session The session to store.
Pengyu Lv4e707242023-03-27 11:29:49 +0800124 *
125 * \return \c 0 on success.
126 * \return A negative error code on failure.
Paul Bakker0a597072012-09-25 21:55:46 +0000127 */
Gilles Peskine449bd832023-01-11 14:50:10 +0100128int mbedtls_ssl_cache_set(void *data,
129 unsigned char const *session_id,
130 size_t session_id_len,
131 const mbedtls_ssl_session *session);
Paul Bakker0a597072012-09-25 21:55:46 +0000132
Pengyu Lv7b6299b2023-03-07 14:38:45 +0800133/**
134 * \brief Remove the cache entry by the session ID
135 * (Thread-safe if MBEDTLS_THREADING_C is enabled)
136 *
137 * \param data The SSL cache context to use.
138 * \param session_id The pointer to the buffer holding the session ID
139 * associated to \p session.
140 * \param session_id_len The length of \p session_id in bytes.
141 *
Pengyu Lvcdf06f62023-03-23 11:15:24 +0800142 * \return \c 0 on success. This indicates the cache entry for
143 * the session with provided ID is removed or does not
144 * exist.
145 * \return A negative error code on failure.
Pengyu Lv7b6299b2023-03-07 14:38:45 +0800146 */
147int mbedtls_ssl_cache_remove(void *data,
148 unsigned char const *session_id,
149 size_t session_id_len);
150
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200151#if defined(MBEDTLS_HAVE_TIME)
Paul Bakker0a597072012-09-25 21:55:46 +0000152/**
153 * \brief Set the cache timeout
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200154 * (Default: MBEDTLS_SSL_CACHE_DEFAULT_TIMEOUT (1 day))
Paul Bakker0a597072012-09-25 21:55:46 +0000155 *
156 * A timeout of 0 indicates no timeout.
157 *
158 * \param cache SSL cache context
Manuel Pégourié-Gonnard274a12e2014-02-20 21:32:08 +0100159 * \param timeout cache entry timeout in seconds
Paul Bakker0a597072012-09-25 21:55:46 +0000160 */
Gilles Peskine449bd832023-01-11 14:50:10 +0100161void mbedtls_ssl_cache_set_timeout(mbedtls_ssl_cache_context *cache, int timeout);
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200162#endif /* MBEDTLS_HAVE_TIME */
Paul Bakker0a597072012-09-25 21:55:46 +0000163
164/**
Manuel Pégourié-Gonnarddb90c822015-10-20 09:36:39 +0200165 * \brief Set the maximum number of cache entries
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200166 * (Default: MBEDTLS_SSL_CACHE_DEFAULT_MAX_ENTRIES (50))
Paul Bakkerba26e9e2012-10-23 22:18:28 +0000167 *
168 * \param cache SSL cache context
169 * \param max cache entry maximum
170 */
Gilles Peskine449bd832023-01-11 14:50:10 +0100171void mbedtls_ssl_cache_set_max_entries(mbedtls_ssl_cache_context *cache, int max);
Paul Bakkerba26e9e2012-10-23 22:18:28 +0000172
173/**
Paul Bakker0a597072012-09-25 21:55:46 +0000174 * \brief Free referenced items in a cache context and clear memory
175 *
176 * \param cache SSL cache context
177 */
Gilles Peskine449bd832023-01-11 14:50:10 +0100178void mbedtls_ssl_cache_free(mbedtls_ssl_cache_context *cache);
Paul Bakker0a597072012-09-25 21:55:46 +0000179
180#ifdef __cplusplus
181}
182#endif
183
184#endif /* ssl_cache.h */