ssl_sess.c 18 KB

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