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

ip: orphan prefetched skbs before multicast forwarding

IPv4 and IPv6 input preserve an skb->sk association installed by
bpf_sk_assign() so that local delivery can use the selected socket under
RCU. Both address families can also prefetch a socket in UDP early demux.
In both paths (BPF and UDP early demux) a reference is not guaranteed to
be held on the socket.

When a multicast packet is not locally deliverable, IPv6 hands the
original skb to ip6_mr_input(). IPv4's ip_mr_input() similarly keeps the
original skb when local delivery is not needed. Either path can put the
skb on an unresolved multicast route queue or forward it after the
receive-side RCU section ends.

After the prefetched socket is destroyed, a later skb free invokes
sock_pfree() and dereferences the stale skb->sk. Orphan the skb before
each non-local multicast forwarding path. Local delivery retains the
original skb; the existing skb_clone() calls provide multicast forwarding
with a socket-free clone.
Published: 2026-09-11
Score: 7.8 High
EPSS: < 1% Very Low
KEV: No
Impact: Use‑after‑free leads to kernel crash
Action: Patch
AI Analysis

Impact

In Linux kernels, multicast packets may be handled with a socket that has been prefetched by BPF or UDP early demultiplexing. The code does not maintain a reference to that socket while the packet is processed; this is a reference counting flaw (CWE-825). If the socket the kernel later frees the packet buffer and dereferences a stale socket pointer in sock_pfree(), causing a use‑after‑free kernel crash.

Affected Systems

The vulnerability exists in all Linux kernel builds that contain the multicast forwarding logic with the buggy reference handling. This includes the mainline Linux kernels shipped by distributions as well as any custom or patched kernels that have not applied the official fix. No specific kernel release numbers are provided in the CVE record, so any kernel version that predates the patch and still contains the affected code paths is at risk.

Risk and Exploitability

The CVSS score of 5.9 denotes moderate severity, and the EPSS indicates a very low probability of exploitation. The vulnerability is not listed in the CISA KEV catalog. Because the trigger requires multicast traffic that is not locally deliverable, an attacker could send crafted multicast packets onto a vulnerable interface. The lack of public exploitation examples suggests that exploitation may be difficult, but the risk remains if malicious multicast traffic can be injected by a remote or local attacker.

Generated by OpenCVE AI on September 13, 2026 at 04:55 UTC.

Remediation

No vendor fix or workaround currently provided.

OpenCVE Recommended Actions

  • Apply the kernel patch that fixes reference handling in multicast forwarding.
  • If the patch or rate‑limit multicast traffic on vulnerable interfaces using firewall or routing rules.
  • Review and disable BPF programs that use bpf_sk_assign for early socket binding until a safe implementation is available.

Generated by OpenCVE AI on September 13, 2026 at 04:55 UTC.

Tracking

Sign in to view the affected projects.

Advisories

No advisories yet.

History

Sun, 13 Sep 2026 06:45:00 +0000

Type Values Removed Values Added
Metrics cvssV3_1

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

cvssV3_1

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


Sat, 12 Sep 2026 00:15:00 +0000

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

None

cvssV3_1

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

threat_severity

Important


Fri, 11 Sep 2026 23:45:00 +0000

Type Values Removed Values Added
Description In the Linux kernel, the following vulnerability has been resolved: ip: orphan prefetched skbs before multicast forwarding IPv4 and IPv6 input preserve an skb->sk association installed by bpf_sk_assign() so that local delivery can use the selected socket under RCU. Both address families can also prefetch a socket in UDP early demux. In both paths (BPF and UDP early demux) a reference is not guaranteed to be held on the socket. When a multicast packet is not locally deliverable, IPv6 hands the original skb to ip6_mr_input(). IPv4's ip_mr_input() similarly keeps the original skb when local delivery is not needed. Either path can put the skb on an unresolved multicast route queue or forward it after the receive-side RCU section ends. After the prefetched socket is destroyed, a later skb free invokes sock_pfree() and dereferences the stale skb->sk. Orphan the skb before each non-local multicast forwarding path. Local delivery retains the original skb; the existing skb_clone() calls provide multicast forwarding with a socket-free clone.
Title ip: orphan prefetched skbs before multicast forwarding
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-09-13T06:31:05.172Z

Reserved: 2026-09-11T19:38:34.725Z

Link: CVE-2026-89564

cve-icon Vulnrichment

No data.

cve-icon NVD

Status : Received

Published: 2026-09-11T20:19:40.313

Modified: 2026-09-13T07:17:22.713

Link: CVE-2026-89564

cve-icon Redhat

Severity : Important

Publid Date: 2026-09-11T19:44:35Z

Links: CVE-2026-89564 - Bugzilla

cve-icon OpenCVE Enrichment

Updated: 2026-09-13T05:00:12Z

Weaknesses
  • CWE-825

    Expired Pointer Dereference