All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Michael S. Tsirkin" <mst@redhat.com>
To: "Maciej Szymański" <maciej.szymanski@opensynergy.com>
Cc: Willem de Bruijn <willemb@google.com>,
	virtualization <virtualization@lists.linux-foundation.org>
Subject: Re: virtio-net: Unpermitted usage of virtqueue before virtio driver initialization
Date: Wed, 20 Apr 2022 16:17:55 -0400	[thread overview]
Message-ID: <20220420161042-mutt-send-email-mst@kernel.org> (raw)
In-Reply-To: <06dc4f89-1770-67cc-a843-6e956c0504dc@opensynergy.com>

On Wed, Apr 20, 2022 at 08:57:18PM +0200, Maciej Szymański wrote:
> On 20.04.2022 19:54, Michael S. Tsirkin wrote:
> > On Wed, Apr 20, 2022 at 04:58:51PM +0200, Maciej Szymański wrote:
> > > On 20.04.2022 13:10, Michael S. Tsirkin wrote:
> > > > On Wed, Apr 20, 2022 at 10:17:27AM +0200, Maciej Szymański wrote:
> > > > > > > > > > Hmm so we have this:
> > > > > > > > > > 
> > > > > > > > > > 
> > > > > > > > > >            if ((dev->features ^ features) & NETIF_F_GRO_HW) {
> > > > > > > > > >                    if (vi->xdp_enabled)
> > > > > > > > > >                            return -EBUSY;
> > > > > > > > > > 
> > > > > > > > > >                    if (features & NETIF_F_GRO_HW)
> > > > > > > > > >                            offloads = vi->guest_offloads_capable;
> > > > > > > > > >                    else
> > > > > > > > > >                            offloads = vi->guest_offloads_capable &
> > > > > > > > > > ~GUEST_OFFLOAD_GRO_HW_MASK;
> > > > > > > > > > 
> > > > > > > > > >                    err = virtnet_set_guest_offloads(vi, offloads);
> > > > > > > > > >                    if (err)
> > > > > > > > > >                            return err;
> > > > > > > > > >                    vi->guest_offloads = offloads;
> > > > > > > > > >            }
> > > > > > > > > > 
> > > > > > > > > > which I guess should have prevented virtnet_set_guest_offloads
> > > > > > > > > > from ever running.
> > > > > > > > > > 
> > > > > > > > > >    From your description it sounds like you have observed this
> > > > > > > > > > in practice, right?
> > > > > > > > > > 
> > > > > > > Yes. I have proprietary virtio-net device which advertises following
> > > > > > > guest offload features :
> > > > > > > - VIRTIO_NET_F_GUEST_CSUM
> > > > > > > - VIRTIO_NET_F_GUEST_TSO4
> > > > > > > - VIRTIO_NET_F_GUEST_TSO6
> > > > > > > - VIRTIO_NET_F_GUEST_UFO
> > > > > > > 
> > > > > > > This feature set passes the condition in virtnet_set_features.
> > > > So why isn't dev->features equal to features?
> > > > 
> > > I just double verified and found that my device advertises
> > > VIRTIO_NET_GUEST_TSO4 and VIRTIO_NET_F_GUEST_TSO6 but not
> > > VIRTIO_NET_F_GUEST_CSUM as mentioned before.
> > So, your device is out of spec:
> > 
> > VIRTIO_NET_F_GUEST_TSO4 Requires VIRTIO_NET_F_GUEST_CSUM.
> > 
> > And
> > 
> > The device MUST NOT offer a feature which requires another feature which was not offered.
> > 
> > 
> > Is this a production device? Can it be fixed?
> The problem seems to be more complicated. In fact
> VIRTIO_NET_F_GUEST_CSUM is offered by our device, but during feature
> negotiation it is being dropped.
> This most likely does not happen when we use MMIO, but for some reason
> happens in QEMU for VHOST_USER + PCI.
> I need to investigate this more deeply...


I don't see where linux would drop it. I suspect it's dropped between
QEMU and vhost user. I'd say let's fix it in the device first.
We can next consider marking vqs broken before device is ready -
Jason what do you think?
Finally, we can add code to avoid acking dependent features
if the feature they depend on has not been negotiated - doing
so is also a spec violation after all.


