CVE-2026-23240
Severity CVSS v4.0:
Pending analysis
Type:
CWE-362
Concurrent Execution using Shared Resource with Improper Synchronization ('Race Condition')
Publication date:
10/03/2026
Last modified:
20/05/2026
Description
In the Linux kernel, the following vulnerability has been resolved:<br />
<br />
tls: Fix race condition in tls_sw_cancel_work_tx()<br />
<br />
This issue was discovered during a code audit.<br />
<br />
After cancel_delayed_work_sync() is called from tls_sk_proto_close(),<br />
tx_work_handler() can still be scheduled from paths such as the<br />
Delayed ACK handler or ksoftirqd.<br />
As a result, the tx_work_handler() worker may dereference a freed<br />
TLS object.<br />
<br />
The following is a simple race scenario:<br />
<br />
cpu0 cpu1<br />
<br />
tls_sk_proto_close()<br />
tls_sw_cancel_work_tx()<br />
tls_write_space()<br />
tls_sw_write_space()<br />
if (!test_and_set_bit(BIT_TX_SCHEDULED, &tx_ctx->tx_bitmask))<br />
set_bit(BIT_TX_SCHEDULED, &ctx->tx_bitmask);<br />
cancel_delayed_work_sync(&ctx->tx_work.work);<br />
schedule_delayed_work(&tx_ctx->tx_work.work, 0);<br />
<br />
To prevent this race condition, cancel_delayed_work_sync() is<br />
replaced with disable_delayed_work_sync().
Impact
Base Score 3.x
9.80
Severity 3.x
CRITICAL
Vulnerable products and versions
| CPE | From | Up to |
|---|---|---|
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 5.3.1 (including) | 6.12.75 (excluding) |
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 6.13 (including) | 6.18.16 (excluding) |
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 6.19 (including) | 6.19.6 (excluding) |
| cpe:2.3:o:linux:linux_kernel:5.3:-:*:*:*:*:*:* | ||
| cpe:2.3:o:linux:linux_kernel:5.3:rc4:*:*:*:*:*:* | ||
| cpe:2.3:o:linux:linux_kernel:5.3:rc5:*:*:*:*:*:* | ||
| cpe:2.3:o:linux:linux_kernel:5.3:rc6:*:*:*:*:*:* | ||
| cpe:2.3:o:linux:linux_kernel:5.3:rc7:*:*:*:*:*:* | ||
| cpe:2.3:o:linux:linux_kernel:5.3:rc8:*:*:*:*:*:* | ||
| cpe:2.3:o:linux:linux_kernel:7.0:rc1:*:*:*:*:*:* |
To consult the complete list of CPE names with products and versions, see this page



