一、漏洞信息
漏洞编号:CVE-2024-57937
漏洞归属组件:kernel
漏洞归属的版本:4.19.140,4.19.194,4.19.90,5.10.0,6.1.19,6.4.0,6.6.0
CVSS V3.0分值:
BaseScore:5.5 Medium
Vector:CVSS:3.0/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H
漏洞简述:
In the Linux kernel, the following vulnerability has been resolved:mm: reinstate ability to map write-sealed memfd mappings read-onlyPatch series mm: reinstate ability to map write-sealed memfd mappingsread-only .In commit 158978945f31 ( mm: perform the mapping_map_writable() checkafter call_mmap() ) (and preceding changes in the same series) it becamepossible to mmap() F_SEAL_WRITE sealed memfd mappings read-only.Commit 5de195060b2e ( mm: resolve faulty mmap_region() error pathbehaviour ) unintentionally undid this logic by moving themapping_map_writable() check before the shmem_mmap() hook is invoked,thereby regressing this change.This series reworks how we both permit write-sealed mappings being mappedread-only and disallow mprotect() from undoing the write-seal, fixing thisregression.We also add a regression test to ensure that we do not accidentallyregress this in future.Thanks to Julian Orth for reporting this regression.This patch (of 2):In commit 158978945f31 ( mm: perform the mapping_map_writable() checkafter call_mmap() ) (and preceding changes in the same series) it becamepossible to mmap() F_SEAL_WRITE sealed memfd mappings read-only.This was previously unnecessarily disallowed, despite the man pagedocumentation indicating that it would be, thereby limiting the usefulnessof F_SEAL_WRITE logic.We fixed this by adapting logic that existed for the F_SEAL_FUTURE_WRITEseal (one which disallows future writes to the memfd) to also be used forF_SEAL_WRITE.For background - the F_SEAL_FUTURE_WRITE seal clears VM_MAYWRITE for aread-only mapping to disallow mprotect() from overriding the seal - anoperation performed by seal_check_write(), invoked from shmem_mmap(), thef_op->mmap() hook used by shmem mappings.By extending this to F_SEAL_WRITE and critically - checkingmapping_map_writable() to determine if we may map the memfd AFTER weinvoke shmem_mmap() - the desired logic becomes possible. This is becausemapping_map_writable() explicitly checks for VM_MAYWRITE, which we willhave cleared.Commit 5de195060b2e ( mm: resolve faulty mmap_region() error pathbehaviour ) unintentionally undid this logic by moving themapping_map_writable() check before the shmem_mmap() hook is invoked,thereby regressing this change.We reinstate this functionality by moving the check out of shmem_mmap()and instead performing it in do_mmap() at the point at which VMA flags arebeing determined, which seems in any case to be a more appropriate placein which to make this determination.In order to achieve this we rework memfd seal logic to allow us access tothis information using existing logic and eliminate the clearing ofVM_MAYWRITE from seal_check_write() which we are performing in do_mmap()instead.
漏洞公开时间:2025-01-21 20:15:27
漏洞创建时间:2025-01-24 03:09:10
漏洞详情参考链接:
https://nvd.nist.gov/vuln/detail/CVE-2024-57937
漏洞分析指导链接:
https://gitee.com/openeuler/cve-manager/blob/master/cve-vulner-manager/doc/md/manual.md
漏洞数据来源:
openBrain开源漏洞感知系统
漏洞补丁信息:
无
二、漏洞分析结构反馈
影响性分析说明:
openEuler评分:
受影响版本排查(受影响/不受影响):
1.master:
2.openEuler-20.03-LTS-SP4(4.19.90):
3.openEuler-22.03-LTS-SP3(5.10.0):
4.openEuler-22.03-LTS-SP4(5.10.0):
5.openEuler-24.03-LTS(6.6.0):
6.openEuler-24.03-LTS-Next(6.6.0):
7.openEuler-24.03-LTS-SP1(6.6.0):
修复是否涉及abi变化(是/否):
1.master:
2.openEuler-20.03-LTS-SP4(4.19.90):
3.openEuler-22.03-LTS-SP3(5.10.0):
4.openEuler-22.03-LTS-SP4(5.10.0):
5.openEuler-24.03-LTS(6.6.0):
6.openEuler-24.03-LTS-Next(6.6.0):
7.openEuler-24.03-LTS-SP1(6.6.0):
原因说明:
1.master:
2.openEuler-20.03-LTS-SP4(4.19.90):
3.openEuler-22.03-LTS-SP3(5.10.0):
4.openEuler-22.03-LTS-SP4(5.10.0):
5.openEuler-24.03-LTS(6.6.0):
6.openEuler-24.03-LTS-Next(6.6.0):
7.openEuler-24.03-LTS-SP1(6.6.0):
@yangyingliang ,@jiaoff ,@guohaocs2c ,@hanjun-guo ,@woqidaideshi ,@newbeats ,@zhangyi089 ,@colyli ,@thundertown ,@htforge ,@chiqijun ,@lengchao ,@zhujianwei001 ,@kylin-mayukun ,@wangxiongfeng ,@wkfxxx ,@SuperSix173 ,@jentlestea ,@oskernel0719 ,@gasonchen
issue处理注意事项:
1. 当前issue受影响的分支提交pr时, 须在pr描述中填写当前issue编号进行关联, 否则无法关闭当前issue;
2. 模板内容需要填写完整, 无论是受影响或者不受影响都需要填写完整内容,未引入的分支不需要填写, 否则无法关闭当前issue;
3. 以下为模板中需要填写完整的内容, 请复制到评论区回复, 注: 内容的标题名称(影响性分析说明, openEuler评分, 受影响版本排查(受影响/不受影响), 修复是否涉及abi变化(是/否), 原因说明)不能省略,省略后cve-manager将无法正常解析填写内容.
影响性分析说明:
openEuler评分: (评分和向量)
受影响版本排查(受影响/不受影响):
1.master:
2.openEuler-20.03-LTS-SP4(4.19.90):
3.openEuler-22.03-LTS-SP3(5.10.0):
4.openEuler-22.03-LTS-SP4(5.10.0):
5.openEuler-24.03-LTS(6.6.0):
6.openEuler-24.03-LTS-Next(6.6.0):
7.openEuler-24.03-LTS-SP1(6.6.0):
修复是否涉及abi变化(是/否):
1.master:
2.openEuler-20.03-LTS-SP4(4.19.90):
3.openEuler-22.03-LTS-SP3(5.10.0):
4.openEuler-22.03-LTS-SP4(5.10.0):
5.openEuler-24.03-LTS(6.6.0):
6.openEuler-24.03-LTS-Next(6.6.0):
7.openEuler-24.03-LTS-SP1(6.6.0):
原因说明:
1.master:
2.openEuler-20.03-LTS-SP4(4.19.90):
3.openEuler-22.03-LTS-SP3(5.10.0):
4.openEuler-22.03-LTS-SP4(5.10.0):
5.openEuler-24.03-LTS(6.6.0):
6.openEuler-24.03-LTS-Next(6.6.0):
7.openEuler-24.03-LTS-SP1(6.6.0):
原因说明填写请参考下方表格(注意:版本是否受影响和版本的原因说明必须对应,例如master版本分支受影响,那原因说明只能是受影响对应的原因之一!):
分支状态 | 原因说明 |
---|---|
受影响 | 正常修复 |
受影响 | 暂不修复-漏洞仍在分析中 |
受影响 | 暂不修复-暂无解决方案或补丁 |
受影响 | 暂不修复-待升级版本修复 |
受影响 | 不修复-超出修复范围 |
受影响 | 不修复-特殊原因导致不再修复 |
不受影响 | 不受影响-组件不存在 |
不受影响 | 不受影响-已有内置的内联控制或缓解措施 |
不受影响 | 不受影响-漏洞代码不能被攻击者触发 |
不受影响 | 不受影响-漏洞代码不在执行路径 |
不受影响 | 不受影响-漏洞代码不存在 |
issue处理具体操作请参考:
https://gitee.com/openeuler/cve-manager/blob/master/cve-vulner-manager/doc/md/manual.md
pr关联issue具体操作请参考:
https://gitee.com/help/articles/4142
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。
参考网址 | 关联pr | 状态 | 补丁链接 |
---|---|---|---|
https://nvd.nist.gov/vuln/detail/CVE-2024-57937 | None | None | https://git.kernel.org/stable/c/464770df46095e6967334d77113972960f7ef1fa https://git.kernel.org/stable/c/8ec396d05d1b737c87311fb7311f753b02c2a6b1 |
https://ubuntu.com/security/CVE-2024-57937 | None | None | https://git.kernel.org/stable/c/464770df46095e6967334d77113972960f7ef1fa https://discourse.ubuntu.com/c/project https://git.kernel.org/linus/5de195060b2e251a835f622759550e6202167641 https://git.kernel.org/linus/8ec396d05d1b737c87311fb7311f753b02c2a6b1 https://git.kernel.org/stable/c/8ec396d05d1b737c87311fb7311f753b02c2a6b1 |
https://www.opencve.io/cve/CVE-2024-57937 | None | None | https://git.kernel.org/stable/c/464770df46095e6967334d77113972960f7ef1fa https://git.kernel.org/stable/c/8ec396d05d1b737c87311fb7311f753b02c2a6b1 |
https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2024-57937 | |||
https://security-tracker.debian.org/tracker/CVE-2024-57937 |
说明:补丁链接仅供初步排查参考,实际可用性请人工再次确认,补丁下载验证可使用CVE补丁工具。
若补丁不准确,烦请在此issue下评论 '/report-patch 参考网址 补丁链接1,补丁链接2' 反馈正确信息,便于我们不断优化工具,不胜感激。
如 /report-patch https://security-tracker.debian.org/tracker/CVE-2021-3997 https://github.com/systemd/systemd/commit/5b1cf7a9be37e20133c0208005274ce4a5b5c6a1
登录 后才可以发表评论