~bibledit/bibledit/client

« back to all changes in this revision

Viewing changes to mbedtls_2.x/ssl_cache.c

  • Committer: Teus Benschop
  • Date: 2024-08-17 17:08:44 UTC
  • Revision ID: teusjannette@gmail.com-20240817170844-0qf789ywtms3hyz7
new upstream version

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#pragma clang diagnostic ignored "-Wunknown-warning-option"
2
 
#pragma clang diagnostic ignored "-Wimplicit-int-conversion"
3
 
#pragma clang diagnostic ignored "-Wsign-conversion"
4
 
 
5
 
#pragma GCC diagnostic ignored "-Wconversion"
6
 
 
7
 
#pragma clang diagnostic ignored "-Wimplicit-int-conversion"
8
 
#pragma clang diagnostic ignored "-Wsign-conversion"
9
 
 
10
 
#pragma GCC diagnostic ignored "-Wconversion"
11
 
 
12
 
#pragma clang diagnostic ignored "-Wimplicit-int-conversion"
13
 
#pragma clang diagnostic ignored "-Wsign-conversion"
14
 
/*
15
 
 *  SSL session cache implementation
16
 
 *
17
 
 *  Copyright The Mbed TLS Contributors
18
 
 *  SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
19
 
 *
20
 
 *  This file is provided under the Apache License 2.0, or the
21
 
 *  GNU General Public License v2.0 or later.
22
 
 *
23
 
 *  **********
24
 
 *  Apache License 2.0:
25
 
 *
26
 
 *  Licensed under the Apache License, Version 2.0 (the "License"); you may
27
 
 *  not use this file except in compliance with the License.
28
 
 *  You may obtain a copy of the License at
29
 
 *
30
 
 *  http://www.apache.org/licenses/LICENSE-2.0
31
 
 *
32
 
 *  Unless required by applicable law or agreed to in writing, software
33
 
 *  distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
34
 
 *  WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
35
 
 *  See the License for the specific language governing permissions and
36
 
 *  limitations under the License.
37
 
 *
38
 
 *  **********
39
 
 *
40
 
 *  **********
41
 
 *  GNU General Public License v2.0 or later:
42
 
 *
43
 
 *  This program is free software; you can redistribute it and/or modify
44
 
 *  it under the terms of the GNU General Public License as published by
45
 
 *  the Free Software Foundation; either version 2 of the License, or
46
 
 *  (at your option) any later version.
47
 
 *
48
 
 *  This program is distributed in the hope that it will be useful,
49
 
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
50
 
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
51
 
 *  GNU General Public License for more details.
52
 
 *
53
 
 *  You should have received a copy of the GNU General Public License along
54
 
 *  with this program; if not, write to the Free Software Foundation, Inc.,
55
 
 *  51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
56
 
 *
57
 
 *  **********
58
 
 */
59
 
/*
60
 
 * These session callbacks use a simple chained list
61
 
 * to store and retrieve the session information.
62
 
 */
63
 
 
64
 
#if !defined(MBEDTLS_CONFIG_FILE)
65
 
#include "mbedtls/config.h"
66
 
#else
67
 
#include MBEDTLS_CONFIG_FILE
68
 
#endif
69
 
 
70
 
#if defined(MBEDTLS_SSL_CACHE_C)
71
 
 
72
 
#if defined(MBEDTLS_PLATFORM_C)
73
 
#include "mbedtls/platform.h"
74
 
#else
75
 
#include <stdlib.h>
76
 
#define mbedtls_calloc    calloc
77
 
#define mbedtls_free      free
78
 
#endif
79
 
 
80
 
#include "mbedtls/ssl_cache.h"
81
 
 
82
 
#include <string.h>
83
 
 
84
 
void mbedtls_ssl_cache_init( mbedtls_ssl_cache_context *cache )
85
 
{
86
 
    memset( cache, 0, sizeof( mbedtls_ssl_cache_context ) );
87
 
 
88
 
    cache->timeout = MBEDTLS_SSL_CACHE_DEFAULT_TIMEOUT;
89
 
    cache->max_entries = MBEDTLS_SSL_CACHE_DEFAULT_MAX_ENTRIES;
90
 
 
91
 
#if defined(MBEDTLS_THREADING_C)
92
 
    mbedtls_mutex_init( &cache->mutex );
93
 
#endif
94
 
}
95
 
 
96
 
int mbedtls_ssl_cache_get( void *data, mbedtls_ssl_session *session )
97
 
