* CVE-2025-22077: smb: client: Fix netns refcount imbalance causing leaks and use-after-free
@ 2025-04-16 14:12 Greg Kroah-Hartman
2025-04-21 2:52 ` Wang Zhaolong
0 siblings, 1 reply; 6+ messages in thread
From: Greg Kroah-Hartman @ 2025-04-16 14:12 UTC (permalink / raw)
To: linux-cve-announce; +Cc: Greg Kroah-Hartman
Description
===========
In the Linux kernel, the following vulnerability has been resolved:
smb: client: Fix netns refcount imbalance causing leaks and use-after-free
Commit ef7134c7fc48 ("smb: client: Fix use-after-free of network
namespace.") attempted to fix a netns use-after-free issue by manually
adjusting reference counts via sk->sk_net_refcnt and sock_inuse_add().
However, a later commit e9f2517a3e18 ("smb: client: fix TCP timers deadlock
after rmmod") pointed out that the approach of manually setting
sk->sk_net_refcnt in the first commit was technically incorrect, as
sk->sk_net_refcnt should only be set for user sockets. It led to issues
like TCP timers not being cleared properly on close. The second commit
moved to a model of just holding an extra netns reference for
server->ssocket using get_net(), and dropping it when the server is torn
down.
But there remain some gaps in the get_net()/put_net() balancing added by
these commits. The incomplete reference handling in these fixes results
in two issues:
1. Netns refcount leaks[1]
The problem process is as follows:
```
mount.cifs cifsd
cifs_do_mount
cifs_mount
cifs_mount_get_session
cifs_get_tcp_session
get_net() /* First get net. */
ip_connect
generic_ip_connect /* Try port 445 */
get_net()
->connect() /* Failed */
put_net()
generic_ip_connect /* Try port 139 */
get_net() /* Missing matching put_net() for this get_net().*/
cifs_get_smb_ses
cifs_negotiate_protocol
smb2_negotiate
SMB2_negotiate
cifs_send_recv
wait_for_response
cifs_demultiplex_thread
cifs_read_from_socket
cifs_readv_from_socket
cifs_reconnect
cifs_abort_connection
sock_release();
server->ssocket = NULL;
/* Missing put_net() here. */
generic_ip_connect
get_net()
->connect() /* Failed */
put_net()
sock_release();
server->ssocket = NULL;
free_rsp_buf
...
clean_demultiplex_info
/* It's only called once here. */
put_net()
```
When cifs_reconnect() is triggered, the server->ssocket is released
without a corresponding put_net() for the reference acquired in
generic_ip_connect() before. it ends up calling generic_ip_connect()
again to retry get_net(). After that, server->ssocket is set to NULL
in the error path of generic_ip_connect(), and the net count cannot be
released in the final clean_demultiplex_info() function.
2. Potential use-after-free
The current refcounting scheme can lead to a potential use-after-free issue
in the following scenario:
```
cifs_do_mount
cifs_mount
cifs_mount_get_session
cifs_get_tcp_session
get_net() /* First get net */
ip_connect
generic_ip_connect
get_net()
bind_socket
kernel_bind /* failed */
put_net()
/* after out_err_crypto_release label */
put_net()
/* after out_err label */
put_net()
```
In the exception handling process where binding the socket fails, the
get_net() and put_net() calls are unbalanced, which may cause the
server->net reference count to drop to zero and be prematurely released.
To address both issues, this patch ties the netns reference counting to
the server->ssocket and server lifecycles. The extra reference is now
acquired when the server or socket is created, and released when the
socket is destroyed or the server is torn down.
[1]: https://bugzilla.kernel.org/show_bug.cgi?id=219792
The Linux kernel CVE team has assigned CVE-2025-22077 to this issue.
Affected and fixed versions
===========================
Issue introduced in 6.6.62 with commit e8c71494181153a134c96da28766a57bd1eac8cb and fixed in 6.6.87 with commit c6b6b8dcef4adf8ee4e439bb97e74106096c71b8
Issue introduced in 6.12 with commit ef7134c7fc48e1441b398e55a862232868a6f0a7 and fixed in 6.12.23 with commit 7d8dfc27d90d41627c0d6ada97ed0ab57b3dae25
Issue introduced in 6.12 with commit ef7134c7fc48e1441b398e55a862232868a6f0a7 and fixed in 6.13.11 with commit 961755d0055e0e96d1849cc0425da966c8a64e53
Issue introduced in 6.12 with commit ef7134c7fc48e1441b398e55a862232868a6f0a7 and fixed in 6.14.2 with commit 476617a4ca0123f0df677d547a82a110c27c8c74
Issue introduced in 6.12 with commit ef7134c7fc48e1441b398e55a862232868a6f0a7 and fixed in 6.15-rc1 with commit 4e7f1644f2ac6d01dc584f6301c3b1d5aac4eaef
Issue introduced in 6.11.9 with commit c7f9282fc27fc36dbaffc8527c723de264a132f8
Issue introduced in 6.6.68 with commit 906807c734ed219dcb2e7bbfde5c4168ed72a3d0
Please see https://www.kernel.org for a full list of currently supported
kernel versions by the kernel community.
Unaffected versions might change over time as fixes are backported to
older supported kernel versions. The official CVE entry at
https://cve.org/CVERecord/?id=CVE-2025-22077
will be updated if fixes are backported, please check that for the most
up to date information about this issue.
Affected files
==============
The file(s) affected by this issue are:
fs/smb/client/connect.c
Mitigation
==========
The Linux kernel CVE team recommends that you update to the latest
stable kernel version for this, and many other bugfixes. Individual
changes are never tested alone, but rather are part of a larger kernel
release. Cherry-picking individual commits is not recommended or
supported by the Linux kernel community at all. If however, updating to
the latest release is impossible, the individual changes to resolve this
issue can be found at these commits:
https://git.kernel.org/stable/c/c6b6b8dcef4adf8ee4e439bb97e74106096c71b8
https://git.kernel.org/stable/c/7d8dfc27d90d41627c0d6ada97ed0ab57b3dae25
https://git.kernel.org/stable/c/961755d0055e0e96d1849cc0425da966c8a64e53
https://git.kernel.org/stable/c/476617a4ca0123f0df677d547a82a110c27c8c74
https://git.kernel.org/stable/c/4e7f1644f2ac6d01dc584f6301c3b1d5aac4eaef
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: CVE-2025-22077: smb: client: Fix netns refcount imbalance causing leaks and use-after-free
2025-04-16 14:12 CVE-2025-22077: smb: client: Fix netns refcount imbalance causing leaks and use-after-free Greg Kroah-Hartman
@ 2025-04-21 2:52 ` Wang Zhaolong
2025-04-21 2:59 ` Wang Zhaolong
0 siblings, 1 reply; 6+ messages in thread
From: Wang Zhaolong @ 2025-04-21 2:52 UTC (permalink / raw)
To: cve, linux-kernel, linux-cve-announce; +Cc: Greg Kroah-Hartman
Dear CVE Community,
As the author of commit 4e7f1644f2ac ("smb: client: Fix netns refcount imbalance
causing leaks and use-after-free"), I want to clarify some confusion around the
proper fixes for these issues:
1. Commit 4e7f1644f2ac is currently associated with CVE-2025-22077. However, this
patch was merely attempting to fix issues introduced by commit e9f2517a3e18 ("smb:
client: fix TCP timers deadlock after rmmod").
2. As I've previously discussed with Greg Kroah-Hartman on the kernel mailing list[1],
commit e9f2517a3e18 (which was intended to address CVE-2024-54680):
- Failed to address the actual null pointer dereference in lockdep
- Introduced multiple serious issues:
- Socket leak vulnerability (bugzilla #219972)
- Network namespace refcount imbalance (bugzilla #219792)
3. Our testing and analysis confirms that the original fix by Kuniyuki Iwashima,
commit ef7134c7fc48 ("smb: client: Fix use-after-free of network namespace."), is
actually the correct approach. This patch properly handles network namespace
reference counting without introducing the problems that e9f2517a3e18 did.
4. The proper resolution for these issues was ultimately commit 95d2b9f693ff
("Revert 'smb: client: fix TCP timers deadlock after rmmod'"), which reverted
the problematic patch. In the latest Linux mainline code, the problematic patch and
my subsequent fix patch have been reverted.[2][3]
Thank you for your attention to this matter. I'm happy to provide additional details if needed.
[1] https://lore.kernel.org/all/2025040248-tummy-smilingly-4240@gregkh/
[2] https://github.com/torvalds/linux/commit/c707193a17128fae2802d10cbad7239cc57f0c95
[3] https://github.com/torvalds/linux/commit/4e7f1644f2ac6d01dc584f6301c3b1d5aac4eaef
Best regards,
Wang Zhaolong
> Description
> ===========
>
> In the Linux kernel, the following vulnerability has been resolved:
>
> smb: client: Fix netns refcount imbalance causing leaks and use-after-free
>
> Commit ef7134c7fc48 ("smb: client: Fix use-after-free of network
> namespace.") attempted to fix a netns use-after-free issue by manually
> adjusting reference counts via sk->sk_net_refcnt and sock_inuse_add().
>
> However, a later commit e9f2517a3e18 ("smb: client: fix TCP timers deadlock
> after rmmod") pointed out that the approach of manually setting
> sk->sk_net_refcnt in the first commit was technically incorrect, as
> sk->sk_net_refcnt should only be set for user sockets. It led to issues
> like TCP timers not being cleared properly on close. The second commit
> moved to a model of just holding an extra netns reference for
> server->ssocket using get_net(), and dropping it when the server is torn
> down.
>
> But there remain some gaps in the get_net()/put_net() balancing added by
> these commits. The incomplete reference handling in these fixes results
> in two issues:
>
> 1. Netns refcount leaks[1]
>
> The problem process is as follows:
>
> ```
> mount.cifs cifsd
>
> cifs_do_mount
> cifs_mount
> cifs_mount_get_session
> cifs_get_tcp_session
> get_net() /* First get net. */
> ip_connect
> generic_ip_connect /* Try port 445 */
> get_net()
> ->connect() /* Failed */
> put_net()
> generic_ip_connect /* Try port 139 */
> get_net() /* Missing matching put_net() for this get_net().*/
> cifs_get_smb_ses
> cifs_negotiate_protocol
> smb2_negotiate
> SMB2_negotiate
> cifs_send_recv
> wait_for_response
> cifs_demultiplex_thread
> cifs_read_from_socket
> cifs_readv_from_socket
> cifs_reconnect
> cifs_abort_connection
> sock_release();
> server->ssocket = NULL;
> /* Missing put_net() here. */
> generic_ip_connect
> get_net()
> ->connect() /* Failed */
> put_net()
> sock_release();
> server->ssocket = NULL;
> free_rsp_buf
> ...
> clean_demultiplex_info
> /* It's only called once here. */
> put_net()
> ```
>
> When cifs_reconnect() is triggered, the server->ssocket is released
> without a corresponding put_net() for the reference acquired in
> generic_ip_connect() before. it ends up calling generic_ip_connect()
> again to retry get_net(). After that, server->ssocket is set to NULL
> in the error path of generic_ip_connect(), and the net count cannot be
> released in the final clean_demultiplex_info() function.
>
> 2. Potential use-after-free
>
> The current refcounting scheme can lead to a potential use-after-free issue
> in the following scenario:
>
> ```
> cifs_do_mount
> cifs_mount
> cifs_mount_get_session
> cifs_get_tcp_session
> get_net() /* First get net */
> ip_connect
> generic_ip_connect
> get_net()
> bind_socket
> kernel_bind /* failed */
> put_net()
> /* after out_err_crypto_release label */
> put_net()
> /* after out_err label */
> put_net()
> ```
>
> In the exception handling process where binding the socket fails, the
> get_net() and put_net() calls are unbalanced, which may cause the
> server->net reference count to drop to zero and be prematurely released.
>
> To address both issues, this patch ties the netns reference counting to
> the server->ssocket and server lifecycles. The extra reference is now
> acquired when the server or socket is created, and released when the
> socket is destroyed or the server is torn down.
>
> [1]: https://bugzilla.kernel.org/show_bug.cgi?id=219792
>
> The Linux kernel CVE team has assigned CVE-2025-22077 to this issue.
>
>
> Affected and fixed versions
> ===========================
>
> Issue introduced in 6.6.62 with commit e8c71494181153a134c96da28766a57bd1eac8cb and fixed in 6.6.87 with commit c6b6b8dcef4adf8ee4e439bb97e74106096c71b8
> Issue introduced in 6.12 with commit ef7134c7fc48e1441b398e55a862232868a6f0a7 and fixed in 6.12.23 with commit 7d8dfc27d90d41627c0d6ada97ed0ab57b3dae25
> Issue introduced in 6.12 with commit ef7134c7fc48e1441b398e55a862232868a6f0a7 and fixed in 6.13.11 with commit 961755d0055e0e96d1849cc0425da966c8a64e53
> Issue introduced in 6.12 with commit ef7134c7fc48e1441b398e55a862232868a6f0a7 and fixed in 6.14.2 with commit 476617a4ca0123f0df677d547a82a110c27c8c74
> Issue introduced in 6.12 with commit ef7134c7fc48e1441b398e55a862232868a6f0a7 and fixed in 6.15-rc1 with commit 4e7f1644f2ac6d01dc584f6301c3b1d5aac4eaef
> Issue introduced in 6.11.9 with commit c7f9282fc27fc36dbaffc8527c723de264a132f8
> Issue introduced in 6.6.68 with commit 906807c734ed219dcb2e7bbfde5c4168ed72a3d0
>
> Please see https://www.kernel.org for a full list of currently supported
> kernel versions by the kernel community.
>
> Unaffected versions might change over time as fixes are backported to
> older supported kernel versions. The official CVE entry at
> https://cve.org/CVERecord/?id=CVE-2025-22077
> will be updated if fixes are backported, please check that for the most
> up to date information about this issue.
>
>
> Affected files
> ==============
>
> The file(s) affected by this issue are:
> fs/smb/client/connect.c
>
>
> Mitigation
> ==========
>
> The Linux kernel CVE team recommends that you update to the latest
> stable kernel version for this, and many other bugfixes. Individual
> changes are never tested alone, but rather are part of a larger kernel
> release. Cherry-picking individual commits is not recommended or
> supported by the Linux kernel community at all. If however, updating to
> the latest release is impossible, the individual changes to resolve this
> issue can be found at these commits:
> https://git.kernel.org/stable/c/c6b6b8dcef4adf8ee4e439bb97e74106096c71b8
> https://git.kernel.org/stable/c/7d8dfc27d90d41627c0d6ada97ed0ab57b3dae25
> https://git.kernel.org/stable/c/961755d0055e0e96d1849cc0425da966c8a64e53
> https://git.kernel.org/stable/c/476617a4ca0123f0df677d547a82a110c27c8c74
> https://git.kernel.org/stable/c/4e7f1644f2ac6d01dc584f6301c3b1d5aac4eaef
>
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: CVE-2025-22077: smb: client: Fix netns refcount imbalance causing leaks and use-after-free
2025-04-21 2:52 ` Wang Zhaolong
@ 2025-04-21 2:59 ` Wang Zhaolong
2025-04-21 6:49 ` Greg KH
0 siblings, 1 reply; 6+ messages in thread
From: Wang Zhaolong @ 2025-04-21 2:59 UTC (permalink / raw)
To: cve, linux-kernel, linux-cve-announce; +Cc: Greg Kroah-Hartman
Given these findings, I recommend updating CVE-2025-22077 to reflect that the true fix
is the reversion of e9f2517a3e18 (via commit 95d2b9f693ff).
Best regards,
Wang Zhaolong
> Dear CVE Community,
>
> As the author of commit 4e7f1644f2ac ("smb: client: Fix netns refcount imbalance
> causing leaks and use-after-free"), I want to clarify some confusion around the
> proper fixes for these issues:
>
> 1. Commit 4e7f1644f2ac is currently associated with CVE-2025-22077. However, this
> patch was merely attempting to fix issues introduced by commit e9f2517a3e18 ("smb:
> client: fix TCP timers deadlock after rmmod").
>
> 2. As I've previously discussed with Greg Kroah-Hartman on the kernel mailing list[1],
> commit e9f2517a3e18 (which was intended to address CVE-2024-54680):
> - Failed to address the actual null pointer dereference in lockdep
> - Introduced multiple serious issues:
> - Socket leak vulnerability (bugzilla #219972)
> - Network namespace refcount imbalance (bugzilla #219792)
>
> 3. Our testing and analysis confirms that the original fix by Kuniyuki Iwashima,
> commit ef7134c7fc48 ("smb: client: Fix use-after-free of network namespace."), is
> actually the correct approach. This patch properly handles network namespace
> reference counting without introducing the problems that e9f2517a3e18 did.
>
> 4. The proper resolution for these issues was ultimately commit 95d2b9f693ff
> ("Revert 'smb: client: fix TCP timers deadlock after rmmod'"), which reverted
> the problematic patch. In the latest Linux mainline code, the problematic patch and
> my subsequent fix patch have been reverted.[2][3]
>
> Thank you for your attention to this matter. I'm happy to provide additional details if needed.
>
> [1] https://lore.kernel.org/all/2025040248-tummy-smilingly-4240@gregkh/
> [2] https://github.com/torvalds/linux/commit/c707193a17128fae2802d10cbad7239cc57f0c95
> [3] https://github.com/torvalds/linux/commit/4e7f1644f2ac6d01dc584f6301c3b1d5aac4eaef
>
> Best regards,
> Wang Zhaolong
>
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: CVE-2025-22077: smb: client: Fix netns refcount imbalance causing leaks and use-after-free
2025-04-21 2:59 ` Wang Zhaolong
@ 2025-04-21 6:49 ` Greg KH
2025-04-21 14:18 ` Wang Zhaolong
0 siblings, 1 reply; 6+ messages in thread
From: Greg KH @ 2025-04-21 6:49 UTC (permalink / raw)
To: Wang Zhaolong; +Cc: cve, linux-kernel, linux-cve-announce
On Mon, Apr 21, 2025 at 10:59:47AM +0800, Wang Zhaolong wrote:
>
> Given these findings, I recommend updating CVE-2025-22077 to reflect that the true fix
> is the reversion of e9f2517a3e18 (via commit 95d2b9f693ff).
Please do not top-post, it makes things impossible to quote properly :(
Anyway, I do not understand, sorry. You are saying that commit
(95d2b9f693ff) is just reverting other attempts at fixing a bug, that
were not fixed properly. So why would that commit be assigned a CVE if
the bugs were not being fixed properly? What vulnerability does that
commit itself fix?
> > Dear CVE Community,
> >
> > As the author of commit 4e7f1644f2ac ("smb: client: Fix netns refcount imbalance
> > causing leaks and use-after-free"), I want to clarify some confusion around the
> > proper fixes for these issues:
> >
> > 1. Commit 4e7f1644f2ac is currently associated with CVE-2025-22077. However, this
> > patch was merely attempting to fix issues introduced by commit e9f2517a3e18 ("smb:
> > client: fix TCP timers deadlock after rmmod").
Did it not fix those issues? If not, we can reject that CVE, please let
us know.
> > 2. As I've previously discussed with Greg Kroah-Hartman on the kernel mailing list[1],
> > commit e9f2517a3e18 (which was intended to address CVE-2024-54680):
> > - Failed to address the actual null pointer dereference in lockdep
> > - Introduced multiple serious issues:
> > - Socket leak vulnerability (bugzilla #219972)
> > - Network namespace refcount imbalance (bugzilla #219792)
So this commit did not actually do anything? If so, we can reject this
CVE.
> > 3. Our testing and analysis confirms that the original fix by Kuniyuki Iwashima,
> > commit ef7134c7fc48 ("smb: client: Fix use-after-free of network namespace."), is
> > actually the correct approach. This patch properly handles network namespace
> > reference counting without introducing the problems that e9f2517a3e18 did.
But you say that commit is broken?
> > 4. The proper resolution for these issues was ultimately commit 95d2b9f693ff
> > ("Revert 'smb: client: fix TCP timers deadlock after rmmod'"), which reverted
> > the problematic patch. In the latest Linux mainline code, the problematic patch and
> > my subsequent fix patch have been reverted.[2][3]
> >
> > Thank you for your attention to this matter. I'm happy to provide additional details if needed.
So, everything is now reverted and we are back at the beginning with the
original problem?
I'm sorry, but I really do not understand here what to do. What exactly
are you wanting us to do? Is the issue resolved? If not, why not? If
so, what commit fixed it? Are there CVEs assigned to commits that are
not actually fixes?
totally confused,
greg k-h
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: CVE-2025-22077: smb: client: Fix netns refcount imbalance causing leaks and use-after-free
2025-04-21 6:49 ` Greg KH
@ 2025-04-21 14:18 ` Wang Zhaolong
2025-04-22 5:36 ` Greg KH
0 siblings, 1 reply; 6+ messages in thread
From: Wang Zhaolong @ 2025-04-21 14:18 UTC (permalink / raw)
To: Greg KH; +Cc: cve, linux-kernel, linux-cve-announce
Hi Greg,
I apologize for the confusion. Let me clarify the situation more directly:
>>>
>>> 1. Commit 4e7f1644f2ac is currently associated with CVE-2025-22077. However, this
>>> patch was merely attempting to fix issues introduced by commit e9f2517a3e18 ("smb:
>>> client: fix TCP timers deadlock after rmmod").
>
> Did it not fix those issues? If not, we can reject that CVE, please let
> us know.
Yes, commit 4e7f1644f2ac did attempt to fix the issues introduced by
e9f2517a3e18, but it only fixed part of the issues introduced by e9f2517a3e18.
>
>>> 2. As I've previously discussed with Greg Kroah-Hartman on the kernel mailing list[1],
>>> commit e9f2517a3e18 (which was intended to address CVE-2024-54680):
>>> - Failed to address the actual null pointer dereference in lockdep
>>> - Introduced multiple serious issues:
>>> - Socket leak vulnerability (bugzilla #219972)
>>> - Network namespace refcount imbalance (bugzilla #219792)
>
> So this commit did not actually do anything? If so, we can reject this
> CVE.
>
e9f2517a3e18 did not fix any issues and instead introduced a series of problems.
Here's the actual sequence:
1. CVE-2024-53095 vulnerability: Use-after-free of network namespace in
SMB client and it's correct fix: ef7134c7fc48 by Kuniyuki Iwashima
3. Problematic patch: e9f2517a3e18 (intended for CVE-2024-54680) fixed
nothing and introduced new issues while trying to "fix" a non-existent
deadlock. ** CVE-2024-54680 has been rejected **
4. Attempted fix for some reference count issues: My patch 4e7f1644f2ac
(assigned CVE-2025-22077)
5. Final resolution: Revert the problematic patch e9f2517a3e18 via commit
95d2b9f693ff ("Revert "smb: client: fix TCP timers deadlock after rmmod"").
What I'm requesting:
- CVE-2025-22077 should be associated with commit 95d2b9f693ff, which is the actual
final fix.
Best regards,
Wang Zhaolong
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: CVE-2025-22077: smb: client: Fix netns refcount imbalance causing leaks and use-after-free
2025-04-21 14:18 ` Wang Zhaolong
@ 2025-04-22 5:36 ` Greg KH
0 siblings, 0 replies; 6+ messages in thread
From: Greg KH @ 2025-04-22 5:36 UTC (permalink / raw)
To: Wang Zhaolong; +Cc: cve, linux-kernel, linux-cve-announce
On Mon, Apr 21, 2025 at 10:18:25PM +0800, Wang Zhaolong wrote:
>
>
> Hi Greg,
>
> I apologize for the confusion. Let me clarify the situation more directly:
>
> > > >
> > > > 1. Commit 4e7f1644f2ac is currently associated with CVE-2025-22077. However, this
> > > > patch was merely attempting to fix issues introduced by commit e9f2517a3e18 ("smb:
> > > > client: fix TCP timers deadlock after rmmod").
> >
> > Did it not fix those issues? If not, we can reject that CVE, please let
> > us know.
>
> Yes, commit 4e7f1644f2ac did attempt to fix the issues introduced by
> e9f2517a3e18, but it only fixed part of the issues introduced by e9f2517a3e18.
>
> >
> > > > 2. As I've previously discussed with Greg Kroah-Hartman on the kernel mailing list[1],
> > > > commit e9f2517a3e18 (which was intended to address CVE-2024-54680):
> > > > - Failed to address the actual null pointer dereference in lockdep
> > > > - Introduced multiple serious issues:
> > > > - Socket leak vulnerability (bugzilla #219972)
> > > > - Network namespace refcount imbalance (bugzilla #219792)
> >
> > So this commit did not actually do anything? If so, we can reject this
> > CVE.
> >
>
> e9f2517a3e18 did not fix any issues and instead introduced a series of problems.
>
> Here's the actual sequence:
>
> 1. CVE-2024-53095 vulnerability: Use-after-free of network namespace in
> SMB client and it's correct fix: ef7134c7fc48 by Kuniyuki Iwashima
> 3. Problematic patch: e9f2517a3e18 (intended for CVE-2024-54680) fixed
> nothing and introduced new issues while trying to "fix" a non-existent
> deadlock. ** CVE-2024-54680 has been rejected **
> 4. Attempted fix for some reference count issues: My patch 4e7f1644f2ac
> (assigned CVE-2025-22077)
> 5. Final resolution: Revert the problematic patch e9f2517a3e18 via commit
> 95d2b9f693ff ("Revert "smb: client: fix TCP timers deadlock after rmmod"").
>
> What I'm requesting:
> - CVE-2025-22077 should be associated with commit 95d2b9f693ff, which is the actual
> final fix.
Thank you for explaining it again, this time it made sense :)
The id is now updated, and the data is pushed out to cve.org, thanks!
greg k-h
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2025-04-22 5:36 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-04-16 14:12 CVE-2025-22077: smb: client: Fix netns refcount imbalance causing leaks and use-after-free Greg Kroah-Hartman
2025-04-21 2:52 ` Wang Zhaolong
2025-04-21 2:59 ` Wang Zhaolong
2025-04-21 6:49 ` Greg KH
2025-04-21 14:18 ` Wang Zhaolong
2025-04-22 5:36 ` Greg KH
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.