ssl_sess.c 42 KB

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