From: Stefan Hajnoczi <stefanha@redhat.com>
To: "Boeuf, Sebastien" <sebastien.boeuf@intel.com>
Cc: "sgarzare@redhat.com" <sgarzare@redhat.com>,
"netdev@vger.kernel.org" <netdev@vger.kernel.org>,
"davem@davemloft.net" <davem@davemloft.net>
Subject: Re: [PATCH] net: virtio_vsock: Fix race condition between bind and listen
Date: Thu, 13 Feb 2020 11:39:49 +0000 [thread overview]
Message-ID: <20200213113949.GA544499@stefanha-x1.localdomain> (raw)
In-Reply-To: <1d4c3958d8b75756341548e7d51ccf42397c2d27.camel@intel.com>
[-- Attachment #1: Type: text/plain, Size: 3390 bytes --]
On Thu, Feb 13, 2020 at 10:44:18AM +0000, Boeuf, Sebastien wrote:
> On Thu, 2020-02-13 at 11:22 +0100, Stefano Garzarella wrote:
> > On Thu, Feb 13, 2020 at 09:51:36AM +0000, Boeuf, Sebastien wrote:
> > > Hi Stefano,
> > >
> > > On Thu, 2020-02-13 at 10:41 +0100, Stefano Garzarella wrote:
> > > > Hi Sebastien,
> > > >
> > > > On Thu, Feb 13, 2020 at 09:16:11AM +0000, Boeuf, Sebastien wrote:
> > > > > From 2f1276d02f5a12d85aec5adc11dfe1eab7e160d6 Mon Sep 17
> > > > > 00:00:00
> > > > > 2001
> > > > > From: Sebastien Boeuf <sebastien.boeuf@intel.com>
> > > > > Date: Thu, 13 Feb 2020 08:50:38 +0100
> > > > > Subject: [PATCH] net: virtio_vsock: Fix race condition between
> > > > > bind
> > > > > and listen
> > > > >
> > > > > Whenever the vsock backend on the host sends a packet through
> > > > > the
> > > > > RX
> > > > > queue, it expects an answer on the TX queue. Unfortunately,
> > > > > there
> > > > > is one
> > > > > case where the host side will hang waiting for the answer and
> > > > > will
> > > > > effectively never recover.
> > > >
> > > > Do you have a test case?
> > >
> > > Yes I do. This has been a bug we've been investigating on Kata
> > > Containers for quite some time now. This was happening when using
> > > Kata
> > > along with Cloud-Hypervisor (which rely on the hybrid vsock
> > > implementation from Firecracker). The thing is, this bug is very
> > > hard
> > > to reproduce and was happening for Kata because of the connection
> > > strategy. The kata-runtime tries to connect a million times after
> > > it
> > > started the VM, just hoping the kata-agent will start to listen
> > > from
> > > the guest side at some point.
> >
> > Maybe is related to something else. I tried the following which
> > should be
> > your case simplified (IIUC):
> >
> > guest$ python
> > import socket
> > s = socket.socket(socket.AF_VSOCK, socket.SOCK_STREAM)
> > s.bind((socket.VMADDR_CID_ANY, 1234))
> >
> > host$ python
> > import socket
> > s = socket.socket(socket.AF_VSOCK, socket.SOCK_STREAM)
> > s.connect((3, 1234))
> >
> > Traceback (most recent call last):
> > File "<stdin>", line 1, in <module>
> > TimeoutError: [Errno 110] Connection timed out
>
> Yes this is exactly the simplified case. But that's the point, I don't
> think the timeout is the best way to go here. Because this means that
> when we run into this case, the host side will wait for quite some time
> before retrying, which can cause a very long delay before the
> communication with the guest is established. By simply answering the
> host with a RST packet, we inform it that nobody's listening on the
> guest side yet, therefore the host side will close and try again.
My expectation is that TCP/IP will produce ECONNREFUSED in this case but
I haven't checked. Timing out is weird behavior.
In any case, the reference for virtio-vsock semantics is:
1. How does VMCI (VMware) vsock behave? We strive to be compatible with
the VMCI transport.
2. If there is no clear VMCI behavior, then we look at TCP/IP because
those semantics are expected by most applications.
This bug needs a test case in tools/testings/vsock/ and that test case
will run against VMCI, virtio-vsock, and Hyper-V. Doing that will
answer the question of how VMCI handles this case.
Stefan
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]
next prev parent reply other threads:[~2020-02-13 11:39 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-02-13 9:16 [PATCH] net: virtio_vsock: Fix race condition between bind and listen Boeuf, Sebastien
2020-02-13 9:41 ` Stefano Garzarella
2020-02-13 9:51 ` Boeuf, Sebastien
2020-02-13 10:22 ` Stefano Garzarella
2020-02-13 10:44 ` Boeuf, Sebastien
2020-02-13 11:02 ` Stefano Garzarella
2020-02-13 11:13 ` Boeuf, Sebastien
2020-02-13 11:22 ` Stefano Garzarella
2020-02-13 11:39 ` Stefan Hajnoczi [this message]
2020-02-13 13:04 ` Stefano Garzarella
2020-02-13 16:51 ` Boeuf, Sebastien
2020-02-13 17:14 ` Stefano Garzarella
2020-02-13 17:18 ` Boeuf, Sebastien
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20200213113949.GA544499@stefanha-x1.localdomain \
--to=stefanha@redhat.com \
--cc=davem@davemloft.net \
--cc=netdev@vger.kernel.org \
--cc=sebastien.boeuf@intel.com \
--cc=sgarzare@redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox