return correct NID for undefined object
[openssl.git] / ssl / ssl_sess.c
1 /* ssl/ssl_sess.c */
2 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3  * All rights reserved.
4  *
5  * This package is an SSL implementation written
6  * by Eric Young (eay@cryptsoft.com).
7  * The implementation was written so as to conform with Netscapes SSL.
8  *
9  * This library is free for commercial and non-commercial use as long as
10  * the following conditions are aheared to.  The following conditions
11  * apply to all code found in this distribution, be it the RC4, RSA,
12  * lhash, DES, etc., code; not just the SSL code.  The SSL documentation
13  * included with this distribution is covered by the same copyright terms
14  * except that the holder is Tim Hudson (tjh@cryptsoft.com).
15  *
16  * Copyright remains Eric Young's, and as such any Copyright notices in
17  * the code are not to be removed.
18  * If this package is used in a product, Eric Young should be given attribution
19  * as the author of the parts of the library used.
20  * This can be in the form of a textual message at program startup or
21  * in documentation (online or textual) provided with the package.
22  *
23  * Redistribution and use in source and binary forms, with or without
24  * modification, are permitted provided that the following conditions
25  * are met:
26  * 1. Redistributions of source code must retain the copyright
27  *    notice, this list of conditions and the following disclaimer.
28  * 2. Redistributions in binary form must reproduce the above copyright
29  *    notice, this list of conditions and the following disclaimer in the
30  *    documentation and/or other materials provided with the distribution.
31  * 3. All advertising materials mentioning features or use of this software
32  *    must display the following acknowledgement:
33  *    "This product includes cryptographic software written by
34  *     Eric Young (eay@cryptsoft.com)"
35  *    The word 'cryptographic' can be left out if the rouines from the library
36  *    being used are not cryptographic related :-).
37  * 4. If you include any Windows specific code (or a derivative thereof) from
38  *    the apps directory (application code) you must include an acknowledgement:
39  *    "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
40  *
41  * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
42  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
43  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
44  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
45  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
46  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
47  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
48  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
49  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
50  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
51  * SUCH DAMAGE.
52  *
53  * The licence and distribution terms for any publically available version or
54  * derivative of this code cannot be changed.  i.e. this code cannot simply be
55  * copied and put under another distribution licence
56  * [including the GNU Public Licence.]
57  */
58 /* ====================================================================
59  * Copyright (c) 1998-2006 The OpenSSL Project.  All rights reserved.
60  *
61  * Redistribution and use in source and binary forms, with or without
62  * modification, are permitted provided that the following conditions
63  * are met:
64  *
65  * 1. Redistributions of source code must retain the above copyright
66  *    notice, this list of conditions and the following disclaimer.
67  *
68  * 2. Redistributions in binary form must reproduce the above copyright
69  *    notice, this list of conditions and the following disclaimer in
70  *    the documentation and/or other materials provided with the
71  *    distribution.
72  *
73  * 3. All advertising materials mentioning features or use of this
74  *    software must display the following acknowledgment:
75  *    "This product includes software developed by the OpenSSL Project
76  *    for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
77  *
78  * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
79  *    endorse or promote products derived from this software without
80  *    prior written permission. For written permission, please contact
81  *    openssl-core@openssl.org.
82  *
83  * 5. Products derived from this software may not be called "OpenSSL"
84  *    nor may "OpenSSL" appear in their names without prior written
85  *    permission of the OpenSSL Project.
86  *
87  * 6. Redistributions of any form whatsoever must retain the following
88  *    acknowledgment:
89  *    "This product includes software developed by the OpenSSL Project
90  *    for use in the OpenSSL Toolkit (http://www.openssl.org/)"
91  *
92  * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
93  * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
94  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
95  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR
96  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
97  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
98  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
99  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
100  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
101  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
102  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
103  * OF THE POSSIBILITY OF SUCH DAMAGE.
104  * ====================================================================
105  *
106  * This product includes cryptographic software written by Eric Young
107  * (eay@cryptsoft.com).  This product includes software written by Tim
108  * Hudson (tjh@cryptsoft.com).
109  *
110  */
111 /* ====================================================================
112  * Copyright 2005 Nokia. All rights reserved.
113  *
114  * The portions of the attached software ("Contribution") is developed by
115  * Nokia Corporation and is licensed pursuant to the OpenSSL open source
116  * license.
117  *
118  * The Contribution, originally written by Mika Kousa and Pasi Eronen of
119  * Nokia Corporation, consists of the "PSK" (Pre-Shared Key) ciphersuites
120  * support (see RFC 4279) to OpenSSL.
121  *
122  * No patent licenses or other rights except those expressly stated in
123  * the OpenSSL open source license shall be deemed granted or received
124  * expressly, by implication, estoppel, or otherwise.
125  *
126  * No assurances are provided by Nokia that the Contribution does not
127  * infringe the patent or other intellectual property rights of any third
128  * party or that the license provides you with all the necessary rights
129  * to make use of the Contribution.
130  *
131  * THE SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. IN
132  * ADDITION TO THE DISCLAIMERS INCLUDED IN THE LICENSE, NOKIA
133  * SPECIFICALLY DISCLAIMS ANY LIABILITY FOR CLAIMS BROUGHT BY YOU OR ANY
134  * OTHER ENTITY BASED ON INFRINGEMENT OF INTELLECTUAL PROPERTY RIGHTS OR
135  * OTHERWISE.
136  */
137
138 #include <stdio.h>
139 #include <openssl/lhash.h>
140 #include <openssl/rand.h>
141 #ifndef OPENSSL_NO_ENGINE
142 # include <openssl/engine.h>
143 #endif
144 #include "ssl_locl.h"
145
146 static void SSL_SESSION_list_remove(SSL_CTX *ctx, SSL_SESSION *s);
147 static void SSL_SESSION_list_add(SSL_CTX *ctx, SSL_SESSION *s);
148 static int remove_session_lock(SSL_CTX *ctx, SSL_SESSION *c, int lck);
149
150 SSL_SESSION *SSL_get_session(const SSL *ssl)
151 /* aka SSL_get0_session; gets 0 objects, just returns a copy of the pointer */
152 {
153     return (ssl->session);
154 }
155
156 SSL_SESSION *SSL_get1_session(SSL *ssl)
157 /* variant of SSL_get_session: caller really gets something */
158 {
159     SSL_SESSION *sess;
160     /*
161      * Need to lock this all up rather than just use CRYPTO_add so that
162      * somebody doesn't free ssl->session between when we check it's non-null
163      * and when we up the reference count.
164      */
165     CRYPTO_w_lock(CRYPTO_LOCK_SSL_SESSION);
166     sess = ssl->session;
167     if (sess)
168         sess->references++;
169     CRYPTO_w_unlock(CRYPTO_LOCK_SSL_SESSION);
170     return (sess);
171 }
172
173 int SSL_SESSION_get_ex_new_index(long argl, void *argp,
174                                  CRYPTO_EX_new *new_func,
175                                  CRYPTO_EX_dup *dup_func,
176                                  CRYPTO_EX_free *free_func)
177 {
178     return CRYPTO_get_ex_new_index(CRYPTO_EX_INDEX_SSL_SESSION, argl, argp,
179                                    new_func, dup_func, free_func);
180 }
181
182 int SSL_SESSION_set_ex_data(SSL_SESSION *s, int idx, void *arg)
183 {
184     return (CRYPTO_set_ex_data(&s->ex_data, idx, arg));
185 }
186
187 void *SSL_SESSION_get_ex_data(const SSL_SESSION *s, int idx)
188 {
189     return (CRYPTO_get_ex_data(&s->ex_data, idx));
190 }
191
192 SSL_SESSION *SSL_SESSION_new(void)
193 {
194     SSL_SESSION *ss;
195
196     ss = (SSL_SESSION *)OPENSSL_malloc(sizeof(SSL_SESSION));
197     if (ss == NULL) {
198         SSLerr(SSL_F_SSL_SESSION_NEW, ERR_R_MALLOC_FAILURE);
199         return (0);
200     }
201     memset(ss, 0, sizeof(SSL_SESSION));
202
203     ss->verify_result = 1;      /* avoid 0 (= X509_V_OK) just in case */
204     ss->references = 1;
205     ss->timeout = 60 * 5 + 4;   /* 5 minute timeout by default */
206     ss->time = (unsigned long)time(NULL);
207     ss->prev = NULL;
208     ss->next = NULL;
209     ss->compress_meth = 0;
210 #ifndef OPENSSL_NO_TLSEXT
211     ss->tlsext_hostname = NULL;
212 # ifndef OPENSSL_NO_EC
213     ss->tlsext_ecpointformatlist_length = 0;
214     ss->tlsext_ecpointformatlist = NULL;
215     ss->tlsext_ellipticcurvelist_length = 0;
216     ss->tlsext_ellipticcurvelist = NULL;
217 # endif
218 #endif
219     CRYPTO_new_ex_data(CRYPTO_EX_INDEX_SSL_SESSION, ss, &ss->ex_data);
220 #ifndef OPENSSL_NO_PSK
221     ss->psk_identity_hint = NULL;
222     ss->psk_identity = NULL;
223 #endif
224 #ifndef OPENSSL_NO_SRP
225     ss->srp_username = NULL;
226 #endif
227     return (ss);
228 }
229
230 /*
231  * Create a new SSL_SESSION and duplicate the contents of |src| into it. If
232  * ticket == 0 then no ticket information is duplicated, otherwise it is.
233  */
234 SSL_SESSION *ssl_session_dup(SSL_SESSION *src, int ticket)
235 {
236     SSL_SESSION *dest;
237
238     dest = OPENSSL_malloc(sizeof(*src));
239     if (dest == NULL) {
240         goto err;
241     }
242     memcpy(dest, src, sizeof(*dest));
243
244 #ifndef OPENSSL_NO_KRB5
245     dest->krb5_client_princ_len = dest->krb5_client_princ_len;
246     if (src->krb5_client_princ_len > 0)
247         memcpy(dest->krb5_client_princ, src->krb5_client_princ,
248                src->krb5_client_princ_len);
249 #endif
250
251 #ifndef OPENSSL_NO_PSK
252     if (src->psk_identity_hint) {
253         dest->psk_identity_hint = BUF_strdup(src->psk_identity_hint);
254         if (dest->psk_identity_hint == NULL) {
255             goto err;
256         }
257     } else {
258         dest->psk_identity_hint = NULL;
259     }
260     if (src->psk_identity) {
261         dest->psk_identity = BUF_strdup(src->psk_identity);
262         if (dest->psk_identity == NULL) {
263             goto err;
264         }
265     } else {
266         dest->psk_identity = NULL;
267     }
268 #endif
269
270     if (src->sess_cert != NULL)
271         CRYPTO_add(&src->sess_cert->references, 1, CRYPTO_LOCK_SSL_SESS_CERT);
272
273     if (src->peer != NULL)
274         CRYPTO_add(&src->peer->references, 1, CRYPTO_LOCK_X509);
275
276     dest->references = 1;
277
278     if(src->ciphers != NULL) {
279         dest->ciphers = sk_SSL_CIPHER_dup(src->ciphers);
280         if (dest->ciphers == NULL)
281             goto err;
282     } else {
283         dest->ciphers = NULL;
284     }
285
286     if (!CRYPTO_dup_ex_data(CRYPTO_EX_INDEX_SSL_SESSION,
287                                             &dest->ex_data, &src->ex_data)) {
288         goto err;
289     }
290
291     /* We deliberately don't copy the prev and next pointers */
292     dest->prev = NULL;
293     dest->next = NULL;
294
295 #ifndef OPENSSL_NO_TLSEXT
296     if (src->tlsext_hostname) {
297         dest->tlsext_hostname = BUF_strdup(src->tlsext_hostname);
298         if (dest->tlsext_hostname == NULL) {
299             goto err;
300         }
301     } else {
302         dest->tlsext_hostname = NULL;
303     }
304 # ifndef OPENSSL_NO_EC
305     if (src->tlsext_ecpointformatlist) {
306         dest->tlsext_ecpointformatlist =
307             BUF_memdup(src->tlsext_ecpointformatlist,
308                        src->tlsext_ecpointformatlist_length);
309         if (dest->tlsext_ecpointformatlist == NULL)
310             goto err;
311         dest->tlsext_ecpointformatlist_length =
312             src->tlsext_ecpointformatlist_length;
313     }
314     if (src->tlsext_ellipticcurvelist) {
315         dest->tlsext_ellipticcurvelist =
316             BUF_memdup(src->tlsext_ellipticcurvelist,
317                        src->tlsext_ellipticcurvelist_length);
318         if (dest->tlsext_ellipticcurvelist == NULL)
319             goto err;
320         dest->tlsext_ellipticcurvelist_length =
321             src->tlsext_ellipticcurvelist_length;
322     }
323 # endif
324 #endif
325
326     if (ticket != 0) {
327         dest->tlsext_tick_lifetime_hint = src->tlsext_tick_lifetime_hint;
328         dest->tlsext_ticklen = src->tlsext_ticklen;
329         if((dest->tlsext_tick = OPENSSL_malloc(src->tlsext_ticklen)) == NULL) {
330             goto err;
331         }
332     }
333
334 #ifndef OPENSSL_NO_SRP
335     dest->srp_username = NULL;
336     if (src->srp_username) {
337         dest->srp_username = BUF_strdup(src->srp_username);
338         if (dest->srp_username == NULL) {
339             goto err;
340         }
341     } else {
342         dest->srp_username = NULL;
343     }
344 #endif
345
346     return dest;
347 err:
348     SSLerr(SSL_F_SSL_SESSION_DUP, ERR_R_MALLOC_FAILURE);
349     SSL_SESSION_free(dest);
350     return NULL;
351 }
352
353 const unsigned char *SSL_SESSION_get_id(const SSL_SESSION *s,
354                                         unsigned int *len)
355 {
356     if (len)
357         *len = s->session_id_length;
358     return s->session_id;
359 }
360
361 unsigned int SSL_SESSION_get_compress_id(const SSL_SESSION *s)
362 {
363     return s->compress_meth;
364 }
365
366 /*
367  * Even with SSLv2, we have 16 bytes (128 bits) of session ID space.
368  * SSLv3/TLSv1 has 32 bytes (256 bits). As such, filling the ID with random
369  * gunk repeatedly until we have no conflict is going to complete in one
370  * iteration pretty much "most" of the time (btw: understatement). So, if it
371  * takes us 10 iterations and we still can't avoid a conflict - well that's a
372  * reasonable point to call it quits. Either the RAND code is broken or
373  * someone is trying to open roughly very close to 2^128 (or 2^256) SSL
374  * sessions to our server. How you might store that many sessions is perhaps
375  * a more interesting question ...
376  */
377
378 #define MAX_SESS_ID_ATTEMPTS 10
379 static int def_generate_session_id(const SSL *ssl, unsigned char *id,
380                                    unsigned int *id_len)
381 {
382     unsigned int retry = 0;
383     do
384         if (RAND_pseudo_bytes(id, *id_len) <= 0)
385             return 0;
386     while (SSL_has_matching_session_id(ssl, id, *id_len) &&
387            (++retry < MAX_SESS_ID_ATTEMPTS)) ;
388     if (retry < MAX_SESS_ID_ATTEMPTS)
389         return 1;
390     /* else - woops a session_id match */
391     /*
392      * XXX We should also check the external cache -- but the probability of
393      * a collision is negligible, and we could not prevent the concurrent
394      * creation of sessions with identical IDs since we currently don't have
395      * means to atomically check whether a session ID already exists and make
396      * a reservation for it if it does not (this problem applies to the
397      * internal cache as well).
398      */
399     return 0;
400 }
401
402 int ssl_get_new_session(SSL *s, int session)
403 {
404     /* This gets used by clients and servers. */
405
406     unsigned int tmp;
407     SSL_SESSION *ss = NULL;
408     GEN_SESSION_CB cb = def_generate_session_id;
409
410     if ((ss = SSL_SESSION_new()) == NULL)
411         return (0);
412
413     /* If the context has a default timeout, use it */
414     if (s->session_ctx->session_timeout == 0)
415         ss->timeout = SSL_get_default_timeout(s);
416     else
417         ss->timeout = s->session_ctx->session_timeout;
418
419     if (s->session != NULL) {
420         SSL_SESSION_free(s->session);
421         s->session = NULL;
422     }
423
424     if (session) {
425         if (s->version == SSL2_VERSION) {
426             ss->ssl_version = SSL2_VERSION;
427             ss->session_id_length = SSL2_SSL_SESSION_ID_LENGTH;
428         } else if (s->version == SSL3_VERSION) {
429             ss->ssl_version = SSL3_VERSION;
430             ss->session_id_length = SSL3_SSL_SESSION_ID_LENGTH;
431         } else if (s->version == TLS1_VERSION) {
432             ss->ssl_version = TLS1_VERSION;
433             ss->session_id_length = SSL3_SSL_SESSION_ID_LENGTH;
434         } else if (s->version == TLS1_1_VERSION) {
435             ss->ssl_version = TLS1_1_VERSION;
436             ss->session_id_length = SSL3_SSL_SESSION_ID_LENGTH;
437         } else if (s->version == TLS1_2_VERSION) {
438             ss->ssl_version = TLS1_2_VERSION;
439             ss->session_id_length = SSL3_SSL_SESSION_ID_LENGTH;
440         } else if (s->version == DTLS1_BAD_VER) {
441             ss->ssl_version = DTLS1_BAD_VER;
442             ss->session_id_length = SSL3_SSL_SESSION_ID_LENGTH;
443         } else if (s->version == DTLS1_VERSION) {
444             ss->ssl_version = DTLS1_VERSION;
445             ss->session_id_length = SSL3_SSL_SESSION_ID_LENGTH;
446         } else {
447             SSLerr(SSL_F_SSL_GET_NEW_SESSION, SSL_R_UNSUPPORTED_SSL_VERSION);
448             SSL_SESSION_free(ss);
449             return (0);
450         }
451 #ifndef OPENSSL_NO_TLSEXT
452         /*-
453          * If RFC5077 ticket, use empty session ID (as server).
454          * Note that:
455          * (a) ssl_get_prev_session() does lookahead into the
456          *     ClientHello extensions to find the session ticket.
457          *     When ssl_get_prev_session() fails, s3_srvr.c calls
458          *     ssl_get_new_session() in ssl3_get_client_hello().
459          *     At that point, it has not yet parsed the extensions,
460          *     however, because of the lookahead, it already knows
461          *     whether a ticket is expected or not.
462          *
463          * (b) s3_clnt.c calls ssl_get_new_session() before parsing
464          *     ServerHello extensions, and before recording the session
465          *     ID received from the server, so this block is a noop.
466          */
467         if (s->tlsext_ticket_expected) {
468             ss->session_id_length = 0;
469             goto sess_id_done;
470         }
471 #endif
472         /* Choose which callback will set the session ID */
473         CRYPTO_r_lock(CRYPTO_LOCK_SSL_CTX);
474         if (s->generate_session_id)
475             cb = s->generate_session_id;
476         else if (s->session_ctx->generate_session_id)
477             cb = s->session_ctx->generate_session_id;
478         CRYPTO_r_unlock(CRYPTO_LOCK_SSL_CTX);
479         /* Choose a session ID */
480         tmp = ss->session_id_length;
481         if (!cb(s, ss->session_id, &tmp)) {
482             /* The callback failed */
483             SSLerr(SSL_F_SSL_GET_NEW_SESSION,
484                    SSL_R_SSL_SESSION_ID_CALLBACK_FAILED);
485             SSL_SESSION_free(ss);
486             return (0);
487         }
488         /*
489          * Don't allow the callback to set the session length to zero. nor
490          * set it higher than it was.
491          */
492         if (!tmp || (tmp > ss->session_id_length)) {
493             /* The callback set an illegal length */
494             SSLerr(SSL_F_SSL_GET_NEW_SESSION,
495                    SSL_R_SSL_SESSION_ID_HAS_BAD_LENGTH);
496             SSL_SESSION_free(ss);
497             return (0);
498         }
499         /* If the session length was shrunk and we're SSLv2, pad it */
500         if ((tmp < ss->session_id_length) && (s->version == SSL2_VERSION))
501             memset(ss->session_id + tmp, 0, ss->session_id_length - tmp);
502         else
503             ss->session_id_length = tmp;
504         /* Finally, check for a conflict */
505         if (SSL_has_matching_session_id(s, ss->session_id,
506                                         ss->session_id_length)) {
507             SSLerr(SSL_F_SSL_GET_NEW_SESSION, SSL_R_SSL_SESSION_ID_CONFLICT);
508             SSL_SESSION_free(ss);
509             return (0);
510         }
511 #ifndef OPENSSL_NO_TLSEXT
512  sess_id_done:
513         if (s->tlsext_hostname) {
514             ss->tlsext_hostname = BUF_strdup(s->tlsext_hostname);
515             if (ss->tlsext_hostname == NULL) {
516                 SSLerr(SSL_F_SSL_GET_NEW_SESSION, ERR_R_INTERNAL_ERROR);
517                 SSL_SESSION_free(ss);
518                 return 0;
519             }
520         }
521 # ifndef OPENSSL_NO_EC
522         if (s->tlsext_ecpointformatlist) {
523             if (ss->tlsext_ecpointformatlist != NULL)
524                 OPENSSL_free(ss->tlsext_ecpointformatlist);
525             if ((ss->tlsext_ecpointformatlist =
526                  OPENSSL_malloc(s->tlsext_ecpointformatlist_length)) ==
527                 NULL) {
528                 SSLerr(SSL_F_SSL_GET_NEW_SESSION, ERR_R_MALLOC_FAILURE);
529                 SSL_SESSION_free(ss);
530                 return 0;
531             }
532             ss->tlsext_ecpointformatlist_length =
533                 s->tlsext_ecpointformatlist_length;
534             memcpy(ss->tlsext_ecpointformatlist, s->tlsext_ecpointformatlist,
535                    s->tlsext_ecpointformatlist_length);
536         }
537         if (s->tlsext_ellipticcurvelist) {
538             if (ss->tlsext_ellipticcurvelist != NULL)
539                 OPENSSL_free(ss->tlsext_ellipticcurvelist);
540             if ((ss->tlsext_ellipticcurvelist =
541                  OPENSSL_malloc(s->tlsext_ellipticcurvelist_length)) ==
542                 NULL) {
543                 SSLerr(SSL_F_SSL_GET_NEW_SESSION, ERR_R_MALLOC_FAILURE);
544                 SSL_SESSION_free(ss);
545                 return 0;
546             }
547             ss->tlsext_ellipticcurvelist_length =
548                 s->tlsext_ellipticcurvelist_length;
549             memcpy(ss->tlsext_ellipticcurvelist, s->tlsext_ellipticcurvelist,
550                    s->tlsext_ellipticcurvelist_length);
551         }
552 # endif
553 #endif
554     } else {
555         ss->session_id_length = 0;
556     }
557
558     if (s->sid_ctx_length > sizeof ss->sid_ctx) {
559         SSLerr(SSL_F_SSL_GET_NEW_SESSION, ERR_R_INTERNAL_ERROR);
560         SSL_SESSION_free(ss);
561         return 0;
562     }
563     memcpy(ss->sid_ctx, s->sid_ctx, s->sid_ctx_length);
564     ss->sid_ctx_length = s->sid_ctx_length;
565     s->session = ss;
566     ss->ssl_version = s->version;
567     ss->verify_result = X509_V_OK;
568
569     return (1);
570 }
571
572 /*-
573  * ssl_get_prev attempts to find an SSL_SESSION to be used to resume this
574  * connection. It is only called by servers.
575  *
576  *   session_id: points at the session ID in the ClientHello. This code will
577  *       read past the end of this in order to parse out the session ticket
578  *       extension, if any.
579  *   len: the length of the session ID.
580  *   limit: a pointer to the first byte after the ClientHello.
581  *
582  * Returns:
583  *   -1: error
584  *    0: a session may have been found.
585  *
586  * Side effects:
587  *   - If a session is found then s->session is pointed at it (after freeing an
588  *     existing session if need be) and s->verify_result is set from the session.
589  *   - Both for new and resumed sessions, s->tlsext_ticket_expected is set to 1
590  *     if the server should issue a new session ticket (to 0 otherwise).
591  */
592 int ssl_get_prev_session(SSL *s, unsigned char *session_id, int len,
593                          const unsigned char *limit)
594 {
595     /* This is used only by servers. */
596
597     SSL_SESSION *ret = NULL;
598     int fatal = 0;
599     int try_session_cache = 1;
600 #ifndef OPENSSL_NO_TLSEXT
601     int r;
602 #endif
603
604     if (len < 0 || len > SSL_MAX_SSL_SESSION_ID_LENGTH)
605         goto err;
606
607     if (session_id + len > limit) {
608         fatal = 1;
609         goto err;
610     }
611
612     if (len == 0)
613         try_session_cache = 0;
614
615 #ifndef OPENSSL_NO_TLSEXT
616     /* sets s->tlsext_ticket_expected */
617     r = tls1_process_ticket(s, session_id, len, limit, &ret);
618     switch (r) {
619     case -1:                   /* Error during processing */
620         fatal = 1;
621         goto err;
622     case 0:                    /* No ticket found */
623     case 1:                    /* Zero length ticket found */
624         break;                  /* Ok to carry on processing session id. */
625     case 2:                    /* Ticket found but not decrypted. */
626     case 3:                    /* Ticket decrypted, *ret has been set. */
627         try_session_cache = 0;
628         break;
629     default:
630         abort();
631     }
632 #endif
633
634     if (try_session_cache &&
635         ret == NULL &&
636         !(s->session_ctx->session_cache_mode &
637           SSL_SESS_CACHE_NO_INTERNAL_LOOKUP)) {
638         SSL_SESSION data;
639         data.ssl_version = s->version;
640         data.session_id_length = len;
641         if (len == 0)
642             return 0;
643         memcpy(data.session_id, session_id, len);
644         CRYPTO_r_lock(CRYPTO_LOCK_SSL_CTX);
645         ret = lh_SSL_SESSION_retrieve(s->session_ctx->sessions, &data);
646         if (ret != NULL) {
647             /* don't allow other threads to steal it: */
648             CRYPTO_add(&ret->references, 1, CRYPTO_LOCK_SSL_SESSION);
649         }
650         CRYPTO_r_unlock(CRYPTO_LOCK_SSL_CTX);
651         if (ret == NULL)
652             s->session_ctx->stats.sess_miss++;
653     }
654
655     if (try_session_cache &&
656         ret == NULL && s->session_ctx->get_session_cb != NULL) {
657         int copy = 1;
658
659         if ((ret = s->session_ctx->get_session_cb(s, session_id, len, &copy))) {
660             s->session_ctx->stats.sess_cb_hit++;
661
662             /*
663              * Increment reference count now if the session callback asks us
664              * to do so (note that if the session structures returned by the
665              * callback are shared between threads, it must handle the
666              * reference count itself [i.e. copy == 0], or things won't be
667              * thread-safe).
668              */
669             if (copy)
670                 CRYPTO_add(&ret->references, 1, CRYPTO_LOCK_SSL_SESSION);
671
672             /*
673              * Add the externally cached session to the internal cache as
674              * well if and only if we are supposed to.
675              */
676             if (!
677                 (s->session_ctx->session_cache_mode &
678                  SSL_SESS_CACHE_NO_INTERNAL_STORE))
679                 /*
680                  * The following should not return 1, otherwise, things are
681                  * very strange
682                  */
683                 SSL_CTX_add_session(s->session_ctx, ret);
684         }
685     }
686
687     if (ret == NULL)
688         goto err;
689
690     /* Now ret is non-NULL and we own one of its reference counts. */
691
692     if (ret->sid_ctx_length != s->sid_ctx_length
693         || memcmp(ret->sid_ctx, s->sid_ctx, ret->sid_ctx_length)) {
694         /*
695          * We have the session requested by the client, but we don't want to
696          * use it in this context.
697          */
698         goto err;               /* treat like cache miss */
699     }
700
701     if ((s->verify_mode & SSL_VERIFY_PEER) && s->sid_ctx_length == 0) {
702         /*
703          * We can't be sure if this session is being used out of context,
704          * which is especially important for SSL_VERIFY_PEER. The application
705          * should have used SSL[_CTX]_set_session_id_context. For this error
706          * case, we generate an error instead of treating the event like a
707          * cache miss (otherwise it would be easy for applications to
708          * effectively disable the session cache by accident without anyone
709          * noticing).
710          */
711
712         SSLerr(SSL_F_SSL_GET_PREV_SESSION,
713                SSL_R_SESSION_ID_CONTEXT_UNINITIALIZED);
714         fatal = 1;
715         goto err;
716     }
717
718     if (ret->cipher == NULL) {
719         unsigned char buf[5], *p;
720         unsigned long l;
721
722         p = buf;
723         l = ret->cipher_id;
724         l2n(l, p);
725         if ((ret->ssl_version >> 8) >= SSL3_VERSION_MAJOR)
726             ret->cipher = ssl_get_cipher_by_char(s, &(buf[2]));
727         else
728             ret->cipher = ssl_get_cipher_by_char(s, &(buf[1]));
729         if (ret->cipher == NULL)
730             goto err;
731     }
732
733     if (ret->timeout < (long)(time(NULL) - ret->time)) { /* timeout */
734         s->session_ctx->stats.sess_timeout++;
735         if (try_session_cache) {
736             /* session was from the cache, so remove it */
737             SSL_CTX_remove_session(s->session_ctx, ret);
738         }
739         goto err;
740     }
741
742     s->session_ctx->stats.sess_hit++;
743
744     if (s->session != NULL)
745         SSL_SESSION_free(s->session);
746     s->session = ret;
747     s->verify_result = s->session->verify_result;
748     return 1;
749
750  err:
751     if (ret != NULL) {
752         SSL_SESSION_free(ret);
753 #ifndef OPENSSL_NO_TLSEXT
754         if (!try_session_cache) {
755             /*
756              * The session was from a ticket, so we should issue a ticket for
757              * the new session
758              */
759             s->tlsext_ticket_expected = 1;
760         }
761 #endif
762     }
763     if (fatal)
764         return -1;
765     else
766         return 0;
767 }
768
769 int SSL_CTX_add_session(SSL_CTX *ctx, SSL_SESSION *c)
770 {
771     int ret = 0;
772     SSL_SESSION *s;
773
774     /*
775      * add just 1 reference count for the SSL_CTX's session cache even though
776      * it has two ways of access: each session is in a doubly linked list and
777      * an lhash
778      */
779     CRYPTO_add(&c->references, 1, CRYPTO_LOCK_SSL_SESSION);
780     /*
781      * if session c is in already in cache, we take back the increment later
782      */
783
784     CRYPTO_w_lock(CRYPTO_LOCK_SSL_CTX);
785     s = lh_SSL_SESSION_insert(ctx->sessions, c);
786
787     /*
788      * s != NULL iff we already had a session with the given PID. In this
789      * case, s == c should hold (then we did not really modify
790      * ctx->sessions), or we're in trouble.
791      */
792     if (s != NULL && s != c) {
793         /* We *are* in trouble ... */
794         SSL_SESSION_list_remove(ctx, s);
795         SSL_SESSION_free(s);
796         /*
797          * ... so pretend the other session did not exist in cache (we cannot
798          * handle two SSL_SESSION structures with identical session ID in the
799          * same cache, which could happen e.g. when two threads concurrently
800          * obtain the same session from an external cache)
801          */
802         s = NULL;
803     }
804
805     /* Put at the head of the queue unless it is already in the cache */
806     if (s == NULL)
807         SSL_SESSION_list_add(ctx, c);
808
809     if (s != NULL) {
810         /*
811          * existing cache entry -- decrement previously incremented reference
812          * count because it already takes into account the cache
813          */
814
815         SSL_SESSION_free(s);    /* s == c */
816         ret = 0;
817     } else {
818         /*
819          * new cache entry -- remove old ones if cache has become too large
820          */
821
822         ret = 1;
823
824         if (SSL_CTX_sess_get_cache_size(ctx) > 0) {
825             while (SSL_CTX_sess_number(ctx) >
826                    SSL_CTX_sess_get_cache_size(ctx)) {
827                 if (!remove_session_lock(ctx, ctx->session_cache_tail, 0))
828                     break;
829                 else
830                     ctx->stats.sess_cache_full++;
831             }
832         }
833     }
834     CRYPTO_w_unlock(CRYPTO_LOCK_SSL_CTX);
835     return (ret);
836 }
837
838 int SSL_CTX_remove_session(SSL_CTX *ctx, SSL_SESSION *c)
839 {
840     return remove_session_lock(ctx, c, 1);
841 }
842
843 static int remove_session_lock(SSL_CTX *ctx, SSL_SESSION *c, int lck)
844 {
845     SSL_SESSION *r;
846     int ret = 0;
847
848     if ((c != NULL) && (c->session_id_length != 0)) {
849         if (lck)
850             CRYPTO_w_lock(CRYPTO_LOCK_SSL_CTX);
851         if ((r = lh_SSL_SESSION_retrieve(ctx->sessions, c)) == c) {
852             ret = 1;
853             r = lh_SSL_SESSION_delete(ctx->sessions, c);
854             SSL_SESSION_list_remove(ctx, c);
855         }
856
857         if (lck)
858             CRYPTO_w_unlock(CRYPTO_LOCK_SSL_CTX);
859
860         if (ret) {
861             r->not_resumable = 1;
862             if (ctx->remove_session_cb != NULL)
863                 ctx->remove_session_cb(ctx, r);
864             SSL_SESSION_free(r);
865         }
866     } else
867         ret = 0;
868     return (ret);
869 }
870
871 void SSL_SESSION_free(SSL_SESSION *ss)
872 {
873     int i;
874
875     if (ss == NULL)
876         return;
877
878     i = CRYPTO_add(&ss->references, -1, CRYPTO_LOCK_SSL_SESSION);
879 #ifdef REF_PRINT
880     REF_PRINT("SSL_SESSION", ss);
881 #endif
882     if (i > 0)
883         return;
884 #ifdef REF_CHECK
885     if (i < 0) {
886         fprintf(stderr, "SSL_SESSION_free, bad reference count\n");
887         abort();                /* ok */
888     }
889 #endif
890
891     CRYPTO_free_ex_data(CRYPTO_EX_INDEX_SSL_SESSION, ss, &ss->ex_data);
892
893     OPENSSL_cleanse(ss->key_arg, sizeof ss->key_arg);
894     OPENSSL_cleanse(ss->master_key, sizeof ss->master_key);
895     OPENSSL_cleanse(ss->session_id, sizeof ss->session_id);
896     if (ss->sess_cert != NULL)
897         ssl_sess_cert_free(ss->sess_cert);
898     if (ss->peer != NULL)
899         X509_free(ss->peer);
900     if (ss->ciphers != NULL)
901         sk_SSL_CIPHER_free(ss->ciphers);
902 #ifndef OPENSSL_NO_TLSEXT
903     if (ss->tlsext_hostname != NULL)
904         OPENSSL_free(ss->tlsext_hostname);
905     if (ss->tlsext_tick != NULL)
906         OPENSSL_free(ss->tlsext_tick);
907 # ifndef OPENSSL_NO_EC
908     ss->tlsext_ecpointformatlist_length = 0;
909     if (ss->tlsext_ecpointformatlist != NULL)
910         OPENSSL_free(ss->tlsext_ecpointformatlist);
911     ss->tlsext_ellipticcurvelist_length = 0;
912     if (ss->tlsext_ellipticcurvelist != NULL)
913         OPENSSL_free(ss->tlsext_ellipticcurvelist);
914 # endif                         /* OPENSSL_NO_EC */
915 #endif
916 #ifndef OPENSSL_NO_PSK
917     if (ss->psk_identity_hint != NULL)
918         OPENSSL_free(ss->psk_identity_hint);
919     if (ss->psk_identity != NULL)
920         OPENSSL_free(ss->psk_identity);
921 #endif
922 #ifndef OPENSSL_NO_SRP
923     if (ss->srp_username != NULL)
924         OPENSSL_free(ss->srp_username);
925 #endif
926     OPENSSL_cleanse(ss, sizeof(*ss));
927     OPENSSL_free(ss);
928 }
929
930 int SSL_set_session(SSL *s, SSL_SESSION *session)
931 {
932     int ret = 0;
933     const SSL_METHOD *meth;
934
935     if (session != NULL) {
936         meth = s->ctx->method->get_ssl_method(session->ssl_version);
937         if (meth == NULL)
938             meth = s->method->get_ssl_method(session->ssl_version);
939         if (meth == NULL) {
940             SSLerr(SSL_F_SSL_SET_SESSION, SSL_R_UNABLE_TO_FIND_SSL_METHOD);
941             return (0);
942         }
943
944         if (meth != s->method) {
945             if (!SSL_set_ssl_method(s, meth))
946                 return (0);
947         }
948 #ifndef OPENSSL_NO_KRB5
949         if (s->kssl_ctx && !s->kssl_ctx->client_princ &&
950             session->krb5_client_princ_len > 0) {
951             s->kssl_ctx->client_princ =
952                 (char *)OPENSSL_malloc(session->krb5_client_princ_len + 1);
953             memcpy(s->kssl_ctx->client_princ, session->krb5_client_princ,
954                    session->krb5_client_princ_len);
955             s->kssl_ctx->client_princ[session->krb5_client_princ_len] = '\0';
956         }
957 #endif                          /* OPENSSL_NO_KRB5 */
958
959         /* CRYPTO_w_lock(CRYPTO_LOCK_SSL); */
960         CRYPTO_add(&session->references, 1, CRYPTO_LOCK_SSL_SESSION);
961         if (s->session != NULL)
962             SSL_SESSION_free(s->session);
963         s->session = session;
964         s->verify_result = s->session->verify_result;
965         /* CRYPTO_w_unlock(CRYPTO_LOCK_SSL); */
966         ret = 1;
967     } else {
968         if (s->session != NULL) {
969             SSL_SESSION_free(s->session);
970             s->session = NULL;
971         }
972
973         meth = s->ctx->method;
974         if (meth != s->method) {
975             if (!SSL_set_ssl_method(s, meth))
976                 return (0);
977         }
978         ret = 1;
979     }
980     return (ret);
981 }
982
983 long SSL_SESSION_set_timeout(SSL_SESSION *s, long t)
984 {
985     if (s == NULL)
986         return (0);
987     s->timeout = t;
988     return (1);
989 }
990
991 long SSL_SESSION_get_timeout(const SSL_SESSION *s)
992 {
993     if (s == NULL)
994         return (0);
995     return (s->timeout);
996 }
997
998 long SSL_SESSION_get_time(const SSL_SESSION *s)
999 {
1000     if (s == NULL)
1001         return (0);
1002     return (s->time);
1003 }
1004
1005 long SSL_SESSION_set_time(SSL_SESSION *s, long t)
1006 {
1007     if (s == NULL)
1008         return (0);
1009     s->time = t;
1010     return (t);
1011 }
1012
1013 X509 *SSL_SESSION_get0_peer(SSL_SESSION *s)
1014 {
1015     return s->peer;
1016 }
1017
1018 int SSL_SESSION_set1_id_context(SSL_SESSION *s, const unsigned char *sid_ctx,
1019                                 unsigned int sid_ctx_len)
1020 {
1021     if (sid_ctx_len > SSL_MAX_SID_CTX_LENGTH) {
1022         SSLerr(SSL_F_SSL_SESSION_SET1_ID_CONTEXT,
1023                SSL_R_SSL_SESSION_ID_CONTEXT_TOO_LONG);
1024         return 0;
1025     }
1026     s->sid_ctx_length = sid_ctx_len;
1027     memcpy(s->sid_ctx, sid_ctx, sid_ctx_len);
1028
1029     return 1;
1030 }
1031
1032 long SSL_CTX_set_timeout(SSL_CTX *s, long t)
1033 {
1034     long l;
1035     if (s == NULL)
1036         return (0);
1037     l = s->session_timeout;
1038     s->session_timeout = t;
1039     return (l);
1040 }
1041
1042 long SSL_CTX_get_timeout(const SSL_CTX *s)
1043 {
1044     if (s == NULL)
1045         return (0);
1046     return (s->session_timeout);
1047 }
1048
1049 #ifndef OPENSSL_NO_TLSEXT
1050 int SSL_set_session_secret_cb(SSL *s,
1051                               int (*tls_session_secret_cb) (SSL *s,
1052                                                             void *secret,
1053                                                             int *secret_len,
1054                                                             STACK_OF(SSL_CIPHER)
1055                                                             *peer_ciphers,
1056                                                             SSL_CIPHER
1057                                                             **cipher,
1058                                                             void *arg),
1059                               void *arg)
1060 {
1061     if (s == NULL)
1062         return (0);
1063     s->tls_session_secret_cb = tls_session_secret_cb;
1064     s->tls_session_secret_cb_arg = arg;
1065     return (1);
1066 }
1067
1068 int SSL_set_session_ticket_ext_cb(SSL *s, tls_session_ticket_ext_cb_fn cb,
1069                                   void *arg)
1070 {
1071     if (s == NULL)
1072         return (0);
1073     s->tls_session_ticket_ext_cb = cb;
1074     s->tls_session_ticket_ext_cb_arg = arg;
1075     return (1);
1076 }
1077
1078 int SSL_set_session_ticket_ext(SSL *s, void *ext_data, int ext_len)
1079 {
1080     if (s->version >= TLS1_VERSION) {
1081         if (s->tlsext_session_ticket) {
1082             OPENSSL_free(s->tlsext_session_ticket);
1083             s->tlsext_session_ticket = NULL;
1084         }
1085
1086         s->tlsext_session_ticket =
1087             OPENSSL_malloc(sizeof(TLS_SESSION_TICKET_EXT) + ext_len);
1088         if (!s->tlsext_session_ticket) {
1089             SSLerr(SSL_F_SSL_SET_SESSION_TICKET_EXT, ERR_R_MALLOC_FAILURE);
1090             return 0;
1091         }
1092
1093         if (ext_data) {
1094             s->tlsext_session_ticket->length = ext_len;
1095             s->tlsext_session_ticket->data = s->tlsext_session_ticket + 1;
1096             memcpy(s->tlsext_session_ticket->data, ext_data, ext_len);
1097         } else {
1098             s->tlsext_session_ticket->length = 0;
1099             s->tlsext_session_ticket->data = NULL;
1100         }
1101
1102         return 1;
1103     }
1104
1105     return 0;
1106 }
1107 #endif                          /* OPENSSL_NO_TLSEXT */
1108
1109 typedef struct timeout_param_st {
1110     SSL_CTX *ctx;
1111     long time;
1112     LHASH_OF(SSL_SESSION) *cache;
1113 } TIMEOUT_PARAM;
1114
1115 static void timeout_doall_arg(SSL_SESSION *s, TIMEOUT_PARAM *p)
1116 {
1117     if ((p->time == 0) || (p->time > (s->time + s->timeout))) { /* timeout */
1118         /*
1119          * The reason we don't call SSL_CTX_remove_session() is to save on
1120          * locking overhead
1121          */
1122         (void)lh_SSL_SESSION_delete(p->cache, s);
1123         SSL_SESSION_list_remove(p->ctx, s);
1124         s->not_resumable = 1;
1125         if (p->ctx->remove_session_cb != NULL)
1126             p->ctx->remove_session_cb(p->ctx, s);
1127         SSL_SESSION_free(s);
1128     }
1129 }
1130
1131 static IMPLEMENT_LHASH_DOALL_ARG_FN(timeout, SSL_SESSION, TIMEOUT_PARAM)
1132
1133 void SSL_CTX_flush_sessions(SSL_CTX *s, long t)
1134 {
1135     unsigned long i;
1136     TIMEOUT_PARAM tp;
1137
1138     tp.ctx = s;
1139     tp.cache = s->sessions;
1140     if (tp.cache == NULL)
1141         return;
1142     tp.time = t;
1143     CRYPTO_w_lock(CRYPTO_LOCK_SSL_CTX);
1144     i = CHECKED_LHASH_OF(SSL_SESSION, tp.cache)->down_load;
1145     CHECKED_LHASH_OF(SSL_SESSION, tp.cache)->down_load = 0;
1146     lh_SSL_SESSION_doall_arg(tp.cache, LHASH_DOALL_ARG_FN(timeout),
1147                              TIMEOUT_PARAM, &tp);
1148     CHECKED_LHASH_OF(SSL_SESSION, tp.cache)->down_load = i;
1149     CRYPTO_w_unlock(CRYPTO_LOCK_SSL_CTX);
1150 }
1151
1152 int ssl_clear_bad_session(SSL *s)
1153 {
1154     if ((s->session != NULL) &&
1155         !(s->shutdown & SSL_SENT_SHUTDOWN) &&
1156         !(SSL_in_init(s) || SSL_in_before(s))) {
1157         SSL_CTX_remove_session(s->ctx, s->session);
1158         return (1);
1159     } else
1160         return (0);
1161 }
1162
1163 /* locked by SSL_CTX in the calling function */
1164 static void SSL_SESSION_list_remove(SSL_CTX *ctx, SSL_SESSION *s)
1165 {
1166     if ((s->next == NULL) || (s->prev == NULL))
1167         return;
1168
1169     if (s->next == (SSL_SESSION *)&(ctx->session_cache_tail)) {
1170         /* last element in list */
1171         if (s->prev == (SSL_SESSION *)&(ctx->session_cache_head)) {
1172             /* only one element in list */
1173             ctx->session_cache_head = NULL;
1174             ctx->session_cache_tail = NULL;
1175         } else {
1176             ctx->session_cache_tail = s->prev;
1177             s->prev->next = (SSL_SESSION *)&(ctx->session_cache_tail);
1178         }
1179     } else {
1180         if (s->prev == (SSL_SESSION *)&(ctx->session_cache_head)) {
1181             /* first element in list */
1182             ctx->session_cache_head = s->next;
1183             s->next->prev = (SSL_SESSION *)&(ctx->session_cache_head);
1184         } else {
1185             /* middle of list */
1186             s->next->prev = s->prev;
1187             s->prev->next = s->next;
1188         }
1189     }
1190     s->prev = s->next = NULL;
1191 }
1192
1193 static void SSL_SESSION_list_add(SSL_CTX *ctx, SSL_SESSION *s)
1194 {
1195     if ((s->next != NULL) && (s->prev != NULL))
1196         SSL_SESSION_list_remove(ctx, s);
1197
1198     if (ctx->session_cache_head == NULL) {
1199         ctx->session_cache_head = s;
1200         ctx->session_cache_tail = s;
1201         s->prev = (SSL_SESSION *)&(ctx->session_cache_head);
1202         s->next = (SSL_SESSION *)&(ctx->session_cache_tail);
1203     } else {
1204         s->next = ctx->session_cache_head;
1205         s->next->prev = s;
1206         s->prev = (SSL_SESSION *)&(ctx->session_cache_head);
1207         ctx->session_cache_head = s;
1208     }
1209 }
1210
1211 void SSL_CTX_sess_set_new_cb(SSL_CTX *ctx,
1212                              int (*cb) (struct ssl_st *ssl,
1213                                         SSL_SESSION *sess))
1214 {
1215     ctx->new_session_cb = cb;
1216 }
1217
1218 int (*SSL_CTX_sess_get_new_cb(SSL_CTX *ctx)) (SSL *ssl, SSL_SESSION *sess) {
1219     return ctx->new_session_cb;
1220 }
1221
1222 void SSL_CTX_sess_set_remove_cb(SSL_CTX *ctx,
1223                                 void (*cb) (SSL_CTX *ctx, SSL_SESSION *sess))
1224 {
1225     ctx->remove_session_cb = cb;
1226 }
1227
1228 void (*SSL_CTX_sess_get_remove_cb(SSL_CTX *ctx)) (SSL_CTX *ctx,
1229                                                   SSL_SESSION *sess) {
1230     return ctx->remove_session_cb;
1231 }
1232
1233 void SSL_CTX_sess_set_get_cb(SSL_CTX *ctx,
1234                              SSL_SESSION *(*cb) (struct ssl_st *ssl,
1235                                                  unsigned char *data, int len,
1236                                                  int *copy))
1237 {
1238     ctx->get_session_cb = cb;
1239 }
1240
1241 SSL_SESSION *(*SSL_CTX_sess_get_get_cb(SSL_CTX *ctx)) (SSL *ssl,
1242                                                        unsigned char *data,
1243                                                        int len, int *copy) {
1244     return ctx->get_session_cb;
1245 }
1246
1247 void SSL_CTX_set_info_callback(SSL_CTX *ctx,
1248                                void (*cb) (const SSL *ssl, int type, int val))
1249 {
1250     ctx->info_callback = cb;
1251 }
1252
1253 void (*SSL_CTX_get_info_callback(SSL_CTX *ctx)) (const SSL *ssl, int type,
1254                                                  int val) {
1255     return ctx->info_callback;
1256 }
1257
1258 void SSL_CTX_set_client_cert_cb(SSL_CTX *ctx,
1259                                 int (*cb) (SSL *ssl, X509 **x509,
1260                                            EVP_PKEY **pkey))
1261 {
1262     ctx->client_cert_cb = cb;
1263 }
1264
1265 int (*SSL_CTX_get_client_cert_cb(SSL_CTX *ctx)) (SSL *ssl, X509 **x509,
1266                                                  EVP_PKEY **pkey) {
1267     return ctx->client_cert_cb;
1268 }
1269
1270 #ifndef OPENSSL_NO_ENGINE
1271 int SSL_CTX_set_client_cert_engine(SSL_CTX *ctx, ENGINE *e)
1272 {
1273     if (!ENGINE_init(e)) {
1274         SSLerr(SSL_F_SSL_CTX_SET_CLIENT_CERT_ENGINE, ERR_R_ENGINE_LIB);
1275         return 0;
1276     }
1277     if (!ENGINE_get_ssl_client_cert_function(e)) {
1278         SSLerr(SSL_F_SSL_CTX_SET_CLIENT_CERT_ENGINE,
1279                SSL_R_NO_CLIENT_CERT_METHOD);
1280         ENGINE_finish(e);
1281         return 0;
1282     }
1283     ctx->client_cert_engine = e;
1284     return 1;
1285 }
1286 #endif
1287
1288 void SSL_CTX_set_cookie_generate_cb(SSL_CTX *ctx,
1289                                     int (*cb) (SSL *ssl,
1290                                                unsigned char *cookie,
1291                                                unsigned int *cookie_len))
1292 {
1293     ctx->app_gen_cookie_cb = cb;
1294 }
1295
1296 void SSL_CTX_set_cookie_verify_cb(SSL_CTX *ctx,
1297                                   int (*cb) (SSL *ssl, unsigned char *cookie,
1298                                              unsigned int cookie_len))
1299 {
1300     ctx->app_verify_cookie_cb = cb;
1301 }
1302
1303 IMPLEMENT_PEM_rw(SSL_SESSION, SSL_SESSION, PEM_STRING_SSL_SESSION,
1304                  SSL_SESSION)