ssl_sess.c 42 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448
  1. /*
  2. * Copyright 1995-2024 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_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. /*
  520. * By default we will send a new ticket. This can be overridden in the
  521. * ticket processing.
  522. */
  523. s->ext.ticket_expected = 1;
  524. if (!tls_parse_extension(s, TLSEXT_IDX_psk_kex_modes,
  525. SSL_EXT_CLIENT_HELLO, hello->pre_proc_exts,
  526. NULL, 0)
  527. || !tls_parse_extension(s, TLSEXT_IDX_psk, SSL_EXT_CLIENT_HELLO,
  528. hello->pre_proc_exts, NULL, 0))
  529. return -1;
  530. ret = s->session;
  531. } else {
  532. /* sets s->ext.ticket_expected */
  533. r = tls_get_ticket_from_client(s, hello, &ret);
  534. switch (r) {
  535. case SSL_TICKET_FATAL_ERR_MALLOC:
  536. case SSL_TICKET_FATAL_ERR_OTHER:
  537. fatal = 1;
  538. SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
  539. goto err;
  540. case SSL_TICKET_NONE:
  541. case SSL_TICKET_EMPTY:
  542. if (hello->session_id_len > 0) {
  543. try_session_cache = 1;
  544. ret = lookup_sess_in_cache(s, hello->session_id,
  545. hello->session_id_len);
  546. }
  547. break;
  548. case SSL_TICKET_NO_DECRYPT:
  549. case SSL_TICKET_SUCCESS:
  550. case SSL_TICKET_SUCCESS_RENEW:
  551. break;
  552. }
  553. }
  554. if (ret == NULL)
  555. goto err;
  556. /* Now ret is non-NULL and we own one of its reference counts. */
  557. /* Check TLS version consistency */
  558. if (ret->ssl_version != s->version)
  559. goto err;
  560. if (ret->sid_ctx_length != s->sid_ctx_length
  561. || memcmp(ret->sid_ctx, s->sid_ctx, ret->sid_ctx_length)) {
  562. /*
  563. * We have the session requested by the client, but we don't want to
  564. * use it in this context.
  565. */
  566. goto err; /* treat like cache miss */
  567. }
  568. if ((s->verify_mode & SSL_VERIFY_PEER) && s->sid_ctx_length == 0) {
  569. /*
  570. * We can't be sure if this session is being used out of context,
  571. * which is especially important for SSL_VERIFY_PEER. The application
  572. * should have used SSL[_CTX]_set_session_id_context. For this error
  573. * case, we generate an error instead of treating the event like a
  574. * cache miss (otherwise it would be easy for applications to
  575. * effectively disable the session cache by accident without anyone
  576. * noticing).
  577. */
  578. SSLfatal(s, SSL_AD_INTERNAL_ERROR,
  579. SSL_R_SESSION_ID_CONTEXT_UNINITIALIZED);
  580. fatal = 1;
  581. goto err;
  582. }
  583. if (sess_timedout(ossl_time_now(), ret)) {
  584. ssl_tsan_counter(s->session_ctx, &s->session_ctx->stats.sess_timeout);
  585. if (try_session_cache) {
  586. /* session was from the cache, so remove it */
  587. SSL_CTX_remove_session(s->session_ctx, ret);
  588. }
  589. goto err;
  590. }
  591. /* Check extended master secret extension consistency */
  592. if (ret->flags & SSL_SESS_FLAG_EXTMS) {
  593. /* If old session includes extms, but new does not: abort handshake */
  594. if (!(s->s3.flags & TLS1_FLAGS_RECEIVED_EXTMS)) {
  595. SSLfatal(s, SSL_AD_ILLEGAL_PARAMETER, SSL_R_INCONSISTENT_EXTMS);
  596. fatal = 1;
  597. goto err;
  598. }
  599. } else if (s->s3.flags & TLS1_FLAGS_RECEIVED_EXTMS) {
  600. /* If new session includes extms, but old does not: do not resume */
  601. goto err;
  602. }
  603. if (!SSL_CONNECTION_IS_TLS13(s)) {
  604. /* We already did this for TLS1.3 */
  605. SSL_SESSION_free(s->session);
  606. s->session = ret;
  607. }
  608. ssl_tsan_counter(s->session_ctx, &s->session_ctx->stats.sess_hit);
  609. s->verify_result = s->session->verify_result;
  610. return 1;
  611. err:
  612. if (ret != NULL) {
  613. SSL_SESSION_free(ret);
  614. /* In TLSv1.3 s->session was already set to ret, so we NULL it out */
  615. if (SSL_CONNECTION_IS_TLS13(s))
  616. s->session = NULL;
  617. if (!try_session_cache) {
  618. /*
  619. * The session was from a ticket, so we should issue a ticket for
  620. * the new session
  621. */
  622. s->ext.ticket_expected = 1;
  623. }
  624. }
  625. if (fatal)
  626. return -1;
  627. return 0;
  628. }
  629. int SSL_CTX_add_session(SSL_CTX *ctx, SSL_SESSION *c)
  630. {
  631. int ret = 0;
  632. SSL_SESSION *s;
  633. /*
  634. * add just 1 reference count for the SSL_CTX's session cache even though
  635. * it has two ways of access: each session is in a doubly linked list and
  636. * an lhash
  637. */
  638. SSL_SESSION_up_ref(c);
  639. /*
  640. * if session c is in already in cache, we take back the increment later
  641. */
  642. if (!CRYPTO_THREAD_write_lock(ctx->lock)) {
  643. SSL_SESSION_free(c);
  644. return 0;
  645. }
  646. s = lh_SSL_SESSION_insert(ctx->sessions, c);
  647. /*
  648. * s != NULL iff we already had a session with the given PID. In this
  649. * case, s == c should hold (then we did not really modify
  650. * ctx->sessions), or we're in trouble.
  651. */
  652. if (s != NULL && s != c) {
  653. /* We *are* in trouble ... */
  654. SSL_SESSION_list_remove(ctx, s);
  655. SSL_SESSION_free(s);
  656. /*
  657. * ... so pretend the other session did not exist in cache (we cannot
  658. * handle two SSL_SESSION structures with identical session ID in the
  659. * same cache, which could happen e.g. when two threads concurrently
  660. * obtain the same session from an external cache)
  661. */
  662. s = NULL;
  663. } else if (s == NULL &&
  664. lh_SSL_SESSION_retrieve(ctx->sessions, c) == NULL) {
  665. /* s == NULL can also mean OOM error in lh_SSL_SESSION_insert ... */
  666. /*
  667. * ... so take back the extra reference and also don't add
  668. * the session to the SSL_SESSION_list at this time
  669. */
  670. s = c;
  671. }
  672. /* Adjust last used time, and add back into the cache at the appropriate spot */
  673. if (ctx->session_cache_mode & SSL_SESS_CACHE_UPDATE_TIME) {
  674. c->time = ossl_time_now();
  675. ssl_session_calculate_timeout(c);
  676. }
  677. if (s == NULL) {
  678. /*
  679. * new cache entry -- remove old ones if cache has become too large
  680. * delete cache entry *before* add, so we don't remove the one we're adding!
  681. */
  682. ret = 1;
  683. if (SSL_CTX_sess_get_cache_size(ctx) > 0) {
  684. while (SSL_CTX_sess_number(ctx) >= SSL_CTX_sess_get_cache_size(ctx)) {
  685. if (!remove_session_lock(ctx, ctx->session_cache_tail, 0))
  686. break;
  687. else
  688. ssl_tsan_counter(ctx, &ctx->stats.sess_cache_full);
  689. }
  690. }
  691. }
  692. SSL_SESSION_list_add(ctx, c);
  693. if (s != NULL) {
  694. /*
  695. * existing cache entry -- decrement previously incremented reference
  696. * count because it already takes into account the cache
  697. */
  698. SSL_SESSION_free(s); /* s == c */
  699. ret = 0;
  700. }
  701. CRYPTO_THREAD_unlock(ctx->lock);
  702. return ret;
  703. }
  704. int SSL_CTX_remove_session(SSL_CTX *ctx, SSL_SESSION *c)
  705. {
  706. return remove_session_lock(ctx, c, 1);
  707. }
  708. static int remove_session_lock(SSL_CTX *ctx, SSL_SESSION *c, int lck)
  709. {
  710. SSL_SESSION *r;
  711. int ret = 0;
  712. if ((c != NULL) && (c->session_id_length != 0)) {
  713. if (lck) {
  714. if (!CRYPTO_THREAD_write_lock(ctx->lock))
  715. return 0;
  716. }
  717. if ((r = lh_SSL_SESSION_retrieve(ctx->sessions, c)) != NULL) {
  718. ret = 1;
  719. r = lh_SSL_SESSION_delete(ctx->sessions, r);
  720. SSL_SESSION_list_remove(ctx, r);
  721. }
  722. c->not_resumable = 1;
  723. if (lck)
  724. CRYPTO_THREAD_unlock(ctx->lock);
  725. if (ctx->remove_session_cb != NULL)
  726. ctx->remove_session_cb(ctx, c);
  727. if (ret)
  728. SSL_SESSION_free(r);
  729. }
  730. return ret;
  731. }
  732. void SSL_SESSION_free(SSL_SESSION *ss)
  733. {
  734. int i;
  735. if (ss == NULL)
  736. return;
  737. CRYPTO_DOWN_REF(&ss->references, &i);
  738. REF_PRINT_COUNT("SSL_SESSION", ss);
  739. if (i > 0)
  740. return;
  741. REF_ASSERT_ISNT(i < 0);
  742. CRYPTO_free_ex_data(CRYPTO_EX_INDEX_SSL_SESSION, ss, &ss->ex_data);
  743. OPENSSL_cleanse(ss->master_key, sizeof(ss->master_key));
  744. OPENSSL_cleanse(ss->session_id, sizeof(ss->session_id));
  745. X509_free(ss->peer);
  746. EVP_PKEY_free(ss->peer_rpk);
  747. OSSL_STACK_OF_X509_free(ss->peer_chain);
  748. OPENSSL_free(ss->ext.hostname);
  749. OPENSSL_free(ss->ext.tick);
  750. #ifndef OPENSSL_NO_PSK
  751. OPENSSL_free(ss->psk_identity_hint);
  752. OPENSSL_free(ss->psk_identity);
  753. #endif
  754. #ifndef OPENSSL_NO_SRP
  755. OPENSSL_free(ss->srp_username);
  756. #endif
  757. OPENSSL_free(ss->ext.alpn_selected);
  758. OPENSSL_free(ss->ticket_appdata);
  759. CRYPTO_FREE_REF(&ss->references);
  760. OPENSSL_clear_free(ss, sizeof(*ss));
  761. }
  762. int SSL_SESSION_up_ref(SSL_SESSION *ss)
  763. {
  764. int i;
  765. if (CRYPTO_UP_REF(&ss->references, &i) <= 0)
  766. return 0;
  767. REF_PRINT_COUNT("SSL_SESSION", ss);
  768. REF_ASSERT_ISNT(i < 2);
  769. return ((i > 1) ? 1 : 0);
  770. }
  771. int SSL_set_session(SSL *s, SSL_SESSION *session)
  772. {
  773. SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
  774. if (sc == NULL)
  775. return 0;
  776. ssl_clear_bad_session(sc);
  777. if (s->defltmeth != s->method) {
  778. if (!SSL_set_ssl_method(s, s->defltmeth))
  779. return 0;
  780. }
  781. if (session != NULL) {
  782. SSL_SESSION_up_ref(session);
  783. sc->verify_result = session->verify_result;
  784. }
  785. SSL_SESSION_free(sc->session);
  786. sc->session = session;
  787. return 1;
  788. }
  789. int SSL_SESSION_set1_id(SSL_SESSION *s, const unsigned char *sid,
  790. unsigned int sid_len)
  791. {
  792. if (sid_len > SSL_MAX_SSL_SESSION_ID_LENGTH) {
  793. ERR_raise(ERR_LIB_SSL, SSL_R_SSL_SESSION_ID_TOO_LONG);
  794. return 0;
  795. }
  796. s->session_id_length = sid_len;
  797. if (sid != s->session_id && sid_len > 0)
  798. memcpy(s->session_id, sid, sid_len);
  799. return 1;
  800. }
  801. long SSL_SESSION_set_timeout(SSL_SESSION *s, long t)
  802. {
  803. OSSL_TIME new_timeout = ossl_seconds2time(t);
  804. if (s == NULL || t < 0)
  805. return 0;
  806. if (s->owner != NULL) {
  807. if (!CRYPTO_THREAD_write_lock(s->owner->lock))
  808. return 0;
  809. s->timeout = new_timeout;
  810. ssl_session_calculate_timeout(s);
  811. SSL_SESSION_list_add(s->owner, s);
  812. CRYPTO_THREAD_unlock(s->owner->lock);
  813. } else {
  814. s->timeout = new_timeout;
  815. ssl_session_calculate_timeout(s);
  816. }
  817. return 1;
  818. }
  819. long SSL_SESSION_get_timeout(const SSL_SESSION *s)
  820. {
  821. if (s == NULL)
  822. return 0;
  823. return (long)ossl_time_to_time_t(s->timeout);
  824. }
  825. long SSL_SESSION_get_time(const SSL_SESSION *s)
  826. {
  827. return (long) SSL_SESSION_get_time_ex(s);
  828. }
  829. time_t SSL_SESSION_get_time_ex(const SSL_SESSION *s)
  830. {
  831. if (s == NULL)
  832. return 0;
  833. return ossl_time_to_time_t(s->time);
  834. }
  835. time_t SSL_SESSION_set_time_ex(SSL_SESSION *s, time_t t)
  836. {
  837. OSSL_TIME new_time = ossl_time_from_time_t(t);
  838. if (s == NULL)
  839. return 0;
  840. if (s->owner != NULL) {
  841. if (!CRYPTO_THREAD_write_lock(s->owner->lock))
  842. return 0;
  843. s->time = new_time;
  844. ssl_session_calculate_timeout(s);
  845. SSL_SESSION_list_add(s->owner, s);
  846. CRYPTO_THREAD_unlock(s->owner->lock);
  847. } else {
  848. s->time = new_time;
  849. ssl_session_calculate_timeout(s);
  850. }
  851. return t;
  852. }
  853. long SSL_SESSION_set_time(SSL_SESSION *s, long t)
  854. {
  855. return (long) SSL_SESSION_set_time_ex(s, (time_t) t);
  856. }
  857. int SSL_SESSION_get_protocol_version(const SSL_SESSION *s)
  858. {
  859. return s->ssl_version;
  860. }
  861. int SSL_SESSION_set_protocol_version(SSL_SESSION *s, int version)
  862. {
  863. s->ssl_version = version;
  864. return 1;
  865. }
  866. const SSL_CIPHER *SSL_SESSION_get0_cipher(const SSL_SESSION *s)
  867. {
  868. return s->cipher;
  869. }
  870. int SSL_SESSION_set_cipher(SSL_SESSION *s, const SSL_CIPHER *cipher)
  871. {
  872. s->cipher = cipher;
  873. return 1;
  874. }
  875. const char *SSL_SESSION_get0_hostname(const SSL_SESSION *s)
  876. {
  877. return s->ext.hostname;
  878. }
  879. int SSL_SESSION_set1_hostname(SSL_SESSION *s, const char *hostname)
  880. {
  881. OPENSSL_free(s->ext.hostname);
  882. if (hostname == NULL) {
  883. s->ext.hostname = NULL;
  884. return 1;
  885. }
  886. s->ext.hostname = OPENSSL_strdup(hostname);
  887. return s->ext.hostname != NULL;
  888. }
  889. int SSL_SESSION_has_ticket(const SSL_SESSION *s)
  890. {
  891. return (s->ext.ticklen > 0) ? 1 : 0;
  892. }
  893. unsigned long SSL_SESSION_get_ticket_lifetime_hint(const SSL_SESSION *s)
  894. {
  895. return s->ext.tick_lifetime_hint;
  896. }
  897. void SSL_SESSION_get0_ticket(const SSL_SESSION *s, const unsigned char **tick,
  898. size_t *len)
  899. {
  900. *len = s->ext.ticklen;
  901. if (tick != NULL)
  902. *tick = s->ext.tick;
  903. }
  904. uint32_t SSL_SESSION_get_max_early_data(const SSL_SESSION *s)
  905. {
  906. return s->ext.max_early_data;
  907. }
  908. int SSL_SESSION_set_max_early_data(SSL_SESSION *s, uint32_t max_early_data)
  909. {
  910. s->ext.max_early_data = max_early_data;
  911. return 1;
  912. }
  913. void SSL_SESSION_get0_alpn_selected(const SSL_SESSION *s,
  914. const unsigned char **alpn,
  915. size_t *len)
  916. {
  917. *alpn = s->ext.alpn_selected;
  918. *len = s->ext.alpn_selected_len;
  919. }
  920. int SSL_SESSION_set1_alpn_selected(SSL_SESSION *s, const unsigned char *alpn,
  921. size_t len)
  922. {
  923. OPENSSL_free(s->ext.alpn_selected);
  924. if (alpn == NULL || len == 0) {
  925. s->ext.alpn_selected = NULL;
  926. s->ext.alpn_selected_len = 0;
  927. return 1;
  928. }
  929. s->ext.alpn_selected = OPENSSL_memdup(alpn, len);
  930. if (s->ext.alpn_selected == NULL) {
  931. s->ext.alpn_selected_len = 0;
  932. return 0;
  933. }
  934. s->ext.alpn_selected_len = len;
  935. return 1;
  936. }
  937. X509 *SSL_SESSION_get0_peer(SSL_SESSION *s)
  938. {
  939. return s->peer;
  940. }
  941. EVP_PKEY *SSL_SESSION_get0_peer_rpk(SSL_SESSION *s)
  942. {
  943. return s->peer_rpk;
  944. }
  945. int SSL_SESSION_set1_id_context(SSL_SESSION *s, const unsigned char *sid_ctx,
  946. unsigned int sid_ctx_len)
  947. {
  948. if (sid_ctx_len > SSL_MAX_SID_CTX_LENGTH) {
  949. ERR_raise(ERR_LIB_SSL, SSL_R_SSL_SESSION_ID_CONTEXT_TOO_LONG);
  950. return 0;
  951. }
  952. s->sid_ctx_length = sid_ctx_len;
  953. if (sid_ctx != s->sid_ctx)
  954. memcpy(s->sid_ctx, sid_ctx, sid_ctx_len);
  955. return 1;
  956. }
  957. int SSL_SESSION_is_resumable(const SSL_SESSION *s)
  958. {
  959. /*
  960. * In the case of EAP-FAST, we can have a pre-shared "ticket" without a
  961. * session ID.
  962. */
  963. return !s->not_resumable
  964. && (s->session_id_length > 0 || s->ext.ticklen > 0);
  965. }
  966. long SSL_CTX_set_timeout(SSL_CTX *s, long t)
  967. {
  968. long l;
  969. if (s == NULL)
  970. return 0;
  971. l = (long)ossl_time2seconds(s->session_timeout);
  972. s->session_timeout = ossl_seconds2time(t);
  973. return l;
  974. }
  975. long SSL_CTX_get_timeout(const SSL_CTX *s)
  976. {
  977. if (s == NULL)
  978. return 0;
  979. return (long)ossl_time2seconds(s->session_timeout);
  980. }
  981. int SSL_set_session_secret_cb(SSL *s,
  982. tls_session_secret_cb_fn tls_session_secret_cb,
  983. void *arg)
  984. {
  985. SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
  986. if (sc == NULL)
  987. return 0;
  988. sc->ext.session_secret_cb = tls_session_secret_cb;
  989. sc->ext.session_secret_cb_arg = arg;
  990. return 1;
  991. }
  992. int SSL_set_session_ticket_ext_cb(SSL *s, tls_session_ticket_ext_cb_fn cb,
  993. void *arg)
  994. {
  995. SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
  996. if (sc == NULL)
  997. return 0;
  998. sc->ext.session_ticket_cb = cb;
  999. sc->ext.session_ticket_cb_arg = arg;
  1000. return 1;
  1001. }
  1002. int SSL_set_session_ticket_ext(SSL *s, void *ext_data, int ext_len)
  1003. {
  1004. SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
  1005. if (sc == NULL)
  1006. return 0;
  1007. if (sc->version >= TLS1_VERSION) {
  1008. OPENSSL_free(sc->ext.session_ticket);
  1009. sc->ext.session_ticket = NULL;
  1010. sc->ext.session_ticket =
  1011. OPENSSL_malloc(sizeof(TLS_SESSION_TICKET_EXT) + ext_len);
  1012. if (sc->ext.session_ticket == NULL)
  1013. return 0;
  1014. if (ext_data != NULL) {
  1015. sc->ext.session_ticket->length = ext_len;
  1016. sc->ext.session_ticket->data = sc->ext.session_ticket + 1;
  1017. memcpy(sc->ext.session_ticket->data, ext_data, ext_len);
  1018. } else {
  1019. sc->ext.session_ticket->length = 0;
  1020. sc->ext.session_ticket->data = NULL;
  1021. }
  1022. return 1;
  1023. }
  1024. return 0;
  1025. }
  1026. void SSL_CTX_flush_sessions(SSL_CTX *s, long t)
  1027. {
  1028. STACK_OF(SSL_SESSION) *sk;
  1029. SSL_SESSION *current;
  1030. unsigned long i;
  1031. const OSSL_TIME timeout = ossl_time_from_time_t(t);
  1032. if (!CRYPTO_THREAD_write_lock(s->lock))
  1033. return;
  1034. sk = sk_SSL_SESSION_new_null();
  1035. i = lh_SSL_SESSION_get_down_load(s->sessions);
  1036. lh_SSL_SESSION_set_down_load(s->sessions, 0);
  1037. /*
  1038. * Iterate over the list from the back (oldest), and stop
  1039. * when a session can no longer be removed.
  1040. * Add the session to a temporary list to be freed outside
  1041. * the SSL_CTX lock.
  1042. * But still do the remove_session_cb() within the lock.
  1043. */
  1044. while (s->session_cache_tail != NULL) {
  1045. current = s->session_cache_tail;
  1046. if (t == 0 || sess_timedout(timeout, current)) {
  1047. lh_SSL_SESSION_delete(s->sessions, current);
  1048. SSL_SESSION_list_remove(s, current);
  1049. current->not_resumable = 1;
  1050. if (s->remove_session_cb != NULL)
  1051. s->remove_session_cb(s, current);
  1052. /*
  1053. * Throw the session on a stack, it's entirely plausible
  1054. * that while freeing outside the critical section, the
  1055. * session could be re-added, so avoid using the next/prev
  1056. * pointers. If the stack failed to create, or the session
  1057. * couldn't be put on the stack, just free it here
  1058. */
  1059. if (sk == NULL || !sk_SSL_SESSION_push(sk, current))
  1060. SSL_SESSION_free(current);
  1061. } else {
  1062. break;
  1063. }
  1064. }
  1065. lh_SSL_SESSION_set_down_load(s->sessions, i);
  1066. CRYPTO_THREAD_unlock(s->lock);
  1067. sk_SSL_SESSION_pop_free(sk, SSL_SESSION_free);
  1068. }
  1069. int ssl_clear_bad_session(SSL_CONNECTION *s)
  1070. {
  1071. if ((s->session != NULL) &&
  1072. !(s->shutdown & SSL_SENT_SHUTDOWN) &&
  1073. !(SSL_in_init(SSL_CONNECTION_GET_SSL(s))
  1074. || SSL_in_before(SSL_CONNECTION_GET_SSL(s)))) {
  1075. SSL_CTX_remove_session(s->session_ctx, s->session);
  1076. return 1;
  1077. } else
  1078. return 0;
  1079. }
  1080. /* locked by SSL_CTX in the calling function */
  1081. static void SSL_SESSION_list_remove(SSL_CTX *ctx, SSL_SESSION *s)
  1082. {
  1083. if ((s->next == NULL) || (s->prev == NULL))
  1084. return;
  1085. if (s->next == (SSL_SESSION *)&(ctx->session_cache_tail)) {
  1086. /* last element in list */
  1087. if (s->prev == (SSL_SESSION *)&(ctx->session_cache_head)) {
  1088. /* only one element in list */
  1089. ctx->session_cache_head = NULL;
  1090. ctx->session_cache_tail = NULL;
  1091. } else {
  1092. ctx->session_cache_tail = s->prev;
  1093. s->prev->next = (SSL_SESSION *)&(ctx->session_cache_tail);
  1094. }
  1095. } else {
  1096. if (s->prev == (SSL_SESSION *)&(ctx->session_cache_head)) {
  1097. /* first element in list */
  1098. ctx->session_cache_head = s->next;
  1099. s->next->prev = (SSL_SESSION *)&(ctx->session_cache_head);
  1100. } else {
  1101. /* middle of list */
  1102. s->next->prev = s->prev;
  1103. s->prev->next = s->next;
  1104. }
  1105. }
  1106. s->prev = s->next = NULL;
  1107. s->owner = NULL;
  1108. }
  1109. static void SSL_SESSION_list_add(SSL_CTX *ctx, SSL_SESSION *s)
  1110. {
  1111. SSL_SESSION *next;
  1112. if ((s->next != NULL) && (s->prev != NULL))
  1113. SSL_SESSION_list_remove(ctx, s);
  1114. if (ctx->session_cache_head == NULL) {
  1115. ctx->session_cache_head = s;
  1116. ctx->session_cache_tail = s;
  1117. s->prev = (SSL_SESSION *)&(ctx->session_cache_head);
  1118. s->next = (SSL_SESSION *)&(ctx->session_cache_tail);
  1119. } else {
  1120. if (timeoutcmp(s, ctx->session_cache_head) >= 0) {
  1121. /*
  1122. * if we timeout after (or the same time as) the first
  1123. * session, put us first - usual case
  1124. */
  1125. s->next = ctx->session_cache_head;
  1126. s->next->prev = s;
  1127. s->prev = (SSL_SESSION *)&(ctx->session_cache_head);
  1128. ctx->session_cache_head = s;
  1129. } else if (timeoutcmp(s, ctx->session_cache_tail) < 0) {
  1130. /* if we timeout before the last session, put us last */
  1131. s->prev = ctx->session_cache_tail;
  1132. s->prev->next = s;
  1133. s->next = (SSL_SESSION *)&(ctx->session_cache_tail);
  1134. ctx->session_cache_tail = s;
  1135. } else {
  1136. /*
  1137. * we timeout somewhere in-between - if there is only
  1138. * one session in the cache it will be caught above
  1139. */
  1140. next = ctx->session_cache_head->next;
  1141. while (next != (SSL_SESSION*)&(ctx->session_cache_tail)) {
  1142. if (timeoutcmp(s, next) >= 0) {
  1143. s->next = next;
  1144. s->prev = next->prev;
  1145. next->prev->next = s;
  1146. next->prev = s;
  1147. break;
  1148. }
  1149. next = next->next;
  1150. }
  1151. }
  1152. }
  1153. s->owner = ctx;
  1154. }
  1155. void SSL_CTX_sess_set_new_cb(SSL_CTX *ctx,
  1156. int (*cb) (struct ssl_st *ssl, SSL_SESSION *sess))
  1157. {
  1158. ctx->new_session_cb = cb;
  1159. }
  1160. int (*SSL_CTX_sess_get_new_cb(SSL_CTX *ctx)) (SSL *ssl, SSL_SESSION *sess) {
  1161. return ctx->new_session_cb;
  1162. }
  1163. void SSL_CTX_sess_set_remove_cb(SSL_CTX *ctx,
  1164. void (*cb) (SSL_CTX *ctx, SSL_SESSION *sess))
  1165. {
  1166. ctx->remove_session_cb = cb;
  1167. }
  1168. void (*SSL_CTX_sess_get_remove_cb(SSL_CTX *ctx)) (SSL_CTX *ctx,
  1169. SSL_SESSION *sess) {
  1170. return ctx->remove_session_cb;
  1171. }
  1172. void SSL_CTX_sess_set_get_cb(SSL_CTX *ctx,
  1173. SSL_SESSION *(*cb) (SSL *ssl,
  1174. const unsigned char *data,
  1175. int len, int *copy))
  1176. {
  1177. ctx->get_session_cb = cb;
  1178. }
  1179. SSL_SESSION *(*SSL_CTX_sess_get_get_cb(SSL_CTX *ctx)) (SSL *ssl,
  1180. const unsigned char
  1181. *data, int len,
  1182. int *copy) {
  1183. return ctx->get_session_cb;
  1184. }
  1185. void SSL_CTX_set_info_callback(SSL_CTX *ctx,
  1186. void (*cb) (const SSL *ssl, int type, int val))
  1187. {
  1188. ctx->info_callback = cb;
  1189. }
  1190. void (*SSL_CTX_get_info_callback(SSL_CTX *ctx)) (const SSL *ssl, int type,
  1191. int val) {
  1192. return ctx->info_callback;
  1193. }
  1194. void SSL_CTX_set_client_cert_cb(SSL_CTX *ctx,
  1195. int (*cb) (SSL *ssl, X509 **x509,
  1196. EVP_PKEY **pkey))
  1197. {
  1198. ctx->client_cert_cb = cb;
  1199. }
  1200. int (*SSL_CTX_get_client_cert_cb(SSL_CTX *ctx)) (SSL *ssl, X509 **x509,
  1201. EVP_PKEY **pkey) {
  1202. return ctx->client_cert_cb;
  1203. }
  1204. void SSL_CTX_set_cookie_generate_cb(SSL_CTX *ctx,
  1205. int (*cb) (SSL *ssl,
  1206. unsigned char *cookie,
  1207. unsigned int *cookie_len))
  1208. {
  1209. ctx->app_gen_cookie_cb = cb;
  1210. }
  1211. void SSL_CTX_set_cookie_verify_cb(SSL_CTX *ctx,
  1212. int (*cb) (SSL *ssl,
  1213. const unsigned char *cookie,
  1214. unsigned int cookie_len))
  1215. {
  1216. ctx->app_verify_cookie_cb = cb;
  1217. }
  1218. int SSL_SESSION_set1_ticket_appdata(SSL_SESSION *ss, const void *data, size_t len)
  1219. {
  1220. OPENSSL_free(ss->ticket_appdata);
  1221. ss->ticket_appdata_len = 0;
  1222. if (data == NULL || len == 0) {
  1223. ss->ticket_appdata = NULL;
  1224. return 1;
  1225. }
  1226. ss->ticket_appdata = OPENSSL_memdup(data, len);
  1227. if (ss->ticket_appdata != NULL) {
  1228. ss->ticket_appdata_len = len;
  1229. return 1;
  1230. }
  1231. return 0;
  1232. }
  1233. int SSL_SESSION_get0_ticket_appdata(SSL_SESSION *ss, void **data, size_t *len)
  1234. {
  1235. *data = ss->ticket_appdata;
  1236. *len = ss->ticket_appdata_len;
  1237. return 1;
  1238. }
  1239. void SSL_CTX_set_stateless_cookie_generate_cb(
  1240. SSL_CTX *ctx,
  1241. int (*cb) (SSL *ssl,
  1242. unsigned char *cookie,
  1243. size_t *cookie_len))
  1244. {
  1245. ctx->gen_stateless_cookie_cb = cb;
  1246. }
  1247. void SSL_CTX_set_stateless_cookie_verify_cb(
  1248. SSL_CTX *ctx,
  1249. int (*cb) (SSL *ssl,
  1250. const unsigned char *cookie,
  1251. size_t cookie_len))
  1252. {
  1253. ctx->verify_stateless_cookie_cb = cb;
  1254. }
  1255. IMPLEMENT_PEM_rw(SSL_SESSION, SSL_SESSION, PEM_STRING_SSL_SESSION, SSL_SESSION)