In the Linux kernel, the following vulnerability has been resolved:
net: fec: handle page_pool_dev_alloc_pages error
The fec_enet_update_cbd function calls page_pool_dev_alloc_pages but did
not handle the case when it returned NULL. There was a WARN_ON(!new_page)
but it would still proceed to use the NULL pointer and then crash.
This case does seem somewhat rare but when the system is under memory
pressure it can happen. One case where I can duplicate this with some
frequency is when writing over a smbd share to a SATA HDD attached to an
imx6q.
Setting /proc/sys/vm/min_free_kbytes to higher values also seems to solve
the problem for my test case. But it still seems wrong that the fec driver
ignores the memory allocation error and can crash.
This commit handles the allocation error by dropping the current packet.
Security readout for executives and security teams
Plain-English summary
A Linux Ethernet driver can crash the system when memory is scarce because it continues after a page allocation fails. The impact is loss of availability, not disclosed data theft or modification. The source describes the condition as rare but reproducible during heavy storage and network activity on an i.MX6Q system.
Executive priority
Prioritize affected embedded or operational systems where an unexpected reboot disrupts essential services. Patch during the next expedited maintenance window, sooner for memory-constrained or historically unstable devices. Internet exposure alone does not prove exploitability; asset-specific driver usage and kernel provenance should drive urgency.
Technical view
The Linux FEC Ethernet driver’s fec_enet_update_cbd function failed to stop when page_pool_dev_alloc_pages returned NULL. It warned, dereferenced the NULL pointer, and could crash the kernel. The published correction handles the allocation failure by dropping the current packet. This is CWE-476 with CVSS 3.1 score 7.5 for availability impact.
Likely exposure
Exposure is most likely on Linux systems using the FEC Ethernet driver, particularly memory-constrained embedded platforms under pressure. The supplied record identifies affected Linux versions including 6.1, 6.1.167, 6.6.74, 6.12.11, and 6.13, but its version data is ambiguous; verify exact vendor kernel builds.
Exploitation context
The supplied record does not list this CVE in KEV, and no provided source establishes active exploitation. Triggering requires the vulnerable FEC path alongside a failed page allocation. Although the CVSS vector marks network reachability, the bundle does not demonstrate reliable remote attacker control of the necessary memory-pressure condition.
Researcher notes
The failure is a NULL-pointer dereference following an unchecked page-pool allocation error. The disclosed reproducer context involved writing through an SMB Direct share to SATA storage on i.MX6Q under memory pressure. The bundle supports denial of service only. Exact affected ranges and downstream backports require vendor-specific confirmation.
Mitigation direction
Apply a vendor-supported kernel containing the referenced stable fix.
Generated from the cited source records. This long-tail analysis has not been individually reviewed by a named human.
Potential ATT&CK relevance
Conservative CVE-to-ATT&CK context
These mappings and lookup hints may be relevant to the vulnerability behavior, CWE, affected product, or exposure path. Glexia-inferred context is not an official MITRE, ATT&CK, CWE, or CVE Program mapping.
ATT&CK lookup starting points
Use these exact CWE pages and searches to review the Glexia ATT&CK library from this CVE's weakness and description context.
cwe · low confidence lookup
CWE-476: Exact CWE lookup
Use the exact CWE identifier as the starting point before reviewing related ATT&CK behavior. Open the exact CWE lookup page first, then review the ATT&CK searches from that MITRE weakness context. This is a Glexia lookup hint, not an official ATT&CK mapping.
These fields come from the CVE record and ADP containers, not from Glexia's Take. They preserve time-varying source decisions such as CISA SSVC, KEV status, CVSS metrics, and provider references.
We collect every scored CVSS vector available in the official CNA and ADP containers. When more than one version is present, the table keeps the source vectors side by side instead of collapsing them into the highest score.
CWE links open Glexia weakness intelligence pages with official CWE context, developer remediation guidance, and related CVE mappings.
CWE-476 · source CWE mapping
NULL Pointer Dereference
NULL Pointer Dereference represents a recurring weakness pattern that can create exploitable paths when design, validation, or implementation controls are missing.