Skip to content

Commit 19e651a

Browse files
committed
vsock: fix lock inversion in vsock_assign_transport()
jira VULN-80685 cve-bf CVE-2025-38461 commit-author Stefano Garzarella <sgarzare@redhat.com> commit f7c877e Syzbot reported a potential lock inversion deadlock between vsock_register_mutex and sk_lock-AF_VSOCK when vsock_linger() is called. The issue was introduced by commit 687aa0c ("vsock: Fix transport_* TOCTOU") which added vsock_register_mutex locking in vsock_assign_transport() around the transport->release() call, that can call vsock_linger(). vsock_assign_transport() can be called with sk_lock held. vsock_linger() calls sk_wait_event() that temporarily releases and re-acquires sk_lock. During this window, if another thread hold vsock_register_mutex while trying to acquire sk_lock, a circular dependency is created. Fix this by releasing vsock_register_mutex before calling transport->release() and vsock_deassign_transport(). This is safe because we don't need to hold vsock_register_mutex while releasing the old transport, and we ensure the new transport won't disappear by obtaining a module reference first via try_module_get(). Reported-by: syzbot+10e35716f8e4929681fa@syzkaller.appspotmail.com Tested-by: syzbot+10e35716f8e4929681fa@syzkaller.appspotmail.com Fixes: 687aa0c ("vsock: Fix transport_* TOCTOU") Cc: mhal@rbox.co Cc: stable@vger.kernel.org Signed-off-by: Stefano Garzarella <sgarzare@redhat.com> Link: https://patch.msgid.link/20251021121718.137668-1-sgarzare@redhat.com Signed-off-by: Paolo Abeni <pabeni@redhat.com> (cherry picked from commit f7c877e) Signed-off-by: Roxana Nicolescu <rnicolescu@ciq.com>
1 parent 524575b commit 19e651a

File tree

1 file changed

+19
-19
lines changed

1 file changed

+19
-19
lines changed

net/vmw_vsock/af_vsock.c

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -484,12 +484,26 @@ int vsock_assign_transport(struct vsock_sock *vsk, struct vsock_sock *psk)
484484
goto err;
485485
}
486486

487-
if (vsk->transport) {
488-
if (vsk->transport == new_transport) {
489-
ret = 0;
490-
goto err;
491-
}
487+
if (vsk->transport && vsk->transport == new_transport) {
488+
ret = 0;
489+
goto err;
490+
}
492491

492+
/* We increase the module refcnt to prevent the transport unloading
493+
* while there are open sockets assigned to it.
494+
*/
495+
if (!new_transport || !try_module_get(new_transport->module)) {
496+
ret = -ENODEV;
497+
goto err;
498+
}
499+
500+
/* It's safe to release the mutex after a successful try_module_get().
501+
* Whichever transport `new_transport` points at, it won't go away until
502+
* the last module_put() below or in vsock_deassign_transport().
503+
*/
504+
mutex_unlock(&vsock_register_mutex);
505+
506+
if (vsk->transport) {
493507
/* transport->release() must be called with sock lock acquired.
494508
* This path can only be taken during vsock_connect(), where we
495509
* have already held the sock lock. In the other cases, this
@@ -509,20 +523,6 @@ int vsock_assign_transport(struct vsock_sock *vsk, struct vsock_sock *psk)
509523
vsk->peer_shutdown = 0;
510524
}
511525

512-
/* We increase the module refcnt to prevent the transport unloading
513-
* while there are open sockets assigned to it.
514-
*/
515-
if (!new_transport || !try_module_get(new_transport->module)) {
516-
ret = -ENODEV;
517-
goto err;
518-
}
519-
520-
/* It's safe to release the mutex after a successful try_module_get().
521-
* Whichever transport `new_transport` points at, it won't go away until
522-
* the last module_put() below or in vsock_deassign_transport().
523-
*/
524-
mutex_unlock(&vsock_register_mutex);
525-
526526
if (sk->sk_type == SOCK_SEQPACKET) {
527527
if (!new_transport->seqpacket_allow ||
528528
!new_transport->seqpacket_allow(remote_cid)) {

0 commit comments

Comments
 (0)