> 
> > 
> > > That leads to the following situation :
> > > 
> > > in virtio_probe :
> > > 
> > >    if (virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_CSUM))
> > >      dev->features |= NETIF_F_RXCSUM;
> > >    if (virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_TSO4) ||
> > >        virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_TSO6))
> > >      dev->features |= NETIF_F_GRO_HW;
> > >    if (virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_GUEST_OFFLOADS))
> > >      dev->hw_features |= NETIF_F_GRO_HW;
> > > 
> > > 
> > > while in netdev_fix_features :
> > > 
> > >    if (!(features & NETIF_F_RXCSUM)) {
> > >      /* NETIF_F_GRO_HW implies doing RXCSUM since every packet
> > >       * successfully merged by hardware must also have the
> > >       * checksum verified by hardware.  If the user does not
> > >       * want to enable RXCSUM, logically, we should disable GRO_HW.
> > >       */
> > >      if (features & NETIF_F_GRO_HW) {
> > >        netdev_dbg(dev, "Dropping NETIF_F_GRO_HW since no RXCSUM
> > > feature.\n");
> > >        features &= ~NETIF_F_GRO_HW;
> > >      }
> > >    }
> > > 
> > > As result dev->features and features passed from
> > > __netdev_update_features differs exactly in NETIF_F_GRO_HW bit.
> > > 
> > > 
> > > Please mind our privacy notice<https://www.opensynergy.com/datenschutzerklaerung/privacy-notice-for-business-partners-pursuant-to-article-13-of-the-general-data-protection-regulation-gdpr/> pursuant to Art. 13 GDPR. // Unsere Hinweise zum Datenschutz gem. Art. 13 DSGVO finden Sie hier.<https://www.opensynergy.com/de/datenschutzerklaerung/datenschutzhinweise-fuer-geschaeftspartner-gem-art-13-dsgvo/>
> 
> 
> Please mind our privacy notice<https://www.opensynergy.com/datenschutzerklaerung/privacy-notice-for-business-partners-pursuant-to-article-13-of-the-general-data-protection-regulation-gdpr/> pursuant to Art. 13 GDPR. // Unsere Hinweise zum Datenschutz gem. Art. 13 DSGVO finden Sie hier.<https://www.opensynergy.com/de/datenschutzerklaerung/datenschutzhinweise-fuer-geschaeftspartner-gem-art-13-dsgvo/>

_______________________________________________
Virtualization mailing list
Virtualization@lists.linux-foundation.org
https://lists.linuxfoundation.org/mailman/listinfo/virtualization

  parent reply	other threads:[~2022-04-20 20:18 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <c0c17b91-747e-ab58-83e5-b6f7dfa55e75@opensynergy.com>
2022-04-19 15:03 ` virtio-net: Unpermitted usage of virtqueue before virtio driver initialization Michael S. Tsirkin
2022-04-20  3:07   ` Jason Wang
2022-04-20  6:35     ` Michael S. Tsirkin
2022-04-20  8:05       ` Jason Wang
     [not found]       ` <4080d799-b42e-018a-8b14-621295e55a8d@opensynergy.com>
2022-04-20  8:07         ` Jason Wang
     [not found]           ` <0a118236-bb98-9183-8be2-84f6b83e2581@opensynergy.com>
2022-04-20 11:10             ` Michael S. Tsirkin
     [not found]               ` <4050a523-85a8-0f3c-b7de-c371a42c8f6c@opensynergy.com>
2022-04-20 17:54                 ` Michael S. Tsirkin
     [not found]                   ` <06dc4f89-1770-67cc-a843-6e956c0504dc@opensynergy.com>
2022-04-20 20:17                     ` Michael S. Tsirkin [this message]
2022-04-21  2:47                       ` Jason Wang

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=20220420161042-mutt-send-email-mst@kernel.org \
    --to=mst@redhat.com \
    --cc=maciej.szymanski@opensynergy.com \
    --cc=virtualization@lists.linux-foundation.org \
    --cc=willemb@google.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 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.