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