Sign in
Sign up
Explore
Enterprise
Education
Search
Help
Terms of use
About Us
Explore
Enterprise
Education
Gitee Premium
Gitee AI
AI teammates
Sign in
Sign up
Fetch the repository succeeded.
description of repo status
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
128
Star
73
Fork
329
src-openEuler
/
kernel
Closed
Code
Issues
1197
Pull Requests
35
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-2025-22077
Backlog
#IC1QRI
CVE和安全问题
openeuler-ci-bot
owner
Opened this issue
2025-04-17 00:34
一、漏洞信息 漏洞编号:[CVE-2025-22077](https://nvd.nist.gov/vuln/detail/CVE-2025-22077) 漏洞归属组件:[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: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:Revert smb: client: fix TCP timers deadlock after rmmod This reverts commit e9f2517a3e18a54a3943c098d2226b245d488801.Commit e9f2517a3e18 ( smb: client: fix TCP timers deadlock afterrmmod ) is intended to fix a null-ptr-deref in LOCKDEP, which ismentioned as CVE-2024-54680, but is actually did not fix anything;The issue can be reproduced on top of it. [0]Also, it reverted the change by commit ef7134c7fc48 ( smb: client:Fix use-after-free of network namespace. ) and introduced a realissue by reviving the kernel TCP socket.When a reconnect happens for a CIFS connection, the socket statetransitions to FIN_WAIT_1. Then, inet_csk_clear_xmit_timers_sync()in tcp_close() stops all timers for the socket.If an incoming FIN packet is lost, the socket will stay at FIN_WAIT_1forever, and such sockets could be leaked up to net.ipv4.tcp_max_orphans.Usually, FIN can be retransmitted by the peer, but if the peer abortsthe connection, the issue comes into reality.I warned about this privately by pointing out the exact report [1],but the bogus fix was finally merged.So, we should not stop the timers to finally kill the connection onour side in that case, meaning we must not use a kernel socket forTCP whose sk->sk_net_refcnt is 0.The kernel socket does not have a reference to its netns to make itpossible to tear down netns without cleaning up every resource in it.For example, tunnel devices use a UDP socket internally, but we candestroy netns without removing such devices and let it completeduring exit. Otherwise, netns would be leaked when the last applicationdied.However, this is problematic for TCP sockets because TCP has timers toclose the connection gracefully even after the socket is close()d. Thelifetime of the socket and its netns is different from the lifetime ofthe underlying connection.If the socket user does not maintain the netns lifetime, the timer couldbe fired after the socket is close()d and its netns is freed up, resultingin use-after-free.Actually, we have seen so many similar issues and converted such socketsto have a reference to netns.That s why I converted the CIFS client socket to have a reference tonetns (sk->sk_net_refcnt == 1), which is somehow mentioned as out-of-scopeof CIFS and technically wrong in e9f2517a3e18, but **is in-scope and rightfix**.Regarding the LOCKDEP issue, we can prevent the module unload bybumping the module refcount when switching the LOCKDDEP key insock_lock_init_class_and_name(). [2]For a while, let s revert the bogus fix.Note that now we can use sk_net_refcnt_upgrade() for the socketconversion, but I ll do so later separately to make backport easy. 漏洞公开时间:2025-04-16 23:16:01 漏洞创建时间:2025-04-17 00:34:15 漏洞详情参考链接: https://nvd.nist.gov/vuln/detail/CVE-2025-22077 <details> <summary>更多参考(点击展开)</summary> | 参考来源 | 参考链接 | 来源链接 | | ------- | -------- | -------- | | 416baaa9-dc9f-4396-8d5f-8c081fb06d67 | https://git.kernel.org/stable/c/4b6f6bf1bde8d6045c389fda8d21c304dfe49384 | | | 416baaa9-dc9f-4396-8d5f-8c081fb06d67 | https://git.kernel.org/stable/c/8dbf060480236877703bff0106fc984576184d11 | | | 416baaa9-dc9f-4396-8d5f-8c081fb06d67 | https://git.kernel.org/stable/c/95d2b9f693ff2a1180a23d7d59acc0c4e72f4c41 | | | 416baaa9-dc9f-4396-8d5f-8c081fb06d67 | https://git.kernel.org/stable/c/f761eeefd531e6550cd3a5c047835b4892acb00d | | | suse_bugzilla | http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2025-22077 | https://bugzilla.suse.com/show_bug.cgi?id=1241403 | | suse_bugzilla | https://www.cve.org/CVERecord?id=CVE-2025-22077 | https://bugzilla.suse.com/show_bug.cgi?id=1241403 | | suse_bugzilla | https://git.kernel.org/stable/c/476617a4ca0123f0df677d547a82a110c27c8c74 | https://bugzilla.suse.com/show_bug.cgi?id=1241403 | | suse_bugzilla | https://git.kernel.org/stable/c/4e7f1644f2ac6d01dc584f6301c3b1d5aac4eaef | https://bugzilla.suse.com/show_bug.cgi?id=1241403 | | suse_bugzilla | https://git.kernel.org/stable/c/7d8dfc27d90d41627c0d6ada97ed0ab57b3dae25 | https://bugzilla.suse.com/show_bug.cgi?id=1241403 | | suse_bugzilla | https://git.kernel.org/stable/c/961755d0055e0e96d1849cc0425da966c8a64e53 | https://bugzilla.suse.com/show_bug.cgi?id=1241403 | | suse_bugzilla | https://git.kernel.org/stable/c/c6b6b8dcef4adf8ee4e439bb97e74106096c71b8 | https://bugzilla.suse.com/show_bug.cgi?id=1241403 | | suse_bugzilla | https://git.kernel.org/pub/scm/linux/security/vulns.git/plain/cve/published/2025/CVE-2025-22077.mbox | https://bugzilla.suse.com/show_bug.cgi?id=1241403 | | redhat_bugzilla | https://lore.kernel.org/linux-cve-announce/2025041612-CVE-2025-22077-d534@gregkh/T | https://bugzilla.redhat.com/show_bug.cgi?id=2360283 | | anolis | | https://anas.openanolis.cn/cves/detail/CVE-2025-22077 | | mageia | | http://advisories.mageia.org/MGASA-2025-0142.html | | osv | https://git.kernel.org/stable/c/4b6f6bf1bde8d6045c389fda8d21c304dfe49384 | https://osv.dev/vulnerability/CVE-2025-22077 | | osv | https://git.kernel.org/stable/c/8dbf060480236877703bff0106fc984576184d11 | https://osv.dev/vulnerability/CVE-2025-22077 | | osv | https://git.kernel.org/stable/c/95d2b9f693ff2a1180a23d7d59acc0c4e72f4c41 | https://osv.dev/vulnerability/CVE-2025-22077 | | osv | https://git.kernel.org/stable/c/f761eeefd531e6550cd3a5c047835b4892acb00d | https://osv.dev/vulnerability/CVE-2025-22077 | | osv | https://security-tracker.debian.org/tracker/CVE-2025-22077 | https://osv.dev/vulnerability/CVE-2025-22077 | </details> 漏洞分析指导链接: https://gitee.com/openeuler/cve-manager/blob/master/cve-vulner-manager/doc/md/manual.md 漏洞数据来源: openBrain开源漏洞感知系统 漏洞补丁信息: <details> <summary>详情(点击展开)</summary> | 影响的包 | 修复版本 | 修复补丁 | 问题引入补丁 | 来源 | | ------- | -------- | ------- | -------- | --------- | | linux_kernel | 6.6.87 | https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=c6b6b8dcef4adf8ee4e439bb97e74106096c71b8 | https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=e8c71494181153a134c96da28766a57bd1eac8cb | linuxkernelcves | | linux_kernel | 6.12.23 | https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=7d8dfc27d90d41627c0d6ada97ed0ab57b3dae25 | https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=e8c71494181153a134c96da28766a57bd1eac8cb | linuxkernelcves | | linux_kernel | 6.13.11 | https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=961755d0055e0e96d1849cc0425da966c8a64e53 | https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=e8c71494181153a134c96da28766a57bd1eac8cb | linuxkernelcves | | linux_kernel | 6.14.2 | https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=476617a4ca0123f0df677d547a82a110c27c8c74 | https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=e8c71494181153a134c96da28766a57bd1eac8cb | linuxkernelcves | | linux_kernel | 6.15-rc1 | https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=4e7f1644f2ac6d01dc584f6301c3b1d5aac4eaef | https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=e8c71494181153a134c96da28766a57bd1eac8cb | linuxkernelcves | </details> 二、漏洞分析结构反馈 影响性分析说明: openEuler评分: 5.5 Vector:CVSS:3.0/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H 受影响版本排查(受影响/不受影响): 1.master(6.12.33): 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.openEuler-24.03-LTS-Next: 7.openEuler-24.03-LTS-SP1: 8.openEuler-24.03-LTS-SP2: 修复是否涉及abi变化(是/否): 1.master(6.12.33): 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.openEuler-24.03-LTS-Next: 7.openEuler-24.03-LTS-SP1: 8.openEuler-24.03-LTS-SP2: 原因说明: 1.master(6.12.33): 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.openEuler-24.03-LTS-Next: 7.openEuler-24.03-LTS-SP1: 8.openEuler-24.03-LTS-SP2:
一、漏洞信息 漏洞编号:[CVE-2025-22077](https://nvd.nist.gov/vuln/detail/CVE-2025-22077) 漏洞归属组件:[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: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:Revert smb: client: fix TCP timers deadlock after rmmod This reverts commit e9f2517a3e18a54a3943c098d2226b245d488801.Commit e9f2517a3e18 ( smb: client: fix TCP timers deadlock afterrmmod ) is intended to fix a null-ptr-deref in LOCKDEP, which ismentioned as CVE-2024-54680, but is actually did not fix anything;The issue can be reproduced on top of it. [0]Also, it reverted the change by commit ef7134c7fc48 ( smb: client:Fix use-after-free of network namespace. ) and introduced a realissue by reviving the kernel TCP socket.When a reconnect happens for a CIFS connection, the socket statetransitions to FIN_WAIT_1. Then, inet_csk_clear_xmit_timers_sync()in tcp_close() stops all timers for the socket.If an incoming FIN packet is lost, the socket will stay at FIN_WAIT_1forever, and such sockets could be leaked up to net.ipv4.tcp_max_orphans.Usually, FIN can be retransmitted by the peer, but if the peer abortsthe connection, the issue comes into reality.I warned about this privately by pointing out the exact report [1],but the bogus fix was finally merged.So, we should not stop the timers to finally kill the connection onour side in that case, meaning we must not use a kernel socket forTCP whose sk->sk_net_refcnt is 0.The kernel socket does not have a reference to its netns to make itpossible to tear down netns without cleaning up every resource in it.For example, tunnel devices use a UDP socket internally, but we candestroy netns without removing such devices and let it completeduring exit. Otherwise, netns would be leaked when the last applicationdied.However, this is problematic for TCP sockets because TCP has timers toclose the connection gracefully even after the socket is close()d. Thelifetime of the socket and its netns is different from the lifetime ofthe underlying connection.If the socket user does not maintain the netns lifetime, the timer couldbe fired after the socket is close()d and its netns is freed up, resultingin use-after-free.Actually, we have seen so many similar issues and converted such socketsto have a reference to netns.That s why I converted the CIFS client socket to have a reference tonetns (sk->sk_net_refcnt == 1), which is somehow mentioned as out-of-scopeof CIFS and technically wrong in e9f2517a3e18, but **is in-scope and rightfix**.Regarding the LOCKDEP issue, we can prevent the module unload bybumping the module refcount when switching the LOCKDDEP key insock_lock_init_class_and_name(). [2]For a while, let s revert the bogus fix.Note that now we can use sk_net_refcnt_upgrade() for the socketconversion, but I ll do so later separately to make backport easy. 漏洞公开时间:2025-04-16 23:16:01 漏洞创建时间:2025-04-17 00:34:15 漏洞详情参考链接: https://nvd.nist.gov/vuln/detail/CVE-2025-22077 <details> <summary>更多参考(点击展开)</summary> | 参考来源 | 参考链接 | 来源链接 | | ------- | -------- | -------- | | 416baaa9-dc9f-4396-8d5f-8c081fb06d67 | https://git.kernel.org/stable/c/4b6f6bf1bde8d6045c389fda8d21c304dfe49384 | | | 416baaa9-dc9f-4396-8d5f-8c081fb06d67 | https://git.kernel.org/stable/c/8dbf060480236877703bff0106fc984576184d11 | | | 416baaa9-dc9f-4396-8d5f-8c081fb06d67 | https://git.kernel.org/stable/c/95d2b9f693ff2a1180a23d7d59acc0c4e72f4c41 | | | 416baaa9-dc9f-4396-8d5f-8c081fb06d67 | https://git.kernel.org/stable/c/f761eeefd531e6550cd3a5c047835b4892acb00d | | | suse_bugzilla | http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2025-22077 | https://bugzilla.suse.com/show_bug.cgi?id=1241403 | | suse_bugzilla | https://www.cve.org/CVERecord?id=CVE-2025-22077 | https://bugzilla.suse.com/show_bug.cgi?id=1241403 | | suse_bugzilla | https://git.kernel.org/stable/c/476617a4ca0123f0df677d547a82a110c27c8c74 | https://bugzilla.suse.com/show_bug.cgi?id=1241403 | | suse_bugzilla | https://git.kernel.org/stable/c/4e7f1644f2ac6d01dc584f6301c3b1d5aac4eaef | https://bugzilla.suse.com/show_bug.cgi?id=1241403 | | suse_bugzilla | https://git.kernel.org/stable/c/7d8dfc27d90d41627c0d6ada97ed0ab57b3dae25 | https://bugzilla.suse.com/show_bug.cgi?id=1241403 | | suse_bugzilla | https://git.kernel.org/stable/c/961755d0055e0e96d1849cc0425da966c8a64e53 | https://bugzilla.suse.com/show_bug.cgi?id=1241403 | | suse_bugzilla | https://git.kernel.org/stable/c/c6b6b8dcef4adf8ee4e439bb97e74106096c71b8 | https://bugzilla.suse.com/show_bug.cgi?id=1241403 | | suse_bugzilla | https://git.kernel.org/pub/scm/linux/security/vulns.git/plain/cve/published/2025/CVE-2025-22077.mbox | https://bugzilla.suse.com/show_bug.cgi?id=1241403 | | redhat_bugzilla | https://lore.kernel.org/linux-cve-announce/2025041612-CVE-2025-22077-d534@gregkh/T | https://bugzilla.redhat.com/show_bug.cgi?id=2360283 | | anolis | | https://anas.openanolis.cn/cves/detail/CVE-2025-22077 | | mageia | | http://advisories.mageia.org/MGASA-2025-0142.html | | osv | https://git.kernel.org/stable/c/4b6f6bf1bde8d6045c389fda8d21c304dfe49384 | https://osv.dev/vulnerability/CVE-2025-22077 | | osv | https://git.kernel.org/stable/c/8dbf060480236877703bff0106fc984576184d11 | https://osv.dev/vulnerability/CVE-2025-22077 | | osv | https://git.kernel.org/stable/c/95d2b9f693ff2a1180a23d7d59acc0c4e72f4c41 | https://osv.dev/vulnerability/CVE-2025-22077 | | osv | https://git.kernel.org/stable/c/f761eeefd531e6550cd3a5c047835b4892acb00d | https://osv.dev/vulnerability/CVE-2025-22077 | | osv | https://security-tracker.debian.org/tracker/CVE-2025-22077 | https://osv.dev/vulnerability/CVE-2025-22077 | </details> 漏洞分析指导链接: https://gitee.com/openeuler/cve-manager/blob/master/cve-vulner-manager/doc/md/manual.md 漏洞数据来源: openBrain开源漏洞感知系统 漏洞补丁信息: <details> <summary>详情(点击展开)</summary> | 影响的包 | 修复版本 | 修复补丁 | 问题引入补丁 | 来源 | | ------- | -------- | ------- | -------- | --------- | | linux_kernel | 6.6.87 | https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=c6b6b8dcef4adf8ee4e439bb97e74106096c71b8 | https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=e8c71494181153a134c96da28766a57bd1eac8cb | linuxkernelcves | | linux_kernel | 6.12.23 | https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=7d8dfc27d90d41627c0d6ada97ed0ab57b3dae25 | https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=e8c71494181153a134c96da28766a57bd1eac8cb | linuxkernelcves | | linux_kernel | 6.13.11 | https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=961755d0055e0e96d1849cc0425da966c8a64e53 | https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=e8c71494181153a134c96da28766a57bd1eac8cb | linuxkernelcves | | linux_kernel | 6.14.2 | https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=476617a4ca0123f0df677d547a82a110c27c8c74 | https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=e8c71494181153a134c96da28766a57bd1eac8cb | linuxkernelcves | | linux_kernel | 6.15-rc1 | https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=4e7f1644f2ac6d01dc584f6301c3b1d5aac4eaef | https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=e8c71494181153a134c96da28766a57bd1eac8cb | linuxkernelcves | </details> 二、漏洞分析结构反馈 影响性分析说明: openEuler评分: 5.5 Vector:CVSS:3.0/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H 受影响版本排查(受影响/不受影响): 1.master(6.12.33): 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.openEuler-24.03-LTS-Next: 7.openEuler-24.03-LTS-SP1: 8.openEuler-24.03-LTS-SP2: 修复是否涉及abi变化(是/否): 1.master(6.12.33): 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.openEuler-24.03-LTS-Next: 7.openEuler-24.03-LTS-SP1: 8.openEuler-24.03-LTS-SP2: 原因说明: 1.master(6.12.33): 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.openEuler-24.03-LTS-Next: 7.openEuler-24.03-LTS-SP1: 8.openEuler-24.03-LTS-SP2:
Comments (
3
)
Sign in
to comment
Status
Backlog
Backlog
已挂起
Doing
Done
Declined
Assignees
Not set
CTC-Xibo.Wang
CTC-XiboWang
Assignee
Collaborator
+Assign
+Mention
Labels
CVE/UNFIXED
sig/Kernel
Not set
Projects
Unprojected
Unprojected
Milestones
No related milestones
No related milestones
Pull Requests
None yet
None yet
Successfully merging a pull request will close this issue.
Branches
No related branch
Branches (
-
)
Tags (
-
)
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
Comment
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