Description
In the Linux kernel, the following vulnerability has been resolved:

Bluetooth: hci_uart: clear HCI_UART_SENDING when write_work is canceled

HCI_UART_SENDING bit in tx_state means write_work is pending and blocks
queueing it again. Currently this bit is not cleared when canceling the
work in hci_uart_close(), which blocks future writes when device is
reopened later if write_work was pending.

Fix by clearing HCI_UART_SENDING when canceling the work.

Also make clearing of tx_skb safe by using disable_work_sync +
enable_work instead of just cancel_work_sync. hci_uart_flush() purges
the proto tx queue so we can cancel the pending write_work there,
instead of doing it just in hci_uart_close(). Re-enable and possibly
requeue the work after queue flush.
Published: 2026-08-10
Score: 8 High
EPSS: < 1% Very Low
KEV: No
Impact: n/a
Action: n/a
AI Analysis

Impact

The flaw exists in the Linux kernel Bluetooth hci_uart driver and is caused by the HCI_UART_SENDING flag, which marks a pending write work item. When the driver closes the device, it cancels the write work but fails to clear this flag. If the cancellation occurs while a write request is still outstanding, subsequent attempts to send data after reopening the device remain blocked because the flag is still set, effectively preventing any further Bluetooth HCI UART traffic. This race‑condition problem does not lead to code execution or data disclosure but disrupts normal Bluetooth functionality, resulting in a denial of service for applications that rely on the HCI UART interface.

Affected Systems

Based on the description, it is inferred that all Linux kernel installations that have not incorporated the hci_uart patch are vulnerable. The problem appears in any kernel that includes the driver without the commit identified by 1b0d946d, regardless of distribution or minor version. Based on the description, it is inferred that software that ships with older kernels and still loads the hci_uart module may experience repeated write failures after device close events.

Risk and Exploitability

The CVSS score of 8 indicates a high‑impact vulnerability. The EPSS score of less than 1% implies that the likelihood of real‑world exploitation is currently low. The vulnerability is not listed in the CISA KEV catalog. Based on the description, it is inferred that exploitation would normally require an attacker to repeatedly open and close a Bluetooth HCI UART device while a write operation is pending, which is typically achievable by a local process with sufficient privileges to interact with the kernel driver. Because the flaw only causes a service interruption rather than privilege escalation or data exposure, the attack surface is limited to local or users able to control the Bluetooth subsystem.

Generated by OpenCVE AI on August 14, 2026 at 04:51 UTC.

Remediation

No vendor fix or workaround currently provided.

OpenCVE Recommended Actions

  • Update the Linux kernel to a revision that contains the hci_uart fix (commit 1b0d946d).
  • If a kernel upgrade cannot be performed, apply the backported patch from the kernel source to the running kernel and rebuild the hci_uart module; the patch adds safe synchronization (disable_work_sync/enable_work) and clears the HCI_UART_SENDING flag, addressing the out‑of‑bounds write race condition identified as CWE‑413.
  • If Bluetooth HCI UART traffic is not required, unload or disable the hci_uart module to eliminate the risk of write blockage.

Generated by OpenCVE AI on August 14, 2026 at 04:51 UTC.

Tracking

Sign in to view the affected projects.

Advisories

No advisories yet.

History

Fri, 14 Aug 2026 03:30:00 +0000

Type Values Removed Values Added
Weaknesses CWE-676

Thu, 13 Aug 2026 22:45:00 +0000

Type Values Removed Values Added
Metrics cvssV3_1

{'score': 5.5, 'vector': 'CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H'}

cvssV3_1

{'score': 8, 'vector': 'CVSS:3.1/AV:A/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H'}


Wed, 12 Aug 2026 00:15:00 +0000

Type Values Removed Values Added
Weaknesses CWE-413
References
Metrics threat_severity

None

cvssV3_1

{'score': 5.5, 'vector': 'CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H'}

threat_severity

Moderate


Mon, 10 Aug 2026 20:30:00 +0000

Type Values Removed Values Added
Weaknesses CWE-676

Mon, 10 Aug 2026 12:00:00 +0000

Type Values Removed Values Added
Description In the Linux kernel, the following vulnerability has been resolved: Bluetooth: hci_uart: clear HCI_UART_SENDING when write_work is canceled HCI_UART_SENDING bit in tx_state means write_work is pending and blocks queueing it again. Currently this bit is not cleared when canceling the work in hci_uart_close(), which blocks future writes when device is reopened later if write_work was pending. Fix by clearing HCI_UART_SENDING when canceling the work. Also make clearing of tx_skb safe by using disable_work_sync + enable_work instead of just cancel_work_sync. hci_uart_flush() purges the proto tx queue so we can cancel the pending write_work there, instead of doing it just in hci_uart_close(). Re-enable and possibly requeue the work after queue flush.
Title Bluetooth: hci_uart: clear HCI_UART_SENDING when write_work is canceled
First Time appeared Linux
Linux linux Kernel
CPEs cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*
Vendors & Products Linux
Linux linux Kernel
References

Subscriptions

Linux Linux Kernel
cve-icon MITRE

Status: PUBLISHED

Assigner: Linux

Published:

Updated: 2026-08-17T04:58:33.786Z

Reserved: 2026-07-30T09:28:09.367Z

Link: CVE-2026-68085

cve-icon Vulnrichment

No data.

cve-icon NVD

Status : Received

Published: 2026-08-10T12:17:21.060

Modified: 2026-08-17T05:18:07.737

Link: CVE-2026-68085

cve-icon Redhat

Severity : Moderate

Publid Date: 2026-08-10T00:00:00Z

Links: CVE-2026-68085 - Bugzilla

cve-icon OpenCVE Enrichment

Updated: 2026-08-14T05:00:05Z

Weaknesses
  • CWE-413

    Improper Resource Locking