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

wifi: mac80211: defer link RX stats percpu free to RCU

sta_remove_link() frees a removed MLO link's RX stats percpu buffer right
away, but defers only the link container to RCU:

sta_info_free_link(&alloc->info);
kfree_rcu(alloc, rcu_head);

The RX fast path reads link_sta under rcu_read_lock and writes the percpu
stats. A reader that resolved link_sta before the removal keeps the
pointer. The container stays alive from the kfree_rcu, so the read still
works. But the percpu block it points to is already freed. This needs
uses_rss. That is when pcpu_rx_stats exists.

The full STA teardown frees the deflink stats only after
synchronize_net(). The link removal path had no such barrier. The race is
hard to win in practice, but the free should still wait for RCU.

Free the link together with its data from a single RCU callback, so the
percpu block is reclaimed only after readers drain.
Published: 2026-08-10
Score: 8.8 High
EPSS: < 1% Very Low
KEV: No
Impact: n/a
Action: n/a
AI Analysis

Impact

The vulnerability arises in the mac80211 Wi‑Fi stack of the Linux kernel. When a Multi‑Link Operation (MLO) link is removed, the code frees the per‑CPU statistics buffer immediately while only deferring the link container’s cleanup via RCU. Readers in the fast‑path RX code can still access the stale buffer after the link container has been freed, which is a use‑after‑free race condition. This flaw maps to common weaknesses such as use‑after‑free, race condition, and improper resource deallocation, and can lead to kernel memory corruption, crashes, or denial of service. Based on the description, the likely attack vector involves Wi‑Fi traffic that triggers the removal of a link.

Affected Systems

All Linux kernel installations that contain the removal code for MLO links and are prior to the commit that defers the entire cleanup to a single RCU callback. This includes every distribution that ships a kernel version deploying the affected mac80211 code. No specific version list is supplied; any system with a kernel that predates the fix is vulnerable.

Risk and Exploitability

Based on the description, the likely attack vector is network traffic that activates the link removal routine in the kernel’s Wi‑Fi stack. The short‑lived race condition is difficult to trigger reliably, and the EPSS score is below 1 %, indicating a very low expected exploitation rate. However, the high CVSS score of 8.8 reflects severe potential impact if an attacker succeeds, and the issue is not catalogued in CISA’s KEV list. Attackers would need to orchestrate Wi‑Fi traffic that aligns with a link removal event to provoke the use‑after‑free. While practical exploitation is unlikely, the possibility of kernel crashes or memory corruption warrants immediate remediation.

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

Remediation

No vendor fix or workaround currently provided.

OpenCVE Recommended Actions

  • Apply the official kernel patch that fixes the CWE-825 use‑after‑free flaw
  • Restrict or disable MLO Wi‑Fi features to prevent triggering the vulnerability while waiting for a patch, addressing the CWE-825 weakness
  • Reboot or restart networking services after applying the patch to ensure the new kernel takes effect

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

Tracking

Sign in to view the affected projects.

Advisories

No advisories yet.

History

Fri, 14 Aug 2026 02:15:00 +0000

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

Thu, 13 Aug 2026 23:15:00 +0000

Type Values Removed Values Added
Metrics cvssV3_1

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

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'}


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

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

None

cvssV3_1

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

threat_severity

Important


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

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

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

Type Values Removed Values Added
Description In the Linux kernel, the following vulnerability has been resolved: wifi: mac80211: defer link RX stats percpu free to RCU sta_remove_link() frees a removed MLO link's RX stats percpu buffer right away, but defers only the link container to RCU: sta_info_free_link(&alloc->info); kfree_rcu(alloc, rcu_head); The RX fast path reads link_sta under rcu_read_lock and writes the percpu stats. A reader that resolved link_sta before the removal keeps the pointer. The container stays alive from the kfree_rcu, so the read still works. But the percpu block it points to is already freed. This needs uses_rss. That is when pcpu_rx_stats exists. The full STA teardown frees the deflink stats only after synchronize_net(). The link removal path had no such barrier. The race is hard to win in practice, but the free should still wait for RCU. Free the link together with its data from a single RCU callback, so the percpu block is reclaimed only after readers drain.
Title wifi: mac80211: defer link RX stats percpu free to RCU
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:04:59.807Z

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

Link: CVE-2026-68409

cve-icon Vulnrichment

No data.

cve-icon NVD

Status : Received

Published: 2026-08-10T13:20:34.537

Modified: 2026-08-17T06:17:49.857

Link: CVE-2026-68409

cve-icon Redhat

Severity : Important

Publid Date: 2026-08-10T12:04:29Z

Links: CVE-2026-68409 - Bugzilla

cve-icon OpenCVE Enrichment

Updated: 2026-08-14T04:15:03Z

Weaknesses
  • CWE-825

    Expired Pointer Dereference