目标达成 感谢每一位支持者 — 我们达成了 100% 目标!

目标: 1000 元 · 已筹: 1336

100%

CVE-2025-21634— Linux kernel 安全漏洞

一分钟漏洞结论

影响对象
Linux Linux
利用判断
尚无明确在野利用证据,仍需结合暴露面评估
建议动作
优先检查厂商安全公告和参考链接中的修复版本;无法立即升级时,限制受影响服务暴露并加强监测。

Linux kernel是美国Linux基金会的开源操作系统Linux所使用的内核。 Linux kernel存在安全漏洞,该漏洞源于在cpuset_write_resmask函数中,kernfs_break_active_protection可能会在并发操作时导致警告。

AI 预测 5.5 利用难度: 中等 EPSS 0.14% · P4

可能的 ATT&CK 技术 1 AI

T1562

影响版本矩阵 6

厂商产品 版本范围状态
Linux Linux 76bb5ab8f6e3e7bebdcefec4146ff305e7d0b465< 11cb1d643a74665a4e14749414f48f82cbc15c64 affected
76bb5ab8f6e3e7bebdcefec4146ff305e7d0b465< 3cb97a927fffe443e1e7e8eddbfebfdb062e86ed affected
3.16 affected
< 3.16 unaffected
6.12.10≤ 6.12.* unaffected
6.13≤ * unaffected
获取后续新漏洞提醒 登录后订阅

一、 漏洞 CVE-2025-21634 基础信息

漏洞信息

对漏洞内容有疑问?看看神龙的深度分析是否有帮助!
查看神龙十问 ↗

尽管我们使用了先进的大模型技术,但其输出仍可能包含不准确或过时的信息。神龙努力确保数据的准确性,但请您根据实际情况进行核实和判断。

Vulnerability Title
cgroup/cpuset: remove kernfs active break
来源: CVE Program / CVE List V5
Vulnerability Description
In the Linux kernel, the following vulnerability has been resolved: cgroup/cpuset: remove kernfs active break A warning was found: WARNING: CPU: 10 PID: 3486953 at fs/kernfs/file.c:828 CPU: 10 PID: 3486953 Comm: rmdir Kdump: loaded Tainted: G RIP: 0010:kernfs_should_drain_open_files+0x1a1/0x1b0 RSP: 0018:ffff8881107ef9e0 EFLAGS: 00010202 RAX: 0000000080000002 RBX: ffff888154738c00 RCX: dffffc0000000000 RDX: 0000000000000007 RSI: 0000000000000004 RDI: ffff888154738c04 RBP: ffff888154738c04 R08: ffffffffaf27fa15 R09: ffffed102a8e7180 R10: ffff888154738c07 R11: 0000000000000000 R12: ffff888154738c08 R13: ffff888750f8c000 R14: ffff888750f8c0e8 R15: ffff888154738ca0 FS: 00007f84cd0be740(0000) GS:ffff8887ddc00000(0000) knlGS:0000000000000000 CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033 CR2: 0000555f9fbe00c8 CR3: 0000000153eec001 CR4: 0000000000370ee0 DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000 DR3: 0000000000000000 DR6: 00000000fffe0ff0 DR7: 0000000000000400 Call Trace: kernfs_drain+0x15e/0x2f0 __kernfs_remove+0x165/0x300 kernfs_remove_by_name_ns+0x7b/0xc0 cgroup_rm_file+0x154/0x1c0 cgroup_addrm_files+0x1c2/0x1f0 css_clear_dir+0x77/0x110 kill_css+0x4c/0x1b0 cgroup_destroy_locked+0x194/0x380 cgroup_rmdir+0x2a/0x140 It can be explained by: rmdir echo 1 > cpuset.cpus kernfs_fop_write_iter // active=0 cgroup_rm_file kernfs_remove_by_name_ns kernfs_get_active // active=1 __kernfs_remove // active=0x80000002 kernfs_drain cpuset_write_resmask wait_event //waiting (active == 0x80000001) kernfs_break_active_protection // active = 0x80000001 // continue kernfs_unbreak_active_protection // active = 0x80000002 ... kernfs_should_drain_open_files // warning occurs kernfs_put_active This warning is caused by 'kernfs_break_active_protection' when it is writing to cpuset.cpus, and the cgroup is removed concurrently. The commit 3a5a6d0c2b03 ("cpuset: don't nest cgroup_mutex inside get_online_cpus()") made cpuset_hotplug_workfn asynchronous, This change involves calling flush_work(), which can create a multiple processes circular locking dependency that involve cgroup_mutex, potentially leading to a deadlock. To avoid deadlock. the commit 76bb5ab8f6e3 ("cpuset: break kernfs active protection in cpuset_write_resmask()") added 'kernfs_break_active_protection' in the cpuset_write_resmask. This could lead to this warning. After the commit 2125c0034c5d ("cgroup/cpuset: Make cpuset hotplug processing synchronous"), the cpuset_write_resmask no longer needs to wait the hotplug to finish, which means that concurrent hotplug and cpuset operations are no longer possible. Therefore, the deadlock doesn't exist anymore and it does not have to 'break active protection' now. To fix this warning, just remove kernfs_break_active_protection operation in the 'cpuset_write_resmask'.
来源: CVE Program / CVE List V5
CVSS Information
N/A
来源: CVE Program / CVE List V5
Vulnerability Type
N/A
来源: CVE Program / CVE List V5
Vulnerability Title
Linux kernel 安全漏洞
来源: 中国国家信息安全漏洞库 CNNVD
Vulnerability Description
Linux kernel是美国Linux基金会的开源操作系统Linux所使用的内核。 Linux kernel存在安全漏洞,该漏洞源于在cpuset_write_resmask函数中,kernfs_break_active_protection可能会在并发操作时导致警告。
来源: 中国国家信息安全漏洞库 CNNVD
CVSS Information
N/A
来源: 中国国家信息安全漏洞库 CNNVD
Vulnerability Type
N/A
来源: 中国国家信息安全漏洞库 CNNVD

