blob: 940e1a67a20dd54646af59122cbaf983aa49f855 [file] [log] [blame]
Manuel Pégourié-Gonnardfd6d8972015-05-15 12:09:00 +02001/*
2 * TLS server tickets callbacks implementation
3 *
Bence Szépkúti1e148272020-08-07 13:07:28 +02004 * Copyright The Mbed TLS Contributors
Manuel Pégourié-Gonnard37ff1402015-09-04 14:21:07 +02005 * SPDX-License-Identifier: Apache-2.0
6 *
7 * Licensed under the Apache License, Version 2.0 (the "License"); you may
8 * not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
10 *
11 * http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
15 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
Manuel Pégourié-Gonnardfd6d8972015-05-15 12:09:00 +020018 */
19
Gilles Peskinedb09ef62020-06-03 01:43:33 +020020#include "common.h"
Manuel Pégourié-Gonnardfd6d8972015-05-15 12:09:00 +020021
22#if defined(MBEDTLS_SSL_TICKET_C)
23
Manuel Pégourié-Gonnardfd6d8972015-05-15 12:09:00 +020024#if defined(MBEDTLS_PLATFORM_C)
25#include "mbedtls/platform.h"
26#else
Manuel Pégourié-Gonnard7551cb92015-05-26 16:04:06 +020027#include <stdlib.h>
28#define mbedtls_calloc calloc
SimonBd5800b72016-04-26 07:43:27 +010029#define mbedtls_free free
Manuel Pégourié-Gonnardfd6d8972015-05-15 12:09:00 +020030#endif
31
Chris Jones84a773f2021-03-05 18:38:47 +000032#include "ssl_misc.h"
SimonBd5800b72016-04-26 07:43:27 +010033#include "mbedtls/ssl_ticket.h"
Janos Follath865b3eb2019-12-16 11:46:15 +000034#include "mbedtls/error.h"
Janos Follath73c616b2019-12-18 15:07:04 +000035#include "mbedtls/platform_util.h"
SimonBd5800b72016-04-26 07:43:27 +010036
Manuel Pégourié-Gonnardfd6d8972015-05-15 12:09:00 +020037#include <string.h>
38
Manuel Pégourié-Gonnardd59675d2015-05-19 15:28:00 +020039/*
40 * Initialze context
41 */
42void mbedtls_ssl_ticket_init( mbedtls_ssl_ticket_context *ctx )
43{
44 memset( ctx, 0, sizeof( mbedtls_ssl_ticket_context ) );
Manuel Pégourié-Gonnard0849a0a2015-05-20 11:34:54 +020045
46#if defined(MBEDTLS_THREADING_C)
47 mbedtls_mutex_init( &ctx->mutex );
48#endif
Manuel Pégourié-Gonnardd59675d2015-05-19 15:28:00 +020049}
50
Manuel Pégourié-Gonnard887674a2015-05-25 11:00:19 +020051#define MAX_KEY_BYTES 32 /* 256 bits */
52
Hanno Beckerd140d082018-11-17 21:18:01 +000053#define TICKET_KEY_NAME_BYTES 4
54#define TICKET_IV_BYTES 12
55#define TICKET_CRYPT_LEN_BYTES 2
56#define TICKET_AUTH_TAG_BYTES 16
57
58#define TICKET_MIN_LEN ( TICKET_KEY_NAME_BYTES + \
59 TICKET_IV_BYTES + \
60 TICKET_CRYPT_LEN_BYTES + \
61 TICKET_AUTH_TAG_BYTES )
62#define TICKET_ADD_DATA_LEN ( TICKET_KEY_NAME_BYTES + \
63 TICKET_IV_BYTES + \
64 TICKET_CRYPT_LEN_BYTES )
65
Manuel Pégourié-Gonnard887674a2015-05-25 11:00:19 +020066/*
67 * Generate/update a key
68 */
69static int ssl_ticket_gen_key( mbedtls_ssl_ticket_context *ctx,
70 unsigned char index )
71{
Janos Follath865b3eb2019-12-16 11:46:15 +000072 int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
Manuel Pégourié-Gonnard887674a2015-05-25 11:00:19 +020073 unsigned char buf[MAX_KEY_BYTES];
74 mbedtls_ssl_ticket_key *key = ctx->keys + index;
75
76#if defined(MBEDTLS_HAVE_TIME)
SimonBd5800b72016-04-26 07:43:27 +010077 key->generation_time = (uint32_t) mbedtls_time( NULL );
Manuel Pégourié-Gonnard887674a2015-05-25 11:00:19 +020078#endif
79
80 if( ( ret = ctx->f_rng( ctx->p_rng, key->name, sizeof( key->name ) ) ) != 0 )
81 return( ret );
82
83 if( ( ret = ctx->f_rng( ctx->p_rng, buf, sizeof( buf ) ) ) != 0 )
84 return( ret );
85
86 /* With GCM and CCM, same context can encrypt & decrypt */
87 ret = mbedtls_cipher_setkey( &key->ctx, buf,
Manuel Pégourié-Gonnard097c7bb2015-06-18 16:43:38 +020088 mbedtls_cipher_get_key_bitlen( &key->ctx ),
Manuel Pégourié-Gonnard887674a2015-05-25 11:00:19 +020089 MBEDTLS_ENCRYPT );
90
Andres Amaya Garcia1f6301b2018-04-17 09:51:09 -050091 mbedtls_platform_zeroize( buf, sizeof( buf ) );
Manuel Pégourié-Gonnard887674a2015-05-25 11:00:19 +020092
93 return( ret );
94}
95
Manuel Pégourié-Gonnardd59675d2015-05-19 15:28:00 +020096/*
Manuel Pégourié-Gonnard1e9c4db2015-05-25 14:07:08 +020097 * Rotate/generate keys if necessary
98 */
99static int ssl_ticket_update_keys( mbedtls_ssl_ticket_context *ctx )
100{
101#if !defined(MBEDTLS_HAVE_TIME)
102 ((void) ctx);
103#else
104 if( ctx->ticket_lifetime != 0 )
105 {
SimonBd5800b72016-04-26 07:43:27 +0100106 uint32_t current_time = (uint32_t) mbedtls_time( NULL );
Manuel Pégourié-Gonnard1e9c4db2015-05-25 14:07:08 +0200107 uint32_t key_time = ctx->keys[ctx->active].generation_time;
108
Hanno Beckeraa715002018-08-21 13:55:31 +0100109 if( current_time >= key_time &&
Manuel Pégourié-Gonnard1e9c4db2015-05-25 14:07:08 +0200110 current_time - key_time < ctx->ticket_lifetime )
111 {
112 return( 0 );
113 }
114
115 ctx->active = 1 - ctx->active;
116
117 return( ssl_ticket_gen_key( ctx, ctx->active ) );
118 }
119 else
120#endif /* MBEDTLS_HAVE_TIME */
121 return( 0 );
122}
123
124/*
Manuel Pégourié-Gonnardd59675d2015-05-19 15:28:00 +0200125 * Setup context for actual use
126 */
127int mbedtls_ssl_ticket_setup( mbedtls_ssl_ticket_context *ctx,
128 int (*f_rng)(void *, unsigned char *, size_t), void *p_rng,
Manuel Pégourié-Gonnarda0adc1b2015-05-25 10:35:16 +0200129 mbedtls_cipher_type_t cipher,
Manuel Pégourié-Gonnardd59675d2015-05-19 15:28:00 +0200130 uint32_t lifetime )
131{
Janos Follath865b3eb2019-12-16 11:46:15 +0000132 int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
Manuel Pégourié-Gonnard887674a2015-05-25 11:00:19 +0200133 const mbedtls_cipher_info_t *cipher_info;
Manuel Pégourié-Gonnardd59675d2015-05-19 15:28:00 +0200134
135 ctx->f_rng = f_rng;
136 ctx->p_rng = p_rng;
137
138 ctx->ticket_lifetime = lifetime;
139
Manuel Pégourié-Gonnard887674a2015-05-25 11:00:19 +0200140 cipher_info = mbedtls_cipher_info_from_type( cipher);
141 if( cipher_info == NULL )
142 return( MBEDTLS_ERR_SSL_BAD_INPUT_DATA );
143
144 if( cipher_info->mode != MBEDTLS_MODE_GCM &&
145 cipher_info->mode != MBEDTLS_MODE_CCM )
Manuel Pégourié-Gonnardd59675d2015-05-19 15:28:00 +0200146 {
Manuel Pégourié-Gonnard887674a2015-05-25 11:00:19 +0200147 return( MBEDTLS_ERR_SSL_BAD_INPUT_DATA );
Manuel Pégourié-Gonnardd59675d2015-05-19 15:28:00 +0200148 }
149
Manuel Pégourié-Gonnard898e0aa2015-06-18 15:28:12 +0200150 if( cipher_info->key_bitlen > 8 * MAX_KEY_BYTES )
Manuel Pégourié-Gonnard887674a2015-05-25 11:00:19 +0200151 return( MBEDTLS_ERR_SSL_BAD_INPUT_DATA );
152
Hanno Becker679d8ce2018-11-17 21:25:59 +0000153#if defined(MBEDTLS_USE_PSA_CRYPTO)
154 ret = mbedtls_cipher_setup_psa( &ctx->keys[0].ctx,
155 cipher_info, TICKET_AUTH_TAG_BYTES );
156 if( ret != 0 && ret != MBEDTLS_ERR_CIPHER_FEATURE_UNAVAILABLE )
Manuel Pégourié-Gonnard887674a2015-05-25 11:00:19 +0200157 return( ret );
Hanno Becker679d8ce2018-11-17 21:25:59 +0000158 /* We don't yet expect to support all ciphers through PSA,
159 * so allow fallback to ordinary mbedtls_cipher_setup(). */
160 if( ret == MBEDTLS_ERR_CIPHER_FEATURE_UNAVAILABLE )
161#endif /* MBEDTLS_USE_PSA_CRYPTO */
162 if( ( ret = mbedtls_cipher_setup( &ctx->keys[0].ctx, cipher_info ) ) != 0 )
163 return( ret );
164
165#if defined(MBEDTLS_USE_PSA_CRYPTO)
166 ret = mbedtls_cipher_setup_psa( &ctx->keys[1].ctx,
167 cipher_info, TICKET_AUTH_TAG_BYTES );
168 if( ret != 0 && ret != MBEDTLS_ERR_CIPHER_FEATURE_UNAVAILABLE )
169 return( ret );
170 if( ret == MBEDTLS_ERR_CIPHER_FEATURE_UNAVAILABLE )
171#endif /* MBEDTLS_USE_PSA_CRYPTO */
172 if( ( ret = mbedtls_cipher_setup( &ctx->keys[1].ctx, cipher_info ) ) != 0 )
173 return( ret );
Manuel Pégourié-Gonnarda0adc1b2015-05-25 10:35:16 +0200174
Manuel Pégourié-Gonnard887674a2015-05-25 11:00:19 +0200175 if( ( ret = ssl_ticket_gen_key( ctx, 0 ) ) != 0 ||
176 ( ret = ssl_ticket_gen_key( ctx, 1 ) ) != 0 )
Manuel Pégourié-Gonnarda0adc1b2015-05-25 10:35:16 +0200177 {
Manuel Pégourié-Gonnard887674a2015-05-25 11:00:19 +0200178 return( ret );
Manuel Pégourié-Gonnarda0adc1b2015-05-25 10:35:16 +0200179 }
180
Manuel Pégourié-Gonnard887674a2015-05-25 11:00:19 +0200181 return( 0 );
Manuel Pégourié-Gonnardd59675d2015-05-19 15:28:00 +0200182}
183
Manuel Pégourié-Gonnarda4a47352015-05-15 15:14:54 +0200184/*
Manuel Pégourié-Gonnard1041a392015-05-20 19:59:39 +0200185 * Create session ticket, with the following structure:
Manuel Pégourié-Gonnarda4a47352015-05-15 15:14:54 +0200186 *
187 * struct {
Manuel Pégourié-Gonnard1041a392015-05-20 19:59:39 +0200188 * opaque key_name[4];
189 * opaque iv[12];
Manuel Pégourié-Gonnarda4a47352015-05-15 15:14:54 +0200190 * opaque encrypted_state<0..2^16-1>;
Manuel Pégourié-Gonnard1041a392015-05-20 19:59:39 +0200191 * opaque tag[16];
Manuel Pégourié-Gonnarda4a47352015-05-15 15:14:54 +0200192 * } ticket;
193 *
Manuel Pégourié-Gonnard1041a392015-05-20 19:59:39 +0200194 * The key_name, iv, and length of encrypted_state are the additional
195 * authenticated data.
Manuel Pégourié-Gonnarda4a47352015-05-15 15:14:54 +0200196 */
Hanno Beckerd140d082018-11-17 21:18:01 +0000197
Manuel Pégourié-Gonnardb0394be2015-05-19 11:40:30 +0200198int mbedtls_ssl_ticket_write( void *p_ticket,
Manuel Pégourié-Gonnard69f17282015-05-18 14:35:08 +0200199 const mbedtls_ssl_session *session,
200 unsigned char *start,
201 const unsigned char *end,
Manuel Pégourié-Gonnardb0394be2015-05-19 11:40:30 +0200202 size_t *tlen,
203 uint32_t *ticket_lifetime )
Manuel Pégourié-Gonnarda4a47352015-05-15 15:14:54 +0200204{
Janos Follath865b3eb2019-12-16 11:46:15 +0000205 int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
Manuel Pégourié-Gonnardd59675d2015-05-19 15:28:00 +0200206 mbedtls_ssl_ticket_context *ctx = p_ticket;
Manuel Pégourié-Gonnard1e9c4db2015-05-25 14:07:08 +0200207 mbedtls_ssl_ticket_key *key;
Manuel Pégourié-Gonnard1041a392015-05-20 19:59:39 +0200208 unsigned char *key_name = start;
Hanno Beckerd140d082018-11-17 21:18:01 +0000209 unsigned char *iv = start + TICKET_KEY_NAME_BYTES;
210 unsigned char *state_len_bytes = iv + TICKET_IV_BYTES;
211 unsigned char *state = state_len_bytes + TICKET_CRYPT_LEN_BYTES;
Manuel Pégourié-Gonnard1041a392015-05-20 19:59:39 +0200212 size_t clear_len, ciph_len;
Manuel Pégourié-Gonnarda4a47352015-05-15 15:14:54 +0200213
214 *tlen = 0;
215
Manuel Pégourié-Gonnard1041a392015-05-20 19:59:39 +0200216 if( ctx == NULL || ctx->f_rng == NULL )
Manuel Pégourié-Gonnarda4a47352015-05-15 15:14:54 +0200217 return( MBEDTLS_ERR_SSL_BAD_INPUT_DATA );
218
Manuel Pégourié-Gonnard1041a392015-05-20 19:59:39 +0200219 /* We need at least 4 bytes for key_name, 12 for IV, 2 for len 16 for tag,
220 * in addition to session itself, that will be checked when writing it. */
Hanno Becker261602c2017-04-12 14:54:42 +0100221 MBEDTLS_SSL_CHK_BUF_PTR( start, end, TICKET_MIN_LEN );
Manuel Pégourié-Gonnard69f17282015-05-18 14:35:08 +0200222
Manuel Pégourié-Gonnard0849a0a2015-05-20 11:34:54 +0200223#if defined(MBEDTLS_THREADING_C)
224 if( ( ret = mbedtls_mutex_lock( &ctx->mutex ) ) != 0 )
225 return( ret );
226#endif
227
Manuel Pégourié-Gonnard1e9c4db2015-05-25 14:07:08 +0200228 if( ( ret = ssl_ticket_update_keys( ctx ) ) != 0 )
229 goto cleanup;
230
231 key = &ctx->keys[ctx->active];
232
Manuel Pégourié-Gonnard0849a0a2015-05-20 11:34:54 +0200233 *ticket_lifetime = ctx->ticket_lifetime;
234
Hanno Beckerd140d082018-11-17 21:18:01 +0000235 memcpy( key_name, key->name, TICKET_KEY_NAME_BYTES );
Manuel Pégourié-Gonnarda4a47352015-05-15 15:14:54 +0200236
Hanno Beckerd140d082018-11-17 21:18:01 +0000237 if( ( ret = ctx->f_rng( ctx->p_rng, iv, TICKET_IV_BYTES ) ) != 0 )
Manuel Pégourié-Gonnard0849a0a2015-05-20 11:34:54 +0200238 goto cleanup;
Manuel Pégourié-Gonnarda4a47352015-05-15 15:14:54 +0200239
Manuel Pégourié-Gonnard69f17282015-05-18 14:35:08 +0200240 /* Dump session state */
Manuel Pégourié-Gonnarda3e7c652019-05-16 10:08:35 +0200241 if( ( ret = mbedtls_ssl_session_save( session,
242 state, end - state,
243 &clear_len ) ) != 0 ||
Manuel Pégourié-Gonnard1041a392015-05-20 19:59:39 +0200244 (unsigned long) clear_len > 65535 )
Manuel Pégourié-Gonnard0849a0a2015-05-20 11:34:54 +0200245 {
246 goto cleanup;
247 }
Manuel Pégourié-Gonnard1041a392015-05-20 19:59:39 +0200248 state_len_bytes[0] = ( clear_len >> 8 ) & 0xff;
249 state_len_bytes[1] = ( clear_len ) & 0xff;
Manuel Pégourié-Gonnarda4a47352015-05-15 15:14:54 +0200250
Manuel Pégourié-Gonnard1041a392015-05-20 19:59:39 +0200251 /* Encrypt and authenticate */
Manuel Pégourié-Gonnardf5cf71e2020-12-01 11:43:40 +0100252 if( ( ret = mbedtls_cipher_auth_encrypt_ext( &key->ctx,
Hanno Beckerd140d082018-11-17 21:18:01 +0000253 iv, TICKET_IV_BYTES,
254 /* Additional data: key name, IV and length */
255 key_name, TICKET_ADD_DATA_LEN,
Manuel Pégourié-Gonnardf5cf71e2020-12-01 11:43:40 +0100256 state, clear_len,
257 state, end - state, &ciph_len,
258 TICKET_AUTH_TAG_BYTES ) ) != 0 )
Manuel Pégourié-Gonnarda4a47352015-05-15 15:14:54 +0200259 {
Manuel Pégourié-Gonnard0849a0a2015-05-20 11:34:54 +0200260 goto cleanup;
Manuel Pégourié-Gonnarda4a47352015-05-15 15:14:54 +0200261 }
Manuel Pégourié-Gonnardf5cf71e2020-12-01 11:43:40 +0100262 if( ciph_len != clear_len + TICKET_AUTH_TAG_BYTES )
Manuel Pégourié-Gonnarda4a47352015-05-15 15:14:54 +0200263 {
Manuel Pégourié-Gonnard1041a392015-05-20 19:59:39 +0200264 ret = MBEDTLS_ERR_SSL_INTERNAL_ERROR;
Manuel Pégourié-Gonnard0849a0a2015-05-20 11:34:54 +0200265 goto cleanup;
Manuel Pégourié-Gonnarda4a47352015-05-15 15:14:54 +0200266 }
Manuel Pégourié-Gonnarda4a47352015-05-15 15:14:54 +0200267
Manuel Pégourié-Gonnardf5cf71e2020-12-01 11:43:40 +0100268 *tlen = TICKET_MIN_LEN + ciph_len - TICKET_AUTH_TAG_BYTES;
Manuel Pégourié-Gonnarda4a47352015-05-15 15:14:54 +0200269
Manuel Pégourié-Gonnard0849a0a2015-05-20 11:34:54 +0200270cleanup:
271#if defined(MBEDTLS_THREADING_C)
272 if( mbedtls_mutex_unlock( &ctx->mutex ) != 0 )
273 return( MBEDTLS_ERR_THREADING_MUTEX_ERROR );
274#endif
275
276 return( ret );
Manuel Pégourié-Gonnarda4a47352015-05-15 15:14:54 +0200277}
278
279/*
Manuel Pégourié-Gonnard1e9c4db2015-05-25 14:07:08 +0200280 * Select key based on name
281 */
282static mbedtls_ssl_ticket_key *ssl_ticket_select_key(
283 mbedtls_ssl_ticket_context *ctx,
284 const unsigned char name[4] )
285{
286 unsigned char i;
287
288 for( i = 0; i < sizeof( ctx->keys ) / sizeof( *ctx->keys ); i++ )
289 if( memcmp( name, ctx->keys[i].name, 4 ) == 0 )
290 return( &ctx->keys[i] );
291
292 return( NULL );
293}
294
295/*
Manuel Pégourié-Gonnarda4a47352015-05-15 15:14:54 +0200296 * Load session ticket (see mbedtls_ssl_ticket_write for structure)
297 */
Manuel Pégourié-Gonnardb0394be2015-05-19 11:40:30 +0200298int mbedtls_ssl_ticket_parse( void *p_ticket,
Manuel Pégourié-Gonnard69f17282015-05-18 14:35:08 +0200299 mbedtls_ssl_session *session,
300 unsigned char *buf,
301 size_t len )
Manuel Pégourié-Gonnarda4a47352015-05-15 15:14:54 +0200302{
Janos Follath865b3eb2019-12-16 11:46:15 +0000303 int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
Manuel Pégourié-Gonnardd59675d2015-05-19 15:28:00 +0200304 mbedtls_ssl_ticket_context *ctx = p_ticket;
Manuel Pégourié-Gonnard1e9c4db2015-05-25 14:07:08 +0200305 mbedtls_ssl_ticket_key *key;
Manuel Pégourié-Gonnarda4a47352015-05-15 15:14:54 +0200306 unsigned char *key_name = buf;
Hanno Beckerd140d082018-11-17 21:18:01 +0000307 unsigned char *iv = buf + TICKET_KEY_NAME_BYTES;
308 unsigned char *enc_len_p = iv + TICKET_IV_BYTES;
309 unsigned char *ticket = enc_len_p + TICKET_CRYPT_LEN_BYTES;
Manuel Pégourié-Gonnard1041a392015-05-20 19:59:39 +0200310 size_t enc_len, clear_len;
Manuel Pégourié-Gonnarda4a47352015-05-15 15:14:54 +0200311
Manuel Pégourié-Gonnard1e9c4db2015-05-25 14:07:08 +0200312 if( ctx == NULL || ctx->f_rng == NULL )
Manuel Pégourié-Gonnarda4a47352015-05-15 15:14:54 +0200313 return( MBEDTLS_ERR_SSL_BAD_INPUT_DATA );
Manuel Pégourié-Gonnard1e9c4db2015-05-25 14:07:08 +0200314
Hanno Beckerd140d082018-11-17 21:18:01 +0000315 if( len < TICKET_MIN_LEN )
Manuel Pégourié-Gonnard1e9c4db2015-05-25 14:07:08 +0200316 return( MBEDTLS_ERR_SSL_BAD_INPUT_DATA );
Manuel Pégourié-Gonnarda4a47352015-05-15 15:14:54 +0200317
Manuel Pégourié-Gonnard0849a0a2015-05-20 11:34:54 +0200318#if defined(MBEDTLS_THREADING_C)
319 if( ( ret = mbedtls_mutex_lock( &ctx->mutex ) ) != 0 )
320 return( ret );
321#endif
322
Manuel Pégourié-Gonnard1e9c4db2015-05-25 14:07:08 +0200323 if( ( ret = ssl_ticket_update_keys( ctx ) ) != 0 )
324 goto cleanup;
325
Manuel Pégourié-Gonnarda4a47352015-05-15 15:14:54 +0200326 enc_len = ( enc_len_p[0] << 8 ) | enc_len_p[1];
Manuel Pégourié-Gonnarda4a47352015-05-15 15:14:54 +0200327
Hanno Beckerd140d082018-11-17 21:18:01 +0000328 if( len != TICKET_MIN_LEN + enc_len )
Manuel Pégourié-Gonnard0849a0a2015-05-20 11:34:54 +0200329 {
330 ret = MBEDTLS_ERR_SSL_BAD_INPUT_DATA;
331 goto cleanup;
332 }
Manuel Pégourié-Gonnarda4a47352015-05-15 15:14:54 +0200333
Manuel Pégourié-Gonnard1e9c4db2015-05-25 14:07:08 +0200334 /* Select key */
335 if( ( key = ssl_ticket_select_key( ctx, key_name ) ) == NULL )
Manuel Pégourié-Gonnard0849a0a2015-05-20 11:34:54 +0200336 {
Manuel Pégourié-Gonnard1e9c4db2015-05-25 14:07:08 +0200337 /* We can't know for sure but this is a likely option unless we're
338 * under attack - this is only informative anyway */
339 ret = MBEDTLS_ERR_SSL_SESSION_TICKET_EXPIRED;
Manuel Pégourié-Gonnard0849a0a2015-05-20 11:34:54 +0200340 goto cleanup;
341 }
Manuel Pégourié-Gonnarda4a47352015-05-15 15:14:54 +0200342
Manuel Pégourié-Gonnard1041a392015-05-20 19:59:39 +0200343 /* Decrypt and authenticate */
Manuel Pégourié-Gonnardf5cf71e2020-12-01 11:43:40 +0100344 if( ( ret = mbedtls_cipher_auth_decrypt_ext( &key->ctx,
Hanno Beckerd140d082018-11-17 21:18:01 +0000345 iv, TICKET_IV_BYTES,
346 /* Additional data: key name, IV and length */
347 key_name, TICKET_ADD_DATA_LEN,
Manuel Pégourié-Gonnardf5cf71e2020-12-01 11:43:40 +0100348 ticket, enc_len + TICKET_AUTH_TAG_BYTES,
349 ticket, enc_len, &clear_len,
350 TICKET_AUTH_TAG_BYTES ) ) != 0 )
Manuel Pégourié-Gonnarda4a47352015-05-15 15:14:54 +0200351 {
Manuel Pégourié-Gonnard1e9c4db2015-05-25 14:07:08 +0200352 if( ret == MBEDTLS_ERR_CIPHER_AUTH_FAILED )
353 ret = MBEDTLS_ERR_SSL_INVALID_MAC;
354
Manuel Pégourié-Gonnard0849a0a2015-05-20 11:34:54 +0200355 goto cleanup;
Manuel Pégourié-Gonnarda4a47352015-05-15 15:14:54 +0200356 }
Manuel Pégourié-Gonnard1041a392015-05-20 19:59:39 +0200357 if( clear_len != enc_len )
358 {
359 ret = MBEDTLS_ERR_SSL_INTERNAL_ERROR;
Manuel Pégourié-Gonnard0849a0a2015-05-20 11:34:54 +0200360 goto cleanup;
Manuel Pégourié-Gonnard1041a392015-05-20 19:59:39 +0200361 }
Manuel Pégourié-Gonnarda4a47352015-05-15 15:14:54 +0200362
363 /* Actually load session */
Manuel Pégourié-Gonnarda3e7c652019-05-16 10:08:35 +0200364 if( ( ret = mbedtls_ssl_session_load( session, ticket, clear_len ) ) != 0 )
Manuel Pégourié-Gonnard0849a0a2015-05-20 11:34:54 +0200365 goto cleanup;
Manuel Pégourié-Gonnarda4a47352015-05-15 15:14:54 +0200366
367#if defined(MBEDTLS_HAVE_TIME)
Manuel Pégourié-Gonnard0849a0a2015-05-20 11:34:54 +0200368 {
Manuel Pégourié-Gonnard8eff5122015-05-20 11:41:36 +0200369 /* Check for expiration */
SimonBd5800b72016-04-26 07:43:27 +0100370 mbedtls_time_t current_time = mbedtls_time( NULL );
Manuel Pégourié-Gonnard8eff5122015-05-20 11:41:36 +0200371
372 if( current_time < session->start ||
373 (uint32_t)( current_time - session->start ) > ctx->ticket_lifetime )
374 {
375 ret = MBEDTLS_ERR_SSL_SESSION_TICKET_EXPIRED;
376 goto cleanup;
377 }
Manuel Pégourié-Gonnard0849a0a2015-05-20 11:34:54 +0200378 }
Manuel Pégourié-Gonnarda4a47352015-05-15 15:14:54 +0200379#endif
380
Manuel Pégourié-Gonnard0849a0a2015-05-20 11:34:54 +0200381cleanup:
382#if defined(MBEDTLS_THREADING_C)
383 if( mbedtls_mutex_unlock( &ctx->mutex ) != 0 )
384 return( MBEDTLS_ERR_THREADING_MUTEX_ERROR );
385#endif
386
387 return( ret );
Manuel Pégourié-Gonnarda4a47352015-05-15 15:14:54 +0200388}
389
Manuel Pégourié-Gonnardd59675d2015-05-19 15:28:00 +0200390/*
391 * Free context
392 */
393void mbedtls_ssl_ticket_free( mbedtls_ssl_ticket_context *ctx )
394{
Manuel Pégourié-Gonnard887674a2015-05-25 11:00:19 +0200395 mbedtls_cipher_free( &ctx->keys[0].ctx );
396 mbedtls_cipher_free( &ctx->keys[1].ctx );
Manuel Pégourié-Gonnardd59675d2015-05-19 15:28:00 +0200397
Manuel Pégourié-Gonnard0849a0a2015-05-20 11:34:54 +0200398#if defined(MBEDTLS_THREADING_C)
399 mbedtls_mutex_free( &ctx->mutex );
400#endif
401
Andres Amaya Garcia1f6301b2018-04-17 09:51:09 -0500402 mbedtls_platform_zeroize( ctx, sizeof( mbedtls_ssl_ticket_context ) );
Manuel Pégourié-Gonnardd59675d2015-05-19 15:28:00 +0200403}
404
Manuel Pégourié-Gonnardfd6d8972015-05-15 12:09:00 +0200405#endif /* MBEDTLS_SSL_TICKET_C */