{
98
 
    int ret = 1;
99
 
#if defined(MBEDTLS_HAVE_TIME)
100
 
    mbedtls_time_t t = mbedtls_time( NULL );
101
 
#endif
102
 
    mbedtls_ssl_cache_context *cache = (mbedtls_ssl_cache_context *) data;
103
 
    mbedtls_ssl_cache_entry *cur, *entry;
104
 
 
105
 
#if defined(MBEDTLS_THREADING_C)
106
 
    if( mbedtls_mutex_lock( &cache->mutex ) != 0 )
107
 
        return( 1 );
108
 
#endif
109
 
 
110
 
    cur = cache->chain;
111
 
    entry = NULL;
112
 
 
113
 
    while( cur != NULL )
114
 
    {
115
 
        entry = cur;
116
 
        cur = cur->next;
117
 
 
118
 
#if defined(MBEDTLS_HAVE_TIME)
119
 
        if( cache->timeout != 0 &&
120
 
            (int) ( t - entry->timestamp ) > cache->timeout )
121
 
            continue;
122
 
#endif
123
 
 
124
 
        if( session->ciphersuite != entry->session.ciphersuite ||
125
 
            session->compression != entry->session.compression ||
126
 
            session->id_len != entry->session.id_len )
127
 
            continue;
128
 
 
129
 
        if( memcmp( session->id, entry->session.id,
130
 
                    entry->session.id_len ) != 0 )
131
 
            continue;
132
 
 
133
 
        memcpy( session->master, entry->session.master, 48 );
134
 
 
135
 
        session->verify_result = entry->session.verify_result;
136
 
 
137
 
#if defined(MBEDTLS_X509_CRT_PARSE_C)
138
 
        /*
139
 
         * Restore peer certificate (without rest of the original chain)
140
 
         */
141
 
        if( entry->peer_cert.p != NULL )
142
 
        {
143
 
            if( ( session->peer_cert = mbedtls_calloc( 1,
144
 
                                 sizeof(mbedtls_x509_crt) ) ) == NULL )
145
 
            {
146
 
                ret = 1;
147
 
                goto exit;
148
 
            }
149
 
 
150
 
            mbedtls_x509_crt_init( session->peer_cert );
151
 
            if( mbedtls_x509_crt_parse( session->peer_cert, entry->peer_cert.p,
152
 
                                entry->peer_cert.len ) != 0 )
153
 
            {
154
 
                mbedtls_free( session->peer_cert );
155
 
                session->peer_cert = NULL;
156
 
                ret = 1;
157
 
                goto exit;
158
 
            }
159
 
        }
160
 
#endif /* MBEDTLS_X509_CRT_PARSE_C */
161
 
 
162
 
        ret = 0;
163
 
        goto exit;
164
 
    }
165
 
 
166
 
exit:
167
 
#if defined(MBEDTLS_THREADING_C)
168
 
    if( mbedtls_mutex_unlock( &cache->mutex ) != 0 )
169
 
        ret = 1;
170
 
#endif
171
 
 
172
 
    return( ret );
173
 
}
174
 
 
175
 
int mbedtls_ssl_cache_set( void *data, const mbedtls_ssl_session *session )
176
 
