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

net: ti: icssg-prueth: fix missing data copy and wrong recycle in ZC RX dispatch

emac_dispatch_skb_zc() allocates a new skb via napi_alloc_skb() but
never copies the packet data from the XDP buffer into it. The skb is
passed up the stack containing uninitialized heap memory instead of
the actual received packet, leaking kernel heap contents to userspace.

Copy the received packet data from the XDP buffer into the skb using
skb_copy_to_linear_data().

Additionally, remove the skb_mark_for_recycle() call since the skb is
backed by the NAPI page frag allocator, not page_pool. Marking a
non-page_pool skb for recycle causes the free path to return pages to
a page_pool that does not own them, corrupting page_pool state.

The non-ZC path (emac_rx_packet) does not have these issues because it
uses napi_build_skb() to wrap the existing page_pool page directly,
requiring no copy, and correctly marks for recycle since the page comes
from page_pool_dev_alloc_pages().
Published: 2026-05-01
Score: 9.8 Critical
EPSS: < 1% Very Low
KEV: No
Impact: n/a
Action: n/a
AI Analysis

Impact

The TI icssg-prueth driver for Linux implements a zero‑copy (ZC) receive path that allocates a socket buffer but fails to copy incoming packet data from the XDP buffer into the buffer before it is passed up the networking stack. As a result, the buffer contains uninitialized kernel heap memory that is exposed to user space, leaking kernel heap contents. Additionally, the driver incorrectly marks the buffer as recyclable with skb_mark_for_recycle, even though it is backed by a NAPI page fragment allocator rather than the page_pool. This mis‑recycling can corrupt page_pool state. The vulnerability is an information‑disclosure flaw due to a data‑copy oversight.

Affected Systems

All Linux kernel releases that include the TI icssg-prueth driver before the fix are vulnerable. No specific kernel version ranges are listed in the disclosure, so any build containing the unpatched driver is impacted.

Risk and Exploitability

The CVSS score of 9.8 reflects the severity of the flaw. The EPSS score of < 1% indicates a very low but non‑zero likelihood of exploitation, and the vulnerability is not yet listed in the CISA KEV catalog. The likely attack vector is inferred to involve sending crafted packets to the interface that employs the ZC receive path, requiring access to that network device—typically available to the local host or to an attacker who can transmit traffic to the interface. An attacker who successfully triggers the flaw can read arbitrary kernel heap data, which could aid subsequent privilege escalation or data tampering attacks. Because the exploit requires packet injection and specific driver state, widespread exploitation is considered low at this time, but the disclosure impact remains critical.

Generated by OpenCVE AI on May 8, 2026 at 20:57 UTC.

Remediation

No vendor fix or workaround currently provided.

OpenCVE Recommended Actions

  • Update the Linux kernel to a version that incorporates the commit correcting the missing data copy and removing the incorrect skb_mark_for_recycle call in the TI icssg-prueth driver.
  • If the kernel cannot be upgraded immediately, disable the TI icssg-prueth driver or block XDP traffic on the affected interface to prevent the data leak.
  • Reconfigure the interface to use the standard (non‑ZC) receive path, which correctly handles packet copies and recycling and does not expose uninitialized data.

Generated by OpenCVE AI on May 8, 2026 at 20:57 UTC.

Tracking

Sign in to view the affected projects.

Advisories

No advisories yet.

History

Fri, 08 May 2026 19:00:00 +0000

Type Values Removed Values Added
Weaknesses NVD-CWE-noinfo
CPEs cpe:2.3:o:linux:linux_kernel:7.0:rc1:*:*:*:*:*:*
cpe:2.3:o:linux:linux_kernel:7.0:rc2:*:*:*:*:*:*
cpe:2.3:o:linux:linux_kernel:7.0:rc3:*:*:*:*:*:*
cpe:2.3:o:linux:linux_kernel:7.0:rc4:*:*:*:*:*:*
cpe:2.3:o:linux:linux_kernel:7.0:rc5:*:*:*:*:*:*
cpe:2.3:o:linux:linux_kernel:7.0:rc6:*:*:*:*:*:*

Sun, 03 May 2026 06:30:00 +0000

Type Values Removed Values Added
Metrics cvssV3_1

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


Sat, 02 May 2026 00:15:00 +0000


Fri, 01 May 2026 14:45:00 +0000

Type Values Removed Values Added
Description In the Linux kernel, the following vulnerability has been resolved: net: ti: icssg-prueth: fix missing data copy and wrong recycle in ZC RX dispatch emac_dispatch_skb_zc() allocates a new skb via napi_alloc_skb() but never copies the packet data from the XDP buffer into it. The skb is passed up the stack containing uninitialized heap memory instead of the actual received packet, leaking kernel heap contents to userspace. Copy the received packet data from the XDP buffer into the skb using skb_copy_to_linear_data(). Additionally, remove the skb_mark_for_recycle() call since the skb is backed by the NAPI page frag allocator, not page_pool. Marking a non-page_pool skb for recycle causes the free path to return pages to a page_pool that does not own them, corrupting page_pool state. The non-ZC path (emac_rx_packet) does not have these issues because it uses napi_build_skb() to wrap the existing page_pool page directly, requiring no copy, and correctly marks for recycle since the page comes from page_pool_dev_alloc_pages().
Title net: ti: icssg-prueth: fix missing data copy and wrong recycle in ZC RX dispatch
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-05-11T22:16:32.221Z

Reserved: 2026-05-01T14:12:55.978Z

Link: CVE-2026-43039

cve-icon Vulnrichment

No data.

cve-icon NVD

Status : Analyzed

Published: 2026-05-01T15:16:50.000

Modified: 2026-05-08T18:48:10.430

Link: CVE-2026-43039

cve-icon Redhat

Severity :

Publid Date: 2026-05-01T00:00:00Z

Links: CVE-2026-43039 - Bugzilla

cve-icon OpenCVE Enrichment

Updated: 2026-05-08T21:00:10Z

Weaknesses