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

目标: 1000 元 · 已筹: 1336

100%

CVE-2024-40925— Linux kernel 安全漏洞

CVSS 7.8 · High EPSS 0.30% · P22

影响版本矩阵 8

厂商产品版本范围状态
LinuxLinux81ada09cc25e4bf2de7d2951925fb409338a545d< fe1e395563ccb051e9dbd8fa99859f5caaad2e71affected
81ada09cc25e4bf2de7d2951925fb409338a545d< 87907bd69721a8506618a954d41a1de3040e88aaaffected
81ada09cc25e4bf2de7d2951925fb409338a545d< d0321c812d89c5910d8da8e4b10c891c6b96ff70affected
6.6affected
< 6.6unaffected
6.6.35≤ 6.6.*unaffected
6.9.6≤ 6.9.*unaffected
6.10≤ *unaffected
获取后续新漏洞提醒登录后订阅

一、 漏洞 CVE-2024-40925 基础信息

漏洞信息

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

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

Vulnerability Title
block: fix request.queuelist usage in flush
来源: CVE Program / CVE List V5
Vulnerability Description
In the Linux kernel, the following vulnerability has been resolved: block: fix request.queuelist usage in flush Friedrich Weber reported a kernel crash problem and bisected to commit 81ada09cc25e ("blk-flush: reuse rq queuelist in flush state machine"). The root cause is that we use "list_move_tail(&rq->queuelist, pending)" in the PREFLUSH/POSTFLUSH sequences. But rq->queuelist.next == xxx since it's popped out from plug->cached_rq in __blk_mq_alloc_requests_batch(). We don't initialize its queuelist just for this first request, although the queuelist of all later popped requests will be initialized. Fix it by changing to use "list_add_tail(&rq->queuelist, pending)" so rq->queuelist doesn't need to be initialized. It should be ok since rq can't be on any list when PREFLUSH or POSTFLUSH, has no move actually. Please note the commit 81ada09cc25e ("blk-flush: reuse rq queuelist in flush state machine") also has another requirement that no drivers would touch rq->queuelist after blk_mq_end_request() since we will reuse it to add rq to the post-flush pending list in POSTFLUSH. If this is not true, we will have to revert that commit IMHO. This updated version adds "list_del_init(&rq->queuelist)" in flush rq callback since the dm layer may submit request of a weird invalid format (REQ_FSEQ_PREFLUSH | REQ_FSEQ_POSTFLUSH), which causes double list_add if without this "list_del_init(&rq->queuelist)". The weird invalid format problem should be fixed in dm layer.
来源: CVE Program / CVE List V5
CVSS Information
CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H
来源: 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 存在安全漏洞,该漏洞源于 block 组件在处理请求队列列表时存在问题。
来源: 中国国家信息安全漏洞库 CNNVD
CVSS Information
N/A
来源: 中国国家信息安全漏洞库 CNNVD
Vulnerability Type
N/A
来源: 中国国家信息安全漏洞库 CNNVD

受影响产品

厂商产品影响版本CPE订阅
LinuxLinux 81ada09cc25e4bf2de7d2951925fb409338a545d ~ fe1e395563ccb051e9dbd8fa99859f5caaad2e71 -
LinuxLinux 6.6 -

二、漏洞 CVE-2024-40925 的公开POC

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

未找到公开 POC。

登录以生成 AI POC

三、漏洞 CVE-2024-40925 的情报信息

登录查看更多情报信息。

CVE-2024-40925 其他参考 (3)

同批安全公告 · Linux · 2024-07-12 · 共 122 条

CVE-2024-409999.8 CRITICALLinux kernel 安全漏洞
CVE-2024-409079.8 CRITICALLinux kernel 安全漏洞
CVE-2024-409239.8 CRITICALLinux kernel 安全漏洞
CVE-2024-409839.8 CRITICALLinux kernel 安全漏洞
CVE-2024-409379.8 CRITICALLinux kernel 安全漏洞
CVE-2024-409108.8 HIGHLinux kernel 安全漏洞
CVE-2024-409118.8 HIGHLinux kernel 安全漏洞
CVE-2024-409418.1 HIGHLinux kernel 安全漏洞
CVE-2024-409537.9 HIGHLinux kernel 安全漏洞
CVE-2024-409567.8 HIGHLinux kernel 安全漏洞
CVE-2024-409187.8 HIGHLinux kernel 安全漏洞
CVE-2024-409247.8 HIGHLinux kernel 安全漏洞
CVE-2024-409437.8 HIGHLinux kernel 安全漏洞
CVE-2024-409477.8 HIGHLinux kernel 安全漏洞
CVE-2024-409497.8 HIGHLinux kernel 安全漏洞
CVE-2024-409907.8 HIGHLinux kernel 安全漏洞
CVE-2024-409867.8 HIGHLinux kernel 安全漏洞
CVE-2024-409897.8 HIGHLinux kernel 安全漏洞
CVE-2024-409847.8 HIGHLinux kernel 安全漏洞
CVE-2024-409917.8 HIGHLinux kernel 安全漏洞

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

IV. Related Vulnerabilities

V. Comments for CVE-2024-40925

暂无评论


发表评论