受影响产品

厂商 产品 影响版本 CPE 订阅
Linux Linux 76bb5ab8f6e3e7bebdcefec4146ff305e7d0b465 ~ 11cb1d643a74665a4e14749414f48f82cbc15c64 -
Linux Linux 3.16 -

二、漏洞 CVE-2025-21634 的公开POC

# POC 描述 源链接 神龙链接
AI 生成 POC 高级

未找到公开 POC。

登录以生成 AI POC

三、漏洞 CVE-2025-21634 的情报信息

登录查看更多情报信息。

CVE-2025-21634 补丁与修复 (2)

同批安全公告 · Linux · 2025-01-19 · 共 47 条

CVE-2024-57929 7.8 HIGH Linux kernel 安全漏洞
CVE-2025-21631 7.8 HIGH Linux kernel 安全漏洞
CVE-2025-21652 7.8 HIGH Linux kernel 安全漏洞
CVE-2024-57918 7.8 HIGH Linux kernel 安全漏洞
CVE-2024-57921 7.8 HIGH Linux kernel 安全漏洞
CVE-2024-57926 7.8 HIGH Linux kernel 安全漏洞
CVE-2025-21646 7.5 HIGH Linux kernel 安全漏洞
CVE-2025-21647 7.3 HIGH Linux kernel 安全漏洞
CVE-2025-21637 7.1 HIGH Linux kernel 安全漏洞
CVE-2025-21650 7.1 HIGH Linux kernel 安全漏洞
CVE-2025-21640 7.1 HIGH Linux kernel 安全漏洞
CVE-2025-21638 7.1 HIGH Linux kernel 安全漏洞
CVE-2024-57927 Linux kernel 安全漏洞
CVE-2024-57925 Linux kernel 安全漏洞
CVE-2024-57914 Linux kernel 安全漏洞
CVE-2024-57913 Linux kernel 安全漏洞
CVE-2024-57911 Linux kernel 安全漏洞
CVE-2024-57910 Linux kernel 安全漏洞
CVE-2024-57916 Linux kernel 安全漏洞
CVE-2024-57912 Linux kernel 安全漏洞

显示前 20 条,共 47 条。 查看全部 &rarr; →

IV. Related Vulnerabilities

V. Comments for CVE-2025-21634

暂无评论


发表评论