Further TLS extension updates
[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 #include <stdio.h>
113 #include <openssl/lhash.h>
114 #include <openssl/rand.h>
115 #include "ssl_locl.h"
116
117 static void SSL_SESSION_list_remove(SSL_CTX *ctx, SSL_SESSION *s);
118 static void SSL_SESSION_list_add(SSL_CTX *ctx,SSL_SESSION *s);
119 static int remove_session_lock(SSL_CTX *ctx, SSL_SESSION *c, int lck);
120
121 SSL_SESSION *SSL_get_session(const SSL *ssl)
122 /* aka SSL_get0_session; gets 0 objects, just returns a copy of the pointer */
123         {
124         return(ssl->session);
125         }
126
127 SSL_SESSION *SSL_get1_session(SSL *ssl)
128 /* variant of SSL_get_session: caller really gets something */
129         {
130         SSL_SESSION *sess;
131         /* Need to lock this all up rather than just use CRYPTO_add so that
132          * somebody doesn't free ssl->session between when we check it's
133          * non-null and when we up the reference count. */
134         CRYPTO_w_lock(CRYPTO_LOCK_SSL_SESSION);
135         sess = ssl->session;
136         if(sess)
137                 sess->references++;
138         CRYPTO_w_unlock(CRYPTO_LOCK_SSL_SESSION);
139         return(sess);
140         }
141
142 int SSL_SESSION_get_ex_new_index(long argl, void *argp, CRYPTO_EX_new *new_func,
143              CRYPTO_EX_dup *dup_func, CRYPTO_EX_free *free_func)
144         {
145         return CRYPTO_get_ex_new_index(CRYPTO_EX_INDEX_SSL_SESSION, argl, argp,
146                         new_func, dup_func, free_func);
147         }
148
149 int SSL_SESSION_set_ex_data(SSL_SESSION *s, int idx, void *arg)
150         {
151         return(CRYPTO_set_ex_data(&s->ex_data,idx,arg));
152         }
153
154 void *SSL_SESSION_get_ex_data(const SSL_SESSION *s, int idx)
155         {
156         return(CRYPTO_get_ex_data(&s->ex_data,idx));
157         }
158
159 SSL_SESSION *SSL_SESSION_new(void)
160         {
161         SSL_SESSION *ss;
162
163         ss=(SSL_SESSION *)OPENSSL_malloc(sizeof(SSL_SESSION));
164         if (ss == NULL)
165                 {
166                 SSLerr(SSL_F_SSL_SESSION_NEW,ERR_R_MALLOC_FAILURE);
167                 return(0);
168                 }
169         memset(ss,0,sizeof(SSL_SESSION));
170
171         ss->verify_result = 1; /* avoid 0 (= X509_V_OK) just in case */
172         ss->references=1;
173         ss->timeout=60*5+4; /* 5 minute timeout by default */
174         ss->time=(unsigned long)time(NULL);
175         ss->prev=NULL;
176         ss->next=NULL;
177         ss->compress_meth=0;
178 #ifndef OPENSSL_NO_TLSEXT
179         ss->tlsext_hostname = NULL; 
180 #endif
181         CRYPTO_new_ex_data(CRYPTO_EX_INDEX_SSL_SESSION, ss, &ss->ex_data);
182         return(ss);
183         }
184
185 const unsigned char *SSL_SESSION_get_id(const SSL_SESSION *s, unsigned int *len)
186         {
187         if(len)
188                 *len = s->session_id_length;
189         return s->session_id;
190         }
191
192 /* Even with SSLv2, we have 16 bytes (128 bits) of session ID space. SSLv3/TLSv1
193  * has 32 bytes (256 bits). As such, filling the ID with random gunk repeatedly
194  * until we have no conflict is going to complete in one iteration pretty much
195  * "most" of the time (btw: understatement). So, if it takes us 10 iterations
196  * and we still can't avoid a conflict - well that's a reasonable point to call
197  * it quits. Either the RAND code is broken or someone is trying to open roughly
198  * very close to 2^128 (or 2^256) SSL sessions to our server. How you might
199  * store that many sessions is perhaps a more interesting question ... */
200
201 #define MAX_SESS_ID_ATTEMPTS 10
202 static int def_generate_session_id(const SSL *ssl, unsigned char *id,
203                                 unsigned int *id_len)
204 {
205         unsigned int retry = 0;
206         do
207                 if (RAND_pseudo_bytes(id, *id_len) <= 0)
208                         return 0;
209         while(SSL_has_matching_session_id(ssl, id, *id_len) &&
210                 (++retry < MAX_SESS_ID_ATTEMPTS));
211         if(retry < MAX_SESS_ID_ATTEMPTS)
212                 return 1;
213         /* else - woops a session_id match */
214         /* XXX We should also check the external cache --
215          * but the probability of a collision is negligible, and
216          * we could not prevent the concurrent creation of sessions
217          * with identical IDs since we currently don't have means
218          * to atomically check whether a session ID already exists
219          * and make a reservation for it if it does not
220          * (this problem applies to the internal cache as well).
221          */
222         return 0;
223 }
224
225 int ssl_get_new_session(SSL *s, int session)
226         {
227         /* This gets used by clients and servers. */
228
229         unsigned int tmp;
230         SSL_SESSION *ss=NULL;
231         GEN_SESSION_CB cb = def_generate_session_id;
232
233         if ((ss=SSL_SESSION_new()) == NULL) return(0);
234
235         /* If the context has a default timeout, use it */
236         if (s->session_ctx->session_timeout == 0)
237                 ss->timeout=SSL_get_default_timeout(s);
238         else
239                 ss->timeout=s->session_ctx->session_timeout;
240
241         if (s->session != NULL)
242                 {
243                 SSL_SESSION_free(s->session);
244                 s->session=NULL;
245                 }
246
247         if (session)
248                 {
249                 if (s->version == SSL2_VERSION)
250                         {
251                         ss->ssl_version=SSL2_VERSION;
252                         ss->session_id_length=SSL2_SSL_SESSION_ID_LENGTH;
253                         }
254                 else if (s->version == SSL3_VERSION)
255                         {
256                         ss->ssl_version=SSL3_VERSION;
257                         ss->session_id_length=SSL3_SSL_SESSION_ID_LENGTH;
258                         }
259                 else if (s->version == TLS1_VERSION)
260                         {
261                         ss->ssl_version=TLS1_VERSION;
262                         ss->session_id_length=SSL3_SSL_SESSION_ID_LENGTH;
263                         }
264                 else if (s->version == DTLS1_VERSION)
265                         {
266                         ss->ssl_version=DTLS1_VERSION;
267                         ss->session_id_length=SSL3_SSL_SESSION_ID_LENGTH;
268                         }
269                 else
270                         {
271                         SSLerr(SSL_F_SSL_GET_NEW_SESSION,SSL_R_UNSUPPORTED_SSL_VERSION);
272                         SSL_SESSION_free(ss);
273                         return(0);
274                         }
275                 /* Choose which callback will set the session ID */
276                 CRYPTO_r_lock(CRYPTO_LOCK_SSL_CTX);
277                 if(s->generate_session_id)
278                         cb = s->generate_session_id;
279                 else if(s->session_ctx->generate_session_id)
280                         cb = s->session_ctx->generate_session_id;
281                 CRYPTO_r_unlock(CRYPTO_LOCK_SSL_CTX);
282                 /* Choose a session ID */
283                 tmp = ss->session_id_length;
284                 if(!cb(s, ss->session_id, &tmp))
285                         {
286                         /* The callback failed */
287                         SSLerr(SSL_F_SSL_GET_NEW_SESSION,
288                                 SSL_R_SSL_SESSION_ID_CALLBACK_FAILED);
289                         SSL_SESSION_free(ss);
290                         return(0);
291                         }
292                 /* Don't allow the callback to set the session length to zero.
293                  * nor set it higher than it was. */
294                 if(!tmp || (tmp > ss->session_id_length))
295                         {
296                         /* The callback set an illegal length */
297                         SSLerr(SSL_F_SSL_GET_NEW_SESSION,
298                                 SSL_R_SSL_SESSION_ID_HAS_BAD_LENGTH);
299                         SSL_SESSION_free(ss);
300                         return(0);
301                         }
302                 /* If the session length was shrunk and we're SSLv2, pad it */
303                 if((tmp < ss->session_id_length) && (s->version == SSL2_VERSION))
304                         memset(ss->session_id + tmp, 0, ss->session_id_length - tmp);
305                 else
306                         ss->session_id_length = tmp;
307                 /* Finally, check for a conflict */
308                 if(SSL_has_matching_session_id(s, ss->session_id,
309                                                 ss->session_id_length))
310                         {
311                         SSLerr(SSL_F_SSL_GET_NEW_SESSION,
312                                 SSL_R_SSL_SESSION_ID_CONFLICT);
313                         SSL_SESSION_free(ss);
314                         return(0);
315                         }
316 #ifndef OPENSSL_NO_TLSEXT
317                 if (s->tlsext_hostname) {
318                         ss->tlsext_hostname = BUF_strdup(s->tlsext_hostname);
319                         if (ss->tlsext_hostname == NULL) {
320                                 SSLerr(SSL_F_SSL_GET_NEW_SESSION, ERR_R_INTERNAL_ERROR);
321                                 SSL_SESSION_free(ss);
322                                 return 0;
323                                 }
324                         }
325 #endif
326                 }
327         else
328                 {
329                 ss->session_id_length=0;
330                 }
331
332         if (s->sid_ctx_length > sizeof ss->sid_ctx)
333                 {
334                 SSLerr(SSL_F_SSL_GET_NEW_SESSION, ERR_R_INTERNAL_ERROR);
335                 SSL_SESSION_free(ss);
336                 return 0;
337                 }
338         memcpy(ss->sid_ctx,s->sid_ctx,s->sid_ctx_length);
339         ss->sid_ctx_length=s->sid_ctx_length;
340         s->session=ss;
341         ss->ssl_version=s->version;
342         ss->verify_result = X509_V_OK;
343
344         return(1);
345         }
346
347 int ssl_get_prev_session(SSL *s, unsigned char *session_id, int len)
348         {
349         /* This is used only by servers. */
350
351         SSL_SESSION *ret=NULL,data;
352         int fatal = 0;
353
354         data.ssl_version=s->version;
355         data.session_id_length=len;
356         if (len > SSL_MAX_SSL_SESSION_ID_LENGTH)
357                 goto err;
358         memcpy(data.session_id,session_id,len);
359
360         if (!(s->session_ctx->session_cache_mode & SSL_SESS_CACHE_NO_INTERNAL_LOOKUP))
361                 {
362                 CRYPTO_r_lock(CRYPTO_LOCK_SSL_CTX);
363                 ret=(SSL_SESSION *)lh_retrieve(s->session_ctx->sessions,&data);
364                 if (ret != NULL)
365                     /* don't allow other threads to steal it: */
366                     CRYPTO_add(&ret->references,1,CRYPTO_LOCK_SSL_SESSION);
367                 CRYPTO_r_unlock(CRYPTO_LOCK_SSL_CTX);
368                 }
369
370         if (ret == NULL)
371                 {
372                 int copy=1;
373         
374                 s->session_ctx->stats.sess_miss++;
375                 ret=NULL;
376                 if (s->session_ctx->get_session_cb != NULL
377                     && (ret=s->session_ctx->get_session_cb(s,session_id,len,&copy))
378                        != NULL)
379                         {
380                         s->session_ctx->stats.sess_cb_hit++;
381
382                         /* Increment reference count now if the session callback
383                          * asks us to do so (note that if the session structures
384                          * returned by the callback are shared between threads,
385                          * it must handle the reference count itself [i.e. copy == 0],
386                          * or things won't be thread-safe). */
387                         if (copy)
388                                 CRYPTO_add(&ret->references,1,CRYPTO_LOCK_SSL_SESSION);
389
390                         /* Add the externally cached session to the internal
391                          * cache as well if and only if we are supposed to. */
392                         if(!(s->session_ctx->session_cache_mode & SSL_SESS_CACHE_NO_INTERNAL_STORE))
393                                 /* The following should not return 1, otherwise,
394                                  * things are very strange */
395                                 SSL_CTX_add_session(s->session_ctx,ret);
396                         }
397                 if (ret == NULL)
398                         goto err;
399                 }
400
401         /* Now ret is non-NULL, and we own one of its reference counts. */
402
403         if((s->verify_mode&SSL_VERIFY_PEER)
404            && (!s->sid_ctx_length || ret->sid_ctx_length != s->sid_ctx_length
405                || memcmp(ret->sid_ctx,s->sid_ctx,ret->sid_ctx_length)))
406             {
407                 /* We've found the session named by the client, but we don't
408                  * want to use it in this context. */
409                 
410                 if (s->sid_ctx_length == 0)
411                         {
412                         /* application should have used SSL[_CTX]_set_session_id_context
413                          * -- we could tolerate this and just pretend we never heard
414                          * of this session, but then applications could effectively
415                          * disable the session cache by accident without anyone noticing */
416
417                         SSLerr(SSL_F_SSL_GET_PREV_SESSION,SSL_R_SESSION_ID_CONTEXT_UNINITIALIZED);
418                         fatal = 1;
419                         goto err;
420                         }
421                 else
422                         {
423 #if 0 /* The client cannot always know when a session is not appropriate,
424            * so we shouldn't generate an error message. */
425
426                         SSLerr(SSL_F_SSL_GET_PREV_SESSION,SSL_R_ATTEMPT_TO_REUSE_SESSION_IN_DIFFERENT_CONTEXT);
427 #endif
428                         goto err; /* treat like cache miss */
429                         }
430                 }
431
432         if (ret->cipher == NULL)
433                 {
434                 unsigned char buf[5],*p;
435                 unsigned long l;
436
437                 p=buf;
438                 l=ret->cipher_id;
439                 l2n(l,p);
440                 if ((ret->ssl_version>>8) == SSL3_VERSION_MAJOR)
441                         ret->cipher=ssl_get_cipher_by_char(s,&(buf[2]));
442                 else 
443                         ret->cipher=ssl_get_cipher_by_char(s,&(buf[1]));
444                 if (ret->cipher == NULL)
445                         goto err;
446                 }
447
448
449 #if 0 /* This is way too late. */
450
451         /* If a thread got the session, then 'swaped', and another got
452          * it and then due to a time-out decided to 'OPENSSL_free' it we could
453          * be in trouble.  So I'll increment it now, then double decrement
454          * later - am I speaking rubbish?. */
455         CRYPTO_add(&ret->references,1,CRYPTO_LOCK_SSL_SESSION);
456 #endif
457
458         if (ret->timeout < (long)(time(NULL) - ret->time)) /* timeout */
459                 {
460                 s->session_ctx->stats.sess_timeout++;
461                 /* remove it from the cache */
462                 SSL_CTX_remove_session(s->session_ctx,ret);
463                 goto err;
464                 }
465
466         s->session_ctx->stats.sess_hit++;
467
468         /* ret->time=time(NULL); */ /* rezero timeout? */
469         /* again, just leave the session 
470          * if it is the same session, we have just incremented and
471          * then decremented the reference count :-) */
472         if (s->session != NULL)
473                 SSL_SESSION_free(s->session);
474         s->session=ret;
475         s->verify_result = s->session->verify_result;
476         return(1);
477
478  err:
479         if (ret != NULL)
480                 SSL_SESSION_free(ret);
481         if (fatal)
482                 return -1;
483         else
484                 return 0;
485         }
486
487 int SSL_CTX_add_session(SSL_CTX *ctx, SSL_SESSION *c)
488         {
489         int ret=0;
490         SSL_SESSION *s;
491
492         /* add just 1 reference count for the SSL_CTX's session cache
493          * even though it has two ways of access: each session is in a
494          * doubly linked list and an lhash */
495         CRYPTO_add(&c->references,1,CRYPTO_LOCK_SSL_SESSION);
496         /* if session c is in already in cache, we take back the increment later */
497
498         CRYPTO_w_lock(CRYPTO_LOCK_SSL_CTX);
499         s=(SSL_SESSION *)lh_insert(ctx->sessions,c);
500         
501         /* s != NULL iff we already had a session with the given PID.
502          * In this case, s == c should hold (then we did not really modify
503          * ctx->sessions), or we're in trouble. */
504         if (s != NULL && s != c)
505                 {
506                 /* We *are* in trouble ... */
507                 SSL_SESSION_list_remove(ctx,s);
508                 SSL_SESSION_free(s);
509                 /* ... so pretend the other session did not exist in cache
510                  * (we cannot handle two SSL_SESSION structures with identical
511                  * session ID in the same cache, which could happen e.g. when
512                  * two threads concurrently obtain the same session from an external
513                  * cache) */
514                 s = NULL;
515                 }
516
517         /* Put at the head of the queue unless it is already in the cache */
518         if (s == NULL)
519                 SSL_SESSION_list_add(ctx,c);
520
521         if (s != NULL)
522                 {
523                 /* existing cache entry -- decrement previously incremented reference
524                  * count because it already takes into account the cache */
525
526                 SSL_SESSION_free(s); /* s == c */
527                 ret=0;
528                 }
529         else
530                 {
531                 /* new cache entry -- remove old ones if cache has become too large */
532                 
533                 ret=1;
534
535                 if (SSL_CTX_sess_get_cache_size(ctx) > 0)
536                         {
537                         while (SSL_CTX_sess_number(ctx) >
538                                 SSL_CTX_sess_get_cache_size(ctx))
539                                 {
540                                 if (!remove_session_lock(ctx,
541                                         ctx->session_cache_tail, 0))
542                                         break;
543                                 else
544                                         ctx->stats.sess_cache_full++;
545                                 }
546                         }
547                 }
548         CRYPTO_w_unlock(CRYPTO_LOCK_SSL_CTX);
549         return(ret);
550         }
551
552 int SSL_CTX_remove_session(SSL_CTX *ctx, SSL_SESSION *c)
553 {
554         return remove_session_lock(ctx, c, 1);
555 }
556
557 static int remove_session_lock(SSL_CTX *ctx, SSL_SESSION *c, int lck)
558         {
559         SSL_SESSION *r;
560         int ret=0;
561
562         if ((c != NULL) && (c->session_id_length != 0))
563                 {
564                 if(lck) CRYPTO_w_lock(CRYPTO_LOCK_SSL_CTX);
565                 if ((r = (SSL_SESSION *)lh_retrieve(ctx->sessions,c)) == c)
566                         {
567                         ret=1;
568                         r=(SSL_SESSION *)lh_delete(ctx->sessions,c);
569                         SSL_SESSION_list_remove(ctx,c);
570                         }
571
572                 if(lck) CRYPTO_w_unlock(CRYPTO_LOCK_SSL_CTX);
573
574                 if (ret)
575                         {
576                         r->not_resumable=1;
577                         if (ctx->remove_session_cb != NULL)
578                                 ctx->remove_session_cb(ctx,r);
579                         SSL_SESSION_free(r);
580                         }
581                 }
582         else
583                 ret=0;
584         return(ret);
585         }
586
587 void SSL_SESSION_free(SSL_SESSION *ss)
588         {
589         int i;
590
591         if(ss == NULL)
592             return;
593
594         i=CRYPTO_add(&ss->references,-1,CRYPTO_LOCK_SSL_SESSION);
595 #ifdef REF_PRINT
596         REF_PRINT("SSL_SESSION",ss);
597 #endif
598         if (i > 0) return;
599 #ifdef REF_CHECK
600         if (i < 0)
601                 {
602                 fprintf(stderr,"SSL_SESSION_free, bad reference count\n");
603                 abort(); /* ok */
604                 }
605 #endif
606
607         CRYPTO_free_ex_data(CRYPTO_EX_INDEX_SSL_SESSION, ss, &ss->ex_data);
608
609         OPENSSL_cleanse(ss->key_arg,sizeof ss->key_arg);
610         OPENSSL_cleanse(ss->master_key,sizeof ss->master_key);
611         OPENSSL_cleanse(ss->session_id,sizeof ss->session_id);
612         if (ss->sess_cert != NULL) ssl_sess_cert_free(ss->sess_cert);
613         if (ss->peer != NULL) X509_free(ss->peer);
614         if (ss->ciphers != NULL) sk_SSL_CIPHER_free(ss->ciphers);
615 #ifndef OPENSSL_NO_TLSEXT
616         if (ss->tlsext_hostname != NULL) OPENSSL_free(ss->tlsext_hostname);
617 #endif
618         OPENSSL_cleanse(ss,sizeof(*ss));
619         OPENSSL_free(ss);
620         }
621
622 int SSL_set_session(SSL *s, SSL_SESSION *session)
623         {
624         int ret=0;
625         const SSL_METHOD *meth;
626
627         if (session != NULL)
628                 {
629                 meth=s->ctx->method->get_ssl_method(session->ssl_version);
630                 if (meth == NULL)
631                         meth=s->method->get_ssl_method(session->ssl_version);
632                 if (meth == NULL)
633                         {
634                         SSLerr(SSL_F_SSL_SET_SESSION,SSL_R_UNABLE_TO_FIND_SSL_METHOD);
635                         return(0);
636                         }
637
638                 if (meth != s->method)
639                         {
640                         if (!SSL_set_ssl_method(s,meth))
641                                 return(0);
642                         if (s->ctx->session_timeout == 0)
643                                 session->timeout=SSL_get_default_timeout(s);
644                         else
645                                 session->timeout=s->ctx->session_timeout;
646                         }
647
648 #ifndef OPENSSL_NO_KRB5
649                 if (s->kssl_ctx && !s->kssl_ctx->client_princ &&
650                     session->krb5_client_princ_len > 0)
651                 {
652                     s->kssl_ctx->client_princ = (char *)malloc(session->krb5_client_princ_len + 1);
653                     memcpy(s->kssl_ctx->client_princ,session->krb5_client_princ,
654                             session->krb5_client_princ_len);
655                     s->kssl_ctx->client_princ[session->krb5_client_princ_len] = '\0';
656                 }
657 #endif /* OPENSSL_NO_KRB5 */
658
659                 /* CRYPTO_w_lock(CRYPTO_LOCK_SSL);*/
660                 CRYPTO_add(&session->references,1,CRYPTO_LOCK_SSL_SESSION);
661                 if (s->session != NULL)
662                         SSL_SESSION_free(s->session);
663                 s->session=session;
664                 s->verify_result = s->session->verify_result;
665                 /* CRYPTO_w_unlock(CRYPTO_LOCK_SSL);*/
666                 ret=1;
667                 }
668         else
669                 {
670                 if (s->session != NULL)
671                         {
672                         SSL_SESSION_free(s->session);
673                         s->session=NULL;
674                         }
675
676                 meth=s->ctx->method;
677                 if (meth != s->method)
678                         {
679                         if (!SSL_set_ssl_method(s,meth))
680                                 return(0);
681                         }
682                 ret=1;
683                 }
684         return(ret);
685         }
686
687 long SSL_SESSION_set_timeout(SSL_SESSION *s, long t)
688         {
689         if (s == NULL) return(0);
690         s->timeout=t;
691         return(1);
692         }
693
694 long SSL_SESSION_get_timeout(const SSL_SESSION *s)
695         {
696         if (s == NULL) return(0);
697         return(s->timeout);
698         }
699
700 long SSL_SESSION_get_time(const SSL_SESSION *s)
701         {
702         if (s == NULL) return(0);
703         return(s->time);
704         }
705
706 long SSL_SESSION_set_time(SSL_SESSION *s, long t)
707         {
708         if (s == NULL) return(0);
709         s->time=t;
710         return(t);
711         }
712
713 long SSL_CTX_set_timeout(SSL_CTX *s, long t)
714         {
715         long l;
716         if (s == NULL) return(0);
717         l=s->session_timeout;
718         s->session_timeout=t;
719         return(l);
720         }
721
722 long SSL_CTX_get_timeout(const SSL_CTX *s)
723         {
724         if (s == NULL) return(0);
725         return(s->session_timeout);
726         }
727
728 typedef struct timeout_param_st
729         {
730         SSL_CTX *ctx;
731         long time;
732         LHASH *cache;
733         } TIMEOUT_PARAM;
734
735 static void timeout(SSL_SESSION *s, TIMEOUT_PARAM *p)
736         {
737         if ((p->time == 0) || (p->time > (s->time+s->timeout))) /* timeout */
738                 {
739                 /* The reason we don't call SSL_CTX_remove_session() is to
740                  * save on locking overhead */
741                 lh_delete(p->cache,s);
742                 SSL_SESSION_list_remove(p->ctx,s);
743                 s->not_resumable=1;
744                 if (p->ctx->remove_session_cb != NULL)
745                         p->ctx->remove_session_cb(p->ctx,s);
746                 SSL_SESSION_free(s);
747                 }
748         }
749
750 static IMPLEMENT_LHASH_DOALL_ARG_FN(timeout, SSL_SESSION *, TIMEOUT_PARAM *)
751
752 void SSL_CTX_flush_sessions(SSL_CTX *s, long t)
753         {
754         unsigned long i;
755         TIMEOUT_PARAM tp;
756
757         tp.ctx=s;
758         tp.cache=s->sessions;
759         if (tp.cache == NULL) return;
760         tp.time=t;
761         CRYPTO_w_lock(CRYPTO_LOCK_SSL_CTX);
762         i=tp.cache->down_load;
763         tp.cache->down_load=0;
764         lh_doall_arg(tp.cache, LHASH_DOALL_ARG_FN(timeout), &tp);
765         tp.cache->down_load=i;
766         CRYPTO_w_unlock(CRYPTO_LOCK_SSL_CTX);
767         }
768
769 int ssl_clear_bad_session(SSL *s)
770         {
771         if (    (s->session != NULL) &&
772                 !(s->shutdown & SSL_SENT_SHUTDOWN) &&
773                 !(SSL_in_init(s) || SSL_in_before(s)))
774                 {
775                 SSL_CTX_remove_session(s->ctx,s->session);
776                 return(1);
777                 }
778         else
779                 return(0);
780         }
781
782 /* locked by SSL_CTX in the calling function */
783 static void SSL_SESSION_list_remove(SSL_CTX *ctx, SSL_SESSION *s)
784         {
785         if ((s->next == NULL) || (s->prev == NULL)) return;
786
787         if (s->next == (SSL_SESSION *)&(ctx->session_cache_tail))
788                 { /* last element in list */
789                 if (s->prev == (SSL_SESSION *)&(ctx->session_cache_head))
790                         { /* only one element in list */
791                         ctx->session_cache_head=NULL;
792                         ctx->session_cache_tail=NULL;
793                         }
794                 else
795                         {
796                         ctx->session_cache_tail=s->prev;
797                         s->prev->next=(SSL_SESSION *)&(ctx->session_cache_tail);
798                         }
799                 }
800         else
801                 {
802                 if (s->prev == (SSL_SESSION *)&(ctx->session_cache_head))
803                         { /* first element in list */
804                         ctx->session_cache_head=s->next;
805                         s->next->prev=(SSL_SESSION *)&(ctx->session_cache_head);
806                         }
807                 else
808                         { /* middle of list */
809                         s->next->prev=s->prev;
810                         s->prev->next=s->next;
811                         }
812                 }
813         s->prev=s->next=NULL;
814         }
815
816 static void SSL_SESSION_list_add(SSL_CTX *ctx, SSL_SESSION *s)
817         {
818         if ((s->next != NULL) && (s->prev != NULL))
819                 SSL_SESSION_list_remove(ctx,s);
820
821         if (ctx->session_cache_head == NULL)
822                 {
823                 ctx->session_cache_head=s;
824                 ctx->session_cache_tail=s;
825                 s->prev=(SSL_SESSION *)&(ctx->session_cache_head);
826                 s->next=(SSL_SESSION *)&(ctx->session_cache_tail);
827                 }
828         else
829                 {
830                 s->next=ctx->session_cache_head;
831                 s->next->prev=s;
832                 s->prev=(SSL_SESSION *)&(ctx->session_cache_head);
833                 ctx->session_cache_head=s;
834                 }
835         }
836