blob: 52ba0948c55d70bbc3e79e1a65a3e0756008fe1e [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/*
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 Bakker0a597072012-09-25 21:55:46 +000021 *
Manuel Pégourié-Gonnardfe446432015-03-06 13:17:10 +000022 * This file is part of mbed TLS (https://tls.mbed.org)
Paul Bakker0a597072012-09-25 21:55:46 +000023 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020024#ifndef MBEDTLS_SSL_CACHE_H
25#define MBEDTLS_SSL_CACHE_H
Paul Bakker0a597072012-09-25 21:55:46 +000026
Andrzej Kurekc470b6b2019-01-31 08:20:20 -050027#if !defined(MBEDTLS_CONFIG_FILE)
28#include "config.h"
29#else
30#include MBEDTLS_CONFIG_FILE
31#endif
32
Paul Bakker0a597072012-09-25 21:55:46 +000033#include "ssl.h"
34
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020035#if defined(MBEDTLS_THREADING_C)
Paul Bakkerc5598842013-09-28 15:01:27 +020036#include "threading.h"
37#endif
38
Paul Bakker088c5c52014-04-25 11:11:10 +020039/**
40 * \name SECTION: Module settings
41 *
42 * The configuration options you can set for this module are in this section.
43 * Either change them in config.h or define them on the compiler command line.
44 * \{
45 */
46
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020047#if !defined(MBEDTLS_SSL_CACHE_DEFAULT_TIMEOUT)
48#define MBEDTLS_SSL_CACHE_DEFAULT_TIMEOUT 86400 /*!< 1 day */
Paul Bakker088c5c52014-04-25 11:11:10 +020049#endif
50
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020051#if !defined(MBEDTLS_SSL_CACHE_DEFAULT_MAX_ENTRIES)
52#define MBEDTLS_SSL_CACHE_DEFAULT_MAX_ENTRIES 50 /*!< Maximum entries in cache */
Paul Bakker088c5c52014-04-25 11:11:10 +020053#endif
54
55/* \} name SECTION: Module settings */
Paul Bakker0a597072012-09-25 21:55:46 +000056
57#ifdef __cplusplus
58extern "C" {
59#endif
60
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020061typedef struct mbedtls_ssl_cache_context mbedtls_ssl_cache_context;
62typedef struct mbedtls_ssl_cache_entry mbedtls_ssl_cache_entry;
Paul Bakker0a597072012-09-25 21:55:46 +000063
64/**
65 * \brief This structure is used for storing cache entries
66 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020067struct mbedtls_ssl_cache_entry
Paul Bakker0a597072012-09-25 21:55:46 +000068{
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020069#if defined(MBEDTLS_HAVE_TIME)
SimonBd5800b72016-04-26 07:43:27 +010070 mbedtls_time_t timestamp; /*!< entry timestamp */
Paul Bakkerfa9b1002013-07-03 15:31:03 +020071#endif
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020072 mbedtls_ssl_session session; /*!< entry session */
73#if defined(MBEDTLS_X509_CRT_PARSE_C)
74 mbedtls_x509_buf peer_cert; /*!< entry peer_cert */
Paul Bakkered27a042013-04-18 22:46:23 +020075#endif
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020076 mbedtls_ssl_cache_entry *next; /*!< chain pointer */
Paul Bakker0a597072012-09-25 21:55:46 +000077};
78
79/**
80 * \brief Cache context
81 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020082struct mbedtls_ssl_cache_context
Paul Bakker0a597072012-09-25 21:55:46 +000083{
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020084 mbedtls_ssl_cache_entry *chain; /*!< start of the chain */
Paul Bakkerba26e9e2012-10-23 22:18:28 +000085 int timeout; /*!< cache entry timeout */
86 int max_entries; /*!< maximum entries */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020087#if defined(MBEDTLS_THREADING_C)
88 mbedtls_threading_mutex_t mutex; /*!< mutex */
Paul Bakkerc5598842013-09-28 15:01:27 +020089#endif
Paul Bakker0a597072012-09-25 21:55:46 +000090};
91
92/**
93 * \brief Initialize an SSL cache context
94 *
95 * \param cache SSL cache context
96 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020097void mbedtls_ssl_cache_init( mbedtls_ssl_cache_context *cache );
Paul Bakker0a597072012-09-25 21:55:46 +000098
99/**
100 * \brief Cache get callback implementation
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200101 * (Thread-safe if MBEDTLS_THREADING_C is enabled)
Paul Bakker0a597072012-09-25 21:55:46 +0000102 *
103 * \param data SSL cache context
104 * \param session session to retrieve entry for
105 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200106int mbedtls_ssl_cache_get( void *data, mbedtls_ssl_session *session );
Paul Bakker0a597072012-09-25 21:55:46 +0000107
108/**
109 * \brief Cache set callback implementation
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200110 * (Thread-safe if MBEDTLS_THREADING_C is enabled)
Paul Bakker0a597072012-09-25 21:55:46 +0000111 *
112 * \param data SSL cache context
113 * \param session session to store entry for
114 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200115int mbedtls_ssl_cache_set( void *data, const mbedtls_ssl_session *session );
Paul Bakker0a597072012-09-25 21:55:46 +0000116
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200117#if defined(MBEDTLS_HAVE_TIME)
Paul Bakker0a597072012-09-25 21:55:46 +0000118/**
119 * \brief Set the cache timeout
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200120 * (Default: MBEDTLS_SSL_CACHE_DEFAULT_TIMEOUT (1 day))
Paul Bakker0a597072012-09-25 21:55:46 +0000121 *
122 * A timeout of 0 indicates no timeout.
123 *
124 * \param cache SSL cache context
Manuel Pégourié-Gonnard274a12e2014-02-20 21:32:08 +0100125 * \param timeout cache entry timeout in seconds
Paul Bakker0a597072012-09-25 21:55:46 +0000126 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200127void mbedtls_ssl_cache_set_timeout( mbedtls_ssl_cache_context *cache, int timeout );
128#endif /* MBEDTLS_HAVE_TIME */
Paul Bakker0a597072012-09-25 21:55:46 +0000129
130/**
Manuel Pégourié-Gonnarddb90c822015-10-20 09:36:39 +0200131 * \brief Set the maximum number of cache entries
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200132 * (Default: MBEDTLS_SSL_CACHE_DEFAULT_MAX_ENTRIES (50))
Paul Bakkerba26e9e2012-10-23 22:18:28 +0000133 *
134 * \param cache SSL cache context
135 * \param max cache entry maximum
136 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200137void mbedtls_ssl_cache_set_max_entries( mbedtls_ssl_cache_context *cache, int max );
Paul Bakkerba26e9e2012-10-23 22:18:28 +0000138
139/**
Paul Bakker0a597072012-09-25 21:55:46 +0000140 * \brief Free referenced items in a cache context and clear memory
141 *
142 * \param cache SSL cache context
143 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200144void mbedtls_ssl_cache_free( mbedtls_ssl_cache_context *cache );
Paul Bakker0a597072012-09-25 21:55:46 +0000145
146#ifdef __cplusplus
147}
148#endif
149
150#endif /* ssl_cache.h */