After the latest round of header-hacking, regenerate the dependencies in
[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(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(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
208                         {
209                         SSLerr(SSL_F_SSL_GET_NEW_SESSION,SSL_R_UNSUPPORTED_SSL_VERSION);
210                         SSL_SESSION_free(ss);
211                         return(0);
212                         }
213                 /* Choose which callback will set the session ID */
214                 CRYPTO_r_lock(CRYPTO_LOCK_SSL_CTX);
215                 if(s->generate_session_id)
216                         cb = s->generate_session_id;
217                 else if(s->ctx->generate_session_id)
218                         cb = s->ctx->generate_session_id;
219                 CRYPTO_r_unlock(CRYPTO_LOCK_SSL_CTX);
220                 /* Choose a session ID */
221                 tmp = ss->session_id_length;
222                 if(!cb(s, ss->session_id, &tmp))
223                         {
224                         /* The callback failed */
225                         SSLerr(SSL_F_SSL_GET_NEW_SESSION,
226                                 SSL_R_SSL_SESSION_ID_CALLBACK_FAILED);
227                         SSL_SESSION_free(ss);
228                         return(0);
229                         }
230                 /* Don't allow the callback to set the session length to zero.
231                  * nor set it higher than it was. */
232                 if(!tmp || (tmp > ss->session_id_length))
233                         {
234                         /* The callback set an illegal length */
235                         SSLerr(SSL_F_SSL_GET_NEW_SESSION,
236                                 SSL_R_SSL_SESSION_ID_HAS_BAD_LENGTH);
237                         SSL_SESSION_free(ss);
238                         return(0);
239                         }
240                 /* If the session length was shrunk and we're SSLv2, pad it */
241                 if((tmp < ss->session_id_length) && (s->version == SSL2_VERSION))
242                         memset(ss->session_id + tmp, 0, ss->session_id_length - tmp);
243                 else
244                         ss->session_id_length = tmp;
245                 /* Finally, check for a conflict */
246                 if(SSL_has_matching_session_id(s, ss->session_id,
247                                                 ss->session_id_length))
248                         {
249                         SSLerr(SSL_F_SSL_GET_NEW_SESSION,
250                                 SSL_R_SSL_SESSION_ID_CONFLICT);
251                         SSL_SESSION_free(ss);
252                         return(0);
253                         }
254                 }
255         else
256                 {
257                 ss->session_id_length=0;
258                 }
259
260         if (s->sid_ctx_length > sizeof ss->sid_ctx)
261                 {
262                 SSLerr(SSL_F_SSL_GET_NEW_SESSION, ERR_R_INTERNAL_ERROR);
263                 SSL_SESSION_free(ss);
264                 return 0;
265                 }
266         memcpy(ss->sid_ctx,s->sid_ctx,s->sid_ctx_length);
267         ss->sid_ctx_length=s->sid_ctx_length;
268         s->session=ss;
269         ss->ssl_version=s->version;
270         ss->verify_result = X509_V_OK;
271
272         return(1);
273         }
274
275 int ssl_get_prev_session(SSL *s, unsigned char *session_id, int len)
276         {
277         /* This is used only by servers. */
278
279         SSL_SESSION *ret=NULL,data;
280         int fatal = 0;
281
282         data.ssl_version=s->version;
283         data.session_id_length=len;
284         if (len > SSL_MAX_SSL_SESSION_ID_LENGTH)
285                 goto err;
286         memcpy(data.session_id,session_id,len);
287
288         if (!(s->ctx->session_cache_mode & SSL_SESS_CACHE_NO_INTERNAL_LOOKUP))
289                 {
290                 CRYPTO_r_lock(CRYPTO_LOCK_SSL_CTX);
291                 ret=(SSL_SESSION *)lh_retrieve(s->ctx->sessions,&data);
292                 if (ret != NULL)
293                     /* don't allow other threads to steal it: */
294                     CRYPTO_add(&ret->references,1,CRYPTO_LOCK_SSL_SESSION);
295                 CRYPTO_r_unlock(CRYPTO_LOCK_SSL_CTX);
296                 }
297
298         if (ret == NULL)
299                 {
300                 int copy=1;
301         
302                 s->ctx->stats.sess_miss++;
303                 ret=NULL;
304                 if (s->ctx->get_session_cb != NULL
305                     && (ret=s->ctx->get_session_cb(s,session_id,len,&copy))
306                        != NULL)
307                         {
308                         s->ctx->stats.sess_cb_hit++;
309
310                         /* Increment reference count now if the session callback
311                          * asks us to do so (note that if the session structures
312                          * returned by the callback are shared between threads,
313                          * it must handle the reference count itself [i.e. copy == 0],
314                          * or things won't be thread-safe). */
315                         if (copy)
316                                 CRYPTO_add(&ret->references,1,CRYPTO_LOCK_SSL_SESSION);
317
318                         /* Add the externally cached session to the internal
319                          * cache as well if and only if we are supposed to. */
320                         if(!(s->ctx->session_cache_mode & SSL_SESS_CACHE_NO_INTERNAL_STORE))
321                                 /* The following should not return 1, otherwise,
322                                  * things are very strange */
323                                 SSL_CTX_add_session(s->ctx,ret);
324                         }
325                 if (ret == NULL)
326                         goto err;
327                 }
328
329         /* Now ret is non-NULL, and we own one of its reference counts. */
330
331         if((s->verify_mode&SSL_VERIFY_PEER)
332            && (!s->sid_ctx_length || ret->sid_ctx_length != s->sid_ctx_length
333                || memcmp(ret->sid_ctx,s->sid_ctx,ret->sid_ctx_length)))
334             {
335                 /* We've found the session named by the client, but we don't
336                  * want to use it in this context. */
337                 
338                 if (s->sid_ctx_length == 0)
339                         {
340                         /* application should have used SSL[_CTX]_set_session_id_context
341                          * -- we could tolerate this and just pretend we never heard
342                          * of this session, but then applications could effectively
343                          * disable the session cache by accident without anyone noticing */
344
345                         SSLerr(SSL_F_SSL_GET_PREV_SESSION,SSL_R_SESSION_ID_CONTEXT_UNINITIALIZED);
346                         fatal = 1;
347                         goto err;
348                         }
349                 else
350                         {
351 #if 0 /* The client cannot always know when a session is not appropriate,
352            * so we shouldn't generate an error message. */
353
354                         SSLerr(SSL_F_SSL_GET_PREV_SESSION,SSL_R_ATTEMPT_TO_REUSE_SESSION_IN_DIFFERENT_CONTEXT);
355 #endif
356                         goto err; /* treat like cache miss */
357                         }
358                 }
359
360         if (ret->cipher == NULL)
361                 {
362                 unsigned char buf[5],*p;
363                 unsigned long l;
364
365                 p=buf;
366                 l=ret->cipher_id;
367                 l2n(l,p);
368                 if ((ret->ssl_version>>8) == SSL3_VERSION_MAJOR)
369                         ret->cipher=ssl_get_cipher_by_char(s,&(buf[2]));
370                 else 
371                         ret->cipher=ssl_get_cipher_by_char(s,&(buf[1]));
372                 if (ret->cipher == NULL)
373                         goto err;
374                 }
375
376
377 #if 0 /* This is way too late. */
378
379         /* If a thread got the session, then 'swaped', and another got
380          * it and then due to a time-out decided to 'OPENSSL_free' it we could
381          * be in trouble.  So I'll increment it now, then double decrement
382          * later - am I speaking rubbish?. */
383         CRYPTO_add(&ret->references,1,CRYPTO_LOCK_SSL_SESSION);
384 #endif
385
386         if ((long)(ret->time+ret->timeout) < (long)time(NULL)) /* timeout */
387                 {
388                 s->ctx->stats.sess_timeout++;
389                 /* remove it from the cache */
390                 SSL_CTX_remove_session(s->ctx,ret);
391                 goto err;
392                 }
393
394         s->ctx->stats.sess_hit++;
395
396         /* ret->time=time(NULL); */ /* rezero timeout? */
397         /* again, just leave the session 
398          * if it is the same session, we have just incremented and
399          * then decremented the reference count :-) */
400         if (s->session != NULL)
401                 SSL_SESSION_free(s->session);
402         s->session=ret;
403         s->verify_result = s->session->verify_result;
404         return(1);
405
406  err:
407         if (ret != NULL)
408                 SSL_SESSION_free(ret);
409         if (fatal)
410                 return -1;
411         else
412                 return 0;
413         }
414
415 int SSL_CTX_add_session(SSL_CTX *ctx, SSL_SESSION *c)
416         {
417         int ret=0;
418         SSL_SESSION *s;
419
420         /* add just 1 reference count for the SSL_CTX's session cache
421          * even though it has two ways of access: each session is in a
422          * doubly linked list and an lhash */
423         CRYPTO_add(&c->references,1,CRYPTO_LOCK_SSL_SESSION);
424         /* if session c is in already in cache, we take back the increment later */
425
426         CRYPTO_w_lock(CRYPTO_LOCK_SSL_CTX);
427         s=(SSL_SESSION *)lh_insert(ctx->sessions,c);
428         
429         /* s != NULL iff we already had a session with the given PID.
430          * In this case, s == c should hold (then we did not really modify
431          * ctx->sessions), or we're in trouble. */
432         if (s != NULL && s != c)
433                 {
434                 /* We *are* in trouble ... */
435                 SSL_SESSION_list_remove(ctx,s);
436                 SSL_SESSION_free(s);
437                 /* ... so pretend the other session did not exist in cache
438                  * (we cannot handle two SSL_SESSION structures with identical
439                  * session ID in the same cache, which could happen e.g. when
440                  * two threads concurrently obtain the same session from an external
441                  * cache) */
442                 s = NULL;
443                 }
444
445         /* Put at the head of the queue unless it is already in the cache */
446         if (s == NULL)
447                 SSL_SESSION_list_add(ctx,c);
448
449         if (s != NULL)
450                 {
451                 /* existing cache entry -- decrement previously incremented reference
452                  * count because it already takes into account the cache */
453
454                 SSL_SESSION_free(s); /* s == c */
455                 ret=0;
456                 }
457         else
458                 {
459                 /* new cache entry -- remove old ones if cache has become too large */
460                 
461                 ret=1;
462
463                 if (SSL_CTX_sess_get_cache_size(ctx) > 0)
464                         {
465                         while (SSL_CTX_sess_number(ctx) >
466                                 SSL_CTX_sess_get_cache_size(ctx))
467                                 {
468                                 if (!remove_session_lock(ctx,
469                                         ctx->session_cache_tail, 0))
470                                         break;
471                                 else
472                                         ctx->stats.sess_cache_full++;
473                                 }
474                         }
475                 }
476         CRYPTO_w_unlock(CRYPTO_LOCK_SSL_CTX);
477         return(ret);
478         }
479
480 int SSL_CTX_remove_session(SSL_CTX *ctx, SSL_SESSION *c)
481 {
482         return remove_session_lock(ctx, c, 1);
483 }
484
485 static int remove_session_lock(SSL_CTX *ctx, SSL_SESSION *c, int lck)
486         {
487         SSL_SESSION *r;
488         int ret=0;
489
490         if ((c != NULL) && (c->session_id_length != 0))
491                 {
492                 if(lck) CRYPTO_w_lock(CRYPTO_LOCK_SSL_CTX);
493                 if ((r = (SSL_SESSION *)lh_retrieve(ctx->sessions,c)) == c)
494                         {
495                         ret=1;
496                         r=(SSL_SESSION *)lh_delete(ctx->sessions,c);
497                         SSL_SESSION_list_remove(ctx,c);
498                         }
499
500                 if(lck) CRYPTO_w_unlock(CRYPTO_LOCK_SSL_CTX);
501
502                 if (ret)
503                         {
504                         r->not_resumable=1;
505                         if (ctx->remove_session_cb != NULL)
506                                 ctx->remove_session_cb(ctx,r);
507                         SSL_SESSION_free(r);
508                         }
509                 }
510         else
511                 ret=0;
512         return(ret);
513         }
514
515 void SSL_SESSION_free(SSL_SESSION *ss)
516         {
517         int i;
518
519         if(ss == NULL)
520             return;
521
522         i=CRYPTO_add(&ss->references,-1,CRYPTO_LOCK_SSL_SESSION);
523 #ifdef REF_PRINT
524         REF_PRINT("SSL_SESSION",ss);
525 #endif
526         if (i > 0) return;
527 #ifdef REF_CHECK
528         if (i < 0)
529                 {
530                 fprintf(stderr,"SSL_SESSION_free, bad reference count\n");
531                 abort(); /* ok */
532                 }
533 #endif
534
535         CRYPTO_free_ex_data(CRYPTO_EX_INDEX_SSL_SESSION, ss, &ss->ex_data);
536
537         OPENSSL_cleanse(ss->key_arg,sizeof ss->key_arg);
538         OPENSSL_cleanse(ss->master_key,sizeof ss->master_key);
539         OPENSSL_cleanse(ss->session_id,sizeof ss->session_id);
540         if (ss->sess_cert != NULL) ssl_sess_cert_free(ss->sess_cert);
541         if (ss->peer != NULL) X509_free(ss->peer);
542         if (ss->ciphers != NULL) sk_SSL_CIPHER_free(ss->ciphers);
543         OPENSSL_cleanse(ss,sizeof(*ss));
544         OPENSSL_free(ss);
545         }
546
547 int SSL_set_session(SSL *s, SSL_SESSION *session)
548         {
549         int ret=0;
550         SSL_METHOD *meth;
551
552         if (session != NULL)
553                 {
554                 meth=s->ctx->method->get_ssl_method(session->ssl_version);
555                 if (meth == NULL)
556                         meth=s->method->get_ssl_method(session->ssl_version);
557                 if (meth == NULL)
558                         {
559                         SSLerr(SSL_F_SSL_SET_SESSION,SSL_R_UNABLE_TO_FIND_SSL_METHOD);
560                         return(0);
561                         }
562
563                 if (meth != s->method)
564                         {
565                         if (!SSL_set_ssl_method(s,meth))
566                                 return(0);
567                         if (s->ctx->session_timeout == 0)
568                                 session->timeout=SSL_get_default_timeout(s);
569                         else
570                                 session->timeout=s->ctx->session_timeout;
571                         }
572
573 #ifndef OPENSSL_NO_KRB5
574                 if (s->kssl_ctx && !s->kssl_ctx->client_princ &&
575                     session->krb5_client_princ_len > 0)
576                 {
577                     s->kssl_ctx->client_princ = (char *)malloc(session->krb5_client_princ_len + 1);
578                     memcpy(s->kssl_ctx->client_princ,session->krb5_client_princ,
579                             session->krb5_client_princ_len);
580                     s->kssl_ctx->client_princ[session->krb5_client_princ_len] = '\0';
581                 }
582 #endif /* OPENSSL_NO_KRB5 */
583
584                 /* CRYPTO_w_lock(CRYPTO_LOCK_SSL);*/
585                 CRYPTO_add(&session->references,1,CRYPTO_LOCK_SSL_SESSION);
586                 if (s->session != NULL)
587                         SSL_SESSION_free(s->session);
588                 s->session=session;
589                 s->verify_result = s->session->verify_result;
590                 /* CRYPTO_w_unlock(CRYPTO_LOCK_SSL);*/
591                 ret=1;
592                 }
593         else
594                 {
595                 if (s->session != NULL)
596                         {
597                         SSL_SESSION_free(s->session);
598                         s->session=NULL;
599                         }
600
601                 meth=s->ctx->method;
602                 if (meth != s->method)
603                         {
604                         if (!SSL_set_ssl_method(s,meth))
605                                 return(0);
606                         }
607                 ret=1;
608                 }
609         return(ret);
610         }
611
612 long SSL_SESSION_set_timeout(SSL_SESSION *s, long t)
613         {
614         if (s == NULL) return(0);
615         s->timeout=t;
616         return(1);
617         }
618
619 long SSL_SESSION_get_timeout(SSL_SESSION *s)
620         {
621         if (s == NULL) return(0);
622         return(s->timeout);
623         }
624
625 long SSL_SESSION_get_time(SSL_SESSION *s)
626         {
627         if (s == NULL) return(0);
628         return(s->time);
629         }
630
631 long SSL_SESSION_set_time(SSL_SESSION *s, long t)
632         {
633         if (s == NULL) return(0);
634         s->time=t;
635         return(t);
636         }
637
638 long SSL_CTX_set_timeout(SSL_CTX *s, long t)
639         {
640         long l;
641         if (s == NULL) return(0);
642         l=s->session_timeout;
643         s->session_timeout=t;
644         return(l);
645         }
646
647 long SSL_CTX_get_timeout(SSL_CTX *s)
648         {
649         if (s == NULL) return(0);
650         return(s->session_timeout);
651         }
652
653 typedef struct timeout_param_st
654         {
655         SSL_CTX *ctx;
656         long time;
657         LHASH *cache;
658         } TIMEOUT_PARAM;
659
660 static void timeout(SSL_SESSION *s, TIMEOUT_PARAM *p)
661         {
662         if ((p->time == 0) || (p->time > (s->time+s->timeout))) /* timeout */
663                 {
664                 /* The reason we don't call SSL_CTX_remove_session() is to
665                  * save on locking overhead */
666                 lh_delete(p->cache,s);
667                 SSL_SESSION_list_remove(p->ctx,s);
668                 s->not_resumable=1;
669                 if (p->ctx->remove_session_cb != NULL)
670                         p->ctx->remove_session_cb(p->ctx,s);
671                 SSL_SESSION_free(s);
672                 }
673         }
674
675 static IMPLEMENT_LHASH_DOALL_ARG_FN(timeout, SSL_SESSION *, TIMEOUT_PARAM *)
676
677 void SSL_CTX_flush_sessions(SSL_CTX *s, long t)
678         {
679         unsigned long i;
680         TIMEOUT_PARAM tp;
681
682         tp.ctx=s;
683         tp.cache=s->sessions;
684         if (tp.cache == NULL) return;
685         tp.time=t;
686         CRYPTO_w_lock(CRYPTO_LOCK_SSL_CTX);
687         i=tp.cache->down_load;
688         tp.cache->down_load=0;
689         lh_doall_arg(tp.cache, LHASH_DOALL_ARG_FN(timeout), &tp);
690         tp.cache->down_load=i;
691         CRYPTO_w_unlock(CRYPTO_LOCK_SSL_CTX);
692         }
693
694 int ssl_clear_bad_session(SSL *s)
695         {
696         if (    (s->session != NULL) &&
697                 !(s->shutdown & SSL_SENT_SHUTDOWN) &&
698                 !(SSL_in_init(s) || SSL_in_before(s)))
699                 {
700                 SSL_CTX_remove_session(s->ctx,s->session);
701                 return(1);
702                 }
703         else
704                 return(0);
705         }
706
707 /* locked by SSL_CTX in the calling function */
708 static void SSL_SESSION_list_remove(SSL_CTX *ctx, SSL_SESSION *s)
709         {
710         if ((s->next == NULL) || (s->prev == NULL)) return;
711
712         if (s->next == (SSL_SESSION *)&(ctx->session_cache_tail))
713                 { /* last element in list */
714                 if (s->prev == (SSL_SESSION *)&(ctx->session_cache_head))
715                         { /* only one element in list */
716                         ctx->session_cache_head=NULL;
717                         ctx->session_cache_tail=NULL;
718                         }
719                 else
720                         {
721                         ctx->session_cache_tail=s->prev;
722                         s->prev->next=(SSL_SESSION *)&(ctx->session_cache_tail);
723                         }
724                 }
725         else
726                 {
727                 if (s->prev == (SSL_SESSION *)&(ctx->session_cache_head))
728                         { /* first element in list */
729                         ctx->session_cache_head=s->next;
730                         s->next->prev=(SSL_SESSION *)&(ctx->session_cache_head);
731                         }
732                 else
733                         { /* middle of list */
734                         s->next->prev=s->prev;
735                         s->prev->next=s->next;
736                         }
737                 }
738         s->prev=s->next=NULL;
739         }
740
741 static void SSL_SESSION_list_add(SSL_CTX *ctx, SSL_SESSION *s)
742         {
743         if ((s->next != NULL) && (s->prev != NULL))
744                 SSL_SESSION_list_remove(ctx,s);
745
746         if (ctx->session_cache_head == NULL)
747                 {
748                 ctx->session_cache_head=s;
749                 ctx->session_cache_tail=s;
750                 s->prev=(SSL_SESSION *)&(ctx->session_cache_head);
751                 s->next=(SSL_SESSION *)&(ctx->session_cache_tail);
752                 }
753         else
754                 {
755                 s->next=ctx->session_cache_head;
756                 s->next->prev=s;
757                 s->prev=(SSL_SESSION *)&(ctx->session_cache_head);
758                 ctx->session_cache_head=s;
759                 }
760         }
761