CVE-2025-38008
Severity CVSS v4.0:
Pending analysis
Type:
CWE-362
Concurrent Execution using Shared Resource with Improper Synchronization ('Race Condition')
Publication date:
18/06/2025
Last modified:
17/11/2025
Description
In the Linux kernel, the following vulnerability has been resolved:<br />
<br />
mm/page_alloc: fix race condition in unaccepted memory handling<br />
<br />
The page allocator tracks the number of zones that have unaccepted memory<br />
using static_branch_enc/dec() and uses that static branch in hot paths to<br />
determine if it needs to deal with unaccepted memory.<br />
<br />
Borislav and Thomas pointed out that the tracking is racy: operations on<br />
static_branch are not serialized against adding/removing unaccepted pages<br />
to/from the zone.<br />
<br />
Sanity checks inside static_branch machinery detects it:<br />
<br />
WARNING: CPU: 0 PID: 10 at kernel/jump_label.c:276 __static_key_slow_dec_cpuslocked+0x8e/0xa0<br />
<br />
The comment around the WARN() explains the problem:<br />
<br />
/*<br />
* Warn about the &#39;-1&#39; case though; since that means a<br />
* decrement is concurrent with a first (0->1) increment. IOW<br />
* people are trying to disable something that wasn&#39;t yet fully<br />
* enabled. This suggests an ordering problem on the user side.<br />
*/<br />
<br />
The effect of this static_branch optimization is only visible on<br />
microbenchmark.<br />
<br />
Instead of adding more complexity around it, remove it altogether.
Impact
Base Score 3.x
4.70
Severity 3.x
MEDIUM
Vulnerable products and versions
| CPE | From | Up to |
|---|---|---|
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 6.5 (including) | 6.6.92 (excluding) |
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 6.7 (including) | 6.12.30 (excluding) |
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 6.13 (including) | 6.14.8 (excluding) |
| cpe:2.3:o:linux:linux_kernel:6.15:rc1:*:*:*:*:*:* | ||
| cpe:2.3:o:linux:linux_kernel:6.15:rc2:*:*:*:*:*:* | ||
| cpe:2.3:o:linux:linux_kernel:6.15:rc3:*:*:*:*:*:* | ||
| cpe:2.3:o:linux:linux_kernel:6.15:rc4:*:*:*:*:*:* | ||
| cpe:2.3:o:linux:linux_kernel:6.15:rc5:*:*:*:*:*:* | ||
| cpe:2.3:o:linux:linux_kernel:6.15:rc6:*:*:*:*:*:* |
To consult the complete list of CPE names with products and versions, see this page



