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