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