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