]> git.baikalelectronics.ru Git - kernel.git/commit
virtio: acknowledge all features before access
authorMichael S. Tsirkin <mst@redhat.com>
Fri, 14 Jan 2022 19:58:41 +0000 (14:58 -0500)
committerMichael S. Tsirkin <mst@redhat.com>
Fri, 4 Mar 2022 13:33:21 +0000 (08:33 -0500)
commitc753a5a88bcbc38654c965e3a48fa4452e493725
treeb31f0460110f5c72b79648a8d524cd02a6e5b58d
parentce00067f38ad302a3776854170b5e0fcfa4780cc
virtio: acknowledge all features before access

The feature negotiation was designed in a way that
makes it possible for devices to know which config
fields will be accessed by drivers.

This is broken since commit 360d5f637806 ("virtio: allow drivers to
validate features") with fallout in at least block and net.  We have a
partial work-around in commit df0f20ed3460 ("virtio: write back
F_VERSION_1 before validate") which at least lets devices find out which
format should config space have, but this is a partial fix: guests
should not access config space without acknowledging features since
otherwise we'll never be able to change the config space format.

To fix, split finalize_features from virtio_finalize_features and
call finalize_features with all feature bits before validation,
and then - if validation changed any bits - once again after.

Since virtio_finalize_features no longer writes out features
rename it to virtio_features_ok - since that is what it does:
checks that features are ok with the device.

As a side effect, this also reduces the amount of hypervisor accesses -
we now only acknowledge features once unless we are clearing any
features when validating (which is uncommon).

IRC I think that this was more or less always the intent in the spec but
unfortunately the way the spec is worded does not say this explicitly, I
plan to address this at the spec level, too.

Acked-by: Jason Wang <jasowang@redhat.com>
Cc: stable@vger.kernel.org
Fixes: 360d5f637806 ("virtio: allow drivers to validate features")
Fixes: df0f20ed3460 ("virtio: write back F_VERSION_1 before validate")
Cc: "Halil Pasic" <pasic@linux.ibm.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
drivers/virtio/virtio.c
include/linux/virtio_config.h