🛡️ CVE-2024-50200 — kernel

🟠 CVSS 7.8 — High ✅ No Known Exploit NVD
7.8
CVSS Score
0 Low4 Medium7 High9 Critical10

Description

maple_tree: correct tree corruption on spanning store

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

maple_tree: correct tree corruption on spanning store

Patch series "maple_tree: correct tree corruption on spanning store", v3.

There has been a nasty yet subtle maple tree corruption bug that appears

to have been in existence since the inception of the algorithm.

This bug seems far more likely to happen since commit f8d112a4e657

("mm/mmap: avoid zeroing vma tree in mmap_region()"), which is the point

at which reports started to be submitted concerning this bug.

We were made definitely aware of the bug thanks to the kind efforts of

Bert Karwatzki who helped enormously in my being able to track this down

and identify the cause of it.

The bug arises when an attempt is made to perform a spanning store across

two leaf nodes, where the right leaf node is the rightmost child of the

shared parent, AND the store completely consumes the right-mode node.

This results in mas_wr_spanning_store() mitakenly duplicating the new and

existing entries at the maximum pivot within the range, and thus maple

tree corruption.

The fix patch corrects this by detecting this scenario and disallowing the

mistaken duplicate copy.

The fix patch commit message goes into great detail as to how this occurs.

This series also includes a test which reliably reproduces the issue, and

asserts that the fix works correctly.

Bert has kindly tested the fix and confirmed it resolved his issues. Also

Mikhail Gavrilov kindly reported what appears to be precisely the same

bug, which this fix should also resolve.

This patch (of 2):

There has been a subtle bug present in the maple tree implementation from

its inception.

This arises from how stores are performed - when a store occurs, it will

overwrite overlapping ranges and adjust the tree as necessary to

accommodate this.

A range may always ultimately span two leaf nodes. In this instance we

walk the two leaf nodes, determine which elements are not overwritten to

the left and to the right of the start and end of the ranges respectively

and then rebalance the tree to contain these entries and the newly

inserted one.

This kind of store is dubbed a 'spanning store' and is implemented by

mas_wr_spanning_store().

In order to reach this stage, mas_store_gfp() invokes

mas_wr_preallocate(), mas_wr_store_type() and mas_wr_walk() in turn to

walk the tree and update the object (mas) to traverse to the location

where the write should be performed, determining its store type.

When a spanning store is required, this function returns false stopping at

the parent node which contains the target range, and mas_wr_store_type()

marks the mas->store_type as wr_spanning_store to denote this fact.

When we go to perform the store in mas_wr_spanning_store(), we first

determine the elements AFTER the END of the range we wish to store (that

is, to the right of the entry to be inserted) - we do this by walking to

the NEXT pivot in the tree (i.e. r_mas.last + 1), starting at the node we

have just determined contains the range over which we intend to write.

We then turn our attention to the entries to the left of the entry we are

inserting, whose state is represented by l_mas, and copy these into a 'big

node', which is a special node which contains enough slots to contain two

leaf node's worth of data.

We then copy the entry we wish to store immediately after this - the copy

and the insertion of the new entry is performed by mas_store_b_node().

After this we copy the elements to the right of the end of the range which

we are inserting, if we have not exceeded the length of the node (i.e.

r_mas.offset <= r_mas.end).

Herein lies the bug - under very specific circumstances, this logic can

break and corrupt the maple tree.

Consider the following tree:

Height

0 Root Node

/ \

pivot = 0xffff / \ pivot = ULONG_MAX

/

---truncated---

How this vulnerability can be exploited

This issue can be reached with local access to the system, attack complexity is low, an attacker needs low-level privileges on the target. No user interaction is required. The scope is unchanged, so the impact stays within the vulnerable component. Rated impact: confidentiality high, integrity high, availability high.

Affected software

CVE-2024-50200 is recorded against 2 packages.

  • kernel (from 6.7.0 up to 6.11.5)
  • linux-kernel

Timeline and source

Published on 8 November 2024 and last revised on 6 August 2026. No public exploit is currently recorded for this entry. A vendor advisory or fix has been published. Record sourced from NVD.

References

git.kernel.org (Web)
git.kernel.org (Web)
git.kernel.org (Web)
git.kernel.org (Web)
lists.debian.org (Web)
github.com (Advisory)
nvd.nist.gov (Advisory)
git.kernel.org (Package)

CVE-2024-50200 on other distributions

Each distribution ships its own build and its own fixed version. Pick the one you run:

Details

Severity High
CVSS Score 7.8
CVSS Vector CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H
CWE N/A
Public Exploit ✅ No
Source NVD
Published 2024-11-08
Updated 2026-08-12
Modified 2026-08-06

Affected Packages

Software From version Fixed in
kernel 6.7.0 6.11.5
linux-kernel

Similar Threats

Site Security Check

Is kernel part of your stack?

CVE-2024-50200 is rated CVSS 7.8 High. BotEraser scans your installation against known CVE records and tells you whether this vulnerability applies to the versions you actually run.

Scan My Site Free →

No credit card required  ·  Results in minutes

ⓘ Data Notice: The information presented above has been compiled from publicly available internet sources. Boteraser aggregates this data solely for informational purposes and does not independently classify, evaluate, or endorse any findings about the vulnerabilities listed. The accuracy and completeness of this information is the sole responsibility of the original publishers. Boteraser and its operators accept no liability for any decisions made based on this data.

Browse related advisories

All advisoriesCVECVE 2024