提交 3fe356d5 编写于 作者: S Stefano Garzarella 提交者: Jakub Kicinski

vsock/virtio: discard packets only when socket is really closed

Starting from commit 8692cefc ("virtio_vsock: Fix race condition
in virtio_transport_recv_pkt"), we discard packets in
virtio_transport_recv_pkt() if the socket has been released.

When the socket is connected, we schedule a delayed work to wait the
RST packet from the other peer, also if SHUTDOWN_MASK is set in
sk->sk_shutdown.
This is done to complete the virtio-vsock shutdown algorithm, releasing
the port assigned to the socket definitively only when the other peer
has consumed all the packets.

If we discard the RST packet received, the socket will be closed only
when the VSOCK_CLOSE_TIMEOUT is reached.

Sergio discovered the issue while running ab(1) HTTP benchmark using
libkrun [1] and observing a latency increase with that commit.

To avoid this issue, we discard packet only if the socket is really
closed (SOCK_DONE flag is set).
We also set SOCK_DONE in virtio_transport_release() when we don't need
to wait any packets from the other peer (we didn't schedule the delayed
work). In this case we remove the socket from the vsock lists, releasing
the port assigned.

[1] https://github.com/containers/libkrun

Fixes: 8692cefc ("virtio_vsock: Fix race condition in virtio_transport_recv_pkt")
Cc: justin.he@arm.com
Reported-by: NSergio Lopez <slp@redhat.com>
Tested-by: NSergio Lopez <slp@redhat.com>
Signed-off-by: NStefano Garzarella <sgarzare@redhat.com>
Acked-by: NJia He <justin.he@arm.com>
Link: https://lore.kernel.org/r/20201120104736.73749-1-sgarzare@redhat.comSigned-off-by: NJakub Kicinski <kuba@kernel.org>
上级 01770a16
...@@ -841,8 +841,10 @@ void virtio_transport_release(struct vsock_sock *vsk) ...@@ -841,8 +841,10 @@ void virtio_transport_release(struct vsock_sock *vsk)
virtio_transport_free_pkt(pkt); virtio_transport_free_pkt(pkt);
} }
if (remove_sock) if (remove_sock) {
sock_set_flag(sk, SOCK_DONE);
vsock_remove_sock(vsk); vsock_remove_sock(vsk);
}
} }
EXPORT_SYMBOL_GPL(virtio_transport_release); EXPORT_SYMBOL_GPL(virtio_transport_release);
...@@ -1132,8 +1134,8 @@ void virtio_transport_recv_pkt(struct virtio_transport *t, ...@@ -1132,8 +1134,8 @@ void virtio_transport_recv_pkt(struct virtio_transport *t,
lock_sock(sk); lock_sock(sk);
/* Check if sk has been released before lock_sock */ /* Check if sk has been closed before lock_sock */
if (sk->sk_shutdown == SHUTDOWN_MASK) { if (sock_flag(sk, SOCK_DONE)) {
(void)virtio_transport_reset_no_sock(t, pkt); (void)virtio_transport_reset_no_sock(t, pkt);
release_sock(sk); release_sock(sk);
sock_put(sk); sock_put(sk);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册