blob: 063d7d7b1e0663bc3c6cd98ec38e4cc761bcbd8d [file] [log] [blame]
Paul Bakker0a597072012-09-25 21:55:46 +00001/**
2 * \file ssl_cache.h
3 *
4 * \brief SSL session cache implementation
5 *
Manuel Pégourié-Gonnarda658a402015-01-23 09:45:19 +00006 * Copyright (C) 2006-2013, ARM Limited, All Rights Reserved
Paul Bakker0a597072012-09-25 21:55:46 +00007 *
Manuel Pégourié-Gonnardfe446432015-03-06 13:17:10 +00008 * This file is part of mbed TLS (https://tls.mbed.org)
Paul Bakker0a597072012-09-25 21:55:46 +00009 *
Paul Bakker0a597072012-09-25 21:55:46 +000010 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License along
21 * with this program; if not, write to the Free Software Foundation, Inc.,
22 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
23 */
24#ifndef POLARSSL_SSL_CACHE_H
25#define POLARSSL_SSL_CACHE_H
26
27#include "ssl.h"
28
Paul Bakkerc5598842013-09-28 15:01:27 +020029#if defined(POLARSSL_THREADING_C)
30#include "threading.h"
31#endif
32
Paul Bakker088c5c52014-04-25 11:11:10 +020033/**
34 * \name SECTION: Module settings
35 *
36 * The configuration options you can set for this module are in this section.
37 * Either change them in config.h or define them on the compiler command line.
38 * \{
39 */
40
41#if !defined(SSL_CACHE_DEFAULT_TIMEOUT)
Paul Bakkerba26e9e2012-10-23 22:18:28 +000042#define SSL_CACHE_DEFAULT_TIMEOUT 86400 /*!< 1 day */
Paul Bakker088c5c52014-04-25 11:11:10 +020043#endif
44
45#if !defined(SSL_CACHE_DEFAULT_MAX_ENTRIES)
Paul Bakkerba26e9e2012-10-23 22:18:28 +000046#define SSL_CACHE_DEFAULT_MAX_ENTRIES 50 /*!< Maximum entries in cache */
Paul Bakker088c5c52014-04-25 11:11:10 +020047#endif
48
49/* \} name SECTION: Module settings */
Paul Bakker0a597072012-09-25 21:55:46 +000050
51#ifdef __cplusplus
52extern "C" {
53#endif
54
55typedef struct _ssl_cache_context ssl_cache_context;
56typedef struct _ssl_cache_entry ssl_cache_entry;
57
58/**
59 * \brief This structure is used for storing cache entries
60 */
61struct _ssl_cache_entry
62{
Paul Bakkerfa9b1002013-07-03 15:31:03 +020063#if defined(POLARSSL_HAVE_TIME)
Paul Bakker0a597072012-09-25 21:55:46 +000064 time_t timestamp; /*!< entry timestamp */
Paul Bakkerfa9b1002013-07-03 15:31:03 +020065#endif
Paul Bakker0a597072012-09-25 21:55:46 +000066 ssl_session session; /*!< entry session */
Paul Bakker7c6b2c32013-09-16 13:49:26 +020067#if defined(POLARSSL_X509_CRT_PARSE_C)
Paul Bakkere81beda2013-03-06 17:40:46 +010068 x509_buf peer_cert; /*!< entry peer_cert */
Paul Bakkered27a042013-04-18 22:46:23 +020069#endif
Paul Bakker0a597072012-09-25 21:55:46 +000070 ssl_cache_entry *next; /*!< chain pointer */
71};
72
73/**
74 * \brief Cache context
75 */
76struct _ssl_cache_context
77{
Paul Bakkerba26e9e2012-10-23 22:18:28 +000078 ssl_cache_entry *chain; /*!< start of the chain */
79 int timeout; /*!< cache entry timeout */
80 int max_entries; /*!< maximum entries */
Paul Bakkerc5598842013-09-28 15:01:27 +020081#if defined(POLARSSL_THREADING_C)
82 threading_mutex_t mutex; /*!< mutex */
83#endif
Paul Bakker0a597072012-09-25 21:55:46 +000084};
85
86/**
87 * \brief Initialize an SSL cache context
88 *
89 * \param cache SSL cache context
90 */
91void ssl_cache_init( ssl_cache_context *cache );
92
93/**
94 * \brief Cache get callback implementation
Paul Bakkerc5598842013-09-28 15:01:27 +020095 * (Thread-safe if POLARSSL_THREADING_C is enabled)
Paul Bakker0a597072012-09-25 21:55:46 +000096 *
97 * \param data SSL cache context
98 * \param session session to retrieve entry for
99 */
100int ssl_cache_get( void *data, ssl_session *session );
101
102/**
103 * \brief Cache set callback implementation
Paul Bakkerc5598842013-09-28 15:01:27 +0200104 * (Thread-safe if POLARSSL_THREADING_C is enabled)
Paul Bakker0a597072012-09-25 21:55:46 +0000105 *
106 * \param data SSL cache context
107 * \param session session to store entry for
108 */
109int ssl_cache_set( void *data, const ssl_session *session );
110
Paul Bakkerfa9b1002013-07-03 15:31:03 +0200111#if defined(POLARSSL_HAVE_TIME)
Paul Bakker0a597072012-09-25 21:55:46 +0000112/**
113 * \brief Set the cache timeout
114 * (Default: SSL_CACHE_DEFAULT_TIMEOUT (1 day))
115 *
116 * A timeout of 0 indicates no timeout.
117 *
118 * \param cache SSL cache context
Manuel Pégourié-Gonnard274a12e2014-02-20 21:32:08 +0100119 * \param timeout cache entry timeout in seconds
Paul Bakker0a597072012-09-25 21:55:46 +0000120 */
121void ssl_cache_set_timeout( ssl_cache_context *cache, int timeout );
Paul Bakkerfa9b1002013-07-03 15:31:03 +0200122#endif /* POLARSSL_HAVE_TIME */
Paul Bakker0a597072012-09-25 21:55:46 +0000123
124/**
Paul Bakkerba26e9e2012-10-23 22:18:28 +0000125 * \brief Set the cache timeout
126 * (Default: SSL_CACHE_DEFAULT_MAX_ENTRIES (50))
127 *
128 * \param cache SSL cache context
129 * \param max cache entry maximum
130 */
131void ssl_cache_set_max_entries( ssl_cache_context *cache, int max );
132
133/**
Paul Bakker0a597072012-09-25 21:55:46 +0000134 * \brief Free referenced items in a cache context and clear memory
135 *
136 * \param cache SSL cache context
137 */
138void ssl_cache_free( ssl_cache_context *cache );
139
140#ifdef __cplusplus
141}
142#endif
143
144#endif /* ssl_cache.h */