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