blob: cb55f7f96f13a5b0b391aa33ffcb14db5b637431 [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
Paul Bakker0a597072012-09-25 21:55:46 +000024
Ron Eldor9cbd1b22018-12-16 12:14:37 +020025#if !defined(MBEDTLS_CONFIG_FILE)
Jaeden Amero6609aef2019-07-04 20:01:14 +010026#include "mbedtls/config.h"
Ron Eldor9cbd1b22018-12-16 12:14:37 +020027#else
28#include MBEDTLS_CONFIG_FILE
29#endif
30
Jaeden Amero6609aef2019-07-04 20:01:14 +010031#include "mbedtls/ssl.h"
Paul Bakker0a597072012-09-25 21:55:46 +000032
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020033#if defined(MBEDTLS_THREADING_C)
Jaeden Amero6609aef2019-07-04 20:01:14 +010034#include "mbedtls/threading.h"
Paul Bakkerc5598842013-09-28 15:01:27 +020035#endif
36
Paul Bakker088c5c52014-04-25 11:11:10 +020037/**
38 * \name SECTION: Module settings
39 *
40 * The configuration options you can set for this module are in this section.
41 * Either change them in config.h or define them on the compiler command line.
42 * \{
43 */
44
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020045#if !defined(MBEDTLS_SSL_CACHE_DEFAULT_TIMEOUT)
46#define MBEDTLS_SSL_CACHE_DEFAULT_TIMEOUT 86400 /*!< 1 day */
Paul Bakker088c5c52014-04-25 11:11:10 +020047#endif
48
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020049#if !defined(MBEDTLS_SSL_CACHE_DEFAULT_MAX_ENTRIES)
50#define MBEDTLS_SSL_CACHE_DEFAULT_MAX_ENTRIES 50 /*!< Maximum entries in cache */
Paul Bakker088c5c52014-04-25 11:11:10 +020051#endif
52
53/* \} name SECTION: Module settings */
Paul Bakker0a597072012-09-25 21:55:46 +000054
55#ifdef __cplusplus
56extern "C" {
57#endif
58
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020059typedef struct mbedtls_ssl_cache_context mbedtls_ssl_cache_context;
60typedef struct mbedtls_ssl_cache_entry mbedtls_ssl_cache_entry;
Paul Bakker0a597072012-09-25 21:55:46 +000061
62/**
63 * \brief This structure is used for storing cache entries
64 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020065struct mbedtls_ssl_cache_entry
Paul Bakker0a597072012-09-25 21:55:46 +000066{
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020067#if defined(MBEDTLS_HAVE_TIME)
SimonBd5800b72016-04-26 07:43:27 +010068 mbedtls_time_t timestamp; /*!< entry timestamp */
Paul Bakkerfa9b1002013-07-03 15:31:03 +020069#endif
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020070 mbedtls_ssl_session session; /*!< entry session */
Hanno Beckera887d1a2019-02-06 15:57:49 +000071#if defined(MBEDTLS_X509_CRT_PARSE_C) && \
72 defined(MBEDTLS_SSL_KEEP_PEER_CERTIFICATE)
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020073 mbedtls_x509_buf peer_cert; /*!< entry peer_cert */
Paul Bakkered27a042013-04-18 22:46:23 +020074#endif
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020075 mbedtls_ssl_cache_entry *next; /*!< chain pointer */
Paul Bakker0a597072012-09-25 21:55:46 +000076};
77
78/**
79 * \brief Cache context
80 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020081struct mbedtls_ssl_cache_context
Paul Bakker0a597072012-09-25 21:55:46 +000082{
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020083 mbedtls_ssl_cache_entry *chain; /*!< start of the chain */
Paul Bakkerba26e9e2012-10-23 22:18:28 +000084 int timeout; /*!< cache entry timeout */
85 int max_entries; /*!< maximum entries */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020086#if defined(MBEDTLS_THREADING_C)
87 mbedtls_threading_mutex_t mutex; /*!< mutex */
Paul Bakkerc5598842013-09-28 15:01:27 +020088#endif
Paul Bakker0a597072012-09-25 21:55:46 +000089};
90
91/**
92 * \brief Initialize an SSL cache context
93 *
94 * \param cache SSL cache context
95 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020096void mbedtls_ssl_cache_init( mbedtls_ssl_cache_context *cache );
Paul Bakker0a597072012-09-25 21:55:46 +000097
98/**
99 * \brief Cache get callback implementation
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200100 * (Thread-safe if MBEDTLS_THREADING_C is enabled)
Paul Bakker0a597072012-09-25 21:55:46 +0000101 *
Hanno Beckerccdaf6e2021-04-15 09:26:17 +0100102 * \param data The SSL cache context to use.
103 * \param session_id The pointer to the buffer holding the session ID
104 * for the session to load.
105 * \param session_id_len The length of \p session_id in bytes.
106 * \param session The address at which to store the session
107 * associated with \p session_id, if present.
Paul Bakker0a597072012-09-25 21:55:46 +0000108 */
Hanno Beckerccdaf6e2021-04-15 09:26:17 +0100109int mbedtls_ssl_cache_get( void *data,
110 unsigned char const *session_id,
111 size_t session_id_len,
112 mbedtls_ssl_session *session );
Paul Bakker0a597072012-09-25 21:55:46 +0000113
114/**
115 * \brief Cache set callback implementation
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200116 * (Thread-safe if MBEDTLS_THREADING_C is enabled)
Paul Bakker0a597072012-09-25 21:55:46 +0000117 *
Hanno Beckerccdaf6e2021-04-15 09:26:17 +0100118 * \param data The SSL cache context to use.
119 * \param session_id The pointer to the buffer holding the session ID
120 * associated to \p session.
121 * \param session_id_len The length of \p session_id in bytes.
122 * \param session The session to store.
Paul Bakker0a597072012-09-25 21:55:46 +0000123 */
Hanno Beckerccdaf6e2021-04-15 09:26:17 +0100124int mbedtls_ssl_cache_set( void *data,
125 unsigned char const *session_id,
126 size_t session_id_len,
127 const mbedtls_ssl_session *session );
Paul Bakker0a597072012-09-25 21:55:46 +0000128
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200129#if defined(MBEDTLS_HAVE_TIME)
Paul Bakker0a597072012-09-25 21:55:46 +0000130/**
131 * \brief Set the cache timeout
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200132 * (Default: MBEDTLS_SSL_CACHE_DEFAULT_TIMEOUT (1 day))
Paul Bakker0a597072012-09-25 21:55:46 +0000133 *
134 * A timeout of 0 indicates no timeout.
135 *
136 * \param cache SSL cache context
Manuel Pégourié-Gonnard274a12e2014-02-20 21:32:08 +0100137 * \param timeout cache entry timeout in seconds
Paul Bakker0a597072012-09-25 21:55:46 +0000138 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200139void mbedtls_ssl_cache_set_timeout( mbedtls_ssl_cache_context *cache, int timeout );
140#endif /* MBEDTLS_HAVE_TIME */
Paul Bakker0a597072012-09-25 21:55:46 +0000141
142/**
Manuel Pégourié-Gonnarddb90c822015-10-20 09:36:39 +0200143 * \brief Set the maximum number of cache entries
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200144 * (Default: MBEDTLS_SSL_CACHE_DEFAULT_MAX_ENTRIES (50))
Paul Bakkerba26e9e2012-10-23 22:18:28 +0000145 *
146 * \param cache SSL cache context
147 * \param max cache entry maximum
148 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200149void mbedtls_ssl_cache_set_max_entries( mbedtls_ssl_cache_context *cache, int max );
Paul Bakkerba26e9e2012-10-23 22:18:28 +0000150
151/**
Paul Bakker0a597072012-09-25 21:55:46 +0000152 * \brief Free referenced items in a cache context and clear memory
153 *
154 * \param cache SSL cache context
155 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200156void mbedtls_ssl_cache_free( mbedtls_ssl_cache_context *cache );
Paul Bakker0a597072012-09-25 21:55:46 +0000157
158#ifdef __cplusplus
159}
160#endif
161
162#endif /* ssl_cache.h */