]> git.ipfire.org Git - thirdparty/openssl.git/blame - ssl/ssl_sess.c
Respect SSL_OP_NO_TICKET in TLSv1.3
[thirdparty/openssl.git] / ssl / ssl_sess.c
CommitLineData
846e33c7 1/*
b0edda11 2 * Copyright 1995-2018 The OpenSSL Project Authors. All Rights Reserved.
c80149d9 3 * Copyright 2005 Nokia. All rights reserved.
f1fd4544 4 *
846e33c7
RS
5 * Licensed under the OpenSSL license (the "License"). You may not use
6 * this file except in compliance with the License. You can obtain a copy
7 * in the file LICENSE in the source distribution or at
8 * https://www.openssl.org/source/license.html
f1fd4544 9 */
846e33c7 10
d02b48c6 11#include <stdio.h>
ec577822 12#include <openssl/rand.h>
3c27208f 13#include <openssl/engine.h>
cd420b0b 14#include "internal/refcount.h"
6cc0b3c2 15#include "internal/cryptlib.h"
d02b48c6 16#include "ssl_locl.h"
1053a6e2 17#include "statem/statem_locl.h"
d02b48c6 18
58964a49 19static void SSL_SESSION_list_remove(SSL_CTX *ctx, SSL_SESSION *s);
0f113f3e 20static void SSL_SESSION_list_add(SSL_CTX *ctx, SSL_SESSION *s);
801294f8 21static int remove_session_lock(SSL_CTX *ctx, SSL_SESSION *c, int lck);
58964a49 22
e7a28df7 23/*
e586eac8
MC
24 * SSL_get_session() and SSL_get1_session() are problematic in TLS1.3 because,
25 * unlike in earlier protocol versions, the session ticket may not have been
26 * sent yet even though a handshake has finished. The session ticket data could
27 * come in sometime later...or even change if multiple session ticket messages
28 * are sent from the server. The preferred way for applications to obtain
29 * a resumable session is to use SSL_CTX_sess_set_new_cb().
e7a28df7
MC
30 */
31
0821bcd4 32SSL_SESSION *SSL_get_session(const SSL *ssl)
52732b38 33/* aka SSL_get0_session; gets 0 objects, just returns a copy of the pointer */
0f113f3e 34{
26a7d938 35 return ssl->session;
0f113f3e 36}
52732b38
BM
37
38SSL_SESSION *SSL_get1_session(SSL *ssl)
39/* variant of SSL_get_session: caller really gets something */
0f113f3e
MC
40{
41 SSL_SESSION *sess;
42 /*
43 * Need to lock this all up rather than just use CRYPTO_add so that
44 * somebody doesn't free ssl->session between when we check it's non-null
45 * and when we up the reference count.
46 */
16203f7b 47 CRYPTO_THREAD_read_lock(ssl->lock);
0f113f3e
MC
48 sess = ssl->session;
49 if (sess)
16203f7b
AG
50 SSL_SESSION_up_ref(sess);
51 CRYPTO_THREAD_unlock(ssl->lock);
52 return sess;
0f113f3e
MC
53}
54
6b691a5c 55int SSL_SESSION_set_ex_data(SSL_SESSION *s, int idx, void *arg)
0f113f3e 56{
26a7d938 57 return CRYPTO_set_ex_data(&s->ex_data, idx, arg);
0f113f3e 58}
58964a49 59
0821bcd4 60void *SSL_SESSION_get_ex_data(const SSL_SESSION *s, int idx)
0f113f3e 61{
26a7d938 62 return CRYPTO_get_ex_data(&s->ex_data, idx);
0f113f3e 63}
58964a49 64
6b691a5c 65SSL_SESSION *SSL_SESSION_new(void)
0f113f3e
MC
66{
67 SSL_SESSION *ss;
68
534a43ff
MC
69 if (!OPENSSL_init_ssl(OPENSSL_INIT_LOAD_SSL_STRINGS, NULL))
70 return NULL;
71
b51bce94 72 ss = OPENSSL_zalloc(sizeof(*ss));
0f113f3e
MC
73 if (ss == NULL) {
74 SSLerr(SSL_F_SSL_SESSION_NEW, ERR_R_MALLOC_FAILURE);
16203f7b 75 return NULL;
0f113f3e 76 }
0f113f3e
MC
77
78 ss->verify_result = 1; /* avoid 0 (= X509_V_OK) just in case */
79 ss->references = 1;
80 ss->timeout = 60 * 5 + 4; /* 5 minute timeout by default */
81 ss->time = (unsigned long)time(NULL);
16203f7b
AG
82 ss->lock = CRYPTO_THREAD_lock_new();
83 if (ss->lock == NULL) {
84 SSLerr(SSL_F_SSL_SESSION_NEW, ERR_R_MALLOC_FAILURE);
85 OPENSSL_free(ss);
86 return NULL;
87 }
88
25a807bc
F
89 if (!CRYPTO_new_ex_data(CRYPTO_EX_INDEX_SSL_SESSION, ss, &ss->ex_data)) {
90 CRYPTO_THREAD_lock_free(ss->lock);
91 OPENSSL_free(ss);
92 return NULL;
93 }
16203f7b 94 return ss;
0f113f3e 95}
d02b48c6 96
07927bed
MC
97SSL_SESSION *SSL_SESSION_dup(SSL_SESSION *src)
98{
99 return ssl_session_dup(src, 1);
100}
101
98ece4ee
MC
102/*
103 * Create a new SSL_SESSION and duplicate the contents of |src| into it. If
104 * ticket == 0 then no ticket information is duplicated, otherwise it is.
105 */
106SSL_SESSION *ssl_session_dup(SSL_SESSION *src, int ticket)
107{
108 SSL_SESSION *dest;
109
110 dest = OPENSSL_malloc(sizeof(*src));
111 if (dest == NULL) {
112 goto err;
113 }
114 memcpy(dest, src, sizeof(*dest));
115
708cf593
MC
116 /*
117 * Set the various pointers to NULL so that we can call SSL_SESSION_free in
118 * the case of an error whilst halfway through constructing dest
119 */
120#ifndef OPENSSL_NO_PSK
121 dest->psk_identity_hint = NULL;
122 dest->psk_identity = NULL;
123#endif
124 dest->ciphers = NULL;
aff8c126 125 dest->ext.hostname = NULL;
708cf593 126#ifndef OPENSSL_NO_EC
aff8c126
RS
127 dest->ext.ecpointformats = NULL;
128 dest->ext.supportedgroups = NULL;
708cf593 129#endif
aff8c126 130 dest->ext.tick = NULL;
eed3ec90 131 dest->ext.alpn_selected = NULL;
708cf593
MC
132#ifndef OPENSSL_NO_SRP
133 dest->srp_username = NULL;
134#endif
1ee21259
TS
135 dest->peer_chain = NULL;
136 dest->peer = NULL;
df0fed9a 137 dest->ticket_appdata = NULL;
51598215 138 memset(&dest->ex_data, 0, sizeof(dest->ex_data));
9b6a8254 139
708cf593
MC
140 /* We deliberately don't copy the prev and next pointers */
141 dest->prev = NULL;
142 dest->next = NULL;
143
144 dest->references = 1;
145
16203f7b
AG
146 dest->lock = CRYPTO_THREAD_lock_new();
147 if (dest->lock == NULL)
148 goto err;
149
1ee21259
TS
150 if (!CRYPTO_new_ex_data(CRYPTO_EX_INDEX_SSL_SESSION, dest, &dest->ex_data))
151 goto err;
152
153 if (src->peer != NULL) {
154 if (!X509_up_ref(src->peer))
155 goto err;
156 dest->peer = src->peer;
157 }
708cf593 158
36f038f1
DSH
159 if (src->peer_chain != NULL) {
160 dest->peer_chain = X509_chain_up_ref(src->peer_chain);
161 if (dest->peer_chain == NULL)
162 goto err;
163 }
98ece4ee
MC
164#ifndef OPENSSL_NO_PSK
165 if (src->psk_identity_hint) {
7644a9ae 166 dest->psk_identity_hint = OPENSSL_strdup(src->psk_identity_hint);
98ece4ee
MC
167 if (dest->psk_identity_hint == NULL) {
168 goto err;
169 }
98ece4ee
MC
170 }
171 if (src->psk_identity) {
7644a9ae 172 dest->psk_identity = OPENSSL_strdup(src->psk_identity);
98ece4ee
MC
173 if (dest->psk_identity == NULL) {
174 goto err;
175 }
98ece4ee
MC
176 }
177#endif
178
e8aa8b6c 179 if (src->ciphers != NULL) {
98ece4ee
MC
180 dest->ciphers = sk_SSL_CIPHER_dup(src->ciphers);
181 if (dest->ciphers == NULL)
182 goto err;
98ece4ee
MC
183 }
184
185 if (!CRYPTO_dup_ex_data(CRYPTO_EX_INDEX_SSL_SESSION,
a230b26e 186 &dest->ex_data, &src->ex_data)) {
98ece4ee
MC
187 goto err;
188 }
189
aff8c126
RS
190 if (src->ext.hostname) {
191 dest->ext.hostname = OPENSSL_strdup(src->ext.hostname);
192 if (dest->ext.hostname == NULL) {
98ece4ee
MC
193 goto err;
194 }
98ece4ee 195 }
708cf593 196#ifndef OPENSSL_NO_EC
aff8c126
RS
197 if (src->ext.ecpointformats) {
198 dest->ext.ecpointformats =
199 OPENSSL_memdup(src->ext.ecpointformats,
200 src->ext.ecpointformats_len);
201 if (dest->ext.ecpointformats == NULL)
98ece4ee 202 goto err;
98ece4ee 203 }
aff8c126
RS
204 if (src->ext.supportedgroups) {
205 dest->ext.supportedgroups =
206 OPENSSL_memdup(src->ext.supportedgroups,
1bb82930
BE
207 src->ext.supportedgroups_len
208 * sizeof(*src->ext.supportedgroups));
aff8c126 209 if (dest->ext.supportedgroups == NULL)
98ece4ee 210 goto err;
98ece4ee 211 }
98ece4ee
MC
212#endif
213
1ee21259 214 if (ticket != 0 && src->ext.tick != NULL) {
aff8c126
RS
215 dest->ext.tick =
216 OPENSSL_memdup(src->ext.tick, src->ext.ticklen);
217 if (dest->ext.tick == NULL)
98ece4ee 218 goto err;
708cf593 219 } else {
aff8c126
RS
220 dest->ext.tick_lifetime_hint = 0;
221 dest->ext.ticklen = 0;
98ece4ee
MC
222 }
223
27232cc3
MC
224 if (src->ext.alpn_selected != NULL) {
225 dest->ext.alpn_selected = OPENSSL_memdup(src->ext.alpn_selected,
226 src->ext.alpn_selected_len);
227 if (dest->ext.alpn_selected == NULL)
eed3ec90 228 goto err;
eed3ec90
TS
229 }
230
98ece4ee 231#ifndef OPENSSL_NO_SRP
98ece4ee 232 if (src->srp_username) {
7644a9ae 233 dest->srp_username = OPENSSL_strdup(src->srp_username);
98ece4ee
MC
234 if (dest->srp_username == NULL) {
235 goto err;
236 }
98ece4ee
MC
237 }
238#endif
239
df0fed9a
TS
240 if (src->ticket_appdata != NULL) {
241 dest->ticket_appdata =
242 OPENSSL_memdup(src->ticket_appdata, src->ticket_appdata_len);
243 if (dest->ticket_appdata == NULL)
244 goto err;
245 }
246
98ece4ee 247 return dest;
a230b26e 248 err:
98ece4ee
MC
249 SSLerr(SSL_F_SSL_SESSION_DUP, ERR_R_MALLOC_FAILURE);
250 SSL_SESSION_free(dest);
251 return NULL;
252}
253
a230b26e 254const unsigned char *SSL_SESSION_get_id(const SSL_SESSION *s, unsigned int *len)
0f113f3e
MC
255{
256 if (len)
348240c6 257 *len = (unsigned int)s->session_id_length;
0f113f3e
MC
258 return s->session_id;
259}
fddfc0af
RG
260const unsigned char *SSL_SESSION_get0_id_context(const SSL_SESSION *s,
261 unsigned int *len)
262{
263 if (len != NULL)
348240c6 264 *len = (unsigned int)s->sid_ctx_length;
fddfc0af
RG
265 return s->sid_ctx;
266}
4879ec7b 267
f9b0b452 268unsigned int SSL_SESSION_get_compress_id(const SSL_SESSION *s)
0f113f3e
MC
269{
270 return s->compress_meth;
271}
272
273/*
274 * SSLv3/TLSv1 has 32 bytes (256 bits) of session ID space. As such, filling
275 * the ID with random junk repeatedly until we have no conflict is going to
276 * complete in one iteration pretty much "most" of the time (btw:
277 * understatement). So, if it takes us 10 iterations and we still can't avoid
278 * a conflict - well that's a reasonable point to call it quits. Either the
279 * RAND code is broken or someone is trying to open roughly very close to
280 * 2^256 SSL sessions to our server. How you might store that many sessions
281 * is perhaps a more interesting question ...
282 */
dc644fe2
GT
283
284#define MAX_SESS_ID_ATTEMPTS 10
ae3947de 285static int def_generate_session_id(SSL *ssl, unsigned char *id,
0f113f3e 286 unsigned int *id_len)
dc644fe2 287{
0f113f3e
MC
288 unsigned int retry = 0;
289 do
16cfc2c9 290 if (RAND_bytes(id, *id_len) <= 0)
0f113f3e
MC
291 return 0;
292 while (SSL_has_matching_session_id(ssl, id, *id_len) &&
293 (++retry < MAX_SESS_ID_ATTEMPTS)) ;
294 if (retry < MAX_SESS_ID_ATTEMPTS)
295 return 1;
296 /* else - woops a session_id match */
297 /*
298 * XXX We should also check the external cache -- but the probability of
299 * a collision is negligible, and we could not prevent the concurrent
300 * creation of sessions with identical IDs since we currently don't have
301 * means to atomically check whether a session ID already exists and make
302 * a reservation for it if it does not (this problem applies to the
303 * internal cache as well).
304 */
305 return 0;
dc644fe2
GT
306}
307
a84e5c9a
TS
308int ssl_generate_session_id(SSL *s, SSL_SESSION *ss)
309{
310 unsigned int tmp;
311 GEN_SESSION_CB cb = def_generate_session_id;
312
313 switch (s->version) {
314 case SSL3_VERSION:
315 case TLS1_VERSION:
316 case TLS1_1_VERSION:
317 case TLS1_2_VERSION:
318 case TLS1_3_VERSION:
319 case DTLS1_BAD_VER:
320 case DTLS1_VERSION:
321 case DTLS1_2_VERSION:
322 ss->session_id_length = SSL3_SSL_SESSION_ID_LENGTH;
323 break;
324 default:
f63a17d6
MC
325 SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_SSL_GENERATE_SESSION_ID,
326 SSL_R_UNSUPPORTED_SSL_VERSION);
a84e5c9a
TS
327 return 0;
328 }
329
330 /*-
331 * If RFC5077 ticket, use empty session ID (as server).
332 * Note that:
333 * (a) ssl_get_prev_session() does lookahead into the
334 * ClientHello extensions to find the session ticket.
335 * When ssl_get_prev_session() fails, statem_srvr.c calls
336 * ssl_get_new_session() in tls_process_client_hello().
337 * At that point, it has not yet parsed the extensions,
338 * however, because of the lookahead, it already knows
339 * whether a ticket is expected or not.
340 *
341 * (b) statem_clnt.c calls ssl_get_new_session() before parsing
342 * ServerHello extensions, and before recording the session
343 * ID received from the server, so this block is a noop.
344 */
345 if (s->ext.ticket_expected) {
346 ss->session_id_length = 0;
347 return 1;
348 }
349
350 /* Choose which callback will set the session ID */
351 CRYPTO_THREAD_read_lock(s->lock);
352 CRYPTO_THREAD_read_lock(s->session_ctx->lock);
353 if (s->generate_session_id)
354 cb = s->generate_session_id;
355 else if (s->session_ctx->generate_session_id)
356 cb = s->session_ctx->generate_session_id;
357 CRYPTO_THREAD_unlock(s->session_ctx->lock);
358 CRYPTO_THREAD_unlock(s->lock);
359 /* Choose a session ID */
360 memset(ss->session_id, 0, ss->session_id_length);
361 tmp = (int)ss->session_id_length;
362 if (!cb(s, ss->session_id, &tmp)) {
363 /* The callback failed */
f63a17d6
MC
364 SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_SSL_GENERATE_SESSION_ID,
365 SSL_R_SSL_SESSION_ID_CALLBACK_FAILED);
a84e5c9a
TS
366 return 0;
367 }
368 /*
369 * Don't allow the callback to set the session length to zero. nor
370 * set it higher than it was.
371 */
372 if (tmp == 0 || tmp > ss->session_id_length) {
373 /* The callback set an illegal length */
f63a17d6
MC
374 SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_SSL_GENERATE_SESSION_ID,
375 SSL_R_SSL_SESSION_ID_HAS_BAD_LENGTH);
a84e5c9a
TS
376 return 0;
377 }
378 ss->session_id_length = tmp;
379 /* Finally, check for a conflict */
380 if (SSL_has_matching_session_id(s, ss->session_id,
381 (unsigned int)ss->session_id_length)) {
f63a17d6
MC
382 SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_SSL_GENERATE_SESSION_ID,
383 SSL_R_SSL_SESSION_ID_CONFLICT);
a84e5c9a
TS
384 return 0;
385 }
386
387 return 1;
388}
389
6b691a5c 390int ssl_get_new_session(SSL *s, int session)
0f113f3e
MC
391{
392 /* This gets used by clients and servers. */
393
0f113f3e 394 SSL_SESSION *ss = NULL;
0f113f3e 395
f63a17d6
MC
396 if ((ss = SSL_SESSION_new()) == NULL) {
397 SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_SSL_GET_NEW_SESSION,
398 ERR_R_MALLOC_FAILURE);
a84e5c9a 399 return 0;
f63a17d6 400 }
0f113f3e
MC
401
402 /* If the context has a default timeout, use it */
403 if (s->session_ctx->session_timeout == 0)
404 ss->timeout = SSL_get_default_timeout(s);
405 else
406 ss->timeout = s->session_ctx->session_timeout;
407
62adbcee
RS
408 SSL_SESSION_free(s->session);
409 s->session = NULL;
0f113f3e
MC
410
411 if (session) {
32305f88
MC
412 if (SSL_IS_TLS13(s)) {
413 /*
414 * We generate the session id while constructing the
415 * NewSessionTicket in TLSv1.3.
416 */
417 ss->session_id_length = 0;
418 } else if (!ssl_generate_session_id(s, ss)) {
f63a17d6 419 /* SSLfatal() already called */
0f113f3e 420 SSL_SESSION_free(ss);
a84e5c9a 421 return 0;
0f113f3e 422 }
e481f9b9 423
aff8c126
RS
424 if (s->ext.hostname) {
425 ss->ext.hostname = OPENSSL_strdup(s->ext.hostname);
426 if (ss->ext.hostname == NULL) {
f63a17d6
MC
427 SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_SSL_GET_NEW_SESSION,
428 ERR_R_INTERNAL_ERROR);
0f113f3e
MC
429 SSL_SESSION_free(ss);
430 return 0;
431 }
432 }
0f113f3e
MC
433 } else {
434 ss->session_id_length = 0;
435 }
436
cbe29648 437 if (s->sid_ctx_length > sizeof(ss->sid_ctx)) {
f63a17d6
MC
438 SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_SSL_GET_NEW_SESSION,
439 ERR_R_INTERNAL_ERROR);
0f113f3e
MC
440 SSL_SESSION_free(ss);
441 return 0;
442 }
443 memcpy(ss->sid_ctx, s->sid_ctx, s->sid_ctx_length);
444 ss->sid_ctx_length = s->sid_ctx_length;
445 s->session = ss;
446 ss->ssl_version = s->version;
447 ss->verify_result = X509_V_OK;
448
e7f0d921
DSH
449 /* If client supports extended master secret set it in session */
450 if (s->s3->flags & TLS1_FLAGS_RECEIVED_EXTMS)
451 ss->flags |= SSL_SESS_FLAG_EXTMS;
452
a84e5c9a 453 return 1;
0f113f3e 454}
d02b48c6 455
6cc0b3c2
MC
456SSL_SESSION *lookup_sess_in_cache(SSL *s, const unsigned char *sess_id,
457 size_t sess_id_len)
458{
459 SSL_SESSION *ret = NULL;
460 int discard;
461
462 if ((s->session_ctx->session_cache_mode
463 & SSL_SESS_CACHE_NO_INTERNAL_LOOKUP) == 0) {
464 SSL_SESSION data;
465
466 data.ssl_version = s->version;
467 if (!ossl_assert(sess_id_len <= SSL_MAX_SSL_SESSION_ID_LENGTH))
468 return NULL;
469
470 memcpy(data.session_id, sess_id, sess_id_len);
471 data.session_id_length = sess_id_len;
472
473 CRYPTO_THREAD_read_lock(s->session_ctx->lock);
474 ret = lh_SSL_SESSION_retrieve(s->session_ctx->sessions, &data);
475 if (ret != NULL) {
476 /* don't allow other threads to steal it: */
477 SSL_SESSION_up_ref(ret);
478 }
479 CRYPTO_THREAD_unlock(s->session_ctx->lock);
480 if (ret == NULL)
481 CRYPTO_atomic_add(&s->session_ctx->stats.sess_miss, 1, &discard,
482 s->session_ctx->lock);
483 }
484
485 if (ret == NULL && s->session_ctx->get_session_cb != NULL) {
486 int copy = 1;
487
488 ret = s->session_ctx->get_session_cb(s, sess_id, sess_id_len, &copy);
489
490 if (ret != NULL) {
491 CRYPTO_atomic_add(&s->session_ctx->stats.sess_cb_hit, 1, &discard,
492 s->session_ctx->lock);
493
494 /*
495 * Increment reference count now if the session callback asks us
496 * to do so (note that if the session structures returned by the
497 * callback are shared between threads, it must handle the
498 * reference count itself [i.e. copy == 0], or things won't be
499 * thread-safe).
500 */
501 if (copy)
502 SSL_SESSION_up_ref(ret);
503
504 /*
505 * Add the externally cached session to the internal cache as
506 * well if and only if we are supposed to.
507 */
508 if ((s->session_ctx->session_cache_mode &
509 SSL_SESS_CACHE_NO_INTERNAL_STORE) == 0) {
510 /*
511 * Either return value of SSL_CTX_add_session should not
512 * interrupt the session resumption process. The return
513 * value is intentionally ignored.
514 */
515 (void)SSL_CTX_add_session(s->session_ctx, ret);
516 }
517 }
518 }
519
520 return ret;
521}
522
3a83462d
MC
523/*-
524 * ssl_get_prev attempts to find an SSL_SESSION to be used to resume this
c519e89f
BM
525 * connection. It is only called by servers.
526 *
de7d61d5 527 * hello: The parsed ClientHello data
c519e89f
BM
528 *
529 * Returns:
1053a6e2
MC
530 * -1: fatal error
531 * 0: no session found
532 * 1: a session may have been found.
c519e89f
BM
533 *
534 * Side effects:
535 * - If a session is found then s->session is pointed at it (after freeing an
536 * existing session if need be) and s->verify_result is set from the session.
aff8c126 537 * - Both for new and resumed sessions, s->ext.ticket_expected is set to 1
c519e89f
BM
538 * if the server should issue a new session ticket (to 0 otherwise).
539 */
f63a17d6 540int ssl_get_prev_session(SSL *s, CLIENTHELLO_MSG *hello)
0f113f3e
MC
541{
542 /* This is used only by servers. */
b56bce4f 543
0f113f3e 544 SSL_SESSION *ret = NULL;
1fcb4e4d 545 int fatal = 0, discard;
1053a6e2 546 int try_session_cache = 0;
61fb5923 547 SSL_TICKET_STATUS r;
d02b48c6 548
1053a6e2 549 if (SSL_IS_TLS13(s)) {
61fb5923
MC
550 /*
551 * By default we will send a new ticket. This can be overridden in the
552 * ticket processing.
553 */
554 s->ext.ticket_expected = 1;
fe874d27
MC
555 if (!tls_parse_extension(s, TLSEXT_IDX_psk_kex_modes,
556 SSL_EXT_CLIENT_HELLO, hello->pre_proc_exts,
f63a17d6 557 NULL, 0)
fe874d27 558 || !tls_parse_extension(s, TLSEXT_IDX_psk, SSL_EXT_CLIENT_HELLO,
f63a17d6 559 hello->pre_proc_exts, NULL, 0))
1053a6e2
MC
560 return -1;
561
562 ret = s->session;
563 } else {
564 /* sets s->ext.ticket_expected */
565 r = tls_get_ticket_from_client(s, hello, &ret);
566 switch (r) {
df0fed9a
TS
567 case SSL_TICKET_FATAL_ERR_MALLOC:
568 case SSL_TICKET_FATAL_ERR_OTHER:
1053a6e2 569 fatal = 1;
f63a17d6
MC
570 SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_SSL_GET_PREV_SESSION,
571 ERR_R_INTERNAL_ERROR);
1053a6e2 572 goto err;
df0fed9a
TS
573 case SSL_TICKET_NONE:
574 case SSL_TICKET_EMPTY:
6cc0b3c2 575 if (hello->session_id_len > 0) {
0afca811 576 try_session_cache = 1;
6cc0b3c2
MC
577 ret = lookup_sess_in_cache(s, hello->session_id,
578 hello->session_id_len);
579 }
61c32649 580 break;
df0fed9a
TS
581 case SSL_TICKET_NO_DECRYPT:
582 case SSL_TICKET_SUCCESS:
583 case SSL_TICKET_SUCCESS_RENEW:
1053a6e2 584 break;
1053a6e2 585 }
0f113f3e 586 }
c519e89f 587
0f113f3e
MC
588 if (ret == NULL)
589 goto err;
590
591 /* Now ret is non-NULL and we own one of its reference counts. */
592
128ae276
MC
593 /* Check TLS version consistency */
594 if (ret->ssl_version != s->version)
595 goto err;
596
0f113f3e
MC
597 if (ret->sid_ctx_length != s->sid_ctx_length
598 || memcmp(ret->sid_ctx, s->sid_ctx, ret->sid_ctx_length)) {
599 /*
600 * We have the session requested by the client, but we don't want to
601 * use it in this context.
602 */
603 goto err; /* treat like cache miss */
604 }
605
606 if ((s->verify_mode & SSL_VERIFY_PEER) && s->sid_ctx_length == 0) {
607 /*
608 * We can't be sure if this session is being used out of context,
609 * which is especially important for SSL_VERIFY_PEER. The application
610 * should have used SSL[_CTX]_set_session_id_context. For this error
611 * case, we generate an error instead of treating the event like a
612 * cache miss (otherwise it would be easy for applications to
613 * effectively disable the session cache by accident without anyone
614 * noticing).
615 */
616
f63a17d6
MC
617 SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_SSL_GET_PREV_SESSION,
618 SSL_R_SESSION_ID_CONTEXT_UNINITIALIZED);
0f113f3e
MC
619 fatal = 1;
620 goto err;
621 }
622
0f113f3e 623 if (ret->timeout < (long)(time(NULL) - ret->time)) { /* timeout */
1fcb4e4d
BK
624 CRYPTO_atomic_add(&s->session_ctx->stats.sess_timeout, 1, &discard,
625 s->session_ctx->lock);
0f113f3e
MC
626 if (try_session_cache) {
627 /* session was from the cache, so remove it */
628 SSL_CTX_remove_session(s->session_ctx, ret);
629 }
630 goto err;
631 }
632
e7f0d921
DSH
633 /* Check extended master secret extension consistency */
634 if (ret->flags & SSL_SESS_FLAG_EXTMS) {
635 /* If old session includes extms, but new does not: abort handshake */
636 if (!(s->s3->flags & TLS1_FLAGS_RECEIVED_EXTMS)) {
f63a17d6
MC
637 SSLfatal(s, SSL_AD_ILLEGAL_PARAMETER, SSL_F_SSL_GET_PREV_SESSION,
638 SSL_R_INCONSISTENT_EXTMS);
e7f0d921
DSH
639 fatal = 1;
640 goto err;
641 }
642 } else if (s->s3->flags & TLS1_FLAGS_RECEIVED_EXTMS) {
643 /* If new session includes extms, but old does not: do not resume */
644 goto err;
645 }
646
1053a6e2
MC
647 if (!SSL_IS_TLS13(s)) {
648 /* We already did this for TLS1.3 */
649 SSL_SESSION_free(s->session);
650 s->session = ret;
651 }
0f113f3e 652
1fcb4e4d
BK
653 CRYPTO_atomic_add(&s->session_ctx->stats.sess_hit, 1, &discard,
654 s->session_ctx->lock);
0f113f3e
MC
655 s->verify_result = s->session->verify_result;
656 return 1;
8876bc05
BM
657
658 err:
0f113f3e
MC
659 if (ret != NULL) {
660 SSL_SESSION_free(ret);
1f5b44e9 661 /* In TLSv1.3 s->session was already set to ret, so we NULL it out */
128ae276
MC
662 if (SSL_IS_TLS13(s))
663 s->session = NULL;
e481f9b9 664
0f113f3e
MC
665 if (!try_session_cache) {
666 /*
667 * The session was from a ticket, so we should issue a ticket for
668 * the new session
669 */
aff8c126 670 s->ext.ticket_expected = 1;
0f113f3e 671 }
0f113f3e 672 }
f63a17d6 673 if (fatal)
0f113f3e 674 return -1;
40f805ad
MC
675
676 return 0;
0f113f3e 677}
d02b48c6 678
6b691a5c 679int SSL_CTX_add_session(SSL_CTX *ctx, SSL_SESSION *c)
0f113f3e 680{
1fcb4e4d 681 int ret = 0, discard;
0f113f3e
MC
682 SSL_SESSION *s;
683
684 /*
685 * add just 1 reference count for the SSL_CTX's session cache even though
686 * it has two ways of access: each session is in a doubly linked list and
687 * an lhash
688 */
16203f7b 689 SSL_SESSION_up_ref(c);
0f113f3e
MC
690 /*
691 * if session c is in already in cache, we take back the increment later
692 */
693
16203f7b 694 CRYPTO_THREAD_write_lock(ctx->lock);
0f113f3e
MC
695 s = lh_SSL_SESSION_insert(ctx->sessions, c);
696
697 /*
698 * s != NULL iff we already had a session with the given PID. In this
699 * case, s == c should hold (then we did not really modify
700 * ctx->sessions), or we're in trouble.
701 */
702 if (s != NULL && s != c) {
703 /* We *are* in trouble ... */
704 SSL_SESSION_list_remove(ctx, s);
705 SSL_SESSION_free(s);
706 /*
707 * ... so pretend the other session did not exist in cache (we cannot
708 * handle two SSL_SESSION structures with identical session ID in the
709 * same cache, which could happen e.g. when two threads concurrently
710 * obtain the same session from an external cache)
711 */
712 s = NULL;
38088ce9
BE
713 } else if (s == NULL &&
714 lh_SSL_SESSION_retrieve(ctx->sessions, c) == NULL) {
715 /* s == NULL can also mean OOM error in lh_SSL_SESSION_insert ... */
716
717 /*
718 * ... so take back the extra reference and also don't add
719 * the session to the SSL_SESSION_list at this time
720 */
721 s = c;
0f113f3e
MC
722 }
723
724 /* Put at the head of the queue unless it is already in the cache */
725 if (s == NULL)
726 SSL_SESSION_list_add(ctx, c);
727
728 if (s != NULL) {
729 /*
730 * existing cache entry -- decrement previously incremented reference
731 * count because it already takes into account the cache
732 */
733
734 SSL_SESSION_free(s); /* s == c */
735 ret = 0;
736 } else {
737 /*
738 * new cache entry -- remove old ones if cache has become too large
739 */
740
741 ret = 1;
742
743 if (SSL_CTX_sess_get_cache_size(ctx) > 0) {
a230b26e 744 while (SSL_CTX_sess_number(ctx) > SSL_CTX_sess_get_cache_size(ctx)) {
0f113f3e
MC
745 if (!remove_session_lock(ctx, ctx->session_cache_tail, 0))
746 break;
747 else
1fcb4e4d
BK
748 CRYPTO_atomic_add(&ctx->stats.sess_cache_full, 1, &discard,
749 ctx->lock);
0f113f3e
MC
750 }
751 }
752 }
16203f7b
AG
753 CRYPTO_THREAD_unlock(ctx->lock);
754 return ret;
0f113f3e 755}
d02b48c6 756
6b691a5c 757int SSL_CTX_remove_session(SSL_CTX *ctx, SSL_SESSION *c)
801294f8 758{
0f113f3e 759 return remove_session_lock(ctx, c, 1);
801294f8
DSH
760}
761
0fda2e37 762static int remove_session_lock(SSL_CTX *ctx, SSL_SESSION *c, int lck)
0f113f3e
MC
763{
764 SSL_SESSION *r;
765 int ret = 0;
766
767 if ((c != NULL) && (c->session_id_length != 0)) {
768 if (lck)
16203f7b 769 CRYPTO_THREAD_write_lock(ctx->lock);
66d7de16 770 if ((r = lh_SSL_SESSION_retrieve(ctx->sessions, c)) != NULL) {
0f113f3e 771 ret = 1;
66d7de16
MC
772 r = lh_SSL_SESSION_delete(ctx->sessions, r);
773 SSL_SESSION_list_remove(ctx, r);
0f113f3e 774 }
e4612d02 775 c->not_resumable = 1;
0f113f3e
MC
776
777 if (lck)
16203f7b 778 CRYPTO_THREAD_unlock(ctx->lock);
0f113f3e 779
e4612d02
MC
780 if (ctx->remove_session_cb != NULL)
781 ctx->remove_session_cb(ctx, c);
c0a58e03
MH
782
783 if (ret)
784 SSL_SESSION_free(r);
0f113f3e
MC
785 } else
786 ret = 0;
26a7d938 787 return ret;
0f113f3e 788}
d02b48c6 789
6b691a5c 790void SSL_SESSION_free(SSL_SESSION *ss)
0f113f3e
MC
791{
792 int i;
d02b48c6 793
e6e9170d
RS
794 if (ss == NULL)
795 return;
2f545ae4 796 CRYPTO_DOWN_REF(&ss->references, &i, ss->lock);
f3f1cf84 797 REF_PRINT_COUNT("SSL_SESSION", ss);
0f113f3e
MC
798 if (i > 0)
799 return;
f3f1cf84 800 REF_ASSERT_ISNT(i < 0);
d02b48c6 801
0f113f3e 802 CRYPTO_free_ex_data(CRYPTO_EX_INDEX_SSL_SESSION, ss, &ss->ex_data);
58964a49 803
cbe29648
RS
804 OPENSSL_cleanse(ss->master_key, sizeof(ss->master_key));
805 OPENSSL_cleanse(ss->session_id, sizeof(ss->session_id));
222561fe 806 X509_free(ss->peer);
c34b0f99 807 sk_X509_pop_free(ss->peer_chain, X509_free);
25aaa98a 808 sk_SSL_CIPHER_free(ss->ciphers);
aff8c126
RS
809 OPENSSL_free(ss->ext.hostname);
810 OPENSSL_free(ss->ext.tick);
e481f9b9 811#ifndef OPENSSL_NO_EC
aff8c126
RS
812 OPENSSL_free(ss->ext.ecpointformats);
813 ss->ext.ecpointformats = NULL;
814 ss->ext.ecpointformats_len = 0;
815 OPENSSL_free(ss->ext.supportedgroups);
816 ss->ext.supportedgroups = NULL;
817 ss->ext.supportedgroups_len = 0;
a230b26e 818#endif /* OPENSSL_NO_EC */
ddac1974 819#ifndef OPENSSL_NO_PSK
25aaa98a
RS
820 OPENSSL_free(ss->psk_identity_hint);
821 OPENSSL_free(ss->psk_identity);
edc032b5
BL
822#endif
823#ifndef OPENSSL_NO_SRP
25aaa98a 824 OPENSSL_free(ss->srp_username);
ed3883d2 825#endif
f6370040 826 OPENSSL_free(ss->ext.alpn_selected);
df0fed9a 827 OPENSSL_free(ss->ticket_appdata);
16203f7b 828 CRYPTO_THREAD_lock_free(ss->lock);
4b45c6e5 829 OPENSSL_clear_free(ss, sizeof(*ss));
0f113f3e 830}
d02b48c6 831
16203f7b
AG
832int SSL_SESSION_up_ref(SSL_SESSION *ss)
833{
834 int i;
835
2f545ae4 836 if (CRYPTO_UP_REF(&ss->references, &i, ss->lock) <= 0)
16203f7b
AG
837 return 0;
838
839 REF_PRINT_COUNT("SSL_SESSION", ss);
840 REF_ASSERT_ISNT(i < 2);
841 return ((i > 1) ? 1 : 0);
842}
843
6b691a5c 844int SSL_set_session(SSL *s, SSL_SESSION *session)
0f113f3e 845{
e70656cf
MC
846 ssl_clear_bad_session(s);
847 if (s->ctx->method != s->method) {
848 if (!SSL_set_ssl_method(s, s->ctx->method))
849 return 0;
850 }
0f113f3e 851
e70656cf 852 if (session != NULL) {
16203f7b 853 SSL_SESSION_up_ref(session);
e70656cf 854 s->verify_result = session->verify_result;
0f113f3e 855 }
e70656cf
MC
856 SSL_SESSION_free(s->session);
857 s->session = session;
858
859 return 1;
0f113f3e 860}
d02b48c6 861
fddfc0af
RG
862int SSL_SESSION_set1_id(SSL_SESSION *s, const unsigned char *sid,
863 unsigned int sid_len)
864{
865 if (sid_len > SSL_MAX_SSL_SESSION_ID_LENGTH) {
866 SSLerr(SSL_F_SSL_SESSION_SET1_ID,
867 SSL_R_SSL_SESSION_ID_TOO_LONG);
868 return 0;
869 }
870 s->session_id_length = sid_len;
6aad9393
RG
871 if (sid != s->session_id)
872 memcpy(s->session_id, sid, sid_len);
fddfc0af
RG
873 return 1;
874}
875
6b691a5c 876long SSL_SESSION_set_timeout(SSL_SESSION *s, long t)
0f113f3e
MC
877{
878 if (s == NULL)
26a7d938 879 return 0;
0f113f3e 880 s->timeout = t;
208fb891 881 return 1;
0f113f3e 882}
d02b48c6 883
0821bcd4 884long SSL_SESSION_get_timeout(const SSL_SESSION *s)
0f113f3e
MC
885{
886 if (s == NULL)
26a7d938
K
887 return 0;
888 return s->timeout;
0f113f3e 889}
d02b48c6 890
0821bcd4 891long SSL_SESSION_get_time(const SSL_SESSION *s)
0f113f3e
MC
892{
893 if (s == NULL)
26a7d938
K
894 return 0;
895 return s->time;
0f113f3e 896}
d02b48c6 897
6b691a5c 898long SSL_SESSION_set_time(SSL_SESSION *s, long t)
0f113f3e
MC
899{
900 if (s == NULL)
26a7d938 901 return 0;
0f113f3e 902 s->time = t;
26a7d938 903 return t;
0f113f3e 904}
d02b48c6 905
bd01f649
TS
906int SSL_SESSION_get_protocol_version(const SSL_SESSION *s)
907{
bd01f649
TS
908 return s->ssl_version;
909}
910
5a43d511
MC
911int SSL_SESSION_set_protocol_version(SSL_SESSION *s, int version)
912{
913 s->ssl_version = version;
914 return 1;
915}
916
e9281323
RS
917const SSL_CIPHER *SSL_SESSION_get0_cipher(const SSL_SESSION *s)
918{
919 return s->cipher;
920}
1a993d1d
MC
921
922int SSL_SESSION_set_cipher(SSL_SESSION *s, const SSL_CIPHER *cipher)
923{
924 s->cipher = cipher;
925 return 1;
926}
e9281323 927
4b6b8487
LC
928const char *SSL_SESSION_get0_hostname(const SSL_SESSION *s)
929{
aff8c126 930 return s->ext.hostname;
4b6b8487
LC
931}
932
67738645
MC
933int SSL_SESSION_set1_hostname(SSL_SESSION *s, const char *hostname)
934{
935 OPENSSL_free(s->ext.hostname);
936 if (hostname == NULL) {
937 s->ext.hostname = NULL;
938 return 1;
939 }
940 s->ext.hostname = OPENSSL_strdup(hostname);
941
942 return s->ext.hostname != NULL;
943}
944
f2baac27
MC
945int SSL_SESSION_has_ticket(const SSL_SESSION *s)
946{
aff8c126 947 return (s->ext.ticklen > 0) ? 1 : 0;
f2baac27
MC
948}
949
950unsigned long SSL_SESSION_get_ticket_lifetime_hint(const SSL_SESSION *s)
951{
aff8c126 952 return s->ext.tick_lifetime_hint;
f2baac27
MC
953}
954
48593cb1 955void SSL_SESSION_get0_ticket(const SSL_SESSION *s, const unsigned char **tick,
a230b26e 956 size_t *len)
b7c9187b 957{
aff8c126 958 *len = s->ext.ticklen;
61986d32 959 if (tick != NULL)
aff8c126 960 *tick = s->ext.tick;
b7c9187b
MC
961}
962
fcc47578
MC
963uint32_t SSL_SESSION_get_max_early_data(const SSL_SESSION *s)
964{
965 return s->ext.max_early_data;
966}
967
98e1d934
MC
968int SSL_SESSION_set_max_early_data(SSL_SESSION *s, uint32_t max_early_data)
969{
970 s->ext.max_early_data = max_early_data;
971
972 return 1;
973}
974
67738645
MC
975void SSL_SESSION_get0_alpn_selected(const SSL_SESSION *s,
976 const unsigned char **alpn,
977 size_t *len)
978{
979 *alpn = s->ext.alpn_selected;
980 *len = s->ext.alpn_selected_len;
981}
982
983int SSL_SESSION_set1_alpn_selected(SSL_SESSION *s, const unsigned char *alpn,
984 size_t len)
985{
986 OPENSSL_free(s->ext.alpn_selected);
987 if (alpn == NULL || len == 0) {
988 s->ext.alpn_selected = NULL;
989 s->ext.alpn_selected_len = 0;
990 return 1;
991 }
992 s->ext.alpn_selected = OPENSSL_memdup(alpn, len);
993 if (s->ext.alpn_selected == NULL) {
994 s->ext.alpn_selected_len = 0;
995 return 0;
996 }
997 s->ext.alpn_selected_len = len;
998
999 return 1;
1000}
1001
08557cf2 1002X509 *SSL_SESSION_get0_peer(SSL_SESSION *s)
0f113f3e
MC
1003{
1004 return s->peer;
1005}
1006
1007int SSL_SESSION_set1_id_context(SSL_SESSION *s, const unsigned char *sid_ctx,
1008 unsigned int sid_ctx_len)
1009{
1010 if (sid_ctx_len > SSL_MAX_SID_CTX_LENGTH) {
1011 SSLerr(SSL_F_SSL_SESSION_SET1_ID_CONTEXT,
1012 SSL_R_SSL_SESSION_ID_CONTEXT_TOO_LONG);
1013 return 0;
1014 }
1015 s->sid_ctx_length = sid_ctx_len;
6aad9393
RG
1016 if (sid_ctx != s->sid_ctx)
1017 memcpy(s->sid_ctx, sid_ctx, sid_ctx_len);
0f113f3e
MC
1018
1019 return 1;
1020}
08557cf2 1021
e586eac8
MC
1022int SSL_SESSION_is_resumable(const SSL_SESSION *s)
1023{
1024 /*
1025 * In the case of EAP-FAST, we can have a pre-shared "ticket" without a
1026 * session ID.
1027 */
1028 return !s->not_resumable
1029 && (s->session_id_length > 0 || s->ext.ticklen > 0);
1030}
1031
6b691a5c 1032long SSL_CTX_set_timeout(SSL_CTX *s, long t)
0f113f3e
MC
1033{
1034 long l;
1035 if (s == NULL)
26a7d938 1036 return 0;
0f113f3e
MC
1037 l = s->session_timeout;
1038 s->session_timeout = t;
26a7d938 1039 return l;
0f113f3e 1040}
413c4f45 1041
0821bcd4 1042long SSL_CTX_get_timeout(const SSL_CTX *s)
0f113f3e
MC
1043{
1044 if (s == NULL)
26a7d938
K
1045 return 0;
1046 return s->session_timeout;
0f113f3e 1047}
413c4f45 1048
0f113f3e 1049int SSL_set_session_secret_cb(SSL *s,
aff8c126 1050 tls_session_secret_cb_fn tls_session_secret_cb,
0f113f3e
MC
1051 void *arg)
1052{
1053 if (s == NULL)
26a7d938 1054 return 0;
aff8c126
RS
1055 s->ext.session_secret_cb = tls_session_secret_cb;
1056 s->ext.session_secret_cb_arg = arg;
208fb891 1057 return 1;
0f113f3e 1058}
12bf56c0
DSH
1059
1060int SSL_set_session_ticket_ext_cb(SSL *s, tls_session_ticket_ext_cb_fn cb,
0f113f3e
MC
1061 void *arg)
1062{
1063 if (s == NULL)
26a7d938 1064 return 0;
aff8c126
RS
1065 s->ext.session_ticket_cb = cb;
1066 s->ext.session_ticket_cb_arg = arg;
208fb891 1067 return 1;
0f113f3e 1068}
12bf56c0
DSH
1069
1070int SSL_set_session_ticket_ext(SSL *s, void *ext_data, int ext_len)
0f113f3e
MC
1071{
1072 if (s->version >= TLS1_VERSION) {
aff8c126
RS
1073 OPENSSL_free(s->ext.session_ticket);
1074 s->ext.session_ticket = NULL;
1075 s->ext.session_ticket =
0f113f3e 1076 OPENSSL_malloc(sizeof(TLS_SESSION_TICKET_EXT) + ext_len);
aff8c126 1077 if (s->ext.session_ticket == NULL) {
0f113f3e
MC
1078 SSLerr(SSL_F_SSL_SET_SESSION_TICKET_EXT, ERR_R_MALLOC_FAILURE);
1079 return 0;
1080 }
1081
1ed327f7 1082 if (ext_data != NULL) {
aff8c126
RS
1083 s->ext.session_ticket->length = ext_len;
1084 s->ext.session_ticket->data = s->ext.session_ticket + 1;
1085 memcpy(s->ext.session_ticket->data, ext_data, ext_len);
0f113f3e 1086 } else {
aff8c126
RS
1087 s->ext.session_ticket->length = 0;
1088 s->ext.session_ticket->data = NULL;
0f113f3e
MC
1089 }
1090
1091 return 1;
1092 }
1093
1094 return 0;
1095}
0f113f3e
MC
1096
1097typedef struct timeout_param_st {
1098 SSL_CTX *ctx;
1099 long time;
1100 LHASH_OF(SSL_SESSION) *cache;
1101} TIMEOUT_PARAM;
d02b48c6 1102
2a056de8 1103static void timeout_cb(SSL_SESSION *s, TIMEOUT_PARAM *p)
0f113f3e
MC
1104{
1105 if ((p->time == 0) || (p->time > (s->time + s->timeout))) { /* timeout */
1106 /*
1107 * The reason we don't call SSL_CTX_remove_session() is to save on
1108 * locking overhead
1109 */
1110 (void)lh_SSL_SESSION_delete(p->cache, s);
1111 SSL_SESSION_list_remove(p->ctx, s);
1112 s->not_resumable = 1;
1113 if (p->ctx->remove_session_cb != NULL)
1114 p->ctx->remove_session_cb(p->ctx, s);
1115 SSL_SESSION_free(s);
1116 }
1117}
d02b48c6 1118
2a056de8 1119IMPLEMENT_LHASH_DOALL_ARG(SSL_SESSION, TIMEOUT_PARAM);
3c914840 1120
6b691a5c 1121void SSL_CTX_flush_sessions(SSL_CTX *s, long t)
0f113f3e
MC
1122{
1123 unsigned long i;
1124 TIMEOUT_PARAM tp;
1125
1126 tp.ctx = s;
1127 tp.cache = s->sessions;
1128 if (tp.cache == NULL)
1129 return;
1130 tp.time = t;
16203f7b 1131 CRYPTO_THREAD_write_lock(s->lock);
739a1eb1
RS
1132 i = lh_SSL_SESSION_get_down_load(s->sessions);
1133 lh_SSL_SESSION_set_down_load(s->sessions, 0);
2a056de8 1134 lh_SSL_SESSION_doall_TIMEOUT_PARAM(tp.cache, timeout_cb, &tp);
739a1eb1 1135 lh_SSL_SESSION_set_down_load(s->sessions, i);
16203f7b 1136 CRYPTO_THREAD_unlock(s->lock);
0f113f3e 1137}
d02b48c6 1138
6b691a5c 1139int ssl_clear_bad_session(SSL *s)
0f113f3e
MC
1140{
1141 if ((s->session != NULL) &&
1142 !(s->shutdown & SSL_SENT_SHUTDOWN) &&
1143 !(SSL_in_init(s) || SSL_in_before(s))) {
e2bb9b9b 1144 SSL_CTX_remove_session(s->session_ctx, s->session);
208fb891 1145 return 1;
0f113f3e 1146 } else
26a7d938 1147 return 0;
0f113f3e 1148}
58964a49
RE
1149
1150/* locked by SSL_CTX in the calling function */
6b691a5c 1151static void SSL_SESSION_list_remove(SSL_CTX *ctx, SSL_SESSION *s)
0f113f3e
MC
1152{
1153 if ((s->next == NULL) || (s->prev == NULL))
1154 return;
1155
1156 if (s->next == (SSL_SESSION *)&(ctx->session_cache_tail)) {
1157 /* last element in list */
1158 if (s->prev == (SSL_SESSION *)&(ctx->session_cache_head)) {
1159 /* only one element in list */
1160 ctx->session_cache_head = NULL;
1161 ctx->session_cache_tail = NULL;
1162 } else {
1163 ctx->session_cache_tail = s->prev;
1164 s->prev->next = (SSL_SESSION *)&(ctx->session_cache_tail);
1165 }
1166 } else {
1167 if (s->prev == (SSL_SESSION *)&(ctx->session_cache_head)) {
1168 /* first element in list */
1169 ctx->session_cache_head = s->next;
1170 s->next->prev = (SSL_SESSION *)&(ctx->session_cache_head);
1171 } else {
1172 /* middle of list */
1173 s->next->prev = s->prev;
1174 s->prev->next = s->next;
1175 }
1176 }
1177 s->prev = s->next = NULL;
1178}
58964a49 1179
6b691a5c 1180static void SSL_SESSION_list_add(SSL_CTX *ctx, SSL_SESSION *s)
0f113f3e
MC
1181{
1182 if ((s->next != NULL) && (s->prev != NULL))
1183 SSL_SESSION_list_remove(ctx, s);
1184
1185 if (ctx->session_cache_head == NULL) {
1186 ctx->session_cache_head = s;
1187 ctx->session_cache_tail = s;
1188 s->prev = (SSL_SESSION *)&(ctx->session_cache_head);
1189 s->next = (SSL_SESSION *)&(ctx->session_cache_tail);
1190 } else {
1191 s->next = ctx->session_cache_head;
1192 s->next->prev = s;
1193 s->prev = (SSL_SESSION *)&(ctx->session_cache_head);
1194 ctx->session_cache_head = s;
1195 }
1196}
58964a49 1197
7806f3dd 1198void SSL_CTX_sess_set_new_cb(SSL_CTX *ctx,
a230b26e 1199 int (*cb) (struct ssl_st *ssl, SSL_SESSION *sess))
0f113f3e
MC
1200{
1201 ctx->new_session_cb = cb;
1202}
7806f3dd 1203
0f113f3e
MC
1204int (*SSL_CTX_sess_get_new_cb(SSL_CTX *ctx)) (SSL *ssl, SSL_SESSION *sess) {
1205 return ctx->new_session_cb;
1206}
7806f3dd
NL
1207
1208void SSL_CTX_sess_set_remove_cb(SSL_CTX *ctx,
0f113f3e
MC
1209 void (*cb) (SSL_CTX *ctx, SSL_SESSION *sess))
1210{
1211 ctx->remove_session_cb = cb;
1212}
7806f3dd 1213
0f113f3e
MC
1214void (*SSL_CTX_sess_get_remove_cb(SSL_CTX *ctx)) (SSL_CTX *ctx,
1215 SSL_SESSION *sess) {
1216 return ctx->remove_session_cb;
1217}
7806f3dd
NL
1218
1219void SSL_CTX_sess_set_get_cb(SSL_CTX *ctx,
0f113f3e 1220 SSL_SESSION *(*cb) (struct ssl_st *ssl,
b6981744
EK
1221 const unsigned char *data,
1222 int len, int *copy))
0f113f3e
MC
1223{
1224 ctx->get_session_cb = cb;
1225}
1226
1227SSL_SESSION *(*SSL_CTX_sess_get_get_cb(SSL_CTX *ctx)) (SSL *ssl,
a230b26e
EK
1228 const unsigned char
1229 *data, int len,
1230 int *copy) {
0f113f3e
MC
1231 return ctx->get_session_cb;
1232}
1233
1234void SSL_CTX_set_info_callback(SSL_CTX *ctx,
1235 void (*cb) (const SSL *ssl, int type, int val))
1236{
1237 ctx->info_callback = cb;
1238}
1239
1240void (*SSL_CTX_get_info_callback(SSL_CTX *ctx)) (const SSL *ssl, int type,
1241 int val) {
1242 return ctx->info_callback;
1243}
7806f3dd
NL
1244
1245void SSL_CTX_set_client_cert_cb(SSL_CTX *ctx,
0f113f3e
MC
1246 int (*cb) (SSL *ssl, X509 **x509,
1247 EVP_PKEY **pkey))
1248{
1249 ctx->client_cert_cb = cb;
1250}
7806f3dd 1251
0f113f3e
MC
1252int (*SSL_CTX_get_client_cert_cb(SSL_CTX *ctx)) (SSL *ssl, X509 **x509,
1253 EVP_PKEY **pkey) {
1254 return ctx->client_cert_cb;
1255}
7806f3dd 1256
368888bc
DSH
1257#ifndef OPENSSL_NO_ENGINE
1258int SSL_CTX_set_client_cert_engine(SSL_CTX *ctx, ENGINE *e)
0f113f3e
MC
1259{
1260 if (!ENGINE_init(e)) {
1261 SSLerr(SSL_F_SSL_CTX_SET_CLIENT_CERT_ENGINE, ERR_R_ENGINE_LIB);
1262 return 0;
1263 }
1264 if (!ENGINE_get_ssl_client_cert_function(e)) {
1265 SSLerr(SSL_F_SSL_CTX_SET_CLIENT_CERT_ENGINE,
1266 SSL_R_NO_CLIENT_CERT_METHOD);
1267 ENGINE_finish(e);
1268 return 0;
1269 }
1270 ctx->client_cert_engine = e;
1271 return 1;
1272}
368888bc
DSH
1273#endif
1274
7806f3dd 1275void SSL_CTX_set_cookie_generate_cb(SSL_CTX *ctx,
0f113f3e
MC
1276 int (*cb) (SSL *ssl,
1277 unsigned char *cookie,
1278 unsigned int *cookie_len))
1279{
1280 ctx->app_gen_cookie_cb = cb;
1281}
7806f3dd
NL
1282
1283void SSL_CTX_set_cookie_verify_cb(SSL_CTX *ctx,
a230b26e
EK
1284 int (*cb) (SSL *ssl,
1285 const unsigned char *cookie,
0f113f3e
MC
1286 unsigned int cookie_len))
1287{
1288 ctx->app_verify_cookie_cb = cb;
1289}
7806f3dd 1290
df0fed9a
TS
1291int SSL_SESSION_set1_ticket_appdata(SSL_SESSION *ss, const void *data, size_t len)
1292{
1293 OPENSSL_free(ss->ticket_appdata);
1294 ss->ticket_appdata_len = 0;
1295 if (data == NULL || len == 0) {
1296 ss->ticket_appdata = NULL;
1297 return 1;
1298 }
1299 ss->ticket_appdata = OPENSSL_memdup(data, len);
1300 if (ss->ticket_appdata != NULL) {
1301 ss->ticket_appdata_len = len;
1302 return 1;
1303 }
1304 return 0;
1305}
1306
1307int SSL_SESSION_get0_ticket_appdata(SSL_SESSION *ss, void **data, size_t *len)
1308{
1309 *data = ss->ticket_appdata;
1310 *len = ss->ticket_appdata_len;
1311 return 1;
1312}
1313
3fa2812f
BS
1314void SSL_CTX_set_stateless_cookie_generate_cb(
1315 SSL_CTX *ctx,
1316 int (*cb) (SSL *ssl,
1317 unsigned char *cookie,
1318 size_t *cookie_len))
1319{
1320 ctx->gen_stateless_cookie_cb = cb;
1321}
1322
1323void SSL_CTX_set_stateless_cookie_verify_cb(
1324 SSL_CTX *ctx,
1325 int (*cb) (SSL *ssl,
1326 const unsigned char *cookie,
1327 size_t cookie_len))
1328{
1329 ctx->verify_stateless_cookie_cb = cb;
1330}
1331
a230b26e 1332IMPLEMENT_PEM_rw(SSL_SESSION, SSL_SESSION, PEM_STRING_SSL_SESSION, SSL_SESSION)