CVE-2026-64067: netfs: Fix missing barriers when accessing stream->subrequests locklessly
In the Linux kernel, the following vulnerability has been resolved:
netfs: Fix missing barriers when accessing stream->subrequests locklessly
The list of subrequests attached to stream->subrequests is accessed without
locks by netfs_collect_read_results() and netfs_collect_write_results(),
and then they access subreq->flags without taking a barrier after getting
the subreq pointer from the list. Relatedly, the functions that build the
list don't use any sort of write barrier when constructing the list to make
sure that the NETFS_SREQ_IN_PROGRESS flag is perceived to be set first if
no lock is taken.
Fix this by:
(1) Add a new list_add_tail_release() function that uses a release barrier
to set the pointer to the new member of the list.
(2) Add a new list_first_entry_or_null_acquire() function that uses an
acquire barrier to read the pointer to the first member in a list (or
return NULL).
(3) Use list_add_tail_release() when adding a subreq to ->subrequests.
(4) Use list_first_entry_or_null_acquire() when initially accessing the
front of the list (when an item is removed, the pointer to the new
front iterm is obtained under the same lock).
Security readout for executives and security teams
Plain-English summary
CVE-2026-64067 is a Linux kernel netfs flaw involving unsafe lockless access to request lists. The public record rates it critical with CVSS 9.8, but the provided sources do not describe real-world exploitation or a weaponized path. Organizations should prioritize kernel vendor updates and confirm whether their deployed kernels include the referenced stable fixes.
Executive priority
High priority. The score is critical and kernel-level impact could be severe, but current evidence does not show active exploitation. Drive rapid exposure assessment and patch planning through normal emergency kernel update channels.
Technical view
The issue is missing acquire/release memory barriers around stream->subrequests list operations. netfs_collect_read_results() and netfs_collect_write_results() can read subrequest pointers and flags locklessly, while list builders may publish entries before NETFS_SREQ_IN_PROGRESS is reliably visible. The fix adds release/acquire list helpers and uses them when adding or first reading subrequests.
Likely exposure
Exposure is likely limited to systems running affected Linux kernel versions with the vulnerable netfs implementation. The source bundle lists Linux as affected, but exact distribution package ranges, CPEs, and deployment conditions are incomplete.
Exploitation context
The CVE record gives a network, unauthenticated CVSS vector, but no cited source confirms active exploitation. KEV is false in the bundle. Treat exploitation details as unknown rather than proven.
Researcher notes
The key research question is whether missing memory barriers can produce exploitable state corruption in realistic netfs paths. Public data identifies the synchronization defect and stable fixes, but not proof-of-concept behavior, affected configurations, or distribution-specific status.
Mitigation direction
Apply Linux kernel updates that include the referenced stable fixes.
Check distribution vendor advisories for affected package versions and supported backports.
Prioritize internet-facing, multi-tenant, and sensitive Linux systems first.
If patching is delayed, follow vendor guidance for temporary risk reduction.
Validation and detection
Inventory Linux kernel versions across servers, appliances, containers hosts, and images.
Confirm whether deployed kernels include commits 293a4532c36f or b5782e2d462c.
Map distribution package versions to vendor advisories when available.
Check vulnerability scanners for CVE-2026-64067 coverage and false positives.
Track CISA KEV and vendor notices for exploitation status changes.
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.
cve · low confidence lookup
CVE-2026-64067 mapping review
Open the CVE-to-ATT&CK bridge for reviewed, inferred, or future official mappings tied to this CVE.
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.
1CVSS vectors
3Timeline events
0ADP providers
3Source links
CVSS vector scores
1 official score
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.