ssl_sess.c 42 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451
  1. /*
  2. * Copyright 1995-2025 The OpenSSL Project Authors. All Rights Reserved.
  3. * Copyright 2005 Nokia. All rights reserved.
  4. *
  5. * Licensed under the Apache License 2.0 (the "License"). You may not use
  6. * this file except in compliance with the License. You can obtain a copy
  7. * in the file LICENSE in the source distribution or at
  8. * https://www.openssl.org/source/license.html
  9. */
  10. #if defined(__TANDEM) && defined(_SPT_MODEL_)
  11. # include <spthread.h>
  12. # include <spt_extensions.h> /* timeval */
  13. #endif
  14. #include <stdio.h>
  15. #include <openssl/rand.h>
  16. #include <openssl/engine.h>
  17. #include "internal/refcount.h"
  18. #include "internal/cryptlib.h"
  19. #include "ssl_local.h"
  20. #include "statem/statem_local.h"
  21. static void SSL_SESSION_list_remove(SSL_CTX *ctx, SSL_SESSION *s);
  22. static void SSL_SESSION_list_add(SSL_CTX *ctx, SSL_SESSION *s);
  23. static int remove_session_lock(SSL_CTX *ctx, SSL_SESSION *c, int lck);
  24. DEFINE_STACK_OF(SSL_SESSION)
  25. __owur static ossl_inline int sess_timedout(OSSL_TIME t, SSL_SESSION *ss)
  26. {
  27. return ossl_time_compare(t, ss->calc_timeout) > 0;
  28. }
  29. /*
  30. * Returns -1/0/+1 as other XXXcmp-type functions
  31. * Takes calculated timeout into consideration
  32. */
  33. __owur static ossl_inline int timeoutcmp(SSL_SESSION *a, SSL_SESSION *b)
  34. {
  35. return ossl_time_compare(a->calc_timeout, b->calc_timeout);
  36. }
  37. /*
  38. * Calculates effective timeout
  39. * Locking must be done by the caller of this function
  40. */
  41. void ssl_session_calculate_timeout(SSL_SESSION *ss)
  42. {
  43. ss->calc_timeout = ossl_time_add(ss->time, ss->timeout);
  44. }
  45. /*
  46. * SSL_get_session() and SSL_get1_session() are problematic in TLS1.3 because,
  47. * unlike in earlier protocol versions, the session ticket may not have been
  48. * sent yet even though a handshake has finished. The session ticket data could
  49. * come in sometime later...or even change if multiple session ticket messages
  50. * are sent from the server. The preferred way for applications to obtain
  51. * a resumable session is to use SSL_CTX_sess_set_new_cb().
  52. */
  53. SSL_SESSION *SSL_get_session(const SSL *ssl)
  54. /* aka SSL_get0_session; gets 0 objects, just returns a copy of the pointer */
  55. {
  56. const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(ssl);
  57. if (sc == NULL)
  58. return NULL;
  59. return sc->session;
  60. }
  61. SSL_SESSION *SSL_get1_session(SSL *ssl)
  62. /* variant of SSL_get_session: caller really gets something */
  63. {
  64. SSL_SESSION *sess;
  65. /*
  66. * Need to lock this all up rather than just use CRYPTO_add so that
  67. * somebody doesn't free ssl->session between when we check it's non-null
  68. * and when we up the reference count.
  69. */
  70. if (!CRYPTO_THREAD_read_lock(ssl->lock))
  71. return NULL;
  72. sess = SSL_get_session(ssl);
  73. if (sess != NULL)
  74. SSL_SESSION_up_ref(sess);
  75. CRYPTO_THREAD_unlock(ssl->lock);
  76. return sess;
  77. }
  78. int SSL_SESSION_set_ex_data(SSL_SESSION *s, int idx, void *arg)
  79. {
  80. return CRYPTO_set_ex_data(&s->ex_data, idx, arg);
  81. }
  82. void *SSL_SESSION_get_ex_data(const SSL_SESSION *s, int idx)
  83. {
  84. return CRYPTO_get_ex_data(&s->ex_data, idx);
  85. }
  86. SSL_SESSION *SSL_SESSION_new(void)
  87. {
  88. SSL_SESSION *ss;
  89. if (!OPENSSL_init_ssl(OPENSSL_INIT_LOAD_SSL_STRINGS, NULL))
  90. return NULL;
  91. ss = OPENSSL_zalloc(sizeof(*ss));
  92. if (ss == NULL)
  93. return NULL;
  94. ss->ext.max_fragment_len_mode = TLSEXT_max_fragment_length_UNSPECIFIED;
  95. ss->verify_result = 1; /* avoid 0 (= X509_V_OK) just in case */
  96. /* 5 minute timeout by default */
  97. ss->timeout = ossl_seconds2time(60 * 5 + 4);
  98. ss->time = ossl_time_now();
  99. ssl_session_calculate_timeout(ss);
  100. if (!CRYPTO_NEW_REF(&ss->references, 1)) {
  101. OPENSSL_free(ss);
  102. return NULL;
  103. }
  104. if (!CRYPTO_new_ex_data(CRYPTO_EX_INDEX_SSL_SESSION, ss, &ss->ex_data)) {
  105. CRYPTO_FREE_REF(&ss->references);
  106. OPENSSL_free(ss);
  107. return NULL;
  108. }
  109. return ss;
  110. }
  111. /*
  112. * Create a new SSL_SESSION and duplicate the contents of |src| into it. If
  113. * ticket == 0 then no ticket information is duplicated, otherwise it is.
  114. */
  115. static SSL_SESSION *ssl_session_dup_intern(const SSL_SESSION *src, int ticket)
  116. {
  117. SSL_SESSION *dest;
  118. dest = OPENSSL_malloc(sizeof(*dest));
  119. if (dest == NULL)
  120. return NULL;
  121. /*
  122. * src is logically read-only but the prev/next pointers are not, they are
  123. * part of the session cache and can be modified concurrently.
  124. */
  125. memcpy(dest, src, offsetof(SSL_SESSION, prev));
  126. /*
  127. * Set the various pointers to NULL so that we can call SSL_SESSION_free in
  128. * the case of an error whilst halfway through constructing dest
  129. */
  130. #ifndef OPENSSL_NO_PSK
  131. dest->psk_identity_hint = NULL;
  132. dest->psk_identity = NULL;
  133. #endif
  134. dest->ext.hostname = NULL;
  135. dest->ext.tick = NULL;
  136. dest->ext.alpn_selected = NULL;
  137. #ifndef OPENSSL_NO_SRP
  138. dest->srp_username = NULL;
  139. #endif
  140. dest->peer_chain = NULL;
  141. dest->peer = NULL;
  142. dest->peer_rpk = NULL;
  143. dest->ticket_appdata = NULL;
  144. memset(&dest->ex_data, 0, sizeof(dest->ex_data));
  145. /* As the copy is not in the cache, we remove the associated pointers */
  146. dest->prev = NULL;
  147. dest->next = NULL;
  148. dest->owner = NULL;
  149. if (!CRYPTO_NEW_REF(&dest->references, 1)) {
  150. OPENSSL_free(dest);
  151. return NULL;
  152. }
  153. if (!CRYPTO_new_ex_data(CRYPTO_EX_INDEX_SSL_SESSION, dest, &dest->ex_data)) {
  154. ERR_raise(ERR_LIB_SSL, ERR_R_CRYPTO_LIB);
  155. goto err;
  156. }
  157. if (src->peer != NULL) {
  158. if (!X509_up_ref(src->peer)) {
  159. ERR_raise(ERR_LIB_SSL, ERR_R_X509_LIB);
  160. goto err;
  161. }
  162. dest->peer = src->peer;
  163. }
  164. if (src->peer_chain != NULL) {
  165. dest->peer_chain = X509_chain_up_ref(src->peer_chain);
  166. if (dest->peer_chain == NULL) {
  167. ERR_raise(ERR_LIB_SSL, ERR_R_X509_LIB);
  168. goto err;
  169. }
  170. }
  171. if (src->peer_rpk != NULL) {
  172. if (!EVP_PKEY_up_ref(src->peer_rpk))
  173. goto err;
  174. dest->peer_rpk = src->peer_rpk;
  175. }
  176. #ifndef OPENSSL_NO_PSK
  177. if (src->psk_identity_hint) {
  178. dest->psk_identity_hint = OPENSSL_strdup(src->psk_identity_hint);
  179. if (dest->psk_identity_hint == NULL)
  180. goto err;
  181. }
  182. if (src->psk_identity) {
  183. dest->psk_identity = OPENSSL_strdup(src->psk_identity);
  184. if (dest->psk_identity == NULL)
  185. goto err;
  186. }
  187. #endif
  188. if (!CRYPTO_dup_ex_data(CRYPTO_EX_INDEX_SSL_SESSION,
  189. &dest->ex_data, &src->ex_data)) {
  190. ERR_raise(ERR_LIB_SSL, ERR_R_CRYPTO_LIB);
  191. goto err;
  192. }
  193. if (src->ext.hostname) {
  194. dest->ext.hostname = OPENSSL_strdup(src->ext.hostname);
  195. if (dest->ext.hostname == NULL)
  196. goto err;
  197. }
  198. if (ticket != 0 && src->ext.tick != NULL) {
  199. dest->ext.tick =
  200. OPENSSL_memdup(src->ext.tick, src->ext.ticklen);
  201. if (dest->ext.tick == NULL)
  202. goto err;
  203. } else {
  204. dest->ext.tick_lifetime_hint = 0;
  205. dest->ext.ticklen = 0;
  206. }
  207. if (src->ext.alpn_selected != NULL) {
  208. dest->ext.alpn_selected = OPENSSL_memdup(src->ext.alpn_selected,
  209. src->ext.alpn_selected_len);
  210. if (dest->ext.alpn_selected == NULL)
  211. goto err;
  212. }
  213. #ifndef OPENSSL_NO_SRP
  214. if (src->srp_username) {
  215. dest->srp_username = OPENSSL_strdup(src->srp_username);
  216. if (dest->srp_username == NULL)
  217. goto err;
  218. }
  219. #endif
  220. if (src->ticket_appdata != NULL) {
  221. dest->ticket_appdata =
  222. OPENSSL_memdup(src->ticket_appdata, src->ticket_appdata_len);
  223. if (dest->ticket_appdata == NULL)
  224. goto err;
  225. }
  226. return dest;
  227. err:
  228. SSL_SESSION_free(dest);
  229. return NULL;
  230. }
  231. SSL_SESSION *SSL_SESSION_dup(const SSL_SESSION *src)
  232. {
  233. return ssl_session_dup_intern(src, 1);
  234. }
  235. /*
  236. * Used internally when duplicating a session which might be already shared.
  237. * We will have resumed the original session. Subsequently we might have marked
  238. * it as non-resumable (e.g. in another thread) - but this copy should be ok to
  239. * resume from.
  240. */
  241. SSL_SESSION *ssl_session_dup(const SSL_SESSION *src, int ticket)
  242. {
  243. SSL_SESSION *sess = ssl_session_dup_intern(src, ticket);
  244. if (sess != NULL)
  245. sess->not_resumable = 0;
  246. return sess;
  247. }
  248. const unsigned char *SSL_SESSION_get_id(const SSL_SESSION *s, unsigned int *len)
  249. {
  250. if (len)
  251. *len = (unsigned int)s->session_id_length;
  252. return s->session_id;
  253. }
  254. const unsigned char *SSL_SESSION_get0_id_context(const SSL_SESSION *s,
  255. unsigned int *len)
  256. {
  257. if (len != NULL)
  258. *len = (unsigned int)s->sid_ctx_length;
  259. return s->sid_ctx;
  260. }
  261. unsigned int SSL_SESSION_get_compress_id(const SSL_SESSION *s)
  262. {
  263. return s->compress_meth;
  264. }
  265. /*
  266. * SSLv3/TLSv1 has 32 bytes (256 bits) of session ID space. As such, filling
  267. * the ID with random junk repeatedly until we have no conflict is going to
  268. * complete in one iteration pretty much "most" of the time (btw:
  269. * understatement). So, if it takes us 10 iterations and we still can't avoid
  270. * a conflict - well that's a reasonable point to call it quits. Either the
  271. * RAND code is broken or someone is trying to open roughly very close to
  272. * 2^256 SSL sessions to our server. How you might store that many sessions
  273. * is perhaps a more interesting question ...
  274. */
  275. #define MAX_SESS_ID_ATTEMPTS 10
  276. static int def_generate_session_id(SSL *ssl, unsigned char *id,
  277. unsigned int *id_len)
  278. {
  279. unsigned int retry = 0;
  280. do {
  281. if (RAND_bytes_ex(ssl->ctx->libctx, id, *id_len, 0) <= 0)
  282. return 0;
  283. #ifdef FUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION
  284. if (retry > 0) {
  285. id[0]++;
  286. }
  287. #endif
  288. } while (SSL_has_matching_session_id(ssl, id, *id_len) &&
  289. (++retry < MAX_SESS_ID_ATTEMPTS)) ;
  290. if (retry < MAX_SESS_ID_ATTEMPTS)
  291. return 1;
  292. /* else - woops a session_id match */
  293. /*
  294. * XXX We should also check the external cache -- but the probability of
  295. * a collision is negligible, and we could not prevent the concurrent
  296. * creation of sessions with identical IDs since we currently don't have
  297. * means to atomically check whether a session ID already exists and make
  298. * a reservation for it if it does not (this problem applies to the
  299. * internal cache as well).
  300. */
  301. return 0;
  302. }
  303. int ssl_generate_session_id(SSL_CONNECTION *s, SSL_SESSION *ss)
  304. {
  305. unsigned int tmp;
  306. GEN_SESSION_CB cb = def_generate_session_id;
  307. SSL *ssl = SSL_CONNECTION_GET_SSL(s);
  308. switch (s->version) {
  309. case SSL3_VERSION:
  310. case TLS1_VERSION:
  311. case TLS1_1_VERSION:
  312. case TLS1_2_VERSION:
  313. case TLS1_3_VERSION:
  314. case DTLS1_BAD_VER:
  315. case DTLS1_VERSION:
  316. case DTLS1_2_VERSION:
  317. ss->session_id_length = SSL3_SSL_SESSION_ID_LENGTH;
  318. break;
  319. default:
  320. SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_R_UNSUPPORTED_SSL_VERSION);
  321. return 0;
  322. }
  323. /*-
  324. * If RFC5077 ticket, use empty session ID (as server).
  325. * Note that:
  326. * (a) ssl_get_prev_session() does lookahead into the
  327. * ClientHello extensions to find the session ticket.
  328. * When ssl_get_prev_session() fails, statem_srvr.c calls
  329. * ssl_get_new_session() in tls_process_client_hello().
  330. * At that point, it has not yet parsed the extensions,
  331. * however, because of the lookahead, it already knows
  332. * whether a ticket is expected or not.
  333. *
  334. * (b) statem_clnt.c calls ssl_get_new_session() before parsing
  335. * ServerHello extensions, and before recording the session
  336. * ID received from the server, so this block is a noop.
  337. */
  338. if (s->ext.ticket_expected) {
  339. ss->session_id_length = 0;
  340. return 1;
  341. }
  342. /* Choose which callback will set the session ID */
  343. if (!CRYPTO_THREAD_read_lock(SSL_CONNECTION_GET_SSL(s)->lock))
  344. return 0;
  345. if (!CRYPTO_THREAD_read_lock(s->session_ctx->lock)) {
  346. CRYPTO_THREAD_unlock(ssl->lock);
  347. SSLfatal(s, SSL_AD_INTERNAL_ERROR,
  348. SSL_R_SESSION_ID_CONTEXT_UNINITIALIZED);
  349. return 0;
  350. }
  351. if (s->generate_session_id)
  352. cb = s->generate_session_id;
  353. else if (s->session_ctx->generate_session_id)
  354. cb = s->session_ctx->generate_session_id;
  355. CRYPTO_THREAD_unlock(s->session_ctx->lock);
  356. CRYPTO_THREAD_unlock(ssl->lock);
  357. /* Choose a session ID */
  358. memset(ss->session_id, 0, ss->session_id_length);
  359. tmp = (int)ss->session_id_length;
  360. if (!cb(ssl, ss->session_id, &tmp)) {
  361. /* The callback failed */
  362. SSLfatal(s, SSL_AD_INTERNAL_ERROR,
  363. SSL_R_SSL_SESSION_ID_CALLBACK_FAILED);
  364. return 0;
  365. }
  366. /*
  367. * Don't allow the callback to set the session length to zero. nor
  368. * set it higher than it was.
  369. */
  370. if (tmp == 0 || tmp > ss->session_id_length) {
  371. /* The callback set an illegal length */
  372. SSLfatal(s, SSL_AD_INTERNAL_ERROR,
  373. SSL_R_SSL_SESSION_ID_HAS_BAD_LENGTH);
  374. return 0;
  375. }
  376. ss->session_id_length = tmp;
  377. /* Finally, check for a conflict */
  378. if (SSL_has_matching_session_id(ssl, ss->session_id,
  379. (unsigned int)ss->session_id_length)) {
  380. SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_R_SSL_SESSION_ID_CONFLICT);
  381. return 0;
  382. }
  383. return 1;
  384. }
  385. int ssl_get_new_session(SSL_CONNECTION *s, int session)
  386. {
  387. /* This gets used by clients and servers. */
  388. SSL_SESSION *ss = NULL;
  389. if ((ss = SSL_SESSION_new()) == NULL) {
  390. SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_SSL_LIB);
  391. return 0;
  392. }
  393. /* If the context has a default timeout, use it */
  394. if (ossl_time_is_zero(s->session_ctx->session_timeout))
  395. ss->timeout = SSL_CONNECTION_GET_SSL(s)->method->get_timeout();
  396. else
  397. ss->timeout = s->session_ctx->session_timeout;
  398. ssl_session_calculate_timeout(ss);
  399. SSL_SESSION_free(s->session);
  400. s->session = NULL;
  401. if (session) {
  402. if (SSL_CONNECTION_IS_TLS13(s)) {
  403. /*
  404. * We generate the session id while constructing the
  405. * NewSessionTicket in TLSv1.3.
  406. */
  407. ss->session_id_length = 0;
  408. } else if (!ssl_generate_session_id(s, ss)) {
  409. /* SSLfatal() already called */
  410. SSL_SESSION_free(ss);
  411. return 0;
  412. }
  413. } else {
  414. ss->session_id_length = 0;
  415. }
  416. if (s->sid_ctx_length > sizeof(ss->sid_ctx)) {
  417. SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
  418. SSL_SESSION_free(ss);
  419. return 0;
  420. }
  421. memcpy(ss->sid_ctx, s->sid_ctx, s->sid_ctx_length);
  422. ss->sid_ctx_length = s->sid_ctx_length;
  423. s->session = ss;
  424. ss->ssl_version = s->version;
  425. ss->verify_result = X509_V_OK;
  426. /* If client supports extended master secret set it in session */
  427. if (s->s3.flags & TLS1_FLAGS_RECEIVED_EXTMS)
  428. ss->flags |= SSL_SESS_FLAG_EXTMS;
  429. return 1;
  430. }
  431. SSL_SESSION *lookup_sess_in_cache(SSL_CONNECTION *s,
  432. const unsigned char *sess_id,
  433. size_t sess_id_len)
  434. {
  435. SSL_SESSION *ret = NULL;
  436. if ((s->session_ctx->session_cache_mode
  437. & SSL_SESS_CACHE_NO_INTERNAL_LOOKUP) == 0) {
  438. SSL_SESSION data;
  439. data.ssl_version = s->version;
  440. if (!ossl_assert(sess_id_len <= SSL_MAX_SSL_SESSION_ID_LENGTH))
  441. return NULL;
  442. memcpy(data.session_id, sess_id, sess_id_len);
  443. data.session_id_length = sess_id_len;
  444. if (!CRYPTO_THREAD_read_lock(s->session_ctx->lock))
  445. return NULL;
  446. ret = lh_SSL_SESSION_retrieve(s->session_ctx->sessions, &data);
  447. if (ret != NULL) {
  448. /* don't allow other threads to steal it: */
  449. SSL_SESSION_up_ref(ret);
  450. }
  451. CRYPTO_THREAD_unlock(s->session_ctx->lock);
  452. if (ret == NULL)
  453. ssl_tsan_counter(s->session_ctx, &s->session_ctx->stats.sess_miss);
  454. }
  455. if (ret == NULL && s->session_ctx->get_session_cb != NULL) {
  456. int copy = 1;
  457. ret = s->session_ctx->get_session_cb(SSL_CONNECTION_GET_USER_SSL(s),
  458. sess_id, sess_id_len, &copy);
  459. if (ret != NULL) {
  460. if (ret->not_resumable) {
  461. /* If its not resumable then ignore this session */
  462. if (!copy)
  463. SSL_SESSION_free(ret);
  464. return NULL;
  465. }
  466. ssl_tsan_counter(s->session_ctx,
  467. &s->session_ctx->stats.sess_cb_hit);
  468. /*
  469. * Increment reference count now if the session callback asks us
  470. * to do so (note that if the session structures returned by the
  471. * callback are shared between threads, it must handle the
  472. * reference count itself [i.e. copy == 0], or things won't be
  473. * thread-safe).
  474. */
  475. if (copy)
  476. SSL_SESSION_up_ref(ret);
  477. /*
  478. * Add the externally cached session to the internal cache as
  479. * well if and only if we are supposed to.
  480. */
  481. if ((s->session_ctx->session_cache_mode &
  482. SSL_SESS_CACHE_NO_INTERNAL_STORE) == 0) {
  483. /*
  484. * Either return value of SSL_CTX_add_session should not
  485. * interrupt the session resumption process. The return
  486. * value is intentionally ignored.
  487. */
  488. (void)SSL_CTX_add_session(s->session_ctx, ret);
  489. }
  490. }
  491. }
  492. return ret;
  493. }
  494. /*-
  495. * ssl_get_prev attempts to find an SSL_SESSION to be used to resume this
  496. * connection. It is only called by servers.
  497. *
  498. * hello: The parsed ClientHello data
  499. *
  500. * Returns:
  501. * -1: fatal error
  502. * 0: no session found
  503. * 1: a session may have been found.
  504. *
  505. * Side effects:
  506. * - If a session is found then s->session is pointed at it (after freeing an
  507. * existing session if need be) and s->verify_result is set from the session.
  508. * - Both for new and resumed sessions, s->ext.ticket_expected is set to 1
  509. * if the server should issue a new session ticket (to 0 otherwise).
  510. */
  511. int ssl_get_prev_session(SSL_CONNECTION *s, CLIENTHELLO_MSG *hello)
  512. {
  513. /* This is used only by servers. */
  514. SSL_SESSION *ret = NULL;
  515. int fatal = 0;
  516. int try_session_cache = 0;
  517. SSL_TICKET_STATUS r;
  518. if (SSL_CONNECTION_IS_TLS13(s)) {
  519. SSL_SESSION_free(s->session);
  520. s->session = NULL;
  521. /*
  522. * By default we will send a new ticket. This can be overridden in the
  523. * ticket processing.
  524. */
  525. s->ext.ticket_expected = 1;
  526. if (!tls_parse_extension(s, TLSEXT_IDX_psk_kex_modes,
  527. SSL_EXT_CLIENT_HELLO, hello->pre_proc_exts,
  528. NULL, 0)
  529. || !tls_parse_extension(s, TLSEXT_IDX_psk, SSL_EXT_CLIENT_HELLO,
  530. hello->pre_proc_exts, NULL, 0))
  531. return -1;
  532. /* If we resumed, s->session will now be set */
  533. ret = s->session;
  534. } else {
  535. /* sets s->ext.ticket_expected */
  536. r = tls_get_ticket_from_client(s, hello, &ret);
  537. switch (r) {
  538. case SSL_TICKET_FATAL_ERR_MALLOC:
  539. case SSL_TICKET_FATAL_ERR_OTHER:
  540. fatal = 1;
  541. SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
  542. goto err;
  543. case SSL_TICKET_NONE:
  544. case SSL_TICKET_EMPTY:
  545. if (hello->session_id_len > 0) {
  546. try_session_cache = 1;
  547. ret = lookup_sess_in_cache(s, hello->session_id,
  548. hello->session_id_len);
  549. }
  550. break;
  551. case SSL_TICKET_NO_DECRYPT:
  552. case SSL_TICKET_SUCCESS:
  553. case SSL_TICKET_SUCCESS_RENEW:
  554. break;
  555. }
  556. }
  557. if (ret == NULL)
  558. goto err;
  559. /* Now ret is non-NULL and we own one of its reference counts. */
  560. /* Check TLS version consistency */
  561. if (ret->ssl_version != s->version)
  562. goto err;
  563. if (ret->sid_ctx_length != s->sid_ctx_length
  564. || memcmp(ret->sid_ctx, s->sid_ctx, ret->sid_ctx_length)) {
  565. /*
  566. * We have the session requested by the client, but we don't want to
  567. * use it in this context.
  568. */
  569. goto err; /* treat like cache miss */
  570. }
  571. if ((s->verify_mode & SSL_VERIFY_PEER) && s->sid_ctx_length == 0) {
  572. /*
  573. * We can't be sure if this session is being used out of context,
  574. * which is especially important for SSL_VERIFY_PEER. The application
  575. * should have used SSL[_CTX]_set_session_id_context. For this error
  576. * case, we generate an error instead of treating the event like a
  577. * cache miss (otherwise it would be easy for applications to
  578. * effectively disable the session cache by accident without anyone
  579. * noticing).
  580. */
  581. SSLfatal(s, SSL_AD_INTERNAL_ERROR,
  582. SSL_R_SESSION_ID_CONTEXT_UNINITIALIZED);
  583. fatal = 1;
  584. goto err;
  585. }
  586. if (sess_timedout(ossl_time_now(), ret)) {
  587. ssl_tsan_counter(s->session_ctx, &s->session_ctx->stats.sess_timeout);
  588. if (try_session_cache) {
  589. /* session was from the cache, so remove it */
  590. SSL_CTX_remove_session(s->session_ctx, ret);
  591. }
  592. goto err;
  593. }
  594. /* Check extended master secret extension consistency */
  595. if (ret->flags & SSL_SESS_FLAG_EXTMS) {
  596. /* If old session includes extms, but new does not: abort handshake */
  597. if (!(s->s3.flags & TLS1_FLAGS_RECEIVED_EXTMS)) {
  598. SSLfatal(s, SSL_AD_ILLEGAL_PARAMETER, SSL_R_INCONSISTENT_EXTMS);
  599. fatal = 1;
  600. goto err;
  601. }
  602. } else if (s->s3.flags & TLS1_FLAGS_RECEIVED_EXTMS) {
  603. /* If new session includes extms, but old does not: do not resume */
  604. goto err;
  605. }
  606. if (!SSL_CONNECTION_IS_TLS13(s)) {
  607. /* We already did this for TLS1.3 */
  608. SSL_SESSION_free(s->session);
  609. s->session = ret;
  610. }
  611. ssl_tsan_counter(s->session_ctx, &s->session_ctx->stats.sess_hit);
  612. s->verify_result = s->session->verify_result;
  613. return 1;
  614. err:
  615. if (ret != NULL) {
  616. SSL_SESSION_free(ret);
  617. /* In TLSv1.3 s->session was already set to ret, so we NULL it out */
  618. if (SSL_CONNECTION_IS_TLS13(s))
  619. s->session = NULL;
  620. if (!try_session_cache) {
  621. /*
  622. * The session was from a ticket, so we should issue a ticket for
  623. * the new session
  624. */
  625. s->ext.ticket_expected = 1;
  626. }
  627. }
  628. if (fatal)
  629. return -1;
  630. return 0;
  631. }
  632. int SSL_CTX_add_session(SSL_CTX *ctx, SSL_SESSION *c)
  633. {
  634. int ret = 0;
  635. SSL_SESSION *s;
  636. /*
  637. * add just 1 reference count for the SSL_CTX's session cache even though
  638. * it has two ways of access: each session is in a doubly linked list and
  639. * an lhash
  640. */
  641. SSL_SESSION_up_ref(c);
  642. /*
  643. * if session c is in already in cache, we take back the increment later
  644. */
  645. if (!CRYPTO_THREAD_write_lock(ctx->lock)) {
  646. SSL_SESSION_free(c);
  647. return 0;
  648. }
  649. s = lh_SSL_SESSION_insert(ctx->sessions, c);
  650. /*
  651. * s != NULL iff we already had a session with the given PID. In this
  652. * case, s == c should hold (then we did not really modify
  653. * ctx->sessions), or we're in trouble.
  654. */
  655. if (s != NULL && s != c) {
  656. /* We *are* in trouble ... */
  657. SSL_SESSION_list_remove(ctx, s);
  658. SSL_SESSION_free(s);
  659. /*
  660. * ... so pretend the other session did not exist in cache (we cannot
  661. * handle two SSL_SESSION structures with identical session ID in the
  662. * same cache, which could happen e.g. when two threads concurrently
  663. * obtain the same session from an external cache)
  664. */
  665. s = NULL;
  666. } else if (s == NULL &&
  667. lh_SSL_SESSION_retrieve(ctx->sessions, c) == NULL) {
  668. /* s == NULL can also mean OOM error in lh_SSL_SESSION_insert ... */
  669. /*
  670. * ... so take back the extra reference and also don't add
  671. * the session to the SSL_SESSION_list at this time
  672. */
  673. s = c;
  674. }
  675. /* Adjust last used time, and add back into the cache at the appropriate spot */
  676. if (ctx->session_cache_mode & SSL_SESS_CACHE_UPDATE_TIME) {
  677. c->time = ossl_time_now();
  678. ssl_session_calculate_timeout(c);
  679. }
  680. if (s == NULL) {
  681. /*
  682. * new cache entry -- remove old ones if cache has become too large
  683. * delete cache entry *before* add, so we don't remove the one we're adding!
  684. */
  685. ret = 1;
  686. if (SSL_CTX_sess_get_cache_size(ctx) > 0) {
  687. while (SSL_CTX_sess_number(ctx) >= SSL_CTX_sess_get_cache_size(ctx)) {
  688. if (!remove_session_lock(ctx, ctx->session_cache_tail, 0))
  689. break;
  690. else
  691. ssl_tsan_counter(ctx, &ctx->stats.sess_cache_full);
  692. }
  693. }
  694. }
  695. SSL_SESSION_list_add(ctx, c);
  696. if (s != NULL) {
  697. /*
  698. * existing cache entry -- decrement previously incremented reference
  699. * count because it already takes into account the cache
  700. */
  701. SSL_SESSION_free(s); /* s == c */
  702. ret = 0;
  703. }
  704. CRYPTO_THREAD_unlock(ctx->lock);
  705. return ret;
  706. }
  707. int SSL_CTX_remove_session(SSL_CTX *ctx, SSL_SESSION *c)
  708. {
  709. return remove_session_lock(ctx, c, 1);
  710. }
  711. static int remove_session_lock(SSL_CTX *ctx, SSL_SESSION *c, int lck)
  712. {
  713. SSL_SESSION *r;
  714. int ret = 0;
  715. if ((c != NULL) && (c->session_id_length != 0)) {
  716. if (lck) {
  717. if (!CRYPTO_THREAD_write_lock(ctx->lock))
  718. return 0;
  719. }
  720. if ((r = lh_SSL_SESSION_retrieve(ctx->sessions, c)) != NULL) {
  721. ret = 1;
  722. r = lh_SSL_SESSION_delete(ctx->sessions, r);
  723. SSL_SESSION_list_remove(ctx, r);
  724. }
  725. c->not_resumable = 1;
  726. if (lck)
  727. CRYPTO_THREAD_unlock(ctx->lock);
  728. if (ctx->remove_session_cb != NULL)
  729. ctx->remove_session_cb(ctx, c);
  730. if (ret)
  731. SSL_SESSION_free(r);
  732. }
  733. return ret;
  734. }
  735. void SSL_SESSION_free(SSL_SESSION *ss)
  736. {
  737. int i;
  738. if (ss == NULL)
  739. return;
  740. CRYPTO_DOWN_REF(&ss->references, &i);
  741. REF_PRINT_COUNT("SSL_SESSION", i, ss);
  742. if (i > 0)
  743. return;
  744. REF_ASSERT_ISNT(i < 0);
  745. CRYPTO_free_ex_data(CRYPTO_EX_INDEX_SSL_SESSION, ss, &ss->ex_data);
  746. OPENSSL_cleanse(ss->master_key, sizeof(ss->master_key));
  747. OPENSSL_cleanse(ss->session_id, sizeof(ss->session_id));
  748. X509_free(ss->peer);
  749. EVP_PKEY_free(ss->peer_rpk);
  750. OSSL_STACK_OF_X509_free(ss->peer_chain);
  751. OPENSSL_free(ss->ext.hostname);
  752. OPENSSL_free(ss->ext.tick);
  753. #ifndef OPENSSL_NO_PSK
  754. OPENSSL_free(ss->psk_identity_hint);
  755. OPENSSL_free(ss->psk_identity);
  756. #endif
  757. #ifndef OPENSSL_NO_SRP
  758. OPENSSL_free(ss->srp_username);
  759. #endif
  760. OPENSSL_free(ss->ext.alpn_selected);
  761. OPENSSL_free(ss->ticket_appdata);
  762. CRYPTO_FREE_REF(&ss->references);
  763. OPENSSL_clear_free(ss, sizeof(*ss));
  764. }
  765. int SSL_SESSION_up_ref(SSL_SESSION *ss)
  766. {
  767. int i;
  768. if (CRYPTO_UP_REF(&ss->references, &i) <= 0)
  769. return 0;
  770. REF_PRINT_COUNT("SSL_SESSION", i, ss);
  771. REF_ASSERT_ISNT(i < 2);
  772. return ((i > 1) ? 1 : 0);
  773. }
  774. int SSL_set_session(SSL *s, SSL_SESSION *session)
  775. {
  776. SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
  777. if (sc == NULL)
  778. return 0;
  779. ssl_clear_bad_session(sc);
  780. if (s->defltmeth != s->method) {
  781. if (!SSL_set_ssl_method(s, s->defltmeth))
  782. return 0;
  783. }
  784. if (session != NULL) {
  785. SSL_SESSION_up_ref(session);
  786. sc->verify_result = session->verify_result;
  787. }
  788. SSL_SESSION_free(sc->session);
  789. sc->session = session;
  790. return 1;
  791. }
  792. int SSL_SESSION_set1_id(SSL_SESSION *s, const unsigned char *sid,
  793. unsigned int sid_len)
  794. {
  795. if (sid_len > SSL_MAX_SSL_SESSION_ID_LENGTH) {
  796. ERR_raise(ERR_LIB_SSL, SSL_R_SSL_SESSION_ID_TOO_LONG);
  797. return 0;
  798. }
  799. s->session_id_length = sid_len;
  800. if (sid != s->session_id && sid_len > 0)
  801. memcpy(s->session_id, sid, sid_len);
  802. return 1;
  803. }
  804. long SSL_SESSION_set_timeout(SSL_SESSION *s, long t)
  805. {
  806. OSSL_TIME new_timeout = ossl_seconds2time(t);
  807. if (s == NULL || t < 0)
  808. return 0;
  809. if (s->owner != NULL) {
  810. if (!CRYPTO_THREAD_write_lock(s->owner->lock))
  811. return 0;
  812. s->timeout = new_timeout;
  813. ssl_session_calculate_timeout(s);
  814. SSL_SESSION_list_add(s->owner, s);
  815. CRYPTO_THREAD_unlock(s->owner->lock);
  816. } else {
  817. s->timeout = new_timeout;
  818. ssl_session_calculate_timeout(s);
  819. }
  820. return 1;
  821. }
  822. long SSL_SESSION_get_timeout(const SSL_SESSION *s)
  823. {
  824. if (s == NULL)
  825. return 0;
  826. return (long)ossl_time_to_time_t(s->timeout);
  827. }
  828. long SSL_SESSION_get_time(const SSL_SESSION *s)
  829. {
  830. return (long) SSL_SESSION_get_time_ex(s);
  831. }
  832. time_t SSL_SESSION_get_time_ex(const SSL_SESSION *s)
  833. {
  834. if (s == NULL)
  835. return 0;
  836. return ossl_time_to_time_t(s->time);
  837. }
  838. time_t SSL_SESSION_set_time_ex(SSL_SESSION *s, time_t t)
  839. {
  840. OSSL_TIME new_time = ossl_time_from_time_t(t);
  841. if (s == NULL)
  842. return 0;
  843. if (s->owner != NULL) {
  844. if (!CRYPTO_THREAD_write_lock(s->owner->lock))
  845. return 0;
  846. s->time = new_time;
  847. ssl_session_calculate_timeout(s);
  848. SSL_SESSION_list_add(s->owner, s);
  849. CRYPTO_THREAD_unlock(s->owner->lock);
  850. } else {
  851. s->time = new_time;
  852. ssl_session_calculate_timeout(s);
  853. }
  854. return t;
  855. }
  856. long SSL_SESSION_set_time(SSL_SESSION *s, long t)
  857. {
  858. return (long) SSL_SESSION_set_time_ex(s, (time_t) t);
  859. }
  860. int SSL_SESSION_get_protocol_version(const SSL_SESSION *s)
  861. {
  862. return s->ssl_version;
  863. }
  864. int SSL_SESSION_set_protocol_version(SSL_SESSION *s, int version)
  865. {
  866. s->ssl_version = version;
  867. return 1;
  868. }
  869. const SSL_CIPHER *SSL_SESSION_get0_cipher(const SSL_SESSION *s)
  870. {
  871. return s->cipher;
  872. }
  873. int SSL_SESSION_set_cipher(SSL_SESSION *s, const SSL_CIPHER *cipher)
  874. {
  875. s->cipher = cipher;
  876. return 1;
  877. }
  878. const char *SSL_SESSION_get0_hostname(const SSL_SESSION *s)
  879. {
  880. return s->ext.hostname;
  881. }
  882. int SSL_SESSION_set1_hostname(SSL_SESSION *s, const char *hostname)
  883. {
  884. OPENSSL_free(s->ext.hostname);
  885. if (hostname == NULL) {
  886. s->ext.hostname = NULL;
  887. return 1;
  888. }
  889. s->ext.hostname = OPENSSL_strdup(hostname);
  890. return s->ext.hostname != NULL;
  891. }
  892. int SSL_SESSION_has_ticket(const SSL_SESSION *s)
  893. {
  894. return (s->ext.ticklen > 0) ? 1 : 0;
  895. }
  896. unsigned long SSL_SESSION_get_ticket_lifetime_hint(const SSL_SESSION *s)
  897. {
  898. return s->ext.tick_lifetime_hint;
  899. }
  900. void SSL_SESSION_get0_ticket(const SSL_SESSION *s, const unsigned char **tick,
  901. size_t *len)
  902. {
  903. *len = s->ext.ticklen;
  904. if (tick != NULL)
  905. *tick = s->ext.tick;
  906. }
  907. uint32_t SSL_SESSION_get_max_early_data(const SSL_SESSION *s)
  908. {
  909. return s->ext.max_early_data;
  910. }
  911. int SSL_SESSION_set_max_early_data(SSL_SESSION *s, uint32_t max_early_data)
  912. {
  913. s->ext.max_early_data = max_early_data;
  914. return 1;
  915. }
  916. void SSL_SESSION_get0_alpn_selected(const SSL_SESSION *s,
  917. const unsigned char **alpn,
  918. size_t *len)
  919. {
  920. *alpn = s->ext.alpn_selected;
  921. *len = s->ext.alpn_selected_len;
  922. }
  923. int SSL_SESSION_set1_alpn_selected(SSL_SESSION *s, const unsigned char *alpn,
  924. size_t len)
  925. {
  926. OPENSSL_free(s->ext.alpn_selected);
  927. if (alpn == NULL || len == 0) {
  928. s->ext.alpn_selected = NULL;
  929. s->ext.alpn_selected_len = 0;
  930. return 1;
  931. }
  932. s->ext.alpn_selected = OPENSSL_memdup(alpn, len);
  933. if (s->ext.alpn_selected == NULL) {
  934. s->ext.alpn_selected_len = 0;
  935. return 0;
  936. }
  937. s->ext.alpn_selected_len = len;
  938. return 1;
  939. }
  940. X509 *SSL_SESSION_get0_peer(SSL_SESSION *s)
  941. {
  942. return s->peer;
  943. }
  944. EVP_PKEY *SSL_SESSION_get0_peer_rpk(SSL_SESSION *s)
  945. {
  946. return s->peer_rpk;
  947. }
  948. int SSL_SESSION_set1_id_context(SSL_SESSION *s, const unsigned char *sid_ctx,
  949. unsigned int sid_ctx_len)
  950. {
  951. if (sid_ctx_len > SSL_MAX_SID_CTX_LENGTH) {
  952. ERR_raise(ERR_LIB_SSL, SSL_R_SSL_SESSION_ID_CONTEXT_TOO_LONG);
  953. return 0;
  954. }
  955. s->sid_ctx_length = sid_ctx_len;
  956. if (sid_ctx != s->sid_ctx)
  957. memcpy(s->sid_ctx, sid_ctx, sid_ctx_len);
  958. return 1;
  959. }
  960. int SSL_SESSION_is_resumable(const SSL_SESSION *s)
  961. {
  962. /*
  963. * In the case of EAP-FAST, we can have a pre-shared "ticket" without a
  964. * session ID.
  965. */
  966. return !s->not_resumable
  967. && (s->session_id_length > 0 || s->ext.ticklen > 0);
  968. }
  969. long SSL_CTX_set_timeout(SSL_CTX *s, long t)
  970. {
  971. long l;
  972. if (s == NULL)
  973. return 0;
  974. l = (long)ossl_time2seconds(s->session_timeout);
  975. s->session_timeout = ossl_seconds2time(t);
  976. return l;
  977. }
  978. long SSL_CTX_get_timeout(const SSL_CTX *s)
  979. {
  980. if (s == NULL)
  981. return 0;
  982. return (long)ossl_time2seconds(s->session_timeout);
  983. }
  984. int SSL_set_session_secret_cb(SSL *s,
  985. tls_session_secret_cb_fn tls_session_secret_cb,
  986. void *arg)
  987. {
  988. SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
  989. if (sc == NULL)
  990. return 0;
  991. sc->ext.session_secret_cb = tls_session_secret_cb;
  992. sc->ext.session_secret_cb_arg = arg;
  993. return 1;
  994. }
  995. int SSL_set_session_ticket_ext_cb(SSL *s, tls_session_ticket_ext_cb_fn cb,
  996. void *arg)
  997. {
  998. SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
  999. if (sc == NULL)
  1000. return 0;
  1001. sc->ext.session_ticket_cb = cb;
  1002. sc->ext.session_ticket_cb_arg = arg;
  1003. return 1;
  1004. }
  1005. int SSL_set_session_ticket_ext(SSL *s, void *ext_data, int ext_len)
  1006. {
  1007. SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
  1008. if (sc == NULL)
  1009. return 0;
  1010. if (sc->version >= TLS1_VERSION) {
  1011. OPENSSL_free(sc->ext.session_ticket);
  1012. sc->ext.session_ticket = NULL;
  1013. sc->ext.session_ticket =
  1014. OPENSSL_malloc(sizeof(TLS_SESSION_TICKET_EXT) + ext_len);
  1015. if (sc->ext.session_ticket == NULL)
  1016. return 0;
  1017. if (ext_data != NULL) {
  1018. sc->ext.session_ticket->length = ext_len;
  1019. sc->ext.session_ticket->data = sc->ext.session_ticket + 1;
  1020. memcpy(sc->ext.session_ticket->data, ext_data, ext_len);
  1021. } else {
  1022. sc->ext.session_ticket->length = 0;
  1023. sc->ext.session_ticket->data = NULL;
  1024. }
  1025. return 1;
  1026. }
  1027. return 0;
  1028. }
  1029. void SSL_CTX_flush_sessions(SSL_CTX *s, long t)
  1030. {
  1031. STACK_OF(SSL_SESSION) *sk;
  1032. SSL_SESSION *current;
  1033. unsigned long i;
  1034. const OSSL_TIME timeout = ossl_time_from_time_t(t);
  1035. if (!CRYPTO_THREAD_write_lock(s->lock))
  1036. return;
  1037. sk = sk_SSL_SESSION_new_null();
  1038. i = lh_SSL_SESSION_get_down_load(s->sessions);
  1039. lh_SSL_SESSION_set_down_load(s->sessions, 0);
  1040. /*
  1041. * Iterate over the list from the back (oldest), and stop
  1042. * when a session can no longer be removed.
  1043. * Add the session to a temporary list to be freed outside
  1044. * the SSL_CTX lock.
  1045. * But still do the remove_session_cb() within the lock.
  1046. */
  1047. while (s->session_cache_tail != NULL) {
  1048. current = s->session_cache_tail;
  1049. if (t == 0 || sess_timedout(timeout, current)) {
  1050. lh_SSL_SESSION_delete(s->sessions, current);
  1051. SSL_SESSION_list_remove(s, current);
  1052. current->not_resumable = 1;
  1053. if (s->remove_session_cb != NULL)
  1054. s->remove_session_cb(s, current);
  1055. /*
  1056. * Throw the session on a stack, it's entirely plausible
  1057. * that while freeing outside the critical section, the
  1058. * session could be re-added, so avoid using the next/prev
  1059. * pointers. If the stack failed to create, or the session
  1060. * couldn't be put on the stack, just free it here
  1061. */
  1062. if (sk == NULL || !sk_SSL_SESSION_push(sk, current))
  1063. SSL_SESSION_free(current);
  1064. } else {
  1065. break;
  1066. }
  1067. }
  1068. lh_SSL_SESSION_set_down_load(s->sessions, i);
  1069. CRYPTO_THREAD_unlock(s->lock);
  1070. sk_SSL_SESSION_pop_free(sk, SSL_SESSION_free);
  1071. }
  1072. int ssl_clear_bad_session(SSL_CONNECTION *s)
  1073. {
  1074. if ((s->session != NULL) &&
  1075. !(s->shutdown & SSL_SENT_SHUTDOWN) &&
  1076. !(SSL_in_init(SSL_CONNECTION_GET_SSL(s))
  1077. || SSL_in_before(SSL_CONNECTION_GET_SSL(s)))) {
  1078. SSL_CTX_remove_session(s->session_ctx, s->session);
  1079. return 1;
  1080. } else
  1081. return 0;
  1082. }
  1083. /* locked by SSL_CTX in the calling function */
  1084. static void SSL_SESSION_list_remove(SSL_CTX *ctx, SSL_SESSION *s)
  1085. {
  1086. if ((s->next == NULL) || (s->prev == NULL))
  1087. return;
  1088. if (s->next == (SSL_SESSION *)&(ctx->session_cache_tail)) {
  1089. /* last element in list */
  1090. if (s->prev == (SSL_SESSION *)&(ctx->session_cache_head)) {
  1091. /* only one element in list */
  1092. ctx->session_cache_head = NULL;
  1093. ctx->session_cache_tail = NULL;
  1094. } else {
  1095. ctx->session_cache_tail = s->prev;
  1096. s->prev->next = (SSL_SESSION *)&(ctx->session_cache_tail);
  1097. }
  1098. } else {
  1099. if (s->prev == (SSL_SESSION *)&(ctx->session_cache_head)) {
  1100. /* first element in list */
  1101. ctx->session_cache_head = s->next;
  1102. s->next->prev = (SSL_SESSION *)&(ctx->session_cache_head);
  1103. } else {
  1104. /* middle of list */
  1105. s->next->prev = s->prev;
  1106. s->prev->next = s->next;
  1107. }
  1108. }
  1109. s->prev = s->next = NULL;
  1110. s->owner = NULL;
  1111. }
  1112. static void SSL_SESSION_list_add(SSL_CTX *ctx, SSL_SESSION *s)
  1113. {
  1114. SSL_SESSION *next;
  1115. if ((s->next != NULL) && (s->prev != NULL))
  1116. SSL_SESSION_list_remove(ctx, s);
  1117. if (ctx->session_cache_head == NULL) {
  1118. ctx->session_cache_head = s;
  1119. ctx->session_cache_tail = s;
  1120. s->prev = (SSL_SESSION *)&(ctx->session_cache_head);
  1121. s->next = (SSL_SESSION *)&(ctx->session_cache_tail);
  1122. } else {
  1123. if (timeoutcmp(s, ctx->session_cache_head) >= 0) {
  1124. /*
  1125. * if we timeout after (or the same time as) the first
  1126. * session, put us first - usual case
  1127. */
  1128. s->next = ctx->session_cache_head;
  1129. s->next->prev = s;
  1130. s->prev = (SSL_SESSION *)&(ctx->session_cache_head);
  1131. ctx->session_cache_head = s;
  1132. } else if (timeoutcmp(s, ctx->session_cache_tail) < 0) {
  1133. /* if we timeout before the last session, put us last */
  1134. s->prev = ctx->session_cache_tail;
  1135. s->prev->next = s;
  1136. s->next = (SSL_SESSION *)&(ctx->session_cache_tail);
  1137. ctx->session_cache_tail = s;
  1138. } else {
  1139. /*
  1140. * we timeout somewhere in-between - if there is only
  1141. * one session in the cache it will be caught above
  1142. */
  1143. next = ctx->session_cache_head->next;
  1144. while (next != (SSL_SESSION*)&(ctx->session_cache_tail)) {
  1145. if (timeoutcmp(s, next) >= 0) {
  1146. s->next = next;
  1147. s->prev = next->prev;
  1148. next->prev->next = s;
  1149. next->prev = s;
  1150. break;
  1151. }
  1152. next = next->next;
  1153. }
  1154. }
  1155. }
  1156. s->owner = ctx;
  1157. }
  1158. void SSL_CTX_sess_set_new_cb(SSL_CTX *ctx,
  1159. int (*cb) (struct ssl_st *ssl, SSL_SESSION *sess))
  1160. {
  1161. ctx->new_session_cb = cb;
  1162. }
  1163. int (*SSL_CTX_sess_get_new_cb(SSL_CTX *ctx)) (SSL *ssl, SSL_SESSION *sess) {
  1164. return ctx->new_session_cb;
  1165. }
  1166. void SSL_CTX_sess_set_remove_cb(SSL_CTX *ctx,
  1167. void (*cb) (SSL_CTX *ctx, SSL_SESSION *sess))
  1168. {
  1169. ctx->remove_session_cb = cb;
  1170. }
  1171. void (*SSL_CTX_sess_get_remove_cb(SSL_CTX *ctx)) (SSL_CTX *ctx,
  1172. SSL_SESSION *sess) {
  1173. return ctx->remove_session_cb;
  1174. }
  1175. void SSL_CTX_sess_set_get_cb(SSL_CTX *ctx,
  1176. SSL_SESSION *(*cb) (SSL *ssl,
  1177. const unsigned char *data,
  1178. int len, int *copy))
  1179. {
  1180. ctx->get_session_cb = cb;
  1181. }
  1182. SSL_SESSION *(*SSL_CTX_sess_get_get_cb(SSL_CTX *ctx)) (SSL *ssl,
  1183. const unsigned char
  1184. *data, int len,
  1185. int *copy) {
  1186. return ctx->get_session_cb;
  1187. }
  1188. void SSL_CTX_set_info_callback(SSL_CTX *ctx,
  1189. void (*cb) (const SSL *ssl, int type, int val))
  1190. {
  1191. ctx->info_callback = cb;
  1192. }
  1193. void (*SSL_CTX_get_info_callback(SSL_CTX *ctx)) (const SSL *ssl, int type,
  1194. int val) {
  1195. return ctx->info_callback;
  1196. }
  1197. void SSL_CTX_set_client_cert_cb(SSL_CTX *ctx,
  1198. int (*cb) (SSL *ssl, X509 **x509,
  1199. EVP_PKEY **pkey))
  1200. {
  1201. ctx->client_cert_cb = cb;
  1202. }
  1203. int (*SSL_CTX_get_client_cert_cb(SSL_CTX *ctx)) (SSL *ssl, X509 **x509,
  1204. EVP_PKEY **pkey) {
  1205. return ctx->client_cert_cb;
  1206. }
  1207. void SSL_CTX_set_cookie_generate_cb(SSL_CTX *ctx,
  1208. int (*cb) (SSL *ssl,
  1209. unsigned char *cookie,
  1210. unsigned int *cookie_len))
  1211. {
  1212. ctx->app_gen_cookie_cb = cb;
  1213. }
  1214. void SSL_CTX_set_cookie_verify_cb(SSL_CTX *ctx,
  1215. int (*cb) (SSL *ssl,
  1216. const unsigned char *cookie,
  1217. unsigned int cookie_len))
  1218. {
  1219. ctx->app_verify_cookie_cb = cb;
  1220. }
  1221. int SSL_SESSION_set1_ticket_appdata(SSL_SESSION *ss, const void *data, size_t len)
  1222. {
  1223. OPENSSL_free(ss->ticket_appdata);
  1224. ss->ticket_appdata_len = 0;
  1225. if (data == NULL || len == 0) {
  1226. ss->ticket_appdata = NULL;
  1227. return 1;
  1228. }
  1229. ss->ticket_appdata = OPENSSL_memdup(data, len);
  1230. if (ss->ticket_appdata != NULL) {
  1231. ss->ticket_appdata_len = len;
  1232. return 1;
  1233. }
  1234. return 0;
  1235. }
  1236. int SSL_SESSION_get0_ticket_appdata(SSL_SESSION *ss, void **data, size_t *len)
  1237. {
  1238. *data = ss->ticket_appdata;
  1239. *len = ss->ticket_appdata_len;
  1240. return 1;
  1241. }
  1242. void SSL_CTX_set_stateless_cookie_generate_cb(
  1243. SSL_CTX *ctx,
  1244. int (*cb) (SSL *ssl,
  1245. unsigned char *cookie,
  1246. size_t *cookie_len))
  1247. {
  1248. ctx->gen_stateless_cookie_cb = cb;
  1249. }
  1250. void SSL_CTX_set_stateless_cookie_verify_cb(
  1251. SSL_CTX *ctx,
  1252. int (*cb) (SSL *ssl,
  1253. const unsigned char *cookie,
  1254. size_t cookie_len))
  1255. {
  1256. ctx->verify_stateless_cookie_cb = cb;
  1257. }
  1258. IMPLEMENT_PEM_rw(SSL_SESSION, SSL_SESSION, PEM_STRING_SSL_SESSION, SSL_SESSION)