Skip to main content

Linux Kernel EUVDEUVD-2026-53773

| CVE-2026-64586 HIGH
2026-08-06 Linux GHSA-5rg4-8h2h-x94w
8.8
CVSS 3.1 · Vendor: Linux
Share

Severity by source

Vendor (Linux) PRIMARY
8.8 HIGH
AV:A/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
vuln.today AI
7.5 HIGH

Race condition timing requirement elevates AC to H over official AC:L; adjacent WiFi firmware-crash path needs no credentials (PR:N).

3.1 AV:A/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H
4.0 AV:A/AC:H/AT:P/PR:N/UI:N/VC:H/VI:H/VA:H/SC:N/SI:N/SA:N
SUSE
6.4 MEDIUM
AV:L/AC:H/PR:H/UI:N/S:U/C:H/I:H/A:H

Primary rating from Vendor (Linux).

CVSS VectorVendor: Linux

Attack Vector
Adjacent
Attack Complexity
Low
Privileges Required
None
User Interaction
None
Scope
Unchanged
Confidentiality
High
Integrity
High
Availability
High

Lifecycle Timeline

5
Analysis Generated
Aug 08, 2026 - 15:37 vuln.today
CVSS changed
Aug 08, 2026 - 15:22 NVD
8.8 (HIGH)
Patch available
Aug 06, 2026 - 08:16 EUVD
CVE Published
Aug 06, 2026 - 07:06 cve.org
HIGH 8.8
CVE Published
Aug 06, 2026 - 07:06 cve.org
UNKNOWN (no severity yet)

DescriptionCVE.org

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

wifi: brcmfmac: drain bus_reset work on device removal

brcmf_fw_crashed() and the debugfs "reset" entry both schedule drvr->bus_reset, whose callback recovers drvr through container_of() and dereferences it. The removal path frees drvr (brcmf_free -> wiphy_free) without draining the work, so a bus_reset callback pending or running during removal can outlive drvr.

Cancellation cannot live in brcmf_detach() or brcmf_free(): the work callback reaches teardown through the bus .reset op (PCIe brcmf_pcie_reset -> brcmf_detach; SDIO brcmf_sdio_bus_reset -> brcmf_sdiod_remove -> brcmf_free), so cancelling there would wait for the running work and deadlock.

Add a per-bus mutex (bus_reset_lock) and route all arming through brcmf_bus_schedule_reset(), which under the lock skips when the bus is marked removing. Each bus remove entry calls brcmf_bus_cancel_reset_work(), which under the same lock sets removing and cancels the work. Holding the mutex across cancel_work_sync() makes the set-removing + drain step atomic. Every producer reaches the arming path from process context -- the PCIe firmware-halt notification runs in the threaded IRQ handler (brcmf_pcie_isr_thread) and the SDIO hostmail path runs from the data workqueue -- so the mutex is taken only in sleepable contexts. Where applicable the remove entry first stops the firmware-crash producer: on PCIe mask the mailbox and synchronize_irq; on SDIO unregister the bus interrupt and cancel the data worker, which also reports firmware halts through brcmf_fw_crashed(). The mutex is initialized at bus allocation. The SDIO suspend power-off path frees drvr through the same brcmf_sdiod_remove() and takes the same lock; resume re-allows the work only on a successful re-probe.

Also guard brcmf_fw_crashed() against a NULL bus_if/drvr: it can fire before brcmf_attach() wires up drvr, and it dereferences drvr (bphy_err/brcmf_dev_coredump) before reaching the arming gate.

The bus_reset work is shared across buses, so the drain is applied to every remove path: PCIe (the .reset op introduced by the Fixes commit), SDIO (arms the same work through brcmf_fw_crashed()), and USB (via the debugfs "reset" entry). cancel_work_sync() drains a running or pending bus_reset work item before removal frees drvr, and patch 1/2 makes the scratch-buffer release safe when reset teardown has already released those DMA buffers.

This patch fixes the lifetime of the bus_reset work item itself. It does not attempt to address the separate, pre-existing lifetime of the asynchronous firmware completion started by the PCIe reset path. That callback needs its own lifetime/ownership protocol and is being tracked separately.

This issue was found by an in-house static analysis tool.

AnalysisAI

Use-after-free race condition in the Linux kernel brcmfmac Broadcom WiFi driver enables adjacent-network attackers to corrupt kernel memory during concurrent device removal and bus_reset work execution. Affected systems include any Linux host running brcmfmac on PCIe, SDIO, or USB Broadcom chipsets - including Raspberry Pi devices - on kernel versions since 5.2 through pre-7.1.6. No public exploit or CISA KEV listing exists at time of analysis, and EPSS probability is low at 0.14% (4th percentile), though the kernel-level impact class remains high.

Technical ContextAI

The brcmfmac driver is the Linux kernel's Broadcom FullMAC wireless stack, serving Broadcom WiFi chipsets over three bus types: PCIe (laptops, embedded), SDIO (Raspberry Pi, IoT), and USB (dongles). Both brcmf_fw_crashed() - invoked when the Broadcom firmware halts, e.g. via a threaded IRQ from the PCIe mailbox or the SDIO data workqueue - and the debugfs 'reset' entry schedule drvr->bus_reset, a kernel deferred-work item whose callback recovers the driver by dereferencing drvr via container_of(). The removal path (brcmf_free -> wiphy_free) freed this structure without calling cancel_work_sync(), creating a window where the callback executes against freed kernel heap. A deadlock prevented placing cancellation in brcmf_detach() or brcmf_free() because the work callback itself reaches those functions through the bus .reset op. The CWE is formally unassigned (N/A per advisory) but the root cause class is a use-after-free race condition arising from missing work-queue lifecycle synchronization during driver teardown. CPE: cpe:2.3:a:linux:linux:*:*:*:*:*:*:*:*.

RemediationAI

The primary fix is upgrading to Linux kernel 7.1.6 (stable) or 7.2-rc5, which introduce a per-bus mutex (bus_reset_lock) and brcmf_bus_cancel_reset_work() that atomically mark the bus as removing and drain any pending or running work before memory is freed. Patches are available via the kernel stable tree at https://git.kernel.org/stable/c/43b25879f004c98defa2776bedc6ca4763c51945 and https://git.kernel.org/stable/c/177a25be1195f8bdc6160ba5f1a5699f7041c985. Where patching is not immediately possible, unloading or blacklisting the brcmfmac kernel module eliminates the attack surface entirely but disables all Broadcom WiFi functionality on the host. Restricting debugfs access (mount -o remount,noexec /sys/kernel/debug or removing the mount) blocks the debugfs 'reset' trigger path but does not protect against the firmware-crash-triggered path reachable from the adjacent network. Neither workaround is a substitute for the upstream patch.

Vendor StatusVendor

SUSE

Severity: Moderate
Product Status
openSUSE Tumbleweed Fixed
SUSE Linux Enterprise Desktop 15 SP7 Affected
SUSE Linux Enterprise Desktop 15 SP7 Affected
SUSE Linux Enterprise High Availability Extension 15 SP7 Affected
SUSE Linux Enterprise High Availability Extension 15 SP7 Affected

Share

EUVD-2026-53773 vulnerability details – vuln.today

This site uses cookies essential for authentication and security. No tracking or analytics cookies are used. Privacy Policy