CVE-2025-21932: mm: abort vma_modify() on merge out of memory failure
In the Linux kernel, the following vulnerability has been resolved:
mm: abort vma_modify() on merge out of memory failure
The remainder of vma_modify() relies upon the vmg state remaining pristine
after a merge attempt.
Usually this is the case, however in the one edge case scenario of a merge
attempt failing not due to the specified range being unmergeable, but
rather due to an out of memory error arising when attempting to commit the
merge, this assumption becomes untrue.
This results in vmg->start, end being modified, and thus the proceeding
attempts to split the VMA will be done with invalid start/end values.
Thankfully, it is likely practically impossible for us to hit this in
reality, as it would require a maple tree node pre-allocation failure that
would likely never happen due to it being 'too small to fail', i.e. the
kernel would simply keep retrying reclaim until it succeeded.
However, this scenario remains theoretically possible, and what we are
doing here is wrong so we must correct it.
The safest option is, when this scenario occurs, to simply give up the
operation. If we cannot allocate memory to merge, then we cannot allocate
memory to split either (perhaps moreso!).
Any scenario where this would be happening would be under very extreme
(likely fatal) memory pressure, so it's best we give up early.
So there is no doubt it is appropriate to simply bail out in this
scenario.
However, in general we must if at all possible never assume VMG state is
stable after a merge attempt, since merge operations update VMG fields.
As a result, additionally also make this clear by storing start, end in
local variables.
The issue was reported originally by syzkaller, and by Brad Spengler (via
an off-list discussion), and in both instances it manifested as a
triggering of the assert:
VM_WARN_ON_VMG(start >= end, vmg);
In vma_merge_existing_range().
It seems at least one scenario in which this is occurring is one in which
the merge being attempted is due to an madvise() across multiple VMAs
which looks like this:
start end
|<------>|
|----------|------|
| vma | next |
|----------|------|
When madvise_walk_vmas() is invoked, we first find vma in the above
(determining prev to be equal to vma as we are offset into vma), and then
enter the loop.
We determine the end of vma that forms part of the range we are
madvise()'ing by setting 'tmp' to this value:
/* Here vma->vm_start <= start < (end|vma->vm_end) */
tmp = vma->vm_end;
We then invoke the madvise() operation via visit(), letting prev get
updated to point to vma as part of the operation:
/* Here vma->vm_start <= start < tmp <= (end|vma->vm_end). */
error = visit(vma, &prev, start, tmp, arg);
Where the visit() function pointer in this instance is
madvise_vma_behavior().
As observed in syzkaller reports, it is ultimately madvise_update_vma()
that is invoked, calling vma_modify_flags_name() and vma_modify() in turn.
Then, in vma_modify(), we attempt the merge:
merged = vma_merge_existing_range(vmg);
if (merged)
return merged;
We invoke this with vmg->start, end set to start, tmp as such:
start tmp
|<--->|
|----------|------|
| vma | next |
|----------|------|
We find ourselves in the merge right scenario, but the one in which we
cannot remove the middle (we are offset into vma).
Here we have a special case where vmg->start, end get set to perhaps
unintuitive values - we intended to shrink the middle VMA and expand the
next.
This means vmg->start, end are set to... vma->vm_start, start.
Now the commit_merge() fails, and vmg->start, end are left like this.
This means we return to the rest of vma_modify() with vmg->start, end
(here denoted as start', end') set as:
start' end'
|<-->|
|----------|------|
| vma | next |
|----------|------|
So we now erroneously try to split accordingly. This is where the
unfortunate
---truncated---
Security readout for executives and security teams
Plain-English summary
A Linux kernel memory-management edge case can corrupt internal range calculations after a failed memory allocation. The source rates it High, but describes the triggering condition as theoretically possible and likely requiring extreme, potentially fatal memory pressure. Successful exploitation could affect confidentiality, integrity, and availability, although practical reachability appears very limited.
Executive priority
Schedule remediation through the normal high-severity kernel-update process, prioritizing multi-user and untrusted-workload systems. Emergency disruption is generally not justified by the supplied evidence because exploitation requires local access, high complexity, and an extreme memory condition. Escalate if vendor guidance or telemetry shows broader reachability, repeated assertions, or exploitation evidence.
Technical view
During vma_modify(), an out-of-memory failure while committing a VMA merge can leave the VMG start and end fields modified. Subsequent splitting may then use invalid boundaries, triggering a kernel warning and potentially unsafe memory behavior. The correction aborts the operation after merge allocation failure and preserves the original range in local variables. The supplied CVSS is 7.0, requiring local access, low privileges, and high complexity.
Likely exposure
Exposure is limited to Linux systems running affected kernel code. The bundle identifies versions 6.12, 6.12.19, 6.13.7, and 6.14 as affected, but its version data is ambiguous and may not reflect distribution backports. An attacker would require local low-privileged access and an unusually difficult memory-pressure condition. Confirm status with the operating-system vendor.
Exploitation context
The bundle does not identify active exploitation, and the CVE is not listed as KEV. The issue was found through syzkaller and private reporting. Its own description says practical triggering is likely nearly impossible because the small allocation should repeatedly reclaim memory until successful. Treat that assessment as reduced likelihood, not proof of non-exploitability.
Researcher notes
The failure path follows an unsuccessful commit_merge() after a merge-right transformation, leaving vmg->start and vmg->end unsuitable for later splits. A reported madvise() path spans adjacent VMAs and reaches vma_modify() through madvise_update_vma(). The observable assertion is VM_WARN_ON_VMG(start >= end, vmg) in vma_merge_existing_range(). The bundle is truncated, so exact affected-range interpretation and downstream backport coverage remain uncertain.
Mitigation direction
Apply a vendor-supported kernel update containing the correction.
Check distribution advisories because vendors may backport fixes without changing the upstream version.
Prioritize shared systems where untrusted users can execute local processes.
Restrict unnecessary local account and workload access until patch status is confirmed.
Validation and detection
Inventory running kernel versions across Linux hosts.
Compare each kernel package against its distribution vendor's CVE guidance.
Confirm the relevant stable fix is present directly or through a documented backport.
Review kernel logs for the cited VM_WARN_ON_VMG assertion; it indicates triggering, not confirmed exploitation.
Reboot updated systems and verify the patched kernel is running.
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-2025-21932 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
4Source 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.