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

目标: 1000 元 · 已筹: 1336

100%

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

AI 预测 7.5 利用难度: 困难 EPSS 0.17% · P7

影响版本矩阵 16

厂商产品版本范围状态
LinuxLinux4a9d8bdee368de78ace8b36da4eb2186afea162d< e563f59395981fcd69d130761290929806e728d6affected
4a9d8bdee368de78ace8b36da4eb2186afea162d< dc84036c173cff6a432d9ab926298850b1d2a659affected
4a9d8bdee368de78ace8b36da4eb2186afea162d< d7b04b40ac8e6d814e35202a0e1568809b818295affected
4a9d8bdee368de78ace8b36da4eb2186afea162d< 99da896614d17e8a84aeb2b2d464ac046cc8633daffected
4a9d8bdee368de78ace8b36da4eb2186afea162d< 8b0bb145d3bc264360f525c9717653be3522e528affected
4a9d8bdee368de78ace8b36da4eb2186afea162d< 9ac63333d600732a56b35ee1fa46836da671eb50affected
4a9d8bdee368de78ace8b36da4eb2186afea162d< 5037b342825df7094a4906d1e2a9674baab50cb2affected
3.11affected
… +8 条更多
获取后续新漏洞提醒登录后订阅

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

漏洞信息

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

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

Vulnerability Title
btrfs: fix deadlock in wait_current_trans() due to ignored transaction type
来源: 美国国家漏洞数据库 NVD
Vulnerability Description
In the Linux kernel, the following vulnerability has been resolved: btrfs: fix deadlock in wait_current_trans() due to ignored transaction type When wait_current_trans() is called during start_transaction(), it currently waits for a blocked transaction without considering whether the given transaction type actually needs to wait for that particular transaction state. The btrfs_blocked_trans_types[] array already defines which transaction types should wait for which transaction states, but this check was missing in wait_current_trans(). This can lead to a deadlock scenario involving two transactions and pending ordered extents: 1. Transaction A is in TRANS_STATE_COMMIT_DOING state 2. A worker processing an ordered extent calls start_transaction() with TRANS_JOIN 3. join_transaction() returns -EBUSY because Transaction A is in TRANS_STATE_COMMIT_DOING 4. Transaction A moves to TRANS_STATE_UNBLOCKED and completes 5. A new Transaction B is created (TRANS_STATE_RUNNING) 6. The ordered extent from step 2 is added to Transaction B's pending ordered extents 7. Transaction B immediately starts commit by another task and enters TRANS_STATE_COMMIT_START 8. The worker finally reaches wait_current_trans(), sees Transaction B in TRANS_STATE_COMMIT_START (a blocked state), and waits unconditionally 9. However, TRANS_JOIN should NOT wait for TRANS_STATE_COMMIT_START according to btrfs_blocked_trans_types[] 10. Transaction B is waiting for pending ordered extents to complete 11. Deadlock: Transaction B waits for ordered extent, ordered extent waits for Transaction B This can be illustrated by the following call stacks: CPU0 CPU1 btrfs_finish_ordered_io() start_transaction(TRANS_JOIN) join_transaction() # -EBUSY (Transaction A is # TRANS_STATE_COMMIT_DOING) # Transaction A completes # Transaction B created # ordered extent added to # Transaction B's pending list btrfs_commit_transaction() # Transaction B enters # TRANS_STATE_COMMIT_START # waiting for pending ordered # extents wait_current_trans() # waits for Transaction B # (should not wait!) Task bstore_kv_sync in btrfs_commit_transaction waiting for ordered extents: __schedule+0x2e7/0x8a0 schedule+0x64/0xe0 btrfs_commit_transaction+0xbf7/0xda0 [btrfs] btrfs_sync_file+0x342/0x4d0 [btrfs] __x64_sys_fdatasync+0x4b/0x80 do_syscall_64+0x33/0x40 entry_SYSCALL_64_after_hwframe+0x44/0xa9 Task kworker in wait_current_trans waiting for transaction commit: Workqueue: btrfs-syno_nocow btrfs_work_helper [btrfs] __schedule+0x2e7/0x8a0 schedule+0x64/0xe0 wait_current_trans+0xb0/0x110 [btrfs] start_transaction+0x346/0x5b0 [btrfs] btrfs_finish_ordered_io.isra.0+0x49b/0x9c0 [btrfs] btrfs_work_helper+0xe8/0x350 [btrfs] process_one_work+0x1d3/0x3c0 worker_thread+0x4d/0x3e0 kthread+0x12d/0x150 ret_from_fork+0x1f/0x30 Fix this by passing the transaction type to wait_current_trans() and checking btrfs_blocked_trans_types[cur_trans->state] against the given type before deciding to wait. This ensures that transaction types which are allowed to join during certain blocked states will not unnecessarily wait and cause deadlocks.
来源: 美国国家漏洞数据库 NVD
CVSS Information
N/A
来源: 美国国家漏洞数据库 NVD
Vulnerability Type
N/A
来源: 美国国家漏洞数据库 NVD
Vulnerability Title
Linux kernel 安全漏洞
来源: 中国国家信息安全漏洞库 CNNVD
Vulnerability Description
Linux kernel是美国Linux基金会的开源操作系统Linux所使用的内核。 Linux kernel存在安全漏洞,该漏洞源于wait_current_trans函数因忽略事务类型可能导致死锁。
来源: 中国国家信息安全漏洞库 CNNVD
CVSS Information
N/A
来源: 中国国家信息安全漏洞库 CNNVD
Vulnerability Type
N/A
来源: 中国国家信息安全漏洞库 CNNVD

受影响产品

厂商产品影响版本CPE订阅
LinuxLinux 4a9d8bdee368de78ace8b36da4eb2186afea162d ~ e563f59395981fcd69d130761290929806e728d6 -
LinuxLinux 3.11 -

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

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

未找到公开 POC。

登录以生成 AI POC

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

登录查看更多情报信息。

同批安全公告 · Linux · 2026-02-04 · 共 79 条

CVE-2026-230988.8 HIGHLinux kernel 安全漏洞
CVE-2026-230777.8 HIGHLinux kernel 安全漏洞
CVE-2026-230747.8 HIGHLinux kernel 安全漏洞
CVE-2026-231037.8 HIGHLinux kernel 安全漏洞
CVE-2026-230667.8 HIGHLinux kernel 安全漏洞
CVE-2026-231057.8 HIGHLinux kernel 安全漏洞
CVE-2026-230957.5 HIGHLinux kernel 安全漏洞
CVE-2026-23067Linux kernel 安全漏洞
CVE-2026-23065Linux kernel 安全漏洞
CVE-2026-23064Linux kernel 安全漏洞
CVE-2026-23063Linux kernel 安全漏洞
CVE-2026-23062Linux kernel 安全漏洞
CVE-2026-23058Linux kernel 安全漏洞
CVE-2026-23057Linux kernel 安全漏洞
CVE-2026-23056Linux kernel 安全漏洞
CVE-2025-71199Linux kernel 安全漏洞
CVE-2025-71198Linux kernel 安全漏洞
CVE-2025-71197Linux kernel 安全漏洞
CVE-2026-23055Linux kernel 安全漏洞
CVE-2026-23059Linux kernel 安全漏洞

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

IV. Related Vulnerabilities

V. Comments for CVE-2025-71194

暂无评论


发表评论