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

Bluetooth: ISO: avoid deadlocks in iso_sock_timeout

iso_sock_timeout() takes lock_sock, so sync disabling the timer while
holding that lock may deadlock.

iso_sock_timeout() may also run concurrently with iso_conn_del(), which
leads to UAF

[Task 1] [Task hdev->workqueue]
iso_sock_timeout iso_conn_del
iso_conn_hold_unless_zero iso_chan_del
`------------> iso_conn_put
caller frees hcon
iso_conn_put
iso_conn_free
conn->hcon->iso_data = NULL; /* UAF */

Fix the deadlock by removing the disable from the lock_sock sections.
Move the timer from iso_conn to iso_pinfo to decouple it from iso_conn
which may need to be freed in lock_sock section. Convert some of the
clear_timer to disable_timer.
Published: 2026-08-15
Score: 8.8 High
EPSS: < 1% Very Low
KEV: No
Impact: n/a
Action: n/a
AI Analysis

Impact

The iso_sock_timeout() function in the Linux kernel’s Bluetooth ISO stack holds the socket lock while disabling a timer, which can lead to a deadlock and stall the system. When iso_sock_timeout() runs concurrently with iso_conn_del(), a use‑after‑free can occur, freeing a connection context that is still referenced and causing a kernel crash, resulting in a system crash or denial of service. The vulnerability is classified under CWE-825 according to the CNA list.

Affected Systems

All Linux kernel versions that contain the buggy iso_sock_timeout logic before the patch commits (e.g., before commits 16d89a63, 200fa162, 3c3d5f85, or 82e982f5) are vulnerable. Distributions based on those kernels are affected unless they have applied the patch or upgraded past these commits.

Risk and Exploitability

The CVSS score of 8.8 indicates high severity. The EPSS score is below 1%, implying a low but non‑zero likelihood of exploitation. The vulnerability is not listed in CISA’s KEV catalog, suggesting no large‑scale attacks have been reported. Based on the description, it is inferred that the likely attack vector involves a race condition triggered by Bluetooth traffic, which could allow an attacker to cause a kernel crash and a denial‑of‑service outcome.

Generated by OpenCVE AI on August 21, 2026 at 21:59 UTC.

Remediation

No vendor fix or workaround currently provided.

OpenCVE Recommended Actions

  • Apply the kernel patch that removes the timer disabling from the lock_sock sections and moves the timer to iso_pinfo, as committed in the referenced patch series.
  • Upgrade to a Linux kernel release that incorporates these fix commits to update the ISO stack logic.
  • If an immediate upgrade is not possible, temporarily disable the Bluetooth ISO subsystem or block all Bluetooth traffic to the host until the patch is applied.

Generated by OpenCVE AI on August 21, 2026 at 21:59 UTC.

Tracking

Sign in to view the affected projects.

Advisories
Source ID Title
Debian DSA Debian DSA DSA-6466-1 linux security update
History

Fri, 21 Aug 2026 20:30:00 +0000

Type Values Removed Values Added
Weaknesses CWE-362
CWE-416

Thu, 20 Aug 2026 00:15:00 +0000

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

None

threat_severity

Moderate


Mon, 17 Aug 2026 16:15:00 +0000

Type Values Removed Values Added
Weaknesses CWE-362
CWE-416

Mon, 17 Aug 2026 14:00:00 +0000

Type Values Removed Values Added
Weaknesses CWE-362
CWE-416

Mon, 17 Aug 2026 06:00:00 +0000

Type Values Removed Values Added
Metrics cvssV3_1

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


Sat, 15 Aug 2026 15:00:00 +0000

Type Values Removed Values Added
Weaknesses CWE-362
CWE-416

Sat, 15 Aug 2026 12:45:00 +0000

Type Values Removed Values Added
Description In the Linux kernel, the following vulnerability has been resolved: Bluetooth: ISO: avoid deadlocks in iso_sock_timeout iso_sock_timeout() takes lock_sock, so sync disabling the timer while holding that lock may deadlock. iso_sock_timeout() may also run concurrently with iso_conn_del(), which leads to UAF [Task 1] [Task hdev->workqueue] iso_sock_timeout iso_conn_del iso_conn_hold_unless_zero iso_chan_del `------------> iso_conn_put caller frees hcon iso_conn_put iso_conn_free conn->hcon->iso_data = NULL; /* UAF */ Fix the deadlock by removing the disable from the lock_sock sections. Move the timer from iso_conn to iso_pinfo to decouple it from iso_conn which may need to be freed in lock_sock section. Convert some of the clear_timer to disable_timer.
Title Bluetooth: ISO: avoid deadlocks in iso_sock_timeout
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-17T05:48:24.441Z

Reserved: 2026-08-15T05:44:03.913Z

Link: CVE-2026-74535

cve-icon Vulnrichment

No data.

cve-icon NVD

Status : Received

Published: 2026-08-15T13:17:58.837

Modified: 2026-08-17T06:19:50.587

Link: CVE-2026-74535

cve-icon Redhat

Severity : Moderate

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

Links: CVE-2026-74535 - Bugzilla

cve-icon OpenCVE Enrichment

Updated: 2026-08-21T22:00:15Z

Weaknesses
  • CWE-825

    Expired Pointer Dereference