CVE-2026-23146
Severity CVSS v4.0:
Pending analysis
Type:
CWE-476
NULL Pointer Dereference
Publication date:
14/02/2026
Last modified:
17/03/2026
Description
In the Linux kernel, the following vulnerability has been resolved:<br />
<br />
Bluetooth: hci_uart: fix null-ptr-deref in hci_uart_write_work<br />
<br />
hci_uart_set_proto() sets HCI_UART_PROTO_INIT before calling<br />
hci_uart_register_dev(), which calls proto->open() to initialize<br />
hu->priv. However, if a TTY write wakeup occurs during this window,<br />
hci_uart_tx_wakeup() may schedule write_work before hu->priv is<br />
initialized, leading to a NULL pointer dereference in<br />
hci_uart_write_work() when proto->dequeue() accesses hu->priv.<br />
<br />
The race condition is:<br />
<br />
CPU0 CPU1<br />
---- ----<br />
hci_uart_set_proto()<br />
set_bit(HCI_UART_PROTO_INIT)<br />
hci_uart_register_dev()<br />
tty write wakeup<br />
hci_uart_tty_wakeup()<br />
hci_uart_tx_wakeup()<br />
schedule_work(&hu->write_work)<br />
proto->open(hu)<br />
// initializes hu->priv<br />
hci_uart_write_work()<br />
hci_uart_dequeue()<br />
proto->dequeue(hu)<br />
// accesses hu->priv (NULL!)<br />
<br />
Fix this by moving set_bit(HCI_UART_PROTO_INIT) after proto->open()<br />
succeeds, ensuring hu->priv is initialized before any work can be<br />
scheduled.
Impact
Base Score 3.x
5.50
Severity 3.x
MEDIUM
Vulnerable products and versions
| CPE | From | Up to |
|---|---|---|
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 5.4.293 (including) | 5.5 (excluding) |
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 5.10.237 (including) | 5.10.249 (excluding) |
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 5.15.181 (including) | 5.15.199 (excluding) |
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 6.1.135 (including) | 6.1.162 (excluding) |
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 6.6.88 (including) | 6.6.123 (excluding) |
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 6.12.24 (including) | 6.12.69 (excluding) |
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 6.13.12 (including) | 6.14 (excluding) |
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 6.14.3 (including) | 6.18.9 (excluding) |
| cpe:2.3:o:linux:linux_kernel:6.19:rc1:*:*:*:*:*:* | ||
| cpe:2.3:o:linux:linux_kernel:6.19:rc2:*:*:*:*:*:* | ||
| cpe:2.3:o:linux:linux_kernel:6.19:rc3:*:*:*:*:*:* | ||
| cpe:2.3:o:linux:linux_kernel:6.19:rc4:*:*:*:*:*:* | ||
| cpe:2.3:o:linux:linux_kernel:6.19:rc5:*:*:*:*:*:* | ||
| cpe:2.3:o:linux:linux_kernel:6.19:rc6:*:*:*:*:*:* | ||
| cpe:2.3:o:linux:linux_kernel:6.19:rc7:*:*:*:*:*:* |
To consult the complete list of CPE names with products and versions, see this page
References to Advisories, Solutions, and Tools
- https://git.kernel.org/stable/c/03e8c90c62233382042b7bd0fa8b8900552fdb62
- https://git.kernel.org/stable/c/0c3cd7a0b862c37acbee6d9502107146cc944398
- https://git.kernel.org/stable/c/186d147cf7689ba1f9b3ddb753ab634a84940cc9
- https://git.kernel.org/stable/c/53e54cb31e667fca05b1808b990eac0807d1dab0
- https://git.kernel.org/stable/c/937a573423ce5a96fdb1fd425dc6b8d8d4ab5779
- https://git.kernel.org/stable/c/b0a900939e7e4866d9b90e9112514b72c451e873
- https://git.kernel.org/stable/c/ccc683f597ceb28deb966427ae948e5ac739a909



