blob: 6fff54b32750b469c1c5f46c91ad8b00caaf44a6 [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
30#include "polarssl/config.h"
31
32#if defined(POLARSSL_SSL_CACHE_C)
33
34#include "polarssl/ssl_cache.h"
35
Paul Bakker7dc4c442014-02-01 22:50:26 +010036#if defined(POLARSSL_PLATFORM_C)
37#include "polarssl/platform.h"
Paul Bakker6e339b52013-07-03 13:37:05 +020038#else
39#define polarssl_malloc malloc
40#define polarssl_free free
41#endif
42
Paul Bakker0a597072012-09-25 21:55:46 +000043#include <stdlib.h>
44
45void ssl_cache_init( ssl_cache_context *cache )
46{
47 memset( cache, 0, sizeof( ssl_cache_context ) );
48
49 cache->timeout = SSL_CACHE_DEFAULT_TIMEOUT;
Paul Bakkerba26e9e2012-10-23 22:18:28 +000050 cache->max_entries = SSL_CACHE_DEFAULT_MAX_ENTRIES;
Paul Bakkerc5598842013-09-28 15:01:27 +020051
52#if defined(POLARSSL_THREADING_C)
53 polarssl_mutex_init( &cache->mutex );
54#endif
Paul Bakker0a597072012-09-25 21:55:46 +000055}
56
57int ssl_cache_get( void *data, ssl_session *session )
58{
Paul Bakkerc5598842013-09-28 15:01:27 +020059 int ret = 1;
Paul Bakkerfa9b1002013-07-03 15:31:03 +020060#if defined(POLARSSL_HAVE_TIME)
Paul Bakker0a597072012-09-25 21:55:46 +000061 time_t t = time( NULL );
Paul Bakkerfa9b1002013-07-03 15:31:03 +020062#endif
Paul Bakker0a597072012-09-25 21:55:46 +000063 ssl_cache_context *cache = (ssl_cache_context *) data;
64 ssl_cache_entry *cur, *entry;
65
Paul Bakkerc5598842013-09-28 15:01:27 +020066#if defined(POLARSSL_THREADING_C)
67 if( polarssl_mutex_lock( &cache->mutex ) != 0 )
68 return( 1 );
69#endif
70
Paul Bakker0a597072012-09-25 21:55:46 +000071 cur = cache->chain;
72 entry = NULL;
73
74 while( cur != NULL )
75 {
76 entry = cur;
77 cur = cur->next;
78
Paul Bakkerfa9b1002013-07-03 15:31:03 +020079#if defined(POLARSSL_HAVE_TIME)
Paul Bakker0a597072012-09-25 21:55:46 +000080 if( cache->timeout != 0 &&
81 (int) ( t - entry->timestamp ) > cache->timeout )
82 continue;
Paul Bakkerfa9b1002013-07-03 15:31:03 +020083#endif
Paul Bakker0a597072012-09-25 21:55:46 +000084
85 if( session->ciphersuite != entry->session.ciphersuite ||
86 session->compression != entry->session.compression ||
87 session->length != entry->session.length )
88 continue;
89
90 if( memcmp( session->id, entry->session.id,
91 entry->session.length ) != 0 )
92 continue;
93
94 memcpy( session->master, entry->session.master, 48 );
Paul Bakkere81beda2013-03-06 17:40:46 +010095
Manuel Pégourié-Gonnard38d1eba2013-08-23 10:44:29 +020096 session->verify_result = entry->session.verify_result;
97
Paul Bakker7c6b2c32013-09-16 13:49:26 +020098#if defined(POLARSSL_X509_CRT_PARSE_C)
Paul Bakkere81beda2013-03-06 17:40:46 +010099 /*
100 * Restore peer certificate (without rest of the original chain)
101 */
102 if( entry->peer_cert.p != NULL )
103 {
Paul Bakkerc559c7a2013-09-18 14:13:26 +0200104 session->peer_cert = (x509_crt *) polarssl_malloc( sizeof(x509_crt) );
Paul Bakkere81beda2013-03-06 17:40:46 +0100105 if( session->peer_cert == NULL )
Paul Bakkerc5598842013-09-28 15:01:27 +0200106 {
107 ret = 1;
108 goto exit;
109 }
Paul Bakkere81beda2013-03-06 17:40:46 +0100110
Paul Bakkerb6b09562013-09-18 14:17:41 +0200111 x509_crt_init( session->peer_cert );
Paul Bakkerddf26b42013-09-18 13:46:23 +0200112 if( x509_crt_parse( session->peer_cert, entry->peer_cert.p,
113 entry->peer_cert.len ) != 0 )
Paul Bakkere81beda2013-03-06 17:40:46 +0100114 {
Paul Bakker6e339b52013-07-03 13:37:05 +0200115 polarssl_free( session->peer_cert );
Paul Bakkere81beda2013-03-06 17:40:46 +0100116 session->peer_cert = NULL;
Paul Bakkerc5598842013-09-28 15:01:27 +0200117 ret = 1;
118 goto exit;
Paul Bakkere81beda2013-03-06 17:40:46 +0100119 }
120 }
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200121#endif /* POLARSSL_X509_CRT_PARSE_C */
Paul Bakkere81beda2013-03-06 17:40:46 +0100122
Paul Bakkerc5598842013-09-28 15:01:27 +0200123 ret = 0;
124 goto exit;
Paul Bakker0a597072012-09-25 21:55:46 +0000125 }
126
Paul Bakkerc5598842013-09-28 15:01:27 +0200127exit:
128#if defined(POLARSSL_THREADING_C)
129 if( polarssl_mutex_unlock( &cache->mutex ) != 0 )
130 ret = 1;
131#endif
132
133 return( ret );
Paul Bakker0a597072012-09-25 21:55:46 +0000134}
135
136int ssl_cache_set( void *data, const ssl_session *session )
137{
Paul Bakkerc5598842013-09-28 15:01:27 +0200138 int ret = 1;
Paul Bakkerfa9b1002013-07-03 15:31:03 +0200139#if defined(POLARSSL_HAVE_TIME)
Paul Bakkerba26e9e2012-10-23 22:18:28 +0000140 time_t t = time( NULL ), oldest = 0;
Paul Bakkerfa9b1002013-07-03 15:31:03 +0200141 ssl_cache_entry *old = NULL;
142#endif
Paul Bakker0a597072012-09-25 21:55:46 +0000143 ssl_cache_context *cache = (ssl_cache_context *) data;
Paul Bakkerfa9b1002013-07-03 15:31:03 +0200144 ssl_cache_entry *cur, *prv;
Paul Bakkerba26e9e2012-10-23 22:18:28 +0000145 int count = 0;
Paul Bakker0a597072012-09-25 21:55:46 +0000146
Paul Bakkerc5598842013-09-28 15:01:27 +0200147#if defined(POLARSSL_THREADING_C)
148 if( ( ret = polarssl_mutex_lock( &cache->mutex ) ) != 0 )
149 return( ret );
150#endif
151
Paul Bakker0a597072012-09-25 21:55:46 +0000152 cur = cache->chain;
153 prv = NULL;
154
155 while( cur != NULL )
156 {
Paul Bakkerba26e9e2012-10-23 22:18:28 +0000157 count++;
158
Paul Bakkerfa9b1002013-07-03 15:31:03 +0200159#if defined(POLARSSL_HAVE_TIME)
Paul Bakker0a597072012-09-25 21:55:46 +0000160 if( cache->timeout != 0 &&
161 (int) ( t - cur->timestamp ) > cache->timeout )
162 {
163 cur->timestamp = t;
164 break; /* expired, reuse this slot, update timestamp */
165 }
Paul Bakkerfa9b1002013-07-03 15:31:03 +0200166#endif
Paul Bakker0a597072012-09-25 21:55:46 +0000167
168 if( memcmp( session->id, cur->session.id, cur->session.length ) == 0 )
169 break; /* client reconnected, keep timestamp for session id */
170
Paul Bakkerfa9b1002013-07-03 15:31:03 +0200171#if defined(POLARSSL_HAVE_TIME)
Paul Bakkerba26e9e2012-10-23 22:18:28 +0000172 if( oldest == 0 || cur->timestamp < oldest )
173 {
174 oldest = cur->timestamp;
175 old = cur;
176 }
Paul Bakkerfa9b1002013-07-03 15:31:03 +0200177#endif
Paul Bakkerba26e9e2012-10-23 22:18:28 +0000178
Paul Bakker0a597072012-09-25 21:55:46 +0000179 prv = cur;
180 cur = cur->next;
181 }
182
183 if( cur == NULL )
184 {
Paul Bakkerfa9b1002013-07-03 15:31:03 +0200185#if defined(POLARSSL_HAVE_TIME)
Paul Bakkerba26e9e2012-10-23 22:18:28 +0000186 /*
187 * Reuse oldest entry if max_entries reached
188 */
189 if( old != NULL && count >= cache->max_entries )
190 {
191 cur = old;
Paul Bakkere81beda2013-03-06 17:40:46 +0100192 memset( &cur->session, 0, sizeof(ssl_session) );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200193#if defined(POLARSSL_X509_CRT_PARSE_C)
Paul Bakkere81beda2013-03-06 17:40:46 +0100194 if( cur->peer_cert.p != NULL )
195 {
Paul Bakker6e339b52013-07-03 13:37:05 +0200196 polarssl_free( cur->peer_cert.p );
Paul Bakkere81beda2013-03-06 17:40:46 +0100197 memset( &cur->peer_cert, 0, sizeof(x509_buf) );
198 }
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200199#endif /* POLARSSL_X509_CRT_PARSE_C */
Paul Bakkerba26e9e2012-10-23 22:18:28 +0000200 }
Paul Bakkerfa9b1002013-07-03 15:31:03 +0200201#else /* POLARSSL_HAVE_TIME */
202 /*
203 * Reuse first entry in chain if max_entries reached,
204 * but move to last place
205 */
206 if( count >= cache->max_entries )
207 {
208 if( cache->chain == NULL )
Paul Bakkerc5598842013-09-28 15:01:27 +0200209 {
210 ret = 1;
211 goto exit;
212 }
Paul Bakkerfa9b1002013-07-03 15:31:03 +0200213
214 cur = cache->chain;
215 cache->chain = cur->next;
216
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200217#if defined(POLARSSL_X509_CRT_PARSE_C)
Paul Bakkerfa9b1002013-07-03 15:31:03 +0200218 if( cur->peer_cert.p != NULL )
219 {
220 polarssl_free( cur->peer_cert.p );
221 memset( &cur->peer_cert, 0, sizeof(x509_buf) );
222 }
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200223#endif /* POLARSSL_X509_CRT_PARSE_C */
Paul Bakkerfa9b1002013-07-03 15:31:03 +0200224
225 memset( cur, 0, sizeof(ssl_cache_entry) );
226 prv->next = cur;
227 }
228#endif /* POLARSSL_HAVE_TIME */
Paul Bakker0a597072012-09-25 21:55:46 +0000229 else
Paul Bakkerba26e9e2012-10-23 22:18:28 +0000230 {
Paul Bakker6e339b52013-07-03 13:37:05 +0200231 cur = (ssl_cache_entry *) polarssl_malloc( sizeof(ssl_cache_entry) );
Paul Bakkerba26e9e2012-10-23 22:18:28 +0000232 if( cur == NULL )
Paul Bakkerc5598842013-09-28 15:01:27 +0200233 {
234 ret = 1;
235 goto exit;
236 }
Paul Bakkerba26e9e2012-10-23 22:18:28 +0000237
Paul Bakkere81beda2013-03-06 17:40:46 +0100238 memset( cur, 0, sizeof(ssl_cache_entry) );
Paul Bakkerba26e9e2012-10-23 22:18:28 +0000239
240 if( prv == NULL )
241 cache->chain = cur;
242 else
243 prv->next = cur;
244 }
Paul Bakker0a597072012-09-25 21:55:46 +0000245
Paul Bakkerfa9b1002013-07-03 15:31:03 +0200246#if defined(POLARSSL_HAVE_TIME)
Paul Bakker0a597072012-09-25 21:55:46 +0000247 cur->timestamp = t;
Paul Bakkerfa9b1002013-07-03 15:31:03 +0200248#endif
Paul Bakker0a597072012-09-25 21:55:46 +0000249 }
250
251 memcpy( &cur->session, session, sizeof( ssl_session ) );
Paul Bakkered27a042013-04-18 22:46:23 +0200252
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200253#if defined(POLARSSL_X509_CRT_PARSE_C)
Paul Bakkere81beda2013-03-06 17:40:46 +0100254 /*
255 * Store peer certificate
256 */
257 if( session->peer_cert != NULL )
258 {
Paul Bakker6e339b52013-07-03 13:37:05 +0200259 cur->peer_cert.p = (unsigned char *) polarssl_malloc( session->peer_cert->raw.len );
Paul Bakkere81beda2013-03-06 17:40:46 +0100260 if( cur->peer_cert.p == NULL )
Paul Bakkerc5598842013-09-28 15:01:27 +0200261 {
262 ret = 1;
263 goto exit;
264 }
Paul Bakkere81beda2013-03-06 17:40:46 +0100265
266 memcpy( cur->peer_cert.p, session->peer_cert->raw.p,
267 session->peer_cert->raw.len );
268 cur->peer_cert.len = session->peer_cert->raw.len;
269
270 cur->session.peer_cert = NULL;
271 }
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200272#endif /* POLARSSL_X509_CRT_PARSE_C */
Paul Bakker0a597072012-09-25 21:55:46 +0000273
Paul Bakkerc5598842013-09-28 15:01:27 +0200274 ret = 0;
275
276exit:
277#if defined(POLARSSL_THREADING_C)
278 if( polarssl_mutex_unlock( &cache->mutex ) != 0 )
279 ret = 1;
280#endif
281
282 return( ret );
Paul Bakker0a597072012-09-25 21:55:46 +0000283}
284
Paul Bakkerfa9b1002013-07-03 15:31:03 +0200285#if defined(POLARSSL_HAVE_TIME)
Paul Bakker0a597072012-09-25 21:55:46 +0000286void ssl_cache_set_timeout( ssl_cache_context *cache, int timeout )
287{
288 if( timeout < 0 ) timeout = 0;
289
290 cache->timeout = timeout;
291}
Paul Bakkerfa9b1002013-07-03 15:31:03 +0200292#endif /* POLARSSL_HAVE_TIME */
Paul Bakker0a597072012-09-25 21:55:46 +0000293
Paul Bakkerba26e9e2012-10-23 22:18:28 +0000294void ssl_cache_set_max_entries( ssl_cache_context *cache, int max )
295{
296 if( max < 0 ) max = 0;
297
298 cache->max_entries = max;
299}
300
Paul Bakker0a597072012-09-25 21:55:46 +0000301void ssl_cache_free( ssl_cache_context *cache )
302{
303 ssl_cache_entry *cur, *prv;
304
305 cur = cache->chain;
306
307 while( cur != NULL )
308 {
309 prv = cur;
310 cur = cur->next;
311
312 ssl_session_free( &prv->session );
Paul Bakkere81beda2013-03-06 17:40:46 +0100313
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200314#if defined(POLARSSL_X509_CRT_PARSE_C)
Paul Bakkere81beda2013-03-06 17:40:46 +0100315 if( prv->peer_cert.p != NULL )
Paul Bakker6e339b52013-07-03 13:37:05 +0200316 polarssl_free( prv->peer_cert.p );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200317#endif /* POLARSSL_X509_CRT_PARSE_C */
Paul Bakkere81beda2013-03-06 17:40:46 +0100318
Paul Bakker6e339b52013-07-03 13:37:05 +0200319 polarssl_free( prv );
Paul Bakker0a597072012-09-25 21:55:46 +0000320 }
Paul Bakkerc5598842013-09-28 15:01:27 +0200321
322#if defined(POLARSSL_THREADING_C)
323 polarssl_mutex_free( &cache->mutex );
324#endif
Paul Bakker0a597072012-09-25 21:55:46 +0000325}
326
327#endif /* POLARSSL_SSL_CACHE_C */