Sign in
Sign up
Explore
Enterprise
Education
Search
Help
Terms of use
About Us
Explore
Enterprise
Education
Gitee Premium
Gitee AI
Sign in
Sign up
Fetch the repository succeeded.
Open Source
>
Other
>
Operation System
&&
Donate
Please sign in before you donate.
Cancel
Sign in
Scan WeChat QR to Pay
Cancel
Complete
Prompt
Switch to Alipay.
OK
Cancel
Watch
Unwatch
Watching
Releases Only
Ignoring
113
Star
72
Fork
313
src-openEuler
/
kernel
Code
Issues
1038
Pull Requests
38
Wiki
Insights
Pipelines
Service
JavaDoc
PHPDoc
Quality Analysis
Jenkins for Gitee
Tencent CloudBase
Tencent Cloud Serverless
悬镜安全
Aliyun SAE
Codeblitz
SBOM
Don’t show this again
Update failed. Please try again later!
Remove this flag
Content Risk Flag
This task is identified by
as the content contains sensitive information such as code security bugs, privacy leaks, etc., so it is only accessible to contributors of this repository.
CVE-2024-26895
Done
#I9HKEH
CVE和安全问题
openeuler-ci-bot
owner
Opened this issue
2024-04-17 21:02
一、漏洞信息 漏洞编号:[CVE-2024-26895](https://nvd.nist.gov/vuln/detail/CVE-2024-26895) 漏洞归属组件:[kernel](https://gitee.com/src-openeuler/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:7.8 High Vector:CVSS:3.0/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H 漏洞简述: In the Linux kernel, the following vulnerability has been resolved:wifi: wilc1000: prevent use-after-free on vif when cleaning up all interfaceswilc_netdev_cleanup currently triggers a KASAN warning, which can beobserved on interface registration error path, or simply byremoving the module/unbinding device from driver:echo spi0.1 > /sys/bus/spi/drivers/wilc1000_spi/unbind==================================================================BUG: KASAN: slab-use-after-free in wilc_netdev_cleanup+0x508/0x5ccRead of size 4 at addr c54d1ce8 by task sh/86CPU: 0 PID: 86 Comm: sh Not tainted 6.8.0-rc1+ #117Hardware name: Atmel SAMA5 unwind_backtrace from show_stack+0x18/0x1c show_stack from dump_stack_lvl+0x34/0x58 dump_stack_lvl from print_report+0x154/0x500 print_report from kasan_report+0xac/0xd8 kasan_report from wilc_netdev_cleanup+0x508/0x5cc wilc_netdev_cleanup from wilc_bus_remove+0xc8/0xec wilc_bus_remove from spi_remove+0x8c/0xac spi_remove from device_release_driver_internal+0x434/0x5f8 device_release_driver_internal from unbind_store+0xbc/0x108 unbind_store from kernfs_fop_write_iter+0x398/0x584 kernfs_fop_write_iter from vfs_write+0x728/0xf88 vfs_write from ksys_write+0x110/0x1e4 ksys_write from ret_fast_syscall+0x0/0x1c[...]Allocated by task 1: kasan_save_track+0x30/0x5c __kasan_kmalloc+0x8c/0x94 __kmalloc_node+0x1cc/0x3e4 kvmalloc_node+0x48/0x180 alloc_netdev_mqs+0x68/0x11dc alloc_etherdev_mqs+0x28/0x34 wilc_netdev_ifc_init+0x34/0x8ec wilc_cfg80211_init+0x690/0x910 wilc_bus_probe+0xe0/0x4a0 spi_probe+0x158/0x1b0 really_probe+0x270/0xdf4 __driver_probe_device+0x1dc/0x580 driver_probe_device+0x60/0x140 __driver_attach+0x228/0x5d4 bus_for_each_dev+0x13c/0x1a8 bus_add_driver+0x2a0/0x608 driver_register+0x24c/0x578 do_one_initcall+0x180/0x310 kernel_init_freeable+0x424/0x484 kernel_init+0x20/0x148 ret_from_fork+0x14/0x28Freed by task 86: kasan_save_track+0x30/0x5c kasan_save_free_info+0x38/0x58 __kasan_slab_free+0xe4/0x140 kfree+0xb0/0x238 device_release+0xc0/0x2a8 kobject_put+0x1d4/0x46c netdev_run_todo+0x8fc/0x11d0 wilc_netdev_cleanup+0x1e4/0x5cc wilc_bus_remove+0xc8/0xec spi_remove+0x8c/0xac device_release_driver_internal+0x434/0x5f8 unbind_store+0xbc/0x108 kernfs_fop_write_iter+0x398/0x584 vfs_write+0x728/0xf88 ksys_write+0x110/0x1e4 ret_fast_syscall+0x0/0x1c [...]David Mosberger-Tan initial investigation [1] showed that thisuse-after-free is due to netdevice unregistration during vif listtraversal. When unregistering a net device, since the needs_free_netdev hasbeen set to true during registration, the netdevice object is also freed,and as a consequence, the corresponding vif object too, since it isattached to it as private netdevice data. The next occurrence of the loopthen tries to access freed vif pointer to the list to move forward in thelist.Fix this use-after-free thanks to two mechanisms:- navigate in the list with list_for_each_entry_safe, which allows to safely modify the list as we go through each element. For each element, remove it from the list with list_del_rcu- make sure to wait for RCU grace period end after each vif removal to make sure it is safe to free the corresponding vif too (through unregister_netdev)Since we are in a RCU modifier path (not a reader path), and becausesuch path is expected not to be concurrent to any other modifier (we areusing the vif_mutex lock), we do not need to use RCU list API, that s whywe can benefit from list_for_each_entry_safe.[1] https://lore.kernel.org/linux-wireless/ab077dbe58b1ea5de0a3b2ca21f275a07af967d2.camel@egauge.net/ 漏洞公开时间:2024-04-17 19:15:10 漏洞创建时间:2024-04-17 13:02:28 漏洞详情参考链接: https://nvd.nist.gov/vuln/detail/CVE-2024-26895 <details> <summary>更多参考(点击展开)</summary> | 参考来源 | 参考链接 | 来源链接 | | ------- | -------- | -------- | | 416baaa9-dc9f-4396-8d5f-8c081fb06d67 | https://git.kernel.org/stable/c/24228dcf1d30c2231caa332be7d3090ac59fbfe9 | | | 416baaa9-dc9f-4396-8d5f-8c081fb06d67 | https://git.kernel.org/stable/c/3da9d32b7f4a1a9f7e4bb15bb82f2b2dd6719447 | | | 416baaa9-dc9f-4396-8d5f-8c081fb06d67 | https://git.kernel.org/stable/c/5956f4203b6cdd0755bbdd21b45f3933c7026208 | | | 416baaa9-dc9f-4396-8d5f-8c081fb06d67 | https://git.kernel.org/stable/c/73a2aa0aef86c2c07be5a2f42c9e6047e1a2f7bb | | | 416baaa9-dc9f-4396-8d5f-8c081fb06d67 | https://git.kernel.org/stable/c/a9545af2a533739ffb64d6c9a6fec6f13e2b505f | | | 416baaa9-dc9f-4396-8d5f-8c081fb06d67 | https://git.kernel.org/stable/c/cb5942b77c05d54310a0420cac12935e9b6aa21c | | | 416baaa9-dc9f-4396-8d5f-8c081fb06d67 | https://git.kernel.org/stable/c/fe20e3d56bc911408fc3c27a17c59e9d7885f7d1 | | | af854a3a-2127-422b-91ae-364da2661108 | https://git.kernel.org/stable/c/24228dcf1d30c2231caa332be7d3090ac59fbfe9 | | | af854a3a-2127-422b-91ae-364da2661108 | https://git.kernel.org/stable/c/3da9d32b7f4a1a9f7e4bb15bb82f2b2dd6719447 | | | af854a3a-2127-422b-91ae-364da2661108 | https://git.kernel.org/stable/c/5956f4203b6cdd0755bbdd21b45f3933c7026208 | | | af854a3a-2127-422b-91ae-364da2661108 | https://git.kernel.org/stable/c/73a2aa0aef86c2c07be5a2f42c9e6047e1a2f7bb | | | af854a3a-2127-422b-91ae-364da2661108 | https://git.kernel.org/stable/c/a9545af2a533739ffb64d6c9a6fec6f13e2b505f | | | af854a3a-2127-422b-91ae-364da2661108 | https://git.kernel.org/stable/c/cb5942b77c05d54310a0420cac12935e9b6aa21c | | | af854a3a-2127-422b-91ae-364da2661108 | https://git.kernel.org/stable/c/fe20e3d56bc911408fc3c27a17c59e9d7885f7d1 | | | af854a3a-2127-422b-91ae-364da2661108 | https://lists.debian.org/debian-lts-announce/2024/06/msg00017.html | | | suse_bugzilla | http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2024-26895 | https://bugzilla.suse.com/show_bug.cgi?id=1223197 | | suse_bugzilla | https://www.cve.org/CVERecord?id=CVE-2024-26895 | https://bugzilla.suse.com/show_bug.cgi?id=1223197 | | suse_bugzilla | https://git.kernel.org/stable/c/24228dcf1d30c2231caa332be7d3090ac59fbfe9 | https://bugzilla.suse.com/show_bug.cgi?id=1223197 | | suse_bugzilla | https://git.kernel.org/stable/c/3da9d32b7f4a1a9f7e4bb15bb82f2b2dd6719447 | https://bugzilla.suse.com/show_bug.cgi?id=1223197 | | suse_bugzilla | https://git.kernel.org/stable/c/5956f4203b6cdd0755bbdd21b45f3933c7026208 | https://bugzilla.suse.com/show_bug.cgi?id=1223197 | | suse_bugzilla | https://git.kernel.org/stable/c/73a2aa0aef86c2c07be5a2f42c9e6047e1a2f7bb | https://bugzilla.suse.com/show_bug.cgi?id=1223197 | | suse_bugzilla | https://git.kernel.org/stable/c/a9545af2a533739ffb64d6c9a6fec6f13e2b505f | https://bugzilla.suse.com/show_bug.cgi?id=1223197 | | suse_bugzilla | https://git.kernel.org/stable/c/cb5942b77c05d54310a0420cac12935e9b6aa21c | https://bugzilla.suse.com/show_bug.cgi?id=1223197 | | suse_bugzilla | https://git.kernel.org/stable/c/fe20e3d56bc911408fc3c27a17c59e9d7885f7d1 | https://bugzilla.suse.com/show_bug.cgi?id=1223197 | | suse_bugzilla | https://git.kernel.org/pub/scm/linux/security/vulns.git/plain/cve/published/2024/CVE-2024-26895.mbox | https://bugzilla.suse.com/show_bug.cgi?id=1223197 | | suse_bugzilla | https://bugzilla.redhat.com/show_bug.cgi?id=2275659 | https://bugzilla.suse.com/show_bug.cgi?id=1223197 | | ubuntu | https://www.cve.org/CVERecord?id=CVE-2024-26895 | https://ubuntu.com/security/CVE-2024-26895 | | ubuntu | https://git.kernel.org/linus/cb5942b77c05d54310a0420cac12935e9b6aa21c (6.9-rc1) | https://ubuntu.com/security/CVE-2024-26895 | | ubuntu | https://git.kernel.org/stable/c/5956f4203b6cdd0755bbdd21b45f3933c7026208 | https://ubuntu.com/security/CVE-2024-26895 | | ubuntu | https://git.kernel.org/stable/c/fe20e3d56bc911408fc3c27a17c59e9d7885f7d1 | https://ubuntu.com/security/CVE-2024-26895 | | ubuntu | https://git.kernel.org/stable/c/a9545af2a533739ffb64d6c9a6fec6f13e2b505f | https://ubuntu.com/security/CVE-2024-26895 | | ubuntu | https://git.kernel.org/stable/c/3da9d32b7f4a1a9f7e4bb15bb82f2b2dd6719447 | https://ubuntu.com/security/CVE-2024-26895 | | ubuntu | https://git.kernel.org/stable/c/24228dcf1d30c2231caa332be7d3090ac59fbfe9 | https://ubuntu.com/security/CVE-2024-26895 | | ubuntu | https://git.kernel.org/stable/c/73a2aa0aef86c2c07be5a2f42c9e6047e1a2f7bb | https://ubuntu.com/security/CVE-2024-26895 | | ubuntu | https://git.kernel.org/stable/c/cb5942b77c05d54310a0420cac12935e9b6aa21c | https://ubuntu.com/security/CVE-2024-26895 | | ubuntu | https://nvd.nist.gov/vuln/detail/CVE-2024-26895 | https://ubuntu.com/security/CVE-2024-26895 | | ubuntu | https://launchpad.net/bugs/cve/CVE-2024-26895 | https://ubuntu.com/security/CVE-2024-26895 | | ubuntu | https://security-tracker.debian.org/tracker/CVE-2024-26895 | https://ubuntu.com/security/CVE-2024-26895 | | debian | | https://security-tracker.debian.org/tracker/CVE-2024-26895 | | anolis | | https://anas.openanolis.cn/cves/detail/CVE-2024-26895 | | cve_search | | https://git.kernel.org/stable/c/5956f4203b6cdd0755bbdd21b45f3933c7026208 | | cve_search | | https://git.kernel.org/stable/c/fe20e3d56bc911408fc3c27a17c59e9d7885f7d1 | | cve_search | | https://git.kernel.org/stable/c/a9545af2a533739ffb64d6c9a6fec6f13e2b505f | | cve_search | | https://git.kernel.org/stable/c/3da9d32b7f4a1a9f7e4bb15bb82f2b2dd6719447 | | cve_search | | https://git.kernel.org/stable/c/24228dcf1d30c2231caa332be7d3090ac59fbfe9 | | cve_search | | https://git.kernel.org/stable/c/73a2aa0aef86c2c07be5a2f42c9e6047e1a2f7bb | | cve_search | | https://git.kernel.org/stable/c/cb5942b77c05d54310a0420cac12935e9b6aa21c | </details> 漏洞分析指导链接: https://gitee.com/openeuler/cve-manager/blob/master/cve-vulner-manager/doc/md/manual.md 漏洞数据来源: openBrain开源漏洞感知系统 漏洞补丁信息: <details> <summary>详情(点击展开)</summary> | 影响的包 | 修复版本 | 修复补丁 | 问题引入补丁 | 来源 | | ------- | -------- | ------- | -------- | --------- | | | | https://git.kernel.org/stable/c/24228dcf1d30c2231caa332be7d3090ac59fbfe9 | | nvd | | | | https://git.kernel.org/stable/c/3da9d32b7f4a1a9f7e4bb15bb82f2b2dd6719447 | | nvd | | | | https://git.kernel.org/stable/c/5956f4203b6cdd0755bbdd21b45f3933c7026208 | | nvd | | | | https://git.kernel.org/stable/c/73a2aa0aef86c2c07be5a2f42c9e6047e1a2f7bb | | nvd | | | | https://git.kernel.org/stable/c/a9545af2a533739ffb64d6c9a6fec6f13e2b505f | | nvd | | | | https://git.kernel.org/stable/c/cb5942b77c05d54310a0420cac12935e9b6aa21c | | nvd | | | | https://git.kernel.org/stable/c/fe20e3d56bc911408fc3c27a17c59e9d7885f7d1 | | nvd | | | | https://lists.debian.org/debian-lts-announce/2024/06/msg00017.html | | nvd | | linux | | https://git.kernel.org/linus/cb5942b77c05d54310a0420cac12935e9b6aa21c | https://git.kernel.org/linus/8399918f3056e1033f0f4c08eab437fb38d6f22d | ubuntu | </details> 二、漏洞分析结构反馈 影响性分析说明: Reserved. openEuler评分: 7.8 Vector:CVSS:3.0/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H 受影响版本排查(受影响/不受影响): 1.openEuler-22.03-LTS-SP3(5.10.0):受影响 2.openEuler-20.03-LTS-SP4(4.19.90):不受影响 3.openEuler-22.03-LTS-SP4(5.10.0):不受影响 4.master(6.6.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.openEuler-20.03-LTS-SP4(4.19.90):否 2.openEuler-22.03-LTS-SP1(5.10.0):否 3.openEuler-22.03-LTS-SP3(5.10.0):否 4.master(6.6.0):否 5.openEuler-24.03-LTS(6.6.0):否 6.openEuler-24.03-LTS-Next(6.6.0):否 7.openEuler-22.03-LTS-SP4(5.10.0):否 8.openEuler-24.03-LTS-SP1(6.6.0):否 原因说明: 1.openEuler-22.03-LTS-SP3(5.10.0):正常修复 2.master(6.6.0):不受影响-漏洞代码不能被攻击者触发 3.openEuler-24.03-LTS-Next(6.6.0):不受影响-漏洞代码不能被攻击者触发 4.openEuler-20.03-LTS-SP4(4.19.90):不受影响-漏洞代码不存在 5.openEuler-22.03-LTS-SP4(5.10.0):不受影响-漏洞代码不存在 6.openEuler-24.03-LTS(6.6.0):不受影响-漏洞代码不存在 7.openEuler-24.03-LTS-SP1(6.6.0):不受影响-漏洞代码不存在
一、漏洞信息 漏洞编号:[CVE-2024-26895](https://nvd.nist.gov/vuln/detail/CVE-2024-26895) 漏洞归属组件:[kernel](https://gitee.com/src-openeuler/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:7.8 High Vector:CVSS:3.0/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H 漏洞简述: In the Linux kernel, the following vulnerability has been resolved:wifi: wilc1000: prevent use-after-free on vif when cleaning up all interfaceswilc_netdev_cleanup currently triggers a KASAN warning, which can beobserved on interface registration error path, or simply byremoving the module/unbinding device from driver:echo spi0.1 > /sys/bus/spi/drivers/wilc1000_spi/unbind==================================================================BUG: KASAN: slab-use-after-free in wilc_netdev_cleanup+0x508/0x5ccRead of size 4 at addr c54d1ce8 by task sh/86CPU: 0 PID: 86 Comm: sh Not tainted 6.8.0-rc1+ #117Hardware name: Atmel SAMA5 unwind_backtrace from show_stack+0x18/0x1c show_stack from dump_stack_lvl+0x34/0x58 dump_stack_lvl from print_report+0x154/0x500 print_report from kasan_report+0xac/0xd8 kasan_report from wilc_netdev_cleanup+0x508/0x5cc wilc_netdev_cleanup from wilc_bus_remove+0xc8/0xec wilc_bus_remove from spi_remove+0x8c/0xac spi_remove from device_release_driver_internal+0x434/0x5f8 device_release_driver_internal from unbind_store+0xbc/0x108 unbind_store from kernfs_fop_write_iter+0x398/0x584 kernfs_fop_write_iter from vfs_write+0x728/0xf88 vfs_write from ksys_write+0x110/0x1e4 ksys_write from ret_fast_syscall+0x0/0x1c[...]Allocated by task 1: kasan_save_track+0x30/0x5c __kasan_kmalloc+0x8c/0x94 __kmalloc_node+0x1cc/0x3e4 kvmalloc_node+0x48/0x180 alloc_netdev_mqs+0x68/0x11dc alloc_etherdev_mqs+0x28/0x34 wilc_netdev_ifc_init+0x34/0x8ec wilc_cfg80211_init+0x690/0x910 wilc_bus_probe+0xe0/0x4a0 spi_probe+0x158/0x1b0 really_probe+0x270/0xdf4 __driver_probe_device+0x1dc/0x580 driver_probe_device+0x60/0x140 __driver_attach+0x228/0x5d4 bus_for_each_dev+0x13c/0x1a8 bus_add_driver+0x2a0/0x608 driver_register+0x24c/0x578 do_one_initcall+0x180/0x310 kernel_init_freeable+0x424/0x484 kernel_init+0x20/0x148 ret_from_fork+0x14/0x28Freed by task 86: kasan_save_track+0x30/0x5c kasan_save_free_info+0x38/0x58 __kasan_slab_free+0xe4/0x140 kfree+0xb0/0x238 device_release+0xc0/0x2a8 kobject_put+0x1d4/0x46c netdev_run_todo+0x8fc/0x11d0 wilc_netdev_cleanup+0x1e4/0x5cc wilc_bus_remove+0xc8/0xec spi_remove+0x8c/0xac device_release_driver_internal+0x434/0x5f8 unbind_store+0xbc/0x108 kernfs_fop_write_iter+0x398/0x584 vfs_write+0x728/0xf88 ksys_write+0x110/0x1e4 ret_fast_syscall+0x0/0x1c [...]David Mosberger-Tan initial investigation [1] showed that thisuse-after-free is due to netdevice unregistration during vif listtraversal. When unregistering a net device, since the needs_free_netdev hasbeen set to true during registration, the netdevice object is also freed,and as a consequence, the corresponding vif object too, since it isattached to it as private netdevice data. The next occurrence of the loopthen tries to access freed vif pointer to the list to move forward in thelist.Fix this use-after-free thanks to two mechanisms:- navigate in the list with list_for_each_entry_safe, which allows to safely modify the list as we go through each element. For each element, remove it from the list with list_del_rcu- make sure to wait for RCU grace period end after each vif removal to make sure it is safe to free the corresponding vif too (through unregister_netdev)Since we are in a RCU modifier path (not a reader path), and becausesuch path is expected not to be concurrent to any other modifier (we areusing the vif_mutex lock), we do not need to use RCU list API, that s whywe can benefit from list_for_each_entry_safe.[1] https://lore.kernel.org/linux-wireless/ab077dbe58b1ea5de0a3b2ca21f275a07af967d2.camel@egauge.net/ 漏洞公开时间:2024-04-17 19:15:10 漏洞创建时间:2024-04-17 13:02:28 漏洞详情参考链接: https://nvd.nist.gov/vuln/detail/CVE-2024-26895 <details> <summary>更多参考(点击展开)</summary> | 参考来源 | 参考链接 | 来源链接 | | ------- | -------- | -------- | | 416baaa9-dc9f-4396-8d5f-8c081fb06d67 | https://git.kernel.org/stable/c/24228dcf1d30c2231caa332be7d3090ac59fbfe9 | | | 416baaa9-dc9f-4396-8d5f-8c081fb06d67 | https://git.kernel.org/stable/c/3da9d32b7f4a1a9f7e4bb15bb82f2b2dd6719447 | | | 416baaa9-dc9f-4396-8d5f-8c081fb06d67 | https://git.kernel.org/stable/c/5956f4203b6cdd0755bbdd21b45f3933c7026208 | | | 416baaa9-dc9f-4396-8d5f-8c081fb06d67 | https://git.kernel.org/stable/c/73a2aa0aef86c2c07be5a2f42c9e6047e1a2f7bb | | | 416baaa9-dc9f-4396-8d5f-8c081fb06d67 | https://git.kernel.org/stable/c/a9545af2a533739ffb64d6c9a6fec6f13e2b505f | | | 416baaa9-dc9f-4396-8d5f-8c081fb06d67 | https://git.kernel.org/stable/c/cb5942b77c05d54310a0420cac12935e9b6aa21c | | | 416baaa9-dc9f-4396-8d5f-8c081fb06d67 | https://git.kernel.org/stable/c/fe20e3d56bc911408fc3c27a17c59e9d7885f7d1 | | | af854a3a-2127-422b-91ae-364da2661108 | https://git.kernel.org/stable/c/24228dcf1d30c2231caa332be7d3090ac59fbfe9 | | | af854a3a-2127-422b-91ae-364da2661108 | https://git.kernel.org/stable/c/3da9d32b7f4a1a9f7e4bb15bb82f2b2dd6719447 | | | af854a3a-2127-422b-91ae-364da2661108 | https://git.kernel.org/stable/c/5956f4203b6cdd0755bbdd21b45f3933c7026208 | | | af854a3a-2127-422b-91ae-364da2661108 | https://git.kernel.org/stable/c/73a2aa0aef86c2c07be5a2f42c9e6047e1a2f7bb | | | af854a3a-2127-422b-91ae-364da2661108 | https://git.kernel.org/stable/c/a9545af2a533739ffb64d6c9a6fec6f13e2b505f | | | af854a3a-2127-422b-91ae-364da2661108 | https://git.kernel.org/stable/c/cb5942b77c05d54310a0420cac12935e9b6aa21c | | | af854a3a-2127-422b-91ae-364da2661108 | https://git.kernel.org/stable/c/fe20e3d56bc911408fc3c27a17c59e9d7885f7d1 | | | af854a3a-2127-422b-91ae-364da2661108 | https://lists.debian.org/debian-lts-announce/2024/06/msg00017.html | | | suse_bugzilla | http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2024-26895 | https://bugzilla.suse.com/show_bug.cgi?id=1223197 | | suse_bugzilla | https://www.cve.org/CVERecord?id=CVE-2024-26895 | https://bugzilla.suse.com/show_bug.cgi?id=1223197 | | suse_bugzilla | https://git.kernel.org/stable/c/24228dcf1d30c2231caa332be7d3090ac59fbfe9 | https://bugzilla.suse.com/show_bug.cgi?id=1223197 | | suse_bugzilla | https://git.kernel.org/stable/c/3da9d32b7f4a1a9f7e4bb15bb82f2b2dd6719447 | https://bugzilla.suse.com/show_bug.cgi?id=1223197 | | suse_bugzilla | https://git.kernel.org/stable/c/5956f4203b6cdd0755bbdd21b45f3933c7026208 | https://bugzilla.suse.com/show_bug.cgi?id=1223197 | | suse_bugzilla | https://git.kernel.org/stable/c/73a2aa0aef86c2c07be5a2f42c9e6047e1a2f7bb | https://bugzilla.suse.com/show_bug.cgi?id=1223197 | | suse_bugzilla | https://git.kernel.org/stable/c/a9545af2a533739ffb64d6c9a6fec6f13e2b505f | https://bugzilla.suse.com/show_bug.cgi?id=1223197 | | suse_bugzilla | https://git.kernel.org/stable/c/cb5942b77c05d54310a0420cac12935e9b6aa21c | https://bugzilla.suse.com/show_bug.cgi?id=1223197 | | suse_bugzilla | https://git.kernel.org/stable/c/fe20e3d56bc911408fc3c27a17c59e9d7885f7d1 | https://bugzilla.suse.com/show_bug.cgi?id=1223197 | | suse_bugzilla | https://git.kernel.org/pub/scm/linux/security/vulns.git/plain/cve/published/2024/CVE-2024-26895.mbox | https://bugzilla.suse.com/show_bug.cgi?id=1223197 | | suse_bugzilla | https://bugzilla.redhat.com/show_bug.cgi?id=2275659 | https://bugzilla.suse.com/show_bug.cgi?id=1223197 | | ubuntu | https://www.cve.org/CVERecord?id=CVE-2024-26895 | https://ubuntu.com/security/CVE-2024-26895 | | ubuntu | https://git.kernel.org/linus/cb5942b77c05d54310a0420cac12935e9b6aa21c (6.9-rc1) | https://ubuntu.com/security/CVE-2024-26895 | | ubuntu | https://git.kernel.org/stable/c/5956f4203b6cdd0755bbdd21b45f3933c7026208 | https://ubuntu.com/security/CVE-2024-26895 | | ubuntu | https://git.kernel.org/stable/c/fe20e3d56bc911408fc3c27a17c59e9d7885f7d1 | https://ubuntu.com/security/CVE-2024-26895 | | ubuntu | https://git.kernel.org/stable/c/a9545af2a533739ffb64d6c9a6fec6f13e2b505f | https://ubuntu.com/security/CVE-2024-26895 | | ubuntu | https://git.kernel.org/stable/c/3da9d32b7f4a1a9f7e4bb15bb82f2b2dd6719447 | https://ubuntu.com/security/CVE-2024-26895 | | ubuntu | https://git.kernel.org/stable/c/24228dcf1d30c2231caa332be7d3090ac59fbfe9 | https://ubuntu.com/security/CVE-2024-26895 | | ubuntu | https://git.kernel.org/stable/c/73a2aa0aef86c2c07be5a2f42c9e6047e1a2f7bb | https://ubuntu.com/security/CVE-2024-26895 | | ubuntu | https://git.kernel.org/stable/c/cb5942b77c05d54310a0420cac12935e9b6aa21c | https://ubuntu.com/security/CVE-2024-26895 | | ubuntu | https://nvd.nist.gov/vuln/detail/CVE-2024-26895 | https://ubuntu.com/security/CVE-2024-26895 | | ubuntu | https://launchpad.net/bugs/cve/CVE-2024-26895 | https://ubuntu.com/security/CVE-2024-26895 | | ubuntu | https://security-tracker.debian.org/tracker/CVE-2024-26895 | https://ubuntu.com/security/CVE-2024-26895 | | debian | | https://security-tracker.debian.org/tracker/CVE-2024-26895 | | anolis | | https://anas.openanolis.cn/cves/detail/CVE-2024-26895 | | cve_search | | https://git.kernel.org/stable/c/5956f4203b6cdd0755bbdd21b45f3933c7026208 | | cve_search | | https://git.kernel.org/stable/c/fe20e3d56bc911408fc3c27a17c59e9d7885f7d1 | | cve_search | | https://git.kernel.org/stable/c/a9545af2a533739ffb64d6c9a6fec6f13e2b505f | | cve_search | | https://git.kernel.org/stable/c/3da9d32b7f4a1a9f7e4bb15bb82f2b2dd6719447 | | cve_search | | https://git.kernel.org/stable/c/24228dcf1d30c2231caa332be7d3090ac59fbfe9 | | cve_search | | https://git.kernel.org/stable/c/73a2aa0aef86c2c07be5a2f42c9e6047e1a2f7bb | | cve_search | | https://git.kernel.org/stable/c/cb5942b77c05d54310a0420cac12935e9b6aa21c | </details> 漏洞分析指导链接: https://gitee.com/openeuler/cve-manager/blob/master/cve-vulner-manager/doc/md/manual.md 漏洞数据来源: openBrain开源漏洞感知系统 漏洞补丁信息: <details> <summary>详情(点击展开)</summary> | 影响的包 | 修复版本 | 修复补丁 | 问题引入补丁 | 来源 | | ------- | -------- | ------- | -------- | --------- | | | | https://git.kernel.org/stable/c/24228dcf1d30c2231caa332be7d3090ac59fbfe9 | | nvd | | | | https://git.kernel.org/stable/c/3da9d32b7f4a1a9f7e4bb15bb82f2b2dd6719447 | | nvd | | | | https://git.kernel.org/stable/c/5956f4203b6cdd0755bbdd21b45f3933c7026208 | | nvd | | | | https://git.kernel.org/stable/c/73a2aa0aef86c2c07be5a2f42c9e6047e1a2f7bb | | nvd | | | | https://git.kernel.org/stable/c/a9545af2a533739ffb64d6c9a6fec6f13e2b505f | | nvd | | | | https://git.kernel.org/stable/c/cb5942b77c05d54310a0420cac12935e9b6aa21c | | nvd | | | | https://git.kernel.org/stable/c/fe20e3d56bc911408fc3c27a17c59e9d7885f7d1 | | nvd | | | | https://lists.debian.org/debian-lts-announce/2024/06/msg00017.html | | nvd | | linux | | https://git.kernel.org/linus/cb5942b77c05d54310a0420cac12935e9b6aa21c | https://git.kernel.org/linus/8399918f3056e1033f0f4c08eab437fb38d6f22d | ubuntu | </details> 二、漏洞分析结构反馈 影响性分析说明: Reserved. openEuler评分: 7.8 Vector:CVSS:3.0/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H 受影响版本排查(受影响/不受影响): 1.openEuler-22.03-LTS-SP3(5.10.0):受影响 2.openEuler-20.03-LTS-SP4(4.19.90):不受影响 3.openEuler-22.03-LTS-SP4(5.10.0):不受影响 4.master(6.6.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.openEuler-20.03-LTS-SP4(4.19.90):否 2.openEuler-22.03-LTS-SP1(5.10.0):否 3.openEuler-22.03-LTS-SP3(5.10.0):否 4.master(6.6.0):否 5.openEuler-24.03-LTS(6.6.0):否 6.openEuler-24.03-LTS-Next(6.6.0):否 7.openEuler-22.03-LTS-SP4(5.10.0):否 8.openEuler-24.03-LTS-SP1(6.6.0):否 原因说明: 1.openEuler-22.03-LTS-SP3(5.10.0):正常修复 2.master(6.6.0):不受影响-漏洞代码不能被攻击者触发 3.openEuler-24.03-LTS-Next(6.6.0):不受影响-漏洞代码不能被攻击者触发 4.openEuler-20.03-LTS-SP4(4.19.90):不受影响-漏洞代码不存在 5.openEuler-22.03-LTS-SP4(5.10.0):不受影响-漏洞代码不存在 6.openEuler-24.03-LTS(6.6.0):不受影响-漏洞代码不存在 7.openEuler-24.03-LTS-SP1(6.6.0):不受影响-漏洞代码不存在
Comments (
13
)
Sign in
to comment
Status
Done
Backlog
已挂起
Doing
Done
Declined
Assignees
Not set
Labels
CVE/FIXED
sig/Kernel
Not set
Projects
Unprojected
Unprojected
Pull Requests
None yet
None yet
Successfully merging a pull request will close this issue.
Branches
No related branch
Branches (37)
Tags (235)
master
openEuler-25.09
openEuler-24.03-LTS-SP2
openEuler-24.03-LTS-SP1
openEuler-24.03-LTS
openEuler-22.03-LTS-SP4
openEuler-22.03-LTS-SP3
openEuler-20.03-LTS-SP4
openEuler-24.03-LTS-Next
openEuler-25.03
openEuler-22.03-LTS-SP2
openEuler-22.03-LTS-SP1
openEuler-22.03-LTS-SP4-64KB
openEuler-24.09
openEuler-22.03-LTS-Next
openEuler-24.03-LTS-Loongarch
openEuler-22.03-LTS
openEuler-20.03-LTS-SP1
sync-pr1519-openEuler-24.03-LTS-to-openEuler-24.03-LTS-Next
sync-pr1486-master-to-openEuler-24.03-LTS-Next
loongarch-support
openEuler-20.03-LTS-SP3
sync-pr1314-openEuler-22.03-LTS-SP3-to-openEuler-22.03-LTS-Next
openEuler-23.09
openEuler-23.03
openEuler-22.03-LTS-LoongArch
openEuler-22.09
openEuler-22.09-HeXin
openEuler-20.03-LTS-SP2
openEuler-21.09
openEuler-20.03-LTS
openEuler-20.03-LTS-Next
openEuler-21.03
openEuler-20.09
openEuler-20.03-LTS-SP1-testing
openEuler1.0
openEuler1.0-base
openEuler-24.03-LTS-update-20250905
openEuler-20.03-LTS-SP4-update-20250905
openEuler-22.03-LTS-SP3-update-20250905
openEuler-22.03-LTS-SP4-update-20250905
openEuler-24.03-LTS-SP1-update-20250905
openEuler-24.03-LTS-SP2-update-20250905
openEuler-20.03-LTS-SP4-update-20250829
openEuler-22.03-LTS-SP4-update-20250829
openEuler-24.03-LTS-SP1-update-20250829
openEuler-24.03-LTS-update-20250829
openEuler-24.03-LTS-SP2-update-20250829
openEuler-22.03-LTS-SP3-update-20250822
openEuler-22.03-LTS-SP4-update-20250822
openEuler-24.03-LTS-update-20250822
openEuler-24.03-LTS-SP1-update-20250822
openEuler-24.03-LTS-SP2-update-20250822
openEuler-22.03-LTS-SP4-update-20250815
openEuler-22.03-LTS-SP3-update-20250815
openEuler-24.03-LTS-SP2-update-20250815
openEuler-20.03-LTS-SP4-update-20250815
openEuler-24.03-LTS-update-20250815
openEuler-24.03-LTS-SP1-update-20250815
openEuler-20.03-LTS-SP4-update-20250808
openEuler-22.03-LTS-SP3-update-20250808
openEuler-22.03-LTS-SP4-update-20250808
openEuler-24.03-LTS-update-20250808
openEuler-24.03-LTS-SP1-update-20250808
openEuler-24.03-LTS-SP2-update-20250808
openEuler-22.03-LTS-SP3-update-20250801
openEuler-22.03-LTS-SP4-update-20250801
openEuler-24.03-LTS-update-20250801
openEuler-24.03-LTS-SP1-update-20250801
openEuler-24.03-LTS-SP2-update-20250801
openEuler-20.03-LTS-SP4-update-20250725
openEuler-22.03-LTS-SP3-update-20250725
openEuler-22.03-LTS-SP4-update-20250725
openEuler-24.03-LTS-update-20250725
openEuler-24.03-LTS-SP1-update-20250725
openEuler-24.03-LTS-SP2-update-20250725
openEuler-20.03-LTS-SP4-update-20250718
openEuler-22.03-LTS-SP3-update-20250718
openEuler-22.03-LTS-SP4-update-20250718
openEuler-24.03-LTS-update-20250718
openEuler-24.03-LTS-SP1-update-20250718
openEuler-24.03-LTS-SP2-update-20250718
openEuler-20.03-LTS-SP4-update-20250711
openEuler-22.03-LTS-SP3-update-20250711
openEuler-22.03-LTS-SP4-update-20250711
openEuler-24.03-LTS-update-20250711
openEuler-24.03-LTS-SP1-update-20250711
openEuler-20.03-LTS-SP4-update-20250704
openEuler-22.03-LTS-SP3-update-20250704
openEuler-22.03-LTS-SP4-update-20250704
openEuler-24.03-LTS-update-20250704
openEuler-24.03-LTS-SP1-update-20250704
openEuler-20.03-LTS-SP4-update-20250627
openEuler-22.03-LTS-SP3-update-20250627
openEuler-22.03-LTS-SP4-update-20250627
openEuler-20.03-LTS-SP4-update-20250620
openEuler-22.03-LTS-SP3-update-20250620
openEuler-22.03-LTS-SP4-update-20250620
openEuler-24.03-LTS-update-20250620
openEuler-24.03-LTS-SP1-update-20250620
openEuler-24.03-LTS-SP2-release
openEuler-20.03-LTS-SP4-update-20250613
openEuler-22.03-LTS-SP3-update-20250613
openEuler-22.03-LTS-SP4-update-20250613
openEuler-24.03-LTS-update-20250613
openEuler-24.03-LTS-SP1-update-20250613
openEuler-20.03-LTS-SP4-update-20250606
openEuler-22.03-LTS-SP3-update-20250606
openEuler-22.03-LTS-SP4-update-20250606
openEuler-24.03-LTS-update-20250606
openEuler-24.03-LTS-SP1-update-20250606
openEuler-20.03-LTS-SP4-update-20250530
openEuler-22.03-LTS-SP3-update-20250530
openEuler-22.03-LTS-SP4-update-20250530
openEuler-24.03-LTS-update-20250530
openEuler-24.03-LTS-SP1-update-20250530
openEuler-20.03-LTS-SP4-update-20250523
openEuler-24.03-LTS-update-20250523
openEuler-24.03-LTS-SP1-update-20250523
openEuler-24.03-LTS-SP1-update-20250516
openEuler-24.03-LTS-update-20250516
openEuler-22.03-LTS-SP4-update-20250516
openEuler-22.03-LTS-SP3-update-20250516
openEuler-20.03-LTS-SP4-update-20250516
openEuler-24.03-LTS-SP1-update-20250509
openEuler-24.03-LTS-update-20250509
openEuler-22.03-LTS-SP4-update-20250509
openEuler-22.03-LTS-SP3-update-20250509
openEuler-20.03-LTS-SP4-update-20250509
openEuler-24.03-LTS-update-20250425
openEuler-22.03-LTS-SP3-update-20250425
openEuler-24.03-LTS-SP1-update-20250425
openEuler-24.03-LTS-SP1-update-20250428
openEuler-22.03-LTS-SP4-update-20250425
openEuler-20.03-LTS-SP4-update-20250425
openEuler-22.03-LTS-SP3-update-20250418
openEuler-22.03-LTS-SP4-update-20250418
openEuler-20.03-LTS-SP4-update-20250418
openEuler-22.03-LTS-SP3-update-20250411
openEuler-22.03-LTS-SP4-update-20250411
openEuler-20.03-LTS-SP4-update-20250411
openEuler-20.03-LTS-SP4-update-20250403
openEuler-24.03-LTS-SP1-update-20250403
openEuler-24.03-LTS-update-20250403
openEuler-25.03-release
openEuler-20.03-LTS-SP4-update-20250329
openEuler-22.03-LTS-SP4-update-20250329
openEuler-22.03-LTS-SP3-update-20250329
openEuler-24.03-LTS-SP1-update-20250329
openEuler-24.03-LTS-update-20250329
openEuler-24.03-LTS-update-20250321
openEuler-24.03-LTS-SP1-update-20250321
openEuler-20.03-LTS-SP4-update-20250321
openEuler-24.03-LTS-update-20250314
openEuler-24.03-LTS-SP1-update-20250314
openEuler-22.03-LTS-SP3-update-20250314
openEuler-22.03-LTS-SP4-update-20250314
openEuler-20.03-LTS-SP4-update-20250314
openEuler-24.03-LTS-update-20250307
openEuler-24.03-LTS-SP1-update-20250307
openEuler-22.03-LTS-SP3-update-20250307
openEuler-22.03-LTS-SP4-update-20250307
openEuler-20.03-LTS-SP4-update-20250307
openEuler-24.03-LTS-update-20250228
openEuler-24.03-LTS-SP1-update-20250228
openEuler-22.03-LTS-SP3-update-20250228
openEuler-22.03-LTS-SP4-update-20250228
openEuler-20.03-LTS-SP4-update-20250228
openEuler-24.03-LTS-SP1-update-20250221
openEuler-24.03-LTS-update-20250221
openEuler-22.03-LTS-SP4-update-20250221
openEuler-22.03-LTS-SP3-update-20250221
openEuler-20.03-LTS-SP4-update-20250221
openEuler-24.03-LTS-update-20250214
openEuler-24.03-LTS-SP1-update-20250214
openEuler-22.03-LTS-SP4-update-20250214
openEuler-22.03-LTS-SP3-update-20250214
openEuler-20.03-LTS-SP4-update-20250214
openEuler-24.03-LTS-update-20250208
openEuler-20.03-LTS-SP4-update-20250208
openEuler-22.03-LTS-SP3-update-20250208
openEuler-22.03-LTS-SP4-update-20250208
openEuler-24.03-LTS-SP1-update-20250208
openEuler-24.03-LTS-SP1-update-20250124
openEuler-22.03-LTS-SP4-update-20250124
openEuler-22.03-LTS-SP3-update-20250124
openEuler-20.03-LTS-SP4-update-20250124
openEuler-24.03-LTS-update-20250124
openEuler-22.03-LTS-SP3-update-20250117
openEuler-22.03-LTS-SP4-update-20250117
openEuler-20.03-LTS-SP4-update-20250117
openEuler-24.03-LTS-update-20250110
openEuler-24.03-LTS-SP1-update-20250110
openEuler-22.03-LTS-SP1-update-20250110
openEuler-22.03-LTS-SP3-update-20250110
openEuler-20.03-LTS-SP4-update-20250110
openEuler-22.03-LTS-SP4-update-20250110
openEuler-22.03-LTS-SP4-update-20250103
openEuler-22.03-LTS-SP3-update-20250103
openEuler-22.03-LTS-SP1-update-20250103
openEuler-20.03-LTS-SP4-update-20250103
openEuler-24.03-LTS-SP1-release
openEuler-24.03-LTS-update-20241227
openEuler-22.03-LTS-SP3-update-20241227
openEuler-22.03-LTS-SP4-update-20241227
openEuler-20.03-LTS-SP4-update-20241227
openEuler-22.03-LTS-SP4-update-20241220
openEuler-22.03-LTS-SP3-update-20241220
openEuler-20.03-LTS-SP4-update-20241220
openEuler-24.03-LTS-update-20241213
openEuler-22.03-LTS-SP4-update-20241213
openEuler-22.03-LTS-SP3-update-20241213
openEuler-22.03-LTS-SP1-update-20241213
openEuler-20.03-LTS-SP4-update-20241213
openEuler-24.03-LTS-update-20241206
openEuler-22.03-LTS-SP4-update-20241206
openEuler-22.03-LTS-SP3-update-20241206
openEuler-22.03-LTS-SP1-update-20241206
openEuler-20.03-LTS-SP4-update-20241206
openEuler-20.03-LTS-SP4-update-20241129
openEuler-22.03-LTS-SP1-update-20241129
openEuler-22.03-LTS-SP3-update-20241129
openEuler-22.03-LTS-SP4-update-20241129
openEuler-24.03-LTS-update-20241129
openEuler-24.03-LTS-update-20241122
openEuler-22.03-LTS-SP4-update-20241122
openEuler-22.03-LTS-SP3-update-20241122
openEuler-22.03-LTS-SP1-update-20241122
openEuler-20.03-LTS-SP4-update-20241122
openEuler-20.03-LTS-SP4-update-20241115
openEuler-22.03-LTS-SP1-update-20241115
openEuler-22.03-LTS-SP3-update-20241115
openEuler-22.03-LTS-SP4-update-20241115
openEuler-24.03-LTS-update-20241115
openEuler-24.03-LTS-update-20241108
openEuler-22.03-LTS-SP4-update-20241108
openEuler-22.03-LTS-SP3-update-20241108
openEuler-22.03-LTS-SP1-update-20241108
openEuler-20.03-LTS-SP4-update-20241108
openEuler-22.03-LTS-SP4-update-before-20241025
openEuler-22.03-LTS-SP4-before-20241025
openEuler-24.03-LTS-update-before-20241025
openEuler-20.03-LTS-SP4-update-20241101
openEuler-22.03-LTS-SP1-update-20241101
openEuler-22.03-LTS-SP3-update-20241101
openEuler-22.03-LTS-SP4-update-20241101
openEuler-24.03-LTS-update-20241101
openEuler-20.03-LTS-SP4-update-20241025
openEuler-22.03-LTS-SP1-update-20241025
openEuler-22.03-LTS-SP3-update-20241025
openEuler-22.03-LTS-SP4-update-20241025
openEuler-24.03-LTS-update-20241025
openEuler-22.03-LTS-SP4-release
openEuler-24.09-release
openEuler-24.03-LTS-release
openEuler-22.03-LTS-SP3-release
openEuler-23.09-rc5
openEuler-22.03-LTS-SP1-release
openEuler-22.09-release
openEuler-22.09-rc5
openEuler-22.09-20220829
openEuler-22.03-LTS-20220331
openEuler-22.03-LTS-round5
openEuler-22.03-LTS-round3
openEuler-22.03-LTS-round2
openEuler-22.03-LTS-round1
openEuler-20.03-LTS-SP3-release
openEuler-20.03-LTS-SP2-20210624
openEuler-21.03-20210330
openEuler-20.09-20200929
openEuler-20.03-LTS-20200606
openEuler-20.03-LTS-tag
Planed to start   -   Planed to end
-
Top level
Not Top
Top Level: High
Top Level: Medium
Top Level: Low
Priority
Not specified
Serious
Main
Secondary
Unimportant
Duration
(hours)
参与者(1)
1
https://gitee.com/src-openeuler/kernel.git
git@gitee.com:src-openeuler/kernel.git
src-openeuler
kernel
kernel
Going to Help Center
Search
Git 命令在线学习
如何在 Gitee 导入 GitHub 仓库
Git 仓库基础操作
企业版和社区版功能对比
SSH 公钥设置
如何处理代码冲突
仓库体积过大,如何减小?
如何找回被删除的仓库数据
Gitee 产品配额说明
GitHub仓库快速导入Gitee及同步更新
什么是 Release(发行版)
将 PHP 项目自动发布到 packagist.org
Repository Report
Back to the top
Login prompt
This operation requires login to the code cloud account. Please log in before operating.
Go to login
No account. Register