{
177
 
    int ret = 1;
178
 
#if defined(MBEDTLS_HAVE_TIME)
179
 
    mbedtls_time_t t = mbedtls_time( NULL ), oldest = 0;
180
 
    mbedtls_ssl_cache_entry *old = NULL;
181
 
#endif
182
 
    mbedtls_ssl_cache_context *cache = (mbedtls_ssl_cache_context *) data;
183
 
    mbedtls_ssl_cache_entry *cur, *prv;
184
 
    int count = 0;
185
 
 
186
 
#if defined(MBEDTLS_THREADING_C)
187
 
    if( ( ret = mbedtls_mutex_lock( &cache->mutex ) ) != 0 )
188
 
        return( ret );
189
 
#endif
190
 
 
191
 
    cur = cache->chain;
192
 
    prv = NULL;
193
 
 
194
 
    while( cur != NULL )
195
 
    {
196
 
        count++;
197
 
 
198
 
#if defined(MBEDTLS_HAVE_TIME)
199
 
        if( cache->timeout != 0 &&
200
 
            (int) ( t - cur->timestamp ) > cache->timeout )
201
 
        {
202
 
            cur->timestamp = t;
203
 
            break; /* expired, reuse this slot, update timestamp */
204
 
        }
205
 
#endif
206
 
 
207
 
        if( memcmp( session->id, cur->session.id, cur->session.id_len ) == 0 )
208
 
            break; /* client reconnected, keep timestamp for session id */
209
 
 
210
 
#if defined(MBEDTLS_HAVE_TIME)
211
 
        if( oldest == 0 || cur->timestamp < oldest )
212
 
        {
213
 
            oldest = cur->timestamp;
214
 
            old = cur;
215
 
        }
216
 
#endif
217
 
 
218
 
        prv = cur;
219
 
        cur = cur->next;
220
 
    }
221
 
 
222
 
    if( cur == NULL )
223
 
    {
224
 
#if defined(MBEDTLS_HAVE_TIME)
225
 
        /*
226
 
         * Reuse oldest entry if max_entries reached
227
 
         */
228
 
        if( count >= cache->max_entries )
229
 
        {
230
 
            if( old == NULL )
231
 
            {
232
 
                ret = 1;
233
 
                goto exit;
234
 
            }
235
 
 
236
 
            cur = old;
237
 
        }
238
 
#else /* MBEDTLS_HAVE_TIME */
239
 
        /*
240
 
         * Reuse first entry in chain if max_entries reached,
241
 
         * but move to last place
242
 
         */
243
 
        if( count >= cache->max_entries )
244
 
        {
245
 
            if( cache->chain == NULL )
246
 
            {
247
 
                ret = 1;
248
 
                goto exit;
249
 
            }
250
 
 
251
 
            cur = cache->chain;
252
 
            cache->chain = cur->next;
253
 
            cur->next = NULL;
254
 
            prv->next = cur;
255
 
        }
256
 
#endif /* MBEDTLS_HAVE_TIME */
257
 
        else
258
 
        {
259
 
            /*
260
 
             * max_entries not reached, create new entry
261
 
             */
262
 
            cur = mbedtls_calloc( 1, sizeof(mbedtls_ssl_cache_entry) );
263
 
            if( cur == NULL )
264
 
            {
265
 
                ret = 1;
266
 
                goto exit;
267
 
            }
268
 
 
269
 
            if( prv == NULL )
270
 
                cache->chain = cur;
271
 
            else
272
 
                prv->next = cur;
273
 
        }
274
 
 
275
 
#if defined(MBEDTLS_HAVE_TIME)
276
 
        cur->timestamp = t;
277
 
#endif
278
 
    }
279
 
 
280
 
    memcpy( &cur->session, session, sizeof( mbedtls_ssl_session ) );
281
 
 
282
 
#if defined(MBEDTLS_X509_CRT_PARSE_C)
283
 
    /*
284
 
     * If we're reusing an entry, free its certificate first
285
 
     */
286
 
    if( cur->peer_cert.p != NULL )
287
 
    {
288
 
        mbedtls_free( cur->peer_cert.p );
289
 
        memset( &cur->peer_cert, 0, sizeof(mbedtls_x509_buf) );
290
 
    }
291
 
 
292
 
    /*
293
 
     * Store peer certificate
294
 
     */
295
 
    if( session->peer_cert != NULL )
296
 
    {
297
 
        cur->peer_cert.p = mbedtls_calloc( 1, session->peer_cert->raw.len );
298
 
        if( cur->peer_cert.p == NULL )
299
 
        {
300
 
            ret = 1;
301
 
            goto exit;
302
 
        }
303
 
 
304
 
        memcpy( cur->peer_cert.p, session->peer_cert->raw.p,
305
 
                session->peer_cert->raw.len );
306
 
        cur->peer_cert.len = session->peer_cert->raw.len;
307
 
 
308
 
        cur->session.peer_cert = NULL;
309
 
    }
310
 
#endif /* MBEDTLS_X509_CRT_PARSE_C */
311
 
 
312
 
    ret = 0;
313
 
 
314
 
exit:
315
 
#if defined(MBEDTLS_THREADING_C)
316
 
    if( mbedtls_mutex_unlock( &cache->mutex ) != 0 )
317
 
        ret = 1;
318
 
#endif
319
 
 
320
 
    return( ret );
321
 
}
322
 
 
323
 
#if defined(MBEDTLS_HAVE_TIME)
324
 
void mbedtls_ssl_cache_set_timeout( mbedtls_ssl_cache_context *cache, int timeout )
325
 
{
326
 
    if( timeout < 0 ) timeout = 0;
327
 
 
328
 
    cache->timeout = timeout;
329
 
}
330
 
#endif /* MBEDTLS_HAVE_TIME */
331
 
 
332
 
void mbedtls_ssl_cache_set_max_entries( mbedtls_ssl_cache_context *cache, int max )
333
 
{
334
 
    if( max < 0 ) max = 0;
335
 
 
336
 
    cache->max_entries = max;
337
 
}
338
 
 
339
 
void mbedtls_ssl_cache_free( mbedtls_ssl_cache_context *cache )
340
 
{
341
 
    mbedtls_ssl_cache_entry *cur, *prv;
342
 
 
343
 
    cur = cache->chain;
344
 
 
345
 
    while( cur != NULL )
346
 
    {
347
 
        prv = cur;
348
 
        cur = cur->next;
349
 
 
350
 
        mbedtls_ssl_session_free( &prv->session );
351
 
 
352
 
#if defined(MBEDTLS_X509_CRT_PARSE_C)
353
 
        mbedtls_free( prv->peer_cert.p );
354
 
#endif /* MBEDTLS_X509_CRT_PARSE_C */
355
 
 
356
 
        mbedtls_free( prv );
357
 
    }
358
 
 
359
 
#if defined(MBEDTLS_THREADING_C)
360
 
    mbedtls_mutex_free( &cache->mutex );
361
 
#endif
362
 
    cache->chain = NULL;
363
 
}
364
 
 
365
 
#endif /* MBEDTLS_SSL_CACHE_C */