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