2012-09-25 23:55:46 +02:00
|
|
|
/*
|
|
|
|
* SSL session cache implementation
|
|
|
|
*
|
2015-07-27 11:11:48 +02:00
|
|
|
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
|
2015-09-04 14:21:07 +02:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
2012-09-25 23:55:46 +02:00
|
|
|
*
|
2015-09-04 14:21:07 +02:00
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
|
|
* not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
2012-09-25 23:55:46 +02:00
|
|
|
*
|
2015-09-04 14:21:07 +02:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2012-09-25 23:55:46 +02:00
|
|
|
*
|
2015-09-04 14:21:07 +02:00
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
2012-09-25 23:55:46 +02:00
|
|
|
*
|
2015-09-04 14:21:07 +02:00
|
|
|
* This file is part of mbed TLS (https://tls.mbed.org)
|
2012-09-25 23:55:46 +02:00
|
|
|
*/
|
|
|
|
/*
|
|
|
|
* These session callbacks use a simple chained list
|
|
|
|
* to store and retrieve the session information.
|
|
|
|
*/
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if !defined(MBEDTLS_CONFIG_FILE)
|
2015-03-09 18:05:11 +01:00
|
|
|
#include "mbedtls/config.h"
|
2014-04-29 12:39:06 +02:00
|
|
|
#else
|
2015-04-08 12:49:31 +02:00
|
|
|
#include MBEDTLS_CONFIG_FILE
|
2014-04-29 12:39:06 +02:00
|
|
|
#endif
|
2012-09-25 23:55:46 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_SSL_CACHE_C)
|
2012-09-25 23:55:46 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_PLATFORM_C)
|
2015-03-09 18:05:11 +01:00
|
|
|
#include "mbedtls/platform.h"
|
2013-07-03 13:37:05 +02:00
|
|
|
#else
|
2015-02-06 14:43:58 +01:00
|
|
|
#include <stdlib.h>
|
2015-05-26 16:04:06 +02:00
|
|
|
#define mbedtls_calloc calloc
|
2016-04-26 08:43:27 +02:00
|
|
|
#define mbedtls_free free
|
2013-07-03 13:37:05 +02:00
|
|
|
#endif
|
|
|
|
|
2016-04-26 08:43:27 +02:00
|
|
|
#include "mbedtls/ssl_cache.h"
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
void mbedtls_ssl_cache_init( mbedtls_ssl_cache_context *cache )
|
2012-09-25 23:55:46 +02:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
memset( cache, 0, sizeof( mbedtls_ssl_cache_context ) );
|
2012-09-25 23:55:46 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
cache->timeout = MBEDTLS_SSL_CACHE_DEFAULT_TIMEOUT;
|
|
|
|
cache->max_entries = MBEDTLS_SSL_CACHE_DEFAULT_MAX_ENTRIES;
|
2013-09-28 15:01:27 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_THREADING_C)
|
|
|
|
mbedtls_mutex_init( &cache->mutex );
|
2013-09-28 15:01:27 +02:00
|
|
|
#endif
|
2012-09-25 23:55:46 +02:00
|
|
|
}
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
int mbedtls_ssl_cache_get( void *data, mbedtls_ssl_session *session )
|
2012-09-25 23:55:46 +02:00
|
|
|
{
|
2013-09-28 15:01:27 +02:00
|
|
|
int ret = 1;
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_HAVE_TIME)
|
2016-04-26 08:43:27 +02:00
|
|
|
mbedtls_time_t t = mbedtls_time( NULL );
|
2013-07-03 15:31:03 +02:00
|
|
|
#endif
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_ssl_cache_context *cache = (mbedtls_ssl_cache_context *) data;
|
|
|
|
mbedtls_ssl_cache_entry *cur, *entry;
|
2012-09-25 23:55:46 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_THREADING_C)
|
|
|
|
if( mbedtls_mutex_lock( &cache->mutex ) != 0 )
|
2013-09-28 15:01:27 +02:00
|
|
|
return( 1 );
|
|
|
|
#endif
|
|
|
|
|
2012-09-25 23:55:46 +02:00
|
|
|
cur = cache->chain;
|
|
|
|
entry = NULL;
|
|
|
|
|
|
|
|
while( cur != NULL )
|
|
|
|
{
|
|
|
|
entry = cur;
|
|
|
|
cur = cur->next;
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_HAVE_TIME)
|
2012-09-25 23:55:46 +02:00
|
|
|
if( cache->timeout != 0 &&
|
|
|
|
(int) ( t - entry->timestamp ) > cache->timeout )
|
|
|
|
continue;
|
2013-07-03 15:31:03 +02:00
|
|
|
#endif
|
2012-09-25 23:55:46 +02:00
|
|
|
|
|
|
|
if( session->ciphersuite != entry->session.ciphersuite ||
|
|
|
|
session->compression != entry->session.compression ||
|
2015-06-18 15:50:37 +02:00
|
|
|
session->id_len != entry->session.id_len )
|
2012-09-25 23:55:46 +02:00
|
|
|
continue;
|
|
|
|
|
|
|
|
if( memcmp( session->id, entry->session.id,
|
2015-06-18 15:50:37 +02:00
|
|
|
entry->session.id_len ) != 0 )
|
2012-09-25 23:55:46 +02:00
|
|
|
continue;
|
|
|
|
|
|
|
|
memcpy( session->master, entry->session.master, 48 );
|
2013-03-06 17:40:46 +01:00
|
|
|
|
2013-08-23 10:44:29 +02:00
|
|
|
session->verify_result = entry->session.verify_result;
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_X509_CRT_PARSE_C)
|
2013-03-06 17:40:46 +01:00
|
|
|
/*
|
|
|
|
* Restore peer certificate (without rest of the original chain)
|
|
|
|
*/
|
|
|
|
if( entry->peer_cert.p != NULL )
|
|
|
|
{
|
2015-05-26 16:04:06 +02:00
|
|
|
if( ( session->peer_cert = mbedtls_calloc( 1,
|
2015-04-08 12:49:31 +02:00
|
|
|
sizeof(mbedtls_x509_crt) ) ) == NULL )
|
2013-09-28 15:01:27 +02:00
|
|
|
{
|
|
|
|
ret = 1;
|
|
|
|
goto exit;
|
|
|
|
}
|
2013-03-06 17:40:46 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_x509_crt_init( session->peer_cert );
|
|
|
|
if( mbedtls_x509_crt_parse( session->peer_cert, entry->peer_cert.p,
|
2013-09-18 13:46:23 +02:00
|
|
|
entry->peer_cert.len ) != 0 )
|
2013-03-06 17:40:46 +01:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_free( session->peer_cert );
|
2013-03-06 17:40:46 +01:00
|
|
|
session->peer_cert = NULL;
|
2013-09-28 15:01:27 +02:00
|
|
|
ret = 1;
|
|
|
|
goto exit;
|
2013-03-06 17:40:46 +01:00
|
|
|
}
|
|
|
|
}
|
2015-04-08 12:49:31 +02:00
|
|
|
#endif /* MBEDTLS_X509_CRT_PARSE_C */
|
2013-03-06 17:40:46 +01:00
|
|
|
|
2013-09-28 15:01:27 +02:00
|
|
|
ret = 0;
|
|
|
|
goto exit;
|
2012-09-25 23:55:46 +02:00
|
|
|
}
|
|
|
|
|
2013-09-28 15:01:27 +02:00
|
|
|
exit:
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_THREADING_C)
|
|
|
|
if( mbedtls_mutex_unlock( &cache->mutex ) != 0 )
|
2013-09-28 15:01:27 +02:00
|
|
|
ret = 1;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return( ret );
|
2012-09-25 23:55:46 +02:00
|
|
|
}
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
int mbedtls_ssl_cache_set( void *data, const mbedtls_ssl_session *session )
|
2012-09-25 23:55:46 +02:00
|
|
|
{
|
2013-09-28 15:01:27 +02:00
|
|
|
int ret = 1;
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_HAVE_TIME)
|
2017-07-29 00:46:43 +02:00
|
|
|
mbedtls_time_t t = mbedtls_time( NULL ), oldest = 0;
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_ssl_cache_entry *old = NULL;
|
2013-07-03 15:31:03 +02:00
|
|
|
#endif
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_ssl_cache_context *cache = (mbedtls_ssl_cache_context *) data;
|
|
|
|
mbedtls_ssl_cache_entry *cur, *prv;
|
2012-10-24 00:18:28 +02:00
|
|
|
int count = 0;
|
2012-09-25 23:55:46 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_THREADING_C)
|
|
|
|
if( ( ret = mbedtls_mutex_lock( &cache->mutex ) ) != 0 )
|
2013-09-28 15:01:27 +02:00
|
|
|
return( ret );
|
|
|
|
#endif
|
|
|
|
|
2012-09-25 23:55:46 +02:00
|
|
|
cur = cache->chain;
|
|
|
|
prv = NULL;
|
|
|
|
|
|
|
|
while( cur != NULL )
|
|
|
|
{
|
2012-10-24 00:18:28 +02:00
|
|
|
count++;
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_HAVE_TIME)
|
2012-09-25 23:55:46 +02:00
|
|
|
if( cache->timeout != 0 &&
|
|
|
|
(int) ( t - cur->timestamp ) > cache->timeout )
|
|
|
|
{
|
|
|
|
cur->timestamp = t;
|
|
|
|
break; /* expired, reuse this slot, update timestamp */
|
|
|
|
}
|
2013-07-03 15:31:03 +02:00
|
|
|
#endif
|
2012-09-25 23:55:46 +02:00
|
|
|
|
2015-06-18 15:50:37 +02:00
|
|
|
if( memcmp( session->id, cur->session.id, cur->session.id_len ) == 0 )
|
2012-09-25 23:55:46 +02:00
|
|
|
break; /* client reconnected, keep timestamp for session id */
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_HAVE_TIME)
|
2012-10-24 00:18:28 +02:00
|
|
|
if( oldest == 0 || cur->timestamp < oldest )
|
|
|
|
{
|
|
|
|
oldest = cur->timestamp;
|
|
|
|
old = cur;
|
|
|
|
}
|
2013-07-03 15:31:03 +02:00
|
|
|
#endif
|
2012-10-24 00:18:28 +02:00
|
|
|
|
2012-09-25 23:55:46 +02:00
|
|
|
prv = cur;
|
|
|
|
cur = cur->next;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( cur == NULL )
|
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_HAVE_TIME)
|
2012-10-24 00:18:28 +02:00
|
|
|
/*
|
|
|
|
* Reuse oldest entry if max_entries reached
|
|
|
|
*/
|
2014-02-20 21:32:08 +01:00
|
|
|
if( count >= cache->max_entries )
|
2012-10-24 00:18:28 +02:00
|
|
|
{
|
2014-02-20 21:32:08 +01:00
|
|
|
if( old == NULL )
|
|
|
|
{
|
|
|
|
ret = 1;
|
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
2012-10-24 00:18:28 +02:00
|
|
|
cur = old;
|
|
|
|
}
|
2015-04-08 12:49:31 +02:00
|
|
|
#else /* MBEDTLS_HAVE_TIME */
|
2013-07-03 15:31:03 +02:00
|
|
|
/*
|
|
|
|
* Reuse first entry in chain if max_entries reached,
|
|
|
|
* but move to last place
|
|
|
|
*/
|
|
|
|
if( count >= cache->max_entries )
|
|
|
|
{
|
|
|
|
if( cache->chain == NULL )
|
2013-09-28 15:01:27 +02:00
|
|
|
{
|
|
|
|
ret = 1;
|
|
|
|
goto exit;
|
|
|
|
}
|
2013-07-03 15:31:03 +02:00
|
|
|
|
|
|
|
cur = cache->chain;
|
|
|
|
cache->chain = cur->next;
|
2014-02-26 17:38:55 +01:00
|
|
|
cur->next = NULL;
|
2013-07-03 15:31:03 +02:00
|
|
|
prv->next = cur;
|
|
|
|
}
|
2015-04-08 12:49:31 +02:00
|
|
|
#endif /* MBEDTLS_HAVE_TIME */
|
2012-10-24 00:18:28 +02:00
|
|
|
else
|
|
|
|
{
|
2014-02-20 21:32:08 +01:00
|
|
|
/*
|
|
|
|
* max_entries not reached, create new entry
|
|
|
|
*/
|
2015-05-26 16:04:06 +02:00
|
|
|
cur = mbedtls_calloc( 1, sizeof(mbedtls_ssl_cache_entry) );
|
2012-10-24 00:18:28 +02:00
|
|
|
if( cur == NULL )
|
2013-09-28 15:01:27 +02:00
|
|
|
{
|
|
|
|
ret = 1;
|
|
|
|
goto exit;
|
|
|
|
}
|
2012-09-25 23:55:46 +02:00
|
|
|
|
2012-10-24 00:18:28 +02:00
|
|
|
if( prv == NULL )
|
|
|
|
cache->chain = cur;
|
|
|
|
else
|
|
|
|
prv->next = cur;
|
|
|
|
}
|
2012-09-25 23:55:46 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_HAVE_TIME)
|
2012-09-25 23:55:46 +02:00
|
|
|
cur->timestamp = t;
|
2013-07-03 15:31:03 +02:00
|
|
|
#endif
|
2012-09-25 23:55:46 +02:00
|
|
|
}
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
memcpy( &cur->session, session, sizeof( mbedtls_ssl_session ) );
|
2013-04-18 22:46:23 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_X509_CRT_PARSE_C)
|
2014-02-26 17:38:55 +01:00
|
|
|
/*
|
|
|
|
* If we're reusing an entry, free its certificate first
|
|
|
|
*/
|
|
|
|
if( cur->peer_cert.p != NULL )
|
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_free( cur->peer_cert.p );
|
|
|
|
memset( &cur->peer_cert, 0, sizeof(mbedtls_x509_buf) );
|
2014-02-26 17:38:55 +01:00
|
|
|
}
|
|
|
|
|
2013-03-06 17:40:46 +01:00
|
|
|
/*
|
|
|
|
* Store peer certificate
|
|
|
|
*/
|
|
|
|
if( session->peer_cert != NULL )
|
|
|
|
{
|
2015-05-26 16:04:06 +02:00
|
|
|
cur->peer_cert.p = mbedtls_calloc( 1, session->peer_cert->raw.len );
|
2013-03-06 17:40:46 +01:00
|
|
|
if( cur->peer_cert.p == NULL )
|
2013-09-28 15:01:27 +02:00
|
|
|
{
|
|
|
|
ret = 1;
|
|
|
|
goto exit;
|
|
|
|
}
|
2013-03-06 17:40:46 +01:00
|
|
|
|
|
|
|
memcpy( cur->peer_cert.p, session->peer_cert->raw.p,
|
|
|
|
session->peer_cert->raw.len );
|
|
|
|
cur->peer_cert.len = session->peer_cert->raw.len;
|
|
|
|
|
|
|
|
cur->session.peer_cert = NULL;
|
|
|
|
}
|
2015-04-08 12:49:31 +02:00
|
|
|
#endif /* MBEDTLS_X509_CRT_PARSE_C */
|
2012-09-25 23:55:46 +02:00
|
|
|
|
2013-09-28 15:01:27 +02:00
|
|
|
ret = 0;
|
|
|
|
|
|
|
|
exit:
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_THREADING_C)
|
|
|
|
if( mbedtls_mutex_unlock( &cache->mutex ) != 0 )
|
2013-09-28 15:01:27 +02:00
|
|
|
ret = 1;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return( ret );
|
2012-09-25 23:55:46 +02:00
|
|
|
}
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_HAVE_TIME)
|
|
|
|
void mbedtls_ssl_cache_set_timeout( mbedtls_ssl_cache_context *cache, int timeout )
|
2012-09-25 23:55:46 +02:00
|
|
|
{
|
|
|
|
if( timeout < 0 ) timeout = 0;
|
|
|
|
|
|
|
|
cache->timeout = timeout;
|
|
|
|
}
|
2015-04-08 12:49:31 +02:00
|
|
|
#endif /* MBEDTLS_HAVE_TIME */
|
2012-09-25 23:55:46 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
void mbedtls_ssl_cache_set_max_entries( mbedtls_ssl_cache_context *cache, int max )
|
2012-10-24 00:18:28 +02:00
|
|
|
{
|
|
|
|
if( max < 0 ) max = 0;
|
|
|
|
|
|
|
|
cache->max_entries = max;
|
|
|
|
}
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
void mbedtls_ssl_cache_free( mbedtls_ssl_cache_context *cache )
|
2012-09-25 23:55:46 +02:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_ssl_cache_entry *cur, *prv;
|
2012-09-25 23:55:46 +02:00
|
|
|
|
|
|
|
cur = cache->chain;
|
|
|
|
|
|
|
|
while( cur != NULL )
|
|
|
|
{
|
|
|
|
prv = cur;
|
|
|
|
cur = cur->next;
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_ssl_session_free( &prv->session );
|
2013-03-06 17:40:46 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_X509_CRT_PARSE_C)
|
|
|
|
mbedtls_free( prv->peer_cert.p );
|
|
|
|
#endif /* MBEDTLS_X509_CRT_PARSE_C */
|
2013-03-06 17:40:46 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_free( prv );
|
2012-09-25 23:55:46 +02:00
|
|
|
}
|
2013-09-28 15:01:27 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_THREADING_C)
|
|
|
|
mbedtls_mutex_free( &cache->mutex );
|
2013-09-28 15:01:27 +02:00
|
|
|
#endif
|
2017-10-29 16:53:52 +01:00
|
|
|
cache->chain = NULL;
|
2012-09-25 23:55:46 +02:00
|
|
|
}
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#endif /* MBEDTLS_SSL_CACHE_C */
|