ssl_sess.c 21 KB

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