blob: 836b68511b8a8a981e445eed72deef8d26093fcf [file] [log] [blame]
Paul Bakker0a597072012-09-25 21:55:46 +00001/*
2 * SSL session cache implementation
3 *
Paul Bakker7dc4c442014-02-01 22:50:26 +01004 * Copyright (C) 2006-2014, Brainspark B.V.
Paul Bakker0a597072012-09-25 21:55:46 +00005 *
6 * This file is part of PolarSSL (http://www.polarssl.org)
7 * Lead Maintainer: Paul Bakker <polarssl_maintainer at polarssl.org>
8 *
9 * All rights reserved.
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License along
22 * with this program; if not, write to the Free Software Foundation, Inc.,
23 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
24 */
25/*
26 * These session callbacks use a simple chained list
27 * to store and retrieve the session information.
28 */
29
Manuel Pégourié-Gonnardcef4ad22014-04-29 12:39:06 +020030#if !defined(POLARSSL_CONFIG_FILE)
Paul Bakker0a597072012-09-25 21:55:46 +000031#include "polarssl/config.h"
Manuel Pégourié-Gonnardcef4ad22014-04-29 12:39:06 +020032#else
33#include POLARSSL_CONFIG_FILE
34#endif
Paul Bakker0a597072012-09-25 21:55:46 +000035
36#if defined(POLARSSL_SSL_CACHE_C)
37
38#include "polarssl/ssl_cache.h"
39
Paul Bakker7dc4c442014-02-01 22:50:26 +010040#if defined(POLARSSL_PLATFORM_C)
41#include "polarssl/platform.h"
Paul Bakker6e339b52013-07-03 13:37:05 +020042#else
43#define polarssl_malloc malloc
44#define polarssl_free free
45#endif
46
Paul Bakker0a597072012-09-25 21:55:46 +000047#include <stdlib.h>
48
49void ssl_cache_init( ssl_cache_context *cache )
50{
51 memset( cache, 0, sizeof( ssl_cache_context ) );
52
53 cache->timeout = SSL_CACHE_DEFAULT_TIMEOUT;
Paul Bakkerba26e9e2012-10-23 22:18:28 +000054 cache->max_entries = SSL_CACHE_DEFAULT_MAX_ENTRIES;
Paul Bakkerc5598842013-09-28 15:01:27 +020055
56#if defined(POLARSSL_THREADING_C)
57 polarssl_mutex_init( &cache->mutex );
58#endif
Paul Bakker0a597072012-09-25 21:55:46 +000059}
60
61int ssl_cache_get( void *data, ssl_session *session )
62{
Paul Bakkerc5598842013-09-28 15:01:27 +020063 int ret = 1;
Paul Bakkerfa9b1002013-07-03 15:31:03 +020064#if defined(POLARSSL_HAVE_TIME)
Paul Bakker0a597072012-09-25 21:55:46 +000065 time_t t = time( NULL );
Paul Bakkerfa9b1002013-07-03 15:31:03 +020066#endif
Paul Bakker0a597072012-09-25 21:55:46 +000067 ssl_cache_context *cache = (ssl_cache_context *) data;
68 ssl_cache_entry *cur, *entry;
69
Paul Bakkerc5598842013-09-28 15:01:27 +020070#if defined(POLARSSL_THREADING_C)
71 if( polarssl_mutex_lock( &cache->mutex ) != 0 )
72 return( 1 );
73#endif
74
Paul Bakker0a597072012-09-25 21:55:46 +000075 cur = cache->chain;
76 entry = NULL;
77
78 while( cur != NULL )
79 {
80 entry = cur;
81 cur = cur->next;
82
Paul Bakkerfa9b1002013-07-03 15:31:03 +020083#if defined(POLARSSL_HAVE_TIME)
Paul Bakker0a597072012-09-25 21:55:46 +000084 if( cache->timeout != 0 &&
85 (int) ( t - entry->timestamp ) > cache->timeout )
86 continue;
Paul Bakkerfa9b1002013-07-03 15:31:03 +020087#endif
Paul Bakker0a597072012-09-25 21:55:46 +000088
89 if( session->ciphersuite != entry->session.ciphersuite ||
90 session->compression != entry->session.compression ||
91 session->length != entry->session.length )
92 continue;
93
94 if( memcmp( session->id, entry->session.id,
95 entry->session.length ) != 0 )
96 continue;
97
98 memcpy( session->master, entry->session.master, 48 );
Paul Bakkere81beda2013-03-06 17:40:46 +010099
Manuel Pégourié-Gonnard38d1eba2013-08-23 10:44:29 +0200100 session->verify_result = entry->session.verify_result;
101
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200102#if defined(POLARSSL_X509_CRT_PARSE_C)
Paul Bakkere81beda2013-03-06 17:40:46 +0100103 /*
104 * Restore peer certificate (without rest of the original chain)
105 */
106 if( entry->peer_cert.p != NULL )
107 {
Paul Bakkerb9e4e2c2014-05-01 14:18:25 +0200108 session->peer_cert =
109 (x509_crt *) polarssl_malloc( sizeof(x509_crt) );
110
Paul Bakkere81beda2013-03-06 17:40:46 +0100111 if( session->peer_cert == NULL )
Paul Bakkerc5598842013-09-28 15:01:27 +0200112 {
113 ret = 1;
114 goto exit;
115 }
Paul Bakkere81beda2013-03-06 17:40:46 +0100116
Paul Bakkerb6b09562013-09-18 14:17:41 +0200117 x509_crt_init( session->peer_cert );
Paul Bakkerddf26b42013-09-18 13:46:23 +0200118 if( x509_crt_parse( session->peer_cert, entry->peer_cert.p,
119 entry->peer_cert.len ) != 0 )
Paul Bakkere81beda2013-03-06 17:40:46 +0100120 {
Paul Bakker6e339b52013-07-03 13:37:05 +0200121 polarssl_free( session->peer_cert );
Paul Bakkere81beda2013-03-06 17:40:46 +0100122 session->peer_cert = NULL;
Paul Bakkerc5598842013-09-28 15:01:27 +0200123 ret = 1;
124 goto exit;
Paul Bakkere81beda2013-03-06 17:40:46 +0100125 }
126 }
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200127#endif /* POLARSSL_X509_CRT_PARSE_C */
Paul Bakkere81beda2013-03-06 17:40:46 +0100128
Paul Bakkerc5598842013-09-28 15:01:27 +0200129 ret = 0;
130 goto exit;
Paul Bakker0a597072012-09-25 21:55:46 +0000131 }
132
Paul Bakkerc5598842013-09-28 15:01:27 +0200133exit:
134#if defined(POLARSSL_THREADING_C)
135 if( polarssl_mutex_unlock( &cache->mutex ) != 0 )
136 ret = 1;
137#endif
138
139 return( ret );
Paul Bakker0a597072012-09-25 21:55:46 +0000140}
141
142int ssl_cache_set( void *data, const ssl_session *session )
143{
Paul Bakkerc5598842013-09-28 15:01:27 +0200144 int ret = 1;
Paul Bakkerfa9b1002013-07-03 15:31:03 +0200145#if defined(POLARSSL_HAVE_TIME)
Paul Bakkerba26e9e2012-10-23 22:18:28 +0000146 time_t t = time( NULL ), oldest = 0;
Paul Bakkerfa9b1002013-07-03 15:31:03 +0200147 ssl_cache_entry *old = NULL;
148#endif
Paul Bakker0a597072012-09-25 21:55:46 +0000149 ssl_cache_context *cache = (ssl_cache_context *) data;
Paul Bakkerfa9b1002013-07-03 15:31:03 +0200150 ssl_cache_entry *cur, *prv;
Paul Bakkerba26e9e2012-10-23 22:18:28 +0000151 int count = 0;
Paul Bakker0a597072012-09-25 21:55:46 +0000152
Paul Bakkerc5598842013-09-28 15:01:27 +0200153#if defined(POLARSSL_THREADING_C)
154 if( ( ret = polarssl_mutex_lock( &cache->mutex ) ) != 0 )
155 return( ret );
156#endif
157
Paul Bakker0a597072012-09-25 21:55:46 +0000158 cur = cache->chain;
159 prv = NULL;
160
161 while( cur != NULL )
162 {
Paul Bakkerba26e9e2012-10-23 22:18:28 +0000163 count++;
164
Paul Bakkerfa9b1002013-07-03 15:31:03 +0200165#if defined(POLARSSL_HAVE_TIME)
Paul Bakker0a597072012-09-25 21:55:46 +0000166 if( cache->timeout != 0 &&
167 (int) ( t - cur->timestamp ) > cache->timeout )
168 {
169 cur->timestamp = t;
170 break; /* expired, reuse this slot, update timestamp */
171 }
Paul Bakkerfa9b1002013-07-03 15:31:03 +0200172#endif
Paul Bakker0a597072012-09-25 21:55:46 +0000173
174 if( memcmp( session->id, cur->session.id, cur->session.length ) == 0 )
175 break; /* client reconnected, keep timestamp for session id */
176
Paul Bakkerfa9b1002013-07-03 15:31:03 +0200177#if defined(POLARSSL_HAVE_TIME)
Paul Bakkerba26e9e2012-10-23 22:18:28 +0000178 if( oldest == 0 || cur->timestamp < oldest )
179 {
180 oldest = cur->timestamp;
181 old = cur;
182 }
Paul Bakkerfa9b1002013-07-03 15:31:03 +0200183#endif
Paul Bakkerba26e9e2012-10-23 22:18:28 +0000184
Paul Bakker0a597072012-09-25 21:55:46 +0000185 prv = cur;
186 cur = cur->next;
187 }
188
189 if( cur == NULL )
190 {
Paul Bakkerfa9b1002013-07-03 15:31:03 +0200191#if defined(POLARSSL_HAVE_TIME)
Paul Bakkerba26e9e2012-10-23 22:18:28 +0000192 /*
193 * Reuse oldest entry if max_entries reached
194 */
Manuel Pégourié-Gonnard274a12e2014-02-20 21:32:08 +0100195 if( count >= cache->max_entries )
Paul Bakkerba26e9e2012-10-23 22:18:28 +0000196 {
Manuel Pégourié-Gonnard274a12e2014-02-20 21:32:08 +0100197 if( old == NULL )
198 {
199 ret = 1;
200 goto exit;
201 }
202
Paul Bakkerba26e9e2012-10-23 22:18:28 +0000203 cur = old;
Paul Bakkerba26e9e2012-10-23 22:18:28 +0000204 }
Paul Bakkerfa9b1002013-07-03 15:31:03 +0200205#else /* POLARSSL_HAVE_TIME */
206 /*
207 * Reuse first entry in chain if max_entries reached,
208 * but move to last place
209 */
210 if( count >= cache->max_entries )
211 {
212 if( cache->chain == NULL )
Paul Bakkerc5598842013-09-28 15:01:27 +0200213 {
214 ret = 1;
215 goto exit;
216 }
Paul Bakkerfa9b1002013-07-03 15:31:03 +0200217
218 cur = cache->chain;
219 cache->chain = cur->next;
Manuel Pégourié-Gonnard84c30c72014-02-26 17:38:55 +0100220 cur->next = NULL;
Paul Bakkerfa9b1002013-07-03 15:31:03 +0200221 prv->next = cur;
222 }
223#endif /* POLARSSL_HAVE_TIME */
Paul Bakker0a597072012-09-25 21:55:46 +0000224 else
Paul Bakkerba26e9e2012-10-23 22:18:28 +0000225 {
Manuel Pégourié-Gonnard274a12e2014-02-20 21:32:08 +0100226 /*
227 * max_entries not reached, create new entry
228 */
Paul Bakkerb9e4e2c2014-05-01 14:18:25 +0200229 cur = (ssl_cache_entry *)
230 polarssl_malloc( sizeof(ssl_cache_entry) );
Paul Bakkerba26e9e2012-10-23 22:18:28 +0000231 if( cur == NULL )
Paul Bakkerc5598842013-09-28 15:01:27 +0200232 {
233 ret = 1;
234 goto exit;
235 }
Paul Bakkerba26e9e2012-10-23 22:18:28 +0000236
Paul Bakkere81beda2013-03-06 17:40:46 +0100237 memset( cur, 0, sizeof(ssl_cache_entry) );
Paul Bakkerba26e9e2012-10-23 22:18:28 +0000238
239 if( prv == NULL )
240 cache->chain = cur;
241 else
242 prv->next = cur;
243 }
Paul Bakker0a597072012-09-25 21:55:46 +0000244
Paul Bakkerfa9b1002013-07-03 15:31:03 +0200245#if defined(POLARSSL_HAVE_TIME)
Paul Bakker0a597072012-09-25 21:55:46 +0000246 cur->timestamp = t;
Paul Bakkerfa9b1002013-07-03 15:31:03 +0200247#endif
Paul Bakker0a597072012-09-25 21:55:46 +0000248 }
249
250 memcpy( &cur->session, session, sizeof( ssl_session ) );
Paul Bakkered27a042013-04-18 22:46:23 +0200251
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200252#if defined(POLARSSL_X509_CRT_PARSE_C)
Paul Bakkere81beda2013-03-06 17:40:46 +0100253 /*
Manuel Pégourié-Gonnard84c30c72014-02-26 17:38:55 +0100254 * If we're reusing an entry, free its certificate first
255 */
256 if( cur->peer_cert.p != NULL )
257 {
258 polarssl_free( cur->peer_cert.p );
259 memset( &cur->peer_cert, 0, sizeof(x509_buf) );
260 }
261
262 /*
Paul Bakkere81beda2013-03-06 17:40:46 +0100263 * Store peer certificate
264 */
265 if( session->peer_cert != NULL )
266 {
Paul Bakkerb9e4e2c2014-05-01 14:18:25 +0200267 cur->peer_cert.p = (unsigned char *)
268 polarssl_malloc( session->peer_cert->raw.len );
Paul Bakkere81beda2013-03-06 17:40:46 +0100269 if( cur->peer_cert.p == NULL )
Paul Bakkerc5598842013-09-28 15:01:27 +0200270 {
271 ret = 1;
272 goto exit;
273 }
Paul Bakkere81beda2013-03-06 17:40:46 +0100274
275 memcpy( cur->peer_cert.p, session->peer_cert->raw.p,
276 session->peer_cert->raw.len );
277 cur->peer_cert.len = session->peer_cert->raw.len;
278
279 cur->session.peer_cert = NULL;
280 }
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200281#endif /* POLARSSL_X509_CRT_PARSE_C */
Paul Bakker0a597072012-09-25 21:55:46 +0000282
Paul Bakkerc5598842013-09-28 15:01:27 +0200283 ret = 0;
284
285exit:
286#if defined(POLARSSL_THREADING_C)
287 if( polarssl_mutex_unlock( &cache->mutex ) != 0 )
288 ret = 1;
289#endif
290
291 return( ret );
Paul Bakker0a597072012-09-25 21:55:46 +0000292}
293
Paul Bakkerfa9b1002013-07-03 15:31:03 +0200294#if defined(POLARSSL_HAVE_TIME)
Paul Bakker0a597072012-09-25 21:55:46 +0000295void ssl_cache_set_timeout( ssl_cache_context *cache, int timeout )
296{
297 if( timeout < 0 ) timeout = 0;
298
299 cache->timeout = timeout;
300}
Paul Bakkerfa9b1002013-07-03 15:31:03 +0200301#endif /* POLARSSL_HAVE_TIME */
Paul Bakker0a597072012-09-25 21:55:46 +0000302
Paul Bakkerba26e9e2012-10-23 22:18:28 +0000303void ssl_cache_set_max_entries( ssl_cache_context *cache, int max )
304{
305 if( max < 0 ) max = 0;
306
307 cache->max_entries = max;
308}
309
Paul Bakker0a597072012-09-25 21:55:46 +0000310void ssl_cache_free( ssl_cache_context *cache )
311{
312 ssl_cache_entry *cur, *prv;
313
314 cur = cache->chain;
315
316 while( cur != NULL )
317 {
318 prv = cur;
319 cur = cur->next;
320
321 ssl_session_free( &prv->session );
Paul Bakkere81beda2013-03-06 17:40:46 +0100322
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200323#if defined(POLARSSL_X509_CRT_PARSE_C)
Paul Bakker14b16c62014-05-28 11:33:54 +0200324 polarssl_free( prv->peer_cert.p );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200325#endif /* POLARSSL_X509_CRT_PARSE_C */
Paul Bakkere81beda2013-03-06 17:40:46 +0100326
Paul Bakker6e339b52013-07-03 13:37:05 +0200327 polarssl_free( prv );
Paul Bakker0a597072012-09-25 21:55:46 +0000328 }
Paul Bakkerc5598842013-09-28 15:01:27 +0200329
330#if defined(POLARSSL_THREADING_C)
331 polarssl_mutex_free( &cache->mutex );
332#endif
Paul Bakker0a597072012-09-25 21:55:46 +0000333}
334
335#endif /* POLARSSL_SSL_CACHE_C */