]> git.baikalelectronics.ru Git - kernel.git/commit
Fix double fget() in vhost_net_set_backend()
authorAl Viro <viro@zeniv.linux.org.uk>
Mon, 16 May 2022 08:42:13 +0000 (16:42 +0800)
committerAl Viro <viro@zeniv.linux.org.uk>
Wed, 18 May 2022 16:33:51 +0000 (12:33 -0400)
commitf21f3d122da510dad9e2d3bc3a27eb1f32c5fd07
treeb11f7865439a1f0325d8c7ff14d976fba82d3213
parent0b58261473f55ef3732b7fef1f73c2b870a86c9b
Fix double fget() in vhost_net_set_backend()

Descriptor table is a shared resource; two fget() on the same descriptor
may return different struct file references.  get_tap_ptr_ring() is
called after we'd found (and pinned) the socket we'll be using and it
tries to find the private tun/tap data structures associated with it.
Redoing the lookup by the same file descriptor we'd used to get the
socket is racy - we need to same struct file.

Thanks to Jason for spotting a braino in the original variant of patch -
I'd missed the use of fd == -1 for disabling backend, and in that case
we can end up with sock == NULL and sock != oldsock.

Cc: stable@kernel.org
Acked-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Jason Wang <jasowang@redhat.com>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
drivers/vhost/net.c