CVE-2025-37860: sfc: fix NULL dereferences in ef100_process_design_param()
In the Linux kernel, the following vulnerability has been resolved:
sfc: fix NULL dereferences in ef100_process_design_param()
Since cited commit, ef100_probe_main() and hence also
ef100_check_design_params() run before efx->net_dev is created;
consequently, we cannot netif_set_tso_max_size() or _segs() at this
point.
Move those netif calls to ef100_probe_netdev(), and also replace
netif_err within the design params code with pci_err.
Security readout for executives and security teams
Plain-English summary
CVE-2025-37860 is a Linux kernel availability issue in the sfc network driver path. A NULL pointer dereference can occur because code tries to use the network device before it is created. The published impact is denial of service, not data theft or privilege escalation.
Executive priority
Treat as moderate priority. The business risk is service disruption on affected Linux hosts, not confirmed compromise. Patch through normal kernel maintenance, with faster handling for infrastructure that relies on the affected driver path.
Technical view
The flaw is CWE-476 in ef100_process_design_param(). ef100_probe_main() and ef100_check_design_params() can run before efx->net_dev exists, making netif_set_tso_max_size() and netif_set_tso_max_segs() unsafe at that point. Stable fixes move those calls to ef100_probe_netdev() and replace netif_err with pci_err in design-parameter handling.
Likely exposure
Exposure appears limited to Linux systems running affected kernel builds with the affected sfc ef100 driver code path present. The bundle lists Linux 6.x affected versions but does not provide distribution-specific package names, hardware requirements, or complete version-range semantics.
Exploitation context
The CVSS vector is local, low complexity, low privileges, no user interaction, with high availability impact. KEV is false in the source bundle, and no cited source reports active exploitation. Evidence supports denial-of-service risk only.
Researcher notes
Source evidence is narrow and kernel-specific. The fix rationale identifies an initialization-order bug around efx->net_dev lifetime. The bundle does not include exploit reports, distro advisories, hardware mapping, or precise affected-version range logic beyond the listed Linux entries.
Mitigation direction
Update to a kernel build containing the referenced stable fixes.
Check distribution vendor advisories for fixed kernel package availability.
Prioritize systems that load or depend on the sfc driver path.
Do not deploy affected kernel builds to relevant network-driver hosts.
Track remediation through normal kernel patch management.
Validation and detection
Inventory Linux kernel versions against the affected versions in the CVE bundle.
Confirm whether the sfc driver is present or loaded on target systems.
Verify installed kernels include one of the referenced stable commits or vendor backports.
Run existing regression tests for network availability after kernel updates.
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.