CVE-2025-39953
Severity CVSS v4.0:
Pending analysis
Type:
Unavailable / Other
Publication date:
04/10/2025
Last modified:
23/01/2026
Description
In the Linux kernel, the following vulnerability has been resolved:<br />
<br />
cgroup: split cgroup_destroy_wq into 3 workqueues<br />
<br />
A hung task can occur during [1] LTP cgroup testing when repeatedly<br />
mounting/unmounting perf_event and net_prio controllers with<br />
systemd.unified_cgroup_hierarchy=1. The hang manifests in<br />
cgroup_lock_and_drain_offline() during root destruction.<br />
<br />
Related case:<br />
cgroup_fj_function_perf_event cgroup_fj_function.sh perf_event<br />
cgroup_fj_function_net_prio cgroup_fj_function.sh net_prio<br />
<br />
Call Trace:<br />
cgroup_lock_and_drain_offline+0x14c/0x1e8<br />
cgroup_destroy_root+0x3c/0x2c0<br />
css_free_rwork_fn+0x248/0x338<br />
process_one_work+0x16c/0x3b8<br />
worker_thread+0x22c/0x3b0<br />
kthread+0xec/0x100<br />
ret_from_fork+0x10/0x20<br />
<br />
Root Cause:<br />
<br />
CPU0 CPU1<br />
mount perf_event umount net_prio<br />
cgroup1_get_tree cgroup_kill_sb<br />
rebind_subsystems // root destruction enqueues<br />
// cgroup_destroy_wq<br />
// kill all perf_event css<br />
// one perf_event css A is dying<br />
// css A offline enqueues cgroup_destroy_wq<br />
// root destruction will be executed first<br />
css_free_rwork_fn<br />
cgroup_destroy_root<br />
cgroup_lock_and_drain_offline<br />
// some perf descendants are dying<br />
// cgroup_destroy_wq max_active = 1<br />
// waiting for css A to die<br />
<br />
Problem scenario:<br />
1. CPU0 mounts perf_event (rebind_subsystems)<br />
2. CPU1 unmounts net_prio (cgroup_kill_sb), queuing root destruction work<br />
3. A dying perf_event CSS gets queued for offline after root destruction<br />
4. Root destruction waits for offline completion, but offline work is<br />
blocked behind root destruction in cgroup_destroy_wq (max_active=1)<br />
<br />
Solution:<br />
Split cgroup_destroy_wq into three dedicated workqueues:<br />
cgroup_offline_wq – Handles CSS offline operations<br />
cgroup_release_wq – Manages resource release<br />
cgroup_free_wq – Performs final memory deallocation<br />
<br />
This separation eliminates blocking in the CSS free path while waiting for<br />
offline operations to complete.<br />
<br />
[1] https://github.com/linux-test-project/ltp/blob/master/runtest/controllers
Impact
Base Score 3.x
5.50
Severity 3.x
MEDIUM
Vulnerable products and versions
| CPE | From | Up to |
|---|---|---|
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 4.6 (including) | 5.4.300 (excluding) |
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 5.5 (including) | 5.10.245 (excluding) |
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 5.11 (including) | 5.15.194 (excluding) |
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 5.16 (including) | 6.1.154 (excluding) |
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 6.2 (including) | 6.6.108 (excluding) |
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 6.7 (including) | 6.12.49 (excluding) |
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 6.13 (including) | 6.16.9 (excluding) |
| cpe:2.3:o:linux:linux_kernel:6.17:rc1:*:*:*:*:*:* | ||
| cpe:2.3:o:linux:linux_kernel:6.17:rc2:*:*:*:*:*:* | ||
| cpe:2.3:o:linux:linux_kernel:6.17:rc3:*:*:*:*:*:* | ||
| cpe:2.3:o:linux:linux_kernel:6.17:rc4:*:*:*:*:*:* | ||
| cpe:2.3:o:linux:linux_kernel:6.17:rc5:*:*:*:*:*:* | ||
| cpe:2.3:o:linux:linux_kernel:6.17:rc6:*:*:*:*:*:* |
To consult the complete list of CPE names with products and versions, see this page
References to Advisories, Solutions, and Tools
- https://git.kernel.org/stable/c/05e0b03447cf215ec384210441b34b7a3b16e8b0
- https://git.kernel.org/stable/c/4a1e3ec28e8062cd9f339aa6a942df9c5bcb6811
- https://git.kernel.org/stable/c/79f919a89c9d06816dbdbbd168fa41d27411a7f9
- https://git.kernel.org/stable/c/993049c9b1355c78918344a6403427d53f9ee700
- https://git.kernel.org/stable/c/a0c896bda7077aa5005473e2c5b3c27173313b4c
- https://git.kernel.org/stable/c/cabadd7fd15f97090f752fd22dd7f876a0dc3dc4
- https://git.kernel.org/stable/c/ded4d207a3209a834b6831ceec7f39b934c74802
- https://git.kernel.org/stable/c/f2795d1b92506e3adf52a298f7181032a1525e04



