Fix race condition in NewSessionTicket
[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     return (ss);
225 }
226
227 /*
228  * Create a new SSL_SESSION and duplicate the contents of |src| into it. If
229  * ticket == 0 then no ticket information is duplicated, otherwise it is.
230  */
231 SSL_SESSION *ssl_session_dup(SSL_SESSION *src, int ticket)
232 {
233     SSL_SESSION *dest;
234
235     dest = OPENSSL_malloc(sizeof(*src));
236     if (dest == NULL) {
237         goto err;
238     }
239     memcpy(dest, src, sizeof(*dest));
240
241 #ifndef OPENSSL_NO_KRB5
242     dest->krb5_client_princ_len = dest->krb5_client_princ_len;
243     if (src->krb5_client_princ_len > 0)
244         memcpy(dest->krb5_client_princ, src->krb5_client_princ,
245                src->krb5_client_princ_len);
246 #endif
247
248 #ifndef OPENSSL_NO_PSK
249     if (src->psk_identity_hint) {
250         dest->psk_identity_hint = BUF_strdup(src->psk_identity_hint);
251         if (dest->psk_identity_hint == NULL) {
252             goto err;
253         }
254     } else {
255         dest->psk_identity_hint = NULL;
256     }
257     if (src->psk_identity) {
258         dest->psk_identity = BUF_strdup(src->psk_identity);
259         if (dest->psk_identity == NULL) {
260             goto err;
261         }
262     } else {
263         dest->psk_identity = NULL;
264     }
265 #endif
266
267     if (src->sess_cert != NULL)
268         CRYPTO_add(&src->sess_cert->references, 1, CRYPTO_LOCK_SSL_SESS_CERT);
269
270     if (src->peer != NULL)
271         CRYPTO_add(&src->peer->references, 1, CRYPTO_LOCK_X509);
272
273     dest->references = 1;
274
275     if(src->ciphers != NULL) {
276         dest->ciphers = sk_SSL_CIPHER_dup(src->ciphers);
277         if (dest->ciphers == NULL)
278             goto err;
279     } else {
280         dest->ciphers = NULL;
281     }
282
283     if (!CRYPTO_dup_ex_data(CRYPTO_EX_INDEX_SSL_SESSION,
284                                             &dest->ex_data, &src->ex_data)) {
285         goto err;
286     }
287
288     /* We deliberately don't copy the prev and next pointers */
289     dest->prev = NULL;
290     dest->next = NULL;
291
292 #ifndef OPENSSL_NO_TLSEXT
293     if (src->tlsext_hostname) {
294         dest->tlsext_hostname = BUF_strdup(src->tlsext_hostname);
295         if (dest->tlsext_hostname == NULL) {
296             goto err;
297         }
298     } else {
299         dest->tlsext_hostname = NULL;
300     }
301 # ifndef OPENSSL_NO_EC
302     if (src->tlsext_ecpointformatlist) {
303         dest->tlsext_ecpointformatlist =
304             BUF_memdup(src->tlsext_ecpointformatlist,
305                        src->tlsext_ecpointformatlist_length);
306         if (dest->tlsext_ecpointformatlist == NULL)
307             goto err;
308         dest->tlsext_ecpointformatlist_length =
309             src->tlsext_ecpointformatlist_length;
310     }
311     if (src->tlsext_ellipticcurvelist) {
312         dest->tlsext_ellipticcurvelist =
313             BUF_memdup(src->tlsext_ellipticcurvelist,
314                        src->tlsext_ellipticcurvelist_length);
315         if (dest->tlsext_ellipticcurvelist == NULL)
316             goto err;
317         dest->tlsext_ellipticcurvelist_length =
318             src->tlsext_ellipticcurvelist_length;
319     }
320 # endif
321 #endif
322
323     if (ticket != 0) {
324         dest->tlsext_tick_lifetime_hint = src->tlsext_tick_lifetime_hint;
325         dest->tlsext_ticklen = src->tlsext_ticklen;
326         if((dest->tlsext_tick = OPENSSL_malloc(src->tlsext_ticklen)) == NULL) {
327             goto err;
328         }
329     }
330
331     return dest;
332 err:
333     SSLerr(SSL_F_SSL_SESSION_DUP, ERR_R_MALLOC_FAILURE);
334     SSL_SESSION_free(dest);
335     return NULL;
336 }
337
338 const unsigned char *SSL_SESSION_get_id(const SSL_SESSION *s,
339                                         unsigned int *len)
340 {
341     if (len)
342         *len = s->session_id_length;
343     return s->session_id;
344 }
345
346 /*
347  * Even with SSLv2, we have 16 bytes (128 bits) of session ID space.
348  * SSLv3/TLSv1 has 32 bytes (256 bits). As such, filling the ID with random
349  * gunk repeatedly until we have no conflict is going to complete in one
350  * iteration pretty much "most" of the time (btw: understatement). So, if it
351  * takes us 10 iterations and we still can't avoid a conflict - well that's a
352  * reasonable point to call it quits. Either the RAND code is broken or
353  * someone is trying to open roughly very close to 2^128 (or 2^256) SSL
354  * sessions to our server. How you might store that many sessions is perhaps
355  * a more interesting question ...
356  */
357
358 #define MAX_SESS_ID_ATTEMPTS 10
359 static int def_generate_session_id(const SSL *ssl, unsigned char *id,
360                                    unsigned int *id_len)
361 {
362     unsigned int retry = 0;
363     do
364         if (RAND_pseudo_bytes(id, *id_len) <= 0)
365             return 0;
366     while (SSL_has_matching_session_id(ssl, id, *id_len) &&
367            (++retry < MAX_SESS_ID_ATTEMPTS)) ;
368     if (retry < MAX_SESS_ID_ATTEMPTS)
369         return 1;
370     /* else - woops a session_id match */
371     /*
372      * XXX We should also check the external cache -- but the probability of
373      * a collision is negligible, and we could not prevent the concurrent
374      * creation of sessions with identical IDs since we currently don't have
375      * means to atomically check whether a session ID already exists and make
376      * a reservation for it if it does not (this problem applies to the
377      * internal cache as well).
378      */
379     return 0;
380 }
381
382 int ssl_get_new_session(SSL *s, int session)
383 {
384     /* This gets used by clients and servers. */
385
386     unsigned int tmp;
387     SSL_SESSION *ss = NULL;
388     GEN_SESSION_CB cb = def_generate_session_id;
389
390     if ((ss = SSL_SESSION_new()) == NULL)
391         return (0);
392
393     /* If the context has a default timeout, use it */
394     if (s->session_ctx->session_timeout == 0)
395         ss->timeout = SSL_get_default_timeout(s);
396     else
397         ss->timeout = s->session_ctx->session_timeout;
398
399     if (s->session != NULL) {
400         SSL_SESSION_free(s->session);
401         s->session = NULL;
402     }
403
404     if (session) {
405         if (s->version == SSL2_VERSION) {
406             ss->ssl_version = SSL2_VERSION;
407             ss->session_id_length = SSL2_SSL_SESSION_ID_LENGTH;
408         } else if (s->version == SSL3_VERSION) {
409             ss->ssl_version = SSL3_VERSION;
410             ss->session_id_length = SSL3_SSL_SESSION_ID_LENGTH;
411         } else if (s->version == TLS1_VERSION) {
412             ss->ssl_version = TLS1_VERSION;
413             ss->session_id_length = SSL3_SSL_SESSION_ID_LENGTH;
414         } else if (s->version == DTLS1_BAD_VER) {
415             ss->ssl_version = DTLS1_BAD_VER;
416             ss->session_id_length = SSL3_SSL_SESSION_ID_LENGTH;
417         } else if (s->version == DTLS1_VERSION) {
418             ss->ssl_version = DTLS1_VERSION;
419             ss->session_id_length = SSL3_SSL_SESSION_ID_LENGTH;
420         } else {
421             SSLerr(SSL_F_SSL_GET_NEW_SESSION, SSL_R_UNSUPPORTED_SSL_VERSION);
422             SSL_SESSION_free(ss);
423             return (0);
424         }
425 #ifndef OPENSSL_NO_TLSEXT
426         /* If RFC4507 ticket use empty session ID */
427         if (s->tlsext_ticket_expected) {
428             ss->session_id_length = 0;
429             goto sess_id_done;
430         }
431 #endif
432         /* Choose which callback will set the session ID */
433         CRYPTO_r_lock(CRYPTO_LOCK_SSL_CTX);
434         if (s->generate_session_id)
435             cb = s->generate_session_id;
436         else if (s->session_ctx->generate_session_id)
437             cb = s->session_ctx->generate_session_id;
438         CRYPTO_r_unlock(CRYPTO_LOCK_SSL_CTX);
439         /* Choose a session ID */
440         tmp = ss->session_id_length;
441         if (!cb(s, ss->session_id, &tmp)) {
442             /* The callback failed */
443             SSLerr(SSL_F_SSL_GET_NEW_SESSION,
444                    SSL_R_SSL_SESSION_ID_CALLBACK_FAILED);
445             SSL_SESSION_free(ss);
446             return (0);
447         }
448         /*
449          * Don't allow the callback to set the session length to zero. nor
450          * set it higher than it was.
451          */
452         if (!tmp || (tmp > ss->session_id_length)) {
453             /* The callback set an illegal length */
454             SSLerr(SSL_F_SSL_GET_NEW_SESSION,
455                    SSL_R_SSL_SESSION_ID_HAS_BAD_LENGTH);
456             SSL_SESSION_free(ss);
457             return (0);
458         }
459         /* If the session length was shrunk and we're SSLv2, pad it */
460         if ((tmp < ss->session_id_length) && (s->version == SSL2_VERSION))
461             memset(ss->session_id + tmp, 0, ss->session_id_length - tmp);
462         else
463             ss->session_id_length = tmp;
464         /* Finally, check for a conflict */
465         if (SSL_has_matching_session_id(s, ss->session_id,
466                                         ss->session_id_length)) {
467             SSLerr(SSL_F_SSL_GET_NEW_SESSION, SSL_R_SSL_SESSION_ID_CONFLICT);
468             SSL_SESSION_free(ss);
469             return (0);
470         }
471 #ifndef OPENSSL_NO_TLSEXT
472  sess_id_done:
473         if (s->tlsext_hostname) {
474             ss->tlsext_hostname = BUF_strdup(s->tlsext_hostname);
475             if (ss->tlsext_hostname == NULL) {
476                 SSLerr(SSL_F_SSL_GET_NEW_SESSION, ERR_R_INTERNAL_ERROR);
477                 SSL_SESSION_free(ss);
478                 return 0;
479             }
480         }
481 # ifndef OPENSSL_NO_EC
482         if (s->tlsext_ecpointformatlist) {
483             if (ss->tlsext_ecpointformatlist != NULL)
484                 OPENSSL_free(ss->tlsext_ecpointformatlist);
485             if ((ss->tlsext_ecpointformatlist =
486                  OPENSSL_malloc(s->tlsext_ecpointformatlist_length)) ==
487                 NULL) {
488                 SSLerr(SSL_F_SSL_GET_NEW_SESSION, ERR_R_MALLOC_FAILURE);
489                 SSL_SESSION_free(ss);
490                 return 0;
491             }
492             ss->tlsext_ecpointformatlist_length =
493                 s->tlsext_ecpointformatlist_length;
494             memcpy(ss->tlsext_ecpointformatlist, s->tlsext_ecpointformatlist,
495                    s->tlsext_ecpointformatlist_length);
496         }
497         if (s->tlsext_ellipticcurvelist) {
498             if (ss->tlsext_ellipticcurvelist != NULL)
499                 OPENSSL_free(ss->tlsext_ellipticcurvelist);
500             if ((ss->tlsext_ellipticcurvelist =
501                  OPENSSL_malloc(s->tlsext_ellipticcurvelist_length)) ==
502                 NULL) {
503                 SSLerr(SSL_F_SSL_GET_NEW_SESSION, ERR_R_MALLOC_FAILURE);
504                 SSL_SESSION_free(ss);
505                 return 0;
506             }
507             ss->tlsext_ellipticcurvelist_length =
508                 s->tlsext_ellipticcurvelist_length;
509             memcpy(ss->tlsext_ellipticcurvelist, s->tlsext_ellipticcurvelist,
510                    s->tlsext_ellipticcurvelist_length);
511         }
512 # endif
513 #endif
514     } else {
515         ss->session_id_length = 0;
516     }
517
518     if (s->sid_ctx_length > sizeof ss->sid_ctx) {
519         SSLerr(SSL_F_SSL_GET_NEW_SESSION, ERR_R_INTERNAL_ERROR);
520         SSL_SESSION_free(ss);
521         return 0;
522     }
523     memcpy(ss->sid_ctx, s->sid_ctx, s->sid_ctx_length);
524     ss->sid_ctx_length = s->sid_ctx_length;
525     s->session = ss;
526     ss->ssl_version = s->version;
527     ss->verify_result = X509_V_OK;
528
529     return (1);
530 }
531
532 int ssl_get_prev_session(SSL *s, unsigned char *session_id, int len,
533                          const unsigned char *limit)
534 {
535     /* This is used only by servers. */
536
537     SSL_SESSION *ret = NULL;
538     int fatal = 0;
539 #ifndef OPENSSL_NO_TLSEXT
540     int r;
541 #endif
542
543     if (len > SSL_MAX_SSL_SESSION_ID_LENGTH)
544         goto err;
545
546     if (session_id + len > limit) {
547         fatal = 1;
548         goto err;
549     }
550
551 #ifndef OPENSSL_NO_TLSEXT
552     r = tls1_process_ticket(s, session_id, len, limit, &ret);
553     if (r == -1) {
554         fatal = 1;
555         goto err;
556     } else if (r == 0 || (!ret && !len))
557         goto err;
558     else if (!ret
559              && !(s->session_ctx->session_cache_mode &
560                   SSL_SESS_CACHE_NO_INTERNAL_LOOKUP))
561 #else
562     if (len == 0)
563         goto err;
564     if (!
565         (s->
566          session_ctx->session_cache_mode & SSL_SESS_CACHE_NO_INTERNAL_LOOKUP))
567 #endif
568     {
569         SSL_SESSION data;
570         data.ssl_version = s->version;
571         data.session_id_length = len;
572         if (len == 0)
573             return 0;
574         memcpy(data.session_id, session_id, len);
575         CRYPTO_r_lock(CRYPTO_LOCK_SSL_CTX);
576         ret = lh_SSL_SESSION_retrieve(s->session_ctx->sessions, &data);
577         if (ret != NULL)
578             /* don't allow other threads to steal it: */
579             CRYPTO_add(&ret->references, 1, CRYPTO_LOCK_SSL_SESSION);
580         CRYPTO_r_unlock(CRYPTO_LOCK_SSL_CTX);
581     }
582
583     if (ret == NULL) {
584         int copy = 1;
585
586         s->session_ctx->stats.sess_miss++;
587         ret = NULL;
588         if (s->session_ctx->get_session_cb != NULL
589             && (ret =
590                 s->session_ctx->get_session_cb(s, session_id, len, &copy))
591             != NULL) {
592             s->session_ctx->stats.sess_cb_hit++;
593
594             /*
595              * Increment reference count now if the session callback asks us
596              * to do so (note that if the session structures returned by the
597              * callback are shared between threads, it must handle the
598              * reference count itself [i.e. copy == 0], or things won't be
599              * thread-safe).
600              */
601             if (copy)
602                 CRYPTO_add(&ret->references, 1, CRYPTO_LOCK_SSL_SESSION);
603
604             /*
605              * Add the externally cached session to the internal cache as
606              * well if and only if we are supposed to.
607              */
608             if (!
609                 (s->session_ctx->session_cache_mode &
610                  SSL_SESS_CACHE_NO_INTERNAL_STORE))
611                 /*
612                  * The following should not return 1, otherwise, things are
613                  * very strange
614                  */
615                 SSL_CTX_add_session(s->session_ctx, ret);
616         }
617         if (ret == NULL)
618             goto err;
619     }
620
621     /* Now ret is non-NULL, and we own one of its reference counts. */
622
623     if (ret->sid_ctx_length != s->sid_ctx_length
624         || memcmp(ret->sid_ctx, s->sid_ctx, ret->sid_ctx_length)) {
625         /*
626          * We've found the session named by the client, but we don't want to
627          * use it in this context.
628          */
629
630 #if 0                           /* The client cannot always know when a
631                                  * session is not appropriate, so we
632                                  * shouldn't generate an error message. */
633
634         SSLerr(SSL_F_SSL_GET_PREV_SESSION,
635                SSL_R_ATTEMPT_TO_REUSE_SESSION_IN_DIFFERENT_CONTEXT);
636 #endif
637         goto err;               /* treat like cache miss */
638     }
639
640     if ((s->verify_mode & SSL_VERIFY_PEER) && s->sid_ctx_length == 0) {
641         /*
642          * We can't be sure if this session is being used out of context,
643          * which is especially important for SSL_VERIFY_PEER. The application
644          * should have used SSL[_CTX]_set_session_id_context. For this error
645          * case, we generate an error instead of treating the event like a
646          * cache miss (otherwise it would be easy for applications to
647          * effectively disable the session cache by accident without anyone
648          * noticing).
649          */
650
651         SSLerr(SSL_F_SSL_GET_PREV_SESSION,
652                SSL_R_SESSION_ID_CONTEXT_UNINITIALIZED);
653         fatal = 1;
654         goto err;
655     }
656
657     if (ret->cipher == NULL) {
658         unsigned char buf[5], *p;
659         unsigned long l;
660
661         p = buf;
662         l = ret->cipher_id;
663         l2n(l, p);
664         if ((ret->ssl_version >> 8) >= SSL3_VERSION_MAJOR)
665             ret->cipher = ssl_get_cipher_by_char(s, &(buf[2]));
666         else
667             ret->cipher = ssl_get_cipher_by_char(s, &(buf[1]));
668         if (ret->cipher == NULL)
669             goto err;
670     }
671 #if 0                           /* This is way too late. */
672
673     /*
674      * If a thread got the session, then 'swaped', and another got it and
675      * then due to a time-out decided to 'OPENSSL_free' it we could be in
676      * trouble.  So I'll increment it now, then double decrement later - am I
677      * speaking rubbish?.
678      */
679     CRYPTO_add(&ret->references, 1, CRYPTO_LOCK_SSL_SESSION);
680 #endif
681
682     if (ret->timeout < (long)(time(NULL) - ret->time)) { /* timeout */
683         s->session_ctx->stats.sess_timeout++;
684         /* remove it from the cache */
685         SSL_CTX_remove_session(s->session_ctx, ret);
686         goto err;
687     }
688
689     s->session_ctx->stats.sess_hit++;
690
691     /*- ret->time=time(NULL); *//*
692      * rezero timeout?
693      */
694     /*
695      * again, just leave the session if it is the same session, we have just
696      * incremented and then decremented the reference count :-)
697      */
698     if (s->session != NULL)
699         SSL_SESSION_free(s->session);
700     s->session = ret;
701     s->verify_result = s->session->verify_result;
702     return (1);
703
704  err:
705     if (ret != NULL)
706         SSL_SESSION_free(ret);
707     if (fatal)
708         return -1;
709     else
710         return 0;
711 }
712
713 int SSL_CTX_add_session(SSL_CTX *ctx, SSL_SESSION *c)
714 {
715     int ret = 0;
716     SSL_SESSION *s;
717
718     /*
719      * add just 1 reference count for the SSL_CTX's session cache even though
720      * it has two ways of access: each session is in a doubly linked list and
721      * an lhash
722      */
723     CRYPTO_add(&c->references, 1, CRYPTO_LOCK_SSL_SESSION);
724     /*
725      * if session c is in already in cache, we take back the increment later
726      */
727
728     CRYPTO_w_lock(CRYPTO_LOCK_SSL_CTX);
729     s = lh_SSL_SESSION_insert(ctx->sessions, c);
730
731     /*
732      * s != NULL iff we already had a session with the given PID. In this
733      * case, s == c should hold (then we did not really modify
734      * ctx->sessions), or we're in trouble.
735      */
736     if (s != NULL && s != c) {
737         /* We *are* in trouble ... */
738         SSL_SESSION_list_remove(ctx, s);
739         SSL_SESSION_free(s);
740         /*
741          * ... so pretend the other session did not exist in cache (we cannot
742          * handle two SSL_SESSION structures with identical session ID in the
743          * same cache, which could happen e.g. when two threads concurrently
744          * obtain the same session from an external cache)
745          */
746         s = NULL;
747     }
748
749     /* Put at the head of the queue unless it is already in the cache */
750     if (s == NULL)
751         SSL_SESSION_list_add(ctx, c);
752
753     if (s != NULL) {
754         /*
755          * existing cache entry -- decrement previously incremented reference
756          * count because it already takes into account the cache
757          */
758
759         SSL_SESSION_free(s);    /* s == c */
760         ret = 0;
761     } else {
762         /*
763          * new cache entry -- remove old ones if cache has become too large
764          */
765
766         ret = 1;
767
768         if (SSL_CTX_sess_get_cache_size(ctx) > 0) {
769             while (SSL_CTX_sess_number(ctx) >
770                    SSL_CTX_sess_get_cache_size(ctx)) {
771                 if (!remove_session_lock(ctx, ctx->session_cache_tail, 0))
772                     break;
773                 else
774                     ctx->stats.sess_cache_full++;
775             }
776         }
777     }
778     CRYPTO_w_unlock(CRYPTO_LOCK_SSL_CTX);
779     return (ret);
780 }
781
782 int SSL_CTX_remove_session(SSL_CTX *ctx, SSL_SESSION *c)
783 {
784     return remove_session_lock(ctx, c, 1);
785 }
786
787 static int remove_session_lock(SSL_CTX *ctx, SSL_SESSION *c, int lck)
788 {
789     SSL_SESSION *r;
790     int ret = 0;
791
792     if ((c != NULL) && (c->session_id_length != 0)) {
793         if (lck)
794             CRYPTO_w_lock(CRYPTO_LOCK_SSL_CTX);
795         if ((r = lh_SSL_SESSION_retrieve(ctx->sessions, c)) == c) {
796             ret = 1;
797             r = lh_SSL_SESSION_delete(ctx->sessions, c);
798             SSL_SESSION_list_remove(ctx, c);
799         }
800
801         if (lck)
802             CRYPTO_w_unlock(CRYPTO_LOCK_SSL_CTX);
803
804         if (ret) {
805             r->not_resumable = 1;
806             if (ctx->remove_session_cb != NULL)
807                 ctx->remove_session_cb(ctx, r);
808             SSL_SESSION_free(r);
809         }
810     } else
811         ret = 0;
812     return (ret);
813 }
814
815 void SSL_SESSION_free(SSL_SESSION *ss)
816 {
817     int i;
818
819     if (ss == NULL)
820         return;
821
822     i = CRYPTO_add(&ss->references, -1, CRYPTO_LOCK_SSL_SESSION);
823 #ifdef REF_PRINT
824     REF_PRINT("SSL_SESSION", ss);
825 #endif
826     if (i > 0)
827         return;
828 #ifdef REF_CHECK
829     if (i < 0) {
830         fprintf(stderr, "SSL_SESSION_free, bad reference count\n");
831         abort();                /* ok */
832     }
833 #endif
834
835     CRYPTO_free_ex_data(CRYPTO_EX_INDEX_SSL_SESSION, ss, &ss->ex_data);
836
837     OPENSSL_cleanse(ss->key_arg, sizeof ss->key_arg);
838     OPENSSL_cleanse(ss->master_key, sizeof ss->master_key);
839     OPENSSL_cleanse(ss->session_id, sizeof ss->session_id);
840     if (ss->sess_cert != NULL)
841         ssl_sess_cert_free(ss->sess_cert);
842     if (ss->peer != NULL)
843         X509_free(ss->peer);
844     if (ss->ciphers != NULL)
845         sk_SSL_CIPHER_free(ss->ciphers);
846 #ifndef OPENSSL_NO_TLSEXT
847     if (ss->tlsext_hostname != NULL)
848         OPENSSL_free(ss->tlsext_hostname);
849     if (ss->tlsext_tick != NULL)
850         OPENSSL_free(ss->tlsext_tick);
851 # ifndef OPENSSL_NO_EC
852     ss->tlsext_ecpointformatlist_length = 0;
853     if (ss->tlsext_ecpointformatlist != NULL)
854         OPENSSL_free(ss->tlsext_ecpointformatlist);
855     ss->tlsext_ellipticcurvelist_length = 0;
856     if (ss->tlsext_ellipticcurvelist != NULL)
857         OPENSSL_free(ss->tlsext_ellipticcurvelist);
858 # endif                         /* OPENSSL_NO_EC */
859 #endif
860 #ifndef OPENSSL_NO_PSK
861     if (ss->psk_identity_hint != NULL)
862         OPENSSL_free(ss->psk_identity_hint);
863     if (ss->psk_identity != NULL)
864         OPENSSL_free(ss->psk_identity);
865 #endif
866     OPENSSL_cleanse(ss, sizeof(*ss));
867     OPENSSL_free(ss);
868 }
869
870 int SSL_set_session(SSL *s, SSL_SESSION *session)
871 {
872     int ret = 0;
873     const SSL_METHOD *meth;
874
875     if (session != NULL) {
876         meth = s->ctx->method->get_ssl_method(session->ssl_version);
877         if (meth == NULL)
878             meth = s->method->get_ssl_method(session->ssl_version);
879         if (meth == NULL) {
880             SSLerr(SSL_F_SSL_SET_SESSION, SSL_R_UNABLE_TO_FIND_SSL_METHOD);
881             return (0);
882         }
883
884         if (meth != s->method) {
885             if (!SSL_set_ssl_method(s, meth))
886                 return (0);
887             if (s->ctx->session_timeout == 0)
888                 session->timeout = SSL_get_default_timeout(s);
889             else
890                 session->timeout = s->ctx->session_timeout;
891         }
892 #ifndef OPENSSL_NO_KRB5
893         if (s->kssl_ctx && !s->kssl_ctx->client_princ &&
894             session->krb5_client_princ_len > 0) {
895             s->kssl_ctx->client_princ =
896                 (char *)OPENSSL_malloc(session->krb5_client_princ_len + 1);
897             memcpy(s->kssl_ctx->client_princ, session->krb5_client_princ,
898                    session->krb5_client_princ_len);
899             s->kssl_ctx->client_princ[session->krb5_client_princ_len] = '\0';
900         }
901 #endif                          /* OPENSSL_NO_KRB5 */
902
903         /* CRYPTO_w_lock(CRYPTO_LOCK_SSL); */
904         CRYPTO_add(&session->references, 1, CRYPTO_LOCK_SSL_SESSION);
905         if (s->session != NULL)
906             SSL_SESSION_free(s->session);
907         s->session = session;
908         s->verify_result = s->session->verify_result;
909         /* CRYPTO_w_unlock(CRYPTO_LOCK_SSL); */
910         ret = 1;
911     } else {
912         if (s->session != NULL) {
913             SSL_SESSION_free(s->session);
914             s->session = NULL;
915         }
916
917         meth = s->ctx->method;
918         if (meth != s->method) {
919             if (!SSL_set_ssl_method(s, meth))
920                 return (0);
921         }
922         ret = 1;
923     }
924     return (ret);
925 }
926
927 long SSL_SESSION_set_timeout(SSL_SESSION *s, long t)
928 {
929     if (s == NULL)
930         return (0);
931     s->timeout = t;
932     return (1);
933 }
934
935 long SSL_SESSION_get_timeout(const SSL_SESSION *s)
936 {
937     if (s == NULL)
938         return (0);
939     return (s->timeout);
940 }
941
942 long SSL_SESSION_get_time(const SSL_SESSION *s)
943 {
944     if (s == NULL)
945         return (0);
946     return (s->time);
947 }
948
949 long SSL_SESSION_set_time(SSL_SESSION *s, long t)
950 {
951     if (s == NULL)
952         return (0);
953     s->time = t;
954     return (t);
955 }
956
957 long SSL_CTX_set_timeout(SSL_CTX *s, long t)
958 {
959     long l;
960     if (s == NULL)
961         return (0);
962     l = s->session_timeout;
963     s->session_timeout = t;
964     return (l);
965 }
966
967 long SSL_CTX_get_timeout(const SSL_CTX *s)
968 {
969     if (s == NULL)
970         return (0);
971     return (s->session_timeout);
972 }
973
974 #ifndef OPENSSL_NO_TLSEXT
975 int SSL_set_session_secret_cb(SSL *s,
976                               int (*tls_session_secret_cb) (SSL *s,
977                                                             void *secret,
978                                                             int *secret_len,
979                                                             STACK_OF(SSL_CIPHER)
980                                                             *peer_ciphers,
981                                                             SSL_CIPHER
982                                                             **cipher,
983                                                             void *arg),
984                               void *arg)
985 {
986     if (s == NULL)
987         return (0);
988     s->tls_session_secret_cb = tls_session_secret_cb;
989     s->tls_session_secret_cb_arg = arg;
990     return (1);
991 }
992
993 int SSL_set_session_ticket_ext_cb(SSL *s, tls_session_ticket_ext_cb_fn cb,
994                                   void *arg)
995 {
996     if (s == NULL)
997         return (0);
998     s->tls_session_ticket_ext_cb = cb;
999     s->tls_session_ticket_ext_cb_arg = arg;
1000     return (1);
1001 }
1002
1003 int SSL_set_session_ticket_ext(SSL *s, void *ext_data, int ext_len)
1004 {
1005     if (s->version >= TLS1_VERSION) {
1006         if (s->tlsext_session_ticket) {
1007             OPENSSL_free(s->tlsext_session_ticket);
1008             s->tlsext_session_ticket = NULL;
1009         }
1010
1011         s->tlsext_session_ticket =
1012             OPENSSL_malloc(sizeof(TLS_SESSION_TICKET_EXT) + ext_len);
1013         if (!s->tlsext_session_ticket) {
1014             SSLerr(SSL_F_SSL_SET_SESSION_TICKET_EXT, ERR_R_MALLOC_FAILURE);
1015             return 0;
1016         }
1017
1018         if (ext_data) {
1019             s->tlsext_session_ticket->length = ext_len;
1020             s->tlsext_session_ticket->data = s->tlsext_session_ticket + 1;
1021             memcpy(s->tlsext_session_ticket->data, ext_data, ext_len);
1022         } else {
1023             s->tlsext_session_ticket->length = 0;
1024             s->tlsext_session_ticket->data = NULL;
1025         }
1026
1027         return 1;
1028     }
1029
1030     return 0;
1031 }
1032 #endif                          /* OPENSSL_NO_TLSEXT */
1033
1034 typedef struct timeout_param_st {
1035     SSL_CTX *ctx;
1036     long time;
1037     LHASH_OF(SSL_SESSION) *cache;
1038 } TIMEOUT_PARAM;
1039
1040 static void timeout_doall_arg(SSL_SESSION *s, TIMEOUT_PARAM *p)
1041 {
1042     if ((p->time == 0) || (p->time > (s->time + s->timeout))) { /* timeout */
1043         /*
1044          * The reason we don't call SSL_CTX_remove_session() is to save on
1045          * locking overhead
1046          */
1047         (void)lh_SSL_SESSION_delete(p->cache, s);
1048         SSL_SESSION_list_remove(p->ctx, s);
1049         s->not_resumable = 1;
1050         if (p->ctx->remove_session_cb != NULL)
1051             p->ctx->remove_session_cb(p->ctx, s);
1052         SSL_SESSION_free(s);
1053     }
1054 }
1055
1056 static IMPLEMENT_LHASH_DOALL_ARG_FN(timeout, SSL_SESSION, TIMEOUT_PARAM)
1057
1058 void SSL_CTX_flush_sessions(SSL_CTX *s, long t)
1059 {
1060     unsigned long i;
1061     TIMEOUT_PARAM tp;
1062
1063     tp.ctx = s;
1064     tp.cache = s->sessions;
1065     if (tp.cache == NULL)
1066         return;
1067     tp.time = t;
1068     CRYPTO_w_lock(CRYPTO_LOCK_SSL_CTX);
1069     i = CHECKED_LHASH_OF(SSL_SESSION, tp.cache)->down_load;
1070     CHECKED_LHASH_OF(SSL_SESSION, tp.cache)->down_load = 0;
1071     lh_SSL_SESSION_doall_arg(tp.cache, LHASH_DOALL_ARG_FN(timeout),
1072                              TIMEOUT_PARAM, &tp);
1073     CHECKED_LHASH_OF(SSL_SESSION, tp.cache)->down_load = i;
1074     CRYPTO_w_unlock(CRYPTO_LOCK_SSL_CTX);
1075 }
1076
1077 int ssl_clear_bad_session(SSL *s)
1078 {
1079     if ((s->session != NULL) &&
1080         !(s->shutdown & SSL_SENT_SHUTDOWN) &&
1081         !(SSL_in_init(s) || SSL_in_before(s))) {
1082         SSL_CTX_remove_session(s->ctx, s->session);
1083         return (1);
1084     } else
1085         return (0);
1086 }
1087
1088 /* locked by SSL_CTX in the calling function */
1089 static void SSL_SESSION_list_remove(SSL_CTX *ctx, SSL_SESSION *s)
1090 {
1091     if ((s->next == NULL) || (s->prev == NULL))
1092         return;
1093
1094     if (s->next == (SSL_SESSION *)&(ctx->session_cache_tail)) {
1095         /* last element in list */
1096         if (s->prev == (SSL_SESSION *)&(ctx->session_cache_head)) {
1097             /* only one element in list */
1098             ctx->session_cache_head = NULL;
1099             ctx->session_cache_tail = NULL;
1100         } else {
1101             ctx->session_cache_tail = s->prev;
1102             s->prev->next = (SSL_SESSION *)&(ctx->session_cache_tail);
1103         }
1104     } else {
1105         if (s->prev == (SSL_SESSION *)&(ctx->session_cache_head)) {
1106             /* first element in list */
1107             ctx->session_cache_head = s->next;
1108             s->next->prev = (SSL_SESSION *)&(ctx->session_cache_head);
1109         } else {
1110             /* middle of list */
1111             s->next->prev = s->prev;
1112             s->prev->next = s->next;
1113         }
1114     }
1115     s->prev = s->next = NULL;
1116 }
1117
1118 static void SSL_SESSION_list_add(SSL_CTX *ctx, SSL_SESSION *s)
1119 {
1120     if ((s->next != NULL) && (s->prev != NULL))
1121         SSL_SESSION_list_remove(ctx, s);
1122
1123     if (ctx->session_cache_head == NULL) {
1124         ctx->session_cache_head = s;
1125         ctx->session_cache_tail = s;
1126         s->prev = (SSL_SESSION *)&(ctx->session_cache_head);
1127         s->next = (SSL_SESSION *)&(ctx->session_cache_tail);
1128     } else {
1129         s->next = ctx->session_cache_head;
1130         s->next->prev = s;
1131         s->prev = (SSL_SESSION *)&(ctx->session_cache_head);
1132         ctx->session_cache_head = s;
1133     }
1134 }
1135
1136 void SSL_CTX_sess_set_new_cb(SSL_CTX *ctx,
1137                              int (*cb) (struct ssl_st *ssl,
1138                                         SSL_SESSION *sess))
1139 {
1140     ctx->new_session_cb = cb;
1141 }
1142
1143 int (*SSL_CTX_sess_get_new_cb(SSL_CTX *ctx)) (SSL *ssl, SSL_SESSION *sess) {
1144     return ctx->new_session_cb;
1145 }
1146
1147 void SSL_CTX_sess_set_remove_cb(SSL_CTX *ctx,
1148                                 void (*cb) (SSL_CTX *ctx, SSL_SESSION *sess))
1149 {
1150     ctx->remove_session_cb = cb;
1151 }
1152
1153 void (*SSL_CTX_sess_get_remove_cb(SSL_CTX *ctx)) (SSL_CTX *ctx,
1154                                                   SSL_SESSION *sess) {
1155     return ctx->remove_session_cb;
1156 }
1157
1158 void SSL_CTX_sess_set_get_cb(SSL_CTX *ctx,
1159                              SSL_SESSION *(*cb) (struct ssl_st *ssl,
1160                                                  unsigned char *data, int len,
1161                                                  int *copy))
1162 {
1163     ctx->get_session_cb = cb;
1164 }
1165
1166 SSL_SESSION *(*SSL_CTX_sess_get_get_cb(SSL_CTX *ctx)) (SSL *ssl,
1167                                                        unsigned char *data,
1168                                                        int len, int *copy) {
1169     return ctx->get_session_cb;
1170 }
1171
1172 void SSL_CTX_set_info_callback(SSL_CTX *ctx,
1173                                void (*cb) (const SSL *ssl, int type, int val))
1174 {
1175     ctx->info_callback = cb;
1176 }
1177
1178 void (*SSL_CTX_get_info_callback(SSL_CTX *ctx)) (const SSL *ssl, int type,
1179                                                  int val) {
1180     return ctx->info_callback;
1181 }
1182
1183 void SSL_CTX_set_client_cert_cb(SSL_CTX *ctx,
1184                                 int (*cb) (SSL *ssl, X509 **x509,
1185                                            EVP_PKEY **pkey))
1186 {
1187     ctx->client_cert_cb = cb;
1188 }
1189
1190 int (*SSL_CTX_get_client_cert_cb(SSL_CTX *ctx)) (SSL *ssl, X509 **x509,
1191                                                  EVP_PKEY **pkey) {
1192     return ctx->client_cert_cb;
1193 }
1194
1195 #ifndef OPENSSL_NO_ENGINE
1196 int SSL_CTX_set_client_cert_engine(SSL_CTX *ctx, ENGINE *e)
1197 {
1198     if (!ENGINE_init(e)) {
1199         SSLerr(SSL_F_SSL_CTX_SET_CLIENT_CERT_ENGINE, ERR_R_ENGINE_LIB);
1200         return 0;
1201     }
1202     if (!ENGINE_get_ssl_client_cert_function(e)) {
1203         SSLerr(SSL_F_SSL_CTX_SET_CLIENT_CERT_ENGINE,
1204                SSL_R_NO_CLIENT_CERT_METHOD);
1205         ENGINE_finish(e);
1206         return 0;
1207     }
1208     ctx->client_cert_engine = e;
1209     return 1;
1210 }
1211 #endif
1212
1213 void SSL_CTX_set_cookie_generate_cb(SSL_CTX *ctx,
1214                                     int (*cb) (SSL *ssl,
1215                                                unsigned char *cookie,
1216                                                unsigned int *cookie_len))
1217 {
1218     ctx->app_gen_cookie_cb = cb;
1219 }
1220
1221 void SSL_CTX_set_cookie_verify_cb(SSL_CTX *ctx,
1222                                   int (*cb) (SSL *ssl, unsigned char *cookie,
1223                                              unsigned int cookie_len))
1224 {
1225     ctx->app_verify_cookie_cb = cb;
1226 }
1227
1228 IMPLEMENT_PEM_rw(SSL_SESSION, SSL_SESSION, PEM_STRING_SSL_SESSION,
1229                  SSL_SESSION)