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
112
Star
72
Fork
316
src-openEuler
/
kernel
Code
Issues
1385
Pull Requests
45
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-50082
Done
#IB0ENF
CVE和安全问题
openeuler-ci-bot
owner
Opened this issue
2024-10-29 09:29
一、漏洞信息 漏洞编号:[CVE-2024-50082](https://nvd.nist.gov/vuln/detail/CVE-2024-50082) 漏洞归属组件:[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:4.7 Medium Vector:CVSS:3.0/AV:L/AC:H/PR:L/UI:N/S:U/C:N/I:N/A:H 漏洞简述: In the Linux kernel, the following vulnerability has been resolved:blk-rq-qos: fix crash on rq_qos_wait vs. rq_qos_wake_function raceWe re seeing crashes from rq_qos_wake_function that look like this: BUG: unable to handle page fault for address: ffffafe180a40084 #PF: supervisor write access in kernel mode #PF: error_code(0x0002) - not-present page PGD 100000067 P4D 100000067 PUD 10027c067 PMD 10115d067 PTE 0 Oops: Oops: 0002 [#1] PREEMPT SMP PTI CPU: 17 UID: 0 PID: 0 Comm: swapper/17 Not tainted 6.12.0-rc3-00013-geca631b8fe80 #11 Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS rel-1.16.0-0-gd239552ce722-prebuilt.qemu.org 04/01/2014 RIP: 0010:_raw_spin_lock_irqsave+0x1d/0x40 Code: 90 90 90 90 90 90 90 90 90 90 90 90 90 f3 0f 1e fa 0f 1f 44 00 00 41 54 9c 41 5c fa 65 ff 05 62 97 30 4c 31 c0 ba 01 00 00 00 <f0> 0f b1 17 75 0a 4c 89 e0 41 5c c3 cc cc cc cc 89 c6 e8 2c 0b 00 RSP: 0018:ffffafe180580ca0 EFLAGS: 00010046 RAX: 0000000000000000 RBX: ffffafe180a3f7a8 RCX: 0000000000000011 RDX: 0000000000000001 RSI: 0000000000000003 RDI: ffffafe180a40084 RBP: 0000000000000000 R08: 00000000001e7240 R09: 0000000000000011 R10: 0000000000000028 R11: 0000000000000888 R12: 0000000000000002 R13: ffffafe180a40084 R14: 0000000000000000 R15: 0000000000000003 FS: 0000000000000000(0000) GS:ffff9aaf1f280000(0000) knlGS:0000000000000000 CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033 CR2: ffffafe180a40084 CR3: 000000010e428002 CR4: 0000000000770ef0 DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000 DR3: 0000000000000000 DR6: 00000000fffe0ff0 DR7: 0000000000000400 PKRU: 55555554 Call Trace: <IRQ> try_to_wake_up+0x5a/0x6a0 rq_qos_wake_function+0x71/0x80 __wake_up_common+0x75/0xa0 __wake_up+0x36/0x60 scale_up.part.0+0x50/0x110 wb_timer_fn+0x227/0x450 ...So rq_qos_wake_function() calls wake_up_process(data->task), which callstry_to_wake_up(), which faults in raw_spin_lock_irqsave(&p->pi_lock).p comes from data->task, and data comes from the waitqueue entry, whichis stored on the waiter s stack in rq_qos_wait(). Analyzing the coredump with drgn, I found that the waiter had already woken up and movedon to a completely unrelated code path, clobbering what was previouslydata->task. Meanwhile, the waker was passing the clobbered garbage indata->task to wake_up_process(), leading to the crash.What s happening is that in between rq_qos_wake_function() deleting thewaitqueue entry and calling wake_up_process(), rq_qos_wait() is findingthat it already got a token and returning. The race looks like this:rq_qos_wait() rq_qos_wake_function()==============================================================prepare_to_wait_exclusive() data->got_token = true; list_del_init(&curr->entry);if (data.got_token) break;finish_wait(&rqw->wait, &data.wq); ^- returns immediately because list_empty_careful(&wq_entry->entry) is true... return, go do something else ... wake_up_process(data->task) (NO LONGER VALID!)-^Normally, finish_wait() is supposed to synchronize against the waker.But, as noted above, it is returning immediately because the waitqueueentry has already been removed from the waitqueue.The bug is that rq_qos_wake_function() is accessing the waitqueue entryAFTER deleting it. Note that autoremove_wake_function() wakes the waiterand THEN deletes the waitqueue entry, which is the proper order.Fix it by swapping the order. We also need to uselist_del_init_careful() to match the list_empty_careful() infinish_wait(). 漏洞公开时间:2024-10-29 09:15:05 漏洞创建时间:2024-10-29 09:29:11 漏洞详情参考链接: https://nvd.nist.gov/vuln/detail/CVE-2024-50082 <details> <summary>更多参考(点击展开)</summary> | 参考来源 | 参考链接 | 来源链接 | | ------- | -------- | -------- | | 416baaa9-dc9f-4396-8d5f-8c081fb06d67 | https://git.kernel.org/stable/c/04f283fc16c8d5db641b6bffd2d8310aa7eccebc | | | 416baaa9-dc9f-4396-8d5f-8c081fb06d67 | https://git.kernel.org/stable/c/3bc6d0f8b70a9101456cf02ab99acb75254e1852 | | | 416baaa9-dc9f-4396-8d5f-8c081fb06d67 | https://git.kernel.org/stable/c/455a469758e57a6fe070e3e342db12e4a629e0eb | | | 416baaa9-dc9f-4396-8d5f-8c081fb06d67 | https://git.kernel.org/stable/c/4c5b123ab289767afe940389dbb963c5c05e594e | | | 416baaa9-dc9f-4396-8d5f-8c081fb06d67 | https://git.kernel.org/stable/c/b5e900a3612b69423a0e1b0ab67841a1fb4af80f | | | 416baaa9-dc9f-4396-8d5f-8c081fb06d67 | https://git.kernel.org/stable/c/d04b72c9ef2b0689bfc1057d21c4aeed087c329f | | | 416baaa9-dc9f-4396-8d5f-8c081fb06d67 | https://git.kernel.org/stable/c/e972b08b91ef48488bae9789f03cfedb148667fb | | | suse_bugzilla | http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2024-50082 | https://bugzilla.suse.com/show_bug.cgi?id=1232500 | | suse_bugzilla | https://www.cve.org/CVERecord?id=CVE-2024-50082 | https://bugzilla.suse.com/show_bug.cgi?id=1232500 | | suse_bugzilla | https://git.kernel.org/stable/c/04f283fc16c8d5db641b6bffd2d8310aa7eccebc | https://bugzilla.suse.com/show_bug.cgi?id=1232500 | | suse_bugzilla | https://git.kernel.org/stable/c/3bc6d0f8b70a9101456cf02ab99acb75254e1852 | https://bugzilla.suse.com/show_bug.cgi?id=1232500 | | suse_bugzilla | https://git.kernel.org/stable/c/455a469758e57a6fe070e3e342db12e4a629e0eb | https://bugzilla.suse.com/show_bug.cgi?id=1232500 | | suse_bugzilla | https://git.kernel.org/stable/c/4c5b123ab289767afe940389dbb963c5c05e594e | https://bugzilla.suse.com/show_bug.cgi?id=1232500 | | suse_bugzilla | https://git.kernel.org/stable/c/b5e900a3612b69423a0e1b0ab67841a1fb4af80f | https://bugzilla.suse.com/show_bug.cgi?id=1232500 | | suse_bugzilla | https://git.kernel.org/stable/c/e972b08b91ef48488bae9789f03cfedb148667fb | https://bugzilla.suse.com/show_bug.cgi?id=1232500 | | suse_bugzilla | https://git.kernel.org/pub/scm/linux/security/vulns.git/plain/cve/published/2024/CVE-2024-50082.mbox | https://bugzilla.suse.com/show_bug.cgi?id=1232500 | | redhat_bugzilla | https://lore.kernel.org/linux-cve-announce/2024102937-CVE-2024-50082-c5b1@gregkh/T | https://bugzilla.redhat.com/show_bug.cgi?id=2322308 | | redhat_bugzilla | https://access.redhat.com/errata/RHSA-2024:10944 | https://bugzilla.redhat.com/show_bug.cgi?id=2322308 | | redhat_bugzilla | https://access.redhat.com/errata/RHSA-2024:10943 | https://bugzilla.redhat.com/show_bug.cgi?id=2322308 | | debian | | https://security-tracker.debian.org/tracker/CVE-2024-50082 | | anolis | | https://anas.openanolis.cn/cves/detail/CVE-2024-50082 | | cve_search | | https://git.kernel.org/stable/c/3bc6d0f8b70a9101456cf02ab99acb75254e1852 | | cve_search | | https://git.kernel.org/stable/c/455a469758e57a6fe070e3e342db12e4a629e0eb | | cve_search | | https://git.kernel.org/stable/c/b5e900a3612b69423a0e1b0ab67841a1fb4af80f | | cve_search | | https://git.kernel.org/stable/c/4c5b123ab289767afe940389dbb963c5c05e594e | | cve_search | | https://git.kernel.org/stable/c/04f283fc16c8d5db641b6bffd2d8310aa7eccebc | | cve_search | | https://git.kernel.org/stable/c/e972b08b91ef48488bae9789f03cfedb148667fb | </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/04f283fc16c8d5db641b6bffd2d8310aa7eccebc | | nvd | | | | https://git.kernel.org/stable/c/3bc6d0f8b70a9101456cf02ab99acb75254e1852 | | nvd | | | | https://git.kernel.org/stable/c/455a469758e57a6fe070e3e342db12e4a629e0eb | | nvd | | | | https://git.kernel.org/stable/c/4c5b123ab289767afe940389dbb963c5c05e594e | | nvd | | | | https://git.kernel.org/stable/c/b5e900a3612b69423a0e1b0ab67841a1fb4af80f | | nvd | | | | https://git.kernel.org/stable/c/e972b08b91ef48488bae9789f03cfedb148667fb | | nvd | | linux_kernel | 5.10.228 | https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=3bc6d0f8b70aIssue | https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=38cfb5a45ee0 | linuxkernelcves | | linux_kernel | 5.15.169 | https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=455a469758e5Issue | https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=38cfb5a45ee0 | linuxkernelcves | | linux_kernel | 6.1.114 | https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=b5e900a3612bIssue | https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=38cfb5a45ee0 | linuxkernelcves | | linux_kernel | 6.6.58 | https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=4c5b123ab289Issue | https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=38cfb5a45ee0 | linuxkernelcves | | linux_kernel | 6.11.5 | https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=04f283fc16c8Issue | https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=38cfb5a45ee0 | linuxkernelcves | | linux_kernel | 6.12-rc4 | https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=e972b08b91efPlease | https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=38cfb5a45ee0 | linuxkernelcves | </details> 二、漏洞分析结构反馈 影响性分析说明: Reserved. openEuler评分: 4.7 Vector:CVSS:3.0/AV:L/AC:H/PR:L/UI:N/S:U/C:N/I:N/A:H 受影响版本排查(受影响/不受影响): 1.openEuler-20.03-LTS-SP4(4.19.90):受影响 2.openEuler-22.03-LTS-SP3(5.10.0):受影响 3.openEuler-22.03-LTS-SP4(5.10.0):受影响 4.openEuler-24.03-LTS(6.6.0):受影响 5.openEuler-24.03-LTS-SP1(6.6.0):受影响 6.master(6.6.0):不受影响 7.openEuler-24.03-LTS-Next(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.openEuler-22.03-LTS-SP4(5.10.0):正常修复 3.openEuler-24.03-LTS(6.6.0):正常修复 4.openEuler-24.03-LTS-SP1(6.6.0):正常修复 5.openEuler-20.03-LTS-SP4(4.19.90):不修复-超出修复范围 6.master(6.6.0):不受影响-漏洞代码不能被攻击者触发 7.openEuler-24.03-LTS-Next(6.6.0):不受影响-漏洞代码不能被攻击者触发 三、漏洞修复 安全公告链接:https://www.openeuler.org/zh/security/safety-bulletin/detail/?id=openEuler-SA-2024-2426
一、漏洞信息 漏洞编号:[CVE-2024-50082](https://nvd.nist.gov/vuln/detail/CVE-2024-50082) 漏洞归属组件:[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:4.7 Medium Vector:CVSS:3.0/AV:L/AC:H/PR:L/UI:N/S:U/C:N/I:N/A:H 漏洞简述: In the Linux kernel, the following vulnerability has been resolved:blk-rq-qos: fix crash on rq_qos_wait vs. rq_qos_wake_function raceWe re seeing crashes from rq_qos_wake_function that look like this: BUG: unable to handle page fault for address: ffffafe180a40084 #PF: supervisor write access in kernel mode #PF: error_code(0x0002) - not-present page PGD 100000067 P4D 100000067 PUD 10027c067 PMD 10115d067 PTE 0 Oops: Oops: 0002 [#1] PREEMPT SMP PTI CPU: 17 UID: 0 PID: 0 Comm: swapper/17 Not tainted 6.12.0-rc3-00013-geca631b8fe80 #11 Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS rel-1.16.0-0-gd239552ce722-prebuilt.qemu.org 04/01/2014 RIP: 0010:_raw_spin_lock_irqsave+0x1d/0x40 Code: 90 90 90 90 90 90 90 90 90 90 90 90 90 f3 0f 1e fa 0f 1f 44 00 00 41 54 9c 41 5c fa 65 ff 05 62 97 30 4c 31 c0 ba 01 00 00 00 <f0> 0f b1 17 75 0a 4c 89 e0 41 5c c3 cc cc cc cc 89 c6 e8 2c 0b 00 RSP: 0018:ffffafe180580ca0 EFLAGS: 00010046 RAX: 0000000000000000 RBX: ffffafe180a3f7a8 RCX: 0000000000000011 RDX: 0000000000000001 RSI: 0000000000000003 RDI: ffffafe180a40084 RBP: 0000000000000000 R08: 00000000001e7240 R09: 0000000000000011 R10: 0000000000000028 R11: 0000000000000888 R12: 0000000000000002 R13: ffffafe180a40084 R14: 0000000000000000 R15: 0000000000000003 FS: 0000000000000000(0000) GS:ffff9aaf1f280000(0000) knlGS:0000000000000000 CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033 CR2: ffffafe180a40084 CR3: 000000010e428002 CR4: 0000000000770ef0 DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000 DR3: 0000000000000000 DR6: 00000000fffe0ff0 DR7: 0000000000000400 PKRU: 55555554 Call Trace: <IRQ> try_to_wake_up+0x5a/0x6a0 rq_qos_wake_function+0x71/0x80 __wake_up_common+0x75/0xa0 __wake_up+0x36/0x60 scale_up.part.0+0x50/0x110 wb_timer_fn+0x227/0x450 ...So rq_qos_wake_function() calls wake_up_process(data->task), which callstry_to_wake_up(), which faults in raw_spin_lock_irqsave(&p->pi_lock).p comes from data->task, and data comes from the waitqueue entry, whichis stored on the waiter s stack in rq_qos_wait(). Analyzing the coredump with drgn, I found that the waiter had already woken up and movedon to a completely unrelated code path, clobbering what was previouslydata->task. Meanwhile, the waker was passing the clobbered garbage indata->task to wake_up_process(), leading to the crash.What s happening is that in between rq_qos_wake_function() deleting thewaitqueue entry and calling wake_up_process(), rq_qos_wait() is findingthat it already got a token and returning. The race looks like this:rq_qos_wait() rq_qos_wake_function()==============================================================prepare_to_wait_exclusive() data->got_token = true; list_del_init(&curr->entry);if (data.got_token) break;finish_wait(&rqw->wait, &data.wq); ^- returns immediately because list_empty_careful(&wq_entry->entry) is true... return, go do something else ... wake_up_process(data->task) (NO LONGER VALID!)-^Normally, finish_wait() is supposed to synchronize against the waker.But, as noted above, it is returning immediately because the waitqueueentry has already been removed from the waitqueue.The bug is that rq_qos_wake_function() is accessing the waitqueue entryAFTER deleting it. Note that autoremove_wake_function() wakes the waiterand THEN deletes the waitqueue entry, which is the proper order.Fix it by swapping the order. We also need to uselist_del_init_careful() to match the list_empty_careful() infinish_wait(). 漏洞公开时间:2024-10-29 09:15:05 漏洞创建时间:2024-10-29 09:29:11 漏洞详情参考链接: https://nvd.nist.gov/vuln/detail/CVE-2024-50082 <details> <summary>更多参考(点击展开)</summary> | 参考来源 | 参考链接 | 来源链接 | | ------- | -------- | -------- | | 416baaa9-dc9f-4396-8d5f-8c081fb06d67 | https://git.kernel.org/stable/c/04f283fc16c8d5db641b6bffd2d8310aa7eccebc | | | 416baaa9-dc9f-4396-8d5f-8c081fb06d67 | https://git.kernel.org/stable/c/3bc6d0f8b70a9101456cf02ab99acb75254e1852 | | | 416baaa9-dc9f-4396-8d5f-8c081fb06d67 | https://git.kernel.org/stable/c/455a469758e57a6fe070e3e342db12e4a629e0eb | | | 416baaa9-dc9f-4396-8d5f-8c081fb06d67 | https://git.kernel.org/stable/c/4c5b123ab289767afe940389dbb963c5c05e594e | | | 416baaa9-dc9f-4396-8d5f-8c081fb06d67 | https://git.kernel.org/stable/c/b5e900a3612b69423a0e1b0ab67841a1fb4af80f | | | 416baaa9-dc9f-4396-8d5f-8c081fb06d67 | https://git.kernel.org/stable/c/d04b72c9ef2b0689bfc1057d21c4aeed087c329f | | | 416baaa9-dc9f-4396-8d5f-8c081fb06d67 | https://git.kernel.org/stable/c/e972b08b91ef48488bae9789f03cfedb148667fb | | | suse_bugzilla | http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2024-50082 | https://bugzilla.suse.com/show_bug.cgi?id=1232500 | | suse_bugzilla | https://www.cve.org/CVERecord?id=CVE-2024-50082 | https://bugzilla.suse.com/show_bug.cgi?id=1232500 | | suse_bugzilla | https://git.kernel.org/stable/c/04f283fc16c8d5db641b6bffd2d8310aa7eccebc | https://bugzilla.suse.com/show_bug.cgi?id=1232500 | | suse_bugzilla | https://git.kernel.org/stable/c/3bc6d0f8b70a9101456cf02ab99acb75254e1852 | https://bugzilla.suse.com/show_bug.cgi?id=1232500 | | suse_bugzilla | https://git.kernel.org/stable/c/455a469758e57a6fe070e3e342db12e4a629e0eb | https://bugzilla.suse.com/show_bug.cgi?id=1232500 | | suse_bugzilla | https://git.kernel.org/stable/c/4c5b123ab289767afe940389dbb963c5c05e594e | https://bugzilla.suse.com/show_bug.cgi?id=1232500 | | suse_bugzilla | https://git.kernel.org/stable/c/b5e900a3612b69423a0e1b0ab67841a1fb4af80f | https://bugzilla.suse.com/show_bug.cgi?id=1232500 | | suse_bugzilla | https://git.kernel.org/stable/c/e972b08b91ef48488bae9789f03cfedb148667fb | https://bugzilla.suse.com/show_bug.cgi?id=1232500 | | suse_bugzilla | https://git.kernel.org/pub/scm/linux/security/vulns.git/plain/cve/published/2024/CVE-2024-50082.mbox | https://bugzilla.suse.com/show_bug.cgi?id=1232500 | | redhat_bugzilla | https://lore.kernel.org/linux-cve-announce/2024102937-CVE-2024-50082-c5b1@gregkh/T | https://bugzilla.redhat.com/show_bug.cgi?id=2322308 | | redhat_bugzilla | https://access.redhat.com/errata/RHSA-2024:10944 | https://bugzilla.redhat.com/show_bug.cgi?id=2322308 | | redhat_bugzilla | https://access.redhat.com/errata/RHSA-2024:10943 | https://bugzilla.redhat.com/show_bug.cgi?id=2322308 | | debian | | https://security-tracker.debian.org/tracker/CVE-2024-50082 | | anolis | | https://anas.openanolis.cn/cves/detail/CVE-2024-50082 | | cve_search | | https://git.kernel.org/stable/c/3bc6d0f8b70a9101456cf02ab99acb75254e1852 | | cve_search | | https://git.kernel.org/stable/c/455a469758e57a6fe070e3e342db12e4a629e0eb | | cve_search | | https://git.kernel.org/stable/c/b5e900a3612b69423a0e1b0ab67841a1fb4af80f | | cve_search | | https://git.kernel.org/stable/c/4c5b123ab289767afe940389dbb963c5c05e594e | | cve_search | | https://git.kernel.org/stable/c/04f283fc16c8d5db641b6bffd2d8310aa7eccebc | | cve_search | | https://git.kernel.org/stable/c/e972b08b91ef48488bae9789f03cfedb148667fb | </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/04f283fc16c8d5db641b6bffd2d8310aa7eccebc | | nvd | | | | https://git.kernel.org/stable/c/3bc6d0f8b70a9101456cf02ab99acb75254e1852 | | nvd | | | | https://git.kernel.org/stable/c/455a469758e57a6fe070e3e342db12e4a629e0eb | | nvd | | | | https://git.kernel.org/stable/c/4c5b123ab289767afe940389dbb963c5c05e594e | | nvd | | | | https://git.kernel.org/stable/c/b5e900a3612b69423a0e1b0ab67841a1fb4af80f | | nvd | | | | https://git.kernel.org/stable/c/e972b08b91ef48488bae9789f03cfedb148667fb | | nvd | | linux_kernel | 5.10.228 | https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=3bc6d0f8b70aIssue | https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=38cfb5a45ee0 | linuxkernelcves | | linux_kernel | 5.15.169 | https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=455a469758e5Issue | https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=38cfb5a45ee0 | linuxkernelcves | | linux_kernel | 6.1.114 | https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=b5e900a3612bIssue | https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=38cfb5a45ee0 | linuxkernelcves | | linux_kernel | 6.6.58 | https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=4c5b123ab289Issue | https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=38cfb5a45ee0 | linuxkernelcves | | linux_kernel | 6.11.5 | https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=04f283fc16c8Issue | https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=38cfb5a45ee0 | linuxkernelcves | | linux_kernel | 6.12-rc4 | https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=e972b08b91efPlease | https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=38cfb5a45ee0 | linuxkernelcves | </details> 二、漏洞分析结构反馈 影响性分析说明: Reserved. openEuler评分: 4.7 Vector:CVSS:3.0/AV:L/AC:H/PR:L/UI:N/S:U/C:N/I:N/A:H 受影响版本排查(受影响/不受影响): 1.openEuler-20.03-LTS-SP4(4.19.90):受影响 2.openEuler-22.03-LTS-SP3(5.10.0):受影响 3.openEuler-22.03-LTS-SP4(5.10.0):受影响 4.openEuler-24.03-LTS(6.6.0):受影响 5.openEuler-24.03-LTS-SP1(6.6.0):受影响 6.master(6.6.0):不受影响 7.openEuler-24.03-LTS-Next(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.openEuler-22.03-LTS-SP4(5.10.0):正常修复 3.openEuler-24.03-LTS(6.6.0):正常修复 4.openEuler-24.03-LTS-SP1(6.6.0):正常修复 5.openEuler-20.03-LTS-SP4(4.19.90):不修复-超出修复范围 6.master(6.6.0):不受影响-漏洞代码不能被攻击者触发 7.openEuler-24.03-LTS-Next(6.6.0):不受影响-漏洞代码不能被攻击者触发 三、漏洞修复 安全公告链接:https://www.openeuler.org/zh/security/safety-bulletin/detail/?id=openEuler-SA-2024-2426
Comments (
23
)
Sign in
to comment
Status
Done
Backlog
已挂起
Doing
Done
Declined
Assignees
Not set
sanglipeng
sanglipeng
Assignee
Collaborator
+Assign
+Mention
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 (242)
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-20.03-LTS-SP4-update-20250912
openEuler-22.03-LTS-SP3-update-20250912
openEuler-22.03-LTS-SP4-update-20250912
openEuler-24.03-LTS-update-20250912
openEuler-24.03-LTS-SP1-update-20250912
openEuler-24.03-LTS-SP2-update-20250912
openEuler-24.03-LTS-SP1-update-20250911
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